diff --git a/tsx/src/grammar.json b/tsx/src/grammar.json index b67d83f6..794ae1e5 100644 --- a/tsx/src/grammar.json +++ b/tsx/src/grammar.json @@ -2063,10 +2063,6 @@ "type": "SYMBOL", "name": "primary_expression" }, - { - "type": "SYMBOL", - "name": "glimmer_template" - }, { "type": "SYMBOL", "name": "_jsx_element" @@ -2748,76 +2744,6 @@ } ] }, - "glimmer_template": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "open_tag", - "content": { - "type": "SYMBOL", - "name": "glimmer_opening_tag" - } - }, - { - "type": "FIELD", - "name": "content", - "content": { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_glimmer_template_content" - } - } - }, - { - "type": "FIELD", - "name": "close_tag", - "content": { - "type": "SYMBOL", - "name": "glimmer_closing_tag" - } - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "open_tag", - "content": { - "type": "SYMBOL", - "name": "glimmer_opening_tag" - } - }, - { - "type": "FIELD", - "name": "close_tag", - "content": { - "type": "SYMBOL", - "name": "glimmer_closing_tag" - } - } - ] - } - ] - }, - "_glimmer_template_content": { - "type": "PATTERN", - "value": ".{1,}" - }, - "glimmer_opening_tag": { - "type": "STRING", - "value": "" - }, "_jsx_element": { "type": "CHOICE", "members": [ diff --git a/tsx/src/node-types.json b/tsx/src/node-types.json index 718eac63..34251f88 100644 --- a/tsx/src/node-types.json +++ b/tsx/src/node-types.json @@ -85,10 +85,6 @@ "type": "binary_expression", "named": true }, - { - "type": "glimmer_template", - "named": true - }, { "type": "instantiation_expression", "named": true @@ -2721,32 +2717,6 @@ } } }, - { - "type": "glimmer_template", - "named": true, - "fields": { - "close_tag": { - "multiple": false, - "required": true, - "types": [ - { - "type": "glimmer_closing_tag", - "named": true - } - ] - }, - "open_tag": { - "multiple": false, - "required": true, - "types": [ - { - "type": "glimmer_opening_tag", - "named": true - } - ] - } - } - }, { "type": "identifier", "named": true, @@ -6019,14 +5989,6 @@ "type": "get", "named": false }, - { - "type": "glimmer_closing_tag", - "named": true - }, - { - "type": "glimmer_opening_tag", - "named": true - }, { "type": "global", "named": false @@ -6113,11 +6075,11 @@ }, { "type": "number", - "named": false + "named": true }, { "type": "number", - "named": true + "named": false }, { "type": "object", diff --git a/tsx/src/parser.c b/tsx/src/parser.c index f891ee8c..faa8aa40 100644 --- a/tsx/src/parser.c +++ b/tsx/src/parser.c @@ -4,24 +4,16 @@ #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif -#ifdef _MSC_VER -#pragma optimize("", off) -#elif defined(__clang__) -#pragma clang optimize off -#elif defined(__GNUC__) -#pragma GCC optimize ("O0") -#endif - #define LANGUAGE_VERSION 14 -#define STATE_COUNT 5998 +#define STATE_COUNT 5986 #define LARGE_STATE_COUNT 1167 -#define SYMBOL_COUNT 398 +#define SYMBOL_COUNT 393 #define ALIAS_COUNT 7 -#define TOKEN_COUNT 175 +#define TOKEN_COUNT 172 #define EXTERNAL_TOKEN_COUNT 10 -#define FIELD_COUNT 44 +#define FIELD_COUNT 43 #define MAX_ALIAS_SEQUENCE_LENGTH 10 -#define PRODUCTION_ID_COUNT 352 +#define PRODUCTION_ID_COUNT 351 enum ts_symbol_identifiers { sym_identifier = 1, @@ -70,364 +62,359 @@ enum ts_symbol_identifiers { anon_sym_yield = 44, anon_sym_LBRACK = 45, anon_sym_RBRACK = 46, - sym__glimmer_template_content = 47, - sym_glimmer_opening_tag = 48, - sym_glimmer_closing_tag = 49, - sym_html_character_reference = 50, - anon_sym_GT = 51, - sym_jsx_identifier = 52, - anon_sym_DOT = 53, - anon_sym_LT_SLASH = 54, - anon_sym_SLASH_GT = 55, - anon_sym_DQUOTE = 56, - anon_sym_SQUOTE = 57, - sym_unescaped_double_jsx_string_fragment = 58, - sym_unescaped_single_jsx_string_fragment = 59, - anon_sym_class = 60, - anon_sym_async = 61, - anon_sym_function = 62, - anon_sym_EQ_GT = 63, - anon_sym_QMARK_DOT = 64, - anon_sym_new = 65, - anon_sym_using = 66, - anon_sym_PLUS_EQ = 67, - anon_sym_DASH_EQ = 68, - anon_sym_STAR_EQ = 69, - anon_sym_SLASH_EQ = 70, - anon_sym_PERCENT_EQ = 71, - anon_sym_CARET_EQ = 72, - anon_sym_AMP_EQ = 73, - anon_sym_PIPE_EQ = 74, - anon_sym_GT_GT_EQ = 75, - anon_sym_GT_GT_GT_EQ = 76, - anon_sym_LT_LT_EQ = 77, - anon_sym_STAR_STAR_EQ = 78, - anon_sym_AMP_AMP_EQ = 79, - anon_sym_PIPE_PIPE_EQ = 80, - anon_sym_QMARK_QMARK_EQ = 81, - anon_sym_DOT_DOT_DOT = 82, - anon_sym_AMP_AMP = 83, - anon_sym_PIPE_PIPE = 84, - anon_sym_GT_GT = 85, - anon_sym_GT_GT_GT = 86, - anon_sym_LT_LT = 87, - anon_sym_AMP = 88, - anon_sym_CARET = 89, - anon_sym_PIPE = 90, - anon_sym_PLUS = 91, - anon_sym_DASH = 92, - anon_sym_SLASH = 93, - anon_sym_PERCENT = 94, - anon_sym_STAR_STAR = 95, - anon_sym_LT = 96, - anon_sym_LT_EQ = 97, - anon_sym_EQ_EQ = 98, - anon_sym_EQ_EQ_EQ = 99, - anon_sym_BANG_EQ = 100, - anon_sym_BANG_EQ_EQ = 101, - anon_sym_GT_EQ = 102, - anon_sym_QMARK_QMARK = 103, - anon_sym_instanceof = 104, - anon_sym_TILDE = 105, - anon_sym_void = 106, - anon_sym_delete = 107, - anon_sym_PLUS_PLUS = 108, - anon_sym_DASH_DASH = 109, - sym_unescaped_double_string_fragment = 110, - sym_unescaped_single_string_fragment = 111, - sym_escape_sequence = 112, - sym_comment = 113, - anon_sym_BQUOTE = 114, - anon_sym_DOLLAR_LBRACE = 115, - anon_sym_SLASH2 = 116, - sym_regex_pattern = 117, - sym_regex_flags = 118, - sym_number = 119, - sym_private_property_identifier = 120, - anon_sym_target = 121, - anon_sym_meta = 122, - sym_this = 123, - sym_super = 124, - sym_true = 125, - sym_false = 126, - sym_null = 127, - sym_undefined = 128, - anon_sym_AT = 129, - anon_sym_static = 130, - anon_sym_readonly = 131, - anon_sym_get = 132, - anon_sym_set = 133, - anon_sym_QMARK = 134, - anon_sym_declare = 135, - anon_sym_public = 136, - anon_sym_private = 137, - anon_sym_protected = 138, - anon_sym_override = 139, - anon_sym_module = 140, - anon_sym_any = 141, - anon_sym_number = 142, - anon_sym_boolean = 143, - anon_sym_string = 144, - anon_sym_symbol = 145, - anon_sym_object = 146, - anon_sym_abstract = 147, - anon_sym_accessor = 148, - anon_sym_satisfies = 149, - anon_sym_require = 150, - anon_sym_extends = 151, - anon_sym_implements = 152, - anon_sym_global = 153, - anon_sym_interface = 154, - anon_sym_enum = 155, - anon_sym_DASH_QMARK_COLON = 156, - anon_sym_PLUS_QMARK_COLON = 157, - anon_sym_QMARK_COLON = 158, - anon_sym_asserts = 159, - anon_sym_infer = 160, - anon_sym_is = 161, - anon_sym_keyof = 162, - anon_sym_unique = 163, - anon_sym_unknown = 164, - anon_sym_never = 165, - anon_sym_LBRACE_PIPE = 166, - anon_sym_PIPE_RBRACE = 167, - sym__automatic_semicolon = 168, - sym__template_chars = 169, - sym__ternary_qmark = 170, - sym_html_comment = 171, - sym_jsx_text = 172, - sym__function_signature_automatic_semicolon = 173, - sym___error_recovery = 174, - sym_program = 175, - sym_export_statement = 176, - sym_namespace_export = 177, - sym_export_clause = 178, - sym_export_specifier = 179, - sym__module_export_name = 180, - sym_declaration = 181, - sym_import = 182, - sym_import_statement = 183, - sym_import_clause = 184, - sym__from_clause = 185, - sym_namespace_import = 186, - sym_named_imports = 187, - sym_import_specifier = 188, - sym_import_attribute = 189, - sym_statement = 190, - sym_expression_statement = 191, - sym_variable_declaration = 192, - sym_lexical_declaration = 193, - sym_variable_declarator = 194, - sym_statement_block = 195, - sym_else_clause = 196, - sym_if_statement = 197, - sym_switch_statement = 198, - sym_for_statement = 199, - sym_for_in_statement = 200, - sym__for_header = 201, - sym_while_statement = 202, - sym_do_statement = 203, - sym_try_statement = 204, - sym_with_statement = 205, - sym_break_statement = 206, - sym_continue_statement = 207, - sym_debugger_statement = 208, - sym_return_statement = 209, - sym_throw_statement = 210, - sym_empty_statement = 211, - sym_labeled_statement = 212, - sym_switch_body = 213, - sym_switch_case = 214, - sym_switch_default = 215, - sym_catch_clause = 216, - sym_finally_clause = 217, - sym_parenthesized_expression = 218, - sym_expression = 219, - sym_primary_expression = 220, - sym_yield_expression = 221, - sym_object = 222, - sym_object_pattern = 223, - sym_assignment_pattern = 224, - sym_object_assignment_pattern = 225, - sym_array = 226, - sym_array_pattern = 227, - sym_glimmer_template = 228, - sym_jsx_element = 229, - sym_jsx_expression = 230, - sym_jsx_opening_element = 231, - sym_nested_identifier = 232, - sym_jsx_namespace_name = 233, - sym_jsx_closing_element = 234, - sym_jsx_self_closing_element = 235, - sym_jsx_attribute = 236, - sym__jsx_string = 237, - sym_class = 238, - sym_class_declaration = 239, - sym_class_heritage = 240, - sym_function_expression = 241, - sym_function_declaration = 242, - sym_generator_function = 243, - sym_generator_function_declaration = 244, - sym_arrow_function = 245, - sym__call_signature = 246, - sym__formal_parameter = 247, - sym_optional_chain = 248, - sym_call_expression = 249, - sym_new_expression = 250, - sym_await_expression = 251, - sym_member_expression = 252, - sym_subscript_expression = 253, - sym_assignment_expression = 254, - sym__augmented_assignment_lhs = 255, - sym_augmented_assignment_expression = 256, - sym__initializer = 257, - sym__destructuring_pattern = 258, - sym_spread_element = 259, - sym_ternary_expression = 260, - sym_binary_expression = 261, - sym_unary_expression = 262, - sym_update_expression = 263, - sym_sequence_expression = 264, - sym_string = 265, - sym_template_string = 266, - sym_template_substitution = 267, - sym_regex = 268, - sym_meta_property = 269, - sym_arguments = 270, - sym_decorator = 271, - sym_decorator_member_expression = 272, - sym_decorator_call_expression = 273, - sym_class_body = 274, - sym_formal_parameters = 275, - sym_class_static_block = 276, - sym_pattern = 277, - sym_rest_pattern = 278, - sym_method_definition = 279, - sym_pair = 280, - sym_pair_pattern = 281, - sym__property_name = 282, - sym_computed_property_name = 283, - sym_public_field_definition = 284, - sym__import_identifier = 285, - sym_non_null_expression = 286, - sym_method_signature = 287, - sym_abstract_method_signature = 288, - sym_function_signature = 289, - sym_decorator_parenthesized_expression = 290, - sym_as_expression = 291, - sym_satisfies_expression = 292, - sym_instantiation_expression = 293, - sym_import_require_clause = 294, - sym_extends_clause = 295, - sym__extends_clause_single = 296, - sym_implements_clause = 297, - sym_ambient_declaration = 298, - sym_abstract_class_declaration = 299, - sym_module = 300, - sym_internal_module = 301, - sym__module = 302, - sym_import_alias = 303, - sym_nested_type_identifier = 304, - sym_interface_declaration = 305, - sym_extends_type_clause = 306, - sym_enum_declaration = 307, - sym_enum_body = 308, - sym_enum_assignment = 309, - sym_type_alias_declaration = 310, - sym_accessibility_modifier = 311, - sym_override_modifier = 312, - sym_required_parameter = 313, - sym_optional_parameter = 314, - sym__parameter_name = 315, - sym_omitting_type_annotation = 316, - sym_adding_type_annotation = 317, - sym_opting_type_annotation = 318, - sym_type_annotation = 319, - sym__type_query_member_expression_in_type_annotation = 320, - sym__type_query_call_expression_in_type_annotation = 321, - sym_asserts = 322, - sym_asserts_annotation = 323, - sym_type = 324, - sym_tuple_parameter = 325, - sym_optional_tuple_parameter = 326, - sym_optional_type = 327, - sym_rest_type = 328, - sym__tuple_type_member = 329, - sym_constructor_type = 330, - sym_primary_type = 331, - sym_template_type = 332, - sym_template_literal_type = 333, - sym_infer_type = 334, - sym_conditional_type = 335, - sym_generic_type = 336, - sym_type_predicate = 337, - sym_type_predicate_annotation = 338, - sym__type_query_member_expression = 339, - sym__type_query_subscript_expression = 340, - sym__type_query_call_expression = 341, - sym__type_query_instantiation_expression = 342, - sym_type_query = 343, - sym_index_type_query = 344, - sym_lookup_type = 345, - sym_mapped_type_clause = 346, - sym_literal_type = 347, - sym__number = 348, - sym_existential_type = 349, - sym_flow_maybe_type = 350, - sym_parenthesized_type = 351, - sym_predefined_type = 352, - sym_type_arguments = 353, - sym_object_type = 354, - sym_call_signature = 355, - sym_property_signature = 356, - sym_type_parameters = 357, - sym_type_parameter = 358, - sym_default_type = 359, - sym_constraint = 360, - sym_construct_signature = 361, - sym_index_signature = 362, - sym_array_type = 363, - sym_tuple_type = 364, - sym_readonly_type = 365, - sym_union_type = 366, - sym_intersection_type = 367, - sym_function_type = 368, - aux_sym_program_repeat1 = 369, - aux_sym_export_statement_repeat1 = 370, - aux_sym_export_clause_repeat1 = 371, - aux_sym_named_imports_repeat1 = 372, - aux_sym_variable_declaration_repeat1 = 373, - aux_sym_switch_body_repeat1 = 374, - aux_sym_object_repeat1 = 375, - aux_sym_object_pattern_repeat1 = 376, - aux_sym_array_repeat1 = 377, - aux_sym_array_pattern_repeat1 = 378, - aux_sym_glimmer_template_repeat1 = 379, - aux_sym_jsx_element_repeat1 = 380, - aux_sym__jsx_string_repeat1 = 381, - aux_sym__jsx_string_repeat2 = 382, - aux_sym_sequence_expression_repeat1 = 383, - aux_sym_string_repeat1 = 384, - aux_sym_string_repeat2 = 385, - aux_sym_template_string_repeat1 = 386, - aux_sym_class_body_repeat1 = 387, - aux_sym_formal_parameters_repeat1 = 388, - aux_sym__jsx_start_opening_element_repeat1 = 389, - aux_sym_extends_clause_repeat1 = 390, - aux_sym_implements_clause_repeat1 = 391, - aux_sym_extends_type_clause_repeat1 = 392, - aux_sym_enum_body_repeat1 = 393, - aux_sym_template_literal_type_repeat1 = 394, - aux_sym_object_type_repeat1 = 395, - aux_sym_type_parameters_repeat1 = 396, - aux_sym_tuple_type_repeat1 = 397, - alias_sym_interface_body = 398, - alias_sym_property_identifier = 399, - alias_sym_shorthand_property_identifier = 400, - alias_sym_shorthand_property_identifier_pattern = 401, - alias_sym_statement_identifier = 402, - alias_sym_this_type = 403, - alias_sym_type_identifier = 404, + sym_html_character_reference = 47, + anon_sym_GT = 48, + sym_jsx_identifier = 49, + anon_sym_DOT = 50, + anon_sym_LT_SLASH = 51, + anon_sym_SLASH_GT = 52, + anon_sym_DQUOTE = 53, + anon_sym_SQUOTE = 54, + sym_unescaped_double_jsx_string_fragment = 55, + sym_unescaped_single_jsx_string_fragment = 56, + anon_sym_class = 57, + anon_sym_async = 58, + anon_sym_function = 59, + anon_sym_EQ_GT = 60, + anon_sym_QMARK_DOT = 61, + anon_sym_new = 62, + anon_sym_using = 63, + anon_sym_PLUS_EQ = 64, + anon_sym_DASH_EQ = 65, + anon_sym_STAR_EQ = 66, + anon_sym_SLASH_EQ = 67, + anon_sym_PERCENT_EQ = 68, + anon_sym_CARET_EQ = 69, + anon_sym_AMP_EQ = 70, + anon_sym_PIPE_EQ = 71, + anon_sym_GT_GT_EQ = 72, + anon_sym_GT_GT_GT_EQ = 73, + anon_sym_LT_LT_EQ = 74, + anon_sym_STAR_STAR_EQ = 75, + anon_sym_AMP_AMP_EQ = 76, + anon_sym_PIPE_PIPE_EQ = 77, + anon_sym_QMARK_QMARK_EQ = 78, + anon_sym_DOT_DOT_DOT = 79, + anon_sym_AMP_AMP = 80, + anon_sym_PIPE_PIPE = 81, + anon_sym_GT_GT = 82, + anon_sym_GT_GT_GT = 83, + anon_sym_LT_LT = 84, + anon_sym_AMP = 85, + anon_sym_CARET = 86, + anon_sym_PIPE = 87, + anon_sym_PLUS = 88, + anon_sym_DASH = 89, + anon_sym_SLASH = 90, + anon_sym_PERCENT = 91, + anon_sym_STAR_STAR = 92, + anon_sym_LT = 93, + anon_sym_LT_EQ = 94, + anon_sym_EQ_EQ = 95, + anon_sym_EQ_EQ_EQ = 96, + anon_sym_BANG_EQ = 97, + anon_sym_BANG_EQ_EQ = 98, + anon_sym_GT_EQ = 99, + anon_sym_QMARK_QMARK = 100, + anon_sym_instanceof = 101, + anon_sym_TILDE = 102, + anon_sym_void = 103, + anon_sym_delete = 104, + anon_sym_PLUS_PLUS = 105, + anon_sym_DASH_DASH = 106, + sym_unescaped_double_string_fragment = 107, + sym_unescaped_single_string_fragment = 108, + sym_escape_sequence = 109, + sym_comment = 110, + anon_sym_BQUOTE = 111, + anon_sym_DOLLAR_LBRACE = 112, + anon_sym_SLASH2 = 113, + sym_regex_pattern = 114, + sym_regex_flags = 115, + sym_number = 116, + sym_private_property_identifier = 117, + anon_sym_target = 118, + anon_sym_meta = 119, + sym_this = 120, + sym_super = 121, + sym_true = 122, + sym_false = 123, + sym_null = 124, + sym_undefined = 125, + anon_sym_AT = 126, + anon_sym_static = 127, + anon_sym_readonly = 128, + anon_sym_get = 129, + anon_sym_set = 130, + anon_sym_QMARK = 131, + anon_sym_declare = 132, + anon_sym_public = 133, + anon_sym_private = 134, + anon_sym_protected = 135, + anon_sym_override = 136, + anon_sym_module = 137, + anon_sym_any = 138, + anon_sym_number = 139, + anon_sym_boolean = 140, + anon_sym_string = 141, + anon_sym_symbol = 142, + anon_sym_object = 143, + anon_sym_abstract = 144, + anon_sym_accessor = 145, + anon_sym_satisfies = 146, + anon_sym_require = 147, + anon_sym_extends = 148, + anon_sym_implements = 149, + anon_sym_global = 150, + anon_sym_interface = 151, + anon_sym_enum = 152, + anon_sym_DASH_QMARK_COLON = 153, + anon_sym_PLUS_QMARK_COLON = 154, + anon_sym_QMARK_COLON = 155, + anon_sym_asserts = 156, + anon_sym_infer = 157, + anon_sym_is = 158, + anon_sym_keyof = 159, + anon_sym_unique = 160, + anon_sym_unknown = 161, + anon_sym_never = 162, + anon_sym_LBRACE_PIPE = 163, + anon_sym_PIPE_RBRACE = 164, + sym__automatic_semicolon = 165, + sym__template_chars = 166, + sym__ternary_qmark = 167, + sym_html_comment = 168, + sym_jsx_text = 169, + sym__function_signature_automatic_semicolon = 170, + sym___error_recovery = 171, + sym_program = 172, + sym_export_statement = 173, + sym_namespace_export = 174, + sym_export_clause = 175, + sym_export_specifier = 176, + sym__module_export_name = 177, + sym_declaration = 178, + sym_import = 179, + sym_import_statement = 180, + sym_import_clause = 181, + sym__from_clause = 182, + sym_namespace_import = 183, + sym_named_imports = 184, + sym_import_specifier = 185, + sym_import_attribute = 186, + sym_statement = 187, + sym_expression_statement = 188, + sym_variable_declaration = 189, + sym_lexical_declaration = 190, + sym_variable_declarator = 191, + sym_statement_block = 192, + sym_else_clause = 193, + sym_if_statement = 194, + sym_switch_statement = 195, + sym_for_statement = 196, + sym_for_in_statement = 197, + sym__for_header = 198, + sym_while_statement = 199, + sym_do_statement = 200, + sym_try_statement = 201, + sym_with_statement = 202, + sym_break_statement = 203, + sym_continue_statement = 204, + sym_debugger_statement = 205, + sym_return_statement = 206, + sym_throw_statement = 207, + sym_empty_statement = 208, + sym_labeled_statement = 209, + sym_switch_body = 210, + sym_switch_case = 211, + sym_switch_default = 212, + sym_catch_clause = 213, + sym_finally_clause = 214, + sym_parenthesized_expression = 215, + sym_expression = 216, + sym_primary_expression = 217, + sym_yield_expression = 218, + sym_object = 219, + sym_object_pattern = 220, + sym_assignment_pattern = 221, + sym_object_assignment_pattern = 222, + sym_array = 223, + sym_array_pattern = 224, + sym_jsx_element = 225, + sym_jsx_expression = 226, + sym_jsx_opening_element = 227, + sym_nested_identifier = 228, + sym_jsx_namespace_name = 229, + sym_jsx_closing_element = 230, + sym_jsx_self_closing_element = 231, + sym_jsx_attribute = 232, + sym__jsx_string = 233, + sym_class = 234, + sym_class_declaration = 235, + sym_class_heritage = 236, + sym_function_expression = 237, + sym_function_declaration = 238, + sym_generator_function = 239, + sym_generator_function_declaration = 240, + sym_arrow_function = 241, + sym__call_signature = 242, + sym__formal_parameter = 243, + sym_optional_chain = 244, + sym_call_expression = 245, + sym_new_expression = 246, + sym_await_expression = 247, + sym_member_expression = 248, + sym_subscript_expression = 249, + sym_assignment_expression = 250, + sym__augmented_assignment_lhs = 251, + sym_augmented_assignment_expression = 252, + sym__initializer = 253, + sym__destructuring_pattern = 254, + sym_spread_element = 255, + sym_ternary_expression = 256, + sym_binary_expression = 257, + sym_unary_expression = 258, + sym_update_expression = 259, + sym_sequence_expression = 260, + sym_string = 261, + sym_template_string = 262, + sym_template_substitution = 263, + sym_regex = 264, + sym_meta_property = 265, + sym_arguments = 266, + sym_decorator = 267, + sym_decorator_member_expression = 268, + sym_decorator_call_expression = 269, + sym_class_body = 270, + sym_formal_parameters = 271, + sym_class_static_block = 272, + sym_pattern = 273, + sym_rest_pattern = 274, + sym_method_definition = 275, + sym_pair = 276, + sym_pair_pattern = 277, + sym__property_name = 278, + sym_computed_property_name = 279, + sym_public_field_definition = 280, + sym__import_identifier = 281, + sym_non_null_expression = 282, + sym_method_signature = 283, + sym_abstract_method_signature = 284, + sym_function_signature = 285, + sym_decorator_parenthesized_expression = 286, + sym_as_expression = 287, + sym_satisfies_expression = 288, + sym_instantiation_expression = 289, + sym_import_require_clause = 290, + sym_extends_clause = 291, + sym__extends_clause_single = 292, + sym_implements_clause = 293, + sym_ambient_declaration = 294, + sym_abstract_class_declaration = 295, + sym_module = 296, + sym_internal_module = 297, + sym__module = 298, + sym_import_alias = 299, + sym_nested_type_identifier = 300, + sym_interface_declaration = 301, + sym_extends_type_clause = 302, + sym_enum_declaration = 303, + sym_enum_body = 304, + sym_enum_assignment = 305, + sym_type_alias_declaration = 306, + sym_accessibility_modifier = 307, + sym_override_modifier = 308, + sym_required_parameter = 309, + sym_optional_parameter = 310, + sym__parameter_name = 311, + sym_omitting_type_annotation = 312, + sym_adding_type_annotation = 313, + sym_opting_type_annotation = 314, + sym_type_annotation = 315, + sym__type_query_member_expression_in_type_annotation = 316, + sym__type_query_call_expression_in_type_annotation = 317, + sym_asserts = 318, + sym_asserts_annotation = 319, + sym_type = 320, + sym_tuple_parameter = 321, + sym_optional_tuple_parameter = 322, + sym_optional_type = 323, + sym_rest_type = 324, + sym__tuple_type_member = 325, + sym_constructor_type = 326, + sym_primary_type = 327, + sym_template_type = 328, + sym_template_literal_type = 329, + sym_infer_type = 330, + sym_conditional_type = 331, + sym_generic_type = 332, + sym_type_predicate = 333, + sym_type_predicate_annotation = 334, + sym__type_query_member_expression = 335, + sym__type_query_subscript_expression = 336, + sym__type_query_call_expression = 337, + sym__type_query_instantiation_expression = 338, + sym_type_query = 339, + sym_index_type_query = 340, + sym_lookup_type = 341, + sym_mapped_type_clause = 342, + sym_literal_type = 343, + sym__number = 344, + sym_existential_type = 345, + sym_flow_maybe_type = 346, + sym_parenthesized_type = 347, + sym_predefined_type = 348, + sym_type_arguments = 349, + sym_object_type = 350, + sym_call_signature = 351, + sym_property_signature = 352, + sym_type_parameters = 353, + sym_type_parameter = 354, + sym_default_type = 355, + sym_constraint = 356, + sym_construct_signature = 357, + sym_index_signature = 358, + sym_array_type = 359, + sym_tuple_type = 360, + sym_readonly_type = 361, + sym_union_type = 362, + sym_intersection_type = 363, + sym_function_type = 364, + aux_sym_program_repeat1 = 365, + aux_sym_export_statement_repeat1 = 366, + aux_sym_export_clause_repeat1 = 367, + aux_sym_named_imports_repeat1 = 368, + aux_sym_variable_declaration_repeat1 = 369, + aux_sym_switch_body_repeat1 = 370, + aux_sym_object_repeat1 = 371, + aux_sym_object_pattern_repeat1 = 372, + aux_sym_array_repeat1 = 373, + aux_sym_array_pattern_repeat1 = 374, + aux_sym_jsx_element_repeat1 = 375, + aux_sym__jsx_string_repeat1 = 376, + aux_sym__jsx_string_repeat2 = 377, + aux_sym_sequence_expression_repeat1 = 378, + aux_sym_string_repeat1 = 379, + aux_sym_string_repeat2 = 380, + aux_sym_template_string_repeat1 = 381, + aux_sym_class_body_repeat1 = 382, + aux_sym_formal_parameters_repeat1 = 383, + aux_sym__jsx_start_opening_element_repeat1 = 384, + aux_sym_extends_clause_repeat1 = 385, + aux_sym_implements_clause_repeat1 = 386, + aux_sym_extends_type_clause_repeat1 = 387, + aux_sym_enum_body_repeat1 = 388, + aux_sym_template_literal_type_repeat1 = 389, + aux_sym_object_type_repeat1 = 390, + aux_sym_type_parameters_repeat1 = 391, + aux_sym_tuple_type_repeat1 = 392, + alias_sym_interface_body = 393, + alias_sym_property_identifier = 394, + alias_sym_shorthand_property_identifier = 395, + alias_sym_shorthand_property_identifier_pattern = 396, + alias_sym_statement_identifier = 397, + alias_sym_this_type = 398, + alias_sym_type_identifier = 399, }; static const char * const ts_symbol_names[] = { @@ -478,9 +465,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_yield] = "yield", [anon_sym_LBRACK] = "[", [anon_sym_RBRACK] = "]", - [sym__glimmer_template_content] = "_glimmer_template_content", - [sym_glimmer_opening_tag] = "glimmer_opening_tag", - [sym_glimmer_closing_tag] = "glimmer_closing_tag", [sym_html_character_reference] = "html_character_reference", [anon_sym_GT] = ">", [sym_jsx_identifier] = "identifier", @@ -659,7 +643,6 @@ static const char * const ts_symbol_names[] = { [sym_object_assignment_pattern] = "object_assignment_pattern", [sym_array] = "array", [sym_array_pattern] = "array_pattern", - [sym_glimmer_template] = "glimmer_template", [sym_jsx_element] = "jsx_element", [sym_jsx_expression] = "jsx_expression", [sym_jsx_opening_element] = "jsx_opening_element", @@ -810,7 +793,6 @@ static const char * const ts_symbol_names[] = { [aux_sym_object_pattern_repeat1] = "object_pattern_repeat1", [aux_sym_array_repeat1] = "array_repeat1", [aux_sym_array_pattern_repeat1] = "array_pattern_repeat1", - [aux_sym_glimmer_template_repeat1] = "glimmer_template_repeat1", [aux_sym_jsx_element_repeat1] = "jsx_element_repeat1", [aux_sym__jsx_string_repeat1] = "_jsx_string_repeat1", [aux_sym__jsx_string_repeat2] = "_jsx_string_repeat2", @@ -886,9 +868,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_yield] = anon_sym_yield, [anon_sym_LBRACK] = anon_sym_LBRACK, [anon_sym_RBRACK] = anon_sym_RBRACK, - [sym__glimmer_template_content] = sym__glimmer_template_content, - [sym_glimmer_opening_tag] = sym_glimmer_opening_tag, - [sym_glimmer_closing_tag] = sym_glimmer_closing_tag, [sym_html_character_reference] = sym_html_character_reference, [anon_sym_GT] = anon_sym_GT, [sym_jsx_identifier] = sym_identifier, @@ -1067,7 +1046,6 @@ static const TSSymbol ts_symbol_map[] = { [sym_object_assignment_pattern] = sym_object_assignment_pattern, [sym_array] = sym_array, [sym_array_pattern] = sym_array_pattern, - [sym_glimmer_template] = sym_glimmer_template, [sym_jsx_element] = sym_jsx_element, [sym_jsx_expression] = sym_jsx_expression, [sym_jsx_opening_element] = sym_jsx_opening_element, @@ -1218,7 +1196,6 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_object_pattern_repeat1] = aux_sym_object_pattern_repeat1, [aux_sym_array_repeat1] = aux_sym_array_repeat1, [aux_sym_array_pattern_repeat1] = aux_sym_array_pattern_repeat1, - [aux_sym_glimmer_template_repeat1] = aux_sym_glimmer_template_repeat1, [aux_sym_jsx_element_repeat1] = aux_sym_jsx_element_repeat1, [aux_sym__jsx_string_repeat1] = aux_sym__jsx_string_repeat1, [aux_sym__jsx_string_repeat2] = aux_sym__jsx_string_repeat2, @@ -1435,18 +1412,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [sym__glimmer_template_content] = { - .visible = false, - .named = true, - }, - [sym_glimmer_opening_tag] = { - .visible = true, - .named = true, - }, - [sym_glimmer_closing_tag] = { - .visible = true, - .named = true, - }, [sym_html_character_reference] = { .visible = true, .named = true, @@ -2163,10 +2128,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_glimmer_template] = { - .visible = true, - .named = true, - }, [sym_jsx_element] = { .visible = true, .named = true, @@ -2770,10 +2731,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_glimmer_template_repeat1] = { - .visible = false, - .named = false, - }, [aux_sym_jsx_element_repeat1] = { .visible = false, .named = false, @@ -2888,39 +2845,38 @@ enum ts_field_identifiers { field_consequence = 9, field_constraint = 10, field_constructor = 11, - field_content = 12, - field_declaration = 13, - field_decorator = 14, - field_finalizer = 15, - field_flags = 16, - field_function = 17, - field_handler = 18, - field_increment = 19, - field_index = 20, - field_index_type = 21, - field_initializer = 22, - field_key = 23, - field_kind = 24, - field_label = 25, - field_left = 26, - field_module = 27, - field_name = 28, - field_object = 29, - field_open_tag = 30, - field_operator = 31, - field_optional_chain = 32, - field_parameter = 33, - field_parameters = 34, - field_pattern = 35, - field_property = 36, - field_return_type = 37, - field_right = 38, - field_sign = 39, - field_source = 40, - field_type = 41, - field_type_arguments = 42, - field_type_parameters = 43, - field_value = 44, + field_declaration = 12, + field_decorator = 13, + field_finalizer = 14, + field_flags = 15, + field_function = 16, + field_handler = 17, + field_increment = 18, + field_index = 19, + field_index_type = 20, + field_initializer = 21, + field_key = 22, + field_kind = 23, + field_label = 24, + field_left = 25, + field_module = 26, + field_name = 27, + field_object = 28, + field_open_tag = 29, + field_operator = 30, + field_optional_chain = 31, + field_parameter = 32, + field_parameters = 33, + field_pattern = 34, + field_property = 35, + field_return_type = 36, + field_right = 37, + field_sign = 38, + field_source = 39, + field_type = 40, + field_type_arguments = 41, + field_type_parameters = 42, + field_value = 43, }; static const char * const ts_field_names[] = { @@ -2936,7 +2892,6 @@ static const char * const ts_field_names[] = { [field_consequence] = "consequence", [field_constraint] = "constraint", [field_constructor] = "constructor", - [field_content] = "content", [field_declaration] = "declaration", [field_decorator] = "decorator", [field_finalizer] = "finalizer", @@ -2981,12 +2936,12 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [9] = {.index = 8, .length = 1}, [10] = {.index = 9, .length = 2}, [11] = {.index = 11, .length = 1}, - [12] = {.index = 12, .length = 2}, - [13] = {.index = 14, .length = 1}, - [14] = {.index = 3, .length = 1}, + [12] = {.index = 12, .length = 1}, + [13] = {.index = 3, .length = 1}, + [14] = {.index = 13, .length = 2}, [15] = {.index = 15, .length = 2}, - [16] = {.index = 17, .length = 2}, - [17] = {.index = 19, .length = 1}, + [16] = {.index = 17, .length = 1}, + [17] = {.index = 18, .length = 2}, [18] = {.index = 20, .length = 2}, [19] = {.index = 22, .length = 2}, [20] = {.index = 24, .length = 2}, @@ -3011,308 +2966,307 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [42] = {.index = 64, .length = 2}, [43] = {.index = 66, .length = 2}, [44] = {.index = 68, .length = 1}, - [45] = {.index = 69, .length = 3}, - [46] = {.index = 72, .length = 2}, - [47] = {.index = 74, .length = 1}, - [48] = {.index = 75, .length = 2}, - [51] = {.index = 77, .length = 2}, - [52] = {.index = 79, .length = 2}, - [53] = {.index = 81, .length = 2}, - [54] = {.index = 83, .length = 1}, - [55] = {.index = 84, .length = 2}, - [56] = {.index = 86, .length = 4}, - [57] = {.index = 90, .length = 2}, - [58] = {.index = 92, .length = 2}, - [59] = {.index = 94, .length = 1}, - [60] = {.index = 94, .length = 1}, - [61] = {.index = 95, .length = 1}, - [62] = {.index = 96, .length = 2}, - [63] = {.index = 98, .length = 2}, - [64] = {.index = 94, .length = 1}, - [65] = {.index = 27, .length = 2}, - [66] = {.index = 31, .length = 2}, - [67] = {.index = 100, .length = 3}, - [68] = {.index = 72, .length = 2}, - [69] = {.index = 72, .length = 2}, - [70] = {.index = 103, .length = 2}, - [71] = {.index = 103, .length = 2}, - [72] = {.index = 105, .length = 3}, + [45] = {.index = 69, .length = 2}, + [46] = {.index = 71, .length = 1}, + [47] = {.index = 72, .length = 2}, + [50] = {.index = 74, .length = 2}, + [51] = {.index = 76, .length = 2}, + [52] = {.index = 78, .length = 2}, + [53] = {.index = 80, .length = 1}, + [54] = {.index = 81, .length = 2}, + [55] = {.index = 83, .length = 4}, + [56] = {.index = 87, .length = 2}, + [57] = {.index = 89, .length = 2}, + [58] = {.index = 91, .length = 1}, + [59] = {.index = 91, .length = 1}, + [60] = {.index = 92, .length = 1}, + [61] = {.index = 93, .length = 2}, + [62] = {.index = 95, .length = 2}, + [63] = {.index = 91, .length = 1}, + [64] = {.index = 27, .length = 2}, + [65] = {.index = 31, .length = 2}, + [66] = {.index = 97, .length = 3}, + [67] = {.index = 69, .length = 2}, + [68] = {.index = 69, .length = 2}, + [69] = {.index = 100, .length = 2}, + [70] = {.index = 100, .length = 2}, + [71] = {.index = 102, .length = 3}, + [72] = {.index = 102, .length = 3}, [73] = {.index = 105, .length = 3}, - [74] = {.index = 108, .length = 3}, - [75] = {.index = 111, .length = 2}, - [76] = {.index = 113, .length = 2}, - [77] = {.index = 115, .length = 4}, - [78] = {.index = 119, .length = 3}, - [79] = {.index = 122, .length = 2}, - [80] = {.index = 124, .length = 2}, - [81] = {.index = 126, .length = 1}, - [82] = {.index = 127, .length = 1}, - [83] = {.index = 103, .length = 2}, - [84] = {.index = 27, .length = 2}, - [85] = {.index = 128, .length = 2}, - [86] = {.index = 130, .length = 5}, - [87] = {.index = 135, .length = 1}, - [88] = {.index = 136, .length = 1}, - [89] = {.index = 137, .length = 2}, - [90] = {.index = 139, .length = 3}, - [91] = {.index = 142, .length = 2}, - [92] = {.index = 144, .length = 3}, - [93] = {.index = 147, .length = 6}, - [94] = {.index = 153, .length = 1}, - [95] = {.index = 154, .length = 1}, + [74] = {.index = 108, .length = 2}, + [75] = {.index = 110, .length = 2}, + [76] = {.index = 112, .length = 4}, + [77] = {.index = 116, .length = 3}, + [78] = {.index = 119, .length = 2}, + [79] = {.index = 121, .length = 2}, + [80] = {.index = 123, .length = 1}, + [81] = {.index = 124, .length = 1}, + [82] = {.index = 100, .length = 2}, + [83] = {.index = 27, .length = 2}, + [84] = {.index = 125, .length = 2}, + [85] = {.index = 127, .length = 5}, + [86] = {.index = 132, .length = 1}, + [87] = {.index = 133, .length = 1}, + [88] = {.index = 134, .length = 2}, + [89] = {.index = 136, .length = 3}, + [90] = {.index = 139, .length = 2}, + [91] = {.index = 141, .length = 3}, + [92] = {.index = 144, .length = 6}, + [93] = {.index = 150, .length = 1}, + [94] = {.index = 151, .length = 1}, + [95] = {.index = 152, .length = 3}, [96] = {.index = 155, .length = 3}, - [97] = {.index = 158, .length = 3}, - [98] = {.index = 161, .length = 4}, - [99] = {.index = 165, .length = 2}, - [100] = {.index = 167, .length = 2}, - [101] = {.index = 169, .length = 3}, - [102] = {.index = 172, .length = 4}, - [103] = {.index = 176, .length = 1}, - [104] = {.index = 177, .length = 2}, - [105] = {.index = 179, .length = 1}, - [106] = {.index = 180, .length = 2}, - [107] = {.index = 182, .length = 3}, - [108] = {.index = 185, .length = 2}, - [109] = {.index = 187, .length = 4}, - [110] = {.index = 191, .length = 3}, - [111] = {.index = 194, .length = 2}, - [112] = {.index = 196, .length = 2}, - [113] = {.index = 198, .length = 2}, - [114] = {.index = 200, .length = 2}, - [115] = {.index = 202, .length = 2}, - [118] = {.index = 202, .length = 2}, - [119] = {.index = 204, .length = 4}, - [120] = {.index = 208, .length = 2}, - [121] = {.index = 210, .length = 2}, - [122] = {.index = 212, .length = 4}, - [123] = {.index = 210, .length = 2}, - [124] = {.index = 216, .length = 4}, - [125] = {.index = 220, .length = 4}, - [126] = {.index = 224, .length = 5}, - [127] = {.index = 229, .length = 3}, - [128] = {.index = 232, .length = 2}, - [129] = {.index = 232, .length = 2}, - [130] = {.index = 234, .length = 2}, - [131] = {.index = 236, .length = 2}, - [132] = {.index = 238, .length = 2}, - [133] = {.index = 240, .length = 2}, - [134] = {.index = 242, .length = 2}, - [135] = {.index = 244, .length = 2}, - [136] = {.index = 246, .length = 3}, - [137] = {.index = 244, .length = 2}, - [138] = {.index = 240, .length = 2}, - [139] = {.index = 142, .length = 2}, - [140] = {.index = 249, .length = 1}, - [141] = {.index = 249, .length = 1}, - [142] = {.index = 180, .length = 2}, - [143] = {.index = 182, .length = 3}, - [144] = {.index = 250, .length = 2}, - [145] = {.index = 252, .length = 3}, - [146] = {.index = 255, .length = 2}, - [147] = {.index = 257, .length = 3}, - [148] = {.index = 260, .length = 2}, - [149] = {.index = 262, .length = 3}, - [150] = {.index = 265, .length = 1}, - [151] = {.index = 266, .length = 2}, - [152] = {.index = 268, .length = 2}, - [153] = {.index = 270, .length = 5}, - [154] = {.index = 266, .length = 2}, - [155] = {.index = 275, .length = 1}, - [156] = {.index = 276, .length = 4}, - [157] = {.index = 280, .length = 2}, - [158] = {.index = 282, .length = 1}, - [159] = {.index = 283, .length = 2}, - [160] = {.index = 285, .length = 2}, - [161] = {.index = 287, .length = 2}, - [162] = {.index = 289, .length = 4}, - [163] = {.index = 293, .length = 2}, + [97] = {.index = 158, .length = 4}, + [98] = {.index = 162, .length = 2}, + [99] = {.index = 164, .length = 2}, + [100] = {.index = 166, .length = 3}, + [101] = {.index = 169, .length = 4}, + [102] = {.index = 173, .length = 1}, + [103] = {.index = 174, .length = 2}, + [104] = {.index = 176, .length = 1}, + [105] = {.index = 177, .length = 2}, + [106] = {.index = 179, .length = 3}, + [107] = {.index = 182, .length = 2}, + [108] = {.index = 184, .length = 4}, + [109] = {.index = 188, .length = 3}, + [110] = {.index = 191, .length = 2}, + [111] = {.index = 193, .length = 2}, + [112] = {.index = 195, .length = 2}, + [113] = {.index = 197, .length = 2}, + [114] = {.index = 199, .length = 2}, + [117] = {.index = 199, .length = 2}, + [118] = {.index = 201, .length = 4}, + [119] = {.index = 205, .length = 2}, + [120] = {.index = 207, .length = 2}, + [121] = {.index = 209, .length = 4}, + [122] = {.index = 207, .length = 2}, + [123] = {.index = 213, .length = 4}, + [124] = {.index = 217, .length = 4}, + [125] = {.index = 221, .length = 5}, + [126] = {.index = 226, .length = 3}, + [127] = {.index = 229, .length = 2}, + [128] = {.index = 229, .length = 2}, + [129] = {.index = 231, .length = 2}, + [130] = {.index = 233, .length = 2}, + [131] = {.index = 235, .length = 2}, + [132] = {.index = 237, .length = 2}, + [133] = {.index = 239, .length = 2}, + [134] = {.index = 241, .length = 2}, + [135] = {.index = 243, .length = 3}, + [136] = {.index = 241, .length = 2}, + [137] = {.index = 237, .length = 2}, + [138] = {.index = 139, .length = 2}, + [139] = {.index = 246, .length = 1}, + [140] = {.index = 246, .length = 1}, + [141] = {.index = 177, .length = 2}, + [142] = {.index = 179, .length = 3}, + [143] = {.index = 247, .length = 2}, + [144] = {.index = 249, .length = 3}, + [145] = {.index = 252, .length = 2}, + [146] = {.index = 254, .length = 3}, + [147] = {.index = 257, .length = 2}, + [148] = {.index = 259, .length = 3}, + [149] = {.index = 262, .length = 1}, + [150] = {.index = 263, .length = 2}, + [151] = {.index = 265, .length = 2}, + [152] = {.index = 267, .length = 5}, + [153] = {.index = 263, .length = 2}, + [154] = {.index = 272, .length = 1}, + [155] = {.index = 273, .length = 4}, + [156] = {.index = 277, .length = 2}, + [157] = {.index = 279, .length = 1}, + [158] = {.index = 280, .length = 2}, + [159] = {.index = 282, .length = 2}, + [160] = {.index = 284, .length = 2}, + [161] = {.index = 286, .length = 4}, + [162] = {.index = 290, .length = 2}, + [163] = {.index = 292, .length = 3}, [164] = {.index = 295, .length = 3}, [165] = {.index = 298, .length = 3}, - [166] = {.index = 301, .length = 3}, - [167] = {.index = 304, .length = 4}, - [168] = {.index = 308, .length = 1}, - [169] = {.index = 309, .length = 2}, - [170] = {.index = 311, .length = 4}, - [171] = {.index = 315, .length = 4}, - [172] = {.index = 319, .length = 4}, - [173] = {.index = 323, .length = 2}, - [174] = {.index = 325, .length = 2}, - [175] = {.index = 327, .length = 4}, - [176] = {.index = 327, .length = 4}, - [177] = {.index = 331, .length = 4}, - [178] = {.index = 331, .length = 4}, - [179] = {.index = 335, .length = 4}, - [180] = {.index = 339, .length = 4}, - [181] = {.index = 343, .length = 5}, + [166] = {.index = 301, .length = 4}, + [167] = {.index = 305, .length = 1}, + [168] = {.index = 306, .length = 2}, + [169] = {.index = 308, .length = 4}, + [170] = {.index = 312, .length = 4}, + [171] = {.index = 316, .length = 4}, + [172] = {.index = 320, .length = 2}, + [173] = {.index = 322, .length = 2}, + [174] = {.index = 324, .length = 4}, + [175] = {.index = 324, .length = 4}, + [176] = {.index = 328, .length = 4}, + [177] = {.index = 328, .length = 4}, + [178] = {.index = 332, .length = 4}, + [179] = {.index = 336, .length = 4}, + [180] = {.index = 340, .length = 5}, + [181] = {.index = 345, .length = 3}, [182] = {.index = 348, .length = 3}, - [183] = {.index = 351, .length = 3}, - [184] = {.index = 351, .length = 3}, - [185] = {.index = 354, .length = 2}, - [186] = {.index = 356, .length = 3}, - [187] = {.index = 359, .length = 2}, - [188] = {.index = 359, .length = 2}, - [189] = {.index = 301, .length = 3}, + [183] = {.index = 348, .length = 3}, + [184] = {.index = 351, .length = 2}, + [185] = {.index = 353, .length = 3}, + [186] = {.index = 356, .length = 2}, + [187] = {.index = 356, .length = 2}, + [188] = {.index = 298, .length = 3}, + [189] = {.index = 358, .length = 3}, [190] = {.index = 361, .length = 3}, - [191] = {.index = 364, .length = 3}, - [192] = {.index = 137, .length = 2}, - [193] = {.index = 367, .length = 2}, - [194] = {.index = 369, .length = 3}, - [195] = {.index = 372, .length = 4}, + [191] = {.index = 134, .length = 2}, + [192] = {.index = 364, .length = 2}, + [193] = {.index = 366, .length = 3}, + [194] = {.index = 369, .length = 4}, + [195] = {.index = 373, .length = 3}, [196] = {.index = 376, .length = 3}, - [197] = {.index = 379, .length = 3}, - [198] = {.index = 382, .length = 2}, - [199] = {.index = 384, .length = 3}, - [200] = {.index = 387, .length = 5}, - [201] = {.index = 382, .length = 2}, - [202] = {.index = 392, .length = 3}, + [197] = {.index = 379, .length = 2}, + [198] = {.index = 381, .length = 3}, + [199] = {.index = 384, .length = 5}, + [200] = {.index = 379, .length = 2}, + [201] = {.index = 389, .length = 3}, + [202] = {.index = 389, .length = 3}, [203] = {.index = 392, .length = 3}, - [204] = {.index = 395, .length = 3}, - [205] = {.index = 398, .length = 2}, - [206] = {.index = 400, .length = 4}, - [207] = {.index = 137, .length = 2}, - [208] = {.index = 404, .length = 1}, - [209] = {.index = 405, .length = 2}, - [210] = {.index = 407, .length = 2}, - [211] = {.index = 409, .length = 2}, - [212] = {.index = 411, .length = 2}, - [213] = {.index = 413, .length = 3}, - [214] = {.index = 416, .length = 1}, - [215] = {.index = 417, .length = 3}, - [216] = {.index = 420, .length = 2}, + [204] = {.index = 395, .length = 2}, + [205] = {.index = 397, .length = 4}, + [206] = {.index = 134, .length = 2}, + [207] = {.index = 401, .length = 1}, + [208] = {.index = 402, .length = 2}, + [209] = {.index = 404, .length = 2}, + [210] = {.index = 406, .length = 2}, + [211] = {.index = 408, .length = 2}, + [212] = {.index = 410, .length = 3}, + [213] = {.index = 413, .length = 1}, + [214] = {.index = 414, .length = 3}, + [215] = {.index = 417, .length = 2}, + [216] = {.index = 419, .length = 3}, [217] = {.index = 422, .length = 3}, [218] = {.index = 425, .length = 3}, [219] = {.index = 428, .length = 3}, - [220] = {.index = 431, .length = 3}, - [221] = {.index = 434, .length = 4}, - [222] = {.index = 438, .length = 2}, - [223] = {.index = 440, .length = 2}, - [224] = {.index = 442, .length = 1}, - [225] = {.index = 443, .length = 4}, - [226] = {.index = 443, .length = 4}, - [227] = {.index = 447, .length = 2}, - [228] = {.index = 449, .length = 3}, - [229] = {.index = 452, .length = 5}, - [230] = {.index = 457, .length = 3}, - [231] = {.index = 460, .length = 2}, - [232] = {.index = 462, .length = 2}, - [233] = {.index = 464, .length = 2}, - [234] = {.index = 466, .length = 1}, - [235] = {.index = 467, .length = 4}, - [236] = {.index = 471, .length = 3}, - [237] = {.index = 474, .length = 4}, - [238] = {.index = 478, .length = 5}, - [239] = {.index = 483, .length = 1}, - [240] = {.index = 484, .length = 2}, - [241] = {.index = 486, .length = 4}, - [242] = {.index = 490, .length = 4}, - [243] = {.index = 494, .length = 4}, - [244] = {.index = 498, .length = 3}, - [245] = {.index = 501, .length = 2}, - [246] = {.index = 503, .length = 4}, - [247] = {.index = 507, .length = 4}, - [248] = {.index = 511, .length = 2}, - [249] = {.index = 513, .length = 2}, + [220] = {.index = 431, .length = 4}, + [221] = {.index = 435, .length = 2}, + [222] = {.index = 437, .length = 2}, + [223] = {.index = 439, .length = 1}, + [224] = {.index = 440, .length = 4}, + [225] = {.index = 440, .length = 4}, + [226] = {.index = 444, .length = 2}, + [227] = {.index = 446, .length = 3}, + [228] = {.index = 449, .length = 5}, + [229] = {.index = 454, .length = 3}, + [230] = {.index = 457, .length = 2}, + [231] = {.index = 459, .length = 2}, + [232] = {.index = 461, .length = 2}, + [233] = {.index = 463, .length = 1}, + [234] = {.index = 464, .length = 4}, + [235] = {.index = 468, .length = 3}, + [236] = {.index = 471, .length = 4}, + [237] = {.index = 475, .length = 5}, + [238] = {.index = 480, .length = 1}, + [239] = {.index = 481, .length = 2}, + [240] = {.index = 483, .length = 4}, + [241] = {.index = 487, .length = 4}, + [242] = {.index = 491, .length = 4}, + [243] = {.index = 495, .length = 3}, + [244] = {.index = 498, .length = 2}, + [245] = {.index = 500, .length = 4}, + [246] = {.index = 504, .length = 4}, + [247] = {.index = 508, .length = 2}, + [248] = {.index = 510, .length = 2}, + [249] = {.index = 512, .length = 3}, [250] = {.index = 515, .length = 3}, - [251] = {.index = 518, .length = 3}, - [252] = {.index = 521, .length = 2}, - [253] = {.index = 523, .length = 2}, - [254] = {.index = 525, .length = 1}, - [255] = {.index = 526, .length = 1}, + [251] = {.index = 518, .length = 2}, + [252] = {.index = 520, .length = 2}, + [253] = {.index = 522, .length = 1}, + [254] = {.index = 523, .length = 1}, + [255] = {.index = 524, .length = 3}, [256] = {.index = 527, .length = 3}, [257] = {.index = 530, .length = 3}, [258] = {.index = 533, .length = 3}, - [259] = {.index = 536, .length = 3}, - [260] = {.index = 539, .length = 4}, - [261] = {.index = 543, .length = 2}, - [262] = {.index = 545, .length = 4}, - [263] = {.index = 549, .length = 3}, - [264] = {.index = 552, .length = 2}, - [265] = {.index = 554, .length = 2}, - [266] = {.index = 556, .length = 4}, - [267] = {.index = 560, .length = 4}, - [268] = {.index = 564, .length = 4}, - [269] = {.index = 568, .length = 3}, - [270] = {.index = 571, .length = 2}, - [272] = {.index = 573, .length = 4}, - [273] = {.index = 577, .length = 5}, - [274] = {.index = 582, .length = 5}, - [275] = {.index = 587, .length = 5}, - [276] = {.index = 592, .length = 4}, - [277] = {.index = 596, .length = 5}, - [278] = {.index = 601, .length = 4}, - [279] = {.index = 605, .length = 4}, + [259] = {.index = 536, .length = 4}, + [260] = {.index = 540, .length = 2}, + [261] = {.index = 542, .length = 4}, + [262] = {.index = 546, .length = 3}, + [263] = {.index = 549, .length = 2}, + [264] = {.index = 551, .length = 2}, + [265] = {.index = 553, .length = 4}, + [266] = {.index = 557, .length = 4}, + [267] = {.index = 561, .length = 4}, + [268] = {.index = 565, .length = 3}, + [269] = {.index = 568, .length = 2}, + [271] = {.index = 570, .length = 4}, + [272] = {.index = 574, .length = 5}, + [273] = {.index = 579, .length = 5}, + [274] = {.index = 584, .length = 5}, + [275] = {.index = 589, .length = 4}, + [276] = {.index = 593, .length = 5}, + [277] = {.index = 598, .length = 4}, + [278] = {.index = 602, .length = 4}, + [279] = {.index = 606, .length = 3}, [280] = {.index = 609, .length = 3}, [281] = {.index = 612, .length = 3}, - [282] = {.index = 615, .length = 3}, - [283] = {.index = 612, .length = 3}, - [284] = {.index = 618, .length = 2}, - [285] = {.index = 620, .length = 4}, - [286] = {.index = 624, .length = 4}, - [287] = {.index = 628, .length = 3}, - [288] = {.index = 631, .length = 2}, - [289] = {.index = 633, .length = 2}, - [290] = {.index = 635, .length = 3}, - [291] = {.index = 638, .length = 2}, - [292] = {.index = 640, .length = 2}, - [293] = {.index = 642, .length = 1}, + [282] = {.index = 609, .length = 3}, + [283] = {.index = 615, .length = 2}, + [284] = {.index = 617, .length = 4}, + [285] = {.index = 621, .length = 4}, + [286] = {.index = 625, .length = 3}, + [287] = {.index = 628, .length = 2}, + [288] = {.index = 630, .length = 2}, + [289] = {.index = 632, .length = 3}, + [290] = {.index = 635, .length = 2}, + [291] = {.index = 637, .length = 2}, + [292] = {.index = 639, .length = 1}, + [293] = {.index = 640, .length = 3}, [294] = {.index = 643, .length = 3}, - [295] = {.index = 646, .length = 3}, - [296] = {.index = 649, .length = 4}, - [297] = {.index = 653, .length = 4}, + [295] = {.index = 646, .length = 4}, + [296] = {.index = 650, .length = 4}, + [297] = {.index = 654, .length = 3}, [298] = {.index = 657, .length = 3}, - [299] = {.index = 660, .length = 3}, - [300] = {.index = 663, .length = 2}, - [301] = {.index = 665, .length = 3}, - [302] = {.index = 668, .length = 2}, - [303] = {.index = 670, .length = 4}, - [304] = {.index = 674, .length = 4}, - [305] = {.index = 678, .length = 4}, - [306] = {.index = 682, .length = 3}, - [307] = {.index = 685, .length = 5}, - [308] = {.index = 690, .length = 5}, - [309] = {.index = 695, .length = 5}, - [310] = {.index = 700, .length = 4}, - [311] = {.index = 704, .length = 4}, + [299] = {.index = 660, .length = 2}, + [300] = {.index = 662, .length = 3}, + [301] = {.index = 665, .length = 2}, + [302] = {.index = 667, .length = 4}, + [303] = {.index = 671, .length = 4}, + [304] = {.index = 675, .length = 4}, + [305] = {.index = 679, .length = 3}, + [306] = {.index = 682, .length = 5}, + [307] = {.index = 687, .length = 5}, + [308] = {.index = 692, .length = 5}, + [309] = {.index = 697, .length = 4}, + [310] = {.index = 701, .length = 4}, + [311] = {.index = 705, .length = 3}, [312] = {.index = 708, .length = 3}, - [313] = {.index = 711, .length = 3}, - [314] = {.index = 711, .length = 3}, - [315] = {.index = 714, .length = 2}, - [316] = {.index = 716, .length = 2}, - [317] = {.index = 718, .length = 3}, - [318] = {.index = 721, .length = 2}, - [319] = {.index = 723, .length = 2}, - [320] = {.index = 725, .length = 4}, + [313] = {.index = 708, .length = 3}, + [314] = {.index = 711, .length = 2}, + [315] = {.index = 713, .length = 2}, + [316] = {.index = 715, .length = 3}, + [317] = {.index = 718, .length = 2}, + [318] = {.index = 720, .length = 2}, + [319] = {.index = 722, .length = 4}, + [320] = {.index = 726, .length = 3}, [321] = {.index = 729, .length = 3}, - [322] = {.index = 732, .length = 3}, - [323] = {.index = 735, .length = 4}, + [322] = {.index = 732, .length = 4}, + [323] = {.index = 736, .length = 3}, [324] = {.index = 739, .length = 3}, - [325] = {.index = 742, .length = 3}, - [326] = {.index = 745, .length = 2}, - [327] = {.index = 747, .length = 4}, - [328] = {.index = 751, .length = 5}, - [329] = {.index = 756, .length = 5}, - [330] = {.index = 761, .length = 4}, - [331] = {.index = 761, .length = 4}, - [332] = {.index = 765, .length = 4}, - [333] = {.index = 769, .length = 3}, - [334] = {.index = 772, .length = 2}, - [335] = {.index = 774, .length = 2}, - [336] = {.index = 776, .length = 3}, - [337] = {.index = 779, .length = 4}, - [338] = {.index = 783, .length = 4}, + [325] = {.index = 742, .length = 2}, + [326] = {.index = 744, .length = 4}, + [327] = {.index = 748, .length = 5}, + [328] = {.index = 753, .length = 5}, + [329] = {.index = 758, .length = 4}, + [330] = {.index = 758, .length = 4}, + [331] = {.index = 762, .length = 4}, + [332] = {.index = 766, .length = 3}, + [333] = {.index = 769, .length = 2}, + [334] = {.index = 771, .length = 2}, + [335] = {.index = 773, .length = 3}, + [336] = {.index = 776, .length = 4}, + [337] = {.index = 780, .length = 4}, + [338] = {.index = 784, .length = 3}, [339] = {.index = 787, .length = 3}, - [340] = {.index = 790, .length = 3}, - [341] = {.index = 793, .length = 4}, + [340] = {.index = 790, .length = 4}, + [341] = {.index = 794, .length = 3}, [342] = {.index = 797, .length = 3}, - [343] = {.index = 800, .length = 3}, - [344] = {.index = 803, .length = 5}, - [345] = {.index = 808, .length = 3}, - [346] = {.index = 811, .length = 4}, - [347] = {.index = 815, .length = 4}, + [343] = {.index = 800, .length = 5}, + [344] = {.index = 805, .length = 3}, + [345] = {.index = 808, .length = 4}, + [346] = {.index = 812, .length = 4}, + [347] = {.index = 816, .length = 3}, [348] = {.index = 819, .length = 3}, - [349] = {.index = 822, .length = 3}, - [350] = {.index = 825, .length = 4}, - [351] = {.index = 829, .length = 4}, + [349] = {.index = 822, .length = 4}, + [350] = {.index = 826, .length = 4}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -3338,18 +3292,18 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [11] = {field_body, 1}, [12] = - {field_close_tag, 1}, - {field_open_tag, 0}, - [14] = {field_constructor, 1}, - [15] = + [13] = {field_arguments, 1}, {field_function, 0}, - [17] = + [15] = {field_argument, 0}, {field_operator, 1}, - [19] = + [17] = {field_type_arguments, 1}, + [18] = + {field_close_tag, 1}, + {field_open_tag, 0}, [20] = {field_parameters, 0}, {field_return_type, 1}, @@ -3424,1034 +3378,1030 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [68] = {field_label, 1}, [69] = - {field_close_tag, 2}, - {field_content, 1}, - {field_open_tag, 0}, - [72] = {field_body, 2}, {field_name, 1}, - [74] = + [71] = {field_value, 0}, - [75] = + [72] = {field_type_arguments, 1, .inherited = true}, {field_value, 1, .inherited = true}, - [77] = + [74] = {field_object, 0, .inherited = true}, {field_property, 0, .inherited = true}, - [79] = + [76] = {field_arguments, 0, .inherited = true}, {field_function, 0, .inherited = true}, - [81] = + [78] = {field_argument, 0, .inherited = true}, {field_operator, 0, .inherited = true}, - [83] = + [80] = {field_body, 2}, - [84] = + [81] = {field_body, 2}, {field_type_parameters, 1}, - [86] = + [83] = {field_body, 2}, {field_parameters, 1, .inherited = true}, {field_return_type, 1, .inherited = true}, {field_type_parameters, 1, .inherited = true}, - [90] = + [87] = {field_arguments, 2}, {field_constructor, 1}, - [92] = + [89] = {field_constructor, 1}, {field_type_arguments, 2}, - [94] = + [91] = {field_name, 1}, - [95] = + [92] = {field_attribute, 0}, - [96] = + [93] = {field_name, 0}, {field_value, 1}, - [98] = + [95] = {field_constraint, 1}, {field_name, 0}, - [100] = + [97] = {field_left, 0}, {field_operator, 1}, {field_right, 2}, - [103] = + [100] = {field_object, 0}, {field_property, 2}, - [105] = + [102] = {field_object, 0}, {field_optional_chain, 1}, {field_property, 2}, - [108] = + [105] = {field_arguments, 2}, {field_function, 0}, {field_type_arguments, 1}, - [111] = + [108] = {field_arguments, 2}, {field_function, 0}, - [113] = + [110] = {field_close_tag, 2}, {field_open_tag, 0}, - [115] = + [112] = {field_body, 2}, {field_parameters, 0, .inherited = true}, {field_return_type, 0, .inherited = true}, {field_type_parameters, 0, .inherited = true}, - [119] = + [116] = {field_parameters, 1}, {field_return_type, 2}, {field_type_parameters, 0}, - [122] = + [119] = {field_declaration, 2}, {field_decorator, 0, .inherited = true}, - [124] = + [121] = {field_body, 2}, {field_decorator, 0, .inherited = true}, - [126] = + [123] = {field_source, 2, .inherited = true}, - [127] = + [124] = {field_value, 2}, - [128] = + [125] = {field_key, 0}, {field_value, 2}, - [130] = + [127] = {field_body, 2}, {field_name, 0}, {field_parameters, 1, .inherited = true}, {field_return_type, 1, .inherited = true}, {field_type_parameters, 1, .inherited = true}, - [135] = + [132] = {field_source, 2}, - [136] = + [133] = {field_value, 1}, - [137] = + [134] = {field_name, 0}, {field_type, 2}, - [139] = + [136] = {field_name, 0}, {field_type, 1}, {field_value, 2, .inherited = true}, - [142] = + [139] = {field_body, 3}, {field_name, 2}, - [144] = + [141] = {field_alternative, 3}, {field_condition, 1}, {field_consequence, 2}, - [147] = + [144] = {field_body, 3}, {field_kind, 2, .inherited = true}, {field_left, 2, .inherited = true}, {field_operator, 2, .inherited = true}, {field_right, 2, .inherited = true}, {field_value, 2, .inherited = true}, - [153] = + [150] = {field_type, 2}, - [154] = + [151] = {field_pattern, 2}, - [155] = + [152] = {field_decorator, 0, .inherited = true}, {field_pattern, 0, .inherited = true}, {field_value, 2, .inherited = true}, - [158] = + [155] = {field_decorator, 0, .inherited = true}, {field_pattern, 0, .inherited = true}, {field_type, 2}, - [161] = + [158] = {field_decorator, 0, .inherited = true}, {field_pattern, 0, .inherited = true}, {field_type, 1}, {field_value, 2, .inherited = true}, - [165] = + [162] = {field_decorator, 0, .inherited = true}, {field_pattern, 2}, - [167] = + [164] = {field_body, 1}, {field_condition, 3}, - [169] = + [166] = {field_body, 1}, {field_finalizer, 3}, {field_handler, 2}, - [172] = + [169] = {field_name, 0}, {field_parameters, 1, .inherited = true}, {field_return_type, 1, .inherited = true}, {field_type_parameters, 1, .inherited = true}, - [176] = + [173] = {field_decorator, 0, .inherited = true}, - [177] = + [174] = {field_decorator, 0, .inherited = true}, {field_name, 1}, - [179] = + [176] = {field_decorator, 1, .inherited = true}, - [180] = + [177] = {field_body, 3}, {field_name, 1}, - [182] = + [179] = {field_body, 3}, {field_name, 1}, {field_type_parameters, 2}, - [185] = + [182] = {field_type_arguments, 1}, {field_value, 0}, - [187] = + [184] = {field_type_arguments, 1, .inherited = true}, {field_type_arguments, 2, .inherited = true}, {field_value, 1, .inherited = true}, {field_value, 2, .inherited = true}, - [191] = + [188] = {field_parameters, 0, .inherited = true}, {field_return_type, 0, .inherited = true}, {field_type_parameters, 0, .inherited = true}, - [194] = + [191] = {field_object, 1, .inherited = true}, {field_property, 1, .inherited = true}, - [196] = + [193] = {field_index, 1, .inherited = true}, {field_object, 1, .inherited = true}, - [198] = + [195] = {field_arguments, 1, .inherited = true}, {field_function, 1, .inherited = true}, - [200] = + [197] = {field_function, 1, .inherited = true}, {field_type_arguments, 1, .inherited = true}, - [202] = + [199] = {field_name, 0}, {field_type_arguments, 1}, - [204] = + [201] = {field_arguments, 1}, {field_function, 0}, {field_object, 0, .inherited = true}, {field_property, 0, .inherited = true}, - [208] = + [205] = {field_body, 3}, {field_type_parameters, 1}, - [210] = + [207] = {field_body, 3}, {field_parameter, 1}, - [212] = + [209] = {field_body, 3}, {field_parameters, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, {field_type_parameters, 2, .inherited = true}, - [216] = + [213] = {field_body, 3}, {field_parameters, 1, .inherited = true}, {field_return_type, 1, .inherited = true}, {field_type_parameters, 1, .inherited = true}, - [220] = + [217] = {field_name, 1}, {field_parameters, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, {field_type_parameters, 2, .inherited = true}, - [224] = + [221] = {field_body, 3}, {field_name, 1}, {field_parameters, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, {field_type_parameters, 2, .inherited = true}, - [229] = + [226] = {field_arguments, 3}, {field_constructor, 1}, {field_type_arguments, 2}, - [232] = + [229] = {field_left, 1}, {field_right, 3}, - [234] = + [231] = {field_flags, 3}, {field_pattern, 1}, - [236] = + [233] = {field_name, 1}, {field_value, 2}, - [238] = + [235] = {field_constraint, 2}, {field_name, 1}, - [240] = + [237] = {field_attribute, 2, .inherited = true}, {field_name, 1}, - [242] = + [239] = {field_attribute, 0, .inherited = true}, {field_attribute, 1, .inherited = true}, - [244] = + [241] = {field_name, 1}, {field_type_arguments, 2}, - [246] = + [243] = {field_constraint, 1}, {field_name, 0}, {field_value, 2}, - [249] = + [246] = {field_type, 1}, - [250] = + [247] = {field_index, 2}, {field_object, 0}, - [252] = + [249] = {field_arguments, 3}, {field_function, 0}, {field_type_arguments, 2}, - [255] = + [252] = {field_declaration, 3}, {field_decorator, 0, .inherited = true}, - [257] = + [254] = {field_body, 3}, {field_decorator, 0, .inherited = true}, {field_name, 2}, - [260] = + [257] = {field_body, 3}, {field_decorator, 0, .inherited = true}, - [262] = + [259] = {field_body, 3}, {field_decorator, 0, .inherited = true}, {field_type_parameters, 2}, - [265] = + [262] = {field_source, 3, .inherited = true}, - [266] = + [263] = {field_alias, 2}, {field_name, 0}, - [268] = + [265] = {field_name, 1}, {field_value, 3}, - [270] = + [267] = {field_body, 3}, {field_name, 0}, {field_parameters, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, {field_type_parameters, 2, .inherited = true}, - [275] = + [272] = {field_pattern, 3}, - [276] = + [273] = {field_decorator, 0, .inherited = true}, {field_pattern, 0, .inherited = true}, {field_type, 2}, {field_value, 3, .inherited = true}, - [280] = + [277] = {field_decorator, 0, .inherited = true}, {field_pattern, 3}, - [282] = + [279] = {field_name, 2}, - [283] = + [280] = {field_name, 1}, {field_value, 2, .inherited = true}, - [285] = + [282] = {field_name, 1}, {field_type, 2}, - [287] = + [284] = {field_name, 0}, {field_value, 2, .inherited = true}, - [289] = + [286] = {field_name, 0}, {field_parameters, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, {field_type_parameters, 2, .inherited = true}, - [293] = + [290] = {field_decorator, 0, .inherited = true}, {field_name, 2}, - [295] = + [292] = {field_decorator, 0, .inherited = true}, {field_name, 1}, {field_value, 2, .inherited = true}, - [298] = + [295] = {field_decorator, 0, .inherited = true}, {field_name, 1}, {field_type, 2}, - [301] = + [298] = {field_body, 4}, {field_name, 1}, {field_type_parameters, 2}, - [304] = + [301] = {field_type_arguments, 0, .inherited = true}, {field_type_arguments, 1, .inherited = true}, {field_value, 0, .inherited = true}, {field_value, 1, .inherited = true}, - [308] = + [305] = {field_parameters, 1}, - [309] = + [306] = {field_function, 0}, {field_type_arguments, 1}, - [311] = + [308] = {field_function, 0}, {field_object, 0, .inherited = true}, {field_property, 0, .inherited = true}, {field_type_arguments, 1}, - [315] = + [312] = {field_arguments, 1}, {field_function, 0}, {field_index, 0, .inherited = true}, {field_object, 0, .inherited = true}, - [319] = + [316] = {field_function, 0}, {field_index, 0, .inherited = true}, {field_object, 0, .inherited = true}, {field_type_arguments, 1}, - [323] = + [320] = {field_module, 0}, {field_name, 2}, - [325] = + [322] = {field_parameters, 0}, {field_return_type, 2}, - [327] = + [324] = {field_object, 0}, {field_object, 0, .inherited = true}, {field_property, 0, .inherited = true}, {field_property, 2}, - [331] = + [328] = {field_arguments, 0, .inherited = true}, {field_function, 0, .inherited = true}, {field_object, 0}, {field_property, 2}, - [335] = + [332] = {field_body, 4}, {field_parameters, 3, .inherited = true}, {field_return_type, 3, .inherited = true}, {field_type_parameters, 3, .inherited = true}, - [339] = + [336] = {field_name, 2}, {field_parameters, 3, .inherited = true}, {field_return_type, 3, .inherited = true}, {field_type_parameters, 3, .inherited = true}, - [343] = + [340] = {field_body, 4}, {field_name, 2}, {field_parameters, 3, .inherited = true}, {field_return_type, 3, .inherited = true}, {field_type_parameters, 3, .inherited = true}, - [348] = + [345] = {field_constraint, 2}, {field_name, 1}, {field_value, 3}, - [351] = + [348] = {field_attribute, 3, .inherited = true}, {field_name, 1}, {field_type_arguments, 2}, - [354] = + [351] = {field_body, 4}, {field_name, 2}, - [356] = + [353] = {field_body, 4}, {field_name, 2}, {field_type_parameters, 3}, - [359] = + [356] = {field_type, 1}, {field_type, 2, .inherited = true}, - [361] = + [358] = {field_alternative, 4}, {field_condition, 0}, {field_consequence, 2}, - [364] = + [361] = {field_index, 3}, {field_object, 0}, {field_optional_chain, 1}, - [367] = + [364] = {field_decorator, 0, .inherited = true}, {field_value, 3}, - [369] = + [366] = {field_body, 4}, {field_decorator, 0, .inherited = true}, {field_name, 2}, - [372] = + [369] = {field_body, 4}, {field_decorator, 0, .inherited = true}, {field_name, 2}, {field_type_parameters, 3}, - [376] = + [373] = {field_body, 4}, {field_decorator, 0, .inherited = true}, {field_type_parameters, 2}, - [379] = + [376] = {field_body, 4}, {field_decorator, 0, .inherited = true}, {field_name, 3}, - [382] = + [379] = {field_alias, 3}, {field_name, 1}, - [384] = + [381] = {field_name, 1}, {field_type_parameters, 2}, {field_value, 4}, - [387] = + [384] = {field_body, 4}, {field_name, 1}, {field_parameters, 3, .inherited = true}, {field_return_type, 3, .inherited = true}, {field_type_parameters, 3, .inherited = true}, - [392] = + [389] = {field_left, 1}, {field_operator, 2}, {field_right, 3}, - [395] = + [392] = {field_body, 5}, {field_condition, 3}, {field_initializer, 2}, - [398] = + [395] = {field_decorator, 0, .inherited = true}, {field_pattern, 4}, - [400] = + [397] = {field_name, 1}, {field_parameters, 3, .inherited = true}, {field_return_type, 3, .inherited = true}, {field_type_parameters, 3, .inherited = true}, - [404] = + [401] = {field_type, 3}, - [405] = + [402] = {field_name, 2}, {field_value, 3, .inherited = true}, - [407] = + [404] = {field_name, 2}, {field_type, 3}, - [409] = + [406] = {field_name, 1}, {field_value, 3, .inherited = true}, - [411] = + [408] = {field_name, 1}, {field_type, 3}, - [413] = + [410] = {field_name, 1}, {field_type, 2}, {field_value, 3, .inherited = true}, - [416] = + [413] = {field_name, 3}, - [417] = + [414] = {field_name, 0}, {field_type, 2}, {field_value, 3, .inherited = true}, - [420] = + [417] = {field_decorator, 0, .inherited = true}, {field_name, 3}, - [422] = + [419] = {field_decorator, 0, .inherited = true}, {field_name, 2}, {field_value, 3, .inherited = true}, - [425] = + [422] = {field_decorator, 0, .inherited = true}, {field_name, 2}, {field_type, 3}, - [428] = + [425] = {field_decorator, 0, .inherited = true}, {field_name, 1}, {field_value, 3, .inherited = true}, - [431] = + [428] = {field_decorator, 0, .inherited = true}, {field_name, 1}, {field_type, 3}, - [434] = + [431] = {field_decorator, 0, .inherited = true}, {field_name, 1}, {field_type, 2}, {field_value, 3, .inherited = true}, - [438] = + [435] = {field_parameters, 1}, {field_type, 2}, - [440] = + [437] = {field_parameters, 2}, {field_type_parameters, 1}, - [442] = + [439] = {field_parameters, 2}, - [443] = + [440] = {field_index, 0, .inherited = true}, {field_object, 0}, {field_object, 0, .inherited = true}, {field_property, 2}, - [447] = + [444] = {field_parameters, 1}, {field_type, 3}, - [449] = + [446] = {field_parameters, 1}, {field_return_type, 3}, {field_type_parameters, 0}, - [452] = + [449] = {field_body, 5}, {field_name, 3}, {field_parameters, 4, .inherited = true}, {field_return_type, 4, .inherited = true}, {field_type_parameters, 4, .inherited = true}, - [457] = + [454] = {field_body, 5}, {field_name, 2}, {field_type_parameters, 3}, - [460] = + [457] = {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [462] = + [459] = {field_name, 1}, {field_name, 2, .inherited = true}, - [464] = + [461] = {field_name, 0, .inherited = true}, {field_name, 1, .inherited = true}, - [466] = + [463] = {field_name, 2, .inherited = true}, - [467] = + [464] = {field_body, 5}, {field_decorator, 0, .inherited = true}, {field_name, 2}, {field_type_parameters, 3}, - [471] = + [468] = {field_body, 5}, {field_decorator, 0, .inherited = true}, {field_name, 3}, - [474] = + [471] = {field_body, 5}, {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_type_parameters, 4}, - [478] = + [475] = {field_body, 5}, {field_name, 2}, {field_parameters, 4, .inherited = true}, {field_return_type, 4, .inherited = true}, {field_type_parameters, 4, .inherited = true}, - [483] = + [480] = {field_source, 4}, - [484] = + [481] = {field_body, 3}, {field_value, 1}, - [486] = + [483] = {field_kind, 1}, {field_left, 2}, {field_operator, 3}, {field_right, 4}, - [490] = + [487] = {field_body, 6}, {field_condition, 3}, {field_increment, 4}, {field_initializer, 2}, - [494] = + [491] = {field_body, 6}, {field_condition, 3}, {field_condition, 4}, {field_initializer, 2}, - [498] = + [495] = {field_body, 6}, {field_condition, 4}, {field_initializer, 2}, - [501] = + [498] = {field_body, 4}, {field_parameter, 2}, - [503] = + [500] = {field_name, 2}, {field_parameters, 4, .inherited = true}, {field_return_type, 4, .inherited = true}, {field_type_parameters, 4, .inherited = true}, - [507] = + [504] = {field_name, 3}, {field_parameters, 4, .inherited = true}, {field_return_type, 4, .inherited = true}, {field_type_parameters, 4, .inherited = true}, - [511] = + [508] = {field_name, 2}, {field_value, 4, .inherited = true}, - [513] = + [510] = {field_name, 2}, {field_type, 4}, - [515] = + [512] = {field_name, 2}, {field_type, 3}, {field_value, 4, .inherited = true}, - [518] = + [515] = {field_name, 1}, {field_type, 3}, {field_value, 4, .inherited = true}, - [521] = + [518] = {field_name, 3}, {field_value, 4, .inherited = true}, - [523] = + [520] = {field_name, 3}, {field_type, 4}, - [525] = + [522] = {field_type, 4}, - [526] = + [523] = {field_name, 4}, - [527] = + [524] = {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_value, 4, .inherited = true}, - [530] = + [527] = {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_type, 4}, - [533] = + [530] = {field_decorator, 0, .inherited = true}, {field_name, 2}, {field_value, 4, .inherited = true}, - [536] = + [533] = {field_decorator, 0, .inherited = true}, {field_name, 2}, {field_type, 4}, - [539] = + [536] = {field_decorator, 0, .inherited = true}, {field_name, 2}, {field_type, 3}, {field_value, 4, .inherited = true}, - [543] = + [540] = {field_decorator, 0, .inherited = true}, {field_name, 4}, - [545] = + [542] = {field_decorator, 0, .inherited = true}, {field_name, 1}, {field_type, 3}, {field_value, 4, .inherited = true}, - [549] = + [546] = {field_parameters, 2}, {field_type, 3}, {field_type_parameters, 1}, - [552] = + [549] = {field_parameters, 2}, {field_type, 3}, - [554] = + [551] = {field_parameters, 3}, {field_type_parameters, 2}, - [556] = + [553] = {field_index, 2}, {field_object, 0}, {field_object, 0, .inherited = true}, {field_property, 0, .inherited = true}, - [560] = + [557] = {field_index, 0, .inherited = true}, {field_index, 2}, {field_object, 0}, {field_object, 0, .inherited = true}, - [564] = + [561] = {field_arguments, 0, .inherited = true}, {field_function, 0, .inherited = true}, {field_index, 2}, {field_object, 0}, - [568] = + [565] = {field_parameters, 2}, {field_type, 4}, {field_type_parameters, 1}, - [571] = + [568] = {field_parameters, 2}, {field_type, 4}, - [573] = + [570] = {field_body, 6}, {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_type_parameters, 4}, - [577] = + [574] = {field_body, 6}, {field_name, 3}, {field_parameters, 5, .inherited = true}, {field_return_type, 5, .inherited = true}, {field_type_parameters, 5, .inherited = true}, - [582] = + [579] = {field_body, 6}, {field_name, 4}, {field_parameters, 5, .inherited = true}, {field_return_type, 5, .inherited = true}, {field_type_parameters, 5, .inherited = true}, - [587] = + [584] = {field_kind, 1}, {field_left, 2}, {field_operator, 4}, {field_right, 5}, {field_value, 3, .inherited = true}, - [592] = + [589] = {field_kind, 1}, {field_left, 2}, {field_operator, 4}, {field_right, 5}, - [596] = + [593] = {field_body, 7}, {field_condition, 3}, {field_condition, 4}, {field_increment, 5}, {field_initializer, 2}, - [601] = + [598] = {field_body, 7}, {field_condition, 4}, {field_increment, 5}, {field_initializer, 2}, - [605] = + [602] = {field_body, 7}, {field_condition, 4}, {field_condition, 5}, {field_initializer, 2}, - [609] = + [606] = {field_body, 5}, {field_parameter, 2}, {field_type, 3}, - [612] = + [609] = {field_index_type, 3}, {field_name, 1}, {field_type, 5}, - [615] = + [612] = {field_alias, 4}, {field_name, 0}, {field_type, 2}, - [618] = + [615] = {field_sign, 0}, {field_type, 5}, - [620] = + [617] = {field_name, 3}, {field_parameters, 5, .inherited = true}, {field_return_type, 5, .inherited = true}, {field_type_parameters, 5, .inherited = true}, - [624] = + [621] = {field_name, 4}, {field_parameters, 5, .inherited = true}, {field_return_type, 5, .inherited = true}, {field_type_parameters, 5, .inherited = true}, - [628] = + [625] = {field_name, 2}, {field_type, 4}, {field_value, 5, .inherited = true}, - [631] = + [628] = {field_name, 3}, {field_value, 5, .inherited = true}, - [633] = + [630] = {field_name, 3}, {field_type, 5}, - [635] = + [632] = {field_name, 3}, {field_type, 4}, {field_value, 5, .inherited = true}, - [638] = + [635] = {field_name, 4}, {field_value, 5, .inherited = true}, - [640] = + [637] = {field_name, 4}, {field_type, 5}, - [642] = + [639] = {field_name, 5}, - [643] = + [640] = {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_value, 5, .inherited = true}, - [646] = + [643] = {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_type, 5}, - [649] = + [646] = {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_type, 4}, {field_value, 5, .inherited = true}, - [653] = + [650] = {field_decorator, 0, .inherited = true}, {field_name, 2}, {field_type, 4}, {field_value, 5, .inherited = true}, - [657] = + [654] = {field_decorator, 0, .inherited = true}, {field_name, 4}, {field_value, 5, .inherited = true}, - [660] = + [657] = {field_decorator, 0, .inherited = true}, {field_name, 4}, {field_type, 5}, - [663] = + [660] = {field_decorator, 0, .inherited = true}, {field_name, 5}, - [665] = + [662] = {field_parameters, 3}, {field_type, 4}, {field_type_parameters, 2}, - [668] = + [665] = {field_index, 3}, {field_object, 0}, - [670] = + [667] = {field_index, 3}, {field_object, 0}, {field_object, 0, .inherited = true}, {field_property, 0, .inherited = true}, - [674] = + [671] = {field_index, 0, .inherited = true}, {field_index, 3}, {field_object, 0}, {field_object, 0, .inherited = true}, - [678] = + [675] = {field_arguments, 0, .inherited = true}, {field_function, 0, .inherited = true}, {field_index, 3}, {field_object, 0}, - [682] = + [679] = {field_parameters, 3}, {field_type, 5}, {field_type_parameters, 2}, - [685] = + [682] = {field_body, 7}, {field_name, 4}, {field_parameters, 6, .inherited = true}, {field_return_type, 6, .inherited = true}, {field_type_parameters, 6, .inherited = true}, - [690] = + [687] = {field_body, 7}, {field_name, 5}, {field_parameters, 6, .inherited = true}, {field_return_type, 6, .inherited = true}, {field_type_parameters, 6, .inherited = true}, - [695] = + [692] = {field_body, 8}, {field_condition, 4}, {field_condition, 5}, {field_increment, 6}, {field_initializer, 2}, - [700] = + [697] = {field_name, 4}, {field_parameters, 6, .inherited = true}, {field_return_type, 6, .inherited = true}, {field_type_parameters, 6, .inherited = true}, - [704] = + [701] = {field_name, 5}, {field_parameters, 6, .inherited = true}, {field_return_type, 6, .inherited = true}, {field_type_parameters, 6, .inherited = true}, - [708] = + [705] = {field_name, 3}, {field_type, 5}, {field_value, 6, .inherited = true}, - [711] = + [708] = {field_index_type, 4}, {field_name, 2}, {field_type, 6}, - [714] = + [711] = {field_name, 4}, {field_value, 6, .inherited = true}, - [716] = + [713] = {field_name, 4}, {field_type, 6}, - [718] = + [715] = {field_name, 4}, {field_type, 5}, {field_value, 6, .inherited = true}, - [721] = + [718] = {field_name, 5}, {field_value, 6, .inherited = true}, - [723] = + [720] = {field_name, 5}, {field_type, 6}, - [725] = + [722] = {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_type, 5}, {field_value, 6, .inherited = true}, - [729] = + [726] = {field_decorator, 0, .inherited = true}, {field_name, 4}, {field_value, 6, .inherited = true}, - [732] = + [729] = {field_decorator, 0, .inherited = true}, {field_name, 4}, {field_type, 6}, - [735] = + [732] = {field_decorator, 0, .inherited = true}, {field_name, 4}, {field_type, 5}, {field_value, 6, .inherited = true}, - [739] = + [736] = {field_decorator, 0, .inherited = true}, {field_name, 5}, {field_value, 6, .inherited = true}, - [742] = + [739] = {field_decorator, 0, .inherited = true}, {field_name, 5}, {field_type, 6}, - [745] = + [742] = {field_decorator, 0, .inherited = true}, {field_name, 6}, - [747] = + [744] = {field_alternative, 6}, {field_consequence, 4}, {field_left, 0}, {field_right, 2}, - [751] = + [748] = {field_body, 8}, {field_name, 5}, {field_parameters, 7, .inherited = true}, {field_return_type, 7, .inherited = true}, {field_type_parameters, 7, .inherited = true}, - [756] = + [753] = {field_body, 8}, {field_name, 6}, {field_parameters, 7, .inherited = true}, {field_return_type, 7, .inherited = true}, {field_type_parameters, 7, .inherited = true}, - [761] = + [758] = {field_index_type, 5}, {field_name, 3}, {field_sign, 0}, {field_type, 7}, - [765] = + [762] = {field_name, 5}, {field_parameters, 7, .inherited = true}, {field_return_type, 7, .inherited = true}, {field_type_parameters, 7, .inherited = true}, - [769] = + [766] = {field_name, 4}, {field_type, 6}, {field_value, 7, .inherited = true}, - [772] = + [769] = {field_name, 5}, {field_value, 7, .inherited = true}, - [774] = + [771] = {field_name, 5}, {field_type, 7}, - [776] = + [773] = {field_name, 5}, {field_type, 6}, {field_value, 7, .inherited = true}, - [779] = + [776] = {field_name, 6}, {field_parameters, 7, .inherited = true}, {field_return_type, 7, .inherited = true}, {field_type_parameters, 7, .inherited = true}, - [783] = + [780] = {field_decorator, 0, .inherited = true}, {field_name, 4}, {field_type, 6}, {field_value, 7, .inherited = true}, - [787] = + [784] = {field_decorator, 0, .inherited = true}, {field_name, 5}, {field_value, 7, .inherited = true}, - [790] = + [787] = {field_decorator, 0, .inherited = true}, {field_name, 5}, {field_type, 7}, - [793] = + [790] = {field_decorator, 0, .inherited = true}, {field_name, 5}, {field_type, 6}, {field_value, 7, .inherited = true}, - [797] = + [794] = {field_decorator, 0, .inherited = true}, {field_name, 6}, {field_value, 7, .inherited = true}, - [800] = + [797] = {field_decorator, 0, .inherited = true}, {field_name, 6}, {field_type, 7}, - [803] = + [800] = {field_body, 9}, {field_name, 6}, {field_parameters, 8, .inherited = true}, {field_return_type, 8, .inherited = true}, {field_type_parameters, 8, .inherited = true}, - [808] = + [805] = {field_name, 5}, {field_type, 7}, {field_value, 8, .inherited = true}, - [811] = + [808] = {field_name, 6}, {field_parameters, 8, .inherited = true}, {field_return_type, 8, .inherited = true}, {field_type_parameters, 8, .inherited = true}, - [815] = + [812] = {field_decorator, 0, .inherited = true}, {field_name, 5}, {field_type, 7}, {field_value, 8, .inherited = true}, - [819] = + [816] = {field_decorator, 0, .inherited = true}, {field_name, 6}, {field_value, 8, .inherited = true}, - [822] = + [819] = {field_decorator, 0, .inherited = true}, {field_name, 6}, {field_type, 8}, - [825] = + [822] = {field_decorator, 0, .inherited = true}, {field_name, 6}, {field_type, 7}, {field_value, 8, .inherited = true}, - [829] = + [826] = {field_decorator, 0, .inherited = true}, {field_name, 6}, {field_type, 8}, @@ -4466,7 +4416,7 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [7] = { [0] = alias_sym_property_identifier, }, - [14] = { + [13] = { [0] = alias_sym_type_identifier, }, [22] = { @@ -4490,189 +4440,189 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [44] = { [1] = alias_sym_statement_identifier, }, - [46] = { + [45] = { [1] = alias_sym_type_identifier, }, - [49] = { + [48] = { [0] = alias_sym_type_identifier, }, - [50] = { + [49] = { [0] = alias_sym_this_type, }, - [59] = { + [58] = { [1] = alias_sym_type_identifier, }, - [62] = { + [61] = { [0] = alias_sym_type_identifier, }, - [63] = { + [62] = { [0] = alias_sym_type_identifier, }, - [64] = { + [63] = { [1] = sym_member_expression, }, - [68] = { + [67] = { [1] = alias_sym_type_identifier, [2] = alias_sym_interface_body, }, - [70] = { + [69] = { [2] = alias_sym_property_identifier, }, - [72] = { + [71] = { [2] = alias_sym_property_identifier, }, - [83] = { + [82] = { [0] = sym_member_expression, [2] = alias_sym_property_identifier, }, - [84] = { + [83] = { [0] = alias_sym_shorthand_property_identifier_pattern, }, - [106] = { + [105] = { [1] = alias_sym_type_identifier, }, - [107] = { + [106] = { [1] = alias_sym_type_identifier, }, - [115] = { + [114] = { [0] = alias_sym_type_identifier, }, - [116] = { + [115] = { [1] = alias_sym_type_identifier, }, - [117] = { + [116] = { [1] = anon_sym_unique, }, - [121] = { + [120] = { [1] = sym_identifier, }, - [128] = { + [127] = { [1] = sym_identifier, }, - [131] = { + [130] = { [1] = alias_sym_type_identifier, }, - [132] = { + [131] = { [1] = alias_sym_type_identifier, }, - [136] = { + [135] = { [0] = alias_sym_type_identifier, }, - [137] = { + [136] = { [1] = sym_member_expression, }, - [138] = { + [137] = { [1] = sym_member_expression, }, - [139] = { + [138] = { [2] = alias_sym_type_identifier, }, - [140] = { + [139] = { [1] = alias_sym_type_identifier, }, - [142] = { + [141] = { [1] = alias_sym_type_identifier, [3] = alias_sym_interface_body, }, - [143] = { + [142] = { [1] = alias_sym_type_identifier, [3] = alias_sym_interface_body, }, - [147] = { + [146] = { [2] = alias_sym_type_identifier, }, - [152] = { + [151] = { [1] = alias_sym_type_identifier, }, - [154] = { + [153] = { [0] = sym_identifier, }, - [166] = { + [165] = { [1] = alias_sym_type_identifier, }, - [173] = { + [172] = { [2] = alias_sym_type_identifier, }, - [175] = { + [174] = { [2] = alias_sym_property_identifier, }, - [177] = { + [176] = { [2] = alias_sym_property_identifier, }, - [182] = { + [181] = { [1] = alias_sym_type_identifier, }, - [184] = { + [183] = { [1] = sym_member_expression, }, - [185] = { + [184] = { [2] = alias_sym_type_identifier, }, - [186] = { + [185] = { [2] = alias_sym_type_identifier, }, - [187] = { + [186] = { [1] = alias_sym_type_identifier, }, - [189] = { + [188] = { [1] = alias_sym_type_identifier, [4] = alias_sym_interface_body, }, - [192] = { + [191] = { [0] = sym_identifier, }, - [194] = { + [193] = { [2] = alias_sym_type_identifier, }, - [195] = { + [194] = { [2] = alias_sym_type_identifier, }, - [197] = { + [196] = { [3] = alias_sym_type_identifier, }, - [199] = { + [198] = { [1] = alias_sym_type_identifier, }, - [201] = { + [200] = { [1] = sym_identifier, }, - [202] = { + [201] = { [1] = sym_identifier, }, - [207] = { + [206] = { [0] = alias_sym_type_identifier, }, - [225] = { + [224] = { [2] = alias_sym_property_identifier, }, - [230] = { + [229] = { [2] = alias_sym_type_identifier, }, - [235] = { + [234] = { [2] = alias_sym_type_identifier, }, - [236] = { + [235] = { [3] = alias_sym_type_identifier, }, - [237] = { + [236] = { [3] = alias_sym_type_identifier, }, - [271] = { + [270] = { [3] = alias_sym_property_identifier, }, - [272] = { + [271] = { [3] = alias_sym_type_identifier, }, - [281] = { + [280] = { [1] = sym_identifier, }, - [282] = { + [281] = { [0] = alias_sym_type_identifier, }, - [313] = { + [312] = { [2] = sym_identifier, }, - [330] = { + [329] = { [3] = sym_identifier, }, }; @@ -4709,23 +4659,23 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [15] = 15, [16] = 16, [17] = 17, - [18] = 18, - [19] = 17, - [20] = 14, - [21] = 14, + [18] = 16, + [19] = 16, + [20] = 17, + [21] = 16, [22] = 17, - [23] = 14, - [24] = 17, + [23] = 17, + [24] = 16, [25] = 17, - [26] = 14, + [26] = 16, [27] = 17, - [28] = 14, - [29] = 14, - [30] = 17, + [28] = 17, + [29] = 16, + [30] = 30, [31] = 31, [32] = 32, [33] = 33, - [34] = 32, + [34] = 34, [35] = 35, [36] = 36, [37] = 37, @@ -4735,49 +4685,49 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [41] = 41, [42] = 42, [43] = 43, - [44] = 44, + [44] = 31, [45] = 45, - [46] = 45, - [47] = 33, - [48] = 32, - [49] = 36, - [50] = 44, - [51] = 51, - [52] = 52, + [46] = 32, + [47] = 39, + [48] = 48, + [49] = 49, + [50] = 50, + [51] = 34, + [52] = 33, [53] = 35, - [54] = 37, + [54] = 36, [55] = 38, - [56] = 39, - [57] = 40, - [58] = 41, - [59] = 42, - [60] = 43, - [61] = 51, - [62] = 52, - [63] = 52, - [64] = 52, - [65] = 52, - [66] = 31, - [67] = 52, - [68] = 52, - [69] = 52, - [70] = 52, - [71] = 52, - [72] = 45, - [73] = 33, - [74] = 36, - [75] = 44, - [76] = 51, - [77] = 31, - [78] = 35, - [79] = 37, - [80] = 38, - [81] = 39, - [82] = 40, - [83] = 41, - [84] = 42, - [85] = 43, - [86] = 86, + [56] = 40, + [57] = 41, + [58] = 42, + [59] = 43, + [60] = 45, + [61] = 32, + [62] = 35, + [63] = 48, + [64] = 35, + [65] = 49, + [66] = 50, + [67] = 49, + [68] = 35, + [69] = 35, + [70] = 35, + [71] = 35, + [72] = 35, + [73] = 39, + [74] = 48, + [75] = 50, + [76] = 34, + [77] = 33, + [78] = 36, + [79] = 38, + [80] = 40, + [81] = 41, + [82] = 42, + [83] = 43, + [84] = 31, + [85] = 45, + [86] = 35, [87] = 87, [88] = 87, [89] = 87, @@ -4785,80 +4735,80 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [91] = 91, [92] = 92, [93] = 93, - [94] = 93, - [95] = 95, + [94] = 94, + [95] = 91, [96] = 96, [97] = 97, - [98] = 96, - [99] = 99, - [100] = 93, + [98] = 98, + [99] = 91, + [100] = 97, [101] = 101, - [102] = 102, - [103] = 102, + [102] = 101, + [103] = 103, [104] = 101, - [105] = 105, + [105] = 101, [106] = 101, [107] = 107, - [108] = 101, - [109] = 101, - [110] = 110, - [111] = 107, - [112] = 110, - [113] = 107, - [114] = 114, - [115] = 107, - [116] = 107, - [117] = 117, - [118] = 117, - [119] = 114, - [120] = 110, - [121] = 107, - [122] = 117, - [123] = 105, + [108] = 108, + [109] = 109, + [110] = 109, + [111] = 103, + [112] = 112, + [113] = 113, + [114] = 108, + [115] = 113, + [116] = 103, + [117] = 103, + [118] = 108, + [119] = 113, + [120] = 103, + [121] = 103, + [122] = 112, + [123] = 123, [124] = 124, - [125] = 125, + [125] = 107, [126] = 126, - [127] = 107, - [128] = 107, - [129] = 110, + [127] = 127, + [128] = 103, + [129] = 103, [130] = 130, - [131] = 131, - [132] = 114, - [133] = 107, - [134] = 107, - [135] = 107, - [136] = 114, - [137] = 107, - [138] = 102, - [139] = 110, - [140] = 110, - [141] = 107, - [142] = 107, - [143] = 107, - [144] = 110, - [145] = 126, - [146] = 107, - [147] = 110, - [148] = 125, + [131] = 108, + [132] = 109, + [133] = 112, + [134] = 108, + [135] = 112, + [136] = 103, + [137] = 103, + [138] = 108, + [139] = 103, + [140] = 103, + [141] = 123, + [142] = 108, + [143] = 108, + [144] = 103, + [145] = 103, + [146] = 124, + [147] = 103, + [148] = 103, [149] = 149, [150] = 149, [151] = 149, - [152] = 107, - [153] = 110, + [152] = 149, + [153] = 103, [154] = 149, [155] = 149, [156] = 149, [157] = 149, - [158] = 158, - [159] = 149, + [158] = 108, + [159] = 159, [160] = 149, [161] = 161, [162] = 162, [163] = 162, [164] = 162, - [165] = 162, + [165] = 165, [166] = 166, - [167] = 167, + [167] = 162, [168] = 162, [169] = 162, [170] = 162, @@ -4874,24 +4824,24 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [180] = 173, [181] = 173, [182] = 182, - [183] = 183, - [184] = 184, - [185] = 183, - [186] = 184, - [187] = 184, - [188] = 184, - [189] = 183, - [190] = 183, - [191] = 182, - [192] = 182, - [193] = 193, - [194] = 194, - [195] = 193, - [196] = 182, - [197] = 193, + [183] = 182, + [184] = 182, + [185] = 185, + [186] = 186, + [187] = 187, + [188] = 188, + [189] = 187, + [190] = 188, + [191] = 188, + [192] = 188, + [193] = 187, + [194] = 187, + [195] = 182, + [196] = 185, + [197] = 182, [198] = 182, - [199] = 182, - [200] = 194, + [199] = 185, + [200] = 186, [201] = 182, [202] = 182, [203] = 182, @@ -4899,26 +4849,26 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [205] = 204, [206] = 206, [207] = 207, - [208] = 207, - [209] = 209, - [210] = 209, - [211] = 209, - [212] = 206, - [213] = 207, - [214] = 206, + [208] = 208, + [209] = 207, + [210] = 206, + [211] = 208, + [212] = 208, + [213] = 206, + [214] = 207, [215] = 215, - [216] = 215, - [217] = 215, + [216] = 216, + [217] = 217, [218] = 218, - [219] = 215, - [220] = 215, + [219] = 219, + [220] = 220, [221] = 215, - [222] = 222, + [222] = 215, [223] = 223, - [224] = 224, - [225] = 225, - [226] = 222, - [227] = 227, + [224] = 215, + [225] = 215, + [226] = 226, + [227] = 215, [228] = 228, [229] = 229, [230] = 230, @@ -4927,7 +4877,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [233] = 233, [234] = 234, [235] = 235, - [236] = 230, + [236] = 236, [237] = 237, [238] = 238, [239] = 239, @@ -4938,164 +4888,164 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [244] = 244, [245] = 245, [246] = 246, - [247] = 244, + [247] = 247, [248] = 248, [249] = 249, [250] = 250, [251] = 251, [252] = 252, [253] = 253, - [254] = 254, + [254] = 226, [255] = 255, - [256] = 256, - [257] = 257, - [258] = 222, - [259] = 242, - [260] = 260, - [261] = 261, + [256] = 255, + [257] = 255, + [258] = 258, + [259] = 259, + [260] = 259, + [261] = 226, [262] = 262, - [263] = 244, + [263] = 262, [264] = 264, [265] = 265, [266] = 266, - [267] = 222, - [268] = 222, - [269] = 222, - [270] = 270, - [271] = 270, - [272] = 270, - [273] = 270, - [274] = 274, - [275] = 222, - [276] = 270, - [277] = 270, - [278] = 222, - [279] = 222, - [280] = 222, - [281] = 270, - [282] = 282, - [283] = 283, - [284] = 283, - [285] = 285, - [286] = 283, - [287] = 283, - [288] = 288, - [289] = 289, - [290] = 283, - [291] = 283, - [292] = 283, - [293] = 293, - [294] = 294, - [295] = 285, - [296] = 282, - [297] = 283, - [298] = 283, - [299] = 283, + [267] = 266, + [268] = 268, + [269] = 269, + [270] = 226, + [271] = 266, + [272] = 226, + [273] = 226, + [274] = 269, + [275] = 275, + [276] = 226, + [277] = 226, + [278] = 266, + [279] = 226, + [280] = 266, + [281] = 226, + [282] = 266, + [283] = 266, + [284] = 284, + [285] = 268, + [286] = 286, + [287] = 286, + [288] = 286, + [289] = 286, + [290] = 290, + [291] = 291, + [292] = 286, + [293] = 286, + [294] = 286, + [295] = 286, + [296] = 286, + [297] = 291, + [298] = 286, + [299] = 286, [300] = 300, - [301] = 283, - [302] = 283, - [303] = 283, - [304] = 283, - [305] = 300, + [301] = 286, + [302] = 286, + [303] = 303, + [304] = 304, + [305] = 286, [306] = 306, [307] = 307, [308] = 308, - [309] = 309, - [310] = 307, + [309] = 306, + [310] = 310, [311] = 311, [312] = 312, - [313] = 312, - [314] = 312, - [315] = 315, - [316] = 307, + [313] = 311, + [314] = 314, + [315] = 306, + [316] = 311, [317] = 317, [318] = 318, - [319] = 317, + [319] = 319, [320] = 320, - [321] = 320, + [321] = 321, [322] = 318, - [323] = 318, - [324] = 324, - [325] = 324, - [326] = 326, - [327] = 317, - [328] = 324, + [323] = 319, + [324] = 317, + [325] = 320, + [326] = 318, + [327] = 319, + [328] = 317, [329] = 320, [330] = 330, [331] = 331, [332] = 332, - [333] = 333, + [333] = 330, [334] = 334, - [335] = 333, + [335] = 335, [336] = 336, - [337] = 332, + [337] = 337, [338] = 338, [339] = 339, - [340] = 340, - [341] = 336, - [342] = 332, - [343] = 338, - [344] = 339, - [345] = 340, - [346] = 333, - [347] = 336, + [340] = 330, + [341] = 332, + [342] = 342, + [343] = 343, + [344] = 331, + [345] = 330, + [346] = 346, + [347] = 347, [348] = 348, - [349] = 333, + [349] = 349, [350] = 350, - [351] = 351, + [351] = 343, [352] = 352, - [353] = 353, - [354] = 333, - [355] = 336, - [356] = 336, - [357] = 332, - [358] = 333, - [359] = 336, + [353] = 330, + [354] = 342, + [355] = 331, + [356] = 346, + [357] = 347, + [358] = 348, + [359] = 342, [360] = 330, - [361] = 332, - [362] = 338, - [363] = 339, - [364] = 340, - [365] = 338, - [366] = 366, - [367] = 339, - [368] = 340, - [369] = 369, - [370] = 340, - [371] = 371, - [372] = 332, - [373] = 373, - [374] = 374, - [375] = 336, - [376] = 376, - [377] = 338, - [378] = 338, - [379] = 333, - [380] = 339, - [381] = 336, - [382] = 332, - [383] = 338, - [384] = 339, - [385] = 332, - [386] = 340, - [387] = 340, - [388] = 388, - [389] = 333, - [390] = 339, - [391] = 340, - [392] = 338, - [393] = 351, - [394] = 353, - [395] = 395, - [396] = 333, - [397] = 336, - [398] = 332, - [399] = 338, - [400] = 339, - [401] = 340, - [402] = 339, + [361] = 342, + [362] = 331, + [363] = 346, + [364] = 347, + [365] = 348, + [366] = 342, + [367] = 331, + [368] = 346, + [369] = 347, + [370] = 370, + [371] = 331, + [372] = 330, + [373] = 342, + [374] = 331, + [375] = 346, + [376] = 347, + [377] = 348, + [378] = 378, + [379] = 346, + [380] = 347, + [381] = 348, + [382] = 330, + [383] = 342, + [384] = 331, + [385] = 346, + [386] = 347, + [387] = 348, + [388] = 346, + [389] = 347, + [390] = 348, + [391] = 330, + [392] = 342, + [393] = 331, + [394] = 346, + [395] = 347, + [396] = 348, + [397] = 350, + [398] = 398, + [399] = 342, + [400] = 400, + [401] = 401, + [402] = 402, [403] = 403, - [404] = 404, + [404] = 348, [405] = 405, [406] = 406, [407] = 407, @@ -5103,7 +5053,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [409] = 409, [410] = 410, [411] = 411, - [412] = 412, + [412] = 409, [413] = 413, [414] = 414, [415] = 415, @@ -5116,239 +5066,239 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [422] = 422, [423] = 423, [424] = 424, - [425] = 425, + [425] = 414, [426] = 426, [427] = 427, - [428] = 407, - [429] = 408, - [430] = 409, - [431] = 410, - [432] = 405, - [433] = 411, - [434] = 412, - [435] = 413, - [436] = 414, - [437] = 416, - [438] = 438, - [439] = 439, - [440] = 440, - [441] = 441, - [442] = 442, + [428] = 428, + [429] = 429, + [430] = 430, + [431] = 431, + [432] = 418, + [433] = 410, + [434] = 427, + [435] = 435, + [436] = 436, + [437] = 411, + [438] = 405, + [439] = 435, + [440] = 407, + [441] = 413, + [442] = 428, [443] = 443, - [444] = 438, - [445] = 445, - [446] = 446, - [447] = 447, - [448] = 438, - [449] = 449, - [450] = 447, - [451] = 438, - [452] = 443, - [453] = 441, - [454] = 442, - [455] = 443, - [456] = 456, - [457] = 443, - [458] = 446, - [459] = 459, - [460] = 443, - [461] = 443, - [462] = 462, - [463] = 443, - [464] = 464, - [465] = 417, - [466] = 418, - [467] = 422, - [468] = 423, - [469] = 469, - [470] = 424, - [471] = 471, - [472] = 425, - [473] = 473, - [474] = 427, - [475] = 407, - [476] = 408, - [477] = 409, - [478] = 410, - [479] = 405, - [480] = 411, - [481] = 412, - [482] = 413, - [483] = 414, - [484] = 416, - [485] = 420, - [486] = 441, - [487] = 442, - [488] = 456, - [489] = 443, - [490] = 418, - [491] = 445, - [492] = 417, - [493] = 418, - [494] = 422, - [495] = 423, - [496] = 424, - [497] = 425, - [498] = 427, - [499] = 407, - [500] = 408, - [501] = 409, - [502] = 410, - [503] = 405, - [504] = 411, - [505] = 412, - [506] = 413, - [507] = 414, - [508] = 416, - [509] = 422, - [510] = 464, - [511] = 441, - [512] = 442, - [513] = 443, - [514] = 445, - [515] = 446, - [516] = 447, - [517] = 464, - [518] = 418, - [519] = 422, - [520] = 423, - [521] = 424, - [522] = 471, - [523] = 425, - [524] = 427, - [525] = 407, - [526] = 408, - [527] = 409, - [528] = 471, - [529] = 405, - [530] = 411, - [531] = 412, - [532] = 413, - [533] = 414, - [534] = 417, + [444] = 409, + [445] = 414, + [446] = 410, + [447] = 411, + [448] = 448, + [449] = 413, + [450] = 450, + [451] = 414, + [452] = 415, + [453] = 416, + [454] = 417, + [455] = 418, + [456] = 419, + [457] = 420, + [458] = 421, + [459] = 422, + [460] = 423, + [461] = 424, + [462] = 428, + [463] = 426, + [464] = 448, + [465] = 407, + [466] = 466, + [467] = 409, + [468] = 430, + [469] = 431, + [470] = 415, + [471] = 416, + [472] = 427, + [473] = 417, + [474] = 418, + [475] = 436, + [476] = 419, + [477] = 407, + [478] = 436, + [479] = 409, + [480] = 420, + [481] = 410, + [482] = 411, + [483] = 483, + [484] = 413, + [485] = 414, + [486] = 415, + [487] = 416, + [488] = 417, + [489] = 418, + [490] = 419, + [491] = 420, + [492] = 421, + [493] = 422, + [494] = 423, + [495] = 424, + [496] = 410, + [497] = 426, + [498] = 411, + [499] = 499, + [500] = 413, + [501] = 430, + [502] = 431, + [503] = 421, + [504] = 422, + [505] = 427, + [506] = 405, + [507] = 423, + [508] = 436, + [509] = 424, + [510] = 405, + [511] = 435, + [512] = 450, + [513] = 426, + [514] = 428, + [515] = 450, + [516] = 414, + [517] = 409, + [518] = 410, + [519] = 411, + [520] = 413, + [521] = 413, + [522] = 414, + [523] = 415, + [524] = 416, + [525] = 417, + [526] = 418, + [527] = 419, + [528] = 420, + [529] = 421, + [530] = 422, + [531] = 423, + [532] = 424, + [533] = 415, + [534] = 426, [535] = 416, - [536] = 441, - [537] = 442, - [538] = 443, - [539] = 445, - [540] = 417, - [541] = 418, - [542] = 422, - [543] = 423, - [544] = 424, - [545] = 425, - [546] = 427, - [547] = 407, - [548] = 408, - [549] = 409, - [550] = 410, - [551] = 405, - [552] = 411, - [553] = 412, - [554] = 413, - [555] = 414, - [556] = 416, - [557] = 441, - [558] = 442, - [559] = 443, - [560] = 445, - [561] = 446, - [562] = 447, - [563] = 464, - [564] = 471, - [565] = 418, + [536] = 417, + [537] = 418, + [538] = 430, + [539] = 431, + [540] = 540, + [541] = 417, + [542] = 427, + [543] = 419, + [544] = 436, + [545] = 420, + [546] = 405, + [547] = 435, + [548] = 421, + [549] = 428, + [550] = 450, + [551] = 422, + [552] = 423, + [553] = 409, + [554] = 410, + [555] = 411, + [556] = 424, + [557] = 413, + [558] = 414, + [559] = 415, + [560] = 416, + [561] = 417, + [562] = 418, + [563] = 419, + [564] = 420, + [565] = 421, [566] = 422, [567] = 423, [568] = 424, - [569] = 425, - [570] = 427, - [571] = 407, - [572] = 408, - [573] = 409, - [574] = 410, - [575] = 405, - [576] = 411, - [577] = 412, - [578] = 413, - [579] = 414, - [580] = 416, - [581] = 441, - [582] = 442, - [583] = 443, - [584] = 445, - [585] = 445, - [586] = 446, - [587] = 447, - [588] = 464, - [589] = 471, - [590] = 418, - [591] = 422, - [592] = 423, - [593] = 424, - [594] = 425, - [595] = 427, - [596] = 407, - [597] = 408, - [598] = 409, - [599] = 410, - [600] = 405, - [601] = 411, - [602] = 412, - [603] = 413, - [604] = 414, - [605] = 416, - [606] = 441, - [607] = 442, - [608] = 443, - [609] = 423, - [610] = 445, - [611] = 446, - [612] = 447, - [613] = 464, - [614] = 471, - [615] = 424, - [616] = 446, - [617] = 447, - [618] = 417, - [619] = 619, - [620] = 417, - [621] = 418, - [622] = 422, - [623] = 423, - [624] = 424, - [625] = 425, - [626] = 427, - [627] = 407, - [628] = 408, - [629] = 409, - [630] = 410, - [631] = 405, - [632] = 411, - [633] = 412, - [634] = 413, - [635] = 414, - [636] = 416, - [637] = 441, - [638] = 442, - [639] = 443, - [640] = 445, - [641] = 446, - [642] = 447, - [643] = 471, - [644] = 425, - [645] = 645, - [646] = 426, - [647] = 464, - [648] = 471, - [649] = 446, - [650] = 447, - [651] = 417, - [652] = 417, - [653] = 464, - [654] = 427, - [655] = 471, - [656] = 464, - [657] = 410, + [569] = 427, + [570] = 426, + [571] = 426, + [572] = 466, + [573] = 407, + [574] = 430, + [575] = 431, + [576] = 430, + [577] = 431, + [578] = 427, + [579] = 419, + [580] = 450, + [581] = 436, + [582] = 427, + [583] = 405, + [584] = 435, + [585] = 585, + [586] = 428, + [587] = 450, + [588] = 588, + [589] = 430, + [590] = 431, + [591] = 591, + [592] = 405, + [593] = 435, + [594] = 436, + [595] = 407, + [596] = 420, + [597] = 421, + [598] = 598, + [599] = 407, + [600] = 426, + [601] = 409, + [602] = 410, + [603] = 411, + [604] = 430, + [605] = 413, + [606] = 414, + [607] = 415, + [608] = 416, + [609] = 417, + [610] = 418, + [611] = 419, + [612] = 420, + [613] = 421, + [614] = 422, + [615] = 423, + [616] = 424, + [617] = 431, + [618] = 426, + [619] = 591, + [620] = 409, + [621] = 427, + [622] = 430, + [623] = 431, + [624] = 427, + [625] = 427, + [626] = 410, + [627] = 627, + [628] = 436, + [629] = 427, + [630] = 427, + [631] = 435, + [632] = 632, + [633] = 405, + [634] = 435, + [635] = 635, + [636] = 436, + [637] = 411, + [638] = 428, + [639] = 450, + [640] = 422, + [641] = 429, + [642] = 423, + [643] = 427, + [644] = 405, + [645] = 435, + [646] = 646, + [647] = 407, + [648] = 407, + [649] = 428, + [650] = 429, + [651] = 450, + [652] = 415, + [653] = 416, + [654] = 428, + [655] = 424, + [656] = 450, + [657] = 429, [658] = 658, [659] = 658, [660] = 658, @@ -5365,115 +5315,115 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [671] = 670, [672] = 670, [673] = 673, - [674] = 674, - [675] = 673, - [676] = 674, - [677] = 264, - [678] = 232, - [679] = 674, - [680] = 673, - [681] = 681, - [682] = 682, - [683] = 681, + [674] = 673, + [675] = 675, + [676] = 675, + [677] = 673, + [678] = 675, + [679] = 679, + [680] = 248, + [681] = 241, + [682] = 679, + [683] = 679, [684] = 684, [685] = 685, - [686] = 681, + [686] = 686, [687] = 687, [688] = 688, [689] = 689, - [690] = 689, + [690] = 690, [691] = 691, - [692] = 692, - [693] = 692, - [694] = 692, + [692] = 691, + [693] = 689, + [694] = 690, [695] = 691, - [696] = 691, - [697] = 689, + [696] = 689, + [697] = 690, [698] = 698, - [699] = 699, + [699] = 698, [700] = 700, - [701] = 699, - [702] = 698, + [701] = 700, + [702] = 702, [703] = 700, - [704] = 698, - [705] = 705, - [706] = 705, - [707] = 698, - [708] = 705, - [709] = 698, - [710] = 698, - [711] = 711, + [704] = 704, + [705] = 700, + [706] = 700, + [707] = 704, + [708] = 704, + [709] = 700, + [710] = 702, + [711] = 700, [712] = 712, - [713] = 248, - [714] = 714, - [715] = 698, - [716] = 698, - [717] = 250, - [718] = 698, - [719] = 699, - [720] = 720, - [721] = 262, - [722] = 235, - [723] = 723, - [724] = 249, - [725] = 248, - [726] = 234, - [727] = 250, - [728] = 698, - [729] = 698, - [730] = 720, - [731] = 720, - [732] = 698, - [733] = 249, - [734] = 234, - [735] = 735, - [736] = 698, - [737] = 712, - [738] = 224, - [739] = 227, - [740] = 698, - [741] = 698, - [742] = 698, - [743] = 700, - [744] = 744, - [745] = 745, - [746] = 698, - [747] = 225, - [748] = 748, - [749] = 749, - [750] = 750, - [751] = 751, - [752] = 749, - [753] = 753, - [754] = 749, + [713] = 713, + [714] = 700, + [715] = 249, + [716] = 716, + [717] = 717, + [718] = 700, + [719] = 700, + [720] = 700, + [721] = 717, + [722] = 700, + [723] = 717, + [724] = 698, + [725] = 246, + [726] = 726, + [727] = 727, + [728] = 700, + [729] = 242, + [730] = 232, + [731] = 246, + [732] = 700, + [733] = 700, + [734] = 702, + [735] = 252, + [736] = 713, + [737] = 234, + [738] = 700, + [739] = 249, + [740] = 232, + [741] = 242, + [742] = 742, + [743] = 743, + [744] = 743, + [745] = 743, + [746] = 743, + [747] = 743, + [748] = 700, + [749] = 743, + [750] = 219, + [751] = 223, + [752] = 743, + [753] = 743, + [754] = 743, [755] = 755, [756] = 756, - [757] = 757, + [757] = 229, [758] = 758, - [759] = 749, + [759] = 759, [760] = 760, - [761] = 761, - [762] = 762, - [763] = 749, + [761] = 760, + [762] = 760, + [763] = 760, [764] = 764, [765] = 765, - [766] = 749, + [766] = 766, [767] = 767, [768] = 768, - [769] = 769, - [770] = 252, - [771] = 749, - [772] = 253, + [769] = 239, + [770] = 770, + [771] = 771, + [772] = 772, [773] = 773, [774] = 774, - [775] = 749, + [775] = 775, [776] = 776, - [777] = 749, + [777] = 777, [778] = 778, [779] = 779, [780] = 780, - [781] = 781, - [782] = 782, + [781] = 216, + [782] = 760, [783] = 783, [784] = 784, [785] = 785, @@ -5483,36 +5433,36 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [789] = 789, [790] = 790, [791] = 791, - [792] = 786, + [792] = 792, [793] = 793, [794] = 794, - [795] = 795, + [795] = 784, [796] = 796, [797] = 797, [798] = 798, [799] = 799, - [800] = 800, - [801] = 801, + [800] = 794, + [801] = 784, [802] = 802, [803] = 803, - [804] = 804, - [805] = 805, - [806] = 786, + [804] = 794, + [805] = 784, + [806] = 806, [807] = 807, [808] = 808, [809] = 809, - [810] = 256, + [810] = 810, [811] = 811, [812] = 812, [813] = 813, [814] = 814, [815] = 815, [816] = 816, - [817] = 786, + [817] = 817, [818] = 818, [819] = 819, [820] = 820, - [821] = 786, + [821] = 821, [822] = 822, [823] = 823, [824] = 824, @@ -5525,14 +5475,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [831] = 831, [832] = 832, [833] = 833, - [834] = 834, + [834] = 794, [835] = 835, [836] = 836, [837] = 837, [838] = 838, [839] = 839, - [840] = 262, - [841] = 235, + [840] = 840, + [841] = 841, [842] = 842, [843] = 843, [844] = 844, @@ -5544,9 +5494,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [850] = 850, [851] = 851, [852] = 852, - [853] = 853, + [853] = 234, [854] = 854, - [855] = 855, + [855] = 252, [856] = 856, [857] = 857, [858] = 858, @@ -5555,12 +5505,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [861] = 861, [862] = 862, [863] = 863, - [864] = 864, + [864] = 784, [865] = 865, [866] = 866, [867] = 867, [868] = 868, - [869] = 260, + [869] = 869, [870] = 870, [871] = 871, [872] = 872, @@ -5595,73 +5545,73 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [901] = 901, [902] = 902, [903] = 903, - [904] = 904, + [904] = 245, [905] = 905, - [906] = 906, + [906] = 794, [907] = 907, - [908] = 906, - [909] = 906, - [910] = 907, - [911] = 906, - [912] = 906, - [913] = 907, - [914] = 907, - [915] = 907, + [908] = 908, + [909] = 909, + [910] = 910, + [911] = 247, + [912] = 912, + [913] = 913, + [914] = 914, + [915] = 915, [916] = 916, [917] = 917, [918] = 918, - [919] = 761, + [919] = 919, [920] = 920, - [921] = 753, - [922] = 922, + [921] = 918, + [922] = 919, [923] = 923, [924] = 924, [925] = 925, [926] = 926, - [927] = 927, + [927] = 919, [928] = 928, [929] = 929, [930] = 930, [931] = 931, - [932] = 931, - [933] = 931, + [932] = 919, + [933] = 933, [934] = 934, - [935] = 931, - [936] = 934, - [937] = 937, - [938] = 934, - [939] = 937, - [940] = 937, - [941] = 934, - [942] = 931, - [943] = 931, - [944] = 934, - [945] = 931, - [946] = 934, - [947] = 934, + [935] = 918, + [936] = 936, + [937] = 923, + [938] = 923, + [939] = 919, + [940] = 923, + [941] = 919, + [942] = 923, + [943] = 923, + [944] = 755, + [945] = 919, + [946] = 756, + [947] = 923, [948] = 948, [949] = 949, [950] = 950, - [951] = 951, - [952] = 951, - [953] = 953, - [954] = 954, - [955] = 955, - [956] = 954, - [957] = 954, - [958] = 951, - [959] = 954, - [960] = 951, - [961] = 951, - [962] = 954, - [963] = 951, - [964] = 955, - [965] = 955, - [966] = 954, - [967] = 954, - [968] = 955, - [969] = 951, - [970] = 955, + [951] = 949, + [952] = 952, + [953] = 950, + [954] = 949, + [955] = 949, + [956] = 952, + [957] = 957, + [958] = 958, + [959] = 952, + [960] = 960, + [961] = 949, + [962] = 952, + [963] = 949, + [964] = 952, + [965] = 952, + [966] = 950, + [967] = 952, + [968] = 950, + [969] = 949, + [970] = 950, [971] = 971, [972] = 972, [973] = 973, @@ -5673,149 +5623,149 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [979] = 979, [980] = 980, [981] = 981, - [982] = 980, + [982] = 982, [983] = 983, [984] = 984, - [985] = 985, - [986] = 986, - [987] = 987, + [985] = 982, + [986] = 972, + [987] = 973, [988] = 988, [989] = 989, - [990] = 990, - [991] = 991, - [992] = 992, - [993] = 973, - [994] = 974, + [990] = 974, + [991] = 975, + [992] = 980, + [993] = 981, + [994] = 994, [995] = 995, - [996] = 996, - [997] = 975, - [998] = 976, - [999] = 988, - [1000] = 989, - [1001] = 977, + [996] = 976, + [997] = 972, + [998] = 973, + [999] = 974, + [1000] = 975, + [1001] = 976, [1002] = 978, - [1003] = 979, - [1004] = 990, - [1005] = 980, - [1006] = 991, - [1007] = 992, - [1008] = 988, - [1009] = 989, - [1010] = 990, - [1011] = 995, - [1012] = 996, - [1013] = 991, - [1014] = 992, - [1015] = 979, + [1003] = 978, + [1004] = 983, + [1005] = 984, + [1006] = 971, + [1007] = 988, + [1008] = 989, + [1009] = 1009, + [1010] = 980, + [1011] = 1011, + [1012] = 1012, + [1013] = 981, + [1014] = 1014, + [1015] = 1015, [1016] = 1016, [1017] = 1017, - [1018] = 995, - [1019] = 996, - [1020] = 1020, + [1018] = 994, + [1019] = 995, + [1020] = 994, [1021] = 1021, - [1022] = 1022, - [1023] = 987, - [1024] = 1024, - [1025] = 1025, - [1026] = 973, - [1027] = 974, - [1028] = 1020, - [1029] = 1021, - [1030] = 973, - [1031] = 974, + [1022] = 995, + [1023] = 974, + [1024] = 980, + [1025] = 981, + [1026] = 975, + [1027] = 972, + [1028] = 973, + [1029] = 976, + [1030] = 978, + [1031] = 994, [1032] = 995, - [1033] = 996, - [1034] = 975, - [1035] = 976, - [1036] = 1036, - [1037] = 977, - [1038] = 978, - [1039] = 972, - [1040] = 979, - [1041] = 980, - [1042] = 995, - [1043] = 996, - [1044] = 975, - [1045] = 976, - [1046] = 1046, - [1047] = 977, - [1048] = 978, - [1049] = 979, - [1050] = 980, + [1033] = 1021, + [1034] = 1034, + [1035] = 974, + [1036] = 975, + [1037] = 1037, + [1038] = 976, + [1039] = 978, + [1040] = 1034, + [1041] = 1041, + [1042] = 983, + [1043] = 984, + [1044] = 971, + [1045] = 988, + [1046] = 989, + [1047] = 1009, + [1048] = 1048, + [1049] = 1049, + [1050] = 1050, [1051] = 1051, - [1052] = 1025, - [1053] = 1053, - [1054] = 1054, - [1055] = 988, - [1056] = 989, - [1057] = 990, - [1058] = 991, - [1059] = 991, - [1060] = 972, - [1061] = 992, - [1062] = 973, - [1063] = 974, - [1064] = 1064, - [1065] = 1065, - [1066] = 973, - [1067] = 974, - [1068] = 995, - [1069] = 996, + [1052] = 1052, + [1053] = 974, + [1054] = 975, + [1055] = 1037, + [1056] = 972, + [1057] = 973, + [1058] = 1037, + [1059] = 1059, + [1060] = 1041, + [1061] = 1061, + [1062] = 1062, + [1063] = 1063, + [1064] = 1012, + [1065] = 976, + [1066] = 980, + [1067] = 981, + [1068] = 983, + [1069] = 984, [1070] = 971, - [1071] = 975, - [1072] = 976, - [1073] = 1025, - [1074] = 977, - [1075] = 972, - [1076] = 978, - [1077] = 979, - [1078] = 980, - [1079] = 988, - [1080] = 989, - [1081] = 990, - [1082] = 991, - [1083] = 992, - [1084] = 1025, - [1085] = 972, + [1071] = 988, + [1072] = 989, + [1073] = 994, + [1074] = 980, + [1075] = 981, + [1076] = 995, + [1077] = 972, + [1078] = 972, + [1079] = 1009, + [1080] = 978, + [1081] = 1037, + [1082] = 973, + [1083] = 973, + [1084] = 994, + [1085] = 994, [1086] = 995, - [1087] = 996, - [1088] = 1025, - [1089] = 1025, - [1090] = 973, - [1091] = 974, - [1092] = 975, - [1093] = 976, - [1094] = 988, - [1095] = 989, - [1096] = 990, - [1097] = 991, - [1098] = 992, - [1099] = 972, - [1100] = 986, - [1101] = 977, - [1102] = 978, - [1103] = 1025, - [1104] = 1104, - [1105] = 1105, - [1106] = 1106, - [1107] = 985, - [1108] = 979, - [1109] = 975, - [1110] = 976, - [1111] = 980, - [1112] = 977, - [1113] = 978, - [1114] = 972, - [1115] = 988, - [1116] = 989, - [1117] = 1036, - [1118] = 990, - [1119] = 971, - [1120] = 971, - [1121] = 971, - [1122] = 971, - [1123] = 971, - [1124] = 992, + [1087] = 1009, + [1088] = 995, + [1089] = 983, + [1090] = 984, + [1091] = 971, + [1092] = 988, + [1093] = 989, + [1094] = 1009, + [1095] = 1037, + [1096] = 1059, + [1097] = 1097, + [1098] = 1098, + [1099] = 974, + [1100] = 975, + [1101] = 1009, + [1102] = 1009, + [1103] = 976, + [1104] = 1017, + [1105] = 983, + [1106] = 984, + [1107] = 983, + [1108] = 984, + [1109] = 971, + [1110] = 988, + [1111] = 989, + [1112] = 971, + [1113] = 1037, + [1114] = 988, + [1115] = 989, + [1116] = 978, + [1117] = 980, + [1118] = 981, + [1119] = 982, + [1120] = 1037, + [1121] = 982, + [1122] = 982, + [1123] = 982, + [1124] = 982, [1125] = 1125, [1126] = 1125, [1127] = 1125, @@ -5830,291 +5780,291 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1136] = 1125, [1137] = 1137, [1138] = 1138, - [1139] = 1137, + [1139] = 1138, [1140] = 1140, - [1141] = 1138, + [1141] = 1140, [1142] = 1138, - [1143] = 1137, - [1144] = 1140, - [1145] = 1140, + [1143] = 1140, + [1144] = 1137, + [1145] = 1137, [1146] = 1146, [1147] = 1147, - [1148] = 1146, + [1148] = 1147, [1149] = 1149, - [1150] = 1147, + [1150] = 1146, [1151] = 1151, [1152] = 1151, [1153] = 1147, - [1154] = 1147, + [1154] = 1154, [1155] = 1155, - [1156] = 1156, + [1156] = 1149, [1157] = 1157, - [1158] = 1147, - [1159] = 1156, + [1158] = 1157, + [1159] = 1147, [1160] = 1155, [1161] = 1147, - [1162] = 1155, - [1163] = 1157, - [1164] = 1157, - [1165] = 1149, - [1166] = 1156, + [1162] = 1157, + [1163] = 1147, + [1164] = 1154, + [1165] = 1154, + [1166] = 1155, [1167] = 1167, [1168] = 1168, [1169] = 1169, - [1170] = 1170, + [1170] = 1167, [1171] = 1171, [1172] = 1172, [1173] = 1173, [1174] = 1174, [1175] = 1175, - [1176] = 1147, + [1176] = 1167, [1177] = 1177, [1178] = 1178, - [1179] = 1168, - [1180] = 1147, - [1181] = 1181, + [1179] = 1179, + [1180] = 1180, + [1181] = 1147, [1182] = 1182, - [1183] = 1183, - [1184] = 1168, - [1185] = 1185, - [1186] = 1186, - [1187] = 1187, - [1188] = 1147, - [1189] = 1185, + [1183] = 1147, + [1184] = 1184, + [1185] = 756, + [1186] = 1146, + [1187] = 1175, + [1188] = 1188, + [1189] = 1189, [1190] = 1190, - [1191] = 1185, - [1192] = 1147, + [1191] = 1191, + [1192] = 1191, [1193] = 1147, - [1194] = 1194, + [1194] = 1189, [1195] = 1195, - [1196] = 753, - [1197] = 1146, - [1198] = 1195, - [1199] = 1195, - [1200] = 1200, - [1201] = 761, - [1202] = 1190, - [1203] = 1147, - [1204] = 1190, - [1205] = 1205, - [1206] = 1178, - [1207] = 1194, - [1208] = 1147, - [1209] = 1178, - [1210] = 1210, - [1211] = 1178, - [1212] = 1212, - [1213] = 1213, - [1214] = 1178, - [1215] = 1215, + [1196] = 1188, + [1197] = 1188, + [1198] = 1147, + [1199] = 1190, + [1200] = 1147, + [1201] = 1201, + [1202] = 1202, + [1203] = 1190, + [1204] = 1204, + [1205] = 1191, + [1206] = 1147, + [1207] = 1147, + [1208] = 755, + [1209] = 1147, + [1210] = 1147, + [1211] = 1147, + [1212] = 1149, + [1213] = 1175, + [1214] = 1214, + [1215] = 1175, [1216] = 1147, - [1217] = 1147, - [1218] = 1147, - [1219] = 1147, - [1220] = 1149, - [1221] = 1181, - [1222] = 1147, - [1223] = 1212, - [1224] = 1212, + [1217] = 1217, + [1218] = 1218, + [1219] = 1219, + [1220] = 1175, + [1221] = 1168, + [1222] = 1222, + [1223] = 1223, + [1224] = 1224, [1225] = 1225, [1226] = 1225, [1227] = 1227, - [1228] = 1178, - [1229] = 1229, - [1230] = 1225, - [1231] = 1231, - [1232] = 1232, - [1233] = 1178, - [1234] = 1234, - [1235] = 1225, - [1236] = 1205, - [1237] = 1237, - [1238] = 1238, - [1239] = 1205, - [1240] = 1178, - [1241] = 1225, - [1242] = 1242, + [1228] = 1224, + [1229] = 1224, + [1230] = 1175, + [1231] = 1222, + [1232] = 1175, + [1233] = 1224, + [1234] = 1227, + [1235] = 1224, + [1236] = 1175, + [1237] = 1224, + [1238] = 1202, + [1239] = 1239, + [1240] = 1224, + [1241] = 1224, + [1242] = 1224, [1243] = 1243, - [1244] = 1227, - [1245] = 1225, - [1246] = 1225, - [1247] = 1243, - [1248] = 1248, - [1249] = 1249, - [1250] = 1178, - [1251] = 1225, - [1252] = 1225, + [1244] = 1219, + [1245] = 1245, + [1246] = 1175, + [1247] = 1247, + [1248] = 1147, + [1249] = 1219, + [1250] = 1250, + [1251] = 1223, + [1252] = 1202, [1253] = 1253, - [1254] = 1249, - [1255] = 1229, - [1256] = 1256, - [1257] = 1257, - [1258] = 1173, - [1259] = 1210, - [1260] = 1237, + [1254] = 1202, + [1255] = 1255, + [1256] = 1255, + [1257] = 1173, + [1258] = 1214, + [1259] = 1259, + [1260] = 1173, [1261] = 1261, - [1262] = 1173, - [1263] = 1174, - [1264] = 1210, + [1262] = 1195, + [1263] = 1202, + [1264] = 1175, [1265] = 1265, - [1266] = 1178, - [1267] = 1267, - [1268] = 1205, - [1269] = 1174, + [1266] = 1171, + [1267] = 1173, + [1268] = 1265, + [1269] = 1243, [1270] = 1270, - [1271] = 1200, - [1272] = 1178, + [1271] = 1175, + [1272] = 1175, [1273] = 1273, - [1274] = 1237, - [1275] = 1178, - [1276] = 1173, - [1277] = 1273, - [1278] = 1174, + [1274] = 1274, + [1275] = 1214, + [1276] = 1202, + [1277] = 1261, + [1278] = 1171, [1279] = 1261, - [1280] = 1280, - [1281] = 1205, - [1282] = 1205, - [1283] = 1273, - [1284] = 1270, - [1285] = 1170, - [1286] = 1178, - [1287] = 1210, - [1288] = 753, - [1289] = 1289, - [1290] = 1249, - [1291] = 1178, - [1292] = 1205, - [1293] = 1293, - [1294] = 1169, - [1295] = 1237, - [1296] = 1243, - [1297] = 1243, - [1298] = 1243, - [1299] = 1293, - [1300] = 1234, - [1301] = 1171, - [1302] = 1249, - [1303] = 761, - [1304] = 1304, - [1305] = 1175, - [1306] = 1304, - [1307] = 1210, - [1308] = 1172, - [1309] = 1304, - [1310] = 1293, - [1311] = 1177, - [1312] = 1167, - [1313] = 1289, - [1314] = 1249, - [1315] = 1249, - [1316] = 1205, - [1317] = 1200, - [1318] = 1205, - [1319] = 1243, - [1320] = 1210, - [1321] = 1174, - [1322] = 1322, - [1323] = 1253, - [1324] = 1173, - [1325] = 1174, - [1326] = 1326, - [1327] = 1210, - [1328] = 1205, - [1329] = 1243, - [1330] = 1200, - [1331] = 1173, - [1332] = 1257, - [1333] = 1243, - [1334] = 1210, - [1335] = 1335, - [1336] = 1200, - [1337] = 1210, - [1338] = 1249, - [1339] = 1339, - [1340] = 1340, - [1341] = 1249, - [1342] = 1326, - [1343] = 1174, - [1344] = 1229, - [1345] = 1243, - [1346] = 1346, - [1347] = 1347, - [1348] = 1243, - [1349] = 1210, - [1350] = 1249, - [1351] = 1346, - [1352] = 1346, - [1353] = 1249, + [1280] = 1243, + [1281] = 1171, + [1282] = 1282, + [1283] = 1222, + [1284] = 1284, + [1285] = 1214, + [1286] = 1243, + [1287] = 1174, + [1288] = 756, + [1289] = 1195, + [1290] = 1290, + [1291] = 1291, + [1292] = 1292, + [1293] = 1172, + [1294] = 1177, + [1295] = 1178, + [1296] = 1175, + [1297] = 1245, + [1298] = 1225, + [1299] = 1179, + [1300] = 1180, + [1301] = 1202, + [1302] = 1302, + [1303] = 755, + [1304] = 1222, + [1305] = 1225, + [1306] = 1222, + [1307] = 1222, + [1308] = 1214, + [1309] = 1214, + [1310] = 1225, + [1311] = 1291, + [1312] = 1291, + [1313] = 1292, + [1314] = 1225, + [1315] = 1292, + [1316] = 1202, + [1317] = 1282, + [1318] = 1202, + [1319] = 1175, + [1320] = 1169, + [1321] = 1214, + [1322] = 1171, + [1323] = 1173, + [1324] = 1214, + [1325] = 1325, + [1326] = 1173, + [1327] = 1202, + [1328] = 1273, + [1329] = 1222, + [1330] = 1171, + [1331] = 1331, + [1332] = 1332, + [1333] = 1222, + [1334] = 1325, + [1335] = 1195, + [1336] = 1336, + [1337] = 1195, + [1338] = 1214, + [1339] = 1225, + [1340] = 1225, + [1341] = 1341, + [1342] = 1250, + [1343] = 1343, + [1344] = 1344, + [1345] = 1345, + [1346] = 1225, + [1347] = 1225, + [1348] = 1348, + [1349] = 1171, + [1350] = 1227, + [1351] = 1345, + [1352] = 1345, + [1353] = 1353, [1354] = 1354, - [1355] = 1346, - [1356] = 1356, - [1357] = 1357, - [1358] = 1243, - [1359] = 1346, - [1360] = 1173, - [1361] = 1361, - [1362] = 1249, - [1363] = 1227, - [1364] = 1249, - [1365] = 1200, - [1366] = 1243, - [1367] = 1346, - [1368] = 1243, - [1369] = 1261, - [1370] = 1243, - [1371] = 1243, - [1372] = 1243, - [1373] = 1200, - [1374] = 1234, - [1375] = 1322, - [1376] = 1335, - [1377] = 1200, - [1378] = 1249, - [1379] = 1249, - [1380] = 1249, - [1381] = 1249, - [1382] = 1382, + [1355] = 1223, + [1356] = 1173, + [1357] = 1345, + [1358] = 1225, + [1359] = 1222, + [1360] = 1222, + [1361] = 1345, + [1362] = 1225, + [1363] = 1345, + [1364] = 1222, + [1365] = 1195, + [1366] = 1214, + [1367] = 1222, + [1368] = 1225, + [1369] = 1222, + [1370] = 1265, + [1371] = 1222, + [1372] = 1222, + [1373] = 1222, + [1374] = 1195, + [1375] = 1195, + [1376] = 1245, + [1377] = 1225, + [1378] = 1341, + [1379] = 1331, + [1380] = 1225, + [1381] = 1225, + [1382] = 1195, [1383] = 1383, - [1384] = 1382, - [1385] = 1385, + [1384] = 1384, + [1385] = 1383, [1386] = 1386, - [1387] = 1257, - [1388] = 1385, - [1389] = 1389, - [1390] = 1347, - [1391] = 1389, - [1392] = 1386, - [1393] = 1382, - [1394] = 1383, - [1395] = 1385, - [1396] = 1385, - [1397] = 1389, - [1398] = 1382, - [1399] = 1243, - [1400] = 1383, - [1401] = 1383, + [1387] = 1387, + [1388] = 1386, + [1389] = 1387, + [1390] = 1387, + [1391] = 1387, + [1392] = 1392, + [1393] = 1387, + [1394] = 1386, + [1395] = 1383, + [1396] = 1387, + [1397] = 1392, + [1398] = 1392, + [1399] = 1222, + [1400] = 1387, + [1401] = 1392, [1402] = 1386, - [1403] = 1386, - [1404] = 1383, - [1405] = 1389, - [1406] = 1382, - [1407] = 1382, - [1408] = 1383, - [1409] = 1382, - [1410] = 1383, - [1411] = 1249, - [1412] = 1386, - [1413] = 1200, - [1414] = 1200, - [1415] = 1383, - [1416] = 1382, - [1417] = 1385, + [1403] = 1392, + [1404] = 1384, + [1405] = 1386, + [1406] = 1195, + [1407] = 1392, + [1408] = 1384, + [1409] = 1273, + [1410] = 1387, + [1411] = 1383, + [1412] = 1383, + [1413] = 1387, + [1414] = 1383, + [1415] = 1354, + [1416] = 1392, + [1417] = 1392, [1418] = 1386, - [1419] = 1383, - [1420] = 1389, - [1421] = 1385, - [1422] = 1389, - [1423] = 1382, + [1419] = 1384, + [1420] = 1392, + [1421] = 1384, + [1422] = 1384, + [1423] = 1225, [1424] = 1424, [1425] = 1424, [1426] = 1424, @@ -6128,89 +6078,89 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1434] = 1433, [1435] = 1433, [1436] = 1433, - [1437] = 1437, - [1438] = 1433, + [1437] = 1433, + [1438] = 1438, [1439] = 1433, [1440] = 1440, [1441] = 1441, [1442] = 1442, - [1443] = 1440, - [1444] = 1442, - [1445] = 1440, - [1446] = 1446, + [1443] = 1442, + [1444] = 1441, + [1445] = 1441, + [1446] = 1440, [1447] = 1440, - [1448] = 1442, - [1449] = 1440, + [1448] = 1448, + [1449] = 1442, [1450] = 1441, - [1451] = 1441, + [1451] = 1440, [1452] = 1442, [1453] = 1441, - [1454] = 1442, - [1455] = 1441, + [1454] = 1440, + [1455] = 1442, [1456] = 1456, [1457] = 1456, [1458] = 1456, - [1459] = 1456, - [1460] = 1460, + [1459] = 1459, + [1460] = 1456, [1461] = 1456, [1462] = 1456, [1463] = 1463, - [1464] = 264, + [1464] = 1464, [1465] = 1465, [1466] = 1466, - [1467] = 1467, - [1468] = 232, + [1467] = 241, + [1468] = 1468, [1469] = 1469, - [1470] = 1470, - [1471] = 264, - [1472] = 1472, - [1473] = 229, - [1474] = 950, - [1475] = 232, - [1476] = 948, + [1470] = 248, + [1471] = 1471, + [1472] = 248, + [1473] = 1473, + [1474] = 948, + [1475] = 1475, + [1476] = 241, [1477] = 1477, [1478] = 1478, [1479] = 1479, - [1480] = 1480, - [1481] = 1481, + [1480] = 957, + [1481] = 217, [1482] = 1482, - [1483] = 1483, + [1483] = 958, [1484] = 1484, - [1485] = 949, + [1485] = 1485, [1486] = 1486, [1487] = 1487, - [1488] = 225, + [1488] = 1488, [1489] = 1489, [1490] = 1490, [1491] = 1491, [1492] = 1492, [1493] = 1493, [1494] = 1494, - [1495] = 682, + [1495] = 1495, [1496] = 1496, - [1497] = 248, - [1498] = 1498, + [1497] = 219, + [1498] = 223, [1499] = 1499, - [1500] = 1500, - [1501] = 1501, - [1502] = 1502, - [1503] = 1503, + [1500] = 216, + [1501] = 219, + [1502] = 223, + [1503] = 216, [1504] = 1504, - [1505] = 1505, - [1506] = 224, + [1505] = 246, + [1506] = 1506, [1507] = 1507, [1508] = 1508, [1509] = 1509, - [1510] = 227, + [1510] = 1510, [1511] = 1511, - [1512] = 225, + [1512] = 1512, [1513] = 1513, - [1514] = 227, + [1514] = 1514, [1515] = 1515, - [1516] = 1516, + [1516] = 684, [1517] = 1517, [1518] = 1518, - [1519] = 684, + [1519] = 1519, [1520] = 1520, [1521] = 1521, [1522] = 1522, @@ -6225,7 +6175,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1531] = 1531, [1532] = 1532, [1533] = 1533, - [1534] = 1534, + [1534] = 686, [1535] = 1535, [1536] = 1536, [1537] = 1537, @@ -6237,20 +6187,20 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1543] = 1543, [1544] = 1544, [1545] = 1545, - [1546] = 687, + [1546] = 1546, [1547] = 1547, [1548] = 1548, [1549] = 1549, [1550] = 1550, - [1551] = 224, + [1551] = 1551, [1552] = 1552, [1553] = 1553, [1554] = 1554, - [1555] = 1555, + [1555] = 249, [1556] = 1556, [1557] = 1557, [1558] = 1558, - [1559] = 1559, + [1559] = 687, [1560] = 1560, [1561] = 1561, [1562] = 1562, @@ -6262,7 +6212,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1568] = 1568, [1569] = 1569, [1570] = 1570, - [1571] = 685, + [1571] = 1571, [1572] = 1572, [1573] = 1573, [1574] = 1574, @@ -6274,13 +6224,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1580] = 1580, [1581] = 1581, [1582] = 1582, - [1583] = 1583, + [1583] = 685, [1584] = 1584, [1585] = 1585, [1586] = 1586, [1587] = 1587, [1588] = 1588, - [1589] = 688, + [1589] = 1589, [1590] = 1590, [1591] = 1591, [1592] = 1592, @@ -6288,7 +6238,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1594] = 1594, [1595] = 1595, [1596] = 1596, - [1597] = 1597, + [1597] = 688, [1598] = 1598, [1599] = 1599, [1600] = 1600, @@ -6299,7 +6249,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1605] = 1605, [1606] = 1606, [1607] = 1607, - [1608] = 250, + [1608] = 1608, [1609] = 1609, [1610] = 1610, [1611] = 1611, @@ -6307,7 +6257,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1613] = 1613, [1614] = 1614, [1615] = 1615, - [1616] = 1612, + [1616] = 1616, [1617] = 1617, [1618] = 1618, [1619] = 1619, @@ -6319,23 +6269,23 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1625] = 1625, [1626] = 1626, [1627] = 1627, - [1628] = 1460, + [1628] = 245, [1629] = 1629, - [1630] = 260, + [1630] = 1630, [1631] = 1631, [1632] = 1632, [1633] = 1633, [1634] = 1634, [1635] = 1635, - [1636] = 1636, - [1637] = 1637, + [1636] = 229, + [1637] = 252, [1638] = 1638, - [1639] = 1639, - [1640] = 1640, - [1641] = 1641, - [1642] = 1642, + [1639] = 247, + [1640] = 1459, + [1641] = 242, + [1642] = 239, [1643] = 1643, - [1644] = 249, + [1644] = 1644, [1645] = 1645, [1646] = 1646, [1647] = 1647, @@ -6346,38 +6296,38 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1652] = 1652, [1653] = 1653, [1654] = 1654, - [1655] = 1612, - [1656] = 1612, + [1655] = 1655, + [1656] = 1656, [1657] = 1657, - [1658] = 252, - [1659] = 1659, + [1658] = 1658, + [1659] = 1617, [1660] = 1660, [1661] = 1661, [1662] = 1662, [1663] = 1663, - [1664] = 235, + [1664] = 1664, [1665] = 1665, [1666] = 1666, [1667] = 1667, [1668] = 1668, [1669] = 1669, - [1670] = 1670, - [1671] = 262, + [1670] = 1617, + [1671] = 1671, [1672] = 1672, [1673] = 1673, [1674] = 1674, [1675] = 1675, [1676] = 1676, [1677] = 1677, - [1678] = 252, - [1679] = 253, + [1678] = 1678, + [1679] = 1679, [1680] = 1680, - [1681] = 234, + [1681] = 1681, [1682] = 1682, [1683] = 1683, [1684] = 1684, [1685] = 1685, - [1686] = 253, + [1686] = 1686, [1687] = 1687, [1688] = 1688, [1689] = 1689, @@ -6385,14 +6335,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1691] = 1691, [1692] = 1692, [1693] = 1693, - [1694] = 1612, - [1695] = 256, + [1694] = 1694, + [1695] = 1695, [1696] = 1696, - [1697] = 1697, - [1698] = 1698, + [1697] = 234, + [1698] = 229, [1699] = 1699, - [1700] = 1700, - [1701] = 1701, + [1700] = 239, + [1701] = 232, [1702] = 1702, [1703] = 1703, [1704] = 1704, @@ -6403,11 +6353,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1709] = 1709, [1710] = 1710, [1711] = 1711, - [1712] = 1712, + [1712] = 1617, [1713] = 1713, [1714] = 1714, [1715] = 1715, - [1716] = 1716, + [1716] = 1617, [1717] = 1717, [1718] = 1718, [1719] = 1719, @@ -6418,889 +6368,889 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1724] = 1724, [1725] = 1725, [1726] = 1726, - [1727] = 1727, - [1728] = 248, - [1729] = 1701, - [1730] = 1470, - [1731] = 256, - [1732] = 1697, - [1733] = 250, + [1727] = 242, + [1728] = 1728, + [1729] = 252, + [1730] = 1726, + [1731] = 1731, + [1732] = 1728, + [1733] = 249, [1734] = 1734, - [1735] = 1735, - [1736] = 1736, - [1737] = 1469, + [1735] = 1695, + [1736] = 247, + [1737] = 1737, [1738] = 1738, - [1739] = 1739, - [1740] = 1738, - [1741] = 249, - [1742] = 260, - [1743] = 1735, - [1744] = 235, - [1745] = 1738, - [1746] = 1466, - [1747] = 234, - [1748] = 1735, - [1749] = 1749, - [1750] = 1738, - [1751] = 1692, - [1752] = 1735, - [1753] = 1735, - [1754] = 1754, - [1755] = 262, - [1756] = 1738, - [1757] = 1467, - [1758] = 1726, - [1759] = 1759, - [1760] = 1680, - [1761] = 1716, - [1762] = 1537, - [1763] = 1693, - [1764] = 1764, - [1765] = 1765, - [1766] = 1477, - [1767] = 1478, - [1768] = 1480, - [1769] = 1481, + [1739] = 1726, + [1740] = 245, + [1741] = 1728, + [1742] = 1465, + [1743] = 232, + [1744] = 1726, + [1745] = 1466, + [1746] = 1463, + [1747] = 1468, + [1748] = 1748, + [1749] = 246, + [1750] = 234, + [1751] = 1726, + [1752] = 1728, + [1753] = 1728, + [1754] = 1610, + [1755] = 1676, + [1756] = 1471, + [1757] = 1488, + [1758] = 1657, + [1759] = 1488, + [1760] = 1657, + [1761] = 1496, + [1762] = 1496, + [1763] = 1496, + [1764] = 1672, + [1765] = 958, + [1766] = 1557, + [1767] = 1687, + [1768] = 1710, + [1769] = 1715, [1770] = 1770, - [1771] = 1718, - [1772] = 1672, - [1773] = 1700, - [1774] = 950, - [1775] = 1653, - [1776] = 1613, - [1777] = 1618, - [1778] = 1626, - [1779] = 1646, - [1780] = 1659, - [1781] = 1484, - [1782] = 1666, - [1783] = 1677, - [1784] = 1689, - [1785] = 1660, - [1786] = 1708, - [1787] = 1787, - [1788] = 1702, - [1789] = 1610, - [1790] = 1712, - [1791] = 1482, - [1792] = 1472, - [1793] = 1787, - [1794] = 1588, - [1795] = 1479, - [1796] = 1764, - [1797] = 1595, - [1798] = 1692, - [1799] = 1697, - [1800] = 1701, - [1801] = 1486, - [1802] = 1802, - [1803] = 1529, - [1804] = 1566, - [1805] = 1805, - [1806] = 1726, - [1807] = 1529, - [1808] = 1566, - [1809] = 1674, - [1810] = 1712, - [1811] = 1620, - [1812] = 1759, - [1813] = 1634, - [1814] = 1635, - [1815] = 949, - [1816] = 1529, - [1817] = 1787, - [1818] = 1787, - [1819] = 1566, - [1820] = 1759, - [1821] = 1699, - [1822] = 1725, - [1823] = 1787, - [1824] = 1759, - [1825] = 1699, - [1826] = 1725, - [1827] = 1716, - [1828] = 1718, - [1829] = 1672, - [1830] = 1700, - [1831] = 1653, - [1832] = 1613, - [1833] = 1618, - [1834] = 1626, - [1835] = 1646, - [1836] = 1659, - [1837] = 1666, - [1838] = 1677, - [1839] = 1689, - [1840] = 1660, - [1841] = 1708, - [1842] = 1702, - [1843] = 1610, - [1844] = 1674, - [1845] = 1617, - [1846] = 1620, - [1847] = 1634, - [1848] = 1635, - [1849] = 1641, - [1850] = 1850, - [1851] = 948, - [1852] = 1641, - [1853] = 1853, - [1854] = 1680, - [1855] = 1693, - [1856] = 1617, - [1857] = 1604, - [1858] = 1487, - [1859] = 1548, - [1860] = 1549, - [1861] = 1550, - [1862] = 1609, - [1863] = 1552, - [1864] = 1553, - [1865] = 1554, - [1866] = 1555, - [1867] = 1556, - [1868] = 1557, - [1869] = 1558, - [1870] = 1559, - [1871] = 1560, - [1872] = 1562, - [1873] = 1563, - [1874] = 1565, - [1875] = 1567, - [1876] = 1569, - [1877] = 1570, - [1878] = 1547, - [1879] = 685, - [1880] = 1572, - [1881] = 1573, - [1882] = 1575, - [1883] = 1577, - [1884] = 1578, - [1885] = 1579, - [1886] = 1580, - [1887] = 1581, - [1888] = 1583, - [1889] = 1584, - [1890] = 1585, - [1891] = 1586, - [1892] = 1587, - [1893] = 688, - [1894] = 1590, - [1895] = 1592, - [1896] = 1593, - [1897] = 1594, - [1898] = 1596, - [1899] = 1597, - [1900] = 1598, - [1901] = 1599, - [1902] = 1600, - [1903] = 1601, - [1904] = 1602, - [1905] = 1605, - [1906] = 229, - [1907] = 1490, - [1908] = 1908, + [1771] = 1661, + [1772] = 1770, + [1773] = 1720, + [1774] = 1688, + [1775] = 1663, + [1776] = 1776, + [1777] = 1725, + [1778] = 1624, + [1779] = 1722, + [1780] = 1625, + [1781] = 1699, + [1782] = 1708, + [1783] = 1710, + [1784] = 1626, + [1785] = 1785, + [1786] = 1488, + [1787] = 1679, + [1788] = 1671, + [1789] = 1770, + [1790] = 948, + [1791] = 1791, + [1792] = 1612, + [1793] = 1791, + [1794] = 1664, + [1795] = 1661, + [1796] = 1680, + [1797] = 1624, + [1798] = 1798, + [1799] = 1715, + [1800] = 1610, + [1801] = 1663, + [1802] = 957, + [1803] = 1687, + [1804] = 1475, + [1805] = 1688, + [1806] = 1791, + [1807] = 1720, + [1808] = 1672, + [1809] = 1722, + [1810] = 1723, + [1811] = 1723, + [1812] = 1632, + [1813] = 1813, + [1814] = 1478, + [1815] = 1776, + [1816] = 1656, + [1817] = 1486, + [1818] = 1632, + [1819] = 1664, + [1820] = 1708, + [1821] = 1695, + [1822] = 1679, + [1823] = 1665, + [1824] = 1612, + [1825] = 1654, + [1826] = 1490, + [1827] = 1827, + [1828] = 1484, + [1829] = 1699, + [1830] = 1625, + [1831] = 1626, + [1832] = 1666, + [1833] = 1623, + [1834] = 1506, + [1835] = 1835, + [1836] = 1667, + [1837] = 1473, + [1838] = 1680, + [1839] = 1770, + [1840] = 1477, + [1841] = 1654, + [1842] = 1770, + [1843] = 1485, + [1844] = 1482, + [1845] = 1845, + [1846] = 1656, + [1847] = 1725, + [1848] = 1665, + [1849] = 1666, + [1850] = 1667, + [1851] = 1791, + [1852] = 1623, + [1853] = 1671, + [1854] = 1676, + [1855] = 1708, + [1856] = 1856, + [1857] = 1857, + [1858] = 217, + [1859] = 1558, + [1860] = 1860, + [1861] = 1861, + [1862] = 1507, + [1863] = 1508, + [1864] = 1509, + [1865] = 1510, + [1866] = 1512, + [1867] = 1513, + [1868] = 1514, + [1869] = 1515, + [1870] = 1561, + [1871] = 1562, + [1872] = 1511, + [1873] = 1675, + [1874] = 1677, + [1875] = 1738, + [1876] = 1577, + [1877] = 684, + [1878] = 1517, + [1879] = 1518, + [1880] = 1519, + [1881] = 1881, + [1882] = 1827, + [1883] = 1520, + [1884] = 1521, + [1885] = 1522, + [1886] = 1523, + [1887] = 1524, + [1888] = 1525, + [1889] = 1526, + [1890] = 1527, + [1891] = 1528, + [1892] = 1529, + [1893] = 1530, + [1894] = 1531, + [1895] = 1532, + [1896] = 1491, + [1897] = 1897, + [1898] = 1898, + [1899] = 1899, + [1900] = 686, + [1901] = 1535, + [1902] = 1536, + [1903] = 1537, + [1904] = 1538, + [1905] = 1609, + [1906] = 1539, + [1907] = 1540, + [1908] = 1541, [1909] = 1909, - [1910] = 1910, - [1911] = 1911, - [1912] = 1912, - [1913] = 1722, - [1914] = 1914, - [1915] = 1516, - [1916] = 1916, - [1917] = 1529, - [1918] = 1532, - [1919] = 1566, - [1920] = 682, - [1921] = 1496, - [1922] = 1504, - [1923] = 1498, - [1924] = 1561, - [1925] = 1574, - [1926] = 1499, - [1927] = 1692, - [1928] = 1524, - [1929] = 1910, - [1930] = 1930, - [1931] = 1720, - [1932] = 1932, - [1933] = 1802, - [1934] = 1568, - [1935] = 1564, - [1936] = 1936, - [1937] = 1582, - [1938] = 1727, - [1939] = 1576, - [1940] = 1940, - [1941] = 1941, - [1942] = 1500, - [1943] = 1943, - [1944] = 1944, - [1945] = 1603, - [1946] = 1946, - [1947] = 1910, - [1948] = 1932, - [1949] = 1802, - [1950] = 1529, - [1951] = 1566, + [1910] = 1542, + [1911] = 1543, + [1912] = 1544, + [1913] = 1545, + [1914] = 1546, + [1915] = 1547, + [1916] = 1548, + [1917] = 1549, + [1918] = 1550, + [1919] = 1551, + [1920] = 1552, + [1921] = 1553, + [1922] = 1554, + [1923] = 1556, + [1924] = 1487, + [1925] = 687, + [1926] = 1560, + [1927] = 1563, + [1928] = 1564, + [1929] = 1565, + [1930] = 1566, + [1931] = 1567, + [1932] = 1568, + [1933] = 1569, + [1934] = 1570, + [1935] = 1571, + [1936] = 1572, + [1937] = 1573, + [1938] = 1574, + [1939] = 1575, + [1940] = 1576, + [1941] = 1578, + [1942] = 1579, + [1943] = 1580, + [1944] = 1581, + [1945] = 1582, + [1946] = 1499, + [1947] = 685, + [1948] = 1584, + [1949] = 1585, + [1950] = 1586, + [1951] = 1587, [1952] = 1588, - [1953] = 1501, - [1954] = 1595, - [1955] = 1910, - [1956] = 1529, - [1957] = 1566, - [1958] = 1720, - [1959] = 1727, - [1960] = 1722, - [1961] = 1502, - [1962] = 1503, - [1963] = 1537, - [1964] = 1505, - [1965] = 1965, - [1966] = 1507, - [1967] = 1508, - [1968] = 1509, - [1969] = 1969, - [1970] = 1513, - [1971] = 1971, - [1972] = 1515, - [1973] = 1491, - [1974] = 1564, - [1975] = 1517, - [1976] = 1518, - [1977] = 1582, - [1978] = 1727, - [1979] = 1588, - [1980] = 1492, - [1981] = 1493, - [1982] = 1720, - [1983] = 1722, - [1984] = 1754, - [1985] = 1697, - [1986] = 1965, - [1987] = 1494, + [1953] = 1589, + [1954] = 1590, + [1955] = 1591, + [1956] = 1592, + [1957] = 1593, + [1958] = 1594, + [1959] = 1595, + [1960] = 1596, + [1961] = 688, + [1962] = 1598, + [1963] = 1599, + [1964] = 1600, + [1965] = 1601, + [1966] = 1602, + [1967] = 1612, + [1968] = 1604, + [1969] = 1605, + [1970] = 1606, + [1971] = 1607, + [1972] = 1608, + [1973] = 1489, + [1974] = 217, + [1975] = 1860, + [1976] = 1533, + [1977] = 1677, + [1978] = 1978, + [1979] = 1488, + [1980] = 1496, + [1981] = 1492, + [1982] = 1493, + [1983] = 1494, + [1984] = 1860, + [1985] = 1985, + [1986] = 1675, + [1987] = 1987, [1988] = 1988, - [1989] = 1607, - [1990] = 1591, - [1991] = 229, - [1992] = 1910, - [1993] = 1489, - [1994] = 684, - [1995] = 1520, - [1996] = 1521, - [1997] = 1522, - [1998] = 1523, - [1999] = 1525, - [2000] = 1526, - [2001] = 1527, - [2002] = 1754, - [2003] = 1528, - [2004] = 1530, - [2005] = 1531, - [2006] = 1533, - [2007] = 1534, - [2008] = 1535, - [2009] = 1536, - [2010] = 1538, - [2011] = 1539, - [2012] = 1540, - [2013] = 2013, - [2014] = 2014, - [2015] = 1541, - [2016] = 2016, - [2017] = 2017, + [1989] = 1989, + [1990] = 1990, + [1991] = 1495, + [1992] = 1504, + [1993] = 1638, + [1994] = 1994, + [1995] = 1881, + [1996] = 1827, + [1997] = 1860, + [1998] = 1676, + [1999] = 1488, + [2000] = 1496, + [2001] = 1506, + [2002] = 1490, + [2003] = 1860, + [2004] = 1488, + [2005] = 1496, + [2006] = 1675, + [2007] = 1638, + [2008] = 1677, + [2009] = 1557, + [2010] = 1985, + [2011] = 1495, + [2012] = 1504, + [2013] = 1638, + [2014] = 1506, + [2015] = 2015, + [2016] = 1695, + [2017] = 1860, [2018] = 2018, - [2019] = 1542, - [2020] = 1543, + [2019] = 2019, + [2020] = 2020, [2021] = 2021, - [2022] = 1544, + [2022] = 1738, [2023] = 2023, - [2024] = 1701, - [2025] = 1910, - [2026] = 2026, - [2027] = 1595, - [2028] = 1545, - [2029] = 1606, - [2030] = 687, - [2031] = 1699, - [2032] = 1725, - [2033] = 1716, - [2034] = 1718, - [2035] = 1672, - [2036] = 1700, - [2037] = 1653, - [2038] = 1613, - [2039] = 1618, - [2040] = 1626, - [2041] = 1646, - [2042] = 1659, - [2043] = 1666, - [2044] = 1677, - [2045] = 1689, - [2046] = 1660, - [2047] = 1708, - [2048] = 1702, - [2049] = 1610, - [2050] = 1674, - [2051] = 1617, - [2052] = 1620, - [2053] = 1634, - [2054] = 1635, - [2055] = 1641, - [2056] = 1726, - [2057] = 1680, - [2058] = 1693, - [2059] = 1712, - [2060] = 1511, - [2061] = 1651, - [2062] = 1640, + [2024] = 2024, + [2025] = 2025, + [2026] = 1490, + [2027] = 2027, + [2028] = 2028, + [2029] = 1610, + [2030] = 1623, + [2031] = 1624, + [2032] = 1632, + [2033] = 1654, + [2034] = 1656, + [2035] = 1657, + [2036] = 1661, + [2037] = 1663, + [2038] = 1664, + [2039] = 1665, + [2040] = 1666, + [2041] = 1667, + [2042] = 1725, + [2043] = 1671, + [2044] = 1672, + [2045] = 1679, + [2046] = 1680, + [2047] = 1687, + [2048] = 1688, + [2049] = 1715, + [2050] = 1720, + [2051] = 1722, + [2052] = 1625, + [2053] = 1626, + [2054] = 1723, + [2055] = 2055, + [2056] = 1699, + [2057] = 1710, + [2058] = 1603, + [2059] = 2059, + [2060] = 243, + [2061] = 244, + [2062] = 2062, [2063] = 2063, - [2064] = 2064, - [2065] = 2065, - [2066] = 1685, - [2067] = 245, - [2068] = 246, + [2064] = 250, + [2065] = 251, + [2066] = 231, + [2067] = 2067, + [2068] = 233, [2069] = 2069, [2070] = 2070, - [2071] = 1652, + [2071] = 1696, [2072] = 2072, [2073] = 2073, [2074] = 2074, [2075] = 2075, - [2076] = 241, + [2076] = 2076, [2077] = 2077, [2078] = 2078, - [2079] = 1682, - [2080] = 1614, - [2081] = 1676, + [2079] = 1813, + [2080] = 1611, + [2081] = 1738, [2082] = 2082, - [2083] = 2083, + [2083] = 1647, [2084] = 2084, - [2085] = 2085, - [2086] = 2086, + [2085] = 1648, + [2086] = 1649, [2087] = 2087, - [2088] = 1720, - [2089] = 1625, - [2090] = 1698, - [2091] = 2085, - [2092] = 1727, + [2088] = 1660, + [2089] = 237, + [2090] = 1650, + [2091] = 2091, + [2092] = 2092, [2093] = 2093, - [2094] = 2087, - [2095] = 2085, - [2096] = 1703, - [2097] = 2087, - [2098] = 2098, - [2099] = 2099, - [2100] = 261, - [2101] = 2101, + [2094] = 1692, + [2095] = 1731, + [2096] = 1622, + [2097] = 1713, + [2098] = 1714, + [2099] = 1717, + [2100] = 1719, + [2101] = 2072, [2102] = 2102, - [2103] = 1529, - [2104] = 1566, - [2105] = 1647, - [2106] = 2098, - [2107] = 2099, - [2108] = 2108, - [2109] = 1529, - [2110] = 1566, - [2111] = 2098, - [2112] = 2099, - [2113] = 2098, - [2114] = 2099, - [2115] = 2115, - [2116] = 254, - [2117] = 2098, - [2118] = 2099, - [2119] = 2119, - [2120] = 1654, - [2121] = 1657, - [2122] = 255, - [2123] = 1688, - [2124] = 1714, - [2125] = 2125, - [2126] = 1619, - [2127] = 1649, - [2128] = 1623, - [2129] = 2129, - [2130] = 1632, - [2131] = 1675, - [2132] = 1537, - [2133] = 1637, - [2134] = 1648, - [2135] = 1699, - [2136] = 1725, - [2137] = 1662, - [2138] = 1716, - [2139] = 1663, - [2140] = 1667, - [2141] = 1668, - [2142] = 1718, - [2143] = 1672, - [2144] = 1700, + [2103] = 2074, + [2104] = 1721, + [2105] = 1707, + [2106] = 1675, + [2107] = 2107, + [2108] = 1629, + [2109] = 1633, + [2110] = 228, + [2111] = 1646, + [2112] = 2112, + [2113] = 1638, + [2114] = 231, + [2115] = 240, + [2116] = 1678, + [2117] = 1634, + [2118] = 1690, + [2119] = 2072, + [2120] = 233, + [2121] = 2074, + [2122] = 2122, + [2123] = 2123, + [2124] = 1702, + [2125] = 1613, + [2126] = 1674, + [2127] = 1618, + [2128] = 1813, + [2129] = 1488, + [2130] = 1496, + [2131] = 1651, + [2132] = 2122, + [2133] = 2123, + [2134] = 2134, + [2135] = 1488, + [2136] = 1496, + [2137] = 2122, + [2138] = 2123, + [2139] = 2122, + [2140] = 2123, + [2141] = 2122, + [2142] = 2123, + [2143] = 1652, + [2144] = 2144, [2145] = 2145, - [2146] = 1653, - [2147] = 2147, - [2148] = 1613, - [2149] = 1618, - [2150] = 1626, - [2151] = 1646, - [2152] = 1659, - [2153] = 1666, - [2154] = 1677, - [2155] = 1689, - [2156] = 1670, - [2157] = 1660, - [2158] = 1708, - [2159] = 2159, - [2160] = 1702, - [2161] = 1610, - [2162] = 1674, - [2163] = 1617, - [2164] = 1620, - [2165] = 1634, - [2166] = 1635, - [2167] = 2167, - [2168] = 1641, - [2169] = 2169, - [2170] = 2170, - [2171] = 243, - [2172] = 1687, - [2173] = 2173, - [2174] = 2174, - [2175] = 1615, - [2176] = 1770, - [2177] = 1683, - [2178] = 2167, - [2179] = 1684, - [2180] = 1690, - [2181] = 1705, - [2182] = 2159, - [2183] = 1642, - [2184] = 1645, - [2185] = 2145, - [2186] = 1709, - [2187] = 1710, - [2188] = 1704, - [2189] = 1661, - [2190] = 2145, - [2191] = 1711, - [2192] = 1715, - [2193] = 1717, - [2194] = 1719, - [2195] = 1696, - [2196] = 2145, - [2197] = 2145, + [2146] = 2146, + [2147] = 1682, + [2148] = 2148, + [2149] = 1683, + [2150] = 1623, + [2151] = 1624, + [2152] = 2152, + [2153] = 2153, + [2154] = 1632, + [2155] = 1644, + [2156] = 1658, + [2157] = 1662, + [2158] = 1654, + [2159] = 1656, + [2160] = 1657, + [2161] = 2076, + [2162] = 1661, + [2163] = 2107, + [2164] = 1663, + [2165] = 1664, + [2166] = 1665, + [2167] = 1666, + [2168] = 1667, + [2169] = 1725, + [2170] = 1671, + [2171] = 1672, + [2172] = 1684, + [2173] = 2082, + [2174] = 1679, + [2175] = 1680, + [2176] = 2148, + [2177] = 1687, + [2178] = 1688, + [2179] = 1704, + [2180] = 1715, + [2181] = 1720, + [2182] = 1722, + [2183] = 1625, + [2184] = 1626, + [2185] = 1705, + [2186] = 2153, + [2187] = 1723, + [2188] = 2188, + [2189] = 1706, + [2190] = 1711, + [2191] = 1615, + [2192] = 1616, + [2193] = 1630, + [2194] = 2076, + [2195] = 2195, + [2196] = 2196, + [2197] = 2197, [2198] = 2198, - [2199] = 2145, - [2200] = 2200, + [2199] = 1685, + [2200] = 2072, [2201] = 2201, [2202] = 2202, [2203] = 2203, - [2204] = 2204, + [2204] = 2076, [2205] = 2205, [2206] = 2206, - [2207] = 1726, - [2208] = 1680, - [2209] = 1693, - [2210] = 1712, + [2207] = 2074, + [2208] = 2208, + [2209] = 2076, + [2210] = 2210, [2211] = 2211, - [2212] = 2212, - [2213] = 1669, - [2214] = 251, - [2215] = 2215, - [2216] = 2216, - [2217] = 2217, - [2218] = 237, - [2219] = 1706, - [2220] = 2220, - [2221] = 1713, - [2222] = 1707, - [2223] = 1673, - [2224] = 2224, - [2225] = 2225, - [2226] = 2226, - [2227] = 2085, - [2228] = 1724, - [2229] = 2087, - [2230] = 2073, - [2231] = 1633, - [2232] = 261, + [2212] = 2076, + [2213] = 2076, + [2214] = 2214, + [2215] = 1699, + [2216] = 1978, + [2217] = 1708, + [2218] = 230, + [2219] = 2219, + [2220] = 1612, + [2221] = 2221, + [2222] = 2222, + [2223] = 2223, + [2224] = 235, + [2225] = 1653, + [2226] = 1655, + [2227] = 2152, + [2228] = 2077, + [2229] = 1631, + [2230] = 2198, + [2231] = 2210, + [2232] = 2232, [2233] = 2233, - [2234] = 2202, + [2234] = 2234, [2235] = 2235, - [2236] = 2212, - [2237] = 1720, - [2238] = 2238, - [2239] = 2239, - [2240] = 2240, - [2241] = 2075, - [2242] = 2093, + [2236] = 2236, + [2237] = 1686, + [2238] = 1689, + [2239] = 1709, + [2240] = 1614, + [2241] = 2241, + [2242] = 2242, [2243] = 2243, - [2244] = 2145, - [2245] = 2245, - [2246] = 2246, - [2247] = 2247, - [2248] = 2248, - [2249] = 1699, - [2250] = 1725, - [2251] = 1716, - [2252] = 1718, - [2253] = 1672, - [2254] = 1700, - [2255] = 1653, - [2256] = 1613, - [2257] = 1618, - [2258] = 1626, - [2259] = 1646, - [2260] = 1659, - [2261] = 1666, - [2262] = 1677, - [2263] = 1689, - [2264] = 1660, - [2265] = 1708, - [2266] = 1702, - [2267] = 1610, - [2268] = 1674, - [2269] = 1617, - [2270] = 1620, - [2271] = 1634, - [2272] = 1635, - [2273] = 1641, - [2274] = 1691, - [2275] = 238, - [2276] = 2245, - [2277] = 1629, + [2244] = 1623, + [2245] = 1624, + [2246] = 1632, + [2247] = 1654, + [2248] = 1656, + [2249] = 1657, + [2250] = 1661, + [2251] = 1663, + [2252] = 1664, + [2253] = 1665, + [2254] = 1666, + [2255] = 1667, + [2256] = 1725, + [2257] = 1671, + [2258] = 1672, + [2259] = 1679, + [2260] = 1680, + [2261] = 1687, + [2262] = 1688, + [2263] = 1715, + [2264] = 1720, + [2265] = 1722, + [2266] = 1625, + [2267] = 1626, + [2268] = 1723, + [2269] = 2072, + [2270] = 2270, + [2271] = 1718, + [2272] = 1673, + [2273] = 1724, + [2274] = 1627, + [2275] = 1643, + [2276] = 1645, + [2277] = 1668, [2278] = 2278, - [2279] = 1726, - [2280] = 1680, - [2281] = 1693, - [2282] = 1712, - [2283] = 1611, - [2284] = 1621, - [2285] = 1721, - [2286] = 239, - [2287] = 1802, - [2288] = 243, - [2289] = 2289, + [2279] = 1699, + [2280] = 1708, + [2281] = 1710, + [2282] = 1612, + [2283] = 2283, + [2284] = 1557, + [2285] = 2285, + [2286] = 2074, + [2287] = 2232, + [2288] = 1691, + [2289] = 2233, [2290] = 2290, - [2291] = 1627, - [2292] = 2085, - [2293] = 1643, - [2294] = 2087, + [2291] = 2234, + [2292] = 2292, + [2293] = 2293, + [2294] = 2294, [2295] = 2295, - [2296] = 1564, + [2296] = 2296, [2297] = 2297, - [2298] = 1622, - [2299] = 1624, - [2300] = 1631, - [2301] = 1636, - [2302] = 1638, - [2303] = 1639, + [2298] = 2298, + [2299] = 2299, + [2300] = 2201, + [2301] = 243, + [2302] = 2146, + [2303] = 244, [2304] = 2304, - [2305] = 1665, - [2306] = 2238, - [2307] = 2239, - [2308] = 2308, - [2309] = 2240, - [2310] = 1582, - [2311] = 1727, - [2312] = 1916, - [2313] = 2313, - [2314] = 2314, - [2315] = 2315, - [2316] = 2203, - [2317] = 2129, - [2318] = 2318, - [2319] = 251, - [2320] = 237, - [2321] = 240, - [2322] = 241, - [2323] = 1739, - [2324] = 238, - [2325] = 245, - [2326] = 246, - [2327] = 254, - [2328] = 255, - [2329] = 239, - [2330] = 2330, + [2305] = 1619, + [2306] = 2306, + [2307] = 2072, + [2308] = 1693, + [2309] = 2074, + [2310] = 236, + [2311] = 1978, + [2312] = 250, + [2313] = 1675, + [2314] = 251, + [2315] = 1620, + [2316] = 2316, + [2317] = 1621, + [2318] = 1738, + [2319] = 230, + [2320] = 235, + [2321] = 1827, + [2322] = 237, + [2323] = 2299, + [2324] = 1694, + [2325] = 1495, + [2326] = 236, + [2327] = 1504, + [2328] = 1638, + [2329] = 1738, + [2330] = 1669, [2331] = 2331, - [2332] = 1754, - [2333] = 2147, - [2334] = 2085, - [2335] = 2078, - [2336] = 2087, + [2332] = 2332, + [2333] = 1635, + [2334] = 1681, + [2335] = 1703, + [2336] = 2336, [2337] = 2337, - [2338] = 1916, - [2339] = 1723, - [2340] = 1770, - [2341] = 240, - [2342] = 1754, - [2343] = 2343, - [2344] = 2344, - [2345] = 2345, - [2346] = 2202, - [2347] = 2238, - [2348] = 2239, - [2349] = 2075, - [2350] = 1537, - [2351] = 2315, - [2352] = 2203, - [2353] = 2078, - [2354] = 1754, - [2355] = 1650, - [2356] = 2315, - [2357] = 2318, - [2358] = 2358, - [2359] = 1697, - [2360] = 1646, - [2361] = 1659, - [2362] = 1666, - [2363] = 1677, - [2364] = 1689, - [2365] = 1660, - [2366] = 1708, - [2367] = 1702, - [2368] = 1610, - [2369] = 1674, - [2370] = 1617, - [2371] = 1620, - [2372] = 1634, - [2373] = 1635, - [2374] = 1641, + [2338] = 2278, + [2339] = 2339, + [2340] = 2198, + [2341] = 2341, + [2342] = 2232, + [2343] = 2233, + [2344] = 2235, + [2345] = 2235, + [2346] = 1557, + [2347] = 2299, + [2348] = 2201, + [2349] = 2278, + [2350] = 228, + [2351] = 240, + [2352] = 2352, + [2353] = 2236, + [2354] = 1710, + [2355] = 1557, + [2356] = 2356, + [2357] = 2357, + [2358] = 2357, + [2359] = 1677, + [2360] = 2360, + [2361] = 2361, + [2362] = 2362, + [2363] = 2363, + [2364] = 1506, + [2365] = 2365, + [2366] = 1490, + [2367] = 1610, + [2368] = 1676, + [2369] = 1695, + [2370] = 2357, + [2371] = 2371, + [2372] = 1677, + [2373] = 1738, + [2374] = 1495, [2375] = 2375, - [2376] = 1564, - [2377] = 257, - [2378] = 2378, - [2379] = 2379, - [2380] = 1726, - [2381] = 1680, + [2376] = 1504, + [2377] = 2377, + [2378] = 2357, + [2379] = 1675, + [2380] = 1638, + [2381] = 1676, [2382] = 2382, - [2383] = 1693, - [2384] = 1712, - [2385] = 1582, + [2383] = 1488, + [2384] = 1496, + [2385] = 2385, [2386] = 2386, - [2387] = 2387, - [2388] = 1529, - [2389] = 1765, + [2387] = 1835, + [2388] = 2388, + [2389] = 2389, [2390] = 2390, - [2391] = 1566, + [2391] = 2391, [2392] = 2392, - [2393] = 2393, + [2393] = 2392, [2394] = 2394, [2395] = 2395, - [2396] = 2396, - [2397] = 2397, + [2396] = 2375, + [2397] = 2389, [2398] = 2398, [2399] = 2399, - [2400] = 2378, + [2400] = 2400, [2401] = 2401, - [2402] = 1692, - [2403] = 2403, - [2404] = 1697, - [2405] = 2378, - [2406] = 2397, + [2402] = 2402, + [2403] = 2357, + [2404] = 2404, + [2405] = 2405, + [2406] = 2398, [2407] = 2407, - [2408] = 1701, + [2408] = 2399, [2409] = 2409, - [2410] = 2393, - [2411] = 257, - [2412] = 1588, - [2413] = 1720, - [2414] = 2414, - [2415] = 2399, - [2416] = 2379, - [2417] = 2398, - [2418] = 2418, - [2419] = 1727, - [2420] = 2420, - [2421] = 2421, - [2422] = 1618, - [2423] = 1626, - [2424] = 2424, - [2425] = 2378, - [2426] = 2378, - [2427] = 2427, - [2428] = 2428, - [2429] = 2429, - [2430] = 1770, - [2431] = 1722, - [2432] = 2432, - [2433] = 2433, - [2434] = 1699, - [2435] = 1725, - [2436] = 1716, - [2437] = 1718, - [2438] = 1672, - [2439] = 1700, - [2440] = 1653, - [2441] = 1613, - [2442] = 1618, - [2443] = 1626, - [2444] = 1646, - [2445] = 1659, - [2446] = 1666, - [2447] = 1677, - [2448] = 1689, - [2449] = 1660, - [2450] = 1708, - [2451] = 1702, - [2452] = 1610, - [2453] = 1674, - [2454] = 1617, - [2455] = 1620, - [2456] = 1634, - [2457] = 1635, - [2458] = 1641, - [2459] = 1754, - [2460] = 1595, - [2461] = 2461, - [2462] = 2462, - [2463] = 2387, - [2464] = 2464, - [2465] = 1726, - [2466] = 1680, - [2467] = 1693, - [2468] = 1712, - [2469] = 1699, - [2470] = 1725, - [2471] = 1716, - [2472] = 1754, - [2473] = 1754, - [2474] = 1718, - [2475] = 1537, - [2476] = 1722, - [2477] = 1672, - [2478] = 1700, - [2479] = 1653, - [2480] = 1613, - [2481] = 2378, + [2410] = 253, + [2411] = 2411, + [2412] = 2412, + [2413] = 253, + [2414] = 1623, + [2415] = 1624, + [2416] = 1632, + [2417] = 1654, + [2418] = 1656, + [2419] = 1657, + [2420] = 1661, + [2421] = 1663, + [2422] = 1664, + [2423] = 1665, + [2424] = 1666, + [2425] = 1667, + [2426] = 1725, + [2427] = 1671, + [2428] = 1672, + [2429] = 1679, + [2430] = 1680, + [2431] = 1687, + [2432] = 1688, + [2433] = 1715, + [2434] = 1720, + [2435] = 1722, + [2436] = 1625, + [2437] = 1626, + [2438] = 1723, + [2439] = 1699, + [2440] = 1708, + [2441] = 1710, + [2442] = 1612, + [2443] = 2443, + [2444] = 2357, + [2445] = 1813, + [2446] = 1623, + [2447] = 1624, + [2448] = 1632, + [2449] = 1654, + [2450] = 1656, + [2451] = 1657, + [2452] = 1661, + [2453] = 1663, + [2454] = 1664, + [2455] = 1665, + [2456] = 1666, + [2457] = 1667, + [2458] = 1725, + [2459] = 1671, + [2460] = 1672, + [2461] = 1679, + [2462] = 1680, + [2463] = 1687, + [2464] = 1688, + [2465] = 1715, + [2466] = 1720, + [2467] = 1722, + [2468] = 1625, + [2469] = 1626, + [2470] = 1723, + [2471] = 1699, + [2472] = 1708, + [2473] = 1710, + [2474] = 1612, + [2475] = 1738, + [2476] = 1738, + [2477] = 2386, + [2478] = 1626, + [2479] = 2479, + [2480] = 2480, + [2481] = 2481, [2482] = 2482, - [2483] = 1537, - [2484] = 1916, + [2483] = 2483, + [2484] = 1506, [2485] = 2485, - [2486] = 2486, - [2487] = 2487, - [2488] = 2488, - [2489] = 2489, - [2490] = 1692, - [2491] = 1697, - [2492] = 1701, - [2493] = 950, - [2494] = 1722, - [2495] = 949, - [2496] = 2496, - [2497] = 1588, - [2498] = 948, - [2499] = 1595, - [2500] = 2500, - [2501] = 1722, - [2502] = 1720, - [2503] = 1727, - [2504] = 2504, - [2505] = 2505, - [2506] = 1699, - [2507] = 1725, - [2508] = 1716, - [2509] = 1718, - [2510] = 1672, - [2511] = 1700, - [2512] = 1653, - [2513] = 1613, - [2514] = 1618, - [2515] = 1626, - [2516] = 1646, - [2517] = 1659, - [2518] = 1666, - [2519] = 1677, - [2520] = 1689, - [2521] = 1660, - [2522] = 1708, - [2523] = 1702, - [2524] = 1610, - [2525] = 1674, - [2526] = 1617, - [2527] = 1620, - [2528] = 1634, - [2529] = 1635, - [2530] = 1641, + [2486] = 1623, + [2487] = 1624, + [2488] = 948, + [2489] = 1490, + [2490] = 1632, + [2491] = 1654, + [2492] = 1656, + [2493] = 1657, + [2494] = 1661, + [2495] = 1663, + [2496] = 1664, + [2497] = 1665, + [2498] = 1666, + [2499] = 1667, + [2500] = 1725, + [2501] = 1671, + [2502] = 1672, + [2503] = 1679, + [2504] = 1680, + [2505] = 1687, + [2506] = 1688, + [2507] = 1978, + [2508] = 1715, + [2509] = 1720, + [2510] = 1722, + [2511] = 1776, + [2512] = 2481, + [2513] = 2513, + [2514] = 2514, + [2515] = 2515, + [2516] = 2516, + [2517] = 2481, + [2518] = 1625, + [2519] = 1557, + [2520] = 2481, + [2521] = 957, + [2522] = 2522, + [2523] = 2523, + [2524] = 1738, + [2525] = 2525, + [2526] = 2481, + [2527] = 1723, + [2528] = 1677, + [2529] = 1675, + [2530] = 1638, [2531] = 2531, - [2532] = 2532, + [2532] = 2481, [2533] = 2533, [2534] = 2534, [2535] = 2535, [2536] = 2536, - [2537] = 2537, + [2537] = 1610, [2538] = 2538, - [2539] = 1754, - [2540] = 2018, + [2539] = 1676, + [2540] = 2540, [2541] = 2541, [2542] = 2542, [2543] = 2543, [2544] = 2544, - [2545] = 1726, - [2546] = 1680, - [2547] = 1693, - [2548] = 1712, - [2549] = 2504, - [2550] = 2504, - [2551] = 2504, - [2552] = 2552, + [2545] = 1695, + [2546] = 2482, + [2547] = 2015, + [2548] = 1699, + [2549] = 1708, + [2550] = 1710, + [2551] = 1612, + [2552] = 2481, [2553] = 2553, - [2554] = 2504, - [2555] = 1537, - [2556] = 2504, - [2557] = 2557, - [2558] = 2558, + [2554] = 2481, + [2555] = 958, + [2556] = 2556, + [2557] = 2481, + [2558] = 1557, [2559] = 2559, - [2560] = 2560, - [2561] = 2504, - [2562] = 1764, - [2563] = 2505, - [2564] = 2504, - [2565] = 2504, - [2566] = 2099, + [2560] = 1677, + [2561] = 2561, + [2562] = 2562, + [2563] = 2123, + [2564] = 2564, + [2565] = 1813, + [2566] = 2566, [2567] = 2567, - [2568] = 1770, - [2569] = 2569, - [2570] = 2570, - [2571] = 2571, + [2568] = 2122, + [2569] = 2123, + [2570] = 2122, + [2571] = 2123, [2572] = 2572, [2573] = 2573, - [2574] = 2574, - [2575] = 2098, - [2576] = 2099, - [2577] = 2098, - [2578] = 2578, + [2574] = 2567, + [2575] = 2575, + [2576] = 2576, + [2577] = 2577, + [2578] = 1557, [2579] = 2579, - [2580] = 2098, + [2580] = 2580, [2581] = 2581, [2582] = 2582, [2583] = 2583, - [2584] = 2394, - [2585] = 2099, + [2584] = 2584, + [2585] = 2585, [2586] = 2586, - [2587] = 2587, - [2588] = 2098, - [2589] = 2099, + [2587] = 2412, + [2588] = 2122, + [2589] = 2123, [2590] = 2590, - [2591] = 2591, - [2592] = 2592, + [2591] = 2122, + [2592] = 2123, [2593] = 2593, - [2594] = 2098, - [2595] = 2099, - [2596] = 2592, - [2597] = 2098, - [2598] = 2099, - [2599] = 2599, + [2594] = 2594, + [2595] = 2595, + [2596] = 2122, + [2597] = 2123, + [2598] = 1557, + [2599] = 2122, [2600] = 2600, - [2601] = 1537, - [2602] = 1537, - [2603] = 2603, + [2601] = 242, + [2602] = 2602, + [2603] = 2600, [2604] = 2604, - [2605] = 1576, - [2606] = 2606, + [2605] = 2605, + [2606] = 1217, [2607] = 2607, [2608] = 2608, - [2609] = 2609, + [2609] = 249, [2610] = 2610, [2611] = 2611, [2612] = 2612, @@ -7310,154 +7260,154 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2616] = 2616, [2617] = 2617, [2618] = 2618, - [2619] = 2608, + [2619] = 2619, [2620] = 2620, [2621] = 2621, - [2622] = 2622, - [2623] = 2623, + [2622] = 2600, + [2623] = 246, [2624] = 2624, [2625] = 2625, - [2626] = 2626, - [2627] = 2608, - [2628] = 249, - [2629] = 2629, + [2626] = 2600, + [2627] = 2600, + [2628] = 2628, + [2629] = 232, [2630] = 2630, [2631] = 2631, - [2632] = 2632, - [2633] = 248, + [2632] = 2600, + [2633] = 2600, [2634] = 2634, - [2635] = 2608, - [2636] = 2636, - [2637] = 234, - [2638] = 2608, + [2635] = 2635, + [2636] = 249, + [2637] = 2637, + [2638] = 2638, [2639] = 2639, [2640] = 2640, [2641] = 2641, [2642] = 2642, - [2643] = 2608, + [2643] = 2643, [2644] = 2644, [2645] = 2645, - [2646] = 250, + [2646] = 2646, [2647] = 2647, - [2648] = 2608, + [2648] = 2648, [2649] = 2649, [2650] = 2650, [2651] = 2651, [2652] = 2652, [2653] = 2653, [2654] = 2654, - [2655] = 2655, + [2655] = 2600, [2656] = 2656, [2657] = 2657, - [2658] = 2658, - [2659] = 1213, + [2658] = 2600, + [2659] = 246, [2660] = 2660, - [2661] = 2608, + [2661] = 1511, [2662] = 2662, - [2663] = 248, + [2663] = 2663, [2664] = 2664, - [2665] = 2608, - [2666] = 250, - [2667] = 1256, - [2668] = 2668, - [2669] = 1603, - [2670] = 2670, + [2665] = 2665, + [2666] = 2666, + [2667] = 2525, + [2668] = 242, + [2669] = 2523, + [2670] = 1533, [2671] = 2671, [2672] = 2672, - [2673] = 2673, + [2673] = 232, [2674] = 2674, - [2675] = 234, - [2676] = 2500, - [2677] = 2677, + [2675] = 2675, + [2676] = 2676, + [2677] = 2241, [2678] = 2678, - [2679] = 249, + [2679] = 2316, [2680] = 2680, - [2681] = 2496, - [2682] = 2682, + [2681] = 2681, + [2682] = 2112, [2683] = 2683, [2684] = 2684, [2685] = 2685, - [2686] = 2069, - [2687] = 2289, - [2688] = 2217, - [2689] = 2689, + [2686] = 2686, + [2687] = 2687, + [2688] = 2202, + [2689] = 1247, [2690] = 2690, [2691] = 2691, [2692] = 2692, - [2693] = 2086, - [2694] = 2694, - [2695] = 2420, - [2696] = 2393, - [2697] = 2407, - [2698] = 2397, - [2699] = 2398, - [2700] = 2399, - [2701] = 2701, - [2702] = 2702, - [2703] = 2409, - [2704] = 2701, - [2705] = 1248, - [2706] = 2461, - [2707] = 2414, - [2708] = 2398, + [2693] = 2371, + [2694] = 2399, + [2695] = 2375, + [2696] = 2409, + [2697] = 2362, + [2698] = 2698, + [2699] = 2388, + [2700] = 2411, + [2701] = 2389, + [2702] = 2390, + [2703] = 2391, + [2704] = 2375, + [2705] = 2389, + [2706] = 2398, + [2707] = 2399, + [2708] = 2692, [2709] = 2709, - [2710] = 2403, - [2711] = 2711, - [2712] = 2461, - [2713] = 2399, - [2714] = 2390, - [2715] = 2403, - [2716] = 2414, - [2717] = 2709, - [2718] = 2393, - [2719] = 2719, - [2720] = 2421, - [2721] = 2397, - [2722] = 2395, - [2723] = 2390, + [2710] = 2405, + [2711] = 2398, + [2712] = 2712, + [2713] = 2407, + [2714] = 2362, + [2715] = 2371, + [2716] = 2388, + [2717] = 1253, + [2718] = 2405, + [2719] = 2691, + [2720] = 2720, + [2721] = 2721, + [2722] = 2722, + [2723] = 2723, [2724] = 2724, [2725] = 2725, [2726] = 2726, - [2727] = 2727, + [2727] = 2725, [2728] = 2728, - [2729] = 2729, + [2729] = 2724, [2730] = 2730, [2731] = 2731, [2732] = 2732, - [2733] = 2729, - [2734] = 2734, + [2733] = 2724, + [2734] = 2720, [2735] = 2725, - [2736] = 2732, - [2737] = 2730, - [2738] = 2738, - [2739] = 2731, - [2740] = 2730, - [2741] = 2734, - [2742] = 2730, - [2743] = 2726, + [2736] = 2730, + [2737] = 2731, + [2738] = 2721, + [2739] = 2722, + [2740] = 2724, + [2741] = 2741, + [2742] = 2742, + [2743] = 2743, [2744] = 2744, - [2745] = 2732, + [2745] = 2745, [2746] = 2746, - [2747] = 2747, - [2748] = 1267, - [2749] = 2749, + [2747] = 1270, + [2748] = 2748, + [2749] = 1290, [2750] = 2750, - [2751] = 2751, - [2752] = 1232, - [2753] = 2753, + [2751] = 1302, + [2752] = 1284, + [2753] = 1259, [2754] = 2754, [2755] = 2755, [2756] = 2756, [2757] = 2757, - [2758] = 1280, - [2759] = 2759, + [2758] = 2758, + [2759] = 2356, [2760] = 2760, [2761] = 2761, [2762] = 2762, - [2763] = 1231, + [2763] = 2763, [2764] = 2764, - [2765] = 2462, - [2766] = 1265, + [2765] = 2765, + [2766] = 2766, [2767] = 2767, [2768] = 2768, [2769] = 2769, @@ -7468,18 +7418,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2774] = 2774, [2775] = 2775, [2776] = 2776, - [2777] = 2777, + [2777] = 2775, [2778] = 2778, [2779] = 2779, - [2780] = 2780, + [2780] = 2772, [2781] = 2781, [2782] = 2782, [2783] = 2783, - [2784] = 2784, - [2785] = 2773, + [2784] = 2767, + [2785] = 2785, [2786] = 2786, - [2787] = 2787, - [2788] = 2772, + [2787] = 2774, + [2788] = 2788, [2789] = 2789, [2790] = 2790, [2791] = 2791, @@ -7489,19 +7439,19 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2795] = 2795, [2796] = 2796, [2797] = 2797, - [2798] = 2784, - [2799] = 2771, - [2800] = 2793, + [2798] = 2798, + [2799] = 2799, + [2800] = 2800, [2801] = 2801, - [2802] = 2779, - [2803] = 2803, + [2802] = 2802, + [2803] = 2801, [2804] = 2804, [2805] = 2805, - [2806] = 2806, - [2807] = 2804, + [2806] = 2771, + [2807] = 2807, [2808] = 2808, - [2809] = 2809, - [2810] = 2810, + [2809] = 2779, + [2810] = 2770, [2811] = 2811, [2812] = 2812, [2813] = 2813, @@ -7509,717 +7459,717 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2815] = 2815, [2816] = 2816, [2817] = 2817, - [2818] = 2818, - [2819] = 2781, + [2818] = 2811, + [2819] = 2819, [2820] = 2820, - [2821] = 2780, - [2822] = 2822, + [2821] = 2821, + [2822] = 2816, [2823] = 2823, - [2824] = 2813, - [2825] = 2825, - [2826] = 2826, + [2824] = 2824, + [2825] = 2769, + [2826] = 2776, [2827] = 2827, - [2828] = 2774, - [2829] = 2794, - [2830] = 2830, - [2831] = 2831, - [2832] = 2832, - [2833] = 1466, - [2834] = 1470, - [2835] = 1469, - [2836] = 1598, - [2837] = 1601, - [2838] = 1575, - [2839] = 1581, - [2840] = 1584, - [2841] = 1572, - [2842] = 1578, - [2843] = 1590, - [2844] = 1592, - [2845] = 1593, - [2846] = 1594, - [2847] = 1596, - [2848] = 1597, - [2849] = 1580, - [2850] = 1599, - [2851] = 1600, - [2852] = 1577, - [2853] = 1487, - [2854] = 1548, - [2855] = 1549, - [2856] = 1550, - [2857] = 1609, - [2858] = 1552, - [2859] = 1579, - [2860] = 1553, - [2861] = 1554, - [2862] = 1555, - [2863] = 1556, - [2864] = 1557, - [2865] = 1558, - [2866] = 1583, - [2867] = 1559, - [2868] = 1560, - [2869] = 1573, - [2870] = 1478, - [2871] = 232, - [2872] = 2872, - [2873] = 2872, - [2874] = 264, - [2875] = 1540, - [2876] = 1469, - [2877] = 1534, - [2878] = 1525, - [2879] = 1535, - [2880] = 1539, - [2881] = 1542, - [2882] = 1466, - [2883] = 1498, - [2884] = 1480, - [2885] = 1531, - [2886] = 1520, - [2887] = 1496, - [2888] = 1541, - [2889] = 1467, - [2890] = 1470, - [2891] = 1522, - [2892] = 2892, - [2893] = 1533, - [2894] = 1477, - [2895] = 1484, - [2896] = 1591, - [2897] = 1515, - [2898] = 1481, - [2899] = 1547, - [2900] = 1518, - [2901] = 1491, - [2902] = 1606, - [2903] = 1548, - [2904] = 1602, - [2905] = 1524, - [2906] = 1487, - [2907] = 1549, - [2908] = 1507, - [2909] = 1550, - [2910] = 1609, - [2911] = 1552, - [2912] = 1553, - [2913] = 1554, - [2914] = 1555, + [2828] = 2828, + [2829] = 1466, + [2830] = 1468, + [2831] = 1463, + [2832] = 1573, + [2833] = 1602, + [2834] = 1600, + [2835] = 1603, + [2836] = 1607, + [2837] = 1584, + [2838] = 1589, + [2839] = 1593, + [2840] = 1590, + [2841] = 1591, + [2842] = 1604, + [2843] = 1560, + [2844] = 1605, + [2845] = 1563, + [2846] = 1564, + [2847] = 1565, + [2848] = 1601, + [2849] = 1567, + [2850] = 1586, + [2851] = 1587, + [2852] = 1588, + [2853] = 1585, + [2854] = 1568, + [2855] = 1592, + [2856] = 1569, + [2857] = 1570, + [2858] = 1571, + [2859] = 1572, + [2860] = 1574, + [2861] = 1575, + [2862] = 1598, + [2863] = 1599, + [2864] = 1606, + [2865] = 1566, + [2866] = 241, + [2867] = 2867, + [2868] = 2867, + [2869] = 1484, + [2870] = 248, + [2871] = 1549, + [2872] = 1609, + [2873] = 2873, + [2874] = 1551, + [2875] = 1550, + [2876] = 1537, + [2877] = 1465, + [2878] = 1552, + [2879] = 1518, + [2880] = 1535, + [2881] = 1543, + [2882] = 1544, + [2883] = 1468, + [2884] = 1466, + [2885] = 1485, + [2886] = 1545, + [2887] = 1463, + [2888] = 1546, + [2889] = 1517, + [2890] = 1530, + [2891] = 1486, + [2892] = 1487, + [2893] = 1532, + [2894] = 1499, + [2895] = 1512, + [2896] = 1482, + [2897] = 1478, + [2898] = 1491, + [2899] = 1591, + [2900] = 1524, + [2901] = 1567, + [2902] = 2902, + [2903] = 1547, + [2904] = 1568, + [2905] = 1598, + [2906] = 1599, + [2907] = 1600, + [2908] = 1553, + [2909] = 1525, + [2910] = 2902, + [2911] = 2911, + [2912] = 2912, + [2913] = 2913, + [2914] = 2914, [2915] = 1556, - [2916] = 1557, - [2917] = 1558, - [2918] = 1559, - [2919] = 1492, - [2920] = 1509, - [2921] = 1493, - [2922] = 1494, - [2923] = 1560, - [2924] = 1513, - [2925] = 2925, - [2926] = 1517, - [2927] = 1572, - [2928] = 1573, - [2929] = 1575, - [2930] = 1577, - [2931] = 1578, - [2932] = 1579, - [2933] = 1580, - [2934] = 1581, - [2935] = 1583, - [2936] = 1584, - [2937] = 1590, - [2938] = 1592, - [2939] = 1593, - [2940] = 1594, - [2941] = 1596, - [2942] = 1597, - [2943] = 1598, - [2944] = 1599, - [2945] = 1600, - [2946] = 1601, - [2947] = 1467, - [2948] = 1604, - [2949] = 2925, - [2950] = 2950, - [2951] = 2951, - [2952] = 2952, - [2953] = 2953, - [2954] = 1585, - [2955] = 1586, - [2956] = 1587, - [2957] = 2925, - [2958] = 1521, - [2959] = 1523, - [2960] = 1526, - [2961] = 1527, - [2962] = 1528, - [2963] = 1530, - [2964] = 1536, - [2965] = 1543, - [2966] = 2950, - [2967] = 2951, - [2968] = 2952, - [2969] = 2953, - [2970] = 1545, - [2971] = 2925, - [2972] = 2950, - [2973] = 2951, - [2974] = 2952, - [2975] = 2953, - [2976] = 2925, - [2977] = 1499, - [2978] = 2950, - [2979] = 2951, - [2980] = 2952, - [2981] = 2953, - [2982] = 1466, - [2983] = 2925, - [2984] = 1469, - [2985] = 1470, - [2986] = 2925, - [2987] = 1489, - [2988] = 1490, - [2989] = 1500, - [2990] = 1504, - [2991] = 2925, - [2992] = 1501, - [2993] = 2950, - [2994] = 2925, - [2995] = 2951, - [2996] = 1503, - [2997] = 2952, - [2998] = 2953, - [2999] = 1562, - [3000] = 1563, - [3001] = 1567, - [3002] = 1569, - [3003] = 1505, + [2916] = 1569, + [2917] = 1527, + [2918] = 1601, + [2919] = 1529, + [2920] = 1570, + [2921] = 1602, + [2922] = 1531, + [2923] = 2902, + [2924] = 1603, + [2925] = 1571, + [2926] = 1509, + [2927] = 1510, + [2928] = 1604, + [2929] = 1605, + [2930] = 1606, + [2931] = 1513, + [2932] = 1514, + [2933] = 1594, + [2934] = 1607, + [2935] = 1515, + [2936] = 1492, + [2937] = 2911, + [2938] = 2912, + [2939] = 2913, + [2940] = 2914, + [2941] = 1572, + [2942] = 1573, + [2943] = 2902, + [2944] = 1574, + [2945] = 1560, + [2946] = 1466, + [2947] = 1463, + [2948] = 1468, + [2949] = 2911, + [2950] = 2912, + [2951] = 1593, + [2952] = 2914, + [2953] = 1575, + [2954] = 2902, + [2955] = 1595, + [2956] = 2911, + [2957] = 2912, + [2958] = 2913, + [2959] = 2914, + [2960] = 1563, + [2961] = 1564, + [2962] = 1565, + [2963] = 1596, + [2964] = 2902, + [2965] = 1566, + [2966] = 1584, + [2967] = 1585, + [2968] = 1586, + [2969] = 2902, + [2970] = 1507, + [2971] = 1587, + [2972] = 1519, + [2973] = 2911, + [2974] = 1588, + [2975] = 1589, + [2976] = 2912, + [2977] = 1608, + [2978] = 1465, + [2979] = 1590, + [2980] = 2913, + [2981] = 1508, + [2982] = 1520, + [2983] = 2914, + [2984] = 1576, + [2985] = 1578, + [2986] = 1580, + [2987] = 1536, + [2988] = 1581, + [2989] = 1538, + [2990] = 2902, + [2991] = 1592, + [2992] = 1539, + [2993] = 1521, + [2994] = 1540, + [2995] = 1541, + [2996] = 2902, + [2997] = 1523, + [2998] = 1542, + [2999] = 2913, + [3000] = 3000, + [3001] = 3001, + [3002] = 1475, + [3003] = 3003, [3004] = 3004, [3005] = 3005, [3006] = 3006, - [3007] = 1482, - [3008] = 3006, + [3007] = 3007, + [3008] = 3008, [3009] = 3009, [3010] = 3010, - [3011] = 3004, + [3011] = 3011, [3012] = 3012, [3013] = 3013, - [3014] = 1472, + [3014] = 3014, [3015] = 3015, - [3016] = 3016, + [3016] = 3007, [3017] = 3017, - [3018] = 3018, - [3019] = 3006, + [3018] = 1473, + [3019] = 3001, [3020] = 3020, [3021] = 3021, [3022] = 3022, [3023] = 3023, - [3024] = 3004, - [3025] = 3004, - [3026] = 1479, + [3024] = 3007, + [3025] = 3025, + [3026] = 3026, [3027] = 3027, - [3028] = 3028, - [3029] = 3006, - [3030] = 3030, + [3028] = 1484, + [3029] = 1482, + [3030] = 3001, [3031] = 3031, - [3032] = 3004, - [3033] = 3033, + [3032] = 3032, + [3033] = 3007, [3034] = 3034, - [3035] = 3006, - [3036] = 3006, - [3037] = 3037, - [3038] = 3038, - [3039] = 3039, + [3035] = 3001, + [3036] = 1477, + [3037] = 3001, + [3038] = 3001, + [3039] = 3007, [3040] = 3040, - [3041] = 3006, - [3042] = 1478, - [3043] = 3043, - [3044] = 1481, - [3045] = 3045, - [3046] = 1594, - [3047] = 3047, - [3048] = 1520, - [3049] = 1522, - [3050] = 3050, - [3051] = 1538, - [3052] = 1525, - [3053] = 1508, - [3054] = 1544, - [3055] = 1467, - [3056] = 3056, - [3057] = 1531, - [3058] = 3058, - [3059] = 950, - [3060] = 1496, - [3061] = 1533, - [3062] = 1534, - [3063] = 1561, - [3064] = 1574, - [3065] = 1535, - [3066] = 1498, - [3067] = 1511, - [3068] = 1539, - [3069] = 1540, - [3070] = 3070, - [3071] = 1541, - [3072] = 3072, - [3073] = 3072, - [3074] = 1487, - [3075] = 1605, - [3076] = 3076, - [3077] = 3077, - [3078] = 1549, - [3079] = 1550, - [3080] = 1609, - [3081] = 1552, - [3082] = 1553, - [3083] = 1554, - [3084] = 3084, - [3085] = 1555, - [3086] = 1556, - [3087] = 1557, - [3088] = 1558, - [3089] = 1559, - [3090] = 1560, - [3091] = 948, - [3092] = 1502, - [3093] = 3093, - [3094] = 1572, - [3095] = 1573, - [3096] = 1575, - [3097] = 1577, - [3098] = 1578, - [3099] = 1579, - [3100] = 1580, - [3101] = 949, - [3102] = 1581, - [3103] = 1583, - [3104] = 1584, - [3105] = 1590, - [3106] = 1592, - [3107] = 1593, - [3108] = 1480, - [3109] = 1542, - [3110] = 1596, - [3111] = 1597, - [3112] = 1598, - [3113] = 1599, - [3114] = 1600, - [3115] = 3115, - [3116] = 1565, - [3117] = 1570, - [3118] = 1601, - [3119] = 1548, + [3041] = 3001, + [3042] = 1607, + [3043] = 1609, + [3044] = 3044, + [3045] = 1604, + [3046] = 1535, + [3047] = 957, + [3048] = 3048, + [3049] = 1602, + [3050] = 1605, + [3051] = 1593, + [3052] = 3052, + [3053] = 1549, + [3054] = 3054, + [3055] = 3055, + [3056] = 1603, + [3057] = 1598, + [3058] = 1526, + [3059] = 1606, + [3060] = 1543, + [3061] = 1528, + [3062] = 1550, + [3063] = 1579, + [3064] = 1554, + [3065] = 1545, + [3066] = 1548, + [3067] = 1494, + [3068] = 1582, + [3069] = 3069, + [3070] = 1485, + [3071] = 1537, + [3072] = 1592, + [3073] = 1546, + [3074] = 3052, + [3075] = 3075, + [3076] = 1599, + [3077] = 1600, + [3078] = 1517, + [3079] = 948, + [3080] = 3080, + [3081] = 3081, + [3082] = 1493, + [3083] = 1552, + [3084] = 1465, + [3085] = 1560, + [3086] = 1563, + [3087] = 1564, + [3088] = 1565, + [3089] = 1566, + [3090] = 1567, + [3091] = 1568, + [3092] = 1569, + [3093] = 1570, + [3094] = 1571, + [3095] = 1572, + [3096] = 1573, + [3097] = 1574, + [3098] = 1575, + [3099] = 1518, + [3100] = 1544, + [3101] = 1601, + [3102] = 1551, + [3103] = 1584, + [3104] = 1585, + [3105] = 1586, + [3106] = 1587, + [3107] = 1588, + [3108] = 1589, + [3109] = 1590, + [3110] = 3110, + [3111] = 3111, + [3112] = 1489, + [3113] = 1591, + [3114] = 958, + [3115] = 1522, + [3116] = 1486, + [3117] = 3117, + [3118] = 3118, + [3119] = 1491, [3120] = 3120, [3121] = 3121, - [3122] = 3122, + [3122] = 1475, [3123] = 3123, [3124] = 3124, - [3125] = 3125, + [3125] = 3117, [3126] = 3126, - [3127] = 3127, - [3128] = 1518, + [3127] = 1484, + [3128] = 1482, [3129] = 3129, [3130] = 3130, [3131] = 3131, [3132] = 3132, - [3133] = 1484, + [3133] = 3133, [3134] = 3134, - [3135] = 1515, + [3135] = 3135, [3136] = 3136, - [3137] = 1482, + [3137] = 3137, [3138] = 3138, - [3139] = 1472, - [3140] = 1466, - [3141] = 1547, - [3142] = 3122, + [3139] = 3117, + [3140] = 3140, + [3141] = 3129, + [3142] = 3142, [3143] = 3143, - [3144] = 3129, + [3144] = 3144, [3145] = 3145, - [3146] = 3146, - [3147] = 3129, + [3146] = 3129, + [3147] = 3147, [3148] = 3148, - [3149] = 264, - [3150] = 1469, + [3149] = 1487, + [3150] = 3150, [3151] = 3151, [3152] = 3152, [3153] = 3153, - [3154] = 3129, - [3155] = 1606, - [3156] = 1591, - [3157] = 1470, - [3158] = 3158, - [3159] = 232, + [3154] = 3154, + [3155] = 3155, + [3156] = 3156, + [3157] = 3157, + [3158] = 1478, + [3159] = 1512, [3160] = 3160, - [3161] = 3161, + [3161] = 1473, [3162] = 3162, - [3163] = 3129, - [3164] = 3164, - [3165] = 3165, - [3166] = 3122, + [3163] = 1477, + [3164] = 1466, + [3165] = 1463, + [3166] = 1468, [3167] = 3167, - [3168] = 1478, - [3169] = 1481, - [3170] = 3170, + [3168] = 3168, + [3169] = 3129, + [3170] = 3117, [3171] = 3171, - [3172] = 1479, - [3173] = 3173, - [3174] = 3174, + [3172] = 1532, + [3173] = 3129, + [3174] = 1499, [3175] = 3175, - [3176] = 1491, + [3176] = 1530, [3177] = 3177, - [3178] = 3178, - [3179] = 3179, - [3180] = 3180, - [3181] = 3122, + [3178] = 1527, + [3179] = 1579, + [3180] = 1492, + [3181] = 1543, [3182] = 3182, - [3183] = 1477, - [3184] = 1545, - [3185] = 1565, - [3186] = 1567, - [3187] = 1535, - [3188] = 1494, - [3189] = 1569, - [3190] = 3190, - [3191] = 1570, - [3192] = 1543, - [3193] = 3193, - [3194] = 3190, - [3195] = 1499, - [3196] = 3193, - [3197] = 3193, - [3198] = 685, - [3199] = 1500, - [3200] = 1501, - [3201] = 1502, - [3202] = 1604, - [3203] = 1503, - [3204] = 1505, - [3205] = 1507, - [3206] = 1508, - [3207] = 1509, - [3208] = 1511, - [3209] = 1513, - [3210] = 1561, - [3211] = 1574, - [3212] = 1517, - [3213] = 3213, - [3214] = 3190, - [3215] = 3215, - [3216] = 684, - [3217] = 1521, - [3218] = 1523, - [3219] = 3138, - [3220] = 1526, - [3221] = 1527, - [3222] = 1480, - [3223] = 1585, - [3224] = 1586, - [3225] = 1528, - [3226] = 1587, - [3227] = 950, - [3228] = 1530, - [3229] = 688, - [3230] = 3190, - [3231] = 1536, - [3232] = 1496, - [3233] = 1498, - [3234] = 1538, - [3235] = 949, - [3236] = 1467, - [3237] = 3237, - [3238] = 1520, - [3239] = 1522, - [3240] = 1525, - [3241] = 3241, - [3242] = 1533, - [3243] = 1534, - [3244] = 1539, - [3245] = 1540, - [3246] = 1541, - [3247] = 1542, - [3248] = 948, - [3249] = 1544, - [3250] = 1562, - [3251] = 687, - [3252] = 1563, - [3253] = 1531, - [3254] = 1489, - [3255] = 1490, - [3256] = 1504, - [3257] = 1602, - [3258] = 1605, - [3259] = 1524, - [3260] = 682, - [3261] = 1492, - [3262] = 1493, - [3263] = 3193, + [3183] = 1546, + [3184] = 686, + [3185] = 3185, + [3186] = 1535, + [3187] = 1537, + [3188] = 1553, + [3189] = 1578, + [3190] = 1609, + [3191] = 1485, + [3192] = 1554, + [3193] = 1493, + [3194] = 1494, + [3195] = 1580, + [3196] = 1465, + [3197] = 1536, + [3198] = 1581, + [3199] = 3182, + [3200] = 1594, + [3201] = 1595, + [3202] = 1596, + [3203] = 688, + [3204] = 1582, + [3205] = 958, + [3206] = 687, + [3207] = 1538, + [3208] = 1517, + [3209] = 1539, + [3210] = 1507, + [3211] = 1508, + [3212] = 1518, + [3213] = 1509, + [3214] = 1540, + [3215] = 1510, + [3216] = 3185, + [3217] = 3217, + [3218] = 1513, + [3219] = 1515, + [3220] = 1544, + [3221] = 3221, + [3222] = 1545, + [3223] = 3223, + [3224] = 1549, + [3225] = 1550, + [3226] = 684, + [3227] = 1556, + [3228] = 1489, + [3229] = 1551, + [3230] = 1552, + [3231] = 1608, + [3232] = 685, + [3233] = 1541, + [3234] = 948, + [3235] = 1542, + [3236] = 1548, + [3237] = 957, + [3238] = 3182, + [3239] = 1519, + [3240] = 1520, + [3241] = 1521, + [3242] = 1522, + [3243] = 1523, + [3244] = 1524, + [3245] = 1525, + [3246] = 1526, + [3247] = 3185, + [3248] = 3153, + [3249] = 1528, + [3250] = 1547, + [3251] = 3185, + [3252] = 3182, + [3253] = 1576, + [3254] = 3254, + [3255] = 1529, + [3256] = 1531, + [3257] = 1514, + [3258] = 3258, + [3259] = 3259, + [3260] = 3260, + [3261] = 1532, + [3262] = 3262, + [3263] = 1482, [3264] = 3264, - [3265] = 1477, + [3265] = 3264, [3266] = 3266, [3267] = 3267, [3268] = 3268, [3269] = 3269, - [3270] = 3270, - [3271] = 1491, - [3272] = 3266, - [3273] = 1467, - [3274] = 1479, - [3275] = 1481, - [3276] = 3276, - [3277] = 3277, - [3278] = 3270, - [3279] = 3268, - [3280] = 3270, - [3281] = 3269, - [3282] = 1482, - [3283] = 3283, - [3284] = 3284, - [3285] = 3285, - [3286] = 3286, - [3287] = 3285, - [3288] = 3288, - [3289] = 1472, - [3290] = 3266, - [3291] = 3268, - [3292] = 1484, - [3293] = 3293, - [3294] = 1515, - [3295] = 3270, - [3296] = 1518, + [3270] = 3259, + [3271] = 3271, + [3272] = 3264, + [3273] = 3273, + [3274] = 3274, + [3275] = 1475, + [3276] = 1465, + [3277] = 3274, + [3278] = 3278, + [3279] = 3279, + [3280] = 1477, + [3281] = 3281, + [3282] = 3282, + [3283] = 3262, + [3284] = 1486, + [3285] = 1478, + [3286] = 1530, + [3287] = 1512, + [3288] = 3258, + [3289] = 3274, + [3290] = 3290, + [3291] = 3262, + [3292] = 1473, + [3293] = 3264, + [3294] = 3294, + [3295] = 3295, + [3296] = 1536, [3297] = 3297, [3298] = 3298, [3299] = 3299, - [3300] = 685, + [3300] = 3129, [3301] = 3301, [3302] = 3302, [3303] = 3303, [3304] = 3304, [3305] = 3305, - [3306] = 3306, + [3306] = 1538, [3307] = 3307, [3308] = 3308, [3309] = 3309, [3310] = 3310, - [3311] = 3311, + [3311] = 3309, [3312] = 3312, - [3313] = 3313, - [3314] = 3314, - [3315] = 3314, + [3313] = 3310, + [3314] = 3308, + [3315] = 3315, [3316] = 3316, - [3317] = 3129, - [3318] = 3318, + [3317] = 3317, + [3318] = 3304, [3319] = 3319, [3320] = 3320, - [3321] = 1602, - [3322] = 3319, - [3323] = 3323, + [3321] = 1513, + [3322] = 3322, + [3323] = 1539, [3324] = 3324, - [3325] = 3325, - [3326] = 3326, + [3325] = 1514, + [3326] = 1515, [3327] = 3327, - [3328] = 1481, - [3329] = 1489, - [3330] = 1490, - [3331] = 3331, - [3332] = 3332, + [3328] = 3328, + [3329] = 1540, + [3330] = 1596, + [3331] = 3316, + [3332] = 3317, [3333] = 3333, - [3334] = 3334, - [3335] = 1504, - [3336] = 3323, - [3337] = 3337, - [3338] = 3325, - [3339] = 1524, - [3340] = 3340, - [3341] = 1561, - [3342] = 1574, - [3343] = 3343, + [3334] = 3266, + [3335] = 3335, + [3336] = 3336, + [3337] = 3308, + [3338] = 1608, + [3339] = 3339, + [3340] = 3310, + [3341] = 3299, + [3342] = 3342, + [3343] = 684, [3344] = 3344, - [3345] = 3345, - [3346] = 3346, - [3347] = 1492, - [3348] = 3348, - [3349] = 3327, - [3350] = 3323, - [3351] = 3129, - [3352] = 1493, - [3353] = 1494, - [3354] = 3354, - [3355] = 3355, - [3356] = 3356, - [3357] = 3357, - [3358] = 3358, - [3359] = 3325, - [3360] = 3331, - [3361] = 3327, - [3362] = 3332, - [3363] = 3333, - [3364] = 3364, - [3365] = 3331, + [3345] = 3304, + [3346] = 241, + [3347] = 3347, + [3348] = 3327, + [3349] = 3309, + [3350] = 3304, + [3351] = 1519, + [3352] = 1520, + [3353] = 1521, + [3354] = 1541, + [3355] = 1522, + [3356] = 1523, + [3357] = 1524, + [3358] = 1542, + [3359] = 1526, + [3360] = 1527, + [3361] = 3129, + [3362] = 1528, + [3363] = 3339, + [3364] = 3310, + [3365] = 3327, [3366] = 3366, [3367] = 3367, - [3368] = 3313, - [3369] = 1507, - [3370] = 3332, - [3371] = 3283, - [3372] = 3337, - [3373] = 3333, + [3368] = 3129, + [3369] = 3316, + [3370] = 3299, + [3371] = 1529, + [3372] = 3372, + [3373] = 3307, [3374] = 3374, [3375] = 3375, - [3376] = 682, - [3377] = 3316, + [3376] = 1482, + [3377] = 3377, [3378] = 3378, [3379] = 3379, [3380] = 3380, - [3381] = 3381, - [3382] = 1517, + [3381] = 1547, + [3382] = 1548, [3383] = 3383, - [3384] = 3307, - [3385] = 1499, + [3384] = 3339, + [3385] = 3129, [3386] = 3386, - [3387] = 1501, - [3388] = 3388, - [3389] = 1502, - [3390] = 1503, - [3391] = 1505, - [3392] = 1508, - [3393] = 1509, - [3394] = 1511, - [3395] = 1513, - [3396] = 3316, - [3397] = 3397, - [3398] = 3398, + [3387] = 3129, + [3388] = 3129, + [3389] = 1489, + [3390] = 3390, + [3391] = 3391, + [3392] = 1492, + [3393] = 3393, + [3394] = 3394, + [3395] = 3299, + [3396] = 3267, + [3397] = 3316, + [3398] = 1491, [3399] = 3399, [3400] = 3400, - [3401] = 3314, - [3402] = 1591, - [3403] = 3314, - [3404] = 3319, - [3405] = 3374, - [3406] = 684, - [3407] = 3319, + [3401] = 3401, + [3402] = 3402, + [3403] = 1553, + [3404] = 1554, + [3405] = 1556, + [3406] = 3406, + [3407] = 1487, [3408] = 3408, - [3409] = 1521, - [3410] = 3410, - [3411] = 3411, - [3412] = 1523, - [3413] = 3413, - [3414] = 3414, - [3415] = 3415, - [3416] = 1526, - [3417] = 1527, - [3418] = 1528, + [3409] = 3344, + [3410] = 3309, + [3411] = 687, + [3412] = 3307, + [3413] = 3390, + [3414] = 248, + [3415] = 1493, + [3416] = 1594, + [3417] = 3417, + [3418] = 688, [3419] = 3419, - [3420] = 3420, - [3421] = 1530, - [3422] = 3422, + [3420] = 1507, + [3421] = 3421, + [3422] = 3279, [3423] = 3423, - [3424] = 3424, - [3425] = 3425, - [3426] = 264, - [3427] = 1536, - [3428] = 1538, - [3429] = 3311, - [3430] = 3397, + [3424] = 1595, + [3425] = 1494, + [3426] = 1576, + [3427] = 1578, + [3428] = 3307, + [3429] = 3429, + [3430] = 3430, [3431] = 3431, - [3432] = 3431, - [3433] = 1543, - [3434] = 1544, - [3435] = 1545, - [3436] = 3323, - [3437] = 3325, - [3438] = 1606, + [3432] = 3432, + [3433] = 3433, + [3434] = 3339, + [3435] = 3435, + [3436] = 3436, + [3437] = 3437, + [3438] = 3308, [3439] = 3439, - [3440] = 687, - [3441] = 3431, - [3442] = 3442, - [3443] = 3443, - [3444] = 3327, + [3440] = 1579, + [3441] = 1580, + [3442] = 1581, + [3443] = 1508, + [3444] = 3444, [3445] = 3445, - [3446] = 3374, - [3447] = 3447, - [3448] = 3331, - [3449] = 3378, - [3450] = 3450, - [3451] = 1605, - [3452] = 1604, - [3453] = 3129, - [3454] = 3129, - [3455] = 1562, - [3456] = 1563, - [3457] = 1565, - [3458] = 1567, - [3459] = 1569, - [3460] = 1570, - [3461] = 1547, - [3462] = 1213, - [3463] = 3332, - [3464] = 3333, - [3465] = 3431, - [3466] = 3276, - [3467] = 232, + [3446] = 1582, + [3447] = 3328, + [3448] = 1525, + [3449] = 1499, + [3450] = 685, + [3451] = 3451, + [3452] = 3452, + [3453] = 3390, + [3454] = 3454, + [3455] = 3455, + [3456] = 1531, + [3457] = 3322, + [3458] = 3327, + [3459] = 3459, + [3460] = 3460, + [3461] = 3328, + [3462] = 3400, + [3463] = 1509, + [3464] = 3324, + [3465] = 3391, + [3466] = 3466, + [3467] = 3467, [3468] = 3468, - [3469] = 3284, - [3470] = 3129, - [3471] = 1585, - [3472] = 1586, - [3473] = 1587, + [3469] = 3469, + [3470] = 686, + [3471] = 3471, + [3472] = 1510, + [3473] = 3473, [3474] = 3474, - [3475] = 688, - [3476] = 3476, + [3475] = 3475, + [3476] = 3153, [3477] = 3477, - [3478] = 3129, + [3478] = 3478, [3479] = 3479, [3480] = 3480, - [3481] = 1500, - [3482] = 3482, - [3483] = 3483, + [3481] = 241, + [3482] = 3279, + [3483] = 248, [3484] = 3484, - [3485] = 3138, - [3486] = 949, + [3485] = 3485, + [3486] = 3486, [3487] = 3484, [3488] = 3488, [3489] = 3489, - [3490] = 3490, - [3491] = 3491, - [3492] = 3484, - [3493] = 3484, - [3494] = 3494, - [3495] = 3490, - [3496] = 3484, - [3497] = 224, - [3498] = 3498, - [3499] = 1479, - [3500] = 3498, - [3501] = 3501, - [3502] = 948, - [3503] = 3503, - [3504] = 3498, - [3505] = 227, - [3506] = 3501, - [3507] = 3284, - [3508] = 1482, - [3509] = 950, - [3510] = 1472, + [3490] = 958, + [3491] = 3484, + [3492] = 957, + [3493] = 948, + [3494] = 3485, + [3495] = 3485, + [3496] = 3496, + [3497] = 3497, + [3498] = 3484, + [3499] = 3485, + [3500] = 3477, + [3501] = 3484, + [3502] = 219, + [3503] = 1473, + [3504] = 223, + [3505] = 1477, + [3506] = 3485, + [3507] = 3485, + [3508] = 3485, + [3509] = 3478, + [3510] = 3485, [3511] = 3484, - [3512] = 3498, - [3513] = 3498, - [3514] = 3484, + [3512] = 229, + [3513] = 239, + [3514] = 1475, [3515] = 3515, - [3516] = 252, - [3517] = 253, - [3518] = 3498, + [3516] = 3516, + [3517] = 3517, + [3518] = 3518, [3519] = 3519, [3520] = 3520, - [3521] = 3484, - [3522] = 3522, + [3521] = 3521, + [3522] = 3223, [3523] = 3523, [3524] = 3524, [3525] = 3525, [3526] = 3526, [3527] = 3527, - [3528] = 3213, + [3528] = 3528, [3529] = 3529, [3530] = 3530, [3531] = 3531, @@ -8242,35 +8192,35 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3548] = 3548, [3549] = 3549, [3550] = 3550, - [3551] = 3399, + [3551] = 3551, [3552] = 3552, [3553] = 3553, [3554] = 3554, [3555] = 3555, [3556] = 3556, - [3557] = 253, + [3557] = 3557, [3558] = 3558, - [3559] = 3559, + [3559] = 1489, [3560] = 3560, [3561] = 3561, [3562] = 3562, [3563] = 3563, [3564] = 3564, - [3565] = 3537, + [3565] = 3565, [3566] = 3566, - [3567] = 3552, + [3567] = 3567, [3568] = 3568, [3569] = 3569, [3570] = 3570, [3571] = 3571, [3572] = 3572, - [3573] = 3573, - [3574] = 3574, + [3573] = 229, + [3574] = 239, [3575] = 3575, [3576] = 3576, - [3577] = 3577, + [3577] = 3571, [3578] = 3578, - [3579] = 3552, + [3579] = 3579, [3580] = 3580, [3581] = 3581, [3582] = 3582, @@ -8279,364 +8229,364 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3585] = 3585, [3586] = 3586, [3587] = 3587, - [3588] = 3588, + [3588] = 3568, [3589] = 3589, [3590] = 3590, [3591] = 3591, [3592] = 3592, [3593] = 3593, - [3594] = 3594, - [3595] = 3544, + [3594] = 3347, + [3595] = 3595, [3596] = 3596, - [3597] = 3468, + [3597] = 3597, [3598] = 3598, - [3599] = 3450, + [3599] = 3599, [3600] = 3600, [3601] = 3601, [3602] = 3602, - [3603] = 3552, + [3603] = 3603, [3604] = 3604, [3605] = 3605, [3606] = 3606, - [3607] = 3569, + [3607] = 3587, [3608] = 3608, [3609] = 3609, [3610] = 3610, [3611] = 3611, - [3612] = 3612, - [3613] = 3592, + [3612] = 3582, + [3613] = 3613, [3614] = 3614, [3615] = 3615, - [3616] = 3537, - [3617] = 3617, + [3616] = 3429, + [3617] = 3587, [3618] = 3618, [3619] = 3619, - [3620] = 3546, - [3621] = 3536, - [3622] = 3596, + [3620] = 3620, + [3621] = 3621, + [3622] = 3622, [3623] = 3623, - [3624] = 1482, + [3624] = 3624, [3625] = 3625, - [3626] = 1472, - [3627] = 3532, + [3626] = 3626, + [3627] = 3627, [3628] = 3628, [3629] = 3629, [3630] = 3630, - [3631] = 3631, - [3632] = 3632, - [3633] = 3633, - [3634] = 3611, - [3635] = 3635, - [3636] = 3476, + [3631] = 3596, + [3632] = 1475, + [3633] = 3582, + [3634] = 3595, + [3635] = 3536, + [3636] = 3587, [3637] = 3637, [3638] = 3638, [3639] = 3639, [3640] = 3640, [3641] = 3641, - [3642] = 3642, + [3642] = 3568, [3643] = 3643, - [3644] = 3644, - [3645] = 3645, + [3644] = 3555, + [3645] = 3582, [3646] = 3646, [3647] = 3647, - [3648] = 3552, - [3649] = 3649, + [3648] = 3562, + [3649] = 3603, [3650] = 3650, - [3651] = 3651, - [3652] = 3639, - [3653] = 3646, - [3654] = 3654, - [3655] = 3655, + [3651] = 3582, + [3652] = 1522, + [3653] = 3653, + [3654] = 1528, + [3655] = 3587, [3656] = 3656, - [3657] = 3657, - [3658] = 3658, - [3659] = 3592, + [3657] = 216, + [3658] = 3271, + [3659] = 3659, [3660] = 3660, - [3661] = 3661, - [3662] = 3630, + [3661] = 3582, + [3662] = 3662, [3663] = 3663, - [3664] = 1538, + [3664] = 3664, [3665] = 3665, - [3666] = 1502, - [3667] = 1508, - [3668] = 1511, - [3669] = 1544, - [3670] = 3592, + [3666] = 3666, + [3667] = 3667, + [3668] = 3668, + [3669] = 3669, + [3670] = 3670, [3671] = 3671, [3672] = 3672, - [3673] = 1479, - [3674] = 1561, - [3675] = 1574, - [3676] = 3649, + [3673] = 3673, + [3674] = 3674, + [3675] = 3675, + [3676] = 3676, [3677] = 3677, [3678] = 3678, - [3679] = 3679, - [3680] = 3680, + [3679] = 3593, + [3680] = 3528, [3681] = 3681, [3682] = 3682, [3683] = 3683, - [3684] = 3684, + [3684] = 3587, [3685] = 3685, - [3686] = 3686, + [3686] = 3541, [3687] = 3687, [3688] = 3688, [3689] = 3689, - [3690] = 1565, + [3690] = 3690, [3691] = 3691, - [3692] = 3692, + [3692] = 3638, [3693] = 3693, - [3694] = 3694, - [3695] = 3695, + [3694] = 3681, + [3695] = 3567, [3696] = 3696, - [3697] = 3546, - [3698] = 1570, + [3697] = 3638, + [3698] = 3698, [3699] = 3699, [3700] = 3700, [3701] = 3701, [3702] = 3702, - [3703] = 3703, - [3704] = 3704, + [3703] = 3693, + [3704] = 3582, [3705] = 3705, - [3706] = 3706, + [3706] = 3643, [3707] = 3707, [3708] = 3708, [3709] = 3709, - [3710] = 3710, - [3711] = 1605, + [3710] = 3571, + [3711] = 3711, [3712] = 3712, [3713] = 3713, - [3714] = 3552, - [3715] = 3632, + [3714] = 3714, + [3715] = 3715, [3716] = 3716, - [3717] = 3663, - [3718] = 3682, + [3717] = 3717, + [3718] = 3718, [3719] = 3719, - [3720] = 3592, + [3720] = 3720, [3721] = 3721, [3722] = 3722, - [3723] = 3723, + [3723] = 1473, [3724] = 3724, - [3725] = 3548, - [3726] = 3726, + [3725] = 1477, + [3726] = 3527, [3727] = 3727, [3728] = 3728, [3729] = 3729, - [3730] = 3610, + [3730] = 3730, [3731] = 3731, - [3732] = 3277, - [3733] = 3733, - [3734] = 3707, + [3732] = 3732, + [3733] = 3628, + [3734] = 3294, [3735] = 3735, [3736] = 3736, - [3737] = 3737, + [3737] = 3595, [3738] = 3738, - [3739] = 3739, - [3740] = 3643, + [3739] = 3393, + [3740] = 3668, [3741] = 3741, - [3742] = 3639, - [3743] = 3743, + [3742] = 3647, + [3743] = 3628, [3744] = 3744, - [3745] = 3649, - [3746] = 3646, + [3745] = 3741, + [3746] = 3746, [3747] = 3747, [3748] = 3748, - [3749] = 252, - [3750] = 225, - [3751] = 3552, - [3752] = 3752, - [3753] = 3552, - [3754] = 3754, - [3755] = 3755, + [3749] = 1579, + [3750] = 3750, + [3751] = 3471, + [3752] = 1582, + [3753] = 1548, + [3754] = 1554, + [3755] = 3582, [3756] = 3756, - [3757] = 3757, - [3758] = 3758, + [3757] = 1493, + [3758] = 1494, [3759] = 3759, - [3760] = 3759, + [3760] = 3760, [3761] = 3761, - [3762] = 3679, - [3763] = 3340, + [3762] = 3762, + [3763] = 3763, [3764] = 3764, [3765] = 3765, - [3766] = 3766, - [3767] = 3767, + [3766] = 1526, + [3767] = 3727, [3768] = 3768, [3769] = 3769, [3770] = 3770, - [3771] = 3592, + [3771] = 3771, [3772] = 3772, - [3773] = 687, + [3773] = 3770, [3774] = 3774, [3775] = 3775, - [3776] = 3283, - [3777] = 3777, + [3776] = 3776, + [3777] = 687, [3778] = 3778, [3779] = 3779, - [3780] = 3568, - [3781] = 3781, + [3780] = 3780, + [3781] = 685, [3782] = 3782, - [3783] = 3783, - [3784] = 3784, - [3785] = 3570, - [3786] = 3786, - [3787] = 3787, - [3788] = 3705, - [3789] = 3600, - [3790] = 3790, + [3783] = 3583, + [3784] = 688, + [3785] = 3785, + [3786] = 3653, + [3787] = 1491, + [3788] = 3759, + [3789] = 3682, + [3790] = 3778, [3791] = 3791, - [3792] = 3572, + [3792] = 3792, [3793] = 3793, - [3794] = 3573, + [3794] = 3794, [3795] = 3795, [3796] = 3796, - [3797] = 3797, - [3798] = 682, - [3799] = 3793, - [3800] = 3800, - [3801] = 3801, - [3802] = 685, - [3803] = 1502, + [3797] = 1487, + [3798] = 3798, + [3799] = 1493, + [3800] = 1489, + [3801] = 1494, + [3802] = 3802, + [3803] = 3803, [3804] = 3804, [3805] = 3805, - [3806] = 1508, + [3806] = 3806, [3807] = 3807, - [3808] = 3808, - [3809] = 1511, - [3810] = 3810, - [3811] = 3736, - [3812] = 3793, - [3813] = 3793, - [3814] = 3712, - [3815] = 3815, + [3808] = 3533, + [3809] = 3778, + [3810] = 3524, + [3811] = 3529, + [3812] = 3812, + [3813] = 3813, + [3814] = 3814, + [3815] = 3770, [3816] = 3816, - [3817] = 3817, - [3818] = 3791, - [3819] = 3819, - [3820] = 688, - [3821] = 3790, - [3822] = 3782, - [3823] = 3784, + [3817] = 3659, + [3818] = 3818, + [3819] = 3812, + [3820] = 3780, + [3821] = 1499, + [3822] = 1579, + [3823] = 3544, [3824] = 3824, - [3825] = 3815, - [3826] = 3796, - [3827] = 3731, - [3828] = 3779, - [3829] = 3829, - [3830] = 3830, - [3831] = 3781, - [3832] = 1538, - [3833] = 1544, - [3834] = 3808, - [3835] = 3729, - [3836] = 3779, - [3837] = 3796, - [3838] = 3787, - [3839] = 3839, + [3825] = 3825, + [3826] = 3826, + [3827] = 3827, + [3828] = 3769, + [3829] = 1582, + [3830] = 3769, + [3831] = 3771, + [3832] = 3832, + [3833] = 3816, + [3834] = 3834, + [3835] = 3770, + [3836] = 3836, + [3837] = 3825, + [3838] = 3838, + [3839] = 3683, [3840] = 3840, - [3841] = 3808, - [3842] = 3791, - [3843] = 3709, - [3844] = 3844, - [3845] = 3807, - [3846] = 1561, - [3847] = 1574, - [3848] = 3848, - [3849] = 3276, - [3850] = 3786, - [3851] = 3801, + [3841] = 3841, + [3842] = 3774, + [3843] = 3575, + [3844] = 3771, + [3845] = 3845, + [3846] = 3846, + [3847] = 3660, + [3848] = 3267, + [3849] = 684, + [3850] = 3850, + [3851] = 3779, [3852] = 3852, - [3853] = 3779, - [3854] = 3787, - [3855] = 3710, - [3856] = 3787, - [3857] = 1591, - [3858] = 3793, - [3859] = 3671, - [3860] = 3533, - [3861] = 1570, - [3862] = 3703, - [3863] = 3863, - [3864] = 3775, - [3865] = 3865, - [3866] = 3866, - [3867] = 3796, - [3868] = 3787, - [3869] = 3598, - [3870] = 684, - [3871] = 3871, - [3872] = 3791, - [3873] = 3782, - [3874] = 3874, - [3875] = 3840, - [3876] = 3876, - [3877] = 3810, - [3878] = 3878, - [3879] = 3793, - [3880] = 3880, - [3881] = 3805, - [3882] = 3795, - [3883] = 1605, - [3884] = 3884, - [3885] = 3779, - [3886] = 3886, - [3887] = 3796, - [3888] = 3550, - [3889] = 3844, - [3890] = 3602, - [3891] = 3779, - [3892] = 3892, - [3893] = 3790, - [3894] = 3894, - [3895] = 3793, - [3896] = 3665, - [3897] = 3897, - [3898] = 1248, - [3899] = 3538, - [3900] = 3886, - [3901] = 3880, - [3902] = 3791, - [3903] = 3886, - [3904] = 3701, - [3905] = 1547, - [3906] = 3728, - [3907] = 3791, - [3908] = 3526, + [3853] = 3853, + [3854] = 3854, + [3855] = 3770, + [3856] = 3662, + [3857] = 3857, + [3858] = 3778, + [3859] = 3779, + [3860] = 3266, + [3861] = 3774, + [3862] = 3862, + [3863] = 3778, + [3864] = 3791, + [3865] = 3852, + [3866] = 3850, + [3867] = 3805, + [3868] = 3853, + [3869] = 3869, + [3870] = 3792, + [3871] = 3769, + [3872] = 3803, + [3873] = 1522, + [3874] = 1526, + [3875] = 1528, + [3876] = 3771, + [3877] = 3778, + [3878] = 3780, + [3879] = 3795, + [3880] = 3221, + [3881] = 3687, + [3882] = 3688, + [3883] = 3883, + [3884] = 3803, + [3885] = 3885, + [3886] = 3769, + [3887] = 3838, + [3888] = 3883, + [3889] = 3771, + [3890] = 3834, + [3891] = 3891, + [3892] = 3862, + [3893] = 3893, + [3894] = 686, + [3895] = 3794, + [3896] = 3770, + [3897] = 3579, + [3898] = 1548, + [3899] = 3670, + [3900] = 3728, + [3901] = 3576, + [3902] = 3869, + [3903] = 3780, + [3904] = 3730, + [3905] = 3841, + [3906] = 3780, + [3907] = 3862, + [3908] = 3785, [3909] = 3909, - [3910] = 3910, + [3910] = 3778, [3911] = 3911, - [3912] = 3787, - [3913] = 3910, - [3914] = 3778, - [3915] = 3796, - [3916] = 3916, - [3917] = 3699, - [3918] = 3918, - [3919] = 3871, - [3920] = 3237, - [3921] = 1606, - [3922] = 3922, - [3923] = 3923, - [3924] = 3804, - [3925] = 3772, - [3926] = 3922, - [3927] = 3810, - [3928] = 3650, + [3912] = 3731, + [3913] = 3732, + [3914] = 3914, + [3915] = 3763, + [3916] = 3804, + [3917] = 3917, + [3918] = 3738, + [3919] = 3805, + [3920] = 3769, + [3921] = 3764, + [3922] = 1554, + [3923] = 3771, + [3924] = 3924, + [3925] = 3780, + [3926] = 3813, + [3927] = 3927, + [3928] = 3928, [3929] = 3929, [3930] = 3930, - [3931] = 3657, - [3932] = 1565, + [3931] = 3931, + [3932] = 3932, [3933] = 3933, [3934] = 3934, [3935] = 3935, [3936] = 3936, - [3937] = 3631, - [3938] = 3637, - [3939] = 816, - [3940] = 833, + [3937] = 3937, + [3938] = 3938, + [3939] = 3939, + [3940] = 3940, [3941] = 3941, [3942] = 3942, - [3943] = 3943, - [3944] = 3944, - [3945] = 3945, + [3943] = 908, + [3944] = 909, + [3945] = 910, [3946] = 3946, [3947] = 3947, [3948] = 3948, @@ -8644,57 +8594,57 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3950] = 3950, [3951] = 3951, [3952] = 3952, - [3953] = 3953, + [3953] = 3951, [3954] = 3954, [3955] = 3955, [3956] = 3956, [3957] = 3957, - [3958] = 3958, - [3959] = 809, - [3960] = 813, - [3961] = 814, - [3962] = 3962, - [3963] = 3963, - [3964] = 3964, - [3965] = 3965, - [3966] = 3966, - [3967] = 3967, - [3968] = 3968, - [3969] = 3969, - [3970] = 3970, - [3971] = 3971, + [3958] = 3818, + [3959] = 3832, + [3960] = 3836, + [3961] = 3961, + [3962] = 843, + [3963] = 901, + [3964] = 858, + [3965] = 893, + [3966] = 896, + [3967] = 780, + [3968] = 912, + [3969] = 913, + [3970] = 914, + [3971] = 879, [3972] = 3972, - [3973] = 3865, - [3974] = 3909, - [3975] = 3929, - [3976] = 825, + [3973] = 3973, + [3974] = 3974, + [3975] = 3975, + [3976] = 3976, [3977] = 3977, - [3978] = 826, - [3979] = 827, - [3980] = 3980, - [3981] = 3981, - [3982] = 829, - [3983] = 831, - [3984] = 755, - [3985] = 836, - [3986] = 838, - [3987] = 846, - [3988] = 851, + [3978] = 3549, + [3979] = 3979, + [3980] = 812, + [3981] = 813, + [3982] = 831, + [3983] = 3983, + [3984] = 3984, + [3985] = 3985, + [3986] = 3986, + [3987] = 3987, + [3988] = 3988, [3989] = 3989, [3990] = 3990, [3991] = 3991, [3992] = 3992, [3993] = 3993, - [3994] = 3758, + [3994] = 3994, [3995] = 3995, - [3996] = 897, - [3997] = 898, - [3998] = 900, + [3996] = 3996, + [3997] = 3997, + [3998] = 3998, [3999] = 3999, - [4000] = 4000, - [4001] = 4001, + [4000] = 790, + [4001] = 792, [4002] = 4002, - [4003] = 4003, + [4003] = 793, [4004] = 4004, [4005] = 4005, [4006] = 4006, @@ -8703,41 +8653,41 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4009] = 4009, [4010] = 4010, [4011] = 4011, - [4012] = 4012, - [4013] = 4013, - [4014] = 4014, - [4015] = 4015, + [4012] = 796, + [4013] = 797, + [4014] = 799, + [4015] = 802, [4016] = 4016, [4017] = 4017, - [4018] = 3946, - [4019] = 4019, + [4018] = 4018, + [4019] = 3948, [4020] = 4020, - [4021] = 3968, - [4022] = 4022, - [4023] = 3971, + [4021] = 4009, + [4022] = 3998, + [4023] = 4017, [4024] = 4024, - [4025] = 797, - [4026] = 798, - [4027] = 799, - [4028] = 4028, + [4025] = 4025, + [4026] = 4026, + [4027] = 3639, + [4028] = 806, [4029] = 4029, [4030] = 4030, - [4031] = 4031, - [4032] = 4032, - [4033] = 4032, - [4034] = 4034, - [4035] = 807, - [4036] = 4036, - [4037] = 808, - [4038] = 4038, - [4039] = 811, - [4040] = 778, - [4041] = 4041, - [4042] = 3947, + [4031] = 807, + [4032] = 808, + [4033] = 809, + [4034] = 764, + [4035] = 765, + [4036] = 767, + [4037] = 3979, + [4038] = 814, + [4039] = 4039, + [4040] = 3992, + [4041] = 3997, + [4042] = 4042, [4043] = 4043, - [4044] = 3981, - [4045] = 3970, - [4046] = 4046, + [4044] = 766, + [4045] = 4045, + [4046] = 819, [4047] = 4047, [4048] = 4048, [4049] = 4049, @@ -8745,247 +8695,247 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4051] = 4051, [4052] = 4052, [4053] = 4053, - [4054] = 764, + [4054] = 4054, [4055] = 4055, [4056] = 4056, [4057] = 4057, [4058] = 4058, - [4059] = 4059, - [4060] = 832, + [4059] = 771, + [4060] = 772, [4061] = 4061, - [4062] = 834, - [4063] = 835, - [4064] = 837, - [4065] = 758, - [4066] = 760, + [4062] = 4062, + [4063] = 4063, + [4064] = 4064, + [4065] = 4043, + [4066] = 4066, [4067] = 4067, - [4068] = 765, - [4069] = 845, - [4070] = 769, - [4071] = 776, - [4072] = 4047, - [4073] = 4073, + [4068] = 4068, + [4069] = 776, + [4070] = 4070, + [4071] = 4071, + [4072] = 4072, + [4073] = 4045, [4074] = 4074, [4075] = 4075, - [4076] = 866, - [4077] = 773, + [4076] = 4076, + [4077] = 4077, [4078] = 4078, - [4079] = 4079, - [4080] = 4080, - [4081] = 4081, + [4079] = 835, + [4080] = 836, + [4081] = 837, [4082] = 4082, - [4083] = 4083, - [4084] = 4084, - [4085] = 4085, - [4086] = 4086, - [4087] = 4087, + [4083] = 838, + [4084] = 4075, + [4085] = 839, + [4086] = 840, + [4087] = 841, [4088] = 4088, - [4089] = 4089, - [4090] = 4090, + [4089] = 842, + [4090] = 783, [4091] = 4091, [4092] = 4092, [4093] = 4093, - [4094] = 4094, - [4095] = 4095, - [4096] = 4096, - [4097] = 893, - [4098] = 894, - [4099] = 895, - [4100] = 902, - [4101] = 901, - [4102] = 828, - [4103] = 3971, - [4104] = 812, + [4094] = 845, + [4095] = 846, + [4096] = 849, + [4097] = 770, + [4098] = 773, + [4099] = 774, + [4100] = 915, + [4101] = 4101, + [4102] = 4102, + [4103] = 4103, + [4104] = 4104, [4105] = 4105, - [4106] = 4048, - [4107] = 824, - [4108] = 820, - [4109] = 4049, + [4106] = 3993, + [4107] = 4107, + [4108] = 3999, + [4109] = 4002, [4110] = 4110, - [4111] = 4052, + [4111] = 4111, [4112] = 4112, [4113] = 4113, [4114] = 4114, - [4115] = 4115, - [4116] = 4116, - [4117] = 822, - [4118] = 823, - [4119] = 4002, - [4120] = 4120, - [4121] = 4121, - [4122] = 850, - [4123] = 768, - [4124] = 757, - [4125] = 762, - [4126] = 4015, - [4127] = 3946, - [4128] = 803, - [4129] = 4129, - [4130] = 4130, + [4115] = 4026, + [4116] = 4030, + [4117] = 4117, + [4118] = 866, + [4119] = 867, + [4120] = 868, + [4121] = 869, + [4122] = 870, + [4123] = 871, + [4124] = 872, + [4125] = 4125, + [4126] = 4126, + [4127] = 4127, + [4128] = 876, + [4129] = 877, + [4130] = 777, [4131] = 4131, [4132] = 4132, - [4133] = 4133, + [4133] = 3993, [4134] = 4134, [4135] = 4135, - [4136] = 3947, - [4137] = 3981, + [4136] = 3999, + [4137] = 4137, [4138] = 4138, [4139] = 4139, [4140] = 4140, [4141] = 4141, - [4142] = 4142, + [4142] = 4026, [4143] = 4143, - [4144] = 4144, - [4145] = 4145, - [4146] = 4053, - [4147] = 4147, - [4148] = 4055, + [4144] = 887, + [4145] = 888, + [4146] = 889, + [4147] = 890, + [4148] = 892, [4149] = 4149, - [4150] = 4002, - [4151] = 4015, + [4150] = 4150, + [4151] = 4151, [4152] = 4152, [4153] = 4153, - [4154] = 4084, - [4155] = 857, - [4156] = 858, - [4157] = 859, - [4158] = 860, - [4159] = 862, - [4160] = 863, + [4154] = 4048, + [4155] = 4155, + [4156] = 4156, + [4157] = 3999, + [4158] = 4158, + [4159] = 4159, + [4160] = 4160, [4161] = 4161, - [4162] = 865, + [4162] = 4026, [4163] = 4163, - [4164] = 876, - [4165] = 3947, - [4166] = 880, - [4167] = 774, + [4164] = 4164, + [4165] = 4165, + [4166] = 4166, + [4167] = 4167, [4168] = 4168, [4169] = 4169, [4170] = 4170, [4171] = 4171, [4172] = 4172, [4173] = 4173, - [4174] = 4174, - [4175] = 4079, + [4174] = 1611, + [4175] = 1621, [4176] = 4176, [4177] = 4177, - [4178] = 4015, + [4178] = 4178, [4179] = 4179, - [4180] = 3947, - [4181] = 4181, + [4180] = 4180, + [4181] = 4074, [4182] = 4182, - [4183] = 839, - [4184] = 849, - [4185] = 853, - [4186] = 877, - [4187] = 882, + [4183] = 4183, + [4184] = 4184, + [4185] = 4185, + [4186] = 4186, + [4187] = 1651, [4188] = 4188, [4189] = 4189, - [4190] = 4190, + [4190] = 1652, [4191] = 4191, [4192] = 4192, [4193] = 4193, [4194] = 4194, - [4195] = 4195, - [4196] = 4196, + [4195] = 1683, + [4196] = 1684, [4197] = 4197, - [4198] = 4198, + [4198] = 4167, [4199] = 4199, - [4200] = 4200, + [4200] = 3993, [4201] = 4201, [4202] = 4202, - [4203] = 4036, + [4203] = 4203, [4204] = 4204, [4205] = 4205, - [4206] = 4038, - [4207] = 3977, + [4206] = 4206, + [4207] = 4207, [4208] = 4208, [4209] = 4209, - [4210] = 4057, - [4211] = 4211, - [4212] = 4212, + [4210] = 4210, + [4211] = 4006, + [4212] = 4020, [4213] = 4213, - [4214] = 4214, - [4215] = 1685, - [4216] = 1625, - [4217] = 4078, - [4218] = 4113, + [4214] = 4113, + [4215] = 4132, + [4216] = 4216, + [4217] = 4217, + [4218] = 4218, [4219] = 4219, [4220] = 4220, [4221] = 4221, [4222] = 4222, [4223] = 4223, [4224] = 4224, - [4225] = 3942, - [4226] = 3944, + [4225] = 4225, + [4226] = 4226, [4227] = 4227, - [4228] = 4228, - [4229] = 4229, - [4230] = 4230, - [4231] = 4231, - [4232] = 4232, - [4233] = 4233, - [4234] = 1704, - [4235] = 1706, + [4228] = 4102, + [4229] = 1646, + [4230] = 1678, + [4231] = 1634, + [4232] = 1690, + [4233] = 1702, + [4234] = 1618, + [4235] = 4235, [4236] = 4236, [4237] = 4237, - [4238] = 4194, - [4239] = 4214, - [4240] = 4240, - [4241] = 4241, + [4238] = 4238, + [4239] = 4239, + [4240] = 1658, + [4241] = 1662, [4242] = 4242, - [4243] = 1645, - [4244] = 1661, + [4243] = 4243, + [4244] = 4244, [4245] = 4245, - [4246] = 4246, - [4247] = 4247, - [4248] = 3980, + [4246] = 4078, + [4247] = 4077, + [4248] = 4248, [4249] = 4249, - [4250] = 4161, - [4251] = 4174, + [4250] = 4250, + [4251] = 4008, [4252] = 4252, [4253] = 4253, [4254] = 4254, [4255] = 4255, [4256] = 4256, [4257] = 4257, - [4258] = 4258, + [4258] = 3996, [4259] = 4259, - [4260] = 1648, - [4261] = 1662, - [4262] = 1663, - [4263] = 1667, - [4264] = 4182, - [4265] = 1668, - [4266] = 1670, + [4260] = 4260, + [4261] = 4261, + [4262] = 4262, + [4263] = 4263, + [4264] = 4264, + [4265] = 4265, + [4266] = 4266, [4267] = 4267, - [4268] = 4268, - [4269] = 4269, - [4270] = 4149, - [4271] = 4241, + [4268] = 1689, + [4269] = 1709, + [4270] = 4270, + [4271] = 4271, [4272] = 4272, - [4273] = 4242, + [4273] = 4273, [4274] = 4274, - [4275] = 1690, - [4276] = 1705, + [4275] = 4275, + [4276] = 4076, [4277] = 4277, [4278] = 4278, [4279] = 4279, - [4280] = 4280, - [4281] = 4281, + [4280] = 4056, + [4281] = 4185, [4282] = 4282, [4283] = 4283, [4284] = 4284, [4285] = 4285, [4286] = 4286, - [4287] = 4287, + [4287] = 4193, [4288] = 4288, [4289] = 4289, - [4290] = 4290, - [4291] = 4291, - [4292] = 4292, - [4293] = 1611, - [4294] = 1621, + [4290] = 4201, + [4291] = 4204, + [4292] = 4237, + [4293] = 4293, + [4294] = 4222, [4295] = 4295, [4296] = 4296, [4297] = 4297, @@ -8994,25 +8944,25 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4300] = 4300, [4301] = 4301, [4302] = 4302, - [4303] = 4303, - [4304] = 3977, - [4305] = 3654, + [4303] = 3972, + [4304] = 1611, + [4305] = 1621, [4306] = 4306, [4307] = 4307, [4308] = 4308, [4309] = 4309, [4310] = 4310, - [4311] = 4078, + [4311] = 4311, [4312] = 4312, [4313] = 4313, [4314] = 4314, - [4315] = 3942, - [4316] = 3944, + [4315] = 1651, + [4316] = 1652, [4317] = 4317, - [4318] = 4318, + [4318] = 4062, [4319] = 4319, - [4320] = 3980, - [4321] = 4086, + [4320] = 1683, + [4321] = 1684, [4322] = 4322, [4323] = 4323, [4324] = 4324, @@ -9021,112 +8971,112 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4327] = 4327, [4328] = 4328, [4329] = 4329, - [4330] = 1685, - [4331] = 1625, + [4330] = 4330, + [4331] = 4331, [4332] = 4332, - [4333] = 4333, - [4334] = 4268, + [4333] = 4193, + [4334] = 4334, [4335] = 4335, [4336] = 4336, - [4337] = 4337, - [4338] = 1704, - [4339] = 1706, + [4337] = 1646, + [4338] = 1678, + [4339] = 1634, [4340] = 4340, - [4341] = 4341, - [4342] = 1645, - [4343] = 1661, + [4341] = 1690, + [4342] = 1702, + [4343] = 1618, [4344] = 4344, [4345] = 4345, - [4346] = 4067, - [4347] = 4347, - [4348] = 4221, + [4346] = 1658, + [4347] = 1662, + [4348] = 4348, [4349] = 4349, [4350] = 4350, [4351] = 4351, - [4352] = 4257, + [4352] = 4352, [4353] = 4353, [4354] = 4354, - [4355] = 1648, - [4356] = 1662, - [4357] = 1663, - [4358] = 1667, - [4359] = 1668, - [4360] = 1670, - [4361] = 4361, - [4362] = 4362, + [4355] = 4355, + [4356] = 4356, + [4357] = 4357, + [4358] = 4358, + [4359] = 4359, + [4360] = 4360, + [4361] = 1689, + [4362] = 1709, [4363] = 4363, [4364] = 4364, [4365] = 4365, - [4366] = 1690, - [4367] = 4367, - [4368] = 4008, - [4369] = 1705, + [4366] = 4366, + [4367] = 4284, + [4368] = 4368, + [4369] = 4194, [4370] = 4370, - [4371] = 3933, + [4371] = 4371, [4372] = 4372, [4373] = 4373, - [4374] = 4374, + [4374] = 4026, [4375] = 4375, [4376] = 4376, [4377] = 4377, [4378] = 4378, - [4379] = 1611, - [4380] = 1621, - [4381] = 4381, + [4379] = 4379, + [4380] = 3948, + [4381] = 4007, [4382] = 4382, - [4383] = 4383, - [4384] = 4384, - [4385] = 4385, - [4386] = 4386, - [4387] = 4387, - [4388] = 4388, + [4383] = 3992, + [4384] = 3997, + [4385] = 4064, + [4386] = 4222, + [4387] = 4056, + [4388] = 4030, [4389] = 4389, - [4390] = 4032, - [4391] = 4391, - [4392] = 4392, - [4393] = 4202, + [4390] = 4390, + [4391] = 245, + [4392] = 247, + [4393] = 852, [4394] = 4394, - [4395] = 4048, - [4396] = 4049, - [4397] = 4145, - [4398] = 4398, - [4399] = 4399, + [4395] = 3999, + [4396] = 4396, + [4397] = 4397, + [4398] = 885, + [4399] = 811, [4400] = 4400, [4401] = 4401, [4402] = 4067, [4403] = 4403, [4404] = 4404, [4405] = 4405, - [4406] = 4002, + [4406] = 4406, [4407] = 4407, [4408] = 4408, - [4409] = 4409, - [4410] = 256, - [4411] = 260, - [4412] = 4412, - [4413] = 4413, + [4409] = 4185, + [4410] = 4201, + [4411] = 4204, + [4412] = 4244, + [4413] = 4002, [4414] = 4414, - [4415] = 4415, - [4416] = 4416, + [4415] = 886, + [4416] = 900, [4417] = 4417, [4418] = 4418, [4419] = 4419, [4420] = 4420, [4421] = 4421, - [4422] = 789, + [4422] = 4422, [4423] = 4423, - [4424] = 854, - [4425] = 890, - [4426] = 4377, + [4424] = 4424, + [4425] = 4425, + [4426] = 4426, [4427] = 4427, - [4428] = 4428, - [4429] = 4429, + [4428] = 3824, + [4429] = 1543, [4430] = 4430, - [4431] = 4431, - [4432] = 4432, + [4431] = 859, + [4432] = 1546, [4433] = 4433, - [4434] = 4434, - [4435] = 4082, + [4434] = 905, + [4435] = 4435, [4436] = 4436, [4437] = 4437, [4438] = 4438, @@ -9135,31 +9085,31 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4441] = 4441, [4442] = 4442, [4443] = 4443, - [4444] = 4444, - [4445] = 1531, - [4446] = 874, - [4447] = 875, - [4448] = 1535, - [4449] = 4449, - [4450] = 4450, - [4451] = 4015, - [4452] = 4452, - [4453] = 4453, - [4454] = 3852, - [4455] = 4455, - [4456] = 795, - [4457] = 802, + [4444] = 4070, + [4445] = 4445, + [4446] = 4446, + [4447] = 4447, + [4448] = 4448, + [4449] = 3586, + [4450] = 3598, + [4451] = 4451, + [4452] = 4312, + [4453] = 828, + [4454] = 4454, + [4455] = 829, + [4456] = 4456, + [4457] = 4457, [4458] = 4458, [4459] = 4459, - [4460] = 4043, + [4460] = 4088, [4461] = 4461, [4462] = 4462, [4463] = 4463, [4464] = 4464, - [4465] = 4075, + [4465] = 4465, [4466] = 4466, [4467] = 4467, - [4468] = 4468, + [4468] = 4465, [4469] = 4469, [4470] = 4470, [4471] = 4471, @@ -9169,139 +9119,139 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4475] = 4475, [4476] = 4476, [4477] = 4477, - [4478] = 4478, - [4479] = 4479, + [4478] = 3558, + [4479] = 4466, [4480] = 4480, - [4481] = 4468, + [4481] = 4465, [4482] = 4482, - [4483] = 4483, - [4484] = 4484, + [4483] = 4466, + [4484] = 4476, [4485] = 4485, [4486] = 4486, - [4487] = 4478, - [4488] = 4488, - [4489] = 4468, - [4490] = 4490, + [4487] = 4487, + [4488] = 4485, + [4489] = 4489, + [4490] = 4471, [4491] = 4491, - [4492] = 4492, + [4492] = 4486, [4493] = 4493, [4494] = 4494, - [4495] = 4470, - [4496] = 4496, - [4497] = 4497, - [4498] = 4486, - [4499] = 4468, - [4500] = 4500, - [4501] = 4479, - [4502] = 4483, - [4503] = 4484, + [4495] = 4465, + [4496] = 4487, + [4497] = 4475, + [4498] = 4498, + [4499] = 4491, + [4500] = 4466, + [4501] = 4462, + [4502] = 4486, + [4503] = 4463, [4504] = 4504, - [4505] = 4497, + [4505] = 4505, [4506] = 4506, - [4507] = 4507, - [4508] = 4479, - [4509] = 4509, - [4510] = 4482, - [4511] = 4486, - [4512] = 4482, + [4507] = 4498, + [4508] = 4471, + [4509] = 4471, + [4510] = 4510, + [4511] = 4491, + [4512] = 4486, [4513] = 4513, - [4514] = 4478, - [4515] = 4468, - [4516] = 4516, - [4517] = 4482, - [4518] = 3625, - [4519] = 4519, - [4520] = 4520, + [4514] = 4514, + [4515] = 4465, + [4516] = 4472, + [4517] = 4489, + [4518] = 4491, + [4519] = 4465, + [4520] = 4466, [4521] = 4521, [4522] = 4522, - [4523] = 4483, - [4524] = 4492, - [4525] = 4497, - [4526] = 4497, - [4527] = 4513, + [4523] = 4523, + [4524] = 4524, + [4525] = 4485, + [4526] = 4526, + [4527] = 4485, [4528] = 4528, - [4529] = 4494, - [4530] = 4479, + [4529] = 4475, + [4530] = 4513, [4531] = 4531, - [4532] = 4492, + [4532] = 4471, [4533] = 4533, [4534] = 4534, [4535] = 4535, - [4536] = 4478, - [4537] = 4468, - [4538] = 4478, - [4539] = 4483, - [4540] = 4482, - [4541] = 4478, - [4542] = 4542, + [4536] = 4462, + [4537] = 4537, + [4538] = 4463, + [4539] = 4539, + [4540] = 4540, + [4541] = 4498, + [4542] = 4471, [4543] = 4543, - [4544] = 4471, - [4545] = 4545, - [4546] = 4546, + [4544] = 4462, + [4545] = 4463, + [4546] = 4462, [4547] = 4547, - [4548] = 4492, - [4549] = 4492, - [4550] = 4550, - [4551] = 4494, - [4552] = 4552, - [4553] = 4553, - [4554] = 4494, + [4548] = 4463, + [4549] = 4486, + [4550] = 4491, + [4551] = 4551, + [4552] = 4504, + [4553] = 4475, + [4554] = 4554, [4555] = 4555, - [4556] = 4556, - [4557] = 4494, - [4558] = 4519, + [4556] = 4498, + [4557] = 4462, + [4558] = 4463, [4559] = 4559, - [4560] = 4560, + [4560] = 4485, [4561] = 4561, - [4562] = 4484, - [4563] = 4492, - [4564] = 4494, - [4565] = 4565, + [4562] = 4498, + [4563] = 4475, + [4564] = 4471, + [4565] = 4480, [4566] = 4566, [4567] = 4567, - [4568] = 4568, - [4569] = 4531, - [4570] = 4486, - [4571] = 4478, + [4568] = 4498, + [4569] = 4569, + [4570] = 4570, + [4571] = 4462, [4572] = 4572, - [4573] = 4497, - [4574] = 4574, - [4575] = 4482, - [4576] = 4473, - [4577] = 4577, - [4578] = 4479, - [4579] = 4485, - [4580] = 3658, - [4581] = 4486, - [4582] = 4577, - [4583] = 224, - [4584] = 4492, - [4585] = 227, - [4586] = 4494, - [4587] = 4513, - [4588] = 4483, - [4589] = 4484, - [4590] = 4513, - [4591] = 4591, - [4592] = 4509, - [4593] = 4513, - [4594] = 4486, - [4595] = 4497, - [4596] = 4596, - [4597] = 4486, - [4598] = 4497, - [4599] = 4513, - [4600] = 4468, - [4601] = 4483, - [4602] = 4477, - [4603] = 4482, - [4604] = 4484, + [4573] = 219, + [4574] = 223, + [4575] = 4506, + [4576] = 4504, + [4577] = 4486, + [4578] = 4491, + [4579] = 4579, + [4580] = 4504, + [4581] = 4463, + [4582] = 4582, + [4583] = 4504, + [4584] = 3713, + [4585] = 4585, + [4586] = 4534, + [4587] = 4473, + [4588] = 4475, + [4589] = 4589, + [4590] = 4537, + [4591] = 4498, + [4592] = 4486, + [4593] = 4491, + [4594] = 4594, + [4595] = 4504, + [4596] = 4524, + [4597] = 4597, + [4598] = 4598, + [4599] = 4599, + [4600] = 4600, + [4601] = 4601, + [4602] = 4602, + [4603] = 4504, + [4604] = 4475, [4605] = 4605, [4606] = 4606, [4607] = 4607, - [4608] = 4491, - [4609] = 4567, - [4610] = 4513, + [4608] = 4608, + [4609] = 4609, + [4610] = 4610, [4611] = 4611, [4612] = 4612, [4613] = 4613, @@ -9316,7 +9266,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4622] = 4622, [4623] = 4623, [4624] = 4624, - [4625] = 4625, + [4625] = 3659, [4626] = 4626, [4627] = 4627, [4628] = 4628, @@ -9326,20 +9276,20 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4632] = 4632, [4633] = 4633, [4634] = 4634, - [4635] = 4633, + [4635] = 4635, [4636] = 4636, [4637] = 4637, [4638] = 4638, [4639] = 4639, [4640] = 4640, - [4641] = 4641, - [4642] = 4642, + [4641] = 4624, + [4642] = 4640, [4643] = 4643, [4644] = 4644, [4645] = 4645, [4646] = 4646, [4647] = 4647, - [4648] = 4648, + [4648] = 4633, [4649] = 4649, [4650] = 4650, [4651] = 4651, @@ -9347,83 +9297,83 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4653] = 4653, [4654] = 4654, [4655] = 4655, - [4656] = 4619, + [4656] = 4656, [4657] = 4657, - [4658] = 4629, - [4659] = 4659, + [4658] = 4658, + [4659] = 4610, [4660] = 4660, [4661] = 4661, - [4662] = 4636, - [4663] = 4637, + [4662] = 4662, + [4663] = 4663, [4664] = 4664, [4665] = 4665, [4666] = 4666, [4667] = 4667, - [4668] = 4633, + [4668] = 4668, [4669] = 4669, - [4670] = 4636, - [4671] = 4637, - [4672] = 4672, - [4673] = 4673, - [4674] = 4674, - [4675] = 4675, - [4676] = 4676, - [4677] = 4645, - [4678] = 4646, + [4670] = 4670, + [4671] = 4671, + [4672] = 3946, + [4673] = 4633, + [4674] = 4624, + [4675] = 4624, + [4676] = 4640, + [4677] = 4677, + [4678] = 4640, [4679] = 4679, - [4680] = 4648, + [4680] = 4680, [4681] = 4681, - [4682] = 4650, - [4683] = 4683, - [4684] = 4684, - [4685] = 4615, - [4686] = 4616, - [4687] = 4617, - [4688] = 4618, + [4682] = 4649, + [4683] = 4650, + [4684] = 4652, + [4685] = 4685, + [4686] = 4654, + [4687] = 4687, + [4688] = 4688, [4689] = 4689, - [4690] = 4619, - [4691] = 4691, - [4692] = 4692, - [4693] = 4693, + [4690] = 4606, + [4691] = 4607, + [4692] = 4608, + [4693] = 4609, [4694] = 4694, - [4695] = 4636, - [4696] = 4637, + [4695] = 4610, + [4696] = 4696, [4697] = 4697, [4698] = 4698, - [4699] = 4636, - [4700] = 4637, + [4699] = 4699, + [4700] = 4700, [4701] = 4701, [4702] = 4702, [4703] = 4703, [4704] = 4704, - [4705] = 4648, - [4706] = 4650, - [4707] = 4707, - [4708] = 4708, + [4705] = 4705, + [4706] = 4706, + [4707] = 4624, + [4708] = 4640, [4709] = 4709, [4710] = 4710, - [4711] = 4711, + [4711] = 4652, [4712] = 4712, - [4713] = 4641, + [4713] = 4654, [4714] = 4714, - [4715] = 4636, - [4716] = 4637, + [4715] = 4715, + [4716] = 4716, [4717] = 4717, - [4718] = 4030, + [4718] = 4718, [4719] = 4719, [4720] = 4720, - [4721] = 4648, + [4721] = 4646, [4722] = 4722, - [4723] = 4650, - [4724] = 4724, + [4723] = 4624, + [4724] = 4640, [4725] = 4725, [4726] = 4726, [4727] = 4727, [4728] = 4728, - [4729] = 4729, + [4729] = 4652, [4730] = 4730, - [4731] = 4731, - [4732] = 3533, + [4731] = 4654, + [4732] = 4732, [4733] = 4733, [4734] = 4734, [4735] = 4735, @@ -9447,15 +9397,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4753] = 4753, [4754] = 4754, [4755] = 4755, - [4756] = 4645, + [4756] = 4756, [4757] = 4757, [4758] = 4758, [4759] = 4759, - [4760] = 767, + [4760] = 4760, [4761] = 4761, - [4762] = 4646, + [4762] = 4762, [4763] = 4763, - [4764] = 4633, + [4764] = 4658, [4765] = 4765, [4766] = 4766, [4767] = 4767, @@ -9465,8 +9415,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4771] = 4771, [4772] = 4772, [4773] = 4773, - [4774] = 4774, - [4775] = 4775, + [4774] = 4727, + [4775] = 4738, [4776] = 4776, [4777] = 4777, [4778] = 4778, @@ -9474,33 +9424,33 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4780] = 4780, [4781] = 4781, [4782] = 4782, - [4783] = 4783, - [4784] = 4784, + [4783] = 768, + [4784] = 4649, [4785] = 4785, - [4786] = 4786, - [4787] = 4787, - [4788] = 4788, - [4789] = 4789, + [4786] = 4633, + [4787] = 4650, + [4788] = 4606, + [4789] = 4607, [4790] = 4790, - [4791] = 4791, + [4791] = 4608, [4792] = 4792, - [4793] = 4793, + [4793] = 4609, [4794] = 4794, [4795] = 4795, [4796] = 4796, - [4797] = 4648, + [4797] = 4797, [4798] = 4798, [4799] = 4799, [4800] = 4800, - [4801] = 4641, - [4802] = 4646, - [4803] = 4650, + [4801] = 4801, + [4802] = 4802, + [4803] = 4803, [4804] = 4804, [4805] = 4805, [4806] = 4806, [4807] = 4807, [4808] = 4808, - [4809] = 4809, + [4809] = 4610, [4810] = 4810, [4811] = 4811, [4812] = 4812, @@ -9508,44 +9458,44 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4814] = 4814, [4815] = 4815, [4816] = 4816, - [4817] = 4817, + [4817] = 4650, [4818] = 4818, - [4819] = 4819, + [4819] = 4652, [4820] = 4820, - [4821] = 4821, + [4821] = 4807, [4822] = 4822, - [4823] = 4823, + [4823] = 4815, [4824] = 4824, [4825] = 4825, - [4826] = 4826, + [4826] = 4652, [4827] = 4827, - [4828] = 4828, + [4828] = 4654, [4829] = 4829, - [4830] = 4830, + [4830] = 4654, [4831] = 4831, [4832] = 4832, [4833] = 4833, - [4834] = 4749, + [4834] = 4665, [4835] = 4835, [4836] = 4836, [4837] = 4837, - [4838] = 3736, + [4838] = 4838, [4839] = 4839, [4840] = 4840, - [4841] = 4841, + [4841] = 4687, [4842] = 4842, - [4843] = 3965, - [4844] = 4621, + [4843] = 4843, + [4844] = 3576, [4845] = 4845, [4846] = 4846, [4847] = 4847, - [4848] = 4848, - [4849] = 4849, + [4848] = 4618, + [4849] = 4622, [4850] = 4850, [4851] = 4851, [4852] = 4852, [4853] = 4853, - [4854] = 4619, + [4854] = 4854, [4855] = 4855, [4856] = 4856, [4857] = 4857, @@ -9557,30 +9507,30 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4863] = 4863, [4864] = 4864, [4865] = 4865, - [4866] = 4791, + [4866] = 4866, [4867] = 4867, - [4868] = 4615, + [4868] = 4868, [4869] = 4869, - [4870] = 4870, + [4870] = 4610, [4871] = 4871, - [4872] = 4616, + [4872] = 4872, [4873] = 4873, [4874] = 4874, [4875] = 4875, - [4876] = 4617, + [4876] = 4876, [4877] = 4877, [4878] = 4878, - [4879] = 4652, + [4879] = 4879, [4880] = 4880, [4881] = 4881, [4882] = 4882, [4883] = 4883, [4884] = 4884, - [4885] = 4885, + [4885] = 4873, [4886] = 4886, - [4887] = 4887, + [4887] = 4876, [4888] = 4888, - [4889] = 4889, + [4889] = 4861, [4890] = 4890, [4891] = 4891, [4892] = 4892, @@ -9589,21 +9539,21 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4895] = 4895, [4896] = 4896, [4897] = 4897, - [4898] = 4618, + [4898] = 4898, [4899] = 4899, [4900] = 4900, [4901] = 4901, [4902] = 4902, - [4903] = 4747, - [4904] = 4619, - [4905] = 4794, + [4903] = 4903, + [4904] = 4904, + [4905] = 4905, [4906] = 4906, [4907] = 4907, [4908] = 4908, - [4909] = 4633, + [4909] = 4909, [4910] = 4910, [4911] = 4911, - [4912] = 4648, + [4912] = 4912, [4913] = 4913, [4914] = 4914, [4915] = 4915, @@ -9615,26 +9565,26 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4921] = 4921, [4922] = 4922, [4923] = 4923, - [4924] = 4924, - [4925] = 4736, + [4924] = 4633, + [4925] = 1491, [4926] = 4926, [4927] = 4927, [4928] = 4928, [4929] = 4929, - [4930] = 4650, + [4930] = 4930, [4931] = 4931, - [4932] = 1591, + [4932] = 4932, [4933] = 4933, [4934] = 4934, [4935] = 4935, [4936] = 4936, - [4937] = 4748, - [4938] = 4870, - [4939] = 4751, - [4940] = 4875, + [4937] = 4937, + [4938] = 4938, + [4939] = 4939, + [4940] = 4940, [4941] = 4941, - [4942] = 4942, - [4943] = 4943, + [4942] = 3544, + [4943] = 4617, [4944] = 4944, [4945] = 4945, [4946] = 4946, @@ -9648,8 +9598,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4954] = 4954, [4955] = 4955, [4956] = 4956, - [4957] = 4730, - [4958] = 4958, + [4957] = 4957, + [4958] = 4749, [4959] = 4959, [4960] = 4960, [4961] = 4961, @@ -9671,13 +9621,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4977] = 4977, [4978] = 4978, [4979] = 4979, - [4980] = 3538, + [4980] = 4980, [4981] = 4981, [4982] = 4982, [4983] = 4983, [4984] = 4984, [4985] = 4985, - [4986] = 4816, + [4986] = 4986, [4987] = 4987, [4988] = 4988, [4989] = 4989, @@ -9690,19 +9640,19 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4996] = 4996, [4997] = 4997, [4998] = 4998, - [4999] = 4999, + [4999] = 4646, [5000] = 5000, [5001] = 5001, [5002] = 5002, [5003] = 5003, [5004] = 5004, [5005] = 5005, - [5006] = 4737, + [5006] = 5006, [5007] = 5007, [5008] = 5008, - [5009] = 3729, + [5009] = 5009, [5010] = 5010, - [5011] = 5011, + [5011] = 3533, [5012] = 5012, [5013] = 5013, [5014] = 5014, @@ -9710,25 +9660,25 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5016] = 5016, [5017] = 5017, [5018] = 5018, - [5019] = 4829, + [5019] = 5019, [5020] = 5020, [5021] = 5021, - [5022] = 5022, + [5022] = 4257, [5023] = 5023, - [5024] = 5024, + [5024] = 1487, [5025] = 5025, [5026] = 5026, [5027] = 5027, [5028] = 5028, - [5029] = 5029, + [5029] = 4801, [5030] = 5030, - [5031] = 4830, + [5031] = 5031, [5032] = 5032, [5033] = 5033, [5034] = 5034, [5035] = 5035, [5036] = 5036, - [5037] = 4831, + [5037] = 5037, [5038] = 5038, [5039] = 5039, [5040] = 5040, @@ -9737,9 +9687,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5043] = 5043, [5044] = 5044, [5045] = 5045, - [5046] = 1606, - [5047] = 4742, - [5048] = 4646, + [5046] = 5046, + [5047] = 5047, + [5048] = 5048, [5049] = 5049, [5050] = 5050, [5051] = 5051, @@ -9752,65 +9702,65 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5058] = 5058, [5059] = 5059, [5060] = 5060, - [5061] = 5061, + [5061] = 4919, [5062] = 5062, [5063] = 5063, [5064] = 5064, - [5065] = 4647, - [5066] = 5066, + [5065] = 5065, + [5066] = 4649, [5067] = 5067, [5068] = 5068, - [5069] = 5069, - [5070] = 5020, - [5071] = 5071, - [5072] = 4328, + [5069] = 4435, + [5070] = 5070, + [5071] = 1499, + [5072] = 4753, [5073] = 5073, [5074] = 5074, [5075] = 5075, - [5076] = 1547, - [5077] = 5077, + [5076] = 5076, + [5077] = 4650, [5078] = 5078, [5079] = 5079, [5080] = 5080, [5081] = 5081, [5082] = 5082, - [5083] = 5083, + [5083] = 4935, [5084] = 5084, [5085] = 5085, [5086] = 5086, [5087] = 5087, - [5088] = 4646, - [5089] = 5089, + [5088] = 5088, + [5089] = 4650, [5090] = 5090, [5091] = 5091, [5092] = 5092, - [5093] = 5091, + [5093] = 4750, [5094] = 5094, [5095] = 5095, [5096] = 5096, [5097] = 5097, [5098] = 5098, [5099] = 5099, - [5100] = 5100, - [5101] = 5101, + [5100] = 4687, + [5101] = 4618, [5102] = 5102, [5103] = 5103, [5104] = 5104, - [5105] = 4829, + [5105] = 5105, [5106] = 5106, [5107] = 5107, [5108] = 5108, - [5109] = 5109, + [5109] = 4861, [5110] = 5110, [5111] = 5111, - [5112] = 5112, - [5113] = 4830, + [5112] = 4901, + [5113] = 5113, [5114] = 5114, - [5115] = 5115, + [5115] = 4633, [5116] = 5116, [5117] = 5117, [5118] = 5118, - [5119] = 4652, + [5119] = 4912, [5120] = 5120, [5121] = 5121, [5122] = 5122, @@ -9823,109 +9773,109 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5129] = 5129, [5130] = 5130, [5131] = 5131, - [5132] = 5132, + [5132] = 4921, [5133] = 5133, - [5134] = 5134, + [5134] = 4923, [5135] = 5135, - [5136] = 5136, - [5137] = 5137, + [5136] = 5129, + [5137] = 5094, [5138] = 5138, [5139] = 5139, [5140] = 5140, - [5141] = 5141, + [5141] = 4617, [5142] = 5142, - [5143] = 5143, + [5143] = 1525, [5144] = 5144, [5145] = 5145, [5146] = 5146, [5147] = 5147, [5148] = 5148, - [5149] = 5149, + [5149] = 1531, [5150] = 5150, [5151] = 5151, [5152] = 5152, - [5153] = 4624, + [5153] = 4633, [5154] = 5154, - [5155] = 4625, - [5156] = 5041, - [5157] = 4673, + [5155] = 5155, + [5156] = 5156, + [5157] = 5157, [5158] = 5158, [5159] = 5159, - [5160] = 4935, - [5161] = 5161, - [5162] = 5162, - [5163] = 4621, - [5164] = 1507, + [5160] = 5160, + [5161] = 4619, + [5162] = 4743, + [5163] = 5163, + [5164] = 5164, [5165] = 5165, - [5166] = 1517, - [5167] = 5167, - [5168] = 4651, - [5169] = 4633, + [5166] = 768, + [5167] = 4624, + [5168] = 4640, + [5169] = 5169, [5170] = 5170, - [5171] = 4895, + [5171] = 5171, [5172] = 5172, - [5173] = 4673, + [5173] = 5173, [5174] = 5174, - [5175] = 4679, + [5175] = 4620, [5176] = 5176, [5177] = 5177, - [5178] = 5178, - [5179] = 4897, - [5180] = 4730, + [5178] = 4760, + [5179] = 4646, + [5180] = 4663, [5181] = 5181, [5182] = 5182, - [5183] = 4922, + [5183] = 3596, [5184] = 5184, [5185] = 5185, [5186] = 5186, - [5187] = 767, - [5188] = 4636, - [5189] = 4637, - [5190] = 4935, - [5191] = 5191, - [5192] = 5192, + [5187] = 5187, + [5188] = 4743, + [5189] = 5189, + [5190] = 5190, + [5191] = 5129, + [5192] = 5131, [5193] = 5193, - [5194] = 5194, + [5194] = 4649, [5195] = 5195, - [5196] = 4906, - [5197] = 5197, + [5196] = 5196, + [5197] = 5060, [5198] = 5198, - [5199] = 4907, - [5200] = 4641, - [5201] = 4914, + [5199] = 5199, + [5200] = 5200, + [5201] = 4650, [5202] = 5202, - [5203] = 3643, + [5203] = 5203, [5204] = 5204, - [5205] = 4645, + [5205] = 5205, [5206] = 5206, - [5207] = 5207, + [5207] = 5094, [5208] = 5208, - [5209] = 5209, + [5209] = 4652, [5210] = 5210, - [5211] = 4645, - [5212] = 4633, + [5211] = 4654, + [5212] = 5212, [5213] = 5213, [5214] = 5214, [5215] = 5215, [5216] = 5216, - [5217] = 5217, + [5217] = 4667, [5218] = 5218, [5219] = 5219, - [5220] = 4646, + [5220] = 5220, [5221] = 5221, [5222] = 5222, [5223] = 5223, [5224] = 5224, - [5225] = 5225, + [5225] = 3832, [5226] = 5226, - [5227] = 4648, + [5227] = 5227, [5228] = 5228, - [5229] = 4650, + [5229] = 5229, [5230] = 5230, [5231] = 5231, - [5232] = 5232, + [5232] = 2615, [5233] = 5233, - [5234] = 5234, + [5234] = 2618, [5235] = 5235, [5236] = 5236, [5237] = 5237, @@ -9940,354 +9890,354 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5246] = 5246, [5247] = 5247, [5248] = 5248, - [5249] = 2653, + [5249] = 5249, [5250] = 5250, [5251] = 5251, [5252] = 5252, [5253] = 5253, [5254] = 5254, [5255] = 5255, - [5256] = 5256, + [5256] = 5235, [5257] = 5257, - [5258] = 5258, - [5259] = 5259, + [5258] = 5222, + [5259] = 5237, [5260] = 5260, [5261] = 5261, [5262] = 5262, [5263] = 5263, [5264] = 5264, - [5265] = 5265, + [5265] = 5223, [5266] = 5266, - [5267] = 5267, + [5267] = 5240, [5268] = 5268, - [5269] = 5269, + [5269] = 5243, [5270] = 5270, [5271] = 5271, - [5272] = 5272, - [5273] = 5273, - [5274] = 5274, - [5275] = 5275, - [5276] = 5276, + [5272] = 2639, + [5273] = 5244, + [5274] = 2641, + [5275] = 5247, + [5276] = 5240, [5277] = 5277, [5278] = 5278, [5279] = 5279, - [5280] = 5280, - [5281] = 5272, - [5282] = 5282, + [5280] = 5235, + [5281] = 5281, + [5282] = 5250, [5283] = 5283, - [5284] = 5268, - [5285] = 5285, - [5286] = 5239, - [5287] = 5287, - [5288] = 5276, + [5284] = 5266, + [5285] = 5251, + [5286] = 5264, + [5287] = 5253, + [5288] = 5288, [5289] = 5289, [5290] = 5290, - [5291] = 5257, - [5292] = 5282, + [5291] = 5291, + [5292] = 1630, [5293] = 5293, [5294] = 5294, [5295] = 5295, - [5296] = 3865, + [5296] = 5296, [5297] = 5297, [5298] = 5298, - [5299] = 5283, + [5299] = 5260, [5300] = 5300, [5301] = 5301, - [5302] = 5261, + [5302] = 3836, [5303] = 5303, [5304] = 5304, - [5305] = 5274, + [5305] = 5305, [5306] = 5306, [5307] = 5307, [5308] = 5308, - [5309] = 5272, - [5310] = 5255, + [5309] = 5309, + [5310] = 5310, [5311] = 5311, - [5312] = 5312, + [5312] = 5240, [5313] = 5313, - [5314] = 3852, + [5314] = 5314, [5315] = 5315, [5316] = 5316, [5317] = 5317, - [5318] = 5276, - [5319] = 1721, + [5318] = 5318, + [5319] = 5319, [5320] = 5320, [5321] = 5321, - [5322] = 5282, - [5323] = 2654, + [5322] = 5322, + [5323] = 5323, [5324] = 5324, [5325] = 5325, - [5326] = 5258, + [5326] = 5326, [5327] = 5327, - [5328] = 5328, - [5329] = 5329, - [5330] = 5257, + [5328] = 5268, + [5329] = 5277, + [5330] = 5278, [5331] = 5331, - [5332] = 5332, + [5332] = 5309, [5333] = 5333, [5334] = 5334, - [5335] = 5245, + [5335] = 5335, [5336] = 5336, - [5337] = 5261, + [5337] = 5337, [5338] = 5338, - [5339] = 5274, - [5340] = 5272, + [5339] = 5231, + [5340] = 5340, [5341] = 5341, [5342] = 5342, [5343] = 5343, - [5344] = 5344, + [5344] = 5310, [5345] = 5345, [5346] = 5346, - [5347] = 5276, - [5348] = 5282, - [5349] = 2630, - [5350] = 5283, - [5351] = 5351, - [5352] = 5238, - [5353] = 5353, + [5347] = 5347, + [5348] = 5348, + [5349] = 5338, + [5350] = 5350, + [5351] = 2631, + [5352] = 2621, + [5353] = 5324, [5354] = 5354, - [5355] = 5245, - [5356] = 2606, - [5357] = 5283, - [5358] = 5358, + [5355] = 5335, + [5356] = 5356, + [5357] = 5233, + [5358] = 2608, [5359] = 5359, - [5360] = 5360, - [5361] = 5361, - [5362] = 2612, - [5363] = 5363, - [5364] = 2607, - [5365] = 5365, + [5360] = 2614, + [5361] = 5268, + [5362] = 5277, + [5363] = 5343, + [5364] = 5278, + [5365] = 2611, [5366] = 5366, - [5367] = 2621, - [5368] = 5246, - [5369] = 5236, - [5370] = 5242, + [5367] = 5346, + [5368] = 2635, + [5369] = 5369, + [5370] = 5370, [5371] = 5371, - [5372] = 5372, + [5372] = 5371, [5373] = 5373, - [5374] = 5338, - [5375] = 5334, + [5374] = 2634, + [5375] = 5336, [5376] = 5376, - [5377] = 5377, - [5378] = 5378, - [5379] = 5379, - [5380] = 5380, - [5381] = 5248, - [5382] = 5235, - [5383] = 5258, + [5377] = 5298, + [5378] = 5331, + [5379] = 5320, + [5380] = 5268, + [5381] = 5381, + [5382] = 5382, + [5383] = 5383, [5384] = 5384, - [5385] = 2658, - [5386] = 5386, - [5387] = 5387, - [5388] = 2622, - [5389] = 2610, - [5390] = 5244, - [5391] = 5303, - [5392] = 5258, - [5393] = 5393, - [5394] = 5394, - [5395] = 5353, - [5396] = 5248, - [5397] = 5397, - [5398] = 2631, - [5399] = 5245, - [5400] = 2655, - [5401] = 5401, - [5402] = 2656, + [5385] = 5385, + [5386] = 2619, + [5387] = 5337, + [5388] = 5249, + [5389] = 1692, + [5390] = 5281, + [5391] = 1693, + [5392] = 5392, + [5393] = 5283, + [5394] = 5392, + [5395] = 5252, + [5396] = 5396, + [5397] = 5266, + [5398] = 5398, + [5399] = 5347, + [5400] = 5255, + [5401] = 5264, + [5402] = 5402, [5403] = 5403, - [5404] = 5328, - [5405] = 5246, - [5406] = 5283, - [5407] = 5393, - [5408] = 5331, - [5409] = 5248, + [5404] = 5288, + [5405] = 5366, + [5406] = 2660, + [5407] = 2662, + [5408] = 5408, + [5409] = 5409, [5410] = 5410, - [5411] = 5247, - [5412] = 3909, - [5413] = 2642, + [5411] = 2628, + [5412] = 5412, + [5413] = 2624, [5414] = 5414, - [5415] = 5250, + [5415] = 5415, [5416] = 5416, - [5417] = 5306, + [5417] = 5277, [5418] = 5418, [5419] = 5419, - [5420] = 5418, - [5421] = 5276, + [5420] = 5307, + [5421] = 5303, [5422] = 5422, - [5423] = 5423, - [5424] = 5424, + [5423] = 5222, + [5424] = 5408, [5425] = 5425, - [5426] = 3929, - [5427] = 5272, + [5426] = 5426, + [5427] = 5385, [5428] = 5428, - [5429] = 5270, + [5429] = 5249, [5430] = 5430, - [5431] = 5251, - [5432] = 5233, - [5433] = 5416, - [5434] = 5434, - [5435] = 5346, - [5436] = 5428, - [5437] = 5437, + [5431] = 5410, + [5432] = 5432, + [5433] = 5268, + [5434] = 5252, + [5435] = 5231, + [5436] = 5436, + [5437] = 5255, [5438] = 5438, - [5439] = 5246, + [5439] = 5439, [5440] = 5440, [5441] = 5441, - [5442] = 5266, + [5442] = 5277, [5443] = 5443, - [5444] = 5444, - [5445] = 5307, - [5446] = 5262, - [5447] = 5240, - [5448] = 5448, - [5449] = 5449, + [5444] = 5277, + [5445] = 5249, + [5446] = 5446, + [5447] = 5409, + [5448] = 5252, + [5449] = 5255, [5450] = 5450, - [5451] = 5451, - [5452] = 5452, - [5453] = 5258, - [5454] = 5454, - [5455] = 5455, + [5451] = 5426, + [5452] = 5278, + [5453] = 5348, + [5454] = 5425, + [5455] = 5403, [5456] = 5456, [5457] = 5457, [5458] = 5458, [5459] = 5459, [5460] = 5460, - [5461] = 5422, - [5462] = 5462, + [5461] = 5278, + [5462] = 5240, [5463] = 5463, - [5464] = 5280, - [5465] = 1673, - [5466] = 5466, - [5467] = 1691, + [5464] = 5464, + [5465] = 5432, + [5466] = 5248, + [5467] = 5304, [5468] = 5468, - [5469] = 5338, - [5470] = 5470, - [5471] = 5471, - [5472] = 5418, - [5473] = 5430, - [5474] = 5378, - [5475] = 5475, - [5476] = 5459, - [5477] = 5403, - [5478] = 2615, - [5479] = 5466, - [5480] = 5258, - [5481] = 5475, + [5469] = 2644, + [5470] = 5430, + [5471] = 5290, + [5472] = 5472, + [5473] = 5281, + [5474] = 5283, + [5475] = 3818, + [5476] = 5240, + [5477] = 5266, + [5478] = 5478, + [5479] = 5264, + [5480] = 5480, + [5481] = 5278, [5482] = 5482, [5483] = 5483, - [5484] = 2644, + [5484] = 5484, [5485] = 5485, - [5486] = 5359, - [5487] = 5487, - [5488] = 2632, - [5489] = 5482, - [5490] = 5419, - [5491] = 5491, + [5486] = 5486, + [5487] = 5268, + [5488] = 5242, + [5489] = 3824, + [5490] = 5263, + [5491] = 2613, [5492] = 5492, - [5493] = 5493, - [5494] = 5363, - [5495] = 5386, + [5493] = 5311, + [5494] = 5257, + [5495] = 5321, [5496] = 5496, - [5497] = 5386, - [5498] = 5372, - [5499] = 5422, - [5500] = 5448, - [5501] = 5248, - [5502] = 5502, - [5503] = 5503, - [5504] = 5459, - [5505] = 5414, + [5497] = 2607, + [5498] = 5314, + [5499] = 2620, + [5500] = 5305, + [5501] = 5315, + [5502] = 5262, + [5503] = 5369, + [5504] = 5504, + [5505] = 2645, [5506] = 5506, - [5507] = 5320, - [5508] = 5262, - [5509] = 5267, - [5510] = 5245, - [5511] = 5511, - [5512] = 5246, - [5513] = 5333, - [5514] = 5248, - [5515] = 5455, - [5516] = 5462, - [5517] = 5517, - [5518] = 5448, - [5519] = 5351, + [5507] = 5419, + [5508] = 5508, + [5509] = 5300, + [5510] = 5510, + [5511] = 5254, + [5512] = 5512, + [5513] = 5316, + [5514] = 5514, + [5515] = 5298, + [5516] = 5307, + [5517] = 5438, + [5518] = 5518, + [5519] = 5337, [5520] = 5520, - [5521] = 5521, - [5522] = 5293, - [5523] = 5306, - [5524] = 5418, - [5525] = 5376, - [5526] = 5327, - [5527] = 5422, - [5528] = 5341, + [5521] = 5440, + [5522] = 5342, + [5523] = 5223, + [5524] = 5382, + [5525] = 5418, + [5526] = 5305, + [5527] = 5527, + [5528] = 5436, [5529] = 5529, - [5530] = 2616, - [5531] = 5531, - [5532] = 5377, - [5533] = 5466, - [5534] = 5246, + [5530] = 5439, + [5531] = 5253, + [5532] = 5443, + [5533] = 5533, + [5534] = 5222, [5535] = 5535, - [5536] = 5259, - [5537] = 2645, - [5538] = 5441, + [5536] = 5536, + [5537] = 5537, + [5538] = 5371, [5539] = 5539, - [5540] = 5303, - [5541] = 2640, - [5542] = 5542, - [5543] = 5517, - [5544] = 5544, - [5545] = 5360, - [5546] = 5437, + [5540] = 5540, + [5541] = 5541, + [5542] = 5281, + [5543] = 5283, + [5544] = 5266, + [5545] = 5545, + [5546] = 5546, [5547] = 5547, - [5548] = 5341, - [5549] = 5373, - [5550] = 5550, + [5548] = 5325, + [5549] = 5224, + [5550] = 5264, [5551] = 5551, - [5552] = 5345, - [5553] = 5313, - [5554] = 5554, - [5555] = 5257, - [5556] = 5521, - [5557] = 5261, - [5558] = 5257, - [5559] = 5559, - [5560] = 5245, - [5561] = 5393, - [5562] = 5246, - [5563] = 5261, - [5564] = 5520, - [5565] = 5378, - [5566] = 5248, - [5567] = 5274, - [5568] = 5568, - [5569] = 5401, - [5570] = 5570, - [5571] = 5440, - [5572] = 5245, - [5573] = 5328, - [5574] = 5361, - [5575] = 2625, - [5576] = 5320, - [5577] = 5434, - [5578] = 5365, - [5579] = 2626, - [5580] = 5366, - [5581] = 5274, - [5582] = 5282, - [5583] = 5258, + [5552] = 5249, + [5553] = 5553, + [5554] = 5252, + [5555] = 5255, + [5556] = 5376, + [5557] = 5430, + [5558] = 5482, + [5559] = 5268, + [5560] = 5410, + [5561] = 5277, + [5562] = 5562, + [5563] = 5432, + [5564] = 5278, + [5565] = 2656, + [5566] = 5253, + [5567] = 5240, + [5568] = 5369, + [5569] = 5300, + [5570] = 5283, + [5571] = 5571, + [5572] = 5239, + [5573] = 5281, + [5574] = 5574, + [5575] = 5575, + [5576] = 5576, + [5577] = 5577, + [5578] = 5578, + [5579] = 5579, + [5580] = 5580, + [5581] = 5581, + [5582] = 5582, + [5583] = 5583, [5584] = 5584, [5585] = 5585, [5586] = 5586, [5587] = 5587, - [5588] = 5588, + [5588] = 5585, [5589] = 5589, [5590] = 5590, [5591] = 5591, [5592] = 5592, [5593] = 5593, [5594] = 5594, - [5595] = 5595, - [5596] = 5586, + [5595] = 5589, + [5596] = 5596, [5597] = 5597, [5598] = 5598, [5599] = 5599, @@ -10297,398 +10247,386 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5603] = 5603, [5604] = 5604, [5605] = 5605, - [5606] = 5606, + [5606] = 5576, [5607] = 5607, - [5608] = 5605, - [5609] = 5597, + [5608] = 5585, + [5609] = 5589, [5610] = 5610, [5611] = 5611, [5612] = 5612, - [5613] = 5613, + [5613] = 5575, [5614] = 5614, [5615] = 5615, [5616] = 5616, - [5617] = 5617, + [5617] = 5615, [5618] = 5618, [5619] = 5619, [5620] = 5620, [5621] = 5621, [5622] = 5622, [5623] = 5623, - [5624] = 5586, + [5624] = 5624, [5625] = 5625, [5626] = 5626, - [5627] = 5598, - [5628] = 5587, + [5627] = 5627, + [5628] = 5628, [5629] = 5629, - [5630] = 5590, - [5631] = 5589, - [5632] = 5592, + [5630] = 5610, + [5631] = 5631, + [5632] = 5632, [5633] = 5633, [5634] = 5634, - [5635] = 5635, - [5636] = 5636, + [5635] = 5602, + [5636] = 5615, [5637] = 5637, [5638] = 5638, - [5639] = 5594, + [5639] = 5639, [5640] = 5640, - [5641] = 5641, + [5641] = 5601, [5642] = 5642, - [5643] = 5640, - [5644] = 5644, - [5645] = 5588, - [5646] = 5646, - [5647] = 5637, - [5648] = 5620, + [5643] = 5579, + [5644] = 5581, + [5645] = 5614, + [5646] = 5599, + [5647] = 5647, + [5648] = 5612, [5649] = 5649, - [5650] = 5650, - [5651] = 5607, + [5650] = 5642, + [5651] = 5651, [5652] = 5652, - [5653] = 5653, - [5654] = 5654, + [5653] = 5629, + [5654] = 5652, [5655] = 5655, - [5656] = 5656, - [5657] = 5657, - [5658] = 5658, + [5656] = 5580, + [5657] = 5576, + [5658] = 5586, [5659] = 5659, - [5660] = 5660, - [5661] = 5601, + [5660] = 5575, + [5661] = 5642, [5662] = 5662, - [5663] = 5663, - [5664] = 5662, - [5665] = 5590, - [5666] = 5666, - [5667] = 5667, - [5668] = 5641, - [5669] = 5656, - [5670] = 5649, + [5663] = 5634, + [5664] = 5664, + [5665] = 5665, + [5666] = 5594, + [5667] = 5600, + [5668] = 5668, + [5669] = 5614, + [5670] = 5670, [5671] = 5671, - [5672] = 5672, - [5673] = 5673, - [5674] = 5595, - [5675] = 5675, - [5676] = 5676, - [5677] = 5677, - [5678] = 5655, - [5679] = 5593, - [5680] = 5600, - [5681] = 5635, - [5682] = 5601, - [5683] = 5683, + [5672] = 5585, + [5673] = 5614, + [5674] = 5574, + [5675] = 5625, + [5676] = 5596, + [5677] = 5640, + [5678] = 5678, + [5679] = 5652, + [5680] = 5625, + [5681] = 5611, + [5682] = 5662, + [5683] = 5670, [5684] = 5684, - [5685] = 5601, - [5686] = 5662, + [5685] = 5602, + [5686] = 5686, [5687] = 5687, - [5688] = 5660, - [5689] = 5642, - [5690] = 5675, - [5691] = 5650, - [5692] = 5642, - [5693] = 5644, - [5694] = 5622, - [5695] = 5586, - [5696] = 5660, - [5697] = 5653, - [5698] = 5675, - [5699] = 5657, - [5700] = 5700, - [5701] = 5672, - [5702] = 5702, - [5703] = 5593, - [5704] = 5600, - [5705] = 5705, - [5706] = 5706, - [5707] = 5707, - [5708] = 5708, - [5709] = 5709, - [5710] = 5637, - [5711] = 5711, - [5712] = 5636, - [5713] = 5659, - [5714] = 5666, - [5715] = 5715, - [5716] = 5716, - [5717] = 5602, - [5718] = 5606, - [5719] = 5673, - [5720] = 5702, - [5721] = 5598, - [5722] = 5622, - [5723] = 5660, - [5724] = 5625, - [5725] = 5642, - [5726] = 5610, - [5727] = 5633, - [5728] = 5620, - [5729] = 5677, - [5730] = 5715, - [5731] = 5684, - [5732] = 5634, - [5733] = 5602, - [5734] = 5734, - [5735] = 5637, - [5736] = 5660, - [5737] = 5660, - [5738] = 5716, - [5739] = 5593, - [5740] = 5740, - [5741] = 5741, - [5742] = 5650, - [5743] = 5600, - [5744] = 5657, - [5745] = 5635, - [5746] = 5740, - [5747] = 5607, + [5688] = 5582, + [5689] = 5689, + [5690] = 5589, + [5691] = 5691, + [5692] = 5692, + [5693] = 5629, + [5694] = 5600, + [5695] = 5695, + [5696] = 5691, + [5697] = 5697, + [5698] = 5687, + [5699] = 5618, + [5700] = 5625, + [5701] = 5593, + [5702] = 5625, + [5703] = 5618, + [5704] = 5704, + [5705] = 5610, + [5706] = 5633, + [5707] = 5615, + [5708] = 5642, + [5709] = 5662, + [5710] = 5628, + [5711] = 5652, + [5712] = 5712, + [5713] = 5662, + [5714] = 5580, + [5715] = 5619, + [5716] = 5628, + [5717] = 5620, + [5718] = 5692, + [5719] = 5623, + [5720] = 5582, + [5721] = 5721, + [5722] = 5684, + [5723] = 5586, + [5724] = 5687, + [5725] = 5638, + [5726] = 5626, + [5727] = 5651, + [5728] = 5584, + [5729] = 5627, + [5730] = 5593, + [5731] = 5659, + [5732] = 5586, + [5733] = 5684, + [5734] = 5625, + [5735] = 5634, + [5736] = 5665, + [5737] = 5737, + [5738] = 5612, + [5739] = 5575, + [5740] = 5655, + [5741] = 5623, + [5742] = 5691, + [5743] = 5604, + [5744] = 5580, + [5745] = 5664, + [5746] = 5582, + [5747] = 5687, [5748] = 5748, - [5749] = 5653, - [5750] = 5702, - [5751] = 5751, - [5752] = 5641, - [5753] = 5646, - [5754] = 5754, - [5755] = 5755, - [5756] = 5611, - [5757] = 5649, - [5758] = 5715, - [5759] = 5593, - [5760] = 5716, - [5761] = 5761, - [5762] = 5625, - [5763] = 5600, - [5764] = 5687, - [5765] = 5765, - [5766] = 5766, - [5767] = 5709, - [5768] = 5634, - [5769] = 5618, - [5770] = 5593, - [5771] = 5600, - [5772] = 5595, - [5773] = 5610, - [5774] = 5751, - [5775] = 5614, - [5776] = 5776, - [5777] = 5611, + [5749] = 5749, + [5750] = 5750, + [5751] = 5607, + [5752] = 5689, + [5753] = 5639, + [5754] = 5586, + [5755] = 5692, + [5756] = 5756, + [5757] = 5590, + [5758] = 5758, + [5759] = 5638, + [5760] = 5600, + [5761] = 5590, + [5762] = 5691, + [5763] = 5692, + [5764] = 5594, + [5765] = 5601, + [5766] = 5671, + [5767] = 5610, + [5768] = 5618, + [5769] = 5612, + [5770] = 5575, + [5771] = 5593, + [5772] = 5772, + [5773] = 5619, + [5774] = 5774, + [5775] = 5775, + [5776] = 5604, + [5777] = 5777, [5778] = 5778, - [5779] = 5779, - [5780] = 5780, - [5781] = 5611, - [5782] = 5782, + [5779] = 5590, + [5780] = 5594, + [5781] = 5620, + [5782] = 5596, [5783] = 5783, - [5784] = 5660, - [5785] = 5676, - [5786] = 5614, - [5787] = 5619, - [5788] = 5621, - [5789] = 5687, - [5790] = 5623, - [5791] = 5602, - [5792] = 5606, - [5793] = 5683, - [5794] = 5605, - [5795] = 5626, - [5796] = 5796, - [5797] = 5587, - [5798] = 5589, - [5799] = 5592, - [5800] = 5622, - [5801] = 5586, - [5802] = 5625, - [5803] = 5765, - [5804] = 5659, - [5805] = 5598, - [5806] = 5594, - [5807] = 5614, - [5808] = 5637, - [5809] = 5610, - [5810] = 5634, - [5811] = 5761, - [5812] = 5655, - [5813] = 5813, + [5784] = 5687, + [5785] = 5596, + [5786] = 5584, + [5787] = 5684, + [5788] = 5610, + [5789] = 5612, + [5790] = 5575, + [5791] = 5616, + [5792] = 5758, + [5793] = 5622, + [5794] = 5691, + [5795] = 5795, + [5796] = 5619, + [5797] = 5692, + [5798] = 5622, + [5799] = 5627, + [5800] = 5800, + [5801] = 5801, + [5802] = 5628, + [5803] = 5637, + [5804] = 5616, + [5805] = 5590, + [5806] = 5639, + [5807] = 5692, + [5808] = 5808, + [5809] = 5590, + [5810] = 5810, + [5811] = 5664, + [5812] = 5812, + [5813] = 5594, [5814] = 5814, - [5815] = 5600, - [5816] = 5620, - [5817] = 5817, - [5818] = 5606, - [5819] = 5748, - [5820] = 5666, - [5821] = 5821, - [5822] = 5653, - [5823] = 5601, - [5824] = 5659, - [5825] = 5825, - [5826] = 5666, - [5827] = 5677, - [5828] = 5635, - [5829] = 5598, - [5830] = 5830, - [5831] = 5641, - [5832] = 5832, - [5833] = 5646, - [5834] = 5834, - [5835] = 5677, - [5836] = 5754, - [5837] = 5684, - [5838] = 5838, - [5839] = 5649, - [5840] = 5650, - [5841] = 5610, - [5842] = 5662, - [5843] = 5602, - [5844] = 5606, - [5845] = 5655, - [5846] = 5657, - [5847] = 5622, - [5848] = 5586, - [5849] = 5625, - [5850] = 5702, - [5851] = 5715, - [5852] = 5716, - [5853] = 5619, - [5854] = 5618, - [5855] = 5602, - [5856] = 5606, - [5857] = 5634, - [5858] = 5649, - [5859] = 5605, - [5860] = 5687, - [5861] = 5675, - [5862] = 5622, - [5863] = 5586, - [5864] = 5625, - [5865] = 5618, - [5866] = 5621, - [5867] = 5656, + [5815] = 5808, + [5816] = 5623, + [5817] = 5638, + [5818] = 5800, + [5819] = 5622, + [5820] = 5614, + [5821] = 5628, + [5822] = 5621, + [5823] = 5578, + [5824] = 5810, + [5825] = 5580, + [5826] = 5582, + [5827] = 5620, + [5828] = 5637, + [5829] = 5586, + [5830] = 5687, + [5831] = 5579, + [5832] = 5581, + [5833] = 5599, + [5834] = 5639, + [5835] = 5684, + [5836] = 5668, + [5837] = 5576, + [5838] = 5585, + [5839] = 5604, + [5840] = 5840, + [5841] = 5589, + [5842] = 5622, + [5843] = 5615, + [5844] = 5637, + [5845] = 5845, + [5846] = 5642, + [5847] = 5847, + [5848] = 5848, + [5849] = 5662, + [5850] = 5850, + [5851] = 5851, + [5852] = 5579, + [5853] = 5596, + [5854] = 5629, + [5855] = 5607, + [5856] = 5856, + [5857] = 5651, + [5858] = 5687, + [5859] = 5800, + [5860] = 5580, + [5861] = 5810, + [5862] = 5862, + [5863] = 5610, + [5864] = 5840, + [5865] = 5624, + [5866] = 5750, + [5867] = 5581, [5868] = 5868, - [5869] = 5604, - [5870] = 5623, - [5871] = 5708, - [5872] = 5626, - [5873] = 5711, - [5874] = 5874, - [5875] = 5587, - [5876] = 5740, - [5877] = 5589, - [5878] = 5592, - [5879] = 5634, - [5880] = 5779, - [5881] = 5611, - [5882] = 5882, - [5883] = 5883, - [5884] = 5625, - [5885] = 5605, - [5886] = 5614, - [5887] = 5619, - [5888] = 5621, - [5889] = 5889, - [5890] = 5602, - [5891] = 5606, - [5892] = 5607, - [5893] = 5606, + [5869] = 5590, + [5870] = 5592, + [5871] = 5600, + [5872] = 5601, + [5873] = 5596, + [5874] = 5750, + [5875] = 5579, + [5876] = 5876, + [5877] = 5877, + [5878] = 5590, + [5879] = 5593, + [5880] = 5840, + [5881] = 5594, + [5882] = 5618, + [5883] = 5596, + [5884] = 5619, + [5885] = 5614, + [5886] = 5610, + [5887] = 5602, + [5888] = 5612, + [5889] = 5575, + [5890] = 5651, + [5891] = 5891, + [5892] = 5604, + [5893] = 5620, [5894] = 5894, - [5895] = 5605, - [5896] = 5638, - [5897] = 5700, + [5895] = 5593, + [5896] = 5877, + [5897] = 5631, [5898] = 5622, - [5899] = 5635, - [5900] = 5586, - [5901] = 5625, - [5902] = 5902, - [5903] = 5590, - [5904] = 5594, - [5905] = 5601, - [5906] = 5623, - [5907] = 5626, - [5908] = 5598, - [5909] = 5587, - [5910] = 5634, - [5911] = 5642, - [5912] = 5595, - [5913] = 5667, - [5914] = 5610, - [5915] = 5641, - [5916] = 5637, - [5917] = 5683, - [5918] = 5602, - [5919] = 5667, - [5920] = 5672, - [5921] = 5653, - [5922] = 5641, - [5923] = 5659, - [5924] = 5766, - [5925] = 5589, - [5926] = 5592, - [5927] = 5594, - [5928] = 5708, - [5929] = 5666, - [5930] = 5605, - [5931] = 5667, - [5932] = 5655, - [5933] = 5933, - [5934] = 5646, - [5935] = 5711, - [5936] = 5601, - [5937] = 5618, - [5938] = 5677, - [5939] = 5649, - [5940] = 5684, - [5941] = 5605, - [5942] = 5667, - [5943] = 5650, - [5944] = 5605, - [5945] = 5684, - [5946] = 5662, - [5947] = 5675, - [5948] = 5657, - [5949] = 5662, - [5950] = 5702, - [5951] = 5951, - [5952] = 5637, - [5953] = 5951, - [5954] = 5591, - [5955] = 5955, - [5956] = 5715, - [5957] = 5716, - [5958] = 5707, - [5959] = 5602, - [5960] = 5613, - [5961] = 5675, - [5962] = 5667, - [5963] = 5641, - [5964] = 5606, - [5965] = 5965, - [5966] = 5646, - [5967] = 5817, - [5968] = 5622, - [5969] = 5586, - [5970] = 5625, - [5971] = 5642, - [5972] = 5634, - [5973] = 5687, - [5974] = 5595, - [5975] = 5975, - [5976] = 5642, - [5977] = 5965, - [5978] = 5978, - [5979] = 5619, - [5980] = 5634, - [5981] = 5649, + [5899] = 5639, + [5900] = 5604, + [5901] = 5655, + [5902] = 5623, + [5903] = 5638, + [5904] = 5586, + [5905] = 5671, + [5906] = 5906, + [5907] = 5594, + [5908] = 5689, + [5909] = 5651, + [5910] = 5616, + [5911] = 5577, + [5912] = 5659, + [5913] = 5601, + [5914] = 5627, + [5915] = 5795, + [5916] = 5634, + [5917] = 5848, + [5918] = 5596, + [5919] = 5655, + [5920] = 5614, + [5921] = 5629, + [5922] = 5610, + [5923] = 5664, + [5924] = 5612, + [5925] = 5575, + [5926] = 5590, + [5927] = 5629, + [5928] = 5594, + [5929] = 5596, + [5930] = 5655, + [5931] = 5931, + [5932] = 5610, + [5933] = 5659, + [5934] = 5612, + [5935] = 5652, + [5936] = 5575, + [5937] = 5937, + [5938] = 5938, + [5939] = 5599, + [5940] = 5691, + [5941] = 5941, + [5942] = 5772, + [5943] = 5634, + [5944] = 5625, + [5945] = 5664, + [5946] = 5598, + [5947] = 5652, + [5948] = 5756, + [5949] = 5949, + [5950] = 5655, + [5951] = 5580, + [5952] = 5952, + [5953] = 5953, + [5954] = 5581, + [5955] = 5778, + [5956] = 5622, + [5957] = 5957, + [5958] = 5627, + [5959] = 5959, + [5960] = 5622, + [5961] = 5721, + [5962] = 5684, + [5963] = 5605, + [5964] = 5576, + [5965] = 5953, + [5966] = 5639, + [5967] = 5622, + [5968] = 5941, + [5969] = 5684, + [5970] = 5692, + [5971] = 5750, + [5972] = 5599, + [5973] = 5612, + [5974] = 5584, + [5975] = 5659, + [5976] = 5750, + [5977] = 5756, + [5978] = 5637, + [5979] = 5597, + [5980] = 5980, + [5981] = 5655, [5982] = 5982, - [5983] = 5654, + [5983] = 5594, [5984] = 5984, - [5985] = 5622, - [5986] = 5618, - [5987] = 5778, - [5988] = 5988, - [5989] = 5613, - [5990] = 5990, - [5991] = 5621, - [5992] = 5623, - [5993] = 5667, - [5994] = 5994, - [5995] = 5978, - [5996] = 5626, - [5997] = 5593, + [5985] = 5691, }; static TSCharacterRange extras_character_set_1[] = { @@ -10711,2141 +10649,1893 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(150); + if (eof) ADVANCE(129); ADVANCE_MAP( - '!', 164, - '"', 187, - '#', 10, - '$', 311, - '%', 251, - '&', 230, - '\'', 188, - '(', 165, - ')', 167, - '*', 153, - '+', 243, - ',', 161, - '-', 247, - '.', 183, - '/', 296, - '0', 301, - ':', 168, - ';', 166, - '<', 256, - '=', 157, - '>', 179, - '?', 317, - '@', 314, - '[', 169, - '\\', 104, - ']', 170, - '^', 233, - '`', 294, - '{', 160, - '|', 236, - '}', 162, - '~', 270, + '!', 143, + '"', 160, + '#', 6, + '$', 281, + '%', 224, + '&', 203, + '\'', 161, + '(', 144, + ')', 146, + '*', 132, + '+', 216, + ',', 140, + '-', 220, + '.', 156, + '/', 266, + '0', 271, + ':', 147, + ';', 145, + '<', 229, + '=', 136, + '>', 152, + '?', 287, + '@', 284, + '[', 148, + '\\', 82, + ']', 149, + '^', 206, + '`', 264, + '{', 139, + '|', 209, + '}', 141, + '~', 240, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(302); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(147); - if (lookahead > '@') ADVANCE(312); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(126); + if (lookahead > '@') ADVANCE(282); END_STATE(); case 1: - if (lookahead == '\n') SKIP(1); - if (lookahead == '/') ADVANCE(172); - if (lookahead == '<') ADVANCE(174); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(173); - if (lookahead != 0) ADVANCE(171); + if (lookahead == '\n') SKIP(34); + if (lookahead == '/') ADVANCE(24); + if (lookahead == '[') ADVANCE(81); + if (lookahead == '\\') ADVANCE(125); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(267); + if (lookahead != 0) ADVANCE(268); END_STATE(); case 2: - if (lookahead == '\n') SKIP(39); - if (lookahead == '/') ADVANCE(29); - if (lookahead == '[') ADVANCE(88); - if (lookahead == '\\') ADVANCE(146); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(297); - if (lookahead != 0) ADVANCE(298); + ADVANCE_MAP( + '!', 143, + '"', 160, + '#', 80, + '%', 224, + '&', 203, + '\'', 161, + '(', 144, + ')', 146, + '*', 132, + '+', 215, + ',', 140, + '-', 219, + '.', 156, + '/', 222, + '0', 271, + ':', 147, + ';', 145, + '<', 230, + '=', 136, + '>', 152, + '?', 287, + '@', 284, + '[', 148, + '\\', 84, + ']', 149, + '^', 206, + '`', 264, + '{', 139, + '|', 209, + '}', 141, + '~', 240, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(2); + if (lookahead > '#') ADVANCE(282); END_STATE(); case 3: ADVANCE_MAP( - '!', 164, - '"', 187, - '#', 87, - '%', 251, - '&', 230, - '\'', 188, - '(', 165, - ')', 167, - '*', 153, - '+', 242, - ',', 161, - '-', 246, - '.', 183, - '/', 249, - '0', 301, - ':', 168, - ';', 166, - '<', 258, - '=', 157, - '>', 179, - '?', 317, - '@', 314, - '[', 169, - '\\', 106, - ']', 170, - '^', 233, - '`', 294, - '{', 159, - '|', 235, - '}', 162, - '~', 270, + '!', 143, + '"', 160, + '#', 80, + '%', 224, + '&', 203, + '\'', 161, + '(', 144, + ')', 146, + '*', 132, + '+', 215, + ',', 140, + '-', 219, + '.', 156, + '/', 222, + '0', 271, + ':', 147, + ';', 145, + '<', 230, + '=', 136, + '>', 152, + '?', 287, + '@', 284, + '[', 148, + '\\', 84, + ']', 149, + '^', 206, + '`', 264, + '{', 138, + '|', 208, + '}', 141, + '~', 240, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(302); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(3); - if (lookahead > '#') ADVANCE(312); + if (lookahead > '#') ADVANCE(282); END_STATE(); case 4: ADVANCE_MAP( - '!', 164, - '"', 187, - '#', 87, - '%', 251, - '&', 230, - '\'', 188, - '(', 165, - ')', 167, - '*', 153, - '+', 242, - ',', 161, - '-', 246, - '.', 183, - '/', 249, - '0', 301, - ':', 168, - '<', 258, - '=', 157, - '>', 179, - '?', 317, - '@', 314, - '[', 169, - '\\', 106, - '^', 233, - '`', 294, - '{', 160, - '|', 235, - '~', 270, + '!', 143, + '%', 223, + '&', 204, + '(', 144, + ')', 146, + '*', 133, + '+', 214, + ',', 140, + '-', 218, + '.', 155, + '/', 221, + ':', 147, + ';', 145, + '<', 231, + '=', 77, + '>', 153, + '?', 31, + '[', 148, + '\\', 84, + ']', 149, + '^', 205, + '`', 264, + '{', 138, + '|', 210, + '}', 141, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(302); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(4); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(269); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(5); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(312); + (lookahead < '`' || '~' < lookahead)) ADVANCE(282); END_STATE(); case 5: ADVANCE_MAP( - '!', 164, - '"', 187, - '#', 87, - '%', 251, - '&', 230, - '\'', 188, - '(', 165, - ')', 167, - '*', 153, - '+', 242, - ',', 161, - '-', 246, - '.', 184, - '/', 249, - '0', 301, - ':', 168, - ';', 166, - '<', 257, - '=', 157, - '>', 179, - '?', 317, - '@', 314, - '[', 169, - '\\', 106, - ']', 170, - '^', 233, - '`', 294, - '{', 160, - '|', 236, - '}', 162, + '!', 143, + '%', 223, + '&', 204, + '(', 144, + ')', 146, + '*', 133, + '+', 214, + ',', 140, + '-', 218, + '.', 155, + '/', 221, + ':', 147, + ';', 145, + '<', 231, + '=', 77, + '>', 153, + '?', 31, + '[', 148, + '\\', 84, + ']', 149, + '^', 205, + '`', 264, + '{', 138, + '|', 210, + '}', 141, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(302); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(5); if (lookahead > '#' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(312); + (lookahead < '%' || '@' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(282); END_STATE(); case 6: - ADVANCE_MAP( - '!', 164, - '"', 187, - '%', 251, - '&', 230, - '\'', 188, - '(', 165, - ')', 167, - '*', 153, - '+', 242, - ',', 161, - '-', 246, - '.', 182, - '/', 249, - ':', 168, - ';', 166, - '<', 257, - '=', 157, - '>', 179, - '?', 317, - '@', 314, - '[', 169, - '\\', 106, - ']', 170, - '^', 233, - '`', 294, - '{', 159, - '|', 235, - '}', 162, - ); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(6); - if (lookahead > '#' && - (lookahead < '%' || '@' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(312); + if (lookahead == '!') ADVANCE(130); + if (lookahead == '\\') ADVANCE(83); + if (set_contains(sym_identifier_character_set_1, 14, lookahead)) ADVANCE(283); END_STATE(); case 7: ADVANCE_MAP( - '!', 164, - '%', 250, - '&', 231, - '(', 165, - ')', 167, - '*', 154, - '+', 241, - ',', 161, - '-', 245, - '.', 182, - '/', 248, - ':', 168, - ';', 166, - '<', 259, - '=', 156, - '>', 180, - '?', 318, - '[', 169, - '\\', 106, - ']', 170, - '^', 232, - '`', 294, - '{', 159, - '|', 238, - '}', 162, + '!', 142, + '"', 160, + '#', 80, + '&', 202, + '\'', 161, + '(', 144, + ')', 146, + '*', 131, + '+', 214, + ',', 140, + '-', 218, + '.', 156, + '/', 221, + '0', 271, + ':', 147, + ';', 145, + '<', 227, + '=', 137, + '>', 151, + '?', 286, + '@', 284, + '[', 148, + '\\', 84, + ']', 149, + '`', 264, + '{', 138, + '|', 212, + '}', 141, + '~', 240, ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(7); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(312); + (lookahead < '[' || '^' < lookahead)) ADVANCE(282); END_STATE(); case 8: ADVANCE_MAP( - '!', 164, - '%', 250, - '&', 231, - '(', 165, - ')', 167, - '*', 154, - '+', 241, - ',', 161, - '-', 245, - '.', 182, - '/', 248, - ':', 168, - ';', 166, - '<', 259, - '=', 82, - '>', 180, - '?', 36, - '[', 169, - '\\', 106, - ']', 170, - '^', 232, - '`', 294, - '{', 159, - '|', 237, - '}', 162, + '!', 142, + '"', 160, + '#', 80, + '&', 202, + '\'', 161, + '(', 144, + ')', 146, + '*', 131, + '+', 214, + ',', 140, + '-', 218, + '.', 156, + '/', 221, + '0', 271, + '<', 227, + '?', 285, + '@', 284, + '[', 148, + '\\', 84, + ']', 149, + '`', 264, + '{', 139, + '|', 207, + '~', 240, ); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(299); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(9); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(8); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - (lookahead < '`' || '~' < lookahead)) ADVANCE(312); + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(282); END_STATE(); case 9: ADVANCE_MAP( - '!', 164, - '%', 250, - '&', 231, - '(', 165, - ')', 167, - '*', 154, - '+', 241, - ',', 161, - '-', 245, - '.', 182, - '/', 248, - ':', 168, - ';', 166, - '<', 259, - '=', 82, - '>', 180, - '?', 36, - '[', 169, - '\\', 106, - ']', 170, - '^', 232, - '`', 294, - '{', 159, - '|', 237, - '}', 162, + '"', 160, + '#', 80, + '&', 202, + '\'', 161, + '(', 144, + '*', 131, + '+', 213, + ',', 140, + '-', 217, + '.', 30, + '/', 24, + '0', 271, + ';', 145, + '<', 227, + '>', 151, + '?', 285, + '@', 284, + '[', 148, + '\\', 84, + ']', 149, + '`', 264, + '{', 139, + '|', 212, + '}', 141, ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(9); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(312); + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(282); END_STATE(); case 10: - if (lookahead == '!') ADVANCE(151); - if (lookahead == '\\') ADVANCE(105); - if (set_contains(sym_identifier_character_set_1, 14, lookahead)) ADVANCE(313); - END_STATE(); - case 11: ADVANCE_MAP( - '!', 163, - '"', 187, - '#', 87, - '&', 229, - '\'', 188, - '(', 165, - ')', 167, - '*', 152, - '+', 241, - ',', 161, - '-', 245, - '.', 35, - '/', 248, - '0', 301, - '<', 261, - '?', 315, - '@', 314, - '[', 169, - '\\', 106, - ']', 170, - '`', 294, - '{', 160, - '|', 234, - '~', 270, + '"', 160, + '#', 80, + '\'', 161, + '(', 144, + '*', 131, + '+', 213, + ',', 140, + '-', 217, + '.', 30, + '/', 24, + '0', 271, + ';', 145, + '<', 227, + '@', 284, + '[', 148, + '\\', 84, + '{', 138, + '|', 94, + '}', 141, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(302); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(11); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(10); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(312); + lookahead != '`' && + (lookahead < '{' || '~' < lookahead)) ADVANCE(282); END_STATE(); - case 12: + case 11: ADVANCE_MAP( - '!', 163, - '"', 187, - '#', 87, - '&', 229, - '\'', 188, - '(', 165, - ')', 167, - '*', 152, - '+', 240, - ',', 161, - '-', 244, - '.', 183, - '/', 29, - '0', 301, - ':', 168, - ';', 166, - '<', 254, - '=', 158, - '>', 178, - '?', 315, - '@', 314, - '[', 169, - '\\', 106, - ']', 170, - '`', 294, - '{', 160, - '|', 239, - '}', 162, + '"', 160, + '&', 202, + '\'', 161, + '(', 144, + '*', 131, + '+', 213, + '-', 217, + '.', 101, + '/', 25, + '0', 271, + '<', 227, + '>', 151, + '?', 285, + '[', 148, + '\\', 84, + '`', 264, + '{', 139, + '|', 207, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(302); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(12); - if (lookahead > '#' && - (lookahead < '%' || '@' < lookahead) && - (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(312); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(11); + if (lookahead == '$' || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(280); + if (lookahead > '~') ADVANCE(282); + END_STATE(); + case 12: + if (lookahead == '"') ADVANCE(160); + if (lookahead == '&') ADVANCE(16); + if (lookahead == '/') ADVANCE(163); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(162); + if (lookahead != 0) ADVANCE(164); END_STATE(); case 13: - ADVANCE_MAP( - '!', 163, - '"', 187, - '#', 87, - '&', 229, - '\'', 188, - '(', 165, - ')', 167, - '*', 152, - '+', 240, - ',', 161, - '-', 244, - '.', 183, - '/', 29, - '0', 301, - ':', 168, - ';', 166, - '<', 254, - '=', 158, - '>', 178, - '?', 315, - '@', 314, - '[', 169, - '\\', 106, - ']', 170, - '{', 159, - '|', 239, - '}', 162, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(302); + if (lookahead == '"') ADVANCE(160); + if (lookahead == '/') ADVANCE(24); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(13); - if (lookahead > '#' && - (lookahead < '%' || '@' < lookahead) && - (lookahead < '[' || '^' < lookahead) && - lookahead != '`' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(312); END_STATE(); case 14: - ADVANCE_MAP( - '!', 163, - '"', 187, - '#', 87, - '&', 229, - '\'', 188, - '(', 165, - ')', 167, - '+', 241, - ',', 161, - '-', 245, - '.', 183, - '/', 248, - '0', 301, - ':', 168, - ';', 166, - '<', 261, - '=', 158, - '>', 178, - '?', 316, - '@', 314, - '[', 169, - '\\', 106, - ']', 170, - '`', 294, - '{', 159, - '|', 239, - '}', 162, - '~', 270, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(302); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(14); - if (lookahead > '#' && - (lookahead < '%' || '@' < lookahead) && - (lookahead < '[' || '^' < lookahead)) ADVANCE(312); + if (lookahead == '"') ADVANCE(160); + if (lookahead == '/') ADVANCE(243); + if (lookahead == '\\') ADVANCE(85); + if (lookahead == '\n' || + lookahead == '\r') SKIP(13); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(246); + if (lookahead != 0) ADVANCE(248); END_STATE(); case 15: - ADVANCE_MAP( - '"', 187, - '&', 229, - '\'', 188, - '(', 165, - ')', 167, - '*', 152, - ',', 161, - '.', 182, - '/', 29, - ':', 168, - ';', 166, - '<', 254, - '=', 158, - '>', 178, - '?', 316, - '[', 169, - '\\', 106, - ']', 170, - '{', 159, - '|', 239, - '}', 162, - ); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(15); - if (lookahead > '#' && - (lookahead < '%' || '@' < lookahead) && - (lookahead < '[' || '^' < lookahead) && - lookahead != '`' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(312); + if (lookahead == '#') ADVANCE(97); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(76); END_STATE(); case 16: - ADVANCE_MAP( - '"', 187, - '&', 229, - '\'', 188, - '(', 165, - '*', 152, - '+', 240, - '-', 244, - '.', 122, - '/', 30, - '0', 301, - '<', 254, - '>', 178, - '?', 315, - '[', 169, - '\\', 106, - '`', 294, - '{', 160, - '|', 234, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(302); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(16); - if (lookahead == '$' || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(310); - if (lookahead > '~') ADVANCE(312); + if (lookahead == '#') ADVANCE(97); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(76); + if (lookahead != 0) ADVANCE(164); END_STATE(); case 17: - if (lookahead == '"') ADVANCE(187); - if (lookahead == '&') ADVANCE(21); - if (lookahead == '/') ADVANCE(190); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(189); - if (lookahead != 0) ADVANCE(191); + if (lookahead == '#') ADVANCE(97); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(76); + if (lookahead != 0) ADVANCE(170); END_STATE(); case 18: - if (lookahead == '"') ADVANCE(187); - if (lookahead == '/') ADVANCE(29); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(18); + if (lookahead == '$') ADVANCE(86); + if (lookahead == '&') ADVANCE(15); + if (lookahead == '/') ADVANCE(24); + if (lookahead == '<') ADVANCE(228); + if (lookahead == '\\') ADVANCE(85); + if (lookahead == '`') ADVANCE(264); + if (lookahead == '{') ADVANCE(138); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(19); END_STATE(); case 19: - if (lookahead == '"') ADVANCE(187); - if (lookahead == '/') ADVANCE(273); - if (lookahead == '\\') ADVANCE(107); - if (lookahead == '\n' || - lookahead == '\r') SKIP(18); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(276); - if (lookahead != 0) ADVANCE(278); + if (lookahead == '$') ADVANCE(86); + if (lookahead == '&') ADVANCE(15); + if (lookahead == '/') ADVANCE(24); + if (lookahead == '<') ADVANCE(228); + if (lookahead == '`') ADVANCE(264); + if (lookahead == '{') ADVANCE(138); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(19); END_STATE(); case 20: - if (lookahead == '#') ADVANCE(118); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(81); + ADVANCE_MAP( + '&', 202, + '(', 144, + '+', 78, + ',', 140, + '-', 79, + '.', 155, + '/', 25, + ':', 147, + '<', 227, + '=', 134, + '>', 151, + '?', 37, + '[', 148, + '\\', 84, + '{', 138, + '|', 207, + ); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(20); + if (lookahead == '$' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(280); + if (lookahead > '~') ADVANCE(282); END_STATE(); case 21: - if (lookahead == '#') ADVANCE(118); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(81); - if (lookahead != 0) ADVANCE(191); + if (lookahead == '&') ADVANCE(17); + if (lookahead == '\'') ADVANCE(161); + if (lookahead == '/') ADVANCE(169); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(168); + if (lookahead != 0) ADVANCE(170); END_STATE(); case 22: - if (lookahead == '#') ADVANCE(118); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(81); - if (lookahead != 0) ADVANCE(197); + if (lookahead == '\'') ADVANCE(161); + if (lookahead == '/') ADVANCE(24); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(22); END_STATE(); case 23: - if (lookahead == '$') ADVANCE(108); - if (lookahead == '&') ADVANCE(20); - if (lookahead == '/') ADVANCE(29); - if (lookahead == '<') ADVANCE(255); - if (lookahead == '\\') ADVANCE(107); - if (lookahead == '`') ADVANCE(294); - if (lookahead == '{') ADVANCE(159); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(24); + if (lookahead == '\'') ADVANCE(161); + if (lookahead == '/') ADVANCE(249); + if (lookahead == '\\') ADVANCE(85); + if (lookahead == '\n' || + lookahead == '\r') SKIP(22); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(252); + if (lookahead != 0) ADVANCE(254); END_STATE(); case 24: - if (lookahead == '$') ADVANCE(108); - if (lookahead == '&') ADVANCE(20); - if (lookahead == '/') ADVANCE(29); - if (lookahead == '<') ADVANCE(255); - if (lookahead == '`') ADVANCE(294); - if (lookahead == '{') ADVANCE(159); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(24); + if (lookahead == '*') ADVANCE(27); + if (lookahead == '/') ADVANCE(263); END_STATE(); case 25: - ADVANCE_MAP( - '&', 229, - '(', 165, - '+', 85, - ',', 161, - '-', 86, - '.', 182, - '/', 30, - ':', 168, - '<', 254, - '=', 155, - '>', 178, - '?', 42, - '[', 169, - '\\', 106, - '{', 159, - '|', 234, - ); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(25); - if (lookahead == '$' || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(310); - if (lookahead > '~') ADVANCE(312); + if (lookahead == '*') ADVANCE(27); + if (lookahead == '/') ADVANCE(263); + if (lookahead == '>') ADVANCE(159); END_STATE(); case 26: - if (lookahead == '&') ADVANCE(22); - if (lookahead == '\'') ADVANCE(188); - if (lookahead == '/') ADVANCE(196); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(195); - if (lookahead != 0) ADVANCE(197); + if (lookahead == '*') ADVANCE(26); + if (lookahead == '/') ADVANCE(260); + if (lookahead != 0) ADVANCE(27); END_STATE(); case 27: - if (lookahead == '\'') ADVANCE(188); - if (lookahead == '/') ADVANCE(29); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(27); + if (lookahead == '*') ADVANCE(26); + if (lookahead != 0) ADVANCE(27); END_STATE(); case 28: - if (lookahead == '\'') ADVANCE(188); - if (lookahead == '/') ADVANCE(279); - if (lookahead == '\\') ADVANCE(107); - if (lookahead == '\n' || - lookahead == '\r') SKIP(27); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(282); - if (lookahead != 0) ADVANCE(284); + if (lookahead == '*') ADVANCE(165); + if (lookahead == '#' || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(27); + if (lookahead != 0) ADVANCE(166); END_STATE(); case 29: - if (lookahead == '*') ADVANCE(32); - if (lookahead == '/') ADVANCE(293); + if (lookahead == '*') ADVANCE(171); + if (lookahead == '#' || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(27); + if (lookahead != 0) ADVANCE(172); END_STATE(); case 30: - if (lookahead == '*') ADVANCE(32); - if (lookahead == '/') ADVANCE(293); - if (lookahead == '>') ADVANCE(186); + if (lookahead == '.') ADVANCE(32); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(277); END_STATE(); case 31: - if (lookahead == '*') ADVANCE(31); - if (lookahead == '/') ADVANCE(290); - if (lookahead != 0) ADVANCE(32); + if (lookahead == '.') ADVANCE(175); + if (lookahead == '?') ADVANCE(238); END_STATE(); case 32: - if (lookahead == '*') ADVANCE(31); - if (lookahead != 0) ADVANCE(32); + if (lookahead == '.') ADVANCE(191); END_STATE(); case 33: - if (lookahead == '*') ADVANCE(192); - if (lookahead == '#' || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(32); - if (lookahead != 0) ADVANCE(193); + if (lookahead == '/') ADVANCE(266); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(34); END_STATE(); case 34: - if (lookahead == '*') ADVANCE(198); - if (lookahead == '#' || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(32); - if (lookahead != 0) ADVANCE(199); + if (lookahead == '/') ADVANCE(24); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(34); END_STATE(); case 35: - if (lookahead == '.') ADVANCE(37); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(307); + if (lookahead == ':') ADVANCE(290); END_STATE(); case 36: - if (lookahead == '.') ADVANCE(202); - if (lookahead == '?') ADVANCE(268); + if (lookahead == ':') ADVANCE(289); END_STATE(); case 37: - if (lookahead == '.') ADVANCE(218); + if (lookahead == ':') ADVANCE(291); END_STATE(); case 38: - if (lookahead == '/') ADVANCE(296); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(39); + if (lookahead == ';') ADVANCE(150); END_STATE(); case 39: - if (lookahead == '/') ADVANCE(29); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(39); + if (lookahead == ';') ADVANCE(150); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38); END_STATE(); case 40: - if (lookahead == ':') ADVANCE(320); + if (lookahead == ';') ADVANCE(150); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(39); END_STATE(); case 41: - if (lookahead == ':') ADVANCE(319); + if (lookahead == ';') ADVANCE(150); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(40); END_STATE(); case 42: - if (lookahead == ':') ADVANCE(321); + if (lookahead == ';') ADVANCE(150); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(41); END_STATE(); case 43: - if (lookahead == ';') ADVANCE(177); + if (lookahead == ';') ADVANCE(150); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(38); END_STATE(); case 44: - if (lookahead == ';') ADVANCE(177); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(43); + if (lookahead == ';') ADVANCE(150); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(43); END_STATE(); case 45: - if (lookahead == ';') ADVANCE(177); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(44); + if (lookahead == ';') ADVANCE(150); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(44); END_STATE(); case 46: - if (lookahead == ';') ADVANCE(177); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(45); + if (lookahead == ';') ADVANCE(150); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(45); END_STATE(); case 47: - if (lookahead == ';') ADVANCE(177); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(46); - END_STATE(); - case 48: - if (lookahead == ';') ADVANCE(177); + if (lookahead == ';') ADVANCE(150); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(43); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(46); + END_STATE(); + case 48: + if (lookahead == ';') ADVANCE(150); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(38); END_STATE(); case 49: - if (lookahead == ';') ADVANCE(177); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(48); + if (lookahead == ';') ADVANCE(150); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 50: - if (lookahead == ';') ADVANCE(177); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(49); + if (lookahead == ';') ADVANCE(150); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(49); END_STATE(); case 51: - if (lookahead == ';') ADVANCE(177); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(50); + if (lookahead == ';') ADVANCE(150); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(50); END_STATE(); case 52: - if (lookahead == ';') ADVANCE(177); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(51); + if (lookahead == ';') ADVANCE(150); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(51); END_STATE(); case 53: - if (lookahead == ';') ADVANCE(177); + if (lookahead == ';') ADVANCE(150); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(43); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(52); END_STATE(); case 54: - if (lookahead == ';') ADVANCE(177); + if (lookahead == ';') ADVANCE(150); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(53); END_STATE(); case 55: - if (lookahead == ';') ADVANCE(177); + if (lookahead == ';') ADVANCE(150); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(54); END_STATE(); case 56: - if (lookahead == ';') ADVANCE(177); + if (lookahead == ';') ADVANCE(150); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(55); END_STATE(); case 57: - if (lookahead == ';') ADVANCE(177); + if (lookahead == ';') ADVANCE(150); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(56); END_STATE(); case 58: - if (lookahead == ';') ADVANCE(177); + if (lookahead == ';') ADVANCE(150); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(57); END_STATE(); case 59: - if (lookahead == ';') ADVANCE(177); + if (lookahead == ';') ADVANCE(150); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(58); END_STATE(); case 60: - if (lookahead == ';') ADVANCE(177); + if (lookahead == ';') ADVANCE(150); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(59); END_STATE(); case 61: - if (lookahead == ';') ADVANCE(177); + if (lookahead == ';') ADVANCE(150); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(60); END_STATE(); case 62: - if (lookahead == ';') ADVANCE(177); + if (lookahead == ';') ADVANCE(150); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(61); END_STATE(); case 63: - if (lookahead == ';') ADVANCE(177); + if (lookahead == ';') ADVANCE(150); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(62); END_STATE(); case 64: - if (lookahead == ';') ADVANCE(177); + if (lookahead == ';') ADVANCE(150); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(63); END_STATE(); case 65: - if (lookahead == ';') ADVANCE(177); + if (lookahead == ';') ADVANCE(150); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(64); END_STATE(); case 66: - if (lookahead == ';') ADVANCE(177); + if (lookahead == ';') ADVANCE(150); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(65); END_STATE(); case 67: - if (lookahead == ';') ADVANCE(177); + if (lookahead == ';') ADVANCE(150); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(66); END_STATE(); case 68: - if (lookahead == ';') ADVANCE(177); + if (lookahead == ';') ADVANCE(150); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(67); END_STATE(); case 69: - if (lookahead == ';') ADVANCE(177); + if (lookahead == ';') ADVANCE(150); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(68); END_STATE(); case 70: - if (lookahead == ';') ADVANCE(177); + if (lookahead == ';') ADVANCE(150); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(69); END_STATE(); case 71: - if (lookahead == ';') ADVANCE(177); + if (lookahead == ';') ADVANCE(150); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(70); END_STATE(); case 72: - if (lookahead == ';') ADVANCE(177); + if (lookahead == ';') ADVANCE(150); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(71); END_STATE(); case 73: - if (lookahead == ';') ADVANCE(177); + if (lookahead == ';') ADVANCE(150); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(72); END_STATE(); case 74: - if (lookahead == ';') ADVANCE(177); + if (lookahead == ';') ADVANCE(150); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(73); END_STATE(); case 75: - if (lookahead == ';') ADVANCE(177); + if (lookahead == ';') ADVANCE(150); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(74); END_STATE(); case 76: - if (lookahead == ';') ADVANCE(177); + if (lookahead == ';') ADVANCE(150); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(75); END_STATE(); case 77: - if (lookahead == ';') ADVANCE(177); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(76); + if (lookahead == '=') ADVANCE(233); END_STATE(); case 78: - if (lookahead == ';') ADVANCE(177); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(77); + if (lookahead == '?') ADVANCE(35); END_STATE(); case 79: - if (lookahead == ';') ADVANCE(177); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(78); + if (lookahead == '?') ADVANCE(36); END_STATE(); case 80: - if (lookahead == ';') ADVANCE(177); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(79); + if (lookahead == '\\') ADVANCE(83); + if (set_contains(sym_identifier_character_set_1, 14, lookahead)) ADVANCE(283); END_STATE(); case 81: - if (lookahead == ';') ADVANCE(177); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(80); + if (lookahead == '\\') ADVANCE(124); + if (lookahead == ']') ADVANCE(268); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(81); END_STATE(); case 82: - if (lookahead == '=') ADVANCE(263); + if (lookahead == 'u') ADVANCE(87); + if (lookahead == 'x') ADVANCE(114); + if (lookahead == '\r' || + lookahead == '?') ADVANCE(257); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(259); + if (lookahead != 0) ADVANCE(255); END_STATE(); case 83: - if (lookahead == '>') ADVANCE(175); + if (lookahead == 'u') ADVANCE(88); END_STATE(); case 84: - if (lookahead == '>') ADVANCE(176); + if (lookahead == 'u') ADVANCE(89); END_STATE(); case 85: - if (lookahead == '?') ADVANCE(40); + if (lookahead == 'u') ADVANCE(90); + if (lookahead == 'x') ADVANCE(114); + if (lookahead == '\r' || + lookahead == '?') ADVANCE(257); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(259); + if (lookahead != 0) ADVANCE(255); END_STATE(); case 86: - if (lookahead == '?') ADVANCE(41); + if (lookahead == '{') ADVANCE(265); END_STATE(); case 87: - if (lookahead == '\\') ADVANCE(105); - if (set_contains(sym_identifier_character_set_1, 14, lookahead)) ADVANCE(313); + if (lookahead == '{') ADVANCE(108); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(119); END_STATE(); case 88: - if (lookahead == '\\') ADVANCE(145); - if (lookahead == ']') ADVANCE(298); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(88); + if (lookahead == '{') ADVANCE(112); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(120); END_STATE(); case 89: - if (lookahead == 'a') ADVANCE(101); + if (lookahead == '{') ADVANCE(113); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(121); END_STATE(); case 90: - if (lookahead == 'a') ADVANCE(102); + if (lookahead == '{') ADVANCE(115); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(111); END_STATE(); case 91: - if (lookahead == 'e') ADVANCE(97); + if (lookahead == '}') ADVANCE(282); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(91); END_STATE(); case 92: - if (lookahead == 'e') ADVANCE(83); + if (lookahead == '}') ADVANCE(283); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(92); END_STATE(); case 93: - if (lookahead == 'e') ADVANCE(84); + if (lookahead == '}') ADVANCE(255); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(93); END_STATE(); case 94: - if (lookahead == 'e') ADVANCE(98); + if (lookahead == '}') ADVANCE(293); END_STATE(); case 95: - if (lookahead == 'l') ADVANCE(89); + if (lookahead == '}') ADVANCE(256); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(95); END_STATE(); case 96: - if (lookahead == 'l') ADVANCE(90); + if (lookahead == '+' || + lookahead == '-') ADVANCE(103); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(278); END_STATE(); case 97: - if (lookahead == 'm') ADVANCE(99); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(110); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(42); END_STATE(); case 98: - if (lookahead == 'm') ADVANCE(100); + if (lookahead == '0' || + lookahead == '1') ADVANCE(274); END_STATE(); case 99: - if (lookahead == 'p') ADVANCE(95); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(275); END_STATE(); case 100: - if (lookahead == 'p') ADVANCE(96); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(272); END_STATE(); case 101: - if (lookahead == 't') ADVANCE(92); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(277); END_STATE(); case 102: - if (lookahead == 't') ADVANCE(93); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(273); END_STATE(); case 103: - if (lookahead == 't') ADVANCE(94); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(278); END_STATE(); case 104: - if (lookahead == 'u') ADVANCE(109); - if (lookahead == 'x') ADVANCE(135); - if (lookahead == '\r' || - lookahead == '?') ADVANCE(287); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(289); - if (lookahead != 0) ADVANCE(285); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(282); END_STATE(); case 105: - if (lookahead == 'u') ADVANCE(110); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(283); END_STATE(); case 106: - if (lookahead == 'u') ADVANCE(111); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(255); END_STATE(); case 107: - if (lookahead == 'u') ADVANCE(112); - if (lookahead == 'x') ADVANCE(135); - if (lookahead == '\r' || - lookahead == '?') ADVANCE(287); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(289); - if (lookahead != 0) ADVANCE(285); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(276); END_STATE(); case 108: - if (lookahead == '{') ADVANCE(295); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(95); END_STATE(); case 109: - if (lookahead == '{') ADVANCE(129); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(140); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(256); END_STATE(); case 110: - if (lookahead == '{') ADVANCE(133); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(141); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(47); END_STATE(); case 111: - if (lookahead == '{') ADVANCE(134); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(142); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(114); END_STATE(); case 112: - if (lookahead == '{') ADVANCE(136); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(132); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(92); END_STATE(); case 113: - if (lookahead == '}') ADVANCE(312); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(113); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(91); END_STATE(); case 114: - if (lookahead == '}') ADVANCE(313); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(114); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(106); END_STATE(); case 115: - if (lookahead == '}') ADVANCE(285); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(93); END_STATE(); case 116: - if (lookahead == '}') ADVANCE(286); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(116); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(109); END_STATE(); case 117: - if (lookahead == '+' || - lookahead == '-') ADVANCE(124); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(308); - END_STATE(); - case 118: - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(131); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(47); - END_STATE(); - case 119: - if (lookahead == '0' || - lookahead == '1') ADVANCE(304); - END_STATE(); - case 120: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(305); - END_STATE(); - case 121: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(302); - END_STATE(); - case 122: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(307); - END_STATE(); - case 123: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(303); - END_STATE(); - case 124: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(308); - END_STATE(); - case 125: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(312); - END_STATE(); - case 126: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(313); - END_STATE(); - case 127: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(285); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(105); END_STATE(); - case 128: + case 118: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(306); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(104); END_STATE(); - case 129: + case 119: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(116); END_STATE(); - case 130: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(286); - END_STATE(); - case 131: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(52); - END_STATE(); - case 132: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(135); - END_STATE(); - case 133: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(114); - END_STATE(); - case 134: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(113); - END_STATE(); - case 135: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(127); - END_STATE(); - case 136: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(115); - END_STATE(); - case 137: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(130); - END_STATE(); - case 138: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(126); - END_STATE(); - case 139: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(125); - END_STATE(); - case 140: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(137); - END_STATE(); - case 141: + case 120: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(138); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(117); END_STATE(); - case 142: + case 121: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(139); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(118); END_STATE(); - case 143: + case 122: if (lookahead != 0 && lookahead != '#' && (lookahead < 'A' || 'Z' < lookahead) && - (lookahead < 'a' || 'z' < lookahead)) ADVANCE(191); + (lookahead < 'a' || 'z' < lookahead)) ADVANCE(164); END_STATE(); - case 144: + case 123: if (lookahead != 0 && lookahead != '#' && (lookahead < 'A' || 'Z' < lookahead) && - (lookahead < 'a' || 'z' < lookahead)) ADVANCE(197); + (lookahead < 'a' || 'z' < lookahead)) ADVANCE(170); END_STATE(); - case 145: + case 124: if (lookahead != 0 && - lookahead != '\n') ADVANCE(88); + lookahead != '\n') ADVANCE(81); END_STATE(); - case 146: + case 125: if (lookahead != 0 && - lookahead != '\n') ADVANCE(298); + lookahead != '\n') ADVANCE(268); END_STATE(); - case 147: - if (eof) ADVANCE(150); + case 126: + if (eof) ADVANCE(129); ADVANCE_MAP( - '!', 164, - '"', 187, - '#', 10, - '$', 311, - '%', 251, - '&', 230, - '\'', 188, - '(', 165, - ')', 167, - '*', 153, - '+', 243, - ',', 161, - '-', 247, - '.', 183, - '/', 249, - '0', 301, - ':', 168, - ';', 166, - '<', 256, - '=', 157, - '>', 179, - '?', 317, - '@', 314, - '[', 169, - '\\', 106, - ']', 170, - '^', 233, - '`', 294, - '{', 160, - '|', 236, - '}', 162, - '~', 270, + '!', 143, + '"', 160, + '#', 6, + '$', 281, + '%', 224, + '&', 203, + '\'', 161, + '(', 144, + ')', 146, + '*', 132, + '+', 216, + ',', 140, + '-', 220, + '.', 156, + '/', 222, + '0', 271, + ':', 147, + ';', 145, + '<', 229, + '=', 136, + '>', 152, + '?', 287, + '@', 284, + '[', 148, + '\\', 84, + ']', 149, + '^', 206, + '`', 264, + '{', 139, + '|', 209, + '}', 141, + '~', 240, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(302); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(147); - if (lookahead > '@') ADVANCE(312); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(126); + if (lookahead > '@') ADVANCE(282); END_STATE(); - case 148: - if (eof) ADVANCE(150); + case 127: + if (eof) ADVANCE(129); ADVANCE_MAP( - '!', 164, - '"', 187, - '#', 87, - '%', 250, - '&', 231, - '\'', 188, - '(', 165, - ')', 167, - '*', 154, - '+', 241, - ',', 161, - '-', 245, - '.', 184, - '/', 248, - '0', 301, - ':', 168, - ';', 166, - '<', 260, - '=', 156, - '>', 180, - '?', 36, - '@', 314, - '[', 169, - '\\', 106, - ']', 170, - '^', 232, - '`', 294, - '{', 159, - '|', 237, - '}', 162, - '~', 270, + '!', 143, + '"', 160, + '#', 80, + '%', 223, + '&', 204, + '\'', 161, + '(', 144, + ')', 146, + '*', 133, + '+', 214, + ',', 140, + '-', 218, + '.', 157, + '/', 221, + '0', 271, + ':', 147, + ';', 145, + '<', 231, + '=', 135, + '>', 153, + '?', 288, + '@', 284, + '[', 148, + '\\', 84, + ']', 149, + '^', 205, + '`', 264, + '{', 138, + '|', 211, + '}', 141, + '~', 240, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(302); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(148); - if (lookahead > '#') ADVANCE(312); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(127); + if (lookahead > '#') ADVANCE(282); END_STATE(); - case 149: - if (eof) ADVANCE(150); + case 128: + if (eof) ADVANCE(129); ADVANCE_MAP( - '!', 163, - '"', 187, - '#', 10, - '&', 229, - '\'', 188, - '(', 165, - ')', 167, - '*', 152, - '+', 241, - ',', 161, - '-', 245, - '.', 183, - '/', 248, - '0', 301, - ':', 168, - ';', 166, - '<', 261, - '=', 158, - '>', 178, - '?', 315, - '@', 314, - '[', 169, - '\\', 106, - ']', 170, - '`', 294, - '{', 159, - '|', 239, - '}', 162, - '~', 270, + '!', 142, + '"', 160, + '#', 6, + '&', 202, + '\'', 161, + '(', 144, + ')', 146, + '*', 131, + '+', 214, + ',', 140, + '-', 218, + '.', 156, + '/', 221, + '0', 271, + ':', 147, + ';', 145, + '<', 227, + '=', 137, + '>', 151, + '?', 285, + '@', 284, + '[', 148, + '\\', 84, + ']', 149, + '`', 264, + '{', 138, + '|', 212, + '}', 141, + '~', 240, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(302); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(149); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(128); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - (lookahead < '[' || '^' < lookahead)) ADVANCE(312); + (lookahead < '[' || '^' < lookahead)) ADVANCE(282); END_STATE(); - case 150: + case 129: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 151: + case 130: ACCEPT_TOKEN(sym_hash_bang_line); if (lookahead != 0 && - lookahead != '\n') ADVANCE(151); + lookahead != '\n') ADVANCE(130); END_STATE(); - case 152: + case 131: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 153: + case 132: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(253); - if (lookahead == '=') ADVANCE(205); + if (lookahead == '*') ADVANCE(226); + if (lookahead == '=') ADVANCE(178); END_STATE(); - case 154: + case 133: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(252); + if (lookahead == '*') ADVANCE(225); END_STATE(); - case 155: + case 134: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 156: + case 135: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(263); + if (lookahead == '=') ADVANCE(233); END_STATE(); - case 157: + case 136: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(263); - if (lookahead == '>') ADVANCE(201); + if (lookahead == '=') ADVANCE(233); + if (lookahead == '>') ADVANCE(174); END_STATE(); - case 158: + case 137: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '>') ADVANCE(201); + if (lookahead == '>') ADVANCE(174); END_STATE(); - case 159: + case 138: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 160: + case 139: ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '|') ADVANCE(322); + if (lookahead == '|') ADVANCE(292); END_STATE(); - case 161: + case 140: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 162: + case 141: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 163: + case 142: ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); - case 164: + case 143: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(265); + if (lookahead == '=') ADVANCE(235); END_STATE(); - case 165: + case 144: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 166: + case 145: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 167: + case 146: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 168: + case 147: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 169: + case 148: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 170: + case 149: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 171: - ACCEPT_TOKEN(sym__glimmer_template_content); - END_STATE(); - case 172: - ACCEPT_TOKEN(sym__glimmer_template_content); - if (lookahead == '*') ADVANCE(32); - if (lookahead == '/') ADVANCE(293); - END_STATE(); - case 173: - ACCEPT_TOKEN(sym__glimmer_template_content); - if (lookahead == '/') ADVANCE(172); - if (lookahead == '<') ADVANCE(174); - if ((set_contains(extras_character_set_1, 10, lookahead)) && - lookahead != '\n') ADVANCE(173); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(171); - END_STATE(); - case 174: - ACCEPT_TOKEN(sym__glimmer_template_content); - if (lookahead == '/') ADVANCE(103); - END_STATE(); - case 175: - ACCEPT_TOKEN(sym_glimmer_opening_tag); - END_STATE(); - case 176: - ACCEPT_TOKEN(sym_glimmer_closing_tag); - END_STATE(); - case 177: + case 150: ACCEPT_TOKEN(sym_html_character_reference); END_STATE(); - case 178: + case 151: ACCEPT_TOKEN(anon_sym_GT); END_STATE(); - case 179: + case 152: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(267); - if (lookahead == '>') ADVANCE(223); + if (lookahead == '=') ADVANCE(237); + if (lookahead == '>') ADVANCE(196); END_STATE(); - case 180: + case 153: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(267); - if (lookahead == '>') ADVANCE(224); + if (lookahead == '=') ADVANCE(237); + if (lookahead == '>') ADVANCE(197); END_STATE(); - case 181: + case 154: ACCEPT_TOKEN(sym_jsx_identifier); if (lookahead == '$' || lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(154); END_STATE(); - case 182: + case 155: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 183: + case 156: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(37); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(307); + if (lookahead == '.') ADVANCE(32); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(277); END_STATE(); - case 184: + case 157: ACCEPT_TOKEN(anon_sym_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(307); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(277); END_STATE(); - case 185: + case 158: ACCEPT_TOKEN(anon_sym_LT_SLASH); END_STATE(); - case 186: + case 159: ACCEPT_TOKEN(anon_sym_SLASH_GT); END_STATE(); - case 187: + case 160: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 188: + case 161: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 189: + case 162: ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); - if (lookahead == '&') ADVANCE(21); - if (lookahead == '/') ADVANCE(190); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(189); + if (lookahead == '&') ADVANCE(16); + if (lookahead == '/') ADVANCE(163); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(162); if (lookahead != 0 && - lookahead != '"') ADVANCE(191); + lookahead != '"') ADVANCE(164); END_STATE(); - case 190: + case 163: ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); - if (lookahead == '&') ADVANCE(143); - if (lookahead == '*') ADVANCE(193); - if (lookahead == '/') ADVANCE(194); + if (lookahead == '&') ADVANCE(122); + if (lookahead == '*') ADVANCE(166); + if (lookahead == '/') ADVANCE(167); if (lookahead != 0 && - lookahead != '"') ADVANCE(191); + lookahead != '"') ADVANCE(164); END_STATE(); - case 191: + case 164: ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); - if (lookahead == '&') ADVANCE(143); + if (lookahead == '&') ADVANCE(122); if (lookahead != 0 && - lookahead != '"') ADVANCE(191); + lookahead != '"') ADVANCE(164); END_STATE(); - case 192: + case 165: ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); - if (lookahead == '&') ADVANCE(33); - if (lookahead == '*') ADVANCE(192); - if (lookahead == '/') ADVANCE(191); + if (lookahead == '&') ADVANCE(28); + if (lookahead == '*') ADVANCE(165); + if (lookahead == '/') ADVANCE(164); if (lookahead != 0 && - lookahead != '"') ADVANCE(193); + lookahead != '"') ADVANCE(166); END_STATE(); - case 193: + case 166: ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); - if (lookahead == '&') ADVANCE(33); - if (lookahead == '*') ADVANCE(192); + if (lookahead == '&') ADVANCE(28); + if (lookahead == '*') ADVANCE(165); if (lookahead != 0 && - lookahead != '"') ADVANCE(193); + lookahead != '"') ADVANCE(166); END_STATE(); - case 194: + case 167: ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); - if (lookahead == '&') ADVANCE(291); + if (lookahead == '&') ADVANCE(261); if (lookahead == '\n' || lookahead == '\r' || lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(191); + lookahead == 0x2029) ADVANCE(164); if (lookahead != 0 && - lookahead != '"') ADVANCE(194); + lookahead != '"') ADVANCE(167); END_STATE(); - case 195: + case 168: ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); - if (lookahead == '&') ADVANCE(22); - if (lookahead == '/') ADVANCE(196); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(195); + if (lookahead == '&') ADVANCE(17); + if (lookahead == '/') ADVANCE(169); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(168); if (lookahead != 0 && lookahead != '&' && - lookahead != '\'') ADVANCE(197); + lookahead != '\'') ADVANCE(170); END_STATE(); - case 196: + case 169: ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); - if (lookahead == '&') ADVANCE(144); - if (lookahead == '*') ADVANCE(199); - if (lookahead == '/') ADVANCE(200); + if (lookahead == '&') ADVANCE(123); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '/') ADVANCE(173); if (lookahead != 0 && lookahead != '&' && - lookahead != '\'') ADVANCE(197); + lookahead != '\'') ADVANCE(170); END_STATE(); - case 197: + case 170: ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); - if (lookahead == '&') ADVANCE(144); + if (lookahead == '&') ADVANCE(123); if (lookahead != 0 && lookahead != '&' && - lookahead != '\'') ADVANCE(197); + lookahead != '\'') ADVANCE(170); END_STATE(); - case 198: + case 171: ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); - if (lookahead == '&') ADVANCE(34); - if (lookahead == '*') ADVANCE(198); - if (lookahead == '/') ADVANCE(197); + if (lookahead == '&') ADVANCE(29); + if (lookahead == '*') ADVANCE(171); + if (lookahead == '/') ADVANCE(170); if (lookahead != 0 && lookahead != '&' && - lookahead != '\'') ADVANCE(199); + lookahead != '\'') ADVANCE(172); END_STATE(); - case 199: + case 172: ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); - if (lookahead == '&') ADVANCE(34); - if (lookahead == '*') ADVANCE(198); + if (lookahead == '&') ADVANCE(29); + if (lookahead == '*') ADVANCE(171); if (lookahead != 0 && lookahead != '&' && - lookahead != '\'') ADVANCE(199); + lookahead != '\'') ADVANCE(172); END_STATE(); - case 200: + case 173: ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); - if (lookahead == '&') ADVANCE(292); + if (lookahead == '&') ADVANCE(262); if (lookahead == '\n' || lookahead == '\r' || lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(197); + lookahead == 0x2029) ADVANCE(170); if (lookahead != 0 && lookahead != '&' && - lookahead != '\'') ADVANCE(200); + lookahead != '\'') ADVANCE(173); END_STATE(); - case 201: + case 174: ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); - case 202: + case 175: ACCEPT_TOKEN(anon_sym_QMARK_DOT); END_STATE(); - case 203: + case 176: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 204: + case 177: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 205: + case 178: ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); - case 206: + case 179: ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); - case 207: + case 180: ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); - case 208: + case 181: ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); - case 209: + case 182: ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); - case 210: + case 183: ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); - case 211: + case 184: ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); - case 212: + case 185: ACCEPT_TOKEN(anon_sym_GT_GT_GT_EQ); END_STATE(); - case 213: + case 186: ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); - case 214: + case 187: ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); END_STATE(); - case 215: + case 188: ACCEPT_TOKEN(anon_sym_AMP_AMP_EQ); END_STATE(); - case 216: + case 189: ACCEPT_TOKEN(anon_sym_PIPE_PIPE_EQ); END_STATE(); - case 217: + case 190: ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ); END_STATE(); - case 218: + case 191: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); - case 219: + case 192: ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); - case 220: + case 193: ACCEPT_TOKEN(anon_sym_AMP_AMP); - if (lookahead == '=') ADVANCE(215); + if (lookahead == '=') ADVANCE(188); END_STATE(); - case 221: + case 194: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); - case 222: + case 195: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); - if (lookahead == '=') ADVANCE(216); + if (lookahead == '=') ADVANCE(189); END_STATE(); - case 223: + case 196: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(211); - if (lookahead == '>') ADVANCE(226); + if (lookahead == '=') ADVANCE(184); + if (lookahead == '>') ADVANCE(199); END_STATE(); - case 224: + case 197: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '>') ADVANCE(225); + if (lookahead == '>') ADVANCE(198); END_STATE(); - case 225: + case 198: ACCEPT_TOKEN(anon_sym_GT_GT_GT); END_STATE(); - case 226: + case 199: ACCEPT_TOKEN(anon_sym_GT_GT_GT); - if (lookahead == '=') ADVANCE(212); + if (lookahead == '=') ADVANCE(185); END_STATE(); - case 227: + case 200: ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); - case 228: + case 201: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(213); + if (lookahead == '=') ADVANCE(186); END_STATE(); - case 229: + case 202: ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); - case 230: + case 203: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(220); - if (lookahead == '=') ADVANCE(209); + if (lookahead == '&') ADVANCE(193); + if (lookahead == '=') ADVANCE(182); END_STATE(); - case 231: + case 204: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(219); + if (lookahead == '&') ADVANCE(192); END_STATE(); - case 232: + case 205: ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 233: + case 206: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(208); + if (lookahead == '=') ADVANCE(181); END_STATE(); - case 234: + case 207: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 235: + case 208: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(210); - if (lookahead == '|') ADVANCE(222); + if (lookahead == '=') ADVANCE(183); + if (lookahead == '|') ADVANCE(195); END_STATE(); - case 236: + case 209: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(210); - if (lookahead == '|') ADVANCE(222); - if (lookahead == '}') ADVANCE(323); + if (lookahead == '=') ADVANCE(183); + if (lookahead == '|') ADVANCE(195); + if (lookahead == '}') ADVANCE(293); END_STATE(); - case 237: + case 210: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(221); + if (lookahead == '|') ADVANCE(194); END_STATE(); - case 238: + case 211: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(221); - if (lookahead == '}') ADVANCE(323); + if (lookahead == '|') ADVANCE(194); + if (lookahead == '}') ADVANCE(293); END_STATE(); - case 239: + case 212: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '}') ADVANCE(323); + if (lookahead == '}') ADVANCE(293); END_STATE(); - case 240: + case 213: ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); - case 241: + case 214: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(271); + if (lookahead == '+') ADVANCE(241); END_STATE(); - case 242: + case 215: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(271); - if (lookahead == '=') ADVANCE(203); + if (lookahead == '+') ADVANCE(241); + if (lookahead == '=') ADVANCE(176); END_STATE(); - case 243: + case 216: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(271); - if (lookahead == '=') ADVANCE(203); - if (lookahead == '?') ADVANCE(40); + if (lookahead == '+') ADVANCE(241); + if (lookahead == '=') ADVANCE(176); + if (lookahead == '?') ADVANCE(35); END_STATE(); - case 244: + case 217: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 245: + case 218: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(272); + if (lookahead == '-') ADVANCE(242); END_STATE(); - case 246: + case 219: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(272); - if (lookahead == '=') ADVANCE(204); + if (lookahead == '-') ADVANCE(242); + if (lookahead == '=') ADVANCE(177); END_STATE(); - case 247: + case 220: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(272); - if (lookahead == '=') ADVANCE(204); - if (lookahead == '?') ADVANCE(41); + if (lookahead == '-') ADVANCE(242); + if (lookahead == '=') ADVANCE(177); + if (lookahead == '?') ADVANCE(36); END_STATE(); - case 248: + case 221: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(32); - if (lookahead == '/') ADVANCE(293); + if (lookahead == '*') ADVANCE(27); + if (lookahead == '/') ADVANCE(263); END_STATE(); - case 249: + case 222: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(32); - if (lookahead == '/') ADVANCE(293); - if (lookahead == '=') ADVANCE(206); + if (lookahead == '*') ADVANCE(27); + if (lookahead == '/') ADVANCE(263); + if (lookahead == '=') ADVANCE(179); END_STATE(); - case 250: + case 223: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 251: + case 224: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(207); + if (lookahead == '=') ADVANCE(180); END_STATE(); - case 252: + case 225: ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); - case 253: + case 226: ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '=') ADVANCE(214); - END_STATE(); - case 254: - ACCEPT_TOKEN(anon_sym_LT); - END_STATE(); - case 255: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '/') ADVANCE(185); - END_STATE(); - case 256: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '/') ADVANCE(185); - if (lookahead == '<') ADVANCE(228); - if (lookahead == '=') ADVANCE(262); - if (lookahead == 't') ADVANCE(91); + if (lookahead == '=') ADVANCE(187); END_STATE(); - case 257: + case 227: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(228); - if (lookahead == '=') ADVANCE(262); END_STATE(); - case 258: + case 228: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(228); - if (lookahead == '=') ADVANCE(262); - if (lookahead == 't') ADVANCE(91); + if (lookahead == '/') ADVANCE(158); END_STATE(); - case 259: + case 229: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(227); - if (lookahead == '=') ADVANCE(262); + if (lookahead == '/') ADVANCE(158); + if (lookahead == '<') ADVANCE(201); + if (lookahead == '=') ADVANCE(232); END_STATE(); - case 260: + case 230: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(227); - if (lookahead == '=') ADVANCE(262); - if (lookahead == 't') ADVANCE(91); + if (lookahead == '<') ADVANCE(201); + if (lookahead == '=') ADVANCE(232); END_STATE(); - case 261: + case 231: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == 't') ADVANCE(91); + if (lookahead == '<') ADVANCE(200); + if (lookahead == '=') ADVANCE(232); END_STATE(); - case 262: + case 232: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 263: + case 233: ACCEPT_TOKEN(anon_sym_EQ_EQ); - if (lookahead == '=') ADVANCE(264); + if (lookahead == '=') ADVANCE(234); END_STATE(); - case 264: + case 234: ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); END_STATE(); - case 265: + case 235: ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == '=') ADVANCE(266); + if (lookahead == '=') ADVANCE(236); END_STATE(); - case 266: + case 236: ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); END_STATE(); - case 267: + case 237: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 268: + case 238: ACCEPT_TOKEN(anon_sym_QMARK_QMARK); END_STATE(); - case 269: + case 239: ACCEPT_TOKEN(anon_sym_QMARK_QMARK); - if (lookahead == '=') ADVANCE(217); + if (lookahead == '=') ADVANCE(190); END_STATE(); - case 270: + case 240: ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); - case 271: + case 241: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); - case 272: + case 242: ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); - case 273: + case 243: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '*') ADVANCE(275); - if (lookahead == '/') ADVANCE(277); + if (lookahead == '*') ADVANCE(245); + if (lookahead == '/') ADVANCE(247); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && - lookahead != '\\') ADVANCE(278); + lookahead != '\\') ADVANCE(248); END_STATE(); - case 274: + case 244: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '*') ADVANCE(274); - if (lookahead == '/') ADVANCE(278); + if (lookahead == '*') ADVANCE(244); + if (lookahead == '/') ADVANCE(248); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && - lookahead != '\\') ADVANCE(275); + lookahead != '\\') ADVANCE(245); END_STATE(); - case 275: + case 245: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '*') ADVANCE(274); + if (lookahead == '*') ADVANCE(244); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && - lookahead != '\\') ADVANCE(275); + lookahead != '\\') ADVANCE(245); END_STATE(); - case 276: + case 246: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '/') ADVANCE(273); + if (lookahead == '/') ADVANCE(243); if ((set_contains(extras_character_set_1, 10, lookahead)) && lookahead != '\n' && - lookahead != '\r') ADVANCE(276); + lookahead != '\r') ADVANCE(246); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '"' && - lookahead != '\\') ADVANCE(278); + lookahead != '\\') ADVANCE(248); END_STATE(); - case 277: + case 247: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); if (lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(278); + lookahead == 0x2029) ADVANCE(248); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && - lookahead != '\\') ADVANCE(277); + lookahead != '\\') ADVANCE(247); END_STATE(); - case 278: + case 248: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && - lookahead != '\\') ADVANCE(278); + lookahead != '\\') ADVANCE(248); END_STATE(); - case 279: + case 249: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '*') ADVANCE(281); - if (lookahead == '/') ADVANCE(283); + if (lookahead == '*') ADVANCE(251); + if (lookahead == '/') ADVANCE(253); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '\'' && - lookahead != '\\') ADVANCE(284); + lookahead != '\\') ADVANCE(254); END_STATE(); - case 280: + case 250: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '*') ADVANCE(280); - if (lookahead == '/') ADVANCE(284); + if (lookahead == '*') ADVANCE(250); + if (lookahead == '/') ADVANCE(254); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '\'' && - lookahead != '\\') ADVANCE(281); + lookahead != '\\') ADVANCE(251); END_STATE(); - case 281: + case 251: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '*') ADVANCE(280); + if (lookahead == '*') ADVANCE(250); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '\'' && - lookahead != '\\') ADVANCE(281); + lookahead != '\\') ADVANCE(251); END_STATE(); - case 282: + case 252: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '/') ADVANCE(279); + if (lookahead == '/') ADVANCE(249); if ((set_contains(extras_character_set_1, 10, lookahead)) && lookahead != '\n' && - lookahead != '\r') ADVANCE(282); + lookahead != '\r') ADVANCE(252); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '\'' && - lookahead != '\\') ADVANCE(284); + lookahead != '\\') ADVANCE(254); END_STATE(); - case 283: + case 253: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); if (lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(284); + lookahead == 0x2029) ADVANCE(254); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '\'' && - lookahead != '\\') ADVANCE(283); + lookahead != '\\') ADVANCE(253); END_STATE(); - case 284: + case 254: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '\'' && - lookahead != '\\') ADVANCE(284); + lookahead != '\\') ADVANCE(254); END_STATE(); - case 285: + case 255: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 286: + case 256: ACCEPT_TOKEN(sym_escape_sequence); - if (lookahead == '\\') ADVANCE(106); - if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(312); + if (lookahead == '\\') ADVANCE(84); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(282); END_STATE(); - case 287: + case 257: ACCEPT_TOKEN(sym_escape_sequence); if (lookahead == '\n' || lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(285); + lookahead == 0x2029) ADVANCE(255); END_STATE(); - case 288: + case 258: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(285); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(255); END_STATE(); - case 289: + case 259: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(288); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(258); END_STATE(); - case 290: + case 260: ACCEPT_TOKEN(sym_comment); END_STATE(); - case 291: + case 261: ACCEPT_TOKEN(sym_comment); if (lookahead == '\n' || lookahead == '\r' || lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(191); + lookahead == 0x2029) ADVANCE(164); if (lookahead == '#' || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(293); - if (lookahead != 0) ADVANCE(194); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(263); + if (lookahead != 0) ADVANCE(167); END_STATE(); - case 292: + case 262: ACCEPT_TOKEN(sym_comment); if (lookahead == '\n' || lookahead == '\r' || lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(197); + lookahead == 0x2029) ADVANCE(170); if (lookahead == '#' || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(293); - if (lookahead != 0) ADVANCE(200); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(263); + if (lookahead != 0) ADVANCE(173); END_STATE(); - case 293: + case 263: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != 0x2028 && - lookahead != 0x2029) ADVANCE(293); + lookahead != 0x2029) ADVANCE(263); END_STATE(); - case 294: + case 264: ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); - case 295: + case 265: ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); END_STATE(); - case 296: + case 266: ACCEPT_TOKEN(anon_sym_SLASH2); END_STATE(); - case 297: + case 267: ACCEPT_TOKEN(sym_regex_pattern); - if (lookahead == '\n') SKIP(39); - if (lookahead == '/') ADVANCE(29); - if (lookahead == '[') ADVANCE(88); - if (lookahead == '\\') ADVANCE(146); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(297); - if (lookahead != 0) ADVANCE(298); + if (lookahead == '\n') SKIP(34); + if (lookahead == '/') ADVANCE(24); + if (lookahead == '[') ADVANCE(81); + if (lookahead == '\\') ADVANCE(125); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(267); + if (lookahead != 0) ADVANCE(268); END_STATE(); - case 298: + case 268: ACCEPT_TOKEN(sym_regex_pattern); - if (lookahead == '[') ADVANCE(88); - if (lookahead == '\\') ADVANCE(146); + if (lookahead == '[') ADVANCE(81); + if (lookahead == '\\') ADVANCE(125); if (lookahead != 0 && lookahead != '\n' && - lookahead != '/') ADVANCE(298); + lookahead != '/') ADVANCE(268); END_STATE(); - case 299: + case 269: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == '\\') ADVANCE(106); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(299); - if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(312); + if (lookahead == '\\') ADVANCE(84); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(269); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(282); END_STATE(); - case 300: + case 270: ACCEPT_TOKEN(sym_number); END_STATE(); - case 301: + case 271: ACCEPT_TOKEN(sym_number); ADVANCE_MAP( - '.', 309, - '0', 303, - '_', 123, - 'n', 300, - 'B', 119, - 'b', 119, - 'E', 117, - 'e', 117, - 'O', 120, - 'o', 120, - 'X', 128, - 'x', 128, + '.', 279, + '0', 273, + '_', 102, + 'n', 270, + 'B', 98, + 'b', 98, + 'E', 96, + 'e', 96, + 'O', 99, + 'o', 99, + 'X', 107, + 'x', 107, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(302); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); END_STATE(); - case 302: + case 272: ACCEPT_TOKEN(sym_number); - if (lookahead == '.') ADVANCE(309); - if (lookahead == '_') ADVANCE(121); - if (lookahead == 'n') ADVANCE(300); + if (lookahead == '.') ADVANCE(279); + if (lookahead == '_') ADVANCE(100); + if (lookahead == 'n') ADVANCE(270); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(117); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(302); + lookahead == 'e') ADVANCE(96); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(272); END_STATE(); - case 303: + case 273: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(123); - if (lookahead == 'n') ADVANCE(300); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(303); + if (lookahead == '_') ADVANCE(102); + if (lookahead == 'n') ADVANCE(270); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(273); END_STATE(); - case 304: + case 274: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(119); - if (lookahead == 'n') ADVANCE(300); + if (lookahead == '_') ADVANCE(98); + if (lookahead == 'n') ADVANCE(270); if (lookahead == '0' || - lookahead == '1') ADVANCE(304); + lookahead == '1') ADVANCE(274); END_STATE(); - case 305: + case 275: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(120); - if (lookahead == 'n') ADVANCE(300); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(305); + if (lookahead == '_') ADVANCE(99); + if (lookahead == 'n') ADVANCE(270); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(275); END_STATE(); - case 306: + case 276: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(128); - if (lookahead == 'n') ADVANCE(300); + if (lookahead == '_') ADVANCE(107); + if (lookahead == 'n') ADVANCE(270); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(306); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(276); END_STATE(); - case 307: + case 277: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(122); + if (lookahead == '_') ADVANCE(101); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(117); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(307); + lookahead == 'e') ADVANCE(96); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(277); END_STATE(); - case 308: + case 278: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(124); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(308); + if (lookahead == '_') ADVANCE(103); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(278); END_STATE(); - case 309: + case 279: ACCEPT_TOKEN(sym_number); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(117); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(307); + lookahead == 'e') ADVANCE(96); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(277); END_STATE(); - case 310: + case 280: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(181); - if (lookahead == '\\') ADVANCE(106); + if (lookahead == '-') ADVANCE(154); + if (lookahead == '\\') ADVANCE(84); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(310); - if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(312); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(280); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(282); END_STATE(); - case 311: + case 281: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(106); - if (lookahead == '{') ADVANCE(295); - if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(312); + if (lookahead == '\\') ADVANCE(84); + if (lookahead == '{') ADVANCE(265); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(282); END_STATE(); - case 312: + case 282: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(106); - if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(312); + if (lookahead == '\\') ADVANCE(84); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(282); END_STATE(); - case 313: + case 283: ACCEPT_TOKEN(sym_private_property_identifier); - if (lookahead == '\\') ADVANCE(105); - if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(313); + if (lookahead == '\\') ADVANCE(83); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(283); END_STATE(); - case 314: + case 284: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 315: + case 285: ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); - case 316: + case 286: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '.') ADVANCE(202); + if (lookahead == '.') ADVANCE(175); END_STATE(); - case 317: + case 287: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '.') ADVANCE(202); - if (lookahead == '?') ADVANCE(269); + if (lookahead == '.') ADVANCE(175); + if (lookahead == '?') ADVANCE(239); END_STATE(); - case 318: + case 288: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '.') ADVANCE(202); - if (lookahead == '?') ADVANCE(268); + if (lookahead == '.') ADVANCE(175); + if (lookahead == '?') ADVANCE(238); END_STATE(); - case 319: + case 289: ACCEPT_TOKEN(anon_sym_DASH_QMARK_COLON); END_STATE(); - case 320: + case 290: ACCEPT_TOKEN(anon_sym_PLUS_QMARK_COLON); END_STATE(); - case 321: + case 291: ACCEPT_TOKEN(anon_sym_QMARK_COLON); END_STATE(); - case 322: + case 292: ACCEPT_TOKEN(anon_sym_LBRACE_PIPE); END_STATE(); - case 323: + case 293: ACCEPT_TOKEN(anon_sym_PIPE_RBRACE); END_STATE(); default: @@ -13999,146 +13689,146 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 149, .external_lex_state = 2}, - [2] = {.lex_state = 4, .external_lex_state = 3}, - [3] = {.lex_state = 4, .external_lex_state = 3}, - [4] = {.lex_state = 149, .external_lex_state = 2}, - [5] = {.lex_state = 149, .external_lex_state = 2}, - [6] = {.lex_state = 149, .external_lex_state = 2}, - [7] = {.lex_state = 149, .external_lex_state = 2}, - [8] = {.lex_state = 149, .external_lex_state = 2}, - [9] = {.lex_state = 149, .external_lex_state = 2}, - [10] = {.lex_state = 149, .external_lex_state = 2}, - [11] = {.lex_state = 149, .external_lex_state = 2}, - [12] = {.lex_state = 149, .external_lex_state = 2}, - [13] = {.lex_state = 149, .external_lex_state = 2}, - [14] = {.lex_state = 149, .external_lex_state = 2}, - [15] = {.lex_state = 149, .external_lex_state = 2}, - [16] = {.lex_state = 149, .external_lex_state = 2}, - [17] = {.lex_state = 149, .external_lex_state = 2}, - [18] = {.lex_state = 149, .external_lex_state = 2}, - [19] = {.lex_state = 149, .external_lex_state = 2}, - [20] = {.lex_state = 149, .external_lex_state = 2}, - [21] = {.lex_state = 149, .external_lex_state = 2}, - [22] = {.lex_state = 149, .external_lex_state = 2}, - [23] = {.lex_state = 149, .external_lex_state = 2}, - [24] = {.lex_state = 149, .external_lex_state = 2}, - [25] = {.lex_state = 149, .external_lex_state = 2}, - [26] = {.lex_state = 149, .external_lex_state = 2}, - [27] = {.lex_state = 149, .external_lex_state = 2}, - [28] = {.lex_state = 149, .external_lex_state = 2}, - [29] = {.lex_state = 149, .external_lex_state = 2}, - [30] = {.lex_state = 149, .external_lex_state = 2}, - [31] = {.lex_state = 149, .external_lex_state = 2}, - [32] = {.lex_state = 149, .external_lex_state = 2}, - [33] = {.lex_state = 149, .external_lex_state = 2}, - [34] = {.lex_state = 149, .external_lex_state = 2}, - [35] = {.lex_state = 149, .external_lex_state = 2}, - [36] = {.lex_state = 149, .external_lex_state = 2}, - [37] = {.lex_state = 149, .external_lex_state = 2}, - [38] = {.lex_state = 149, .external_lex_state = 2}, - [39] = {.lex_state = 149, .external_lex_state = 2}, - [40] = {.lex_state = 149, .external_lex_state = 2}, - [41] = {.lex_state = 149, .external_lex_state = 2}, - [42] = {.lex_state = 149, .external_lex_state = 2}, - [43] = {.lex_state = 149, .external_lex_state = 2}, - [44] = {.lex_state = 149, .external_lex_state = 2}, - [45] = {.lex_state = 149, .external_lex_state = 2}, - [46] = {.lex_state = 149, .external_lex_state = 2}, - [47] = {.lex_state = 149, .external_lex_state = 2}, - [48] = {.lex_state = 149, .external_lex_state = 2}, - [49] = {.lex_state = 149, .external_lex_state = 2}, - [50] = {.lex_state = 149, .external_lex_state = 2}, - [51] = {.lex_state = 149, .external_lex_state = 2}, - [52] = {.lex_state = 11, .external_lex_state = 2}, - [53] = {.lex_state = 149, .external_lex_state = 2}, - [54] = {.lex_state = 149, .external_lex_state = 2}, - [55] = {.lex_state = 149, .external_lex_state = 2}, - [56] = {.lex_state = 149, .external_lex_state = 2}, - [57] = {.lex_state = 149, .external_lex_state = 2}, - [58] = {.lex_state = 149, .external_lex_state = 2}, - [59] = {.lex_state = 149, .external_lex_state = 2}, - [60] = {.lex_state = 149, .external_lex_state = 2}, - [61] = {.lex_state = 149, .external_lex_state = 2}, - [62] = {.lex_state = 11, .external_lex_state = 2}, - [63] = {.lex_state = 11, .external_lex_state = 2}, - [64] = {.lex_state = 11, .external_lex_state = 2}, - [65] = {.lex_state = 11, .external_lex_state = 2}, - [66] = {.lex_state = 149, .external_lex_state = 2}, - [67] = {.lex_state = 11, .external_lex_state = 2}, - [68] = {.lex_state = 11, .external_lex_state = 2}, - [69] = {.lex_state = 11, .external_lex_state = 2}, - [70] = {.lex_state = 11, .external_lex_state = 2}, - [71] = {.lex_state = 11, .external_lex_state = 2}, - [72] = {.lex_state = 149, .external_lex_state = 2}, - [73] = {.lex_state = 149, .external_lex_state = 2}, - [74] = {.lex_state = 149, .external_lex_state = 2}, - [75] = {.lex_state = 149, .external_lex_state = 2}, - [76] = {.lex_state = 149, .external_lex_state = 2}, - [77] = {.lex_state = 149, .external_lex_state = 2}, - [78] = {.lex_state = 149, .external_lex_state = 2}, - [79] = {.lex_state = 149, .external_lex_state = 2}, - [80] = {.lex_state = 149, .external_lex_state = 2}, - [81] = {.lex_state = 149, .external_lex_state = 2}, - [82] = {.lex_state = 149, .external_lex_state = 2}, - [83] = {.lex_state = 149, .external_lex_state = 2}, - [84] = {.lex_state = 149, .external_lex_state = 2}, - [85] = {.lex_state = 149, .external_lex_state = 2}, - [86] = {.lex_state = 149, .external_lex_state = 2}, + [1] = {.lex_state = 128, .external_lex_state = 2}, + [2] = {.lex_state = 2, .external_lex_state = 3}, + [3] = {.lex_state = 2, .external_lex_state = 3}, + [4] = {.lex_state = 128, .external_lex_state = 2}, + [5] = {.lex_state = 128, .external_lex_state = 2}, + [6] = {.lex_state = 128, .external_lex_state = 2}, + [7] = {.lex_state = 128, .external_lex_state = 2}, + [8] = {.lex_state = 128, .external_lex_state = 2}, + [9] = {.lex_state = 128, .external_lex_state = 2}, + [10] = {.lex_state = 128, .external_lex_state = 2}, + [11] = {.lex_state = 128, .external_lex_state = 2}, + [12] = {.lex_state = 128, .external_lex_state = 2}, + [13] = {.lex_state = 128, .external_lex_state = 2}, + [14] = {.lex_state = 128, .external_lex_state = 2}, + [15] = {.lex_state = 128, .external_lex_state = 2}, + [16] = {.lex_state = 128, .external_lex_state = 2}, + [17] = {.lex_state = 128, .external_lex_state = 2}, + [18] = {.lex_state = 128, .external_lex_state = 2}, + [19] = {.lex_state = 128, .external_lex_state = 2}, + [20] = {.lex_state = 128, .external_lex_state = 2}, + [21] = {.lex_state = 128, .external_lex_state = 2}, + [22] = {.lex_state = 128, .external_lex_state = 2}, + [23] = {.lex_state = 128, .external_lex_state = 2}, + [24] = {.lex_state = 128, .external_lex_state = 2}, + [25] = {.lex_state = 128, .external_lex_state = 2}, + [26] = {.lex_state = 128, .external_lex_state = 2}, + [27] = {.lex_state = 128, .external_lex_state = 2}, + [28] = {.lex_state = 128, .external_lex_state = 2}, + [29] = {.lex_state = 128, .external_lex_state = 2}, + [30] = {.lex_state = 128, .external_lex_state = 2}, + [31] = {.lex_state = 128, .external_lex_state = 2}, + [32] = {.lex_state = 128, .external_lex_state = 2}, + [33] = {.lex_state = 128, .external_lex_state = 2}, + [34] = {.lex_state = 128, .external_lex_state = 2}, + [35] = {.lex_state = 8, .external_lex_state = 2}, + [36] = {.lex_state = 128, .external_lex_state = 2}, + [37] = {.lex_state = 128, .external_lex_state = 2}, + [38] = {.lex_state = 128, .external_lex_state = 2}, + [39] = {.lex_state = 128, .external_lex_state = 2}, + [40] = {.lex_state = 128, .external_lex_state = 2}, + [41] = {.lex_state = 128, .external_lex_state = 2}, + [42] = {.lex_state = 128, .external_lex_state = 2}, + [43] = {.lex_state = 128, .external_lex_state = 2}, + [44] = {.lex_state = 128, .external_lex_state = 2}, + [45] = {.lex_state = 128, .external_lex_state = 2}, + [46] = {.lex_state = 128, .external_lex_state = 2}, + [47] = {.lex_state = 128, .external_lex_state = 2}, + [48] = {.lex_state = 128, .external_lex_state = 2}, + [49] = {.lex_state = 128, .external_lex_state = 2}, + [50] = {.lex_state = 128, .external_lex_state = 2}, + [51] = {.lex_state = 128, .external_lex_state = 2}, + [52] = {.lex_state = 128, .external_lex_state = 2}, + [53] = {.lex_state = 8, .external_lex_state = 2}, + [54] = {.lex_state = 128, .external_lex_state = 2}, + [55] = {.lex_state = 128, .external_lex_state = 2}, + [56] = {.lex_state = 128, .external_lex_state = 2}, + [57] = {.lex_state = 128, .external_lex_state = 2}, + [58] = {.lex_state = 128, .external_lex_state = 2}, + [59] = {.lex_state = 128, .external_lex_state = 2}, + [60] = {.lex_state = 128, .external_lex_state = 2}, + [61] = {.lex_state = 128, .external_lex_state = 2}, + [62] = {.lex_state = 8, .external_lex_state = 2}, + [63] = {.lex_state = 128, .external_lex_state = 2}, + [64] = {.lex_state = 8, .external_lex_state = 2}, + [65] = {.lex_state = 128, .external_lex_state = 2}, + [66] = {.lex_state = 128, .external_lex_state = 2}, + [67] = {.lex_state = 128, .external_lex_state = 2}, + [68] = {.lex_state = 8, .external_lex_state = 2}, + [69] = {.lex_state = 8, .external_lex_state = 2}, + [70] = {.lex_state = 8, .external_lex_state = 2}, + [71] = {.lex_state = 8, .external_lex_state = 2}, + [72] = {.lex_state = 8, .external_lex_state = 2}, + [73] = {.lex_state = 128, .external_lex_state = 2}, + [74] = {.lex_state = 128, .external_lex_state = 2}, + [75] = {.lex_state = 128, .external_lex_state = 2}, + [76] = {.lex_state = 128, .external_lex_state = 2}, + [77] = {.lex_state = 128, .external_lex_state = 2}, + [78] = {.lex_state = 128, .external_lex_state = 2}, + [79] = {.lex_state = 128, .external_lex_state = 2}, + [80] = {.lex_state = 128, .external_lex_state = 2}, + [81] = {.lex_state = 128, .external_lex_state = 2}, + [82] = {.lex_state = 128, .external_lex_state = 2}, + [83] = {.lex_state = 128, .external_lex_state = 2}, + [84] = {.lex_state = 128, .external_lex_state = 2}, + [85] = {.lex_state = 128, .external_lex_state = 2}, + [86] = {.lex_state = 8, .external_lex_state = 2}, [87] = {.lex_state = 3, .external_lex_state = 4}, [88] = {.lex_state = 3, .external_lex_state = 4}, [89] = {.lex_state = 3, .external_lex_state = 4}, [90] = {.lex_state = 3, .external_lex_state = 3}, - [91] = {.lex_state = 3, .external_lex_state = 3}, + [91] = {.lex_state = 8, .external_lex_state = 2}, [92] = {.lex_state = 3, .external_lex_state = 3}, - [93] = {.lex_state = 11, .external_lex_state = 2}, - [94] = {.lex_state = 11, .external_lex_state = 2}, - [95] = {.lex_state = 3, .external_lex_state = 3}, + [93] = {.lex_state = 3, .external_lex_state = 3}, + [94] = {.lex_state = 3, .external_lex_state = 3}, + [95] = {.lex_state = 8, .external_lex_state = 2}, [96] = {.lex_state = 3, .external_lex_state = 3}, [97] = {.lex_state = 3, .external_lex_state = 3}, [98] = {.lex_state = 3, .external_lex_state = 3}, - [99] = {.lex_state = 3, .external_lex_state = 3}, - [100] = {.lex_state = 11, .external_lex_state = 2}, - [101] = {.lex_state = 11, .external_lex_state = 2}, - [102] = {.lex_state = 3, .external_lex_state = 3}, + [99] = {.lex_state = 8, .external_lex_state = 2}, + [100] = {.lex_state = 3, .external_lex_state = 3}, + [101] = {.lex_state = 8, .external_lex_state = 2}, + [102] = {.lex_state = 8, .external_lex_state = 2}, [103] = {.lex_state = 3, .external_lex_state = 3}, - [104] = {.lex_state = 11, .external_lex_state = 2}, - [105] = {.lex_state = 3, .external_lex_state = 3}, - [106] = {.lex_state = 11, .external_lex_state = 2}, + [104] = {.lex_state = 8, .external_lex_state = 2}, + [105] = {.lex_state = 8, .external_lex_state = 2}, + [106] = {.lex_state = 8, .external_lex_state = 2}, [107] = {.lex_state = 3, .external_lex_state = 3}, - [108] = {.lex_state = 11, .external_lex_state = 2}, - [109] = {.lex_state = 11, .external_lex_state = 2}, + [108] = {.lex_state = 3, .external_lex_state = 3}, + [109] = {.lex_state = 3, .external_lex_state = 3}, [110] = {.lex_state = 3, .external_lex_state = 3}, [111] = {.lex_state = 3, .external_lex_state = 3}, - [112] = {.lex_state = 3, .external_lex_state = 4}, + [112] = {.lex_state = 3, .external_lex_state = 3}, [113] = {.lex_state = 3, .external_lex_state = 4}, - [114] = {.lex_state = 3, .external_lex_state = 3}, + [114] = {.lex_state = 3, .external_lex_state = 4}, [115] = {.lex_state = 3, .external_lex_state = 4}, [116] = {.lex_state = 3, .external_lex_state = 4}, [117] = {.lex_state = 3, .external_lex_state = 4}, [118] = {.lex_state = 3, .external_lex_state = 4}, - [119] = {.lex_state = 3, .external_lex_state = 3}, + [119] = {.lex_state = 3, .external_lex_state = 4}, [120] = {.lex_state = 3, .external_lex_state = 4}, [121] = {.lex_state = 3, .external_lex_state = 4}, - [122] = {.lex_state = 3, .external_lex_state = 4}, + [122] = {.lex_state = 3, .external_lex_state = 3}, [123] = {.lex_state = 3, .external_lex_state = 3}, [124] = {.lex_state = 3, .external_lex_state = 3}, [125] = {.lex_state = 3, .external_lex_state = 3}, [126] = {.lex_state = 3, .external_lex_state = 3}, [127] = {.lex_state = 3, .external_lex_state = 3}, - [128] = {.lex_state = 3, .external_lex_state = 3}, - [129] = {.lex_state = 3, .external_lex_state = 3}, + [128] = {.lex_state = 3, .external_lex_state = 4}, + [129] = {.lex_state = 3, .external_lex_state = 4}, [130] = {.lex_state = 3, .external_lex_state = 3}, - [131] = {.lex_state = 3, .external_lex_state = 3}, + [131] = {.lex_state = 3, .external_lex_state = 4}, [132] = {.lex_state = 3, .external_lex_state = 3}, [133] = {.lex_state = 3, .external_lex_state = 3}, - [134] = {.lex_state = 3, .external_lex_state = 4}, - [135] = {.lex_state = 3, .external_lex_state = 4}, + [134] = {.lex_state = 3, .external_lex_state = 3}, + [135] = {.lex_state = 3, .external_lex_state = 3}, [136] = {.lex_state = 3, .external_lex_state = 3}, [137] = {.lex_state = 3, .external_lex_state = 3}, [138] = {.lex_state = 3, .external_lex_state = 3}, [139] = {.lex_state = 3, .external_lex_state = 3}, - [140] = {.lex_state = 3, .external_lex_state = 4}, + [140] = {.lex_state = 3, .external_lex_state = 3}, [141] = {.lex_state = 3, .external_lex_state = 3}, [142] = {.lex_state = 3, .external_lex_state = 3}, [143] = {.lex_state = 3, .external_lex_state = 3}, @@ -14156,5846 +13846,5834 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [155] = {.lex_state = 3, .external_lex_state = 3}, [156] = {.lex_state = 3, .external_lex_state = 3}, [157] = {.lex_state = 3, .external_lex_state = 3}, - [158] = {.lex_state = 11, .external_lex_state = 2}, - [159] = {.lex_state = 3, .external_lex_state = 3}, + [158] = {.lex_state = 3, .external_lex_state = 3}, + [159] = {.lex_state = 8, .external_lex_state = 2}, [160] = {.lex_state = 3, .external_lex_state = 3}, - [161] = {.lex_state = 11, .external_lex_state = 2}, - [162] = {.lex_state = 11, .external_lex_state = 2}, - [163] = {.lex_state = 11, .external_lex_state = 2}, - [164] = {.lex_state = 11, .external_lex_state = 2}, - [165] = {.lex_state = 11, .external_lex_state = 2}, - [166] = {.lex_state = 11, .external_lex_state = 2}, - [167] = {.lex_state = 11, .external_lex_state = 2}, - [168] = {.lex_state = 11, .external_lex_state = 2}, - [169] = {.lex_state = 11, .external_lex_state = 2}, - [170] = {.lex_state = 11, .external_lex_state = 2}, - [171] = {.lex_state = 11, .external_lex_state = 2}, - [172] = {.lex_state = 11, .external_lex_state = 2}, - [173] = {.lex_state = 148, .external_lex_state = 3}, - [174] = {.lex_state = 148, .external_lex_state = 4}, - [175] = {.lex_state = 148, .external_lex_state = 4}, - [176] = {.lex_state = 148, .external_lex_state = 4}, - [177] = {.lex_state = 148, .external_lex_state = 3}, - [178] = {.lex_state = 148, .external_lex_state = 3}, - [179] = {.lex_state = 148, .external_lex_state = 3}, - [180] = {.lex_state = 148, .external_lex_state = 3}, - [181] = {.lex_state = 148, .external_lex_state = 3}, - [182] = {.lex_state = 5, .external_lex_state = 3}, - [183] = {.lex_state = 149, .external_lex_state = 2}, - [184] = {.lex_state = 149, .external_lex_state = 2}, - [185] = {.lex_state = 149, .external_lex_state = 2}, - [186] = {.lex_state = 149, .external_lex_state = 2}, - [187] = {.lex_state = 149, .external_lex_state = 2}, - [188] = {.lex_state = 149, .external_lex_state = 2}, - [189] = {.lex_state = 149, .external_lex_state = 2}, - [190] = {.lex_state = 149, .external_lex_state = 2}, - [191] = {.lex_state = 5, .external_lex_state = 4}, - [192] = {.lex_state = 5, .external_lex_state = 4}, - [193] = {.lex_state = 5, .external_lex_state = 3}, - [194] = {.lex_state = 5, .external_lex_state = 3}, - [195] = {.lex_state = 5, .external_lex_state = 3}, - [196] = {.lex_state = 5, .external_lex_state = 4}, - [197] = {.lex_state = 5, .external_lex_state = 3}, - [198] = {.lex_state = 5, .external_lex_state = 3}, - [199] = {.lex_state = 5, .external_lex_state = 3}, - [200] = {.lex_state = 5, .external_lex_state = 3}, - [201] = {.lex_state = 5, .external_lex_state = 3}, - [202] = {.lex_state = 5, .external_lex_state = 3}, - [203] = {.lex_state = 5, .external_lex_state = 3}, - [204] = {.lex_state = 149, .external_lex_state = 2}, - [205] = {.lex_state = 149, .external_lex_state = 2}, - [206] = {.lex_state = 149, .external_lex_state = 2}, - [207] = {.lex_state = 149, .external_lex_state = 2}, - [208] = {.lex_state = 149, .external_lex_state = 2}, - [209] = {.lex_state = 149, .external_lex_state = 2}, - [210] = {.lex_state = 149, .external_lex_state = 2}, - [211] = {.lex_state = 149, .external_lex_state = 2}, - [212] = {.lex_state = 149, .external_lex_state = 2}, - [213] = {.lex_state = 149, .external_lex_state = 2}, - [214] = {.lex_state = 149, .external_lex_state = 2}, - [215] = {.lex_state = 149, .external_lex_state = 2}, - [216] = {.lex_state = 149, .external_lex_state = 2}, - [217] = {.lex_state = 149, .external_lex_state = 2}, - [218] = {.lex_state = 149, .external_lex_state = 2}, - [219] = {.lex_state = 149, .external_lex_state = 2}, - [220] = {.lex_state = 149, .external_lex_state = 2}, - [221] = {.lex_state = 149, .external_lex_state = 2}, - [222] = {.lex_state = 149, .external_lex_state = 2}, - [223] = {.lex_state = 149, .external_lex_state = 2}, - [224] = {.lex_state = 148, .external_lex_state = 4}, - [225] = {.lex_state = 148, .external_lex_state = 4}, - [226] = {.lex_state = 149, .external_lex_state = 5}, - [227] = {.lex_state = 148, .external_lex_state = 4}, - [228] = {.lex_state = 149, .external_lex_state = 2}, - [229] = {.lex_state = 148, .external_lex_state = 4}, - [230] = {.lex_state = 149, .external_lex_state = 2}, - [231] = {.lex_state = 149, .external_lex_state = 2}, - [232] = {.lex_state = 148, .external_lex_state = 4}, - [233] = {.lex_state = 149, .external_lex_state = 2}, - [234] = {.lex_state = 148, .external_lex_state = 4}, - [235] = {.lex_state = 148, .external_lex_state = 4}, - [236] = {.lex_state = 149, .external_lex_state = 2}, - [237] = {.lex_state = 148, .external_lex_state = 4}, - [238] = {.lex_state = 148, .external_lex_state = 4}, - [239] = {.lex_state = 148, .external_lex_state = 4}, - [240] = {.lex_state = 148, .external_lex_state = 4}, - [241] = {.lex_state = 148, .external_lex_state = 4}, - [242] = {.lex_state = 149, .external_lex_state = 2}, - [243] = {.lex_state = 148, .external_lex_state = 4}, - [244] = {.lex_state = 149, .external_lex_state = 2}, - [245] = {.lex_state = 148, .external_lex_state = 4}, - [246] = {.lex_state = 148, .external_lex_state = 4}, - [247] = {.lex_state = 149, .external_lex_state = 2}, - [248] = {.lex_state = 148, .external_lex_state = 4}, - [249] = {.lex_state = 148, .external_lex_state = 4}, - [250] = {.lex_state = 148, .external_lex_state = 4}, - [251] = {.lex_state = 148, .external_lex_state = 4}, - [252] = {.lex_state = 148, .external_lex_state = 4}, - [253] = {.lex_state = 148, .external_lex_state = 4}, - [254] = {.lex_state = 148, .external_lex_state = 4}, - [255] = {.lex_state = 148, .external_lex_state = 4}, - [256] = {.lex_state = 148, .external_lex_state = 4}, - [257] = {.lex_state = 148, .external_lex_state = 4}, - [258] = {.lex_state = 149, .external_lex_state = 2}, - [259] = {.lex_state = 149, .external_lex_state = 2}, - [260] = {.lex_state = 148, .external_lex_state = 4}, - [261] = {.lex_state = 148, .external_lex_state = 4}, - [262] = {.lex_state = 148, .external_lex_state = 4}, - [263] = {.lex_state = 149, .external_lex_state = 2}, - [264] = {.lex_state = 148, .external_lex_state = 4}, - [265] = {.lex_state = 149, .external_lex_state = 2}, - [266] = {.lex_state = 149, .external_lex_state = 2}, - [267] = {.lex_state = 149, .external_lex_state = 2}, - [268] = {.lex_state = 149, .external_lex_state = 2}, - [269] = {.lex_state = 149, .external_lex_state = 2}, - [270] = {.lex_state = 149, .external_lex_state = 2}, - [271] = {.lex_state = 149, .external_lex_state = 2}, - [272] = {.lex_state = 149, .external_lex_state = 2}, - [273] = {.lex_state = 149, .external_lex_state = 2}, - [274] = {.lex_state = 149, .external_lex_state = 2}, - [275] = {.lex_state = 149, .external_lex_state = 2}, - [276] = {.lex_state = 149, .external_lex_state = 2}, - [277] = {.lex_state = 149, .external_lex_state = 2}, - [278] = {.lex_state = 149, .external_lex_state = 2}, - [279] = {.lex_state = 149, .external_lex_state = 2}, - [280] = {.lex_state = 149, .external_lex_state = 2}, - [281] = {.lex_state = 149, .external_lex_state = 2}, - [282] = {.lex_state = 149, .external_lex_state = 2}, - [283] = {.lex_state = 149, .external_lex_state = 2}, - [284] = {.lex_state = 149, .external_lex_state = 2}, + [161] = {.lex_state = 8, .external_lex_state = 2}, + [162] = {.lex_state = 8, .external_lex_state = 2}, + [163] = {.lex_state = 8, .external_lex_state = 2}, + [164] = {.lex_state = 8, .external_lex_state = 2}, + [165] = {.lex_state = 8, .external_lex_state = 2}, + [166] = {.lex_state = 8, .external_lex_state = 2}, + [167] = {.lex_state = 8, .external_lex_state = 2}, + [168] = {.lex_state = 8, .external_lex_state = 2}, + [169] = {.lex_state = 8, .external_lex_state = 2}, + [170] = {.lex_state = 8, .external_lex_state = 2}, + [171] = {.lex_state = 8, .external_lex_state = 2}, + [172] = {.lex_state = 8, .external_lex_state = 2}, + [173] = {.lex_state = 127, .external_lex_state = 3}, + [174] = {.lex_state = 127, .external_lex_state = 4}, + [175] = {.lex_state = 127, .external_lex_state = 4}, + [176] = {.lex_state = 127, .external_lex_state = 4}, + [177] = {.lex_state = 127, .external_lex_state = 3}, + [178] = {.lex_state = 127, .external_lex_state = 3}, + [179] = {.lex_state = 127, .external_lex_state = 3}, + [180] = {.lex_state = 127, .external_lex_state = 3}, + [181] = {.lex_state = 127, .external_lex_state = 3}, + [182] = {.lex_state = 2, .external_lex_state = 3}, + [183] = {.lex_state = 2, .external_lex_state = 4}, + [184] = {.lex_state = 2, .external_lex_state = 4}, + [185] = {.lex_state = 2, .external_lex_state = 3}, + [186] = {.lex_state = 2, .external_lex_state = 3}, + [187] = {.lex_state = 128, .external_lex_state = 2}, + [188] = {.lex_state = 128, .external_lex_state = 2}, + [189] = {.lex_state = 128, .external_lex_state = 2}, + [190] = {.lex_state = 128, .external_lex_state = 2}, + [191] = {.lex_state = 128, .external_lex_state = 2}, + [192] = {.lex_state = 128, .external_lex_state = 2}, + [193] = {.lex_state = 128, .external_lex_state = 2}, + [194] = {.lex_state = 128, .external_lex_state = 2}, + [195] = {.lex_state = 2, .external_lex_state = 3}, + [196] = {.lex_state = 2, .external_lex_state = 3}, + [197] = {.lex_state = 2, .external_lex_state = 4}, + [198] = {.lex_state = 2, .external_lex_state = 3}, + [199] = {.lex_state = 2, .external_lex_state = 3}, + [200] = {.lex_state = 2, .external_lex_state = 3}, + [201] = {.lex_state = 2, .external_lex_state = 3}, + [202] = {.lex_state = 2, .external_lex_state = 3}, + [203] = {.lex_state = 2, .external_lex_state = 3}, + [204] = {.lex_state = 128, .external_lex_state = 2}, + [205] = {.lex_state = 128, .external_lex_state = 2}, + [206] = {.lex_state = 128, .external_lex_state = 2}, + [207] = {.lex_state = 128, .external_lex_state = 2}, + [208] = {.lex_state = 128, .external_lex_state = 2}, + [209] = {.lex_state = 128, .external_lex_state = 2}, + [210] = {.lex_state = 128, .external_lex_state = 2}, + [211] = {.lex_state = 128, .external_lex_state = 2}, + [212] = {.lex_state = 128, .external_lex_state = 2}, + [213] = {.lex_state = 128, .external_lex_state = 2}, + [214] = {.lex_state = 128, .external_lex_state = 2}, + [215] = {.lex_state = 128, .external_lex_state = 2}, + [216] = {.lex_state = 127, .external_lex_state = 4}, + [217] = {.lex_state = 127, .external_lex_state = 4}, + [218] = {.lex_state = 128, .external_lex_state = 2}, + [219] = {.lex_state = 127, .external_lex_state = 4}, + [220] = {.lex_state = 128, .external_lex_state = 2}, + [221] = {.lex_state = 128, .external_lex_state = 2}, + [222] = {.lex_state = 128, .external_lex_state = 2}, + [223] = {.lex_state = 127, .external_lex_state = 4}, + [224] = {.lex_state = 128, .external_lex_state = 2}, + [225] = {.lex_state = 128, .external_lex_state = 2}, + [226] = {.lex_state = 128, .external_lex_state = 2}, + [227] = {.lex_state = 128, .external_lex_state = 2}, + [228] = {.lex_state = 127, .external_lex_state = 4}, + [229] = {.lex_state = 127, .external_lex_state = 4}, + [230] = {.lex_state = 127, .external_lex_state = 4}, + [231] = {.lex_state = 127, .external_lex_state = 4}, + [232] = {.lex_state = 127, .external_lex_state = 4}, + [233] = {.lex_state = 127, .external_lex_state = 4}, + [234] = {.lex_state = 127, .external_lex_state = 4}, + [235] = {.lex_state = 127, .external_lex_state = 4}, + [236] = {.lex_state = 127, .external_lex_state = 4}, + [237] = {.lex_state = 127, .external_lex_state = 4}, + [238] = {.lex_state = 128, .external_lex_state = 2}, + [239] = {.lex_state = 127, .external_lex_state = 4}, + [240] = {.lex_state = 127, .external_lex_state = 4}, + [241] = {.lex_state = 127, .external_lex_state = 4}, + [242] = {.lex_state = 127, .external_lex_state = 4}, + [243] = {.lex_state = 127, .external_lex_state = 4}, + [244] = {.lex_state = 127, .external_lex_state = 4}, + [245] = {.lex_state = 127, .external_lex_state = 4}, + [246] = {.lex_state = 127, .external_lex_state = 4}, + [247] = {.lex_state = 127, .external_lex_state = 4}, + [248] = {.lex_state = 127, .external_lex_state = 4}, + [249] = {.lex_state = 127, .external_lex_state = 4}, + [250] = {.lex_state = 127, .external_lex_state = 4}, + [251] = {.lex_state = 127, .external_lex_state = 4}, + [252] = {.lex_state = 127, .external_lex_state = 4}, + [253] = {.lex_state = 127, .external_lex_state = 4}, + [254] = {.lex_state = 128, .external_lex_state = 5}, + [255] = {.lex_state = 128, .external_lex_state = 2}, + [256] = {.lex_state = 128, .external_lex_state = 2}, + [257] = {.lex_state = 128, .external_lex_state = 2}, + [258] = {.lex_state = 128, .external_lex_state = 2}, + [259] = {.lex_state = 128, .external_lex_state = 2}, + [260] = {.lex_state = 128, .external_lex_state = 2}, + [261] = {.lex_state = 128, .external_lex_state = 2}, + [262] = {.lex_state = 128, .external_lex_state = 2}, + [263] = {.lex_state = 128, .external_lex_state = 2}, + [264] = {.lex_state = 128, .external_lex_state = 2}, + [265] = {.lex_state = 128, .external_lex_state = 2}, + [266] = {.lex_state = 128, .external_lex_state = 2}, + [267] = {.lex_state = 128, .external_lex_state = 2}, + [268] = {.lex_state = 3, .external_lex_state = 3}, + [269] = {.lex_state = 3, .external_lex_state = 3}, + [270] = {.lex_state = 128, .external_lex_state = 2}, + [271] = {.lex_state = 128, .external_lex_state = 2}, + [272] = {.lex_state = 128, .external_lex_state = 2}, + [273] = {.lex_state = 128, .external_lex_state = 2}, + [274] = {.lex_state = 3, .external_lex_state = 3}, + [275] = {.lex_state = 128, .external_lex_state = 2}, + [276] = {.lex_state = 128, .external_lex_state = 2}, + [277] = {.lex_state = 128, .external_lex_state = 2}, + [278] = {.lex_state = 128, .external_lex_state = 2}, + [279] = {.lex_state = 128, .external_lex_state = 2}, + [280] = {.lex_state = 128, .external_lex_state = 2}, + [281] = {.lex_state = 128, .external_lex_state = 2}, + [282] = {.lex_state = 128, .external_lex_state = 2}, + [283] = {.lex_state = 128, .external_lex_state = 2}, + [284] = {.lex_state = 128, .external_lex_state = 2}, [285] = {.lex_state = 3, .external_lex_state = 3}, - [286] = {.lex_state = 149, .external_lex_state = 2}, - [287] = {.lex_state = 149, .external_lex_state = 2}, - [288] = {.lex_state = 149, .external_lex_state = 2}, - [289] = {.lex_state = 149, .external_lex_state = 2}, - [290] = {.lex_state = 149, .external_lex_state = 2}, - [291] = {.lex_state = 149, .external_lex_state = 2}, - [292] = {.lex_state = 149, .external_lex_state = 2}, - [293] = {.lex_state = 149, .external_lex_state = 2}, - [294] = {.lex_state = 149, .external_lex_state = 2}, - [295] = {.lex_state = 3, .external_lex_state = 3}, - [296] = {.lex_state = 149, .external_lex_state = 2}, - [297] = {.lex_state = 149, .external_lex_state = 2}, - [298] = {.lex_state = 149, .external_lex_state = 2}, - [299] = {.lex_state = 149, .external_lex_state = 2}, - [300] = {.lex_state = 3, .external_lex_state = 3}, - [301] = {.lex_state = 149, .external_lex_state = 2}, - [302] = {.lex_state = 149, .external_lex_state = 2}, - [303] = {.lex_state = 149, .external_lex_state = 2}, - [304] = {.lex_state = 149, .external_lex_state = 2}, - [305] = {.lex_state = 3, .external_lex_state = 3}, - [306] = {.lex_state = 149, .external_lex_state = 2}, - [307] = {.lex_state = 149, .external_lex_state = 2}, - [308] = {.lex_state = 149, .external_lex_state = 2}, - [309] = {.lex_state = 149, .external_lex_state = 5}, - [310] = {.lex_state = 149, .external_lex_state = 2}, - [311] = {.lex_state = 149, .external_lex_state = 2}, - [312] = {.lex_state = 149, .external_lex_state = 2}, - [313] = {.lex_state = 149, .external_lex_state = 2}, - [314] = {.lex_state = 149, .external_lex_state = 2}, - [315] = {.lex_state = 149, .external_lex_state = 2}, - [316] = {.lex_state = 149, .external_lex_state = 2}, - [317] = {.lex_state = 149, .external_lex_state = 2}, - [318] = {.lex_state = 149, .external_lex_state = 2}, - [319] = {.lex_state = 149, .external_lex_state = 2}, - [320] = {.lex_state = 149, .external_lex_state = 2}, - [321] = {.lex_state = 149, .external_lex_state = 2}, - [322] = {.lex_state = 149, .external_lex_state = 2}, - [323] = {.lex_state = 149, .external_lex_state = 2}, - [324] = {.lex_state = 149, .external_lex_state = 2}, - [325] = {.lex_state = 149, .external_lex_state = 2}, - [326] = {.lex_state = 149, .external_lex_state = 2}, - [327] = {.lex_state = 149, .external_lex_state = 2}, - [328] = {.lex_state = 149, .external_lex_state = 2}, - [329] = {.lex_state = 149, .external_lex_state = 2}, - [330] = {.lex_state = 149, .external_lex_state = 2}, - [331] = {.lex_state = 149, .external_lex_state = 2}, - [332] = {.lex_state = 149, .external_lex_state = 2}, - [333] = {.lex_state = 149, .external_lex_state = 2}, - [334] = {.lex_state = 149, .external_lex_state = 2}, - [335] = {.lex_state = 149, .external_lex_state = 2}, - [336] = {.lex_state = 149, .external_lex_state = 2}, - [337] = {.lex_state = 149, .external_lex_state = 2}, - [338] = {.lex_state = 149, .external_lex_state = 2}, - [339] = {.lex_state = 149, .external_lex_state = 2}, - [340] = {.lex_state = 149, .external_lex_state = 2}, - [341] = {.lex_state = 149, .external_lex_state = 2}, - [342] = {.lex_state = 149, .external_lex_state = 2}, - [343] = {.lex_state = 149, .external_lex_state = 2}, - [344] = {.lex_state = 149, .external_lex_state = 2}, - [345] = {.lex_state = 149, .external_lex_state = 2}, - [346] = {.lex_state = 149, .external_lex_state = 2}, - [347] = {.lex_state = 149, .external_lex_state = 2}, - [348] = {.lex_state = 149, .external_lex_state = 2}, - [349] = {.lex_state = 149, .external_lex_state = 2}, - [350] = {.lex_state = 149, .external_lex_state = 2}, - [351] = {.lex_state = 149, .external_lex_state = 2}, - [352] = {.lex_state = 149, .external_lex_state = 2}, - [353] = {.lex_state = 149, .external_lex_state = 2}, - [354] = {.lex_state = 149, .external_lex_state = 2}, - [355] = {.lex_state = 149, .external_lex_state = 2}, - [356] = {.lex_state = 149, .external_lex_state = 2}, - [357] = {.lex_state = 149, .external_lex_state = 2}, - [358] = {.lex_state = 149, .external_lex_state = 2}, - [359] = {.lex_state = 149, .external_lex_state = 2}, - [360] = {.lex_state = 149, .external_lex_state = 2}, - [361] = {.lex_state = 149, .external_lex_state = 2}, - [362] = {.lex_state = 149, .external_lex_state = 2}, - [363] = {.lex_state = 149, .external_lex_state = 2}, - [364] = {.lex_state = 149, .external_lex_state = 2}, - [365] = {.lex_state = 149, .external_lex_state = 2}, - [366] = {.lex_state = 149, .external_lex_state = 2}, - [367] = {.lex_state = 149, .external_lex_state = 2}, - [368] = {.lex_state = 149, .external_lex_state = 2}, - [369] = {.lex_state = 149, .external_lex_state = 2}, - [370] = {.lex_state = 149, .external_lex_state = 2}, - [371] = {.lex_state = 149, .external_lex_state = 2}, - [372] = {.lex_state = 149, .external_lex_state = 2}, - [373] = {.lex_state = 149, .external_lex_state = 2}, - [374] = {.lex_state = 149, .external_lex_state = 2}, - [375] = {.lex_state = 149, .external_lex_state = 2}, - [376] = {.lex_state = 149, .external_lex_state = 2}, - [377] = {.lex_state = 149, .external_lex_state = 2}, - [378] = {.lex_state = 149, .external_lex_state = 2}, - [379] = {.lex_state = 149, .external_lex_state = 2}, - [380] = {.lex_state = 149, .external_lex_state = 2}, - [381] = {.lex_state = 149, .external_lex_state = 2}, - [382] = {.lex_state = 149, .external_lex_state = 2}, - [383] = {.lex_state = 149, .external_lex_state = 2}, - [384] = {.lex_state = 149, .external_lex_state = 2}, - [385] = {.lex_state = 149, .external_lex_state = 2}, - [386] = {.lex_state = 149, .external_lex_state = 2}, - [387] = {.lex_state = 149, .external_lex_state = 2}, - [388] = {.lex_state = 149, .external_lex_state = 2}, - [389] = {.lex_state = 149, .external_lex_state = 2}, - [390] = {.lex_state = 149, .external_lex_state = 2}, - [391] = {.lex_state = 149, .external_lex_state = 2}, - [392] = {.lex_state = 149, .external_lex_state = 2}, - [393] = {.lex_state = 149, .external_lex_state = 2}, - [394] = {.lex_state = 149, .external_lex_state = 2}, - [395] = {.lex_state = 149, .external_lex_state = 2}, - [396] = {.lex_state = 149, .external_lex_state = 2}, - [397] = {.lex_state = 149, .external_lex_state = 2}, - [398] = {.lex_state = 149, .external_lex_state = 2}, - [399] = {.lex_state = 149, .external_lex_state = 2}, - [400] = {.lex_state = 149, .external_lex_state = 2}, - [401] = {.lex_state = 149, .external_lex_state = 2}, - [402] = {.lex_state = 149, .external_lex_state = 2}, - [403] = {.lex_state = 149, .external_lex_state = 2}, - [404] = {.lex_state = 149, .external_lex_state = 2}, - [405] = {.lex_state = 149, .external_lex_state = 2}, - [406] = {.lex_state = 149, .external_lex_state = 2}, - [407] = {.lex_state = 149, .external_lex_state = 2}, - [408] = {.lex_state = 149, .external_lex_state = 2}, - [409] = {.lex_state = 149, .external_lex_state = 2}, - [410] = {.lex_state = 149, .external_lex_state = 2}, - [411] = {.lex_state = 149, .external_lex_state = 2}, - [412] = {.lex_state = 149, .external_lex_state = 2}, - [413] = {.lex_state = 149, .external_lex_state = 2}, - [414] = {.lex_state = 149, .external_lex_state = 2}, - [415] = {.lex_state = 149, .external_lex_state = 2}, - [416] = {.lex_state = 149, .external_lex_state = 2}, - [417] = {.lex_state = 149, .external_lex_state = 2}, - [418] = {.lex_state = 149, .external_lex_state = 2}, - [419] = {.lex_state = 149, .external_lex_state = 2}, - [420] = {.lex_state = 149, .external_lex_state = 2}, - [421] = {.lex_state = 149, .external_lex_state = 2}, - [422] = {.lex_state = 149, .external_lex_state = 2}, - [423] = {.lex_state = 149, .external_lex_state = 2}, - [424] = {.lex_state = 149, .external_lex_state = 2}, - [425] = {.lex_state = 149, .external_lex_state = 2}, - [426] = {.lex_state = 149, .external_lex_state = 2}, - [427] = {.lex_state = 149, .external_lex_state = 2}, - [428] = {.lex_state = 149, .external_lex_state = 2}, - [429] = {.lex_state = 149, .external_lex_state = 2}, - [430] = {.lex_state = 149, .external_lex_state = 2}, - [431] = {.lex_state = 149, .external_lex_state = 2}, - [432] = {.lex_state = 149, .external_lex_state = 2}, - [433] = {.lex_state = 149, .external_lex_state = 2}, - [434] = {.lex_state = 149, .external_lex_state = 2}, - [435] = {.lex_state = 149, .external_lex_state = 2}, - [436] = {.lex_state = 149, .external_lex_state = 2}, - [437] = {.lex_state = 149, .external_lex_state = 2}, - [438] = {.lex_state = 149, .external_lex_state = 2}, - [439] = {.lex_state = 149, .external_lex_state = 2}, - [440] = {.lex_state = 149, .external_lex_state = 2}, - [441] = {.lex_state = 149, .external_lex_state = 2}, - [442] = {.lex_state = 149, .external_lex_state = 2}, - [443] = {.lex_state = 149, .external_lex_state = 2}, - [444] = {.lex_state = 149, .external_lex_state = 2}, - [445] = {.lex_state = 149, .external_lex_state = 2}, - [446] = {.lex_state = 149, .external_lex_state = 2}, - [447] = {.lex_state = 149, .external_lex_state = 2}, - [448] = {.lex_state = 149, .external_lex_state = 2}, - [449] = {.lex_state = 149, .external_lex_state = 2}, - [450] = {.lex_state = 149, .external_lex_state = 2}, - [451] = {.lex_state = 149, .external_lex_state = 2}, - [452] = {.lex_state = 149, .external_lex_state = 2}, - [453] = {.lex_state = 149, .external_lex_state = 2}, - [454] = {.lex_state = 149, .external_lex_state = 2}, - [455] = {.lex_state = 149, .external_lex_state = 2}, - [456] = {.lex_state = 149, .external_lex_state = 2}, - [457] = {.lex_state = 149, .external_lex_state = 2}, - [458] = {.lex_state = 149, .external_lex_state = 2}, - [459] = {.lex_state = 149, .external_lex_state = 2}, - [460] = {.lex_state = 149, .external_lex_state = 2}, - [461] = {.lex_state = 149, .external_lex_state = 2}, - [462] = {.lex_state = 149, .external_lex_state = 2}, - [463] = {.lex_state = 149, .external_lex_state = 2}, - [464] = {.lex_state = 149, .external_lex_state = 2}, - [465] = {.lex_state = 149, .external_lex_state = 2}, - [466] = {.lex_state = 149, .external_lex_state = 2}, - [467] = {.lex_state = 149, .external_lex_state = 2}, - [468] = {.lex_state = 149, .external_lex_state = 2}, - [469] = {.lex_state = 149, .external_lex_state = 2}, - [470] = {.lex_state = 149, .external_lex_state = 2}, - [471] = {.lex_state = 149, .external_lex_state = 2}, - [472] = {.lex_state = 149, .external_lex_state = 2}, - [473] = {.lex_state = 149, .external_lex_state = 2}, - [474] = {.lex_state = 149, .external_lex_state = 2}, - [475] = {.lex_state = 149, .external_lex_state = 2}, - [476] = {.lex_state = 149, .external_lex_state = 2}, - [477] = {.lex_state = 149, .external_lex_state = 2}, - [478] = {.lex_state = 149, .external_lex_state = 2}, - [479] = {.lex_state = 149, .external_lex_state = 2}, - [480] = {.lex_state = 149, .external_lex_state = 2}, - [481] = {.lex_state = 149, .external_lex_state = 2}, - [482] = {.lex_state = 149, .external_lex_state = 2}, - [483] = {.lex_state = 149, .external_lex_state = 2}, - [484] = {.lex_state = 149, .external_lex_state = 2}, - [485] = {.lex_state = 149, .external_lex_state = 2}, - [486] = {.lex_state = 149, .external_lex_state = 2}, - [487] = {.lex_state = 149, .external_lex_state = 2}, - [488] = {.lex_state = 149, .external_lex_state = 2}, - [489] = {.lex_state = 149, .external_lex_state = 2}, - [490] = {.lex_state = 149, .external_lex_state = 2}, - [491] = {.lex_state = 149, .external_lex_state = 2}, - [492] = {.lex_state = 149, .external_lex_state = 2}, - [493] = {.lex_state = 149, .external_lex_state = 2}, - [494] = {.lex_state = 149, .external_lex_state = 2}, - [495] = {.lex_state = 149, .external_lex_state = 2}, - [496] = {.lex_state = 149, .external_lex_state = 2}, - [497] = {.lex_state = 149, .external_lex_state = 2}, - [498] = {.lex_state = 149, .external_lex_state = 2}, - [499] = {.lex_state = 149, .external_lex_state = 2}, - [500] = {.lex_state = 149, .external_lex_state = 2}, - [501] = {.lex_state = 149, .external_lex_state = 2}, - [502] = {.lex_state = 149, .external_lex_state = 2}, - [503] = {.lex_state = 149, .external_lex_state = 2}, - [504] = {.lex_state = 149, .external_lex_state = 2}, - [505] = {.lex_state = 149, .external_lex_state = 2}, - [506] = {.lex_state = 149, .external_lex_state = 2}, - [507] = {.lex_state = 149, .external_lex_state = 2}, - [508] = {.lex_state = 149, .external_lex_state = 2}, - [509] = {.lex_state = 149, .external_lex_state = 2}, - [510] = {.lex_state = 149, .external_lex_state = 2}, - [511] = {.lex_state = 149, .external_lex_state = 2}, - [512] = {.lex_state = 149, .external_lex_state = 2}, - [513] = {.lex_state = 149, .external_lex_state = 2}, - [514] = {.lex_state = 149, .external_lex_state = 2}, - [515] = {.lex_state = 149, .external_lex_state = 2}, - [516] = {.lex_state = 149, .external_lex_state = 2}, - [517] = {.lex_state = 149, .external_lex_state = 2}, - [518] = {.lex_state = 149, .external_lex_state = 2}, - [519] = {.lex_state = 149, .external_lex_state = 2}, - [520] = {.lex_state = 149, .external_lex_state = 2}, - [521] = {.lex_state = 149, .external_lex_state = 2}, - [522] = {.lex_state = 149, .external_lex_state = 2}, - [523] = {.lex_state = 149, .external_lex_state = 2}, - [524] = {.lex_state = 149, .external_lex_state = 2}, - [525] = {.lex_state = 149, .external_lex_state = 2}, - [526] = {.lex_state = 149, .external_lex_state = 2}, - [527] = {.lex_state = 149, .external_lex_state = 2}, - [528] = {.lex_state = 149, .external_lex_state = 2}, - [529] = {.lex_state = 149, .external_lex_state = 2}, - [530] = {.lex_state = 149, .external_lex_state = 2}, - [531] = {.lex_state = 149, .external_lex_state = 2}, - [532] = {.lex_state = 149, .external_lex_state = 2}, - [533] = {.lex_state = 149, .external_lex_state = 2}, - [534] = {.lex_state = 149, .external_lex_state = 2}, - [535] = {.lex_state = 149, .external_lex_state = 2}, - [536] = {.lex_state = 149, .external_lex_state = 2}, - [537] = {.lex_state = 149, .external_lex_state = 2}, - [538] = {.lex_state = 149, .external_lex_state = 2}, - [539] = {.lex_state = 149, .external_lex_state = 2}, - [540] = {.lex_state = 149, .external_lex_state = 2}, - [541] = {.lex_state = 149, .external_lex_state = 2}, - [542] = {.lex_state = 149, .external_lex_state = 2}, - [543] = {.lex_state = 149, .external_lex_state = 2}, - [544] = {.lex_state = 149, .external_lex_state = 2}, - [545] = {.lex_state = 149, .external_lex_state = 2}, - [546] = {.lex_state = 149, .external_lex_state = 2}, - [547] = {.lex_state = 149, .external_lex_state = 2}, - [548] = {.lex_state = 149, .external_lex_state = 2}, - [549] = {.lex_state = 149, .external_lex_state = 2}, - [550] = {.lex_state = 149, .external_lex_state = 2}, - [551] = {.lex_state = 149, .external_lex_state = 2}, - [552] = {.lex_state = 149, .external_lex_state = 2}, - [553] = {.lex_state = 149, .external_lex_state = 2}, - [554] = {.lex_state = 149, .external_lex_state = 2}, - [555] = {.lex_state = 149, .external_lex_state = 2}, - [556] = {.lex_state = 149, .external_lex_state = 2}, - [557] = {.lex_state = 149, .external_lex_state = 2}, - [558] = {.lex_state = 149, .external_lex_state = 2}, - [559] = {.lex_state = 149, .external_lex_state = 2}, - [560] = {.lex_state = 149, .external_lex_state = 2}, - [561] = {.lex_state = 149, .external_lex_state = 2}, - [562] = {.lex_state = 149, .external_lex_state = 2}, - [563] = {.lex_state = 149, .external_lex_state = 2}, - [564] = {.lex_state = 149, .external_lex_state = 2}, - [565] = {.lex_state = 149, .external_lex_state = 2}, - [566] = {.lex_state = 149, .external_lex_state = 2}, - [567] = {.lex_state = 149, .external_lex_state = 2}, - [568] = {.lex_state = 149, .external_lex_state = 2}, - [569] = {.lex_state = 149, .external_lex_state = 2}, - [570] = {.lex_state = 149, .external_lex_state = 2}, - [571] = {.lex_state = 149, .external_lex_state = 2}, - [572] = {.lex_state = 149, .external_lex_state = 2}, - [573] = {.lex_state = 149, .external_lex_state = 2}, - [574] = {.lex_state = 149, .external_lex_state = 2}, - [575] = {.lex_state = 149, .external_lex_state = 2}, - [576] = {.lex_state = 149, .external_lex_state = 2}, - [577] = {.lex_state = 149, .external_lex_state = 2}, - [578] = {.lex_state = 149, .external_lex_state = 2}, - [579] = {.lex_state = 149, .external_lex_state = 2}, - [580] = {.lex_state = 149, .external_lex_state = 2}, - [581] = {.lex_state = 149, .external_lex_state = 2}, - [582] = {.lex_state = 149, .external_lex_state = 2}, - [583] = {.lex_state = 149, .external_lex_state = 2}, - [584] = {.lex_state = 149, .external_lex_state = 2}, - [585] = {.lex_state = 149, .external_lex_state = 2}, - [586] = {.lex_state = 149, .external_lex_state = 2}, - [587] = {.lex_state = 149, .external_lex_state = 2}, - [588] = {.lex_state = 149, .external_lex_state = 2}, - [589] = {.lex_state = 149, .external_lex_state = 2}, - [590] = {.lex_state = 149, .external_lex_state = 2}, - [591] = {.lex_state = 149, .external_lex_state = 2}, - [592] = {.lex_state = 149, .external_lex_state = 2}, - [593] = {.lex_state = 149, .external_lex_state = 2}, - [594] = {.lex_state = 149, .external_lex_state = 2}, - [595] = {.lex_state = 149, .external_lex_state = 2}, - [596] = {.lex_state = 149, .external_lex_state = 2}, - [597] = {.lex_state = 149, .external_lex_state = 2}, - [598] = {.lex_state = 149, .external_lex_state = 2}, - [599] = {.lex_state = 149, .external_lex_state = 2}, - [600] = {.lex_state = 149, .external_lex_state = 2}, - [601] = {.lex_state = 149, .external_lex_state = 2}, - [602] = {.lex_state = 149, .external_lex_state = 2}, - [603] = {.lex_state = 149, .external_lex_state = 2}, - [604] = {.lex_state = 149, .external_lex_state = 2}, - [605] = {.lex_state = 149, .external_lex_state = 2}, - [606] = {.lex_state = 149, .external_lex_state = 2}, - [607] = {.lex_state = 149, .external_lex_state = 2}, - [608] = {.lex_state = 149, .external_lex_state = 2}, - [609] = {.lex_state = 149, .external_lex_state = 2}, - [610] = {.lex_state = 149, .external_lex_state = 2}, - [611] = {.lex_state = 149, .external_lex_state = 2}, - [612] = {.lex_state = 149, .external_lex_state = 2}, - [613] = {.lex_state = 149, .external_lex_state = 2}, - [614] = {.lex_state = 149, .external_lex_state = 2}, - [615] = {.lex_state = 149, .external_lex_state = 2}, - [616] = {.lex_state = 149, .external_lex_state = 2}, - [617] = {.lex_state = 149, .external_lex_state = 2}, - [618] = {.lex_state = 149, .external_lex_state = 2}, - [619] = {.lex_state = 149, .external_lex_state = 2}, - [620] = {.lex_state = 149, .external_lex_state = 2}, - [621] = {.lex_state = 149, .external_lex_state = 2}, - [622] = {.lex_state = 149, .external_lex_state = 2}, - [623] = {.lex_state = 149, .external_lex_state = 2}, - [624] = {.lex_state = 149, .external_lex_state = 2}, - [625] = {.lex_state = 149, .external_lex_state = 2}, - [626] = {.lex_state = 149, .external_lex_state = 2}, - [627] = {.lex_state = 149, .external_lex_state = 2}, - [628] = {.lex_state = 149, .external_lex_state = 2}, - [629] = {.lex_state = 149, .external_lex_state = 2}, - [630] = {.lex_state = 149, .external_lex_state = 2}, - [631] = {.lex_state = 149, .external_lex_state = 2}, - [632] = {.lex_state = 149, .external_lex_state = 2}, - [633] = {.lex_state = 149, .external_lex_state = 2}, - [634] = {.lex_state = 149, .external_lex_state = 2}, - [635] = {.lex_state = 149, .external_lex_state = 2}, - [636] = {.lex_state = 149, .external_lex_state = 2}, - [637] = {.lex_state = 149, .external_lex_state = 2}, - [638] = {.lex_state = 149, .external_lex_state = 2}, - [639] = {.lex_state = 149, .external_lex_state = 2}, - [640] = {.lex_state = 149, .external_lex_state = 2}, - [641] = {.lex_state = 149, .external_lex_state = 2}, - [642] = {.lex_state = 149, .external_lex_state = 2}, - [643] = {.lex_state = 149, .external_lex_state = 2}, - [644] = {.lex_state = 149, .external_lex_state = 2}, - [645] = {.lex_state = 149, .external_lex_state = 2}, - [646] = {.lex_state = 149, .external_lex_state = 2}, - [647] = {.lex_state = 149, .external_lex_state = 2}, - [648] = {.lex_state = 149, .external_lex_state = 2}, - [649] = {.lex_state = 149, .external_lex_state = 2}, - [650] = {.lex_state = 149, .external_lex_state = 2}, - [651] = {.lex_state = 149, .external_lex_state = 2}, - [652] = {.lex_state = 149, .external_lex_state = 2}, - [653] = {.lex_state = 149, .external_lex_state = 2}, - [654] = {.lex_state = 149, .external_lex_state = 2}, - [655] = {.lex_state = 149, .external_lex_state = 2}, - [656] = {.lex_state = 149, .external_lex_state = 2}, - [657] = {.lex_state = 149, .external_lex_state = 2}, - [658] = {.lex_state = 6, .external_lex_state = 4}, - [659] = {.lex_state = 6, .external_lex_state = 4}, - [660] = {.lex_state = 6, .external_lex_state = 4}, - [661] = {.lex_state = 5, .external_lex_state = 4}, - [662] = {.lex_state = 5, .external_lex_state = 4}, - [663] = {.lex_state = 5, .external_lex_state = 4}, - [664] = {.lex_state = 5, .external_lex_state = 4}, - [665] = {.lex_state = 5, .external_lex_state = 4}, - [666] = {.lex_state = 5, .external_lex_state = 4}, - [667] = {.lex_state = 6, .external_lex_state = 4}, - [668] = {.lex_state = 6, .external_lex_state = 4}, - [669] = {.lex_state = 6, .external_lex_state = 4}, - [670] = {.lex_state = 5, .external_lex_state = 4}, - [671] = {.lex_state = 5, .external_lex_state = 4}, - [672] = {.lex_state = 5, .external_lex_state = 4}, - [673] = {.lex_state = 5, .external_lex_state = 4}, - [674] = {.lex_state = 5, .external_lex_state = 4}, - [675] = {.lex_state = 5, .external_lex_state = 4}, - [676] = {.lex_state = 5, .external_lex_state = 4}, - [677] = {.lex_state = 149, .external_lex_state = 2}, - [678] = {.lex_state = 149, .external_lex_state = 2}, - [679] = {.lex_state = 5, .external_lex_state = 4}, - [680] = {.lex_state = 5, .external_lex_state = 4}, - [681] = {.lex_state = 5, .external_lex_state = 4}, - [682] = {.lex_state = 149, .external_lex_state = 2}, - [683] = {.lex_state = 5, .external_lex_state = 4}, - [684] = {.lex_state = 149, .external_lex_state = 2}, - [685] = {.lex_state = 149, .external_lex_state = 2}, - [686] = {.lex_state = 5, .external_lex_state = 4}, - [687] = {.lex_state = 149, .external_lex_state = 2}, - [688] = {.lex_state = 149, .external_lex_state = 2}, - [689] = {.lex_state = 5, .external_lex_state = 4}, - [690] = {.lex_state = 5, .external_lex_state = 4}, - [691] = {.lex_state = 5, .external_lex_state = 4}, - [692] = {.lex_state = 5, .external_lex_state = 4}, - [693] = {.lex_state = 5, .external_lex_state = 4}, - [694] = {.lex_state = 5, .external_lex_state = 4}, - [695] = {.lex_state = 5, .external_lex_state = 4}, - [696] = {.lex_state = 5, .external_lex_state = 4}, - [697] = {.lex_state = 5, .external_lex_state = 4}, - [698] = {.lex_state = 5, .external_lex_state = 3}, - [699] = {.lex_state = 5, .external_lex_state = 3}, - [700] = {.lex_state = 5, .external_lex_state = 3}, - [701] = {.lex_state = 5, .external_lex_state = 3}, - [702] = {.lex_state = 5, .external_lex_state = 3}, - [703] = {.lex_state = 5, .external_lex_state = 3}, - [704] = {.lex_state = 5, .external_lex_state = 4}, - [705] = {.lex_state = 5, .external_lex_state = 4}, - [706] = {.lex_state = 5, .external_lex_state = 4}, - [707] = {.lex_state = 5, .external_lex_state = 4}, - [708] = {.lex_state = 5, .external_lex_state = 4}, - [709] = {.lex_state = 5, .external_lex_state = 4}, - [710] = {.lex_state = 5, .external_lex_state = 4}, - [711] = {.lex_state = 149, .external_lex_state = 2}, - [712] = {.lex_state = 5, .external_lex_state = 3}, - [713] = {.lex_state = 149, .external_lex_state = 5}, - [714] = {.lex_state = 5, .external_lex_state = 3}, - [715] = {.lex_state = 6, .external_lex_state = 3}, - [716] = {.lex_state = 6, .external_lex_state = 3}, - [717] = {.lex_state = 149, .external_lex_state = 5}, - [718] = {.lex_state = 5, .external_lex_state = 4}, - [719] = {.lex_state = 5, .external_lex_state = 3}, - [720] = {.lex_state = 5, .external_lex_state = 4}, - [721] = {.lex_state = 149, .external_lex_state = 5}, - [722] = {.lex_state = 149, .external_lex_state = 5}, - [723] = {.lex_state = 5, .external_lex_state = 3}, - [724] = {.lex_state = 149, .external_lex_state = 5}, - [725] = {.lex_state = 149, .external_lex_state = 5}, - [726] = {.lex_state = 149, .external_lex_state = 5}, - [727] = {.lex_state = 149, .external_lex_state = 5}, - [728] = {.lex_state = 5, .external_lex_state = 3}, - [729] = {.lex_state = 5, .external_lex_state = 3}, - [730] = {.lex_state = 5, .external_lex_state = 4}, - [731] = {.lex_state = 5, .external_lex_state = 4}, - [732] = {.lex_state = 5, .external_lex_state = 4}, - [733] = {.lex_state = 149, .external_lex_state = 2}, - [734] = {.lex_state = 149, .external_lex_state = 2}, - [735] = {.lex_state = 5, .external_lex_state = 3}, - [736] = {.lex_state = 5, .external_lex_state = 3}, - [737] = {.lex_state = 5, .external_lex_state = 3}, - [738] = {.lex_state = 149, .external_lex_state = 2}, - [739] = {.lex_state = 149, .external_lex_state = 2}, - [740] = {.lex_state = 5, .external_lex_state = 3}, - [741] = {.lex_state = 5, .external_lex_state = 3}, - [742] = {.lex_state = 5, .external_lex_state = 3}, - [743] = {.lex_state = 5, .external_lex_state = 3}, - [744] = {.lex_state = 149, .external_lex_state = 2}, - [745] = {.lex_state = 149, .external_lex_state = 2}, - [746] = {.lex_state = 5, .external_lex_state = 3}, - [747] = {.lex_state = 149, .external_lex_state = 2}, - [748] = {.lex_state = 149, .external_lex_state = 5}, - [749] = {.lex_state = 5, .external_lex_state = 3}, - [750] = {.lex_state = 149, .external_lex_state = 2}, - [751] = {.lex_state = 149, .external_lex_state = 2}, - [752] = {.lex_state = 5, .external_lex_state = 3}, - [753] = {.lex_state = 149, .external_lex_state = 5}, - [754] = {.lex_state = 5, .external_lex_state = 3}, - [755] = {.lex_state = 149, .external_lex_state = 5}, - [756] = {.lex_state = 149, .external_lex_state = 2}, - [757] = {.lex_state = 149, .external_lex_state = 5}, - [758] = {.lex_state = 149, .external_lex_state = 5}, - [759] = {.lex_state = 5, .external_lex_state = 3}, - [760] = {.lex_state = 149, .external_lex_state = 5}, - [761] = {.lex_state = 149, .external_lex_state = 5}, - [762] = {.lex_state = 149, .external_lex_state = 5}, - [763] = {.lex_state = 5, .external_lex_state = 3}, - [764] = {.lex_state = 149, .external_lex_state = 5}, - [765] = {.lex_state = 149, .external_lex_state = 5}, - [766] = {.lex_state = 5, .external_lex_state = 3}, - [767] = {.lex_state = 149, .external_lex_state = 2}, - [768] = {.lex_state = 149, .external_lex_state = 5}, - [769] = {.lex_state = 149, .external_lex_state = 5}, - [770] = {.lex_state = 149, .external_lex_state = 2}, - [771] = {.lex_state = 5, .external_lex_state = 3}, - [772] = {.lex_state = 149, .external_lex_state = 2}, - [773] = {.lex_state = 149, .external_lex_state = 5}, - [774] = {.lex_state = 149, .external_lex_state = 5}, - [775] = {.lex_state = 5, .external_lex_state = 3}, - [776] = {.lex_state = 149, .external_lex_state = 5}, - [777] = {.lex_state = 5, .external_lex_state = 3}, - [778] = {.lex_state = 149, .external_lex_state = 2}, - [779] = {.lex_state = 149, .external_lex_state = 2}, - [780] = {.lex_state = 149, .external_lex_state = 2}, - [781] = {.lex_state = 149, .external_lex_state = 2}, - [782] = {.lex_state = 149, .external_lex_state = 2}, - [783] = {.lex_state = 149, .external_lex_state = 2}, - [784] = {.lex_state = 149, .external_lex_state = 2}, - [785] = {.lex_state = 149, .external_lex_state = 2}, - [786] = {.lex_state = 12, .external_lex_state = 2}, - [787] = {.lex_state = 149, .external_lex_state = 2}, - [788] = {.lex_state = 149, .external_lex_state = 2}, - [789] = {.lex_state = 149, .external_lex_state = 2}, - [790] = {.lex_state = 149, .external_lex_state = 2}, - [791] = {.lex_state = 149, .external_lex_state = 2}, - [792] = {.lex_state = 12, .external_lex_state = 2}, - [793] = {.lex_state = 149, .external_lex_state = 2}, - [794] = {.lex_state = 149, .external_lex_state = 2}, - [795] = {.lex_state = 149, .external_lex_state = 2}, - [796] = {.lex_state = 149, .external_lex_state = 2}, - [797] = {.lex_state = 149, .external_lex_state = 2}, - [798] = {.lex_state = 149, .external_lex_state = 2}, - [799] = {.lex_state = 149, .external_lex_state = 2}, - [800] = {.lex_state = 149, .external_lex_state = 2}, - [801] = {.lex_state = 149, .external_lex_state = 2}, - [802] = {.lex_state = 149, .external_lex_state = 2}, - [803] = {.lex_state = 149, .external_lex_state = 2}, - [804] = {.lex_state = 149, .external_lex_state = 2}, - [805] = {.lex_state = 149, .external_lex_state = 2}, - [806] = {.lex_state = 12, .external_lex_state = 2}, - [807] = {.lex_state = 149, .external_lex_state = 2}, - [808] = {.lex_state = 149, .external_lex_state = 2}, - [809] = {.lex_state = 149, .external_lex_state = 2}, - [810] = {.lex_state = 149, .external_lex_state = 2}, - [811] = {.lex_state = 149, .external_lex_state = 2}, - [812] = {.lex_state = 149, .external_lex_state = 2}, - [813] = {.lex_state = 149, .external_lex_state = 2}, - [814] = {.lex_state = 149, .external_lex_state = 2}, - [815] = {.lex_state = 149, .external_lex_state = 2}, - [816] = {.lex_state = 149, .external_lex_state = 2}, - [817] = {.lex_state = 12, .external_lex_state = 2}, - [818] = {.lex_state = 149, .external_lex_state = 2}, - [819] = {.lex_state = 149, .external_lex_state = 2}, - [820] = {.lex_state = 149, .external_lex_state = 2}, - [821] = {.lex_state = 12, .external_lex_state = 2}, - [822] = {.lex_state = 149, .external_lex_state = 2}, - [823] = {.lex_state = 149, .external_lex_state = 2}, - [824] = {.lex_state = 149, .external_lex_state = 2}, - [825] = {.lex_state = 149, .external_lex_state = 2}, - [826] = {.lex_state = 149, .external_lex_state = 2}, - [827] = {.lex_state = 149, .external_lex_state = 2}, - [828] = {.lex_state = 149, .external_lex_state = 2}, - [829] = {.lex_state = 149, .external_lex_state = 2}, - [830] = {.lex_state = 149, .external_lex_state = 2}, - [831] = {.lex_state = 149, .external_lex_state = 2}, - [832] = {.lex_state = 149, .external_lex_state = 2}, - [833] = {.lex_state = 149, .external_lex_state = 2}, - [834] = {.lex_state = 149, .external_lex_state = 2}, - [835] = {.lex_state = 149, .external_lex_state = 2}, - [836] = {.lex_state = 149, .external_lex_state = 2}, - [837] = {.lex_state = 149, .external_lex_state = 2}, - [838] = {.lex_state = 149, .external_lex_state = 2}, - [839] = {.lex_state = 149, .external_lex_state = 2}, - [840] = {.lex_state = 149, .external_lex_state = 2}, - [841] = {.lex_state = 149, .external_lex_state = 2}, - [842] = {.lex_state = 149, .external_lex_state = 2}, - [843] = {.lex_state = 149, .external_lex_state = 2}, - [844] = {.lex_state = 149, .external_lex_state = 2}, - [845] = {.lex_state = 149, .external_lex_state = 2}, - [846] = {.lex_state = 149, .external_lex_state = 2}, - [847] = {.lex_state = 149, .external_lex_state = 2}, - [848] = {.lex_state = 149, .external_lex_state = 2}, - [849] = {.lex_state = 149, .external_lex_state = 2}, - [850] = {.lex_state = 149, .external_lex_state = 2}, - [851] = {.lex_state = 149, .external_lex_state = 2}, - [852] = {.lex_state = 149, .external_lex_state = 2}, - [853] = {.lex_state = 149, .external_lex_state = 2}, - [854] = {.lex_state = 149, .external_lex_state = 2}, - [855] = {.lex_state = 149, .external_lex_state = 2}, - [856] = {.lex_state = 149, .external_lex_state = 2}, - [857] = {.lex_state = 149, .external_lex_state = 2}, - [858] = {.lex_state = 149, .external_lex_state = 2}, - [859] = {.lex_state = 149, .external_lex_state = 2}, - [860] = {.lex_state = 149, .external_lex_state = 2}, - [861] = {.lex_state = 149, .external_lex_state = 2}, - [862] = {.lex_state = 149, .external_lex_state = 2}, - [863] = {.lex_state = 149, .external_lex_state = 2}, - [864] = {.lex_state = 149, .external_lex_state = 2}, - [865] = {.lex_state = 149, .external_lex_state = 2}, - [866] = {.lex_state = 149, .external_lex_state = 2}, - [867] = {.lex_state = 149, .external_lex_state = 2}, - [868] = {.lex_state = 149, .external_lex_state = 2}, - [869] = {.lex_state = 149, .external_lex_state = 2}, - [870] = {.lex_state = 149, .external_lex_state = 2}, - [871] = {.lex_state = 149, .external_lex_state = 2}, - [872] = {.lex_state = 149, .external_lex_state = 2}, - [873] = {.lex_state = 149, .external_lex_state = 2}, - [874] = {.lex_state = 149, .external_lex_state = 2}, - [875] = {.lex_state = 149, .external_lex_state = 2}, - [876] = {.lex_state = 149, .external_lex_state = 2}, - [877] = {.lex_state = 149, .external_lex_state = 2}, - [878] = {.lex_state = 149, .external_lex_state = 2}, - [879] = {.lex_state = 149, .external_lex_state = 2}, - [880] = {.lex_state = 149, .external_lex_state = 2}, - [881] = {.lex_state = 149, .external_lex_state = 2}, - [882] = {.lex_state = 149, .external_lex_state = 2}, - [883] = {.lex_state = 149, .external_lex_state = 2}, - [884] = {.lex_state = 149, .external_lex_state = 2}, - [885] = {.lex_state = 149, .external_lex_state = 2}, - [886] = {.lex_state = 149, .external_lex_state = 2}, - [887] = {.lex_state = 149, .external_lex_state = 2}, - [888] = {.lex_state = 149, .external_lex_state = 2}, - [889] = {.lex_state = 149, .external_lex_state = 2}, - [890] = {.lex_state = 149, .external_lex_state = 2}, - [891] = {.lex_state = 149, .external_lex_state = 2}, - [892] = {.lex_state = 149, .external_lex_state = 2}, - [893] = {.lex_state = 149, .external_lex_state = 2}, - [894] = {.lex_state = 149, .external_lex_state = 2}, - [895] = {.lex_state = 149, .external_lex_state = 2}, - [896] = {.lex_state = 149, .external_lex_state = 2}, - [897] = {.lex_state = 149, .external_lex_state = 2}, - [898] = {.lex_state = 149, .external_lex_state = 2}, - [899] = {.lex_state = 149, .external_lex_state = 2}, - [900] = {.lex_state = 149, .external_lex_state = 2}, - [901] = {.lex_state = 149, .external_lex_state = 2}, - [902] = {.lex_state = 149, .external_lex_state = 2}, - [903] = {.lex_state = 149, .external_lex_state = 2}, - [904] = {.lex_state = 149, .external_lex_state = 2}, - [905] = {.lex_state = 149, .external_lex_state = 2}, - [906] = {.lex_state = 12, .external_lex_state = 2}, - [907] = {.lex_state = 12, .external_lex_state = 2}, - [908] = {.lex_state = 12, .external_lex_state = 2}, - [909] = {.lex_state = 12, .external_lex_state = 2}, - [910] = {.lex_state = 12, .external_lex_state = 2}, - [911] = {.lex_state = 12, .external_lex_state = 2}, - [912] = {.lex_state = 12, .external_lex_state = 2}, - [913] = {.lex_state = 12, .external_lex_state = 2}, - [914] = {.lex_state = 12, .external_lex_state = 2}, - [915] = {.lex_state = 12, .external_lex_state = 2}, - [916] = {.lex_state = 12, .external_lex_state = 2}, - [917] = {.lex_state = 149, .external_lex_state = 2}, - [918] = {.lex_state = 149, .external_lex_state = 2}, - [919] = {.lex_state = 149, .external_lex_state = 2}, - [920] = {.lex_state = 149, .external_lex_state = 2}, - [921] = {.lex_state = 149, .external_lex_state = 2}, - [922] = {.lex_state = 149, .external_lex_state = 2}, - [923] = {.lex_state = 149, .external_lex_state = 2}, - [924] = {.lex_state = 149, .external_lex_state = 2}, - [925] = {.lex_state = 149, .external_lex_state = 2}, - [926] = {.lex_state = 149, .external_lex_state = 2}, - [927] = {.lex_state = 149, .external_lex_state = 2}, - [928] = {.lex_state = 149, .external_lex_state = 2}, - [929] = {.lex_state = 149, .external_lex_state = 2}, - [930] = {.lex_state = 149, .external_lex_state = 2}, - [931] = {.lex_state = 12, .external_lex_state = 2}, - [932] = {.lex_state = 12, .external_lex_state = 2}, - [933] = {.lex_state = 12, .external_lex_state = 2}, - [934] = {.lex_state = 12, .external_lex_state = 2}, - [935] = {.lex_state = 12, .external_lex_state = 2}, - [936] = {.lex_state = 12, .external_lex_state = 2}, - [937] = {.lex_state = 12, .external_lex_state = 2}, - [938] = {.lex_state = 12, .external_lex_state = 2}, - [939] = {.lex_state = 12, .external_lex_state = 2}, - [940] = {.lex_state = 12, .external_lex_state = 2}, - [941] = {.lex_state = 12, .external_lex_state = 2}, - [942] = {.lex_state = 12, .external_lex_state = 2}, - [943] = {.lex_state = 12, .external_lex_state = 2}, - [944] = {.lex_state = 12, .external_lex_state = 2}, - [945] = {.lex_state = 12, .external_lex_state = 2}, - [946] = {.lex_state = 12, .external_lex_state = 2}, - [947] = {.lex_state = 12, .external_lex_state = 2}, - [948] = {.lex_state = 14, .external_lex_state = 2}, - [949] = {.lex_state = 14, .external_lex_state = 2}, - [950] = {.lex_state = 14, .external_lex_state = 2}, - [951] = {.lex_state = 12, .external_lex_state = 2}, - [952] = {.lex_state = 12, .external_lex_state = 2}, - [953] = {.lex_state = 16, .external_lex_state = 2}, - [954] = {.lex_state = 12, .external_lex_state = 2}, - [955] = {.lex_state = 12, .external_lex_state = 2}, - [956] = {.lex_state = 12, .external_lex_state = 2}, - [957] = {.lex_state = 12, .external_lex_state = 2}, - [958] = {.lex_state = 12, .external_lex_state = 2}, - [959] = {.lex_state = 12, .external_lex_state = 2}, - [960] = {.lex_state = 12, .external_lex_state = 2}, - [961] = {.lex_state = 12, .external_lex_state = 2}, - [962] = {.lex_state = 12, .external_lex_state = 2}, - [963] = {.lex_state = 12, .external_lex_state = 2}, - [964] = {.lex_state = 12, .external_lex_state = 2}, - [965] = {.lex_state = 12, .external_lex_state = 2}, - [966] = {.lex_state = 12, .external_lex_state = 2}, - [967] = {.lex_state = 12, .external_lex_state = 2}, - [968] = {.lex_state = 12, .external_lex_state = 2}, - [969] = {.lex_state = 12, .external_lex_state = 2}, - [970] = {.lex_state = 12, .external_lex_state = 2}, - [971] = {.lex_state = 12, .external_lex_state = 2}, - [972] = {.lex_state = 12, .external_lex_state = 2}, - [973] = {.lex_state = 12, .external_lex_state = 2}, - [974] = {.lex_state = 12, .external_lex_state = 2}, - [975] = {.lex_state = 12, .external_lex_state = 2}, - [976] = {.lex_state = 12, .external_lex_state = 2}, - [977] = {.lex_state = 12, .external_lex_state = 2}, - [978] = {.lex_state = 12, .external_lex_state = 2}, - [979] = {.lex_state = 12, .external_lex_state = 2}, - [980] = {.lex_state = 12, .external_lex_state = 2}, - [981] = {.lex_state = 12, .external_lex_state = 2}, - [982] = {.lex_state = 12, .external_lex_state = 2}, - [983] = {.lex_state = 12, .external_lex_state = 2}, - [984] = {.lex_state = 12, .external_lex_state = 2}, - [985] = {.lex_state = 12, .external_lex_state = 2}, - [986] = {.lex_state = 12, .external_lex_state = 2}, - [987] = {.lex_state = 12, .external_lex_state = 2}, - [988] = {.lex_state = 12, .external_lex_state = 2}, - [989] = {.lex_state = 12, .external_lex_state = 2}, - [990] = {.lex_state = 12, .external_lex_state = 2}, - [991] = {.lex_state = 12, .external_lex_state = 2}, - [992] = {.lex_state = 12, .external_lex_state = 2}, - [993] = {.lex_state = 12, .external_lex_state = 2}, - [994] = {.lex_state = 12, .external_lex_state = 2}, - [995] = {.lex_state = 12, .external_lex_state = 2}, - [996] = {.lex_state = 12, .external_lex_state = 2}, - [997] = {.lex_state = 12, .external_lex_state = 2}, - [998] = {.lex_state = 12, .external_lex_state = 2}, - [999] = {.lex_state = 12, .external_lex_state = 2}, - [1000] = {.lex_state = 12, .external_lex_state = 2}, - [1001] = {.lex_state = 12, .external_lex_state = 2}, - [1002] = {.lex_state = 12, .external_lex_state = 2}, - [1003] = {.lex_state = 12, .external_lex_state = 2}, - [1004] = {.lex_state = 12, .external_lex_state = 2}, - [1005] = {.lex_state = 12, .external_lex_state = 2}, - [1006] = {.lex_state = 12, .external_lex_state = 2}, - [1007] = {.lex_state = 12, .external_lex_state = 2}, - [1008] = {.lex_state = 12, .external_lex_state = 2}, - [1009] = {.lex_state = 12, .external_lex_state = 2}, - [1010] = {.lex_state = 12, .external_lex_state = 2}, - [1011] = {.lex_state = 12, .external_lex_state = 2}, - [1012] = {.lex_state = 12, .external_lex_state = 2}, - [1013] = {.lex_state = 12, .external_lex_state = 2}, - [1014] = {.lex_state = 12, .external_lex_state = 2}, - [1015] = {.lex_state = 12, .external_lex_state = 2}, - [1016] = {.lex_state = 12, .external_lex_state = 2}, - [1017] = {.lex_state = 12, .external_lex_state = 2}, - [1018] = {.lex_state = 12, .external_lex_state = 2}, - [1019] = {.lex_state = 12, .external_lex_state = 2}, - [1020] = {.lex_state = 12, .external_lex_state = 2}, - [1021] = {.lex_state = 12, .external_lex_state = 2}, - [1022] = {.lex_state = 12, .external_lex_state = 2}, - [1023] = {.lex_state = 12, .external_lex_state = 2}, - [1024] = {.lex_state = 12, .external_lex_state = 2}, - [1025] = {.lex_state = 12, .external_lex_state = 2}, - [1026] = {.lex_state = 12, .external_lex_state = 2}, - [1027] = {.lex_state = 12, .external_lex_state = 2}, - [1028] = {.lex_state = 12, .external_lex_state = 2}, - [1029] = {.lex_state = 12, .external_lex_state = 2}, - [1030] = {.lex_state = 12, .external_lex_state = 2}, - [1031] = {.lex_state = 12, .external_lex_state = 2}, - [1032] = {.lex_state = 12, .external_lex_state = 2}, - [1033] = {.lex_state = 12, .external_lex_state = 2}, - [1034] = {.lex_state = 12, .external_lex_state = 2}, - [1035] = {.lex_state = 12, .external_lex_state = 2}, - [1036] = {.lex_state = 12, .external_lex_state = 2}, - [1037] = {.lex_state = 12, .external_lex_state = 2}, - [1038] = {.lex_state = 12, .external_lex_state = 2}, - [1039] = {.lex_state = 12, .external_lex_state = 2}, - [1040] = {.lex_state = 12, .external_lex_state = 2}, - [1041] = {.lex_state = 12, .external_lex_state = 2}, - [1042] = {.lex_state = 12, .external_lex_state = 2}, - [1043] = {.lex_state = 12, .external_lex_state = 2}, - [1044] = {.lex_state = 12, .external_lex_state = 2}, - [1045] = {.lex_state = 12, .external_lex_state = 2}, - [1046] = {.lex_state = 12, .external_lex_state = 2}, - [1047] = {.lex_state = 12, .external_lex_state = 2}, - [1048] = {.lex_state = 12, .external_lex_state = 2}, - [1049] = {.lex_state = 12, .external_lex_state = 2}, - [1050] = {.lex_state = 12, .external_lex_state = 2}, - [1051] = {.lex_state = 12, .external_lex_state = 2}, - [1052] = {.lex_state = 12, .external_lex_state = 2}, - [1053] = {.lex_state = 12, .external_lex_state = 2}, - [1054] = {.lex_state = 12, .external_lex_state = 2}, - [1055] = {.lex_state = 12, .external_lex_state = 2}, - [1056] = {.lex_state = 12, .external_lex_state = 2}, - [1057] = {.lex_state = 12, .external_lex_state = 2}, - [1058] = {.lex_state = 12, .external_lex_state = 2}, - [1059] = {.lex_state = 12, .external_lex_state = 2}, - [1060] = {.lex_state = 12, .external_lex_state = 2}, - [1061] = {.lex_state = 12, .external_lex_state = 2}, - [1062] = {.lex_state = 12, .external_lex_state = 2}, - [1063] = {.lex_state = 12, .external_lex_state = 2}, - [1064] = {.lex_state = 12, .external_lex_state = 2}, - [1065] = {.lex_state = 12, .external_lex_state = 2}, - [1066] = {.lex_state = 12, .external_lex_state = 2}, - [1067] = {.lex_state = 12, .external_lex_state = 2}, - [1068] = {.lex_state = 12, .external_lex_state = 2}, - [1069] = {.lex_state = 12, .external_lex_state = 2}, - [1070] = {.lex_state = 12, .external_lex_state = 2}, - [1071] = {.lex_state = 12, .external_lex_state = 2}, - [1072] = {.lex_state = 12, .external_lex_state = 2}, - [1073] = {.lex_state = 12, .external_lex_state = 2}, - [1074] = {.lex_state = 12, .external_lex_state = 2}, - [1075] = {.lex_state = 12, .external_lex_state = 2}, - [1076] = {.lex_state = 12, .external_lex_state = 2}, - [1077] = {.lex_state = 12, .external_lex_state = 2}, - [1078] = {.lex_state = 12, .external_lex_state = 2}, - [1079] = {.lex_state = 12, .external_lex_state = 2}, - [1080] = {.lex_state = 12, .external_lex_state = 2}, - [1081] = {.lex_state = 12, .external_lex_state = 2}, - [1082] = {.lex_state = 12, .external_lex_state = 2}, - [1083] = {.lex_state = 12, .external_lex_state = 2}, - [1084] = {.lex_state = 12, .external_lex_state = 2}, - [1085] = {.lex_state = 12, .external_lex_state = 2}, - [1086] = {.lex_state = 12, .external_lex_state = 2}, - [1087] = {.lex_state = 12, .external_lex_state = 2}, - [1088] = {.lex_state = 12, .external_lex_state = 2}, - [1089] = {.lex_state = 12, .external_lex_state = 2}, - [1090] = {.lex_state = 12, .external_lex_state = 2}, - [1091] = {.lex_state = 12, .external_lex_state = 2}, - [1092] = {.lex_state = 12, .external_lex_state = 2}, - [1093] = {.lex_state = 12, .external_lex_state = 2}, - [1094] = {.lex_state = 12, .external_lex_state = 2}, - [1095] = {.lex_state = 12, .external_lex_state = 2}, - [1096] = {.lex_state = 12, .external_lex_state = 2}, - [1097] = {.lex_state = 12, .external_lex_state = 2}, - [1098] = {.lex_state = 12, .external_lex_state = 2}, - [1099] = {.lex_state = 12, .external_lex_state = 2}, - [1100] = {.lex_state = 12, .external_lex_state = 2}, - [1101] = {.lex_state = 12, .external_lex_state = 2}, - [1102] = {.lex_state = 12, .external_lex_state = 2}, - [1103] = {.lex_state = 12, .external_lex_state = 2}, - [1104] = {.lex_state = 12, .external_lex_state = 2}, - [1105] = {.lex_state = 12, .external_lex_state = 2}, - [1106] = {.lex_state = 12, .external_lex_state = 2}, - [1107] = {.lex_state = 12, .external_lex_state = 2}, - [1108] = {.lex_state = 12, .external_lex_state = 2}, - [1109] = {.lex_state = 12, .external_lex_state = 2}, - [1110] = {.lex_state = 12, .external_lex_state = 2}, - [1111] = {.lex_state = 12, .external_lex_state = 2}, - [1112] = {.lex_state = 12, .external_lex_state = 2}, - [1113] = {.lex_state = 12, .external_lex_state = 2}, - [1114] = {.lex_state = 12, .external_lex_state = 2}, - [1115] = {.lex_state = 12, .external_lex_state = 2}, - [1116] = {.lex_state = 12, .external_lex_state = 2}, - [1117] = {.lex_state = 12, .external_lex_state = 2}, - [1118] = {.lex_state = 12, .external_lex_state = 2}, - [1119] = {.lex_state = 12, .external_lex_state = 2}, - [1120] = {.lex_state = 12, .external_lex_state = 2}, - [1121] = {.lex_state = 12, .external_lex_state = 2}, - [1122] = {.lex_state = 12, .external_lex_state = 2}, - [1123] = {.lex_state = 12, .external_lex_state = 2}, - [1124] = {.lex_state = 12, .external_lex_state = 2}, - [1125] = {.lex_state = 13, .external_lex_state = 2}, - [1126] = {.lex_state = 13, .external_lex_state = 2}, - [1127] = {.lex_state = 13, .external_lex_state = 2}, - [1128] = {.lex_state = 13, .external_lex_state = 2}, - [1129] = {.lex_state = 13, .external_lex_state = 2}, - [1130] = {.lex_state = 13, .external_lex_state = 2}, - [1131] = {.lex_state = 13, .external_lex_state = 2}, - [1132] = {.lex_state = 13, .external_lex_state = 2}, - [1133] = {.lex_state = 13, .external_lex_state = 2}, - [1134] = {.lex_state = 13, .external_lex_state = 2}, - [1135] = {.lex_state = 13, .external_lex_state = 2}, - [1136] = {.lex_state = 13, .external_lex_state = 2}, - [1137] = {.lex_state = 5, .external_lex_state = 4}, - [1138] = {.lex_state = 5, .external_lex_state = 4}, - [1139] = {.lex_state = 5, .external_lex_state = 4}, - [1140] = {.lex_state = 6, .external_lex_state = 4}, - [1141] = {.lex_state = 5, .external_lex_state = 4}, - [1142] = {.lex_state = 5, .external_lex_state = 4}, - [1143] = {.lex_state = 5, .external_lex_state = 4}, - [1144] = {.lex_state = 6, .external_lex_state = 4}, - [1145] = {.lex_state = 6, .external_lex_state = 4}, - [1146] = {.lex_state = 5, .external_lex_state = 3}, - [1147] = {.lex_state = 5, .external_lex_state = 3}, - [1148] = {.lex_state = 5, .external_lex_state = 3}, - [1149] = {.lex_state = 5, .external_lex_state = 3}, - [1150] = {.lex_state = 5, .external_lex_state = 3}, - [1151] = {.lex_state = 13, .external_lex_state = 2}, - [1152] = {.lex_state = 13, .external_lex_state = 2}, - [1153] = {.lex_state = 5, .external_lex_state = 4}, - [1154] = {.lex_state = 5, .external_lex_state = 4}, - [1155] = {.lex_state = 5, .external_lex_state = 4}, - [1156] = {.lex_state = 6, .external_lex_state = 4}, - [1157] = {.lex_state = 5, .external_lex_state = 4}, - [1158] = {.lex_state = 5, .external_lex_state = 4}, - [1159] = {.lex_state = 6, .external_lex_state = 4}, - [1160] = {.lex_state = 5, .external_lex_state = 4}, - [1161] = {.lex_state = 5, .external_lex_state = 4}, - [1162] = {.lex_state = 5, .external_lex_state = 4}, - [1163] = {.lex_state = 5, .external_lex_state = 4}, - [1164] = {.lex_state = 5, .external_lex_state = 4}, - [1165] = {.lex_state = 5, .external_lex_state = 3}, - [1166] = {.lex_state = 6, .external_lex_state = 4}, - [1167] = {.lex_state = 6, .external_lex_state = 3}, - [1168] = {.lex_state = 5, .external_lex_state = 4}, - [1169] = {.lex_state = 6, .external_lex_state = 3}, - [1170] = {.lex_state = 6, .external_lex_state = 3}, - [1171] = {.lex_state = 6, .external_lex_state = 3}, - [1172] = {.lex_state = 6, .external_lex_state = 3}, - [1173] = {.lex_state = 6, .external_lex_state = 3}, - [1174] = {.lex_state = 6, .external_lex_state = 3}, - [1175] = {.lex_state = 6, .external_lex_state = 3}, - [1176] = {.lex_state = 6, .external_lex_state = 3}, - [1177] = {.lex_state = 6, .external_lex_state = 3}, - [1178] = {.lex_state = 5, .external_lex_state = 3}, - [1179] = {.lex_state = 5, .external_lex_state = 4}, - [1180] = {.lex_state = 6, .external_lex_state = 3}, - [1181] = {.lex_state = 5, .external_lex_state = 3}, - [1182] = {.lex_state = 5, .external_lex_state = 3}, - [1183] = {.lex_state = 6, .external_lex_state = 3}, - [1184] = {.lex_state = 5, .external_lex_state = 4}, - [1185] = {.lex_state = 5, .external_lex_state = 4}, - [1186] = {.lex_state = 5, .external_lex_state = 3}, - [1187] = {.lex_state = 5, .external_lex_state = 3}, - [1188] = {.lex_state = 5, .external_lex_state = 3}, - [1189] = {.lex_state = 5, .external_lex_state = 4}, - [1190] = {.lex_state = 5, .external_lex_state = 4}, - [1191] = {.lex_state = 5, .external_lex_state = 4}, - [1192] = {.lex_state = 5, .external_lex_state = 4}, - [1193] = {.lex_state = 5, .external_lex_state = 3}, - [1194] = {.lex_state = 6, .external_lex_state = 4}, - [1195] = {.lex_state = 5, .external_lex_state = 4}, - [1196] = {.lex_state = 6, .external_lex_state = 3}, - [1197] = {.lex_state = 5, .external_lex_state = 3}, - [1198] = {.lex_state = 5, .external_lex_state = 4}, - [1199] = {.lex_state = 5, .external_lex_state = 4}, - [1200] = {.lex_state = 6, .external_lex_state = 3}, - [1201] = {.lex_state = 6, .external_lex_state = 3}, - [1202] = {.lex_state = 5, .external_lex_state = 4}, - [1203] = {.lex_state = 5, .external_lex_state = 4}, - [1204] = {.lex_state = 5, .external_lex_state = 4}, - [1205] = {.lex_state = 5, .external_lex_state = 3}, - [1206] = {.lex_state = 5, .external_lex_state = 4}, - [1207] = {.lex_state = 6, .external_lex_state = 4}, - [1208] = {.lex_state = 5, .external_lex_state = 4}, - [1209] = {.lex_state = 5, .external_lex_state = 4}, - [1210] = {.lex_state = 5, .external_lex_state = 3}, - [1211] = {.lex_state = 5, .external_lex_state = 3}, - [1212] = {.lex_state = 5, .external_lex_state = 4}, - [1213] = {.lex_state = 149, .external_lex_state = 2}, - [1214] = {.lex_state = 5, .external_lex_state = 4}, - [1215] = {.lex_state = 5, .external_lex_state = 3}, - [1216] = {.lex_state = 5, .external_lex_state = 3}, - [1217] = {.lex_state = 5, .external_lex_state = 3}, - [1218] = {.lex_state = 5, .external_lex_state = 3}, - [1219] = {.lex_state = 5, .external_lex_state = 3}, - [1220] = {.lex_state = 5, .external_lex_state = 3}, - [1221] = {.lex_state = 5, .external_lex_state = 3}, - [1222] = {.lex_state = 5, .external_lex_state = 3}, - [1223] = {.lex_state = 5, .external_lex_state = 3}, - [1224] = {.lex_state = 5, .external_lex_state = 3}, - [1225] = {.lex_state = 5, .external_lex_state = 3}, - [1226] = {.lex_state = 5, .external_lex_state = 3}, - [1227] = {.lex_state = 5, .external_lex_state = 3}, - [1228] = {.lex_state = 5, .external_lex_state = 3}, - [1229] = {.lex_state = 5, .external_lex_state = 3}, - [1230] = {.lex_state = 5, .external_lex_state = 3}, - [1231] = {.lex_state = 149, .external_lex_state = 2}, - [1232] = {.lex_state = 149, .external_lex_state = 2}, - [1233] = {.lex_state = 5, .external_lex_state = 3}, - [1234] = {.lex_state = 5, .external_lex_state = 3}, - [1235] = {.lex_state = 5, .external_lex_state = 3}, - [1236] = {.lex_state = 5, .external_lex_state = 4}, - [1237] = {.lex_state = 5, .external_lex_state = 4}, - [1238] = {.lex_state = 149, .external_lex_state = 2}, - [1239] = {.lex_state = 5, .external_lex_state = 4}, - [1240] = {.lex_state = 5, .external_lex_state = 4}, - [1241] = {.lex_state = 5, .external_lex_state = 3}, - [1242] = {.lex_state = 6, .external_lex_state = 3}, - [1243] = {.lex_state = 5, .external_lex_state = 3}, - [1244] = {.lex_state = 5, .external_lex_state = 3}, - [1245] = {.lex_state = 5, .external_lex_state = 3}, - [1246] = {.lex_state = 5, .external_lex_state = 3}, - [1247] = {.lex_state = 5, .external_lex_state = 3}, - [1248] = {.lex_state = 149, .external_lex_state = 2}, - [1249] = {.lex_state = 5, .external_lex_state = 3}, - [1250] = {.lex_state = 6, .external_lex_state = 3}, - [1251] = {.lex_state = 5, .external_lex_state = 3}, - [1252] = {.lex_state = 5, .external_lex_state = 3}, - [1253] = {.lex_state = 5, .external_lex_state = 3}, - [1254] = {.lex_state = 5, .external_lex_state = 3}, - [1255] = {.lex_state = 5, .external_lex_state = 3}, - [1256] = {.lex_state = 149, .external_lex_state = 2}, - [1257] = {.lex_state = 5, .external_lex_state = 3}, - [1258] = {.lex_state = 5, .external_lex_state = 4}, - [1259] = {.lex_state = 5, .external_lex_state = 4}, - [1260] = {.lex_state = 5, .external_lex_state = 3}, - [1261] = {.lex_state = 5, .external_lex_state = 3}, - [1262] = {.lex_state = 5, .external_lex_state = 3}, - [1263] = {.lex_state = 5, .external_lex_state = 3}, - [1264] = {.lex_state = 5, .external_lex_state = 4}, - [1265] = {.lex_state = 149, .external_lex_state = 2}, - [1266] = {.lex_state = 5, .external_lex_state = 3}, - [1267] = {.lex_state = 149, .external_lex_state = 2}, - [1268] = {.lex_state = 5, .external_lex_state = 4}, - [1269] = {.lex_state = 5, .external_lex_state = 4}, - [1270] = {.lex_state = 5, .external_lex_state = 3}, - [1271] = {.lex_state = 5, .external_lex_state = 3}, - [1272] = {.lex_state = 5, .external_lex_state = 3}, - [1273] = {.lex_state = 5, .external_lex_state = 4}, - [1274] = {.lex_state = 5, .external_lex_state = 3}, - [1275] = {.lex_state = 5, .external_lex_state = 3}, - [1276] = {.lex_state = 5, .external_lex_state = 4}, - [1277] = {.lex_state = 5, .external_lex_state = 4}, - [1278] = {.lex_state = 5, .external_lex_state = 4}, - [1279] = {.lex_state = 5, .external_lex_state = 3}, - [1280] = {.lex_state = 149, .external_lex_state = 2}, - [1281] = {.lex_state = 6, .external_lex_state = 3}, - [1282] = {.lex_state = 5, .external_lex_state = 3}, - [1283] = {.lex_state = 5, .external_lex_state = 4}, - [1284] = {.lex_state = 5, .external_lex_state = 3}, - [1285] = {.lex_state = 5, .external_lex_state = 4}, - [1286] = {.lex_state = 5, .external_lex_state = 3}, - [1287] = {.lex_state = 5, .external_lex_state = 4}, - [1288] = {.lex_state = 5, .external_lex_state = 4}, - [1289] = {.lex_state = 5, .external_lex_state = 3}, - [1290] = {.lex_state = 5, .external_lex_state = 4}, - [1291] = {.lex_state = 5, .external_lex_state = 3}, - [1292] = {.lex_state = 5, .external_lex_state = 3}, - [1293] = {.lex_state = 5, .external_lex_state = 4}, - [1294] = {.lex_state = 5, .external_lex_state = 4}, - [1295] = {.lex_state = 5, .external_lex_state = 3}, - [1296] = {.lex_state = 5, .external_lex_state = 4}, - [1297] = {.lex_state = 5, .external_lex_state = 4}, - [1298] = {.lex_state = 5, .external_lex_state = 4}, - [1299] = {.lex_state = 5, .external_lex_state = 4}, - [1300] = {.lex_state = 5, .external_lex_state = 3}, - [1301] = {.lex_state = 5, .external_lex_state = 4}, - [1302] = {.lex_state = 5, .external_lex_state = 4}, - [1303] = {.lex_state = 5, .external_lex_state = 4}, - [1304] = {.lex_state = 5, .external_lex_state = 4}, - [1305] = {.lex_state = 5, .external_lex_state = 4}, - [1306] = {.lex_state = 5, .external_lex_state = 4}, - [1307] = {.lex_state = 5, .external_lex_state = 3}, - [1308] = {.lex_state = 5, .external_lex_state = 4}, - [1309] = {.lex_state = 5, .external_lex_state = 4}, - [1310] = {.lex_state = 5, .external_lex_state = 4}, - [1311] = {.lex_state = 5, .external_lex_state = 4}, - [1312] = {.lex_state = 5, .external_lex_state = 4}, - [1313] = {.lex_state = 5, .external_lex_state = 3}, - [1314] = {.lex_state = 5, .external_lex_state = 4}, - [1315] = {.lex_state = 5, .external_lex_state = 4}, - [1316] = {.lex_state = 5, .external_lex_state = 3}, - [1317] = {.lex_state = 5, .external_lex_state = 4}, - [1318] = {.lex_state = 5, .external_lex_state = 3}, - [1319] = {.lex_state = 5, .external_lex_state = 4}, - [1320] = {.lex_state = 6, .external_lex_state = 3}, - [1321] = {.lex_state = 5, .external_lex_state = 3}, - [1322] = {.lex_state = 5, .external_lex_state = 3}, - [1323] = {.lex_state = 5, .external_lex_state = 3}, - [1324] = {.lex_state = 5, .external_lex_state = 4}, - [1325] = {.lex_state = 5, .external_lex_state = 4}, - [1326] = {.lex_state = 5, .external_lex_state = 4}, - [1327] = {.lex_state = 5, .external_lex_state = 3}, - [1328] = {.lex_state = 5, .external_lex_state = 3}, - [1329] = {.lex_state = 6, .external_lex_state = 3}, - [1330] = {.lex_state = 5, .external_lex_state = 4}, - [1331] = {.lex_state = 5, .external_lex_state = 3}, - [1332] = {.lex_state = 5, .external_lex_state = 3}, - [1333] = {.lex_state = 6, .external_lex_state = 3}, - [1334] = {.lex_state = 5, .external_lex_state = 3}, - [1335] = {.lex_state = 5, .external_lex_state = 3}, - [1336] = {.lex_state = 5, .external_lex_state = 4}, - [1337] = {.lex_state = 5, .external_lex_state = 3}, - [1338] = {.lex_state = 6, .external_lex_state = 3}, - [1339] = {.lex_state = 5, .external_lex_state = 3}, - [1340] = {.lex_state = 5, .external_lex_state = 3}, - [1341] = {.lex_state = 6, .external_lex_state = 3}, - [1342] = {.lex_state = 5, .external_lex_state = 4}, - [1343] = {.lex_state = 5, .external_lex_state = 3}, - [1344] = {.lex_state = 5, .external_lex_state = 3}, - [1345] = {.lex_state = 5, .external_lex_state = 4}, - [1346] = {.lex_state = 12, .external_lex_state = 2}, - [1347] = {.lex_state = 5, .external_lex_state = 3}, - [1348] = {.lex_state = 5, .external_lex_state = 3}, - [1349] = {.lex_state = 5, .external_lex_state = 3}, - [1350] = {.lex_state = 5, .external_lex_state = 4}, - [1351] = {.lex_state = 12, .external_lex_state = 2}, - [1352] = {.lex_state = 12, .external_lex_state = 2}, - [1353] = {.lex_state = 5, .external_lex_state = 4}, - [1354] = {.lex_state = 5, .external_lex_state = 3}, - [1355] = {.lex_state = 12, .external_lex_state = 2}, - [1356] = {.lex_state = 5, .external_lex_state = 3}, - [1357] = {.lex_state = 5, .external_lex_state = 3}, - [1358] = {.lex_state = 5, .external_lex_state = 4}, - [1359] = {.lex_state = 12, .external_lex_state = 2}, - [1360] = {.lex_state = 5, .external_lex_state = 3}, - [1361] = {.lex_state = 5, .external_lex_state = 3}, - [1362] = {.lex_state = 5, .external_lex_state = 3}, - [1363] = {.lex_state = 5, .external_lex_state = 3}, - [1364] = {.lex_state = 5, .external_lex_state = 3}, - [1365] = {.lex_state = 6, .external_lex_state = 3}, - [1366] = {.lex_state = 5, .external_lex_state = 3}, - [1367] = {.lex_state = 12, .external_lex_state = 2}, - [1368] = {.lex_state = 5, .external_lex_state = 3}, - [1369] = {.lex_state = 5, .external_lex_state = 3}, - [1370] = {.lex_state = 5, .external_lex_state = 3}, - [1371] = {.lex_state = 5, .external_lex_state = 3}, - [1372] = {.lex_state = 5, .external_lex_state = 3}, - [1373] = {.lex_state = 5, .external_lex_state = 4}, - [1374] = {.lex_state = 5, .external_lex_state = 3}, - [1375] = {.lex_state = 5, .external_lex_state = 3}, - [1376] = {.lex_state = 5, .external_lex_state = 3}, - [1377] = {.lex_state = 5, .external_lex_state = 3}, - [1378] = {.lex_state = 5, .external_lex_state = 3}, - [1379] = {.lex_state = 5, .external_lex_state = 3}, - [1380] = {.lex_state = 5, .external_lex_state = 3}, - [1381] = {.lex_state = 5, .external_lex_state = 3}, - [1382] = {.lex_state = 5, .external_lex_state = 3}, - [1383] = {.lex_state = 5, .external_lex_state = 3}, - [1384] = {.lex_state = 5, .external_lex_state = 3}, - [1385] = {.lex_state = 12, .external_lex_state = 2}, - [1386] = {.lex_state = 12, .external_lex_state = 2}, - [1387] = {.lex_state = 5, .external_lex_state = 3}, - [1388] = {.lex_state = 12, .external_lex_state = 2}, - [1389] = {.lex_state = 12, .external_lex_state = 2}, - [1390] = {.lex_state = 5, .external_lex_state = 3}, - [1391] = {.lex_state = 12, .external_lex_state = 2}, - [1392] = {.lex_state = 12, .external_lex_state = 2}, - [1393] = {.lex_state = 5, .external_lex_state = 3}, - [1394] = {.lex_state = 5, .external_lex_state = 3}, - [1395] = {.lex_state = 12, .external_lex_state = 2}, - [1396] = {.lex_state = 12, .external_lex_state = 2}, - [1397] = {.lex_state = 12, .external_lex_state = 2}, - [1398] = {.lex_state = 5, .external_lex_state = 3}, - [1399] = {.lex_state = 5, .external_lex_state = 3}, - [1400] = {.lex_state = 5, .external_lex_state = 3}, - [1401] = {.lex_state = 5, .external_lex_state = 3}, - [1402] = {.lex_state = 12, .external_lex_state = 2}, - [1403] = {.lex_state = 12, .external_lex_state = 2}, - [1404] = {.lex_state = 5, .external_lex_state = 3}, - [1405] = {.lex_state = 12, .external_lex_state = 2}, - [1406] = {.lex_state = 5, .external_lex_state = 3}, - [1407] = {.lex_state = 5, .external_lex_state = 3}, - [1408] = {.lex_state = 5, .external_lex_state = 3}, - [1409] = {.lex_state = 5, .external_lex_state = 3}, - [1410] = {.lex_state = 5, .external_lex_state = 3}, - [1411] = {.lex_state = 5, .external_lex_state = 3}, - [1412] = {.lex_state = 12, .external_lex_state = 2}, - [1413] = {.lex_state = 5, .external_lex_state = 3}, - [1414] = {.lex_state = 5, .external_lex_state = 3}, - [1415] = {.lex_state = 5, .external_lex_state = 3}, - [1416] = {.lex_state = 5, .external_lex_state = 3}, - [1417] = {.lex_state = 12, .external_lex_state = 2}, - [1418] = {.lex_state = 12, .external_lex_state = 2}, - [1419] = {.lex_state = 5, .external_lex_state = 3}, - [1420] = {.lex_state = 12, .external_lex_state = 2}, - [1421] = {.lex_state = 12, .external_lex_state = 2}, - [1422] = {.lex_state = 12, .external_lex_state = 2}, - [1423] = {.lex_state = 5, .external_lex_state = 3}, - [1424] = {.lex_state = 5, .external_lex_state = 3}, - [1425] = {.lex_state = 5, .external_lex_state = 3}, - [1426] = {.lex_state = 5, .external_lex_state = 3}, - [1427] = {.lex_state = 5, .external_lex_state = 3}, - [1428] = {.lex_state = 5, .external_lex_state = 3}, - [1429] = {.lex_state = 5, .external_lex_state = 3}, - [1430] = {.lex_state = 5, .external_lex_state = 3}, - [1431] = {.lex_state = 5, .external_lex_state = 3}, - [1432] = {.lex_state = 5, .external_lex_state = 3}, - [1433] = {.lex_state = 12, .external_lex_state = 2}, - [1434] = {.lex_state = 12, .external_lex_state = 2}, - [1435] = {.lex_state = 12, .external_lex_state = 2}, - [1436] = {.lex_state = 12, .external_lex_state = 2}, - [1437] = {.lex_state = 12, .external_lex_state = 2}, - [1438] = {.lex_state = 12, .external_lex_state = 2}, - [1439] = {.lex_state = 12, .external_lex_state = 2}, - [1440] = {.lex_state = 12, .external_lex_state = 2}, - [1441] = {.lex_state = 12, .external_lex_state = 2}, - [1442] = {.lex_state = 13, .external_lex_state = 5}, - [1443] = {.lex_state = 12, .external_lex_state = 2}, - [1444] = {.lex_state = 13, .external_lex_state = 5}, - [1445] = {.lex_state = 12, .external_lex_state = 2}, - [1446] = {.lex_state = 12, .external_lex_state = 2}, - [1447] = {.lex_state = 12, .external_lex_state = 2}, - [1448] = {.lex_state = 13, .external_lex_state = 5}, - [1449] = {.lex_state = 12, .external_lex_state = 2}, - [1450] = {.lex_state = 12, .external_lex_state = 2}, - [1451] = {.lex_state = 12, .external_lex_state = 2}, - [1452] = {.lex_state = 13, .external_lex_state = 5}, - [1453] = {.lex_state = 12, .external_lex_state = 2}, - [1454] = {.lex_state = 13, .external_lex_state = 5}, - [1455] = {.lex_state = 12, .external_lex_state = 2}, - [1456] = {.lex_state = 149, .external_lex_state = 2}, - [1457] = {.lex_state = 149, .external_lex_state = 2}, - [1458] = {.lex_state = 149, .external_lex_state = 2}, - [1459] = {.lex_state = 149, .external_lex_state = 2}, - [1460] = {.lex_state = 7, .external_lex_state = 3}, - [1461] = {.lex_state = 149, .external_lex_state = 2}, - [1462] = {.lex_state = 149, .external_lex_state = 2}, - [1463] = {.lex_state = 13, .external_lex_state = 5}, - [1464] = {.lex_state = 7, .external_lex_state = 4}, - [1465] = {.lex_state = 13, .external_lex_state = 5}, - [1466] = {.lex_state = 7, .external_lex_state = 3}, - [1467] = {.lex_state = 7, .external_lex_state = 3}, - [1468] = {.lex_state = 7, .external_lex_state = 4}, - [1469] = {.lex_state = 7, .external_lex_state = 3}, - [1470] = {.lex_state = 7, .external_lex_state = 3}, - [1471] = {.lex_state = 7, .external_lex_state = 3}, - [1472] = {.lex_state = 7, .external_lex_state = 3}, - [1473] = {.lex_state = 7, .external_lex_state = 4}, - [1474] = {.lex_state = 7, .external_lex_state = 3}, - [1475] = {.lex_state = 7, .external_lex_state = 3}, - [1476] = {.lex_state = 7, .external_lex_state = 3}, - [1477] = {.lex_state = 7, .external_lex_state = 3}, - [1478] = {.lex_state = 7, .external_lex_state = 3}, - [1479] = {.lex_state = 7, .external_lex_state = 3}, - [1480] = {.lex_state = 7, .external_lex_state = 3}, - [1481] = {.lex_state = 7, .external_lex_state = 3}, - [1482] = {.lex_state = 7, .external_lex_state = 3}, - [1483] = {.lex_state = 149, .external_lex_state = 2}, - [1484] = {.lex_state = 7, .external_lex_state = 3}, - [1485] = {.lex_state = 7, .external_lex_state = 3}, - [1486] = {.lex_state = 7, .external_lex_state = 3}, - [1487] = {.lex_state = 7, .external_lex_state = 3}, - [1488] = {.lex_state = 7, .external_lex_state = 3}, - [1489] = {.lex_state = 7, .external_lex_state = 3}, - [1490] = {.lex_state = 7, .external_lex_state = 3}, - [1491] = {.lex_state = 7, .external_lex_state = 3}, - [1492] = {.lex_state = 7, .external_lex_state = 3}, - [1493] = {.lex_state = 7, .external_lex_state = 3}, - [1494] = {.lex_state = 7, .external_lex_state = 3}, - [1495] = {.lex_state = 7, .external_lex_state = 3}, - [1496] = {.lex_state = 7, .external_lex_state = 3}, - [1497] = {.lex_state = 7, .external_lex_state = 4}, - [1498] = {.lex_state = 7, .external_lex_state = 3}, - [1499] = {.lex_state = 7, .external_lex_state = 3}, - [1500] = {.lex_state = 7, .external_lex_state = 3}, - [1501] = {.lex_state = 7, .external_lex_state = 3}, - [1502] = {.lex_state = 7, .external_lex_state = 3}, - [1503] = {.lex_state = 7, .external_lex_state = 3}, - [1504] = {.lex_state = 7, .external_lex_state = 3}, - [1505] = {.lex_state = 7, .external_lex_state = 3}, - [1506] = {.lex_state = 7, .external_lex_state = 4}, - [1507] = {.lex_state = 7, .external_lex_state = 3}, - [1508] = {.lex_state = 7, .external_lex_state = 3}, - [1509] = {.lex_state = 7, .external_lex_state = 3}, - [1510] = {.lex_state = 7, .external_lex_state = 4}, - [1511] = {.lex_state = 7, .external_lex_state = 3}, - [1512] = {.lex_state = 7, .external_lex_state = 4}, - [1513] = {.lex_state = 7, .external_lex_state = 3}, - [1514] = {.lex_state = 7, .external_lex_state = 3}, - [1515] = {.lex_state = 7, .external_lex_state = 3}, - [1516] = {.lex_state = 7, .external_lex_state = 3}, - [1517] = {.lex_state = 7, .external_lex_state = 3}, - [1518] = {.lex_state = 7, .external_lex_state = 3}, - [1519] = {.lex_state = 7, .external_lex_state = 3}, - [1520] = {.lex_state = 7, .external_lex_state = 3}, - [1521] = {.lex_state = 7, .external_lex_state = 3}, - [1522] = {.lex_state = 7, .external_lex_state = 3}, - [1523] = {.lex_state = 7, .external_lex_state = 3}, - [1524] = {.lex_state = 7, .external_lex_state = 3}, - [1525] = {.lex_state = 7, .external_lex_state = 3}, - [1526] = {.lex_state = 7, .external_lex_state = 3}, - [1527] = {.lex_state = 7, .external_lex_state = 3}, - [1528] = {.lex_state = 7, .external_lex_state = 3}, - [1529] = {.lex_state = 7, .external_lex_state = 3}, - [1530] = {.lex_state = 7, .external_lex_state = 3}, - [1531] = {.lex_state = 7, .external_lex_state = 3}, - [1532] = {.lex_state = 7, .external_lex_state = 3}, - [1533] = {.lex_state = 7, .external_lex_state = 3}, - [1534] = {.lex_state = 7, .external_lex_state = 3}, - [1535] = {.lex_state = 7, .external_lex_state = 3}, - [1536] = {.lex_state = 7, .external_lex_state = 3}, - [1537] = {.lex_state = 7, .external_lex_state = 3}, - [1538] = {.lex_state = 7, .external_lex_state = 3}, - [1539] = {.lex_state = 7, .external_lex_state = 3}, - [1540] = {.lex_state = 7, .external_lex_state = 3}, - [1541] = {.lex_state = 7, .external_lex_state = 3}, - [1542] = {.lex_state = 7, .external_lex_state = 3}, - [1543] = {.lex_state = 7, .external_lex_state = 3}, - [1544] = {.lex_state = 7, .external_lex_state = 3}, - [1545] = {.lex_state = 7, .external_lex_state = 3}, - [1546] = {.lex_state = 7, .external_lex_state = 3}, - [1547] = {.lex_state = 7, .external_lex_state = 3}, - [1548] = {.lex_state = 7, .external_lex_state = 3}, - [1549] = {.lex_state = 7, .external_lex_state = 3}, - [1550] = {.lex_state = 7, .external_lex_state = 3}, - [1551] = {.lex_state = 7, .external_lex_state = 3}, - [1552] = {.lex_state = 7, .external_lex_state = 3}, - [1553] = {.lex_state = 7, .external_lex_state = 3}, - [1554] = {.lex_state = 7, .external_lex_state = 3}, - [1555] = {.lex_state = 7, .external_lex_state = 3}, - [1556] = {.lex_state = 7, .external_lex_state = 3}, - [1557] = {.lex_state = 7, .external_lex_state = 3}, - [1558] = {.lex_state = 7, .external_lex_state = 3}, - [1559] = {.lex_state = 7, .external_lex_state = 3}, - [1560] = {.lex_state = 7, .external_lex_state = 3}, - [1561] = {.lex_state = 7, .external_lex_state = 3}, - [1562] = {.lex_state = 7, .external_lex_state = 3}, - [1563] = {.lex_state = 7, .external_lex_state = 3}, - [1564] = {.lex_state = 7, .external_lex_state = 3}, - [1565] = {.lex_state = 7, .external_lex_state = 3}, - [1566] = {.lex_state = 7, .external_lex_state = 3}, - [1567] = {.lex_state = 7, .external_lex_state = 3}, - [1568] = {.lex_state = 7, .external_lex_state = 3}, - [1569] = {.lex_state = 7, .external_lex_state = 3}, - [1570] = {.lex_state = 7, .external_lex_state = 3}, - [1571] = {.lex_state = 7, .external_lex_state = 3}, - [1572] = {.lex_state = 7, .external_lex_state = 3}, - [1573] = {.lex_state = 7, .external_lex_state = 3}, - [1574] = {.lex_state = 7, .external_lex_state = 3}, - [1575] = {.lex_state = 7, .external_lex_state = 3}, - [1576] = {.lex_state = 7, .external_lex_state = 3}, - [1577] = {.lex_state = 7, .external_lex_state = 3}, - [1578] = {.lex_state = 7, .external_lex_state = 3}, - [1579] = {.lex_state = 7, .external_lex_state = 3}, - [1580] = {.lex_state = 7, .external_lex_state = 3}, - [1581] = {.lex_state = 7, .external_lex_state = 3}, - [1582] = {.lex_state = 7, .external_lex_state = 3}, - [1583] = {.lex_state = 7, .external_lex_state = 3}, - [1584] = {.lex_state = 7, .external_lex_state = 3}, - [1585] = {.lex_state = 7, .external_lex_state = 3}, - [1586] = {.lex_state = 7, .external_lex_state = 3}, - [1587] = {.lex_state = 7, .external_lex_state = 3}, - [1588] = {.lex_state = 7, .external_lex_state = 3}, - [1589] = {.lex_state = 7, .external_lex_state = 3}, - [1590] = {.lex_state = 7, .external_lex_state = 3}, - [1591] = {.lex_state = 7, .external_lex_state = 3}, - [1592] = {.lex_state = 7, .external_lex_state = 3}, - [1593] = {.lex_state = 7, .external_lex_state = 3}, - [1594] = {.lex_state = 7, .external_lex_state = 3}, - [1595] = {.lex_state = 7, .external_lex_state = 3}, - [1596] = {.lex_state = 7, .external_lex_state = 3}, - [1597] = {.lex_state = 7, .external_lex_state = 3}, - [1598] = {.lex_state = 7, .external_lex_state = 3}, - [1599] = {.lex_state = 7, .external_lex_state = 3}, - [1600] = {.lex_state = 7, .external_lex_state = 3}, - [1601] = {.lex_state = 7, .external_lex_state = 3}, - [1602] = {.lex_state = 7, .external_lex_state = 3}, - [1603] = {.lex_state = 7, .external_lex_state = 3}, - [1604] = {.lex_state = 7, .external_lex_state = 3}, - [1605] = {.lex_state = 7, .external_lex_state = 3}, - [1606] = {.lex_state = 7, .external_lex_state = 3}, - [1607] = {.lex_state = 7, .external_lex_state = 3}, - [1608] = {.lex_state = 7, .external_lex_state = 4}, - [1609] = {.lex_state = 7, .external_lex_state = 3}, - [1610] = {.lex_state = 7, .external_lex_state = 3}, - [1611] = {.lex_state = 7, .external_lex_state = 3}, - [1612] = {.lex_state = 12, .external_lex_state = 5}, - [1613] = {.lex_state = 7, .external_lex_state = 3}, - [1614] = {.lex_state = 7, .external_lex_state = 3}, - [1615] = {.lex_state = 7, .external_lex_state = 3}, - [1616] = {.lex_state = 12, .external_lex_state = 5}, - [1617] = {.lex_state = 7, .external_lex_state = 3}, - [1618] = {.lex_state = 7, .external_lex_state = 3}, - [1619] = {.lex_state = 7, .external_lex_state = 3}, - [1620] = {.lex_state = 7, .external_lex_state = 3}, - [1621] = {.lex_state = 7, .external_lex_state = 3}, - [1622] = {.lex_state = 7, .external_lex_state = 3}, - [1623] = {.lex_state = 7, .external_lex_state = 3}, - [1624] = {.lex_state = 7, .external_lex_state = 3}, - [1625] = {.lex_state = 7, .external_lex_state = 3}, - [1626] = {.lex_state = 7, .external_lex_state = 3}, - [1627] = {.lex_state = 7, .external_lex_state = 3}, - [1628] = {.lex_state = 7, .external_lex_state = 4}, - [1629] = {.lex_state = 7, .external_lex_state = 3}, - [1630] = {.lex_state = 7, .external_lex_state = 3}, - [1631] = {.lex_state = 7, .external_lex_state = 3}, - [1632] = {.lex_state = 7, .external_lex_state = 3}, - [1633] = {.lex_state = 7, .external_lex_state = 3}, - [1634] = {.lex_state = 7, .external_lex_state = 3}, - [1635] = {.lex_state = 7, .external_lex_state = 3}, - [1636] = {.lex_state = 7, .external_lex_state = 3}, - [1637] = {.lex_state = 7, .external_lex_state = 3}, - [1638] = {.lex_state = 7, .external_lex_state = 3}, - [1639] = {.lex_state = 7, .external_lex_state = 3}, - [1640] = {.lex_state = 7, .external_lex_state = 3}, - [1641] = {.lex_state = 7, .external_lex_state = 3}, - [1642] = {.lex_state = 7, .external_lex_state = 3}, - [1643] = {.lex_state = 7, .external_lex_state = 3}, - [1644] = {.lex_state = 7, .external_lex_state = 3}, - [1645] = {.lex_state = 7, .external_lex_state = 3}, - [1646] = {.lex_state = 7, .external_lex_state = 3}, - [1647] = {.lex_state = 7, .external_lex_state = 3}, - [1648] = {.lex_state = 7, .external_lex_state = 3}, - [1649] = {.lex_state = 7, .external_lex_state = 3}, - [1650] = {.lex_state = 7, .external_lex_state = 3}, - [1651] = {.lex_state = 7, .external_lex_state = 3}, - [1652] = {.lex_state = 7, .external_lex_state = 3}, - [1653] = {.lex_state = 7, .external_lex_state = 3}, - [1654] = {.lex_state = 7, .external_lex_state = 3}, - [1655] = {.lex_state = 12, .external_lex_state = 5}, - [1656] = {.lex_state = 12, .external_lex_state = 5}, - [1657] = {.lex_state = 7, .external_lex_state = 3}, - [1658] = {.lex_state = 7, .external_lex_state = 3}, - [1659] = {.lex_state = 7, .external_lex_state = 3}, - [1660] = {.lex_state = 7, .external_lex_state = 3}, - [1661] = {.lex_state = 7, .external_lex_state = 3}, - [1662] = {.lex_state = 7, .external_lex_state = 3}, - [1663] = {.lex_state = 7, .external_lex_state = 3}, - [1664] = {.lex_state = 7, .external_lex_state = 3}, - [1665] = {.lex_state = 7, .external_lex_state = 3}, - [1666] = {.lex_state = 7, .external_lex_state = 3}, - [1667] = {.lex_state = 7, .external_lex_state = 3}, - [1668] = {.lex_state = 7, .external_lex_state = 3}, - [1669] = {.lex_state = 7, .external_lex_state = 3}, - [1670] = {.lex_state = 7, .external_lex_state = 3}, - [1671] = {.lex_state = 7, .external_lex_state = 3}, - [1672] = {.lex_state = 7, .external_lex_state = 3}, - [1673] = {.lex_state = 7, .external_lex_state = 3}, - [1674] = {.lex_state = 7, .external_lex_state = 3}, - [1675] = {.lex_state = 7, .external_lex_state = 3}, - [1676] = {.lex_state = 7, .external_lex_state = 3}, - [1677] = {.lex_state = 7, .external_lex_state = 3}, - [1678] = {.lex_state = 7, .external_lex_state = 4}, - [1679] = {.lex_state = 7, .external_lex_state = 4}, - [1680] = {.lex_state = 7, .external_lex_state = 3}, - [1681] = {.lex_state = 7, .external_lex_state = 3}, - [1682] = {.lex_state = 7, .external_lex_state = 3}, - [1683] = {.lex_state = 7, .external_lex_state = 3}, - [1684] = {.lex_state = 7, .external_lex_state = 3}, - [1685] = {.lex_state = 7, .external_lex_state = 3}, - [1686] = {.lex_state = 7, .external_lex_state = 3}, - [1687] = {.lex_state = 7, .external_lex_state = 3}, - [1688] = {.lex_state = 7, .external_lex_state = 3}, - [1689] = {.lex_state = 7, .external_lex_state = 3}, - [1690] = {.lex_state = 7, .external_lex_state = 3}, - [1691] = {.lex_state = 7, .external_lex_state = 3}, - [1692] = {.lex_state = 7, .external_lex_state = 3}, - [1693] = {.lex_state = 7, .external_lex_state = 3}, - [1694] = {.lex_state = 12, .external_lex_state = 5}, - [1695] = {.lex_state = 7, .external_lex_state = 3}, - [1696] = {.lex_state = 7, .external_lex_state = 3}, - [1697] = {.lex_state = 7, .external_lex_state = 3}, - [1698] = {.lex_state = 7, .external_lex_state = 3}, - [1699] = {.lex_state = 7, .external_lex_state = 3}, - [1700] = {.lex_state = 7, .external_lex_state = 3}, - [1701] = {.lex_state = 7, .external_lex_state = 3}, - [1702] = {.lex_state = 7, .external_lex_state = 3}, - [1703] = {.lex_state = 7, .external_lex_state = 3}, - [1704] = {.lex_state = 7, .external_lex_state = 3}, - [1705] = {.lex_state = 7, .external_lex_state = 3}, - [1706] = {.lex_state = 7, .external_lex_state = 3}, - [1707] = {.lex_state = 7, .external_lex_state = 3}, - [1708] = {.lex_state = 7, .external_lex_state = 3}, - [1709] = {.lex_state = 7, .external_lex_state = 3}, - [1710] = {.lex_state = 7, .external_lex_state = 3}, - [1711] = {.lex_state = 7, .external_lex_state = 3}, - [1712] = {.lex_state = 7, .external_lex_state = 3}, - [1713] = {.lex_state = 7, .external_lex_state = 3}, - [1714] = {.lex_state = 7, .external_lex_state = 3}, - [1715] = {.lex_state = 7, .external_lex_state = 3}, - [1716] = {.lex_state = 7, .external_lex_state = 3}, - [1717] = {.lex_state = 7, .external_lex_state = 3}, - [1718] = {.lex_state = 7, .external_lex_state = 3}, - [1719] = {.lex_state = 7, .external_lex_state = 3}, - [1720] = {.lex_state = 7, .external_lex_state = 3}, - [1721] = {.lex_state = 7, .external_lex_state = 3}, - [1722] = {.lex_state = 7, .external_lex_state = 3}, - [1723] = {.lex_state = 7, .external_lex_state = 3}, - [1724] = {.lex_state = 7, .external_lex_state = 3}, - [1725] = {.lex_state = 7, .external_lex_state = 3}, - [1726] = {.lex_state = 7, .external_lex_state = 3}, - [1727] = {.lex_state = 7, .external_lex_state = 3}, - [1728] = {.lex_state = 7, .external_lex_state = 4}, - [1729] = {.lex_state = 7, .external_lex_state = 3}, - [1730] = {.lex_state = 7, .external_lex_state = 4}, - [1731] = {.lex_state = 7, .external_lex_state = 4}, - [1732] = {.lex_state = 7, .external_lex_state = 3}, - [1733] = {.lex_state = 7, .external_lex_state = 4}, - [1734] = {.lex_state = 12, .external_lex_state = 5}, - [1735] = {.lex_state = 12, .external_lex_state = 5}, - [1736] = {.lex_state = 12, .external_lex_state = 5}, - [1737] = {.lex_state = 7, .external_lex_state = 4}, - [1738] = {.lex_state = 12, .external_lex_state = 5}, - [1739] = {.lex_state = 7, .external_lex_state = 3}, - [1740] = {.lex_state = 12, .external_lex_state = 5}, - [1741] = {.lex_state = 7, .external_lex_state = 4}, - [1742] = {.lex_state = 7, .external_lex_state = 4}, - [1743] = {.lex_state = 12, .external_lex_state = 5}, - [1744] = {.lex_state = 7, .external_lex_state = 4}, - [1745] = {.lex_state = 12, .external_lex_state = 5}, - [1746] = {.lex_state = 7, .external_lex_state = 4}, - [1747] = {.lex_state = 7, .external_lex_state = 4}, - [1748] = {.lex_state = 12, .external_lex_state = 5}, - [1749] = {.lex_state = 13, .external_lex_state = 5}, - [1750] = {.lex_state = 12, .external_lex_state = 5}, - [1751] = {.lex_state = 7, .external_lex_state = 3}, - [1752] = {.lex_state = 12, .external_lex_state = 5}, - [1753] = {.lex_state = 12, .external_lex_state = 5}, - [1754] = {.lex_state = 7, .external_lex_state = 3}, - [1755] = {.lex_state = 7, .external_lex_state = 4}, - [1756] = {.lex_state = 12, .external_lex_state = 5}, - [1757] = {.lex_state = 7, .external_lex_state = 4}, - [1758] = {.lex_state = 7, .external_lex_state = 4}, - [1759] = {.lex_state = 7, .external_lex_state = 3}, - [1760] = {.lex_state = 7, .external_lex_state = 4}, - [1761] = {.lex_state = 7, .external_lex_state = 4}, - [1762] = {.lex_state = 7, .external_lex_state = 3}, - [1763] = {.lex_state = 7, .external_lex_state = 4}, - [1764] = {.lex_state = 7, .external_lex_state = 3}, - [1765] = {.lex_state = 7, .external_lex_state = 3}, - [1766] = {.lex_state = 7, .external_lex_state = 4}, - [1767] = {.lex_state = 7, .external_lex_state = 4}, - [1768] = {.lex_state = 7, .external_lex_state = 4}, - [1769] = {.lex_state = 7, .external_lex_state = 4}, - [1770] = {.lex_state = 8, .external_lex_state = 3}, - [1771] = {.lex_state = 7, .external_lex_state = 4}, - [1772] = {.lex_state = 7, .external_lex_state = 4}, - [1773] = {.lex_state = 7, .external_lex_state = 4}, - [1774] = {.lex_state = 7, .external_lex_state = 4}, - [1775] = {.lex_state = 7, .external_lex_state = 4}, - [1776] = {.lex_state = 7, .external_lex_state = 4}, - [1777] = {.lex_state = 7, .external_lex_state = 4}, - [1778] = {.lex_state = 7, .external_lex_state = 4}, - [1779] = {.lex_state = 7, .external_lex_state = 4}, - [1780] = {.lex_state = 7, .external_lex_state = 4}, - [1781] = {.lex_state = 7, .external_lex_state = 4}, - [1782] = {.lex_state = 7, .external_lex_state = 4}, - [1783] = {.lex_state = 7, .external_lex_state = 4}, - [1784] = {.lex_state = 7, .external_lex_state = 4}, - [1785] = {.lex_state = 7, .external_lex_state = 4}, - [1786] = {.lex_state = 7, .external_lex_state = 4}, - [1787] = {.lex_state = 12, .external_lex_state = 5}, - [1788] = {.lex_state = 7, .external_lex_state = 4}, - [1789] = {.lex_state = 7, .external_lex_state = 4}, - [1790] = {.lex_state = 7, .external_lex_state = 4}, - [1791] = {.lex_state = 7, .external_lex_state = 4}, - [1792] = {.lex_state = 7, .external_lex_state = 4}, - [1793] = {.lex_state = 12, .external_lex_state = 5}, - [1794] = {.lex_state = 7, .external_lex_state = 3}, - [1795] = {.lex_state = 7, .external_lex_state = 4}, - [1796] = {.lex_state = 7, .external_lex_state = 3}, - [1797] = {.lex_state = 7, .external_lex_state = 3}, - [1798] = {.lex_state = 7, .external_lex_state = 3}, - [1799] = {.lex_state = 7, .external_lex_state = 3}, - [1800] = {.lex_state = 7, .external_lex_state = 3}, - [1801] = {.lex_state = 7, .external_lex_state = 4}, - [1802] = {.lex_state = 7, .external_lex_state = 4}, - [1803] = {.lex_state = 7, .external_lex_state = 3}, - [1804] = {.lex_state = 7, .external_lex_state = 3}, - [1805] = {.lex_state = 12, .external_lex_state = 5}, - [1806] = {.lex_state = 7, .external_lex_state = 4}, - [1807] = {.lex_state = 7, .external_lex_state = 4}, - [1808] = {.lex_state = 7, .external_lex_state = 4}, - [1809] = {.lex_state = 7, .external_lex_state = 4}, - [1810] = {.lex_state = 7, .external_lex_state = 4}, - [1811] = {.lex_state = 7, .external_lex_state = 4}, - [1812] = {.lex_state = 7, .external_lex_state = 3}, - [1813] = {.lex_state = 7, .external_lex_state = 4}, - [1814] = {.lex_state = 7, .external_lex_state = 4}, - [1815] = {.lex_state = 7, .external_lex_state = 4}, - [1816] = {.lex_state = 7, .external_lex_state = 4}, - [1817] = {.lex_state = 12, .external_lex_state = 5}, - [1818] = {.lex_state = 12, .external_lex_state = 5}, - [1819] = {.lex_state = 7, .external_lex_state = 4}, - [1820] = {.lex_state = 7, .external_lex_state = 3}, - [1821] = {.lex_state = 7, .external_lex_state = 4}, - [1822] = {.lex_state = 7, .external_lex_state = 4}, - [1823] = {.lex_state = 12, .external_lex_state = 5}, - [1824] = {.lex_state = 7, .external_lex_state = 3}, - [1825] = {.lex_state = 7, .external_lex_state = 4}, - [1826] = {.lex_state = 7, .external_lex_state = 4}, - [1827] = {.lex_state = 7, .external_lex_state = 4}, - [1828] = {.lex_state = 7, .external_lex_state = 4}, - [1829] = {.lex_state = 7, .external_lex_state = 4}, - [1830] = {.lex_state = 7, .external_lex_state = 4}, - [1831] = {.lex_state = 7, .external_lex_state = 4}, - [1832] = {.lex_state = 7, .external_lex_state = 4}, - [1833] = {.lex_state = 7, .external_lex_state = 4}, - [1834] = {.lex_state = 7, .external_lex_state = 4}, - [1835] = {.lex_state = 7, .external_lex_state = 4}, - [1836] = {.lex_state = 7, .external_lex_state = 4}, - [1837] = {.lex_state = 7, .external_lex_state = 4}, - [1838] = {.lex_state = 7, .external_lex_state = 4}, - [1839] = {.lex_state = 7, .external_lex_state = 4}, - [1840] = {.lex_state = 7, .external_lex_state = 4}, - [1841] = {.lex_state = 7, .external_lex_state = 4}, - [1842] = {.lex_state = 7, .external_lex_state = 4}, - [1843] = {.lex_state = 7, .external_lex_state = 4}, - [1844] = {.lex_state = 7, .external_lex_state = 4}, - [1845] = {.lex_state = 7, .external_lex_state = 4}, - [1846] = {.lex_state = 7, .external_lex_state = 4}, - [1847] = {.lex_state = 7, .external_lex_state = 4}, - [1848] = {.lex_state = 7, .external_lex_state = 4}, - [1849] = {.lex_state = 7, .external_lex_state = 4}, - [1850] = {.lex_state = 12, .external_lex_state = 5}, - [1851] = {.lex_state = 7, .external_lex_state = 4}, - [1852] = {.lex_state = 7, .external_lex_state = 4}, - [1853] = {.lex_state = 12, .external_lex_state = 5}, - [1854] = {.lex_state = 7, .external_lex_state = 4}, - [1855] = {.lex_state = 7, .external_lex_state = 4}, - [1856] = {.lex_state = 7, .external_lex_state = 4}, - [1857] = {.lex_state = 7, .external_lex_state = 4}, - [1858] = {.lex_state = 7, .external_lex_state = 4}, - [1859] = {.lex_state = 7, .external_lex_state = 4}, - [1860] = {.lex_state = 7, .external_lex_state = 4}, - [1861] = {.lex_state = 7, .external_lex_state = 4}, - [1862] = {.lex_state = 7, .external_lex_state = 4}, - [1863] = {.lex_state = 7, .external_lex_state = 4}, - [1864] = {.lex_state = 7, .external_lex_state = 4}, - [1865] = {.lex_state = 7, .external_lex_state = 4}, - [1866] = {.lex_state = 7, .external_lex_state = 4}, - [1867] = {.lex_state = 7, .external_lex_state = 4}, - [1868] = {.lex_state = 7, .external_lex_state = 4}, - [1869] = {.lex_state = 7, .external_lex_state = 4}, - [1870] = {.lex_state = 7, .external_lex_state = 4}, - [1871] = {.lex_state = 7, .external_lex_state = 4}, - [1872] = {.lex_state = 7, .external_lex_state = 4}, - [1873] = {.lex_state = 7, .external_lex_state = 4}, - [1874] = {.lex_state = 7, .external_lex_state = 4}, - [1875] = {.lex_state = 7, .external_lex_state = 4}, - [1876] = {.lex_state = 7, .external_lex_state = 4}, - [1877] = {.lex_state = 7, .external_lex_state = 4}, - [1878] = {.lex_state = 7, .external_lex_state = 4}, - [1879] = {.lex_state = 7, .external_lex_state = 4}, - [1880] = {.lex_state = 7, .external_lex_state = 4}, - [1881] = {.lex_state = 7, .external_lex_state = 4}, - [1882] = {.lex_state = 7, .external_lex_state = 4}, - [1883] = {.lex_state = 7, .external_lex_state = 4}, - [1884] = {.lex_state = 7, .external_lex_state = 4}, - [1885] = {.lex_state = 7, .external_lex_state = 4}, - [1886] = {.lex_state = 7, .external_lex_state = 4}, - [1887] = {.lex_state = 7, .external_lex_state = 4}, - [1888] = {.lex_state = 7, .external_lex_state = 4}, - [1889] = {.lex_state = 7, .external_lex_state = 4}, - [1890] = {.lex_state = 7, .external_lex_state = 4}, - [1891] = {.lex_state = 7, .external_lex_state = 4}, - [1892] = {.lex_state = 7, .external_lex_state = 4}, - [1893] = {.lex_state = 7, .external_lex_state = 4}, - [1894] = {.lex_state = 7, .external_lex_state = 4}, - [1895] = {.lex_state = 7, .external_lex_state = 4}, - [1896] = {.lex_state = 7, .external_lex_state = 4}, - [1897] = {.lex_state = 7, .external_lex_state = 4}, - [1898] = {.lex_state = 7, .external_lex_state = 4}, - [1899] = {.lex_state = 7, .external_lex_state = 4}, - [1900] = {.lex_state = 7, .external_lex_state = 4}, - [1901] = {.lex_state = 7, .external_lex_state = 4}, - [1902] = {.lex_state = 7, .external_lex_state = 4}, - [1903] = {.lex_state = 7, .external_lex_state = 4}, - [1904] = {.lex_state = 7, .external_lex_state = 4}, - [1905] = {.lex_state = 7, .external_lex_state = 4}, - [1906] = {.lex_state = 7, .external_lex_state = 4}, - [1907] = {.lex_state = 7, .external_lex_state = 4}, - [1908] = {.lex_state = 7, .external_lex_state = 4}, - [1909] = {.lex_state = 7, .external_lex_state = 4}, - [1910] = {.lex_state = 12, .external_lex_state = 2}, - [1911] = {.lex_state = 7, .external_lex_state = 4}, - [1912] = {.lex_state = 7, .external_lex_state = 4}, - [1913] = {.lex_state = 7, .external_lex_state = 3}, - [1914] = {.lex_state = 7, .external_lex_state = 4}, - [1915] = {.lex_state = 7, .external_lex_state = 4}, - [1916] = {.lex_state = 7, .external_lex_state = 4}, - [1917] = {.lex_state = 7, .external_lex_state = 3}, - [1918] = {.lex_state = 7, .external_lex_state = 4}, - [1919] = {.lex_state = 7, .external_lex_state = 3}, - [1920] = {.lex_state = 7, .external_lex_state = 4}, - [1921] = {.lex_state = 7, .external_lex_state = 4}, - [1922] = {.lex_state = 7, .external_lex_state = 4}, - [1923] = {.lex_state = 7, .external_lex_state = 4}, - [1924] = {.lex_state = 7, .external_lex_state = 4}, - [1925] = {.lex_state = 7, .external_lex_state = 4}, - [1926] = {.lex_state = 7, .external_lex_state = 4}, - [1927] = {.lex_state = 7, .external_lex_state = 4}, - [1928] = {.lex_state = 7, .external_lex_state = 4}, - [1929] = {.lex_state = 12, .external_lex_state = 2}, - [1930] = {.lex_state = 7, .external_lex_state = 4}, - [1931] = {.lex_state = 7, .external_lex_state = 3}, - [1932] = {.lex_state = 7, .external_lex_state = 3}, - [1933] = {.lex_state = 7, .external_lex_state = 3}, - [1934] = {.lex_state = 7, .external_lex_state = 4}, - [1935] = {.lex_state = 7, .external_lex_state = 4}, - [1936] = {.lex_state = 7, .external_lex_state = 4}, - [1937] = {.lex_state = 7, .external_lex_state = 4}, - [1938] = {.lex_state = 7, .external_lex_state = 3}, - [1939] = {.lex_state = 7, .external_lex_state = 4}, - [1940] = {.lex_state = 12, .external_lex_state = 5}, - [1941] = {.lex_state = 12, .external_lex_state = 5}, - [1942] = {.lex_state = 7, .external_lex_state = 4}, - [1943] = {.lex_state = 12, .external_lex_state = 5}, - [1944] = {.lex_state = 12, .external_lex_state = 5}, - [1945] = {.lex_state = 7, .external_lex_state = 4}, - [1946] = {.lex_state = 12, .external_lex_state = 5}, - [1947] = {.lex_state = 12, .external_lex_state = 2}, - [1948] = {.lex_state = 7, .external_lex_state = 3}, - [1949] = {.lex_state = 7, .external_lex_state = 3}, - [1950] = {.lex_state = 7, .external_lex_state = 3}, - [1951] = {.lex_state = 7, .external_lex_state = 3}, - [1952] = {.lex_state = 7, .external_lex_state = 4}, - [1953] = {.lex_state = 7, .external_lex_state = 4}, - [1954] = {.lex_state = 7, .external_lex_state = 4}, - [1955] = {.lex_state = 12, .external_lex_state = 2}, - [1956] = {.lex_state = 7, .external_lex_state = 3}, - [1957] = {.lex_state = 7, .external_lex_state = 3}, - [1958] = {.lex_state = 7, .external_lex_state = 4}, - [1959] = {.lex_state = 7, .external_lex_state = 4}, - [1960] = {.lex_state = 7, .external_lex_state = 4}, - [1961] = {.lex_state = 7, .external_lex_state = 4}, - [1962] = {.lex_state = 7, .external_lex_state = 4}, - [1963] = {.lex_state = 7, .external_lex_state = 4}, - [1964] = {.lex_state = 7, .external_lex_state = 4}, - [1965] = {.lex_state = 149, .external_lex_state = 2}, - [1966] = {.lex_state = 7, .external_lex_state = 4}, - [1967] = {.lex_state = 7, .external_lex_state = 4}, - [1968] = {.lex_state = 7, .external_lex_state = 4}, - [1969] = {.lex_state = 7, .external_lex_state = 4}, - [1970] = {.lex_state = 7, .external_lex_state = 4}, - [1971] = {.lex_state = 12, .external_lex_state = 5}, - [1972] = {.lex_state = 7, .external_lex_state = 4}, - [1973] = {.lex_state = 7, .external_lex_state = 4}, - [1974] = {.lex_state = 7, .external_lex_state = 4}, - [1975] = {.lex_state = 7, .external_lex_state = 4}, - [1976] = {.lex_state = 7, .external_lex_state = 4}, - [1977] = {.lex_state = 7, .external_lex_state = 4}, - [1978] = {.lex_state = 7, .external_lex_state = 4}, - [1979] = {.lex_state = 7, .external_lex_state = 4}, - [1980] = {.lex_state = 7, .external_lex_state = 4}, - [1981] = {.lex_state = 7, .external_lex_state = 4}, - [1982] = {.lex_state = 7, .external_lex_state = 4}, - [1983] = {.lex_state = 7, .external_lex_state = 4}, - [1984] = {.lex_state = 7, .external_lex_state = 4}, - [1985] = {.lex_state = 7, .external_lex_state = 4}, - [1986] = {.lex_state = 149, .external_lex_state = 2}, - [1987] = {.lex_state = 7, .external_lex_state = 4}, - [1988] = {.lex_state = 12, .external_lex_state = 5}, - [1989] = {.lex_state = 7, .external_lex_state = 4}, - [1990] = {.lex_state = 7, .external_lex_state = 4}, - [1991] = {.lex_state = 7, .external_lex_state = 4}, - [1992] = {.lex_state = 12, .external_lex_state = 2}, - [1993] = {.lex_state = 7, .external_lex_state = 4}, - [1994] = {.lex_state = 7, .external_lex_state = 4}, - [1995] = {.lex_state = 7, .external_lex_state = 4}, - [1996] = {.lex_state = 7, .external_lex_state = 4}, - [1997] = {.lex_state = 7, .external_lex_state = 4}, - [1998] = {.lex_state = 7, .external_lex_state = 4}, - [1999] = {.lex_state = 7, .external_lex_state = 4}, - [2000] = {.lex_state = 7, .external_lex_state = 4}, - [2001] = {.lex_state = 7, .external_lex_state = 4}, - [2002] = {.lex_state = 7, .external_lex_state = 4}, - [2003] = {.lex_state = 7, .external_lex_state = 4}, - [2004] = {.lex_state = 7, .external_lex_state = 4}, - [2005] = {.lex_state = 7, .external_lex_state = 4}, - [2006] = {.lex_state = 7, .external_lex_state = 4}, - [2007] = {.lex_state = 7, .external_lex_state = 4}, - [2008] = {.lex_state = 7, .external_lex_state = 4}, - [2009] = {.lex_state = 7, .external_lex_state = 4}, - [2010] = {.lex_state = 7, .external_lex_state = 4}, - [2011] = {.lex_state = 7, .external_lex_state = 4}, - [2012] = {.lex_state = 7, .external_lex_state = 4}, - [2013] = {.lex_state = 12, .external_lex_state = 5}, - [2014] = {.lex_state = 12, .external_lex_state = 5}, - [2015] = {.lex_state = 7, .external_lex_state = 4}, - [2016] = {.lex_state = 12, .external_lex_state = 5}, - [2017] = {.lex_state = 7, .external_lex_state = 3}, - [2018] = {.lex_state = 7, .external_lex_state = 3}, - [2019] = {.lex_state = 7, .external_lex_state = 4}, - [2020] = {.lex_state = 7, .external_lex_state = 4}, - [2021] = {.lex_state = 12, .external_lex_state = 5}, - [2022] = {.lex_state = 7, .external_lex_state = 4}, - [2023] = {.lex_state = 12, .external_lex_state = 5}, - [2024] = {.lex_state = 7, .external_lex_state = 4}, - [2025] = {.lex_state = 12, .external_lex_state = 2}, - [2026] = {.lex_state = 12, .external_lex_state = 5}, - [2027] = {.lex_state = 7, .external_lex_state = 4}, - [2028] = {.lex_state = 7, .external_lex_state = 4}, - [2029] = {.lex_state = 7, .external_lex_state = 4}, - [2030] = {.lex_state = 7, .external_lex_state = 4}, - [2031] = {.lex_state = 7, .external_lex_state = 3}, - [2032] = {.lex_state = 7, .external_lex_state = 3}, - [2033] = {.lex_state = 7, .external_lex_state = 3}, - [2034] = {.lex_state = 7, .external_lex_state = 3}, - [2035] = {.lex_state = 7, .external_lex_state = 3}, - [2036] = {.lex_state = 7, .external_lex_state = 3}, - [2037] = {.lex_state = 7, .external_lex_state = 3}, - [2038] = {.lex_state = 7, .external_lex_state = 3}, - [2039] = {.lex_state = 7, .external_lex_state = 3}, - [2040] = {.lex_state = 7, .external_lex_state = 3}, - [2041] = {.lex_state = 7, .external_lex_state = 3}, - [2042] = {.lex_state = 7, .external_lex_state = 3}, - [2043] = {.lex_state = 7, .external_lex_state = 3}, - [2044] = {.lex_state = 7, .external_lex_state = 3}, - [2045] = {.lex_state = 7, .external_lex_state = 3}, - [2046] = {.lex_state = 7, .external_lex_state = 3}, - [2047] = {.lex_state = 7, .external_lex_state = 3}, - [2048] = {.lex_state = 7, .external_lex_state = 3}, - [2049] = {.lex_state = 7, .external_lex_state = 3}, - [2050] = {.lex_state = 7, .external_lex_state = 3}, - [2051] = {.lex_state = 7, .external_lex_state = 3}, - [2052] = {.lex_state = 7, .external_lex_state = 3}, - [2053] = {.lex_state = 7, .external_lex_state = 3}, - [2054] = {.lex_state = 7, .external_lex_state = 3}, - [2055] = {.lex_state = 7, .external_lex_state = 3}, - [2056] = {.lex_state = 7, .external_lex_state = 3}, - [2057] = {.lex_state = 7, .external_lex_state = 3}, - [2058] = {.lex_state = 7, .external_lex_state = 3}, - [2059] = {.lex_state = 7, .external_lex_state = 3}, - [2060] = {.lex_state = 7, .external_lex_state = 4}, - [2061] = {.lex_state = 7, .external_lex_state = 4}, - [2062] = {.lex_state = 7, .external_lex_state = 4}, - [2063] = {.lex_state = 7, .external_lex_state = 3}, - [2064] = {.lex_state = 7, .external_lex_state = 3}, - [2065] = {.lex_state = 7, .external_lex_state = 3}, - [2066] = {.lex_state = 7, .external_lex_state = 4}, - [2067] = {.lex_state = 7, .external_lex_state = 4}, - [2068] = {.lex_state = 7, .external_lex_state = 4}, - [2069] = {.lex_state = 12, .external_lex_state = 5}, - [2070] = {.lex_state = 7, .external_lex_state = 3}, - [2071] = {.lex_state = 7, .external_lex_state = 4}, - [2072] = {.lex_state = 7, .external_lex_state = 3}, - [2073] = {.lex_state = 12, .external_lex_state = 5}, - [2074] = {.lex_state = 12, .external_lex_state = 5}, - [2075] = {.lex_state = 7, .external_lex_state = 3}, - [2076] = {.lex_state = 7, .external_lex_state = 4}, - [2077] = {.lex_state = 7, .external_lex_state = 3}, - [2078] = {.lex_state = 7, .external_lex_state = 3}, - [2079] = {.lex_state = 7, .external_lex_state = 4}, - [2080] = {.lex_state = 7, .external_lex_state = 4}, - [2081] = {.lex_state = 7, .external_lex_state = 4}, - [2082] = {.lex_state = 12, .external_lex_state = 5}, - [2083] = {.lex_state = 7, .external_lex_state = 3}, - [2084] = {.lex_state = 12, .external_lex_state = 5}, - [2085] = {.lex_state = 12, .external_lex_state = 2}, - [2086] = {.lex_state = 12, .external_lex_state = 5}, - [2087] = {.lex_state = 12, .external_lex_state = 2}, - [2088] = {.lex_state = 7, .external_lex_state = 3}, - [2089] = {.lex_state = 7, .external_lex_state = 4}, - [2090] = {.lex_state = 7, .external_lex_state = 4}, - [2091] = {.lex_state = 12, .external_lex_state = 2}, - [2092] = {.lex_state = 7, .external_lex_state = 3}, - [2093] = {.lex_state = 12, .external_lex_state = 5}, - [2094] = {.lex_state = 12, .external_lex_state = 2}, - [2095] = {.lex_state = 12, .external_lex_state = 2}, - [2096] = {.lex_state = 7, .external_lex_state = 4}, - [2097] = {.lex_state = 12, .external_lex_state = 2}, - [2098] = {.lex_state = 12, .external_lex_state = 5}, - [2099] = {.lex_state = 12, .external_lex_state = 5}, - [2100] = {.lex_state = 7, .external_lex_state = 4}, - [2101] = {.lex_state = 12, .external_lex_state = 5}, - [2102] = {.lex_state = 12, .external_lex_state = 5}, - [2103] = {.lex_state = 7, .external_lex_state = 4}, - [2104] = {.lex_state = 7, .external_lex_state = 4}, - [2105] = {.lex_state = 7, .external_lex_state = 4}, - [2106] = {.lex_state = 12, .external_lex_state = 5}, - [2107] = {.lex_state = 12, .external_lex_state = 5}, - [2108] = {.lex_state = 12, .external_lex_state = 5}, - [2109] = {.lex_state = 7, .external_lex_state = 3}, - [2110] = {.lex_state = 7, .external_lex_state = 3}, - [2111] = {.lex_state = 12, .external_lex_state = 5}, - [2112] = {.lex_state = 12, .external_lex_state = 5}, - [2113] = {.lex_state = 12, .external_lex_state = 5}, - [2114] = {.lex_state = 12, .external_lex_state = 5}, - [2115] = {.lex_state = 12, .external_lex_state = 5}, - [2116] = {.lex_state = 7, .external_lex_state = 4}, - [2117] = {.lex_state = 12, .external_lex_state = 5}, - [2118] = {.lex_state = 12, .external_lex_state = 5}, - [2119] = {.lex_state = 12, .external_lex_state = 5}, - [2120] = {.lex_state = 7, .external_lex_state = 4}, - [2121] = {.lex_state = 7, .external_lex_state = 4}, - [2122] = {.lex_state = 7, .external_lex_state = 4}, - [2123] = {.lex_state = 7, .external_lex_state = 4}, - [2124] = {.lex_state = 7, .external_lex_state = 4}, - [2125] = {.lex_state = 7, .external_lex_state = 3}, - [2126] = {.lex_state = 7, .external_lex_state = 4}, - [2127] = {.lex_state = 7, .external_lex_state = 4}, - [2128] = {.lex_state = 7, .external_lex_state = 4}, - [2129] = {.lex_state = 7, .external_lex_state = 3}, - [2130] = {.lex_state = 7, .external_lex_state = 4}, - [2131] = {.lex_state = 7, .external_lex_state = 4}, - [2132] = {.lex_state = 7, .external_lex_state = 4}, - [2133] = {.lex_state = 7, .external_lex_state = 4}, - [2134] = {.lex_state = 7, .external_lex_state = 4}, - [2135] = {.lex_state = 7, .external_lex_state = 4}, - [2136] = {.lex_state = 7, .external_lex_state = 4}, - [2137] = {.lex_state = 7, .external_lex_state = 4}, - [2138] = {.lex_state = 7, .external_lex_state = 4}, - [2139] = {.lex_state = 7, .external_lex_state = 4}, - [2140] = {.lex_state = 7, .external_lex_state = 4}, - [2141] = {.lex_state = 7, .external_lex_state = 4}, - [2142] = {.lex_state = 7, .external_lex_state = 4}, - [2143] = {.lex_state = 7, .external_lex_state = 4}, - [2144] = {.lex_state = 7, .external_lex_state = 4}, - [2145] = {.lex_state = 7, .external_lex_state = 3}, - [2146] = {.lex_state = 7, .external_lex_state = 4}, - [2147] = {.lex_state = 7, .external_lex_state = 3}, - [2148] = {.lex_state = 7, .external_lex_state = 4}, - [2149] = {.lex_state = 7, .external_lex_state = 4}, - [2150] = {.lex_state = 7, .external_lex_state = 4}, - [2151] = {.lex_state = 7, .external_lex_state = 4}, - [2152] = {.lex_state = 7, .external_lex_state = 4}, - [2153] = {.lex_state = 7, .external_lex_state = 4}, - [2154] = {.lex_state = 7, .external_lex_state = 4}, - [2155] = {.lex_state = 7, .external_lex_state = 4}, - [2156] = {.lex_state = 7, .external_lex_state = 4}, - [2157] = {.lex_state = 7, .external_lex_state = 4}, - [2158] = {.lex_state = 7, .external_lex_state = 4}, - [2159] = {.lex_state = 7, .external_lex_state = 3}, - [2160] = {.lex_state = 7, .external_lex_state = 4}, - [2161] = {.lex_state = 7, .external_lex_state = 4}, - [2162] = {.lex_state = 7, .external_lex_state = 4}, - [2163] = {.lex_state = 7, .external_lex_state = 4}, - [2164] = {.lex_state = 7, .external_lex_state = 4}, - [2165] = {.lex_state = 7, .external_lex_state = 4}, - [2166] = {.lex_state = 7, .external_lex_state = 4}, - [2167] = {.lex_state = 7, .external_lex_state = 3}, - [2168] = {.lex_state = 7, .external_lex_state = 4}, - [2169] = {.lex_state = 12, .external_lex_state = 5}, - [2170] = {.lex_state = 7, .external_lex_state = 4}, - [2171] = {.lex_state = 7, .external_lex_state = 4}, - [2172] = {.lex_state = 7, .external_lex_state = 4}, - [2173] = {.lex_state = 7, .external_lex_state = 3}, - [2174] = {.lex_state = 7, .external_lex_state = 3}, - [2175] = {.lex_state = 7, .external_lex_state = 4}, - [2176] = {.lex_state = 8, .external_lex_state = 4}, - [2177] = {.lex_state = 7, .external_lex_state = 4}, - [2178] = {.lex_state = 7, .external_lex_state = 3}, - [2179] = {.lex_state = 7, .external_lex_state = 4}, - [2180] = {.lex_state = 7, .external_lex_state = 4}, - [2181] = {.lex_state = 7, .external_lex_state = 4}, - [2182] = {.lex_state = 7, .external_lex_state = 3}, - [2183] = {.lex_state = 7, .external_lex_state = 4}, - [2184] = {.lex_state = 7, .external_lex_state = 4}, - [2185] = {.lex_state = 7, .external_lex_state = 3}, - [2186] = {.lex_state = 7, .external_lex_state = 4}, - [2187] = {.lex_state = 7, .external_lex_state = 4}, - [2188] = {.lex_state = 7, .external_lex_state = 4}, - [2189] = {.lex_state = 7, .external_lex_state = 4}, - [2190] = {.lex_state = 7, .external_lex_state = 3}, - [2191] = {.lex_state = 7, .external_lex_state = 4}, - [2192] = {.lex_state = 7, .external_lex_state = 4}, - [2193] = {.lex_state = 7, .external_lex_state = 4}, - [2194] = {.lex_state = 7, .external_lex_state = 4}, - [2195] = {.lex_state = 7, .external_lex_state = 4}, - [2196] = {.lex_state = 7, .external_lex_state = 3}, - [2197] = {.lex_state = 7, .external_lex_state = 3}, - [2198] = {.lex_state = 7, .external_lex_state = 3}, - [2199] = {.lex_state = 7, .external_lex_state = 3}, - [2200] = {.lex_state = 7, .external_lex_state = 3}, - [2201] = {.lex_state = 7, .external_lex_state = 3}, - [2202] = {.lex_state = 7, .external_lex_state = 3}, - [2203] = {.lex_state = 7, .external_lex_state = 3}, - [2204] = {.lex_state = 7, .external_lex_state = 3}, - [2205] = {.lex_state = 7, .external_lex_state = 3}, - [2206] = {.lex_state = 7, .external_lex_state = 3}, - [2207] = {.lex_state = 7, .external_lex_state = 4}, - [2208] = {.lex_state = 7, .external_lex_state = 4}, - [2209] = {.lex_state = 7, .external_lex_state = 4}, - [2210] = {.lex_state = 7, .external_lex_state = 4}, - [2211] = {.lex_state = 7, .external_lex_state = 3}, - [2212] = {.lex_state = 12, .external_lex_state = 5}, - [2213] = {.lex_state = 7, .external_lex_state = 4}, - [2214] = {.lex_state = 7, .external_lex_state = 4}, - [2215] = {.lex_state = 12, .external_lex_state = 5}, - [2216] = {.lex_state = 7, .external_lex_state = 3}, - [2217] = {.lex_state = 12, .external_lex_state = 5}, - [2218] = {.lex_state = 7, .external_lex_state = 4}, - [2219] = {.lex_state = 7, .external_lex_state = 4}, - [2220] = {.lex_state = 7, .external_lex_state = 3}, - [2221] = {.lex_state = 7, .external_lex_state = 4}, - [2222] = {.lex_state = 7, .external_lex_state = 4}, - [2223] = {.lex_state = 7, .external_lex_state = 4}, - [2224] = {.lex_state = 7, .external_lex_state = 3}, - [2225] = {.lex_state = 7, .external_lex_state = 4}, - [2226] = {.lex_state = 7, .external_lex_state = 4}, - [2227] = {.lex_state = 12, .external_lex_state = 2}, - [2228] = {.lex_state = 7, .external_lex_state = 4}, - [2229] = {.lex_state = 12, .external_lex_state = 2}, - [2230] = {.lex_state = 12, .external_lex_state = 5}, - [2231] = {.lex_state = 7, .external_lex_state = 4}, - [2232] = {.lex_state = 7, .external_lex_state = 4}, - [2233] = {.lex_state = 7, .external_lex_state = 3}, - [2234] = {.lex_state = 7, .external_lex_state = 3}, - [2235] = {.lex_state = 12, .external_lex_state = 5}, - [2236] = {.lex_state = 12, .external_lex_state = 5}, - [2237] = {.lex_state = 7, .external_lex_state = 3}, - [2238] = {.lex_state = 7, .external_lex_state = 3}, - [2239] = {.lex_state = 7, .external_lex_state = 3}, - [2240] = {.lex_state = 12, .external_lex_state = 5}, - [2241] = {.lex_state = 7, .external_lex_state = 3}, - [2242] = {.lex_state = 12, .external_lex_state = 5}, - [2243] = {.lex_state = 7, .external_lex_state = 3}, - [2244] = {.lex_state = 7, .external_lex_state = 3}, - [2245] = {.lex_state = 7, .external_lex_state = 3}, - [2246] = {.lex_state = 12, .external_lex_state = 5}, - [2247] = {.lex_state = 12, .external_lex_state = 5}, - [2248] = {.lex_state = 12, .external_lex_state = 5}, - [2249] = {.lex_state = 7, .external_lex_state = 3}, - [2250] = {.lex_state = 7, .external_lex_state = 3}, - [2251] = {.lex_state = 7, .external_lex_state = 3}, - [2252] = {.lex_state = 7, .external_lex_state = 3}, - [2253] = {.lex_state = 7, .external_lex_state = 3}, - [2254] = {.lex_state = 7, .external_lex_state = 3}, - [2255] = {.lex_state = 7, .external_lex_state = 3}, - [2256] = {.lex_state = 7, .external_lex_state = 3}, - [2257] = {.lex_state = 7, .external_lex_state = 3}, - [2258] = {.lex_state = 7, .external_lex_state = 3}, - [2259] = {.lex_state = 7, .external_lex_state = 3}, - [2260] = {.lex_state = 7, .external_lex_state = 3}, - [2261] = {.lex_state = 7, .external_lex_state = 3}, - [2262] = {.lex_state = 7, .external_lex_state = 3}, - [2263] = {.lex_state = 7, .external_lex_state = 3}, - [2264] = {.lex_state = 7, .external_lex_state = 3}, - [2265] = {.lex_state = 7, .external_lex_state = 3}, - [2266] = {.lex_state = 7, .external_lex_state = 3}, - [2267] = {.lex_state = 7, .external_lex_state = 3}, - [2268] = {.lex_state = 7, .external_lex_state = 3}, - [2269] = {.lex_state = 7, .external_lex_state = 3}, - [2270] = {.lex_state = 7, .external_lex_state = 3}, - [2271] = {.lex_state = 7, .external_lex_state = 3}, - [2272] = {.lex_state = 7, .external_lex_state = 3}, - [2273] = {.lex_state = 7, .external_lex_state = 3}, - [2274] = {.lex_state = 7, .external_lex_state = 4}, - [2275] = {.lex_state = 7, .external_lex_state = 4}, - [2276] = {.lex_state = 7, .external_lex_state = 3}, - [2277] = {.lex_state = 7, .external_lex_state = 4}, - [2278] = {.lex_state = 149, .external_lex_state = 2}, - [2279] = {.lex_state = 7, .external_lex_state = 3}, - [2280] = {.lex_state = 7, .external_lex_state = 3}, - [2281] = {.lex_state = 7, .external_lex_state = 3}, - [2282] = {.lex_state = 7, .external_lex_state = 3}, - [2283] = {.lex_state = 7, .external_lex_state = 4}, - [2284] = {.lex_state = 7, .external_lex_state = 4}, - [2285] = {.lex_state = 7, .external_lex_state = 4}, - [2286] = {.lex_state = 7, .external_lex_state = 4}, - [2287] = {.lex_state = 7, .external_lex_state = 3}, - [2288] = {.lex_state = 7, .external_lex_state = 4}, - [2289] = {.lex_state = 12, .external_lex_state = 5}, - [2290] = {.lex_state = 12, .external_lex_state = 5}, - [2291] = {.lex_state = 7, .external_lex_state = 4}, - [2292] = {.lex_state = 12, .external_lex_state = 2}, - [2293] = {.lex_state = 7, .external_lex_state = 4}, - [2294] = {.lex_state = 12, .external_lex_state = 2}, - [2295] = {.lex_state = 12, .external_lex_state = 5}, - [2296] = {.lex_state = 7, .external_lex_state = 3}, - [2297] = {.lex_state = 12, .external_lex_state = 5}, - [2298] = {.lex_state = 7, .external_lex_state = 4}, - [2299] = {.lex_state = 7, .external_lex_state = 4}, - [2300] = {.lex_state = 7, .external_lex_state = 4}, - [2301] = {.lex_state = 7, .external_lex_state = 4}, - [2302] = {.lex_state = 7, .external_lex_state = 4}, - [2303] = {.lex_state = 7, .external_lex_state = 4}, - [2304] = {.lex_state = 7, .external_lex_state = 3}, - [2305] = {.lex_state = 7, .external_lex_state = 4}, - [2306] = {.lex_state = 7, .external_lex_state = 3}, - [2307] = {.lex_state = 7, .external_lex_state = 3}, - [2308] = {.lex_state = 7, .external_lex_state = 3}, - [2309] = {.lex_state = 12, .external_lex_state = 5}, - [2310] = {.lex_state = 7, .external_lex_state = 3}, - [2311] = {.lex_state = 7, .external_lex_state = 3}, - [2312] = {.lex_state = 7, .external_lex_state = 3}, - [2313] = {.lex_state = 12, .external_lex_state = 5}, - [2314] = {.lex_state = 12, .external_lex_state = 5}, - [2315] = {.lex_state = 7, .external_lex_state = 3}, - [2316] = {.lex_state = 7, .external_lex_state = 3}, - [2317] = {.lex_state = 7, .external_lex_state = 3}, - [2318] = {.lex_state = 7, .external_lex_state = 3}, - [2319] = {.lex_state = 7, .external_lex_state = 4}, - [2320] = {.lex_state = 7, .external_lex_state = 4}, - [2321] = {.lex_state = 7, .external_lex_state = 4}, - [2322] = {.lex_state = 7, .external_lex_state = 4}, - [2323] = {.lex_state = 7, .external_lex_state = 4}, - [2324] = {.lex_state = 7, .external_lex_state = 4}, - [2325] = {.lex_state = 7, .external_lex_state = 4}, - [2326] = {.lex_state = 7, .external_lex_state = 4}, - [2327] = {.lex_state = 7, .external_lex_state = 4}, - [2328] = {.lex_state = 7, .external_lex_state = 4}, - [2329] = {.lex_state = 7, .external_lex_state = 4}, - [2330] = {.lex_state = 7, .external_lex_state = 3}, - [2331] = {.lex_state = 12, .external_lex_state = 5}, - [2332] = {.lex_state = 7, .external_lex_state = 3}, - [2333] = {.lex_state = 7, .external_lex_state = 3}, - [2334] = {.lex_state = 12, .external_lex_state = 2}, - [2335] = {.lex_state = 7, .external_lex_state = 3}, - [2336] = {.lex_state = 12, .external_lex_state = 2}, - [2337] = {.lex_state = 149, .external_lex_state = 2}, - [2338] = {.lex_state = 7, .external_lex_state = 4}, - [2339] = {.lex_state = 7, .external_lex_state = 4}, - [2340] = {.lex_state = 8, .external_lex_state = 4}, - [2341] = {.lex_state = 7, .external_lex_state = 4}, - [2342] = {.lex_state = 7, .external_lex_state = 3}, - [2343] = {.lex_state = 12, .external_lex_state = 5}, - [2344] = {.lex_state = 12, .external_lex_state = 5}, - [2345] = {.lex_state = 12, .external_lex_state = 5}, - [2346] = {.lex_state = 7, .external_lex_state = 3}, - [2347] = {.lex_state = 7, .external_lex_state = 3}, - [2348] = {.lex_state = 7, .external_lex_state = 3}, - [2349] = {.lex_state = 7, .external_lex_state = 3}, - [2350] = {.lex_state = 7, .external_lex_state = 4}, - [2351] = {.lex_state = 7, .external_lex_state = 3}, - [2352] = {.lex_state = 7, .external_lex_state = 3}, - [2353] = {.lex_state = 7, .external_lex_state = 3}, - [2354] = {.lex_state = 7, .external_lex_state = 4}, - [2355] = {.lex_state = 7, .external_lex_state = 4}, - [2356] = {.lex_state = 7, .external_lex_state = 3}, - [2357] = {.lex_state = 7, .external_lex_state = 3}, - [2358] = {.lex_state = 12, .external_lex_state = 5}, - [2359] = {.lex_state = 7, .external_lex_state = 3}, - [2360] = {.lex_state = 7, .external_lex_state = 3}, - [2361] = {.lex_state = 7, .external_lex_state = 3}, - [2362] = {.lex_state = 7, .external_lex_state = 3}, - [2363] = {.lex_state = 7, .external_lex_state = 3}, - [2364] = {.lex_state = 7, .external_lex_state = 3}, - [2365] = {.lex_state = 7, .external_lex_state = 3}, - [2366] = {.lex_state = 7, .external_lex_state = 3}, - [2367] = {.lex_state = 7, .external_lex_state = 3}, - [2368] = {.lex_state = 7, .external_lex_state = 3}, - [2369] = {.lex_state = 7, .external_lex_state = 3}, - [2370] = {.lex_state = 7, .external_lex_state = 3}, - [2371] = {.lex_state = 7, .external_lex_state = 3}, - [2372] = {.lex_state = 7, .external_lex_state = 3}, - [2373] = {.lex_state = 7, .external_lex_state = 3}, - [2374] = {.lex_state = 7, .external_lex_state = 3}, - [2375] = {.lex_state = 12, .external_lex_state = 2}, - [2376] = {.lex_state = 7, .external_lex_state = 3}, - [2377] = {.lex_state = 7, .external_lex_state = 4}, - [2378] = {.lex_state = 12, .external_lex_state = 2}, - [2379] = {.lex_state = 7, .external_lex_state = 4}, - [2380] = {.lex_state = 7, .external_lex_state = 3}, - [2381] = {.lex_state = 7, .external_lex_state = 3}, - [2382] = {.lex_state = 12, .external_lex_state = 5}, - [2383] = {.lex_state = 7, .external_lex_state = 3}, - [2384] = {.lex_state = 7, .external_lex_state = 3}, - [2385] = {.lex_state = 7, .external_lex_state = 3}, - [2386] = {.lex_state = 12, .external_lex_state = 2}, - [2387] = {.lex_state = 7, .external_lex_state = 4}, - [2388] = {.lex_state = 7, .external_lex_state = 3}, - [2389] = {.lex_state = 7, .external_lex_state = 3}, - [2390] = {.lex_state = 12, .external_lex_state = 5}, - [2391] = {.lex_state = 7, .external_lex_state = 3}, - [2392] = {.lex_state = 12, .external_lex_state = 5}, - [2393] = {.lex_state = 12, .external_lex_state = 5}, - [2394] = {.lex_state = 7, .external_lex_state = 3}, - [2395] = {.lex_state = 12, .external_lex_state = 5}, - [2396] = {.lex_state = 149, .external_lex_state = 2}, - [2397] = {.lex_state = 12, .external_lex_state = 5}, - [2398] = {.lex_state = 12, .external_lex_state = 5}, - [2399] = {.lex_state = 12, .external_lex_state = 5}, - [2400] = {.lex_state = 12, .external_lex_state = 2}, - [2401] = {.lex_state = 12, .external_lex_state = 5}, - [2402] = {.lex_state = 7, .external_lex_state = 3}, - [2403] = {.lex_state = 12, .external_lex_state = 5}, - [2404] = {.lex_state = 7, .external_lex_state = 3}, - [2405] = {.lex_state = 12, .external_lex_state = 2}, - [2406] = {.lex_state = 12, .external_lex_state = 5}, - [2407] = {.lex_state = 12, .external_lex_state = 5}, - [2408] = {.lex_state = 7, .external_lex_state = 3}, - [2409] = {.lex_state = 12, .external_lex_state = 5}, - [2410] = {.lex_state = 12, .external_lex_state = 5}, - [2411] = {.lex_state = 7, .external_lex_state = 4}, - [2412] = {.lex_state = 7, .external_lex_state = 4}, - [2413] = {.lex_state = 7, .external_lex_state = 4}, - [2414] = {.lex_state = 12, .external_lex_state = 5}, - [2415] = {.lex_state = 12, .external_lex_state = 5}, - [2416] = {.lex_state = 7, .external_lex_state = 4}, - [2417] = {.lex_state = 12, .external_lex_state = 5}, - [2418] = {.lex_state = 12, .external_lex_state = 5}, - [2419] = {.lex_state = 7, .external_lex_state = 4}, - [2420] = {.lex_state = 12, .external_lex_state = 5}, - [2421] = {.lex_state = 12, .external_lex_state = 5}, - [2422] = {.lex_state = 7, .external_lex_state = 3}, - [2423] = {.lex_state = 7, .external_lex_state = 3}, - [2424] = {.lex_state = 7, .external_lex_state = 3}, - [2425] = {.lex_state = 12, .external_lex_state = 2}, - [2426] = {.lex_state = 12, .external_lex_state = 2}, - [2427] = {.lex_state = 149, .external_lex_state = 2}, - [2428] = {.lex_state = 12, .external_lex_state = 5}, - [2429] = {.lex_state = 7, .external_lex_state = 3}, - [2430] = {.lex_state = 8, .external_lex_state = 3}, - [2431] = {.lex_state = 7, .external_lex_state = 4}, - [2432] = {.lex_state = 7, .external_lex_state = 3}, - [2433] = {.lex_state = 7, .external_lex_state = 4}, - [2434] = {.lex_state = 7, .external_lex_state = 3}, - [2435] = {.lex_state = 7, .external_lex_state = 3}, - [2436] = {.lex_state = 7, .external_lex_state = 3}, - [2437] = {.lex_state = 7, .external_lex_state = 3}, - [2438] = {.lex_state = 7, .external_lex_state = 3}, - [2439] = {.lex_state = 7, .external_lex_state = 3}, - [2440] = {.lex_state = 7, .external_lex_state = 3}, - [2441] = {.lex_state = 7, .external_lex_state = 3}, - [2442] = {.lex_state = 7, .external_lex_state = 3}, - [2443] = {.lex_state = 7, .external_lex_state = 3}, - [2444] = {.lex_state = 7, .external_lex_state = 3}, - [2445] = {.lex_state = 7, .external_lex_state = 3}, - [2446] = {.lex_state = 7, .external_lex_state = 3}, - [2447] = {.lex_state = 7, .external_lex_state = 3}, - [2448] = {.lex_state = 7, .external_lex_state = 3}, - [2449] = {.lex_state = 7, .external_lex_state = 3}, - [2450] = {.lex_state = 7, .external_lex_state = 3}, - [2451] = {.lex_state = 7, .external_lex_state = 3}, - [2452] = {.lex_state = 7, .external_lex_state = 3}, - [2453] = {.lex_state = 7, .external_lex_state = 3}, - [2454] = {.lex_state = 7, .external_lex_state = 3}, - [2455] = {.lex_state = 7, .external_lex_state = 3}, - [2456] = {.lex_state = 7, .external_lex_state = 3}, - [2457] = {.lex_state = 7, .external_lex_state = 3}, - [2458] = {.lex_state = 7, .external_lex_state = 3}, - [2459] = {.lex_state = 7, .external_lex_state = 3}, - [2460] = {.lex_state = 7, .external_lex_state = 4}, - [2461] = {.lex_state = 12, .external_lex_state = 5}, - [2462] = {.lex_state = 12, .external_lex_state = 5}, - [2463] = {.lex_state = 7, .external_lex_state = 4}, - [2464] = {.lex_state = 12, .external_lex_state = 5}, - [2465] = {.lex_state = 7, .external_lex_state = 3}, - [2466] = {.lex_state = 7, .external_lex_state = 3}, - [2467] = {.lex_state = 7, .external_lex_state = 3}, - [2468] = {.lex_state = 7, .external_lex_state = 3}, - [2469] = {.lex_state = 7, .external_lex_state = 3}, - [2470] = {.lex_state = 7, .external_lex_state = 3}, - [2471] = {.lex_state = 7, .external_lex_state = 3}, - [2472] = {.lex_state = 7, .external_lex_state = 3}, - [2473] = {.lex_state = 7, .external_lex_state = 3}, - [2474] = {.lex_state = 7, .external_lex_state = 3}, - [2475] = {.lex_state = 7, .external_lex_state = 3}, - [2476] = {.lex_state = 7, .external_lex_state = 3}, - [2477] = {.lex_state = 7, .external_lex_state = 3}, - [2478] = {.lex_state = 7, .external_lex_state = 3}, - [2479] = {.lex_state = 7, .external_lex_state = 3}, - [2480] = {.lex_state = 7, .external_lex_state = 3}, - [2481] = {.lex_state = 12, .external_lex_state = 2}, - [2482] = {.lex_state = 7, .external_lex_state = 3}, - [2483] = {.lex_state = 7, .external_lex_state = 3}, - [2484] = {.lex_state = 7, .external_lex_state = 3}, - [2485] = {.lex_state = 7, .external_lex_state = 3}, - [2486] = {.lex_state = 149, .external_lex_state = 5}, - [2487] = {.lex_state = 149, .external_lex_state = 5}, - [2488] = {.lex_state = 7, .external_lex_state = 3}, - [2489] = {.lex_state = 7, .external_lex_state = 3}, - [2490] = {.lex_state = 7, .external_lex_state = 3}, - [2491] = {.lex_state = 7, .external_lex_state = 3}, - [2492] = {.lex_state = 7, .external_lex_state = 3}, - [2493] = {.lex_state = 149, .external_lex_state = 2}, - [2494] = {.lex_state = 7, .external_lex_state = 3}, - [2495] = {.lex_state = 149, .external_lex_state = 2}, - [2496] = {.lex_state = 12, .external_lex_state = 5}, - [2497] = {.lex_state = 7, .external_lex_state = 3}, - [2498] = {.lex_state = 149, .external_lex_state = 2}, - [2499] = {.lex_state = 7, .external_lex_state = 3}, - [2500] = {.lex_state = 12, .external_lex_state = 5}, - [2501] = {.lex_state = 7, .external_lex_state = 3}, - [2502] = {.lex_state = 7, .external_lex_state = 3}, - [2503] = {.lex_state = 7, .external_lex_state = 3}, - [2504] = {.lex_state = 7, .external_lex_state = 3}, - [2505] = {.lex_state = 7, .external_lex_state = 3}, - [2506] = {.lex_state = 7, .external_lex_state = 3}, - [2507] = {.lex_state = 7, .external_lex_state = 3}, - [2508] = {.lex_state = 7, .external_lex_state = 3}, - [2509] = {.lex_state = 7, .external_lex_state = 3}, - [2510] = {.lex_state = 7, .external_lex_state = 3}, - [2511] = {.lex_state = 7, .external_lex_state = 3}, - [2512] = {.lex_state = 7, .external_lex_state = 3}, - [2513] = {.lex_state = 7, .external_lex_state = 3}, - [2514] = {.lex_state = 7, .external_lex_state = 3}, - [2515] = {.lex_state = 7, .external_lex_state = 3}, - [2516] = {.lex_state = 7, .external_lex_state = 3}, - [2517] = {.lex_state = 7, .external_lex_state = 3}, - [2518] = {.lex_state = 7, .external_lex_state = 3}, - [2519] = {.lex_state = 7, .external_lex_state = 3}, - [2520] = {.lex_state = 7, .external_lex_state = 3}, - [2521] = {.lex_state = 7, .external_lex_state = 3}, - [2522] = {.lex_state = 7, .external_lex_state = 3}, - [2523] = {.lex_state = 7, .external_lex_state = 3}, - [2524] = {.lex_state = 7, .external_lex_state = 3}, - [2525] = {.lex_state = 7, .external_lex_state = 3}, - [2526] = {.lex_state = 7, .external_lex_state = 3}, - [2527] = {.lex_state = 7, .external_lex_state = 3}, - [2528] = {.lex_state = 7, .external_lex_state = 3}, - [2529] = {.lex_state = 7, .external_lex_state = 3}, - [2530] = {.lex_state = 7, .external_lex_state = 3}, - [2531] = {.lex_state = 12, .external_lex_state = 2}, - [2532] = {.lex_state = 12, .external_lex_state = 2}, - [2533] = {.lex_state = 12, .external_lex_state = 2}, - [2534] = {.lex_state = 12, .external_lex_state = 2}, - [2535] = {.lex_state = 12, .external_lex_state = 2}, - [2536] = {.lex_state = 7, .external_lex_state = 3}, - [2537] = {.lex_state = 7, .external_lex_state = 3}, - [2538] = {.lex_state = 7, .external_lex_state = 3}, - [2539] = {.lex_state = 7, .external_lex_state = 3}, - [2540] = {.lex_state = 7, .external_lex_state = 3}, - [2541] = {.lex_state = 149, .external_lex_state = 5}, - [2542] = {.lex_state = 149, .external_lex_state = 5}, - [2543] = {.lex_state = 149, .external_lex_state = 5}, - [2544] = {.lex_state = 149, .external_lex_state = 5}, - [2545] = {.lex_state = 7, .external_lex_state = 3}, - [2546] = {.lex_state = 7, .external_lex_state = 3}, - [2547] = {.lex_state = 7, .external_lex_state = 3}, - [2548] = {.lex_state = 7, .external_lex_state = 3}, - [2549] = {.lex_state = 7, .external_lex_state = 3}, - [2550] = {.lex_state = 7, .external_lex_state = 3}, - [2551] = {.lex_state = 7, .external_lex_state = 3}, - [2552] = {.lex_state = 7, .external_lex_state = 3}, - [2553] = {.lex_state = 7, .external_lex_state = 3}, - [2554] = {.lex_state = 7, .external_lex_state = 3}, - [2555] = {.lex_state = 7, .external_lex_state = 4}, - [2556] = {.lex_state = 7, .external_lex_state = 3}, - [2557] = {.lex_state = 149, .external_lex_state = 5}, - [2558] = {.lex_state = 149, .external_lex_state = 5}, - [2559] = {.lex_state = 149, .external_lex_state = 5}, - [2560] = {.lex_state = 149, .external_lex_state = 5}, - [2561] = {.lex_state = 7, .external_lex_state = 3}, - [2562] = {.lex_state = 7, .external_lex_state = 3}, - [2563] = {.lex_state = 7, .external_lex_state = 3}, - [2564] = {.lex_state = 7, .external_lex_state = 3}, - [2565] = {.lex_state = 7, .external_lex_state = 3}, - [2566] = {.lex_state = 12, .external_lex_state = 2}, - [2567] = {.lex_state = 149, .external_lex_state = 5}, - [2568] = {.lex_state = 8, .external_lex_state = 3}, - [2569] = {.lex_state = 149, .external_lex_state = 5}, - [2570] = {.lex_state = 149, .external_lex_state = 5}, - [2571] = {.lex_state = 149, .external_lex_state = 5}, - [2572] = {.lex_state = 149, .external_lex_state = 5}, - [2573] = {.lex_state = 149, .external_lex_state = 5}, - [2574] = {.lex_state = 149, .external_lex_state = 5}, - [2575] = {.lex_state = 12, .external_lex_state = 2}, - [2576] = {.lex_state = 12, .external_lex_state = 2}, - [2577] = {.lex_state = 12, .external_lex_state = 2}, - [2578] = {.lex_state = 149, .external_lex_state = 5}, - [2579] = {.lex_state = 12, .external_lex_state = 2}, - [2580] = {.lex_state = 12, .external_lex_state = 2}, - [2581] = {.lex_state = 12, .external_lex_state = 2}, - [2582] = {.lex_state = 12, .external_lex_state = 2}, - [2583] = {.lex_state = 149, .external_lex_state = 5}, - [2584] = {.lex_state = 7, .external_lex_state = 3}, - [2585] = {.lex_state = 12, .external_lex_state = 2}, - [2586] = {.lex_state = 149, .external_lex_state = 5}, - [2587] = {.lex_state = 149, .external_lex_state = 5}, - [2588] = {.lex_state = 12, .external_lex_state = 2}, - [2589] = {.lex_state = 12, .external_lex_state = 2}, - [2590] = {.lex_state = 149, .external_lex_state = 5}, - [2591] = {.lex_state = 149, .external_lex_state = 5}, - [2592] = {.lex_state = 7, .external_lex_state = 3}, - [2593] = {.lex_state = 149, .external_lex_state = 5}, - [2594] = {.lex_state = 12, .external_lex_state = 2}, - [2595] = {.lex_state = 12, .external_lex_state = 2}, - [2596] = {.lex_state = 7, .external_lex_state = 3}, - [2597] = {.lex_state = 12, .external_lex_state = 2}, - [2598] = {.lex_state = 12, .external_lex_state = 2}, - [2599] = {.lex_state = 149, .external_lex_state = 5}, - [2600] = {.lex_state = 149, .external_lex_state = 5}, - [2601] = {.lex_state = 7, .external_lex_state = 3}, - [2602] = {.lex_state = 7, .external_lex_state = 3}, - [2603] = {.lex_state = 12, .external_lex_state = 2}, - [2604] = {.lex_state = 12, .external_lex_state = 5}, - [2605] = {.lex_state = 7, .external_lex_state = 3}, - [2606] = {.lex_state = 12, .external_lex_state = 5}, - [2607] = {.lex_state = 12, .external_lex_state = 5}, - [2608] = {.lex_state = 7, .external_lex_state = 3}, - [2609] = {.lex_state = 12, .external_lex_state = 2}, - [2610] = {.lex_state = 12, .external_lex_state = 5}, - [2611] = {.lex_state = 12, .external_lex_state = 5}, - [2612] = {.lex_state = 12, .external_lex_state = 5}, - [2613] = {.lex_state = 12, .external_lex_state = 5}, - [2614] = {.lex_state = 12, .external_lex_state = 5}, - [2615] = {.lex_state = 12, .external_lex_state = 5}, - [2616] = {.lex_state = 12, .external_lex_state = 5}, - [2617] = {.lex_state = 12, .external_lex_state = 5}, - [2618] = {.lex_state = 12, .external_lex_state = 5}, - [2619] = {.lex_state = 7, .external_lex_state = 3}, - [2620] = {.lex_state = 12, .external_lex_state = 5}, - [2621] = {.lex_state = 12, .external_lex_state = 5}, - [2622] = {.lex_state = 12, .external_lex_state = 5}, - [2623] = {.lex_state = 12, .external_lex_state = 5}, - [2624] = {.lex_state = 12, .external_lex_state = 5}, - [2625] = {.lex_state = 12, .external_lex_state = 5}, - [2626] = {.lex_state = 12, .external_lex_state = 5}, - [2627] = {.lex_state = 7, .external_lex_state = 3}, - [2628] = {.lex_state = 12, .external_lex_state = 5}, - [2629] = {.lex_state = 12, .external_lex_state = 5}, - [2630] = {.lex_state = 12, .external_lex_state = 5}, - [2631] = {.lex_state = 12, .external_lex_state = 5}, - [2632] = {.lex_state = 12, .external_lex_state = 5}, - [2633] = {.lex_state = 12, .external_lex_state = 5}, - [2634] = {.lex_state = 12, .external_lex_state = 5}, - [2635] = {.lex_state = 7, .external_lex_state = 3}, - [2636] = {.lex_state = 12, .external_lex_state = 5}, - [2637] = {.lex_state = 12, .external_lex_state = 5}, - [2638] = {.lex_state = 7, .external_lex_state = 3}, - [2639] = {.lex_state = 12, .external_lex_state = 5}, - [2640] = {.lex_state = 12, .external_lex_state = 5}, - [2641] = {.lex_state = 12, .external_lex_state = 5}, - [2642] = {.lex_state = 12, .external_lex_state = 5}, - [2643] = {.lex_state = 7, .external_lex_state = 3}, - [2644] = {.lex_state = 12, .external_lex_state = 5}, - [2645] = {.lex_state = 12, .external_lex_state = 5}, - [2646] = {.lex_state = 12, .external_lex_state = 5}, - [2647] = {.lex_state = 12, .external_lex_state = 5}, - [2648] = {.lex_state = 7, .external_lex_state = 3}, - [2649] = {.lex_state = 12, .external_lex_state = 5}, - [2650] = {.lex_state = 12, .external_lex_state = 5}, - [2651] = {.lex_state = 12, .external_lex_state = 5}, - [2652] = {.lex_state = 12, .external_lex_state = 5}, - [2653] = {.lex_state = 12, .external_lex_state = 5}, - [2654] = {.lex_state = 12, .external_lex_state = 5}, - [2655] = {.lex_state = 12, .external_lex_state = 5}, - [2656] = {.lex_state = 12, .external_lex_state = 5}, - [2657] = {.lex_state = 12, .external_lex_state = 5}, - [2658] = {.lex_state = 12, .external_lex_state = 5}, - [2659] = {.lex_state = 12, .external_lex_state = 2}, - [2660] = {.lex_state = 12, .external_lex_state = 5}, - [2661] = {.lex_state = 7, .external_lex_state = 3}, - [2662] = {.lex_state = 12, .external_lex_state = 5}, - [2663] = {.lex_state = 12, .external_lex_state = 5}, - [2664] = {.lex_state = 12, .external_lex_state = 5}, - [2665] = {.lex_state = 7, .external_lex_state = 3}, - [2666] = {.lex_state = 12, .external_lex_state = 5}, - [2667] = {.lex_state = 12, .external_lex_state = 2}, - [2668] = {.lex_state = 12, .external_lex_state = 5}, - [2669] = {.lex_state = 7, .external_lex_state = 3}, - [2670] = {.lex_state = 12, .external_lex_state = 2}, - [2671] = {.lex_state = 12, .external_lex_state = 2}, - [2672] = {.lex_state = 12, .external_lex_state = 2}, - [2673] = {.lex_state = 12, .external_lex_state = 2}, - [2674] = {.lex_state = 12, .external_lex_state = 2}, - [2675] = {.lex_state = 12, .external_lex_state = 2}, - [2676] = {.lex_state = 12, .external_lex_state = 2}, - [2677] = {.lex_state = 12, .external_lex_state = 2}, - [2678] = {.lex_state = 12, .external_lex_state = 2}, - [2679] = {.lex_state = 12, .external_lex_state = 2}, - [2680] = {.lex_state = 12, .external_lex_state = 2}, - [2681] = {.lex_state = 12, .external_lex_state = 2}, - [2682] = {.lex_state = 149, .external_lex_state = 2}, - [2683] = {.lex_state = 12, .external_lex_state = 2}, - [2684] = {.lex_state = 149, .external_lex_state = 2}, - [2685] = {.lex_state = 12, .external_lex_state = 2}, - [2686] = {.lex_state = 12, .external_lex_state = 2}, - [2687] = {.lex_state = 12, .external_lex_state = 2}, - [2688] = {.lex_state = 12, .external_lex_state = 2}, - [2689] = {.lex_state = 12, .external_lex_state = 2}, - [2690] = {.lex_state = 12, .external_lex_state = 2}, - [2691] = {.lex_state = 12, .external_lex_state = 2}, - [2692] = {.lex_state = 12, .external_lex_state = 2}, - [2693] = {.lex_state = 12, .external_lex_state = 2}, - [2694] = {.lex_state = 149, .external_lex_state = 2}, - [2695] = {.lex_state = 12, .external_lex_state = 2}, - [2696] = {.lex_state = 12, .external_lex_state = 2}, - [2697] = {.lex_state = 12, .external_lex_state = 2}, - [2698] = {.lex_state = 12, .external_lex_state = 2}, - [2699] = {.lex_state = 12, .external_lex_state = 2}, - [2700] = {.lex_state = 12, .external_lex_state = 2}, - [2701] = {.lex_state = 12, .external_lex_state = 2}, - [2702] = {.lex_state = 149, .external_lex_state = 2}, - [2703] = {.lex_state = 12, .external_lex_state = 2}, - [2704] = {.lex_state = 12, .external_lex_state = 2}, - [2705] = {.lex_state = 149, .external_lex_state = 2}, - [2706] = {.lex_state = 12, .external_lex_state = 2}, - [2707] = {.lex_state = 12, .external_lex_state = 2}, - [2708] = {.lex_state = 12, .external_lex_state = 2}, - [2709] = {.lex_state = 12, .external_lex_state = 2}, - [2710] = {.lex_state = 12, .external_lex_state = 2}, - [2711] = {.lex_state = 12, .external_lex_state = 2}, - [2712] = {.lex_state = 12, .external_lex_state = 2}, - [2713] = {.lex_state = 12, .external_lex_state = 2}, - [2714] = {.lex_state = 12, .external_lex_state = 2}, - [2715] = {.lex_state = 12, .external_lex_state = 2}, - [2716] = {.lex_state = 12, .external_lex_state = 2}, - [2717] = {.lex_state = 12, .external_lex_state = 2}, - [2718] = {.lex_state = 12, .external_lex_state = 2}, - [2719] = {.lex_state = 12, .external_lex_state = 2}, - [2720] = {.lex_state = 12, .external_lex_state = 2}, - [2721] = {.lex_state = 12, .external_lex_state = 2}, - [2722] = {.lex_state = 12, .external_lex_state = 2}, - [2723] = {.lex_state = 12, .external_lex_state = 2}, - [2724] = {.lex_state = 149, .external_lex_state = 2}, - [2725] = {.lex_state = 149, .external_lex_state = 2}, - [2726] = {.lex_state = 149, .external_lex_state = 2}, - [2727] = {.lex_state = 149, .external_lex_state = 2}, - [2728] = {.lex_state = 149, .external_lex_state = 2}, - [2729] = {.lex_state = 149, .external_lex_state = 2}, - [2730] = {.lex_state = 149, .external_lex_state = 2}, - [2731] = {.lex_state = 149, .external_lex_state = 2}, - [2732] = {.lex_state = 149, .external_lex_state = 2}, - [2733] = {.lex_state = 149, .external_lex_state = 2}, - [2734] = {.lex_state = 149, .external_lex_state = 2}, - [2735] = {.lex_state = 149, .external_lex_state = 2}, - [2736] = {.lex_state = 149, .external_lex_state = 2}, - [2737] = {.lex_state = 149, .external_lex_state = 2}, - [2738] = {.lex_state = 149, .external_lex_state = 2}, - [2739] = {.lex_state = 149, .external_lex_state = 2}, - [2740] = {.lex_state = 149, .external_lex_state = 2}, - [2741] = {.lex_state = 149, .external_lex_state = 2}, - [2742] = {.lex_state = 149, .external_lex_state = 2}, - [2743] = {.lex_state = 149, .external_lex_state = 2}, - [2744] = {.lex_state = 149, .external_lex_state = 2}, - [2745] = {.lex_state = 149, .external_lex_state = 2}, - [2746] = {.lex_state = 149, .external_lex_state = 2}, - [2747] = {.lex_state = 149, .external_lex_state = 2}, - [2748] = {.lex_state = 149, .external_lex_state = 2}, - [2749] = {.lex_state = 149, .external_lex_state = 2}, - [2750] = {.lex_state = 149, .external_lex_state = 2}, - [2751] = {.lex_state = 149, .external_lex_state = 2}, - [2752] = {.lex_state = 149, .external_lex_state = 2}, - [2753] = {.lex_state = 149, .external_lex_state = 2}, - [2754] = {.lex_state = 149, .external_lex_state = 2}, - [2755] = {.lex_state = 149, .external_lex_state = 2}, - [2756] = {.lex_state = 149, .external_lex_state = 2}, - [2757] = {.lex_state = 149, .external_lex_state = 2}, - [2758] = {.lex_state = 149, .external_lex_state = 2}, - [2759] = {.lex_state = 149, .external_lex_state = 2}, - [2760] = {.lex_state = 149, .external_lex_state = 2}, - [2761] = {.lex_state = 149, .external_lex_state = 2}, - [2762] = {.lex_state = 149, .external_lex_state = 2}, - [2763] = {.lex_state = 149, .external_lex_state = 2}, - [2764] = {.lex_state = 149, .external_lex_state = 2}, - [2765] = {.lex_state = 12, .external_lex_state = 2}, - [2766] = {.lex_state = 149, .external_lex_state = 2}, - [2767] = {.lex_state = 149, .external_lex_state = 2}, - [2768] = {.lex_state = 149, .external_lex_state = 2}, - [2769] = {.lex_state = 149, .external_lex_state = 2}, - [2770] = {.lex_state = 149, .external_lex_state = 2}, - [2771] = {.lex_state = 149, .external_lex_state = 2}, - [2772] = {.lex_state = 149, .external_lex_state = 2}, - [2773] = {.lex_state = 149, .external_lex_state = 2}, - [2774] = {.lex_state = 149, .external_lex_state = 2}, - [2775] = {.lex_state = 149, .external_lex_state = 2}, - [2776] = {.lex_state = 149, .external_lex_state = 2}, - [2777] = {.lex_state = 149, .external_lex_state = 2}, - [2778] = {.lex_state = 149, .external_lex_state = 2}, - [2779] = {.lex_state = 149, .external_lex_state = 2}, - [2780] = {.lex_state = 149, .external_lex_state = 2}, - [2781] = {.lex_state = 149, .external_lex_state = 2}, - [2782] = {.lex_state = 149, .external_lex_state = 2}, - [2783] = {.lex_state = 149, .external_lex_state = 2}, - [2784] = {.lex_state = 149, .external_lex_state = 2}, - [2785] = {.lex_state = 149, .external_lex_state = 2}, - [2786] = {.lex_state = 149, .external_lex_state = 2}, - [2787] = {.lex_state = 149, .external_lex_state = 2}, - [2788] = {.lex_state = 149, .external_lex_state = 2}, - [2789] = {.lex_state = 149, .external_lex_state = 2}, - [2790] = {.lex_state = 149, .external_lex_state = 2}, - [2791] = {.lex_state = 149, .external_lex_state = 2}, - [2792] = {.lex_state = 149, .external_lex_state = 2}, - [2793] = {.lex_state = 149, .external_lex_state = 2}, - [2794] = {.lex_state = 149, .external_lex_state = 2}, - [2795] = {.lex_state = 149, .external_lex_state = 2}, - [2796] = {.lex_state = 149, .external_lex_state = 2}, - [2797] = {.lex_state = 149, .external_lex_state = 2}, - [2798] = {.lex_state = 149, .external_lex_state = 2}, - [2799] = {.lex_state = 149, .external_lex_state = 2}, - [2800] = {.lex_state = 149, .external_lex_state = 2}, - [2801] = {.lex_state = 149, .external_lex_state = 2}, - [2802] = {.lex_state = 149, .external_lex_state = 2}, - [2803] = {.lex_state = 149, .external_lex_state = 2}, - [2804] = {.lex_state = 149, .external_lex_state = 2}, - [2805] = {.lex_state = 149, .external_lex_state = 2}, - [2806] = {.lex_state = 149, .external_lex_state = 2}, - [2807] = {.lex_state = 149, .external_lex_state = 2}, - [2808] = {.lex_state = 149, .external_lex_state = 2}, - [2809] = {.lex_state = 149, .external_lex_state = 2}, - [2810] = {.lex_state = 149, .external_lex_state = 2}, - [2811] = {.lex_state = 149, .external_lex_state = 2}, - [2812] = {.lex_state = 149, .external_lex_state = 2}, - [2813] = {.lex_state = 149, .external_lex_state = 2}, - [2814] = {.lex_state = 149, .external_lex_state = 2}, - [2815] = {.lex_state = 149, .external_lex_state = 2}, - [2816] = {.lex_state = 149, .external_lex_state = 2}, - [2817] = {.lex_state = 149, .external_lex_state = 2}, - [2818] = {.lex_state = 149, .external_lex_state = 2}, - [2819] = {.lex_state = 149, .external_lex_state = 2}, - [2820] = {.lex_state = 149, .external_lex_state = 2}, - [2821] = {.lex_state = 149, .external_lex_state = 2}, - [2822] = {.lex_state = 149, .external_lex_state = 2}, - [2823] = {.lex_state = 149, .external_lex_state = 2}, - [2824] = {.lex_state = 149, .external_lex_state = 2}, - [2825] = {.lex_state = 149, .external_lex_state = 2}, - [2826] = {.lex_state = 149, .external_lex_state = 2}, - [2827] = {.lex_state = 149, .external_lex_state = 2}, - [2828] = {.lex_state = 149, .external_lex_state = 2}, - [2829] = {.lex_state = 149, .external_lex_state = 2}, - [2830] = {.lex_state = 149, .external_lex_state = 2}, - [2831] = {.lex_state = 149, .external_lex_state = 2}, - [2832] = {.lex_state = 149, .external_lex_state = 2}, - [2833] = {.lex_state = 15, .external_lex_state = 2}, - [2834] = {.lex_state = 15, .external_lex_state = 2}, - [2835] = {.lex_state = 15, .external_lex_state = 2}, - [2836] = {.lex_state = 15, .external_lex_state = 2}, - [2837] = {.lex_state = 15, .external_lex_state = 2}, - [2838] = {.lex_state = 15, .external_lex_state = 2}, - [2839] = {.lex_state = 15, .external_lex_state = 2}, - [2840] = {.lex_state = 15, .external_lex_state = 2}, - [2841] = {.lex_state = 15, .external_lex_state = 2}, - [2842] = {.lex_state = 15, .external_lex_state = 2}, - [2843] = {.lex_state = 15, .external_lex_state = 2}, - [2844] = {.lex_state = 15, .external_lex_state = 2}, - [2845] = {.lex_state = 15, .external_lex_state = 2}, - [2846] = {.lex_state = 15, .external_lex_state = 2}, - [2847] = {.lex_state = 15, .external_lex_state = 2}, - [2848] = {.lex_state = 15, .external_lex_state = 2}, - [2849] = {.lex_state = 15, .external_lex_state = 2}, - [2850] = {.lex_state = 15, .external_lex_state = 2}, - [2851] = {.lex_state = 15, .external_lex_state = 2}, - [2852] = {.lex_state = 15, .external_lex_state = 2}, - [2853] = {.lex_state = 15, .external_lex_state = 2}, - [2854] = {.lex_state = 15, .external_lex_state = 2}, - [2855] = {.lex_state = 15, .external_lex_state = 2}, - [2856] = {.lex_state = 15, .external_lex_state = 2}, - [2857] = {.lex_state = 15, .external_lex_state = 2}, - [2858] = {.lex_state = 15, .external_lex_state = 2}, - [2859] = {.lex_state = 15, .external_lex_state = 2}, - [2860] = {.lex_state = 15, .external_lex_state = 2}, - [2861] = {.lex_state = 15, .external_lex_state = 2}, - [2862] = {.lex_state = 15, .external_lex_state = 2}, - [2863] = {.lex_state = 15, .external_lex_state = 2}, - [2864] = {.lex_state = 15, .external_lex_state = 2}, - [2865] = {.lex_state = 15, .external_lex_state = 2}, - [2866] = {.lex_state = 15, .external_lex_state = 2}, - [2867] = {.lex_state = 15, .external_lex_state = 2}, - [2868] = {.lex_state = 15, .external_lex_state = 2}, - [2869] = {.lex_state = 15, .external_lex_state = 2}, - [2870] = {.lex_state = 13, .external_lex_state = 2}, - [2871] = {.lex_state = 13, .external_lex_state = 5}, - [2872] = {.lex_state = 25, .external_lex_state = 2}, - [2873] = {.lex_state = 25, .external_lex_state = 2}, - [2874] = {.lex_state = 13, .external_lex_state = 5}, - [2875] = {.lex_state = 149, .external_lex_state = 2}, - [2876] = {.lex_state = 15, .external_lex_state = 5}, - [2877] = {.lex_state = 149, .external_lex_state = 2}, - [2878] = {.lex_state = 14, .external_lex_state = 2}, - [2879] = {.lex_state = 13, .external_lex_state = 2}, - [2880] = {.lex_state = 149, .external_lex_state = 2}, - [2881] = {.lex_state = 149, .external_lex_state = 2}, - [2882] = {.lex_state = 15, .external_lex_state = 5}, - [2883] = {.lex_state = 14, .external_lex_state = 2}, - [2884] = {.lex_state = 13, .external_lex_state = 2}, - [2885] = {.lex_state = 13, .external_lex_state = 2}, - [2886] = {.lex_state = 14, .external_lex_state = 2}, - [2887] = {.lex_state = 14, .external_lex_state = 2}, - [2888] = {.lex_state = 149, .external_lex_state = 2}, - [2889] = {.lex_state = 13, .external_lex_state = 2}, - [2890] = {.lex_state = 15, .external_lex_state = 5}, - [2891] = {.lex_state = 14, .external_lex_state = 2}, - [2892] = {.lex_state = 15, .external_lex_state = 2}, - [2893] = {.lex_state = 149, .external_lex_state = 2}, - [2894] = {.lex_state = 149, .external_lex_state = 2}, - [2895] = {.lex_state = 149, .external_lex_state = 2}, - [2896] = {.lex_state = 149, .external_lex_state = 2}, - [2897] = {.lex_state = 149, .external_lex_state = 2}, - [2898] = {.lex_state = 149, .external_lex_state = 2}, - [2899] = {.lex_state = 149, .external_lex_state = 2}, - [2900] = {.lex_state = 149, .external_lex_state = 2}, - [2901] = {.lex_state = 149, .external_lex_state = 2}, - [2902] = {.lex_state = 149, .external_lex_state = 2}, - [2903] = {.lex_state = 15, .external_lex_state = 5}, - [2904] = {.lex_state = 149, .external_lex_state = 2}, - [2905] = {.lex_state = 149, .external_lex_state = 2}, - [2906] = {.lex_state = 15, .external_lex_state = 5}, - [2907] = {.lex_state = 15, .external_lex_state = 5}, - [2908] = {.lex_state = 149, .external_lex_state = 2}, - [2909] = {.lex_state = 15, .external_lex_state = 5}, - [2910] = {.lex_state = 15, .external_lex_state = 5}, - [2911] = {.lex_state = 15, .external_lex_state = 5}, - [2912] = {.lex_state = 15, .external_lex_state = 5}, - [2913] = {.lex_state = 15, .external_lex_state = 5}, - [2914] = {.lex_state = 15, .external_lex_state = 5}, - [2915] = {.lex_state = 15, .external_lex_state = 5}, - [2916] = {.lex_state = 15, .external_lex_state = 5}, - [2917] = {.lex_state = 15, .external_lex_state = 5}, - [2918] = {.lex_state = 15, .external_lex_state = 5}, - [2919] = {.lex_state = 149, .external_lex_state = 2}, - [2920] = {.lex_state = 149, .external_lex_state = 2}, - [2921] = {.lex_state = 149, .external_lex_state = 2}, - [2922] = {.lex_state = 149, .external_lex_state = 2}, - [2923] = {.lex_state = 15, .external_lex_state = 5}, - [2924] = {.lex_state = 149, .external_lex_state = 2}, - [2925] = {.lex_state = 4, .external_lex_state = 2}, - [2926] = {.lex_state = 149, .external_lex_state = 2}, - [2927] = {.lex_state = 15, .external_lex_state = 5}, - [2928] = {.lex_state = 15, .external_lex_state = 5}, - [2929] = {.lex_state = 15, .external_lex_state = 5}, - [2930] = {.lex_state = 15, .external_lex_state = 5}, - [2931] = {.lex_state = 15, .external_lex_state = 5}, - [2932] = {.lex_state = 15, .external_lex_state = 5}, - [2933] = {.lex_state = 15, .external_lex_state = 5}, - [2934] = {.lex_state = 15, .external_lex_state = 5}, - [2935] = {.lex_state = 15, .external_lex_state = 5}, - [2936] = {.lex_state = 15, .external_lex_state = 5}, - [2937] = {.lex_state = 15, .external_lex_state = 5}, - [2938] = {.lex_state = 15, .external_lex_state = 5}, - [2939] = {.lex_state = 15, .external_lex_state = 5}, - [2940] = {.lex_state = 15, .external_lex_state = 5}, - [2941] = {.lex_state = 15, .external_lex_state = 5}, - [2942] = {.lex_state = 15, .external_lex_state = 5}, - [2943] = {.lex_state = 15, .external_lex_state = 5}, - [2944] = {.lex_state = 15, .external_lex_state = 5}, - [2945] = {.lex_state = 15, .external_lex_state = 5}, - [2946] = {.lex_state = 15, .external_lex_state = 5}, - [2947] = {.lex_state = 13, .external_lex_state = 5}, - [2948] = {.lex_state = 149, .external_lex_state = 2}, - [2949] = {.lex_state = 4, .external_lex_state = 2}, - [2950] = {.lex_state = 149, .external_lex_state = 2}, - [2951] = {.lex_state = 149, .external_lex_state = 2}, - [2952] = {.lex_state = 149, .external_lex_state = 2}, - [2953] = {.lex_state = 149, .external_lex_state = 2}, - [2954] = {.lex_state = 149, .external_lex_state = 2}, - [2955] = {.lex_state = 149, .external_lex_state = 2}, - [2956] = {.lex_state = 149, .external_lex_state = 2}, - [2957] = {.lex_state = 4, .external_lex_state = 2}, - [2958] = {.lex_state = 149, .external_lex_state = 2}, - [2959] = {.lex_state = 149, .external_lex_state = 2}, - [2960] = {.lex_state = 149, .external_lex_state = 2}, - [2961] = {.lex_state = 149, .external_lex_state = 2}, - [2962] = {.lex_state = 149, .external_lex_state = 2}, - [2963] = {.lex_state = 149, .external_lex_state = 2}, - [2964] = {.lex_state = 149, .external_lex_state = 2}, - [2965] = {.lex_state = 149, .external_lex_state = 2}, - [2966] = {.lex_state = 149, .external_lex_state = 2}, - [2967] = {.lex_state = 149, .external_lex_state = 2}, - [2968] = {.lex_state = 149, .external_lex_state = 2}, - [2969] = {.lex_state = 149, .external_lex_state = 2}, - [2970] = {.lex_state = 149, .external_lex_state = 2}, - [2971] = {.lex_state = 4, .external_lex_state = 2}, - [2972] = {.lex_state = 149, .external_lex_state = 2}, - [2973] = {.lex_state = 149, .external_lex_state = 2}, - [2974] = {.lex_state = 149, .external_lex_state = 2}, - [2975] = {.lex_state = 149, .external_lex_state = 2}, - [2976] = {.lex_state = 4, .external_lex_state = 2}, - [2977] = {.lex_state = 149, .external_lex_state = 2}, - [2978] = {.lex_state = 149, .external_lex_state = 2}, - [2979] = {.lex_state = 149, .external_lex_state = 2}, - [2980] = {.lex_state = 149, .external_lex_state = 2}, - [2981] = {.lex_state = 149, .external_lex_state = 2}, - [2982] = {.lex_state = 15, .external_lex_state = 6}, - [2983] = {.lex_state = 4, .external_lex_state = 2}, - [2984] = {.lex_state = 15, .external_lex_state = 6}, - [2985] = {.lex_state = 15, .external_lex_state = 6}, - [2986] = {.lex_state = 4, .external_lex_state = 2}, - [2987] = {.lex_state = 149, .external_lex_state = 2}, - [2988] = {.lex_state = 149, .external_lex_state = 2}, - [2989] = {.lex_state = 149, .external_lex_state = 2}, - [2990] = {.lex_state = 149, .external_lex_state = 2}, - [2991] = {.lex_state = 4, .external_lex_state = 2}, - [2992] = {.lex_state = 149, .external_lex_state = 2}, - [2993] = {.lex_state = 149, .external_lex_state = 2}, - [2994] = {.lex_state = 4, .external_lex_state = 2}, - [2995] = {.lex_state = 149, .external_lex_state = 2}, - [2996] = {.lex_state = 149, .external_lex_state = 2}, - [2997] = {.lex_state = 149, .external_lex_state = 2}, - [2998] = {.lex_state = 149, .external_lex_state = 2}, - [2999] = {.lex_state = 149, .external_lex_state = 2}, - [3000] = {.lex_state = 149, .external_lex_state = 2}, - [3001] = {.lex_state = 149, .external_lex_state = 2}, - [3002] = {.lex_state = 149, .external_lex_state = 2}, - [3003] = {.lex_state = 149, .external_lex_state = 2}, - [3004] = {.lex_state = 12, .external_lex_state = 5}, - [3005] = {.lex_state = 12, .external_lex_state = 5}, - [3006] = {.lex_state = 149, .external_lex_state = 2}, - [3007] = {.lex_state = 149, .external_lex_state = 2}, - [3008] = {.lex_state = 149, .external_lex_state = 2}, - [3009] = {.lex_state = 12, .external_lex_state = 5}, - [3010] = {.lex_state = 12, .external_lex_state = 5}, - [3011] = {.lex_state = 12, .external_lex_state = 5}, - [3012] = {.lex_state = 12, .external_lex_state = 5}, - [3013] = {.lex_state = 12, .external_lex_state = 5}, - [3014] = {.lex_state = 149, .external_lex_state = 2}, - [3015] = {.lex_state = 25, .external_lex_state = 2}, - [3016] = {.lex_state = 12, .external_lex_state = 5}, - [3017] = {.lex_state = 12, .external_lex_state = 5}, - [3018] = {.lex_state = 12, .external_lex_state = 5}, - [3019] = {.lex_state = 149, .external_lex_state = 2}, - [3020] = {.lex_state = 12, .external_lex_state = 5}, - [3021] = {.lex_state = 149, .external_lex_state = 2}, - [3022] = {.lex_state = 12, .external_lex_state = 5}, - [3023] = {.lex_state = 12, .external_lex_state = 5}, - [3024] = {.lex_state = 12, .external_lex_state = 5}, - [3025] = {.lex_state = 12, .external_lex_state = 5}, - [3026] = {.lex_state = 149, .external_lex_state = 2}, - [3027] = {.lex_state = 12, .external_lex_state = 5}, - [3028] = {.lex_state = 12, .external_lex_state = 5}, - [3029] = {.lex_state = 149, .external_lex_state = 2}, - [3030] = {.lex_state = 12, .external_lex_state = 5}, - [3031] = {.lex_state = 12, .external_lex_state = 5}, - [3032] = {.lex_state = 12, .external_lex_state = 5}, - [3033] = {.lex_state = 12, .external_lex_state = 5}, - [3034] = {.lex_state = 12, .external_lex_state = 5}, - [3035] = {.lex_state = 149, .external_lex_state = 2}, - [3036] = {.lex_state = 149, .external_lex_state = 2}, - [3037] = {.lex_state = 12, .external_lex_state = 5}, - [3038] = {.lex_state = 12, .external_lex_state = 5}, - [3039] = {.lex_state = 12, .external_lex_state = 5}, - [3040] = {.lex_state = 12, .external_lex_state = 5}, - [3041] = {.lex_state = 149, .external_lex_state = 2}, - [3042] = {.lex_state = 13, .external_lex_state = 5}, - [3043] = {.lex_state = 12, .external_lex_state = 5}, - [3044] = {.lex_state = 149, .external_lex_state = 5}, - [3045] = {.lex_state = 12, .external_lex_state = 5}, - [3046] = {.lex_state = 15, .external_lex_state = 6}, - [3047] = {.lex_state = 12, .external_lex_state = 5}, - [3048] = {.lex_state = 14, .external_lex_state = 5}, - [3049] = {.lex_state = 14, .external_lex_state = 5}, - [3050] = {.lex_state = 12, .external_lex_state = 5}, - [3051] = {.lex_state = 149, .external_lex_state = 2}, - [3052] = {.lex_state = 14, .external_lex_state = 5}, - [3053] = {.lex_state = 149, .external_lex_state = 2}, - [3054] = {.lex_state = 149, .external_lex_state = 2}, - [3055] = {.lex_state = 13, .external_lex_state = 6}, - [3056] = {.lex_state = 12, .external_lex_state = 5}, - [3057] = {.lex_state = 13, .external_lex_state = 5}, - [3058] = {.lex_state = 12, .external_lex_state = 5}, - [3059] = {.lex_state = 14, .external_lex_state = 5}, - [3060] = {.lex_state = 14, .external_lex_state = 5}, - [3061] = {.lex_state = 149, .external_lex_state = 5}, - [3062] = {.lex_state = 149, .external_lex_state = 5}, - [3063] = {.lex_state = 149, .external_lex_state = 2}, - [3064] = {.lex_state = 149, .external_lex_state = 2}, - [3065] = {.lex_state = 13, .external_lex_state = 5}, - [3066] = {.lex_state = 14, .external_lex_state = 5}, - [3067] = {.lex_state = 149, .external_lex_state = 2}, - [3068] = {.lex_state = 149, .external_lex_state = 5}, - [3069] = {.lex_state = 149, .external_lex_state = 5}, - [3070] = {.lex_state = 12, .external_lex_state = 5}, - [3071] = {.lex_state = 149, .external_lex_state = 5}, - [3072] = {.lex_state = 25, .external_lex_state = 2}, - [3073] = {.lex_state = 25, .external_lex_state = 2}, - [3074] = {.lex_state = 15, .external_lex_state = 6}, - [3075] = {.lex_state = 149, .external_lex_state = 2}, - [3076] = {.lex_state = 12, .external_lex_state = 5}, - [3077] = {.lex_state = 12, .external_lex_state = 5}, - [3078] = {.lex_state = 15, .external_lex_state = 6}, - [3079] = {.lex_state = 15, .external_lex_state = 6}, - [3080] = {.lex_state = 15, .external_lex_state = 6}, - [3081] = {.lex_state = 15, .external_lex_state = 6}, - [3082] = {.lex_state = 15, .external_lex_state = 6}, - [3083] = {.lex_state = 15, .external_lex_state = 6}, - [3084] = {.lex_state = 12, .external_lex_state = 5}, - [3085] = {.lex_state = 15, .external_lex_state = 6}, - [3086] = {.lex_state = 15, .external_lex_state = 6}, - [3087] = {.lex_state = 15, .external_lex_state = 6}, - [3088] = {.lex_state = 15, .external_lex_state = 6}, - [3089] = {.lex_state = 15, .external_lex_state = 6}, - [3090] = {.lex_state = 15, .external_lex_state = 6}, - [3091] = {.lex_state = 14, .external_lex_state = 5}, - [3092] = {.lex_state = 149, .external_lex_state = 2}, - [3093] = {.lex_state = 12, .external_lex_state = 5}, - [3094] = {.lex_state = 15, .external_lex_state = 6}, - [3095] = {.lex_state = 15, .external_lex_state = 6}, - [3096] = {.lex_state = 15, .external_lex_state = 6}, - [3097] = {.lex_state = 15, .external_lex_state = 6}, - [3098] = {.lex_state = 15, .external_lex_state = 6}, - [3099] = {.lex_state = 15, .external_lex_state = 6}, - [3100] = {.lex_state = 15, .external_lex_state = 6}, - [3101] = {.lex_state = 14, .external_lex_state = 5}, - [3102] = {.lex_state = 15, .external_lex_state = 6}, - [3103] = {.lex_state = 15, .external_lex_state = 6}, - [3104] = {.lex_state = 15, .external_lex_state = 6}, - [3105] = {.lex_state = 15, .external_lex_state = 6}, - [3106] = {.lex_state = 15, .external_lex_state = 6}, - [3107] = {.lex_state = 15, .external_lex_state = 6}, - [3108] = {.lex_state = 13, .external_lex_state = 5}, - [3109] = {.lex_state = 149, .external_lex_state = 5}, - [3110] = {.lex_state = 15, .external_lex_state = 6}, - [3111] = {.lex_state = 15, .external_lex_state = 6}, - [3112] = {.lex_state = 15, .external_lex_state = 6}, - [3113] = {.lex_state = 15, .external_lex_state = 6}, - [3114] = {.lex_state = 15, .external_lex_state = 6}, - [3115] = {.lex_state = 12, .external_lex_state = 5}, - [3116] = {.lex_state = 149, .external_lex_state = 2}, - [3117] = {.lex_state = 149, .external_lex_state = 2}, - [3118] = {.lex_state = 15, .external_lex_state = 6}, - [3119] = {.lex_state = 15, .external_lex_state = 6}, - [3120] = {.lex_state = 12, .external_lex_state = 5}, - [3121] = {.lex_state = 12, .external_lex_state = 5}, - [3122] = {.lex_state = 25, .external_lex_state = 2}, - [3123] = {.lex_state = 12, .external_lex_state = 5}, - [3124] = {.lex_state = 12, .external_lex_state = 5}, - [3125] = {.lex_state = 12, .external_lex_state = 5}, - [3126] = {.lex_state = 12, .external_lex_state = 5}, - [3127] = {.lex_state = 12, .external_lex_state = 5}, - [3128] = {.lex_state = 149, .external_lex_state = 5}, - [3129] = {.lex_state = 12, .external_lex_state = 5}, - [3130] = {.lex_state = 12, .external_lex_state = 5}, - [3131] = {.lex_state = 12, .external_lex_state = 5}, - [3132] = {.lex_state = 12, .external_lex_state = 5}, - [3133] = {.lex_state = 149, .external_lex_state = 5}, - [3134] = {.lex_state = 12, .external_lex_state = 5}, - [3135] = {.lex_state = 149, .external_lex_state = 5}, - [3136] = {.lex_state = 12, .external_lex_state = 5}, - [3137] = {.lex_state = 149, .external_lex_state = 5}, - [3138] = {.lex_state = 149, .external_lex_state = 2}, - [3139] = {.lex_state = 149, .external_lex_state = 5}, - [3140] = {.lex_state = 15, .external_lex_state = 2}, - [3141] = {.lex_state = 149, .external_lex_state = 5}, - [3142] = {.lex_state = 25, .external_lex_state = 2}, - [3143] = {.lex_state = 12, .external_lex_state = 5}, - [3144] = {.lex_state = 12, .external_lex_state = 5}, - [3145] = {.lex_state = 12, .external_lex_state = 5}, - [3146] = {.lex_state = 12, .external_lex_state = 5}, - [3147] = {.lex_state = 12, .external_lex_state = 5}, - [3148] = {.lex_state = 12, .external_lex_state = 5}, - [3149] = {.lex_state = 12, .external_lex_state = 2}, - [3150] = {.lex_state = 15, .external_lex_state = 2}, - [3151] = {.lex_state = 12, .external_lex_state = 5}, - [3152] = {.lex_state = 12, .external_lex_state = 5}, - [3153] = {.lex_state = 12, .external_lex_state = 5}, - [3154] = {.lex_state = 12, .external_lex_state = 5}, - [3155] = {.lex_state = 149, .external_lex_state = 5}, - [3156] = {.lex_state = 149, .external_lex_state = 5}, - [3157] = {.lex_state = 15, .external_lex_state = 2}, - [3158] = {.lex_state = 12, .external_lex_state = 5}, - [3159] = {.lex_state = 12, .external_lex_state = 2}, - [3160] = {.lex_state = 12, .external_lex_state = 5}, - [3161] = {.lex_state = 12, .external_lex_state = 5}, - [3162] = {.lex_state = 12, .external_lex_state = 5}, - [3163] = {.lex_state = 12, .external_lex_state = 5}, - [3164] = {.lex_state = 12, .external_lex_state = 5}, - [3165] = {.lex_state = 12, .external_lex_state = 5}, - [3166] = {.lex_state = 25, .external_lex_state = 2}, - [3167] = {.lex_state = 12, .external_lex_state = 5}, - [3168] = {.lex_state = 13, .external_lex_state = 6}, - [3169] = {.lex_state = 149, .external_lex_state = 6}, - [3170] = {.lex_state = 149, .external_lex_state = 2}, - [3171] = {.lex_state = 12, .external_lex_state = 5}, - [3172] = {.lex_state = 149, .external_lex_state = 5}, - [3173] = {.lex_state = 12, .external_lex_state = 2}, - [3174] = {.lex_state = 12, .external_lex_state = 5}, - [3175] = {.lex_state = 12, .external_lex_state = 5}, - [3176] = {.lex_state = 149, .external_lex_state = 5}, - [3177] = {.lex_state = 12, .external_lex_state = 5}, - [3178] = {.lex_state = 12, .external_lex_state = 5}, - [3179] = {.lex_state = 12, .external_lex_state = 5}, - [3180] = {.lex_state = 12, .external_lex_state = 5}, - [3181] = {.lex_state = 25, .external_lex_state = 2}, - [3182] = {.lex_state = 12, .external_lex_state = 5}, - [3183] = {.lex_state = 149, .external_lex_state = 5}, - [3184] = {.lex_state = 149, .external_lex_state = 5}, - [3185] = {.lex_state = 149, .external_lex_state = 5}, - [3186] = {.lex_state = 149, .external_lex_state = 5}, - [3187] = {.lex_state = 13, .external_lex_state = 6}, - [3188] = {.lex_state = 149, .external_lex_state = 5}, - [3189] = {.lex_state = 149, .external_lex_state = 5}, - [3190] = {.lex_state = 23, .external_lex_state = 7}, - [3191] = {.lex_state = 149, .external_lex_state = 5}, - [3192] = {.lex_state = 149, .external_lex_state = 5}, - [3193] = {.lex_state = 23, .external_lex_state = 7}, - [3194] = {.lex_state = 23, .external_lex_state = 7}, - [3195] = {.lex_state = 149, .external_lex_state = 5}, - [3196] = {.lex_state = 23, .external_lex_state = 7}, - [3197] = {.lex_state = 23, .external_lex_state = 7}, - [3198] = {.lex_state = 149, .external_lex_state = 5}, - [3199] = {.lex_state = 149, .external_lex_state = 5}, - [3200] = {.lex_state = 149, .external_lex_state = 5}, - [3201] = {.lex_state = 149, .external_lex_state = 5}, - [3202] = {.lex_state = 149, .external_lex_state = 5}, - [3203] = {.lex_state = 149, .external_lex_state = 5}, - [3204] = {.lex_state = 149, .external_lex_state = 5}, - [3205] = {.lex_state = 149, .external_lex_state = 5}, - [3206] = {.lex_state = 149, .external_lex_state = 5}, - [3207] = {.lex_state = 149, .external_lex_state = 5}, - [3208] = {.lex_state = 149, .external_lex_state = 5}, - [3209] = {.lex_state = 149, .external_lex_state = 5}, - [3210] = {.lex_state = 149, .external_lex_state = 5}, - [3211] = {.lex_state = 149, .external_lex_state = 5}, - [3212] = {.lex_state = 149, .external_lex_state = 5}, - [3213] = {.lex_state = 12, .external_lex_state = 5}, - [3214] = {.lex_state = 23, .external_lex_state = 7}, - [3215] = {.lex_state = 12, .external_lex_state = 5}, - [3216] = {.lex_state = 149, .external_lex_state = 5}, - [3217] = {.lex_state = 149, .external_lex_state = 5}, - [3218] = {.lex_state = 149, .external_lex_state = 5}, - [3219] = {.lex_state = 149, .external_lex_state = 5}, - [3220] = {.lex_state = 149, .external_lex_state = 5}, - [3221] = {.lex_state = 149, .external_lex_state = 5}, - [3222] = {.lex_state = 13, .external_lex_state = 6}, - [3223] = {.lex_state = 149, .external_lex_state = 5}, - [3224] = {.lex_state = 149, .external_lex_state = 5}, - [3225] = {.lex_state = 149, .external_lex_state = 5}, - [3226] = {.lex_state = 149, .external_lex_state = 5}, - [3227] = {.lex_state = 14, .external_lex_state = 6}, - [3228] = {.lex_state = 149, .external_lex_state = 5}, - [3229] = {.lex_state = 149, .external_lex_state = 5}, - [3230] = {.lex_state = 23, .external_lex_state = 7}, - [3231] = {.lex_state = 149, .external_lex_state = 5}, - [3232] = {.lex_state = 14, .external_lex_state = 6}, - [3233] = {.lex_state = 14, .external_lex_state = 6}, - [3234] = {.lex_state = 149, .external_lex_state = 5}, - [3235] = {.lex_state = 14, .external_lex_state = 6}, - [3236] = {.lex_state = 12, .external_lex_state = 2}, - [3237] = {.lex_state = 12, .external_lex_state = 5}, - [3238] = {.lex_state = 14, .external_lex_state = 6}, - [3239] = {.lex_state = 14, .external_lex_state = 6}, - [3240] = {.lex_state = 14, .external_lex_state = 6}, - [3241] = {.lex_state = 149, .external_lex_state = 2}, - [3242] = {.lex_state = 149, .external_lex_state = 6}, - [3243] = {.lex_state = 149, .external_lex_state = 6}, - [3244] = {.lex_state = 149, .external_lex_state = 6}, - [3245] = {.lex_state = 149, .external_lex_state = 6}, - [3246] = {.lex_state = 149, .external_lex_state = 6}, - [3247] = {.lex_state = 149, .external_lex_state = 6}, - [3248] = {.lex_state = 14, .external_lex_state = 6}, - [3249] = {.lex_state = 149, .external_lex_state = 5}, - [3250] = {.lex_state = 149, .external_lex_state = 5}, - [3251] = {.lex_state = 149, .external_lex_state = 5}, - [3252] = {.lex_state = 149, .external_lex_state = 5}, - [3253] = {.lex_state = 13, .external_lex_state = 6}, - [3254] = {.lex_state = 149, .external_lex_state = 5}, - [3255] = {.lex_state = 149, .external_lex_state = 5}, - [3256] = {.lex_state = 149, .external_lex_state = 5}, - [3257] = {.lex_state = 149, .external_lex_state = 5}, - [3258] = {.lex_state = 149, .external_lex_state = 5}, - [3259] = {.lex_state = 149, .external_lex_state = 5}, - [3260] = {.lex_state = 149, .external_lex_state = 5}, - [3261] = {.lex_state = 149, .external_lex_state = 5}, - [3262] = {.lex_state = 149, .external_lex_state = 5}, - [3263] = {.lex_state = 23, .external_lex_state = 7}, - [3264] = {.lex_state = 149, .external_lex_state = 2}, - [3265] = {.lex_state = 149, .external_lex_state = 6}, - [3266] = {.lex_state = 13, .external_lex_state = 2}, - [3267] = {.lex_state = 23, .external_lex_state = 7}, - [3268] = {.lex_state = 13, .external_lex_state = 2}, - [3269] = {.lex_state = 13, .external_lex_state = 2}, - [3270] = {.lex_state = 25, .external_lex_state = 2}, - [3271] = {.lex_state = 149, .external_lex_state = 6}, - [3272] = {.lex_state = 13, .external_lex_state = 2}, - [3273] = {.lex_state = 12, .external_lex_state = 2}, - [3274] = {.lex_state = 149, .external_lex_state = 6}, - [3275] = {.lex_state = 149, .external_lex_state = 2}, - [3276] = {.lex_state = 149, .external_lex_state = 5}, - [3277] = {.lex_state = 12, .external_lex_state = 5}, - [3278] = {.lex_state = 25, .external_lex_state = 2}, - [3279] = {.lex_state = 13, .external_lex_state = 2}, - [3280] = {.lex_state = 25, .external_lex_state = 2}, - [3281] = {.lex_state = 13, .external_lex_state = 2}, - [3282] = {.lex_state = 149, .external_lex_state = 6}, - [3283] = {.lex_state = 149, .external_lex_state = 5}, - [3284] = {.lex_state = 149, .external_lex_state = 5}, - [3285] = {.lex_state = 13, .external_lex_state = 2}, - [3286] = {.lex_state = 149, .external_lex_state = 2}, - [3287] = {.lex_state = 13, .external_lex_state = 2}, - [3288] = {.lex_state = 13, .external_lex_state = 2}, - [3289] = {.lex_state = 149, .external_lex_state = 6}, - [3290] = {.lex_state = 13, .external_lex_state = 2}, - [3291] = {.lex_state = 13, .external_lex_state = 2}, - [3292] = {.lex_state = 149, .external_lex_state = 6}, - [3293] = {.lex_state = 149, .external_lex_state = 2}, - [3294] = {.lex_state = 149, .external_lex_state = 6}, - [3295] = {.lex_state = 25, .external_lex_state = 2}, - [3296] = {.lex_state = 149, .external_lex_state = 6}, - [3297] = {.lex_state = 149, .external_lex_state = 5}, - [3298] = {.lex_state = 149, .external_lex_state = 5}, - [3299] = {.lex_state = 149, .external_lex_state = 2}, - [3300] = {.lex_state = 149, .external_lex_state = 6}, - [3301] = {.lex_state = 149, .external_lex_state = 5}, - [3302] = {.lex_state = 149, .external_lex_state = 5}, - [3303] = {.lex_state = 149, .external_lex_state = 5}, - [3304] = {.lex_state = 149, .external_lex_state = 5}, - [3305] = {.lex_state = 149, .external_lex_state = 5}, - [3306] = {.lex_state = 13, .external_lex_state = 2}, - [3307] = {.lex_state = 13, .external_lex_state = 2}, - [3308] = {.lex_state = 149, .external_lex_state = 5}, - [3309] = {.lex_state = 149, .external_lex_state = 5}, - [3310] = {.lex_state = 25, .external_lex_state = 2}, - [3311] = {.lex_state = 13, .external_lex_state = 2}, - [3312] = {.lex_state = 149, .external_lex_state = 5}, - [3313] = {.lex_state = 13, .external_lex_state = 2}, - [3314] = {.lex_state = 25, .external_lex_state = 2}, - [3315] = {.lex_state = 25, .external_lex_state = 2}, - [3316] = {.lex_state = 13, .external_lex_state = 2}, - [3317] = {.lex_state = 12, .external_lex_state = 2}, - [3318] = {.lex_state = 149, .external_lex_state = 5}, - [3319] = {.lex_state = 25, .external_lex_state = 2}, - [3320] = {.lex_state = 149, .external_lex_state = 5}, - [3321] = {.lex_state = 149, .external_lex_state = 6}, - [3322] = {.lex_state = 25, .external_lex_state = 2}, - [3323] = {.lex_state = 25, .external_lex_state = 2}, - [3324] = {.lex_state = 149, .external_lex_state = 5}, - [3325] = {.lex_state = 25, .external_lex_state = 2}, - [3326] = {.lex_state = 149, .external_lex_state = 5}, - [3327] = {.lex_state = 25, .external_lex_state = 2}, - [3328] = {.lex_state = 149, .external_lex_state = 2}, - [3329] = {.lex_state = 149, .external_lex_state = 6}, - [3330] = {.lex_state = 149, .external_lex_state = 6}, - [3331] = {.lex_state = 25, .external_lex_state = 2}, - [3332] = {.lex_state = 25, .external_lex_state = 2}, - [3333] = {.lex_state = 25, .external_lex_state = 2}, - [3334] = {.lex_state = 149, .external_lex_state = 5}, - [3335] = {.lex_state = 149, .external_lex_state = 6}, - [3336] = {.lex_state = 25, .external_lex_state = 2}, - [3337] = {.lex_state = 13, .external_lex_state = 2}, - [3338] = {.lex_state = 25, .external_lex_state = 2}, - [3339] = {.lex_state = 149, .external_lex_state = 6}, - [3340] = {.lex_state = 149, .external_lex_state = 2}, - [3341] = {.lex_state = 149, .external_lex_state = 6}, - [3342] = {.lex_state = 149, .external_lex_state = 6}, - [3343] = {.lex_state = 149, .external_lex_state = 5}, - [3344] = {.lex_state = 13, .external_lex_state = 2}, - [3345] = {.lex_state = 149, .external_lex_state = 5}, - [3346] = {.lex_state = 149, .external_lex_state = 5}, - [3347] = {.lex_state = 149, .external_lex_state = 6}, - [3348] = {.lex_state = 149, .external_lex_state = 2}, - [3349] = {.lex_state = 25, .external_lex_state = 2}, - [3350] = {.lex_state = 25, .external_lex_state = 2}, - [3351] = {.lex_state = 12, .external_lex_state = 2}, - [3352] = {.lex_state = 149, .external_lex_state = 6}, - [3353] = {.lex_state = 149, .external_lex_state = 6}, - [3354] = {.lex_state = 149, .external_lex_state = 5}, - [3355] = {.lex_state = 149, .external_lex_state = 5}, - [3356] = {.lex_state = 149, .external_lex_state = 5}, - [3357] = {.lex_state = 149, .external_lex_state = 5}, - [3358] = {.lex_state = 149, .external_lex_state = 5}, - [3359] = {.lex_state = 25, .external_lex_state = 2}, - [3360] = {.lex_state = 25, .external_lex_state = 2}, - [3361] = {.lex_state = 25, .external_lex_state = 2}, - [3362] = {.lex_state = 25, .external_lex_state = 2}, - [3363] = {.lex_state = 25, .external_lex_state = 2}, - [3364] = {.lex_state = 149, .external_lex_state = 5}, - [3365] = {.lex_state = 25, .external_lex_state = 2}, - [3366] = {.lex_state = 149, .external_lex_state = 5}, - [3367] = {.lex_state = 149, .external_lex_state = 5}, - [3368] = {.lex_state = 13, .external_lex_state = 2}, - [3369] = {.lex_state = 149, .external_lex_state = 6}, - [3370] = {.lex_state = 25, .external_lex_state = 2}, - [3371] = {.lex_state = 149, .external_lex_state = 6}, - [3372] = {.lex_state = 13, .external_lex_state = 2}, - [3373] = {.lex_state = 25, .external_lex_state = 2}, - [3374] = {.lex_state = 13, .external_lex_state = 2}, - [3375] = {.lex_state = 149, .external_lex_state = 5}, - [3376] = {.lex_state = 149, .external_lex_state = 6}, - [3377] = {.lex_state = 13, .external_lex_state = 2}, - [3378] = {.lex_state = 13, .external_lex_state = 2}, - [3379] = {.lex_state = 149, .external_lex_state = 2}, - [3380] = {.lex_state = 149, .external_lex_state = 5}, - [3381] = {.lex_state = 149, .external_lex_state = 5}, - [3382] = {.lex_state = 149, .external_lex_state = 6}, - [3383] = {.lex_state = 149, .external_lex_state = 5}, - [3384] = {.lex_state = 13, .external_lex_state = 2}, - [3385] = {.lex_state = 149, .external_lex_state = 6}, - [3386] = {.lex_state = 149, .external_lex_state = 5}, - [3387] = {.lex_state = 149, .external_lex_state = 6}, - [3388] = {.lex_state = 149, .external_lex_state = 5}, - [3389] = {.lex_state = 149, .external_lex_state = 6}, - [3390] = {.lex_state = 149, .external_lex_state = 6}, - [3391] = {.lex_state = 149, .external_lex_state = 6}, - [3392] = {.lex_state = 149, .external_lex_state = 6}, - [3393] = {.lex_state = 149, .external_lex_state = 6}, - [3394] = {.lex_state = 149, .external_lex_state = 6}, - [3395] = {.lex_state = 149, .external_lex_state = 6}, - [3396] = {.lex_state = 13, .external_lex_state = 2}, - [3397] = {.lex_state = 13, .external_lex_state = 2}, - [3398] = {.lex_state = 149, .external_lex_state = 5}, - [3399] = {.lex_state = 149, .external_lex_state = 2}, - [3400] = {.lex_state = 149, .external_lex_state = 5}, - [3401] = {.lex_state = 25, .external_lex_state = 2}, - [3402] = {.lex_state = 149, .external_lex_state = 6}, - [3403] = {.lex_state = 25, .external_lex_state = 2}, - [3404] = {.lex_state = 25, .external_lex_state = 2}, - [3405] = {.lex_state = 13, .external_lex_state = 2}, - [3406] = {.lex_state = 149, .external_lex_state = 6}, - [3407] = {.lex_state = 25, .external_lex_state = 2}, - [3408] = {.lex_state = 149, .external_lex_state = 5}, - [3409] = {.lex_state = 149, .external_lex_state = 6}, - [3410] = {.lex_state = 149, .external_lex_state = 2}, - [3411] = {.lex_state = 149, .external_lex_state = 5}, - [3412] = {.lex_state = 149, .external_lex_state = 6}, - [3413] = {.lex_state = 149, .external_lex_state = 5}, - [3414] = {.lex_state = 149, .external_lex_state = 5}, - [3415] = {.lex_state = 149, .external_lex_state = 5}, - [3416] = {.lex_state = 149, .external_lex_state = 6}, - [3417] = {.lex_state = 149, .external_lex_state = 6}, - [3418] = {.lex_state = 149, .external_lex_state = 6}, - [3419] = {.lex_state = 149, .external_lex_state = 5}, - [3420] = {.lex_state = 149, .external_lex_state = 5}, - [3421] = {.lex_state = 149, .external_lex_state = 6}, - [3422] = {.lex_state = 149, .external_lex_state = 5}, - [3423] = {.lex_state = 149, .external_lex_state = 5}, - [3424] = {.lex_state = 149, .external_lex_state = 5}, - [3425] = {.lex_state = 149, .external_lex_state = 5}, - [3426] = {.lex_state = 149, .external_lex_state = 6}, - [3427] = {.lex_state = 149, .external_lex_state = 6}, - [3428] = {.lex_state = 149, .external_lex_state = 6}, - [3429] = {.lex_state = 13, .external_lex_state = 2}, - [3430] = {.lex_state = 13, .external_lex_state = 2}, - [3431] = {.lex_state = 25, .external_lex_state = 2}, - [3432] = {.lex_state = 25, .external_lex_state = 2}, - [3433] = {.lex_state = 149, .external_lex_state = 6}, - [3434] = {.lex_state = 149, .external_lex_state = 6}, - [3435] = {.lex_state = 149, .external_lex_state = 6}, - [3436] = {.lex_state = 25, .external_lex_state = 2}, - [3437] = {.lex_state = 25, .external_lex_state = 2}, - [3438] = {.lex_state = 149, .external_lex_state = 6}, - [3439] = {.lex_state = 149, .external_lex_state = 5}, - [3440] = {.lex_state = 149, .external_lex_state = 6}, - [3441] = {.lex_state = 25, .external_lex_state = 2}, - [3442] = {.lex_state = 149, .external_lex_state = 5}, - [3443] = {.lex_state = 149, .external_lex_state = 5}, - [3444] = {.lex_state = 25, .external_lex_state = 2}, - [3445] = {.lex_state = 149, .external_lex_state = 5}, - [3446] = {.lex_state = 13, .external_lex_state = 2}, - [3447] = {.lex_state = 149, .external_lex_state = 5}, - [3448] = {.lex_state = 25, .external_lex_state = 2}, - [3449] = {.lex_state = 13, .external_lex_state = 2}, - [3450] = {.lex_state = 149, .external_lex_state = 2}, - [3451] = {.lex_state = 149, .external_lex_state = 6}, - [3452] = {.lex_state = 149, .external_lex_state = 6}, - [3453] = {.lex_state = 12, .external_lex_state = 2}, - [3454] = {.lex_state = 12, .external_lex_state = 2}, - [3455] = {.lex_state = 149, .external_lex_state = 6}, - [3456] = {.lex_state = 149, .external_lex_state = 6}, - [3457] = {.lex_state = 149, .external_lex_state = 6}, - [3458] = {.lex_state = 149, .external_lex_state = 6}, - [3459] = {.lex_state = 149, .external_lex_state = 6}, - [3460] = {.lex_state = 149, .external_lex_state = 6}, - [3461] = {.lex_state = 149, .external_lex_state = 6}, - [3462] = {.lex_state = 12, .external_lex_state = 2}, - [3463] = {.lex_state = 25, .external_lex_state = 2}, - [3464] = {.lex_state = 25, .external_lex_state = 2}, - [3465] = {.lex_state = 25, .external_lex_state = 2}, - [3466] = {.lex_state = 149, .external_lex_state = 6}, - [3467] = {.lex_state = 149, .external_lex_state = 6}, - [3468] = {.lex_state = 149, .external_lex_state = 2}, - [3469] = {.lex_state = 149, .external_lex_state = 2}, - [3470] = {.lex_state = 12, .external_lex_state = 2}, - [3471] = {.lex_state = 149, .external_lex_state = 6}, - [3472] = {.lex_state = 149, .external_lex_state = 6}, - [3473] = {.lex_state = 149, .external_lex_state = 6}, - [3474] = {.lex_state = 149, .external_lex_state = 5}, - [3475] = {.lex_state = 149, .external_lex_state = 6}, - [3476] = {.lex_state = 149, .external_lex_state = 2}, - [3477] = {.lex_state = 149, .external_lex_state = 5}, - [3478] = {.lex_state = 12, .external_lex_state = 2}, - [3479] = {.lex_state = 149, .external_lex_state = 5}, - [3480] = {.lex_state = 13, .external_lex_state = 2}, - [3481] = {.lex_state = 149, .external_lex_state = 6}, - [3482] = {.lex_state = 25, .external_lex_state = 2}, - [3483] = {.lex_state = 25, .external_lex_state = 2}, - [3484] = {.lex_state = 23, .external_lex_state = 8}, - [3485] = {.lex_state = 149, .external_lex_state = 2}, - [3486] = {.lex_state = 14, .external_lex_state = 2}, - [3487] = {.lex_state = 23, .external_lex_state = 8}, - [3488] = {.lex_state = 149, .external_lex_state = 5}, - [3489] = {.lex_state = 149, .external_lex_state = 5}, - [3490] = {.lex_state = 16, .external_lex_state = 2}, - [3491] = {.lex_state = 149, .external_lex_state = 2}, - [3492] = {.lex_state = 23, .external_lex_state = 8}, - [3493] = {.lex_state = 23, .external_lex_state = 8}, - [3494] = {.lex_state = 149, .external_lex_state = 5}, - [3495] = {.lex_state = 16, .external_lex_state = 2}, - [3496] = {.lex_state = 23, .external_lex_state = 8}, - [3497] = {.lex_state = 149, .external_lex_state = 5}, - [3498] = {.lex_state = 149, .external_lex_state = 2}, - [3499] = {.lex_state = 149, .external_lex_state = 2}, - [3500] = {.lex_state = 149, .external_lex_state = 2}, - [3501] = {.lex_state = 149, .external_lex_state = 2}, - [3502] = {.lex_state = 14, .external_lex_state = 2}, - [3503] = {.lex_state = 25, .external_lex_state = 2}, - [3504] = {.lex_state = 149, .external_lex_state = 2}, - [3505] = {.lex_state = 149, .external_lex_state = 5}, - [3506] = {.lex_state = 149, .external_lex_state = 2}, - [3507] = {.lex_state = 149, .external_lex_state = 6}, - [3508] = {.lex_state = 149, .external_lex_state = 2}, - [3509] = {.lex_state = 14, .external_lex_state = 2}, - [3510] = {.lex_state = 149, .external_lex_state = 2}, - [3511] = {.lex_state = 23, .external_lex_state = 8}, - [3512] = {.lex_state = 149, .external_lex_state = 2}, - [3513] = {.lex_state = 149, .external_lex_state = 2}, - [3514] = {.lex_state = 23, .external_lex_state = 8}, - [3515] = {.lex_state = 25, .external_lex_state = 2}, - [3516] = {.lex_state = 25, .external_lex_state = 2}, - [3517] = {.lex_state = 25, .external_lex_state = 2}, - [3518] = {.lex_state = 149, .external_lex_state = 2}, - [3519] = {.lex_state = 149, .external_lex_state = 5}, - [3520] = {.lex_state = 25, .external_lex_state = 2}, - [3521] = {.lex_state = 23, .external_lex_state = 8}, - [3522] = {.lex_state = 25, .external_lex_state = 2}, - [3523] = {.lex_state = 25, .external_lex_state = 2}, - [3524] = {.lex_state = 25, .external_lex_state = 2}, - [3525] = {.lex_state = 25, .external_lex_state = 2}, - [3526] = {.lex_state = 149, .external_lex_state = 5}, - [3527] = {.lex_state = 149, .external_lex_state = 5}, - [3528] = {.lex_state = 12, .external_lex_state = 2}, - [3529] = {.lex_state = 149, .external_lex_state = 5}, - [3530] = {.lex_state = 149, .external_lex_state = 5}, - [3531] = {.lex_state = 149, .external_lex_state = 5}, - [3532] = {.lex_state = 149, .external_lex_state = 2}, - [3533] = {.lex_state = 149, .external_lex_state = 5}, - [3534] = {.lex_state = 149, .external_lex_state = 2}, - [3535] = {.lex_state = 149, .external_lex_state = 5}, - [3536] = {.lex_state = 149, .external_lex_state = 2}, - [3537] = {.lex_state = 149, .external_lex_state = 2}, - [3538] = {.lex_state = 149, .external_lex_state = 5}, - [3539] = {.lex_state = 149, .external_lex_state = 5}, - [3540] = {.lex_state = 25, .external_lex_state = 2}, - [3541] = {.lex_state = 149, .external_lex_state = 5}, - [3542] = {.lex_state = 149, .external_lex_state = 5}, - [3543] = {.lex_state = 149, .external_lex_state = 5}, - [3544] = {.lex_state = 149, .external_lex_state = 2}, - [3545] = {.lex_state = 149, .external_lex_state = 2}, - [3546] = {.lex_state = 149, .external_lex_state = 2}, - [3547] = {.lex_state = 149, .external_lex_state = 5}, - [3548] = {.lex_state = 12, .external_lex_state = 2}, - [3549] = {.lex_state = 149, .external_lex_state = 5}, - [3550] = {.lex_state = 149, .external_lex_state = 5}, - [3551] = {.lex_state = 149, .external_lex_state = 5}, - [3552] = {.lex_state = 15, .external_lex_state = 2}, - [3553] = {.lex_state = 149, .external_lex_state = 5}, - [3554] = {.lex_state = 149, .external_lex_state = 2}, - [3555] = {.lex_state = 149, .external_lex_state = 5}, - [3556] = {.lex_state = 149, .external_lex_state = 5}, - [3557] = {.lex_state = 149, .external_lex_state = 5}, - [3558] = {.lex_state = 149, .external_lex_state = 5}, - [3559] = {.lex_state = 12, .external_lex_state = 2}, - [3560] = {.lex_state = 149, .external_lex_state = 5}, - [3561] = {.lex_state = 149, .external_lex_state = 5}, - [3562] = {.lex_state = 149, .external_lex_state = 5}, - [3563] = {.lex_state = 149, .external_lex_state = 5}, - [3564] = {.lex_state = 149, .external_lex_state = 5}, - [3565] = {.lex_state = 149, .external_lex_state = 2}, - [3566] = {.lex_state = 149, .external_lex_state = 5}, - [3567] = {.lex_state = 15, .external_lex_state = 2}, - [3568] = {.lex_state = 149, .external_lex_state = 5}, - [3569] = {.lex_state = 12, .external_lex_state = 2}, - [3570] = {.lex_state = 149, .external_lex_state = 5}, - [3571] = {.lex_state = 149, .external_lex_state = 5}, - [3572] = {.lex_state = 149, .external_lex_state = 5}, - [3573] = {.lex_state = 149, .external_lex_state = 5}, - [3574] = {.lex_state = 149, .external_lex_state = 5}, - [3575] = {.lex_state = 149, .external_lex_state = 5}, - [3576] = {.lex_state = 149, .external_lex_state = 5}, - [3577] = {.lex_state = 149, .external_lex_state = 5}, - [3578] = {.lex_state = 149, .external_lex_state = 5}, - [3579] = {.lex_state = 15, .external_lex_state = 2}, - [3580] = {.lex_state = 149, .external_lex_state = 5}, - [3581] = {.lex_state = 149, .external_lex_state = 5}, - [3582] = {.lex_state = 149, .external_lex_state = 5}, - [3583] = {.lex_state = 149, .external_lex_state = 5}, - [3584] = {.lex_state = 149, .external_lex_state = 5}, - [3585] = {.lex_state = 149, .external_lex_state = 5}, - [3586] = {.lex_state = 149, .external_lex_state = 5}, - [3587] = {.lex_state = 149, .external_lex_state = 5}, - [3588] = {.lex_state = 149, .external_lex_state = 5}, - [3589] = {.lex_state = 149, .external_lex_state = 5}, - [3590] = {.lex_state = 149, .external_lex_state = 5}, - [3591] = {.lex_state = 149, .external_lex_state = 5}, - [3592] = {.lex_state = 15, .external_lex_state = 2}, - [3593] = {.lex_state = 149, .external_lex_state = 5}, - [3594] = {.lex_state = 149, .external_lex_state = 2}, - [3595] = {.lex_state = 149, .external_lex_state = 2}, - [3596] = {.lex_state = 149, .external_lex_state = 2}, - [3597] = {.lex_state = 149, .external_lex_state = 5}, - [3598] = {.lex_state = 149, .external_lex_state = 5}, - [3599] = {.lex_state = 149, .external_lex_state = 5}, - [3600] = {.lex_state = 149, .external_lex_state = 5}, - [3601] = {.lex_state = 149, .external_lex_state = 5}, - [3602] = {.lex_state = 149, .external_lex_state = 5}, - [3603] = {.lex_state = 15, .external_lex_state = 2}, - [3604] = {.lex_state = 149, .external_lex_state = 5}, - [3605] = {.lex_state = 149, .external_lex_state = 5}, - [3606] = {.lex_state = 149, .external_lex_state = 2}, - [3607] = {.lex_state = 12, .external_lex_state = 2}, - [3608] = {.lex_state = 149, .external_lex_state = 5}, - [3609] = {.lex_state = 149, .external_lex_state = 5}, - [3610] = {.lex_state = 149, .external_lex_state = 2}, - [3611] = {.lex_state = 149, .external_lex_state = 2}, - [3612] = {.lex_state = 149, .external_lex_state = 2}, - [3613] = {.lex_state = 15, .external_lex_state = 2}, - [3614] = {.lex_state = 149, .external_lex_state = 5}, - [3615] = {.lex_state = 149, .external_lex_state = 5}, - [3616] = {.lex_state = 149, .external_lex_state = 2}, - [3617] = {.lex_state = 149, .external_lex_state = 5}, - [3618] = {.lex_state = 149, .external_lex_state = 5}, - [3619] = {.lex_state = 149, .external_lex_state = 5}, - [3620] = {.lex_state = 149, .external_lex_state = 2}, - [3621] = {.lex_state = 149, .external_lex_state = 2}, - [3622] = {.lex_state = 149, .external_lex_state = 2}, - [3623] = {.lex_state = 149, .external_lex_state = 2}, - [3624] = {.lex_state = 149, .external_lex_state = 2}, - [3625] = {.lex_state = 149, .external_lex_state = 2}, - [3626] = {.lex_state = 149, .external_lex_state = 2}, - [3627] = {.lex_state = 149, .external_lex_state = 2}, - [3628] = {.lex_state = 149, .external_lex_state = 5}, - [3629] = {.lex_state = 149, .external_lex_state = 5}, - [3630] = {.lex_state = 149, .external_lex_state = 2}, - [3631] = {.lex_state = 149, .external_lex_state = 5}, - [3632] = {.lex_state = 149, .external_lex_state = 2}, - [3633] = {.lex_state = 149, .external_lex_state = 5}, - [3634] = {.lex_state = 149, .external_lex_state = 2}, - [3635] = {.lex_state = 149, .external_lex_state = 5}, - [3636] = {.lex_state = 149, .external_lex_state = 5}, - [3637] = {.lex_state = 149, .external_lex_state = 5}, - [3638] = {.lex_state = 149, .external_lex_state = 5}, - [3639] = {.lex_state = 12, .external_lex_state = 2}, - [3640] = {.lex_state = 12, .external_lex_state = 2}, - [3641] = {.lex_state = 149, .external_lex_state = 5}, - [3642] = {.lex_state = 149, .external_lex_state = 5}, - [3643] = {.lex_state = 149, .external_lex_state = 2}, - [3644] = {.lex_state = 149, .external_lex_state = 5}, - [3645] = {.lex_state = 149, .external_lex_state = 2}, - [3646] = {.lex_state = 12, .external_lex_state = 2}, - [3647] = {.lex_state = 149, .external_lex_state = 5}, - [3648] = {.lex_state = 15, .external_lex_state = 2}, - [3649] = {.lex_state = 149, .external_lex_state = 2}, - [3650] = {.lex_state = 149, .external_lex_state = 5}, - [3651] = {.lex_state = 149, .external_lex_state = 5}, - [3652] = {.lex_state = 12, .external_lex_state = 2}, - [3653] = {.lex_state = 12, .external_lex_state = 2}, - [3654] = {.lex_state = 149, .external_lex_state = 2}, - [3655] = {.lex_state = 149, .external_lex_state = 5}, - [3656] = {.lex_state = 149, .external_lex_state = 5}, - [3657] = {.lex_state = 149, .external_lex_state = 5}, - [3658] = {.lex_state = 149, .external_lex_state = 2}, - [3659] = {.lex_state = 15, .external_lex_state = 2}, - [3660] = {.lex_state = 149, .external_lex_state = 5}, - [3661] = {.lex_state = 149, .external_lex_state = 5}, - [3662] = {.lex_state = 149, .external_lex_state = 2}, - [3663] = {.lex_state = 149, .external_lex_state = 2}, - [3664] = {.lex_state = 149, .external_lex_state = 2}, - [3665] = {.lex_state = 149, .external_lex_state = 5}, - [3666] = {.lex_state = 149, .external_lex_state = 2}, - [3667] = {.lex_state = 149, .external_lex_state = 2}, - [3668] = {.lex_state = 149, .external_lex_state = 2}, - [3669] = {.lex_state = 149, .external_lex_state = 2}, - [3670] = {.lex_state = 15, .external_lex_state = 2}, - [3671] = {.lex_state = 149, .external_lex_state = 5}, - [3672] = {.lex_state = 149, .external_lex_state = 5}, - [3673] = {.lex_state = 149, .external_lex_state = 2}, - [3674] = {.lex_state = 149, .external_lex_state = 2}, - [3675] = {.lex_state = 149, .external_lex_state = 2}, - [3676] = {.lex_state = 149, .external_lex_state = 2}, - [3677] = {.lex_state = 149, .external_lex_state = 5}, - [3678] = {.lex_state = 149, .external_lex_state = 5}, - [3679] = {.lex_state = 12, .external_lex_state = 2}, - [3680] = {.lex_state = 149, .external_lex_state = 5}, - [3681] = {.lex_state = 12, .external_lex_state = 2}, - [3682] = {.lex_state = 12, .external_lex_state = 2}, - [3683] = {.lex_state = 149, .external_lex_state = 5}, - [3684] = {.lex_state = 149, .external_lex_state = 5}, - [3685] = {.lex_state = 149, .external_lex_state = 5}, - [3686] = {.lex_state = 149, .external_lex_state = 5}, - [3687] = {.lex_state = 149, .external_lex_state = 5}, - [3688] = {.lex_state = 149, .external_lex_state = 5}, - [3689] = {.lex_state = 149, .external_lex_state = 5}, - [3690] = {.lex_state = 149, .external_lex_state = 2}, - [3691] = {.lex_state = 149, .external_lex_state = 5}, - [3692] = {.lex_state = 149, .external_lex_state = 5}, - [3693] = {.lex_state = 149, .external_lex_state = 5}, - [3694] = {.lex_state = 149, .external_lex_state = 5}, - [3695] = {.lex_state = 149, .external_lex_state = 5}, - [3696] = {.lex_state = 149, .external_lex_state = 5}, - [3697] = {.lex_state = 149, .external_lex_state = 2}, - [3698] = {.lex_state = 149, .external_lex_state = 2}, - [3699] = {.lex_state = 149, .external_lex_state = 5}, - [3700] = {.lex_state = 149, .external_lex_state = 5}, - [3701] = {.lex_state = 149, .external_lex_state = 5}, - [3702] = {.lex_state = 149, .external_lex_state = 5}, - [3703] = {.lex_state = 149, .external_lex_state = 5}, - [3704] = {.lex_state = 149, .external_lex_state = 5}, - [3705] = {.lex_state = 149, .external_lex_state = 5}, - [3706] = {.lex_state = 149, .external_lex_state = 5}, - [3707] = {.lex_state = 149, .external_lex_state = 2}, - [3708] = {.lex_state = 149, .external_lex_state = 5}, - [3709] = {.lex_state = 149, .external_lex_state = 5}, - [3710] = {.lex_state = 149, .external_lex_state = 5}, - [3711] = {.lex_state = 149, .external_lex_state = 2}, - [3712] = {.lex_state = 149, .external_lex_state = 5}, - [3713] = {.lex_state = 149, .external_lex_state = 5}, - [3714] = {.lex_state = 15, .external_lex_state = 2}, - [3715] = {.lex_state = 149, .external_lex_state = 2}, - [3716] = {.lex_state = 149, .external_lex_state = 2}, - [3717] = {.lex_state = 149, .external_lex_state = 2}, - [3718] = {.lex_state = 12, .external_lex_state = 2}, - [3719] = {.lex_state = 149, .external_lex_state = 5}, - [3720] = {.lex_state = 15, .external_lex_state = 2}, - [3721] = {.lex_state = 149, .external_lex_state = 5}, - [3722] = {.lex_state = 12, .external_lex_state = 2}, - [3723] = {.lex_state = 149, .external_lex_state = 5}, - [3724] = {.lex_state = 149, .external_lex_state = 5}, - [3725] = {.lex_state = 12, .external_lex_state = 2}, - [3726] = {.lex_state = 149, .external_lex_state = 5}, - [3727] = {.lex_state = 149, .external_lex_state = 5}, - [3728] = {.lex_state = 149, .external_lex_state = 5}, - [3729] = {.lex_state = 149, .external_lex_state = 5}, - [3730] = {.lex_state = 149, .external_lex_state = 2}, - [3731] = {.lex_state = 149, .external_lex_state = 5}, - [3732] = {.lex_state = 12, .external_lex_state = 2}, - [3733] = {.lex_state = 149, .external_lex_state = 5}, - [3734] = {.lex_state = 149, .external_lex_state = 2}, - [3735] = {.lex_state = 149, .external_lex_state = 5}, - [3736] = {.lex_state = 149, .external_lex_state = 5}, - [3737] = {.lex_state = 149, .external_lex_state = 5}, - [3738] = {.lex_state = 149, .external_lex_state = 5}, - [3739] = {.lex_state = 149, .external_lex_state = 5}, - [3740] = {.lex_state = 149, .external_lex_state = 2}, - [3741] = {.lex_state = 149, .external_lex_state = 5}, - [3742] = {.lex_state = 12, .external_lex_state = 2}, - [3743] = {.lex_state = 149, .external_lex_state = 5}, - [3744] = {.lex_state = 149, .external_lex_state = 5}, - [3745] = {.lex_state = 149, .external_lex_state = 2}, - [3746] = {.lex_state = 12, .external_lex_state = 2}, - [3747] = {.lex_state = 149, .external_lex_state = 5}, - [3748] = {.lex_state = 149, .external_lex_state = 5}, - [3749] = {.lex_state = 149, .external_lex_state = 5}, - [3750] = {.lex_state = 149, .external_lex_state = 5}, - [3751] = {.lex_state = 15, .external_lex_state = 2}, - [3752] = {.lex_state = 149, .external_lex_state = 5}, - [3753] = {.lex_state = 15, .external_lex_state = 2}, - [3754] = {.lex_state = 149, .external_lex_state = 5}, - [3755] = {.lex_state = 149, .external_lex_state = 5}, - [3756] = {.lex_state = 149, .external_lex_state = 5}, - [3757] = {.lex_state = 149, .external_lex_state = 5}, - [3758] = {.lex_state = 149, .external_lex_state = 5}, - [3759] = {.lex_state = 15, .external_lex_state = 2}, - [3760] = {.lex_state = 15, .external_lex_state = 2}, - [3761] = {.lex_state = 149, .external_lex_state = 5}, - [3762] = {.lex_state = 12, .external_lex_state = 2}, - [3763] = {.lex_state = 149, .external_lex_state = 5}, - [3764] = {.lex_state = 149, .external_lex_state = 5}, - [3765] = {.lex_state = 149, .external_lex_state = 2}, - [3766] = {.lex_state = 149, .external_lex_state = 5}, - [3767] = {.lex_state = 149, .external_lex_state = 5}, - [3768] = {.lex_state = 149, .external_lex_state = 5}, - [3769] = {.lex_state = 149, .external_lex_state = 5}, - [3770] = {.lex_state = 149, .external_lex_state = 5}, - [3771] = {.lex_state = 15, .external_lex_state = 2}, - [3772] = {.lex_state = 12, .external_lex_state = 2}, - [3773] = {.lex_state = 149, .external_lex_state = 2}, - [3774] = {.lex_state = 25, .external_lex_state = 2}, - [3775] = {.lex_state = 12, .external_lex_state = 2}, - [3776] = {.lex_state = 149, .external_lex_state = 2}, - [3777] = {.lex_state = 12, .external_lex_state = 2}, - [3778] = {.lex_state = 12, .external_lex_state = 2}, - [3779] = {.lex_state = 149, .external_lex_state = 5}, - [3780] = {.lex_state = 149, .external_lex_state = 6}, - [3781] = {.lex_state = 12, .external_lex_state = 2}, - [3782] = {.lex_state = 149, .external_lex_state = 2}, - [3783] = {.lex_state = 149, .external_lex_state = 2}, - [3784] = {.lex_state = 12, .external_lex_state = 2}, - [3785] = {.lex_state = 149, .external_lex_state = 6}, - [3786] = {.lex_state = 12, .external_lex_state = 2}, - [3787] = {.lex_state = 149, .external_lex_state = 5}, - [3788] = {.lex_state = 149, .external_lex_state = 6}, - [3789] = {.lex_state = 149, .external_lex_state = 6}, - [3790] = {.lex_state = 12, .external_lex_state = 2}, - [3791] = {.lex_state = 149, .external_lex_state = 5}, - [3792] = {.lex_state = 149, .external_lex_state = 6}, - [3793] = {.lex_state = 149, .external_lex_state = 2}, - [3794] = {.lex_state = 149, .external_lex_state = 6}, - [3795] = {.lex_state = 12, .external_lex_state = 2}, - [3796] = {.lex_state = 149, .external_lex_state = 5}, - [3797] = {.lex_state = 23, .external_lex_state = 8}, - [3798] = {.lex_state = 149, .external_lex_state = 2}, - [3799] = {.lex_state = 149, .external_lex_state = 2}, - [3800] = {.lex_state = 12, .external_lex_state = 2}, - [3801] = {.lex_state = 16, .external_lex_state = 2}, - [3802] = {.lex_state = 149, .external_lex_state = 2}, - [3803] = {.lex_state = 149, .external_lex_state = 2}, - [3804] = {.lex_state = 12, .external_lex_state = 2}, - [3805] = {.lex_state = 12, .external_lex_state = 2}, - [3806] = {.lex_state = 149, .external_lex_state = 2}, - [3807] = {.lex_state = 12, .external_lex_state = 2}, - [3808] = {.lex_state = 149, .external_lex_state = 2}, - [3809] = {.lex_state = 149, .external_lex_state = 2}, - [3810] = {.lex_state = 149, .external_lex_state = 2}, - [3811] = {.lex_state = 149, .external_lex_state = 6}, - [3812] = {.lex_state = 149, .external_lex_state = 2}, - [3813] = {.lex_state = 149, .external_lex_state = 2}, - [3814] = {.lex_state = 149, .external_lex_state = 6}, - [3815] = {.lex_state = 12, .external_lex_state = 2}, - [3816] = {.lex_state = 12, .external_lex_state = 2}, - [3817] = {.lex_state = 149, .external_lex_state = 2}, - [3818] = {.lex_state = 149, .external_lex_state = 5}, - [3819] = {.lex_state = 25, .external_lex_state = 2}, - [3820] = {.lex_state = 149, .external_lex_state = 2}, - [3821] = {.lex_state = 12, .external_lex_state = 2}, - [3822] = {.lex_state = 149, .external_lex_state = 2}, - [3823] = {.lex_state = 12, .external_lex_state = 2}, - [3824] = {.lex_state = 12, .external_lex_state = 2}, - [3825] = {.lex_state = 12, .external_lex_state = 2}, - [3826] = {.lex_state = 149, .external_lex_state = 5}, - [3827] = {.lex_state = 149, .external_lex_state = 6}, - [3828] = {.lex_state = 149, .external_lex_state = 5}, - [3829] = {.lex_state = 12, .external_lex_state = 2}, - [3830] = {.lex_state = 149, .external_lex_state = 2}, - [3831] = {.lex_state = 12, .external_lex_state = 2}, - [3832] = {.lex_state = 149, .external_lex_state = 2}, - [3833] = {.lex_state = 149, .external_lex_state = 2}, - [3834] = {.lex_state = 149, .external_lex_state = 2}, - [3835] = {.lex_state = 149, .external_lex_state = 6}, - [3836] = {.lex_state = 149, .external_lex_state = 5}, - [3837] = {.lex_state = 149, .external_lex_state = 5}, - [3838] = {.lex_state = 149, .external_lex_state = 5}, - [3839] = {.lex_state = 12, .external_lex_state = 2}, - [3840] = {.lex_state = 12, .external_lex_state = 2}, - [3841] = {.lex_state = 149, .external_lex_state = 2}, - [3842] = {.lex_state = 149, .external_lex_state = 5}, - [3843] = {.lex_state = 149, .external_lex_state = 6}, - [3844] = {.lex_state = 23, .external_lex_state = 8}, - [3845] = {.lex_state = 12, .external_lex_state = 2}, - [3846] = {.lex_state = 149, .external_lex_state = 2}, - [3847] = {.lex_state = 149, .external_lex_state = 2}, - [3848] = {.lex_state = 149, .external_lex_state = 2}, - [3849] = {.lex_state = 149, .external_lex_state = 2}, - [3850] = {.lex_state = 12, .external_lex_state = 2}, - [3851] = {.lex_state = 16, .external_lex_state = 2}, - [3852] = {.lex_state = 149, .external_lex_state = 5}, - [3853] = {.lex_state = 149, .external_lex_state = 5}, - [3854] = {.lex_state = 149, .external_lex_state = 5}, - [3855] = {.lex_state = 149, .external_lex_state = 6}, - [3856] = {.lex_state = 149, .external_lex_state = 5}, - [3857] = {.lex_state = 25, .external_lex_state = 2}, - [3858] = {.lex_state = 149, .external_lex_state = 2}, - [3859] = {.lex_state = 149, .external_lex_state = 6}, - [3860] = {.lex_state = 149, .external_lex_state = 6}, - [3861] = {.lex_state = 149, .external_lex_state = 2}, - [3862] = {.lex_state = 149, .external_lex_state = 6}, - [3863] = {.lex_state = 149, .external_lex_state = 2}, - [3864] = {.lex_state = 12, .external_lex_state = 2}, - [3865] = {.lex_state = 149, .external_lex_state = 5}, - [3866] = {.lex_state = 12, .external_lex_state = 2}, - [3867] = {.lex_state = 149, .external_lex_state = 5}, - [3868] = {.lex_state = 149, .external_lex_state = 5}, - [3869] = {.lex_state = 149, .external_lex_state = 6}, - [3870] = {.lex_state = 149, .external_lex_state = 2}, - [3871] = {.lex_state = 12, .external_lex_state = 2}, - [3872] = {.lex_state = 149, .external_lex_state = 5}, - [3873] = {.lex_state = 149, .external_lex_state = 2}, - [3874] = {.lex_state = 149, .external_lex_state = 5}, - [3875] = {.lex_state = 12, .external_lex_state = 2}, - [3876] = {.lex_state = 12, .external_lex_state = 2}, - [3877] = {.lex_state = 149, .external_lex_state = 2}, - [3878] = {.lex_state = 149, .external_lex_state = 2}, - [3879] = {.lex_state = 149, .external_lex_state = 2}, - [3880] = {.lex_state = 12, .external_lex_state = 2}, - [3881] = {.lex_state = 12, .external_lex_state = 2}, - [3882] = {.lex_state = 12, .external_lex_state = 2}, - [3883] = {.lex_state = 149, .external_lex_state = 2}, - [3884] = {.lex_state = 149, .external_lex_state = 2}, - [3885] = {.lex_state = 149, .external_lex_state = 5}, - [3886] = {.lex_state = 12, .external_lex_state = 2}, - [3887] = {.lex_state = 149, .external_lex_state = 5}, - [3888] = {.lex_state = 149, .external_lex_state = 6}, - [3889] = {.lex_state = 23, .external_lex_state = 8}, - [3890] = {.lex_state = 149, .external_lex_state = 6}, - [3891] = {.lex_state = 149, .external_lex_state = 5}, - [3892] = {.lex_state = 149, .external_lex_state = 2}, - [3893] = {.lex_state = 12, .external_lex_state = 2}, - [3894] = {.lex_state = 12, .external_lex_state = 2}, - [3895] = {.lex_state = 149, .external_lex_state = 2}, - [3896] = {.lex_state = 149, .external_lex_state = 6}, - [3897] = {.lex_state = 12, .external_lex_state = 2}, - [3898] = {.lex_state = 149, .external_lex_state = 2}, - [3899] = {.lex_state = 149, .external_lex_state = 6}, - [3900] = {.lex_state = 12, .external_lex_state = 2}, - [3901] = {.lex_state = 12, .external_lex_state = 2}, - [3902] = {.lex_state = 149, .external_lex_state = 5}, - [3903] = {.lex_state = 12, .external_lex_state = 2}, - [3904] = {.lex_state = 149, .external_lex_state = 6}, - [3905] = {.lex_state = 25, .external_lex_state = 2}, - [3906] = {.lex_state = 149, .external_lex_state = 6}, - [3907] = {.lex_state = 149, .external_lex_state = 5}, - [3908] = {.lex_state = 149, .external_lex_state = 6}, - [3909] = {.lex_state = 149, .external_lex_state = 5}, - [3910] = {.lex_state = 23, .external_lex_state = 8}, - [3911] = {.lex_state = 149, .external_lex_state = 2}, - [3912] = {.lex_state = 149, .external_lex_state = 5}, - [3913] = {.lex_state = 23, .external_lex_state = 8}, - [3914] = {.lex_state = 12, .external_lex_state = 2}, - [3915] = {.lex_state = 149, .external_lex_state = 5}, - [3916] = {.lex_state = 149, .external_lex_state = 2}, - [3917] = {.lex_state = 149, .external_lex_state = 6}, - [3918] = {.lex_state = 149, .external_lex_state = 2}, - [3919] = {.lex_state = 12, .external_lex_state = 2}, - [3920] = {.lex_state = 12, .external_lex_state = 2}, - [3921] = {.lex_state = 25, .external_lex_state = 2}, - [3922] = {.lex_state = 12, .external_lex_state = 2}, - [3923] = {.lex_state = 12, .external_lex_state = 2}, - [3924] = {.lex_state = 12, .external_lex_state = 2}, - [3925] = {.lex_state = 12, .external_lex_state = 2}, - [3926] = {.lex_state = 12, .external_lex_state = 2}, - [3927] = {.lex_state = 149, .external_lex_state = 2}, - [3928] = {.lex_state = 149, .external_lex_state = 6}, - [3929] = {.lex_state = 149, .external_lex_state = 5}, - [3930] = {.lex_state = 12, .external_lex_state = 2}, - [3931] = {.lex_state = 149, .external_lex_state = 6}, - [3932] = {.lex_state = 149, .external_lex_state = 2}, - [3933] = {.lex_state = 12, .external_lex_state = 2}, - [3934] = {.lex_state = 149, .external_lex_state = 5}, - [3935] = {.lex_state = 149, .external_lex_state = 5}, - [3936] = {.lex_state = 149, .external_lex_state = 5}, - [3937] = {.lex_state = 149, .external_lex_state = 2}, - [3938] = {.lex_state = 149, .external_lex_state = 2}, - [3939] = {.lex_state = 149, .external_lex_state = 5}, - [3940] = {.lex_state = 149, .external_lex_state = 5}, - [3941] = {.lex_state = 149, .external_lex_state = 5}, - [3942] = {.lex_state = 12, .external_lex_state = 2}, - [3943] = {.lex_state = 149, .external_lex_state = 5}, - [3944] = {.lex_state = 12, .external_lex_state = 2}, - [3945] = {.lex_state = 149, .external_lex_state = 5}, - [3946] = {.lex_state = 149, .external_lex_state = 6}, - [3947] = {.lex_state = 23, .external_lex_state = 9}, - [3948] = {.lex_state = 149, .external_lex_state = 5}, - [3949] = {.lex_state = 149, .external_lex_state = 5}, - [3950] = {.lex_state = 149, .external_lex_state = 5}, - [3951] = {.lex_state = 149, .external_lex_state = 5}, - [3952] = {.lex_state = 149, .external_lex_state = 5}, - [3953] = {.lex_state = 149, .external_lex_state = 5}, - [3954] = {.lex_state = 23, .external_lex_state = 7}, - [3955] = {.lex_state = 25, .external_lex_state = 2}, - [3956] = {.lex_state = 149, .external_lex_state = 5}, - [3957] = {.lex_state = 149, .external_lex_state = 5}, - [3958] = {.lex_state = 149, .external_lex_state = 5}, - [3959] = {.lex_state = 149, .external_lex_state = 5}, - [3960] = {.lex_state = 149, .external_lex_state = 5}, - [3961] = {.lex_state = 149, .external_lex_state = 5}, - [3962] = {.lex_state = 23, .external_lex_state = 7}, - [3963] = {.lex_state = 149, .external_lex_state = 5}, - [3964] = {.lex_state = 149, .external_lex_state = 5}, - [3965] = {.lex_state = 149, .external_lex_state = 2}, - [3966] = {.lex_state = 149, .external_lex_state = 5}, - [3967] = {.lex_state = 149, .external_lex_state = 5}, - [3968] = {.lex_state = 4, .external_lex_state = 2}, - [3969] = {.lex_state = 149, .external_lex_state = 5}, - [3970] = {.lex_state = 25, .external_lex_state = 2}, - [3971] = {.lex_state = 149, .external_lex_state = 2}, - [3972] = {.lex_state = 149, .external_lex_state = 5}, - [3973] = {.lex_state = 149, .external_lex_state = 6}, - [3974] = {.lex_state = 149, .external_lex_state = 6}, - [3975] = {.lex_state = 149, .external_lex_state = 6}, - [3976] = {.lex_state = 149, .external_lex_state = 5}, - [3977] = {.lex_state = 12, .external_lex_state = 2}, - [3978] = {.lex_state = 149, .external_lex_state = 5}, - [3979] = {.lex_state = 149, .external_lex_state = 5}, - [3980] = {.lex_state = 12, .external_lex_state = 2}, - [3981] = {.lex_state = 149, .external_lex_state = 6}, - [3982] = {.lex_state = 149, .external_lex_state = 5}, - [3983] = {.lex_state = 149, .external_lex_state = 5}, - [3984] = {.lex_state = 149, .external_lex_state = 5}, - [3985] = {.lex_state = 149, .external_lex_state = 5}, - [3986] = {.lex_state = 149, .external_lex_state = 5}, - [3987] = {.lex_state = 149, .external_lex_state = 5}, - [3988] = {.lex_state = 149, .external_lex_state = 5}, - [3989] = {.lex_state = 149, .external_lex_state = 5}, - [3990] = {.lex_state = 149, .external_lex_state = 2}, - [3991] = {.lex_state = 149, .external_lex_state = 5}, - [3992] = {.lex_state = 149, .external_lex_state = 5}, - [3993] = {.lex_state = 149, .external_lex_state = 5}, - [3994] = {.lex_state = 149, .external_lex_state = 2}, - [3995] = {.lex_state = 149, .external_lex_state = 5}, - [3996] = {.lex_state = 149, .external_lex_state = 5}, - [3997] = {.lex_state = 149, .external_lex_state = 5}, - [3998] = {.lex_state = 149, .external_lex_state = 5}, - [3999] = {.lex_state = 149, .external_lex_state = 5}, - [4000] = {.lex_state = 149, .external_lex_state = 5}, - [4001] = {.lex_state = 149, .external_lex_state = 5}, - [4002] = {.lex_state = 16, .external_lex_state = 2}, - [4003] = {.lex_state = 149, .external_lex_state = 5}, - [4004] = {.lex_state = 23, .external_lex_state = 7}, - [4005] = {.lex_state = 149, .external_lex_state = 5}, - [4006] = {.lex_state = 149, .external_lex_state = 2}, - [4007] = {.lex_state = 149, .external_lex_state = 5}, - [4008] = {.lex_state = 149, .external_lex_state = 2}, - [4009] = {.lex_state = 149, .external_lex_state = 5}, - [4010] = {.lex_state = 23, .external_lex_state = 7}, - [4011] = {.lex_state = 149, .external_lex_state = 5}, - [4012] = {.lex_state = 23, .external_lex_state = 7}, - [4013] = {.lex_state = 149, .external_lex_state = 5}, - [4014] = {.lex_state = 23, .external_lex_state = 7}, - [4015] = {.lex_state = 23, .external_lex_state = 9}, - [4016] = {.lex_state = 23, .external_lex_state = 7}, - [4017] = {.lex_state = 149, .external_lex_state = 5}, - [4018] = {.lex_state = 149, .external_lex_state = 6}, - [4019] = {.lex_state = 149, .external_lex_state = 5}, - [4020] = {.lex_state = 149, .external_lex_state = 5}, - [4021] = {.lex_state = 4, .external_lex_state = 2}, - [4022] = {.lex_state = 149, .external_lex_state = 5}, - [4023] = {.lex_state = 149, .external_lex_state = 2}, - [4024] = {.lex_state = 149, .external_lex_state = 5}, - [4025] = {.lex_state = 149, .external_lex_state = 5}, - [4026] = {.lex_state = 149, .external_lex_state = 5}, - [4027] = {.lex_state = 149, .external_lex_state = 5}, - [4028] = {.lex_state = 23, .external_lex_state = 7}, - [4029] = {.lex_state = 149, .external_lex_state = 5}, - [4030] = {.lex_state = 149, .external_lex_state = 2}, - [4031] = {.lex_state = 149, .external_lex_state = 5}, - [4032] = {.lex_state = 149, .external_lex_state = 2}, - [4033] = {.lex_state = 149, .external_lex_state = 2}, - [4034] = {.lex_state = 149, .external_lex_state = 5}, - [4035] = {.lex_state = 149, .external_lex_state = 5}, - [4036] = {.lex_state = 149, .external_lex_state = 6}, - [4037] = {.lex_state = 149, .external_lex_state = 5}, - [4038] = {.lex_state = 149, .external_lex_state = 5}, - [4039] = {.lex_state = 149, .external_lex_state = 5}, - [4040] = {.lex_state = 149, .external_lex_state = 5}, - [4041] = {.lex_state = 149, .external_lex_state = 5}, - [4042] = {.lex_state = 23, .external_lex_state = 9}, - [4043] = {.lex_state = 15, .external_lex_state = 2}, - [4044] = {.lex_state = 149, .external_lex_state = 6}, - [4045] = {.lex_state = 23, .external_lex_state = 7}, - [4046] = {.lex_state = 149, .external_lex_state = 5}, - [4047] = {.lex_state = 149, .external_lex_state = 2}, - [4048] = {.lex_state = 149, .external_lex_state = 2}, - [4049] = {.lex_state = 149, .external_lex_state = 2}, - [4050] = {.lex_state = 149, .external_lex_state = 5}, - [4051] = {.lex_state = 149, .external_lex_state = 5}, - [4052] = {.lex_state = 25, .external_lex_state = 2}, - [4053] = {.lex_state = 149, .external_lex_state = 6}, - [4054] = {.lex_state = 149, .external_lex_state = 5}, - [4055] = {.lex_state = 149, .external_lex_state = 5}, - [4056] = {.lex_state = 149, .external_lex_state = 5}, - [4057] = {.lex_state = 12, .external_lex_state = 2}, - [4058] = {.lex_state = 149, .external_lex_state = 5}, - [4059] = {.lex_state = 149, .external_lex_state = 5}, - [4060] = {.lex_state = 149, .external_lex_state = 5}, - [4061] = {.lex_state = 149, .external_lex_state = 5}, - [4062] = {.lex_state = 149, .external_lex_state = 5}, - [4063] = {.lex_state = 149, .external_lex_state = 5}, - [4064] = {.lex_state = 149, .external_lex_state = 5}, - [4065] = {.lex_state = 149, .external_lex_state = 5}, - [4066] = {.lex_state = 149, .external_lex_state = 5}, - [4067] = {.lex_state = 149, .external_lex_state = 2}, - [4068] = {.lex_state = 149, .external_lex_state = 5}, - [4069] = {.lex_state = 149, .external_lex_state = 5}, - [4070] = {.lex_state = 149, .external_lex_state = 5}, - [4071] = {.lex_state = 149, .external_lex_state = 5}, - [4072] = {.lex_state = 149, .external_lex_state = 2}, - [4073] = {.lex_state = 149, .external_lex_state = 5}, - [4074] = {.lex_state = 149, .external_lex_state = 5}, - [4075] = {.lex_state = 149, .external_lex_state = 5}, - [4076] = {.lex_state = 149, .external_lex_state = 5}, - [4077] = {.lex_state = 149, .external_lex_state = 5}, - [4078] = {.lex_state = 149, .external_lex_state = 2}, - [4079] = {.lex_state = 12, .external_lex_state = 2}, - [4080] = {.lex_state = 149, .external_lex_state = 5}, - [4081] = {.lex_state = 149, .external_lex_state = 5}, - [4082] = {.lex_state = 12, .external_lex_state = 2}, - [4083] = {.lex_state = 149, .external_lex_state = 2}, - [4084] = {.lex_state = 12, .external_lex_state = 2}, - [4085] = {.lex_state = 149, .external_lex_state = 5}, - [4086] = {.lex_state = 12, .external_lex_state = 2}, - [4087] = {.lex_state = 149, .external_lex_state = 5}, - [4088] = {.lex_state = 149, .external_lex_state = 5}, - [4089] = {.lex_state = 149, .external_lex_state = 5}, - [4090] = {.lex_state = 149, .external_lex_state = 5}, - [4091] = {.lex_state = 149, .external_lex_state = 5}, - [4092] = {.lex_state = 149, .external_lex_state = 5}, - [4093] = {.lex_state = 149, .external_lex_state = 5}, - [4094] = {.lex_state = 149, .external_lex_state = 5}, - [4095] = {.lex_state = 149, .external_lex_state = 5}, - [4096] = {.lex_state = 149, .external_lex_state = 5}, - [4097] = {.lex_state = 149, .external_lex_state = 5}, - [4098] = {.lex_state = 149, .external_lex_state = 5}, - [4099] = {.lex_state = 149, .external_lex_state = 5}, - [4100] = {.lex_state = 149, .external_lex_state = 5}, - [4101] = {.lex_state = 149, .external_lex_state = 5}, - [4102] = {.lex_state = 149, .external_lex_state = 5}, - [4103] = {.lex_state = 149, .external_lex_state = 2}, - [4104] = {.lex_state = 149, .external_lex_state = 5}, - [4105] = {.lex_state = 149, .external_lex_state = 2}, - [4106] = {.lex_state = 149, .external_lex_state = 2}, - [4107] = {.lex_state = 149, .external_lex_state = 5}, - [4108] = {.lex_state = 149, .external_lex_state = 5}, - [4109] = {.lex_state = 149, .external_lex_state = 2}, - [4110] = {.lex_state = 23, .external_lex_state = 7}, - [4111] = {.lex_state = 23, .external_lex_state = 7}, - [4112] = {.lex_state = 149, .external_lex_state = 5}, - [4113] = {.lex_state = 12, .external_lex_state = 2}, - [4114] = {.lex_state = 149, .external_lex_state = 5}, - [4115] = {.lex_state = 12, .external_lex_state = 2}, - [4116] = {.lex_state = 149, .external_lex_state = 5}, - [4117] = {.lex_state = 149, .external_lex_state = 5}, - [4118] = {.lex_state = 149, .external_lex_state = 5}, - [4119] = {.lex_state = 16, .external_lex_state = 2}, - [4120] = {.lex_state = 149, .external_lex_state = 5}, - [4121] = {.lex_state = 149, .external_lex_state = 5}, - [4122] = {.lex_state = 149, .external_lex_state = 5}, - [4123] = {.lex_state = 149, .external_lex_state = 5}, - [4124] = {.lex_state = 149, .external_lex_state = 5}, - [4125] = {.lex_state = 149, .external_lex_state = 5}, - [4126] = {.lex_state = 23, .external_lex_state = 9}, - [4127] = {.lex_state = 149, .external_lex_state = 6}, - [4128] = {.lex_state = 149, .external_lex_state = 5}, - [4129] = {.lex_state = 149, .external_lex_state = 5}, - [4130] = {.lex_state = 149, .external_lex_state = 5}, - [4131] = {.lex_state = 149, .external_lex_state = 5}, - [4132] = {.lex_state = 149, .external_lex_state = 2}, - [4133] = {.lex_state = 149, .external_lex_state = 5}, - [4134] = {.lex_state = 149, .external_lex_state = 5}, - [4135] = {.lex_state = 149, .external_lex_state = 5}, - [4136] = {.lex_state = 23, .external_lex_state = 9}, - [4137] = {.lex_state = 149, .external_lex_state = 6}, - [4138] = {.lex_state = 149, .external_lex_state = 5}, - [4139] = {.lex_state = 149, .external_lex_state = 5}, - [4140] = {.lex_state = 149, .external_lex_state = 2}, - [4141] = {.lex_state = 12, .external_lex_state = 2}, - [4142] = {.lex_state = 149, .external_lex_state = 5}, - [4143] = {.lex_state = 149, .external_lex_state = 5}, - [4144] = {.lex_state = 149, .external_lex_state = 5}, - [4145] = {.lex_state = 12, .external_lex_state = 2}, - [4146] = {.lex_state = 149, .external_lex_state = 6}, - [4147] = {.lex_state = 149, .external_lex_state = 2}, - [4148] = {.lex_state = 149, .external_lex_state = 5}, - [4149] = {.lex_state = 12, .external_lex_state = 2}, - [4150] = {.lex_state = 16, .external_lex_state = 2}, - [4151] = {.lex_state = 23, .external_lex_state = 9}, - [4152] = {.lex_state = 149, .external_lex_state = 5}, - [4153] = {.lex_state = 149, .external_lex_state = 5}, - [4154] = {.lex_state = 12, .external_lex_state = 2}, - [4155] = {.lex_state = 149, .external_lex_state = 5}, - [4156] = {.lex_state = 149, .external_lex_state = 5}, - [4157] = {.lex_state = 149, .external_lex_state = 5}, - [4158] = {.lex_state = 149, .external_lex_state = 5}, - [4159] = {.lex_state = 149, .external_lex_state = 5}, - [4160] = {.lex_state = 149, .external_lex_state = 5}, - [4161] = {.lex_state = 12, .external_lex_state = 2}, - [4162] = {.lex_state = 149, .external_lex_state = 5}, - [4163] = {.lex_state = 149, .external_lex_state = 5}, - [4164] = {.lex_state = 149, .external_lex_state = 5}, - [4165] = {.lex_state = 23, .external_lex_state = 9}, - [4166] = {.lex_state = 149, .external_lex_state = 5}, - [4167] = {.lex_state = 149, .external_lex_state = 5}, - [4168] = {.lex_state = 149, .external_lex_state = 5}, - [4169] = {.lex_state = 149, .external_lex_state = 5}, - [4170] = {.lex_state = 149, .external_lex_state = 5}, - [4171] = {.lex_state = 149, .external_lex_state = 5}, - [4172] = {.lex_state = 149, .external_lex_state = 5}, - [4173] = {.lex_state = 149, .external_lex_state = 5}, - [4174] = {.lex_state = 12, .external_lex_state = 2}, - [4175] = {.lex_state = 12, .external_lex_state = 2}, - [4176] = {.lex_state = 149, .external_lex_state = 5}, - [4177] = {.lex_state = 149, .external_lex_state = 5}, - [4178] = {.lex_state = 23, .external_lex_state = 9}, - [4179] = {.lex_state = 149, .external_lex_state = 5}, - [4180] = {.lex_state = 23, .external_lex_state = 9}, - [4181] = {.lex_state = 149, .external_lex_state = 5}, - [4182] = {.lex_state = 12, .external_lex_state = 2}, - [4183] = {.lex_state = 149, .external_lex_state = 5}, - [4184] = {.lex_state = 149, .external_lex_state = 5}, - [4185] = {.lex_state = 149, .external_lex_state = 5}, - [4186] = {.lex_state = 149, .external_lex_state = 5}, - [4187] = {.lex_state = 149, .external_lex_state = 5}, - [4188] = {.lex_state = 149, .external_lex_state = 5}, - [4189] = {.lex_state = 149, .external_lex_state = 5}, - [4190] = {.lex_state = 149, .external_lex_state = 5}, - [4191] = {.lex_state = 149, .external_lex_state = 5}, - [4192] = {.lex_state = 149, .external_lex_state = 5}, - [4193] = {.lex_state = 149, .external_lex_state = 5}, - [4194] = {.lex_state = 12, .external_lex_state = 2}, - [4195] = {.lex_state = 149, .external_lex_state = 5}, - [4196] = {.lex_state = 149, .external_lex_state = 5}, - [4197] = {.lex_state = 149, .external_lex_state = 5}, - [4198] = {.lex_state = 149, .external_lex_state = 5}, - [4199] = {.lex_state = 149, .external_lex_state = 5}, - [4200] = {.lex_state = 149, .external_lex_state = 2}, - [4201] = {.lex_state = 149, .external_lex_state = 5}, - [4202] = {.lex_state = 12, .external_lex_state = 2}, - [4203] = {.lex_state = 149, .external_lex_state = 6}, - [4204] = {.lex_state = 149, .external_lex_state = 2}, - [4205] = {.lex_state = 149, .external_lex_state = 2}, - [4206] = {.lex_state = 149, .external_lex_state = 5}, - [4207] = {.lex_state = 12, .external_lex_state = 2}, - [4208] = {.lex_state = 149, .external_lex_state = 5}, - [4209] = {.lex_state = 149, .external_lex_state = 2}, - [4210] = {.lex_state = 12, .external_lex_state = 2}, - [4211] = {.lex_state = 149, .external_lex_state = 5}, - [4212] = {.lex_state = 149, .external_lex_state = 5}, - [4213] = {.lex_state = 149, .external_lex_state = 5}, - [4214] = {.lex_state = 12, .external_lex_state = 2}, - [4215] = {.lex_state = 23, .external_lex_state = 7}, - [4216] = {.lex_state = 23, .external_lex_state = 7}, - [4217] = {.lex_state = 149, .external_lex_state = 2}, - [4218] = {.lex_state = 12, .external_lex_state = 2}, - [4219] = {.lex_state = 149, .external_lex_state = 5}, - [4220] = {.lex_state = 149, .external_lex_state = 5}, - [4221] = {.lex_state = 12, .external_lex_state = 2}, - [4222] = {.lex_state = 149, .external_lex_state = 5}, - [4223] = {.lex_state = 149, .external_lex_state = 5}, - [4224] = {.lex_state = 149, .external_lex_state = 5}, - [4225] = {.lex_state = 12, .external_lex_state = 2}, - [4226] = {.lex_state = 12, .external_lex_state = 2}, - [4227] = {.lex_state = 149, .external_lex_state = 5}, - [4228] = {.lex_state = 149, .external_lex_state = 5}, - [4229] = {.lex_state = 149, .external_lex_state = 5}, - [4230] = {.lex_state = 149, .external_lex_state = 5}, - [4231] = {.lex_state = 149, .external_lex_state = 5}, - [4232] = {.lex_state = 149, .external_lex_state = 5}, - [4233] = {.lex_state = 149, .external_lex_state = 5}, - [4234] = {.lex_state = 23, .external_lex_state = 7}, - [4235] = {.lex_state = 23, .external_lex_state = 7}, - [4236] = {.lex_state = 149, .external_lex_state = 5}, - [4237] = {.lex_state = 149, .external_lex_state = 5}, - [4238] = {.lex_state = 12, .external_lex_state = 2}, - [4239] = {.lex_state = 12, .external_lex_state = 2}, - [4240] = {.lex_state = 149, .external_lex_state = 5}, - [4241] = {.lex_state = 12, .external_lex_state = 2}, - [4242] = {.lex_state = 12, .external_lex_state = 2}, - [4243] = {.lex_state = 23, .external_lex_state = 7}, - [4244] = {.lex_state = 23, .external_lex_state = 7}, - [4245] = {.lex_state = 149, .external_lex_state = 5}, - [4246] = {.lex_state = 149, .external_lex_state = 5}, - [4247] = {.lex_state = 149, .external_lex_state = 5}, - [4248] = {.lex_state = 12, .external_lex_state = 2}, - [4249] = {.lex_state = 149, .external_lex_state = 5}, - [4250] = {.lex_state = 12, .external_lex_state = 2}, - [4251] = {.lex_state = 12, .external_lex_state = 2}, - [4252] = {.lex_state = 149, .external_lex_state = 5}, - [4253] = {.lex_state = 149, .external_lex_state = 5}, - [4254] = {.lex_state = 149, .external_lex_state = 5}, - [4255] = {.lex_state = 149, .external_lex_state = 5}, - [4256] = {.lex_state = 149, .external_lex_state = 5}, - [4257] = {.lex_state = 12, .external_lex_state = 2}, - [4258] = {.lex_state = 149, .external_lex_state = 5}, - [4259] = {.lex_state = 149, .external_lex_state = 5}, - [4260] = {.lex_state = 23, .external_lex_state = 7}, - [4261] = {.lex_state = 23, .external_lex_state = 7}, - [4262] = {.lex_state = 23, .external_lex_state = 7}, - [4263] = {.lex_state = 23, .external_lex_state = 7}, - [4264] = {.lex_state = 12, .external_lex_state = 2}, - [4265] = {.lex_state = 23, .external_lex_state = 7}, - [4266] = {.lex_state = 23, .external_lex_state = 7}, - [4267] = {.lex_state = 149, .external_lex_state = 5}, - [4268] = {.lex_state = 12, .external_lex_state = 2}, - [4269] = {.lex_state = 149, .external_lex_state = 5}, - [4270] = {.lex_state = 12, .external_lex_state = 2}, - [4271] = {.lex_state = 12, .external_lex_state = 2}, - [4272] = {.lex_state = 149, .external_lex_state = 5}, - [4273] = {.lex_state = 12, .external_lex_state = 2}, - [4274] = {.lex_state = 149, .external_lex_state = 5}, - [4275] = {.lex_state = 23, .external_lex_state = 7}, - [4276] = {.lex_state = 23, .external_lex_state = 7}, - [4277] = {.lex_state = 149, .external_lex_state = 5}, - [4278] = {.lex_state = 149, .external_lex_state = 5}, - [4279] = {.lex_state = 149, .external_lex_state = 5}, - [4280] = {.lex_state = 149, .external_lex_state = 5}, - [4281] = {.lex_state = 149, .external_lex_state = 5}, - [4282] = {.lex_state = 149, .external_lex_state = 5}, - [4283] = {.lex_state = 149, .external_lex_state = 5}, - [4284] = {.lex_state = 149, .external_lex_state = 5}, - [4285] = {.lex_state = 149, .external_lex_state = 5}, - [4286] = {.lex_state = 25, .external_lex_state = 2}, - [4287] = {.lex_state = 149, .external_lex_state = 5}, - [4288] = {.lex_state = 149, .external_lex_state = 5}, - [4289] = {.lex_state = 149, .external_lex_state = 5}, - [4290] = {.lex_state = 149, .external_lex_state = 5}, - [4291] = {.lex_state = 149, .external_lex_state = 5}, - [4292] = {.lex_state = 149, .external_lex_state = 5}, - [4293] = {.lex_state = 23, .external_lex_state = 7}, - [4294] = {.lex_state = 23, .external_lex_state = 7}, - [4295] = {.lex_state = 149, .external_lex_state = 5}, - [4296] = {.lex_state = 12, .external_lex_state = 2}, - [4297] = {.lex_state = 149, .external_lex_state = 5}, - [4298] = {.lex_state = 149, .external_lex_state = 5}, - [4299] = {.lex_state = 149, .external_lex_state = 5}, - [4300] = {.lex_state = 149, .external_lex_state = 5}, - [4301] = {.lex_state = 149, .external_lex_state = 5}, - [4302] = {.lex_state = 12, .external_lex_state = 2}, - [4303] = {.lex_state = 149, .external_lex_state = 5}, - [4304] = {.lex_state = 12, .external_lex_state = 2}, - [4305] = {.lex_state = 149, .external_lex_state = 2}, - [4306] = {.lex_state = 149, .external_lex_state = 2}, - [4307] = {.lex_state = 149, .external_lex_state = 5}, - [4308] = {.lex_state = 149, .external_lex_state = 5}, - [4309] = {.lex_state = 149, .external_lex_state = 2}, - [4310] = {.lex_state = 23, .external_lex_state = 9}, - [4311] = {.lex_state = 149, .external_lex_state = 2}, - [4312] = {.lex_state = 149, .external_lex_state = 5}, - [4313] = {.lex_state = 149, .external_lex_state = 5}, - [4314] = {.lex_state = 149, .external_lex_state = 2}, - [4315] = {.lex_state = 12, .external_lex_state = 2}, - [4316] = {.lex_state = 12, .external_lex_state = 2}, - [4317] = {.lex_state = 149, .external_lex_state = 5}, - [4318] = {.lex_state = 149, .external_lex_state = 5}, - [4319] = {.lex_state = 149, .external_lex_state = 5}, - [4320] = {.lex_state = 12, .external_lex_state = 2}, - [4321] = {.lex_state = 12, .external_lex_state = 2}, - [4322] = {.lex_state = 149, .external_lex_state = 5}, - [4323] = {.lex_state = 149, .external_lex_state = 5}, - [4324] = {.lex_state = 25, .external_lex_state = 2}, - [4325] = {.lex_state = 25, .external_lex_state = 2}, - [4326] = {.lex_state = 23, .external_lex_state = 7}, - [4327] = {.lex_state = 23, .external_lex_state = 7}, - [4328] = {.lex_state = 149, .external_lex_state = 2}, - [4329] = {.lex_state = 12, .external_lex_state = 2}, - [4330] = {.lex_state = 25, .external_lex_state = 2}, - [4331] = {.lex_state = 25, .external_lex_state = 2}, - [4332] = {.lex_state = 149, .external_lex_state = 5}, - [4333] = {.lex_state = 149, .external_lex_state = 5}, - [4334] = {.lex_state = 12, .external_lex_state = 2}, - [4335] = {.lex_state = 149, .external_lex_state = 5}, - [4336] = {.lex_state = 149, .external_lex_state = 5}, - [4337] = {.lex_state = 149, .external_lex_state = 5}, - [4338] = {.lex_state = 25, .external_lex_state = 2}, - [4339] = {.lex_state = 25, .external_lex_state = 2}, - [4340] = {.lex_state = 149, .external_lex_state = 5}, - [4341] = {.lex_state = 149, .external_lex_state = 5}, - [4342] = {.lex_state = 25, .external_lex_state = 2}, - [4343] = {.lex_state = 25, .external_lex_state = 2}, - [4344] = {.lex_state = 149, .external_lex_state = 5}, - [4345] = {.lex_state = 149, .external_lex_state = 5}, - [4346] = {.lex_state = 149, .external_lex_state = 2}, - [4347] = {.lex_state = 149, .external_lex_state = 5}, - [4348] = {.lex_state = 12, .external_lex_state = 2}, - [4349] = {.lex_state = 149, .external_lex_state = 5}, - [4350] = {.lex_state = 149, .external_lex_state = 5}, - [4351] = {.lex_state = 149, .external_lex_state = 5}, - [4352] = {.lex_state = 12, .external_lex_state = 2}, - [4353] = {.lex_state = 149, .external_lex_state = 2}, - [4354] = {.lex_state = 149, .external_lex_state = 2}, - [4355] = {.lex_state = 25, .external_lex_state = 2}, - [4356] = {.lex_state = 25, .external_lex_state = 2}, - [4357] = {.lex_state = 25, .external_lex_state = 2}, - [4358] = {.lex_state = 25, .external_lex_state = 2}, - [4359] = {.lex_state = 25, .external_lex_state = 2}, - [4360] = {.lex_state = 25, .external_lex_state = 2}, - [4361] = {.lex_state = 149, .external_lex_state = 5}, - [4362] = {.lex_state = 149, .external_lex_state = 2}, - [4363] = {.lex_state = 149, .external_lex_state = 5}, - [4364] = {.lex_state = 149, .external_lex_state = 2}, - [4365] = {.lex_state = 149, .external_lex_state = 5}, - [4366] = {.lex_state = 25, .external_lex_state = 2}, - [4367] = {.lex_state = 149, .external_lex_state = 2}, - [4368] = {.lex_state = 149, .external_lex_state = 2}, - [4369] = {.lex_state = 25, .external_lex_state = 2}, - [4370] = {.lex_state = 149, .external_lex_state = 5}, - [4371] = {.lex_state = 12, .external_lex_state = 2}, - [4372] = {.lex_state = 149, .external_lex_state = 2}, - [4373] = {.lex_state = 149, .external_lex_state = 5}, - [4374] = {.lex_state = 149, .external_lex_state = 5}, - [4375] = {.lex_state = 149, .external_lex_state = 5}, - [4376] = {.lex_state = 149, .external_lex_state = 5}, - [4377] = {.lex_state = 149, .external_lex_state = 2}, - [4378] = {.lex_state = 149, .external_lex_state = 5}, - [4379] = {.lex_state = 25, .external_lex_state = 2}, - [4380] = {.lex_state = 25, .external_lex_state = 2}, - [4381] = {.lex_state = 149, .external_lex_state = 5}, - [4382] = {.lex_state = 12, .external_lex_state = 2}, - [4383] = {.lex_state = 149, .external_lex_state = 5}, - [4384] = {.lex_state = 149, .external_lex_state = 5}, - [4385] = {.lex_state = 149, .external_lex_state = 5}, - [4386] = {.lex_state = 149, .external_lex_state = 5}, - [4387] = {.lex_state = 149, .external_lex_state = 5}, - [4388] = {.lex_state = 149, .external_lex_state = 5}, - [4389] = {.lex_state = 149, .external_lex_state = 5}, - [4390] = {.lex_state = 149, .external_lex_state = 2}, - [4391] = {.lex_state = 149, .external_lex_state = 5}, - [4392] = {.lex_state = 149, .external_lex_state = 5}, - [4393] = {.lex_state = 12, .external_lex_state = 2}, - [4394] = {.lex_state = 149, .external_lex_state = 2}, - [4395] = {.lex_state = 149, .external_lex_state = 2}, - [4396] = {.lex_state = 149, .external_lex_state = 2}, - [4397] = {.lex_state = 12, .external_lex_state = 2}, - [4398] = {.lex_state = 149, .external_lex_state = 5}, - [4399] = {.lex_state = 12, .external_lex_state = 2}, - [4400] = {.lex_state = 149, .external_lex_state = 5}, - [4401] = {.lex_state = 149, .external_lex_state = 5}, - [4402] = {.lex_state = 149, .external_lex_state = 2}, - [4403] = {.lex_state = 149, .external_lex_state = 5}, - [4404] = {.lex_state = 149, .external_lex_state = 5}, - [4405] = {.lex_state = 149, .external_lex_state = 5}, - [4406] = {.lex_state = 16, .external_lex_state = 2}, - [4407] = {.lex_state = 149, .external_lex_state = 5}, - [4408] = {.lex_state = 149, .external_lex_state = 5}, - [4409] = {.lex_state = 149, .external_lex_state = 5}, - [4410] = {.lex_state = 149, .external_lex_state = 5}, - [4411] = {.lex_state = 149, .external_lex_state = 5}, - [4412] = {.lex_state = 149, .external_lex_state = 5}, - [4413] = {.lex_state = 149, .external_lex_state = 5}, - [4414] = {.lex_state = 149, .external_lex_state = 5}, - [4415] = {.lex_state = 149, .external_lex_state = 5}, - [4416] = {.lex_state = 149, .external_lex_state = 5}, - [4417] = {.lex_state = 149, .external_lex_state = 5}, - [4418] = {.lex_state = 149, .external_lex_state = 5}, - [4419] = {.lex_state = 12, .external_lex_state = 2}, - [4420] = {.lex_state = 149, .external_lex_state = 5}, - [4421] = {.lex_state = 149, .external_lex_state = 5}, - [4422] = {.lex_state = 149, .external_lex_state = 5}, - [4423] = {.lex_state = 149, .external_lex_state = 5}, - [4424] = {.lex_state = 149, .external_lex_state = 5}, - [4425] = {.lex_state = 149, .external_lex_state = 5}, - [4426] = {.lex_state = 149, .external_lex_state = 2}, - [4427] = {.lex_state = 149, .external_lex_state = 5}, - [4428] = {.lex_state = 12, .external_lex_state = 2}, - [4429] = {.lex_state = 149, .external_lex_state = 5}, - [4430] = {.lex_state = 149, .external_lex_state = 5}, - [4431] = {.lex_state = 149, .external_lex_state = 5}, - [4432] = {.lex_state = 149, .external_lex_state = 5}, - [4433] = {.lex_state = 149, .external_lex_state = 5}, - [4434] = {.lex_state = 149, .external_lex_state = 5}, - [4435] = {.lex_state = 12, .external_lex_state = 2}, - [4436] = {.lex_state = 149, .external_lex_state = 5}, - [4437] = {.lex_state = 149, .external_lex_state = 5}, - [4438] = {.lex_state = 149, .external_lex_state = 5}, - [4439] = {.lex_state = 149, .external_lex_state = 5}, - [4440] = {.lex_state = 149, .external_lex_state = 5}, - [4441] = {.lex_state = 149, .external_lex_state = 5}, - [4442] = {.lex_state = 149, .external_lex_state = 5}, - [4443] = {.lex_state = 149, .external_lex_state = 5}, - [4444] = {.lex_state = 149, .external_lex_state = 5}, - [4445] = {.lex_state = 12, .external_lex_state = 2}, - [4446] = {.lex_state = 149, .external_lex_state = 5}, - [4447] = {.lex_state = 149, .external_lex_state = 5}, - [4448] = {.lex_state = 12, .external_lex_state = 2}, - [4449] = {.lex_state = 149, .external_lex_state = 5}, - [4450] = {.lex_state = 12, .external_lex_state = 2}, - [4451] = {.lex_state = 23, .external_lex_state = 9}, - [4452] = {.lex_state = 12, .external_lex_state = 2}, - [4453] = {.lex_state = 149, .external_lex_state = 5}, - [4454] = {.lex_state = 149, .external_lex_state = 6}, - [4455] = {.lex_state = 149, .external_lex_state = 5}, - [4456] = {.lex_state = 149, .external_lex_state = 5}, - [4457] = {.lex_state = 149, .external_lex_state = 5}, - [4458] = {.lex_state = 149, .external_lex_state = 5}, - [4459] = {.lex_state = 149, .external_lex_state = 5}, - [4460] = {.lex_state = 15, .external_lex_state = 2}, - [4461] = {.lex_state = 149, .external_lex_state = 5}, - [4462] = {.lex_state = 149, .external_lex_state = 5}, - [4463] = {.lex_state = 149, .external_lex_state = 5}, - [4464] = {.lex_state = 25, .external_lex_state = 2}, - [4465] = {.lex_state = 149, .external_lex_state = 5}, - [4466] = {.lex_state = 12, .external_lex_state = 2}, - [4467] = {.lex_state = 149, .external_lex_state = 5}, - [4468] = {.lex_state = 28, .external_lex_state = 10}, - [4469] = {.lex_state = 149, .external_lex_state = 2}, - [4470] = {.lex_state = 149, .external_lex_state = 5}, - [4471] = {.lex_state = 149, .external_lex_state = 5}, - [4472] = {.lex_state = 149, .external_lex_state = 2}, - [4473] = {.lex_state = 149, .external_lex_state = 2}, - [4474] = {.lex_state = 4, .external_lex_state = 2}, - [4475] = {.lex_state = 149, .external_lex_state = 2}, - [4476] = {.lex_state = 12, .external_lex_state = 2}, - [4477] = {.lex_state = 149, .external_lex_state = 5}, - [4478] = {.lex_state = 19, .external_lex_state = 10}, - [4479] = {.lex_state = 149, .external_lex_state = 2}, - [4480] = {.lex_state = 17, .external_lex_state = 2}, - [4481] = {.lex_state = 28, .external_lex_state = 10}, - [4482] = {.lex_state = 149, .external_lex_state = 2}, - [4483] = {.lex_state = 12, .external_lex_state = 2}, - [4484] = {.lex_state = 149, .external_lex_state = 2}, - [4485] = {.lex_state = 15, .external_lex_state = 2}, - [4486] = {.lex_state = 12, .external_lex_state = 2}, - [4487] = {.lex_state = 19, .external_lex_state = 10}, - [4488] = {.lex_state = 12, .external_lex_state = 2}, - [4489] = {.lex_state = 28, .external_lex_state = 10}, - [4490] = {.lex_state = 12, .external_lex_state = 2}, - [4491] = {.lex_state = 149, .external_lex_state = 5}, - [4492] = {.lex_state = 19, .external_lex_state = 10}, - [4493] = {.lex_state = 26, .external_lex_state = 2}, - [4494] = {.lex_state = 28, .external_lex_state = 10}, - [4495] = {.lex_state = 149, .external_lex_state = 5}, - [4496] = {.lex_state = 149, .external_lex_state = 2}, - [4497] = {.lex_state = 12, .external_lex_state = 2}, - [4498] = {.lex_state = 12, .external_lex_state = 2}, - [4499] = {.lex_state = 28, .external_lex_state = 10}, - [4500] = {.lex_state = 149, .external_lex_state = 2}, - [4501] = {.lex_state = 149, .external_lex_state = 2}, - [4502] = {.lex_state = 12, .external_lex_state = 2}, - [4503] = {.lex_state = 149, .external_lex_state = 2}, - [4504] = {.lex_state = 149, .external_lex_state = 2}, - [4505] = {.lex_state = 12, .external_lex_state = 2}, - [4506] = {.lex_state = 23, .external_lex_state = 8}, - [4507] = {.lex_state = 149, .external_lex_state = 2}, - [4508] = {.lex_state = 149, .external_lex_state = 2}, - [4509] = {.lex_state = 149, .external_lex_state = 5}, - [4510] = {.lex_state = 149, .external_lex_state = 2}, - [4511] = {.lex_state = 12, .external_lex_state = 2}, - [4512] = {.lex_state = 149, .external_lex_state = 2}, - [4513] = {.lex_state = 149, .external_lex_state = 2}, - [4514] = {.lex_state = 19, .external_lex_state = 10}, - [4515] = {.lex_state = 28, .external_lex_state = 10}, - [4516] = {.lex_state = 149, .external_lex_state = 2}, - [4517] = {.lex_state = 149, .external_lex_state = 2}, - [4518] = {.lex_state = 149, .external_lex_state = 5}, - [4519] = {.lex_state = 149, .external_lex_state = 5}, - [4520] = {.lex_state = 149, .external_lex_state = 2}, - [4521] = {.lex_state = 149, .external_lex_state = 5}, - [4522] = {.lex_state = 149, .external_lex_state = 2}, - [4523] = {.lex_state = 12, .external_lex_state = 2}, - [4524] = {.lex_state = 19, .external_lex_state = 10}, - [4525] = {.lex_state = 12, .external_lex_state = 2}, - [4526] = {.lex_state = 12, .external_lex_state = 2}, - [4527] = {.lex_state = 149, .external_lex_state = 2}, - [4528] = {.lex_state = 149, .external_lex_state = 2}, - [4529] = {.lex_state = 28, .external_lex_state = 10}, - [4530] = {.lex_state = 149, .external_lex_state = 2}, - [4531] = {.lex_state = 149, .external_lex_state = 2}, - [4532] = {.lex_state = 19, .external_lex_state = 10}, - [4533] = {.lex_state = 17, .external_lex_state = 2}, - [4534] = {.lex_state = 26, .external_lex_state = 2}, - [4535] = {.lex_state = 149, .external_lex_state = 2}, - [4536] = {.lex_state = 19, .external_lex_state = 10}, - [4537] = {.lex_state = 28, .external_lex_state = 10}, - [4538] = {.lex_state = 19, .external_lex_state = 10}, - [4539] = {.lex_state = 12, .external_lex_state = 2}, - [4540] = {.lex_state = 149, .external_lex_state = 2}, - [4541] = {.lex_state = 19, .external_lex_state = 10}, - [4542] = {.lex_state = 149, .external_lex_state = 2}, - [4543] = {.lex_state = 4, .external_lex_state = 2}, - [4544] = {.lex_state = 149, .external_lex_state = 5}, - [4545] = {.lex_state = 4, .external_lex_state = 2}, - [4546] = {.lex_state = 149, .external_lex_state = 2}, - [4547] = {.lex_state = 149, .external_lex_state = 2}, - [4548] = {.lex_state = 19, .external_lex_state = 10}, - [4549] = {.lex_state = 19, .external_lex_state = 10}, - [4550] = {.lex_state = 149, .external_lex_state = 2}, - [4551] = {.lex_state = 28, .external_lex_state = 10}, - [4552] = {.lex_state = 19, .external_lex_state = 10}, - [4553] = {.lex_state = 28, .external_lex_state = 10}, - [4554] = {.lex_state = 28, .external_lex_state = 10}, - [4555] = {.lex_state = 149, .external_lex_state = 2}, - [4556] = {.lex_state = 149, .external_lex_state = 2}, - [4557] = {.lex_state = 28, .external_lex_state = 10}, - [4558] = {.lex_state = 149, .external_lex_state = 5}, - [4559] = {.lex_state = 149, .external_lex_state = 5}, - [4560] = {.lex_state = 149, .external_lex_state = 2}, - [4561] = {.lex_state = 149, .external_lex_state = 2}, - [4562] = {.lex_state = 149, .external_lex_state = 2}, - [4563] = {.lex_state = 19, .external_lex_state = 10}, - [4564] = {.lex_state = 28, .external_lex_state = 10}, - [4565] = {.lex_state = 149, .external_lex_state = 5}, - [4566] = {.lex_state = 149, .external_lex_state = 6}, - [4567] = {.lex_state = 149, .external_lex_state = 2}, - [4568] = {.lex_state = 149, .external_lex_state = 2}, - [4569] = {.lex_state = 149, .external_lex_state = 2}, - [4570] = {.lex_state = 12, .external_lex_state = 2}, - [4571] = {.lex_state = 19, .external_lex_state = 10}, - [4572] = {.lex_state = 149, .external_lex_state = 2}, - [4573] = {.lex_state = 12, .external_lex_state = 2}, - [4574] = {.lex_state = 4, .external_lex_state = 2}, - [4575] = {.lex_state = 149, .external_lex_state = 2}, - [4576] = {.lex_state = 149, .external_lex_state = 2}, - [4577] = {.lex_state = 149, .external_lex_state = 2}, - [4578] = {.lex_state = 149, .external_lex_state = 2}, - [4579] = {.lex_state = 15, .external_lex_state = 2}, - [4580] = {.lex_state = 149, .external_lex_state = 5}, - [4581] = {.lex_state = 12, .external_lex_state = 2}, - [4582] = {.lex_state = 149, .external_lex_state = 2}, - [4583] = {.lex_state = 149, .external_lex_state = 2}, - [4584] = {.lex_state = 19, .external_lex_state = 10}, - [4585] = {.lex_state = 149, .external_lex_state = 2}, - [4586] = {.lex_state = 28, .external_lex_state = 10}, - [4587] = {.lex_state = 149, .external_lex_state = 2}, - [4588] = {.lex_state = 12, .external_lex_state = 2}, - [4589] = {.lex_state = 149, .external_lex_state = 2}, - [4590] = {.lex_state = 149, .external_lex_state = 2}, - [4591] = {.lex_state = 149, .external_lex_state = 2}, - [4592] = {.lex_state = 149, .external_lex_state = 5}, - [4593] = {.lex_state = 149, .external_lex_state = 2}, - [4594] = {.lex_state = 12, .external_lex_state = 2}, - [4595] = {.lex_state = 12, .external_lex_state = 2}, - [4596] = {.lex_state = 23, .external_lex_state = 8}, - [4597] = {.lex_state = 12, .external_lex_state = 2}, - [4598] = {.lex_state = 12, .external_lex_state = 2}, - [4599] = {.lex_state = 149, .external_lex_state = 2}, - [4600] = {.lex_state = 28, .external_lex_state = 10}, - [4601] = {.lex_state = 12, .external_lex_state = 2}, - [4602] = {.lex_state = 149, .external_lex_state = 5}, - [4603] = {.lex_state = 149, .external_lex_state = 2}, - [4604] = {.lex_state = 149, .external_lex_state = 2}, - [4605] = {.lex_state = 17, .external_lex_state = 2}, - [4606] = {.lex_state = 26, .external_lex_state = 2}, - [4607] = {.lex_state = 149, .external_lex_state = 2}, - [4608] = {.lex_state = 149, .external_lex_state = 5}, - [4609] = {.lex_state = 149, .external_lex_state = 2}, - [4610] = {.lex_state = 149, .external_lex_state = 2}, - [4611] = {.lex_state = 4, .external_lex_state = 2}, - [4612] = {.lex_state = 149, .external_lex_state = 5}, - [4613] = {.lex_state = 4, .external_lex_state = 2}, - [4614] = {.lex_state = 149, .external_lex_state = 5}, - [4615] = {.lex_state = 149, .external_lex_state = 2}, - [4616] = {.lex_state = 149, .external_lex_state = 2}, - [4617] = {.lex_state = 149, .external_lex_state = 2}, - [4618] = {.lex_state = 149, .external_lex_state = 2}, - [4619] = {.lex_state = 149, .external_lex_state = 2}, - [4620] = {.lex_state = 149, .external_lex_state = 5}, - [4621] = {.lex_state = 149, .external_lex_state = 2}, - [4622] = {.lex_state = 149, .external_lex_state = 5}, - [4623] = {.lex_state = 149, .external_lex_state = 2}, - [4624] = {.lex_state = 149, .external_lex_state = 2}, - [4625] = {.lex_state = 149, .external_lex_state = 2}, - [4626] = {.lex_state = 149, .external_lex_state = 5}, - [4627] = {.lex_state = 149, .external_lex_state = 5}, - [4628] = {.lex_state = 149, .external_lex_state = 5}, - [4629] = {.lex_state = 4, .external_lex_state = 2}, - [4630] = {.lex_state = 149, .external_lex_state = 5}, - [4631] = {.lex_state = 149, .external_lex_state = 5}, - [4632] = {.lex_state = 149, .external_lex_state = 5}, - [4633] = {.lex_state = 149, .external_lex_state = 2}, - [4634] = {.lex_state = 149, .external_lex_state = 5}, - [4635] = {.lex_state = 149, .external_lex_state = 2}, - [4636] = {.lex_state = 149, .external_lex_state = 2}, - [4637] = {.lex_state = 149, .external_lex_state = 2}, - [4638] = {.lex_state = 149, .external_lex_state = 5}, - [4639] = {.lex_state = 149, .external_lex_state = 5}, - [4640] = {.lex_state = 149, .external_lex_state = 5}, - [4641] = {.lex_state = 149, .external_lex_state = 2}, - [4642] = {.lex_state = 149, .external_lex_state = 5}, - [4643] = {.lex_state = 149, .external_lex_state = 5}, - [4644] = {.lex_state = 149, .external_lex_state = 5}, - [4645] = {.lex_state = 149, .external_lex_state = 2}, - [4646] = {.lex_state = 149, .external_lex_state = 2}, - [4647] = {.lex_state = 149, .external_lex_state = 2}, - [4648] = {.lex_state = 149, .external_lex_state = 2}, - [4649] = {.lex_state = 149, .external_lex_state = 5}, - [4650] = {.lex_state = 149, .external_lex_state = 2}, - [4651] = {.lex_state = 1, .external_lex_state = 2}, - [4652] = {.lex_state = 149, .external_lex_state = 2}, - [4653] = {.lex_state = 149, .external_lex_state = 5}, - [4654] = {.lex_state = 149, .external_lex_state = 5}, - [4655] = {.lex_state = 149, .external_lex_state = 5}, - [4656] = {.lex_state = 149, .external_lex_state = 2}, - [4657] = {.lex_state = 149, .external_lex_state = 5}, - [4658] = {.lex_state = 4, .external_lex_state = 2}, - [4659] = {.lex_state = 149, .external_lex_state = 5}, - [4660] = {.lex_state = 149, .external_lex_state = 5}, - [4661] = {.lex_state = 149, .external_lex_state = 5}, - [4662] = {.lex_state = 149, .external_lex_state = 2}, - [4663] = {.lex_state = 149, .external_lex_state = 2}, - [4664] = {.lex_state = 149, .external_lex_state = 5}, - [4665] = {.lex_state = 149, .external_lex_state = 5}, - [4666] = {.lex_state = 149, .external_lex_state = 5}, - [4667] = {.lex_state = 149, .external_lex_state = 5}, - [4668] = {.lex_state = 149, .external_lex_state = 2}, - [4669] = {.lex_state = 149, .external_lex_state = 5}, - [4670] = {.lex_state = 149, .external_lex_state = 2}, - [4671] = {.lex_state = 149, .external_lex_state = 2}, - [4672] = {.lex_state = 149, .external_lex_state = 5}, - [4673] = {.lex_state = 149, .external_lex_state = 2}, - [4674] = {.lex_state = 149, .external_lex_state = 5}, - [4675] = {.lex_state = 149, .external_lex_state = 5}, - [4676] = {.lex_state = 149, .external_lex_state = 5}, - [4677] = {.lex_state = 149, .external_lex_state = 2}, - [4678] = {.lex_state = 149, .external_lex_state = 2}, - [4679] = {.lex_state = 149, .external_lex_state = 2}, - [4680] = {.lex_state = 149, .external_lex_state = 2}, - [4681] = {.lex_state = 149, .external_lex_state = 2}, - [4682] = {.lex_state = 149, .external_lex_state = 2}, - [4683] = {.lex_state = 149, .external_lex_state = 5}, - [4684] = {.lex_state = 149, .external_lex_state = 5}, - [4685] = {.lex_state = 149, .external_lex_state = 2}, - [4686] = {.lex_state = 149, .external_lex_state = 2}, - [4687] = {.lex_state = 149, .external_lex_state = 2}, - [4688] = {.lex_state = 149, .external_lex_state = 2}, - [4689] = {.lex_state = 149, .external_lex_state = 2}, - [4690] = {.lex_state = 149, .external_lex_state = 2}, - [4691] = {.lex_state = 149, .external_lex_state = 5}, - [4692] = {.lex_state = 149, .external_lex_state = 2}, - [4693] = {.lex_state = 149, .external_lex_state = 2}, - [4694] = {.lex_state = 149, .external_lex_state = 5}, - [4695] = {.lex_state = 149, .external_lex_state = 2}, - [4696] = {.lex_state = 149, .external_lex_state = 2}, - [4697] = {.lex_state = 149, .external_lex_state = 5}, - [4698] = {.lex_state = 149, .external_lex_state = 5}, - [4699] = {.lex_state = 149, .external_lex_state = 2}, - [4700] = {.lex_state = 149, .external_lex_state = 2}, - [4701] = {.lex_state = 149, .external_lex_state = 5}, - [4702] = {.lex_state = 149, .external_lex_state = 5}, - [4703] = {.lex_state = 149, .external_lex_state = 5}, - [4704] = {.lex_state = 149, .external_lex_state = 5}, - [4705] = {.lex_state = 149, .external_lex_state = 2}, - [4706] = {.lex_state = 149, .external_lex_state = 2}, - [4707] = {.lex_state = 149, .external_lex_state = 5}, - [4708] = {.lex_state = 149, .external_lex_state = 5}, - [4709] = {.lex_state = 149, .external_lex_state = 5}, - [4710] = {.lex_state = 149, .external_lex_state = 5}, - [4711] = {.lex_state = 149, .external_lex_state = 5}, - [4712] = {.lex_state = 149, .external_lex_state = 5}, - [4713] = {.lex_state = 149, .external_lex_state = 2}, - [4714] = {.lex_state = 149, .external_lex_state = 5}, - [4715] = {.lex_state = 149, .external_lex_state = 2}, - [4716] = {.lex_state = 149, .external_lex_state = 2}, - [4717] = {.lex_state = 149, .external_lex_state = 5}, - [4718] = {.lex_state = 4, .external_lex_state = 2}, - [4719] = {.lex_state = 149, .external_lex_state = 5}, - [4720] = {.lex_state = 149, .external_lex_state = 5}, - [4721] = {.lex_state = 149, .external_lex_state = 2}, - [4722] = {.lex_state = 149, .external_lex_state = 5}, - [4723] = {.lex_state = 149, .external_lex_state = 2}, - [4724] = {.lex_state = 149, .external_lex_state = 5}, - [4725] = {.lex_state = 149, .external_lex_state = 5}, - [4726] = {.lex_state = 149, .external_lex_state = 5}, - [4727] = {.lex_state = 149, .external_lex_state = 5}, - [4728] = {.lex_state = 149, .external_lex_state = 5}, - [4729] = {.lex_state = 149, .external_lex_state = 5}, - [4730] = {.lex_state = 149, .external_lex_state = 2}, - [4731] = {.lex_state = 149, .external_lex_state = 5}, - [4732] = {.lex_state = 149, .external_lex_state = 2}, - [4733] = {.lex_state = 149, .external_lex_state = 5}, - [4734] = {.lex_state = 149, .external_lex_state = 5}, - [4735] = {.lex_state = 149, .external_lex_state = 5}, - [4736] = {.lex_state = 149, .external_lex_state = 2}, - [4737] = {.lex_state = 149, .external_lex_state = 2}, - [4738] = {.lex_state = 149, .external_lex_state = 5}, - [4739] = {.lex_state = 149, .external_lex_state = 5}, - [4740] = {.lex_state = 149, .external_lex_state = 5}, - [4741] = {.lex_state = 149, .external_lex_state = 5}, - [4742] = {.lex_state = 149, .external_lex_state = 2}, - [4743] = {.lex_state = 149, .external_lex_state = 5}, - [4744] = {.lex_state = 149, .external_lex_state = 5}, - [4745] = {.lex_state = 149, .external_lex_state = 5}, - [4746] = {.lex_state = 149, .external_lex_state = 5}, - [4747] = {.lex_state = 149, .external_lex_state = 2}, - [4748] = {.lex_state = 149, .external_lex_state = 5}, - [4749] = {.lex_state = 149, .external_lex_state = 2}, - [4750] = {.lex_state = 149, .external_lex_state = 2}, - [4751] = {.lex_state = 149, .external_lex_state = 5}, - [4752] = {.lex_state = 149, .external_lex_state = 5}, - [4753] = {.lex_state = 149, .external_lex_state = 5}, - [4754] = {.lex_state = 149, .external_lex_state = 5}, - [4755] = {.lex_state = 149, .external_lex_state = 5}, - [4756] = {.lex_state = 149, .external_lex_state = 2}, - [4757] = {.lex_state = 149, .external_lex_state = 5}, - [4758] = {.lex_state = 149, .external_lex_state = 5}, - [4759] = {.lex_state = 149, .external_lex_state = 5}, - [4760] = {.lex_state = 149, .external_lex_state = 2}, - [4761] = {.lex_state = 149, .external_lex_state = 5}, - [4762] = {.lex_state = 149, .external_lex_state = 2}, - [4763] = {.lex_state = 149, .external_lex_state = 5}, - [4764] = {.lex_state = 149, .external_lex_state = 2}, - [4765] = {.lex_state = 149, .external_lex_state = 2}, - [4766] = {.lex_state = 149, .external_lex_state = 5}, - [4767] = {.lex_state = 149, .external_lex_state = 5}, - [4768] = {.lex_state = 149, .external_lex_state = 5}, - [4769] = {.lex_state = 149, .external_lex_state = 5}, - [4770] = {.lex_state = 149, .external_lex_state = 5}, - [4771] = {.lex_state = 149, .external_lex_state = 5}, - [4772] = {.lex_state = 149, .external_lex_state = 5}, - [4773] = {.lex_state = 149, .external_lex_state = 5}, - [4774] = {.lex_state = 149, .external_lex_state = 5}, - [4775] = {.lex_state = 149, .external_lex_state = 5}, - [4776] = {.lex_state = 149, .external_lex_state = 5}, - [4777] = {.lex_state = 149, .external_lex_state = 2}, - [4778] = {.lex_state = 149, .external_lex_state = 5}, - [4779] = {.lex_state = 149, .external_lex_state = 5}, - [4780] = {.lex_state = 149, .external_lex_state = 5}, - [4781] = {.lex_state = 149, .external_lex_state = 5}, - [4782] = {.lex_state = 149, .external_lex_state = 5}, - [4783] = {.lex_state = 149, .external_lex_state = 5}, - [4784] = {.lex_state = 149, .external_lex_state = 5}, - [4785] = {.lex_state = 149, .external_lex_state = 5}, - [4786] = {.lex_state = 149, .external_lex_state = 5}, - [4787] = {.lex_state = 149, .external_lex_state = 5}, - [4788] = {.lex_state = 149, .external_lex_state = 5}, - [4789] = {.lex_state = 149, .external_lex_state = 5}, - [4790] = {.lex_state = 149, .external_lex_state = 5}, - [4791] = {.lex_state = 4, .external_lex_state = 2}, - [4792] = {.lex_state = 149, .external_lex_state = 5}, - [4793] = {.lex_state = 149, .external_lex_state = 5}, - [4794] = {.lex_state = 149, .external_lex_state = 2}, - [4795] = {.lex_state = 149, .external_lex_state = 5}, - [4796] = {.lex_state = 149, .external_lex_state = 5}, - [4797] = {.lex_state = 149, .external_lex_state = 2}, - [4798] = {.lex_state = 149, .external_lex_state = 5}, - [4799] = {.lex_state = 149, .external_lex_state = 5}, - [4800] = {.lex_state = 149, .external_lex_state = 5}, - [4801] = {.lex_state = 149, .external_lex_state = 2}, - [4802] = {.lex_state = 149, .external_lex_state = 2}, - [4803] = {.lex_state = 149, .external_lex_state = 2}, - [4804] = {.lex_state = 149, .external_lex_state = 5}, - [4805] = {.lex_state = 149, .external_lex_state = 5}, - [4806] = {.lex_state = 149, .external_lex_state = 5}, - [4807] = {.lex_state = 149, .external_lex_state = 5}, - [4808] = {.lex_state = 149, .external_lex_state = 5}, - [4809] = {.lex_state = 149, .external_lex_state = 5}, - [4810] = {.lex_state = 149, .external_lex_state = 5}, - [4811] = {.lex_state = 149, .external_lex_state = 5}, - [4812] = {.lex_state = 149, .external_lex_state = 5}, - [4813] = {.lex_state = 149, .external_lex_state = 5}, - [4814] = {.lex_state = 149, .external_lex_state = 5}, - [4815] = {.lex_state = 149, .external_lex_state = 5}, - [4816] = {.lex_state = 149, .external_lex_state = 2}, - [4817] = {.lex_state = 149, .external_lex_state = 5}, - [4818] = {.lex_state = 149, .external_lex_state = 5}, - [4819] = {.lex_state = 149, .external_lex_state = 5}, - [4820] = {.lex_state = 149, .external_lex_state = 5}, - [4821] = {.lex_state = 149, .external_lex_state = 5}, - [4822] = {.lex_state = 149, .external_lex_state = 5}, - [4823] = {.lex_state = 149, .external_lex_state = 5}, - [4824] = {.lex_state = 149, .external_lex_state = 5}, - [4825] = {.lex_state = 149, .external_lex_state = 5}, - [4826] = {.lex_state = 149, .external_lex_state = 5}, - [4827] = {.lex_state = 149, .external_lex_state = 2}, - [4828] = {.lex_state = 149, .external_lex_state = 5}, - [4829] = {.lex_state = 149, .external_lex_state = 2}, - [4830] = {.lex_state = 149, .external_lex_state = 2}, - [4831] = {.lex_state = 149, .external_lex_state = 2}, - [4832] = {.lex_state = 149, .external_lex_state = 5}, - [4833] = {.lex_state = 149, .external_lex_state = 5}, - [4834] = {.lex_state = 149, .external_lex_state = 2}, - [4835] = {.lex_state = 149, .external_lex_state = 5}, - [4836] = {.lex_state = 149, .external_lex_state = 5}, - [4837] = {.lex_state = 149, .external_lex_state = 5}, - [4838] = {.lex_state = 149, .external_lex_state = 2}, - [4839] = {.lex_state = 149, .external_lex_state = 5}, - [4840] = {.lex_state = 149, .external_lex_state = 5}, - [4841] = {.lex_state = 149, .external_lex_state = 2}, - [4842] = {.lex_state = 149, .external_lex_state = 5}, - [4843] = {.lex_state = 4, .external_lex_state = 2}, - [4844] = {.lex_state = 149, .external_lex_state = 2}, - [4845] = {.lex_state = 149, .external_lex_state = 5}, - [4846] = {.lex_state = 149, .external_lex_state = 5}, - [4847] = {.lex_state = 149, .external_lex_state = 5}, - [4848] = {.lex_state = 149, .external_lex_state = 5}, - [4849] = {.lex_state = 149, .external_lex_state = 5}, - [4850] = {.lex_state = 149, .external_lex_state = 5}, - [4851] = {.lex_state = 149, .external_lex_state = 5}, - [4852] = {.lex_state = 149, .external_lex_state = 5}, - [4853] = {.lex_state = 149, .external_lex_state = 5}, - [4854] = {.lex_state = 149, .external_lex_state = 2}, - [4855] = {.lex_state = 149, .external_lex_state = 5}, - [4856] = {.lex_state = 149, .external_lex_state = 2}, - [4857] = {.lex_state = 149, .external_lex_state = 5}, - [4858] = {.lex_state = 149, .external_lex_state = 5}, - [4859] = {.lex_state = 149, .external_lex_state = 5}, - [4860] = {.lex_state = 149, .external_lex_state = 5}, - [4861] = {.lex_state = 149, .external_lex_state = 5}, - [4862] = {.lex_state = 149, .external_lex_state = 5}, - [4863] = {.lex_state = 149, .external_lex_state = 5}, - [4864] = {.lex_state = 149, .external_lex_state = 5}, - [4865] = {.lex_state = 149, .external_lex_state = 5}, - [4866] = {.lex_state = 4, .external_lex_state = 2}, - [4867] = {.lex_state = 149, .external_lex_state = 5}, - [4868] = {.lex_state = 149, .external_lex_state = 2}, - [4869] = {.lex_state = 149, .external_lex_state = 5}, - [4870] = {.lex_state = 149, .external_lex_state = 2}, - [4871] = {.lex_state = 149, .external_lex_state = 5}, - [4872] = {.lex_state = 149, .external_lex_state = 2}, - [4873] = {.lex_state = 149, .external_lex_state = 5}, - [4874] = {.lex_state = 149, .external_lex_state = 5}, - [4875] = {.lex_state = 149, .external_lex_state = 2}, - [4876] = {.lex_state = 149, .external_lex_state = 2}, - [4877] = {.lex_state = 149, .external_lex_state = 5}, - [4878] = {.lex_state = 149, .external_lex_state = 5}, - [4879] = {.lex_state = 149, .external_lex_state = 2}, - [4880] = {.lex_state = 149, .external_lex_state = 5}, - [4881] = {.lex_state = 149, .external_lex_state = 5}, - [4882] = {.lex_state = 149, .external_lex_state = 5}, - [4883] = {.lex_state = 149, .external_lex_state = 5}, - [4884] = {.lex_state = 149, .external_lex_state = 5}, - [4885] = {.lex_state = 149, .external_lex_state = 5}, - [4886] = {.lex_state = 149, .external_lex_state = 5}, - [4887] = {.lex_state = 149, .external_lex_state = 5}, - [4888] = {.lex_state = 149, .external_lex_state = 5}, - [4889] = {.lex_state = 149, .external_lex_state = 5}, - [4890] = {.lex_state = 149, .external_lex_state = 5}, - [4891] = {.lex_state = 149, .external_lex_state = 5}, - [4892] = {.lex_state = 149, .external_lex_state = 5}, - [4893] = {.lex_state = 149, .external_lex_state = 5}, - [4894] = {.lex_state = 149, .external_lex_state = 5}, - [4895] = {.lex_state = 149, .external_lex_state = 2}, - [4896] = {.lex_state = 149, .external_lex_state = 5}, - [4897] = {.lex_state = 149, .external_lex_state = 2}, - [4898] = {.lex_state = 149, .external_lex_state = 2}, - [4899] = {.lex_state = 149, .external_lex_state = 2}, - [4900] = {.lex_state = 149, .external_lex_state = 2}, - [4901] = {.lex_state = 149, .external_lex_state = 5}, - [4902] = {.lex_state = 149, .external_lex_state = 2}, - [4903] = {.lex_state = 149, .external_lex_state = 2}, - [4904] = {.lex_state = 149, .external_lex_state = 2}, - [4905] = {.lex_state = 149, .external_lex_state = 2}, - [4906] = {.lex_state = 149, .external_lex_state = 2}, - [4907] = {.lex_state = 149, .external_lex_state = 2}, - [4908] = {.lex_state = 149, .external_lex_state = 5}, - [4909] = {.lex_state = 149, .external_lex_state = 2}, - [4910] = {.lex_state = 149, .external_lex_state = 5}, - [4911] = {.lex_state = 149, .external_lex_state = 5}, - [4912] = {.lex_state = 149, .external_lex_state = 2}, - [4913] = {.lex_state = 149, .external_lex_state = 5}, - [4914] = {.lex_state = 1, .external_lex_state = 2}, - [4915] = {.lex_state = 149, .external_lex_state = 5}, - [4916] = {.lex_state = 149, .external_lex_state = 5}, - [4917] = {.lex_state = 149, .external_lex_state = 5}, - [4918] = {.lex_state = 149, .external_lex_state = 5}, - [4919] = {.lex_state = 149, .external_lex_state = 5}, - [4920] = {.lex_state = 149, .external_lex_state = 5}, - [4921] = {.lex_state = 149, .external_lex_state = 5}, - [4922] = {.lex_state = 149, .external_lex_state = 2}, - [4923] = {.lex_state = 149, .external_lex_state = 5}, - [4924] = {.lex_state = 149, .external_lex_state = 5}, - [4925] = {.lex_state = 149, .external_lex_state = 2}, - [4926] = {.lex_state = 149, .external_lex_state = 5}, - [4927] = {.lex_state = 149, .external_lex_state = 5}, - [4928] = {.lex_state = 149, .external_lex_state = 5}, - [4929] = {.lex_state = 149, .external_lex_state = 2}, - [4930] = {.lex_state = 149, .external_lex_state = 2}, - [4931] = {.lex_state = 149, .external_lex_state = 5}, - [4932] = {.lex_state = 4, .external_lex_state = 2}, - [4933] = {.lex_state = 149, .external_lex_state = 2}, - [4934] = {.lex_state = 149, .external_lex_state = 2}, - [4935] = {.lex_state = 149, .external_lex_state = 2}, - [4936] = {.lex_state = 149, .external_lex_state = 5}, - [4937] = {.lex_state = 149, .external_lex_state = 5}, - [4938] = {.lex_state = 149, .external_lex_state = 2}, - [4939] = {.lex_state = 149, .external_lex_state = 5}, - [4940] = {.lex_state = 149, .external_lex_state = 2}, - [4941] = {.lex_state = 149, .external_lex_state = 5}, - [4942] = {.lex_state = 149, .external_lex_state = 2}, - [4943] = {.lex_state = 149, .external_lex_state = 5}, - [4944] = {.lex_state = 149, .external_lex_state = 5}, - [4945] = {.lex_state = 149, .external_lex_state = 5}, - [4946] = {.lex_state = 149, .external_lex_state = 5}, - [4947] = {.lex_state = 149, .external_lex_state = 5}, - [4948] = {.lex_state = 149, .external_lex_state = 5}, - [4949] = {.lex_state = 149, .external_lex_state = 5}, - [4950] = {.lex_state = 149, .external_lex_state = 5}, - [4951] = {.lex_state = 149, .external_lex_state = 5}, - [4952] = {.lex_state = 149, .external_lex_state = 5}, - [4953] = {.lex_state = 149, .external_lex_state = 5}, - [4954] = {.lex_state = 149, .external_lex_state = 5}, - [4955] = {.lex_state = 149, .external_lex_state = 5}, - [4956] = {.lex_state = 149, .external_lex_state = 5}, - [4957] = {.lex_state = 149, .external_lex_state = 2}, - [4958] = {.lex_state = 149, .external_lex_state = 2}, - [4959] = {.lex_state = 149, .external_lex_state = 5}, - [4960] = {.lex_state = 149, .external_lex_state = 5}, - [4961] = {.lex_state = 149, .external_lex_state = 5}, - [4962] = {.lex_state = 149, .external_lex_state = 5}, - [4963] = {.lex_state = 149, .external_lex_state = 5}, - [4964] = {.lex_state = 149, .external_lex_state = 5}, - [4965] = {.lex_state = 149, .external_lex_state = 5}, - [4966] = {.lex_state = 149, .external_lex_state = 5}, - [4967] = {.lex_state = 149, .external_lex_state = 5}, - [4968] = {.lex_state = 149, .external_lex_state = 5}, - [4969] = {.lex_state = 149, .external_lex_state = 5}, - [4970] = {.lex_state = 149, .external_lex_state = 5}, - [4971] = {.lex_state = 149, .external_lex_state = 5}, - [4972] = {.lex_state = 149, .external_lex_state = 5}, - [4973] = {.lex_state = 149, .external_lex_state = 5}, - [4974] = {.lex_state = 149, .external_lex_state = 5}, - [4975] = {.lex_state = 149, .external_lex_state = 5}, - [4976] = {.lex_state = 149, .external_lex_state = 5}, - [4977] = {.lex_state = 149, .external_lex_state = 2}, - [4978] = {.lex_state = 149, .external_lex_state = 5}, - [4979] = {.lex_state = 149, .external_lex_state = 5}, - [4980] = {.lex_state = 149, .external_lex_state = 2}, - [4981] = {.lex_state = 149, .external_lex_state = 2}, - [4982] = {.lex_state = 149, .external_lex_state = 5}, - [4983] = {.lex_state = 149, .external_lex_state = 2}, - [4984] = {.lex_state = 149, .external_lex_state = 2}, - [4985] = {.lex_state = 149, .external_lex_state = 5}, - [4986] = {.lex_state = 149, .external_lex_state = 2}, - [4987] = {.lex_state = 149, .external_lex_state = 5}, - [4988] = {.lex_state = 149, .external_lex_state = 5}, - [4989] = {.lex_state = 149, .external_lex_state = 5}, - [4990] = {.lex_state = 149, .external_lex_state = 5}, - [4991] = {.lex_state = 149, .external_lex_state = 5}, - [4992] = {.lex_state = 149, .external_lex_state = 5}, - [4993] = {.lex_state = 149, .external_lex_state = 5}, - [4994] = {.lex_state = 149, .external_lex_state = 5}, - [4995] = {.lex_state = 149, .external_lex_state = 5}, - [4996] = {.lex_state = 149, .external_lex_state = 5}, - [4997] = {.lex_state = 149, .external_lex_state = 5}, - [4998] = {.lex_state = 149, .external_lex_state = 5}, - [4999] = {.lex_state = 149, .external_lex_state = 5}, - [5000] = {.lex_state = 149, .external_lex_state = 5}, - [5001] = {.lex_state = 149, .external_lex_state = 2}, - [5002] = {.lex_state = 149, .external_lex_state = 2}, - [5003] = {.lex_state = 149, .external_lex_state = 5}, - [5004] = {.lex_state = 149, .external_lex_state = 5}, - [5005] = {.lex_state = 149, .external_lex_state = 2}, - [5006] = {.lex_state = 149, .external_lex_state = 2}, - [5007] = {.lex_state = 149, .external_lex_state = 5}, - [5008] = {.lex_state = 149, .external_lex_state = 5}, - [5009] = {.lex_state = 149, .external_lex_state = 2}, - [5010] = {.lex_state = 149, .external_lex_state = 5}, - [5011] = {.lex_state = 149, .external_lex_state = 5}, - [5012] = {.lex_state = 149, .external_lex_state = 5}, - [5013] = {.lex_state = 149, .external_lex_state = 2}, - [5014] = {.lex_state = 149, .external_lex_state = 5}, - [5015] = {.lex_state = 149, .external_lex_state = 5}, - [5016] = {.lex_state = 149, .external_lex_state = 5}, - [5017] = {.lex_state = 149, .external_lex_state = 5}, - [5018] = {.lex_state = 149, .external_lex_state = 5}, - [5019] = {.lex_state = 149, .external_lex_state = 2}, - [5020] = {.lex_state = 149, .external_lex_state = 2}, - [5021] = {.lex_state = 149, .external_lex_state = 5}, - [5022] = {.lex_state = 149, .external_lex_state = 5}, - [5023] = {.lex_state = 149, .external_lex_state = 5}, - [5024] = {.lex_state = 149, .external_lex_state = 5}, - [5025] = {.lex_state = 149, .external_lex_state = 5}, - [5026] = {.lex_state = 149, .external_lex_state = 5}, - [5027] = {.lex_state = 149, .external_lex_state = 5}, - [5028] = {.lex_state = 149, .external_lex_state = 5}, - [5029] = {.lex_state = 149, .external_lex_state = 5}, - [5030] = {.lex_state = 149, .external_lex_state = 5}, - [5031] = {.lex_state = 149, .external_lex_state = 2}, - [5032] = {.lex_state = 149, .external_lex_state = 5}, - [5033] = {.lex_state = 149, .external_lex_state = 5}, - [5034] = {.lex_state = 149, .external_lex_state = 5}, - [5035] = {.lex_state = 149, .external_lex_state = 5}, - [5036] = {.lex_state = 149, .external_lex_state = 5}, - [5037] = {.lex_state = 149, .external_lex_state = 2}, - [5038] = {.lex_state = 149, .external_lex_state = 5}, - [5039] = {.lex_state = 149, .external_lex_state = 5}, - [5040] = {.lex_state = 149, .external_lex_state = 5}, - [5041] = {.lex_state = 12, .external_lex_state = 2}, - [5042] = {.lex_state = 149, .external_lex_state = 5}, - [5043] = {.lex_state = 149, .external_lex_state = 5}, - [5044] = {.lex_state = 149, .external_lex_state = 5}, - [5045] = {.lex_state = 149, .external_lex_state = 2}, - [5046] = {.lex_state = 4, .external_lex_state = 2}, - [5047] = {.lex_state = 149, .external_lex_state = 2}, - [5048] = {.lex_state = 149, .external_lex_state = 2}, - [5049] = {.lex_state = 149, .external_lex_state = 5}, - [5050] = {.lex_state = 149, .external_lex_state = 5}, - [5051] = {.lex_state = 149, .external_lex_state = 5}, - [5052] = {.lex_state = 149, .external_lex_state = 5}, - [5053] = {.lex_state = 149, .external_lex_state = 5}, - [5054] = {.lex_state = 149, .external_lex_state = 5}, - [5055] = {.lex_state = 149, .external_lex_state = 5}, - [5056] = {.lex_state = 149, .external_lex_state = 5}, - [5057] = {.lex_state = 149, .external_lex_state = 5}, - [5058] = {.lex_state = 149, .external_lex_state = 5}, - [5059] = {.lex_state = 149, .external_lex_state = 5}, - [5060] = {.lex_state = 149, .external_lex_state = 5}, - [5061] = {.lex_state = 149, .external_lex_state = 5}, - [5062] = {.lex_state = 149, .external_lex_state = 5}, - [5063] = {.lex_state = 149, .external_lex_state = 5}, - [5064] = {.lex_state = 149, .external_lex_state = 5}, - [5065] = {.lex_state = 149, .external_lex_state = 2}, - [5066] = {.lex_state = 149, .external_lex_state = 5}, - [5067] = {.lex_state = 149, .external_lex_state = 5}, - [5068] = {.lex_state = 149, .external_lex_state = 5}, - [5069] = {.lex_state = 149, .external_lex_state = 5}, - [5070] = {.lex_state = 149, .external_lex_state = 2}, - [5071] = {.lex_state = 149, .external_lex_state = 5}, - [5072] = {.lex_state = 4, .external_lex_state = 2}, - [5073] = {.lex_state = 149, .external_lex_state = 5}, - [5074] = {.lex_state = 149, .external_lex_state = 5}, - [5075] = {.lex_state = 149, .external_lex_state = 5}, - [5076] = {.lex_state = 4, .external_lex_state = 2}, - [5077] = {.lex_state = 149, .external_lex_state = 5}, - [5078] = {.lex_state = 149, .external_lex_state = 5}, - [5079] = {.lex_state = 149, .external_lex_state = 5}, - [5080] = {.lex_state = 149, .external_lex_state = 5}, - [5081] = {.lex_state = 149, .external_lex_state = 5}, - [5082] = {.lex_state = 149, .external_lex_state = 5}, - [5083] = {.lex_state = 149, .external_lex_state = 5}, - [5084] = {.lex_state = 149, .external_lex_state = 5}, - [5085] = {.lex_state = 149, .external_lex_state = 5}, - [5086] = {.lex_state = 149, .external_lex_state = 5}, - [5087] = {.lex_state = 149, .external_lex_state = 5}, - [5088] = {.lex_state = 149, .external_lex_state = 2}, - [5089] = {.lex_state = 149, .external_lex_state = 5}, - [5090] = {.lex_state = 149, .external_lex_state = 5}, - [5091] = {.lex_state = 149, .external_lex_state = 2}, - [5092] = {.lex_state = 149, .external_lex_state = 5}, - [5093] = {.lex_state = 149, .external_lex_state = 2}, - [5094] = {.lex_state = 149, .external_lex_state = 5}, - [5095] = {.lex_state = 149, .external_lex_state = 5}, - [5096] = {.lex_state = 149, .external_lex_state = 5}, - [5097] = {.lex_state = 149, .external_lex_state = 5}, - [5098] = {.lex_state = 149, .external_lex_state = 5}, - [5099] = {.lex_state = 149, .external_lex_state = 5}, - [5100] = {.lex_state = 149, .external_lex_state = 5}, - [5101] = {.lex_state = 149, .external_lex_state = 5}, - [5102] = {.lex_state = 149, .external_lex_state = 5}, - [5103] = {.lex_state = 149, .external_lex_state = 5}, - [5104] = {.lex_state = 149, .external_lex_state = 5}, - [5105] = {.lex_state = 149, .external_lex_state = 2}, - [5106] = {.lex_state = 149, .external_lex_state = 5}, - [5107] = {.lex_state = 149, .external_lex_state = 5}, - [5108] = {.lex_state = 149, .external_lex_state = 5}, - [5109] = {.lex_state = 149, .external_lex_state = 5}, - [5110] = {.lex_state = 149, .external_lex_state = 5}, - [5111] = {.lex_state = 149, .external_lex_state = 5}, - [5112] = {.lex_state = 149, .external_lex_state = 5}, - [5113] = {.lex_state = 149, .external_lex_state = 2}, - [5114] = {.lex_state = 149, .external_lex_state = 5}, - [5115] = {.lex_state = 149, .external_lex_state = 5}, - [5116] = {.lex_state = 149, .external_lex_state = 5}, - [5117] = {.lex_state = 149, .external_lex_state = 5}, - [5118] = {.lex_state = 149, .external_lex_state = 5}, - [5119] = {.lex_state = 149, .external_lex_state = 2}, - [5120] = {.lex_state = 149, .external_lex_state = 5}, - [5121] = {.lex_state = 149, .external_lex_state = 5}, - [5122] = {.lex_state = 149, .external_lex_state = 5}, - [5123] = {.lex_state = 149, .external_lex_state = 5}, - [5124] = {.lex_state = 149, .external_lex_state = 5}, - [5125] = {.lex_state = 149, .external_lex_state = 5}, - [5126] = {.lex_state = 149, .external_lex_state = 5}, - [5127] = {.lex_state = 149, .external_lex_state = 5}, - [5128] = {.lex_state = 149, .external_lex_state = 5}, - [5129] = {.lex_state = 149, .external_lex_state = 5}, - [5130] = {.lex_state = 149, .external_lex_state = 5}, - [5131] = {.lex_state = 149, .external_lex_state = 5}, - [5132] = {.lex_state = 149, .external_lex_state = 5}, - [5133] = {.lex_state = 149, .external_lex_state = 5}, - [5134] = {.lex_state = 149, .external_lex_state = 5}, - [5135] = {.lex_state = 149, .external_lex_state = 5}, - [5136] = {.lex_state = 149, .external_lex_state = 5}, - [5137] = {.lex_state = 149, .external_lex_state = 5}, - [5138] = {.lex_state = 149, .external_lex_state = 5}, - [5139] = {.lex_state = 149, .external_lex_state = 5}, - [5140] = {.lex_state = 149, .external_lex_state = 5}, - [5141] = {.lex_state = 149, .external_lex_state = 5}, - [5142] = {.lex_state = 149, .external_lex_state = 5}, - [5143] = {.lex_state = 149, .external_lex_state = 5}, - [5144] = {.lex_state = 149, .external_lex_state = 5}, - [5145] = {.lex_state = 149, .external_lex_state = 5}, - [5146] = {.lex_state = 149, .external_lex_state = 5}, - [5147] = {.lex_state = 149, .external_lex_state = 5}, - [5148] = {.lex_state = 149, .external_lex_state = 2}, - [5149] = {.lex_state = 149, .external_lex_state = 2}, - [5150] = {.lex_state = 149, .external_lex_state = 2}, - [5151] = {.lex_state = 149, .external_lex_state = 5}, - [5152] = {.lex_state = 149, .external_lex_state = 5}, - [5153] = {.lex_state = 149, .external_lex_state = 2}, - [5154] = {.lex_state = 149, .external_lex_state = 5}, - [5155] = {.lex_state = 149, .external_lex_state = 2}, - [5156] = {.lex_state = 12, .external_lex_state = 2}, - [5157] = {.lex_state = 149, .external_lex_state = 2}, - [5158] = {.lex_state = 149, .external_lex_state = 2}, - [5159] = {.lex_state = 149, .external_lex_state = 5}, - [5160] = {.lex_state = 149, .external_lex_state = 2}, - [5161] = {.lex_state = 149, .external_lex_state = 5}, - [5162] = {.lex_state = 1, .external_lex_state = 2}, - [5163] = {.lex_state = 149, .external_lex_state = 2}, - [5164] = {.lex_state = 4, .external_lex_state = 2}, - [5165] = {.lex_state = 149, .external_lex_state = 5}, - [5166] = {.lex_state = 4, .external_lex_state = 2}, - [5167] = {.lex_state = 149, .external_lex_state = 5}, - [5168] = {.lex_state = 1, .external_lex_state = 2}, - [5169] = {.lex_state = 149, .external_lex_state = 2}, - [5170] = {.lex_state = 149, .external_lex_state = 5}, - [5171] = {.lex_state = 149, .external_lex_state = 2}, - [5172] = {.lex_state = 149, .external_lex_state = 5}, - [5173] = {.lex_state = 149, .external_lex_state = 2}, - [5174] = {.lex_state = 149, .external_lex_state = 5}, - [5175] = {.lex_state = 149, .external_lex_state = 2}, - [5176] = {.lex_state = 149, .external_lex_state = 5}, - [5177] = {.lex_state = 149, .external_lex_state = 5}, - [5178] = {.lex_state = 149, .external_lex_state = 5}, - [5179] = {.lex_state = 149, .external_lex_state = 2}, - [5180] = {.lex_state = 149, .external_lex_state = 2}, - [5181] = {.lex_state = 149, .external_lex_state = 2}, - [5182] = {.lex_state = 149, .external_lex_state = 5}, - [5183] = {.lex_state = 149, .external_lex_state = 2}, - [5184] = {.lex_state = 149, .external_lex_state = 2}, - [5185] = {.lex_state = 149, .external_lex_state = 5}, - [5186] = {.lex_state = 149, .external_lex_state = 5}, - [5187] = {.lex_state = 149, .external_lex_state = 2}, - [5188] = {.lex_state = 149, .external_lex_state = 2}, - [5189] = {.lex_state = 149, .external_lex_state = 2}, - [5190] = {.lex_state = 149, .external_lex_state = 2}, - [5191] = {.lex_state = 149, .external_lex_state = 2}, - [5192] = {.lex_state = 149, .external_lex_state = 5}, - [5193] = {.lex_state = 149, .external_lex_state = 5}, - [5194] = {.lex_state = 149, .external_lex_state = 5}, - [5195] = {.lex_state = 149, .external_lex_state = 5}, - [5196] = {.lex_state = 149, .external_lex_state = 2}, - [5197] = {.lex_state = 149, .external_lex_state = 5}, - [5198] = {.lex_state = 12, .external_lex_state = 2}, - [5199] = {.lex_state = 149, .external_lex_state = 2}, - [5200] = {.lex_state = 149, .external_lex_state = 2}, - [5201] = {.lex_state = 1, .external_lex_state = 2}, - [5202] = {.lex_state = 149, .external_lex_state = 5}, - [5203] = {.lex_state = 149, .external_lex_state = 2}, - [5204] = {.lex_state = 149, .external_lex_state = 5}, - [5205] = {.lex_state = 149, .external_lex_state = 2}, - [5206] = {.lex_state = 149, .external_lex_state = 5}, - [5207] = {.lex_state = 149, .external_lex_state = 5}, - [5208] = {.lex_state = 149, .external_lex_state = 5}, - [5209] = {.lex_state = 149, .external_lex_state = 5}, - [5210] = {.lex_state = 149, .external_lex_state = 5}, - [5211] = {.lex_state = 149, .external_lex_state = 2}, - [5212] = {.lex_state = 149, .external_lex_state = 2}, - [5213] = {.lex_state = 149, .external_lex_state = 5}, - [5214] = {.lex_state = 149, .external_lex_state = 5}, - [5215] = {.lex_state = 149, .external_lex_state = 5}, - [5216] = {.lex_state = 149, .external_lex_state = 2}, - [5217] = {.lex_state = 149, .external_lex_state = 5}, - [5218] = {.lex_state = 23, .external_lex_state = 9}, - [5219] = {.lex_state = 149, .external_lex_state = 5}, - [5220] = {.lex_state = 149, .external_lex_state = 2}, - [5221] = {.lex_state = 149, .external_lex_state = 5}, - [5222] = {.lex_state = 149, .external_lex_state = 5}, - [5223] = {.lex_state = 149, .external_lex_state = 5}, - [5224] = {.lex_state = 149, .external_lex_state = 5}, - [5225] = {.lex_state = 149, .external_lex_state = 5}, - [5226] = {.lex_state = 149, .external_lex_state = 5}, - [5227] = {.lex_state = 149, .external_lex_state = 2}, - [5228] = {.lex_state = 149, .external_lex_state = 5}, - [5229] = {.lex_state = 149, .external_lex_state = 2}, - [5230] = {.lex_state = 149, .external_lex_state = 5}, - [5231] = {.lex_state = 149, .external_lex_state = 5}, - [5232] = {.lex_state = 149, .external_lex_state = 2}, - [5233] = {.lex_state = 149, .external_lex_state = 2}, - [5234] = {.lex_state = 149, .external_lex_state = 2}, - [5235] = {.lex_state = 149, .external_lex_state = 2}, - [5236] = {.lex_state = 149, .external_lex_state = 2}, - [5237] = {.lex_state = 149, .external_lex_state = 2}, - [5238] = {.lex_state = 149, .external_lex_state = 2}, - [5239] = {.lex_state = 149, .external_lex_state = 2}, - [5240] = {.lex_state = 149, .external_lex_state = 2}, - [5241] = {.lex_state = 149, .external_lex_state = 2}, - [5242] = {.lex_state = 149, .external_lex_state = 2}, - [5243] = {.lex_state = 149, .external_lex_state = 2}, - [5244] = {.lex_state = 149, .external_lex_state = 2}, - [5245] = {.lex_state = 149, .external_lex_state = 2}, - [5246] = {.lex_state = 149, .external_lex_state = 2}, - [5247] = {.lex_state = 149, .external_lex_state = 2}, - [5248] = {.lex_state = 149, .external_lex_state = 2}, - [5249] = {.lex_state = 149, .external_lex_state = 2}, - [5250] = {.lex_state = 149, .external_lex_state = 2}, - [5251] = {.lex_state = 149, .external_lex_state = 2}, - [5252] = {.lex_state = 149, .external_lex_state = 2}, - [5253] = {.lex_state = 149, .external_lex_state = 2}, - [5254] = {.lex_state = 149, .external_lex_state = 2}, - [5255] = {.lex_state = 149, .external_lex_state = 2}, - [5256] = {.lex_state = 149, .external_lex_state = 5}, - [5257] = {.lex_state = 149, .external_lex_state = 2}, - [5258] = {.lex_state = 149, .external_lex_state = 2}, - [5259] = {.lex_state = 149, .external_lex_state = 2}, - [5260] = {.lex_state = 149, .external_lex_state = 2}, - [5261] = {.lex_state = 149, .external_lex_state = 2}, - [5262] = {.lex_state = 149, .external_lex_state = 2}, - [5263] = {.lex_state = 149, .external_lex_state = 2}, - [5264] = {.lex_state = 149, .external_lex_state = 2}, - [5265] = {.lex_state = 149, .external_lex_state = 5}, - [5266] = {.lex_state = 149, .external_lex_state = 2}, - [5267] = {.lex_state = 149, .external_lex_state = 2}, - [5268] = {.lex_state = 149, .external_lex_state = 2}, - [5269] = {.lex_state = 149, .external_lex_state = 5}, - [5270] = {.lex_state = 149, .external_lex_state = 2}, - [5271] = {.lex_state = 149, .external_lex_state = 2}, - [5272] = {.lex_state = 149, .external_lex_state = 2}, - [5273] = {.lex_state = 149, .external_lex_state = 2}, - [5274] = {.lex_state = 149, .external_lex_state = 2}, - [5275] = {.lex_state = 149, .external_lex_state = 2}, - [5276] = {.lex_state = 149, .external_lex_state = 2}, - [5277] = {.lex_state = 149, .external_lex_state = 2}, - [5278] = {.lex_state = 149, .external_lex_state = 2}, - [5279] = {.lex_state = 149, .external_lex_state = 2}, - [5280] = {.lex_state = 149, .external_lex_state = 2}, - [5281] = {.lex_state = 149, .external_lex_state = 2}, - [5282] = {.lex_state = 149, .external_lex_state = 2}, - [5283] = {.lex_state = 149, .external_lex_state = 2}, - [5284] = {.lex_state = 149, .external_lex_state = 2}, - [5285] = {.lex_state = 149, .external_lex_state = 2}, - [5286] = {.lex_state = 149, .external_lex_state = 2}, - [5287] = {.lex_state = 149, .external_lex_state = 2}, - [5288] = {.lex_state = 149, .external_lex_state = 2}, - [5289] = {.lex_state = 149, .external_lex_state = 2}, - [5290] = {.lex_state = 149, .external_lex_state = 2}, - [5291] = {.lex_state = 149, .external_lex_state = 2}, - [5292] = {.lex_state = 149, .external_lex_state = 2}, - [5293] = {.lex_state = 149, .external_lex_state = 2}, - [5294] = {.lex_state = 149, .external_lex_state = 2}, - [5295] = {.lex_state = 149, .external_lex_state = 2}, - [5296] = {.lex_state = 149, .external_lex_state = 2}, - [5297] = {.lex_state = 149, .external_lex_state = 2}, - [5298] = {.lex_state = 149, .external_lex_state = 2}, - [5299] = {.lex_state = 149, .external_lex_state = 2}, - [5300] = {.lex_state = 16, .external_lex_state = 2}, - [5301] = {.lex_state = 149, .external_lex_state = 2}, - [5302] = {.lex_state = 149, .external_lex_state = 2}, - [5303] = {.lex_state = 149, .external_lex_state = 2}, - [5304] = {.lex_state = 149, .external_lex_state = 2}, - [5305] = {.lex_state = 149, .external_lex_state = 2}, - [5306] = {.lex_state = 149, .external_lex_state = 2}, - [5307] = {.lex_state = 149, .external_lex_state = 2}, - [5308] = {.lex_state = 149, .external_lex_state = 2}, - [5309] = {.lex_state = 149, .external_lex_state = 2}, - [5310] = {.lex_state = 149, .external_lex_state = 2}, - [5311] = {.lex_state = 149, .external_lex_state = 5}, - [5312] = {.lex_state = 149, .external_lex_state = 2}, - [5313] = {.lex_state = 149, .external_lex_state = 2}, - [5314] = {.lex_state = 149, .external_lex_state = 2}, - [5315] = {.lex_state = 149, .external_lex_state = 2}, - [5316] = {.lex_state = 149, .external_lex_state = 2}, - [5317] = {.lex_state = 149, .external_lex_state = 2}, - [5318] = {.lex_state = 149, .external_lex_state = 2}, - [5319] = {.lex_state = 149, .external_lex_state = 5}, - [5320] = {.lex_state = 149, .external_lex_state = 2}, - [5321] = {.lex_state = 149, .external_lex_state = 2}, - [5322] = {.lex_state = 149, .external_lex_state = 2}, - [5323] = {.lex_state = 149, .external_lex_state = 2}, - [5324] = {.lex_state = 149, .external_lex_state = 2}, - [5325] = {.lex_state = 149, .external_lex_state = 2}, - [5326] = {.lex_state = 149, .external_lex_state = 2}, - [5327] = {.lex_state = 149, .external_lex_state = 2}, - [5328] = {.lex_state = 149, .external_lex_state = 2}, - [5329] = {.lex_state = 149, .external_lex_state = 5}, - [5330] = {.lex_state = 149, .external_lex_state = 2}, - [5331] = {.lex_state = 149, .external_lex_state = 2}, - [5332] = {.lex_state = 149, .external_lex_state = 5}, - [5333] = {.lex_state = 149, .external_lex_state = 2}, - [5334] = {.lex_state = 149, .external_lex_state = 2}, - [5335] = {.lex_state = 149, .external_lex_state = 2}, - [5336] = {.lex_state = 149, .external_lex_state = 2}, - [5337] = {.lex_state = 149, .external_lex_state = 2}, - [5338] = {.lex_state = 149, .external_lex_state = 2}, - [5339] = {.lex_state = 149, .external_lex_state = 2}, - [5340] = {.lex_state = 149, .external_lex_state = 2}, - [5341] = {.lex_state = 149, .external_lex_state = 2}, - [5342] = {.lex_state = 149, .external_lex_state = 2}, - [5343] = {.lex_state = 149, .external_lex_state = 2}, - [5344] = {.lex_state = 149, .external_lex_state = 5}, - [5345] = {.lex_state = 149, .external_lex_state = 2}, - [5346] = {.lex_state = 149, .external_lex_state = 2}, - [5347] = {.lex_state = 149, .external_lex_state = 2}, - [5348] = {.lex_state = 149, .external_lex_state = 2}, - [5349] = {.lex_state = 149, .external_lex_state = 2}, - [5350] = {.lex_state = 149, .external_lex_state = 2}, - [5351] = {.lex_state = 149, .external_lex_state = 2}, - [5352] = {.lex_state = 149, .external_lex_state = 2}, - [5353] = {.lex_state = 149, .external_lex_state = 2}, - [5354] = {.lex_state = 149, .external_lex_state = 2}, - [5355] = {.lex_state = 149, .external_lex_state = 2}, - [5356] = {.lex_state = 149, .external_lex_state = 2}, - [5357] = {.lex_state = 149, .external_lex_state = 2}, - [5358] = {.lex_state = 149, .external_lex_state = 2}, - [5359] = {.lex_state = 149, .external_lex_state = 2}, - [5360] = {.lex_state = 149, .external_lex_state = 2}, - [5361] = {.lex_state = 149, .external_lex_state = 2}, - [5362] = {.lex_state = 149, .external_lex_state = 2}, - [5363] = {.lex_state = 149, .external_lex_state = 2}, - [5364] = {.lex_state = 149, .external_lex_state = 2}, - [5365] = {.lex_state = 149, .external_lex_state = 2}, - [5366] = {.lex_state = 149, .external_lex_state = 2}, - [5367] = {.lex_state = 149, .external_lex_state = 2}, - [5368] = {.lex_state = 149, .external_lex_state = 2}, - [5369] = {.lex_state = 149, .external_lex_state = 2}, - [5370] = {.lex_state = 149, .external_lex_state = 2}, - [5371] = {.lex_state = 149, .external_lex_state = 2}, - [5372] = {.lex_state = 149, .external_lex_state = 2}, - [5373] = {.lex_state = 149, .external_lex_state = 2}, - [5374] = {.lex_state = 149, .external_lex_state = 2}, - [5375] = {.lex_state = 149, .external_lex_state = 2}, - [5376] = {.lex_state = 149, .external_lex_state = 2}, - [5377] = {.lex_state = 149, .external_lex_state = 2}, - [5378] = {.lex_state = 149, .external_lex_state = 2}, - [5379] = {.lex_state = 149, .external_lex_state = 2}, - [5380] = {.lex_state = 149, .external_lex_state = 2}, - [5381] = {.lex_state = 149, .external_lex_state = 2}, - [5382] = {.lex_state = 149, .external_lex_state = 2}, - [5383] = {.lex_state = 149, .external_lex_state = 2}, - [5384] = {.lex_state = 149, .external_lex_state = 2}, - [5385] = {.lex_state = 149, .external_lex_state = 2}, - [5386] = {.lex_state = 149, .external_lex_state = 2}, - [5387] = {.lex_state = 149, .external_lex_state = 2}, - [5388] = {.lex_state = 149, .external_lex_state = 2}, - [5389] = {.lex_state = 149, .external_lex_state = 2}, - [5390] = {.lex_state = 149, .external_lex_state = 2}, - [5391] = {.lex_state = 149, .external_lex_state = 2}, - [5392] = {.lex_state = 149, .external_lex_state = 2}, - [5393] = {.lex_state = 149, .external_lex_state = 2}, - [5394] = {.lex_state = 149, .external_lex_state = 2}, - [5395] = {.lex_state = 149, .external_lex_state = 2}, - [5396] = {.lex_state = 149, .external_lex_state = 2}, - [5397] = {.lex_state = 149, .external_lex_state = 2}, - [5398] = {.lex_state = 149, .external_lex_state = 2}, - [5399] = {.lex_state = 149, .external_lex_state = 2}, - [5400] = {.lex_state = 149, .external_lex_state = 2}, - [5401] = {.lex_state = 149, .external_lex_state = 2}, - [5402] = {.lex_state = 149, .external_lex_state = 2}, - [5403] = {.lex_state = 149, .external_lex_state = 5}, - [5404] = {.lex_state = 149, .external_lex_state = 2}, - [5405] = {.lex_state = 149, .external_lex_state = 2}, - [5406] = {.lex_state = 149, .external_lex_state = 2}, - [5407] = {.lex_state = 149, .external_lex_state = 2}, - [5408] = {.lex_state = 149, .external_lex_state = 2}, - [5409] = {.lex_state = 149, .external_lex_state = 2}, - [5410] = {.lex_state = 149, .external_lex_state = 2}, - [5411] = {.lex_state = 149, .external_lex_state = 2}, - [5412] = {.lex_state = 149, .external_lex_state = 2}, - [5413] = {.lex_state = 149, .external_lex_state = 2}, - [5414] = {.lex_state = 149, .external_lex_state = 2}, - [5415] = {.lex_state = 149, .external_lex_state = 2}, - [5416] = {.lex_state = 149, .external_lex_state = 2}, - [5417] = {.lex_state = 149, .external_lex_state = 2}, - [5418] = {.lex_state = 149, .external_lex_state = 2}, - [5419] = {.lex_state = 149, .external_lex_state = 2}, - [5420] = {.lex_state = 149, .external_lex_state = 2}, - [5421] = {.lex_state = 149, .external_lex_state = 2}, - [5422] = {.lex_state = 149, .external_lex_state = 2}, - [5423] = {.lex_state = 149, .external_lex_state = 2}, - [5424] = {.lex_state = 149, .external_lex_state = 2}, - [5425] = {.lex_state = 149, .external_lex_state = 2}, - [5426] = {.lex_state = 149, .external_lex_state = 2}, - [5427] = {.lex_state = 149, .external_lex_state = 2}, - [5428] = {.lex_state = 149, .external_lex_state = 2}, - [5429] = {.lex_state = 149, .external_lex_state = 2}, - [5430] = {.lex_state = 149, .external_lex_state = 5}, - [5431] = {.lex_state = 149, .external_lex_state = 2}, - [5432] = {.lex_state = 149, .external_lex_state = 2}, - [5433] = {.lex_state = 149, .external_lex_state = 2}, - [5434] = {.lex_state = 149, .external_lex_state = 2}, - [5435] = {.lex_state = 149, .external_lex_state = 2}, - [5436] = {.lex_state = 149, .external_lex_state = 2}, - [5437] = {.lex_state = 149, .external_lex_state = 2}, - [5438] = {.lex_state = 149, .external_lex_state = 5}, - [5439] = {.lex_state = 149, .external_lex_state = 2}, - [5440] = {.lex_state = 149, .external_lex_state = 5}, - [5441] = {.lex_state = 149, .external_lex_state = 2}, - [5442] = {.lex_state = 149, .external_lex_state = 2}, - [5443] = {.lex_state = 149, .external_lex_state = 2}, - [5444] = {.lex_state = 149, .external_lex_state = 2}, - [5445] = {.lex_state = 149, .external_lex_state = 2}, - [5446] = {.lex_state = 149, .external_lex_state = 2}, - [5447] = {.lex_state = 149, .external_lex_state = 2}, - [5448] = {.lex_state = 149, .external_lex_state = 2}, - [5449] = {.lex_state = 149, .external_lex_state = 5}, - [5450] = {.lex_state = 149, .external_lex_state = 2}, - [5451] = {.lex_state = 149, .external_lex_state = 2}, - [5452] = {.lex_state = 149, .external_lex_state = 2}, - [5453] = {.lex_state = 149, .external_lex_state = 2}, - [5454] = {.lex_state = 149, .external_lex_state = 5}, - [5455] = {.lex_state = 149, .external_lex_state = 2}, - [5456] = {.lex_state = 149, .external_lex_state = 2}, - [5457] = {.lex_state = 149, .external_lex_state = 2}, - [5458] = {.lex_state = 149, .external_lex_state = 2}, - [5459] = {.lex_state = 149, .external_lex_state = 2}, - [5460] = {.lex_state = 149, .external_lex_state = 5}, - [5461] = {.lex_state = 149, .external_lex_state = 2}, - [5462] = {.lex_state = 149, .external_lex_state = 5}, - [5463] = {.lex_state = 149, .external_lex_state = 2}, - [5464] = {.lex_state = 149, .external_lex_state = 2}, - [5465] = {.lex_state = 149, .external_lex_state = 5}, - [5466] = {.lex_state = 149, .external_lex_state = 2}, - [5467] = {.lex_state = 149, .external_lex_state = 5}, - [5468] = {.lex_state = 149, .external_lex_state = 2}, - [5469] = {.lex_state = 149, .external_lex_state = 2}, - [5470] = {.lex_state = 149, .external_lex_state = 5}, - [5471] = {.lex_state = 149, .external_lex_state = 2}, - [5472] = {.lex_state = 149, .external_lex_state = 2}, - [5473] = {.lex_state = 149, .external_lex_state = 5}, - [5474] = {.lex_state = 149, .external_lex_state = 2}, - [5475] = {.lex_state = 149, .external_lex_state = 5}, - [5476] = {.lex_state = 149, .external_lex_state = 2}, - [5477] = {.lex_state = 149, .external_lex_state = 5}, - [5478] = {.lex_state = 149, .external_lex_state = 2}, - [5479] = {.lex_state = 149, .external_lex_state = 2}, - [5480] = {.lex_state = 149, .external_lex_state = 2}, - [5481] = {.lex_state = 149, .external_lex_state = 5}, - [5482] = {.lex_state = 149, .external_lex_state = 2}, - [5483] = {.lex_state = 149, .external_lex_state = 5}, - [5484] = {.lex_state = 149, .external_lex_state = 2}, - [5485] = {.lex_state = 149, .external_lex_state = 5}, - [5486] = {.lex_state = 149, .external_lex_state = 2}, - [5487] = {.lex_state = 149, .external_lex_state = 2}, - [5488] = {.lex_state = 149, .external_lex_state = 2}, - [5489] = {.lex_state = 149, .external_lex_state = 2}, - [5490] = {.lex_state = 149, .external_lex_state = 2}, - [5491] = {.lex_state = 149, .external_lex_state = 2}, - [5492] = {.lex_state = 149, .external_lex_state = 2}, - [5493] = {.lex_state = 149, .external_lex_state = 2}, - [5494] = {.lex_state = 149, .external_lex_state = 2}, - [5495] = {.lex_state = 149, .external_lex_state = 2}, - [5496] = {.lex_state = 149, .external_lex_state = 2}, - [5497] = {.lex_state = 149, .external_lex_state = 2}, - [5498] = {.lex_state = 149, .external_lex_state = 2}, - [5499] = {.lex_state = 149, .external_lex_state = 2}, - [5500] = {.lex_state = 149, .external_lex_state = 2}, - [5501] = {.lex_state = 149, .external_lex_state = 2}, - [5502] = {.lex_state = 149, .external_lex_state = 5}, - [5503] = {.lex_state = 149, .external_lex_state = 2}, - [5504] = {.lex_state = 149, .external_lex_state = 2}, - [5505] = {.lex_state = 149, .external_lex_state = 2}, - [5506] = {.lex_state = 149, .external_lex_state = 2}, - [5507] = {.lex_state = 149, .external_lex_state = 2}, - [5508] = {.lex_state = 149, .external_lex_state = 2}, - [5509] = {.lex_state = 149, .external_lex_state = 2}, - [5510] = {.lex_state = 149, .external_lex_state = 2}, - [5511] = {.lex_state = 149, .external_lex_state = 2}, - [5512] = {.lex_state = 149, .external_lex_state = 2}, - [5513] = {.lex_state = 149, .external_lex_state = 2}, - [5514] = {.lex_state = 149, .external_lex_state = 2}, - [5515] = {.lex_state = 149, .external_lex_state = 2}, - [5516] = {.lex_state = 149, .external_lex_state = 5}, - [5517] = {.lex_state = 149, .external_lex_state = 2}, - [5518] = {.lex_state = 149, .external_lex_state = 2}, - [5519] = {.lex_state = 149, .external_lex_state = 2}, - [5520] = {.lex_state = 149, .external_lex_state = 2}, - [5521] = {.lex_state = 149, .external_lex_state = 2}, - [5522] = {.lex_state = 149, .external_lex_state = 2}, - [5523] = {.lex_state = 149, .external_lex_state = 2}, - [5524] = {.lex_state = 149, .external_lex_state = 2}, - [5525] = {.lex_state = 149, .external_lex_state = 2}, - [5526] = {.lex_state = 149, .external_lex_state = 2}, - [5527] = {.lex_state = 149, .external_lex_state = 2}, - [5528] = {.lex_state = 149, .external_lex_state = 2}, - [5529] = {.lex_state = 149, .external_lex_state = 2}, - [5530] = {.lex_state = 149, .external_lex_state = 2}, - [5531] = {.lex_state = 149, .external_lex_state = 2}, - [5532] = {.lex_state = 149, .external_lex_state = 2}, - [5533] = {.lex_state = 149, .external_lex_state = 2}, - [5534] = {.lex_state = 149, .external_lex_state = 2}, - [5535] = {.lex_state = 149, .external_lex_state = 2}, - [5536] = {.lex_state = 149, .external_lex_state = 2}, - [5537] = {.lex_state = 149, .external_lex_state = 2}, - [5538] = {.lex_state = 149, .external_lex_state = 2}, - [5539] = {.lex_state = 149, .external_lex_state = 2}, - [5540] = {.lex_state = 149, .external_lex_state = 2}, - [5541] = {.lex_state = 149, .external_lex_state = 2}, - [5542] = {.lex_state = 149, .external_lex_state = 2}, - [5543] = {.lex_state = 149, .external_lex_state = 2}, - [5544] = {.lex_state = 149, .external_lex_state = 2}, - [5545] = {.lex_state = 149, .external_lex_state = 2}, - [5546] = {.lex_state = 149, .external_lex_state = 2}, - [5547] = {.lex_state = 149, .external_lex_state = 2}, - [5548] = {.lex_state = 149, .external_lex_state = 2}, - [5549] = {.lex_state = 149, .external_lex_state = 2}, - [5550] = {.lex_state = 149, .external_lex_state = 2}, - [5551] = {.lex_state = 149, .external_lex_state = 2}, - [5552] = {.lex_state = 149, .external_lex_state = 2}, - [5553] = {.lex_state = 149, .external_lex_state = 2}, - [5554] = {.lex_state = 149, .external_lex_state = 2}, - [5555] = {.lex_state = 149, .external_lex_state = 2}, - [5556] = {.lex_state = 149, .external_lex_state = 2}, - [5557] = {.lex_state = 149, .external_lex_state = 2}, - [5558] = {.lex_state = 149, .external_lex_state = 2}, - [5559] = {.lex_state = 149, .external_lex_state = 2}, - [5560] = {.lex_state = 149, .external_lex_state = 2}, - [5561] = {.lex_state = 149, .external_lex_state = 2}, - [5562] = {.lex_state = 149, .external_lex_state = 2}, - [5563] = {.lex_state = 149, .external_lex_state = 2}, - [5564] = {.lex_state = 149, .external_lex_state = 2}, - [5565] = {.lex_state = 149, .external_lex_state = 2}, - [5566] = {.lex_state = 149, .external_lex_state = 2}, - [5567] = {.lex_state = 149, .external_lex_state = 2}, - [5568] = {.lex_state = 149, .external_lex_state = 2}, - [5569] = {.lex_state = 149, .external_lex_state = 2}, - [5570] = {.lex_state = 149, .external_lex_state = 2}, - [5571] = {.lex_state = 149, .external_lex_state = 5}, - [5572] = {.lex_state = 149, .external_lex_state = 2}, - [5573] = {.lex_state = 149, .external_lex_state = 2}, - [5574] = {.lex_state = 149, .external_lex_state = 2}, - [5575] = {.lex_state = 149, .external_lex_state = 2}, - [5576] = {.lex_state = 149, .external_lex_state = 2}, - [5577] = {.lex_state = 149, .external_lex_state = 2}, - [5578] = {.lex_state = 149, .external_lex_state = 2}, - [5579] = {.lex_state = 149, .external_lex_state = 2}, - [5580] = {.lex_state = 149, .external_lex_state = 2}, - [5581] = {.lex_state = 149, .external_lex_state = 2}, - [5582] = {.lex_state = 149, .external_lex_state = 2}, - [5583] = {.lex_state = 149, .external_lex_state = 2}, - [5584] = {.lex_state = 149, .external_lex_state = 2}, - [5585] = {.lex_state = 149, .external_lex_state = 2}, - [5586] = {.lex_state = 149, .external_lex_state = 2}, - [5587] = {.lex_state = 149, .external_lex_state = 2}, - [5588] = {.lex_state = 149, .external_lex_state = 2}, - [5589] = {.lex_state = 149, .external_lex_state = 2}, - [5590] = {.lex_state = 149, .external_lex_state = 2}, - [5591] = {.lex_state = 149, .external_lex_state = 2}, - [5592] = {.lex_state = 149, .external_lex_state = 2}, - [5593] = {.lex_state = 149, .external_lex_state = 2}, - [5594] = {.lex_state = 149, .external_lex_state = 2}, - [5595] = {.lex_state = 38, .external_lex_state = 2}, - [5596] = {.lex_state = 149, .external_lex_state = 2}, - [5597] = {.lex_state = 149, .external_lex_state = 2}, - [5598] = {.lex_state = 149, .external_lex_state = 2}, - [5599] = {.lex_state = 149, .external_lex_state = 2}, - [5600] = {.lex_state = 149, .external_lex_state = 2}, - [5601] = {.lex_state = 149, .external_lex_state = 2}, - [5602] = {.lex_state = 149, .external_lex_state = 2}, - [5603] = {.lex_state = 149, .external_lex_state = 2}, - [5604] = {.lex_state = 149, .external_lex_state = 2}, - [5605] = {.lex_state = 149, .external_lex_state = 2}, - [5606] = {.lex_state = 149, .external_lex_state = 2}, - [5607] = {.lex_state = 149, .external_lex_state = 2}, - [5608] = {.lex_state = 149, .external_lex_state = 2}, - [5609] = {.lex_state = 149, .external_lex_state = 2}, - [5610] = {.lex_state = 149, .external_lex_state = 2}, - [5611] = {.lex_state = 149, .external_lex_state = 2}, - [5612] = {.lex_state = 149, .external_lex_state = 2}, - [5613] = {.lex_state = 149, .external_lex_state = 2}, - [5614] = {.lex_state = 149, .external_lex_state = 2}, - [5615] = {.lex_state = 149, .external_lex_state = 2}, - [5616] = {.lex_state = 149, .external_lex_state = 2}, - [5617] = {.lex_state = 149, .external_lex_state = 2}, - [5618] = {.lex_state = 149, .external_lex_state = 2}, - [5619] = {.lex_state = 149, .external_lex_state = 2}, - [5620] = {.lex_state = 149, .external_lex_state = 2}, - [5621] = {.lex_state = 149, .external_lex_state = 2}, - [5622] = {.lex_state = 149, .external_lex_state = 2}, - [5623] = {.lex_state = 149, .external_lex_state = 2}, - [5624] = {.lex_state = 149, .external_lex_state = 2}, - [5625] = {.lex_state = 149, .external_lex_state = 2}, - [5626] = {.lex_state = 149, .external_lex_state = 2}, - [5627] = {.lex_state = 149, .external_lex_state = 2}, - [5628] = {.lex_state = 149, .external_lex_state = 2}, - [5629] = {.lex_state = 149, .external_lex_state = 2}, - [5630] = {.lex_state = 149, .external_lex_state = 2}, - [5631] = {.lex_state = 149, .external_lex_state = 2}, - [5632] = {.lex_state = 149, .external_lex_state = 2}, - [5633] = {.lex_state = 149, .external_lex_state = 2}, - [5634] = {.lex_state = 149, .external_lex_state = 2}, - [5635] = {.lex_state = 149, .external_lex_state = 2}, - [5636] = {.lex_state = 149, .external_lex_state = 2}, - [5637] = {.lex_state = 149, .external_lex_state = 2}, - [5638] = {.lex_state = 149, .external_lex_state = 2}, - [5639] = {.lex_state = 149, .external_lex_state = 2}, - [5640] = {.lex_state = 149, .external_lex_state = 2}, - [5641] = {.lex_state = 149, .external_lex_state = 2}, - [5642] = {.lex_state = 149, .external_lex_state = 2}, - [5643] = {.lex_state = 149, .external_lex_state = 2}, - [5644] = {.lex_state = 149, .external_lex_state = 2}, - [5645] = {.lex_state = 149, .external_lex_state = 2}, - [5646] = {.lex_state = 149, .external_lex_state = 2}, - [5647] = {.lex_state = 149, .external_lex_state = 2}, - [5648] = {.lex_state = 149, .external_lex_state = 2}, - [5649] = {.lex_state = 149, .external_lex_state = 2}, - [5650] = {.lex_state = 149, .external_lex_state = 2}, - [5651] = {.lex_state = 149, .external_lex_state = 2}, - [5652] = {.lex_state = 149, .external_lex_state = 2}, - [5653] = {.lex_state = 149, .external_lex_state = 2}, - [5654] = {.lex_state = 149, .external_lex_state = 2}, - [5655] = {.lex_state = 149, .external_lex_state = 2}, - [5656] = {.lex_state = 149, .external_lex_state = 2}, - [5657] = {.lex_state = 149, .external_lex_state = 2}, - [5658] = {.lex_state = 149, .external_lex_state = 2}, - [5659] = {.lex_state = 149, .external_lex_state = 2}, - [5660] = {.lex_state = 149, .external_lex_state = 2}, - [5661] = {.lex_state = 149, .external_lex_state = 2}, - [5662] = {.lex_state = 149, .external_lex_state = 2}, - [5663] = {.lex_state = 149, .external_lex_state = 2}, - [5664] = {.lex_state = 149, .external_lex_state = 2}, - [5665] = {.lex_state = 149, .external_lex_state = 2}, - [5666] = {.lex_state = 149, .external_lex_state = 2}, - [5667] = {.lex_state = 149, .external_lex_state = 2}, - [5668] = {.lex_state = 149, .external_lex_state = 2}, - [5669] = {.lex_state = 149, .external_lex_state = 2}, - [5670] = {.lex_state = 149, .external_lex_state = 2}, - [5671] = {.lex_state = 149, .external_lex_state = 2}, - [5672] = {.lex_state = 149, .external_lex_state = 2}, - [5673] = {.lex_state = 149, .external_lex_state = 2}, - [5674] = {.lex_state = 38, .external_lex_state = 2}, - [5675] = {.lex_state = 149, .external_lex_state = 2}, - [5676] = {.lex_state = 149, .external_lex_state = 2}, - [5677] = {.lex_state = 149, .external_lex_state = 2}, - [5678] = {.lex_state = 149, .external_lex_state = 2}, - [5679] = {.lex_state = 149, .external_lex_state = 2}, - [5680] = {.lex_state = 149, .external_lex_state = 2}, - [5681] = {.lex_state = 149, .external_lex_state = 2}, - [5682] = {.lex_state = 149, .external_lex_state = 2}, - [5683] = {.lex_state = 149, .external_lex_state = 2}, - [5684] = {.lex_state = 149, .external_lex_state = 2}, - [5685] = {.lex_state = 149, .external_lex_state = 2}, - [5686] = {.lex_state = 149, .external_lex_state = 2}, - [5687] = {.lex_state = 2, .external_lex_state = 11}, - [5688] = {.lex_state = 149, .external_lex_state = 2}, - [5689] = {.lex_state = 149, .external_lex_state = 2}, - [5690] = {.lex_state = 149, .external_lex_state = 2}, - [5691] = {.lex_state = 149, .external_lex_state = 2}, - [5692] = {.lex_state = 149, .external_lex_state = 2}, - [5693] = {.lex_state = 149, .external_lex_state = 2}, - [5694] = {.lex_state = 149, .external_lex_state = 2}, - [5695] = {.lex_state = 149, .external_lex_state = 2}, - [5696] = {.lex_state = 149, .external_lex_state = 2}, - [5697] = {.lex_state = 149, .external_lex_state = 2}, - [5698] = {.lex_state = 149, .external_lex_state = 2}, - [5699] = {.lex_state = 149, .external_lex_state = 2}, - [5700] = {.lex_state = 149, .external_lex_state = 2}, - [5701] = {.lex_state = 149, .external_lex_state = 2}, - [5702] = {.lex_state = 149, .external_lex_state = 2}, - [5703] = {.lex_state = 149, .external_lex_state = 2}, - [5704] = {.lex_state = 149, .external_lex_state = 2}, - [5705] = {.lex_state = 149, .external_lex_state = 2}, - [5706] = {.lex_state = 149, .external_lex_state = 2}, - [5707] = {.lex_state = 149, .external_lex_state = 2}, - [5708] = {.lex_state = 149, .external_lex_state = 2}, - [5709] = {.lex_state = 149, .external_lex_state = 2}, - [5710] = {.lex_state = 149, .external_lex_state = 2}, - [5711] = {.lex_state = 149, .external_lex_state = 2}, - [5712] = {.lex_state = 149, .external_lex_state = 2}, - [5713] = {.lex_state = 149, .external_lex_state = 2}, - [5714] = {.lex_state = 149, .external_lex_state = 2}, - [5715] = {.lex_state = 149, .external_lex_state = 2}, - [5716] = {.lex_state = 149, .external_lex_state = 2}, - [5717] = {.lex_state = 149, .external_lex_state = 2}, - [5718] = {.lex_state = 149, .external_lex_state = 2}, - [5719] = {.lex_state = 149, .external_lex_state = 2}, - [5720] = {.lex_state = 149, .external_lex_state = 2}, - [5721] = {.lex_state = 149, .external_lex_state = 2}, - [5722] = {.lex_state = 149, .external_lex_state = 2}, - [5723] = {.lex_state = 149, .external_lex_state = 2}, - [5724] = {.lex_state = 149, .external_lex_state = 2}, - [5725] = {.lex_state = 149, .external_lex_state = 2}, - [5726] = {.lex_state = 149, .external_lex_state = 2}, - [5727] = {.lex_state = 149, .external_lex_state = 2}, - [5728] = {.lex_state = 149, .external_lex_state = 2}, - [5729] = {.lex_state = 149, .external_lex_state = 2}, - [5730] = {.lex_state = 149, .external_lex_state = 2}, - [5731] = {.lex_state = 149, .external_lex_state = 2}, - [5732] = {.lex_state = 149, .external_lex_state = 2}, - [5733] = {.lex_state = 149, .external_lex_state = 2}, - [5734] = {.lex_state = 149, .external_lex_state = 2}, - [5735] = {.lex_state = 149, .external_lex_state = 2}, - [5736] = {.lex_state = 149, .external_lex_state = 2}, - [5737] = {.lex_state = 149, .external_lex_state = 2}, - [5738] = {.lex_state = 149, .external_lex_state = 2}, - [5739] = {.lex_state = 149, .external_lex_state = 2}, - [5740] = {.lex_state = 149, .external_lex_state = 2}, - [5741] = {.lex_state = 149, .external_lex_state = 2}, - [5742] = {.lex_state = 149, .external_lex_state = 2}, - [5743] = {.lex_state = 149, .external_lex_state = 2}, - [5744] = {.lex_state = 149, .external_lex_state = 2}, - [5745] = {.lex_state = 149, .external_lex_state = 2}, - [5746] = {.lex_state = 149, .external_lex_state = 2}, - [5747] = {.lex_state = 149, .external_lex_state = 2}, - [5748] = {.lex_state = 149, .external_lex_state = 2}, - [5749] = {.lex_state = 149, .external_lex_state = 2}, - [5750] = {.lex_state = 149, .external_lex_state = 2}, - [5751] = {.lex_state = 149, .external_lex_state = 2}, - [5752] = {.lex_state = 149, .external_lex_state = 2}, - [5753] = {.lex_state = 149, .external_lex_state = 2}, - [5754] = {.lex_state = 149, .external_lex_state = 2}, - [5755] = {.lex_state = 149, .external_lex_state = 2}, - [5756] = {.lex_state = 149, .external_lex_state = 2}, - [5757] = {.lex_state = 149, .external_lex_state = 2}, - [5758] = {.lex_state = 149, .external_lex_state = 2}, - [5759] = {.lex_state = 149, .external_lex_state = 2}, - [5760] = {.lex_state = 149, .external_lex_state = 2}, - [5761] = {.lex_state = 149, .external_lex_state = 2}, - [5762] = {.lex_state = 149, .external_lex_state = 2}, - [5763] = {.lex_state = 149, .external_lex_state = 2}, - [5764] = {.lex_state = 2, .external_lex_state = 11}, - [5765] = {.lex_state = 149, .external_lex_state = 2}, - [5766] = {.lex_state = 149, .external_lex_state = 2}, - [5767] = {.lex_state = 149, .external_lex_state = 2}, - [5768] = {.lex_state = 149, .external_lex_state = 2}, - [5769] = {.lex_state = 149, .external_lex_state = 2}, - [5770] = {.lex_state = 149, .external_lex_state = 2}, - [5771] = {.lex_state = 149, .external_lex_state = 2}, - [5772] = {.lex_state = 38, .external_lex_state = 2}, - [5773] = {.lex_state = 149, .external_lex_state = 2}, - [5774] = {.lex_state = 149, .external_lex_state = 2}, - [5775] = {.lex_state = 149, .external_lex_state = 2}, - [5776] = {.lex_state = 149, .external_lex_state = 2}, - [5777] = {.lex_state = 149, .external_lex_state = 2}, - [5778] = {.lex_state = 149, .external_lex_state = 2}, - [5779] = {.lex_state = 149, .external_lex_state = 2}, - [5780] = {.lex_state = 149, .external_lex_state = 2}, - [5781] = {.lex_state = 149, .external_lex_state = 2}, - [5782] = {.lex_state = 149, .external_lex_state = 2}, - [5783] = {.lex_state = 149, .external_lex_state = 2}, - [5784] = {.lex_state = 149, .external_lex_state = 2}, - [5785] = {.lex_state = 149, .external_lex_state = 2}, - [5786] = {.lex_state = 149, .external_lex_state = 2}, - [5787] = {.lex_state = 149, .external_lex_state = 2}, - [5788] = {.lex_state = 149, .external_lex_state = 2}, - [5789] = {.lex_state = 2, .external_lex_state = 11}, - [5790] = {.lex_state = 149, .external_lex_state = 2}, - [5791] = {.lex_state = 149, .external_lex_state = 2}, - [5792] = {.lex_state = 149, .external_lex_state = 2}, - [5793] = {.lex_state = 149, .external_lex_state = 2}, - [5794] = {.lex_state = 149, .external_lex_state = 2}, - [5795] = {.lex_state = 149, .external_lex_state = 2}, - [5796] = {.lex_state = 149, .external_lex_state = 2}, - [5797] = {.lex_state = 149, .external_lex_state = 2}, - [5798] = {.lex_state = 149, .external_lex_state = 2}, - [5799] = {.lex_state = 149, .external_lex_state = 2}, - [5800] = {.lex_state = 149, .external_lex_state = 2}, - [5801] = {.lex_state = 149, .external_lex_state = 2}, - [5802] = {.lex_state = 149, .external_lex_state = 2}, - [5803] = {.lex_state = 149, .external_lex_state = 2}, - [5804] = {.lex_state = 149, .external_lex_state = 2}, - [5805] = {.lex_state = 149, .external_lex_state = 2}, - [5806] = {.lex_state = 149, .external_lex_state = 2}, - [5807] = {.lex_state = 149, .external_lex_state = 2}, - [5808] = {.lex_state = 149, .external_lex_state = 2}, - [5809] = {.lex_state = 149, .external_lex_state = 2}, - [5810] = {.lex_state = 149, .external_lex_state = 2}, - [5811] = {.lex_state = 149, .external_lex_state = 2}, - [5812] = {.lex_state = 149, .external_lex_state = 2}, - [5813] = {.lex_state = 149, .external_lex_state = 2}, - [5814] = {.lex_state = 149, .external_lex_state = 2}, - [5815] = {.lex_state = 149, .external_lex_state = 2}, - [5816] = {.lex_state = 149, .external_lex_state = 2}, - [5817] = {.lex_state = 149, .external_lex_state = 2}, - [5818] = {.lex_state = 149, .external_lex_state = 2}, - [5819] = {.lex_state = 149, .external_lex_state = 2}, - [5820] = {.lex_state = 149, .external_lex_state = 2}, - [5821] = {.lex_state = 149, .external_lex_state = 2}, - [5822] = {.lex_state = 149, .external_lex_state = 2}, - [5823] = {.lex_state = 149, .external_lex_state = 2}, - [5824] = {.lex_state = 149, .external_lex_state = 2}, - [5825] = {.lex_state = 149, .external_lex_state = 2}, - [5826] = {.lex_state = 149, .external_lex_state = 2}, - [5827] = {.lex_state = 149, .external_lex_state = 2}, - [5828] = {.lex_state = 149, .external_lex_state = 2}, - [5829] = {.lex_state = 149, .external_lex_state = 2}, - [5830] = {.lex_state = 149, .external_lex_state = 2}, - [5831] = {.lex_state = 149, .external_lex_state = 2}, - [5832] = {.lex_state = 149, .external_lex_state = 2}, - [5833] = {.lex_state = 149, .external_lex_state = 2}, - [5834] = {.lex_state = 149, .external_lex_state = 2}, - [5835] = {.lex_state = 149, .external_lex_state = 2}, - [5836] = {.lex_state = 149, .external_lex_state = 2}, - [5837] = {.lex_state = 149, .external_lex_state = 2}, - [5838] = {.lex_state = 149, .external_lex_state = 2}, - [5839] = {.lex_state = 149, .external_lex_state = 2}, - [5840] = {.lex_state = 149, .external_lex_state = 2}, - [5841] = {.lex_state = 149, .external_lex_state = 2}, - [5842] = {.lex_state = 149, .external_lex_state = 2}, - [5843] = {.lex_state = 149, .external_lex_state = 2}, - [5844] = {.lex_state = 149, .external_lex_state = 2}, - [5845] = {.lex_state = 149, .external_lex_state = 2}, - [5846] = {.lex_state = 149, .external_lex_state = 2}, - [5847] = {.lex_state = 149, .external_lex_state = 2}, - [5848] = {.lex_state = 149, .external_lex_state = 2}, - [5849] = {.lex_state = 149, .external_lex_state = 2}, - [5850] = {.lex_state = 149, .external_lex_state = 2}, - [5851] = {.lex_state = 149, .external_lex_state = 2}, - [5852] = {.lex_state = 149, .external_lex_state = 2}, - [5853] = {.lex_state = 149, .external_lex_state = 2}, - [5854] = {.lex_state = 149, .external_lex_state = 2}, - [5855] = {.lex_state = 149, .external_lex_state = 2}, - [5856] = {.lex_state = 149, .external_lex_state = 2}, - [5857] = {.lex_state = 149, .external_lex_state = 2}, - [5858] = {.lex_state = 149, .external_lex_state = 2}, - [5859] = {.lex_state = 149, .external_lex_state = 2}, - [5860] = {.lex_state = 2, .external_lex_state = 11}, - [5861] = {.lex_state = 149, .external_lex_state = 2}, - [5862] = {.lex_state = 149, .external_lex_state = 2}, - [5863] = {.lex_state = 149, .external_lex_state = 2}, - [5864] = {.lex_state = 149, .external_lex_state = 2}, - [5865] = {.lex_state = 149, .external_lex_state = 2}, - [5866] = {.lex_state = 149, .external_lex_state = 2}, - [5867] = {.lex_state = 149, .external_lex_state = 2}, - [5868] = {.lex_state = 149, .external_lex_state = 2}, - [5869] = {.lex_state = 149, .external_lex_state = 2}, - [5870] = {.lex_state = 149, .external_lex_state = 2}, - [5871] = {.lex_state = 149, .external_lex_state = 2}, - [5872] = {.lex_state = 149, .external_lex_state = 2}, - [5873] = {.lex_state = 149, .external_lex_state = 2}, - [5874] = {.lex_state = 149, .external_lex_state = 2}, - [5875] = {.lex_state = 149, .external_lex_state = 2}, - [5876] = {.lex_state = 149, .external_lex_state = 2}, - [5877] = {.lex_state = 149, .external_lex_state = 2}, - [5878] = {.lex_state = 149, .external_lex_state = 2}, - [5879] = {.lex_state = 149, .external_lex_state = 2}, - [5880] = {.lex_state = 149, .external_lex_state = 2}, - [5881] = {.lex_state = 149, .external_lex_state = 2}, - [5882] = {.lex_state = 149, .external_lex_state = 2}, - [5883] = {.lex_state = 149, .external_lex_state = 2}, - [5884] = {.lex_state = 149, .external_lex_state = 2}, - [5885] = {.lex_state = 149, .external_lex_state = 2}, - [5886] = {.lex_state = 149, .external_lex_state = 2}, - [5887] = {.lex_state = 149, .external_lex_state = 2}, - [5888] = {.lex_state = 149, .external_lex_state = 2}, - [5889] = {.lex_state = 149, .external_lex_state = 2}, - [5890] = {.lex_state = 149, .external_lex_state = 2}, - [5891] = {.lex_state = 149, .external_lex_state = 2}, - [5892] = {.lex_state = 149, .external_lex_state = 2}, - [5893] = {.lex_state = 149, .external_lex_state = 2}, - [5894] = {.lex_state = 149, .external_lex_state = 2}, - [5895] = {.lex_state = 149, .external_lex_state = 2}, - [5896] = {.lex_state = 149, .external_lex_state = 2}, - [5897] = {.lex_state = 149, .external_lex_state = 2}, - [5898] = {.lex_state = 149, .external_lex_state = 2}, - [5899] = {.lex_state = 149, .external_lex_state = 2}, - [5900] = {.lex_state = 149, .external_lex_state = 2}, - [5901] = {.lex_state = 149, .external_lex_state = 2}, - [5902] = {.lex_state = 149, .external_lex_state = 2}, - [5903] = {.lex_state = 149, .external_lex_state = 2}, - [5904] = {.lex_state = 149, .external_lex_state = 2}, - [5905] = {.lex_state = 149, .external_lex_state = 2}, - [5906] = {.lex_state = 149, .external_lex_state = 2}, - [5907] = {.lex_state = 149, .external_lex_state = 2}, - [5908] = {.lex_state = 149, .external_lex_state = 2}, - [5909] = {.lex_state = 149, .external_lex_state = 2}, - [5910] = {.lex_state = 149, .external_lex_state = 2}, - [5911] = {.lex_state = 149, .external_lex_state = 2}, - [5912] = {.lex_state = 38, .external_lex_state = 2}, - [5913] = {.lex_state = 149, .external_lex_state = 2}, - [5914] = {.lex_state = 149, .external_lex_state = 2}, - [5915] = {.lex_state = 149, .external_lex_state = 2}, - [5916] = {.lex_state = 149, .external_lex_state = 2}, - [5917] = {.lex_state = 149, .external_lex_state = 2}, - [5918] = {.lex_state = 149, .external_lex_state = 2}, - [5919] = {.lex_state = 149, .external_lex_state = 2}, - [5920] = {.lex_state = 149, .external_lex_state = 2}, - [5921] = {.lex_state = 149, .external_lex_state = 2}, - [5922] = {.lex_state = 149, .external_lex_state = 2}, - [5923] = {.lex_state = 149, .external_lex_state = 2}, - [5924] = {.lex_state = 149, .external_lex_state = 2}, - [5925] = {.lex_state = 149, .external_lex_state = 2}, - [5926] = {.lex_state = 149, .external_lex_state = 2}, - [5927] = {.lex_state = 149, .external_lex_state = 2}, - [5928] = {.lex_state = 149, .external_lex_state = 2}, - [5929] = {.lex_state = 149, .external_lex_state = 2}, - [5930] = {.lex_state = 149, .external_lex_state = 2}, - [5931] = {.lex_state = 149, .external_lex_state = 2}, - [5932] = {.lex_state = 149, .external_lex_state = 2}, - [5933] = {.lex_state = 149, .external_lex_state = 2}, - [5934] = {.lex_state = 149, .external_lex_state = 2}, - [5935] = {.lex_state = 149, .external_lex_state = 2}, - [5936] = {.lex_state = 149, .external_lex_state = 2}, - [5937] = {.lex_state = 149, .external_lex_state = 2}, - [5938] = {.lex_state = 149, .external_lex_state = 2}, - [5939] = {.lex_state = 149, .external_lex_state = 2}, - [5940] = {.lex_state = 149, .external_lex_state = 2}, - [5941] = {.lex_state = 149, .external_lex_state = 2}, - [5942] = {.lex_state = 149, .external_lex_state = 2}, - [5943] = {.lex_state = 149, .external_lex_state = 2}, - [5944] = {.lex_state = 149, .external_lex_state = 2}, - [5945] = {.lex_state = 149, .external_lex_state = 2}, - [5946] = {.lex_state = 149, .external_lex_state = 2}, - [5947] = {.lex_state = 149, .external_lex_state = 2}, - [5948] = {.lex_state = 149, .external_lex_state = 2}, - [5949] = {.lex_state = 149, .external_lex_state = 2}, - [5950] = {.lex_state = 149, .external_lex_state = 2}, - [5951] = {.lex_state = 149, .external_lex_state = 2}, - [5952] = {.lex_state = 149, .external_lex_state = 2}, - [5953] = {.lex_state = 149, .external_lex_state = 2}, - [5954] = {.lex_state = 149, .external_lex_state = 2}, - [5955] = {.lex_state = 149, .external_lex_state = 2}, - [5956] = {.lex_state = 149, .external_lex_state = 2}, - [5957] = {.lex_state = 149, .external_lex_state = 2}, - [5958] = {.lex_state = 149, .external_lex_state = 2}, - [5959] = {.lex_state = 149, .external_lex_state = 2}, - [5960] = {.lex_state = 149, .external_lex_state = 2}, - [5961] = {.lex_state = 149, .external_lex_state = 2}, - [5962] = {.lex_state = 149, .external_lex_state = 2}, - [5963] = {.lex_state = 149, .external_lex_state = 2}, - [5964] = {.lex_state = 149, .external_lex_state = 2}, - [5965] = {.lex_state = 149, .external_lex_state = 2}, - [5966] = {.lex_state = 149, .external_lex_state = 2}, - [5967] = {.lex_state = 149, .external_lex_state = 2}, - [5968] = {.lex_state = 149, .external_lex_state = 2}, - [5969] = {.lex_state = 149, .external_lex_state = 2}, - [5970] = {.lex_state = 149, .external_lex_state = 2}, - [5971] = {.lex_state = 149, .external_lex_state = 2}, - [5972] = {.lex_state = 149, .external_lex_state = 2}, - [5973] = {.lex_state = 2, .external_lex_state = 11}, - [5974] = {.lex_state = 38, .external_lex_state = 2}, - [5975] = {.lex_state = 149, .external_lex_state = 2}, - [5976] = {.lex_state = 149, .external_lex_state = 2}, - [5977] = {.lex_state = 149, .external_lex_state = 2}, - [5978] = {.lex_state = 149, .external_lex_state = 2}, - [5979] = {.lex_state = 149, .external_lex_state = 2}, - [5980] = {.lex_state = 149, .external_lex_state = 2}, - [5981] = {.lex_state = 149, .external_lex_state = 2}, - [5982] = {.lex_state = 149, .external_lex_state = 2}, - [5983] = {.lex_state = 149, .external_lex_state = 2}, - [5984] = {.lex_state = 149, .external_lex_state = 2}, - [5985] = {.lex_state = 149, .external_lex_state = 2}, - [5986] = {.lex_state = 149, .external_lex_state = 2}, - [5987] = {.lex_state = 149, .external_lex_state = 2}, - [5988] = {.lex_state = 149, .external_lex_state = 2}, - [5989] = {.lex_state = 149, .external_lex_state = 2}, - [5990] = {.lex_state = 149, .external_lex_state = 2}, - [5991] = {.lex_state = 149, .external_lex_state = 2}, - [5992] = {.lex_state = 149, .external_lex_state = 2}, - [5993] = {.lex_state = 149, .external_lex_state = 2}, - [5994] = {.lex_state = 149, .external_lex_state = 2}, - [5995] = {.lex_state = 149, .external_lex_state = 2}, - [5996] = {.lex_state = 149, .external_lex_state = 2}, - [5997] = {.lex_state = 149, .external_lex_state = 2}, + [286] = {.lex_state = 128, .external_lex_state = 2}, + [287] = {.lex_state = 128, .external_lex_state = 2}, + [288] = {.lex_state = 128, .external_lex_state = 2}, + [289] = {.lex_state = 128, .external_lex_state = 2}, + [290] = {.lex_state = 128, .external_lex_state = 2}, + [291] = {.lex_state = 128, .external_lex_state = 2}, + [292] = {.lex_state = 128, .external_lex_state = 2}, + [293] = {.lex_state = 128, .external_lex_state = 2}, + [294] = {.lex_state = 128, .external_lex_state = 2}, + [295] = {.lex_state = 128, .external_lex_state = 2}, + [296] = {.lex_state = 128, .external_lex_state = 2}, + [297] = {.lex_state = 128, .external_lex_state = 2}, + [298] = {.lex_state = 128, .external_lex_state = 2}, + [299] = {.lex_state = 128, .external_lex_state = 2}, + [300] = {.lex_state = 128, .external_lex_state = 2}, + [301] = {.lex_state = 128, .external_lex_state = 2}, + [302] = {.lex_state = 128, .external_lex_state = 2}, + [303] = {.lex_state = 128, .external_lex_state = 2}, + [304] = {.lex_state = 128, .external_lex_state = 2}, + [305] = {.lex_state = 128, .external_lex_state = 2}, + [306] = {.lex_state = 128, .external_lex_state = 2}, + [307] = {.lex_state = 128, .external_lex_state = 5}, + [308] = {.lex_state = 128, .external_lex_state = 2}, + [309] = {.lex_state = 128, .external_lex_state = 2}, + [310] = {.lex_state = 128, .external_lex_state = 2}, + [311] = {.lex_state = 128, .external_lex_state = 2}, + [312] = {.lex_state = 128, .external_lex_state = 2}, + [313] = {.lex_state = 128, .external_lex_state = 2}, + [314] = {.lex_state = 128, .external_lex_state = 2}, + [315] = {.lex_state = 128, .external_lex_state = 2}, + [316] = {.lex_state = 128, .external_lex_state = 2}, + [317] = {.lex_state = 128, .external_lex_state = 2}, + [318] = {.lex_state = 128, .external_lex_state = 2}, + [319] = {.lex_state = 128, .external_lex_state = 2}, + [320] = {.lex_state = 128, .external_lex_state = 2}, + [321] = {.lex_state = 128, .external_lex_state = 2}, + [322] = {.lex_state = 128, .external_lex_state = 2}, + [323] = {.lex_state = 128, .external_lex_state = 2}, + [324] = {.lex_state = 128, .external_lex_state = 2}, + [325] = {.lex_state = 128, .external_lex_state = 2}, + [326] = {.lex_state = 128, .external_lex_state = 2}, + [327] = {.lex_state = 128, .external_lex_state = 2}, + [328] = {.lex_state = 128, .external_lex_state = 2}, + [329] = {.lex_state = 128, .external_lex_state = 2}, + [330] = {.lex_state = 128, .external_lex_state = 2}, + [331] = {.lex_state = 128, .external_lex_state = 2}, + [332] = {.lex_state = 128, .external_lex_state = 2}, + [333] = {.lex_state = 128, .external_lex_state = 2}, + [334] = {.lex_state = 128, .external_lex_state = 2}, + [335] = {.lex_state = 128, .external_lex_state = 2}, + [336] = {.lex_state = 128, .external_lex_state = 2}, + [337] = {.lex_state = 128, .external_lex_state = 2}, + [338] = {.lex_state = 128, .external_lex_state = 2}, + [339] = {.lex_state = 128, .external_lex_state = 2}, + [340] = {.lex_state = 128, .external_lex_state = 2}, + [341] = {.lex_state = 128, .external_lex_state = 2}, + [342] = {.lex_state = 128, .external_lex_state = 2}, + [343] = {.lex_state = 128, .external_lex_state = 2}, + [344] = {.lex_state = 128, .external_lex_state = 2}, + [345] = {.lex_state = 128, .external_lex_state = 2}, + [346] = {.lex_state = 128, .external_lex_state = 2}, + [347] = {.lex_state = 128, .external_lex_state = 2}, + [348] = {.lex_state = 128, .external_lex_state = 2}, + [349] = {.lex_state = 128, .external_lex_state = 2}, + [350] = {.lex_state = 128, .external_lex_state = 2}, + [351] = {.lex_state = 128, .external_lex_state = 2}, + [352] = {.lex_state = 128, .external_lex_state = 2}, + [353] = {.lex_state = 128, .external_lex_state = 2}, + [354] = {.lex_state = 128, .external_lex_state = 2}, + [355] = {.lex_state = 128, .external_lex_state = 2}, + [356] = {.lex_state = 128, .external_lex_state = 2}, + [357] = {.lex_state = 128, .external_lex_state = 2}, + [358] = {.lex_state = 128, .external_lex_state = 2}, + [359] = {.lex_state = 128, .external_lex_state = 2}, + [360] = {.lex_state = 128, .external_lex_state = 2}, + [361] = {.lex_state = 128, .external_lex_state = 2}, + [362] = {.lex_state = 128, .external_lex_state = 2}, + [363] = {.lex_state = 128, .external_lex_state = 2}, + [364] = {.lex_state = 128, .external_lex_state = 2}, + [365] = {.lex_state = 128, .external_lex_state = 2}, + [366] = {.lex_state = 128, .external_lex_state = 2}, + [367] = {.lex_state = 128, .external_lex_state = 2}, + [368] = {.lex_state = 128, .external_lex_state = 2}, + [369] = {.lex_state = 128, .external_lex_state = 2}, + [370] = {.lex_state = 128, .external_lex_state = 2}, + [371] = {.lex_state = 128, .external_lex_state = 2}, + [372] = {.lex_state = 128, .external_lex_state = 2}, + [373] = {.lex_state = 128, .external_lex_state = 2}, + [374] = {.lex_state = 128, .external_lex_state = 2}, + [375] = {.lex_state = 128, .external_lex_state = 2}, + [376] = {.lex_state = 128, .external_lex_state = 2}, + [377] = {.lex_state = 128, .external_lex_state = 2}, + [378] = {.lex_state = 128, .external_lex_state = 2}, + [379] = {.lex_state = 128, .external_lex_state = 2}, + [380] = {.lex_state = 128, .external_lex_state = 2}, + [381] = {.lex_state = 128, .external_lex_state = 2}, + [382] = {.lex_state = 128, .external_lex_state = 2}, + [383] = {.lex_state = 128, .external_lex_state = 2}, + [384] = {.lex_state = 128, .external_lex_state = 2}, + [385] = {.lex_state = 128, .external_lex_state = 2}, + [386] = {.lex_state = 128, .external_lex_state = 2}, + [387] = {.lex_state = 128, .external_lex_state = 2}, + [388] = {.lex_state = 128, .external_lex_state = 2}, + [389] = {.lex_state = 128, .external_lex_state = 2}, + [390] = {.lex_state = 128, .external_lex_state = 2}, + [391] = {.lex_state = 128, .external_lex_state = 2}, + [392] = {.lex_state = 128, .external_lex_state = 2}, + [393] = {.lex_state = 128, .external_lex_state = 2}, + [394] = {.lex_state = 128, .external_lex_state = 2}, + [395] = {.lex_state = 128, .external_lex_state = 2}, + [396] = {.lex_state = 128, .external_lex_state = 2}, + [397] = {.lex_state = 128, .external_lex_state = 2}, + [398] = {.lex_state = 128, .external_lex_state = 2}, + [399] = {.lex_state = 128, .external_lex_state = 2}, + [400] = {.lex_state = 128, .external_lex_state = 2}, + [401] = {.lex_state = 128, .external_lex_state = 2}, + [402] = {.lex_state = 128, .external_lex_state = 2}, + [403] = {.lex_state = 128, .external_lex_state = 2}, + [404] = {.lex_state = 128, .external_lex_state = 2}, + [405] = {.lex_state = 128, .external_lex_state = 2}, + [406] = {.lex_state = 128, .external_lex_state = 2}, + [407] = {.lex_state = 128, .external_lex_state = 2}, + [408] = {.lex_state = 128, .external_lex_state = 2}, + [409] = {.lex_state = 128, .external_lex_state = 2}, + [410] = {.lex_state = 128, .external_lex_state = 2}, + [411] = {.lex_state = 128, .external_lex_state = 2}, + [412] = {.lex_state = 128, .external_lex_state = 2}, + [413] = {.lex_state = 128, .external_lex_state = 2}, + [414] = {.lex_state = 128, .external_lex_state = 2}, + [415] = {.lex_state = 128, .external_lex_state = 2}, + [416] = {.lex_state = 128, .external_lex_state = 2}, + [417] = {.lex_state = 128, .external_lex_state = 2}, + [418] = {.lex_state = 128, .external_lex_state = 2}, + [419] = {.lex_state = 128, .external_lex_state = 2}, + [420] = {.lex_state = 128, .external_lex_state = 2}, + [421] = {.lex_state = 128, .external_lex_state = 2}, + [422] = {.lex_state = 128, .external_lex_state = 2}, + [423] = {.lex_state = 128, .external_lex_state = 2}, + [424] = {.lex_state = 128, .external_lex_state = 2}, + [425] = {.lex_state = 128, .external_lex_state = 2}, + [426] = {.lex_state = 128, .external_lex_state = 2}, + [427] = {.lex_state = 128, .external_lex_state = 2}, + [428] = {.lex_state = 128, .external_lex_state = 2}, + [429] = {.lex_state = 128, .external_lex_state = 2}, + [430] = {.lex_state = 128, .external_lex_state = 2}, + [431] = {.lex_state = 128, .external_lex_state = 2}, + [432] = {.lex_state = 128, .external_lex_state = 2}, + [433] = {.lex_state = 128, .external_lex_state = 2}, + [434] = {.lex_state = 128, .external_lex_state = 2}, + [435] = {.lex_state = 128, .external_lex_state = 2}, + [436] = {.lex_state = 128, .external_lex_state = 2}, + [437] = {.lex_state = 128, .external_lex_state = 2}, + [438] = {.lex_state = 128, .external_lex_state = 2}, + [439] = {.lex_state = 128, .external_lex_state = 2}, + [440] = {.lex_state = 128, .external_lex_state = 2}, + [441] = {.lex_state = 128, .external_lex_state = 2}, + [442] = {.lex_state = 128, .external_lex_state = 2}, + [443] = {.lex_state = 128, .external_lex_state = 2}, + [444] = {.lex_state = 128, .external_lex_state = 2}, + [445] = {.lex_state = 128, .external_lex_state = 2}, + [446] = {.lex_state = 128, .external_lex_state = 2}, + [447] = {.lex_state = 128, .external_lex_state = 2}, + [448] = {.lex_state = 128, .external_lex_state = 2}, + [449] = {.lex_state = 128, .external_lex_state = 2}, + [450] = {.lex_state = 128, .external_lex_state = 2}, + [451] = {.lex_state = 128, .external_lex_state = 2}, + [452] = {.lex_state = 128, .external_lex_state = 2}, + [453] = {.lex_state = 128, .external_lex_state = 2}, + [454] = {.lex_state = 128, .external_lex_state = 2}, + [455] = {.lex_state = 128, .external_lex_state = 2}, + [456] = {.lex_state = 128, .external_lex_state = 2}, + [457] = {.lex_state = 128, .external_lex_state = 2}, + [458] = {.lex_state = 128, .external_lex_state = 2}, + [459] = {.lex_state = 128, .external_lex_state = 2}, + [460] = {.lex_state = 128, .external_lex_state = 2}, + [461] = {.lex_state = 128, .external_lex_state = 2}, + [462] = {.lex_state = 128, .external_lex_state = 2}, + [463] = {.lex_state = 128, .external_lex_state = 2}, + [464] = {.lex_state = 128, .external_lex_state = 2}, + [465] = {.lex_state = 128, .external_lex_state = 2}, + [466] = {.lex_state = 128, .external_lex_state = 2}, + [467] = {.lex_state = 128, .external_lex_state = 2}, + [468] = {.lex_state = 128, .external_lex_state = 2}, + [469] = {.lex_state = 128, .external_lex_state = 2}, + [470] = {.lex_state = 128, .external_lex_state = 2}, + [471] = {.lex_state = 128, .external_lex_state = 2}, + [472] = {.lex_state = 128, .external_lex_state = 2}, + [473] = {.lex_state = 128, .external_lex_state = 2}, + [474] = {.lex_state = 128, .external_lex_state = 2}, + [475] = {.lex_state = 128, .external_lex_state = 2}, + [476] = {.lex_state = 128, .external_lex_state = 2}, + [477] = {.lex_state = 128, .external_lex_state = 2}, + [478] = {.lex_state = 128, .external_lex_state = 2}, + [479] = {.lex_state = 128, .external_lex_state = 2}, + [480] = {.lex_state = 128, .external_lex_state = 2}, + [481] = {.lex_state = 128, .external_lex_state = 2}, + [482] = {.lex_state = 128, .external_lex_state = 2}, + [483] = {.lex_state = 128, .external_lex_state = 2}, + [484] = {.lex_state = 128, .external_lex_state = 2}, + [485] = {.lex_state = 128, .external_lex_state = 2}, + [486] = {.lex_state = 128, .external_lex_state = 2}, + [487] = {.lex_state = 128, .external_lex_state = 2}, + [488] = {.lex_state = 128, .external_lex_state = 2}, + [489] = {.lex_state = 128, .external_lex_state = 2}, + [490] = {.lex_state = 128, .external_lex_state = 2}, + [491] = {.lex_state = 128, .external_lex_state = 2}, + [492] = {.lex_state = 128, .external_lex_state = 2}, + [493] = {.lex_state = 128, .external_lex_state = 2}, + [494] = {.lex_state = 128, .external_lex_state = 2}, + [495] = {.lex_state = 128, .external_lex_state = 2}, + [496] = {.lex_state = 128, .external_lex_state = 2}, + [497] = {.lex_state = 128, .external_lex_state = 2}, + [498] = {.lex_state = 128, .external_lex_state = 2}, + [499] = {.lex_state = 128, .external_lex_state = 2}, + [500] = {.lex_state = 128, .external_lex_state = 2}, + [501] = {.lex_state = 128, .external_lex_state = 2}, + [502] = {.lex_state = 128, .external_lex_state = 2}, + [503] = {.lex_state = 128, .external_lex_state = 2}, + [504] = {.lex_state = 128, .external_lex_state = 2}, + [505] = {.lex_state = 128, .external_lex_state = 2}, + [506] = {.lex_state = 128, .external_lex_state = 2}, + [507] = {.lex_state = 128, .external_lex_state = 2}, + [508] = {.lex_state = 128, .external_lex_state = 2}, + [509] = {.lex_state = 128, .external_lex_state = 2}, + [510] = {.lex_state = 128, .external_lex_state = 2}, + [511] = {.lex_state = 128, .external_lex_state = 2}, + [512] = {.lex_state = 128, .external_lex_state = 2}, + [513] = {.lex_state = 128, .external_lex_state = 2}, + [514] = {.lex_state = 128, .external_lex_state = 2}, + [515] = {.lex_state = 128, .external_lex_state = 2}, + [516] = {.lex_state = 128, .external_lex_state = 2}, + [517] = {.lex_state = 128, .external_lex_state = 2}, + [518] = {.lex_state = 128, .external_lex_state = 2}, + [519] = {.lex_state = 128, .external_lex_state = 2}, + [520] = {.lex_state = 128, .external_lex_state = 2}, + [521] = {.lex_state = 128, .external_lex_state = 2}, + [522] = {.lex_state = 128, .external_lex_state = 2}, + [523] = {.lex_state = 128, .external_lex_state = 2}, + [524] = {.lex_state = 128, .external_lex_state = 2}, + [525] = {.lex_state = 128, .external_lex_state = 2}, + [526] = {.lex_state = 128, .external_lex_state = 2}, + [527] = {.lex_state = 128, .external_lex_state = 2}, + [528] = {.lex_state = 128, .external_lex_state = 2}, + [529] = {.lex_state = 128, .external_lex_state = 2}, + [530] = {.lex_state = 128, .external_lex_state = 2}, + [531] = {.lex_state = 128, .external_lex_state = 2}, + [532] = {.lex_state = 128, .external_lex_state = 2}, + [533] = {.lex_state = 128, .external_lex_state = 2}, + [534] = {.lex_state = 128, .external_lex_state = 2}, + [535] = {.lex_state = 128, .external_lex_state = 2}, + [536] = {.lex_state = 128, .external_lex_state = 2}, + [537] = {.lex_state = 128, .external_lex_state = 2}, + [538] = {.lex_state = 128, .external_lex_state = 2}, + [539] = {.lex_state = 128, .external_lex_state = 2}, + [540] = {.lex_state = 128, .external_lex_state = 2}, + [541] = {.lex_state = 128, .external_lex_state = 2}, + [542] = {.lex_state = 128, .external_lex_state = 2}, + [543] = {.lex_state = 128, .external_lex_state = 2}, + [544] = {.lex_state = 128, .external_lex_state = 2}, + [545] = {.lex_state = 128, .external_lex_state = 2}, + [546] = {.lex_state = 128, .external_lex_state = 2}, + [547] = {.lex_state = 128, .external_lex_state = 2}, + [548] = {.lex_state = 128, .external_lex_state = 2}, + [549] = {.lex_state = 128, .external_lex_state = 2}, + [550] = {.lex_state = 128, .external_lex_state = 2}, + [551] = {.lex_state = 128, .external_lex_state = 2}, + [552] = {.lex_state = 128, .external_lex_state = 2}, + [553] = {.lex_state = 128, .external_lex_state = 2}, + [554] = {.lex_state = 128, .external_lex_state = 2}, + [555] = {.lex_state = 128, .external_lex_state = 2}, + [556] = {.lex_state = 128, .external_lex_state = 2}, + [557] = {.lex_state = 128, .external_lex_state = 2}, + [558] = {.lex_state = 128, .external_lex_state = 2}, + [559] = {.lex_state = 128, .external_lex_state = 2}, + [560] = {.lex_state = 128, .external_lex_state = 2}, + [561] = {.lex_state = 128, .external_lex_state = 2}, + [562] = {.lex_state = 128, .external_lex_state = 2}, + [563] = {.lex_state = 128, .external_lex_state = 2}, + [564] = {.lex_state = 128, .external_lex_state = 2}, + [565] = {.lex_state = 128, .external_lex_state = 2}, + [566] = {.lex_state = 128, .external_lex_state = 2}, + [567] = {.lex_state = 128, .external_lex_state = 2}, + [568] = {.lex_state = 128, .external_lex_state = 2}, + [569] = {.lex_state = 128, .external_lex_state = 2}, + [570] = {.lex_state = 128, .external_lex_state = 2}, + [571] = {.lex_state = 128, .external_lex_state = 2}, + [572] = {.lex_state = 128, .external_lex_state = 2}, + [573] = {.lex_state = 128, .external_lex_state = 2}, + [574] = {.lex_state = 128, .external_lex_state = 2}, + [575] = {.lex_state = 128, .external_lex_state = 2}, + [576] = {.lex_state = 128, .external_lex_state = 2}, + [577] = {.lex_state = 128, .external_lex_state = 2}, + [578] = {.lex_state = 128, .external_lex_state = 2}, + [579] = {.lex_state = 128, .external_lex_state = 2}, + [580] = {.lex_state = 128, .external_lex_state = 2}, + [581] = {.lex_state = 128, .external_lex_state = 2}, + [582] = {.lex_state = 128, .external_lex_state = 2}, + [583] = {.lex_state = 128, .external_lex_state = 2}, + [584] = {.lex_state = 128, .external_lex_state = 2}, + [585] = {.lex_state = 128, .external_lex_state = 2}, + [586] = {.lex_state = 128, .external_lex_state = 2}, + [587] = {.lex_state = 128, .external_lex_state = 2}, + [588] = {.lex_state = 128, .external_lex_state = 2}, + [589] = {.lex_state = 128, .external_lex_state = 2}, + [590] = {.lex_state = 128, .external_lex_state = 2}, + [591] = {.lex_state = 128, .external_lex_state = 2}, + [592] = {.lex_state = 128, .external_lex_state = 2}, + [593] = {.lex_state = 128, .external_lex_state = 2}, + [594] = {.lex_state = 128, .external_lex_state = 2}, + [595] = {.lex_state = 128, .external_lex_state = 2}, + [596] = {.lex_state = 128, .external_lex_state = 2}, + [597] = {.lex_state = 128, .external_lex_state = 2}, + [598] = {.lex_state = 128, .external_lex_state = 2}, + [599] = {.lex_state = 128, .external_lex_state = 2}, + [600] = {.lex_state = 128, .external_lex_state = 2}, + [601] = {.lex_state = 128, .external_lex_state = 2}, + [602] = {.lex_state = 128, .external_lex_state = 2}, + [603] = {.lex_state = 128, .external_lex_state = 2}, + [604] = {.lex_state = 128, .external_lex_state = 2}, + [605] = {.lex_state = 128, .external_lex_state = 2}, + [606] = {.lex_state = 128, .external_lex_state = 2}, + [607] = {.lex_state = 128, .external_lex_state = 2}, + [608] = {.lex_state = 128, .external_lex_state = 2}, + [609] = {.lex_state = 128, .external_lex_state = 2}, + [610] = {.lex_state = 128, .external_lex_state = 2}, + [611] = {.lex_state = 128, .external_lex_state = 2}, + [612] = {.lex_state = 128, .external_lex_state = 2}, + [613] = {.lex_state = 128, .external_lex_state = 2}, + [614] = {.lex_state = 128, .external_lex_state = 2}, + [615] = {.lex_state = 128, .external_lex_state = 2}, + [616] = {.lex_state = 128, .external_lex_state = 2}, + [617] = {.lex_state = 128, .external_lex_state = 2}, + [618] = {.lex_state = 128, .external_lex_state = 2}, + [619] = {.lex_state = 128, .external_lex_state = 2}, + [620] = {.lex_state = 128, .external_lex_state = 2}, + [621] = {.lex_state = 128, .external_lex_state = 2}, + [622] = {.lex_state = 128, .external_lex_state = 2}, + [623] = {.lex_state = 128, .external_lex_state = 2}, + [624] = {.lex_state = 128, .external_lex_state = 2}, + [625] = {.lex_state = 128, .external_lex_state = 2}, + [626] = {.lex_state = 128, .external_lex_state = 2}, + [627] = {.lex_state = 128, .external_lex_state = 2}, + [628] = {.lex_state = 128, .external_lex_state = 2}, + [629] = {.lex_state = 128, .external_lex_state = 2}, + [630] = {.lex_state = 128, .external_lex_state = 2}, + [631] = {.lex_state = 128, .external_lex_state = 2}, + [632] = {.lex_state = 128, .external_lex_state = 2}, + [633] = {.lex_state = 128, .external_lex_state = 2}, + [634] = {.lex_state = 128, .external_lex_state = 2}, + [635] = {.lex_state = 128, .external_lex_state = 2}, + [636] = {.lex_state = 128, .external_lex_state = 2}, + [637] = {.lex_state = 128, .external_lex_state = 2}, + [638] = {.lex_state = 128, .external_lex_state = 2}, + [639] = {.lex_state = 128, .external_lex_state = 2}, + [640] = {.lex_state = 128, .external_lex_state = 2}, + [641] = {.lex_state = 128, .external_lex_state = 2}, + [642] = {.lex_state = 128, .external_lex_state = 2}, + [643] = {.lex_state = 128, .external_lex_state = 2}, + [644] = {.lex_state = 128, .external_lex_state = 2}, + [645] = {.lex_state = 128, .external_lex_state = 2}, + [646] = {.lex_state = 128, .external_lex_state = 2}, + [647] = {.lex_state = 128, .external_lex_state = 2}, + [648] = {.lex_state = 128, .external_lex_state = 2}, + [649] = {.lex_state = 128, .external_lex_state = 2}, + [650] = {.lex_state = 128, .external_lex_state = 2}, + [651] = {.lex_state = 128, .external_lex_state = 2}, + [652] = {.lex_state = 128, .external_lex_state = 2}, + [653] = {.lex_state = 128, .external_lex_state = 2}, + [654] = {.lex_state = 128, .external_lex_state = 2}, + [655] = {.lex_state = 128, .external_lex_state = 2}, + [656] = {.lex_state = 128, .external_lex_state = 2}, + [657] = {.lex_state = 128, .external_lex_state = 2}, + [658] = {.lex_state = 3, .external_lex_state = 4}, + [659] = {.lex_state = 3, .external_lex_state = 4}, + [660] = {.lex_state = 3, .external_lex_state = 4}, + [661] = {.lex_state = 2, .external_lex_state = 4}, + [662] = {.lex_state = 2, .external_lex_state = 4}, + [663] = {.lex_state = 2, .external_lex_state = 4}, + [664] = {.lex_state = 2, .external_lex_state = 4}, + [665] = {.lex_state = 2, .external_lex_state = 4}, + [666] = {.lex_state = 2, .external_lex_state = 4}, + [667] = {.lex_state = 3, .external_lex_state = 4}, + [668] = {.lex_state = 3, .external_lex_state = 4}, + [669] = {.lex_state = 3, .external_lex_state = 4}, + [670] = {.lex_state = 2, .external_lex_state = 4}, + [671] = {.lex_state = 2, .external_lex_state = 4}, + [672] = {.lex_state = 2, .external_lex_state = 4}, + [673] = {.lex_state = 2, .external_lex_state = 4}, + [674] = {.lex_state = 2, .external_lex_state = 4}, + [675] = {.lex_state = 2, .external_lex_state = 4}, + [676] = {.lex_state = 2, .external_lex_state = 4}, + [677] = {.lex_state = 2, .external_lex_state = 4}, + [678] = {.lex_state = 2, .external_lex_state = 4}, + [679] = {.lex_state = 2, .external_lex_state = 4}, + [680] = {.lex_state = 128, .external_lex_state = 2}, + [681] = {.lex_state = 128, .external_lex_state = 2}, + [682] = {.lex_state = 2, .external_lex_state = 4}, + [683] = {.lex_state = 2, .external_lex_state = 4}, + [684] = {.lex_state = 128, .external_lex_state = 2}, + [685] = {.lex_state = 128, .external_lex_state = 2}, + [686] = {.lex_state = 128, .external_lex_state = 2}, + [687] = {.lex_state = 128, .external_lex_state = 2}, + [688] = {.lex_state = 128, .external_lex_state = 2}, + [689] = {.lex_state = 2, .external_lex_state = 4}, + [690] = {.lex_state = 2, .external_lex_state = 4}, + [691] = {.lex_state = 2, .external_lex_state = 4}, + [692] = {.lex_state = 2, .external_lex_state = 4}, + [693] = {.lex_state = 2, .external_lex_state = 4}, + [694] = {.lex_state = 2, .external_lex_state = 4}, + [695] = {.lex_state = 2, .external_lex_state = 4}, + [696] = {.lex_state = 2, .external_lex_state = 4}, + [697] = {.lex_state = 2, .external_lex_state = 4}, + [698] = {.lex_state = 2, .external_lex_state = 3}, + [699] = {.lex_state = 2, .external_lex_state = 3}, + [700] = {.lex_state = 2, .external_lex_state = 3}, + [701] = {.lex_state = 2, .external_lex_state = 3}, + [702] = {.lex_state = 2, .external_lex_state = 3}, + [703] = {.lex_state = 2, .external_lex_state = 4}, + [704] = {.lex_state = 2, .external_lex_state = 4}, + [705] = {.lex_state = 2, .external_lex_state = 4}, + [706] = {.lex_state = 2, .external_lex_state = 4}, + [707] = {.lex_state = 2, .external_lex_state = 4}, + [708] = {.lex_state = 2, .external_lex_state = 4}, + [709] = {.lex_state = 2, .external_lex_state = 4}, + [710] = {.lex_state = 2, .external_lex_state = 3}, + [711] = {.lex_state = 3, .external_lex_state = 3}, + [712] = {.lex_state = 2, .external_lex_state = 3}, + [713] = {.lex_state = 2, .external_lex_state = 3}, + [714] = {.lex_state = 3, .external_lex_state = 3}, + [715] = {.lex_state = 128, .external_lex_state = 5}, + [716] = {.lex_state = 2, .external_lex_state = 3}, + [717] = {.lex_state = 2, .external_lex_state = 4}, + [718] = {.lex_state = 2, .external_lex_state = 3}, + [719] = {.lex_state = 2, .external_lex_state = 4}, + [720] = {.lex_state = 2, .external_lex_state = 3}, + [721] = {.lex_state = 2, .external_lex_state = 4}, + [722] = {.lex_state = 2, .external_lex_state = 4}, + [723] = {.lex_state = 2, .external_lex_state = 4}, + [724] = {.lex_state = 2, .external_lex_state = 3}, + [725] = {.lex_state = 128, .external_lex_state = 5}, + [726] = {.lex_state = 2, .external_lex_state = 3}, + [727] = {.lex_state = 128, .external_lex_state = 2}, + [728] = {.lex_state = 2, .external_lex_state = 3}, + [729] = {.lex_state = 128, .external_lex_state = 5}, + [730] = {.lex_state = 128, .external_lex_state = 2}, + [731] = {.lex_state = 128, .external_lex_state = 5}, + [732] = {.lex_state = 2, .external_lex_state = 3}, + [733] = {.lex_state = 2, .external_lex_state = 3}, + [734] = {.lex_state = 2, .external_lex_state = 3}, + [735] = {.lex_state = 128, .external_lex_state = 5}, + [736] = {.lex_state = 2, .external_lex_state = 3}, + [737] = {.lex_state = 128, .external_lex_state = 5}, + [738] = {.lex_state = 2, .external_lex_state = 3}, + [739] = {.lex_state = 128, .external_lex_state = 5}, + [740] = {.lex_state = 128, .external_lex_state = 5}, + [741] = {.lex_state = 128, .external_lex_state = 2}, + [742] = {.lex_state = 128, .external_lex_state = 2}, + [743] = {.lex_state = 2, .external_lex_state = 3}, + [744] = {.lex_state = 2, .external_lex_state = 3}, + [745] = {.lex_state = 2, .external_lex_state = 3}, + [746] = {.lex_state = 2, .external_lex_state = 3}, + [747] = {.lex_state = 2, .external_lex_state = 3}, + [748] = {.lex_state = 2, .external_lex_state = 3}, + [749] = {.lex_state = 2, .external_lex_state = 3}, + [750] = {.lex_state = 128, .external_lex_state = 2}, + [751] = {.lex_state = 128, .external_lex_state = 2}, + [752] = {.lex_state = 2, .external_lex_state = 3}, + [753] = {.lex_state = 2, .external_lex_state = 3}, + [754] = {.lex_state = 2, .external_lex_state = 3}, + [755] = {.lex_state = 128, .external_lex_state = 5}, + [756] = {.lex_state = 128, .external_lex_state = 5}, + [757] = {.lex_state = 128, .external_lex_state = 2}, + [758] = {.lex_state = 128, .external_lex_state = 5}, + [759] = {.lex_state = 128, .external_lex_state = 2}, + [760] = {.lex_state = 9, .external_lex_state = 2}, + [761] = {.lex_state = 9, .external_lex_state = 2}, + [762] = {.lex_state = 9, .external_lex_state = 2}, + [763] = {.lex_state = 9, .external_lex_state = 2}, + [764] = {.lex_state = 128, .external_lex_state = 5}, + [765] = {.lex_state = 128, .external_lex_state = 5}, + [766] = {.lex_state = 128, .external_lex_state = 5}, + [767] = {.lex_state = 128, .external_lex_state = 5}, + [768] = {.lex_state = 128, .external_lex_state = 2}, + [769] = {.lex_state = 128, .external_lex_state = 2}, + [770] = {.lex_state = 128, .external_lex_state = 5}, + [771] = {.lex_state = 128, .external_lex_state = 5}, + [772] = {.lex_state = 128, .external_lex_state = 5}, + [773] = {.lex_state = 128, .external_lex_state = 5}, + [774] = {.lex_state = 128, .external_lex_state = 5}, + [775] = {.lex_state = 128, .external_lex_state = 2}, + [776] = {.lex_state = 128, .external_lex_state = 5}, + [777] = {.lex_state = 128, .external_lex_state = 5}, + [778] = {.lex_state = 128, .external_lex_state = 2}, + [779] = {.lex_state = 128, .external_lex_state = 2}, + [780] = {.lex_state = 128, .external_lex_state = 5}, + [781] = {.lex_state = 128, .external_lex_state = 2}, + [782] = {.lex_state = 9, .external_lex_state = 2}, + [783] = {.lex_state = 128, .external_lex_state = 2}, + [784] = {.lex_state = 9, .external_lex_state = 2}, + [785] = {.lex_state = 128, .external_lex_state = 2}, + [786] = {.lex_state = 128, .external_lex_state = 2}, + [787] = {.lex_state = 128, .external_lex_state = 2}, + [788] = {.lex_state = 128, .external_lex_state = 2}, + [789] = {.lex_state = 128, .external_lex_state = 2}, + [790] = {.lex_state = 128, .external_lex_state = 2}, + [791] = {.lex_state = 128, .external_lex_state = 2}, + [792] = {.lex_state = 128, .external_lex_state = 2}, + [793] = {.lex_state = 128, .external_lex_state = 2}, + [794] = {.lex_state = 9, .external_lex_state = 2}, + [795] = {.lex_state = 9, .external_lex_state = 2}, + [796] = {.lex_state = 128, .external_lex_state = 2}, + [797] = {.lex_state = 128, .external_lex_state = 2}, + [798] = {.lex_state = 128, .external_lex_state = 2}, + [799] = {.lex_state = 128, .external_lex_state = 2}, + [800] = {.lex_state = 9, .external_lex_state = 2}, + [801] = {.lex_state = 9, .external_lex_state = 2}, + [802] = {.lex_state = 128, .external_lex_state = 2}, + [803] = {.lex_state = 128, .external_lex_state = 2}, + [804] = {.lex_state = 9, .external_lex_state = 2}, + [805] = {.lex_state = 9, .external_lex_state = 2}, + [806] = {.lex_state = 128, .external_lex_state = 2}, + [807] = {.lex_state = 128, .external_lex_state = 2}, + [808] = {.lex_state = 128, .external_lex_state = 2}, + [809] = {.lex_state = 128, .external_lex_state = 2}, + [810] = {.lex_state = 128, .external_lex_state = 2}, + [811] = {.lex_state = 128, .external_lex_state = 2}, + [812] = {.lex_state = 128, .external_lex_state = 2}, + [813] = {.lex_state = 128, .external_lex_state = 2}, + [814] = {.lex_state = 128, .external_lex_state = 2}, + [815] = {.lex_state = 128, .external_lex_state = 2}, + [816] = {.lex_state = 128, .external_lex_state = 2}, + [817] = {.lex_state = 128, .external_lex_state = 2}, + [818] = {.lex_state = 128, .external_lex_state = 2}, + [819] = {.lex_state = 128, .external_lex_state = 2}, + [820] = {.lex_state = 128, .external_lex_state = 2}, + [821] = {.lex_state = 128, .external_lex_state = 2}, + [822] = {.lex_state = 128, .external_lex_state = 2}, + [823] = {.lex_state = 128, .external_lex_state = 2}, + [824] = {.lex_state = 128, .external_lex_state = 2}, + [825] = {.lex_state = 128, .external_lex_state = 2}, + [826] = {.lex_state = 128, .external_lex_state = 2}, + [827] = {.lex_state = 128, .external_lex_state = 2}, + [828] = {.lex_state = 128, .external_lex_state = 2}, + [829] = {.lex_state = 128, .external_lex_state = 2}, + [830] = {.lex_state = 128, .external_lex_state = 2}, + [831] = {.lex_state = 128, .external_lex_state = 2}, + [832] = {.lex_state = 128, .external_lex_state = 2}, + [833] = {.lex_state = 128, .external_lex_state = 2}, + [834] = {.lex_state = 9, .external_lex_state = 2}, + [835] = {.lex_state = 128, .external_lex_state = 2}, + [836] = {.lex_state = 128, .external_lex_state = 2}, + [837] = {.lex_state = 128, .external_lex_state = 2}, + [838] = {.lex_state = 128, .external_lex_state = 2}, + [839] = {.lex_state = 128, .external_lex_state = 2}, + [840] = {.lex_state = 128, .external_lex_state = 2}, + [841] = {.lex_state = 128, .external_lex_state = 2}, + [842] = {.lex_state = 128, .external_lex_state = 2}, + [843] = {.lex_state = 128, .external_lex_state = 2}, + [844] = {.lex_state = 128, .external_lex_state = 2}, + [845] = {.lex_state = 128, .external_lex_state = 2}, + [846] = {.lex_state = 128, .external_lex_state = 2}, + [847] = {.lex_state = 128, .external_lex_state = 2}, + [848] = {.lex_state = 128, .external_lex_state = 2}, + [849] = {.lex_state = 128, .external_lex_state = 2}, + [850] = {.lex_state = 128, .external_lex_state = 2}, + [851] = {.lex_state = 128, .external_lex_state = 2}, + [852] = {.lex_state = 128, .external_lex_state = 2}, + [853] = {.lex_state = 128, .external_lex_state = 2}, + [854] = {.lex_state = 128, .external_lex_state = 2}, + [855] = {.lex_state = 128, .external_lex_state = 2}, + [856] = {.lex_state = 128, .external_lex_state = 2}, + [857] = {.lex_state = 128, .external_lex_state = 2}, + [858] = {.lex_state = 128, .external_lex_state = 2}, + [859] = {.lex_state = 128, .external_lex_state = 2}, + [860] = {.lex_state = 128, .external_lex_state = 2}, + [861] = {.lex_state = 128, .external_lex_state = 2}, + [862] = {.lex_state = 128, .external_lex_state = 2}, + [863] = {.lex_state = 128, .external_lex_state = 2}, + [864] = {.lex_state = 9, .external_lex_state = 2}, + [865] = {.lex_state = 128, .external_lex_state = 2}, + [866] = {.lex_state = 128, .external_lex_state = 2}, + [867] = {.lex_state = 128, .external_lex_state = 2}, + [868] = {.lex_state = 128, .external_lex_state = 2}, + [869] = {.lex_state = 128, .external_lex_state = 2}, + [870] = {.lex_state = 128, .external_lex_state = 2}, + [871] = {.lex_state = 128, .external_lex_state = 2}, + [872] = {.lex_state = 128, .external_lex_state = 2}, + [873] = {.lex_state = 128, .external_lex_state = 2}, + [874] = {.lex_state = 128, .external_lex_state = 2}, + [875] = {.lex_state = 128, .external_lex_state = 2}, + [876] = {.lex_state = 128, .external_lex_state = 2}, + [877] = {.lex_state = 128, .external_lex_state = 2}, + [878] = {.lex_state = 128, .external_lex_state = 2}, + [879] = {.lex_state = 128, .external_lex_state = 2}, + [880] = {.lex_state = 128, .external_lex_state = 2}, + [881] = {.lex_state = 128, .external_lex_state = 2}, + [882] = {.lex_state = 128, .external_lex_state = 2}, + [883] = {.lex_state = 128, .external_lex_state = 2}, + [884] = {.lex_state = 128, .external_lex_state = 2}, + [885] = {.lex_state = 128, .external_lex_state = 2}, + [886] = {.lex_state = 128, .external_lex_state = 2}, + [887] = {.lex_state = 128, .external_lex_state = 2}, + [888] = {.lex_state = 128, .external_lex_state = 2}, + [889] = {.lex_state = 128, .external_lex_state = 2}, + [890] = {.lex_state = 128, .external_lex_state = 2}, + [891] = {.lex_state = 128, .external_lex_state = 2}, + [892] = {.lex_state = 128, .external_lex_state = 2}, + [893] = {.lex_state = 128, .external_lex_state = 2}, + [894] = {.lex_state = 128, .external_lex_state = 2}, + [895] = {.lex_state = 128, .external_lex_state = 2}, + [896] = {.lex_state = 128, .external_lex_state = 2}, + [897] = {.lex_state = 128, .external_lex_state = 2}, + [898] = {.lex_state = 128, .external_lex_state = 2}, + [899] = {.lex_state = 128, .external_lex_state = 2}, + [900] = {.lex_state = 128, .external_lex_state = 2}, + [901] = {.lex_state = 128, .external_lex_state = 2}, + [902] = {.lex_state = 128, .external_lex_state = 2}, + [903] = {.lex_state = 128, .external_lex_state = 2}, + [904] = {.lex_state = 128, .external_lex_state = 2}, + [905] = {.lex_state = 128, .external_lex_state = 2}, + [906] = {.lex_state = 9, .external_lex_state = 2}, + [907] = {.lex_state = 128, .external_lex_state = 2}, + [908] = {.lex_state = 128, .external_lex_state = 2}, + [909] = {.lex_state = 128, .external_lex_state = 2}, + [910] = {.lex_state = 128, .external_lex_state = 2}, + [911] = {.lex_state = 128, .external_lex_state = 2}, + [912] = {.lex_state = 128, .external_lex_state = 2}, + [913] = {.lex_state = 128, .external_lex_state = 2}, + [914] = {.lex_state = 128, .external_lex_state = 2}, + [915] = {.lex_state = 128, .external_lex_state = 2}, + [916] = {.lex_state = 9, .external_lex_state = 2}, + [917] = {.lex_state = 128, .external_lex_state = 2}, + [918] = {.lex_state = 9, .external_lex_state = 2}, + [919] = {.lex_state = 9, .external_lex_state = 2}, + [920] = {.lex_state = 128, .external_lex_state = 2}, + [921] = {.lex_state = 9, .external_lex_state = 2}, + [922] = {.lex_state = 9, .external_lex_state = 2}, + [923] = {.lex_state = 9, .external_lex_state = 2}, + [924] = {.lex_state = 128, .external_lex_state = 2}, + [925] = {.lex_state = 128, .external_lex_state = 2}, + [926] = {.lex_state = 128, .external_lex_state = 2}, + [927] = {.lex_state = 9, .external_lex_state = 2}, + [928] = {.lex_state = 128, .external_lex_state = 2}, + [929] = {.lex_state = 128, .external_lex_state = 2}, + [930] = {.lex_state = 128, .external_lex_state = 2}, + [931] = {.lex_state = 128, .external_lex_state = 2}, + [932] = {.lex_state = 9, .external_lex_state = 2}, + [933] = {.lex_state = 128, .external_lex_state = 2}, + [934] = {.lex_state = 128, .external_lex_state = 2}, + [935] = {.lex_state = 9, .external_lex_state = 2}, + [936] = {.lex_state = 128, .external_lex_state = 2}, + [937] = {.lex_state = 9, .external_lex_state = 2}, + [938] = {.lex_state = 9, .external_lex_state = 2}, + [939] = {.lex_state = 9, .external_lex_state = 2}, + [940] = {.lex_state = 9, .external_lex_state = 2}, + [941] = {.lex_state = 9, .external_lex_state = 2}, + [942] = {.lex_state = 9, .external_lex_state = 2}, + [943] = {.lex_state = 9, .external_lex_state = 2}, + [944] = {.lex_state = 128, .external_lex_state = 2}, + [945] = {.lex_state = 9, .external_lex_state = 2}, + [946] = {.lex_state = 128, .external_lex_state = 2}, + [947] = {.lex_state = 9, .external_lex_state = 2}, + [948] = {.lex_state = 7, .external_lex_state = 2}, + [949] = {.lex_state = 9, .external_lex_state = 2}, + [950] = {.lex_state = 9, .external_lex_state = 2}, + [951] = {.lex_state = 9, .external_lex_state = 2}, + [952] = {.lex_state = 9, .external_lex_state = 2}, + [953] = {.lex_state = 9, .external_lex_state = 2}, + [954] = {.lex_state = 9, .external_lex_state = 2}, + [955] = {.lex_state = 9, .external_lex_state = 2}, + [956] = {.lex_state = 9, .external_lex_state = 2}, + [957] = {.lex_state = 7, .external_lex_state = 2}, + [958] = {.lex_state = 7, .external_lex_state = 2}, + [959] = {.lex_state = 9, .external_lex_state = 2}, + [960] = {.lex_state = 11, .external_lex_state = 2}, + [961] = {.lex_state = 9, .external_lex_state = 2}, + [962] = {.lex_state = 9, .external_lex_state = 2}, + [963] = {.lex_state = 9, .external_lex_state = 2}, + [964] = {.lex_state = 9, .external_lex_state = 2}, + [965] = {.lex_state = 9, .external_lex_state = 2}, + [966] = {.lex_state = 9, .external_lex_state = 2}, + [967] = {.lex_state = 9, .external_lex_state = 2}, + [968] = {.lex_state = 9, .external_lex_state = 2}, + [969] = {.lex_state = 9, .external_lex_state = 2}, + [970] = {.lex_state = 9, .external_lex_state = 2}, + [971] = {.lex_state = 9, .external_lex_state = 2}, + [972] = {.lex_state = 9, .external_lex_state = 2}, + [973] = {.lex_state = 9, .external_lex_state = 2}, + [974] = {.lex_state = 9, .external_lex_state = 2}, + [975] = {.lex_state = 9, .external_lex_state = 2}, + [976] = {.lex_state = 9, .external_lex_state = 2}, + [977] = {.lex_state = 9, .external_lex_state = 2}, + [978] = {.lex_state = 9, .external_lex_state = 2}, + [979] = {.lex_state = 9, .external_lex_state = 2}, + [980] = {.lex_state = 9, .external_lex_state = 2}, + [981] = {.lex_state = 9, .external_lex_state = 2}, + [982] = {.lex_state = 9, .external_lex_state = 2}, + [983] = {.lex_state = 9, .external_lex_state = 2}, + [984] = {.lex_state = 9, .external_lex_state = 2}, + [985] = {.lex_state = 9, .external_lex_state = 2}, + [986] = {.lex_state = 9, .external_lex_state = 2}, + [987] = {.lex_state = 9, .external_lex_state = 2}, + [988] = {.lex_state = 9, .external_lex_state = 2}, + [989] = {.lex_state = 9, .external_lex_state = 2}, + [990] = {.lex_state = 9, .external_lex_state = 2}, + [991] = {.lex_state = 9, .external_lex_state = 2}, + [992] = {.lex_state = 9, .external_lex_state = 2}, + [993] = {.lex_state = 9, .external_lex_state = 2}, + [994] = {.lex_state = 9, .external_lex_state = 2}, + [995] = {.lex_state = 9, .external_lex_state = 2}, + [996] = {.lex_state = 9, .external_lex_state = 2}, + [997] = {.lex_state = 9, .external_lex_state = 2}, + [998] = {.lex_state = 9, .external_lex_state = 2}, + [999] = {.lex_state = 9, .external_lex_state = 2}, + [1000] = {.lex_state = 9, .external_lex_state = 2}, + [1001] = {.lex_state = 9, .external_lex_state = 2}, + [1002] = {.lex_state = 9, .external_lex_state = 2}, + [1003] = {.lex_state = 9, .external_lex_state = 2}, + [1004] = {.lex_state = 9, .external_lex_state = 2}, + [1005] = {.lex_state = 9, .external_lex_state = 2}, + [1006] = {.lex_state = 9, .external_lex_state = 2}, + [1007] = {.lex_state = 9, .external_lex_state = 2}, + [1008] = {.lex_state = 9, .external_lex_state = 2}, + [1009] = {.lex_state = 9, .external_lex_state = 2}, + [1010] = {.lex_state = 9, .external_lex_state = 2}, + [1011] = {.lex_state = 9, .external_lex_state = 2}, + [1012] = {.lex_state = 9, .external_lex_state = 2}, + [1013] = {.lex_state = 9, .external_lex_state = 2}, + [1014] = {.lex_state = 9, .external_lex_state = 2}, + [1015] = {.lex_state = 9, .external_lex_state = 2}, + [1016] = {.lex_state = 9, .external_lex_state = 2}, + [1017] = {.lex_state = 9, .external_lex_state = 2}, + [1018] = {.lex_state = 9, .external_lex_state = 2}, + [1019] = {.lex_state = 9, .external_lex_state = 2}, + [1020] = {.lex_state = 9, .external_lex_state = 2}, + [1021] = {.lex_state = 9, .external_lex_state = 2}, + [1022] = {.lex_state = 9, .external_lex_state = 2}, + [1023] = {.lex_state = 9, .external_lex_state = 2}, + [1024] = {.lex_state = 9, .external_lex_state = 2}, + [1025] = {.lex_state = 9, .external_lex_state = 2}, + [1026] = {.lex_state = 9, .external_lex_state = 2}, + [1027] = {.lex_state = 9, .external_lex_state = 2}, + [1028] = {.lex_state = 9, .external_lex_state = 2}, + [1029] = {.lex_state = 9, .external_lex_state = 2}, + [1030] = {.lex_state = 9, .external_lex_state = 2}, + [1031] = {.lex_state = 9, .external_lex_state = 2}, + [1032] = {.lex_state = 9, .external_lex_state = 2}, + [1033] = {.lex_state = 9, .external_lex_state = 2}, + [1034] = {.lex_state = 9, .external_lex_state = 2}, + [1035] = {.lex_state = 9, .external_lex_state = 2}, + [1036] = {.lex_state = 9, .external_lex_state = 2}, + [1037] = {.lex_state = 9, .external_lex_state = 2}, + [1038] = {.lex_state = 9, .external_lex_state = 2}, + [1039] = {.lex_state = 9, .external_lex_state = 2}, + [1040] = {.lex_state = 9, .external_lex_state = 2}, + [1041] = {.lex_state = 9, .external_lex_state = 2}, + [1042] = {.lex_state = 9, .external_lex_state = 2}, + [1043] = {.lex_state = 9, .external_lex_state = 2}, + [1044] = {.lex_state = 9, .external_lex_state = 2}, + [1045] = {.lex_state = 9, .external_lex_state = 2}, + [1046] = {.lex_state = 9, .external_lex_state = 2}, + [1047] = {.lex_state = 9, .external_lex_state = 2}, + [1048] = {.lex_state = 9, .external_lex_state = 2}, + [1049] = {.lex_state = 9, .external_lex_state = 2}, + [1050] = {.lex_state = 9, .external_lex_state = 2}, + [1051] = {.lex_state = 9, .external_lex_state = 2}, + [1052] = {.lex_state = 9, .external_lex_state = 2}, + [1053] = {.lex_state = 9, .external_lex_state = 2}, + [1054] = {.lex_state = 9, .external_lex_state = 2}, + [1055] = {.lex_state = 9, .external_lex_state = 2}, + [1056] = {.lex_state = 9, .external_lex_state = 2}, + [1057] = {.lex_state = 9, .external_lex_state = 2}, + [1058] = {.lex_state = 9, .external_lex_state = 2}, + [1059] = {.lex_state = 9, .external_lex_state = 2}, + [1060] = {.lex_state = 9, .external_lex_state = 2}, + [1061] = {.lex_state = 9, .external_lex_state = 2}, + [1062] = {.lex_state = 9, .external_lex_state = 2}, + [1063] = {.lex_state = 9, .external_lex_state = 2}, + [1064] = {.lex_state = 9, .external_lex_state = 2}, + [1065] = {.lex_state = 9, .external_lex_state = 2}, + [1066] = {.lex_state = 9, .external_lex_state = 2}, + [1067] = {.lex_state = 9, .external_lex_state = 2}, + [1068] = {.lex_state = 9, .external_lex_state = 2}, + [1069] = {.lex_state = 9, .external_lex_state = 2}, + [1070] = {.lex_state = 9, .external_lex_state = 2}, + [1071] = {.lex_state = 9, .external_lex_state = 2}, + [1072] = {.lex_state = 9, .external_lex_state = 2}, + [1073] = {.lex_state = 9, .external_lex_state = 2}, + [1074] = {.lex_state = 9, .external_lex_state = 2}, + [1075] = {.lex_state = 9, .external_lex_state = 2}, + [1076] = {.lex_state = 9, .external_lex_state = 2}, + [1077] = {.lex_state = 9, .external_lex_state = 2}, + [1078] = {.lex_state = 9, .external_lex_state = 2}, + [1079] = {.lex_state = 9, .external_lex_state = 2}, + [1080] = {.lex_state = 9, .external_lex_state = 2}, + [1081] = {.lex_state = 9, .external_lex_state = 2}, + [1082] = {.lex_state = 9, .external_lex_state = 2}, + [1083] = {.lex_state = 9, .external_lex_state = 2}, + [1084] = {.lex_state = 9, .external_lex_state = 2}, + [1085] = {.lex_state = 9, .external_lex_state = 2}, + [1086] = {.lex_state = 9, .external_lex_state = 2}, + [1087] = {.lex_state = 9, .external_lex_state = 2}, + [1088] = {.lex_state = 9, .external_lex_state = 2}, + [1089] = {.lex_state = 9, .external_lex_state = 2}, + [1090] = {.lex_state = 9, .external_lex_state = 2}, + [1091] = {.lex_state = 9, .external_lex_state = 2}, + [1092] = {.lex_state = 9, .external_lex_state = 2}, + [1093] = {.lex_state = 9, .external_lex_state = 2}, + [1094] = {.lex_state = 9, .external_lex_state = 2}, + [1095] = {.lex_state = 9, .external_lex_state = 2}, + [1096] = {.lex_state = 9, .external_lex_state = 2}, + [1097] = {.lex_state = 9, .external_lex_state = 2}, + [1098] = {.lex_state = 9, .external_lex_state = 2}, + [1099] = {.lex_state = 9, .external_lex_state = 2}, + [1100] = {.lex_state = 9, .external_lex_state = 2}, + [1101] = {.lex_state = 9, .external_lex_state = 2}, + [1102] = {.lex_state = 9, .external_lex_state = 2}, + [1103] = {.lex_state = 9, .external_lex_state = 2}, + [1104] = {.lex_state = 9, .external_lex_state = 2}, + [1105] = {.lex_state = 9, .external_lex_state = 2}, + [1106] = {.lex_state = 9, .external_lex_state = 2}, + [1107] = {.lex_state = 9, .external_lex_state = 2}, + [1108] = {.lex_state = 9, .external_lex_state = 2}, + [1109] = {.lex_state = 9, .external_lex_state = 2}, + [1110] = {.lex_state = 9, .external_lex_state = 2}, + [1111] = {.lex_state = 9, .external_lex_state = 2}, + [1112] = {.lex_state = 9, .external_lex_state = 2}, + [1113] = {.lex_state = 9, .external_lex_state = 2}, + [1114] = {.lex_state = 9, .external_lex_state = 2}, + [1115] = {.lex_state = 9, .external_lex_state = 2}, + [1116] = {.lex_state = 9, .external_lex_state = 2}, + [1117] = {.lex_state = 9, .external_lex_state = 2}, + [1118] = {.lex_state = 9, .external_lex_state = 2}, + [1119] = {.lex_state = 9, .external_lex_state = 2}, + [1120] = {.lex_state = 9, .external_lex_state = 2}, + [1121] = {.lex_state = 9, .external_lex_state = 2}, + [1122] = {.lex_state = 9, .external_lex_state = 2}, + [1123] = {.lex_state = 9, .external_lex_state = 2}, + [1124] = {.lex_state = 9, .external_lex_state = 2}, + [1125] = {.lex_state = 10, .external_lex_state = 2}, + [1126] = {.lex_state = 10, .external_lex_state = 2}, + [1127] = {.lex_state = 10, .external_lex_state = 2}, + [1128] = {.lex_state = 10, .external_lex_state = 2}, + [1129] = {.lex_state = 10, .external_lex_state = 2}, + [1130] = {.lex_state = 10, .external_lex_state = 2}, + [1131] = {.lex_state = 10, .external_lex_state = 2}, + [1132] = {.lex_state = 10, .external_lex_state = 2}, + [1133] = {.lex_state = 10, .external_lex_state = 2}, + [1134] = {.lex_state = 10, .external_lex_state = 2}, + [1135] = {.lex_state = 10, .external_lex_state = 2}, + [1136] = {.lex_state = 10, .external_lex_state = 2}, + [1137] = {.lex_state = 2, .external_lex_state = 4}, + [1138] = {.lex_state = 2, .external_lex_state = 4}, + [1139] = {.lex_state = 2, .external_lex_state = 4}, + [1140] = {.lex_state = 3, .external_lex_state = 4}, + [1141] = {.lex_state = 3, .external_lex_state = 4}, + [1142] = {.lex_state = 2, .external_lex_state = 4}, + [1143] = {.lex_state = 3, .external_lex_state = 4}, + [1144] = {.lex_state = 2, .external_lex_state = 4}, + [1145] = {.lex_state = 2, .external_lex_state = 4}, + [1146] = {.lex_state = 2, .external_lex_state = 3}, + [1147] = {.lex_state = 2, .external_lex_state = 3}, + [1148] = {.lex_state = 2, .external_lex_state = 3}, + [1149] = {.lex_state = 2, .external_lex_state = 3}, + [1150] = {.lex_state = 2, .external_lex_state = 3}, + [1151] = {.lex_state = 10, .external_lex_state = 2}, + [1152] = {.lex_state = 10, .external_lex_state = 2}, + [1153] = {.lex_state = 2, .external_lex_state = 4}, + [1154] = {.lex_state = 3, .external_lex_state = 4}, + [1155] = {.lex_state = 2, .external_lex_state = 4}, + [1156] = {.lex_state = 2, .external_lex_state = 3}, + [1157] = {.lex_state = 2, .external_lex_state = 4}, + [1158] = {.lex_state = 2, .external_lex_state = 4}, + [1159] = {.lex_state = 2, .external_lex_state = 4}, + [1160] = {.lex_state = 2, .external_lex_state = 4}, + [1161] = {.lex_state = 2, .external_lex_state = 4}, + [1162] = {.lex_state = 2, .external_lex_state = 4}, + [1163] = {.lex_state = 2, .external_lex_state = 4}, + [1164] = {.lex_state = 3, .external_lex_state = 4}, + [1165] = {.lex_state = 3, .external_lex_state = 4}, + [1166] = {.lex_state = 2, .external_lex_state = 4}, + [1167] = {.lex_state = 2, .external_lex_state = 4}, + [1168] = {.lex_state = 2, .external_lex_state = 3}, + [1169] = {.lex_state = 3, .external_lex_state = 3}, + [1170] = {.lex_state = 2, .external_lex_state = 4}, + [1171] = {.lex_state = 3, .external_lex_state = 3}, + [1172] = {.lex_state = 3, .external_lex_state = 3}, + [1173] = {.lex_state = 3, .external_lex_state = 3}, + [1174] = {.lex_state = 3, .external_lex_state = 3}, + [1175] = {.lex_state = 2, .external_lex_state = 3}, + [1176] = {.lex_state = 2, .external_lex_state = 4}, + [1177] = {.lex_state = 3, .external_lex_state = 3}, + [1178] = {.lex_state = 3, .external_lex_state = 3}, + [1179] = {.lex_state = 3, .external_lex_state = 3}, + [1180] = {.lex_state = 3, .external_lex_state = 3}, + [1181] = {.lex_state = 3, .external_lex_state = 3}, + [1182] = {.lex_state = 2, .external_lex_state = 3}, + [1183] = {.lex_state = 3, .external_lex_state = 3}, + [1184] = {.lex_state = 3, .external_lex_state = 3}, + [1185] = {.lex_state = 3, .external_lex_state = 3}, + [1186] = {.lex_state = 2, .external_lex_state = 3}, + [1187] = {.lex_state = 2, .external_lex_state = 4}, + [1188] = {.lex_state = 2, .external_lex_state = 4}, + [1189] = {.lex_state = 3, .external_lex_state = 4}, + [1190] = {.lex_state = 2, .external_lex_state = 4}, + [1191] = {.lex_state = 2, .external_lex_state = 4}, + [1192] = {.lex_state = 2, .external_lex_state = 4}, + [1193] = {.lex_state = 2, .external_lex_state = 4}, + [1194] = {.lex_state = 3, .external_lex_state = 4}, + [1195] = {.lex_state = 3, .external_lex_state = 3}, + [1196] = {.lex_state = 2, .external_lex_state = 4}, + [1197] = {.lex_state = 2, .external_lex_state = 4}, + [1198] = {.lex_state = 2, .external_lex_state = 3}, + [1199] = {.lex_state = 2, .external_lex_state = 4}, + [1200] = {.lex_state = 2, .external_lex_state = 4}, + [1201] = {.lex_state = 2, .external_lex_state = 3}, + [1202] = {.lex_state = 2, .external_lex_state = 3}, + [1203] = {.lex_state = 2, .external_lex_state = 4}, + [1204] = {.lex_state = 2, .external_lex_state = 3}, + [1205] = {.lex_state = 2, .external_lex_state = 4}, + [1206] = {.lex_state = 2, .external_lex_state = 4}, + [1207] = {.lex_state = 2, .external_lex_state = 3}, + [1208] = {.lex_state = 3, .external_lex_state = 3}, + [1209] = {.lex_state = 2, .external_lex_state = 3}, + [1210] = {.lex_state = 2, .external_lex_state = 3}, + [1211] = {.lex_state = 2, .external_lex_state = 3}, + [1212] = {.lex_state = 2, .external_lex_state = 3}, + [1213] = {.lex_state = 2, .external_lex_state = 4}, + [1214] = {.lex_state = 2, .external_lex_state = 3}, + [1215] = {.lex_state = 2, .external_lex_state = 4}, + [1216] = {.lex_state = 2, .external_lex_state = 3}, + [1217] = {.lex_state = 128, .external_lex_state = 2}, + [1218] = {.lex_state = 2, .external_lex_state = 3}, + [1219] = {.lex_state = 2, .external_lex_state = 4}, + [1220] = {.lex_state = 2, .external_lex_state = 3}, + [1221] = {.lex_state = 2, .external_lex_state = 3}, + [1222] = {.lex_state = 2, .external_lex_state = 3}, + [1223] = {.lex_state = 2, .external_lex_state = 3}, + [1224] = {.lex_state = 2, .external_lex_state = 3}, + [1225] = {.lex_state = 2, .external_lex_state = 3}, + [1226] = {.lex_state = 2, .external_lex_state = 3}, + [1227] = {.lex_state = 2, .external_lex_state = 3}, + [1228] = {.lex_state = 2, .external_lex_state = 3}, + [1229] = {.lex_state = 2, .external_lex_state = 3}, + [1230] = {.lex_state = 3, .external_lex_state = 3}, + [1231] = {.lex_state = 2, .external_lex_state = 3}, + [1232] = {.lex_state = 2, .external_lex_state = 4}, + [1233] = {.lex_state = 2, .external_lex_state = 3}, + [1234] = {.lex_state = 2, .external_lex_state = 3}, + [1235] = {.lex_state = 2, .external_lex_state = 3}, + [1236] = {.lex_state = 2, .external_lex_state = 3}, + [1237] = {.lex_state = 2, .external_lex_state = 3}, + [1238] = {.lex_state = 2, .external_lex_state = 4}, + [1239] = {.lex_state = 3, .external_lex_state = 3}, + [1240] = {.lex_state = 2, .external_lex_state = 3}, + [1241] = {.lex_state = 2, .external_lex_state = 3}, + [1242] = {.lex_state = 2, .external_lex_state = 3}, + [1243] = {.lex_state = 2, .external_lex_state = 4}, + [1244] = {.lex_state = 2, .external_lex_state = 3}, + [1245] = {.lex_state = 2, .external_lex_state = 3}, + [1246] = {.lex_state = 2, .external_lex_state = 3}, + [1247] = {.lex_state = 128, .external_lex_state = 2}, + [1248] = {.lex_state = 2, .external_lex_state = 3}, + [1249] = {.lex_state = 2, .external_lex_state = 3}, + [1250] = {.lex_state = 2, .external_lex_state = 3}, + [1251] = {.lex_state = 2, .external_lex_state = 3}, + [1252] = {.lex_state = 2, .external_lex_state = 4}, + [1253] = {.lex_state = 128, .external_lex_state = 2}, + [1254] = {.lex_state = 2, .external_lex_state = 3}, + [1255] = {.lex_state = 2, .external_lex_state = 3}, + [1256] = {.lex_state = 2, .external_lex_state = 3}, + [1257] = {.lex_state = 2, .external_lex_state = 4}, + [1258] = {.lex_state = 2, .external_lex_state = 4}, + [1259] = {.lex_state = 128, .external_lex_state = 2}, + [1260] = {.lex_state = 2, .external_lex_state = 3}, + [1261] = {.lex_state = 2, .external_lex_state = 4}, + [1262] = {.lex_state = 2, .external_lex_state = 3}, + [1263] = {.lex_state = 2, .external_lex_state = 4}, + [1264] = {.lex_state = 2, .external_lex_state = 3}, + [1265] = {.lex_state = 2, .external_lex_state = 3}, + [1266] = {.lex_state = 2, .external_lex_state = 4}, + [1267] = {.lex_state = 2, .external_lex_state = 4}, + [1268] = {.lex_state = 2, .external_lex_state = 3}, + [1269] = {.lex_state = 2, .external_lex_state = 3}, + [1270] = {.lex_state = 128, .external_lex_state = 2}, + [1271] = {.lex_state = 2, .external_lex_state = 3}, + [1272] = {.lex_state = 2, .external_lex_state = 3}, + [1273] = {.lex_state = 2, .external_lex_state = 3}, + [1274] = {.lex_state = 128, .external_lex_state = 2}, + [1275] = {.lex_state = 2, .external_lex_state = 4}, + [1276] = {.lex_state = 3, .external_lex_state = 3}, + [1277] = {.lex_state = 2, .external_lex_state = 4}, + [1278] = {.lex_state = 2, .external_lex_state = 3}, + [1279] = {.lex_state = 2, .external_lex_state = 4}, + [1280] = {.lex_state = 2, .external_lex_state = 3}, + [1281] = {.lex_state = 2, .external_lex_state = 4}, + [1282] = {.lex_state = 2, .external_lex_state = 3}, + [1283] = {.lex_state = 2, .external_lex_state = 4}, + [1284] = {.lex_state = 128, .external_lex_state = 2}, + [1285] = {.lex_state = 2, .external_lex_state = 4}, + [1286] = {.lex_state = 2, .external_lex_state = 3}, + [1287] = {.lex_state = 2, .external_lex_state = 4}, + [1288] = {.lex_state = 2, .external_lex_state = 4}, + [1289] = {.lex_state = 2, .external_lex_state = 4}, + [1290] = {.lex_state = 128, .external_lex_state = 2}, + [1291] = {.lex_state = 2, .external_lex_state = 4}, + [1292] = {.lex_state = 2, .external_lex_state = 4}, + [1293] = {.lex_state = 2, .external_lex_state = 4}, + [1294] = {.lex_state = 2, .external_lex_state = 4}, + [1295] = {.lex_state = 2, .external_lex_state = 4}, + [1296] = {.lex_state = 2, .external_lex_state = 3}, + [1297] = {.lex_state = 2, .external_lex_state = 3}, + [1298] = {.lex_state = 2, .external_lex_state = 4}, + [1299] = {.lex_state = 2, .external_lex_state = 4}, + [1300] = {.lex_state = 2, .external_lex_state = 4}, + [1301] = {.lex_state = 2, .external_lex_state = 3}, + [1302] = {.lex_state = 128, .external_lex_state = 2}, + [1303] = {.lex_state = 2, .external_lex_state = 4}, + [1304] = {.lex_state = 2, .external_lex_state = 4}, + [1305] = {.lex_state = 2, .external_lex_state = 4}, + [1306] = {.lex_state = 2, .external_lex_state = 4}, + [1307] = {.lex_state = 2, .external_lex_state = 4}, + [1308] = {.lex_state = 3, .external_lex_state = 3}, + [1309] = {.lex_state = 2, .external_lex_state = 3}, + [1310] = {.lex_state = 2, .external_lex_state = 4}, + [1311] = {.lex_state = 2, .external_lex_state = 4}, + [1312] = {.lex_state = 2, .external_lex_state = 4}, + [1313] = {.lex_state = 2, .external_lex_state = 4}, + [1314] = {.lex_state = 2, .external_lex_state = 4}, + [1315] = {.lex_state = 2, .external_lex_state = 4}, + [1316] = {.lex_state = 2, .external_lex_state = 3}, + [1317] = {.lex_state = 2, .external_lex_state = 3}, + [1318] = {.lex_state = 2, .external_lex_state = 3}, + [1319] = {.lex_state = 2, .external_lex_state = 3}, + [1320] = {.lex_state = 2, .external_lex_state = 4}, + [1321] = {.lex_state = 2, .external_lex_state = 3}, + [1322] = {.lex_state = 2, .external_lex_state = 3}, + [1323] = {.lex_state = 2, .external_lex_state = 3}, + [1324] = {.lex_state = 2, .external_lex_state = 3}, + [1325] = {.lex_state = 2, .external_lex_state = 4}, + [1326] = {.lex_state = 2, .external_lex_state = 4}, + [1327] = {.lex_state = 2, .external_lex_state = 3}, + [1328] = {.lex_state = 2, .external_lex_state = 3}, + [1329] = {.lex_state = 3, .external_lex_state = 3}, + [1330] = {.lex_state = 2, .external_lex_state = 4}, + [1331] = {.lex_state = 2, .external_lex_state = 3}, + [1332] = {.lex_state = 2, .external_lex_state = 3}, + [1333] = {.lex_state = 3, .external_lex_state = 3}, + [1334] = {.lex_state = 2, .external_lex_state = 4}, + [1335] = {.lex_state = 2, .external_lex_state = 4}, + [1336] = {.lex_state = 2, .external_lex_state = 3}, + [1337] = {.lex_state = 2, .external_lex_state = 4}, + [1338] = {.lex_state = 2, .external_lex_state = 3}, + [1339] = {.lex_state = 3, .external_lex_state = 3}, + [1340] = {.lex_state = 3, .external_lex_state = 3}, + [1341] = {.lex_state = 2, .external_lex_state = 3}, + [1342] = {.lex_state = 2, .external_lex_state = 3}, + [1343] = {.lex_state = 2, .external_lex_state = 3}, + [1344] = {.lex_state = 2, .external_lex_state = 3}, + [1345] = {.lex_state = 9, .external_lex_state = 2}, + [1346] = {.lex_state = 2, .external_lex_state = 4}, + [1347] = {.lex_state = 2, .external_lex_state = 4}, + [1348] = {.lex_state = 2, .external_lex_state = 3}, + [1349] = {.lex_state = 2, .external_lex_state = 3}, + [1350] = {.lex_state = 2, .external_lex_state = 3}, + [1351] = {.lex_state = 9, .external_lex_state = 2}, + [1352] = {.lex_state = 9, .external_lex_state = 2}, + [1353] = {.lex_state = 2, .external_lex_state = 3}, + [1354] = {.lex_state = 2, .external_lex_state = 3}, + [1355] = {.lex_state = 2, .external_lex_state = 3}, + [1356] = {.lex_state = 2, .external_lex_state = 3}, + [1357] = {.lex_state = 9, .external_lex_state = 2}, + [1358] = {.lex_state = 2, .external_lex_state = 3}, + [1359] = {.lex_state = 2, .external_lex_state = 3}, + [1360] = {.lex_state = 2, .external_lex_state = 4}, + [1361] = {.lex_state = 9, .external_lex_state = 2}, + [1362] = {.lex_state = 2, .external_lex_state = 3}, + [1363] = {.lex_state = 9, .external_lex_state = 2}, + [1364] = {.lex_state = 2, .external_lex_state = 3}, + [1365] = {.lex_state = 3, .external_lex_state = 3}, + [1366] = {.lex_state = 2, .external_lex_state = 3}, + [1367] = {.lex_state = 2, .external_lex_state = 4}, + [1368] = {.lex_state = 2, .external_lex_state = 3}, + [1369] = {.lex_state = 2, .external_lex_state = 3}, + [1370] = {.lex_state = 2, .external_lex_state = 3}, + [1371] = {.lex_state = 2, .external_lex_state = 3}, + [1372] = {.lex_state = 2, .external_lex_state = 3}, + [1373] = {.lex_state = 2, .external_lex_state = 3}, + [1374] = {.lex_state = 2, .external_lex_state = 4}, + [1375] = {.lex_state = 2, .external_lex_state = 3}, + [1376] = {.lex_state = 2, .external_lex_state = 3}, + [1377] = {.lex_state = 2, .external_lex_state = 3}, + [1378] = {.lex_state = 2, .external_lex_state = 3}, + [1379] = {.lex_state = 2, .external_lex_state = 3}, + [1380] = {.lex_state = 2, .external_lex_state = 3}, + [1381] = {.lex_state = 2, .external_lex_state = 3}, + [1382] = {.lex_state = 2, .external_lex_state = 3}, + [1383] = {.lex_state = 9, .external_lex_state = 2}, + [1384] = {.lex_state = 9, .external_lex_state = 2}, + [1385] = {.lex_state = 9, .external_lex_state = 2}, + [1386] = {.lex_state = 9, .external_lex_state = 2}, + [1387] = {.lex_state = 2, .external_lex_state = 3}, + [1388] = {.lex_state = 9, .external_lex_state = 2}, + [1389] = {.lex_state = 2, .external_lex_state = 3}, + [1390] = {.lex_state = 2, .external_lex_state = 3}, + [1391] = {.lex_state = 2, .external_lex_state = 3}, + [1392] = {.lex_state = 2, .external_lex_state = 3}, + [1393] = {.lex_state = 2, .external_lex_state = 3}, + [1394] = {.lex_state = 9, .external_lex_state = 2}, + [1395] = {.lex_state = 9, .external_lex_state = 2}, + [1396] = {.lex_state = 2, .external_lex_state = 3}, + [1397] = {.lex_state = 2, .external_lex_state = 3}, + [1398] = {.lex_state = 2, .external_lex_state = 3}, + [1399] = {.lex_state = 2, .external_lex_state = 3}, + [1400] = {.lex_state = 2, .external_lex_state = 3}, + [1401] = {.lex_state = 2, .external_lex_state = 3}, + [1402] = {.lex_state = 9, .external_lex_state = 2}, + [1403] = {.lex_state = 2, .external_lex_state = 3}, + [1404] = {.lex_state = 9, .external_lex_state = 2}, + [1405] = {.lex_state = 9, .external_lex_state = 2}, + [1406] = {.lex_state = 2, .external_lex_state = 3}, + [1407] = {.lex_state = 2, .external_lex_state = 3}, + [1408] = {.lex_state = 9, .external_lex_state = 2}, + [1409] = {.lex_state = 2, .external_lex_state = 3}, + [1410] = {.lex_state = 2, .external_lex_state = 3}, + [1411] = {.lex_state = 9, .external_lex_state = 2}, + [1412] = {.lex_state = 9, .external_lex_state = 2}, + [1413] = {.lex_state = 2, .external_lex_state = 3}, + [1414] = {.lex_state = 9, .external_lex_state = 2}, + [1415] = {.lex_state = 2, .external_lex_state = 3}, + [1416] = {.lex_state = 2, .external_lex_state = 3}, + [1417] = {.lex_state = 2, .external_lex_state = 3}, + [1418] = {.lex_state = 9, .external_lex_state = 2}, + [1419] = {.lex_state = 9, .external_lex_state = 2}, + [1420] = {.lex_state = 2, .external_lex_state = 3}, + [1421] = {.lex_state = 9, .external_lex_state = 2}, + [1422] = {.lex_state = 9, .external_lex_state = 2}, + [1423] = {.lex_state = 2, .external_lex_state = 3}, + [1424] = {.lex_state = 2, .external_lex_state = 3}, + [1425] = {.lex_state = 2, .external_lex_state = 3}, + [1426] = {.lex_state = 2, .external_lex_state = 3}, + [1427] = {.lex_state = 2, .external_lex_state = 3}, + [1428] = {.lex_state = 2, .external_lex_state = 3}, + [1429] = {.lex_state = 2, .external_lex_state = 3}, + [1430] = {.lex_state = 2, .external_lex_state = 3}, + [1431] = {.lex_state = 2, .external_lex_state = 3}, + [1432] = {.lex_state = 2, .external_lex_state = 3}, + [1433] = {.lex_state = 9, .external_lex_state = 2}, + [1434] = {.lex_state = 9, .external_lex_state = 2}, + [1435] = {.lex_state = 9, .external_lex_state = 2}, + [1436] = {.lex_state = 9, .external_lex_state = 2}, + [1437] = {.lex_state = 9, .external_lex_state = 2}, + [1438] = {.lex_state = 9, .external_lex_state = 2}, + [1439] = {.lex_state = 9, .external_lex_state = 2}, + [1440] = {.lex_state = 128, .external_lex_state = 5}, + [1441] = {.lex_state = 9, .external_lex_state = 2}, + [1442] = {.lex_state = 9, .external_lex_state = 2}, + [1443] = {.lex_state = 9, .external_lex_state = 2}, + [1444] = {.lex_state = 9, .external_lex_state = 2}, + [1445] = {.lex_state = 9, .external_lex_state = 2}, + [1446] = {.lex_state = 128, .external_lex_state = 5}, + [1447] = {.lex_state = 128, .external_lex_state = 5}, + [1448] = {.lex_state = 9, .external_lex_state = 2}, + [1449] = {.lex_state = 9, .external_lex_state = 2}, + [1450] = {.lex_state = 9, .external_lex_state = 2}, + [1451] = {.lex_state = 128, .external_lex_state = 5}, + [1452] = {.lex_state = 9, .external_lex_state = 2}, + [1453] = {.lex_state = 9, .external_lex_state = 2}, + [1454] = {.lex_state = 128, .external_lex_state = 5}, + [1455] = {.lex_state = 9, .external_lex_state = 2}, + [1456] = {.lex_state = 128, .external_lex_state = 2}, + [1457] = {.lex_state = 128, .external_lex_state = 2}, + [1458] = {.lex_state = 128, .external_lex_state = 2}, + [1459] = {.lex_state = 127, .external_lex_state = 3}, + [1460] = {.lex_state = 128, .external_lex_state = 2}, + [1461] = {.lex_state = 128, .external_lex_state = 2}, + [1462] = {.lex_state = 128, .external_lex_state = 2}, + [1463] = {.lex_state = 127, .external_lex_state = 3}, + [1464] = {.lex_state = 128, .external_lex_state = 5}, + [1465] = {.lex_state = 127, .external_lex_state = 3}, + [1466] = {.lex_state = 127, .external_lex_state = 3}, + [1467] = {.lex_state = 127, .external_lex_state = 4}, + [1468] = {.lex_state = 127, .external_lex_state = 3}, + [1469] = {.lex_state = 128, .external_lex_state = 5}, + [1470] = {.lex_state = 127, .external_lex_state = 4}, + [1471] = {.lex_state = 127, .external_lex_state = 3}, + [1472] = {.lex_state = 127, .external_lex_state = 3}, + [1473] = {.lex_state = 127, .external_lex_state = 3}, + [1474] = {.lex_state = 127, .external_lex_state = 3}, + [1475] = {.lex_state = 127, .external_lex_state = 3}, + [1476] = {.lex_state = 127, .external_lex_state = 3}, + [1477] = {.lex_state = 127, .external_lex_state = 3}, + [1478] = {.lex_state = 127, .external_lex_state = 3}, + [1479] = {.lex_state = 128, .external_lex_state = 2}, + [1480] = {.lex_state = 127, .external_lex_state = 3}, + [1481] = {.lex_state = 127, .external_lex_state = 4}, + [1482] = {.lex_state = 127, .external_lex_state = 3}, + [1483] = {.lex_state = 127, .external_lex_state = 3}, + [1484] = {.lex_state = 127, .external_lex_state = 3}, + [1485] = {.lex_state = 127, .external_lex_state = 3}, + [1486] = {.lex_state = 127, .external_lex_state = 3}, + [1487] = {.lex_state = 127, .external_lex_state = 3}, + [1488] = {.lex_state = 127, .external_lex_state = 3}, + [1489] = {.lex_state = 127, .external_lex_state = 3}, + [1490] = {.lex_state = 127, .external_lex_state = 3}, + [1491] = {.lex_state = 127, .external_lex_state = 3}, + [1492] = {.lex_state = 127, .external_lex_state = 3}, + [1493] = {.lex_state = 127, .external_lex_state = 3}, + [1494] = {.lex_state = 127, .external_lex_state = 3}, + [1495] = {.lex_state = 127, .external_lex_state = 3}, + [1496] = {.lex_state = 127, .external_lex_state = 3}, + [1497] = {.lex_state = 127, .external_lex_state = 4}, + [1498] = {.lex_state = 127, .external_lex_state = 4}, + [1499] = {.lex_state = 127, .external_lex_state = 3}, + [1500] = {.lex_state = 127, .external_lex_state = 4}, + [1501] = {.lex_state = 127, .external_lex_state = 3}, + [1502] = {.lex_state = 127, .external_lex_state = 3}, + [1503] = {.lex_state = 127, .external_lex_state = 3}, + [1504] = {.lex_state = 127, .external_lex_state = 3}, + [1505] = {.lex_state = 127, .external_lex_state = 4}, + [1506] = {.lex_state = 127, .external_lex_state = 3}, + [1507] = {.lex_state = 127, .external_lex_state = 3}, + [1508] = {.lex_state = 127, .external_lex_state = 3}, + [1509] = {.lex_state = 127, .external_lex_state = 3}, + [1510] = {.lex_state = 127, .external_lex_state = 3}, + [1511] = {.lex_state = 127, .external_lex_state = 3}, + [1512] = {.lex_state = 127, .external_lex_state = 3}, + [1513] = {.lex_state = 127, .external_lex_state = 3}, + [1514] = {.lex_state = 127, .external_lex_state = 3}, + [1515] = {.lex_state = 127, .external_lex_state = 3}, + [1516] = {.lex_state = 127, .external_lex_state = 3}, + [1517] = {.lex_state = 127, .external_lex_state = 3}, + [1518] = {.lex_state = 127, .external_lex_state = 3}, + [1519] = {.lex_state = 127, .external_lex_state = 3}, + [1520] = {.lex_state = 127, .external_lex_state = 3}, + [1521] = {.lex_state = 127, .external_lex_state = 3}, + [1522] = {.lex_state = 127, .external_lex_state = 3}, + [1523] = {.lex_state = 127, .external_lex_state = 3}, + [1524] = {.lex_state = 127, .external_lex_state = 3}, + [1525] = {.lex_state = 127, .external_lex_state = 3}, + [1526] = {.lex_state = 127, .external_lex_state = 3}, + [1527] = {.lex_state = 127, .external_lex_state = 3}, + [1528] = {.lex_state = 127, .external_lex_state = 3}, + [1529] = {.lex_state = 127, .external_lex_state = 3}, + [1530] = {.lex_state = 127, .external_lex_state = 3}, + [1531] = {.lex_state = 127, .external_lex_state = 3}, + [1532] = {.lex_state = 127, .external_lex_state = 3}, + [1533] = {.lex_state = 127, .external_lex_state = 3}, + [1534] = {.lex_state = 127, .external_lex_state = 3}, + [1535] = {.lex_state = 127, .external_lex_state = 3}, + [1536] = {.lex_state = 127, .external_lex_state = 3}, + [1537] = {.lex_state = 127, .external_lex_state = 3}, + [1538] = {.lex_state = 127, .external_lex_state = 3}, + [1539] = {.lex_state = 127, .external_lex_state = 3}, + [1540] = {.lex_state = 127, .external_lex_state = 3}, + [1541] = {.lex_state = 127, .external_lex_state = 3}, + [1542] = {.lex_state = 127, .external_lex_state = 3}, + [1543] = {.lex_state = 127, .external_lex_state = 3}, + [1544] = {.lex_state = 127, .external_lex_state = 3}, + [1545] = {.lex_state = 127, .external_lex_state = 3}, + [1546] = {.lex_state = 127, .external_lex_state = 3}, + [1547] = {.lex_state = 127, .external_lex_state = 3}, + [1548] = {.lex_state = 127, .external_lex_state = 3}, + [1549] = {.lex_state = 127, .external_lex_state = 3}, + [1550] = {.lex_state = 127, .external_lex_state = 3}, + [1551] = {.lex_state = 127, .external_lex_state = 3}, + [1552] = {.lex_state = 127, .external_lex_state = 3}, + [1553] = {.lex_state = 127, .external_lex_state = 3}, + [1554] = {.lex_state = 127, .external_lex_state = 3}, + [1555] = {.lex_state = 127, .external_lex_state = 4}, + [1556] = {.lex_state = 127, .external_lex_state = 3}, + [1557] = {.lex_state = 127, .external_lex_state = 3}, + [1558] = {.lex_state = 127, .external_lex_state = 3}, + [1559] = {.lex_state = 127, .external_lex_state = 3}, + [1560] = {.lex_state = 127, .external_lex_state = 3}, + [1561] = {.lex_state = 127, .external_lex_state = 3}, + [1562] = {.lex_state = 127, .external_lex_state = 3}, + [1563] = {.lex_state = 127, .external_lex_state = 3}, + [1564] = {.lex_state = 127, .external_lex_state = 3}, + [1565] = {.lex_state = 127, .external_lex_state = 3}, + [1566] = {.lex_state = 127, .external_lex_state = 3}, + [1567] = {.lex_state = 127, .external_lex_state = 3}, + [1568] = {.lex_state = 127, .external_lex_state = 3}, + [1569] = {.lex_state = 127, .external_lex_state = 3}, + [1570] = {.lex_state = 127, .external_lex_state = 3}, + [1571] = {.lex_state = 127, .external_lex_state = 3}, + [1572] = {.lex_state = 127, .external_lex_state = 3}, + [1573] = {.lex_state = 127, .external_lex_state = 3}, + [1574] = {.lex_state = 127, .external_lex_state = 3}, + [1575] = {.lex_state = 127, .external_lex_state = 3}, + [1576] = {.lex_state = 127, .external_lex_state = 3}, + [1577] = {.lex_state = 127, .external_lex_state = 3}, + [1578] = {.lex_state = 127, .external_lex_state = 3}, + [1579] = {.lex_state = 127, .external_lex_state = 3}, + [1580] = {.lex_state = 127, .external_lex_state = 3}, + [1581] = {.lex_state = 127, .external_lex_state = 3}, + [1582] = {.lex_state = 127, .external_lex_state = 3}, + [1583] = {.lex_state = 127, .external_lex_state = 3}, + [1584] = {.lex_state = 127, .external_lex_state = 3}, + [1585] = {.lex_state = 127, .external_lex_state = 3}, + [1586] = {.lex_state = 127, .external_lex_state = 3}, + [1587] = {.lex_state = 127, .external_lex_state = 3}, + [1588] = {.lex_state = 127, .external_lex_state = 3}, + [1589] = {.lex_state = 127, .external_lex_state = 3}, + [1590] = {.lex_state = 127, .external_lex_state = 3}, + [1591] = {.lex_state = 127, .external_lex_state = 3}, + [1592] = {.lex_state = 127, .external_lex_state = 3}, + [1593] = {.lex_state = 127, .external_lex_state = 3}, + [1594] = {.lex_state = 127, .external_lex_state = 3}, + [1595] = {.lex_state = 127, .external_lex_state = 3}, + [1596] = {.lex_state = 127, .external_lex_state = 3}, + [1597] = {.lex_state = 127, .external_lex_state = 3}, + [1598] = {.lex_state = 127, .external_lex_state = 3}, + [1599] = {.lex_state = 127, .external_lex_state = 3}, + [1600] = {.lex_state = 127, .external_lex_state = 3}, + [1601] = {.lex_state = 127, .external_lex_state = 3}, + [1602] = {.lex_state = 127, .external_lex_state = 3}, + [1603] = {.lex_state = 127, .external_lex_state = 3}, + [1604] = {.lex_state = 127, .external_lex_state = 3}, + [1605] = {.lex_state = 127, .external_lex_state = 3}, + [1606] = {.lex_state = 127, .external_lex_state = 3}, + [1607] = {.lex_state = 127, .external_lex_state = 3}, + [1608] = {.lex_state = 127, .external_lex_state = 3}, + [1609] = {.lex_state = 127, .external_lex_state = 3}, + [1610] = {.lex_state = 127, .external_lex_state = 3}, + [1611] = {.lex_state = 127, .external_lex_state = 3}, + [1612] = {.lex_state = 127, .external_lex_state = 3}, + [1613] = {.lex_state = 127, .external_lex_state = 3}, + [1614] = {.lex_state = 127, .external_lex_state = 3}, + [1615] = {.lex_state = 127, .external_lex_state = 3}, + [1616] = {.lex_state = 127, .external_lex_state = 3}, + [1617] = {.lex_state = 128, .external_lex_state = 5}, + [1618] = {.lex_state = 127, .external_lex_state = 3}, + [1619] = {.lex_state = 127, .external_lex_state = 3}, + [1620] = {.lex_state = 127, .external_lex_state = 3}, + [1621] = {.lex_state = 127, .external_lex_state = 3}, + [1622] = {.lex_state = 127, .external_lex_state = 3}, + [1623] = {.lex_state = 127, .external_lex_state = 3}, + [1624] = {.lex_state = 127, .external_lex_state = 3}, + [1625] = {.lex_state = 127, .external_lex_state = 3}, + [1626] = {.lex_state = 127, .external_lex_state = 3}, + [1627] = {.lex_state = 127, .external_lex_state = 3}, + [1628] = {.lex_state = 127, .external_lex_state = 3}, + [1629] = {.lex_state = 127, .external_lex_state = 3}, + [1630] = {.lex_state = 127, .external_lex_state = 3}, + [1631] = {.lex_state = 127, .external_lex_state = 3}, + [1632] = {.lex_state = 127, .external_lex_state = 3}, + [1633] = {.lex_state = 127, .external_lex_state = 3}, + [1634] = {.lex_state = 127, .external_lex_state = 3}, + [1635] = {.lex_state = 127, .external_lex_state = 3}, + [1636] = {.lex_state = 127, .external_lex_state = 3}, + [1637] = {.lex_state = 127, .external_lex_state = 3}, + [1638] = {.lex_state = 127, .external_lex_state = 3}, + [1639] = {.lex_state = 127, .external_lex_state = 3}, + [1640] = {.lex_state = 127, .external_lex_state = 4}, + [1641] = {.lex_state = 127, .external_lex_state = 3}, + [1642] = {.lex_state = 127, .external_lex_state = 3}, + [1643] = {.lex_state = 127, .external_lex_state = 3}, + [1644] = {.lex_state = 127, .external_lex_state = 3}, + [1645] = {.lex_state = 127, .external_lex_state = 3}, + [1646] = {.lex_state = 127, .external_lex_state = 3}, + [1647] = {.lex_state = 127, .external_lex_state = 3}, + [1648] = {.lex_state = 127, .external_lex_state = 3}, + [1649] = {.lex_state = 127, .external_lex_state = 3}, + [1650] = {.lex_state = 127, .external_lex_state = 3}, + [1651] = {.lex_state = 127, .external_lex_state = 3}, + [1652] = {.lex_state = 127, .external_lex_state = 3}, + [1653] = {.lex_state = 127, .external_lex_state = 3}, + [1654] = {.lex_state = 127, .external_lex_state = 3}, + [1655] = {.lex_state = 127, .external_lex_state = 3}, + [1656] = {.lex_state = 127, .external_lex_state = 3}, + [1657] = {.lex_state = 127, .external_lex_state = 3}, + [1658] = {.lex_state = 127, .external_lex_state = 3}, + [1659] = {.lex_state = 128, .external_lex_state = 5}, + [1660] = {.lex_state = 127, .external_lex_state = 3}, + [1661] = {.lex_state = 127, .external_lex_state = 3}, + [1662] = {.lex_state = 127, .external_lex_state = 3}, + [1663] = {.lex_state = 127, .external_lex_state = 3}, + [1664] = {.lex_state = 127, .external_lex_state = 3}, + [1665] = {.lex_state = 127, .external_lex_state = 3}, + [1666] = {.lex_state = 127, .external_lex_state = 3}, + [1667] = {.lex_state = 127, .external_lex_state = 3}, + [1668] = {.lex_state = 127, .external_lex_state = 3}, + [1669] = {.lex_state = 127, .external_lex_state = 3}, + [1670] = {.lex_state = 128, .external_lex_state = 5}, + [1671] = {.lex_state = 127, .external_lex_state = 3}, + [1672] = {.lex_state = 127, .external_lex_state = 3}, + [1673] = {.lex_state = 127, .external_lex_state = 3}, + [1674] = {.lex_state = 127, .external_lex_state = 3}, + [1675] = {.lex_state = 127, .external_lex_state = 3}, + [1676] = {.lex_state = 127, .external_lex_state = 3}, + [1677] = {.lex_state = 127, .external_lex_state = 3}, + [1678] = {.lex_state = 127, .external_lex_state = 3}, + [1679] = {.lex_state = 127, .external_lex_state = 3}, + [1680] = {.lex_state = 127, .external_lex_state = 3}, + [1681] = {.lex_state = 127, .external_lex_state = 3}, + [1682] = {.lex_state = 127, .external_lex_state = 3}, + [1683] = {.lex_state = 127, .external_lex_state = 3}, + [1684] = {.lex_state = 127, .external_lex_state = 3}, + [1685] = {.lex_state = 127, .external_lex_state = 3}, + [1686] = {.lex_state = 127, .external_lex_state = 3}, + [1687] = {.lex_state = 127, .external_lex_state = 3}, + [1688] = {.lex_state = 127, .external_lex_state = 3}, + [1689] = {.lex_state = 127, .external_lex_state = 3}, + [1690] = {.lex_state = 127, .external_lex_state = 3}, + [1691] = {.lex_state = 127, .external_lex_state = 3}, + [1692] = {.lex_state = 127, .external_lex_state = 3}, + [1693] = {.lex_state = 127, .external_lex_state = 3}, + [1694] = {.lex_state = 127, .external_lex_state = 3}, + [1695] = {.lex_state = 127, .external_lex_state = 3}, + [1696] = {.lex_state = 127, .external_lex_state = 3}, + [1697] = {.lex_state = 127, .external_lex_state = 3}, + [1698] = {.lex_state = 127, .external_lex_state = 4}, + [1699] = {.lex_state = 127, .external_lex_state = 3}, + [1700] = {.lex_state = 127, .external_lex_state = 4}, + [1701] = {.lex_state = 127, .external_lex_state = 3}, + [1702] = {.lex_state = 127, .external_lex_state = 3}, + [1703] = {.lex_state = 127, .external_lex_state = 3}, + [1704] = {.lex_state = 127, .external_lex_state = 3}, + [1705] = {.lex_state = 127, .external_lex_state = 3}, + [1706] = {.lex_state = 127, .external_lex_state = 3}, + [1707] = {.lex_state = 127, .external_lex_state = 3}, + [1708] = {.lex_state = 127, .external_lex_state = 3}, + [1709] = {.lex_state = 127, .external_lex_state = 3}, + [1710] = {.lex_state = 127, .external_lex_state = 3}, + [1711] = {.lex_state = 127, .external_lex_state = 3}, + [1712] = {.lex_state = 128, .external_lex_state = 5}, + [1713] = {.lex_state = 127, .external_lex_state = 3}, + [1714] = {.lex_state = 127, .external_lex_state = 3}, + [1715] = {.lex_state = 127, .external_lex_state = 3}, + [1716] = {.lex_state = 128, .external_lex_state = 5}, + [1717] = {.lex_state = 127, .external_lex_state = 3}, + [1718] = {.lex_state = 127, .external_lex_state = 3}, + [1719] = {.lex_state = 127, .external_lex_state = 3}, + [1720] = {.lex_state = 127, .external_lex_state = 3}, + [1721] = {.lex_state = 127, .external_lex_state = 3}, + [1722] = {.lex_state = 127, .external_lex_state = 3}, + [1723] = {.lex_state = 127, .external_lex_state = 3}, + [1724] = {.lex_state = 127, .external_lex_state = 3}, + [1725] = {.lex_state = 127, .external_lex_state = 3}, + [1726] = {.lex_state = 128, .external_lex_state = 5}, + [1727] = {.lex_state = 127, .external_lex_state = 4}, + [1728] = {.lex_state = 128, .external_lex_state = 5}, + [1729] = {.lex_state = 127, .external_lex_state = 4}, + [1730] = {.lex_state = 128, .external_lex_state = 5}, + [1731] = {.lex_state = 127, .external_lex_state = 3}, + [1732] = {.lex_state = 128, .external_lex_state = 5}, + [1733] = {.lex_state = 127, .external_lex_state = 4}, + [1734] = {.lex_state = 128, .external_lex_state = 5}, + [1735] = {.lex_state = 127, .external_lex_state = 3}, + [1736] = {.lex_state = 127, .external_lex_state = 4}, + [1737] = {.lex_state = 128, .external_lex_state = 5}, + [1738] = {.lex_state = 127, .external_lex_state = 3}, + [1739] = {.lex_state = 128, .external_lex_state = 5}, + [1740] = {.lex_state = 127, .external_lex_state = 4}, + [1741] = {.lex_state = 128, .external_lex_state = 5}, + [1742] = {.lex_state = 127, .external_lex_state = 4}, + [1743] = {.lex_state = 127, .external_lex_state = 4}, + [1744] = {.lex_state = 128, .external_lex_state = 5}, + [1745] = {.lex_state = 127, .external_lex_state = 4}, + [1746] = {.lex_state = 127, .external_lex_state = 4}, + [1747] = {.lex_state = 127, .external_lex_state = 4}, + [1748] = {.lex_state = 128, .external_lex_state = 5}, + [1749] = {.lex_state = 127, .external_lex_state = 4}, + [1750] = {.lex_state = 127, .external_lex_state = 4}, + [1751] = {.lex_state = 128, .external_lex_state = 5}, + [1752] = {.lex_state = 128, .external_lex_state = 5}, + [1753] = {.lex_state = 128, .external_lex_state = 5}, + [1754] = {.lex_state = 127, .external_lex_state = 3}, + [1755] = {.lex_state = 127, .external_lex_state = 3}, + [1756] = {.lex_state = 127, .external_lex_state = 4}, + [1757] = {.lex_state = 127, .external_lex_state = 4}, + [1758] = {.lex_state = 127, .external_lex_state = 4}, + [1759] = {.lex_state = 127, .external_lex_state = 3}, + [1760] = {.lex_state = 127, .external_lex_state = 4}, + [1761] = {.lex_state = 127, .external_lex_state = 4}, + [1762] = {.lex_state = 127, .external_lex_state = 4}, + [1763] = {.lex_state = 127, .external_lex_state = 3}, + [1764] = {.lex_state = 127, .external_lex_state = 4}, + [1765] = {.lex_state = 127, .external_lex_state = 4}, + [1766] = {.lex_state = 127, .external_lex_state = 3}, + [1767] = {.lex_state = 127, .external_lex_state = 4}, + [1768] = {.lex_state = 127, .external_lex_state = 4}, + [1769] = {.lex_state = 127, .external_lex_state = 4}, + [1770] = {.lex_state = 128, .external_lex_state = 5}, + [1771] = {.lex_state = 127, .external_lex_state = 4}, + [1772] = {.lex_state = 128, .external_lex_state = 5}, + [1773] = {.lex_state = 127, .external_lex_state = 4}, + [1774] = {.lex_state = 127, .external_lex_state = 4}, + [1775] = {.lex_state = 127, .external_lex_state = 4}, + [1776] = {.lex_state = 127, .external_lex_state = 3}, + [1777] = {.lex_state = 127, .external_lex_state = 4}, + [1778] = {.lex_state = 127, .external_lex_state = 4}, + [1779] = {.lex_state = 127, .external_lex_state = 4}, + [1780] = {.lex_state = 127, .external_lex_state = 4}, + [1781] = {.lex_state = 127, .external_lex_state = 4}, + [1782] = {.lex_state = 127, .external_lex_state = 4}, + [1783] = {.lex_state = 127, .external_lex_state = 4}, + [1784] = {.lex_state = 127, .external_lex_state = 4}, + [1785] = {.lex_state = 128, .external_lex_state = 5}, + [1786] = {.lex_state = 127, .external_lex_state = 4}, + [1787] = {.lex_state = 127, .external_lex_state = 4}, + [1788] = {.lex_state = 127, .external_lex_state = 4}, + [1789] = {.lex_state = 128, .external_lex_state = 5}, + [1790] = {.lex_state = 127, .external_lex_state = 4}, + [1791] = {.lex_state = 127, .external_lex_state = 3}, + [1792] = {.lex_state = 127, .external_lex_state = 4}, + [1793] = {.lex_state = 127, .external_lex_state = 3}, + [1794] = {.lex_state = 127, .external_lex_state = 4}, + [1795] = {.lex_state = 127, .external_lex_state = 4}, + [1796] = {.lex_state = 127, .external_lex_state = 4}, + [1797] = {.lex_state = 127, .external_lex_state = 4}, + [1798] = {.lex_state = 128, .external_lex_state = 5}, + [1799] = {.lex_state = 127, .external_lex_state = 4}, + [1800] = {.lex_state = 127, .external_lex_state = 3}, + [1801] = {.lex_state = 127, .external_lex_state = 4}, + [1802] = {.lex_state = 127, .external_lex_state = 4}, + [1803] = {.lex_state = 127, .external_lex_state = 4}, + [1804] = {.lex_state = 127, .external_lex_state = 4}, + [1805] = {.lex_state = 127, .external_lex_state = 4}, + [1806] = {.lex_state = 127, .external_lex_state = 3}, + [1807] = {.lex_state = 127, .external_lex_state = 4}, + [1808] = {.lex_state = 127, .external_lex_state = 4}, + [1809] = {.lex_state = 127, .external_lex_state = 4}, + [1810] = {.lex_state = 127, .external_lex_state = 4}, + [1811] = {.lex_state = 127, .external_lex_state = 4}, + [1812] = {.lex_state = 127, .external_lex_state = 4}, + [1813] = {.lex_state = 4, .external_lex_state = 3}, + [1814] = {.lex_state = 127, .external_lex_state = 4}, + [1815] = {.lex_state = 127, .external_lex_state = 3}, + [1816] = {.lex_state = 127, .external_lex_state = 4}, + [1817] = {.lex_state = 127, .external_lex_state = 4}, + [1818] = {.lex_state = 127, .external_lex_state = 4}, + [1819] = {.lex_state = 127, .external_lex_state = 4}, + [1820] = {.lex_state = 127, .external_lex_state = 4}, + [1821] = {.lex_state = 127, .external_lex_state = 3}, + [1822] = {.lex_state = 127, .external_lex_state = 4}, + [1823] = {.lex_state = 127, .external_lex_state = 4}, + [1824] = {.lex_state = 127, .external_lex_state = 4}, + [1825] = {.lex_state = 127, .external_lex_state = 4}, + [1826] = {.lex_state = 127, .external_lex_state = 3}, + [1827] = {.lex_state = 127, .external_lex_state = 4}, + [1828] = {.lex_state = 127, .external_lex_state = 4}, + [1829] = {.lex_state = 127, .external_lex_state = 4}, + [1830] = {.lex_state = 127, .external_lex_state = 4}, + [1831] = {.lex_state = 127, .external_lex_state = 4}, + [1832] = {.lex_state = 127, .external_lex_state = 4}, + [1833] = {.lex_state = 127, .external_lex_state = 4}, + [1834] = {.lex_state = 127, .external_lex_state = 3}, + [1835] = {.lex_state = 127, .external_lex_state = 3}, + [1836] = {.lex_state = 127, .external_lex_state = 4}, + [1837] = {.lex_state = 127, .external_lex_state = 4}, + [1838] = {.lex_state = 127, .external_lex_state = 4}, + [1839] = {.lex_state = 128, .external_lex_state = 5}, + [1840] = {.lex_state = 127, .external_lex_state = 4}, + [1841] = {.lex_state = 127, .external_lex_state = 4}, + [1842] = {.lex_state = 128, .external_lex_state = 5}, + [1843] = {.lex_state = 127, .external_lex_state = 4}, + [1844] = {.lex_state = 127, .external_lex_state = 4}, + [1845] = {.lex_state = 128, .external_lex_state = 5}, + [1846] = {.lex_state = 127, .external_lex_state = 4}, + [1847] = {.lex_state = 127, .external_lex_state = 4}, + [1848] = {.lex_state = 127, .external_lex_state = 4}, + [1849] = {.lex_state = 127, .external_lex_state = 4}, + [1850] = {.lex_state = 127, .external_lex_state = 4}, + [1851] = {.lex_state = 127, .external_lex_state = 3}, + [1852] = {.lex_state = 127, .external_lex_state = 4}, + [1853] = {.lex_state = 127, .external_lex_state = 4}, + [1854] = {.lex_state = 127, .external_lex_state = 3}, + [1855] = {.lex_state = 127, .external_lex_state = 3}, + [1856] = {.lex_state = 128, .external_lex_state = 5}, + [1857] = {.lex_state = 128, .external_lex_state = 5}, + [1858] = {.lex_state = 127, .external_lex_state = 4}, + [1859] = {.lex_state = 127, .external_lex_state = 4}, + [1860] = {.lex_state = 128, .external_lex_state = 2}, + [1861] = {.lex_state = 127, .external_lex_state = 4}, + [1862] = {.lex_state = 127, .external_lex_state = 4}, + [1863] = {.lex_state = 127, .external_lex_state = 4}, + [1864] = {.lex_state = 127, .external_lex_state = 4}, + [1865] = {.lex_state = 127, .external_lex_state = 4}, + [1866] = {.lex_state = 127, .external_lex_state = 4}, + [1867] = {.lex_state = 127, .external_lex_state = 4}, + [1868] = {.lex_state = 127, .external_lex_state = 4}, + [1869] = {.lex_state = 127, .external_lex_state = 4}, + [1870] = {.lex_state = 127, .external_lex_state = 4}, + [1871] = {.lex_state = 127, .external_lex_state = 4}, + [1872] = {.lex_state = 127, .external_lex_state = 4}, + [1873] = {.lex_state = 127, .external_lex_state = 4}, + [1874] = {.lex_state = 127, .external_lex_state = 4}, + [1875] = {.lex_state = 127, .external_lex_state = 4}, + [1876] = {.lex_state = 127, .external_lex_state = 4}, + [1877] = {.lex_state = 127, .external_lex_state = 4}, + [1878] = {.lex_state = 127, .external_lex_state = 4}, + [1879] = {.lex_state = 127, .external_lex_state = 4}, + [1880] = {.lex_state = 127, .external_lex_state = 4}, + [1881] = {.lex_state = 127, .external_lex_state = 3}, + [1882] = {.lex_state = 127, .external_lex_state = 3}, + [1883] = {.lex_state = 127, .external_lex_state = 4}, + [1884] = {.lex_state = 127, .external_lex_state = 4}, + [1885] = {.lex_state = 127, .external_lex_state = 4}, + [1886] = {.lex_state = 127, .external_lex_state = 4}, + [1887] = {.lex_state = 127, .external_lex_state = 4}, + [1888] = {.lex_state = 127, .external_lex_state = 4}, + [1889] = {.lex_state = 127, .external_lex_state = 4}, + [1890] = {.lex_state = 127, .external_lex_state = 4}, + [1891] = {.lex_state = 127, .external_lex_state = 4}, + [1892] = {.lex_state = 127, .external_lex_state = 4}, + [1893] = {.lex_state = 127, .external_lex_state = 4}, + [1894] = {.lex_state = 127, .external_lex_state = 4}, + [1895] = {.lex_state = 127, .external_lex_state = 4}, + [1896] = {.lex_state = 127, .external_lex_state = 4}, + [1897] = {.lex_state = 127, .external_lex_state = 4}, + [1898] = {.lex_state = 127, .external_lex_state = 4}, + [1899] = {.lex_state = 127, .external_lex_state = 4}, + [1900] = {.lex_state = 127, .external_lex_state = 4}, + [1901] = {.lex_state = 127, .external_lex_state = 4}, + [1902] = {.lex_state = 127, .external_lex_state = 4}, + [1903] = {.lex_state = 127, .external_lex_state = 4}, + [1904] = {.lex_state = 127, .external_lex_state = 4}, + [1905] = {.lex_state = 127, .external_lex_state = 4}, + [1906] = {.lex_state = 127, .external_lex_state = 4}, + [1907] = {.lex_state = 127, .external_lex_state = 4}, + [1908] = {.lex_state = 127, .external_lex_state = 4}, + [1909] = {.lex_state = 127, .external_lex_state = 4}, + [1910] = {.lex_state = 127, .external_lex_state = 4}, + [1911] = {.lex_state = 127, .external_lex_state = 4}, + [1912] = {.lex_state = 127, .external_lex_state = 4}, + [1913] = {.lex_state = 127, .external_lex_state = 4}, + [1914] = {.lex_state = 127, .external_lex_state = 4}, + [1915] = {.lex_state = 127, .external_lex_state = 4}, + [1916] = {.lex_state = 127, .external_lex_state = 4}, + [1917] = {.lex_state = 127, .external_lex_state = 4}, + [1918] = {.lex_state = 127, .external_lex_state = 4}, + [1919] = {.lex_state = 127, .external_lex_state = 4}, + [1920] = {.lex_state = 127, .external_lex_state = 4}, + [1921] = {.lex_state = 127, .external_lex_state = 4}, + [1922] = {.lex_state = 127, .external_lex_state = 4}, + [1923] = {.lex_state = 127, .external_lex_state = 4}, + [1924] = {.lex_state = 127, .external_lex_state = 4}, + [1925] = {.lex_state = 127, .external_lex_state = 4}, + [1926] = {.lex_state = 127, .external_lex_state = 4}, + [1927] = {.lex_state = 127, .external_lex_state = 4}, + [1928] = {.lex_state = 127, .external_lex_state = 4}, + [1929] = {.lex_state = 127, .external_lex_state = 4}, + [1930] = {.lex_state = 127, .external_lex_state = 4}, + [1931] = {.lex_state = 127, .external_lex_state = 4}, + [1932] = {.lex_state = 127, .external_lex_state = 4}, + [1933] = {.lex_state = 127, .external_lex_state = 4}, + [1934] = {.lex_state = 127, .external_lex_state = 4}, + [1935] = {.lex_state = 127, .external_lex_state = 4}, + [1936] = {.lex_state = 127, .external_lex_state = 4}, + [1937] = {.lex_state = 127, .external_lex_state = 4}, + [1938] = {.lex_state = 127, .external_lex_state = 4}, + [1939] = {.lex_state = 127, .external_lex_state = 4}, + [1940] = {.lex_state = 127, .external_lex_state = 4}, + [1941] = {.lex_state = 127, .external_lex_state = 4}, + [1942] = {.lex_state = 127, .external_lex_state = 4}, + [1943] = {.lex_state = 127, .external_lex_state = 4}, + [1944] = {.lex_state = 127, .external_lex_state = 4}, + [1945] = {.lex_state = 127, .external_lex_state = 4}, + [1946] = {.lex_state = 127, .external_lex_state = 4}, + [1947] = {.lex_state = 127, .external_lex_state = 4}, + [1948] = {.lex_state = 127, .external_lex_state = 4}, + [1949] = {.lex_state = 127, .external_lex_state = 4}, + [1950] = {.lex_state = 127, .external_lex_state = 4}, + [1951] = {.lex_state = 127, .external_lex_state = 4}, + [1952] = {.lex_state = 127, .external_lex_state = 4}, + [1953] = {.lex_state = 127, .external_lex_state = 4}, + [1954] = {.lex_state = 127, .external_lex_state = 4}, + [1955] = {.lex_state = 127, .external_lex_state = 4}, + [1956] = {.lex_state = 127, .external_lex_state = 4}, + [1957] = {.lex_state = 127, .external_lex_state = 4}, + [1958] = {.lex_state = 127, .external_lex_state = 4}, + [1959] = {.lex_state = 127, .external_lex_state = 4}, + [1960] = {.lex_state = 127, .external_lex_state = 4}, + [1961] = {.lex_state = 127, .external_lex_state = 4}, + [1962] = {.lex_state = 127, .external_lex_state = 4}, + [1963] = {.lex_state = 127, .external_lex_state = 4}, + [1964] = {.lex_state = 127, .external_lex_state = 4}, + [1965] = {.lex_state = 127, .external_lex_state = 4}, + [1966] = {.lex_state = 127, .external_lex_state = 4}, + [1967] = {.lex_state = 127, .external_lex_state = 3}, + [1968] = {.lex_state = 127, .external_lex_state = 4}, + [1969] = {.lex_state = 127, .external_lex_state = 4}, + [1970] = {.lex_state = 127, .external_lex_state = 4}, + [1971] = {.lex_state = 127, .external_lex_state = 4}, + [1972] = {.lex_state = 127, .external_lex_state = 4}, + [1973] = {.lex_state = 127, .external_lex_state = 4}, + [1974] = {.lex_state = 127, .external_lex_state = 4}, + [1975] = {.lex_state = 128, .external_lex_state = 2}, + [1976] = {.lex_state = 127, .external_lex_state = 4}, + [1977] = {.lex_state = 127, .external_lex_state = 3}, + [1978] = {.lex_state = 127, .external_lex_state = 4}, + [1979] = {.lex_state = 127, .external_lex_state = 3}, + [1980] = {.lex_state = 127, .external_lex_state = 3}, + [1981] = {.lex_state = 127, .external_lex_state = 4}, + [1982] = {.lex_state = 127, .external_lex_state = 4}, + [1983] = {.lex_state = 127, .external_lex_state = 4}, + [1984] = {.lex_state = 128, .external_lex_state = 2}, + [1985] = {.lex_state = 128, .external_lex_state = 2}, + [1986] = {.lex_state = 127, .external_lex_state = 3}, + [1987] = {.lex_state = 128, .external_lex_state = 5}, + [1988] = {.lex_state = 128, .external_lex_state = 5}, + [1989] = {.lex_state = 128, .external_lex_state = 5}, + [1990] = {.lex_state = 128, .external_lex_state = 5}, + [1991] = {.lex_state = 127, .external_lex_state = 4}, + [1992] = {.lex_state = 127, .external_lex_state = 4}, + [1993] = {.lex_state = 127, .external_lex_state = 3}, + [1994] = {.lex_state = 128, .external_lex_state = 5}, + [1995] = {.lex_state = 127, .external_lex_state = 3}, + [1996] = {.lex_state = 127, .external_lex_state = 3}, + [1997] = {.lex_state = 128, .external_lex_state = 2}, + [1998] = {.lex_state = 127, .external_lex_state = 4}, + [1999] = {.lex_state = 127, .external_lex_state = 3}, + [2000] = {.lex_state = 127, .external_lex_state = 3}, + [2001] = {.lex_state = 127, .external_lex_state = 4}, + [2002] = {.lex_state = 127, .external_lex_state = 4}, + [2003] = {.lex_state = 128, .external_lex_state = 2}, + [2004] = {.lex_state = 127, .external_lex_state = 3}, + [2005] = {.lex_state = 127, .external_lex_state = 3}, + [2006] = {.lex_state = 127, .external_lex_state = 4}, + [2007] = {.lex_state = 127, .external_lex_state = 4}, + [2008] = {.lex_state = 127, .external_lex_state = 4}, + [2009] = {.lex_state = 127, .external_lex_state = 4}, + [2010] = {.lex_state = 128, .external_lex_state = 2}, + [2011] = {.lex_state = 127, .external_lex_state = 4}, + [2012] = {.lex_state = 127, .external_lex_state = 4}, + [2013] = {.lex_state = 127, .external_lex_state = 4}, + [2014] = {.lex_state = 127, .external_lex_state = 4}, + [2015] = {.lex_state = 127, .external_lex_state = 3}, + [2016] = {.lex_state = 127, .external_lex_state = 4}, + [2017] = {.lex_state = 128, .external_lex_state = 2}, + [2018] = {.lex_state = 128, .external_lex_state = 5}, + [2019] = {.lex_state = 128, .external_lex_state = 5}, + [2020] = {.lex_state = 128, .external_lex_state = 5}, + [2021] = {.lex_state = 127, .external_lex_state = 3}, + [2022] = {.lex_state = 127, .external_lex_state = 4}, + [2023] = {.lex_state = 128, .external_lex_state = 5}, + [2024] = {.lex_state = 128, .external_lex_state = 5}, + [2025] = {.lex_state = 128, .external_lex_state = 5}, + [2026] = {.lex_state = 127, .external_lex_state = 4}, + [2027] = {.lex_state = 127, .external_lex_state = 4}, + [2028] = {.lex_state = 127, .external_lex_state = 4}, + [2029] = {.lex_state = 127, .external_lex_state = 4}, + [2030] = {.lex_state = 127, .external_lex_state = 3}, + [2031] = {.lex_state = 127, .external_lex_state = 3}, + [2032] = {.lex_state = 127, .external_lex_state = 3}, + [2033] = {.lex_state = 127, .external_lex_state = 3}, + [2034] = {.lex_state = 127, .external_lex_state = 3}, + [2035] = {.lex_state = 127, .external_lex_state = 3}, + [2036] = {.lex_state = 127, .external_lex_state = 3}, + [2037] = {.lex_state = 127, .external_lex_state = 3}, + [2038] = {.lex_state = 127, .external_lex_state = 3}, + [2039] = {.lex_state = 127, .external_lex_state = 3}, + [2040] = {.lex_state = 127, .external_lex_state = 3}, + [2041] = {.lex_state = 127, .external_lex_state = 3}, + [2042] = {.lex_state = 127, .external_lex_state = 3}, + [2043] = {.lex_state = 127, .external_lex_state = 3}, + [2044] = {.lex_state = 127, .external_lex_state = 3}, + [2045] = {.lex_state = 127, .external_lex_state = 3}, + [2046] = {.lex_state = 127, .external_lex_state = 3}, + [2047] = {.lex_state = 127, .external_lex_state = 3}, + [2048] = {.lex_state = 127, .external_lex_state = 3}, + [2049] = {.lex_state = 127, .external_lex_state = 3}, + [2050] = {.lex_state = 127, .external_lex_state = 3}, + [2051] = {.lex_state = 127, .external_lex_state = 3}, + [2052] = {.lex_state = 127, .external_lex_state = 3}, + [2053] = {.lex_state = 127, .external_lex_state = 3}, + [2054] = {.lex_state = 127, .external_lex_state = 3}, + [2055] = {.lex_state = 127, .external_lex_state = 4}, + [2056] = {.lex_state = 127, .external_lex_state = 3}, + [2057] = {.lex_state = 127, .external_lex_state = 3}, + [2058] = {.lex_state = 127, .external_lex_state = 4}, + [2059] = {.lex_state = 127, .external_lex_state = 3}, + [2060] = {.lex_state = 127, .external_lex_state = 4}, + [2061] = {.lex_state = 127, .external_lex_state = 4}, + [2062] = {.lex_state = 127, .external_lex_state = 3}, + [2063] = {.lex_state = 128, .external_lex_state = 5}, + [2064] = {.lex_state = 127, .external_lex_state = 4}, + [2065] = {.lex_state = 127, .external_lex_state = 4}, + [2066] = {.lex_state = 127, .external_lex_state = 4}, + [2067] = {.lex_state = 127, .external_lex_state = 3}, + [2068] = {.lex_state = 127, .external_lex_state = 4}, + [2069] = {.lex_state = 127, .external_lex_state = 3}, + [2070] = {.lex_state = 127, .external_lex_state = 3}, + [2071] = {.lex_state = 127, .external_lex_state = 4}, + [2072] = {.lex_state = 128, .external_lex_state = 2}, + [2073] = {.lex_state = 128, .external_lex_state = 5}, + [2074] = {.lex_state = 128, .external_lex_state = 2}, + [2075] = {.lex_state = 127, .external_lex_state = 3}, + [2076] = {.lex_state = 127, .external_lex_state = 3}, + [2077] = {.lex_state = 128, .external_lex_state = 5}, + [2078] = {.lex_state = 128, .external_lex_state = 5}, + [2079] = {.lex_state = 4, .external_lex_state = 4}, + [2080] = {.lex_state = 127, .external_lex_state = 4}, + [2081] = {.lex_state = 127, .external_lex_state = 4}, + [2082] = {.lex_state = 127, .external_lex_state = 3}, + [2083] = {.lex_state = 127, .external_lex_state = 4}, + [2084] = {.lex_state = 128, .external_lex_state = 5}, + [2085] = {.lex_state = 127, .external_lex_state = 4}, + [2086] = {.lex_state = 127, .external_lex_state = 4}, + [2087] = {.lex_state = 127, .external_lex_state = 4}, + [2088] = {.lex_state = 127, .external_lex_state = 4}, + [2089] = {.lex_state = 127, .external_lex_state = 4}, + [2090] = {.lex_state = 127, .external_lex_state = 4}, + [2091] = {.lex_state = 128, .external_lex_state = 5}, + [2092] = {.lex_state = 128, .external_lex_state = 5}, + [2093] = {.lex_state = 128, .external_lex_state = 5}, + [2094] = {.lex_state = 127, .external_lex_state = 4}, + [2095] = {.lex_state = 127, .external_lex_state = 4}, + [2096] = {.lex_state = 127, .external_lex_state = 4}, + [2097] = {.lex_state = 127, .external_lex_state = 4}, + [2098] = {.lex_state = 127, .external_lex_state = 4}, + [2099] = {.lex_state = 127, .external_lex_state = 4}, + [2100] = {.lex_state = 127, .external_lex_state = 4}, + [2101] = {.lex_state = 128, .external_lex_state = 2}, + [2102] = {.lex_state = 127, .external_lex_state = 4}, + [2103] = {.lex_state = 128, .external_lex_state = 2}, + [2104] = {.lex_state = 127, .external_lex_state = 4}, + [2105] = {.lex_state = 127, .external_lex_state = 4}, + [2106] = {.lex_state = 127, .external_lex_state = 3}, + [2107] = {.lex_state = 127, .external_lex_state = 3}, + [2108] = {.lex_state = 127, .external_lex_state = 4}, + [2109] = {.lex_state = 127, .external_lex_state = 4}, + [2110] = {.lex_state = 127, .external_lex_state = 4}, + [2111] = {.lex_state = 127, .external_lex_state = 4}, + [2112] = {.lex_state = 128, .external_lex_state = 5}, + [2113] = {.lex_state = 127, .external_lex_state = 3}, + [2114] = {.lex_state = 127, .external_lex_state = 4}, + [2115] = {.lex_state = 127, .external_lex_state = 4}, + [2116] = {.lex_state = 127, .external_lex_state = 4}, + [2117] = {.lex_state = 127, .external_lex_state = 4}, + [2118] = {.lex_state = 127, .external_lex_state = 4}, + [2119] = {.lex_state = 128, .external_lex_state = 2}, + [2120] = {.lex_state = 127, .external_lex_state = 4}, + [2121] = {.lex_state = 128, .external_lex_state = 2}, + [2122] = {.lex_state = 128, .external_lex_state = 5}, + [2123] = {.lex_state = 128, .external_lex_state = 5}, + [2124] = {.lex_state = 127, .external_lex_state = 4}, + [2125] = {.lex_state = 127, .external_lex_state = 4}, + [2126] = {.lex_state = 127, .external_lex_state = 4}, + [2127] = {.lex_state = 127, .external_lex_state = 4}, + [2128] = {.lex_state = 4, .external_lex_state = 4}, + [2129] = {.lex_state = 127, .external_lex_state = 4}, + [2130] = {.lex_state = 127, .external_lex_state = 4}, + [2131] = {.lex_state = 127, .external_lex_state = 4}, + [2132] = {.lex_state = 128, .external_lex_state = 5}, + [2133] = {.lex_state = 128, .external_lex_state = 5}, + [2134] = {.lex_state = 127, .external_lex_state = 4}, + [2135] = {.lex_state = 127, .external_lex_state = 3}, + [2136] = {.lex_state = 127, .external_lex_state = 3}, + [2137] = {.lex_state = 128, .external_lex_state = 5}, + [2138] = {.lex_state = 128, .external_lex_state = 5}, + [2139] = {.lex_state = 128, .external_lex_state = 5}, + [2140] = {.lex_state = 128, .external_lex_state = 5}, + [2141] = {.lex_state = 128, .external_lex_state = 5}, + [2142] = {.lex_state = 128, .external_lex_state = 5}, + [2143] = {.lex_state = 127, .external_lex_state = 4}, + [2144] = {.lex_state = 127, .external_lex_state = 3}, + [2145] = {.lex_state = 127, .external_lex_state = 3}, + [2146] = {.lex_state = 127, .external_lex_state = 3}, + [2147] = {.lex_state = 127, .external_lex_state = 4}, + [2148] = {.lex_state = 127, .external_lex_state = 3}, + [2149] = {.lex_state = 127, .external_lex_state = 4}, + [2150] = {.lex_state = 127, .external_lex_state = 4}, + [2151] = {.lex_state = 127, .external_lex_state = 4}, + [2152] = {.lex_state = 127, .external_lex_state = 3}, + [2153] = {.lex_state = 127, .external_lex_state = 3}, + [2154] = {.lex_state = 127, .external_lex_state = 4}, + [2155] = {.lex_state = 127, .external_lex_state = 4}, + [2156] = {.lex_state = 127, .external_lex_state = 4}, + [2157] = {.lex_state = 127, .external_lex_state = 4}, + [2158] = {.lex_state = 127, .external_lex_state = 4}, + [2159] = {.lex_state = 127, .external_lex_state = 4}, + [2160] = {.lex_state = 127, .external_lex_state = 4}, + [2161] = {.lex_state = 127, .external_lex_state = 3}, + [2162] = {.lex_state = 127, .external_lex_state = 4}, + [2163] = {.lex_state = 127, .external_lex_state = 3}, + [2164] = {.lex_state = 127, .external_lex_state = 4}, + [2165] = {.lex_state = 127, .external_lex_state = 4}, + [2166] = {.lex_state = 127, .external_lex_state = 4}, + [2167] = {.lex_state = 127, .external_lex_state = 4}, + [2168] = {.lex_state = 127, .external_lex_state = 4}, + [2169] = {.lex_state = 127, .external_lex_state = 4}, + [2170] = {.lex_state = 127, .external_lex_state = 4}, + [2171] = {.lex_state = 127, .external_lex_state = 4}, + [2172] = {.lex_state = 127, .external_lex_state = 4}, + [2173] = {.lex_state = 127, .external_lex_state = 3}, + [2174] = {.lex_state = 127, .external_lex_state = 4}, + [2175] = {.lex_state = 127, .external_lex_state = 4}, + [2176] = {.lex_state = 127, .external_lex_state = 3}, + [2177] = {.lex_state = 127, .external_lex_state = 4}, + [2178] = {.lex_state = 127, .external_lex_state = 4}, + [2179] = {.lex_state = 127, .external_lex_state = 4}, + [2180] = {.lex_state = 127, .external_lex_state = 4}, + [2181] = {.lex_state = 127, .external_lex_state = 4}, + [2182] = {.lex_state = 127, .external_lex_state = 4}, + [2183] = {.lex_state = 127, .external_lex_state = 4}, + [2184] = {.lex_state = 127, .external_lex_state = 4}, + [2185] = {.lex_state = 127, .external_lex_state = 4}, + [2186] = {.lex_state = 127, .external_lex_state = 3}, + [2187] = {.lex_state = 127, .external_lex_state = 4}, + [2188] = {.lex_state = 128, .external_lex_state = 2}, + [2189] = {.lex_state = 127, .external_lex_state = 4}, + [2190] = {.lex_state = 127, .external_lex_state = 4}, + [2191] = {.lex_state = 127, .external_lex_state = 4}, + [2192] = {.lex_state = 127, .external_lex_state = 4}, + [2193] = {.lex_state = 127, .external_lex_state = 4}, + [2194] = {.lex_state = 127, .external_lex_state = 3}, + [2195] = {.lex_state = 127, .external_lex_state = 3}, + [2196] = {.lex_state = 127, .external_lex_state = 3}, + [2197] = {.lex_state = 127, .external_lex_state = 3}, + [2198] = {.lex_state = 127, .external_lex_state = 3}, + [2199] = {.lex_state = 127, .external_lex_state = 4}, + [2200] = {.lex_state = 128, .external_lex_state = 2}, + [2201] = {.lex_state = 127, .external_lex_state = 3}, + [2202] = {.lex_state = 128, .external_lex_state = 5}, + [2203] = {.lex_state = 127, .external_lex_state = 3}, + [2204] = {.lex_state = 127, .external_lex_state = 3}, + [2205] = {.lex_state = 127, .external_lex_state = 3}, + [2206] = {.lex_state = 127, .external_lex_state = 3}, + [2207] = {.lex_state = 128, .external_lex_state = 2}, + [2208] = {.lex_state = 127, .external_lex_state = 3}, + [2209] = {.lex_state = 127, .external_lex_state = 3}, + [2210] = {.lex_state = 128, .external_lex_state = 5}, + [2211] = {.lex_state = 128, .external_lex_state = 5}, + [2212] = {.lex_state = 127, .external_lex_state = 3}, + [2213] = {.lex_state = 127, .external_lex_state = 3}, + [2214] = {.lex_state = 128, .external_lex_state = 5}, + [2215] = {.lex_state = 127, .external_lex_state = 4}, + [2216] = {.lex_state = 127, .external_lex_state = 3}, + [2217] = {.lex_state = 127, .external_lex_state = 4}, + [2218] = {.lex_state = 127, .external_lex_state = 4}, + [2219] = {.lex_state = 128, .external_lex_state = 5}, + [2220] = {.lex_state = 127, .external_lex_state = 4}, + [2221] = {.lex_state = 128, .external_lex_state = 5}, + [2222] = {.lex_state = 128, .external_lex_state = 5}, + [2223] = {.lex_state = 128, .external_lex_state = 5}, + [2224] = {.lex_state = 127, .external_lex_state = 4}, + [2225] = {.lex_state = 127, .external_lex_state = 4}, + [2226] = {.lex_state = 127, .external_lex_state = 4}, + [2227] = {.lex_state = 127, .external_lex_state = 3}, + [2228] = {.lex_state = 128, .external_lex_state = 5}, + [2229] = {.lex_state = 127, .external_lex_state = 4}, + [2230] = {.lex_state = 127, .external_lex_state = 3}, + [2231] = {.lex_state = 128, .external_lex_state = 5}, + [2232] = {.lex_state = 127, .external_lex_state = 3}, + [2233] = {.lex_state = 127, .external_lex_state = 3}, + [2234] = {.lex_state = 128, .external_lex_state = 5}, + [2235] = {.lex_state = 127, .external_lex_state = 3}, + [2236] = {.lex_state = 128, .external_lex_state = 5}, + [2237] = {.lex_state = 127, .external_lex_state = 4}, + [2238] = {.lex_state = 127, .external_lex_state = 4}, + [2239] = {.lex_state = 127, .external_lex_state = 4}, + [2240] = {.lex_state = 127, .external_lex_state = 4}, + [2241] = {.lex_state = 128, .external_lex_state = 5}, + [2242] = {.lex_state = 128, .external_lex_state = 5}, + [2243] = {.lex_state = 128, .external_lex_state = 5}, + [2244] = {.lex_state = 127, .external_lex_state = 3}, + [2245] = {.lex_state = 127, .external_lex_state = 3}, + [2246] = {.lex_state = 127, .external_lex_state = 3}, + [2247] = {.lex_state = 127, .external_lex_state = 3}, + [2248] = {.lex_state = 127, .external_lex_state = 3}, + [2249] = {.lex_state = 127, .external_lex_state = 3}, + [2250] = {.lex_state = 127, .external_lex_state = 3}, + [2251] = {.lex_state = 127, .external_lex_state = 3}, + [2252] = {.lex_state = 127, .external_lex_state = 3}, + [2253] = {.lex_state = 127, .external_lex_state = 3}, + [2254] = {.lex_state = 127, .external_lex_state = 3}, + [2255] = {.lex_state = 127, .external_lex_state = 3}, + [2256] = {.lex_state = 127, .external_lex_state = 3}, + [2257] = {.lex_state = 127, .external_lex_state = 3}, + [2258] = {.lex_state = 127, .external_lex_state = 3}, + [2259] = {.lex_state = 127, .external_lex_state = 3}, + [2260] = {.lex_state = 127, .external_lex_state = 3}, + [2261] = {.lex_state = 127, .external_lex_state = 3}, + [2262] = {.lex_state = 127, .external_lex_state = 3}, + [2263] = {.lex_state = 127, .external_lex_state = 3}, + [2264] = {.lex_state = 127, .external_lex_state = 3}, + [2265] = {.lex_state = 127, .external_lex_state = 3}, + [2266] = {.lex_state = 127, .external_lex_state = 3}, + [2267] = {.lex_state = 127, .external_lex_state = 3}, + [2268] = {.lex_state = 127, .external_lex_state = 3}, + [2269] = {.lex_state = 128, .external_lex_state = 2}, + [2270] = {.lex_state = 128, .external_lex_state = 5}, + [2271] = {.lex_state = 127, .external_lex_state = 4}, + [2272] = {.lex_state = 127, .external_lex_state = 4}, + [2273] = {.lex_state = 127, .external_lex_state = 4}, + [2274] = {.lex_state = 127, .external_lex_state = 4}, + [2275] = {.lex_state = 127, .external_lex_state = 4}, + [2276] = {.lex_state = 127, .external_lex_state = 4}, + [2277] = {.lex_state = 127, .external_lex_state = 4}, + [2278] = {.lex_state = 127, .external_lex_state = 3}, + [2279] = {.lex_state = 127, .external_lex_state = 3}, + [2280] = {.lex_state = 127, .external_lex_state = 3}, + [2281] = {.lex_state = 127, .external_lex_state = 3}, + [2282] = {.lex_state = 127, .external_lex_state = 3}, + [2283] = {.lex_state = 127, .external_lex_state = 3}, + [2284] = {.lex_state = 127, .external_lex_state = 4}, + [2285] = {.lex_state = 127, .external_lex_state = 3}, + [2286] = {.lex_state = 128, .external_lex_state = 2}, + [2287] = {.lex_state = 127, .external_lex_state = 3}, + [2288] = {.lex_state = 127, .external_lex_state = 4}, + [2289] = {.lex_state = 127, .external_lex_state = 3}, + [2290] = {.lex_state = 127, .external_lex_state = 3}, + [2291] = {.lex_state = 128, .external_lex_state = 5}, + [2292] = {.lex_state = 127, .external_lex_state = 3}, + [2293] = {.lex_state = 128, .external_lex_state = 5}, + [2294] = {.lex_state = 128, .external_lex_state = 5}, + [2295] = {.lex_state = 128, .external_lex_state = 5}, + [2296] = {.lex_state = 128, .external_lex_state = 5}, + [2297] = {.lex_state = 128, .external_lex_state = 5}, + [2298] = {.lex_state = 128, .external_lex_state = 5}, + [2299] = {.lex_state = 127, .external_lex_state = 3}, + [2300] = {.lex_state = 127, .external_lex_state = 3}, + [2301] = {.lex_state = 127, .external_lex_state = 4}, + [2302] = {.lex_state = 127, .external_lex_state = 3}, + [2303] = {.lex_state = 127, .external_lex_state = 4}, + [2304] = {.lex_state = 128, .external_lex_state = 5}, + [2305] = {.lex_state = 127, .external_lex_state = 4}, + [2306] = {.lex_state = 128, .external_lex_state = 2}, + [2307] = {.lex_state = 128, .external_lex_state = 2}, + [2308] = {.lex_state = 127, .external_lex_state = 4}, + [2309] = {.lex_state = 128, .external_lex_state = 2}, + [2310] = {.lex_state = 127, .external_lex_state = 4}, + [2311] = {.lex_state = 127, .external_lex_state = 4}, + [2312] = {.lex_state = 127, .external_lex_state = 4}, + [2313] = {.lex_state = 127, .external_lex_state = 3}, + [2314] = {.lex_state = 127, .external_lex_state = 4}, + [2315] = {.lex_state = 127, .external_lex_state = 4}, + [2316] = {.lex_state = 128, .external_lex_state = 5}, + [2317] = {.lex_state = 127, .external_lex_state = 4}, + [2318] = {.lex_state = 127, .external_lex_state = 3}, + [2319] = {.lex_state = 127, .external_lex_state = 4}, + [2320] = {.lex_state = 127, .external_lex_state = 4}, + [2321] = {.lex_state = 127, .external_lex_state = 3}, + [2322] = {.lex_state = 127, .external_lex_state = 4}, + [2323] = {.lex_state = 127, .external_lex_state = 3}, + [2324] = {.lex_state = 127, .external_lex_state = 4}, + [2325] = {.lex_state = 127, .external_lex_state = 3}, + [2326] = {.lex_state = 127, .external_lex_state = 4}, + [2327] = {.lex_state = 127, .external_lex_state = 3}, + [2328] = {.lex_state = 127, .external_lex_state = 3}, + [2329] = {.lex_state = 127, .external_lex_state = 3}, + [2330] = {.lex_state = 127, .external_lex_state = 4}, + [2331] = {.lex_state = 128, .external_lex_state = 5}, + [2332] = {.lex_state = 127, .external_lex_state = 3}, + [2333] = {.lex_state = 127, .external_lex_state = 4}, + [2334] = {.lex_state = 127, .external_lex_state = 4}, + [2335] = {.lex_state = 127, .external_lex_state = 4}, + [2336] = {.lex_state = 127, .external_lex_state = 3}, + [2337] = {.lex_state = 127, .external_lex_state = 3}, + [2338] = {.lex_state = 127, .external_lex_state = 3}, + [2339] = {.lex_state = 127, .external_lex_state = 3}, + [2340] = {.lex_state = 127, .external_lex_state = 3}, + [2341] = {.lex_state = 127, .external_lex_state = 3}, + [2342] = {.lex_state = 127, .external_lex_state = 3}, + [2343] = {.lex_state = 127, .external_lex_state = 3}, + [2344] = {.lex_state = 127, .external_lex_state = 3}, + [2345] = {.lex_state = 127, .external_lex_state = 3}, + [2346] = {.lex_state = 127, .external_lex_state = 4}, + [2347] = {.lex_state = 127, .external_lex_state = 3}, + [2348] = {.lex_state = 127, .external_lex_state = 3}, + [2349] = {.lex_state = 127, .external_lex_state = 3}, + [2350] = {.lex_state = 127, .external_lex_state = 4}, + [2351] = {.lex_state = 127, .external_lex_state = 4}, + [2352] = {.lex_state = 127, .external_lex_state = 3}, + [2353] = {.lex_state = 128, .external_lex_state = 5}, + [2354] = {.lex_state = 127, .external_lex_state = 4}, + [2355] = {.lex_state = 127, .external_lex_state = 3}, + [2356] = {.lex_state = 128, .external_lex_state = 5}, + [2357] = {.lex_state = 128, .external_lex_state = 2}, + [2358] = {.lex_state = 128, .external_lex_state = 2}, + [2359] = {.lex_state = 127, .external_lex_state = 3}, + [2360] = {.lex_state = 128, .external_lex_state = 5}, + [2361] = {.lex_state = 128, .external_lex_state = 5}, + [2362] = {.lex_state = 128, .external_lex_state = 5}, + [2363] = {.lex_state = 128, .external_lex_state = 5}, + [2364] = {.lex_state = 127, .external_lex_state = 4}, + [2365] = {.lex_state = 128, .external_lex_state = 5}, + [2366] = {.lex_state = 127, .external_lex_state = 4}, + [2367] = {.lex_state = 127, .external_lex_state = 3}, + [2368] = {.lex_state = 127, .external_lex_state = 3}, + [2369] = {.lex_state = 127, .external_lex_state = 3}, + [2370] = {.lex_state = 128, .external_lex_state = 2}, + [2371] = {.lex_state = 128, .external_lex_state = 5}, + [2372] = {.lex_state = 127, .external_lex_state = 4}, + [2373] = {.lex_state = 127, .external_lex_state = 3}, + [2374] = {.lex_state = 127, .external_lex_state = 3}, + [2375] = {.lex_state = 128, .external_lex_state = 5}, + [2376] = {.lex_state = 127, .external_lex_state = 3}, + [2377] = {.lex_state = 128, .external_lex_state = 5}, + [2378] = {.lex_state = 128, .external_lex_state = 2}, + [2379] = {.lex_state = 127, .external_lex_state = 4}, + [2380] = {.lex_state = 127, .external_lex_state = 4}, + [2381] = {.lex_state = 127, .external_lex_state = 3}, + [2382] = {.lex_state = 128, .external_lex_state = 2}, + [2383] = {.lex_state = 127, .external_lex_state = 3}, + [2384] = {.lex_state = 127, .external_lex_state = 3}, + [2385] = {.lex_state = 128, .external_lex_state = 2}, + [2386] = {.lex_state = 127, .external_lex_state = 4}, + [2387] = {.lex_state = 127, .external_lex_state = 3}, + [2388] = {.lex_state = 128, .external_lex_state = 5}, + [2389] = {.lex_state = 128, .external_lex_state = 5}, + [2390] = {.lex_state = 128, .external_lex_state = 5}, + [2391] = {.lex_state = 128, .external_lex_state = 5}, + [2392] = {.lex_state = 127, .external_lex_state = 4}, + [2393] = {.lex_state = 127, .external_lex_state = 4}, + [2394] = {.lex_state = 127, .external_lex_state = 3}, + [2395] = {.lex_state = 127, .external_lex_state = 3}, + [2396] = {.lex_state = 128, .external_lex_state = 5}, + [2397] = {.lex_state = 128, .external_lex_state = 5}, + [2398] = {.lex_state = 128, .external_lex_state = 5}, + [2399] = {.lex_state = 128, .external_lex_state = 5}, + [2400] = {.lex_state = 128, .external_lex_state = 2}, + [2401] = {.lex_state = 128, .external_lex_state = 2}, + [2402] = {.lex_state = 127, .external_lex_state = 3}, + [2403] = {.lex_state = 128, .external_lex_state = 2}, + [2404] = {.lex_state = 128, .external_lex_state = 5}, + [2405] = {.lex_state = 128, .external_lex_state = 5}, + [2406] = {.lex_state = 128, .external_lex_state = 5}, + [2407] = {.lex_state = 128, .external_lex_state = 5}, + [2408] = {.lex_state = 128, .external_lex_state = 5}, + [2409] = {.lex_state = 128, .external_lex_state = 5}, + [2410] = {.lex_state = 127, .external_lex_state = 4}, + [2411] = {.lex_state = 128, .external_lex_state = 5}, + [2412] = {.lex_state = 127, .external_lex_state = 3}, + [2413] = {.lex_state = 127, .external_lex_state = 4}, + [2414] = {.lex_state = 127, .external_lex_state = 3}, + [2415] = {.lex_state = 127, .external_lex_state = 3}, + [2416] = {.lex_state = 127, .external_lex_state = 3}, + [2417] = {.lex_state = 127, .external_lex_state = 3}, + [2418] = {.lex_state = 127, .external_lex_state = 3}, + [2419] = {.lex_state = 127, .external_lex_state = 3}, + [2420] = {.lex_state = 127, .external_lex_state = 3}, + [2421] = {.lex_state = 127, .external_lex_state = 3}, + [2422] = {.lex_state = 127, .external_lex_state = 3}, + [2423] = {.lex_state = 127, .external_lex_state = 3}, + [2424] = {.lex_state = 127, .external_lex_state = 3}, + [2425] = {.lex_state = 127, .external_lex_state = 3}, + [2426] = {.lex_state = 127, .external_lex_state = 3}, + [2427] = {.lex_state = 127, .external_lex_state = 3}, + [2428] = {.lex_state = 127, .external_lex_state = 3}, + [2429] = {.lex_state = 127, .external_lex_state = 3}, + [2430] = {.lex_state = 127, .external_lex_state = 3}, + [2431] = {.lex_state = 127, .external_lex_state = 3}, + [2432] = {.lex_state = 127, .external_lex_state = 3}, + [2433] = {.lex_state = 127, .external_lex_state = 3}, + [2434] = {.lex_state = 127, .external_lex_state = 3}, + [2435] = {.lex_state = 127, .external_lex_state = 3}, + [2436] = {.lex_state = 127, .external_lex_state = 3}, + [2437] = {.lex_state = 127, .external_lex_state = 3}, + [2438] = {.lex_state = 127, .external_lex_state = 3}, + [2439] = {.lex_state = 127, .external_lex_state = 3}, + [2440] = {.lex_state = 127, .external_lex_state = 3}, + [2441] = {.lex_state = 127, .external_lex_state = 3}, + [2442] = {.lex_state = 127, .external_lex_state = 3}, + [2443] = {.lex_state = 127, .external_lex_state = 4}, + [2444] = {.lex_state = 128, .external_lex_state = 2}, + [2445] = {.lex_state = 4, .external_lex_state = 3}, + [2446] = {.lex_state = 127, .external_lex_state = 3}, + [2447] = {.lex_state = 127, .external_lex_state = 3}, + [2448] = {.lex_state = 127, .external_lex_state = 3}, + [2449] = {.lex_state = 127, .external_lex_state = 3}, + [2450] = {.lex_state = 127, .external_lex_state = 3}, + [2451] = {.lex_state = 127, .external_lex_state = 3}, + [2452] = {.lex_state = 127, .external_lex_state = 3}, + [2453] = {.lex_state = 127, .external_lex_state = 3}, + [2454] = {.lex_state = 127, .external_lex_state = 3}, + [2455] = {.lex_state = 127, .external_lex_state = 3}, + [2456] = {.lex_state = 127, .external_lex_state = 3}, + [2457] = {.lex_state = 127, .external_lex_state = 3}, + [2458] = {.lex_state = 127, .external_lex_state = 3}, + [2459] = {.lex_state = 127, .external_lex_state = 3}, + [2460] = {.lex_state = 127, .external_lex_state = 3}, + [2461] = {.lex_state = 127, .external_lex_state = 3}, + [2462] = {.lex_state = 127, .external_lex_state = 3}, + [2463] = {.lex_state = 127, .external_lex_state = 3}, + [2464] = {.lex_state = 127, .external_lex_state = 3}, + [2465] = {.lex_state = 127, .external_lex_state = 3}, + [2466] = {.lex_state = 127, .external_lex_state = 3}, + [2467] = {.lex_state = 127, .external_lex_state = 3}, + [2468] = {.lex_state = 127, .external_lex_state = 3}, + [2469] = {.lex_state = 127, .external_lex_state = 3}, + [2470] = {.lex_state = 127, .external_lex_state = 3}, + [2471] = {.lex_state = 127, .external_lex_state = 3}, + [2472] = {.lex_state = 127, .external_lex_state = 3}, + [2473] = {.lex_state = 127, .external_lex_state = 3}, + [2474] = {.lex_state = 127, .external_lex_state = 3}, + [2475] = {.lex_state = 127, .external_lex_state = 3}, + [2476] = {.lex_state = 127, .external_lex_state = 3}, + [2477] = {.lex_state = 127, .external_lex_state = 4}, + [2478] = {.lex_state = 127, .external_lex_state = 3}, + [2479] = {.lex_state = 127, .external_lex_state = 3}, + [2480] = {.lex_state = 127, .external_lex_state = 3}, + [2481] = {.lex_state = 127, .external_lex_state = 3}, + [2482] = {.lex_state = 127, .external_lex_state = 3}, + [2483] = {.lex_state = 127, .external_lex_state = 3}, + [2484] = {.lex_state = 127, .external_lex_state = 3}, + [2485] = {.lex_state = 128, .external_lex_state = 2}, + [2486] = {.lex_state = 127, .external_lex_state = 3}, + [2487] = {.lex_state = 127, .external_lex_state = 3}, + [2488] = {.lex_state = 128, .external_lex_state = 2}, + [2489] = {.lex_state = 127, .external_lex_state = 3}, + [2490] = {.lex_state = 127, .external_lex_state = 3}, + [2491] = {.lex_state = 127, .external_lex_state = 3}, + [2492] = {.lex_state = 127, .external_lex_state = 3}, + [2493] = {.lex_state = 127, .external_lex_state = 3}, + [2494] = {.lex_state = 127, .external_lex_state = 3}, + [2495] = {.lex_state = 127, .external_lex_state = 3}, + [2496] = {.lex_state = 127, .external_lex_state = 3}, + [2497] = {.lex_state = 127, .external_lex_state = 3}, + [2498] = {.lex_state = 127, .external_lex_state = 3}, + [2499] = {.lex_state = 127, .external_lex_state = 3}, + [2500] = {.lex_state = 127, .external_lex_state = 3}, + [2501] = {.lex_state = 127, .external_lex_state = 3}, + [2502] = {.lex_state = 127, .external_lex_state = 3}, + [2503] = {.lex_state = 127, .external_lex_state = 3}, + [2504] = {.lex_state = 127, .external_lex_state = 3}, + [2505] = {.lex_state = 127, .external_lex_state = 3}, + [2506] = {.lex_state = 127, .external_lex_state = 3}, + [2507] = {.lex_state = 127, .external_lex_state = 3}, + [2508] = {.lex_state = 127, .external_lex_state = 3}, + [2509] = {.lex_state = 127, .external_lex_state = 3}, + [2510] = {.lex_state = 127, .external_lex_state = 3}, + [2511] = {.lex_state = 127, .external_lex_state = 3}, + [2512] = {.lex_state = 127, .external_lex_state = 3}, + [2513] = {.lex_state = 128, .external_lex_state = 5}, + [2514] = {.lex_state = 128, .external_lex_state = 5}, + [2515] = {.lex_state = 128, .external_lex_state = 5}, + [2516] = {.lex_state = 128, .external_lex_state = 5}, + [2517] = {.lex_state = 127, .external_lex_state = 3}, + [2518] = {.lex_state = 127, .external_lex_state = 3}, + [2519] = {.lex_state = 127, .external_lex_state = 4}, + [2520] = {.lex_state = 127, .external_lex_state = 3}, + [2521] = {.lex_state = 128, .external_lex_state = 2}, + [2522] = {.lex_state = 127, .external_lex_state = 3}, + [2523] = {.lex_state = 128, .external_lex_state = 5}, + [2524] = {.lex_state = 127, .external_lex_state = 3}, + [2525] = {.lex_state = 128, .external_lex_state = 5}, + [2526] = {.lex_state = 127, .external_lex_state = 3}, + [2527] = {.lex_state = 127, .external_lex_state = 3}, + [2528] = {.lex_state = 127, .external_lex_state = 3}, + [2529] = {.lex_state = 127, .external_lex_state = 3}, + [2530] = {.lex_state = 127, .external_lex_state = 3}, + [2531] = {.lex_state = 128, .external_lex_state = 2}, + [2532] = {.lex_state = 127, .external_lex_state = 3}, + [2533] = {.lex_state = 128, .external_lex_state = 2}, + [2534] = {.lex_state = 127, .external_lex_state = 3}, + [2535] = {.lex_state = 127, .external_lex_state = 3}, + [2536] = {.lex_state = 127, .external_lex_state = 3}, + [2537] = {.lex_state = 127, .external_lex_state = 3}, + [2538] = {.lex_state = 128, .external_lex_state = 2}, + [2539] = {.lex_state = 127, .external_lex_state = 3}, + [2540] = {.lex_state = 128, .external_lex_state = 5}, + [2541] = {.lex_state = 128, .external_lex_state = 5}, + [2542] = {.lex_state = 128, .external_lex_state = 5}, + [2543] = {.lex_state = 128, .external_lex_state = 5}, + [2544] = {.lex_state = 128, .external_lex_state = 2}, + [2545] = {.lex_state = 127, .external_lex_state = 3}, + [2546] = {.lex_state = 127, .external_lex_state = 3}, + [2547] = {.lex_state = 127, .external_lex_state = 3}, + [2548] = {.lex_state = 127, .external_lex_state = 3}, + [2549] = {.lex_state = 127, .external_lex_state = 3}, + [2550] = {.lex_state = 127, .external_lex_state = 3}, + [2551] = {.lex_state = 127, .external_lex_state = 3}, + [2552] = {.lex_state = 127, .external_lex_state = 3}, + [2553] = {.lex_state = 128, .external_lex_state = 5}, + [2554] = {.lex_state = 127, .external_lex_state = 3}, + [2555] = {.lex_state = 128, .external_lex_state = 2}, + [2556] = {.lex_state = 127, .external_lex_state = 3}, + [2557] = {.lex_state = 127, .external_lex_state = 3}, + [2558] = {.lex_state = 127, .external_lex_state = 3}, + [2559] = {.lex_state = 128, .external_lex_state = 5}, + [2560] = {.lex_state = 127, .external_lex_state = 3}, + [2561] = {.lex_state = 127, .external_lex_state = 3}, + [2562] = {.lex_state = 128, .external_lex_state = 5}, + [2563] = {.lex_state = 128, .external_lex_state = 2}, + [2564] = {.lex_state = 128, .external_lex_state = 5}, + [2565] = {.lex_state = 4, .external_lex_state = 3}, + [2566] = {.lex_state = 128, .external_lex_state = 5}, + [2567] = {.lex_state = 127, .external_lex_state = 3}, + [2568] = {.lex_state = 128, .external_lex_state = 2}, + [2569] = {.lex_state = 128, .external_lex_state = 2}, + [2570] = {.lex_state = 128, .external_lex_state = 2}, + [2571] = {.lex_state = 128, .external_lex_state = 2}, + [2572] = {.lex_state = 128, .external_lex_state = 5}, + [2573] = {.lex_state = 128, .external_lex_state = 2}, + [2574] = {.lex_state = 127, .external_lex_state = 3}, + [2575] = {.lex_state = 128, .external_lex_state = 5}, + [2576] = {.lex_state = 128, .external_lex_state = 5}, + [2577] = {.lex_state = 128, .external_lex_state = 5}, + [2578] = {.lex_state = 127, .external_lex_state = 3}, + [2579] = {.lex_state = 128, .external_lex_state = 5}, + [2580] = {.lex_state = 128, .external_lex_state = 5}, + [2581] = {.lex_state = 128, .external_lex_state = 5}, + [2582] = {.lex_state = 128, .external_lex_state = 5}, + [2583] = {.lex_state = 128, .external_lex_state = 2}, + [2584] = {.lex_state = 128, .external_lex_state = 5}, + [2585] = {.lex_state = 128, .external_lex_state = 2}, + [2586] = {.lex_state = 128, .external_lex_state = 5}, + [2587] = {.lex_state = 127, .external_lex_state = 3}, + [2588] = {.lex_state = 128, .external_lex_state = 2}, + [2589] = {.lex_state = 128, .external_lex_state = 2}, + [2590] = {.lex_state = 128, .external_lex_state = 5}, + [2591] = {.lex_state = 128, .external_lex_state = 2}, + [2592] = {.lex_state = 128, .external_lex_state = 2}, + [2593] = {.lex_state = 128, .external_lex_state = 5}, + [2594] = {.lex_state = 128, .external_lex_state = 5}, + [2595] = {.lex_state = 128, .external_lex_state = 2}, + [2596] = {.lex_state = 128, .external_lex_state = 2}, + [2597] = {.lex_state = 128, .external_lex_state = 2}, + [2598] = {.lex_state = 127, .external_lex_state = 3}, + [2599] = {.lex_state = 128, .external_lex_state = 2}, + [2600] = {.lex_state = 127, .external_lex_state = 3}, + [2601] = {.lex_state = 9, .external_lex_state = 5}, + [2602] = {.lex_state = 9, .external_lex_state = 5}, + [2603] = {.lex_state = 127, .external_lex_state = 3}, + [2604] = {.lex_state = 9, .external_lex_state = 5}, + [2605] = {.lex_state = 9, .external_lex_state = 5}, + [2606] = {.lex_state = 128, .external_lex_state = 2}, + [2607] = {.lex_state = 9, .external_lex_state = 5}, + [2608] = {.lex_state = 9, .external_lex_state = 5}, + [2609] = {.lex_state = 9, .external_lex_state = 5}, + [2610] = {.lex_state = 9, .external_lex_state = 5}, + [2611] = {.lex_state = 9, .external_lex_state = 5}, + [2612] = {.lex_state = 9, .external_lex_state = 5}, + [2613] = {.lex_state = 9, .external_lex_state = 5}, + [2614] = {.lex_state = 9, .external_lex_state = 5}, + [2615] = {.lex_state = 9, .external_lex_state = 5}, + [2616] = {.lex_state = 9, .external_lex_state = 5}, + [2617] = {.lex_state = 9, .external_lex_state = 5}, + [2618] = {.lex_state = 9, .external_lex_state = 5}, + [2619] = {.lex_state = 9, .external_lex_state = 5}, + [2620] = {.lex_state = 9, .external_lex_state = 5}, + [2621] = {.lex_state = 9, .external_lex_state = 5}, + [2622] = {.lex_state = 127, .external_lex_state = 3}, + [2623] = {.lex_state = 9, .external_lex_state = 5}, + [2624] = {.lex_state = 9, .external_lex_state = 5}, + [2625] = {.lex_state = 128, .external_lex_state = 2}, + [2626] = {.lex_state = 127, .external_lex_state = 3}, + [2627] = {.lex_state = 127, .external_lex_state = 3}, + [2628] = {.lex_state = 9, .external_lex_state = 5}, + [2629] = {.lex_state = 9, .external_lex_state = 5}, + [2630] = {.lex_state = 9, .external_lex_state = 5}, + [2631] = {.lex_state = 9, .external_lex_state = 5}, + [2632] = {.lex_state = 127, .external_lex_state = 3}, + [2633] = {.lex_state = 127, .external_lex_state = 3}, + [2634] = {.lex_state = 9, .external_lex_state = 5}, + [2635] = {.lex_state = 9, .external_lex_state = 5}, + [2636] = {.lex_state = 9, .external_lex_state = 5}, + [2637] = {.lex_state = 9, .external_lex_state = 5}, + [2638] = {.lex_state = 9, .external_lex_state = 5}, + [2639] = {.lex_state = 9, .external_lex_state = 5}, + [2640] = {.lex_state = 9, .external_lex_state = 5}, + [2641] = {.lex_state = 9, .external_lex_state = 5}, + [2642] = {.lex_state = 9, .external_lex_state = 5}, + [2643] = {.lex_state = 9, .external_lex_state = 5}, + [2644] = {.lex_state = 9, .external_lex_state = 5}, + [2645] = {.lex_state = 9, .external_lex_state = 5}, + [2646] = {.lex_state = 9, .external_lex_state = 5}, + [2647] = {.lex_state = 9, .external_lex_state = 5}, + [2648] = {.lex_state = 9, .external_lex_state = 5}, + [2649] = {.lex_state = 9, .external_lex_state = 5}, + [2650] = {.lex_state = 9, .external_lex_state = 5}, + [2651] = {.lex_state = 9, .external_lex_state = 5}, + [2652] = {.lex_state = 9, .external_lex_state = 5}, + [2653] = {.lex_state = 9, .external_lex_state = 5}, + [2654] = {.lex_state = 9, .external_lex_state = 5}, + [2655] = {.lex_state = 127, .external_lex_state = 3}, + [2656] = {.lex_state = 9, .external_lex_state = 5}, + [2657] = {.lex_state = 9, .external_lex_state = 5}, + [2658] = {.lex_state = 127, .external_lex_state = 3}, + [2659] = {.lex_state = 9, .external_lex_state = 5}, + [2660] = {.lex_state = 9, .external_lex_state = 5}, + [2661] = {.lex_state = 127, .external_lex_state = 3}, + [2662] = {.lex_state = 9, .external_lex_state = 5}, + [2663] = {.lex_state = 9, .external_lex_state = 5}, + [2664] = {.lex_state = 128, .external_lex_state = 2}, + [2665] = {.lex_state = 9, .external_lex_state = 2}, + [2666] = {.lex_state = 128, .external_lex_state = 2}, + [2667] = {.lex_state = 128, .external_lex_state = 2}, + [2668] = {.lex_state = 9, .external_lex_state = 2}, + [2669] = {.lex_state = 128, .external_lex_state = 2}, + [2670] = {.lex_state = 127, .external_lex_state = 3}, + [2671] = {.lex_state = 128, .external_lex_state = 2}, + [2672] = {.lex_state = 9, .external_lex_state = 2}, + [2673] = {.lex_state = 9, .external_lex_state = 2}, + [2674] = {.lex_state = 9, .external_lex_state = 2}, + [2675] = {.lex_state = 9, .external_lex_state = 2}, + [2676] = {.lex_state = 9, .external_lex_state = 2}, + [2677] = {.lex_state = 128, .external_lex_state = 2}, + [2678] = {.lex_state = 128, .external_lex_state = 2}, + [2679] = {.lex_state = 128, .external_lex_state = 2}, + [2680] = {.lex_state = 128, .external_lex_state = 2}, + [2681] = {.lex_state = 128, .external_lex_state = 2}, + [2682] = {.lex_state = 128, .external_lex_state = 2}, + [2683] = {.lex_state = 128, .external_lex_state = 2}, + [2684] = {.lex_state = 128, .external_lex_state = 2}, + [2685] = {.lex_state = 128, .external_lex_state = 2}, + [2686] = {.lex_state = 128, .external_lex_state = 2}, + [2687] = {.lex_state = 128, .external_lex_state = 2}, + [2688] = {.lex_state = 128, .external_lex_state = 2}, + [2689] = {.lex_state = 128, .external_lex_state = 2}, + [2690] = {.lex_state = 128, .external_lex_state = 2}, + [2691] = {.lex_state = 128, .external_lex_state = 2}, + [2692] = {.lex_state = 128, .external_lex_state = 2}, + [2693] = {.lex_state = 128, .external_lex_state = 2}, + [2694] = {.lex_state = 128, .external_lex_state = 2}, + [2695] = {.lex_state = 128, .external_lex_state = 2}, + [2696] = {.lex_state = 128, .external_lex_state = 2}, + [2697] = {.lex_state = 128, .external_lex_state = 2}, + [2698] = {.lex_state = 128, .external_lex_state = 2}, + [2699] = {.lex_state = 128, .external_lex_state = 2}, + [2700] = {.lex_state = 128, .external_lex_state = 2}, + [2701] = {.lex_state = 128, .external_lex_state = 2}, + [2702] = {.lex_state = 128, .external_lex_state = 2}, + [2703] = {.lex_state = 128, .external_lex_state = 2}, + [2704] = {.lex_state = 128, .external_lex_state = 2}, + [2705] = {.lex_state = 128, .external_lex_state = 2}, + [2706] = {.lex_state = 128, .external_lex_state = 2}, + [2707] = {.lex_state = 128, .external_lex_state = 2}, + [2708] = {.lex_state = 128, .external_lex_state = 2}, + [2709] = {.lex_state = 128, .external_lex_state = 2}, + [2710] = {.lex_state = 128, .external_lex_state = 2}, + [2711] = {.lex_state = 128, .external_lex_state = 2}, + [2712] = {.lex_state = 128, .external_lex_state = 2}, + [2713] = {.lex_state = 128, .external_lex_state = 2}, + [2714] = {.lex_state = 128, .external_lex_state = 2}, + [2715] = {.lex_state = 128, .external_lex_state = 2}, + [2716] = {.lex_state = 128, .external_lex_state = 2}, + [2717] = {.lex_state = 128, .external_lex_state = 2}, + [2718] = {.lex_state = 128, .external_lex_state = 2}, + [2719] = {.lex_state = 128, .external_lex_state = 2}, + [2720] = {.lex_state = 128, .external_lex_state = 2}, + [2721] = {.lex_state = 128, .external_lex_state = 2}, + [2722] = {.lex_state = 128, .external_lex_state = 2}, + [2723] = {.lex_state = 128, .external_lex_state = 2}, + [2724] = {.lex_state = 128, .external_lex_state = 2}, + [2725] = {.lex_state = 128, .external_lex_state = 2}, + [2726] = {.lex_state = 128, .external_lex_state = 2}, + [2727] = {.lex_state = 128, .external_lex_state = 2}, + [2728] = {.lex_state = 128, .external_lex_state = 2}, + [2729] = {.lex_state = 128, .external_lex_state = 2}, + [2730] = {.lex_state = 128, .external_lex_state = 2}, + [2731] = {.lex_state = 128, .external_lex_state = 2}, + [2732] = {.lex_state = 128, .external_lex_state = 2}, + [2733] = {.lex_state = 128, .external_lex_state = 2}, + [2734] = {.lex_state = 128, .external_lex_state = 2}, + [2735] = {.lex_state = 128, .external_lex_state = 2}, + [2736] = {.lex_state = 128, .external_lex_state = 2}, + [2737] = {.lex_state = 128, .external_lex_state = 2}, + [2738] = {.lex_state = 128, .external_lex_state = 2}, + [2739] = {.lex_state = 128, .external_lex_state = 2}, + [2740] = {.lex_state = 128, .external_lex_state = 2}, + [2741] = {.lex_state = 128, .external_lex_state = 2}, + [2742] = {.lex_state = 128, .external_lex_state = 2}, + [2743] = {.lex_state = 128, .external_lex_state = 2}, + [2744] = {.lex_state = 128, .external_lex_state = 2}, + [2745] = {.lex_state = 128, .external_lex_state = 2}, + [2746] = {.lex_state = 128, .external_lex_state = 2}, + [2747] = {.lex_state = 128, .external_lex_state = 2}, + [2748] = {.lex_state = 128, .external_lex_state = 2}, + [2749] = {.lex_state = 128, .external_lex_state = 2}, + [2750] = {.lex_state = 128, .external_lex_state = 2}, + [2751] = {.lex_state = 128, .external_lex_state = 2}, + [2752] = {.lex_state = 128, .external_lex_state = 2}, + [2753] = {.lex_state = 128, .external_lex_state = 2}, + [2754] = {.lex_state = 128, .external_lex_state = 2}, + [2755] = {.lex_state = 128, .external_lex_state = 2}, + [2756] = {.lex_state = 128, .external_lex_state = 2}, + [2757] = {.lex_state = 128, .external_lex_state = 2}, + [2758] = {.lex_state = 128, .external_lex_state = 2}, + [2759] = {.lex_state = 128, .external_lex_state = 2}, + [2760] = {.lex_state = 128, .external_lex_state = 2}, + [2761] = {.lex_state = 128, .external_lex_state = 2}, + [2762] = {.lex_state = 128, .external_lex_state = 2}, + [2763] = {.lex_state = 128, .external_lex_state = 2}, + [2764] = {.lex_state = 128, .external_lex_state = 2}, + [2765] = {.lex_state = 128, .external_lex_state = 2}, + [2766] = {.lex_state = 128, .external_lex_state = 2}, + [2767] = {.lex_state = 128, .external_lex_state = 2}, + [2768] = {.lex_state = 128, .external_lex_state = 2}, + [2769] = {.lex_state = 128, .external_lex_state = 2}, + [2770] = {.lex_state = 128, .external_lex_state = 2}, + [2771] = {.lex_state = 128, .external_lex_state = 2}, + [2772] = {.lex_state = 128, .external_lex_state = 2}, + [2773] = {.lex_state = 128, .external_lex_state = 2}, + [2774] = {.lex_state = 128, .external_lex_state = 2}, + [2775] = {.lex_state = 128, .external_lex_state = 2}, + [2776] = {.lex_state = 128, .external_lex_state = 2}, + [2777] = {.lex_state = 128, .external_lex_state = 2}, + [2778] = {.lex_state = 128, .external_lex_state = 2}, + [2779] = {.lex_state = 128, .external_lex_state = 2}, + [2780] = {.lex_state = 128, .external_lex_state = 2}, + [2781] = {.lex_state = 128, .external_lex_state = 2}, + [2782] = {.lex_state = 128, .external_lex_state = 2}, + [2783] = {.lex_state = 128, .external_lex_state = 2}, + [2784] = {.lex_state = 128, .external_lex_state = 2}, + [2785] = {.lex_state = 128, .external_lex_state = 2}, + [2786] = {.lex_state = 128, .external_lex_state = 2}, + [2787] = {.lex_state = 128, .external_lex_state = 2}, + [2788] = {.lex_state = 128, .external_lex_state = 2}, + [2789] = {.lex_state = 128, .external_lex_state = 2}, + [2790] = {.lex_state = 128, .external_lex_state = 2}, + [2791] = {.lex_state = 128, .external_lex_state = 2}, + [2792] = {.lex_state = 128, .external_lex_state = 2}, + [2793] = {.lex_state = 128, .external_lex_state = 2}, + [2794] = {.lex_state = 128, .external_lex_state = 2}, + [2795] = {.lex_state = 128, .external_lex_state = 2}, + [2796] = {.lex_state = 128, .external_lex_state = 2}, + [2797] = {.lex_state = 128, .external_lex_state = 2}, + [2798] = {.lex_state = 128, .external_lex_state = 2}, + [2799] = {.lex_state = 128, .external_lex_state = 2}, + [2800] = {.lex_state = 128, .external_lex_state = 2}, + [2801] = {.lex_state = 128, .external_lex_state = 2}, + [2802] = {.lex_state = 128, .external_lex_state = 2}, + [2803] = {.lex_state = 128, .external_lex_state = 2}, + [2804] = {.lex_state = 128, .external_lex_state = 2}, + [2805] = {.lex_state = 128, .external_lex_state = 2}, + [2806] = {.lex_state = 128, .external_lex_state = 2}, + [2807] = {.lex_state = 128, .external_lex_state = 2}, + [2808] = {.lex_state = 128, .external_lex_state = 2}, + [2809] = {.lex_state = 128, .external_lex_state = 2}, + [2810] = {.lex_state = 128, .external_lex_state = 2}, + [2811] = {.lex_state = 128, .external_lex_state = 2}, + [2812] = {.lex_state = 128, .external_lex_state = 2}, + [2813] = {.lex_state = 128, .external_lex_state = 2}, + [2814] = {.lex_state = 128, .external_lex_state = 2}, + [2815] = {.lex_state = 128, .external_lex_state = 2}, + [2816] = {.lex_state = 128, .external_lex_state = 2}, + [2817] = {.lex_state = 128, .external_lex_state = 2}, + [2818] = {.lex_state = 128, .external_lex_state = 2}, + [2819] = {.lex_state = 128, .external_lex_state = 2}, + [2820] = {.lex_state = 128, .external_lex_state = 2}, + [2821] = {.lex_state = 128, .external_lex_state = 2}, + [2822] = {.lex_state = 128, .external_lex_state = 2}, + [2823] = {.lex_state = 128, .external_lex_state = 2}, + [2824] = {.lex_state = 128, .external_lex_state = 2}, + [2825] = {.lex_state = 128, .external_lex_state = 2}, + [2826] = {.lex_state = 128, .external_lex_state = 2}, + [2827] = {.lex_state = 128, .external_lex_state = 2}, + [2828] = {.lex_state = 128, .external_lex_state = 2}, + [2829] = {.lex_state = 7, .external_lex_state = 2}, + [2830] = {.lex_state = 7, .external_lex_state = 2}, + [2831] = {.lex_state = 7, .external_lex_state = 2}, + [2832] = {.lex_state = 7, .external_lex_state = 2}, + [2833] = {.lex_state = 7, .external_lex_state = 2}, + [2834] = {.lex_state = 7, .external_lex_state = 2}, + [2835] = {.lex_state = 7, .external_lex_state = 2}, + [2836] = {.lex_state = 7, .external_lex_state = 2}, + [2837] = {.lex_state = 7, .external_lex_state = 2}, + [2838] = {.lex_state = 7, .external_lex_state = 2}, + [2839] = {.lex_state = 7, .external_lex_state = 2}, + [2840] = {.lex_state = 7, .external_lex_state = 2}, + [2841] = {.lex_state = 7, .external_lex_state = 2}, + [2842] = {.lex_state = 7, .external_lex_state = 2}, + [2843] = {.lex_state = 7, .external_lex_state = 2}, + [2844] = {.lex_state = 7, .external_lex_state = 2}, + [2845] = {.lex_state = 7, .external_lex_state = 2}, + [2846] = {.lex_state = 7, .external_lex_state = 2}, + [2847] = {.lex_state = 7, .external_lex_state = 2}, + [2848] = {.lex_state = 7, .external_lex_state = 2}, + [2849] = {.lex_state = 7, .external_lex_state = 2}, + [2850] = {.lex_state = 7, .external_lex_state = 2}, + [2851] = {.lex_state = 7, .external_lex_state = 2}, + [2852] = {.lex_state = 7, .external_lex_state = 2}, + [2853] = {.lex_state = 7, .external_lex_state = 2}, + [2854] = {.lex_state = 7, .external_lex_state = 2}, + [2855] = {.lex_state = 7, .external_lex_state = 2}, + [2856] = {.lex_state = 7, .external_lex_state = 2}, + [2857] = {.lex_state = 7, .external_lex_state = 2}, + [2858] = {.lex_state = 7, .external_lex_state = 2}, + [2859] = {.lex_state = 7, .external_lex_state = 2}, + [2860] = {.lex_state = 7, .external_lex_state = 2}, + [2861] = {.lex_state = 7, .external_lex_state = 2}, + [2862] = {.lex_state = 7, .external_lex_state = 2}, + [2863] = {.lex_state = 7, .external_lex_state = 2}, + [2864] = {.lex_state = 7, .external_lex_state = 2}, + [2865] = {.lex_state = 7, .external_lex_state = 2}, + [2866] = {.lex_state = 128, .external_lex_state = 5}, + [2867] = {.lex_state = 20, .external_lex_state = 2}, + [2868] = {.lex_state = 20, .external_lex_state = 2}, + [2869] = {.lex_state = 128, .external_lex_state = 2}, + [2870] = {.lex_state = 128, .external_lex_state = 5}, + [2871] = {.lex_state = 128, .external_lex_state = 2}, + [2872] = {.lex_state = 7, .external_lex_state = 2}, + [2873] = {.lex_state = 7, .external_lex_state = 2}, + [2874] = {.lex_state = 128, .external_lex_state = 2}, + [2875] = {.lex_state = 128, .external_lex_state = 2}, + [2876] = {.lex_state = 7, .external_lex_state = 2}, + [2877] = {.lex_state = 128, .external_lex_state = 2}, + [2878] = {.lex_state = 128, .external_lex_state = 2}, + [2879] = {.lex_state = 7, .external_lex_state = 2}, + [2880] = {.lex_state = 7, .external_lex_state = 2}, + [2881] = {.lex_state = 128, .external_lex_state = 2}, + [2882] = {.lex_state = 128, .external_lex_state = 2}, + [2883] = {.lex_state = 7, .external_lex_state = 5}, + [2884] = {.lex_state = 7, .external_lex_state = 5}, + [2885] = {.lex_state = 128, .external_lex_state = 2}, + [2886] = {.lex_state = 128, .external_lex_state = 2}, + [2887] = {.lex_state = 7, .external_lex_state = 5}, + [2888] = {.lex_state = 128, .external_lex_state = 2}, + [2889] = {.lex_state = 7, .external_lex_state = 2}, + [2890] = {.lex_state = 128, .external_lex_state = 2}, + [2891] = {.lex_state = 128, .external_lex_state = 2}, + [2892] = {.lex_state = 128, .external_lex_state = 2}, + [2893] = {.lex_state = 128, .external_lex_state = 2}, + [2894] = {.lex_state = 128, .external_lex_state = 2}, + [2895] = {.lex_state = 128, .external_lex_state = 2}, + [2896] = {.lex_state = 128, .external_lex_state = 2}, + [2897] = {.lex_state = 128, .external_lex_state = 2}, + [2898] = {.lex_state = 128, .external_lex_state = 2}, + [2899] = {.lex_state = 7, .external_lex_state = 5}, + [2900] = {.lex_state = 128, .external_lex_state = 2}, + [2901] = {.lex_state = 7, .external_lex_state = 5}, + [2902] = {.lex_state = 2, .external_lex_state = 2}, + [2903] = {.lex_state = 128, .external_lex_state = 2}, + [2904] = {.lex_state = 7, .external_lex_state = 5}, + [2905] = {.lex_state = 7, .external_lex_state = 5}, + [2906] = {.lex_state = 7, .external_lex_state = 5}, + [2907] = {.lex_state = 7, .external_lex_state = 5}, + [2908] = {.lex_state = 128, .external_lex_state = 2}, + [2909] = {.lex_state = 128, .external_lex_state = 2}, + [2910] = {.lex_state = 2, .external_lex_state = 2}, + [2911] = {.lex_state = 128, .external_lex_state = 2}, + [2912] = {.lex_state = 128, .external_lex_state = 2}, + [2913] = {.lex_state = 128, .external_lex_state = 2}, + [2914] = {.lex_state = 128, .external_lex_state = 2}, + [2915] = {.lex_state = 128, .external_lex_state = 2}, + [2916] = {.lex_state = 7, .external_lex_state = 5}, + [2917] = {.lex_state = 128, .external_lex_state = 2}, + [2918] = {.lex_state = 7, .external_lex_state = 5}, + [2919] = {.lex_state = 128, .external_lex_state = 2}, + [2920] = {.lex_state = 7, .external_lex_state = 5}, + [2921] = {.lex_state = 7, .external_lex_state = 5}, + [2922] = {.lex_state = 128, .external_lex_state = 2}, + [2923] = {.lex_state = 2, .external_lex_state = 2}, + [2924] = {.lex_state = 7, .external_lex_state = 5}, + [2925] = {.lex_state = 7, .external_lex_state = 5}, + [2926] = {.lex_state = 128, .external_lex_state = 2}, + [2927] = {.lex_state = 128, .external_lex_state = 2}, + [2928] = {.lex_state = 7, .external_lex_state = 5}, + [2929] = {.lex_state = 7, .external_lex_state = 5}, + [2930] = {.lex_state = 7, .external_lex_state = 5}, + [2931] = {.lex_state = 128, .external_lex_state = 2}, + [2932] = {.lex_state = 128, .external_lex_state = 2}, + [2933] = {.lex_state = 128, .external_lex_state = 2}, + [2934] = {.lex_state = 7, .external_lex_state = 5}, + [2935] = {.lex_state = 128, .external_lex_state = 2}, + [2936] = {.lex_state = 128, .external_lex_state = 2}, + [2937] = {.lex_state = 128, .external_lex_state = 2}, + [2938] = {.lex_state = 128, .external_lex_state = 2}, + [2939] = {.lex_state = 128, .external_lex_state = 2}, + [2940] = {.lex_state = 128, .external_lex_state = 2}, + [2941] = {.lex_state = 7, .external_lex_state = 5}, + [2942] = {.lex_state = 7, .external_lex_state = 5}, + [2943] = {.lex_state = 2, .external_lex_state = 2}, + [2944] = {.lex_state = 7, .external_lex_state = 5}, + [2945] = {.lex_state = 7, .external_lex_state = 5}, + [2946] = {.lex_state = 7, .external_lex_state = 6}, + [2947] = {.lex_state = 7, .external_lex_state = 6}, + [2948] = {.lex_state = 7, .external_lex_state = 6}, + [2949] = {.lex_state = 128, .external_lex_state = 2}, + [2950] = {.lex_state = 128, .external_lex_state = 2}, + [2951] = {.lex_state = 7, .external_lex_state = 5}, + [2952] = {.lex_state = 128, .external_lex_state = 2}, + [2953] = {.lex_state = 7, .external_lex_state = 5}, + [2954] = {.lex_state = 2, .external_lex_state = 2}, + [2955] = {.lex_state = 128, .external_lex_state = 2}, + [2956] = {.lex_state = 128, .external_lex_state = 2}, + [2957] = {.lex_state = 128, .external_lex_state = 2}, + [2958] = {.lex_state = 128, .external_lex_state = 2}, + [2959] = {.lex_state = 128, .external_lex_state = 2}, + [2960] = {.lex_state = 7, .external_lex_state = 5}, + [2961] = {.lex_state = 7, .external_lex_state = 5}, + [2962] = {.lex_state = 7, .external_lex_state = 5}, + [2963] = {.lex_state = 128, .external_lex_state = 2}, + [2964] = {.lex_state = 2, .external_lex_state = 2}, + [2965] = {.lex_state = 7, .external_lex_state = 5}, + [2966] = {.lex_state = 7, .external_lex_state = 5}, + [2967] = {.lex_state = 7, .external_lex_state = 5}, + [2968] = {.lex_state = 7, .external_lex_state = 5}, + [2969] = {.lex_state = 2, .external_lex_state = 2}, + [2970] = {.lex_state = 128, .external_lex_state = 2}, + [2971] = {.lex_state = 7, .external_lex_state = 5}, + [2972] = {.lex_state = 128, .external_lex_state = 2}, + [2973] = {.lex_state = 128, .external_lex_state = 2}, + [2974] = {.lex_state = 7, .external_lex_state = 5}, + [2975] = {.lex_state = 7, .external_lex_state = 5}, + [2976] = {.lex_state = 128, .external_lex_state = 2}, + [2977] = {.lex_state = 128, .external_lex_state = 2}, + [2978] = {.lex_state = 128, .external_lex_state = 5}, + [2979] = {.lex_state = 7, .external_lex_state = 5}, + [2980] = {.lex_state = 128, .external_lex_state = 2}, + [2981] = {.lex_state = 128, .external_lex_state = 2}, + [2982] = {.lex_state = 128, .external_lex_state = 2}, + [2983] = {.lex_state = 128, .external_lex_state = 2}, + [2984] = {.lex_state = 128, .external_lex_state = 2}, + [2985] = {.lex_state = 128, .external_lex_state = 2}, + [2986] = {.lex_state = 128, .external_lex_state = 2}, + [2987] = {.lex_state = 128, .external_lex_state = 2}, + [2988] = {.lex_state = 128, .external_lex_state = 2}, + [2989] = {.lex_state = 128, .external_lex_state = 2}, + [2990] = {.lex_state = 2, .external_lex_state = 2}, + [2991] = {.lex_state = 7, .external_lex_state = 5}, + [2992] = {.lex_state = 128, .external_lex_state = 2}, + [2993] = {.lex_state = 128, .external_lex_state = 2}, + [2994] = {.lex_state = 128, .external_lex_state = 2}, + [2995] = {.lex_state = 128, .external_lex_state = 2}, + [2996] = {.lex_state = 2, .external_lex_state = 2}, + [2997] = {.lex_state = 128, .external_lex_state = 2}, + [2998] = {.lex_state = 128, .external_lex_state = 2}, + [2999] = {.lex_state = 128, .external_lex_state = 2}, + [3000] = {.lex_state = 128, .external_lex_state = 5}, + [3001] = {.lex_state = 128, .external_lex_state = 2}, + [3002] = {.lex_state = 128, .external_lex_state = 2}, + [3003] = {.lex_state = 128, .external_lex_state = 5}, + [3004] = {.lex_state = 128, .external_lex_state = 5}, + [3005] = {.lex_state = 128, .external_lex_state = 5}, + [3006] = {.lex_state = 128, .external_lex_state = 5}, + [3007] = {.lex_state = 128, .external_lex_state = 5}, + [3008] = {.lex_state = 128, .external_lex_state = 5}, + [3009] = {.lex_state = 128, .external_lex_state = 5}, + [3010] = {.lex_state = 128, .external_lex_state = 5}, + [3011] = {.lex_state = 128, .external_lex_state = 5}, + [3012] = {.lex_state = 128, .external_lex_state = 5}, + [3013] = {.lex_state = 128, .external_lex_state = 2}, + [3014] = {.lex_state = 128, .external_lex_state = 5}, + [3015] = {.lex_state = 128, .external_lex_state = 5}, + [3016] = {.lex_state = 128, .external_lex_state = 5}, + [3017] = {.lex_state = 128, .external_lex_state = 5}, + [3018] = {.lex_state = 128, .external_lex_state = 2}, + [3019] = {.lex_state = 128, .external_lex_state = 2}, + [3020] = {.lex_state = 128, .external_lex_state = 5}, + [3021] = {.lex_state = 128, .external_lex_state = 5}, + [3022] = {.lex_state = 128, .external_lex_state = 5}, + [3023] = {.lex_state = 128, .external_lex_state = 5}, + [3024] = {.lex_state = 128, .external_lex_state = 5}, + [3025] = {.lex_state = 20, .external_lex_state = 2}, + [3026] = {.lex_state = 128, .external_lex_state = 5}, + [3027] = {.lex_state = 128, .external_lex_state = 5}, + [3028] = {.lex_state = 128, .external_lex_state = 5}, + [3029] = {.lex_state = 128, .external_lex_state = 5}, + [3030] = {.lex_state = 128, .external_lex_state = 2}, + [3031] = {.lex_state = 128, .external_lex_state = 5}, + [3032] = {.lex_state = 128, .external_lex_state = 5}, + [3033] = {.lex_state = 128, .external_lex_state = 5}, + [3034] = {.lex_state = 128, .external_lex_state = 5}, + [3035] = {.lex_state = 128, .external_lex_state = 2}, + [3036] = {.lex_state = 128, .external_lex_state = 2}, + [3037] = {.lex_state = 128, .external_lex_state = 2}, + [3038] = {.lex_state = 128, .external_lex_state = 2}, + [3039] = {.lex_state = 128, .external_lex_state = 5}, + [3040] = {.lex_state = 128, .external_lex_state = 5}, + [3041] = {.lex_state = 128, .external_lex_state = 2}, + [3042] = {.lex_state = 7, .external_lex_state = 6}, + [3043] = {.lex_state = 7, .external_lex_state = 5}, + [3044] = {.lex_state = 128, .external_lex_state = 5}, + [3045] = {.lex_state = 7, .external_lex_state = 6}, + [3046] = {.lex_state = 7, .external_lex_state = 5}, + [3047] = {.lex_state = 7, .external_lex_state = 5}, + [3048] = {.lex_state = 128, .external_lex_state = 5}, + [3049] = {.lex_state = 7, .external_lex_state = 6}, + [3050] = {.lex_state = 7, .external_lex_state = 6}, + [3051] = {.lex_state = 7, .external_lex_state = 6}, + [3052] = {.lex_state = 20, .external_lex_state = 2}, + [3053] = {.lex_state = 128, .external_lex_state = 5}, + [3054] = {.lex_state = 128, .external_lex_state = 5}, + [3055] = {.lex_state = 128, .external_lex_state = 5}, + [3056] = {.lex_state = 7, .external_lex_state = 6}, + [3057] = {.lex_state = 7, .external_lex_state = 6}, + [3058] = {.lex_state = 128, .external_lex_state = 2}, + [3059] = {.lex_state = 7, .external_lex_state = 6}, + [3060] = {.lex_state = 128, .external_lex_state = 5}, + [3061] = {.lex_state = 128, .external_lex_state = 2}, + [3062] = {.lex_state = 128, .external_lex_state = 5}, + [3063] = {.lex_state = 128, .external_lex_state = 2}, + [3064] = {.lex_state = 128, .external_lex_state = 2}, + [3065] = {.lex_state = 128, .external_lex_state = 5}, + [3066] = {.lex_state = 128, .external_lex_state = 2}, + [3067] = {.lex_state = 128, .external_lex_state = 2}, + [3068] = {.lex_state = 128, .external_lex_state = 2}, + [3069] = {.lex_state = 128, .external_lex_state = 5}, + [3070] = {.lex_state = 128, .external_lex_state = 5}, + [3071] = {.lex_state = 7, .external_lex_state = 5}, + [3072] = {.lex_state = 7, .external_lex_state = 6}, + [3073] = {.lex_state = 128, .external_lex_state = 5}, + [3074] = {.lex_state = 20, .external_lex_state = 2}, + [3075] = {.lex_state = 128, .external_lex_state = 5}, + [3076] = {.lex_state = 7, .external_lex_state = 6}, + [3077] = {.lex_state = 7, .external_lex_state = 6}, + [3078] = {.lex_state = 7, .external_lex_state = 5}, + [3079] = {.lex_state = 7, .external_lex_state = 5}, + [3080] = {.lex_state = 128, .external_lex_state = 5}, + [3081] = {.lex_state = 128, .external_lex_state = 5}, + [3082] = {.lex_state = 128, .external_lex_state = 2}, + [3083] = {.lex_state = 128, .external_lex_state = 5}, + [3084] = {.lex_state = 128, .external_lex_state = 6}, + [3085] = {.lex_state = 7, .external_lex_state = 6}, + [3086] = {.lex_state = 7, .external_lex_state = 6}, + [3087] = {.lex_state = 7, .external_lex_state = 6}, + [3088] = {.lex_state = 7, .external_lex_state = 6}, + [3089] = {.lex_state = 7, .external_lex_state = 6}, + [3090] = {.lex_state = 7, .external_lex_state = 6}, + [3091] = {.lex_state = 7, .external_lex_state = 6}, + [3092] = {.lex_state = 7, .external_lex_state = 6}, + [3093] = {.lex_state = 7, .external_lex_state = 6}, + [3094] = {.lex_state = 7, .external_lex_state = 6}, + [3095] = {.lex_state = 7, .external_lex_state = 6}, + [3096] = {.lex_state = 7, .external_lex_state = 6}, + [3097] = {.lex_state = 7, .external_lex_state = 6}, + [3098] = {.lex_state = 7, .external_lex_state = 6}, + [3099] = {.lex_state = 7, .external_lex_state = 5}, + [3100] = {.lex_state = 128, .external_lex_state = 5}, + [3101] = {.lex_state = 7, .external_lex_state = 6}, + [3102] = {.lex_state = 128, .external_lex_state = 5}, + [3103] = {.lex_state = 7, .external_lex_state = 6}, + [3104] = {.lex_state = 7, .external_lex_state = 6}, + [3105] = {.lex_state = 7, .external_lex_state = 6}, + [3106] = {.lex_state = 7, .external_lex_state = 6}, + [3107] = {.lex_state = 7, .external_lex_state = 6}, + [3108] = {.lex_state = 7, .external_lex_state = 6}, + [3109] = {.lex_state = 7, .external_lex_state = 6}, + [3110] = {.lex_state = 128, .external_lex_state = 5}, + [3111] = {.lex_state = 128, .external_lex_state = 5}, + [3112] = {.lex_state = 128, .external_lex_state = 2}, + [3113] = {.lex_state = 7, .external_lex_state = 6}, + [3114] = {.lex_state = 7, .external_lex_state = 5}, + [3115] = {.lex_state = 128, .external_lex_state = 2}, + [3116] = {.lex_state = 128, .external_lex_state = 5}, + [3117] = {.lex_state = 20, .external_lex_state = 2}, + [3118] = {.lex_state = 128, .external_lex_state = 5}, + [3119] = {.lex_state = 128, .external_lex_state = 5}, + [3120] = {.lex_state = 128, .external_lex_state = 5}, + [3121] = {.lex_state = 128, .external_lex_state = 5}, + [3122] = {.lex_state = 128, .external_lex_state = 5}, + [3123] = {.lex_state = 128, .external_lex_state = 5}, + [3124] = {.lex_state = 128, .external_lex_state = 5}, + [3125] = {.lex_state = 20, .external_lex_state = 2}, + [3126] = {.lex_state = 128, .external_lex_state = 5}, + [3127] = {.lex_state = 128, .external_lex_state = 6}, + [3128] = {.lex_state = 128, .external_lex_state = 6}, + [3129] = {.lex_state = 128, .external_lex_state = 5}, + [3130] = {.lex_state = 128, .external_lex_state = 5}, + [3131] = {.lex_state = 128, .external_lex_state = 5}, + [3132] = {.lex_state = 128, .external_lex_state = 5}, + [3133] = {.lex_state = 128, .external_lex_state = 5}, + [3134] = {.lex_state = 128, .external_lex_state = 5}, + [3135] = {.lex_state = 128, .external_lex_state = 5}, + [3136] = {.lex_state = 128, .external_lex_state = 5}, + [3137] = {.lex_state = 128, .external_lex_state = 5}, + [3138] = {.lex_state = 128, .external_lex_state = 5}, + [3139] = {.lex_state = 20, .external_lex_state = 2}, + [3140] = {.lex_state = 128, .external_lex_state = 5}, + [3141] = {.lex_state = 128, .external_lex_state = 5}, + [3142] = {.lex_state = 128, .external_lex_state = 5}, + [3143] = {.lex_state = 128, .external_lex_state = 5}, + [3144] = {.lex_state = 128, .external_lex_state = 5}, + [3145] = {.lex_state = 128, .external_lex_state = 5}, + [3146] = {.lex_state = 128, .external_lex_state = 5}, + [3147] = {.lex_state = 128, .external_lex_state = 5}, + [3148] = {.lex_state = 128, .external_lex_state = 5}, + [3149] = {.lex_state = 128, .external_lex_state = 5}, + [3150] = {.lex_state = 128, .external_lex_state = 5}, + [3151] = {.lex_state = 128, .external_lex_state = 5}, + [3152] = {.lex_state = 128, .external_lex_state = 5}, + [3153] = {.lex_state = 128, .external_lex_state = 2}, + [3154] = {.lex_state = 128, .external_lex_state = 5}, + [3155] = {.lex_state = 128, .external_lex_state = 2}, + [3156] = {.lex_state = 128, .external_lex_state = 5}, + [3157] = {.lex_state = 128, .external_lex_state = 2}, + [3158] = {.lex_state = 128, .external_lex_state = 5}, + [3159] = {.lex_state = 128, .external_lex_state = 5}, + [3160] = {.lex_state = 128, .external_lex_state = 5}, + [3161] = {.lex_state = 128, .external_lex_state = 5}, + [3162] = {.lex_state = 128, .external_lex_state = 5}, + [3163] = {.lex_state = 128, .external_lex_state = 5}, + [3164] = {.lex_state = 7, .external_lex_state = 2}, + [3165] = {.lex_state = 7, .external_lex_state = 2}, + [3166] = {.lex_state = 7, .external_lex_state = 2}, + [3167] = {.lex_state = 128, .external_lex_state = 5}, + [3168] = {.lex_state = 128, .external_lex_state = 5}, + [3169] = {.lex_state = 128, .external_lex_state = 5}, + [3170] = {.lex_state = 20, .external_lex_state = 2}, + [3171] = {.lex_state = 128, .external_lex_state = 5}, + [3172] = {.lex_state = 128, .external_lex_state = 5}, + [3173] = {.lex_state = 128, .external_lex_state = 5}, + [3174] = {.lex_state = 128, .external_lex_state = 5}, + [3175] = {.lex_state = 128, .external_lex_state = 5}, + [3176] = {.lex_state = 128, .external_lex_state = 5}, + [3177] = {.lex_state = 128, .external_lex_state = 5}, + [3178] = {.lex_state = 128, .external_lex_state = 5}, + [3179] = {.lex_state = 128, .external_lex_state = 5}, + [3180] = {.lex_state = 128, .external_lex_state = 5}, + [3181] = {.lex_state = 128, .external_lex_state = 6}, + [3182] = {.lex_state = 18, .external_lex_state = 7}, + [3183] = {.lex_state = 128, .external_lex_state = 6}, + [3184] = {.lex_state = 128, .external_lex_state = 5}, + [3185] = {.lex_state = 18, .external_lex_state = 7}, + [3186] = {.lex_state = 7, .external_lex_state = 6}, + [3187] = {.lex_state = 7, .external_lex_state = 6}, + [3188] = {.lex_state = 128, .external_lex_state = 5}, + [3189] = {.lex_state = 128, .external_lex_state = 5}, + [3190] = {.lex_state = 7, .external_lex_state = 6}, + [3191] = {.lex_state = 128, .external_lex_state = 6}, + [3192] = {.lex_state = 128, .external_lex_state = 5}, + [3193] = {.lex_state = 128, .external_lex_state = 5}, + [3194] = {.lex_state = 128, .external_lex_state = 5}, + [3195] = {.lex_state = 128, .external_lex_state = 5}, + [3196] = {.lex_state = 128, .external_lex_state = 2}, + [3197] = {.lex_state = 128, .external_lex_state = 5}, + [3198] = {.lex_state = 128, .external_lex_state = 5}, + [3199] = {.lex_state = 18, .external_lex_state = 7}, + [3200] = {.lex_state = 128, .external_lex_state = 5}, + [3201] = {.lex_state = 128, .external_lex_state = 5}, + [3202] = {.lex_state = 128, .external_lex_state = 5}, + [3203] = {.lex_state = 128, .external_lex_state = 5}, + [3204] = {.lex_state = 128, .external_lex_state = 5}, + [3205] = {.lex_state = 7, .external_lex_state = 6}, + [3206] = {.lex_state = 128, .external_lex_state = 5}, + [3207] = {.lex_state = 128, .external_lex_state = 5}, + [3208] = {.lex_state = 7, .external_lex_state = 6}, + [3209] = {.lex_state = 128, .external_lex_state = 5}, + [3210] = {.lex_state = 128, .external_lex_state = 5}, + [3211] = {.lex_state = 128, .external_lex_state = 5}, + [3212] = {.lex_state = 7, .external_lex_state = 6}, + [3213] = {.lex_state = 128, .external_lex_state = 5}, + [3214] = {.lex_state = 128, .external_lex_state = 5}, + [3215] = {.lex_state = 128, .external_lex_state = 5}, + [3216] = {.lex_state = 18, .external_lex_state = 7}, + [3217] = {.lex_state = 128, .external_lex_state = 5}, + [3218] = {.lex_state = 128, .external_lex_state = 5}, + [3219] = {.lex_state = 128, .external_lex_state = 5}, + [3220] = {.lex_state = 128, .external_lex_state = 6}, + [3221] = {.lex_state = 128, .external_lex_state = 5}, + [3222] = {.lex_state = 128, .external_lex_state = 6}, + [3223] = {.lex_state = 128, .external_lex_state = 5}, + [3224] = {.lex_state = 128, .external_lex_state = 6}, + [3225] = {.lex_state = 128, .external_lex_state = 6}, + [3226] = {.lex_state = 128, .external_lex_state = 5}, + [3227] = {.lex_state = 128, .external_lex_state = 5}, + [3228] = {.lex_state = 128, .external_lex_state = 5}, + [3229] = {.lex_state = 128, .external_lex_state = 6}, + [3230] = {.lex_state = 128, .external_lex_state = 6}, + [3231] = {.lex_state = 128, .external_lex_state = 5}, + [3232] = {.lex_state = 128, .external_lex_state = 5}, + [3233] = {.lex_state = 128, .external_lex_state = 5}, + [3234] = {.lex_state = 7, .external_lex_state = 6}, + [3235] = {.lex_state = 128, .external_lex_state = 5}, + [3236] = {.lex_state = 128, .external_lex_state = 5}, + [3237] = {.lex_state = 7, .external_lex_state = 6}, + [3238] = {.lex_state = 18, .external_lex_state = 7}, + [3239] = {.lex_state = 128, .external_lex_state = 5}, + [3240] = {.lex_state = 128, .external_lex_state = 5}, + [3241] = {.lex_state = 128, .external_lex_state = 5}, + [3242] = {.lex_state = 128, .external_lex_state = 5}, + [3243] = {.lex_state = 128, .external_lex_state = 5}, + [3244] = {.lex_state = 128, .external_lex_state = 5}, + [3245] = {.lex_state = 128, .external_lex_state = 5}, + [3246] = {.lex_state = 128, .external_lex_state = 5}, + [3247] = {.lex_state = 18, .external_lex_state = 7}, + [3248] = {.lex_state = 128, .external_lex_state = 5}, + [3249] = {.lex_state = 128, .external_lex_state = 5}, + [3250] = {.lex_state = 128, .external_lex_state = 5}, + [3251] = {.lex_state = 18, .external_lex_state = 7}, + [3252] = {.lex_state = 18, .external_lex_state = 7}, + [3253] = {.lex_state = 128, .external_lex_state = 5}, + [3254] = {.lex_state = 128, .external_lex_state = 2}, + [3255] = {.lex_state = 128, .external_lex_state = 5}, + [3256] = {.lex_state = 128, .external_lex_state = 5}, + [3257] = {.lex_state = 128, .external_lex_state = 5}, + [3258] = {.lex_state = 128, .external_lex_state = 2}, + [3259] = {.lex_state = 128, .external_lex_state = 2}, + [3260] = {.lex_state = 128, .external_lex_state = 2}, + [3261] = {.lex_state = 128, .external_lex_state = 6}, + [3262] = {.lex_state = 128, .external_lex_state = 2}, + [3263] = {.lex_state = 128, .external_lex_state = 2}, + [3264] = {.lex_state = 20, .external_lex_state = 2}, + [3265] = {.lex_state = 20, .external_lex_state = 2}, + [3266] = {.lex_state = 128, .external_lex_state = 5}, + [3267] = {.lex_state = 128, .external_lex_state = 5}, + [3268] = {.lex_state = 128, .external_lex_state = 5}, + [3269] = {.lex_state = 128, .external_lex_state = 2}, + [3270] = {.lex_state = 128, .external_lex_state = 2}, + [3271] = {.lex_state = 128, .external_lex_state = 5}, + [3272] = {.lex_state = 20, .external_lex_state = 2}, + [3273] = {.lex_state = 18, .external_lex_state = 7}, + [3274] = {.lex_state = 128, .external_lex_state = 2}, + [3275] = {.lex_state = 128, .external_lex_state = 6}, + [3276] = {.lex_state = 128, .external_lex_state = 2}, + [3277] = {.lex_state = 128, .external_lex_state = 2}, + [3278] = {.lex_state = 128, .external_lex_state = 2}, + [3279] = {.lex_state = 128, .external_lex_state = 5}, + [3280] = {.lex_state = 128, .external_lex_state = 6}, + [3281] = {.lex_state = 128, .external_lex_state = 2}, + [3282] = {.lex_state = 128, .external_lex_state = 2}, + [3283] = {.lex_state = 128, .external_lex_state = 2}, + [3284] = {.lex_state = 128, .external_lex_state = 6}, + [3285] = {.lex_state = 128, .external_lex_state = 6}, + [3286] = {.lex_state = 128, .external_lex_state = 6}, + [3287] = {.lex_state = 128, .external_lex_state = 6}, + [3288] = {.lex_state = 128, .external_lex_state = 2}, + [3289] = {.lex_state = 128, .external_lex_state = 2}, + [3290] = {.lex_state = 128, .external_lex_state = 5}, + [3291] = {.lex_state = 128, .external_lex_state = 2}, + [3292] = {.lex_state = 128, .external_lex_state = 6}, + [3293] = {.lex_state = 20, .external_lex_state = 2}, + [3294] = {.lex_state = 128, .external_lex_state = 2}, + [3295] = {.lex_state = 128, .external_lex_state = 5}, + [3296] = {.lex_state = 128, .external_lex_state = 6}, + [3297] = {.lex_state = 128, .external_lex_state = 5}, + [3298] = {.lex_state = 128, .external_lex_state = 5}, + [3299] = {.lex_state = 20, .external_lex_state = 2}, + [3300] = {.lex_state = 128, .external_lex_state = 2}, + [3301] = {.lex_state = 128, .external_lex_state = 5}, + [3302] = {.lex_state = 128, .external_lex_state = 5}, + [3303] = {.lex_state = 128, .external_lex_state = 5}, + [3304] = {.lex_state = 20, .external_lex_state = 2}, + [3305] = {.lex_state = 128, .external_lex_state = 5}, + [3306] = {.lex_state = 128, .external_lex_state = 6}, + [3307] = {.lex_state = 20, .external_lex_state = 2}, + [3308] = {.lex_state = 20, .external_lex_state = 2}, + [3309] = {.lex_state = 20, .external_lex_state = 2}, + [3310] = {.lex_state = 20, .external_lex_state = 2}, + [3311] = {.lex_state = 20, .external_lex_state = 2}, + [3312] = {.lex_state = 128, .external_lex_state = 5}, + [3313] = {.lex_state = 20, .external_lex_state = 2}, + [3314] = {.lex_state = 20, .external_lex_state = 2}, + [3315] = {.lex_state = 128, .external_lex_state = 5}, + [3316] = {.lex_state = 20, .external_lex_state = 2}, + [3317] = {.lex_state = 128, .external_lex_state = 2}, + [3318] = {.lex_state = 20, .external_lex_state = 2}, + [3319] = {.lex_state = 128, .external_lex_state = 5}, + [3320] = {.lex_state = 128, .external_lex_state = 5}, + [3321] = {.lex_state = 128, .external_lex_state = 6}, + [3322] = {.lex_state = 128, .external_lex_state = 2}, + [3323] = {.lex_state = 128, .external_lex_state = 6}, + [3324] = {.lex_state = 128, .external_lex_state = 2}, + [3325] = {.lex_state = 128, .external_lex_state = 6}, + [3326] = {.lex_state = 128, .external_lex_state = 6}, + [3327] = {.lex_state = 20, .external_lex_state = 2}, + [3328] = {.lex_state = 128, .external_lex_state = 2}, + [3329] = {.lex_state = 128, .external_lex_state = 6}, + [3330] = {.lex_state = 128, .external_lex_state = 6}, + [3331] = {.lex_state = 20, .external_lex_state = 2}, + [3332] = {.lex_state = 128, .external_lex_state = 2}, + [3333] = {.lex_state = 128, .external_lex_state = 5}, + [3334] = {.lex_state = 128, .external_lex_state = 6}, + [3335] = {.lex_state = 128, .external_lex_state = 2}, + [3336] = {.lex_state = 128, .external_lex_state = 5}, + [3337] = {.lex_state = 20, .external_lex_state = 2}, + [3338] = {.lex_state = 128, .external_lex_state = 6}, + [3339] = {.lex_state = 20, .external_lex_state = 2}, + [3340] = {.lex_state = 20, .external_lex_state = 2}, + [3341] = {.lex_state = 20, .external_lex_state = 2}, + [3342] = {.lex_state = 128, .external_lex_state = 5}, + [3343] = {.lex_state = 128, .external_lex_state = 6}, + [3344] = {.lex_state = 128, .external_lex_state = 2}, + [3345] = {.lex_state = 20, .external_lex_state = 2}, + [3346] = {.lex_state = 128, .external_lex_state = 6}, + [3347] = {.lex_state = 128, .external_lex_state = 2}, + [3348] = {.lex_state = 20, .external_lex_state = 2}, + [3349] = {.lex_state = 20, .external_lex_state = 2}, + [3350] = {.lex_state = 20, .external_lex_state = 2}, + [3351] = {.lex_state = 128, .external_lex_state = 6}, + [3352] = {.lex_state = 128, .external_lex_state = 6}, + [3353] = {.lex_state = 128, .external_lex_state = 6}, + [3354] = {.lex_state = 128, .external_lex_state = 6}, + [3355] = {.lex_state = 128, .external_lex_state = 6}, + [3356] = {.lex_state = 128, .external_lex_state = 6}, + [3357] = {.lex_state = 128, .external_lex_state = 6}, + [3358] = {.lex_state = 128, .external_lex_state = 6}, + [3359] = {.lex_state = 128, .external_lex_state = 6}, + [3360] = {.lex_state = 128, .external_lex_state = 6}, + [3361] = {.lex_state = 128, .external_lex_state = 2}, + [3362] = {.lex_state = 128, .external_lex_state = 6}, + [3363] = {.lex_state = 20, .external_lex_state = 2}, + [3364] = {.lex_state = 20, .external_lex_state = 2}, + [3365] = {.lex_state = 20, .external_lex_state = 2}, + [3366] = {.lex_state = 128, .external_lex_state = 5}, + [3367] = {.lex_state = 128, .external_lex_state = 5}, + [3368] = {.lex_state = 128, .external_lex_state = 2}, + [3369] = {.lex_state = 20, .external_lex_state = 2}, + [3370] = {.lex_state = 20, .external_lex_state = 2}, + [3371] = {.lex_state = 128, .external_lex_state = 6}, + [3372] = {.lex_state = 128, .external_lex_state = 5}, + [3373] = {.lex_state = 20, .external_lex_state = 2}, + [3374] = {.lex_state = 128, .external_lex_state = 2}, + [3375] = {.lex_state = 128, .external_lex_state = 5}, + [3376] = {.lex_state = 128, .external_lex_state = 2}, + [3377] = {.lex_state = 128, .external_lex_state = 2}, + [3378] = {.lex_state = 128, .external_lex_state = 5}, + [3379] = {.lex_state = 128, .external_lex_state = 5}, + [3380] = {.lex_state = 128, .external_lex_state = 5}, + [3381] = {.lex_state = 128, .external_lex_state = 6}, + [3382] = {.lex_state = 128, .external_lex_state = 6}, + [3383] = {.lex_state = 128, .external_lex_state = 5}, + [3384] = {.lex_state = 20, .external_lex_state = 2}, + [3385] = {.lex_state = 128, .external_lex_state = 2}, + [3386] = {.lex_state = 128, .external_lex_state = 5}, + [3387] = {.lex_state = 128, .external_lex_state = 2}, + [3388] = {.lex_state = 128, .external_lex_state = 2}, + [3389] = {.lex_state = 128, .external_lex_state = 6}, + [3390] = {.lex_state = 128, .external_lex_state = 2}, + [3391] = {.lex_state = 128, .external_lex_state = 2}, + [3392] = {.lex_state = 128, .external_lex_state = 6}, + [3393] = {.lex_state = 128, .external_lex_state = 2}, + [3394] = {.lex_state = 128, .external_lex_state = 5}, + [3395] = {.lex_state = 20, .external_lex_state = 2}, + [3396] = {.lex_state = 128, .external_lex_state = 6}, + [3397] = {.lex_state = 20, .external_lex_state = 2}, + [3398] = {.lex_state = 128, .external_lex_state = 6}, + [3399] = {.lex_state = 128, .external_lex_state = 5}, + [3400] = {.lex_state = 128, .external_lex_state = 2}, + [3401] = {.lex_state = 128, .external_lex_state = 5}, + [3402] = {.lex_state = 128, .external_lex_state = 5}, + [3403] = {.lex_state = 128, .external_lex_state = 6}, + [3404] = {.lex_state = 128, .external_lex_state = 6}, + [3405] = {.lex_state = 128, .external_lex_state = 6}, + [3406] = {.lex_state = 128, .external_lex_state = 5}, + [3407] = {.lex_state = 128, .external_lex_state = 6}, + [3408] = {.lex_state = 128, .external_lex_state = 5}, + [3409] = {.lex_state = 128, .external_lex_state = 2}, + [3410] = {.lex_state = 20, .external_lex_state = 2}, + [3411] = {.lex_state = 128, .external_lex_state = 6}, + [3412] = {.lex_state = 20, .external_lex_state = 2}, + [3413] = {.lex_state = 128, .external_lex_state = 2}, + [3414] = {.lex_state = 128, .external_lex_state = 6}, + [3415] = {.lex_state = 128, .external_lex_state = 6}, + [3416] = {.lex_state = 128, .external_lex_state = 6}, + [3417] = {.lex_state = 128, .external_lex_state = 5}, + [3418] = {.lex_state = 128, .external_lex_state = 6}, + [3419] = {.lex_state = 128, .external_lex_state = 5}, + [3420] = {.lex_state = 128, .external_lex_state = 6}, + [3421] = {.lex_state = 128, .external_lex_state = 5}, + [3422] = {.lex_state = 128, .external_lex_state = 2}, + [3423] = {.lex_state = 128, .external_lex_state = 5}, + [3424] = {.lex_state = 128, .external_lex_state = 6}, + [3425] = {.lex_state = 128, .external_lex_state = 6}, + [3426] = {.lex_state = 128, .external_lex_state = 6}, + [3427] = {.lex_state = 128, .external_lex_state = 6}, + [3428] = {.lex_state = 20, .external_lex_state = 2}, + [3429] = {.lex_state = 128, .external_lex_state = 2}, + [3430] = {.lex_state = 128, .external_lex_state = 5}, + [3431] = {.lex_state = 128, .external_lex_state = 5}, + [3432] = {.lex_state = 128, .external_lex_state = 5}, + [3433] = {.lex_state = 128, .external_lex_state = 5}, + [3434] = {.lex_state = 20, .external_lex_state = 2}, + [3435] = {.lex_state = 128, .external_lex_state = 5}, + [3436] = {.lex_state = 128, .external_lex_state = 5}, + [3437] = {.lex_state = 128, .external_lex_state = 5}, + [3438] = {.lex_state = 20, .external_lex_state = 2}, + [3439] = {.lex_state = 128, .external_lex_state = 5}, + [3440] = {.lex_state = 128, .external_lex_state = 6}, + [3441] = {.lex_state = 128, .external_lex_state = 6}, + [3442] = {.lex_state = 128, .external_lex_state = 6}, + [3443] = {.lex_state = 128, .external_lex_state = 6}, + [3444] = {.lex_state = 128, .external_lex_state = 5}, + [3445] = {.lex_state = 128, .external_lex_state = 5}, + [3446] = {.lex_state = 128, .external_lex_state = 6}, + [3447] = {.lex_state = 128, .external_lex_state = 2}, + [3448] = {.lex_state = 128, .external_lex_state = 6}, + [3449] = {.lex_state = 128, .external_lex_state = 6}, + [3450] = {.lex_state = 128, .external_lex_state = 6}, + [3451] = {.lex_state = 128, .external_lex_state = 5}, + [3452] = {.lex_state = 128, .external_lex_state = 5}, + [3453] = {.lex_state = 128, .external_lex_state = 2}, + [3454] = {.lex_state = 128, .external_lex_state = 5}, + [3455] = {.lex_state = 128, .external_lex_state = 5}, + [3456] = {.lex_state = 128, .external_lex_state = 6}, + [3457] = {.lex_state = 128, .external_lex_state = 2}, + [3458] = {.lex_state = 20, .external_lex_state = 2}, + [3459] = {.lex_state = 128, .external_lex_state = 2}, + [3460] = {.lex_state = 128, .external_lex_state = 2}, + [3461] = {.lex_state = 128, .external_lex_state = 2}, + [3462] = {.lex_state = 128, .external_lex_state = 2}, + [3463] = {.lex_state = 128, .external_lex_state = 6}, + [3464] = {.lex_state = 128, .external_lex_state = 2}, + [3465] = {.lex_state = 128, .external_lex_state = 2}, + [3466] = {.lex_state = 128, .external_lex_state = 5}, + [3467] = {.lex_state = 128, .external_lex_state = 5}, + [3468] = {.lex_state = 20, .external_lex_state = 2}, + [3469] = {.lex_state = 128, .external_lex_state = 5}, + [3470] = {.lex_state = 128, .external_lex_state = 6}, + [3471] = {.lex_state = 128, .external_lex_state = 2}, + [3472] = {.lex_state = 128, .external_lex_state = 6}, + [3473] = {.lex_state = 128, .external_lex_state = 5}, + [3474] = {.lex_state = 128, .external_lex_state = 2}, + [3475] = {.lex_state = 20, .external_lex_state = 2}, + [3476] = {.lex_state = 128, .external_lex_state = 2}, + [3477] = {.lex_state = 11, .external_lex_state = 2}, + [3478] = {.lex_state = 128, .external_lex_state = 2}, + [3479] = {.lex_state = 128, .external_lex_state = 2}, + [3480] = {.lex_state = 128, .external_lex_state = 5}, + [3481] = {.lex_state = 128, .external_lex_state = 2}, + [3482] = {.lex_state = 128, .external_lex_state = 6}, + [3483] = {.lex_state = 128, .external_lex_state = 2}, + [3484] = {.lex_state = 128, .external_lex_state = 2}, + [3485] = {.lex_state = 18, .external_lex_state = 8}, + [3486] = {.lex_state = 20, .external_lex_state = 2}, + [3487] = {.lex_state = 128, .external_lex_state = 2}, + [3488] = {.lex_state = 20, .external_lex_state = 2}, + [3489] = {.lex_state = 20, .external_lex_state = 2}, + [3490] = {.lex_state = 7, .external_lex_state = 2}, + [3491] = {.lex_state = 128, .external_lex_state = 2}, + [3492] = {.lex_state = 7, .external_lex_state = 2}, + [3493] = {.lex_state = 7, .external_lex_state = 2}, + [3494] = {.lex_state = 18, .external_lex_state = 8}, + [3495] = {.lex_state = 18, .external_lex_state = 8}, + [3496] = {.lex_state = 20, .external_lex_state = 2}, + [3497] = {.lex_state = 20, .external_lex_state = 2}, + [3498] = {.lex_state = 128, .external_lex_state = 2}, + [3499] = {.lex_state = 18, .external_lex_state = 8}, + [3500] = {.lex_state = 11, .external_lex_state = 2}, + [3501] = {.lex_state = 128, .external_lex_state = 2}, + [3502] = {.lex_state = 128, .external_lex_state = 5}, + [3503] = {.lex_state = 128, .external_lex_state = 2}, + [3504] = {.lex_state = 128, .external_lex_state = 5}, + [3505] = {.lex_state = 128, .external_lex_state = 2}, + [3506] = {.lex_state = 18, .external_lex_state = 8}, + [3507] = {.lex_state = 18, .external_lex_state = 8}, + [3508] = {.lex_state = 18, .external_lex_state = 8}, + [3509] = {.lex_state = 128, .external_lex_state = 2}, + [3510] = {.lex_state = 18, .external_lex_state = 8}, + [3511] = {.lex_state = 128, .external_lex_state = 2}, + [3512] = {.lex_state = 20, .external_lex_state = 2}, + [3513] = {.lex_state = 20, .external_lex_state = 2}, + [3514] = {.lex_state = 128, .external_lex_state = 2}, + [3515] = {.lex_state = 20, .external_lex_state = 2}, + [3516] = {.lex_state = 128, .external_lex_state = 5}, + [3517] = {.lex_state = 128, .external_lex_state = 5}, + [3518] = {.lex_state = 128, .external_lex_state = 5}, + [3519] = {.lex_state = 20, .external_lex_state = 2}, + [3520] = {.lex_state = 20, .external_lex_state = 2}, + [3521] = {.lex_state = 128, .external_lex_state = 5}, + [3522] = {.lex_state = 128, .external_lex_state = 2}, + [3523] = {.lex_state = 128, .external_lex_state = 2}, + [3524] = {.lex_state = 128, .external_lex_state = 5}, + [3525] = {.lex_state = 128, .external_lex_state = 2}, + [3526] = {.lex_state = 128, .external_lex_state = 2}, + [3527] = {.lex_state = 128, .external_lex_state = 2}, + [3528] = {.lex_state = 128, .external_lex_state = 2}, + [3529] = {.lex_state = 128, .external_lex_state = 5}, + [3530] = {.lex_state = 128, .external_lex_state = 5}, + [3531] = {.lex_state = 128, .external_lex_state = 5}, + [3532] = {.lex_state = 128, .external_lex_state = 5}, + [3533] = {.lex_state = 128, .external_lex_state = 5}, + [3534] = {.lex_state = 128, .external_lex_state = 5}, + [3535] = {.lex_state = 128, .external_lex_state = 5}, + [3536] = {.lex_state = 128, .external_lex_state = 2}, + [3537] = {.lex_state = 128, .external_lex_state = 5}, + [3538] = {.lex_state = 128, .external_lex_state = 5}, + [3539] = {.lex_state = 128, .external_lex_state = 5}, + [3540] = {.lex_state = 128, .external_lex_state = 5}, + [3541] = {.lex_state = 128, .external_lex_state = 2}, + [3542] = {.lex_state = 128, .external_lex_state = 5}, + [3543] = {.lex_state = 128, .external_lex_state = 5}, + [3544] = {.lex_state = 128, .external_lex_state = 5}, + [3545] = {.lex_state = 128, .external_lex_state = 5}, + [3546] = {.lex_state = 128, .external_lex_state = 5}, + [3547] = {.lex_state = 128, .external_lex_state = 5}, + [3548] = {.lex_state = 128, .external_lex_state = 5}, + [3549] = {.lex_state = 128, .external_lex_state = 5}, + [3550] = {.lex_state = 128, .external_lex_state = 5}, + [3551] = {.lex_state = 128, .external_lex_state = 2}, + [3552] = {.lex_state = 20, .external_lex_state = 2}, + [3553] = {.lex_state = 128, .external_lex_state = 5}, + [3554] = {.lex_state = 128, .external_lex_state = 5}, + [3555] = {.lex_state = 7, .external_lex_state = 2}, + [3556] = {.lex_state = 128, .external_lex_state = 5}, + [3557] = {.lex_state = 128, .external_lex_state = 5}, + [3558] = {.lex_state = 128, .external_lex_state = 2}, + [3559] = {.lex_state = 128, .external_lex_state = 2}, + [3560] = {.lex_state = 128, .external_lex_state = 5}, + [3561] = {.lex_state = 128, .external_lex_state = 5}, + [3562] = {.lex_state = 128, .external_lex_state = 2}, + [3563] = {.lex_state = 128, .external_lex_state = 5}, + [3564] = {.lex_state = 128, .external_lex_state = 5}, + [3565] = {.lex_state = 128, .external_lex_state = 5}, + [3566] = {.lex_state = 128, .external_lex_state = 2}, + [3567] = {.lex_state = 128, .external_lex_state = 2}, + [3568] = {.lex_state = 128, .external_lex_state = 2}, + [3569] = {.lex_state = 128, .external_lex_state = 5}, + [3570] = {.lex_state = 128, .external_lex_state = 2}, + [3571] = {.lex_state = 128, .external_lex_state = 2}, + [3572] = {.lex_state = 128, .external_lex_state = 5}, + [3573] = {.lex_state = 128, .external_lex_state = 5}, + [3574] = {.lex_state = 128, .external_lex_state = 5}, + [3575] = {.lex_state = 128, .external_lex_state = 5}, + [3576] = {.lex_state = 128, .external_lex_state = 5}, + [3577] = {.lex_state = 128, .external_lex_state = 2}, + [3578] = {.lex_state = 128, .external_lex_state = 5}, + [3579] = {.lex_state = 128, .external_lex_state = 5}, + [3580] = {.lex_state = 128, .external_lex_state = 5}, + [3581] = {.lex_state = 128, .external_lex_state = 5}, + [3582] = {.lex_state = 7, .external_lex_state = 2}, + [3583] = {.lex_state = 128, .external_lex_state = 5}, + [3584] = {.lex_state = 128, .external_lex_state = 5}, + [3585] = {.lex_state = 128, .external_lex_state = 5}, + [3586] = {.lex_state = 128, .external_lex_state = 5}, + [3587] = {.lex_state = 7, .external_lex_state = 2}, + [3588] = {.lex_state = 128, .external_lex_state = 2}, + [3589] = {.lex_state = 128, .external_lex_state = 5}, + [3590] = {.lex_state = 128, .external_lex_state = 5}, + [3591] = {.lex_state = 128, .external_lex_state = 5}, + [3592] = {.lex_state = 128, .external_lex_state = 5}, + [3593] = {.lex_state = 128, .external_lex_state = 2}, + [3594] = {.lex_state = 128, .external_lex_state = 5}, + [3595] = {.lex_state = 128, .external_lex_state = 2}, + [3596] = {.lex_state = 128, .external_lex_state = 2}, + [3597] = {.lex_state = 128, .external_lex_state = 5}, + [3598] = {.lex_state = 128, .external_lex_state = 5}, + [3599] = {.lex_state = 128, .external_lex_state = 5}, + [3600] = {.lex_state = 128, .external_lex_state = 5}, + [3601] = {.lex_state = 128, .external_lex_state = 5}, + [3602] = {.lex_state = 128, .external_lex_state = 5}, + [3603] = {.lex_state = 128, .external_lex_state = 2}, + [3604] = {.lex_state = 128, .external_lex_state = 5}, + [3605] = {.lex_state = 128, .external_lex_state = 5}, + [3606] = {.lex_state = 128, .external_lex_state = 5}, + [3607] = {.lex_state = 7, .external_lex_state = 2}, + [3608] = {.lex_state = 128, .external_lex_state = 5}, + [3609] = {.lex_state = 128, .external_lex_state = 5}, + [3610] = {.lex_state = 128, .external_lex_state = 5}, + [3611] = {.lex_state = 128, .external_lex_state = 5}, + [3612] = {.lex_state = 7, .external_lex_state = 2}, + [3613] = {.lex_state = 128, .external_lex_state = 5}, + [3614] = {.lex_state = 128, .external_lex_state = 2}, + [3615] = {.lex_state = 128, .external_lex_state = 5}, + [3616] = {.lex_state = 128, .external_lex_state = 5}, + [3617] = {.lex_state = 7, .external_lex_state = 2}, + [3618] = {.lex_state = 128, .external_lex_state = 5}, + [3619] = {.lex_state = 128, .external_lex_state = 5}, + [3620] = {.lex_state = 128, .external_lex_state = 5}, + [3621] = {.lex_state = 128, .external_lex_state = 5}, + [3622] = {.lex_state = 128, .external_lex_state = 5}, + [3623] = {.lex_state = 128, .external_lex_state = 5}, + [3624] = {.lex_state = 128, .external_lex_state = 5}, + [3625] = {.lex_state = 128, .external_lex_state = 5}, + [3626] = {.lex_state = 128, .external_lex_state = 2}, + [3627] = {.lex_state = 128, .external_lex_state = 2}, + [3628] = {.lex_state = 128, .external_lex_state = 2}, + [3629] = {.lex_state = 128, .external_lex_state = 5}, + [3630] = {.lex_state = 128, .external_lex_state = 5}, + [3631] = {.lex_state = 128, .external_lex_state = 2}, + [3632] = {.lex_state = 128, .external_lex_state = 2}, + [3633] = {.lex_state = 7, .external_lex_state = 2}, + [3634] = {.lex_state = 128, .external_lex_state = 2}, + [3635] = {.lex_state = 128, .external_lex_state = 2}, + [3636] = {.lex_state = 7, .external_lex_state = 2}, + [3637] = {.lex_state = 128, .external_lex_state = 5}, + [3638] = {.lex_state = 128, .external_lex_state = 2}, + [3639] = {.lex_state = 128, .external_lex_state = 2}, + [3640] = {.lex_state = 128, .external_lex_state = 5}, + [3641] = {.lex_state = 128, .external_lex_state = 5}, + [3642] = {.lex_state = 128, .external_lex_state = 2}, + [3643] = {.lex_state = 128, .external_lex_state = 2}, + [3644] = {.lex_state = 7, .external_lex_state = 2}, + [3645] = {.lex_state = 7, .external_lex_state = 2}, + [3646] = {.lex_state = 128, .external_lex_state = 5}, + [3647] = {.lex_state = 128, .external_lex_state = 2}, + [3648] = {.lex_state = 128, .external_lex_state = 2}, + [3649] = {.lex_state = 128, .external_lex_state = 2}, + [3650] = {.lex_state = 128, .external_lex_state = 5}, + [3651] = {.lex_state = 7, .external_lex_state = 2}, + [3652] = {.lex_state = 128, .external_lex_state = 2}, + [3653] = {.lex_state = 128, .external_lex_state = 5}, + [3654] = {.lex_state = 128, .external_lex_state = 2}, + [3655] = {.lex_state = 7, .external_lex_state = 2}, + [3656] = {.lex_state = 8, .external_lex_state = 2}, + [3657] = {.lex_state = 128, .external_lex_state = 5}, + [3658] = {.lex_state = 128, .external_lex_state = 2}, + [3659] = {.lex_state = 128, .external_lex_state = 5}, + [3660] = {.lex_state = 128, .external_lex_state = 5}, + [3661] = {.lex_state = 7, .external_lex_state = 2}, + [3662] = {.lex_state = 128, .external_lex_state = 5}, + [3663] = {.lex_state = 128, .external_lex_state = 2}, + [3664] = {.lex_state = 128, .external_lex_state = 5}, + [3665] = {.lex_state = 128, .external_lex_state = 5}, + [3666] = {.lex_state = 128, .external_lex_state = 5}, + [3667] = {.lex_state = 128, .external_lex_state = 5}, + [3668] = {.lex_state = 128, .external_lex_state = 2}, + [3669] = {.lex_state = 128, .external_lex_state = 5}, + [3670] = {.lex_state = 128, .external_lex_state = 5}, + [3671] = {.lex_state = 128, .external_lex_state = 5}, + [3672] = {.lex_state = 128, .external_lex_state = 5}, + [3673] = {.lex_state = 128, .external_lex_state = 5}, + [3674] = {.lex_state = 128, .external_lex_state = 5}, + [3675] = {.lex_state = 128, .external_lex_state = 5}, + [3676] = {.lex_state = 128, .external_lex_state = 5}, + [3677] = {.lex_state = 128, .external_lex_state = 5}, + [3678] = {.lex_state = 128, .external_lex_state = 5}, + [3679] = {.lex_state = 128, .external_lex_state = 2}, + [3680] = {.lex_state = 128, .external_lex_state = 2}, + [3681] = {.lex_state = 128, .external_lex_state = 2}, + [3682] = {.lex_state = 128, .external_lex_state = 5}, + [3683] = {.lex_state = 128, .external_lex_state = 5}, + [3684] = {.lex_state = 7, .external_lex_state = 2}, + [3685] = {.lex_state = 128, .external_lex_state = 5}, + [3686] = {.lex_state = 128, .external_lex_state = 2}, + [3687] = {.lex_state = 128, .external_lex_state = 5}, + [3688] = {.lex_state = 128, .external_lex_state = 5}, + [3689] = {.lex_state = 128, .external_lex_state = 5}, + [3690] = {.lex_state = 128, .external_lex_state = 5}, + [3691] = {.lex_state = 128, .external_lex_state = 5}, + [3692] = {.lex_state = 128, .external_lex_state = 2}, + [3693] = {.lex_state = 8, .external_lex_state = 2}, + [3694] = {.lex_state = 128, .external_lex_state = 2}, + [3695] = {.lex_state = 128, .external_lex_state = 2}, + [3696] = {.lex_state = 128, .external_lex_state = 5}, + [3697] = {.lex_state = 128, .external_lex_state = 2}, + [3698] = {.lex_state = 128, .external_lex_state = 5}, + [3699] = {.lex_state = 128, .external_lex_state = 5}, + [3700] = {.lex_state = 128, .external_lex_state = 5}, + [3701] = {.lex_state = 128, .external_lex_state = 5}, + [3702] = {.lex_state = 128, .external_lex_state = 5}, + [3703] = {.lex_state = 8, .external_lex_state = 2}, + [3704] = {.lex_state = 7, .external_lex_state = 2}, + [3705] = {.lex_state = 128, .external_lex_state = 2}, + [3706] = {.lex_state = 128, .external_lex_state = 2}, + [3707] = {.lex_state = 128, .external_lex_state = 5}, + [3708] = {.lex_state = 128, .external_lex_state = 5}, + [3709] = {.lex_state = 128, .external_lex_state = 5}, + [3710] = {.lex_state = 128, .external_lex_state = 2}, + [3711] = {.lex_state = 128, .external_lex_state = 5}, + [3712] = {.lex_state = 128, .external_lex_state = 5}, + [3713] = {.lex_state = 128, .external_lex_state = 2}, + [3714] = {.lex_state = 128, .external_lex_state = 5}, + [3715] = {.lex_state = 128, .external_lex_state = 5}, + [3716] = {.lex_state = 128, .external_lex_state = 5}, + [3717] = {.lex_state = 128, .external_lex_state = 5}, + [3718] = {.lex_state = 128, .external_lex_state = 5}, + [3719] = {.lex_state = 128, .external_lex_state = 2}, + [3720] = {.lex_state = 128, .external_lex_state = 5}, + [3721] = {.lex_state = 128, .external_lex_state = 5}, + [3722] = {.lex_state = 128, .external_lex_state = 5}, + [3723] = {.lex_state = 128, .external_lex_state = 2}, + [3724] = {.lex_state = 128, .external_lex_state = 5}, + [3725] = {.lex_state = 128, .external_lex_state = 2}, + [3726] = {.lex_state = 128, .external_lex_state = 2}, + [3727] = {.lex_state = 128, .external_lex_state = 5}, + [3728] = {.lex_state = 128, .external_lex_state = 5}, + [3729] = {.lex_state = 128, .external_lex_state = 2}, + [3730] = {.lex_state = 128, .external_lex_state = 5}, + [3731] = {.lex_state = 128, .external_lex_state = 5}, + [3732] = {.lex_state = 128, .external_lex_state = 5}, + [3733] = {.lex_state = 128, .external_lex_state = 2}, + [3734] = {.lex_state = 128, .external_lex_state = 5}, + [3735] = {.lex_state = 128, .external_lex_state = 5}, + [3736] = {.lex_state = 128, .external_lex_state = 5}, + [3737] = {.lex_state = 128, .external_lex_state = 2}, + [3738] = {.lex_state = 128, .external_lex_state = 5}, + [3739] = {.lex_state = 128, .external_lex_state = 5}, + [3740] = {.lex_state = 128, .external_lex_state = 2}, + [3741] = {.lex_state = 128, .external_lex_state = 2}, + [3742] = {.lex_state = 128, .external_lex_state = 2}, + [3743] = {.lex_state = 128, .external_lex_state = 2}, + [3744] = {.lex_state = 128, .external_lex_state = 5}, + [3745] = {.lex_state = 128, .external_lex_state = 2}, + [3746] = {.lex_state = 128, .external_lex_state = 5}, + [3747] = {.lex_state = 128, .external_lex_state = 5}, + [3748] = {.lex_state = 128, .external_lex_state = 5}, + [3749] = {.lex_state = 128, .external_lex_state = 2}, + [3750] = {.lex_state = 128, .external_lex_state = 5}, + [3751] = {.lex_state = 128, .external_lex_state = 5}, + [3752] = {.lex_state = 128, .external_lex_state = 2}, + [3753] = {.lex_state = 128, .external_lex_state = 2}, + [3754] = {.lex_state = 128, .external_lex_state = 2}, + [3755] = {.lex_state = 7, .external_lex_state = 2}, + [3756] = {.lex_state = 128, .external_lex_state = 5}, + [3757] = {.lex_state = 128, .external_lex_state = 2}, + [3758] = {.lex_state = 128, .external_lex_state = 2}, + [3759] = {.lex_state = 128, .external_lex_state = 5}, + [3760] = {.lex_state = 128, .external_lex_state = 5}, + [3761] = {.lex_state = 128, .external_lex_state = 5}, + [3762] = {.lex_state = 128, .external_lex_state = 5}, + [3763] = {.lex_state = 128, .external_lex_state = 5}, + [3764] = {.lex_state = 128, .external_lex_state = 5}, + [3765] = {.lex_state = 128, .external_lex_state = 5}, + [3766] = {.lex_state = 128, .external_lex_state = 2}, + [3767] = {.lex_state = 128, .external_lex_state = 6}, + [3768] = {.lex_state = 128, .external_lex_state = 2}, + [3769] = {.lex_state = 128, .external_lex_state = 5}, + [3770] = {.lex_state = 128, .external_lex_state = 5}, + [3771] = {.lex_state = 128, .external_lex_state = 5}, + [3772] = {.lex_state = 18, .external_lex_state = 8}, + [3773] = {.lex_state = 128, .external_lex_state = 5}, + [3774] = {.lex_state = 128, .external_lex_state = 2}, + [3775] = {.lex_state = 128, .external_lex_state = 2}, + [3776] = {.lex_state = 8, .external_lex_state = 2}, + [3777] = {.lex_state = 128, .external_lex_state = 2}, + [3778] = {.lex_state = 128, .external_lex_state = 2}, + [3779] = {.lex_state = 128, .external_lex_state = 2}, + [3780] = {.lex_state = 128, .external_lex_state = 5}, + [3781] = {.lex_state = 128, .external_lex_state = 2}, + [3782] = {.lex_state = 128, .external_lex_state = 2}, + [3783] = {.lex_state = 128, .external_lex_state = 6}, + [3784] = {.lex_state = 128, .external_lex_state = 2}, + [3785] = {.lex_state = 128, .external_lex_state = 2}, + [3786] = {.lex_state = 128, .external_lex_state = 6}, + [3787] = {.lex_state = 20, .external_lex_state = 2}, + [3788] = {.lex_state = 128, .external_lex_state = 6}, + [3789] = {.lex_state = 128, .external_lex_state = 6}, + [3790] = {.lex_state = 128, .external_lex_state = 2}, + [3791] = {.lex_state = 128, .external_lex_state = 2}, + [3792] = {.lex_state = 128, .external_lex_state = 2}, + [3793] = {.lex_state = 128, .external_lex_state = 2}, + [3794] = {.lex_state = 18, .external_lex_state = 8}, + [3795] = {.lex_state = 128, .external_lex_state = 2}, + [3796] = {.lex_state = 20, .external_lex_state = 2}, + [3797] = {.lex_state = 20, .external_lex_state = 2}, + [3798] = {.lex_state = 128, .external_lex_state = 2}, + [3799] = {.lex_state = 128, .external_lex_state = 2}, + [3800] = {.lex_state = 128, .external_lex_state = 2}, + [3801] = {.lex_state = 128, .external_lex_state = 2}, + [3802] = {.lex_state = 128, .external_lex_state = 2}, + [3803] = {.lex_state = 128, .external_lex_state = 2}, + [3804] = {.lex_state = 128, .external_lex_state = 2}, + [3805] = {.lex_state = 128, .external_lex_state = 2}, + [3806] = {.lex_state = 128, .external_lex_state = 2}, + [3807] = {.lex_state = 8, .external_lex_state = 2}, + [3808] = {.lex_state = 128, .external_lex_state = 6}, + [3809] = {.lex_state = 128, .external_lex_state = 2}, + [3810] = {.lex_state = 128, .external_lex_state = 6}, + [3811] = {.lex_state = 128, .external_lex_state = 6}, + [3812] = {.lex_state = 18, .external_lex_state = 8}, + [3813] = {.lex_state = 128, .external_lex_state = 2}, + [3814] = {.lex_state = 128, .external_lex_state = 2}, + [3815] = {.lex_state = 128, .external_lex_state = 5}, + [3816] = {.lex_state = 128, .external_lex_state = 2}, + [3817] = {.lex_state = 128, .external_lex_state = 6}, + [3818] = {.lex_state = 128, .external_lex_state = 5}, + [3819] = {.lex_state = 18, .external_lex_state = 8}, + [3820] = {.lex_state = 128, .external_lex_state = 5}, + [3821] = {.lex_state = 20, .external_lex_state = 2}, + [3822] = {.lex_state = 128, .external_lex_state = 2}, + [3823] = {.lex_state = 128, .external_lex_state = 6}, + [3824] = {.lex_state = 128, .external_lex_state = 5}, + [3825] = {.lex_state = 11, .external_lex_state = 2}, + [3826] = {.lex_state = 128, .external_lex_state = 2}, + [3827] = {.lex_state = 128, .external_lex_state = 2}, + [3828] = {.lex_state = 128, .external_lex_state = 5}, + [3829] = {.lex_state = 128, .external_lex_state = 2}, + [3830] = {.lex_state = 128, .external_lex_state = 5}, + [3831] = {.lex_state = 128, .external_lex_state = 5}, + [3832] = {.lex_state = 128, .external_lex_state = 5}, + [3833] = {.lex_state = 128, .external_lex_state = 2}, + [3834] = {.lex_state = 128, .external_lex_state = 2}, + [3835] = {.lex_state = 128, .external_lex_state = 5}, + [3836] = {.lex_state = 128, .external_lex_state = 5}, + [3837] = {.lex_state = 11, .external_lex_state = 2}, + [3838] = {.lex_state = 128, .external_lex_state = 2}, + [3839] = {.lex_state = 128, .external_lex_state = 6}, + [3840] = {.lex_state = 128, .external_lex_state = 2}, + [3841] = {.lex_state = 128, .external_lex_state = 2}, + [3842] = {.lex_state = 128, .external_lex_state = 2}, + [3843] = {.lex_state = 128, .external_lex_state = 6}, + [3844] = {.lex_state = 128, .external_lex_state = 5}, + [3845] = {.lex_state = 20, .external_lex_state = 2}, + [3846] = {.lex_state = 128, .external_lex_state = 2}, + [3847] = {.lex_state = 128, .external_lex_state = 6}, + [3848] = {.lex_state = 128, .external_lex_state = 2}, + [3849] = {.lex_state = 128, .external_lex_state = 2}, + [3850] = {.lex_state = 128, .external_lex_state = 2}, + [3851] = {.lex_state = 128, .external_lex_state = 2}, + [3852] = {.lex_state = 128, .external_lex_state = 2}, + [3853] = {.lex_state = 128, .external_lex_state = 2}, + [3854] = {.lex_state = 128, .external_lex_state = 2}, + [3855] = {.lex_state = 128, .external_lex_state = 5}, + [3856] = {.lex_state = 128, .external_lex_state = 6}, + [3857] = {.lex_state = 128, .external_lex_state = 2}, + [3858] = {.lex_state = 128, .external_lex_state = 2}, + [3859] = {.lex_state = 128, .external_lex_state = 2}, + [3860] = {.lex_state = 128, .external_lex_state = 2}, + [3861] = {.lex_state = 128, .external_lex_state = 2}, + [3862] = {.lex_state = 128, .external_lex_state = 2}, + [3863] = {.lex_state = 128, .external_lex_state = 2}, + [3864] = {.lex_state = 128, .external_lex_state = 2}, + [3865] = {.lex_state = 128, .external_lex_state = 2}, + [3866] = {.lex_state = 128, .external_lex_state = 2}, + [3867] = {.lex_state = 128, .external_lex_state = 2}, + [3868] = {.lex_state = 128, .external_lex_state = 2}, + [3869] = {.lex_state = 128, .external_lex_state = 2}, + [3870] = {.lex_state = 128, .external_lex_state = 2}, + [3871] = {.lex_state = 128, .external_lex_state = 5}, + [3872] = {.lex_state = 128, .external_lex_state = 2}, + [3873] = {.lex_state = 128, .external_lex_state = 2}, + [3874] = {.lex_state = 128, .external_lex_state = 2}, + [3875] = {.lex_state = 128, .external_lex_state = 2}, + [3876] = {.lex_state = 128, .external_lex_state = 5}, + [3877] = {.lex_state = 128, .external_lex_state = 2}, + [3878] = {.lex_state = 128, .external_lex_state = 5}, + [3879] = {.lex_state = 128, .external_lex_state = 2}, + [3880] = {.lex_state = 128, .external_lex_state = 2}, + [3881] = {.lex_state = 128, .external_lex_state = 6}, + [3882] = {.lex_state = 128, .external_lex_state = 6}, + [3883] = {.lex_state = 128, .external_lex_state = 2}, + [3884] = {.lex_state = 128, .external_lex_state = 2}, + [3885] = {.lex_state = 128, .external_lex_state = 5}, + [3886] = {.lex_state = 128, .external_lex_state = 5}, + [3887] = {.lex_state = 128, .external_lex_state = 2}, + [3888] = {.lex_state = 128, .external_lex_state = 2}, + [3889] = {.lex_state = 128, .external_lex_state = 5}, + [3890] = {.lex_state = 128, .external_lex_state = 2}, + [3891] = {.lex_state = 128, .external_lex_state = 2}, + [3892] = {.lex_state = 128, .external_lex_state = 2}, + [3893] = {.lex_state = 128, .external_lex_state = 2}, + [3894] = {.lex_state = 128, .external_lex_state = 2}, + [3895] = {.lex_state = 18, .external_lex_state = 8}, + [3896] = {.lex_state = 128, .external_lex_state = 5}, + [3897] = {.lex_state = 128, .external_lex_state = 6}, + [3898] = {.lex_state = 128, .external_lex_state = 2}, + [3899] = {.lex_state = 128, .external_lex_state = 6}, + [3900] = {.lex_state = 128, .external_lex_state = 6}, + [3901] = {.lex_state = 128, .external_lex_state = 6}, + [3902] = {.lex_state = 128, .external_lex_state = 2}, + [3903] = {.lex_state = 128, .external_lex_state = 5}, + [3904] = {.lex_state = 128, .external_lex_state = 6}, + [3905] = {.lex_state = 128, .external_lex_state = 2}, + [3906] = {.lex_state = 128, .external_lex_state = 5}, + [3907] = {.lex_state = 128, .external_lex_state = 2}, + [3908] = {.lex_state = 128, .external_lex_state = 2}, + [3909] = {.lex_state = 128, .external_lex_state = 2}, + [3910] = {.lex_state = 128, .external_lex_state = 2}, + [3911] = {.lex_state = 128, .external_lex_state = 2}, + [3912] = {.lex_state = 128, .external_lex_state = 6}, + [3913] = {.lex_state = 128, .external_lex_state = 6}, + [3914] = {.lex_state = 128, .external_lex_state = 2}, + [3915] = {.lex_state = 128, .external_lex_state = 6}, + [3916] = {.lex_state = 128, .external_lex_state = 2}, + [3917] = {.lex_state = 128, .external_lex_state = 2}, + [3918] = {.lex_state = 128, .external_lex_state = 6}, + [3919] = {.lex_state = 128, .external_lex_state = 2}, + [3920] = {.lex_state = 128, .external_lex_state = 5}, + [3921] = {.lex_state = 128, .external_lex_state = 6}, + [3922] = {.lex_state = 128, .external_lex_state = 2}, + [3923] = {.lex_state = 128, .external_lex_state = 5}, + [3924] = {.lex_state = 128, .external_lex_state = 2}, + [3925] = {.lex_state = 128, .external_lex_state = 5}, + [3926] = {.lex_state = 128, .external_lex_state = 2}, + [3927] = {.lex_state = 128, .external_lex_state = 5}, + [3928] = {.lex_state = 18, .external_lex_state = 7}, + [3929] = {.lex_state = 128, .external_lex_state = 5}, + [3930] = {.lex_state = 128, .external_lex_state = 5}, + [3931] = {.lex_state = 128, .external_lex_state = 2}, + [3932] = {.lex_state = 128, .external_lex_state = 5}, + [3933] = {.lex_state = 128, .external_lex_state = 5}, + [3934] = {.lex_state = 128, .external_lex_state = 5}, + [3935] = {.lex_state = 128, .external_lex_state = 5}, + [3936] = {.lex_state = 18, .external_lex_state = 7}, + [3937] = {.lex_state = 128, .external_lex_state = 5}, + [3938] = {.lex_state = 128, .external_lex_state = 5}, + [3939] = {.lex_state = 128, .external_lex_state = 5}, + [3940] = {.lex_state = 128, .external_lex_state = 5}, + [3941] = {.lex_state = 128, .external_lex_state = 5}, + [3942] = {.lex_state = 18, .external_lex_state = 7}, + [3943] = {.lex_state = 128, .external_lex_state = 5}, + [3944] = {.lex_state = 128, .external_lex_state = 5}, + [3945] = {.lex_state = 128, .external_lex_state = 5}, + [3946] = {.lex_state = 128, .external_lex_state = 2}, + [3947] = {.lex_state = 128, .external_lex_state = 5}, + [3948] = {.lex_state = 128, .external_lex_state = 2}, + [3949] = {.lex_state = 128, .external_lex_state = 5}, + [3950] = {.lex_state = 128, .external_lex_state = 5}, + [3951] = {.lex_state = 18, .external_lex_state = 7}, + [3952] = {.lex_state = 128, .external_lex_state = 5}, + [3953] = {.lex_state = 20, .external_lex_state = 2}, + [3954] = {.lex_state = 128, .external_lex_state = 5}, + [3955] = {.lex_state = 128, .external_lex_state = 5}, + [3956] = {.lex_state = 128, .external_lex_state = 5}, + [3957] = {.lex_state = 128, .external_lex_state = 5}, + [3958] = {.lex_state = 128, .external_lex_state = 6}, + [3959] = {.lex_state = 128, .external_lex_state = 6}, + [3960] = {.lex_state = 128, .external_lex_state = 6}, + [3961] = {.lex_state = 128, .external_lex_state = 5}, + [3962] = {.lex_state = 128, .external_lex_state = 5}, + [3963] = {.lex_state = 128, .external_lex_state = 5}, + [3964] = {.lex_state = 128, .external_lex_state = 5}, + [3965] = {.lex_state = 128, .external_lex_state = 5}, + [3966] = {.lex_state = 128, .external_lex_state = 5}, + [3967] = {.lex_state = 128, .external_lex_state = 5}, + [3968] = {.lex_state = 128, .external_lex_state = 5}, + [3969] = {.lex_state = 128, .external_lex_state = 5}, + [3970] = {.lex_state = 128, .external_lex_state = 5}, + [3971] = {.lex_state = 128, .external_lex_state = 5}, + [3972] = {.lex_state = 128, .external_lex_state = 2}, + [3973] = {.lex_state = 128, .external_lex_state = 5}, + [3974] = {.lex_state = 128, .external_lex_state = 5}, + [3975] = {.lex_state = 128, .external_lex_state = 5}, + [3976] = {.lex_state = 128, .external_lex_state = 5}, + [3977] = {.lex_state = 128, .external_lex_state = 5}, + [3978] = {.lex_state = 128, .external_lex_state = 2}, + [3979] = {.lex_state = 128, .external_lex_state = 2}, + [3980] = {.lex_state = 128, .external_lex_state = 5}, + [3981] = {.lex_state = 128, .external_lex_state = 5}, + [3982] = {.lex_state = 128, .external_lex_state = 5}, + [3983] = {.lex_state = 128, .external_lex_state = 5}, + [3984] = {.lex_state = 128, .external_lex_state = 5}, + [3985] = {.lex_state = 128, .external_lex_state = 5}, + [3986] = {.lex_state = 128, .external_lex_state = 5}, + [3987] = {.lex_state = 128, .external_lex_state = 5}, + [3988] = {.lex_state = 128, .external_lex_state = 5}, + [3989] = {.lex_state = 128, .external_lex_state = 5}, + [3990] = {.lex_state = 128, .external_lex_state = 5}, + [3991] = {.lex_state = 128, .external_lex_state = 2}, + [3992] = {.lex_state = 128, .external_lex_state = 2}, + [3993] = {.lex_state = 11, .external_lex_state = 2}, + [3994] = {.lex_state = 128, .external_lex_state = 5}, + [3995] = {.lex_state = 128, .external_lex_state = 5}, + [3996] = {.lex_state = 128, .external_lex_state = 2}, + [3997] = {.lex_state = 128, .external_lex_state = 2}, + [3998] = {.lex_state = 18, .external_lex_state = 7}, + [3999] = {.lex_state = 18, .external_lex_state = 9}, + [4000] = {.lex_state = 128, .external_lex_state = 5}, + [4001] = {.lex_state = 128, .external_lex_state = 5}, + [4002] = {.lex_state = 128, .external_lex_state = 6}, + [4003] = {.lex_state = 128, .external_lex_state = 5}, + [4004] = {.lex_state = 128, .external_lex_state = 5}, + [4005] = {.lex_state = 128, .external_lex_state = 2}, + [4006] = {.lex_state = 128, .external_lex_state = 2}, + [4007] = {.lex_state = 128, .external_lex_state = 2}, + [4008] = {.lex_state = 2, .external_lex_state = 2}, + [4009] = {.lex_state = 128, .external_lex_state = 6}, + [4010] = {.lex_state = 128, .external_lex_state = 5}, + [4011] = {.lex_state = 128, .external_lex_state = 5}, + [4012] = {.lex_state = 128, .external_lex_state = 5}, + [4013] = {.lex_state = 128, .external_lex_state = 5}, + [4014] = {.lex_state = 128, .external_lex_state = 5}, + [4015] = {.lex_state = 128, .external_lex_state = 5}, + [4016] = {.lex_state = 128, .external_lex_state = 5}, + [4017] = {.lex_state = 128, .external_lex_state = 5}, + [4018] = {.lex_state = 128, .external_lex_state = 5}, + [4019] = {.lex_state = 128, .external_lex_state = 2}, + [4020] = {.lex_state = 128, .external_lex_state = 2}, + [4021] = {.lex_state = 128, .external_lex_state = 6}, + [4022] = {.lex_state = 20, .external_lex_state = 2}, + [4023] = {.lex_state = 128, .external_lex_state = 5}, + [4024] = {.lex_state = 128, .external_lex_state = 5}, + [4025] = {.lex_state = 128, .external_lex_state = 5}, + [4026] = {.lex_state = 18, .external_lex_state = 9}, + [4027] = {.lex_state = 128, .external_lex_state = 2}, + [4028] = {.lex_state = 128, .external_lex_state = 5}, + [4029] = {.lex_state = 128, .external_lex_state = 5}, + [4030] = {.lex_state = 128, .external_lex_state = 6}, + [4031] = {.lex_state = 128, .external_lex_state = 5}, + [4032] = {.lex_state = 128, .external_lex_state = 5}, + [4033] = {.lex_state = 128, .external_lex_state = 5}, + [4034] = {.lex_state = 128, .external_lex_state = 5}, + [4035] = {.lex_state = 128, .external_lex_state = 5}, + [4036] = {.lex_state = 128, .external_lex_state = 5}, + [4037] = {.lex_state = 128, .external_lex_state = 2}, + [4038] = {.lex_state = 128, .external_lex_state = 5}, + [4039] = {.lex_state = 128, .external_lex_state = 5}, + [4040] = {.lex_state = 128, .external_lex_state = 2}, + [4041] = {.lex_state = 128, .external_lex_state = 2}, + [4042] = {.lex_state = 128, .external_lex_state = 5}, + [4043] = {.lex_state = 128, .external_lex_state = 6}, + [4044] = {.lex_state = 128, .external_lex_state = 5}, + [4045] = {.lex_state = 128, .external_lex_state = 5}, + [4046] = {.lex_state = 128, .external_lex_state = 5}, + [4047] = {.lex_state = 128, .external_lex_state = 5}, + [4048] = {.lex_state = 128, .external_lex_state = 2}, + [4049] = {.lex_state = 128, .external_lex_state = 2}, + [4050] = {.lex_state = 128, .external_lex_state = 5}, + [4051] = {.lex_state = 128, .external_lex_state = 2}, + [4052] = {.lex_state = 128, .external_lex_state = 5}, + [4053] = {.lex_state = 128, .external_lex_state = 5}, + [4054] = {.lex_state = 128, .external_lex_state = 5}, + [4055] = {.lex_state = 128, .external_lex_state = 5}, + [4056] = {.lex_state = 128, .external_lex_state = 2}, + [4057] = {.lex_state = 128, .external_lex_state = 5}, + [4058] = {.lex_state = 128, .external_lex_state = 5}, + [4059] = {.lex_state = 128, .external_lex_state = 5}, + [4060] = {.lex_state = 128, .external_lex_state = 5}, + [4061] = {.lex_state = 128, .external_lex_state = 5}, + [4062] = {.lex_state = 128, .external_lex_state = 2}, + [4063] = {.lex_state = 20, .external_lex_state = 2}, + [4064] = {.lex_state = 128, .external_lex_state = 2}, + [4065] = {.lex_state = 128, .external_lex_state = 6}, + [4066] = {.lex_state = 128, .external_lex_state = 5}, + [4067] = {.lex_state = 128, .external_lex_state = 5}, + [4068] = {.lex_state = 128, .external_lex_state = 5}, + [4069] = {.lex_state = 128, .external_lex_state = 5}, + [4070] = {.lex_state = 128, .external_lex_state = 2}, + [4071] = {.lex_state = 128, .external_lex_state = 5}, + [4072] = {.lex_state = 128, .external_lex_state = 5}, + [4073] = {.lex_state = 128, .external_lex_state = 5}, + [4074] = {.lex_state = 128, .external_lex_state = 2}, + [4075] = {.lex_state = 128, .external_lex_state = 2}, + [4076] = {.lex_state = 128, .external_lex_state = 2}, + [4077] = {.lex_state = 128, .external_lex_state = 2}, + [4078] = {.lex_state = 128, .external_lex_state = 2}, + [4079] = {.lex_state = 128, .external_lex_state = 5}, + [4080] = {.lex_state = 128, .external_lex_state = 5}, + [4081] = {.lex_state = 128, .external_lex_state = 5}, + [4082] = {.lex_state = 128, .external_lex_state = 5}, + [4083] = {.lex_state = 128, .external_lex_state = 5}, + [4084] = {.lex_state = 128, .external_lex_state = 2}, + [4085] = {.lex_state = 128, .external_lex_state = 5}, + [4086] = {.lex_state = 128, .external_lex_state = 5}, + [4087] = {.lex_state = 128, .external_lex_state = 5}, + [4088] = {.lex_state = 128, .external_lex_state = 2}, + [4089] = {.lex_state = 128, .external_lex_state = 5}, + [4090] = {.lex_state = 128, .external_lex_state = 5}, + [4091] = {.lex_state = 128, .external_lex_state = 5}, + [4092] = {.lex_state = 128, .external_lex_state = 5}, + [4093] = {.lex_state = 128, .external_lex_state = 5}, + [4094] = {.lex_state = 128, .external_lex_state = 5}, + [4095] = {.lex_state = 128, .external_lex_state = 5}, + [4096] = {.lex_state = 128, .external_lex_state = 5}, + [4097] = {.lex_state = 128, .external_lex_state = 5}, + [4098] = {.lex_state = 128, .external_lex_state = 5}, + [4099] = {.lex_state = 128, .external_lex_state = 5}, + [4100] = {.lex_state = 128, .external_lex_state = 5}, + [4101] = {.lex_state = 128, .external_lex_state = 5}, + [4102] = {.lex_state = 128, .external_lex_state = 2}, + [4103] = {.lex_state = 128, .external_lex_state = 5}, + [4104] = {.lex_state = 128, .external_lex_state = 5}, + [4105] = {.lex_state = 128, .external_lex_state = 2}, + [4106] = {.lex_state = 11, .external_lex_state = 2}, + [4107] = {.lex_state = 128, .external_lex_state = 5}, + [4108] = {.lex_state = 18, .external_lex_state = 9}, + [4109] = {.lex_state = 128, .external_lex_state = 6}, + [4110] = {.lex_state = 128, .external_lex_state = 5}, + [4111] = {.lex_state = 128, .external_lex_state = 5}, + [4112] = {.lex_state = 128, .external_lex_state = 5}, + [4113] = {.lex_state = 128, .external_lex_state = 2}, + [4114] = {.lex_state = 128, .external_lex_state = 5}, + [4115] = {.lex_state = 18, .external_lex_state = 9}, + [4116] = {.lex_state = 128, .external_lex_state = 6}, + [4117] = {.lex_state = 128, .external_lex_state = 5}, + [4118] = {.lex_state = 128, .external_lex_state = 5}, + [4119] = {.lex_state = 128, .external_lex_state = 5}, + [4120] = {.lex_state = 128, .external_lex_state = 5}, + [4121] = {.lex_state = 128, .external_lex_state = 5}, + [4122] = {.lex_state = 128, .external_lex_state = 5}, + [4123] = {.lex_state = 128, .external_lex_state = 5}, + [4124] = {.lex_state = 128, .external_lex_state = 5}, + [4125] = {.lex_state = 128, .external_lex_state = 5}, + [4126] = {.lex_state = 128, .external_lex_state = 5}, + [4127] = {.lex_state = 128, .external_lex_state = 5}, + [4128] = {.lex_state = 128, .external_lex_state = 5}, + [4129] = {.lex_state = 128, .external_lex_state = 5}, + [4130] = {.lex_state = 128, .external_lex_state = 5}, + [4131] = {.lex_state = 128, .external_lex_state = 5}, + [4132] = {.lex_state = 128, .external_lex_state = 2}, + [4133] = {.lex_state = 11, .external_lex_state = 2}, + [4134] = {.lex_state = 128, .external_lex_state = 5}, + [4135] = {.lex_state = 128, .external_lex_state = 2}, + [4136] = {.lex_state = 18, .external_lex_state = 9}, + [4137] = {.lex_state = 128, .external_lex_state = 5}, + [4138] = {.lex_state = 128, .external_lex_state = 5}, + [4139] = {.lex_state = 128, .external_lex_state = 5}, + [4140] = {.lex_state = 128, .external_lex_state = 5}, + [4141] = {.lex_state = 128, .external_lex_state = 5}, + [4142] = {.lex_state = 18, .external_lex_state = 9}, + [4143] = {.lex_state = 128, .external_lex_state = 5}, + [4144] = {.lex_state = 128, .external_lex_state = 5}, + [4145] = {.lex_state = 128, .external_lex_state = 5}, + [4146] = {.lex_state = 128, .external_lex_state = 5}, + [4147] = {.lex_state = 128, .external_lex_state = 5}, + [4148] = {.lex_state = 128, .external_lex_state = 5}, + [4149] = {.lex_state = 128, .external_lex_state = 2}, + [4150] = {.lex_state = 128, .external_lex_state = 5}, + [4151] = {.lex_state = 128, .external_lex_state = 2}, + [4152] = {.lex_state = 128, .external_lex_state = 2}, + [4153] = {.lex_state = 128, .external_lex_state = 5}, + [4154] = {.lex_state = 128, .external_lex_state = 2}, + [4155] = {.lex_state = 128, .external_lex_state = 5}, + [4156] = {.lex_state = 128, .external_lex_state = 5}, + [4157] = {.lex_state = 18, .external_lex_state = 9}, + [4158] = {.lex_state = 128, .external_lex_state = 5}, + [4159] = {.lex_state = 128, .external_lex_state = 5}, + [4160] = {.lex_state = 128, .external_lex_state = 5}, + [4161] = {.lex_state = 128, .external_lex_state = 5}, + [4162] = {.lex_state = 18, .external_lex_state = 9}, + [4163] = {.lex_state = 128, .external_lex_state = 5}, + [4164] = {.lex_state = 128, .external_lex_state = 5}, + [4165] = {.lex_state = 128, .external_lex_state = 5}, + [4166] = {.lex_state = 128, .external_lex_state = 5}, + [4167] = {.lex_state = 128, .external_lex_state = 2}, + [4168] = {.lex_state = 128, .external_lex_state = 5}, + [4169] = {.lex_state = 128, .external_lex_state = 5}, + [4170] = {.lex_state = 128, .external_lex_state = 5}, + [4171] = {.lex_state = 128, .external_lex_state = 5}, + [4172] = {.lex_state = 128, .external_lex_state = 5}, + [4173] = {.lex_state = 128, .external_lex_state = 5}, + [4174] = {.lex_state = 18, .external_lex_state = 7}, + [4175] = {.lex_state = 18, .external_lex_state = 7}, + [4176] = {.lex_state = 128, .external_lex_state = 5}, + [4177] = {.lex_state = 128, .external_lex_state = 5}, + [4178] = {.lex_state = 128, .external_lex_state = 5}, + [4179] = {.lex_state = 128, .external_lex_state = 5}, + [4180] = {.lex_state = 128, .external_lex_state = 5}, + [4181] = {.lex_state = 128, .external_lex_state = 2}, + [4182] = {.lex_state = 128, .external_lex_state = 5}, + [4183] = {.lex_state = 128, .external_lex_state = 5}, + [4184] = {.lex_state = 128, .external_lex_state = 5}, + [4185] = {.lex_state = 128, .external_lex_state = 2}, + [4186] = {.lex_state = 128, .external_lex_state = 5}, + [4187] = {.lex_state = 18, .external_lex_state = 7}, + [4188] = {.lex_state = 128, .external_lex_state = 5}, + [4189] = {.lex_state = 128, .external_lex_state = 5}, + [4190] = {.lex_state = 18, .external_lex_state = 7}, + [4191] = {.lex_state = 128, .external_lex_state = 5}, + [4192] = {.lex_state = 128, .external_lex_state = 5}, + [4193] = {.lex_state = 128, .external_lex_state = 2}, + [4194] = {.lex_state = 128, .external_lex_state = 2}, + [4195] = {.lex_state = 18, .external_lex_state = 7}, + [4196] = {.lex_state = 18, .external_lex_state = 7}, + [4197] = {.lex_state = 128, .external_lex_state = 5}, + [4198] = {.lex_state = 128, .external_lex_state = 2}, + [4199] = {.lex_state = 128, .external_lex_state = 5}, + [4200] = {.lex_state = 11, .external_lex_state = 2}, + [4201] = {.lex_state = 128, .external_lex_state = 2}, + [4202] = {.lex_state = 128, .external_lex_state = 5}, + [4203] = {.lex_state = 128, .external_lex_state = 5}, + [4204] = {.lex_state = 128, .external_lex_state = 2}, + [4205] = {.lex_state = 128, .external_lex_state = 5}, + [4206] = {.lex_state = 128, .external_lex_state = 5}, + [4207] = {.lex_state = 128, .external_lex_state = 5}, + [4208] = {.lex_state = 128, .external_lex_state = 5}, + [4209] = {.lex_state = 128, .external_lex_state = 2}, + [4210] = {.lex_state = 128, .external_lex_state = 5}, + [4211] = {.lex_state = 128, .external_lex_state = 2}, + [4212] = {.lex_state = 128, .external_lex_state = 2}, + [4213] = {.lex_state = 128, .external_lex_state = 5}, + [4214] = {.lex_state = 128, .external_lex_state = 2}, + [4215] = {.lex_state = 128, .external_lex_state = 2}, + [4216] = {.lex_state = 128, .external_lex_state = 5}, + [4217] = {.lex_state = 128, .external_lex_state = 5}, + [4218] = {.lex_state = 128, .external_lex_state = 5}, + [4219] = {.lex_state = 128, .external_lex_state = 5}, + [4220] = {.lex_state = 128, .external_lex_state = 5}, + [4221] = {.lex_state = 128, .external_lex_state = 2}, + [4222] = {.lex_state = 128, .external_lex_state = 2}, + [4223] = {.lex_state = 18, .external_lex_state = 9}, + [4224] = {.lex_state = 128, .external_lex_state = 5}, + [4225] = {.lex_state = 128, .external_lex_state = 5}, + [4226] = {.lex_state = 128, .external_lex_state = 5}, + [4227] = {.lex_state = 128, .external_lex_state = 5}, + [4228] = {.lex_state = 128, .external_lex_state = 2}, + [4229] = {.lex_state = 18, .external_lex_state = 7}, + [4230] = {.lex_state = 18, .external_lex_state = 7}, + [4231] = {.lex_state = 18, .external_lex_state = 7}, + [4232] = {.lex_state = 18, .external_lex_state = 7}, + [4233] = {.lex_state = 18, .external_lex_state = 7}, + [4234] = {.lex_state = 18, .external_lex_state = 7}, + [4235] = {.lex_state = 128, .external_lex_state = 5}, + [4236] = {.lex_state = 128, .external_lex_state = 5}, + [4237] = {.lex_state = 128, .external_lex_state = 2}, + [4238] = {.lex_state = 128, .external_lex_state = 5}, + [4239] = {.lex_state = 128, .external_lex_state = 5}, + [4240] = {.lex_state = 18, .external_lex_state = 7}, + [4241] = {.lex_state = 18, .external_lex_state = 7}, + [4242] = {.lex_state = 128, .external_lex_state = 5}, + [4243] = {.lex_state = 128, .external_lex_state = 5}, + [4244] = {.lex_state = 128, .external_lex_state = 2}, + [4245] = {.lex_state = 128, .external_lex_state = 5}, + [4246] = {.lex_state = 128, .external_lex_state = 2}, + [4247] = {.lex_state = 128, .external_lex_state = 2}, + [4248] = {.lex_state = 128, .external_lex_state = 5}, + [4249] = {.lex_state = 128, .external_lex_state = 5}, + [4250] = {.lex_state = 128, .external_lex_state = 5}, + [4251] = {.lex_state = 2, .external_lex_state = 2}, + [4252] = {.lex_state = 128, .external_lex_state = 2}, + [4253] = {.lex_state = 20, .external_lex_state = 2}, + [4254] = {.lex_state = 20, .external_lex_state = 2}, + [4255] = {.lex_state = 18, .external_lex_state = 7}, + [4256] = {.lex_state = 18, .external_lex_state = 7}, + [4257] = {.lex_state = 128, .external_lex_state = 2}, + [4258] = {.lex_state = 128, .external_lex_state = 2}, + [4259] = {.lex_state = 128, .external_lex_state = 5}, + [4260] = {.lex_state = 128, .external_lex_state = 2}, + [4261] = {.lex_state = 128, .external_lex_state = 2}, + [4262] = {.lex_state = 128, .external_lex_state = 5}, + [4263] = {.lex_state = 128, .external_lex_state = 5}, + [4264] = {.lex_state = 128, .external_lex_state = 5}, + [4265] = {.lex_state = 128, .external_lex_state = 5}, + [4266] = {.lex_state = 128, .external_lex_state = 5}, + [4267] = {.lex_state = 128, .external_lex_state = 5}, + [4268] = {.lex_state = 18, .external_lex_state = 7}, + [4269] = {.lex_state = 18, .external_lex_state = 7}, + [4270] = {.lex_state = 128, .external_lex_state = 5}, + [4271] = {.lex_state = 128, .external_lex_state = 5}, + [4272] = {.lex_state = 128, .external_lex_state = 2}, + [4273] = {.lex_state = 128, .external_lex_state = 5}, + [4274] = {.lex_state = 128, .external_lex_state = 5}, + [4275] = {.lex_state = 128, .external_lex_state = 5}, + [4276] = {.lex_state = 128, .external_lex_state = 2}, + [4277] = {.lex_state = 128, .external_lex_state = 5}, + [4278] = {.lex_state = 128, .external_lex_state = 5}, + [4279] = {.lex_state = 128, .external_lex_state = 5}, + [4280] = {.lex_state = 128, .external_lex_state = 2}, + [4281] = {.lex_state = 128, .external_lex_state = 2}, + [4282] = {.lex_state = 128, .external_lex_state = 5}, + [4283] = {.lex_state = 128, .external_lex_state = 5}, + [4284] = {.lex_state = 128, .external_lex_state = 2}, + [4285] = {.lex_state = 128, .external_lex_state = 5}, + [4286] = {.lex_state = 128, .external_lex_state = 5}, + [4287] = {.lex_state = 128, .external_lex_state = 2}, + [4288] = {.lex_state = 128, .external_lex_state = 5}, + [4289] = {.lex_state = 128, .external_lex_state = 2}, + [4290] = {.lex_state = 128, .external_lex_state = 2}, + [4291] = {.lex_state = 128, .external_lex_state = 2}, + [4292] = {.lex_state = 128, .external_lex_state = 2}, + [4293] = {.lex_state = 128, .external_lex_state = 5}, + [4294] = {.lex_state = 128, .external_lex_state = 2}, + [4295] = {.lex_state = 128, .external_lex_state = 5}, + [4296] = {.lex_state = 128, .external_lex_state = 5}, + [4297] = {.lex_state = 128, .external_lex_state = 5}, + [4298] = {.lex_state = 128, .external_lex_state = 5}, + [4299] = {.lex_state = 128, .external_lex_state = 2}, + [4300] = {.lex_state = 128, .external_lex_state = 2}, + [4301] = {.lex_state = 128, .external_lex_state = 2}, + [4302] = {.lex_state = 128, .external_lex_state = 2}, + [4303] = {.lex_state = 128, .external_lex_state = 2}, + [4304] = {.lex_state = 20, .external_lex_state = 2}, + [4305] = {.lex_state = 20, .external_lex_state = 2}, + [4306] = {.lex_state = 128, .external_lex_state = 5}, + [4307] = {.lex_state = 128, .external_lex_state = 5}, + [4308] = {.lex_state = 128, .external_lex_state = 2}, + [4309] = {.lex_state = 128, .external_lex_state = 5}, + [4310] = {.lex_state = 128, .external_lex_state = 2}, + [4311] = {.lex_state = 128, .external_lex_state = 5}, + [4312] = {.lex_state = 7, .external_lex_state = 2}, + [4313] = {.lex_state = 128, .external_lex_state = 5}, + [4314] = {.lex_state = 128, .external_lex_state = 5}, + [4315] = {.lex_state = 20, .external_lex_state = 2}, + [4316] = {.lex_state = 20, .external_lex_state = 2}, + [4317] = {.lex_state = 128, .external_lex_state = 5}, + [4318] = {.lex_state = 128, .external_lex_state = 2}, + [4319] = {.lex_state = 128, .external_lex_state = 5}, + [4320] = {.lex_state = 20, .external_lex_state = 2}, + [4321] = {.lex_state = 20, .external_lex_state = 2}, + [4322] = {.lex_state = 128, .external_lex_state = 5}, + [4323] = {.lex_state = 128, .external_lex_state = 5}, + [4324] = {.lex_state = 128, .external_lex_state = 5}, + [4325] = {.lex_state = 128, .external_lex_state = 5}, + [4326] = {.lex_state = 128, .external_lex_state = 5}, + [4327] = {.lex_state = 128, .external_lex_state = 5}, + [4328] = {.lex_state = 128, .external_lex_state = 5}, + [4329] = {.lex_state = 128, .external_lex_state = 5}, + [4330] = {.lex_state = 128, .external_lex_state = 2}, + [4331] = {.lex_state = 128, .external_lex_state = 5}, + [4332] = {.lex_state = 128, .external_lex_state = 5}, + [4333] = {.lex_state = 128, .external_lex_state = 2}, + [4334] = {.lex_state = 128, .external_lex_state = 5}, + [4335] = {.lex_state = 128, .external_lex_state = 5}, + [4336] = {.lex_state = 128, .external_lex_state = 5}, + [4337] = {.lex_state = 20, .external_lex_state = 2}, + [4338] = {.lex_state = 20, .external_lex_state = 2}, + [4339] = {.lex_state = 20, .external_lex_state = 2}, + [4340] = {.lex_state = 128, .external_lex_state = 5}, + [4341] = {.lex_state = 20, .external_lex_state = 2}, + [4342] = {.lex_state = 20, .external_lex_state = 2}, + [4343] = {.lex_state = 20, .external_lex_state = 2}, + [4344] = {.lex_state = 128, .external_lex_state = 2}, + [4345] = {.lex_state = 128, .external_lex_state = 5}, + [4346] = {.lex_state = 20, .external_lex_state = 2}, + [4347] = {.lex_state = 20, .external_lex_state = 2}, + [4348] = {.lex_state = 128, .external_lex_state = 5}, + [4349] = {.lex_state = 128, .external_lex_state = 2}, + [4350] = {.lex_state = 128, .external_lex_state = 5}, + [4351] = {.lex_state = 128, .external_lex_state = 5}, + [4352] = {.lex_state = 128, .external_lex_state = 5}, + [4353] = {.lex_state = 128, .external_lex_state = 5}, + [4354] = {.lex_state = 128, .external_lex_state = 5}, + [4355] = {.lex_state = 128, .external_lex_state = 5}, + [4356] = {.lex_state = 128, .external_lex_state = 5}, + [4357] = {.lex_state = 128, .external_lex_state = 5}, + [4358] = {.lex_state = 128, .external_lex_state = 5}, + [4359] = {.lex_state = 128, .external_lex_state = 5}, + [4360] = {.lex_state = 128, .external_lex_state = 5}, + [4361] = {.lex_state = 20, .external_lex_state = 2}, + [4362] = {.lex_state = 20, .external_lex_state = 2}, + [4363] = {.lex_state = 128, .external_lex_state = 5}, + [4364] = {.lex_state = 128, .external_lex_state = 2}, + [4365] = {.lex_state = 128, .external_lex_state = 2}, + [4366] = {.lex_state = 128, .external_lex_state = 5}, + [4367] = {.lex_state = 128, .external_lex_state = 2}, + [4368] = {.lex_state = 128, .external_lex_state = 5}, + [4369] = {.lex_state = 128, .external_lex_state = 2}, + [4370] = {.lex_state = 128, .external_lex_state = 5}, + [4371] = {.lex_state = 128, .external_lex_state = 5}, + [4372] = {.lex_state = 128, .external_lex_state = 5}, + [4373] = {.lex_state = 128, .external_lex_state = 5}, + [4374] = {.lex_state = 18, .external_lex_state = 9}, + [4375] = {.lex_state = 128, .external_lex_state = 5}, + [4376] = {.lex_state = 128, .external_lex_state = 5}, + [4377] = {.lex_state = 128, .external_lex_state = 5}, + [4378] = {.lex_state = 128, .external_lex_state = 5}, + [4379] = {.lex_state = 128, .external_lex_state = 2}, + [4380] = {.lex_state = 128, .external_lex_state = 2}, + [4381] = {.lex_state = 128, .external_lex_state = 2}, + [4382] = {.lex_state = 128, .external_lex_state = 5}, + [4383] = {.lex_state = 128, .external_lex_state = 2}, + [4384] = {.lex_state = 128, .external_lex_state = 2}, + [4385] = {.lex_state = 128, .external_lex_state = 2}, + [4386] = {.lex_state = 128, .external_lex_state = 2}, + [4387] = {.lex_state = 128, .external_lex_state = 2}, + [4388] = {.lex_state = 128, .external_lex_state = 6}, + [4389] = {.lex_state = 128, .external_lex_state = 5}, + [4390] = {.lex_state = 128, .external_lex_state = 5}, + [4391] = {.lex_state = 128, .external_lex_state = 5}, + [4392] = {.lex_state = 128, .external_lex_state = 5}, + [4393] = {.lex_state = 128, .external_lex_state = 5}, + [4394] = {.lex_state = 128, .external_lex_state = 5}, + [4395] = {.lex_state = 18, .external_lex_state = 9}, + [4396] = {.lex_state = 128, .external_lex_state = 5}, + [4397] = {.lex_state = 128, .external_lex_state = 5}, + [4398] = {.lex_state = 128, .external_lex_state = 5}, + [4399] = {.lex_state = 128, .external_lex_state = 5}, + [4400] = {.lex_state = 128, .external_lex_state = 5}, + [4401] = {.lex_state = 20, .external_lex_state = 2}, + [4402] = {.lex_state = 128, .external_lex_state = 5}, + [4403] = {.lex_state = 8, .external_lex_state = 2}, + [4404] = {.lex_state = 128, .external_lex_state = 5}, + [4405] = {.lex_state = 128, .external_lex_state = 5}, + [4406] = {.lex_state = 128, .external_lex_state = 5}, + [4407] = {.lex_state = 128, .external_lex_state = 5}, + [4408] = {.lex_state = 128, .external_lex_state = 5}, + [4409] = {.lex_state = 128, .external_lex_state = 2}, + [4410] = {.lex_state = 128, .external_lex_state = 2}, + [4411] = {.lex_state = 128, .external_lex_state = 2}, + [4412] = {.lex_state = 128, .external_lex_state = 2}, + [4413] = {.lex_state = 128, .external_lex_state = 6}, + [4414] = {.lex_state = 128, .external_lex_state = 5}, + [4415] = {.lex_state = 128, .external_lex_state = 5}, + [4416] = {.lex_state = 128, .external_lex_state = 5}, + [4417] = {.lex_state = 18, .external_lex_state = 7}, + [4418] = {.lex_state = 128, .external_lex_state = 5}, + [4419] = {.lex_state = 18, .external_lex_state = 7}, + [4420] = {.lex_state = 128, .external_lex_state = 5}, + [4421] = {.lex_state = 20, .external_lex_state = 2}, + [4422] = {.lex_state = 128, .external_lex_state = 5}, + [4423] = {.lex_state = 128, .external_lex_state = 5}, + [4424] = {.lex_state = 128, .external_lex_state = 2}, + [4425] = {.lex_state = 128, .external_lex_state = 5}, + [4426] = {.lex_state = 128, .external_lex_state = 5}, + [4427] = {.lex_state = 18, .external_lex_state = 7}, + [4428] = {.lex_state = 128, .external_lex_state = 6}, + [4429] = {.lex_state = 8, .external_lex_state = 2}, + [4430] = {.lex_state = 128, .external_lex_state = 5}, + [4431] = {.lex_state = 128, .external_lex_state = 5}, + [4432] = {.lex_state = 8, .external_lex_state = 2}, + [4433] = {.lex_state = 128, .external_lex_state = 5}, + [4434] = {.lex_state = 128, .external_lex_state = 5}, + [4435] = {.lex_state = 128, .external_lex_state = 2}, + [4436] = {.lex_state = 128, .external_lex_state = 5}, + [4437] = {.lex_state = 18, .external_lex_state = 7}, + [4438] = {.lex_state = 128, .external_lex_state = 5}, + [4439] = {.lex_state = 128, .external_lex_state = 5}, + [4440] = {.lex_state = 18, .external_lex_state = 7}, + [4441] = {.lex_state = 128, .external_lex_state = 2}, + [4442] = {.lex_state = 128, .external_lex_state = 5}, + [4443] = {.lex_state = 128, .external_lex_state = 5}, + [4444] = {.lex_state = 128, .external_lex_state = 2}, + [4445] = {.lex_state = 128, .external_lex_state = 5}, + [4446] = {.lex_state = 128, .external_lex_state = 5}, + [4447] = {.lex_state = 128, .external_lex_state = 5}, + [4448] = {.lex_state = 18, .external_lex_state = 7}, + [4449] = {.lex_state = 128, .external_lex_state = 2}, + [4450] = {.lex_state = 128, .external_lex_state = 2}, + [4451] = {.lex_state = 128, .external_lex_state = 5}, + [4452] = {.lex_state = 7, .external_lex_state = 2}, + [4453] = {.lex_state = 128, .external_lex_state = 5}, + [4454] = {.lex_state = 128, .external_lex_state = 5}, + [4455] = {.lex_state = 128, .external_lex_state = 5}, + [4456] = {.lex_state = 128, .external_lex_state = 5}, + [4457] = {.lex_state = 128, .external_lex_state = 2}, + [4458] = {.lex_state = 128, .external_lex_state = 5}, + [4459] = {.lex_state = 128, .external_lex_state = 5}, + [4460] = {.lex_state = 128, .external_lex_state = 2}, + [4461] = {.lex_state = 12, .external_lex_state = 2}, + [4462] = {.lex_state = 14, .external_lex_state = 10}, + [4463] = {.lex_state = 23, .external_lex_state = 10}, + [4464] = {.lex_state = 128, .external_lex_state = 2}, + [4465] = {.lex_state = 128, .external_lex_state = 2}, + [4466] = {.lex_state = 128, .external_lex_state = 2}, + [4467] = {.lex_state = 128, .external_lex_state = 2}, + [4468] = {.lex_state = 128, .external_lex_state = 2}, + [4469] = {.lex_state = 2, .external_lex_state = 2}, + [4470] = {.lex_state = 128, .external_lex_state = 5}, + [4471] = {.lex_state = 128, .external_lex_state = 2}, + [4472] = {.lex_state = 128, .external_lex_state = 5}, + [4473] = {.lex_state = 128, .external_lex_state = 5}, + [4474] = {.lex_state = 128, .external_lex_state = 2}, + [4475] = {.lex_state = 14, .external_lex_state = 10}, + [4476] = {.lex_state = 128, .external_lex_state = 5}, + [4477] = {.lex_state = 128, .external_lex_state = 2}, + [4478] = {.lex_state = 128, .external_lex_state = 5}, + [4479] = {.lex_state = 128, .external_lex_state = 2}, + [4480] = {.lex_state = 128, .external_lex_state = 2}, + [4481] = {.lex_state = 128, .external_lex_state = 2}, + [4482] = {.lex_state = 128, .external_lex_state = 2}, + [4483] = {.lex_state = 128, .external_lex_state = 2}, + [4484] = {.lex_state = 128, .external_lex_state = 5}, + [4485] = {.lex_state = 128, .external_lex_state = 2}, + [4486] = {.lex_state = 128, .external_lex_state = 2}, + [4487] = {.lex_state = 128, .external_lex_state = 5}, + [4488] = {.lex_state = 128, .external_lex_state = 2}, + [4489] = {.lex_state = 128, .external_lex_state = 5}, + [4490] = {.lex_state = 128, .external_lex_state = 2}, + [4491] = {.lex_state = 128, .external_lex_state = 2}, + [4492] = {.lex_state = 128, .external_lex_state = 2}, + [4493] = {.lex_state = 128, .external_lex_state = 2}, + [4494] = {.lex_state = 18, .external_lex_state = 8}, + [4495] = {.lex_state = 128, .external_lex_state = 2}, + [4496] = {.lex_state = 128, .external_lex_state = 5}, + [4497] = {.lex_state = 14, .external_lex_state = 10}, + [4498] = {.lex_state = 23, .external_lex_state = 10}, + [4499] = {.lex_state = 128, .external_lex_state = 2}, + [4500] = {.lex_state = 128, .external_lex_state = 2}, + [4501] = {.lex_state = 14, .external_lex_state = 10}, + [4502] = {.lex_state = 128, .external_lex_state = 2}, + [4503] = {.lex_state = 23, .external_lex_state = 10}, + [4504] = {.lex_state = 128, .external_lex_state = 2}, + [4505] = {.lex_state = 128, .external_lex_state = 2}, + [4506] = {.lex_state = 128, .external_lex_state = 5}, + [4507] = {.lex_state = 23, .external_lex_state = 10}, + [4508] = {.lex_state = 128, .external_lex_state = 2}, + [4509] = {.lex_state = 128, .external_lex_state = 2}, + [4510] = {.lex_state = 128, .external_lex_state = 5}, + [4511] = {.lex_state = 128, .external_lex_state = 2}, + [4512] = {.lex_state = 128, .external_lex_state = 2}, + [4513] = {.lex_state = 128, .external_lex_state = 2}, + [4514] = {.lex_state = 128, .external_lex_state = 2}, + [4515] = {.lex_state = 128, .external_lex_state = 2}, + [4516] = {.lex_state = 128, .external_lex_state = 5}, + [4517] = {.lex_state = 128, .external_lex_state = 5}, + [4518] = {.lex_state = 128, .external_lex_state = 2}, + [4519] = {.lex_state = 128, .external_lex_state = 2}, + [4520] = {.lex_state = 128, .external_lex_state = 2}, + [4521] = {.lex_state = 128, .external_lex_state = 2}, + [4522] = {.lex_state = 12, .external_lex_state = 2}, + [4523] = {.lex_state = 21, .external_lex_state = 2}, + [4524] = {.lex_state = 128, .external_lex_state = 2}, + [4525] = {.lex_state = 128, .external_lex_state = 2}, + [4526] = {.lex_state = 128, .external_lex_state = 6}, + [4527] = {.lex_state = 128, .external_lex_state = 2}, + [4528] = {.lex_state = 2, .external_lex_state = 2}, + [4529] = {.lex_state = 14, .external_lex_state = 10}, + [4530] = {.lex_state = 128, .external_lex_state = 2}, + [4531] = {.lex_state = 128, .external_lex_state = 2}, + [4532] = {.lex_state = 128, .external_lex_state = 2}, + [4533] = {.lex_state = 128, .external_lex_state = 2}, + [4534] = {.lex_state = 7, .external_lex_state = 2}, + [4535] = {.lex_state = 128, .external_lex_state = 2}, + [4536] = {.lex_state = 14, .external_lex_state = 10}, + [4537] = {.lex_state = 128, .external_lex_state = 2}, + [4538] = {.lex_state = 23, .external_lex_state = 10}, + [4539] = {.lex_state = 128, .external_lex_state = 2}, + [4540] = {.lex_state = 128, .external_lex_state = 2}, + [4541] = {.lex_state = 23, .external_lex_state = 10}, + [4542] = {.lex_state = 128, .external_lex_state = 2}, + [4543] = {.lex_state = 128, .external_lex_state = 2}, + [4544] = {.lex_state = 14, .external_lex_state = 10}, + [4545] = {.lex_state = 23, .external_lex_state = 10}, + [4546] = {.lex_state = 14, .external_lex_state = 10}, + [4547] = {.lex_state = 12, .external_lex_state = 2}, + [4548] = {.lex_state = 23, .external_lex_state = 10}, + [4549] = {.lex_state = 128, .external_lex_state = 2}, + [4550] = {.lex_state = 128, .external_lex_state = 2}, + [4551] = {.lex_state = 21, .external_lex_state = 2}, + [4552] = {.lex_state = 128, .external_lex_state = 2}, + [4553] = {.lex_state = 14, .external_lex_state = 10}, + [4554] = {.lex_state = 128, .external_lex_state = 2}, + [4555] = {.lex_state = 128, .external_lex_state = 5}, + [4556] = {.lex_state = 23, .external_lex_state = 10}, + [4557] = {.lex_state = 14, .external_lex_state = 10}, + [4558] = {.lex_state = 23, .external_lex_state = 10}, + [4559] = {.lex_state = 128, .external_lex_state = 2}, + [4560] = {.lex_state = 128, .external_lex_state = 2}, + [4561] = {.lex_state = 18, .external_lex_state = 8}, + [4562] = {.lex_state = 23, .external_lex_state = 10}, + [4563] = {.lex_state = 14, .external_lex_state = 10}, + [4564] = {.lex_state = 128, .external_lex_state = 2}, + [4565] = {.lex_state = 128, .external_lex_state = 2}, + [4566] = {.lex_state = 128, .external_lex_state = 2}, + [4567] = {.lex_state = 14, .external_lex_state = 10}, + [4568] = {.lex_state = 23, .external_lex_state = 10}, + [4569] = {.lex_state = 128, .external_lex_state = 2}, + [4570] = {.lex_state = 128, .external_lex_state = 2}, + [4571] = {.lex_state = 14, .external_lex_state = 10}, + [4572] = {.lex_state = 23, .external_lex_state = 10}, + [4573] = {.lex_state = 128, .external_lex_state = 2}, + [4574] = {.lex_state = 128, .external_lex_state = 2}, + [4575] = {.lex_state = 128, .external_lex_state = 5}, + [4576] = {.lex_state = 128, .external_lex_state = 2}, + [4577] = {.lex_state = 128, .external_lex_state = 2}, + [4578] = {.lex_state = 128, .external_lex_state = 2}, + [4579] = {.lex_state = 128, .external_lex_state = 2}, + [4580] = {.lex_state = 128, .external_lex_state = 2}, + [4581] = {.lex_state = 23, .external_lex_state = 10}, + [4582] = {.lex_state = 128, .external_lex_state = 2}, + [4583] = {.lex_state = 128, .external_lex_state = 2}, + [4584] = {.lex_state = 128, .external_lex_state = 5}, + [4585] = {.lex_state = 21, .external_lex_state = 2}, + [4586] = {.lex_state = 7, .external_lex_state = 2}, + [4587] = {.lex_state = 128, .external_lex_state = 5}, + [4588] = {.lex_state = 14, .external_lex_state = 10}, + [4589] = {.lex_state = 128, .external_lex_state = 2}, + [4590] = {.lex_state = 128, .external_lex_state = 2}, + [4591] = {.lex_state = 23, .external_lex_state = 10}, + [4592] = {.lex_state = 128, .external_lex_state = 2}, + [4593] = {.lex_state = 128, .external_lex_state = 2}, + [4594] = {.lex_state = 128, .external_lex_state = 2}, + [4595] = {.lex_state = 128, .external_lex_state = 2}, + [4596] = {.lex_state = 128, .external_lex_state = 2}, + [4597] = {.lex_state = 128, .external_lex_state = 2}, + [4598] = {.lex_state = 2, .external_lex_state = 2}, + [4599] = {.lex_state = 128, .external_lex_state = 2}, + [4600] = {.lex_state = 128, .external_lex_state = 2}, + [4601] = {.lex_state = 2, .external_lex_state = 2}, + [4602] = {.lex_state = 2, .external_lex_state = 2}, + [4603] = {.lex_state = 128, .external_lex_state = 2}, + [4604] = {.lex_state = 14, .external_lex_state = 10}, + [4605] = {.lex_state = 128, .external_lex_state = 5}, + [4606] = {.lex_state = 128, .external_lex_state = 2}, + [4607] = {.lex_state = 128, .external_lex_state = 2}, + [4608] = {.lex_state = 128, .external_lex_state = 2}, + [4609] = {.lex_state = 128, .external_lex_state = 2}, + [4610] = {.lex_state = 128, .external_lex_state = 2}, + [4611] = {.lex_state = 128, .external_lex_state = 5}, + [4612] = {.lex_state = 128, .external_lex_state = 2}, + [4613] = {.lex_state = 128, .external_lex_state = 5}, + [4614] = {.lex_state = 128, .external_lex_state = 5}, + [4615] = {.lex_state = 128, .external_lex_state = 2}, + [4616] = {.lex_state = 128, .external_lex_state = 5}, + [4617] = {.lex_state = 128, .external_lex_state = 2}, + [4618] = {.lex_state = 128, .external_lex_state = 2}, + [4619] = {.lex_state = 128, .external_lex_state = 2}, + [4620] = {.lex_state = 128, .external_lex_state = 2}, + [4621] = {.lex_state = 128, .external_lex_state = 5}, + [4622] = {.lex_state = 128, .external_lex_state = 2}, + [4623] = {.lex_state = 128, .external_lex_state = 5}, + [4624] = {.lex_state = 128, .external_lex_state = 2}, + [4625] = {.lex_state = 128, .external_lex_state = 2}, + [4626] = {.lex_state = 128, .external_lex_state = 5}, + [4627] = {.lex_state = 128, .external_lex_state = 5}, + [4628] = {.lex_state = 128, .external_lex_state = 5}, + [4629] = {.lex_state = 128, .external_lex_state = 2}, + [4630] = {.lex_state = 128, .external_lex_state = 5}, + [4631] = {.lex_state = 128, .external_lex_state = 5}, + [4632] = {.lex_state = 128, .external_lex_state = 5}, + [4633] = {.lex_state = 128, .external_lex_state = 2}, + [4634] = {.lex_state = 128, .external_lex_state = 5}, + [4635] = {.lex_state = 128, .external_lex_state = 5}, + [4636] = {.lex_state = 128, .external_lex_state = 5}, + [4637] = {.lex_state = 128, .external_lex_state = 5}, + [4638] = {.lex_state = 128, .external_lex_state = 5}, + [4639] = {.lex_state = 128, .external_lex_state = 5}, + [4640] = {.lex_state = 128, .external_lex_state = 2}, + [4641] = {.lex_state = 128, .external_lex_state = 2}, + [4642] = {.lex_state = 128, .external_lex_state = 2}, + [4643] = {.lex_state = 128, .external_lex_state = 5}, + [4644] = {.lex_state = 128, .external_lex_state = 5}, + [4645] = {.lex_state = 128, .external_lex_state = 5}, + [4646] = {.lex_state = 128, .external_lex_state = 2}, + [4647] = {.lex_state = 128, .external_lex_state = 5}, + [4648] = {.lex_state = 128, .external_lex_state = 2}, + [4649] = {.lex_state = 128, .external_lex_state = 2}, + [4650] = {.lex_state = 128, .external_lex_state = 2}, + [4651] = {.lex_state = 128, .external_lex_state = 5}, + [4652] = {.lex_state = 128, .external_lex_state = 2}, + [4653] = {.lex_state = 128, .external_lex_state = 5}, + [4654] = {.lex_state = 128, .external_lex_state = 2}, + [4655] = {.lex_state = 128, .external_lex_state = 2}, + [4656] = {.lex_state = 128, .external_lex_state = 5}, + [4657] = {.lex_state = 128, .external_lex_state = 2}, + [4658] = {.lex_state = 128, .external_lex_state = 2}, + [4659] = {.lex_state = 128, .external_lex_state = 2}, + [4660] = {.lex_state = 128, .external_lex_state = 5}, + [4661] = {.lex_state = 128, .external_lex_state = 5}, + [4662] = {.lex_state = 128, .external_lex_state = 5}, + [4663] = {.lex_state = 128, .external_lex_state = 2}, + [4664] = {.lex_state = 128, .external_lex_state = 5}, + [4665] = {.lex_state = 128, .external_lex_state = 2}, + [4666] = {.lex_state = 128, .external_lex_state = 2}, + [4667] = {.lex_state = 2, .external_lex_state = 2}, + [4668] = {.lex_state = 128, .external_lex_state = 5}, + [4669] = {.lex_state = 128, .external_lex_state = 5}, + [4670] = {.lex_state = 128, .external_lex_state = 5}, + [4671] = {.lex_state = 128, .external_lex_state = 5}, + [4672] = {.lex_state = 2, .external_lex_state = 2}, + [4673] = {.lex_state = 128, .external_lex_state = 2}, + [4674] = {.lex_state = 128, .external_lex_state = 2}, + [4675] = {.lex_state = 128, .external_lex_state = 2}, + [4676] = {.lex_state = 128, .external_lex_state = 2}, + [4677] = {.lex_state = 128, .external_lex_state = 5}, + [4678] = {.lex_state = 128, .external_lex_state = 2}, + [4679] = {.lex_state = 128, .external_lex_state = 5}, + [4680] = {.lex_state = 128, .external_lex_state = 5}, + [4681] = {.lex_state = 128, .external_lex_state = 5}, + [4682] = {.lex_state = 128, .external_lex_state = 2}, + [4683] = {.lex_state = 128, .external_lex_state = 2}, + [4684] = {.lex_state = 128, .external_lex_state = 2}, + [4685] = {.lex_state = 128, .external_lex_state = 5}, + [4686] = {.lex_state = 128, .external_lex_state = 2}, + [4687] = {.lex_state = 128, .external_lex_state = 2}, + [4688] = {.lex_state = 128, .external_lex_state = 5}, + [4689] = {.lex_state = 128, .external_lex_state = 5}, + [4690] = {.lex_state = 128, .external_lex_state = 2}, + [4691] = {.lex_state = 128, .external_lex_state = 2}, + [4692] = {.lex_state = 128, .external_lex_state = 2}, + [4693] = {.lex_state = 128, .external_lex_state = 2}, + [4694] = {.lex_state = 128, .external_lex_state = 5}, + [4695] = {.lex_state = 128, .external_lex_state = 2}, + [4696] = {.lex_state = 128, .external_lex_state = 5}, + [4697] = {.lex_state = 128, .external_lex_state = 5}, + [4698] = {.lex_state = 128, .external_lex_state = 5}, + [4699] = {.lex_state = 128, .external_lex_state = 5}, + [4700] = {.lex_state = 128, .external_lex_state = 5}, + [4701] = {.lex_state = 128, .external_lex_state = 5}, + [4702] = {.lex_state = 128, .external_lex_state = 5}, + [4703] = {.lex_state = 128, .external_lex_state = 5}, + [4704] = {.lex_state = 128, .external_lex_state = 5}, + [4705] = {.lex_state = 128, .external_lex_state = 5}, + [4706] = {.lex_state = 128, .external_lex_state = 5}, + [4707] = {.lex_state = 128, .external_lex_state = 2}, + [4708] = {.lex_state = 128, .external_lex_state = 2}, + [4709] = {.lex_state = 128, .external_lex_state = 5}, + [4710] = {.lex_state = 128, .external_lex_state = 5}, + [4711] = {.lex_state = 128, .external_lex_state = 2}, + [4712] = {.lex_state = 128, .external_lex_state = 5}, + [4713] = {.lex_state = 128, .external_lex_state = 2}, + [4714] = {.lex_state = 128, .external_lex_state = 2}, + [4715] = {.lex_state = 128, .external_lex_state = 2}, + [4716] = {.lex_state = 128, .external_lex_state = 5}, + [4717] = {.lex_state = 128, .external_lex_state = 5}, + [4718] = {.lex_state = 128, .external_lex_state = 2}, + [4719] = {.lex_state = 128, .external_lex_state = 5}, + [4720] = {.lex_state = 128, .external_lex_state = 5}, + [4721] = {.lex_state = 128, .external_lex_state = 2}, + [4722] = {.lex_state = 128, .external_lex_state = 5}, + [4723] = {.lex_state = 128, .external_lex_state = 2}, + [4724] = {.lex_state = 128, .external_lex_state = 2}, + [4725] = {.lex_state = 128, .external_lex_state = 5}, + [4726] = {.lex_state = 128, .external_lex_state = 2}, + [4727] = {.lex_state = 128, .external_lex_state = 5}, + [4728] = {.lex_state = 128, .external_lex_state = 5}, + [4729] = {.lex_state = 128, .external_lex_state = 2}, + [4730] = {.lex_state = 128, .external_lex_state = 5}, + [4731] = {.lex_state = 128, .external_lex_state = 2}, + [4732] = {.lex_state = 128, .external_lex_state = 5}, + [4733] = {.lex_state = 128, .external_lex_state = 5}, + [4734] = {.lex_state = 128, .external_lex_state = 5}, + [4735] = {.lex_state = 128, .external_lex_state = 5}, + [4736] = {.lex_state = 128, .external_lex_state = 5}, + [4737] = {.lex_state = 128, .external_lex_state = 5}, + [4738] = {.lex_state = 128, .external_lex_state = 5}, + [4739] = {.lex_state = 128, .external_lex_state = 5}, + [4740] = {.lex_state = 128, .external_lex_state = 5}, + [4741] = {.lex_state = 128, .external_lex_state = 5}, + [4742] = {.lex_state = 128, .external_lex_state = 5}, + [4743] = {.lex_state = 128, .external_lex_state = 2}, + [4744] = {.lex_state = 128, .external_lex_state = 5}, + [4745] = {.lex_state = 128, .external_lex_state = 5}, + [4746] = {.lex_state = 128, .external_lex_state = 5}, + [4747] = {.lex_state = 128, .external_lex_state = 5}, + [4748] = {.lex_state = 128, .external_lex_state = 5}, + [4749] = {.lex_state = 128, .external_lex_state = 2}, + [4750] = {.lex_state = 128, .external_lex_state = 2}, + [4751] = {.lex_state = 128, .external_lex_state = 5}, + [4752] = {.lex_state = 128, .external_lex_state = 5}, + [4753] = {.lex_state = 128, .external_lex_state = 2}, + [4754] = {.lex_state = 128, .external_lex_state = 5}, + [4755] = {.lex_state = 128, .external_lex_state = 5}, + [4756] = {.lex_state = 128, .external_lex_state = 5}, + [4757] = {.lex_state = 128, .external_lex_state = 5}, + [4758] = {.lex_state = 128, .external_lex_state = 5}, + [4759] = {.lex_state = 128, .external_lex_state = 5}, + [4760] = {.lex_state = 128, .external_lex_state = 2}, + [4761] = {.lex_state = 128, .external_lex_state = 2}, + [4762] = {.lex_state = 128, .external_lex_state = 5}, + [4763] = {.lex_state = 128, .external_lex_state = 5}, + [4764] = {.lex_state = 128, .external_lex_state = 2}, + [4765] = {.lex_state = 128, .external_lex_state = 5}, + [4766] = {.lex_state = 128, .external_lex_state = 5}, + [4767] = {.lex_state = 128, .external_lex_state = 5}, + [4768] = {.lex_state = 128, .external_lex_state = 2}, + [4769] = {.lex_state = 128, .external_lex_state = 2}, + [4770] = {.lex_state = 128, .external_lex_state = 5}, + [4771] = {.lex_state = 128, .external_lex_state = 5}, + [4772] = {.lex_state = 128, .external_lex_state = 5}, + [4773] = {.lex_state = 128, .external_lex_state = 5}, + [4774] = {.lex_state = 128, .external_lex_state = 5}, + [4775] = {.lex_state = 128, .external_lex_state = 5}, + [4776] = {.lex_state = 128, .external_lex_state = 5}, + [4777] = {.lex_state = 128, .external_lex_state = 5}, + [4778] = {.lex_state = 128, .external_lex_state = 5}, + [4779] = {.lex_state = 128, .external_lex_state = 5}, + [4780] = {.lex_state = 128, .external_lex_state = 5}, + [4781] = {.lex_state = 128, .external_lex_state = 5}, + [4782] = {.lex_state = 128, .external_lex_state = 5}, + [4783] = {.lex_state = 128, .external_lex_state = 2}, + [4784] = {.lex_state = 128, .external_lex_state = 2}, + [4785] = {.lex_state = 128, .external_lex_state = 5}, + [4786] = {.lex_state = 128, .external_lex_state = 2}, + [4787] = {.lex_state = 128, .external_lex_state = 2}, + [4788] = {.lex_state = 128, .external_lex_state = 2}, + [4789] = {.lex_state = 128, .external_lex_state = 2}, + [4790] = {.lex_state = 128, .external_lex_state = 5}, + [4791] = {.lex_state = 128, .external_lex_state = 2}, + [4792] = {.lex_state = 128, .external_lex_state = 5}, + [4793] = {.lex_state = 128, .external_lex_state = 2}, + [4794] = {.lex_state = 128, .external_lex_state = 5}, + [4795] = {.lex_state = 128, .external_lex_state = 5}, + [4796] = {.lex_state = 128, .external_lex_state = 5}, + [4797] = {.lex_state = 128, .external_lex_state = 5}, + [4798] = {.lex_state = 128, .external_lex_state = 5}, + [4799] = {.lex_state = 128, .external_lex_state = 5}, + [4800] = {.lex_state = 128, .external_lex_state = 2}, + [4801] = {.lex_state = 128, .external_lex_state = 2}, + [4802] = {.lex_state = 128, .external_lex_state = 5}, + [4803] = {.lex_state = 128, .external_lex_state = 5}, + [4804] = {.lex_state = 128, .external_lex_state = 5}, + [4805] = {.lex_state = 128, .external_lex_state = 2}, + [4806] = {.lex_state = 128, .external_lex_state = 5}, + [4807] = {.lex_state = 2, .external_lex_state = 2}, + [4808] = {.lex_state = 128, .external_lex_state = 5}, + [4809] = {.lex_state = 128, .external_lex_state = 2}, + [4810] = {.lex_state = 128, .external_lex_state = 5}, + [4811] = {.lex_state = 128, .external_lex_state = 5}, + [4812] = {.lex_state = 128, .external_lex_state = 5}, + [4813] = {.lex_state = 128, .external_lex_state = 5}, + [4814] = {.lex_state = 128, .external_lex_state = 5}, + [4815] = {.lex_state = 128, .external_lex_state = 2}, + [4816] = {.lex_state = 128, .external_lex_state = 5}, + [4817] = {.lex_state = 128, .external_lex_state = 2}, + [4818] = {.lex_state = 128, .external_lex_state = 5}, + [4819] = {.lex_state = 128, .external_lex_state = 2}, + [4820] = {.lex_state = 128, .external_lex_state = 5}, + [4821] = {.lex_state = 2, .external_lex_state = 2}, + [4822] = {.lex_state = 128, .external_lex_state = 5}, + [4823] = {.lex_state = 128, .external_lex_state = 2}, + [4824] = {.lex_state = 128, .external_lex_state = 5}, + [4825] = {.lex_state = 128, .external_lex_state = 5}, + [4826] = {.lex_state = 128, .external_lex_state = 2}, + [4827] = {.lex_state = 128, .external_lex_state = 5}, + [4828] = {.lex_state = 128, .external_lex_state = 2}, + [4829] = {.lex_state = 128, .external_lex_state = 5}, + [4830] = {.lex_state = 128, .external_lex_state = 2}, + [4831] = {.lex_state = 128, .external_lex_state = 5}, + [4832] = {.lex_state = 128, .external_lex_state = 5}, + [4833] = {.lex_state = 128, .external_lex_state = 2}, + [4834] = {.lex_state = 128, .external_lex_state = 2}, + [4835] = {.lex_state = 128, .external_lex_state = 2}, + [4836] = {.lex_state = 128, .external_lex_state = 5}, + [4837] = {.lex_state = 128, .external_lex_state = 5}, + [4838] = {.lex_state = 128, .external_lex_state = 5}, + [4839] = {.lex_state = 128, .external_lex_state = 5}, + [4840] = {.lex_state = 128, .external_lex_state = 5}, + [4841] = {.lex_state = 128, .external_lex_state = 2}, + [4842] = {.lex_state = 128, .external_lex_state = 5}, + [4843] = {.lex_state = 128, .external_lex_state = 5}, + [4844] = {.lex_state = 128, .external_lex_state = 2}, + [4845] = {.lex_state = 128, .external_lex_state = 5}, + [4846] = {.lex_state = 128, .external_lex_state = 5}, + [4847] = {.lex_state = 128, .external_lex_state = 2}, + [4848] = {.lex_state = 128, .external_lex_state = 2}, + [4849] = {.lex_state = 128, .external_lex_state = 2}, + [4850] = {.lex_state = 128, .external_lex_state = 5}, + [4851] = {.lex_state = 128, .external_lex_state = 5}, + [4852] = {.lex_state = 128, .external_lex_state = 5}, + [4853] = {.lex_state = 128, .external_lex_state = 5}, + [4854] = {.lex_state = 128, .external_lex_state = 5}, + [4855] = {.lex_state = 128, .external_lex_state = 2}, + [4856] = {.lex_state = 128, .external_lex_state = 5}, + [4857] = {.lex_state = 128, .external_lex_state = 5}, + [4858] = {.lex_state = 128, .external_lex_state = 5}, + [4859] = {.lex_state = 128, .external_lex_state = 5}, + [4860] = {.lex_state = 128, .external_lex_state = 5}, + [4861] = {.lex_state = 128, .external_lex_state = 2}, + [4862] = {.lex_state = 128, .external_lex_state = 5}, + [4863] = {.lex_state = 128, .external_lex_state = 5}, + [4864] = {.lex_state = 128, .external_lex_state = 5}, + [4865] = {.lex_state = 128, .external_lex_state = 5}, + [4866] = {.lex_state = 128, .external_lex_state = 5}, + [4867] = {.lex_state = 128, .external_lex_state = 5}, + [4868] = {.lex_state = 128, .external_lex_state = 2}, + [4869] = {.lex_state = 128, .external_lex_state = 5}, + [4870] = {.lex_state = 128, .external_lex_state = 2}, + [4871] = {.lex_state = 128, .external_lex_state = 5}, + [4872] = {.lex_state = 128, .external_lex_state = 5}, + [4873] = {.lex_state = 128, .external_lex_state = 2}, + [4874] = {.lex_state = 128, .external_lex_state = 5}, + [4875] = {.lex_state = 128, .external_lex_state = 5}, + [4876] = {.lex_state = 128, .external_lex_state = 2}, + [4877] = {.lex_state = 128, .external_lex_state = 5}, + [4878] = {.lex_state = 128, .external_lex_state = 5}, + [4879] = {.lex_state = 128, .external_lex_state = 5}, + [4880] = {.lex_state = 128, .external_lex_state = 5}, + [4881] = {.lex_state = 128, .external_lex_state = 2}, + [4882] = {.lex_state = 128, .external_lex_state = 5}, + [4883] = {.lex_state = 128, .external_lex_state = 5}, + [4884] = {.lex_state = 128, .external_lex_state = 5}, + [4885] = {.lex_state = 128, .external_lex_state = 2}, + [4886] = {.lex_state = 128, .external_lex_state = 5}, + [4887] = {.lex_state = 128, .external_lex_state = 2}, + [4888] = {.lex_state = 128, .external_lex_state = 5}, + [4889] = {.lex_state = 128, .external_lex_state = 2}, + [4890] = {.lex_state = 128, .external_lex_state = 5}, + [4891] = {.lex_state = 128, .external_lex_state = 5}, + [4892] = {.lex_state = 128, .external_lex_state = 5}, + [4893] = {.lex_state = 128, .external_lex_state = 5}, + [4894] = {.lex_state = 128, .external_lex_state = 5}, + [4895] = {.lex_state = 128, .external_lex_state = 5}, + [4896] = {.lex_state = 128, .external_lex_state = 5}, + [4897] = {.lex_state = 128, .external_lex_state = 5}, + [4898] = {.lex_state = 128, .external_lex_state = 5}, + [4899] = {.lex_state = 128, .external_lex_state = 5}, + [4900] = {.lex_state = 128, .external_lex_state = 5}, + [4901] = {.lex_state = 128, .external_lex_state = 2}, + [4902] = {.lex_state = 128, .external_lex_state = 5}, + [4903] = {.lex_state = 128, .external_lex_state = 5}, + [4904] = {.lex_state = 128, .external_lex_state = 5}, + [4905] = {.lex_state = 128, .external_lex_state = 5}, + [4906] = {.lex_state = 128, .external_lex_state = 5}, + [4907] = {.lex_state = 128, .external_lex_state = 5}, + [4908] = {.lex_state = 128, .external_lex_state = 5}, + [4909] = {.lex_state = 128, .external_lex_state = 5}, + [4910] = {.lex_state = 128, .external_lex_state = 5}, + [4911] = {.lex_state = 128, .external_lex_state = 5}, + [4912] = {.lex_state = 128, .external_lex_state = 2}, + [4913] = {.lex_state = 128, .external_lex_state = 5}, + [4914] = {.lex_state = 128, .external_lex_state = 5}, + [4915] = {.lex_state = 128, .external_lex_state = 5}, + [4916] = {.lex_state = 128, .external_lex_state = 5}, + [4917] = {.lex_state = 128, .external_lex_state = 5}, + [4918] = {.lex_state = 128, .external_lex_state = 5}, + [4919] = {.lex_state = 128, .external_lex_state = 2}, + [4920] = {.lex_state = 128, .external_lex_state = 5}, + [4921] = {.lex_state = 128, .external_lex_state = 2}, + [4922] = {.lex_state = 128, .external_lex_state = 5}, + [4923] = {.lex_state = 128, .external_lex_state = 2}, + [4924] = {.lex_state = 128, .external_lex_state = 2}, + [4925] = {.lex_state = 2, .external_lex_state = 2}, + [4926] = {.lex_state = 128, .external_lex_state = 5}, + [4927] = {.lex_state = 128, .external_lex_state = 5}, + [4928] = {.lex_state = 128, .external_lex_state = 5}, + [4929] = {.lex_state = 128, .external_lex_state = 5}, + [4930] = {.lex_state = 128, .external_lex_state = 5}, + [4931] = {.lex_state = 128, .external_lex_state = 5}, + [4932] = {.lex_state = 128, .external_lex_state = 5}, + [4933] = {.lex_state = 128, .external_lex_state = 5}, + [4934] = {.lex_state = 128, .external_lex_state = 5}, + [4935] = {.lex_state = 128, .external_lex_state = 2}, + [4936] = {.lex_state = 128, .external_lex_state = 5}, + [4937] = {.lex_state = 128, .external_lex_state = 5}, + [4938] = {.lex_state = 128, .external_lex_state = 5}, + [4939] = {.lex_state = 128, .external_lex_state = 5}, + [4940] = {.lex_state = 128, .external_lex_state = 5}, + [4941] = {.lex_state = 128, .external_lex_state = 5}, + [4942] = {.lex_state = 128, .external_lex_state = 2}, + [4943] = {.lex_state = 128, .external_lex_state = 2}, + [4944] = {.lex_state = 128, .external_lex_state = 2}, + [4945] = {.lex_state = 128, .external_lex_state = 5}, + [4946] = {.lex_state = 128, .external_lex_state = 5}, + [4947] = {.lex_state = 128, .external_lex_state = 5}, + [4948] = {.lex_state = 128, .external_lex_state = 5}, + [4949] = {.lex_state = 128, .external_lex_state = 5}, + [4950] = {.lex_state = 128, .external_lex_state = 5}, + [4951] = {.lex_state = 128, .external_lex_state = 5}, + [4952] = {.lex_state = 128, .external_lex_state = 5}, + [4953] = {.lex_state = 128, .external_lex_state = 5}, + [4954] = {.lex_state = 128, .external_lex_state = 5}, + [4955] = {.lex_state = 128, .external_lex_state = 5}, + [4956] = {.lex_state = 128, .external_lex_state = 5}, + [4957] = {.lex_state = 128, .external_lex_state = 5}, + [4958] = {.lex_state = 128, .external_lex_state = 2}, + [4959] = {.lex_state = 128, .external_lex_state = 5}, + [4960] = {.lex_state = 128, .external_lex_state = 5}, + [4961] = {.lex_state = 128, .external_lex_state = 5}, + [4962] = {.lex_state = 128, .external_lex_state = 5}, + [4963] = {.lex_state = 128, .external_lex_state = 5}, + [4964] = {.lex_state = 128, .external_lex_state = 5}, + [4965] = {.lex_state = 128, .external_lex_state = 5}, + [4966] = {.lex_state = 128, .external_lex_state = 5}, + [4967] = {.lex_state = 128, .external_lex_state = 5}, + [4968] = {.lex_state = 128, .external_lex_state = 5}, + [4969] = {.lex_state = 128, .external_lex_state = 5}, + [4970] = {.lex_state = 128, .external_lex_state = 5}, + [4971] = {.lex_state = 128, .external_lex_state = 5}, + [4972] = {.lex_state = 128, .external_lex_state = 5}, + [4973] = {.lex_state = 128, .external_lex_state = 5}, + [4974] = {.lex_state = 128, .external_lex_state = 5}, + [4975] = {.lex_state = 128, .external_lex_state = 5}, + [4976] = {.lex_state = 128, .external_lex_state = 5}, + [4977] = {.lex_state = 128, .external_lex_state = 5}, + [4978] = {.lex_state = 128, .external_lex_state = 5}, + [4979] = {.lex_state = 128, .external_lex_state = 5}, + [4980] = {.lex_state = 128, .external_lex_state = 5}, + [4981] = {.lex_state = 128, .external_lex_state = 5}, + [4982] = {.lex_state = 128, .external_lex_state = 5}, + [4983] = {.lex_state = 128, .external_lex_state = 5}, + [4984] = {.lex_state = 128, .external_lex_state = 5}, + [4985] = {.lex_state = 128, .external_lex_state = 2}, + [4986] = {.lex_state = 128, .external_lex_state = 5}, + [4987] = {.lex_state = 128, .external_lex_state = 5}, + [4988] = {.lex_state = 128, .external_lex_state = 5}, + [4989] = {.lex_state = 128, .external_lex_state = 5}, + [4990] = {.lex_state = 128, .external_lex_state = 5}, + [4991] = {.lex_state = 128, .external_lex_state = 5}, + [4992] = {.lex_state = 128, .external_lex_state = 5}, + [4993] = {.lex_state = 128, .external_lex_state = 5}, + [4994] = {.lex_state = 128, .external_lex_state = 5}, + [4995] = {.lex_state = 128, .external_lex_state = 5}, + [4996] = {.lex_state = 128, .external_lex_state = 5}, + [4997] = {.lex_state = 128, .external_lex_state = 5}, + [4998] = {.lex_state = 128, .external_lex_state = 5}, + [4999] = {.lex_state = 128, .external_lex_state = 2}, + [5000] = {.lex_state = 128, .external_lex_state = 5}, + [5001] = {.lex_state = 128, .external_lex_state = 5}, + [5002] = {.lex_state = 128, .external_lex_state = 5}, + [5003] = {.lex_state = 128, .external_lex_state = 5}, + [5004] = {.lex_state = 128, .external_lex_state = 5}, + [5005] = {.lex_state = 128, .external_lex_state = 5}, + [5006] = {.lex_state = 128, .external_lex_state = 5}, + [5007] = {.lex_state = 128, .external_lex_state = 5}, + [5008] = {.lex_state = 128, .external_lex_state = 5}, + [5009] = {.lex_state = 128, .external_lex_state = 5}, + [5010] = {.lex_state = 128, .external_lex_state = 5}, + [5011] = {.lex_state = 128, .external_lex_state = 2}, + [5012] = {.lex_state = 128, .external_lex_state = 5}, + [5013] = {.lex_state = 128, .external_lex_state = 5}, + [5014] = {.lex_state = 128, .external_lex_state = 5}, + [5015] = {.lex_state = 128, .external_lex_state = 5}, + [5016] = {.lex_state = 128, .external_lex_state = 5}, + [5017] = {.lex_state = 128, .external_lex_state = 5}, + [5018] = {.lex_state = 128, .external_lex_state = 5}, + [5019] = {.lex_state = 128, .external_lex_state = 5}, + [5020] = {.lex_state = 128, .external_lex_state = 5}, + [5021] = {.lex_state = 128, .external_lex_state = 5}, + [5022] = {.lex_state = 2, .external_lex_state = 2}, + [5023] = {.lex_state = 128, .external_lex_state = 2}, + [5024] = {.lex_state = 2, .external_lex_state = 2}, + [5025] = {.lex_state = 128, .external_lex_state = 5}, + [5026] = {.lex_state = 128, .external_lex_state = 5}, + [5027] = {.lex_state = 128, .external_lex_state = 2}, + [5028] = {.lex_state = 128, .external_lex_state = 5}, + [5029] = {.lex_state = 128, .external_lex_state = 2}, + [5030] = {.lex_state = 128, .external_lex_state = 5}, + [5031] = {.lex_state = 128, .external_lex_state = 5}, + [5032] = {.lex_state = 128, .external_lex_state = 5}, + [5033] = {.lex_state = 128, .external_lex_state = 5}, + [5034] = {.lex_state = 128, .external_lex_state = 5}, + [5035] = {.lex_state = 128, .external_lex_state = 5}, + [5036] = {.lex_state = 128, .external_lex_state = 5}, + [5037] = {.lex_state = 128, .external_lex_state = 5}, + [5038] = {.lex_state = 128, .external_lex_state = 5}, + [5039] = {.lex_state = 128, .external_lex_state = 5}, + [5040] = {.lex_state = 128, .external_lex_state = 5}, + [5041] = {.lex_state = 128, .external_lex_state = 5}, + [5042] = {.lex_state = 128, .external_lex_state = 5}, + [5043] = {.lex_state = 128, .external_lex_state = 5}, + [5044] = {.lex_state = 128, .external_lex_state = 5}, + [5045] = {.lex_state = 128, .external_lex_state = 5}, + [5046] = {.lex_state = 128, .external_lex_state = 5}, + [5047] = {.lex_state = 128, .external_lex_state = 2}, + [5048] = {.lex_state = 128, .external_lex_state = 5}, + [5049] = {.lex_state = 128, .external_lex_state = 5}, + [5050] = {.lex_state = 128, .external_lex_state = 5}, + [5051] = {.lex_state = 128, .external_lex_state = 5}, + [5052] = {.lex_state = 128, .external_lex_state = 5}, + [5053] = {.lex_state = 128, .external_lex_state = 5}, + [5054] = {.lex_state = 128, .external_lex_state = 5}, + [5055] = {.lex_state = 128, .external_lex_state = 5}, + [5056] = {.lex_state = 128, .external_lex_state = 5}, + [5057] = {.lex_state = 128, .external_lex_state = 5}, + [5058] = {.lex_state = 128, .external_lex_state = 5}, + [5059] = {.lex_state = 128, .external_lex_state = 5}, + [5060] = {.lex_state = 128, .external_lex_state = 2}, + [5061] = {.lex_state = 128, .external_lex_state = 2}, + [5062] = {.lex_state = 128, .external_lex_state = 5}, + [5063] = {.lex_state = 128, .external_lex_state = 5}, + [5064] = {.lex_state = 128, .external_lex_state = 5}, + [5065] = {.lex_state = 128, .external_lex_state = 5}, + [5066] = {.lex_state = 128, .external_lex_state = 2}, + [5067] = {.lex_state = 128, .external_lex_state = 5}, + [5068] = {.lex_state = 128, .external_lex_state = 5}, + [5069] = {.lex_state = 2, .external_lex_state = 2}, + [5070] = {.lex_state = 128, .external_lex_state = 5}, + [5071] = {.lex_state = 2, .external_lex_state = 2}, + [5072] = {.lex_state = 128, .external_lex_state = 2}, + [5073] = {.lex_state = 128, .external_lex_state = 5}, + [5074] = {.lex_state = 128, .external_lex_state = 5}, + [5075] = {.lex_state = 128, .external_lex_state = 5}, + [5076] = {.lex_state = 128, .external_lex_state = 5}, + [5077] = {.lex_state = 128, .external_lex_state = 2}, + [5078] = {.lex_state = 128, .external_lex_state = 5}, + [5079] = {.lex_state = 128, .external_lex_state = 5}, + [5080] = {.lex_state = 128, .external_lex_state = 5}, + [5081] = {.lex_state = 128, .external_lex_state = 5}, + [5082] = {.lex_state = 128, .external_lex_state = 5}, + [5083] = {.lex_state = 128, .external_lex_state = 2}, + [5084] = {.lex_state = 128, .external_lex_state = 5}, + [5085] = {.lex_state = 128, .external_lex_state = 5}, + [5086] = {.lex_state = 128, .external_lex_state = 5}, + [5087] = {.lex_state = 128, .external_lex_state = 5}, + [5088] = {.lex_state = 128, .external_lex_state = 2}, + [5089] = {.lex_state = 128, .external_lex_state = 2}, + [5090] = {.lex_state = 128, .external_lex_state = 5}, + [5091] = {.lex_state = 128, .external_lex_state = 5}, + [5092] = {.lex_state = 128, .external_lex_state = 5}, + [5093] = {.lex_state = 128, .external_lex_state = 2}, + [5094] = {.lex_state = 128, .external_lex_state = 2}, + [5095] = {.lex_state = 128, .external_lex_state = 2}, + [5096] = {.lex_state = 128, .external_lex_state = 5}, + [5097] = {.lex_state = 128, .external_lex_state = 5}, + [5098] = {.lex_state = 128, .external_lex_state = 5}, + [5099] = {.lex_state = 128, .external_lex_state = 2}, + [5100] = {.lex_state = 128, .external_lex_state = 2}, + [5101] = {.lex_state = 128, .external_lex_state = 2}, + [5102] = {.lex_state = 128, .external_lex_state = 5}, + [5103] = {.lex_state = 128, .external_lex_state = 5}, + [5104] = {.lex_state = 128, .external_lex_state = 2}, + [5105] = {.lex_state = 128, .external_lex_state = 5}, + [5106] = {.lex_state = 128, .external_lex_state = 2}, + [5107] = {.lex_state = 18, .external_lex_state = 9}, + [5108] = {.lex_state = 128, .external_lex_state = 5}, + [5109] = {.lex_state = 128, .external_lex_state = 2}, + [5110] = {.lex_state = 128, .external_lex_state = 5}, + [5111] = {.lex_state = 128, .external_lex_state = 2}, + [5112] = {.lex_state = 128, .external_lex_state = 2}, + [5113] = {.lex_state = 128, .external_lex_state = 5}, + [5114] = {.lex_state = 128, .external_lex_state = 5}, + [5115] = {.lex_state = 128, .external_lex_state = 2}, + [5116] = {.lex_state = 128, .external_lex_state = 2}, + [5117] = {.lex_state = 128, .external_lex_state = 5}, + [5118] = {.lex_state = 128, .external_lex_state = 5}, + [5119] = {.lex_state = 128, .external_lex_state = 2}, + [5120] = {.lex_state = 128, .external_lex_state = 5}, + [5121] = {.lex_state = 128, .external_lex_state = 5}, + [5122] = {.lex_state = 128, .external_lex_state = 5}, + [5123] = {.lex_state = 128, .external_lex_state = 5}, + [5124] = {.lex_state = 2, .external_lex_state = 2}, + [5125] = {.lex_state = 128, .external_lex_state = 5}, + [5126] = {.lex_state = 128, .external_lex_state = 5}, + [5127] = {.lex_state = 128, .external_lex_state = 5}, + [5128] = {.lex_state = 128, .external_lex_state = 5}, + [5129] = {.lex_state = 128, .external_lex_state = 2}, + [5130] = {.lex_state = 128, .external_lex_state = 5}, + [5131] = {.lex_state = 128, .external_lex_state = 2}, + [5132] = {.lex_state = 128, .external_lex_state = 2}, + [5133] = {.lex_state = 128, .external_lex_state = 2}, + [5134] = {.lex_state = 128, .external_lex_state = 2}, + [5135] = {.lex_state = 128, .external_lex_state = 5}, + [5136] = {.lex_state = 128, .external_lex_state = 2}, + [5137] = {.lex_state = 128, .external_lex_state = 2}, + [5138] = {.lex_state = 128, .external_lex_state = 5}, + [5139] = {.lex_state = 128, .external_lex_state = 2}, + [5140] = {.lex_state = 128, .external_lex_state = 2}, + [5141] = {.lex_state = 128, .external_lex_state = 2}, + [5142] = {.lex_state = 128, .external_lex_state = 5}, + [5143] = {.lex_state = 2, .external_lex_state = 2}, + [5144] = {.lex_state = 128, .external_lex_state = 5}, + [5145] = {.lex_state = 128, .external_lex_state = 5}, + [5146] = {.lex_state = 128, .external_lex_state = 5}, + [5147] = {.lex_state = 128, .external_lex_state = 5}, + [5148] = {.lex_state = 128, .external_lex_state = 5}, + [5149] = {.lex_state = 2, .external_lex_state = 2}, + [5150] = {.lex_state = 128, .external_lex_state = 5}, + [5151] = {.lex_state = 128, .external_lex_state = 5}, + [5152] = {.lex_state = 128, .external_lex_state = 5}, + [5153] = {.lex_state = 128, .external_lex_state = 2}, + [5154] = {.lex_state = 128, .external_lex_state = 5}, + [5155] = {.lex_state = 128, .external_lex_state = 5}, + [5156] = {.lex_state = 128, .external_lex_state = 5}, + [5157] = {.lex_state = 128, .external_lex_state = 5}, + [5158] = {.lex_state = 128, .external_lex_state = 5}, + [5159] = {.lex_state = 128, .external_lex_state = 5}, + [5160] = {.lex_state = 128, .external_lex_state = 5}, + [5161] = {.lex_state = 128, .external_lex_state = 2}, + [5162] = {.lex_state = 128, .external_lex_state = 2}, + [5163] = {.lex_state = 128, .external_lex_state = 5}, + [5164] = {.lex_state = 128, .external_lex_state = 5}, + [5165] = {.lex_state = 128, .external_lex_state = 5}, + [5166] = {.lex_state = 128, .external_lex_state = 2}, + [5167] = {.lex_state = 128, .external_lex_state = 2}, + [5168] = {.lex_state = 128, .external_lex_state = 2}, + [5169] = {.lex_state = 128, .external_lex_state = 5}, + [5170] = {.lex_state = 128, .external_lex_state = 5}, + [5171] = {.lex_state = 128, .external_lex_state = 5}, + [5172] = {.lex_state = 128, .external_lex_state = 5}, + [5173] = {.lex_state = 128, .external_lex_state = 5}, + [5174] = {.lex_state = 128, .external_lex_state = 2}, + [5175] = {.lex_state = 128, .external_lex_state = 2}, + [5176] = {.lex_state = 128, .external_lex_state = 5}, + [5177] = {.lex_state = 128, .external_lex_state = 2}, + [5178] = {.lex_state = 128, .external_lex_state = 2}, + [5179] = {.lex_state = 128, .external_lex_state = 2}, + [5180] = {.lex_state = 128, .external_lex_state = 2}, + [5181] = {.lex_state = 128, .external_lex_state = 5}, + [5182] = {.lex_state = 128, .external_lex_state = 5}, + [5183] = {.lex_state = 128, .external_lex_state = 2}, + [5184] = {.lex_state = 128, .external_lex_state = 5}, + [5185] = {.lex_state = 128, .external_lex_state = 5}, + [5186] = {.lex_state = 128, .external_lex_state = 5}, + [5187] = {.lex_state = 128, .external_lex_state = 5}, + [5188] = {.lex_state = 128, .external_lex_state = 2}, + [5189] = {.lex_state = 128, .external_lex_state = 5}, + [5190] = {.lex_state = 128, .external_lex_state = 5}, + [5191] = {.lex_state = 128, .external_lex_state = 2}, + [5192] = {.lex_state = 128, .external_lex_state = 2}, + [5193] = {.lex_state = 128, .external_lex_state = 5}, + [5194] = {.lex_state = 128, .external_lex_state = 2}, + [5195] = {.lex_state = 128, .external_lex_state = 5}, + [5196] = {.lex_state = 128, .external_lex_state = 5}, + [5197] = {.lex_state = 128, .external_lex_state = 2}, + [5198] = {.lex_state = 128, .external_lex_state = 5}, + [5199] = {.lex_state = 128, .external_lex_state = 5}, + [5200] = {.lex_state = 128, .external_lex_state = 5}, + [5201] = {.lex_state = 128, .external_lex_state = 2}, + [5202] = {.lex_state = 128, .external_lex_state = 5}, + [5203] = {.lex_state = 128, .external_lex_state = 5}, + [5204] = {.lex_state = 128, .external_lex_state = 5}, + [5205] = {.lex_state = 128, .external_lex_state = 5}, + [5206] = {.lex_state = 128, .external_lex_state = 5}, + [5207] = {.lex_state = 128, .external_lex_state = 2}, + [5208] = {.lex_state = 128, .external_lex_state = 5}, + [5209] = {.lex_state = 128, .external_lex_state = 2}, + [5210] = {.lex_state = 128, .external_lex_state = 5}, + [5211] = {.lex_state = 128, .external_lex_state = 2}, + [5212] = {.lex_state = 128, .external_lex_state = 5}, + [5213] = {.lex_state = 128, .external_lex_state = 5}, + [5214] = {.lex_state = 128, .external_lex_state = 5}, + [5215] = {.lex_state = 128, .external_lex_state = 5}, + [5216] = {.lex_state = 128, .external_lex_state = 5}, + [5217] = {.lex_state = 2, .external_lex_state = 2}, + [5218] = {.lex_state = 128, .external_lex_state = 5}, + [5219] = {.lex_state = 128, .external_lex_state = 5}, + [5220] = {.lex_state = 128, .external_lex_state = 5}, + [5221] = {.lex_state = 128, .external_lex_state = 2}, + [5222] = {.lex_state = 128, .external_lex_state = 2}, + [5223] = {.lex_state = 128, .external_lex_state = 2}, + [5224] = {.lex_state = 128, .external_lex_state = 2}, + [5225] = {.lex_state = 128, .external_lex_state = 2}, + [5226] = {.lex_state = 128, .external_lex_state = 2}, + [5227] = {.lex_state = 128, .external_lex_state = 2}, + [5228] = {.lex_state = 128, .external_lex_state = 2}, + [5229] = {.lex_state = 128, .external_lex_state = 2}, + [5230] = {.lex_state = 128, .external_lex_state = 2}, + [5231] = {.lex_state = 128, .external_lex_state = 2}, + [5232] = {.lex_state = 128, .external_lex_state = 2}, + [5233] = {.lex_state = 128, .external_lex_state = 2}, + [5234] = {.lex_state = 128, .external_lex_state = 2}, + [5235] = {.lex_state = 128, .external_lex_state = 2}, + [5236] = {.lex_state = 128, .external_lex_state = 5}, + [5237] = {.lex_state = 128, .external_lex_state = 2}, + [5238] = {.lex_state = 128, .external_lex_state = 2}, + [5239] = {.lex_state = 128, .external_lex_state = 2}, + [5240] = {.lex_state = 128, .external_lex_state = 2}, + [5241] = {.lex_state = 128, .external_lex_state = 5}, + [5242] = {.lex_state = 128, .external_lex_state = 2}, + [5243] = {.lex_state = 128, .external_lex_state = 2}, + [5244] = {.lex_state = 128, .external_lex_state = 2}, + [5245] = {.lex_state = 128, .external_lex_state = 2}, + [5246] = {.lex_state = 128, .external_lex_state = 2}, + [5247] = {.lex_state = 128, .external_lex_state = 2}, + [5248] = {.lex_state = 128, .external_lex_state = 2}, + [5249] = {.lex_state = 128, .external_lex_state = 2}, + [5250] = {.lex_state = 128, .external_lex_state = 2}, + [5251] = {.lex_state = 128, .external_lex_state = 2}, + [5252] = {.lex_state = 128, .external_lex_state = 2}, + [5253] = {.lex_state = 128, .external_lex_state = 2}, + [5254] = {.lex_state = 128, .external_lex_state = 2}, + [5255] = {.lex_state = 128, .external_lex_state = 2}, + [5256] = {.lex_state = 128, .external_lex_state = 2}, + [5257] = {.lex_state = 128, .external_lex_state = 2}, + [5258] = {.lex_state = 128, .external_lex_state = 2}, + [5259] = {.lex_state = 128, .external_lex_state = 2}, + [5260] = {.lex_state = 128, .external_lex_state = 2}, + [5261] = {.lex_state = 128, .external_lex_state = 2}, + [5262] = {.lex_state = 128, .external_lex_state = 2}, + [5263] = {.lex_state = 128, .external_lex_state = 2}, + [5264] = {.lex_state = 128, .external_lex_state = 2}, + [5265] = {.lex_state = 128, .external_lex_state = 2}, + [5266] = {.lex_state = 128, .external_lex_state = 2}, + [5267] = {.lex_state = 128, .external_lex_state = 2}, + [5268] = {.lex_state = 128, .external_lex_state = 2}, + [5269] = {.lex_state = 128, .external_lex_state = 2}, + [5270] = {.lex_state = 128, .external_lex_state = 2}, + [5271] = {.lex_state = 128, .external_lex_state = 5}, + [5272] = {.lex_state = 128, .external_lex_state = 2}, + [5273] = {.lex_state = 128, .external_lex_state = 2}, + [5274] = {.lex_state = 128, .external_lex_state = 2}, + [5275] = {.lex_state = 128, .external_lex_state = 2}, + [5276] = {.lex_state = 128, .external_lex_state = 2}, + [5277] = {.lex_state = 128, .external_lex_state = 2}, + [5278] = {.lex_state = 128, .external_lex_state = 2}, + [5279] = {.lex_state = 128, .external_lex_state = 2}, + [5280] = {.lex_state = 128, .external_lex_state = 2}, + [5281] = {.lex_state = 128, .external_lex_state = 2}, + [5282] = {.lex_state = 128, .external_lex_state = 2}, + [5283] = {.lex_state = 128, .external_lex_state = 2}, + [5284] = {.lex_state = 128, .external_lex_state = 2}, + [5285] = {.lex_state = 128, .external_lex_state = 2}, + [5286] = {.lex_state = 128, .external_lex_state = 2}, + [5287] = {.lex_state = 128, .external_lex_state = 2}, + [5288] = {.lex_state = 128, .external_lex_state = 2}, + [5289] = {.lex_state = 128, .external_lex_state = 2}, + [5290] = {.lex_state = 128, .external_lex_state = 2}, + [5291] = {.lex_state = 128, .external_lex_state = 2}, + [5292] = {.lex_state = 128, .external_lex_state = 5}, + [5293] = {.lex_state = 128, .external_lex_state = 2}, + [5294] = {.lex_state = 128, .external_lex_state = 2}, + [5295] = {.lex_state = 128, .external_lex_state = 5}, + [5296] = {.lex_state = 128, .external_lex_state = 5}, + [5297] = {.lex_state = 128, .external_lex_state = 5}, + [5298] = {.lex_state = 128, .external_lex_state = 2}, + [5299] = {.lex_state = 128, .external_lex_state = 2}, + [5300] = {.lex_state = 128, .external_lex_state = 2}, + [5301] = {.lex_state = 128, .external_lex_state = 5}, + [5302] = {.lex_state = 128, .external_lex_state = 2}, + [5303] = {.lex_state = 128, .external_lex_state = 2}, + [5304] = {.lex_state = 128, .external_lex_state = 5}, + [5305] = {.lex_state = 128, .external_lex_state = 2}, + [5306] = {.lex_state = 128, .external_lex_state = 2}, + [5307] = {.lex_state = 128, .external_lex_state = 2}, + [5308] = {.lex_state = 128, .external_lex_state = 2}, + [5309] = {.lex_state = 128, .external_lex_state = 2}, + [5310] = {.lex_state = 128, .external_lex_state = 2}, + [5311] = {.lex_state = 128, .external_lex_state = 2}, + [5312] = {.lex_state = 128, .external_lex_state = 2}, + [5313] = {.lex_state = 128, .external_lex_state = 2}, + [5314] = {.lex_state = 128, .external_lex_state = 2}, + [5315] = {.lex_state = 128, .external_lex_state = 2}, + [5316] = {.lex_state = 128, .external_lex_state = 2}, + [5317] = {.lex_state = 128, .external_lex_state = 2}, + [5318] = {.lex_state = 128, .external_lex_state = 2}, + [5319] = {.lex_state = 128, .external_lex_state = 5}, + [5320] = {.lex_state = 128, .external_lex_state = 2}, + [5321] = {.lex_state = 128, .external_lex_state = 2}, + [5322] = {.lex_state = 128, .external_lex_state = 2}, + [5323] = {.lex_state = 128, .external_lex_state = 2}, + [5324] = {.lex_state = 128, .external_lex_state = 5}, + [5325] = {.lex_state = 128, .external_lex_state = 2}, + [5326] = {.lex_state = 128, .external_lex_state = 2}, + [5327] = {.lex_state = 128, .external_lex_state = 2}, + [5328] = {.lex_state = 128, .external_lex_state = 2}, + [5329] = {.lex_state = 128, .external_lex_state = 2}, + [5330] = {.lex_state = 128, .external_lex_state = 2}, + [5331] = {.lex_state = 128, .external_lex_state = 5}, + [5332] = {.lex_state = 128, .external_lex_state = 2}, + [5333] = {.lex_state = 128, .external_lex_state = 2}, + [5334] = {.lex_state = 128, .external_lex_state = 2}, + [5335] = {.lex_state = 128, .external_lex_state = 2}, + [5336] = {.lex_state = 128, .external_lex_state = 2}, + [5337] = {.lex_state = 128, .external_lex_state = 2}, + [5338] = {.lex_state = 128, .external_lex_state = 2}, + [5339] = {.lex_state = 128, .external_lex_state = 2}, + [5340] = {.lex_state = 128, .external_lex_state = 2}, + [5341] = {.lex_state = 128, .external_lex_state = 5}, + [5342] = {.lex_state = 128, .external_lex_state = 2}, + [5343] = {.lex_state = 128, .external_lex_state = 2}, + [5344] = {.lex_state = 128, .external_lex_state = 2}, + [5345] = {.lex_state = 128, .external_lex_state = 2}, + [5346] = {.lex_state = 128, .external_lex_state = 2}, + [5347] = {.lex_state = 128, .external_lex_state = 2}, + [5348] = {.lex_state = 128, .external_lex_state = 2}, + [5349] = {.lex_state = 128, .external_lex_state = 2}, + [5350] = {.lex_state = 128, .external_lex_state = 5}, + [5351] = {.lex_state = 128, .external_lex_state = 2}, + [5352] = {.lex_state = 128, .external_lex_state = 2}, + [5353] = {.lex_state = 128, .external_lex_state = 5}, + [5354] = {.lex_state = 128, .external_lex_state = 2}, + [5355] = {.lex_state = 128, .external_lex_state = 2}, + [5356] = {.lex_state = 128, .external_lex_state = 2}, + [5357] = {.lex_state = 128, .external_lex_state = 2}, + [5358] = {.lex_state = 128, .external_lex_state = 2}, + [5359] = {.lex_state = 128, .external_lex_state = 2}, + [5360] = {.lex_state = 128, .external_lex_state = 2}, + [5361] = {.lex_state = 128, .external_lex_state = 2}, + [5362] = {.lex_state = 128, .external_lex_state = 2}, + [5363] = {.lex_state = 128, .external_lex_state = 2}, + [5364] = {.lex_state = 128, .external_lex_state = 2}, + [5365] = {.lex_state = 128, .external_lex_state = 2}, + [5366] = {.lex_state = 128, .external_lex_state = 2}, + [5367] = {.lex_state = 128, .external_lex_state = 2}, + [5368] = {.lex_state = 128, .external_lex_state = 2}, + [5369] = {.lex_state = 128, .external_lex_state = 2}, + [5370] = {.lex_state = 128, .external_lex_state = 2}, + [5371] = {.lex_state = 128, .external_lex_state = 2}, + [5372] = {.lex_state = 128, .external_lex_state = 2}, + [5373] = {.lex_state = 128, .external_lex_state = 2}, + [5374] = {.lex_state = 128, .external_lex_state = 2}, + [5375] = {.lex_state = 128, .external_lex_state = 2}, + [5376] = {.lex_state = 128, .external_lex_state = 2}, + [5377] = {.lex_state = 128, .external_lex_state = 2}, + [5378] = {.lex_state = 128, .external_lex_state = 5}, + [5379] = {.lex_state = 128, .external_lex_state = 2}, + [5380] = {.lex_state = 128, .external_lex_state = 2}, + [5381] = {.lex_state = 128, .external_lex_state = 2}, + [5382] = {.lex_state = 128, .external_lex_state = 2}, + [5383] = {.lex_state = 128, .external_lex_state = 2}, + [5384] = {.lex_state = 128, .external_lex_state = 2}, + [5385] = {.lex_state = 128, .external_lex_state = 2}, + [5386] = {.lex_state = 128, .external_lex_state = 2}, + [5387] = {.lex_state = 128, .external_lex_state = 2}, + [5388] = {.lex_state = 128, .external_lex_state = 2}, + [5389] = {.lex_state = 128, .external_lex_state = 5}, + [5390] = {.lex_state = 128, .external_lex_state = 2}, + [5391] = {.lex_state = 128, .external_lex_state = 5}, + [5392] = {.lex_state = 128, .external_lex_state = 2}, + [5393] = {.lex_state = 128, .external_lex_state = 2}, + [5394] = {.lex_state = 128, .external_lex_state = 2}, + [5395] = {.lex_state = 128, .external_lex_state = 2}, + [5396] = {.lex_state = 128, .external_lex_state = 2}, + [5397] = {.lex_state = 128, .external_lex_state = 2}, + [5398] = {.lex_state = 128, .external_lex_state = 2}, + [5399] = {.lex_state = 128, .external_lex_state = 2}, + [5400] = {.lex_state = 128, .external_lex_state = 2}, + [5401] = {.lex_state = 128, .external_lex_state = 2}, + [5402] = {.lex_state = 128, .external_lex_state = 2}, + [5403] = {.lex_state = 128, .external_lex_state = 2}, + [5404] = {.lex_state = 128, .external_lex_state = 2}, + [5405] = {.lex_state = 128, .external_lex_state = 2}, + [5406] = {.lex_state = 128, .external_lex_state = 2}, + [5407] = {.lex_state = 128, .external_lex_state = 2}, + [5408] = {.lex_state = 128, .external_lex_state = 2}, + [5409] = {.lex_state = 128, .external_lex_state = 2}, + [5410] = {.lex_state = 128, .external_lex_state = 2}, + [5411] = {.lex_state = 128, .external_lex_state = 2}, + [5412] = {.lex_state = 128, .external_lex_state = 2}, + [5413] = {.lex_state = 128, .external_lex_state = 2}, + [5414] = {.lex_state = 128, .external_lex_state = 2}, + [5415] = {.lex_state = 128, .external_lex_state = 2}, + [5416] = {.lex_state = 128, .external_lex_state = 2}, + [5417] = {.lex_state = 128, .external_lex_state = 2}, + [5418] = {.lex_state = 128, .external_lex_state = 2}, + [5419] = {.lex_state = 128, .external_lex_state = 2}, + [5420] = {.lex_state = 128, .external_lex_state = 2}, + [5421] = {.lex_state = 128, .external_lex_state = 2}, + [5422] = {.lex_state = 128, .external_lex_state = 2}, + [5423] = {.lex_state = 128, .external_lex_state = 2}, + [5424] = {.lex_state = 128, .external_lex_state = 2}, + [5425] = {.lex_state = 128, .external_lex_state = 2}, + [5426] = {.lex_state = 128, .external_lex_state = 2}, + [5427] = {.lex_state = 128, .external_lex_state = 2}, + [5428] = {.lex_state = 128, .external_lex_state = 2}, + [5429] = {.lex_state = 128, .external_lex_state = 2}, + [5430] = {.lex_state = 128, .external_lex_state = 2}, + [5431] = {.lex_state = 128, .external_lex_state = 2}, + [5432] = {.lex_state = 128, .external_lex_state = 2}, + [5433] = {.lex_state = 128, .external_lex_state = 2}, + [5434] = {.lex_state = 128, .external_lex_state = 2}, + [5435] = {.lex_state = 128, .external_lex_state = 2}, + [5436] = {.lex_state = 128, .external_lex_state = 2}, + [5437] = {.lex_state = 128, .external_lex_state = 2}, + [5438] = {.lex_state = 128, .external_lex_state = 5}, + [5439] = {.lex_state = 128, .external_lex_state = 2}, + [5440] = {.lex_state = 128, .external_lex_state = 5}, + [5441] = {.lex_state = 128, .external_lex_state = 2}, + [5442] = {.lex_state = 128, .external_lex_state = 2}, + [5443] = {.lex_state = 128, .external_lex_state = 2}, + [5444] = {.lex_state = 128, .external_lex_state = 2}, + [5445] = {.lex_state = 128, .external_lex_state = 2}, + [5446] = {.lex_state = 128, .external_lex_state = 2}, + [5447] = {.lex_state = 128, .external_lex_state = 2}, + [5448] = {.lex_state = 128, .external_lex_state = 2}, + [5449] = {.lex_state = 128, .external_lex_state = 2}, + [5450] = {.lex_state = 128, .external_lex_state = 5}, + [5451] = {.lex_state = 128, .external_lex_state = 2}, + [5452] = {.lex_state = 128, .external_lex_state = 2}, + [5453] = {.lex_state = 128, .external_lex_state = 2}, + [5454] = {.lex_state = 128, .external_lex_state = 2}, + [5455] = {.lex_state = 128, .external_lex_state = 2}, + [5456] = {.lex_state = 128, .external_lex_state = 2}, + [5457] = {.lex_state = 128, .external_lex_state = 2}, + [5458] = {.lex_state = 128, .external_lex_state = 2}, + [5459] = {.lex_state = 128, .external_lex_state = 2}, + [5460] = {.lex_state = 128, .external_lex_state = 2}, + [5461] = {.lex_state = 128, .external_lex_state = 2}, + [5462] = {.lex_state = 128, .external_lex_state = 2}, + [5463] = {.lex_state = 128, .external_lex_state = 2}, + [5464] = {.lex_state = 128, .external_lex_state = 2}, + [5465] = {.lex_state = 128, .external_lex_state = 2}, + [5466] = {.lex_state = 128, .external_lex_state = 2}, + [5467] = {.lex_state = 128, .external_lex_state = 5}, + [5468] = {.lex_state = 128, .external_lex_state = 2}, + [5469] = {.lex_state = 128, .external_lex_state = 2}, + [5470] = {.lex_state = 128, .external_lex_state = 2}, + [5471] = {.lex_state = 128, .external_lex_state = 2}, + [5472] = {.lex_state = 128, .external_lex_state = 2}, + [5473] = {.lex_state = 128, .external_lex_state = 2}, + [5474] = {.lex_state = 128, .external_lex_state = 2}, + [5475] = {.lex_state = 128, .external_lex_state = 2}, + [5476] = {.lex_state = 128, .external_lex_state = 2}, + [5477] = {.lex_state = 128, .external_lex_state = 2}, + [5478] = {.lex_state = 128, .external_lex_state = 2}, + [5479] = {.lex_state = 128, .external_lex_state = 2}, + [5480] = {.lex_state = 128, .external_lex_state = 2}, + [5481] = {.lex_state = 128, .external_lex_state = 2}, + [5482] = {.lex_state = 128, .external_lex_state = 2}, + [5483] = {.lex_state = 128, .external_lex_state = 2}, + [5484] = {.lex_state = 128, .external_lex_state = 2}, + [5485] = {.lex_state = 128, .external_lex_state = 2}, + [5486] = {.lex_state = 128, .external_lex_state = 5}, + [5487] = {.lex_state = 128, .external_lex_state = 2}, + [5488] = {.lex_state = 128, .external_lex_state = 2}, + [5489] = {.lex_state = 128, .external_lex_state = 2}, + [5490] = {.lex_state = 128, .external_lex_state = 2}, + [5491] = {.lex_state = 128, .external_lex_state = 2}, + [5492] = {.lex_state = 128, .external_lex_state = 2}, + [5493] = {.lex_state = 128, .external_lex_state = 2}, + [5494] = {.lex_state = 128, .external_lex_state = 2}, + [5495] = {.lex_state = 128, .external_lex_state = 2}, + [5496] = {.lex_state = 128, .external_lex_state = 5}, + [5497] = {.lex_state = 128, .external_lex_state = 2}, + [5498] = {.lex_state = 128, .external_lex_state = 2}, + [5499] = {.lex_state = 128, .external_lex_state = 2}, + [5500] = {.lex_state = 128, .external_lex_state = 2}, + [5501] = {.lex_state = 128, .external_lex_state = 2}, + [5502] = {.lex_state = 128, .external_lex_state = 2}, + [5503] = {.lex_state = 128, .external_lex_state = 2}, + [5504] = {.lex_state = 128, .external_lex_state = 2}, + [5505] = {.lex_state = 128, .external_lex_state = 2}, + [5506] = {.lex_state = 128, .external_lex_state = 2}, + [5507] = {.lex_state = 128, .external_lex_state = 2}, + [5508] = {.lex_state = 128, .external_lex_state = 2}, + [5509] = {.lex_state = 128, .external_lex_state = 2}, + [5510] = {.lex_state = 11, .external_lex_state = 2}, + [5511] = {.lex_state = 128, .external_lex_state = 2}, + [5512] = {.lex_state = 128, .external_lex_state = 2}, + [5513] = {.lex_state = 128, .external_lex_state = 2}, + [5514] = {.lex_state = 128, .external_lex_state = 2}, + [5515] = {.lex_state = 128, .external_lex_state = 2}, + [5516] = {.lex_state = 128, .external_lex_state = 2}, + [5517] = {.lex_state = 128, .external_lex_state = 5}, + [5518] = {.lex_state = 128, .external_lex_state = 2}, + [5519] = {.lex_state = 128, .external_lex_state = 2}, + [5520] = {.lex_state = 128, .external_lex_state = 2}, + [5521] = {.lex_state = 128, .external_lex_state = 5}, + [5522] = {.lex_state = 128, .external_lex_state = 2}, + [5523] = {.lex_state = 128, .external_lex_state = 2}, + [5524] = {.lex_state = 128, .external_lex_state = 2}, + [5525] = {.lex_state = 128, .external_lex_state = 2}, + [5526] = {.lex_state = 128, .external_lex_state = 2}, + [5527] = {.lex_state = 128, .external_lex_state = 2}, + [5528] = {.lex_state = 128, .external_lex_state = 2}, + [5529] = {.lex_state = 128, .external_lex_state = 2}, + [5530] = {.lex_state = 128, .external_lex_state = 2}, + [5531] = {.lex_state = 128, .external_lex_state = 2}, + [5532] = {.lex_state = 128, .external_lex_state = 2}, + [5533] = {.lex_state = 128, .external_lex_state = 5}, + [5534] = {.lex_state = 128, .external_lex_state = 2}, + [5535] = {.lex_state = 128, .external_lex_state = 2}, + [5536] = {.lex_state = 128, .external_lex_state = 2}, + [5537] = {.lex_state = 128, .external_lex_state = 2}, + [5538] = {.lex_state = 128, .external_lex_state = 2}, + [5539] = {.lex_state = 128, .external_lex_state = 2}, + [5540] = {.lex_state = 128, .external_lex_state = 2}, + [5541] = {.lex_state = 128, .external_lex_state = 2}, + [5542] = {.lex_state = 128, .external_lex_state = 2}, + [5543] = {.lex_state = 128, .external_lex_state = 2}, + [5544] = {.lex_state = 128, .external_lex_state = 2}, + [5545] = {.lex_state = 128, .external_lex_state = 2}, + [5546] = {.lex_state = 128, .external_lex_state = 2}, + [5547] = {.lex_state = 128, .external_lex_state = 5}, + [5548] = {.lex_state = 128, .external_lex_state = 2}, + [5549] = {.lex_state = 128, .external_lex_state = 2}, + [5550] = {.lex_state = 128, .external_lex_state = 2}, + [5551] = {.lex_state = 128, .external_lex_state = 2}, + [5552] = {.lex_state = 128, .external_lex_state = 2}, + [5553] = {.lex_state = 128, .external_lex_state = 2}, + [5554] = {.lex_state = 128, .external_lex_state = 2}, + [5555] = {.lex_state = 128, .external_lex_state = 2}, + [5556] = {.lex_state = 128, .external_lex_state = 2}, + [5557] = {.lex_state = 128, .external_lex_state = 2}, + [5558] = {.lex_state = 128, .external_lex_state = 2}, + [5559] = {.lex_state = 128, .external_lex_state = 2}, + [5560] = {.lex_state = 128, .external_lex_state = 2}, + [5561] = {.lex_state = 128, .external_lex_state = 2}, + [5562] = {.lex_state = 128, .external_lex_state = 2}, + [5563] = {.lex_state = 128, .external_lex_state = 2}, + [5564] = {.lex_state = 128, .external_lex_state = 2}, + [5565] = {.lex_state = 128, .external_lex_state = 2}, + [5566] = {.lex_state = 128, .external_lex_state = 2}, + [5567] = {.lex_state = 128, .external_lex_state = 2}, + [5568] = {.lex_state = 128, .external_lex_state = 2}, + [5569] = {.lex_state = 128, .external_lex_state = 2}, + [5570] = {.lex_state = 128, .external_lex_state = 2}, + [5571] = {.lex_state = 128, .external_lex_state = 2}, + [5572] = {.lex_state = 128, .external_lex_state = 2}, + [5573] = {.lex_state = 128, .external_lex_state = 2}, + [5574] = {.lex_state = 128, .external_lex_state = 2}, + [5575] = {.lex_state = 128, .external_lex_state = 2}, + [5576] = {.lex_state = 128, .external_lex_state = 2}, + [5577] = {.lex_state = 128, .external_lex_state = 2}, + [5578] = {.lex_state = 128, .external_lex_state = 2}, + [5579] = {.lex_state = 128, .external_lex_state = 2}, + [5580] = {.lex_state = 128, .external_lex_state = 2}, + [5581] = {.lex_state = 128, .external_lex_state = 2}, + [5582] = {.lex_state = 128, .external_lex_state = 2}, + [5583] = {.lex_state = 128, .external_lex_state = 2}, + [5584] = {.lex_state = 128, .external_lex_state = 2}, + [5585] = {.lex_state = 128, .external_lex_state = 2}, + [5586] = {.lex_state = 128, .external_lex_state = 2}, + [5587] = {.lex_state = 128, .external_lex_state = 2}, + [5588] = {.lex_state = 128, .external_lex_state = 2}, + [5589] = {.lex_state = 128, .external_lex_state = 2}, + [5590] = {.lex_state = 128, .external_lex_state = 2}, + [5591] = {.lex_state = 128, .external_lex_state = 2}, + [5592] = {.lex_state = 128, .external_lex_state = 2}, + [5593] = {.lex_state = 128, .external_lex_state = 2}, + [5594] = {.lex_state = 128, .external_lex_state = 2}, + [5595] = {.lex_state = 128, .external_lex_state = 2}, + [5596] = {.lex_state = 128, .external_lex_state = 2}, + [5597] = {.lex_state = 128, .external_lex_state = 2}, + [5598] = {.lex_state = 128, .external_lex_state = 2}, + [5599] = {.lex_state = 128, .external_lex_state = 2}, + [5600] = {.lex_state = 128, .external_lex_state = 2}, + [5601] = {.lex_state = 128, .external_lex_state = 2}, + [5602] = {.lex_state = 128, .external_lex_state = 2}, + [5603] = {.lex_state = 128, .external_lex_state = 2}, + [5604] = {.lex_state = 128, .external_lex_state = 2}, + [5605] = {.lex_state = 128, .external_lex_state = 2}, + [5606] = {.lex_state = 128, .external_lex_state = 2}, + [5607] = {.lex_state = 128, .external_lex_state = 2}, + [5608] = {.lex_state = 128, .external_lex_state = 2}, + [5609] = {.lex_state = 128, .external_lex_state = 2}, + [5610] = {.lex_state = 128, .external_lex_state = 2}, + [5611] = {.lex_state = 128, .external_lex_state = 2}, + [5612] = {.lex_state = 128, .external_lex_state = 2}, + [5613] = {.lex_state = 128, .external_lex_state = 2}, + [5614] = {.lex_state = 128, .external_lex_state = 2}, + [5615] = {.lex_state = 128, .external_lex_state = 2}, + [5616] = {.lex_state = 128, .external_lex_state = 2}, + [5617] = {.lex_state = 128, .external_lex_state = 2}, + [5618] = {.lex_state = 128, .external_lex_state = 2}, + [5619] = {.lex_state = 128, .external_lex_state = 2}, + [5620] = {.lex_state = 128, .external_lex_state = 2}, + [5621] = {.lex_state = 128, .external_lex_state = 2}, + [5622] = {.lex_state = 128, .external_lex_state = 2}, + [5623] = {.lex_state = 128, .external_lex_state = 2}, + [5624] = {.lex_state = 128, .external_lex_state = 2}, + [5625] = {.lex_state = 128, .external_lex_state = 2}, + [5626] = {.lex_state = 128, .external_lex_state = 2}, + [5627] = {.lex_state = 1, .external_lex_state = 11}, + [5628] = {.lex_state = 128, .external_lex_state = 2}, + [5629] = {.lex_state = 128, .external_lex_state = 2}, + [5630] = {.lex_state = 128, .external_lex_state = 2}, + [5631] = {.lex_state = 128, .external_lex_state = 2}, + [5632] = {.lex_state = 128, .external_lex_state = 2}, + [5633] = {.lex_state = 128, .external_lex_state = 2}, + [5634] = {.lex_state = 128, .external_lex_state = 2}, + [5635] = {.lex_state = 128, .external_lex_state = 2}, + [5636] = {.lex_state = 128, .external_lex_state = 2}, + [5637] = {.lex_state = 128, .external_lex_state = 2}, + [5638] = {.lex_state = 128, .external_lex_state = 2}, + [5639] = {.lex_state = 128, .external_lex_state = 2}, + [5640] = {.lex_state = 128, .external_lex_state = 2}, + [5641] = {.lex_state = 128, .external_lex_state = 2}, + [5642] = {.lex_state = 128, .external_lex_state = 2}, + [5643] = {.lex_state = 128, .external_lex_state = 2}, + [5644] = {.lex_state = 128, .external_lex_state = 2}, + [5645] = {.lex_state = 128, .external_lex_state = 2}, + [5646] = {.lex_state = 128, .external_lex_state = 2}, + [5647] = {.lex_state = 128, .external_lex_state = 2}, + [5648] = {.lex_state = 128, .external_lex_state = 2}, + [5649] = {.lex_state = 128, .external_lex_state = 2}, + [5650] = {.lex_state = 128, .external_lex_state = 2}, + [5651] = {.lex_state = 128, .external_lex_state = 2}, + [5652] = {.lex_state = 128, .external_lex_state = 2}, + [5653] = {.lex_state = 128, .external_lex_state = 2}, + [5654] = {.lex_state = 128, .external_lex_state = 2}, + [5655] = {.lex_state = 128, .external_lex_state = 2}, + [5656] = {.lex_state = 128, .external_lex_state = 2}, + [5657] = {.lex_state = 128, .external_lex_state = 2}, + [5658] = {.lex_state = 128, .external_lex_state = 2}, + [5659] = {.lex_state = 128, .external_lex_state = 2}, + [5660] = {.lex_state = 128, .external_lex_state = 2}, + [5661] = {.lex_state = 128, .external_lex_state = 2}, + [5662] = {.lex_state = 128, .external_lex_state = 2}, + [5663] = {.lex_state = 128, .external_lex_state = 2}, + [5664] = {.lex_state = 128, .external_lex_state = 2}, + [5665] = {.lex_state = 128, .external_lex_state = 2}, + [5666] = {.lex_state = 128, .external_lex_state = 2}, + [5667] = {.lex_state = 128, .external_lex_state = 2}, + [5668] = {.lex_state = 128, .external_lex_state = 2}, + [5669] = {.lex_state = 128, .external_lex_state = 2}, + [5670] = {.lex_state = 128, .external_lex_state = 2}, + [5671] = {.lex_state = 128, .external_lex_state = 2}, + [5672] = {.lex_state = 128, .external_lex_state = 2}, + [5673] = {.lex_state = 128, .external_lex_state = 2}, + [5674] = {.lex_state = 128, .external_lex_state = 2}, + [5675] = {.lex_state = 128, .external_lex_state = 2}, + [5676] = {.lex_state = 128, .external_lex_state = 2}, + [5677] = {.lex_state = 128, .external_lex_state = 2}, + [5678] = {.lex_state = 128, .external_lex_state = 2}, + [5679] = {.lex_state = 128, .external_lex_state = 2}, + [5680] = {.lex_state = 128, .external_lex_state = 2}, + [5681] = {.lex_state = 128, .external_lex_state = 2}, + [5682] = {.lex_state = 128, .external_lex_state = 2}, + [5683] = {.lex_state = 128, .external_lex_state = 2}, + [5684] = {.lex_state = 128, .external_lex_state = 2}, + [5685] = {.lex_state = 128, .external_lex_state = 2}, + [5686] = {.lex_state = 128, .external_lex_state = 2}, + [5687] = {.lex_state = 128, .external_lex_state = 2}, + [5688] = {.lex_state = 128, .external_lex_state = 2}, + [5689] = {.lex_state = 128, .external_lex_state = 2}, + [5690] = {.lex_state = 128, .external_lex_state = 2}, + [5691] = {.lex_state = 128, .external_lex_state = 2}, + [5692] = {.lex_state = 128, .external_lex_state = 2}, + [5693] = {.lex_state = 128, .external_lex_state = 2}, + [5694] = {.lex_state = 128, .external_lex_state = 2}, + [5695] = {.lex_state = 128, .external_lex_state = 2}, + [5696] = {.lex_state = 128, .external_lex_state = 2}, + [5697] = {.lex_state = 128, .external_lex_state = 2}, + [5698] = {.lex_state = 128, .external_lex_state = 2}, + [5699] = {.lex_state = 128, .external_lex_state = 2}, + [5700] = {.lex_state = 128, .external_lex_state = 2}, + [5701] = {.lex_state = 128, .external_lex_state = 2}, + [5702] = {.lex_state = 128, .external_lex_state = 2}, + [5703] = {.lex_state = 128, .external_lex_state = 2}, + [5704] = {.lex_state = 128, .external_lex_state = 2}, + [5705] = {.lex_state = 128, .external_lex_state = 2}, + [5706] = {.lex_state = 128, .external_lex_state = 2}, + [5707] = {.lex_state = 128, .external_lex_state = 2}, + [5708] = {.lex_state = 128, .external_lex_state = 2}, + [5709] = {.lex_state = 128, .external_lex_state = 2}, + [5710] = {.lex_state = 128, .external_lex_state = 2}, + [5711] = {.lex_state = 128, .external_lex_state = 2}, + [5712] = {.lex_state = 128, .external_lex_state = 2}, + [5713] = {.lex_state = 128, .external_lex_state = 2}, + [5714] = {.lex_state = 128, .external_lex_state = 2}, + [5715] = {.lex_state = 128, .external_lex_state = 2}, + [5716] = {.lex_state = 128, .external_lex_state = 2}, + [5717] = {.lex_state = 128, .external_lex_state = 2}, + [5718] = {.lex_state = 128, .external_lex_state = 2}, + [5719] = {.lex_state = 128, .external_lex_state = 2}, + [5720] = {.lex_state = 128, .external_lex_state = 2}, + [5721] = {.lex_state = 128, .external_lex_state = 2}, + [5722] = {.lex_state = 128, .external_lex_state = 2}, + [5723] = {.lex_state = 128, .external_lex_state = 2}, + [5724] = {.lex_state = 128, .external_lex_state = 2}, + [5725] = {.lex_state = 128, .external_lex_state = 2}, + [5726] = {.lex_state = 128, .external_lex_state = 2}, + [5727] = {.lex_state = 128, .external_lex_state = 2}, + [5728] = {.lex_state = 128, .external_lex_state = 2}, + [5729] = {.lex_state = 1, .external_lex_state = 11}, + [5730] = {.lex_state = 128, .external_lex_state = 2}, + [5731] = {.lex_state = 128, .external_lex_state = 2}, + [5732] = {.lex_state = 128, .external_lex_state = 2}, + [5733] = {.lex_state = 128, .external_lex_state = 2}, + [5734] = {.lex_state = 128, .external_lex_state = 2}, + [5735] = {.lex_state = 128, .external_lex_state = 2}, + [5736] = {.lex_state = 128, .external_lex_state = 2}, + [5737] = {.lex_state = 128, .external_lex_state = 2}, + [5738] = {.lex_state = 128, .external_lex_state = 2}, + [5739] = {.lex_state = 128, .external_lex_state = 2}, + [5740] = {.lex_state = 128, .external_lex_state = 2}, + [5741] = {.lex_state = 128, .external_lex_state = 2}, + [5742] = {.lex_state = 128, .external_lex_state = 2}, + [5743] = {.lex_state = 128, .external_lex_state = 2}, + [5744] = {.lex_state = 128, .external_lex_state = 2}, + [5745] = {.lex_state = 128, .external_lex_state = 2}, + [5746] = {.lex_state = 128, .external_lex_state = 2}, + [5747] = {.lex_state = 128, .external_lex_state = 2}, + [5748] = {.lex_state = 128, .external_lex_state = 2}, + [5749] = {.lex_state = 128, .external_lex_state = 2}, + [5750] = {.lex_state = 33, .external_lex_state = 2}, + [5751] = {.lex_state = 128, .external_lex_state = 2}, + [5752] = {.lex_state = 128, .external_lex_state = 2}, + [5753] = {.lex_state = 128, .external_lex_state = 2}, + [5754] = {.lex_state = 128, .external_lex_state = 2}, + [5755] = {.lex_state = 128, .external_lex_state = 2}, + [5756] = {.lex_state = 128, .external_lex_state = 2}, + [5757] = {.lex_state = 128, .external_lex_state = 2}, + [5758] = {.lex_state = 128, .external_lex_state = 2}, + [5759] = {.lex_state = 128, .external_lex_state = 2}, + [5760] = {.lex_state = 128, .external_lex_state = 2}, + [5761] = {.lex_state = 128, .external_lex_state = 2}, + [5762] = {.lex_state = 128, .external_lex_state = 2}, + [5763] = {.lex_state = 128, .external_lex_state = 2}, + [5764] = {.lex_state = 128, .external_lex_state = 2}, + [5765] = {.lex_state = 128, .external_lex_state = 2}, + [5766] = {.lex_state = 128, .external_lex_state = 2}, + [5767] = {.lex_state = 128, .external_lex_state = 2}, + [5768] = {.lex_state = 128, .external_lex_state = 2}, + [5769] = {.lex_state = 128, .external_lex_state = 2}, + [5770] = {.lex_state = 128, .external_lex_state = 2}, + [5771] = {.lex_state = 128, .external_lex_state = 2}, + [5772] = {.lex_state = 128, .external_lex_state = 2}, + [5773] = {.lex_state = 128, .external_lex_state = 2}, + [5774] = {.lex_state = 128, .external_lex_state = 2}, + [5775] = {.lex_state = 128, .external_lex_state = 2}, + [5776] = {.lex_state = 128, .external_lex_state = 2}, + [5777] = {.lex_state = 128, .external_lex_state = 2}, + [5778] = {.lex_state = 128, .external_lex_state = 2}, + [5779] = {.lex_state = 128, .external_lex_state = 2}, + [5780] = {.lex_state = 128, .external_lex_state = 2}, + [5781] = {.lex_state = 128, .external_lex_state = 2}, + [5782] = {.lex_state = 128, .external_lex_state = 2}, + [5783] = {.lex_state = 128, .external_lex_state = 2}, + [5784] = {.lex_state = 128, .external_lex_state = 2}, + [5785] = {.lex_state = 128, .external_lex_state = 2}, + [5786] = {.lex_state = 128, .external_lex_state = 2}, + [5787] = {.lex_state = 128, .external_lex_state = 2}, + [5788] = {.lex_state = 128, .external_lex_state = 2}, + [5789] = {.lex_state = 128, .external_lex_state = 2}, + [5790] = {.lex_state = 128, .external_lex_state = 2}, + [5791] = {.lex_state = 128, .external_lex_state = 2}, + [5792] = {.lex_state = 128, .external_lex_state = 2}, + [5793] = {.lex_state = 128, .external_lex_state = 2}, + [5794] = {.lex_state = 128, .external_lex_state = 2}, + [5795] = {.lex_state = 128, .external_lex_state = 2}, + [5796] = {.lex_state = 128, .external_lex_state = 2}, + [5797] = {.lex_state = 128, .external_lex_state = 2}, + [5798] = {.lex_state = 128, .external_lex_state = 2}, + [5799] = {.lex_state = 1, .external_lex_state = 11}, + [5800] = {.lex_state = 128, .external_lex_state = 2}, + [5801] = {.lex_state = 128, .external_lex_state = 2}, + [5802] = {.lex_state = 128, .external_lex_state = 2}, + [5803] = {.lex_state = 128, .external_lex_state = 2}, + [5804] = {.lex_state = 128, .external_lex_state = 2}, + [5805] = {.lex_state = 128, .external_lex_state = 2}, + [5806] = {.lex_state = 128, .external_lex_state = 2}, + [5807] = {.lex_state = 128, .external_lex_state = 2}, + [5808] = {.lex_state = 128, .external_lex_state = 2}, + [5809] = {.lex_state = 128, .external_lex_state = 2}, + [5810] = {.lex_state = 128, .external_lex_state = 2}, + [5811] = {.lex_state = 128, .external_lex_state = 2}, + [5812] = {.lex_state = 128, .external_lex_state = 2}, + [5813] = {.lex_state = 128, .external_lex_state = 2}, + [5814] = {.lex_state = 128, .external_lex_state = 2}, + [5815] = {.lex_state = 128, .external_lex_state = 2}, + [5816] = {.lex_state = 128, .external_lex_state = 2}, + [5817] = {.lex_state = 128, .external_lex_state = 2}, + [5818] = {.lex_state = 128, .external_lex_state = 2}, + [5819] = {.lex_state = 128, .external_lex_state = 2}, + [5820] = {.lex_state = 128, .external_lex_state = 2}, + [5821] = {.lex_state = 128, .external_lex_state = 2}, + [5822] = {.lex_state = 128, .external_lex_state = 2}, + [5823] = {.lex_state = 128, .external_lex_state = 2}, + [5824] = {.lex_state = 128, .external_lex_state = 2}, + [5825] = {.lex_state = 128, .external_lex_state = 2}, + [5826] = {.lex_state = 128, .external_lex_state = 2}, + [5827] = {.lex_state = 128, .external_lex_state = 2}, + [5828] = {.lex_state = 128, .external_lex_state = 2}, + [5829] = {.lex_state = 128, .external_lex_state = 2}, + [5830] = {.lex_state = 128, .external_lex_state = 2}, + [5831] = {.lex_state = 128, .external_lex_state = 2}, + [5832] = {.lex_state = 128, .external_lex_state = 2}, + [5833] = {.lex_state = 128, .external_lex_state = 2}, + [5834] = {.lex_state = 128, .external_lex_state = 2}, + [5835] = {.lex_state = 128, .external_lex_state = 2}, + [5836] = {.lex_state = 128, .external_lex_state = 2}, + [5837] = {.lex_state = 128, .external_lex_state = 2}, + [5838] = {.lex_state = 128, .external_lex_state = 2}, + [5839] = {.lex_state = 128, .external_lex_state = 2}, + [5840] = {.lex_state = 128, .external_lex_state = 2}, + [5841] = {.lex_state = 128, .external_lex_state = 2}, + [5842] = {.lex_state = 128, .external_lex_state = 2}, + [5843] = {.lex_state = 128, .external_lex_state = 2}, + [5844] = {.lex_state = 128, .external_lex_state = 2}, + [5845] = {.lex_state = 128, .external_lex_state = 2}, + [5846] = {.lex_state = 128, .external_lex_state = 2}, + [5847] = {.lex_state = 128, .external_lex_state = 2}, + [5848] = {.lex_state = 128, .external_lex_state = 2}, + [5849] = {.lex_state = 128, .external_lex_state = 2}, + [5850] = {.lex_state = 128, .external_lex_state = 2}, + [5851] = {.lex_state = 128, .external_lex_state = 2}, + [5852] = {.lex_state = 128, .external_lex_state = 2}, + [5853] = {.lex_state = 128, .external_lex_state = 2}, + [5854] = {.lex_state = 128, .external_lex_state = 2}, + [5855] = {.lex_state = 128, .external_lex_state = 2}, + [5856] = {.lex_state = 128, .external_lex_state = 2}, + [5857] = {.lex_state = 128, .external_lex_state = 2}, + [5858] = {.lex_state = 128, .external_lex_state = 2}, + [5859] = {.lex_state = 128, .external_lex_state = 2}, + [5860] = {.lex_state = 128, .external_lex_state = 2}, + [5861] = {.lex_state = 128, .external_lex_state = 2}, + [5862] = {.lex_state = 128, .external_lex_state = 2}, + [5863] = {.lex_state = 128, .external_lex_state = 2}, + [5864] = {.lex_state = 128, .external_lex_state = 2}, + [5865] = {.lex_state = 128, .external_lex_state = 2}, + [5866] = {.lex_state = 33, .external_lex_state = 2}, + [5867] = {.lex_state = 128, .external_lex_state = 2}, + [5868] = {.lex_state = 128, .external_lex_state = 2}, + [5869] = {.lex_state = 128, .external_lex_state = 2}, + [5870] = {.lex_state = 128, .external_lex_state = 2}, + [5871] = {.lex_state = 128, .external_lex_state = 2}, + [5872] = {.lex_state = 128, .external_lex_state = 2}, + [5873] = {.lex_state = 128, .external_lex_state = 2}, + [5874] = {.lex_state = 33, .external_lex_state = 2}, + [5875] = {.lex_state = 128, .external_lex_state = 2}, + [5876] = {.lex_state = 128, .external_lex_state = 2}, + [5877] = {.lex_state = 128, .external_lex_state = 2}, + [5878] = {.lex_state = 128, .external_lex_state = 2}, + [5879] = {.lex_state = 128, .external_lex_state = 2}, + [5880] = {.lex_state = 128, .external_lex_state = 2}, + [5881] = {.lex_state = 128, .external_lex_state = 2}, + [5882] = {.lex_state = 128, .external_lex_state = 2}, + [5883] = {.lex_state = 128, .external_lex_state = 2}, + [5884] = {.lex_state = 128, .external_lex_state = 2}, + [5885] = {.lex_state = 128, .external_lex_state = 2}, + [5886] = {.lex_state = 128, .external_lex_state = 2}, + [5887] = {.lex_state = 128, .external_lex_state = 2}, + [5888] = {.lex_state = 128, .external_lex_state = 2}, + [5889] = {.lex_state = 128, .external_lex_state = 2}, + [5890] = {.lex_state = 128, .external_lex_state = 2}, + [5891] = {.lex_state = 128, .external_lex_state = 2}, + [5892] = {.lex_state = 128, .external_lex_state = 2}, + [5893] = {.lex_state = 128, .external_lex_state = 2}, + [5894] = {.lex_state = 128, .external_lex_state = 2}, + [5895] = {.lex_state = 128, .external_lex_state = 2}, + [5896] = {.lex_state = 128, .external_lex_state = 2}, + [5897] = {.lex_state = 128, .external_lex_state = 2}, + [5898] = {.lex_state = 128, .external_lex_state = 2}, + [5899] = {.lex_state = 128, .external_lex_state = 2}, + [5900] = {.lex_state = 128, .external_lex_state = 2}, + [5901] = {.lex_state = 128, .external_lex_state = 2}, + [5902] = {.lex_state = 128, .external_lex_state = 2}, + [5903] = {.lex_state = 128, .external_lex_state = 2}, + [5904] = {.lex_state = 128, .external_lex_state = 2}, + [5905] = {.lex_state = 128, .external_lex_state = 2}, + [5906] = {.lex_state = 128, .external_lex_state = 2}, + [5907] = {.lex_state = 128, .external_lex_state = 2}, + [5908] = {.lex_state = 128, .external_lex_state = 2}, + [5909] = {.lex_state = 128, .external_lex_state = 2}, + [5910] = {.lex_state = 128, .external_lex_state = 2}, + [5911] = {.lex_state = 128, .external_lex_state = 2}, + [5912] = {.lex_state = 128, .external_lex_state = 2}, + [5913] = {.lex_state = 128, .external_lex_state = 2}, + [5914] = {.lex_state = 1, .external_lex_state = 11}, + [5915] = {.lex_state = 128, .external_lex_state = 2}, + [5916] = {.lex_state = 128, .external_lex_state = 2}, + [5917] = {.lex_state = 128, .external_lex_state = 2}, + [5918] = {.lex_state = 128, .external_lex_state = 2}, + [5919] = {.lex_state = 128, .external_lex_state = 2}, + [5920] = {.lex_state = 128, .external_lex_state = 2}, + [5921] = {.lex_state = 128, .external_lex_state = 2}, + [5922] = {.lex_state = 128, .external_lex_state = 2}, + [5923] = {.lex_state = 128, .external_lex_state = 2}, + [5924] = {.lex_state = 128, .external_lex_state = 2}, + [5925] = {.lex_state = 128, .external_lex_state = 2}, + [5926] = {.lex_state = 128, .external_lex_state = 2}, + [5927] = {.lex_state = 128, .external_lex_state = 2}, + [5928] = {.lex_state = 128, .external_lex_state = 2}, + [5929] = {.lex_state = 128, .external_lex_state = 2}, + [5930] = {.lex_state = 128, .external_lex_state = 2}, + [5931] = {.lex_state = 128, .external_lex_state = 2}, + [5932] = {.lex_state = 128, .external_lex_state = 2}, + [5933] = {.lex_state = 128, .external_lex_state = 2}, + [5934] = {.lex_state = 128, .external_lex_state = 2}, + [5935] = {.lex_state = 128, .external_lex_state = 2}, + [5936] = {.lex_state = 128, .external_lex_state = 2}, + [5937] = {.lex_state = 128, .external_lex_state = 2}, + [5938] = {.lex_state = 128, .external_lex_state = 2}, + [5939] = {.lex_state = 128, .external_lex_state = 2}, + [5940] = {.lex_state = 128, .external_lex_state = 2}, + [5941] = {.lex_state = 128, .external_lex_state = 2}, + [5942] = {.lex_state = 128, .external_lex_state = 2}, + [5943] = {.lex_state = 128, .external_lex_state = 2}, + [5944] = {.lex_state = 128, .external_lex_state = 2}, + [5945] = {.lex_state = 128, .external_lex_state = 2}, + [5946] = {.lex_state = 128, .external_lex_state = 2}, + [5947] = {.lex_state = 128, .external_lex_state = 2}, + [5948] = {.lex_state = 128, .external_lex_state = 2}, + [5949] = {.lex_state = 128, .external_lex_state = 2}, + [5950] = {.lex_state = 128, .external_lex_state = 2}, + [5951] = {.lex_state = 128, .external_lex_state = 2}, + [5952] = {.lex_state = 128, .external_lex_state = 2}, + [5953] = {.lex_state = 128, .external_lex_state = 2}, + [5954] = {.lex_state = 128, .external_lex_state = 2}, + [5955] = {.lex_state = 128, .external_lex_state = 2}, + [5956] = {.lex_state = 128, .external_lex_state = 2}, + [5957] = {.lex_state = 128, .external_lex_state = 2}, + [5958] = {.lex_state = 1, .external_lex_state = 11}, + [5959] = {.lex_state = 128, .external_lex_state = 2}, + [5960] = {.lex_state = 128, .external_lex_state = 2}, + [5961] = {.lex_state = 128, .external_lex_state = 2}, + [5962] = {.lex_state = 128, .external_lex_state = 2}, + [5963] = {.lex_state = 128, .external_lex_state = 2}, + [5964] = {.lex_state = 128, .external_lex_state = 2}, + [5965] = {.lex_state = 128, .external_lex_state = 2}, + [5966] = {.lex_state = 128, .external_lex_state = 2}, + [5967] = {.lex_state = 128, .external_lex_state = 2}, + [5968] = {.lex_state = 128, .external_lex_state = 2}, + [5969] = {.lex_state = 128, .external_lex_state = 2}, + [5970] = {.lex_state = 128, .external_lex_state = 2}, + [5971] = {.lex_state = 33, .external_lex_state = 2}, + [5972] = {.lex_state = 128, .external_lex_state = 2}, + [5973] = {.lex_state = 128, .external_lex_state = 2}, + [5974] = {.lex_state = 128, .external_lex_state = 2}, + [5975] = {.lex_state = 128, .external_lex_state = 2}, + [5976] = {.lex_state = 33, .external_lex_state = 2}, + [5977] = {.lex_state = 128, .external_lex_state = 2}, + [5978] = {.lex_state = 128, .external_lex_state = 2}, + [5979] = {.lex_state = 128, .external_lex_state = 2}, + [5980] = {.lex_state = 128, .external_lex_state = 2}, + [5981] = {.lex_state = 128, .external_lex_state = 2}, + [5982] = {.lex_state = 128, .external_lex_state = 2}, + [5983] = {.lex_state = 128, .external_lex_state = 2}, + [5984] = {.lex_state = 128, .external_lex_state = 2}, + [5985] = {.lex_state = 128, .external_lex_state = 2}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -20047,7 +19725,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1), [anon_sym_LBRACK] = ACTIONS(1), [anon_sym_RBRACK] = ACTIONS(1), - [sym_glimmer_opening_tag] = ACTIONS(1), [anon_sym_GT] = ACTIONS(1), [anon_sym_DOT] = ACTIONS(1), [anon_sym_LT_SLASH] = ACTIONS(1), @@ -20165,87 +19842,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___error_recovery] = ACTIONS(1), }, [1] = { - [sym_program] = STATE(5783), - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(16), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_program_repeat1] = STATE(16), - [aux_sym_export_statement_repeat1] = STATE(3782), + [sym_program] = STATE(5712), + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(15), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(253), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(3919), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [sym_hash_bang_line] = ACTIONS(11), @@ -20276,539 +19952,533 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [2] = { - [sym_import] = STATE(3552), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2237), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4033), - [sym_pattern] = STATE(4147), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3053), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5407), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(113), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_type] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(126), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(130), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(145), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(177), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(188), - [anon_sym_DASH_DASH] = ACTIONS(188), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(191), - [sym_number] = ACTIONS(193), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(201), - [sym_false] = ACTIONS(201), - [sym_null] = ACTIONS(201), - [sym_undefined] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(205), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(207), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(209), - [anon_sym_number] = ACTIONS(209), - [anon_sym_boolean] = ACTIONS(209), - [anon_sym_string] = ACTIONS(209), - [anon_sym_symbol] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3582), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3631), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3631), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_nested_identifier] = STATE(5753), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1265), + [sym_subscript_expression] = STATE(1265), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3631), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(2313), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3948), + [sym_pattern] = STATE(4302), + [sym_rest_pattern] = STATE(3626), + [sym_non_null_expression] = STATE(1265), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3058), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5431), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(111), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(129), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(144), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(156), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(160), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(168), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(174), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(181), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(185), + [anon_sym_DASH_DASH] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(188), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(194), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(200), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(202), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(204), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(206), + [anon_sym_number] = ACTIONS(206), + [anon_sym_boolean] = ACTIONS(206), + [anon_sym_string] = ACTIONS(206), + [anon_sym_symbol] = ACTIONS(206), + [anon_sym_object] = ACTIONS(206), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [3] = { - [sym_import] = STATE(3552), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2237), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4033), - [sym_pattern] = STATE(4147), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3053), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5407), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(113), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_type] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(223), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(126), - [anon_sym_COMMA] = ACTIONS(226), - [anon_sym_typeof] = ACTIONS(130), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(226), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(226), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(145), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(177), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(188), - [anon_sym_DASH_DASH] = ACTIONS(188), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(191), - [sym_number] = ACTIONS(193), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(201), - [sym_false] = ACTIONS(201), - [sym_null] = ACTIONS(201), - [sym_undefined] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(205), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(207), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(209), - [anon_sym_number] = ACTIONS(209), - [anon_sym_boolean] = ACTIONS(209), - [anon_sym_string] = ACTIONS(209), - [anon_sym_symbol] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3582), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3631), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3631), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_nested_identifier] = STATE(5753), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1265), + [sym_subscript_expression] = STATE(1265), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3631), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(2313), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3948), + [sym_pattern] = STATE(4302), + [sym_rest_pattern] = STATE(3626), + [sym_non_null_expression] = STATE(1265), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3058), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5431), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(111), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(220), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_typeof] = ACTIONS(129), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(223), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(223), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(144), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(160), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(168), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(174), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(181), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(185), + [anon_sym_DASH_DASH] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(188), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(194), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(200), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(202), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(204), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(206), + [anon_sym_number] = ACTIONS(206), + [anon_sym_boolean] = ACTIONS(206), + [anon_sym_string] = ACTIONS(206), + [anon_sym_symbol] = ACTIONS(206), + [anon_sym_object] = ACTIONS(206), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [4] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(17), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5874), - [sym_object_assignment_pattern] = STATE(4986), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5874), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5874), - [sym_spread_element] = STATE(5019), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2225), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_rest_pattern] = STATE(4986), - [sym_method_definition] = STATE(5019), - [sym_pair] = STATE(5019), - [sym_pair_pattern] = STATE(4986), - [sym__property_name] = STATE(3559), - [sym_computed_property_name] = STATE(3559), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_accessibility_modifier] = STATE(2724), - [sym_override_modifier] = STATE(2755), - [sym_type_parameters] = STATE(5338), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(3782), - [aux_sym_object_repeat1] = STATE(5031), - [aux_sym_object_pattern_repeat1] = STATE(5037), - [sym_identifier] = ACTIONS(231), - [anon_sym_export] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(235), - [anon_sym_type] = ACTIONS(237), - [anon_sym_namespace] = ACTIONS(239), + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(16), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5647), + [sym_object_assignment_pattern] = STATE(4665), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5647), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5647), + [sym_spread_element] = STATE(4687), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_rest_pattern] = STATE(4665), + [sym_method_definition] = STATE(4687), + [sym_pair] = STATE(4687), + [sym_pair_pattern] = STATE(4665), + [sym__property_name] = STATE(3705), + [sym_computed_property_name] = STATE(3705), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(253), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_accessibility_modifier] = STATE(2732), + [sym_override_modifier] = STATE(2743), + [sym_type_parameters] = STATE(5231), + [aux_sym_program_repeat1] = STATE(16), + [aux_sym_export_statement_repeat1] = STATE(3919), + [aux_sym_object_repeat1] = STATE(4618), + [aux_sym_object_pattern_repeat1] = STATE(4622), + [sym_identifier] = ACTIONS(227), + [anon_sym_export] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_type] = ACTIONS(233), + [anon_sym_namespace] = ACTIONS(235), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_COMMA] = ACTIONS(241), - [anon_sym_RBRACE] = ACTIONS(243), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_RBRACE] = ACTIONS(239), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(245), + [anon_sym_let] = ACTIONS(241), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), [anon_sym_if] = ACTIONS(35), @@ -20826,163 +20496,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(59), [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(247), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(249), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(251), - [anon_sym_using] = ACTIONS(81), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(243), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(245), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(247), + [anon_sym_using] = ACTIONS(79), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(255), - [sym_private_property_identifier] = ACTIONS(257), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(259), - [anon_sym_readonly] = ACTIONS(261), - [anon_sym_get] = ACTIONS(263), - [anon_sym_set] = ACTIONS(263), - [anon_sym_declare] = ACTIONS(265), - [anon_sym_public] = ACTIONS(267), - [anon_sym_private] = ACTIONS(267), - [anon_sym_protected] = ACTIONS(267), - [anon_sym_override] = ACTIONS(269), - [anon_sym_module] = ACTIONS(271), - [anon_sym_any] = ACTIONS(273), - [anon_sym_number] = ACTIONS(273), - [anon_sym_boolean] = ACTIONS(273), - [anon_sym_string] = ACTIONS(273), - [anon_sym_symbol] = ACTIONS(273), - [anon_sym_object] = ACTIONS(273), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(251), + [sym_private_property_identifier] = ACTIONS(253), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(255), + [anon_sym_readonly] = ACTIONS(257), + [anon_sym_get] = ACTIONS(259), + [anon_sym_set] = ACTIONS(259), + [anon_sym_declare] = ACTIONS(261), + [anon_sym_public] = ACTIONS(263), + [anon_sym_private] = ACTIONS(263), + [anon_sym_protected] = ACTIONS(263), + [anon_sym_override] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_any] = ACTIONS(269), + [anon_sym_number] = ACTIONS(269), + [anon_sym_boolean] = ACTIONS(269), + [anon_sym_string] = ACTIONS(269), + [anon_sym_symbol] = ACTIONS(269), + [anon_sym_object] = ACTIONS(269), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [5] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(24), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5874), - [sym_object_assignment_pattern] = STATE(4986), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5874), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5874), - [sym_spread_element] = STATE(4829), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2225), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_rest_pattern] = STATE(4986), - [sym_method_definition] = STATE(4829), - [sym_pair] = STATE(4829), - [sym_pair_pattern] = STATE(4986), - [sym__property_name] = STATE(3559), - [sym_computed_property_name] = STATE(3559), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_accessibility_modifier] = STATE(2724), - [sym_override_modifier] = STATE(2755), - [sym_type_parameters] = STATE(5338), - [aux_sym_program_repeat1] = STATE(24), - [aux_sym_export_statement_repeat1] = STATE(3782), - [aux_sym_object_repeat1] = STATE(4830), - [aux_sym_object_pattern_repeat1] = STATE(5037), - [sym_identifier] = ACTIONS(275), - [anon_sym_export] = ACTIONS(277), - [anon_sym_STAR] = ACTIONS(235), - [anon_sym_type] = ACTIONS(279), - [anon_sym_namespace] = ACTIONS(281), + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(16), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5647), + [sym_object_assignment_pattern] = STATE(4665), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5647), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5647), + [sym_spread_element] = STATE(4687), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_rest_pattern] = STATE(4665), + [sym_method_definition] = STATE(4687), + [sym_pair] = STATE(4687), + [sym_pair_pattern] = STATE(4665), + [sym__property_name] = STATE(3705), + [sym_computed_property_name] = STATE(3705), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(253), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_accessibility_modifier] = STATE(2732), + [sym_override_modifier] = STATE(2743), + [sym_type_parameters] = STATE(5231), + [aux_sym_program_repeat1] = STATE(16), + [aux_sym_export_statement_repeat1] = STATE(3919), + [aux_sym_object_repeat1] = STATE(4618), + [aux_sym_object_pattern_repeat1] = STATE(4622), + [sym_identifier] = ACTIONS(227), + [anon_sym_export] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_type] = ACTIONS(233), + [anon_sym_namespace] = ACTIONS(235), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_COMMA] = ACTIONS(241), - [anon_sym_RBRACE] = ACTIONS(283), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_RBRACE] = ACTIONS(271), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(285), + [anon_sym_let] = ACTIONS(241), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), [anon_sym_if] = ACTIONS(35), @@ -21000,163 +20668,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(59), [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(247), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(287), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(289), - [anon_sym_using] = ACTIONS(81), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(243), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(245), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(247), + [anon_sym_using] = ACTIONS(79), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(255), - [sym_private_property_identifier] = ACTIONS(257), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(291), - [anon_sym_readonly] = ACTIONS(293), - [anon_sym_get] = ACTIONS(295), - [anon_sym_set] = ACTIONS(295), - [anon_sym_declare] = ACTIONS(297), - [anon_sym_public] = ACTIONS(299), - [anon_sym_private] = ACTIONS(299), - [anon_sym_protected] = ACTIONS(299), - [anon_sym_override] = ACTIONS(301), - [anon_sym_module] = ACTIONS(303), - [anon_sym_any] = ACTIONS(305), - [anon_sym_number] = ACTIONS(305), - [anon_sym_boolean] = ACTIONS(305), - [anon_sym_string] = ACTIONS(305), - [anon_sym_symbol] = ACTIONS(305), - [anon_sym_object] = ACTIONS(305), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(251), + [sym_private_property_identifier] = ACTIONS(253), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(255), + [anon_sym_readonly] = ACTIONS(257), + [anon_sym_get] = ACTIONS(259), + [anon_sym_set] = ACTIONS(259), + [anon_sym_declare] = ACTIONS(261), + [anon_sym_public] = ACTIONS(263), + [anon_sym_private] = ACTIONS(263), + [anon_sym_protected] = ACTIONS(263), + [anon_sym_override] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_any] = ACTIONS(269), + [anon_sym_number] = ACTIONS(269), + [anon_sym_boolean] = ACTIONS(269), + [anon_sym_string] = ACTIONS(269), + [anon_sym_symbol] = ACTIONS(269), + [anon_sym_object] = ACTIONS(269), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [6] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(19), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5874), - [sym_object_assignment_pattern] = STATE(4986), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5874), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5874), - [sym_spread_element] = STATE(5019), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2225), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_rest_pattern] = STATE(4986), - [sym_method_definition] = STATE(5019), - [sym_pair] = STATE(5019), - [sym_pair_pattern] = STATE(4986), - [sym__property_name] = STATE(3559), - [sym_computed_property_name] = STATE(3559), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_accessibility_modifier] = STATE(2724), - [sym_override_modifier] = STATE(2755), - [sym_type_parameters] = STATE(5338), - [aux_sym_program_repeat1] = STATE(19), - [aux_sym_export_statement_repeat1] = STATE(3782), - [aux_sym_object_repeat1] = STATE(5031), - [aux_sym_object_pattern_repeat1] = STATE(5037), - [sym_identifier] = ACTIONS(231), - [anon_sym_export] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(235), - [anon_sym_type] = ACTIONS(237), - [anon_sym_namespace] = ACTIONS(239), + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(21), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5647), + [sym_object_assignment_pattern] = STATE(4665), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5647), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5647), + [sym_spread_element] = STATE(4841), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_rest_pattern] = STATE(4665), + [sym_method_definition] = STATE(4841), + [sym_pair] = STATE(4841), + [sym_pair_pattern] = STATE(4665), + [sym__property_name] = STATE(3705), + [sym_computed_property_name] = STATE(3705), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(253), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_accessibility_modifier] = STATE(2732), + [sym_override_modifier] = STATE(2743), + [sym_type_parameters] = STATE(5231), + [aux_sym_program_repeat1] = STATE(21), + [aux_sym_export_statement_repeat1] = STATE(3919), + [aux_sym_object_repeat1] = STATE(4848), + [aux_sym_object_pattern_repeat1] = STATE(4622), + [sym_identifier] = ACTIONS(273), + [anon_sym_export] = ACTIONS(275), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_type] = ACTIONS(277), + [anon_sym_namespace] = ACTIONS(279), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_COMMA] = ACTIONS(241), - [anon_sym_RBRACE] = ACTIONS(307), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_RBRACE] = ACTIONS(281), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(245), + [anon_sym_let] = ACTIONS(283), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), [anon_sym_if] = ACTIONS(35), @@ -21174,163 +20840,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(59), [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(247), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(249), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(251), - [anon_sym_using] = ACTIONS(81), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(243), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(285), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(287), + [anon_sym_using] = ACTIONS(79), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(255), - [sym_private_property_identifier] = ACTIONS(257), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(259), - [anon_sym_readonly] = ACTIONS(261), - [anon_sym_get] = ACTIONS(263), - [anon_sym_set] = ACTIONS(263), - [anon_sym_declare] = ACTIONS(265), - [anon_sym_public] = ACTIONS(267), - [anon_sym_private] = ACTIONS(267), - [anon_sym_protected] = ACTIONS(267), - [anon_sym_override] = ACTIONS(269), - [anon_sym_module] = ACTIONS(271), - [anon_sym_any] = ACTIONS(273), - [anon_sym_number] = ACTIONS(273), - [anon_sym_boolean] = ACTIONS(273), - [anon_sym_string] = ACTIONS(273), - [anon_sym_symbol] = ACTIONS(273), - [anon_sym_object] = ACTIONS(273), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(251), + [sym_private_property_identifier] = ACTIONS(253), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(289), + [anon_sym_readonly] = ACTIONS(291), + [anon_sym_get] = ACTIONS(293), + [anon_sym_set] = ACTIONS(293), + [anon_sym_declare] = ACTIONS(295), + [anon_sym_public] = ACTIONS(297), + [anon_sym_private] = ACTIONS(297), + [anon_sym_protected] = ACTIONS(297), + [anon_sym_override] = ACTIONS(299), + [anon_sym_module] = ACTIONS(301), + [anon_sym_any] = ACTIONS(303), + [anon_sym_number] = ACTIONS(303), + [anon_sym_boolean] = ACTIONS(303), + [anon_sym_string] = ACTIONS(303), + [anon_sym_symbol] = ACTIONS(303), + [anon_sym_object] = ACTIONS(303), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [7] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(17), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5874), - [sym_object_assignment_pattern] = STATE(4986), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5874), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5874), - [sym_spread_element] = STATE(5019), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2225), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_rest_pattern] = STATE(4986), - [sym_method_definition] = STATE(5019), - [sym_pair] = STATE(5019), - [sym_pair_pattern] = STATE(4986), - [sym__property_name] = STATE(3559), - [sym_computed_property_name] = STATE(3559), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_accessibility_modifier] = STATE(2724), - [sym_override_modifier] = STATE(2755), - [sym_type_parameters] = STATE(5338), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(3782), - [aux_sym_object_repeat1] = STATE(5031), - [aux_sym_object_pattern_repeat1] = STATE(5037), - [sym_identifier] = ACTIONS(231), - [anon_sym_export] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(235), - [anon_sym_type] = ACTIONS(237), - [anon_sym_namespace] = ACTIONS(239), + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(18), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5647), + [sym_object_assignment_pattern] = STATE(4665), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5647), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5647), + [sym_spread_element] = STATE(4687), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_rest_pattern] = STATE(4665), + [sym_method_definition] = STATE(4687), + [sym_pair] = STATE(4687), + [sym_pair_pattern] = STATE(4665), + [sym__property_name] = STATE(3705), + [sym_computed_property_name] = STATE(3705), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(253), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_accessibility_modifier] = STATE(2732), + [sym_override_modifier] = STATE(2743), + [sym_type_parameters] = STATE(5231), + [aux_sym_program_repeat1] = STATE(18), + [aux_sym_export_statement_repeat1] = STATE(3919), + [aux_sym_object_repeat1] = STATE(4618), + [aux_sym_object_pattern_repeat1] = STATE(4622), + [sym_identifier] = ACTIONS(227), + [anon_sym_export] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_type] = ACTIONS(233), + [anon_sym_namespace] = ACTIONS(235), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_COMMA] = ACTIONS(241), - [anon_sym_RBRACE] = ACTIONS(309), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_RBRACE] = ACTIONS(305), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(245), + [anon_sym_let] = ACTIONS(241), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), [anon_sym_if] = ACTIONS(35), @@ -21348,163 +21012,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(59), [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(247), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(249), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(251), - [anon_sym_using] = ACTIONS(81), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(243), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(245), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(247), + [anon_sym_using] = ACTIONS(79), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(255), - [sym_private_property_identifier] = ACTIONS(257), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(259), - [anon_sym_readonly] = ACTIONS(261), - [anon_sym_get] = ACTIONS(263), - [anon_sym_set] = ACTIONS(263), - [anon_sym_declare] = ACTIONS(265), - [anon_sym_public] = ACTIONS(267), - [anon_sym_private] = ACTIONS(267), - [anon_sym_protected] = ACTIONS(267), - [anon_sym_override] = ACTIONS(269), - [anon_sym_module] = ACTIONS(271), - [anon_sym_any] = ACTIONS(273), - [anon_sym_number] = ACTIONS(273), - [anon_sym_boolean] = ACTIONS(273), - [anon_sym_string] = ACTIONS(273), - [anon_sym_symbol] = ACTIONS(273), - [anon_sym_object] = ACTIONS(273), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(251), + [sym_private_property_identifier] = ACTIONS(253), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(255), + [anon_sym_readonly] = ACTIONS(257), + [anon_sym_get] = ACTIONS(259), + [anon_sym_set] = ACTIONS(259), + [anon_sym_declare] = ACTIONS(261), + [anon_sym_public] = ACTIONS(263), + [anon_sym_private] = ACTIONS(263), + [anon_sym_protected] = ACTIONS(263), + [anon_sym_override] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_any] = ACTIONS(269), + [anon_sym_number] = ACTIONS(269), + [anon_sym_boolean] = ACTIONS(269), + [anon_sym_string] = ACTIONS(269), + [anon_sym_symbol] = ACTIONS(269), + [anon_sym_object] = ACTIONS(269), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [8] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(24), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5874), - [sym_object_assignment_pattern] = STATE(4986), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5874), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5874), - [sym_spread_element] = STATE(4829), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2225), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_rest_pattern] = STATE(4986), - [sym_method_definition] = STATE(4829), - [sym_pair] = STATE(4829), - [sym_pair_pattern] = STATE(4986), - [sym__property_name] = STATE(3559), - [sym_computed_property_name] = STATE(3559), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_accessibility_modifier] = STATE(2724), - [sym_override_modifier] = STATE(2755), - [sym_type_parameters] = STATE(5338), - [aux_sym_program_repeat1] = STATE(24), - [aux_sym_export_statement_repeat1] = STATE(3782), - [aux_sym_object_repeat1] = STATE(4830), - [aux_sym_object_pattern_repeat1] = STATE(5037), - [sym_identifier] = ACTIONS(311), - [anon_sym_export] = ACTIONS(313), - [anon_sym_STAR] = ACTIONS(235), - [anon_sym_type] = ACTIONS(315), - [anon_sym_namespace] = ACTIONS(317), + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(21), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5647), + [sym_object_assignment_pattern] = STATE(4665), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5647), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5647), + [sym_spread_element] = STATE(4841), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2134), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_rest_pattern] = STATE(4665), + [sym_method_definition] = STATE(4841), + [sym_pair] = STATE(4841), + [sym_pair_pattern] = STATE(4665), + [sym__property_name] = STATE(3705), + [sym_computed_property_name] = STATE(3705), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(253), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_accessibility_modifier] = STATE(2732), + [sym_override_modifier] = STATE(2743), + [sym_type_parameters] = STATE(5231), + [aux_sym_program_repeat1] = STATE(21), + [aux_sym_export_statement_repeat1] = STATE(3919), + [aux_sym_object_repeat1] = STATE(4848), + [aux_sym_object_pattern_repeat1] = STATE(4622), + [sym_identifier] = ACTIONS(307), + [anon_sym_export] = ACTIONS(309), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_type] = ACTIONS(311), + [anon_sym_namespace] = ACTIONS(313), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_COMMA] = ACTIONS(241), - [anon_sym_RBRACE] = ACTIONS(283), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_RBRACE] = ACTIONS(281), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(319), + [anon_sym_let] = ACTIONS(315), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), [anon_sym_if] = ACTIONS(35), @@ -21522,307 +21184,303 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(59), [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(247), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(321), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(323), - [anon_sym_using] = ACTIONS(81), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(243), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(317), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(319), + [anon_sym_using] = ACTIONS(79), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(255), - [sym_private_property_identifier] = ACTIONS(257), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(325), - [anon_sym_readonly] = ACTIONS(327), - [anon_sym_get] = ACTIONS(329), - [anon_sym_set] = ACTIONS(329), - [anon_sym_declare] = ACTIONS(331), - [anon_sym_public] = ACTIONS(333), - [anon_sym_private] = ACTIONS(333), - [anon_sym_protected] = ACTIONS(333), - [anon_sym_override] = ACTIONS(335), - [anon_sym_module] = ACTIONS(337), - [anon_sym_any] = ACTIONS(339), - [anon_sym_number] = ACTIONS(339), - [anon_sym_boolean] = ACTIONS(339), - [anon_sym_string] = ACTIONS(339), - [anon_sym_symbol] = ACTIONS(339), - [anon_sym_object] = ACTIONS(339), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(251), + [sym_private_property_identifier] = ACTIONS(253), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(321), + [anon_sym_readonly] = ACTIONS(323), + [anon_sym_get] = ACTIONS(325), + [anon_sym_set] = ACTIONS(325), + [anon_sym_declare] = ACTIONS(327), + [anon_sym_public] = ACTIONS(329), + [anon_sym_private] = ACTIONS(329), + [anon_sym_protected] = ACTIONS(329), + [anon_sym_override] = ACTIONS(331), + [anon_sym_module] = ACTIONS(333), + [anon_sym_any] = ACTIONS(335), + [anon_sym_number] = ACTIONS(335), + [anon_sym_boolean] = ACTIONS(335), + [anon_sym_string] = ACTIONS(335), + [anon_sym_symbol] = ACTIONS(335), + [anon_sym_object] = ACTIONS(335), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [9] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(253), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3782), - [ts_builtin_sym_end] = ACTIONS(341), - [sym_identifier] = ACTIONS(343), - [anon_sym_export] = ACTIONS(346), - [anon_sym_default] = ACTIONS(349), - [anon_sym_type] = ACTIONS(351), - [anon_sym_namespace] = ACTIONS(354), - [anon_sym_LBRACE] = ACTIONS(357), - [anon_sym_RBRACE] = ACTIONS(341), - [anon_sym_typeof] = ACTIONS(360), - [anon_sym_import] = ACTIONS(363), - [anon_sym_with] = ACTIONS(366), - [anon_sym_var] = ACTIONS(369), - [anon_sym_let] = ACTIONS(372), - [anon_sym_const] = ACTIONS(375), - [anon_sym_BANG] = ACTIONS(378), - [anon_sym_if] = ACTIONS(381), - [anon_sym_switch] = ACTIONS(384), - [anon_sym_for] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(390), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_await] = ACTIONS(396), - [anon_sym_while] = ACTIONS(399), - [anon_sym_do] = ACTIONS(402), - [anon_sym_try] = ACTIONS(405), - [anon_sym_break] = ACTIONS(408), - [anon_sym_continue] = ACTIONS(411), - [anon_sym_debugger] = ACTIONS(414), - [anon_sym_return] = ACTIONS(417), - [anon_sym_throw] = ACTIONS(420), - [anon_sym_case] = ACTIONS(349), - [anon_sym_yield] = ACTIONS(423), - [anon_sym_LBRACK] = ACTIONS(426), - [sym_glimmer_opening_tag] = ACTIONS(429), - [anon_sym_DQUOTE] = ACTIONS(432), - [anon_sym_SQUOTE] = ACTIONS(435), - [anon_sym_class] = ACTIONS(438), - [anon_sym_async] = ACTIONS(441), - [anon_sym_function] = ACTIONS(444), - [anon_sym_new] = ACTIONS(447), - [anon_sym_using] = ACTIONS(450), - [anon_sym_PLUS] = ACTIONS(360), - [anon_sym_DASH] = ACTIONS(360), - [anon_sym_SLASH] = ACTIONS(453), - [anon_sym_LT] = ACTIONS(456), - [anon_sym_TILDE] = ACTIONS(378), - [anon_sym_void] = ACTIONS(360), - [anon_sym_delete] = ACTIONS(360), - [anon_sym_PLUS_PLUS] = ACTIONS(459), - [anon_sym_DASH_DASH] = ACTIONS(459), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(462), - [sym_number] = ACTIONS(465), - [sym_private_property_identifier] = ACTIONS(468), - [sym_this] = ACTIONS(471), - [sym_super] = ACTIONS(471), - [sym_true] = ACTIONS(471), - [sym_false] = ACTIONS(471), - [sym_null] = ACTIONS(471), - [sym_undefined] = ACTIONS(474), - [anon_sym_AT] = ACTIONS(477), - [anon_sym_static] = ACTIONS(480), - [anon_sym_readonly] = ACTIONS(480), - [anon_sym_get] = ACTIONS(480), - [anon_sym_set] = ACTIONS(480), - [anon_sym_declare] = ACTIONS(483), - [anon_sym_public] = ACTIONS(480), - [anon_sym_private] = ACTIONS(480), - [anon_sym_protected] = ACTIONS(480), - [anon_sym_override] = ACTIONS(480), - [anon_sym_module] = ACTIONS(486), - [anon_sym_any] = ACTIONS(480), - [anon_sym_number] = ACTIONS(480), - [anon_sym_boolean] = ACTIONS(480), - [anon_sym_string] = ACTIONS(480), - [anon_sym_symbol] = ACTIONS(480), - [anon_sym_object] = ACTIONS(480), - [anon_sym_abstract] = ACTIONS(489), - [anon_sym_interface] = ACTIONS(492), - [anon_sym_enum] = ACTIONS(495), + [aux_sym_export_statement_repeat1] = STATE(3919), + [ts_builtin_sym_end] = ACTIONS(337), + [sym_identifier] = ACTIONS(339), + [anon_sym_export] = ACTIONS(342), + [anon_sym_default] = ACTIONS(345), + [anon_sym_type] = ACTIONS(347), + [anon_sym_namespace] = ACTIONS(350), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(337), + [anon_sym_typeof] = ACTIONS(356), + [anon_sym_import] = ACTIONS(359), + [anon_sym_with] = ACTIONS(362), + [anon_sym_var] = ACTIONS(365), + [anon_sym_let] = ACTIONS(368), + [anon_sym_const] = ACTIONS(371), + [anon_sym_BANG] = ACTIONS(374), + [anon_sym_if] = ACTIONS(377), + [anon_sym_switch] = ACTIONS(380), + [anon_sym_for] = ACTIONS(383), + [anon_sym_LPAREN] = ACTIONS(386), + [anon_sym_SEMI] = ACTIONS(389), + [anon_sym_await] = ACTIONS(392), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(398), + [anon_sym_try] = ACTIONS(401), + [anon_sym_break] = ACTIONS(404), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_debugger] = ACTIONS(410), + [anon_sym_return] = ACTIONS(413), + [anon_sym_throw] = ACTIONS(416), + [anon_sym_case] = ACTIONS(345), + [anon_sym_yield] = ACTIONS(419), + [anon_sym_LBRACK] = ACTIONS(422), + [anon_sym_DQUOTE] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(428), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(434), + [anon_sym_function] = ACTIONS(437), + [anon_sym_new] = ACTIONS(440), + [anon_sym_using] = ACTIONS(443), + [anon_sym_PLUS] = ACTIONS(356), + [anon_sym_DASH] = ACTIONS(356), + [anon_sym_SLASH] = ACTIONS(446), + [anon_sym_LT] = ACTIONS(449), + [anon_sym_TILDE] = ACTIONS(374), + [anon_sym_void] = ACTIONS(356), + [anon_sym_delete] = ACTIONS(356), + [anon_sym_PLUS_PLUS] = ACTIONS(452), + [anon_sym_DASH_DASH] = ACTIONS(452), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(455), + [sym_number] = ACTIONS(458), + [sym_private_property_identifier] = ACTIONS(461), + [sym_this] = ACTIONS(464), + [sym_super] = ACTIONS(464), + [sym_true] = ACTIONS(464), + [sym_false] = ACTIONS(464), + [sym_null] = ACTIONS(464), + [sym_undefined] = ACTIONS(467), + [anon_sym_AT] = ACTIONS(470), + [anon_sym_static] = ACTIONS(473), + [anon_sym_readonly] = ACTIONS(473), + [anon_sym_get] = ACTIONS(473), + [anon_sym_set] = ACTIONS(473), + [anon_sym_declare] = ACTIONS(476), + [anon_sym_public] = ACTIONS(473), + [anon_sym_private] = ACTIONS(473), + [anon_sym_protected] = ACTIONS(473), + [anon_sym_override] = ACTIONS(473), + [anon_sym_module] = ACTIONS(479), + [anon_sym_any] = ACTIONS(473), + [anon_sym_number] = ACTIONS(473), + [anon_sym_boolean] = ACTIONS(473), + [anon_sym_string] = ACTIONS(473), + [anon_sym_symbol] = ACTIONS(473), + [anon_sym_object] = ACTIONS(473), + [anon_sym_abstract] = ACTIONS(482), + [anon_sym_interface] = ACTIONS(485), + [anon_sym_enum] = ACTIONS(488), [sym_html_comment] = ACTIONS(5), }, [10] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(13), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_program_repeat1] = STATE(13), - [aux_sym_export_statement_repeat1] = STATE(3782), + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(253), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(3919), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), - [anon_sym_default] = ACTIONS(498), + [anon_sym_default] = ACTIONS(491), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(500), + [anon_sym_RBRACE] = ACTIONS(493), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -21844,146 +21502,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_debugger] = ACTIONS(57), [anon_sym_return] = ACTIONS(59), [anon_sym_throw] = ACTIONS(61), - [anon_sym_case] = ACTIONS(498), + [anon_sym_case] = ACTIONS(491), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [11] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(12), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_program_repeat1] = STATE(12), - [aux_sym_export_statement_repeat1] = STATE(3782), + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(10), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(253), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_program_repeat1] = STATE(10), + [aux_sym_export_statement_repeat1] = STATE(3919), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), - [anon_sym_default] = ACTIONS(502), + [anon_sym_default] = ACTIONS(495), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(504), + [anon_sym_RBRACE] = ACTIONS(497), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -22005,146 +21661,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_debugger] = ACTIONS(57), [anon_sym_return] = ACTIONS(59), [anon_sym_throw] = ACTIONS(61), - [anon_sym_case] = ACTIONS(502), + [anon_sym_case] = ACTIONS(495), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [12] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3782), + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(13), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(253), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_program_repeat1] = STATE(13), + [aux_sym_export_statement_repeat1] = STATE(3919), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), - [anon_sym_default] = ACTIONS(506), + [anon_sym_default] = ACTIONS(499), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(508), + [anon_sym_RBRACE] = ACTIONS(501), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -22166,146 +21820,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_debugger] = ACTIONS(57), [anon_sym_return] = ACTIONS(59), [anon_sym_throw] = ACTIONS(61), - [anon_sym_case] = ACTIONS(506), + [anon_sym_case] = ACTIONS(499), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [13] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(253), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3782), + [aux_sym_export_statement_repeat1] = STATE(3919), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), - [anon_sym_default] = ACTIONS(510), + [anon_sym_default] = ACTIONS(503), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(512), + [anon_sym_RBRACE] = ACTIONS(505), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -22327,145 +21979,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_debugger] = ACTIONS(57), [anon_sym_return] = ACTIONS(59), [anon_sym_throw] = ACTIONS(61), - [anon_sym_case] = ACTIONS(510), + [anon_sym_case] = ACTIONS(503), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [14] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(17), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(3782), + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(253), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(3919), + [ts_builtin_sym_end] = ACTIONS(507), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(514), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -22489,137 +22139,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [15] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(253), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3782), - [ts_builtin_sym_end] = ACTIONS(516), + [aux_sym_export_statement_repeat1] = STATE(3919), + [ts_builtin_sym_end] = ACTIONS(509), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -22648,142 +22296,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [16] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(253), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3782), - [ts_builtin_sym_end] = ACTIONS(518), + [aux_sym_export_statement_repeat1] = STATE(3919), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(511), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -22807,142 +22453,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [17] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3782), + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(16), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(253), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_program_repeat1] = STATE(16), + [aux_sym_export_statement_repeat1] = STATE(3919), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(520), + [anon_sym_RBRACE] = ACTIONS(513), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -22966,142 +22610,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [18] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(15), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(3782), - [ts_builtin_sym_end] = ACTIONS(518), + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(253), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(3919), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(515), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -23125,142 +22767,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [19] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(253), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3782), + [aux_sym_export_statement_repeat1] = STATE(3919), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(522), + [anon_sym_RBRACE] = ACTIONS(517), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -23284,142 +22924,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [20] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), [sym_statement] = STATE(19), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(253), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), [aux_sym_program_repeat1] = STATE(19), - [aux_sym_export_statement_repeat1] = STATE(3782), + [aux_sym_export_statement_repeat1] = STATE(3919), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(524), + [anon_sym_RBRACE] = ACTIONS(519), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -23443,142 +23081,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [21] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(22), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_program_repeat1] = STATE(22), - [aux_sym_export_statement_repeat1] = STATE(3782), + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(253), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(3919), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(526), + [anon_sym_RBRACE] = ACTIONS(521), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -23602,142 +23238,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [22] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3782), + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(21), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(253), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_program_repeat1] = STATE(21), + [aux_sym_export_statement_repeat1] = STATE(3919), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(528), + [anon_sym_RBRACE] = ACTIONS(523), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -23761,142 +23395,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [23] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(24), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_program_repeat1] = STATE(24), - [aux_sym_export_statement_repeat1] = STATE(3782), + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(18), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(253), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_program_repeat1] = STATE(18), + [aux_sym_export_statement_repeat1] = STATE(3919), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(530), + [anon_sym_RBRACE] = ACTIONS(525), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -23920,142 +23552,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [24] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(253), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3782), + [aux_sym_export_statement_repeat1] = STATE(3919), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(532), + [anon_sym_RBRACE] = ACTIONS(527), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -24079,142 +23709,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [25] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3782), + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(24), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(253), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_program_repeat1] = STATE(24), + [aux_sym_export_statement_repeat1] = STATE(3919), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(534), + [anon_sym_RBRACE] = ACTIONS(529), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -24238,142 +23866,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [26] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(25), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_program_repeat1] = STATE(25), - [aux_sym_export_statement_repeat1] = STATE(3782), + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(253), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(3919), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(531), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -24397,142 +24023,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [27] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3782), + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(29), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(253), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_program_repeat1] = STATE(29), + [aux_sym_export_statement_repeat1] = STATE(3919), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(538), + [anon_sym_RBRACE] = ACTIONS(533), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -24556,142 +24180,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [28] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(30), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_program_repeat1] = STATE(30), - [aux_sym_export_statement_repeat1] = STATE(3782), + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(26), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(253), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_program_repeat1] = STATE(26), + [aux_sym_export_statement_repeat1] = STATE(3919), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(540), + [anon_sym_RBRACE] = ACTIONS(535), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -24715,142 +24337,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [29] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(27), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_program_repeat1] = STATE(27), - [aux_sym_export_statement_repeat1] = STATE(3782), + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(253), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(3919), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(542), + [anon_sym_RBRACE] = ACTIONS(537), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -24874,142 +24494,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [30] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3782), + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(14), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(253), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_program_repeat1] = STATE(14), + [aux_sym_export_statement_repeat1] = STATE(3919), + [ts_builtin_sym_end] = ACTIONS(509), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(544), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -25033,154 +24651,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [31] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(871), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3822), - [sym_identifier] = ACTIONS(546), - [anon_sym_export] = ACTIONS(548), - [anon_sym_type] = ACTIONS(550), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(554), + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(895), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(2410), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(3805), + [sym_identifier] = ACTIONS(539), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(543), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(547), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(556), + [anon_sym_with] = ACTIONS(549), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(558), + [anon_sym_let] = ACTIONS(551), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(560), + [anon_sym_if] = ACTIONS(553), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(562), + [anon_sym_for] = ACTIONS(555), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(564), + [anon_sym_while] = ACTIONS(557), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -25190,154 +24806,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(568), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(572), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(559), + [anon_sym_async] = ACTIONS(561), + [anon_sym_function] = ACTIONS(563), + [anon_sym_new] = ACTIONS(565), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(574), - [anon_sym_readonly] = ACTIONS(574), - [anon_sym_get] = ACTIONS(574), - [anon_sym_set] = ACTIONS(574), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(574), - [anon_sym_private] = ACTIONS(574), - [anon_sym_protected] = ACTIONS(574), - [anon_sym_override] = ACTIONS(574), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(574), - [anon_sym_number] = ACTIONS(574), - [anon_sym_boolean] = ACTIONS(574), - [anon_sym_string] = ACTIONS(574), - [anon_sym_symbol] = ACTIONS(574), - [anon_sym_object] = ACTIONS(574), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(567), + [anon_sym_readonly] = ACTIONS(567), + [anon_sym_get] = ACTIONS(567), + [anon_sym_set] = ACTIONS(567), + [anon_sym_declare] = ACTIONS(569), + [anon_sym_public] = ACTIONS(567), + [anon_sym_private] = ACTIONS(567), + [anon_sym_protected] = ACTIONS(567), + [anon_sym_override] = ACTIONS(567), + [anon_sym_module] = ACTIONS(571), + [anon_sym_any] = ACTIONS(567), + [anon_sym_number] = ACTIONS(567), + [anon_sym_boolean] = ACTIONS(567), + [anon_sym_string] = ACTIONS(567), + [anon_sym_symbol] = ACTIONS(567), + [anon_sym_object] = ACTIONS(567), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [32] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(5187), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3873), - [sym_identifier] = ACTIONS(580), - [anon_sym_export] = ACTIONS(582), - [anon_sym_type] = ACTIONS(584), - [anon_sym_namespace] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(554), + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(899), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(2410), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(3867), + [sym_identifier] = ACTIONS(573), + [anon_sym_export] = ACTIONS(575), + [anon_sym_type] = ACTIONS(577), + [anon_sym_namespace] = ACTIONS(579), + [anon_sym_LBRACE] = ACTIONS(547), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(588), + [anon_sym_with] = ACTIONS(581), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(590), + [anon_sym_let] = ACTIONS(583), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(592), + [anon_sym_if] = ACTIONS(585), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(594), + [anon_sym_for] = ACTIONS(587), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(596), + [anon_sym_while] = ACTIONS(589), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -25347,135 +24961,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(598), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(600), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(559), + [anon_sym_async] = ACTIONS(591), + [anon_sym_function] = ACTIONS(563), + [anon_sym_new] = ACTIONS(593), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(602), - [anon_sym_readonly] = ACTIONS(602), - [anon_sym_get] = ACTIONS(602), - [anon_sym_set] = ACTIONS(602), - [anon_sym_declare] = ACTIONS(604), - [anon_sym_public] = ACTIONS(602), - [anon_sym_private] = ACTIONS(602), - [anon_sym_protected] = ACTIONS(602), - [anon_sym_override] = ACTIONS(602), - [anon_sym_module] = ACTIONS(606), - [anon_sym_any] = ACTIONS(602), - [anon_sym_number] = ACTIONS(602), - [anon_sym_boolean] = ACTIONS(602), - [anon_sym_string] = ACTIONS(602), - [anon_sym_symbol] = ACTIONS(602), - [anon_sym_object] = ACTIONS(602), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(595), + [anon_sym_readonly] = ACTIONS(595), + [anon_sym_get] = ACTIONS(595), + [anon_sym_set] = ACTIONS(595), + [anon_sym_declare] = ACTIONS(597), + [anon_sym_public] = ACTIONS(595), + [anon_sym_private] = ACTIONS(595), + [anon_sym_protected] = ACTIONS(595), + [anon_sym_override] = ACTIONS(595), + [anon_sym_module] = ACTIONS(599), + [anon_sym_any] = ACTIONS(595), + [anon_sym_number] = ACTIONS(595), + [anon_sym_boolean] = ACTIONS(595), + [anon_sym_string] = ACTIONS(595), + [anon_sym_symbol] = ACTIONS(595), + [anon_sym_object] = ACTIONS(595), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [33] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(805), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3782), + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(854), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(253), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(3919), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -25504,135 +25116,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [34] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(767), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3782), + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(861), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(253), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(3919), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -25661,135 +25271,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [35] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(842), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3782), + [sym_import] = STATE(3645), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2302), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3596), + [sym_assignment_pattern] = STATE(5112), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3596), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_nested_identifier] = STATE(5753), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1268), + [sym_subscript_expression] = STATE(1268), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3596), + [sym_spread_element] = STATE(5119), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(2313), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(4380), + [sym_pattern] = STATE(4530), + [sym_rest_pattern] = STATE(3991), + [sym_non_null_expression] = STATE(1268), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3263), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3806), + [sym_tuple_parameter] = STATE(5066), + [sym_optional_tuple_parameter] = STATE(5066), + [sym_optional_type] = STATE(5066), + [sym_rest_type] = STATE(5066), + [sym__tuple_type_member] = STATE(5066), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5560), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [aux_sym_export_statement_repeat1] = STATE(4590), + [aux_sym_array_repeat1] = STATE(5132), + [aux_sym_array_pattern_repeat1] = STATE(5134), + [sym_identifier] = ACTIONS(601), + [anon_sym_export] = ACTIONS(603), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_type] = ACTIONS(603), + [anon_sym_namespace] = ACTIONS(607), + [anon_sym_LBRACE] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(611), + [anon_sym_typeof] = ACTIONS(613), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(603), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(621), + [anon_sym_RBRACK] = ACTIONS(623), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(627), + [anon_sym_using] = ACTIONS(629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(631), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(643), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(188), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(651), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(653), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(603), + [anon_sym_readonly] = ACTIONS(655), + [anon_sym_get] = ACTIONS(603), + [anon_sym_set] = ACTIONS(603), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_declare] = ACTIONS(603), + [anon_sym_public] = ACTIONS(603), + [anon_sym_private] = ACTIONS(603), + [anon_sym_protected] = ACTIONS(603), + [anon_sym_override] = ACTIONS(603), + [anon_sym_module] = ACTIONS(603), + [anon_sym_any] = ACTIONS(659), + [anon_sym_number] = ACTIONS(659), + [anon_sym_boolean] = ACTIONS(659), + [anon_sym_string] = ACTIONS(659), + [anon_sym_symbol] = ACTIONS(659), + [anon_sym_object] = ACTIONS(659), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [sym_html_comment] = ACTIONS(5), + }, + [36] = { + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(822), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(253), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(3919), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -25818,154 +25581,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [36] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(856), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3782), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), + [37] = { + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(5774), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(2410), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(3805), + [sym_identifier] = ACTIONS(539), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(543), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(547), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(25), + [anon_sym_with] = ACTIONS(549), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), + [anon_sym_let] = ACTIONS(551), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(35), + [anon_sym_if] = ACTIONS(553), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), + [anon_sym_for] = ACTIONS(555), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(47), + [anon_sym_while] = ACTIONS(557), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -25975,135 +25736,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(559), + [anon_sym_async] = ACTIONS(561), + [anon_sym_function] = ACTIONS(563), + [anon_sym_new] = ACTIONS(565), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(567), + [anon_sym_readonly] = ACTIONS(567), + [anon_sym_get] = ACTIONS(567), + [anon_sym_set] = ACTIONS(567), + [anon_sym_declare] = ACTIONS(569), + [anon_sym_public] = ACTIONS(567), + [anon_sym_private] = ACTIONS(567), + [anon_sym_protected] = ACTIONS(567), + [anon_sym_override] = ACTIONS(567), + [anon_sym_module] = ACTIONS(571), + [anon_sym_any] = ACTIONS(567), + [anon_sym_number] = ACTIONS(567), + [anon_sym_boolean] = ACTIONS(567), + [anon_sym_string] = ACTIONS(567), + [anon_sym_symbol] = ACTIONS(567), + [anon_sym_object] = ACTIONS(567), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [37] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(891), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3782), + [38] = { + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(860), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(253), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(3919), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -26132,135 +25891,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [38] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(899), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3782), + [39] = { + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(878), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(253), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(3919), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -26289,135 +26046,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [39] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(782), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3782), + [40] = { + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(881), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(253), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(3919), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -26446,135 +26201,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [40] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(791), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3782), + [41] = { + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(882), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(253), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(3919), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -26603,135 +26356,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [41] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(793), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3782), + [42] = { + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(884), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(253), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(3919), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -26760,135 +26511,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [42] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(794), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3782), + [43] = { + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(894), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(253), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(3919), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -26917,135 +26666,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [43] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(800), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3782), + [44] = { + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(895), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(253), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(3919), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -27074,135 +26821,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [44] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(781), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3782), + [45] = { + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(897), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(253), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(3919), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -27231,135 +26976,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [45] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(801), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3782), + [46] = { + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(899), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(253), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(3919), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -27388,154 +27131,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [46] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(801), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3822), - [sym_identifier] = ACTIONS(546), - [anon_sym_export] = ACTIONS(548), - [anon_sym_type] = ACTIONS(550), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(554), + [47] = { + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(878), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(2410), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(3805), + [sym_identifier] = ACTIONS(539), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(543), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(547), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(556), + [anon_sym_with] = ACTIONS(549), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(558), + [anon_sym_let] = ACTIONS(551), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(560), + [anon_sym_if] = ACTIONS(553), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(562), + [anon_sym_for] = ACTIONS(555), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(564), + [anon_sym_while] = ACTIONS(557), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -27545,154 +27286,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(568), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(572), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(559), + [anon_sym_async] = ACTIONS(561), + [anon_sym_function] = ACTIONS(563), + [anon_sym_new] = ACTIONS(565), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(574), - [anon_sym_readonly] = ACTIONS(574), - [anon_sym_get] = ACTIONS(574), - [anon_sym_set] = ACTIONS(574), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(574), - [anon_sym_private] = ACTIONS(574), - [anon_sym_protected] = ACTIONS(574), - [anon_sym_override] = ACTIONS(574), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(574), - [anon_sym_number] = ACTIONS(574), - [anon_sym_boolean] = ACTIONS(574), - [anon_sym_string] = ACTIONS(574), - [anon_sym_symbol] = ACTIONS(574), - [anon_sym_object] = ACTIONS(574), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(567), + [anon_sym_readonly] = ACTIONS(567), + [anon_sym_get] = ACTIONS(567), + [anon_sym_set] = ACTIONS(567), + [anon_sym_declare] = ACTIONS(569), + [anon_sym_public] = ACTIONS(567), + [anon_sym_private] = ACTIONS(567), + [anon_sym_protected] = ACTIONS(567), + [anon_sym_override] = ACTIONS(567), + [anon_sym_module] = ACTIONS(571), + [anon_sym_any] = ACTIONS(567), + [anon_sym_number] = ACTIONS(567), + [anon_sym_boolean] = ACTIONS(567), + [anon_sym_string] = ACTIONS(567), + [anon_sym_symbol] = ACTIONS(567), + [anon_sym_object] = ACTIONS(567), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [47] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(805), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3822), - [sym_identifier] = ACTIONS(546), - [anon_sym_export] = ACTIONS(548), - [anon_sym_type] = ACTIONS(550), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(554), + [48] = { + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(826), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(2410), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(3805), + [sym_identifier] = ACTIONS(539), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(543), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(547), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(556), + [anon_sym_with] = ACTIONS(549), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(558), + [anon_sym_let] = ACTIONS(551), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(560), + [anon_sym_if] = ACTIONS(553), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(562), + [anon_sym_for] = ACTIONS(555), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(564), + [anon_sym_while] = ACTIONS(557), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -27702,154 +27441,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(568), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(572), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(559), + [anon_sym_async] = ACTIONS(561), + [anon_sym_function] = ACTIONS(563), + [anon_sym_new] = ACTIONS(565), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(574), - [anon_sym_readonly] = ACTIONS(574), - [anon_sym_get] = ACTIONS(574), - [anon_sym_set] = ACTIONS(574), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(574), - [anon_sym_private] = ACTIONS(574), - [anon_sym_protected] = ACTIONS(574), - [anon_sym_override] = ACTIONS(574), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(574), - [anon_sym_number] = ACTIONS(574), - [anon_sym_boolean] = ACTIONS(574), - [anon_sym_string] = ACTIONS(574), - [anon_sym_symbol] = ACTIONS(574), - [anon_sym_object] = ACTIONS(574), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(567), + [anon_sym_readonly] = ACTIONS(567), + [anon_sym_get] = ACTIONS(567), + [anon_sym_set] = ACTIONS(567), + [anon_sym_declare] = ACTIONS(569), + [anon_sym_public] = ACTIONS(567), + [anon_sym_private] = ACTIONS(567), + [anon_sym_protected] = ACTIONS(567), + [anon_sym_override] = ACTIONS(567), + [anon_sym_module] = ACTIONS(571), + [anon_sym_any] = ACTIONS(567), + [anon_sym_number] = ACTIONS(567), + [anon_sym_boolean] = ACTIONS(567), + [anon_sym_string] = ACTIONS(567), + [anon_sym_symbol] = ACTIONS(567), + [anon_sym_object] = ACTIONS(567), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [48] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(4760), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3873), - [sym_identifier] = ACTIONS(580), - [anon_sym_export] = ACTIONS(582), - [anon_sym_type] = ACTIONS(584), - [anon_sym_namespace] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(554), + [49] = { + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(4783), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(2410), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(3867), + [sym_identifier] = ACTIONS(573), + [anon_sym_export] = ACTIONS(575), + [anon_sym_type] = ACTIONS(577), + [anon_sym_namespace] = ACTIONS(579), + [anon_sym_LBRACE] = ACTIONS(547), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(588), + [anon_sym_with] = ACTIONS(581), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(590), + [anon_sym_let] = ACTIONS(583), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(592), + [anon_sym_if] = ACTIONS(585), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(594), + [anon_sym_for] = ACTIONS(587), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(596), + [anon_sym_while] = ACTIONS(589), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -27859,154 +27596,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(598), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(600), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(559), + [anon_sym_async] = ACTIONS(591), + [anon_sym_function] = ACTIONS(563), + [anon_sym_new] = ACTIONS(593), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(602), - [anon_sym_readonly] = ACTIONS(602), - [anon_sym_get] = ACTIONS(602), - [anon_sym_set] = ACTIONS(602), - [anon_sym_declare] = ACTIONS(604), - [anon_sym_public] = ACTIONS(602), - [anon_sym_private] = ACTIONS(602), - [anon_sym_protected] = ACTIONS(602), - [anon_sym_override] = ACTIONS(602), - [anon_sym_module] = ACTIONS(606), - [anon_sym_any] = ACTIONS(602), - [anon_sym_number] = ACTIONS(602), - [anon_sym_boolean] = ACTIONS(602), - [anon_sym_string] = ACTIONS(602), - [anon_sym_symbol] = ACTIONS(602), - [anon_sym_object] = ACTIONS(602), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(595), + [anon_sym_readonly] = ACTIONS(595), + [anon_sym_get] = ACTIONS(595), + [anon_sym_set] = ACTIONS(595), + [anon_sym_declare] = ACTIONS(597), + [anon_sym_public] = ACTIONS(595), + [anon_sym_private] = ACTIONS(595), + [anon_sym_protected] = ACTIONS(595), + [anon_sym_override] = ACTIONS(595), + [anon_sym_module] = ACTIONS(599), + [anon_sym_any] = ACTIONS(595), + [anon_sym_number] = ACTIONS(595), + [anon_sym_boolean] = ACTIONS(595), + [anon_sym_string] = ACTIONS(595), + [anon_sym_symbol] = ACTIONS(595), + [anon_sym_object] = ACTIONS(595), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [49] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(856), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3822), - [sym_identifier] = ACTIONS(546), - [anon_sym_export] = ACTIONS(548), - [anon_sym_type] = ACTIONS(550), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(554), + [50] = { + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(848), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(2410), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(3805), + [sym_identifier] = ACTIONS(539), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(543), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(547), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(556), + [anon_sym_with] = ACTIONS(549), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(558), + [anon_sym_let] = ACTIONS(551), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(560), + [anon_sym_if] = ACTIONS(553), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(562), + [anon_sym_for] = ACTIONS(555), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(564), + [anon_sym_while] = ACTIONS(557), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -28016,154 +27751,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(568), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(572), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(559), + [anon_sym_async] = ACTIONS(561), + [anon_sym_function] = ACTIONS(563), + [anon_sym_new] = ACTIONS(565), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(574), - [anon_sym_readonly] = ACTIONS(574), - [anon_sym_get] = ACTIONS(574), - [anon_sym_set] = ACTIONS(574), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(574), - [anon_sym_private] = ACTIONS(574), - [anon_sym_protected] = ACTIONS(574), - [anon_sym_override] = ACTIONS(574), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(574), - [anon_sym_number] = ACTIONS(574), - [anon_sym_boolean] = ACTIONS(574), - [anon_sym_string] = ACTIONS(574), - [anon_sym_symbol] = ACTIONS(574), - [anon_sym_object] = ACTIONS(574), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(567), + [anon_sym_readonly] = ACTIONS(567), + [anon_sym_get] = ACTIONS(567), + [anon_sym_set] = ACTIONS(567), + [anon_sym_declare] = ACTIONS(569), + [anon_sym_public] = ACTIONS(567), + [anon_sym_private] = ACTIONS(567), + [anon_sym_protected] = ACTIONS(567), + [anon_sym_override] = ACTIONS(567), + [anon_sym_module] = ACTIONS(571), + [anon_sym_any] = ACTIONS(567), + [anon_sym_number] = ACTIONS(567), + [anon_sym_boolean] = ACTIONS(567), + [anon_sym_string] = ACTIONS(567), + [anon_sym_symbol] = ACTIONS(567), + [anon_sym_object] = ACTIONS(567), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [50] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(781), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3822), - [sym_identifier] = ACTIONS(546), - [anon_sym_export] = ACTIONS(548), - [anon_sym_type] = ACTIONS(550), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(554), + [51] = { + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(861), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(2410), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(3805), + [sym_identifier] = ACTIONS(539), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(543), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(547), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(556), + [anon_sym_with] = ACTIONS(549), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(558), + [anon_sym_let] = ACTIONS(551), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(560), + [anon_sym_if] = ACTIONS(553), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(562), + [anon_sym_for] = ACTIONS(555), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(564), + [anon_sym_while] = ACTIONS(557), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -28173,154 +27906,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(568), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(572), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(559), + [anon_sym_async] = ACTIONS(561), + [anon_sym_function] = ACTIONS(563), + [anon_sym_new] = ACTIONS(565), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(574), - [anon_sym_readonly] = ACTIONS(574), - [anon_sym_get] = ACTIONS(574), - [anon_sym_set] = ACTIONS(574), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(574), - [anon_sym_private] = ACTIONS(574), - [anon_sym_protected] = ACTIONS(574), - [anon_sym_override] = ACTIONS(574), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(574), - [anon_sym_number] = ACTIONS(574), - [anon_sym_boolean] = ACTIONS(574), - [anon_sym_string] = ACTIONS(574), - [anon_sym_symbol] = ACTIONS(574), - [anon_sym_object] = ACTIONS(574), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(567), + [anon_sym_readonly] = ACTIONS(567), + [anon_sym_get] = ACTIONS(567), + [anon_sym_set] = ACTIONS(567), + [anon_sym_declare] = ACTIONS(569), + [anon_sym_public] = ACTIONS(567), + [anon_sym_private] = ACTIONS(567), + [anon_sym_protected] = ACTIONS(567), + [anon_sym_override] = ACTIONS(567), + [anon_sym_module] = ACTIONS(571), + [anon_sym_any] = ACTIONS(567), + [anon_sym_number] = ACTIONS(567), + [anon_sym_boolean] = ACTIONS(567), + [anon_sym_string] = ACTIONS(567), + [anon_sym_symbol] = ACTIONS(567), + [anon_sym_object] = ACTIONS(567), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [51] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(804), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3822), - [sym_identifier] = ACTIONS(546), - [anon_sym_export] = ACTIONS(548), - [anon_sym_type] = ACTIONS(550), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(554), + [52] = { + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(854), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(2410), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(3805), + [sym_identifier] = ACTIONS(539), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(543), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(547), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(556), + [anon_sym_with] = ACTIONS(549), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(558), + [anon_sym_let] = ACTIONS(551), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(560), + [anon_sym_if] = ACTIONS(553), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(562), + [anon_sym_for] = ACTIONS(555), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(564), + [anon_sym_while] = ACTIONS(557), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -28330,311 +28061,307 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(568), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(572), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(559), + [anon_sym_async] = ACTIONS(561), + [anon_sym_function] = ACTIONS(563), + [anon_sym_new] = ACTIONS(565), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(574), - [anon_sym_readonly] = ACTIONS(574), - [anon_sym_get] = ACTIONS(574), - [anon_sym_set] = ACTIONS(574), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(574), - [anon_sym_private] = ACTIONS(574), - [anon_sym_protected] = ACTIONS(574), - [anon_sym_override] = ACTIONS(574), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(574), - [anon_sym_number] = ACTIONS(574), - [anon_sym_boolean] = ACTIONS(574), - [anon_sym_string] = ACTIONS(574), - [anon_sym_symbol] = ACTIONS(574), - [anon_sym_object] = ACTIONS(574), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(567), + [anon_sym_readonly] = ACTIONS(567), + [anon_sym_get] = ACTIONS(567), + [anon_sym_set] = ACTIONS(567), + [anon_sym_declare] = ACTIONS(569), + [anon_sym_public] = ACTIONS(567), + [anon_sym_private] = ACTIONS(567), + [anon_sym_protected] = ACTIONS(567), + [anon_sym_override] = ACTIONS(567), + [anon_sym_module] = ACTIONS(571), + [anon_sym_any] = ACTIONS(567), + [anon_sym_number] = ACTIONS(567), + [anon_sym_boolean] = ACTIONS(567), + [anon_sym_string] = ACTIONS(567), + [anon_sym_symbol] = ACTIONS(567), + [anon_sym_object] = ACTIONS(567), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [52] = { - [sym_import] = STATE(3753), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2129), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3740), - [sym_assignment_pattern] = STATE(5171), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3740), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1261), - [sym_subscript_expression] = STATE(1261), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3740), - [sym_spread_element] = STATE(4897), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2237), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4390), - [sym_pattern] = STATE(4569), - [sym_rest_pattern] = STATE(4105), - [sym_non_null_expression] = STATE(1261), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3817), - [sym_tuple_parameter] = STATE(5205), - [sym_optional_tuple_parameter] = STATE(5205), - [sym_optional_type] = STATE(5205), - [sym_rest_type] = STATE(5205), - [sym__tuple_type_member] = STATE(5205), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5561), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(4582), - [aux_sym_array_repeat1] = STATE(4906), - [aux_sym_array_pattern_repeat1] = STATE(5199), - [sym_identifier] = ACTIONS(608), - [anon_sym_export] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(616), - [anon_sym_COMMA] = ACTIONS(618), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(610), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_RBRACK] = ACTIONS(630), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(634), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(638), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(648), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(191), - [sym_number] = ACTIONS(193), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(656), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(201), - [sym_false] = ACTIONS(201), - [sym_null] = ACTIONS(201), - [sym_undefined] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(660), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(664), - [anon_sym_number] = ACTIONS(664), - [anon_sym_boolean] = ACTIONS(664), - [anon_sym_string] = ACTIONS(664), - [anon_sym_symbol] = ACTIONS(664), - [anon_sym_object] = ACTIONS(664), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [53] = { + [sym_import] = STATE(3645), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2146), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3596), + [sym_assignment_pattern] = STATE(5112), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3596), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_nested_identifier] = STATE(5753), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1268), + [sym_subscript_expression] = STATE(1268), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3596), + [sym_spread_element] = STATE(4912), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(2313), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(4380), + [sym_pattern] = STATE(4530), + [sym_rest_pattern] = STATE(3991), + [sym_non_null_expression] = STATE(1268), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3263), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3806), + [sym_tuple_parameter] = STATE(5066), + [sym_optional_tuple_parameter] = STATE(5066), + [sym_optional_type] = STATE(5066), + [sym_rest_type] = STATE(5066), + [sym__tuple_type_member] = STATE(5066), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5560), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [aux_sym_export_statement_repeat1] = STATE(4590), + [aux_sym_array_repeat1] = STATE(4921), + [aux_sym_array_pattern_repeat1] = STATE(5134), + [sym_identifier] = ACTIONS(601), + [anon_sym_export] = ACTIONS(603), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_type] = ACTIONS(603), + [anon_sym_namespace] = ACTIONS(607), + [anon_sym_LBRACE] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(611), + [anon_sym_typeof] = ACTIONS(613), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(603), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(621), + [anon_sym_RBRACK] = ACTIONS(667), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(627), + [anon_sym_using] = ACTIONS(629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(631), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(643), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(188), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(651), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(653), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(603), + [anon_sym_readonly] = ACTIONS(655), + [anon_sym_get] = ACTIONS(603), + [anon_sym_set] = ACTIONS(603), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_declare] = ACTIONS(603), + [anon_sym_public] = ACTIONS(603), + [anon_sym_private] = ACTIONS(603), + [anon_sym_protected] = ACTIONS(603), + [anon_sym_override] = ACTIONS(603), + [anon_sym_module] = ACTIONS(603), + [anon_sym_any] = ACTIONS(659), + [anon_sym_number] = ACTIONS(659), + [anon_sym_boolean] = ACTIONS(659), + [anon_sym_string] = ACTIONS(659), + [anon_sym_symbol] = ACTIONS(659), + [anon_sym_object] = ACTIONS(659), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, - [53] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(842), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3822), - [sym_identifier] = ACTIONS(546), - [anon_sym_export] = ACTIONS(548), - [anon_sym_type] = ACTIONS(550), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(554), + [54] = { + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(822), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(2410), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(3805), + [sym_identifier] = ACTIONS(539), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(543), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(547), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(556), + [anon_sym_with] = ACTIONS(549), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(558), + [anon_sym_let] = ACTIONS(551), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(560), + [anon_sym_if] = ACTIONS(553), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(562), + [anon_sym_for] = ACTIONS(555), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(564), + [anon_sym_while] = ACTIONS(557), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -28644,154 +28371,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(568), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(572), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(559), + [anon_sym_async] = ACTIONS(561), + [anon_sym_function] = ACTIONS(563), + [anon_sym_new] = ACTIONS(565), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(574), - [anon_sym_readonly] = ACTIONS(574), - [anon_sym_get] = ACTIONS(574), - [anon_sym_set] = ACTIONS(574), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(574), - [anon_sym_private] = ACTIONS(574), - [anon_sym_protected] = ACTIONS(574), - [anon_sym_override] = ACTIONS(574), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(574), - [anon_sym_number] = ACTIONS(574), - [anon_sym_boolean] = ACTIONS(574), - [anon_sym_string] = ACTIONS(574), - [anon_sym_symbol] = ACTIONS(574), - [anon_sym_object] = ACTIONS(574), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(567), + [anon_sym_readonly] = ACTIONS(567), + [anon_sym_get] = ACTIONS(567), + [anon_sym_set] = ACTIONS(567), + [anon_sym_declare] = ACTIONS(569), + [anon_sym_public] = ACTIONS(567), + [anon_sym_private] = ACTIONS(567), + [anon_sym_protected] = ACTIONS(567), + [anon_sym_override] = ACTIONS(567), + [anon_sym_module] = ACTIONS(571), + [anon_sym_any] = ACTIONS(567), + [anon_sym_number] = ACTIONS(567), + [anon_sym_boolean] = ACTIONS(567), + [anon_sym_string] = ACTIONS(567), + [anon_sym_symbol] = ACTIONS(567), + [anon_sym_object] = ACTIONS(567), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [54] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(891), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3822), - [sym_identifier] = ACTIONS(546), - [anon_sym_export] = ACTIONS(548), - [anon_sym_type] = ACTIONS(550), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(554), + [55] = { + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(860), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(2410), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(3805), + [sym_identifier] = ACTIONS(539), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(543), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(547), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(556), + [anon_sym_with] = ACTIONS(549), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(558), + [anon_sym_let] = ACTIONS(551), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(560), + [anon_sym_if] = ACTIONS(553), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(562), + [anon_sym_for] = ACTIONS(555), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(564), + [anon_sym_while] = ACTIONS(557), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -28801,154 +28526,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(568), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(572), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(559), + [anon_sym_async] = ACTIONS(561), + [anon_sym_function] = ACTIONS(563), + [anon_sym_new] = ACTIONS(565), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(574), - [anon_sym_readonly] = ACTIONS(574), - [anon_sym_get] = ACTIONS(574), - [anon_sym_set] = ACTIONS(574), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(574), - [anon_sym_private] = ACTIONS(574), - [anon_sym_protected] = ACTIONS(574), - [anon_sym_override] = ACTIONS(574), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(574), - [anon_sym_number] = ACTIONS(574), - [anon_sym_boolean] = ACTIONS(574), - [anon_sym_string] = ACTIONS(574), - [anon_sym_symbol] = ACTIONS(574), - [anon_sym_object] = ACTIONS(574), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(567), + [anon_sym_readonly] = ACTIONS(567), + [anon_sym_get] = ACTIONS(567), + [anon_sym_set] = ACTIONS(567), + [anon_sym_declare] = ACTIONS(569), + [anon_sym_public] = ACTIONS(567), + [anon_sym_private] = ACTIONS(567), + [anon_sym_protected] = ACTIONS(567), + [anon_sym_override] = ACTIONS(567), + [anon_sym_module] = ACTIONS(571), + [anon_sym_any] = ACTIONS(567), + [anon_sym_number] = ACTIONS(567), + [anon_sym_boolean] = ACTIONS(567), + [anon_sym_string] = ACTIONS(567), + [anon_sym_symbol] = ACTIONS(567), + [anon_sym_object] = ACTIONS(567), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [55] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(899), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3822), - [sym_identifier] = ACTIONS(546), - [anon_sym_export] = ACTIONS(548), - [anon_sym_type] = ACTIONS(550), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(554), + [56] = { + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(881), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(2410), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(3805), + [sym_identifier] = ACTIONS(539), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(543), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(547), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(556), + [anon_sym_with] = ACTIONS(549), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(558), + [anon_sym_let] = ACTIONS(551), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(560), + [anon_sym_if] = ACTIONS(553), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(562), + [anon_sym_for] = ACTIONS(555), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(564), + [anon_sym_while] = ACTIONS(557), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -28958,154 +28681,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(568), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(572), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(559), + [anon_sym_async] = ACTIONS(561), + [anon_sym_function] = ACTIONS(563), + [anon_sym_new] = ACTIONS(565), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(574), - [anon_sym_readonly] = ACTIONS(574), - [anon_sym_get] = ACTIONS(574), - [anon_sym_set] = ACTIONS(574), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(574), - [anon_sym_private] = ACTIONS(574), - [anon_sym_protected] = ACTIONS(574), - [anon_sym_override] = ACTIONS(574), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(574), - [anon_sym_number] = ACTIONS(574), - [anon_sym_boolean] = ACTIONS(574), - [anon_sym_string] = ACTIONS(574), - [anon_sym_symbol] = ACTIONS(574), - [anon_sym_object] = ACTIONS(574), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(567), + [anon_sym_readonly] = ACTIONS(567), + [anon_sym_get] = ACTIONS(567), + [anon_sym_set] = ACTIONS(567), + [anon_sym_declare] = ACTIONS(569), + [anon_sym_public] = ACTIONS(567), + [anon_sym_private] = ACTIONS(567), + [anon_sym_protected] = ACTIONS(567), + [anon_sym_override] = ACTIONS(567), + [anon_sym_module] = ACTIONS(571), + [anon_sym_any] = ACTIONS(567), + [anon_sym_number] = ACTIONS(567), + [anon_sym_boolean] = ACTIONS(567), + [anon_sym_string] = ACTIONS(567), + [anon_sym_symbol] = ACTIONS(567), + [anon_sym_object] = ACTIONS(567), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [56] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(782), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3822), - [sym_identifier] = ACTIONS(546), - [anon_sym_export] = ACTIONS(548), - [anon_sym_type] = ACTIONS(550), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(554), + [57] = { + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(882), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(2410), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(3805), + [sym_identifier] = ACTIONS(539), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(543), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(547), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(556), + [anon_sym_with] = ACTIONS(549), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(558), + [anon_sym_let] = ACTIONS(551), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(560), + [anon_sym_if] = ACTIONS(553), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(562), + [anon_sym_for] = ACTIONS(555), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(564), + [anon_sym_while] = ACTIONS(557), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -29115,154 +28836,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(568), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(572), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(559), + [anon_sym_async] = ACTIONS(561), + [anon_sym_function] = ACTIONS(563), + [anon_sym_new] = ACTIONS(565), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(574), - [anon_sym_readonly] = ACTIONS(574), - [anon_sym_get] = ACTIONS(574), - [anon_sym_set] = ACTIONS(574), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(574), - [anon_sym_private] = ACTIONS(574), - [anon_sym_protected] = ACTIONS(574), - [anon_sym_override] = ACTIONS(574), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(574), - [anon_sym_number] = ACTIONS(574), - [anon_sym_boolean] = ACTIONS(574), - [anon_sym_string] = ACTIONS(574), - [anon_sym_symbol] = ACTIONS(574), - [anon_sym_object] = ACTIONS(574), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(567), + [anon_sym_readonly] = ACTIONS(567), + [anon_sym_get] = ACTIONS(567), + [anon_sym_set] = ACTIONS(567), + [anon_sym_declare] = ACTIONS(569), + [anon_sym_public] = ACTIONS(567), + [anon_sym_private] = ACTIONS(567), + [anon_sym_protected] = ACTIONS(567), + [anon_sym_override] = ACTIONS(567), + [anon_sym_module] = ACTIONS(571), + [anon_sym_any] = ACTIONS(567), + [anon_sym_number] = ACTIONS(567), + [anon_sym_boolean] = ACTIONS(567), + [anon_sym_string] = ACTIONS(567), + [anon_sym_symbol] = ACTIONS(567), + [anon_sym_object] = ACTIONS(567), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [57] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(791), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3822), - [sym_identifier] = ACTIONS(546), - [anon_sym_export] = ACTIONS(548), - [anon_sym_type] = ACTIONS(550), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(554), + [58] = { + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(884), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(2410), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(3805), + [sym_identifier] = ACTIONS(539), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(543), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(547), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(556), + [anon_sym_with] = ACTIONS(549), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(558), + [anon_sym_let] = ACTIONS(551), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(560), + [anon_sym_if] = ACTIONS(553), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(562), + [anon_sym_for] = ACTIONS(555), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(564), + [anon_sym_while] = ACTIONS(557), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -29272,154 +28991,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(568), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(572), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(559), + [anon_sym_async] = ACTIONS(561), + [anon_sym_function] = ACTIONS(563), + [anon_sym_new] = ACTIONS(565), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(574), - [anon_sym_readonly] = ACTIONS(574), - [anon_sym_get] = ACTIONS(574), - [anon_sym_set] = ACTIONS(574), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(574), - [anon_sym_private] = ACTIONS(574), - [anon_sym_protected] = ACTIONS(574), - [anon_sym_override] = ACTIONS(574), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(574), - [anon_sym_number] = ACTIONS(574), - [anon_sym_boolean] = ACTIONS(574), - [anon_sym_string] = ACTIONS(574), - [anon_sym_symbol] = ACTIONS(574), - [anon_sym_object] = ACTIONS(574), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(567), + [anon_sym_readonly] = ACTIONS(567), + [anon_sym_get] = ACTIONS(567), + [anon_sym_set] = ACTIONS(567), + [anon_sym_declare] = ACTIONS(569), + [anon_sym_public] = ACTIONS(567), + [anon_sym_private] = ACTIONS(567), + [anon_sym_protected] = ACTIONS(567), + [anon_sym_override] = ACTIONS(567), + [anon_sym_module] = ACTIONS(571), + [anon_sym_any] = ACTIONS(567), + [anon_sym_number] = ACTIONS(567), + [anon_sym_boolean] = ACTIONS(567), + [anon_sym_string] = ACTIONS(567), + [anon_sym_symbol] = ACTIONS(567), + [anon_sym_object] = ACTIONS(567), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [58] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(793), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3822), - [sym_identifier] = ACTIONS(546), - [anon_sym_export] = ACTIONS(548), - [anon_sym_type] = ACTIONS(550), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(554), + [59] = { + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(894), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(2410), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(3805), + [sym_identifier] = ACTIONS(539), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(543), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(547), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(556), + [anon_sym_with] = ACTIONS(549), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(558), + [anon_sym_let] = ACTIONS(551), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(560), + [anon_sym_if] = ACTIONS(553), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(562), + [anon_sym_for] = ACTIONS(555), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(564), + [anon_sym_while] = ACTIONS(557), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -29429,154 +29146,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(568), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(572), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(559), + [anon_sym_async] = ACTIONS(561), + [anon_sym_function] = ACTIONS(563), + [anon_sym_new] = ACTIONS(565), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(574), - [anon_sym_readonly] = ACTIONS(574), - [anon_sym_get] = ACTIONS(574), - [anon_sym_set] = ACTIONS(574), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(574), - [anon_sym_private] = ACTIONS(574), - [anon_sym_protected] = ACTIONS(574), - [anon_sym_override] = ACTIONS(574), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(574), - [anon_sym_number] = ACTIONS(574), - [anon_sym_boolean] = ACTIONS(574), - [anon_sym_string] = ACTIONS(574), - [anon_sym_symbol] = ACTIONS(574), - [anon_sym_object] = ACTIONS(574), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(567), + [anon_sym_readonly] = ACTIONS(567), + [anon_sym_get] = ACTIONS(567), + [anon_sym_set] = ACTIONS(567), + [anon_sym_declare] = ACTIONS(569), + [anon_sym_public] = ACTIONS(567), + [anon_sym_private] = ACTIONS(567), + [anon_sym_protected] = ACTIONS(567), + [anon_sym_override] = ACTIONS(567), + [anon_sym_module] = ACTIONS(571), + [anon_sym_any] = ACTIONS(567), + [anon_sym_number] = ACTIONS(567), + [anon_sym_boolean] = ACTIONS(567), + [anon_sym_string] = ACTIONS(567), + [anon_sym_symbol] = ACTIONS(567), + [anon_sym_object] = ACTIONS(567), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [59] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(794), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3822), - [sym_identifier] = ACTIONS(546), - [anon_sym_export] = ACTIONS(548), - [anon_sym_type] = ACTIONS(550), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(554), + [60] = { + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(897), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(2410), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(3805), + [sym_identifier] = ACTIONS(539), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(543), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(547), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(556), + [anon_sym_with] = ACTIONS(549), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(558), + [anon_sym_let] = ACTIONS(551), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(560), + [anon_sym_if] = ACTIONS(553), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(562), + [anon_sym_for] = ACTIONS(555), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(564), + [anon_sym_while] = ACTIONS(557), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -29586,154 +29301,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(568), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(572), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(559), + [anon_sym_async] = ACTIONS(561), + [anon_sym_function] = ACTIONS(563), + [anon_sym_new] = ACTIONS(565), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(574), - [anon_sym_readonly] = ACTIONS(574), - [anon_sym_get] = ACTIONS(574), - [anon_sym_set] = ACTIONS(574), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(574), - [anon_sym_private] = ACTIONS(574), - [anon_sym_protected] = ACTIONS(574), - [anon_sym_override] = ACTIONS(574), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(574), - [anon_sym_number] = ACTIONS(574), - [anon_sym_boolean] = ACTIONS(574), - [anon_sym_string] = ACTIONS(574), - [anon_sym_symbol] = ACTIONS(574), - [anon_sym_object] = ACTIONS(574), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(567), + [anon_sym_readonly] = ACTIONS(567), + [anon_sym_get] = ACTIONS(567), + [anon_sym_set] = ACTIONS(567), + [anon_sym_declare] = ACTIONS(569), + [anon_sym_public] = ACTIONS(567), + [anon_sym_private] = ACTIONS(567), + [anon_sym_protected] = ACTIONS(567), + [anon_sym_override] = ACTIONS(567), + [anon_sym_module] = ACTIONS(571), + [anon_sym_any] = ACTIONS(567), + [anon_sym_number] = ACTIONS(567), + [anon_sym_boolean] = ACTIONS(567), + [anon_sym_string] = ACTIONS(567), + [anon_sym_symbol] = ACTIONS(567), + [anon_sym_object] = ACTIONS(567), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [60] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(800), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3822), - [sym_identifier] = ACTIONS(546), - [anon_sym_export] = ACTIONS(548), - [anon_sym_type] = ACTIONS(550), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(554), + [61] = { + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(899), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(2410), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(3805), + [sym_identifier] = ACTIONS(539), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(543), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(547), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(556), + [anon_sym_with] = ACTIONS(549), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(558), + [anon_sym_let] = ACTIONS(551), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(560), + [anon_sym_if] = ACTIONS(553), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(562), + [anon_sym_for] = ACTIONS(555), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(564), + [anon_sym_while] = ACTIONS(557), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -29743,135 +29456,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(568), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(572), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(559), + [anon_sym_async] = ACTIONS(561), + [anon_sym_function] = ACTIONS(563), + [anon_sym_new] = ACTIONS(565), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(574), - [anon_sym_readonly] = ACTIONS(574), - [anon_sym_get] = ACTIONS(574), - [anon_sym_set] = ACTIONS(574), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(574), - [anon_sym_private] = ACTIONS(574), - [anon_sym_protected] = ACTIONS(574), - [anon_sym_override] = ACTIONS(574), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(574), - [anon_sym_number] = ACTIONS(574), - [anon_sym_boolean] = ACTIONS(574), - [anon_sym_string] = ACTIONS(574), - [anon_sym_symbol] = ACTIONS(574), - [anon_sym_object] = ACTIONS(574), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(567), + [anon_sym_readonly] = ACTIONS(567), + [anon_sym_get] = ACTIONS(567), + [anon_sym_set] = ACTIONS(567), + [anon_sym_declare] = ACTIONS(569), + [anon_sym_public] = ACTIONS(567), + [anon_sym_private] = ACTIONS(567), + [anon_sym_protected] = ACTIONS(567), + [anon_sym_override] = ACTIONS(567), + [anon_sym_module] = ACTIONS(571), + [anon_sym_any] = ACTIONS(567), + [anon_sym_number] = ACTIONS(567), + [anon_sym_boolean] = ACTIONS(567), + [anon_sym_string] = ACTIONS(567), + [anon_sym_symbol] = ACTIONS(567), + [anon_sym_object] = ACTIONS(567), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [61] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(804), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3782), + [62] = { + [sym_import] = STATE(3645), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2146), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3596), + [sym_assignment_pattern] = STATE(5112), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3596), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_nested_identifier] = STATE(5753), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1268), + [sym_subscript_expression] = STATE(1268), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3596), + [sym_spread_element] = STATE(4912), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(2313), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(4380), + [sym_pattern] = STATE(4530), + [sym_rest_pattern] = STATE(3991), + [sym_non_null_expression] = STATE(1268), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3263), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3806), + [sym_tuple_parameter] = STATE(5066), + [sym_optional_tuple_parameter] = STATE(5066), + [sym_optional_type] = STATE(5066), + [sym_rest_type] = STATE(5066), + [sym__tuple_type_member] = STATE(5066), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5560), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [aux_sym_export_statement_repeat1] = STATE(4590), + [aux_sym_array_repeat1] = STATE(4921), + [aux_sym_array_pattern_repeat1] = STATE(5134), + [sym_identifier] = ACTIONS(601), + [anon_sym_export] = ACTIONS(603), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_type] = ACTIONS(603), + [anon_sym_namespace] = ACTIONS(607), + [anon_sym_LBRACE] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(611), + [anon_sym_typeof] = ACTIONS(613), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(603), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(621), + [anon_sym_RBRACK] = ACTIONS(669), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(627), + [anon_sym_using] = ACTIONS(629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(631), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(643), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(188), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(651), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(653), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(603), + [anon_sym_readonly] = ACTIONS(655), + [anon_sym_get] = ACTIONS(603), + [anon_sym_set] = ACTIONS(603), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_declare] = ACTIONS(603), + [anon_sym_public] = ACTIONS(603), + [anon_sym_private] = ACTIONS(603), + [anon_sym_protected] = ACTIONS(603), + [anon_sym_override] = ACTIONS(603), + [anon_sym_module] = ACTIONS(603), + [anon_sym_any] = ACTIONS(659), + [anon_sym_number] = ACTIONS(659), + [anon_sym_boolean] = ACTIONS(659), + [anon_sym_string] = ACTIONS(659), + [anon_sym_symbol] = ACTIONS(659), + [anon_sym_object] = ACTIONS(659), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [sym_html_comment] = ACTIONS(5), + }, + [63] = { + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(826), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(253), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(3919), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -29900,763 +29766,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), - [sym_html_comment] = ACTIONS(5), - }, - [62] = { - [sym_import] = STATE(3753), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2129), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3740), - [sym_assignment_pattern] = STATE(5171), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3740), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1261), - [sym_subscript_expression] = STATE(1261), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3740), - [sym_spread_element] = STATE(4897), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2237), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4390), - [sym_pattern] = STATE(4569), - [sym_rest_pattern] = STATE(4105), - [sym_non_null_expression] = STATE(1261), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3817), - [sym_tuple_parameter] = STATE(5205), - [sym_optional_tuple_parameter] = STATE(5205), - [sym_optional_type] = STATE(5205), - [sym_rest_type] = STATE(5205), - [sym__tuple_type_member] = STATE(5205), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5561), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(4582), - [aux_sym_array_repeat1] = STATE(4906), - [aux_sym_array_pattern_repeat1] = STATE(5199), - [sym_identifier] = ACTIONS(608), - [anon_sym_export] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(616), - [anon_sym_COMMA] = ACTIONS(618), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(610), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_RBRACK] = ACTIONS(672), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(634), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(638), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(648), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(191), - [sym_number] = ACTIONS(193), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(656), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(201), - [sym_false] = ACTIONS(201), - [sym_null] = ACTIONS(201), - [sym_undefined] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(660), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(664), - [anon_sym_number] = ACTIONS(664), - [anon_sym_boolean] = ACTIONS(664), - [anon_sym_string] = ACTIONS(664), - [anon_sym_symbol] = ACTIONS(664), - [anon_sym_object] = ACTIONS(664), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), - [sym_html_comment] = ACTIONS(5), - }, - [63] = { - [sym_import] = STATE(3753), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2129), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3740), - [sym_assignment_pattern] = STATE(5171), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3740), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1261), - [sym_subscript_expression] = STATE(1261), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3740), - [sym_spread_element] = STATE(4897), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2237), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4390), - [sym_pattern] = STATE(4569), - [sym_rest_pattern] = STATE(4105), - [sym_non_null_expression] = STATE(1261), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3817), - [sym_tuple_parameter] = STATE(5205), - [sym_optional_tuple_parameter] = STATE(5205), - [sym_optional_type] = STATE(5205), - [sym_rest_type] = STATE(5205), - [sym__tuple_type_member] = STATE(5205), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5561), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(4582), - [aux_sym_array_repeat1] = STATE(4906), - [aux_sym_array_pattern_repeat1] = STATE(5199), - [sym_identifier] = ACTIONS(608), - [anon_sym_export] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(616), - [anon_sym_COMMA] = ACTIONS(618), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(610), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_RBRACK] = ACTIONS(674), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(634), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(638), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(648), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(191), - [sym_number] = ACTIONS(193), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(656), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(201), - [sym_false] = ACTIONS(201), - [sym_null] = ACTIONS(201), - [sym_undefined] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(660), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(664), - [anon_sym_number] = ACTIONS(664), - [anon_sym_boolean] = ACTIONS(664), - [anon_sym_string] = ACTIONS(664), - [anon_sym_symbol] = ACTIONS(664), - [anon_sym_object] = ACTIONS(664), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [64] = { - [sym_import] = STATE(3753), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2317), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3740), - [sym_assignment_pattern] = STATE(5171), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3740), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1261), - [sym_subscript_expression] = STATE(1261), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3740), - [sym_spread_element] = STATE(5179), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2237), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4390), - [sym_pattern] = STATE(4569), - [sym_rest_pattern] = STATE(4105), - [sym_non_null_expression] = STATE(1261), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3817), - [sym_tuple_parameter] = STATE(5205), - [sym_optional_tuple_parameter] = STATE(5205), - [sym_optional_type] = STATE(5205), - [sym_rest_type] = STATE(5205), - [sym__tuple_type_member] = STATE(5205), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5561), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(4582), - [aux_sym_array_repeat1] = STATE(5196), - [aux_sym_array_pattern_repeat1] = STATE(5199), - [sym_identifier] = ACTIONS(608), - [anon_sym_export] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(616), - [anon_sym_COMMA] = ACTIONS(618), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(610), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_RBRACK] = ACTIONS(676), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(634), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(638), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(648), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(191), - [sym_number] = ACTIONS(193), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(656), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(201), - [sym_false] = ACTIONS(201), - [sym_null] = ACTIONS(201), - [sym_undefined] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(660), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(664), - [anon_sym_number] = ACTIONS(664), - [anon_sym_boolean] = ACTIONS(664), - [anon_sym_string] = ACTIONS(664), - [anon_sym_symbol] = ACTIONS(664), - [anon_sym_object] = ACTIONS(664), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(3645), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2146), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3596), + [sym_assignment_pattern] = STATE(5112), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3596), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_nested_identifier] = STATE(5753), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1268), + [sym_subscript_expression] = STATE(1268), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3596), + [sym_spread_element] = STATE(4912), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(2313), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(4380), + [sym_pattern] = STATE(4530), + [sym_rest_pattern] = STATE(3991), + [sym_non_null_expression] = STATE(1268), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3263), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3806), + [sym_tuple_parameter] = STATE(5066), + [sym_optional_tuple_parameter] = STATE(5066), + [sym_optional_type] = STATE(5066), + [sym_rest_type] = STATE(5066), + [sym__tuple_type_member] = STATE(5066), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5560), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [aux_sym_export_statement_repeat1] = STATE(4590), + [aux_sym_array_repeat1] = STATE(4921), + [aux_sym_array_pattern_repeat1] = STATE(5134), + [sym_identifier] = ACTIONS(601), + [anon_sym_export] = ACTIONS(603), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_type] = ACTIONS(603), + [anon_sym_namespace] = ACTIONS(607), + [anon_sym_LBRACE] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(611), + [anon_sym_typeof] = ACTIONS(613), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(603), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(621), + [anon_sym_RBRACK] = ACTIONS(671), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(627), + [anon_sym_using] = ACTIONS(629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(631), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(643), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(188), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(651), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(653), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(603), + [anon_sym_readonly] = ACTIONS(655), + [anon_sym_get] = ACTIONS(603), + [anon_sym_set] = ACTIONS(603), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_declare] = ACTIONS(603), + [anon_sym_public] = ACTIONS(603), + [anon_sym_private] = ACTIONS(603), + [anon_sym_protected] = ACTIONS(603), + [anon_sym_override] = ACTIONS(603), + [anon_sym_module] = ACTIONS(603), + [anon_sym_any] = ACTIONS(659), + [anon_sym_number] = ACTIONS(659), + [anon_sym_boolean] = ACTIONS(659), + [anon_sym_string] = ACTIONS(659), + [anon_sym_symbol] = ACTIONS(659), + [anon_sym_object] = ACTIONS(659), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [65] = { - [sym_import] = STATE(3753), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2129), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3740), - [sym_assignment_pattern] = STATE(5171), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3740), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1261), - [sym_subscript_expression] = STATE(1261), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3740), - [sym_spread_element] = STATE(4897), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2237), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4390), - [sym_pattern] = STATE(4569), - [sym_rest_pattern] = STATE(4105), - [sym_non_null_expression] = STATE(1261), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3817), - [sym_tuple_parameter] = STATE(5205), - [sym_optional_tuple_parameter] = STATE(5205), - [sym_optional_type] = STATE(5205), - [sym_rest_type] = STATE(5205), - [sym__tuple_type_member] = STATE(5205), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5561), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(4582), - [aux_sym_array_repeat1] = STATE(4906), - [aux_sym_array_pattern_repeat1] = STATE(5199), - [sym_identifier] = ACTIONS(608), - [anon_sym_export] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(616), - [anon_sym_COMMA] = ACTIONS(618), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(610), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_RBRACK] = ACTIONS(678), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(634), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(638), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(648), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(191), - [sym_number] = ACTIONS(193), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(656), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(201), - [sym_false] = ACTIONS(201), - [sym_null] = ACTIONS(201), - [sym_undefined] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(660), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(664), - [anon_sym_number] = ACTIONS(664), - [anon_sym_boolean] = ACTIONS(664), - [anon_sym_string] = ACTIONS(664), - [anon_sym_symbol] = ACTIONS(664), - [anon_sym_object] = ACTIONS(664), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), - [sym_html_comment] = ACTIONS(5), - }, - [66] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(871), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3782), + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(768), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(253), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(3919), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -30685,939 +30076,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [67] = { - [sym_import] = STATE(3753), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2129), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3740), - [sym_assignment_pattern] = STATE(5171), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3740), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1261), - [sym_subscript_expression] = STATE(1261), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3740), - [sym_spread_element] = STATE(4897), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2237), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4390), - [sym_pattern] = STATE(4569), - [sym_rest_pattern] = STATE(4105), - [sym_non_null_expression] = STATE(1261), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3817), - [sym_tuple_parameter] = STATE(5205), - [sym_optional_tuple_parameter] = STATE(5205), - [sym_optional_type] = STATE(5205), - [sym_rest_type] = STATE(5205), - [sym__tuple_type_member] = STATE(5205), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5561), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(4582), - [aux_sym_array_repeat1] = STATE(4906), - [aux_sym_array_pattern_repeat1] = STATE(5199), - [sym_identifier] = ACTIONS(608), - [anon_sym_export] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(616), - [anon_sym_COMMA] = ACTIONS(618), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(610), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_RBRACK] = ACTIONS(680), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(634), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(638), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(648), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(191), - [sym_number] = ACTIONS(193), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(656), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(201), - [sym_false] = ACTIONS(201), - [sym_null] = ACTIONS(201), - [sym_undefined] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(660), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(664), - [anon_sym_number] = ACTIONS(664), - [anon_sym_boolean] = ACTIONS(664), - [anon_sym_string] = ACTIONS(664), - [anon_sym_symbol] = ACTIONS(664), - [anon_sym_object] = ACTIONS(664), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), - [sym_html_comment] = ACTIONS(5), - }, - [68] = { - [sym_import] = STATE(3753), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2317), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3740), - [sym_assignment_pattern] = STATE(5171), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3740), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1261), - [sym_subscript_expression] = STATE(1261), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3740), - [sym_spread_element] = STATE(5179), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2237), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4390), - [sym_pattern] = STATE(4569), - [sym_rest_pattern] = STATE(4105), - [sym_non_null_expression] = STATE(1261), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3817), - [sym_tuple_parameter] = STATE(5205), - [sym_optional_tuple_parameter] = STATE(5205), - [sym_optional_type] = STATE(5205), - [sym_rest_type] = STATE(5205), - [sym__tuple_type_member] = STATE(5205), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5561), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(4582), - [aux_sym_array_repeat1] = STATE(5196), - [aux_sym_array_pattern_repeat1] = STATE(5199), - [sym_identifier] = ACTIONS(608), - [anon_sym_export] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(616), - [anon_sym_COMMA] = ACTIONS(618), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(610), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_RBRACK] = ACTIONS(682), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(634), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(638), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(648), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(191), - [sym_number] = ACTIONS(193), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(656), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(201), - [sym_false] = ACTIONS(201), - [sym_null] = ACTIONS(201), - [sym_undefined] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(660), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(664), - [anon_sym_number] = ACTIONS(664), - [anon_sym_boolean] = ACTIONS(664), - [anon_sym_string] = ACTIONS(664), - [anon_sym_symbol] = ACTIONS(664), - [anon_sym_object] = ACTIONS(664), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), - [sym_html_comment] = ACTIONS(5), - }, - [69] = { - [sym_import] = STATE(3753), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2129), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3740), - [sym_assignment_pattern] = STATE(5171), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3740), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1261), - [sym_subscript_expression] = STATE(1261), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3740), - [sym_spread_element] = STATE(4897), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2237), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4390), - [sym_pattern] = STATE(4569), - [sym_rest_pattern] = STATE(4105), - [sym_non_null_expression] = STATE(1261), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3817), - [sym_tuple_parameter] = STATE(5205), - [sym_optional_tuple_parameter] = STATE(5205), - [sym_optional_type] = STATE(5205), - [sym_rest_type] = STATE(5205), - [sym__tuple_type_member] = STATE(5205), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5561), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(4582), - [aux_sym_array_repeat1] = STATE(4906), - [aux_sym_array_pattern_repeat1] = STATE(5199), - [sym_identifier] = ACTIONS(608), - [anon_sym_export] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(616), - [anon_sym_COMMA] = ACTIONS(618), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(610), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_RBRACK] = ACTIONS(684), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(634), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(638), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(648), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(191), - [sym_number] = ACTIONS(193), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(656), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(201), - [sym_false] = ACTIONS(201), - [sym_null] = ACTIONS(201), - [sym_undefined] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(660), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(664), - [anon_sym_number] = ACTIONS(664), - [anon_sym_boolean] = ACTIONS(664), - [anon_sym_string] = ACTIONS(664), - [anon_sym_symbol] = ACTIONS(664), - [anon_sym_object] = ACTIONS(664), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), - [sym_html_comment] = ACTIONS(5), - }, - [70] = { - [sym_import] = STATE(3753), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2129), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3740), - [sym_assignment_pattern] = STATE(5171), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3740), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1261), - [sym_subscript_expression] = STATE(1261), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3740), - [sym_spread_element] = STATE(4897), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2237), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4390), - [sym_pattern] = STATE(4569), - [sym_rest_pattern] = STATE(4105), - [sym_non_null_expression] = STATE(1261), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3817), - [sym_tuple_parameter] = STATE(5205), - [sym_optional_tuple_parameter] = STATE(5205), - [sym_optional_type] = STATE(5205), - [sym_rest_type] = STATE(5205), - [sym__tuple_type_member] = STATE(5205), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5561), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(4582), - [aux_sym_array_repeat1] = STATE(4906), - [aux_sym_array_pattern_repeat1] = STATE(5199), - [sym_identifier] = ACTIONS(608), - [anon_sym_export] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(616), - [anon_sym_COMMA] = ACTIONS(618), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(610), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_RBRACK] = ACTIONS(686), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(634), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(638), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(648), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(191), - [sym_number] = ACTIONS(193), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(656), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(201), - [sym_false] = ACTIONS(201), - [sym_null] = ACTIONS(201), - [sym_undefined] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(660), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(664), - [anon_sym_number] = ACTIONS(664), - [anon_sym_boolean] = ACTIONS(664), - [anon_sym_string] = ACTIONS(664), - [anon_sym_symbol] = ACTIONS(664), - [anon_sym_object] = ACTIONS(664), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), - [sym_html_comment] = ACTIONS(5), - }, - [71] = { - [sym_import] = STATE(3753), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2129), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3740), - [sym_assignment_pattern] = STATE(5171), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3740), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1261), - [sym_subscript_expression] = STATE(1261), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3740), - [sym_spread_element] = STATE(4897), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2237), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4390), - [sym_pattern] = STATE(4569), - [sym_rest_pattern] = STATE(4105), - [sym_non_null_expression] = STATE(1261), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3817), - [sym_tuple_parameter] = STATE(5211), - [sym_optional_tuple_parameter] = STATE(5211), - [sym_optional_type] = STATE(5211), - [sym_rest_type] = STATE(5211), - [sym__tuple_type_member] = STATE(5211), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5561), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(4582), - [aux_sym_array_repeat1] = STATE(4906), - [aux_sym_array_pattern_repeat1] = STATE(5199), - [sym_identifier] = ACTIONS(608), - [anon_sym_export] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(616), - [anon_sym_COMMA] = ACTIONS(688), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(610), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_RBRACK] = ACTIONS(690), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(634), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(638), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(648), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(191), - [sym_number] = ACTIONS(193), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(656), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(201), - [sym_false] = ACTIONS(201), - [sym_null] = ACTIONS(201), - [sym_undefined] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(660), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(664), - [anon_sym_number] = ACTIONS(664), - [anon_sym_boolean] = ACTIONS(664), - [anon_sym_string] = ACTIONS(664), - [anon_sym_symbol] = ACTIONS(664), - [anon_sym_object] = ACTIONS(664), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), - [sym_html_comment] = ACTIONS(5), - }, - [72] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(801), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3873), - [sym_identifier] = ACTIONS(580), - [anon_sym_export] = ACTIONS(582), - [anon_sym_type] = ACTIONS(584), - [anon_sym_namespace] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(554), + [66] = { + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(848), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(253), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(3919), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(588), + [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(590), + [anon_sym_let] = ACTIONS(29), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(592), + [anon_sym_if] = ACTIONS(35), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(594), + [anon_sym_for] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(596), + [anon_sym_while] = ACTIONS(47), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -31627,154 +30231,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(598), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(600), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(602), - [anon_sym_readonly] = ACTIONS(602), - [anon_sym_get] = ACTIONS(602), - [anon_sym_set] = ACTIONS(602), - [anon_sym_declare] = ACTIONS(604), - [anon_sym_public] = ACTIONS(602), - [anon_sym_private] = ACTIONS(602), - [anon_sym_protected] = ACTIONS(602), - [anon_sym_override] = ACTIONS(602), - [anon_sym_module] = ACTIONS(606), - [anon_sym_any] = ACTIONS(602), - [anon_sym_number] = ACTIONS(602), - [anon_sym_boolean] = ACTIONS(602), - [anon_sym_string] = ACTIONS(602), - [anon_sym_symbol] = ACTIONS(602), - [anon_sym_object] = ACTIONS(602), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [73] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(805), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3873), - [sym_identifier] = ACTIONS(580), - [anon_sym_export] = ACTIONS(582), - [anon_sym_type] = ACTIONS(584), - [anon_sym_namespace] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(554), + [67] = { + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(5166), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(2410), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(3867), + [sym_identifier] = ACTIONS(573), + [anon_sym_export] = ACTIONS(575), + [anon_sym_type] = ACTIONS(577), + [anon_sym_namespace] = ACTIONS(579), + [anon_sym_LBRACE] = ACTIONS(547), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(588), + [anon_sym_with] = ACTIONS(581), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(590), + [anon_sym_let] = ACTIONS(583), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(592), + [anon_sym_if] = ACTIONS(585), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(594), + [anon_sym_for] = ACTIONS(587), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(596), + [anon_sym_while] = ACTIONS(589), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -31784,154 +30386,927 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(598), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(600), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(559), + [anon_sym_async] = ACTIONS(591), + [anon_sym_function] = ACTIONS(563), + [anon_sym_new] = ACTIONS(593), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(602), - [anon_sym_readonly] = ACTIONS(602), - [anon_sym_get] = ACTIONS(602), - [anon_sym_set] = ACTIONS(602), - [anon_sym_declare] = ACTIONS(604), - [anon_sym_public] = ACTIONS(602), - [anon_sym_private] = ACTIONS(602), - [anon_sym_protected] = ACTIONS(602), - [anon_sym_override] = ACTIONS(602), - [anon_sym_module] = ACTIONS(606), - [anon_sym_any] = ACTIONS(602), - [anon_sym_number] = ACTIONS(602), - [anon_sym_boolean] = ACTIONS(602), - [anon_sym_string] = ACTIONS(602), - [anon_sym_symbol] = ACTIONS(602), - [anon_sym_object] = ACTIONS(602), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(595), + [anon_sym_readonly] = ACTIONS(595), + [anon_sym_get] = ACTIONS(595), + [anon_sym_set] = ACTIONS(595), + [anon_sym_declare] = ACTIONS(597), + [anon_sym_public] = ACTIONS(595), + [anon_sym_private] = ACTIONS(595), + [anon_sym_protected] = ACTIONS(595), + [anon_sym_override] = ACTIONS(595), + [anon_sym_module] = ACTIONS(599), + [anon_sym_any] = ACTIONS(595), + [anon_sym_number] = ACTIONS(595), + [anon_sym_boolean] = ACTIONS(595), + [anon_sym_string] = ACTIONS(595), + [anon_sym_symbol] = ACTIONS(595), + [anon_sym_object] = ACTIONS(595), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [74] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(856), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3873), - [sym_identifier] = ACTIONS(580), - [anon_sym_export] = ACTIONS(582), - [anon_sym_type] = ACTIONS(584), - [anon_sym_namespace] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(554), + [68] = { + [sym_import] = STATE(3645), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2146), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3596), + [sym_assignment_pattern] = STATE(5112), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3596), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_nested_identifier] = STATE(5753), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1268), + [sym_subscript_expression] = STATE(1268), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3596), + [sym_spread_element] = STATE(4912), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(2313), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(4380), + [sym_pattern] = STATE(4530), + [sym_rest_pattern] = STATE(3991), + [sym_non_null_expression] = STATE(1268), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3263), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3806), + [sym_tuple_parameter] = STATE(5066), + [sym_optional_tuple_parameter] = STATE(5066), + [sym_optional_type] = STATE(5066), + [sym_rest_type] = STATE(5066), + [sym__tuple_type_member] = STATE(5066), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5560), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [aux_sym_export_statement_repeat1] = STATE(4590), + [aux_sym_array_repeat1] = STATE(4921), + [aux_sym_array_pattern_repeat1] = STATE(5134), + [sym_identifier] = ACTIONS(601), + [anon_sym_export] = ACTIONS(603), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_type] = ACTIONS(603), + [anon_sym_namespace] = ACTIONS(607), + [anon_sym_LBRACE] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(611), + [anon_sym_typeof] = ACTIONS(613), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(603), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(621), + [anon_sym_RBRACK] = ACTIONS(673), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(627), + [anon_sym_using] = ACTIONS(629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(631), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(643), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(188), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(651), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(653), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(603), + [anon_sym_readonly] = ACTIONS(655), + [anon_sym_get] = ACTIONS(603), + [anon_sym_set] = ACTIONS(603), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_declare] = ACTIONS(603), + [anon_sym_public] = ACTIONS(603), + [anon_sym_private] = ACTIONS(603), + [anon_sym_protected] = ACTIONS(603), + [anon_sym_override] = ACTIONS(603), + [anon_sym_module] = ACTIONS(603), + [anon_sym_any] = ACTIONS(659), + [anon_sym_number] = ACTIONS(659), + [anon_sym_boolean] = ACTIONS(659), + [anon_sym_string] = ACTIONS(659), + [anon_sym_symbol] = ACTIONS(659), + [anon_sym_object] = ACTIONS(659), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [sym_html_comment] = ACTIONS(5), + }, + [69] = { + [sym_import] = STATE(3645), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2302), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3596), + [sym_assignment_pattern] = STATE(5112), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3596), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_nested_identifier] = STATE(5753), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1268), + [sym_subscript_expression] = STATE(1268), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3596), + [sym_spread_element] = STATE(5119), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(2313), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(4380), + [sym_pattern] = STATE(4530), + [sym_rest_pattern] = STATE(3991), + [sym_non_null_expression] = STATE(1268), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3263), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3806), + [sym_tuple_parameter] = STATE(5066), + [sym_optional_tuple_parameter] = STATE(5066), + [sym_optional_type] = STATE(5066), + [sym_rest_type] = STATE(5066), + [sym__tuple_type_member] = STATE(5066), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5560), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [aux_sym_export_statement_repeat1] = STATE(4590), + [aux_sym_array_repeat1] = STATE(5132), + [aux_sym_array_pattern_repeat1] = STATE(5134), + [sym_identifier] = ACTIONS(601), + [anon_sym_export] = ACTIONS(603), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_type] = ACTIONS(603), + [anon_sym_namespace] = ACTIONS(607), + [anon_sym_LBRACE] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(611), + [anon_sym_typeof] = ACTIONS(613), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(603), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(621), + [anon_sym_RBRACK] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(627), + [anon_sym_using] = ACTIONS(629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(631), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(643), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(188), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(651), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(653), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(603), + [anon_sym_readonly] = ACTIONS(655), + [anon_sym_get] = ACTIONS(603), + [anon_sym_set] = ACTIONS(603), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_declare] = ACTIONS(603), + [anon_sym_public] = ACTIONS(603), + [anon_sym_private] = ACTIONS(603), + [anon_sym_protected] = ACTIONS(603), + [anon_sym_override] = ACTIONS(603), + [anon_sym_module] = ACTIONS(603), + [anon_sym_any] = ACTIONS(659), + [anon_sym_number] = ACTIONS(659), + [anon_sym_boolean] = ACTIONS(659), + [anon_sym_string] = ACTIONS(659), + [anon_sym_symbol] = ACTIONS(659), + [anon_sym_object] = ACTIONS(659), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [sym_html_comment] = ACTIONS(5), + }, + [70] = { + [sym_import] = STATE(3645), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2146), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3596), + [sym_assignment_pattern] = STATE(5112), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3596), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_nested_identifier] = STATE(5753), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1268), + [sym_subscript_expression] = STATE(1268), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3596), + [sym_spread_element] = STATE(4912), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(2313), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(4380), + [sym_pattern] = STATE(4530), + [sym_rest_pattern] = STATE(3991), + [sym_non_null_expression] = STATE(1268), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3263), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3806), + [sym_tuple_parameter] = STATE(5066), + [sym_optional_tuple_parameter] = STATE(5066), + [sym_optional_type] = STATE(5066), + [sym_rest_type] = STATE(5066), + [sym__tuple_type_member] = STATE(5066), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5560), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [aux_sym_export_statement_repeat1] = STATE(4590), + [aux_sym_array_repeat1] = STATE(4921), + [aux_sym_array_pattern_repeat1] = STATE(5134), + [sym_identifier] = ACTIONS(601), + [anon_sym_export] = ACTIONS(603), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_type] = ACTIONS(603), + [anon_sym_namespace] = ACTIONS(607), + [anon_sym_LBRACE] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(611), + [anon_sym_typeof] = ACTIONS(613), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(603), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(621), + [anon_sym_RBRACK] = ACTIONS(677), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(627), + [anon_sym_using] = ACTIONS(629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(631), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(643), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(188), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(651), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(653), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(603), + [anon_sym_readonly] = ACTIONS(655), + [anon_sym_get] = ACTIONS(603), + [anon_sym_set] = ACTIONS(603), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_declare] = ACTIONS(603), + [anon_sym_public] = ACTIONS(603), + [anon_sym_private] = ACTIONS(603), + [anon_sym_protected] = ACTIONS(603), + [anon_sym_override] = ACTIONS(603), + [anon_sym_module] = ACTIONS(603), + [anon_sym_any] = ACTIONS(659), + [anon_sym_number] = ACTIONS(659), + [anon_sym_boolean] = ACTIONS(659), + [anon_sym_string] = ACTIONS(659), + [anon_sym_symbol] = ACTIONS(659), + [anon_sym_object] = ACTIONS(659), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [sym_html_comment] = ACTIONS(5), + }, + [71] = { + [sym_import] = STATE(3645), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2146), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3596), + [sym_assignment_pattern] = STATE(5112), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3596), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_nested_identifier] = STATE(5753), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1268), + [sym_subscript_expression] = STATE(1268), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3596), + [sym_spread_element] = STATE(4912), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(2313), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(4380), + [sym_pattern] = STATE(4530), + [sym_rest_pattern] = STATE(3991), + [sym_non_null_expression] = STATE(1268), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3263), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3806), + [sym_tuple_parameter] = STATE(5066), + [sym_optional_tuple_parameter] = STATE(5066), + [sym_optional_type] = STATE(5066), + [sym_rest_type] = STATE(5066), + [sym__tuple_type_member] = STATE(5066), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5560), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [aux_sym_export_statement_repeat1] = STATE(4590), + [aux_sym_array_repeat1] = STATE(4921), + [aux_sym_array_pattern_repeat1] = STATE(5134), + [sym_identifier] = ACTIONS(601), + [anon_sym_export] = ACTIONS(603), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_type] = ACTIONS(603), + [anon_sym_namespace] = ACTIONS(607), + [anon_sym_LBRACE] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(611), + [anon_sym_typeof] = ACTIONS(613), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(603), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(621), + [anon_sym_RBRACK] = ACTIONS(679), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(627), + [anon_sym_using] = ACTIONS(629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(631), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(643), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(188), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(651), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(653), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(603), + [anon_sym_readonly] = ACTIONS(655), + [anon_sym_get] = ACTIONS(603), + [anon_sym_set] = ACTIONS(603), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_declare] = ACTIONS(603), + [anon_sym_public] = ACTIONS(603), + [anon_sym_private] = ACTIONS(603), + [anon_sym_protected] = ACTIONS(603), + [anon_sym_override] = ACTIONS(603), + [anon_sym_module] = ACTIONS(603), + [anon_sym_any] = ACTIONS(659), + [anon_sym_number] = ACTIONS(659), + [anon_sym_boolean] = ACTIONS(659), + [anon_sym_string] = ACTIONS(659), + [anon_sym_symbol] = ACTIONS(659), + [anon_sym_object] = ACTIONS(659), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [sym_html_comment] = ACTIONS(5), + }, + [72] = { + [sym_import] = STATE(3645), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2146), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3596), + [sym_assignment_pattern] = STATE(5112), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3596), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_nested_identifier] = STATE(5753), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1268), + [sym_subscript_expression] = STATE(1268), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3596), + [sym_spread_element] = STATE(4912), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(2313), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(4380), + [sym_pattern] = STATE(4530), + [sym_rest_pattern] = STATE(3991), + [sym_non_null_expression] = STATE(1268), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3263), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3806), + [sym_tuple_parameter] = STATE(5194), + [sym_optional_tuple_parameter] = STATE(5194), + [sym_optional_type] = STATE(5194), + [sym_rest_type] = STATE(5194), + [sym__tuple_type_member] = STATE(5194), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5560), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [aux_sym_export_statement_repeat1] = STATE(4590), + [aux_sym_array_repeat1] = STATE(4921), + [aux_sym_array_pattern_repeat1] = STATE(5134), + [sym_identifier] = ACTIONS(601), + [anon_sym_export] = ACTIONS(603), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_type] = ACTIONS(603), + [anon_sym_namespace] = ACTIONS(607), + [anon_sym_LBRACE] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(681), + [anon_sym_typeof] = ACTIONS(613), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(603), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(621), + [anon_sym_RBRACK] = ACTIONS(683), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(627), + [anon_sym_using] = ACTIONS(629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(631), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(643), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(188), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(651), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(653), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(603), + [anon_sym_readonly] = ACTIONS(655), + [anon_sym_get] = ACTIONS(603), + [anon_sym_set] = ACTIONS(603), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_declare] = ACTIONS(603), + [anon_sym_public] = ACTIONS(603), + [anon_sym_private] = ACTIONS(603), + [anon_sym_protected] = ACTIONS(603), + [anon_sym_override] = ACTIONS(603), + [anon_sym_module] = ACTIONS(603), + [anon_sym_any] = ACTIONS(659), + [anon_sym_number] = ACTIONS(659), + [anon_sym_boolean] = ACTIONS(659), + [anon_sym_string] = ACTIONS(659), + [anon_sym_symbol] = ACTIONS(659), + [anon_sym_object] = ACTIONS(659), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [sym_html_comment] = ACTIONS(5), + }, + [73] = { + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(878), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(2410), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(3867), + [sym_identifier] = ACTIONS(573), + [anon_sym_export] = ACTIONS(575), + [anon_sym_type] = ACTIONS(577), + [anon_sym_namespace] = ACTIONS(579), + [anon_sym_LBRACE] = ACTIONS(547), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(588), + [anon_sym_with] = ACTIONS(581), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(590), + [anon_sym_let] = ACTIONS(583), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(592), + [anon_sym_if] = ACTIONS(585), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(594), + [anon_sym_for] = ACTIONS(587), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(596), + [anon_sym_while] = ACTIONS(589), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -31941,154 +31316,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(598), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(600), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(559), + [anon_sym_async] = ACTIONS(591), + [anon_sym_function] = ACTIONS(563), + [anon_sym_new] = ACTIONS(593), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(602), - [anon_sym_readonly] = ACTIONS(602), - [anon_sym_get] = ACTIONS(602), - [anon_sym_set] = ACTIONS(602), - [anon_sym_declare] = ACTIONS(604), - [anon_sym_public] = ACTIONS(602), - [anon_sym_private] = ACTIONS(602), - [anon_sym_protected] = ACTIONS(602), - [anon_sym_override] = ACTIONS(602), - [anon_sym_module] = ACTIONS(606), - [anon_sym_any] = ACTIONS(602), - [anon_sym_number] = ACTIONS(602), - [anon_sym_boolean] = ACTIONS(602), - [anon_sym_string] = ACTIONS(602), - [anon_sym_symbol] = ACTIONS(602), - [anon_sym_object] = ACTIONS(602), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(595), + [anon_sym_readonly] = ACTIONS(595), + [anon_sym_get] = ACTIONS(595), + [anon_sym_set] = ACTIONS(595), + [anon_sym_declare] = ACTIONS(597), + [anon_sym_public] = ACTIONS(595), + [anon_sym_private] = ACTIONS(595), + [anon_sym_protected] = ACTIONS(595), + [anon_sym_override] = ACTIONS(595), + [anon_sym_module] = ACTIONS(599), + [anon_sym_any] = ACTIONS(595), + [anon_sym_number] = ACTIONS(595), + [anon_sym_boolean] = ACTIONS(595), + [anon_sym_string] = ACTIONS(595), + [anon_sym_symbol] = ACTIONS(595), + [anon_sym_object] = ACTIONS(595), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [75] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(781), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3873), - [sym_identifier] = ACTIONS(580), - [anon_sym_export] = ACTIONS(582), - [anon_sym_type] = ACTIONS(584), - [anon_sym_namespace] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(554), + [74] = { + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(826), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(2410), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(3867), + [sym_identifier] = ACTIONS(573), + [anon_sym_export] = ACTIONS(575), + [anon_sym_type] = ACTIONS(577), + [anon_sym_namespace] = ACTIONS(579), + [anon_sym_LBRACE] = ACTIONS(547), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(588), + [anon_sym_with] = ACTIONS(581), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(590), + [anon_sym_let] = ACTIONS(583), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(592), + [anon_sym_if] = ACTIONS(585), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(594), + [anon_sym_for] = ACTIONS(587), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(596), + [anon_sym_while] = ACTIONS(589), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -32098,154 +31471,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(598), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(600), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(559), + [anon_sym_async] = ACTIONS(591), + [anon_sym_function] = ACTIONS(563), + [anon_sym_new] = ACTIONS(593), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(602), - [anon_sym_readonly] = ACTIONS(602), - [anon_sym_get] = ACTIONS(602), - [anon_sym_set] = ACTIONS(602), - [anon_sym_declare] = ACTIONS(604), - [anon_sym_public] = ACTIONS(602), - [anon_sym_private] = ACTIONS(602), - [anon_sym_protected] = ACTIONS(602), - [anon_sym_override] = ACTIONS(602), - [anon_sym_module] = ACTIONS(606), - [anon_sym_any] = ACTIONS(602), - [anon_sym_number] = ACTIONS(602), - [anon_sym_boolean] = ACTIONS(602), - [anon_sym_string] = ACTIONS(602), - [anon_sym_symbol] = ACTIONS(602), - [anon_sym_object] = ACTIONS(602), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(595), + [anon_sym_readonly] = ACTIONS(595), + [anon_sym_get] = ACTIONS(595), + [anon_sym_set] = ACTIONS(595), + [anon_sym_declare] = ACTIONS(597), + [anon_sym_public] = ACTIONS(595), + [anon_sym_private] = ACTIONS(595), + [anon_sym_protected] = ACTIONS(595), + [anon_sym_override] = ACTIONS(595), + [anon_sym_module] = ACTIONS(599), + [anon_sym_any] = ACTIONS(595), + [anon_sym_number] = ACTIONS(595), + [anon_sym_boolean] = ACTIONS(595), + [anon_sym_string] = ACTIONS(595), + [anon_sym_symbol] = ACTIONS(595), + [anon_sym_object] = ACTIONS(595), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [76] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(804), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3873), - [sym_identifier] = ACTIONS(580), - [anon_sym_export] = ACTIONS(582), - [anon_sym_type] = ACTIONS(584), - [anon_sym_namespace] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(554), + [75] = { + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(848), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(2410), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(3867), + [sym_identifier] = ACTIONS(573), + [anon_sym_export] = ACTIONS(575), + [anon_sym_type] = ACTIONS(577), + [anon_sym_namespace] = ACTIONS(579), + [anon_sym_LBRACE] = ACTIONS(547), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(588), + [anon_sym_with] = ACTIONS(581), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(590), + [anon_sym_let] = ACTIONS(583), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(592), + [anon_sym_if] = ACTIONS(585), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(594), + [anon_sym_for] = ACTIONS(587), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(596), + [anon_sym_while] = ACTIONS(589), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -32255,154 +31626,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(598), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(600), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(559), + [anon_sym_async] = ACTIONS(591), + [anon_sym_function] = ACTIONS(563), + [anon_sym_new] = ACTIONS(593), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(602), - [anon_sym_readonly] = ACTIONS(602), - [anon_sym_get] = ACTIONS(602), - [anon_sym_set] = ACTIONS(602), - [anon_sym_declare] = ACTIONS(604), - [anon_sym_public] = ACTIONS(602), - [anon_sym_private] = ACTIONS(602), - [anon_sym_protected] = ACTIONS(602), - [anon_sym_override] = ACTIONS(602), - [anon_sym_module] = ACTIONS(606), - [anon_sym_any] = ACTIONS(602), - [anon_sym_number] = ACTIONS(602), - [anon_sym_boolean] = ACTIONS(602), - [anon_sym_string] = ACTIONS(602), - [anon_sym_symbol] = ACTIONS(602), - [anon_sym_object] = ACTIONS(602), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(595), + [anon_sym_readonly] = ACTIONS(595), + [anon_sym_get] = ACTIONS(595), + [anon_sym_set] = ACTIONS(595), + [anon_sym_declare] = ACTIONS(597), + [anon_sym_public] = ACTIONS(595), + [anon_sym_private] = ACTIONS(595), + [anon_sym_protected] = ACTIONS(595), + [anon_sym_override] = ACTIONS(595), + [anon_sym_module] = ACTIONS(599), + [anon_sym_any] = ACTIONS(595), + [anon_sym_number] = ACTIONS(595), + [anon_sym_boolean] = ACTIONS(595), + [anon_sym_string] = ACTIONS(595), + [anon_sym_symbol] = ACTIONS(595), + [anon_sym_object] = ACTIONS(595), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [77] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(871), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3873), - [sym_identifier] = ACTIONS(580), - [anon_sym_export] = ACTIONS(582), - [anon_sym_type] = ACTIONS(584), - [anon_sym_namespace] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(554), + [76] = { + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(861), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(2410), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(3867), + [sym_identifier] = ACTIONS(573), + [anon_sym_export] = ACTIONS(575), + [anon_sym_type] = ACTIONS(577), + [anon_sym_namespace] = ACTIONS(579), + [anon_sym_LBRACE] = ACTIONS(547), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(588), + [anon_sym_with] = ACTIONS(581), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(590), + [anon_sym_let] = ACTIONS(583), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(592), + [anon_sym_if] = ACTIONS(585), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(594), + [anon_sym_for] = ACTIONS(587), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(596), + [anon_sym_while] = ACTIONS(589), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -32412,154 +31781,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(598), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(600), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(559), + [anon_sym_async] = ACTIONS(591), + [anon_sym_function] = ACTIONS(563), + [anon_sym_new] = ACTIONS(593), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(602), - [anon_sym_readonly] = ACTIONS(602), - [anon_sym_get] = ACTIONS(602), - [anon_sym_set] = ACTIONS(602), - [anon_sym_declare] = ACTIONS(604), - [anon_sym_public] = ACTIONS(602), - [anon_sym_private] = ACTIONS(602), - [anon_sym_protected] = ACTIONS(602), - [anon_sym_override] = ACTIONS(602), - [anon_sym_module] = ACTIONS(606), - [anon_sym_any] = ACTIONS(602), - [anon_sym_number] = ACTIONS(602), - [anon_sym_boolean] = ACTIONS(602), - [anon_sym_string] = ACTIONS(602), - [anon_sym_symbol] = ACTIONS(602), - [anon_sym_object] = ACTIONS(602), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(595), + [anon_sym_readonly] = ACTIONS(595), + [anon_sym_get] = ACTIONS(595), + [anon_sym_set] = ACTIONS(595), + [anon_sym_declare] = ACTIONS(597), + [anon_sym_public] = ACTIONS(595), + [anon_sym_private] = ACTIONS(595), + [anon_sym_protected] = ACTIONS(595), + [anon_sym_override] = ACTIONS(595), + [anon_sym_module] = ACTIONS(599), + [anon_sym_any] = ACTIONS(595), + [anon_sym_number] = ACTIONS(595), + [anon_sym_boolean] = ACTIONS(595), + [anon_sym_string] = ACTIONS(595), + [anon_sym_symbol] = ACTIONS(595), + [anon_sym_object] = ACTIONS(595), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [78] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(842), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3873), - [sym_identifier] = ACTIONS(580), - [anon_sym_export] = ACTIONS(582), - [anon_sym_type] = ACTIONS(584), - [anon_sym_namespace] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(554), + [77] = { + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(854), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(2410), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(3867), + [sym_identifier] = ACTIONS(573), + [anon_sym_export] = ACTIONS(575), + [anon_sym_type] = ACTIONS(577), + [anon_sym_namespace] = ACTIONS(579), + [anon_sym_LBRACE] = ACTIONS(547), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(588), + [anon_sym_with] = ACTIONS(581), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(590), + [anon_sym_let] = ACTIONS(583), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(592), + [anon_sym_if] = ACTIONS(585), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(594), + [anon_sym_for] = ACTIONS(587), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(596), + [anon_sym_while] = ACTIONS(589), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -32569,154 +31936,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(598), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(600), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(559), + [anon_sym_async] = ACTIONS(591), + [anon_sym_function] = ACTIONS(563), + [anon_sym_new] = ACTIONS(593), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(602), - [anon_sym_readonly] = ACTIONS(602), - [anon_sym_get] = ACTIONS(602), - [anon_sym_set] = ACTIONS(602), - [anon_sym_declare] = ACTIONS(604), - [anon_sym_public] = ACTIONS(602), - [anon_sym_private] = ACTIONS(602), - [anon_sym_protected] = ACTIONS(602), - [anon_sym_override] = ACTIONS(602), - [anon_sym_module] = ACTIONS(606), - [anon_sym_any] = ACTIONS(602), - [anon_sym_number] = ACTIONS(602), - [anon_sym_boolean] = ACTIONS(602), - [anon_sym_string] = ACTIONS(602), - [anon_sym_symbol] = ACTIONS(602), - [anon_sym_object] = ACTIONS(602), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(595), + [anon_sym_readonly] = ACTIONS(595), + [anon_sym_get] = ACTIONS(595), + [anon_sym_set] = ACTIONS(595), + [anon_sym_declare] = ACTIONS(597), + [anon_sym_public] = ACTIONS(595), + [anon_sym_private] = ACTIONS(595), + [anon_sym_protected] = ACTIONS(595), + [anon_sym_override] = ACTIONS(595), + [anon_sym_module] = ACTIONS(599), + [anon_sym_any] = ACTIONS(595), + [anon_sym_number] = ACTIONS(595), + [anon_sym_boolean] = ACTIONS(595), + [anon_sym_string] = ACTIONS(595), + [anon_sym_symbol] = ACTIONS(595), + [anon_sym_object] = ACTIONS(595), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [79] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(891), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3873), - [sym_identifier] = ACTIONS(580), - [anon_sym_export] = ACTIONS(582), - [anon_sym_type] = ACTIONS(584), - [anon_sym_namespace] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(554), + [78] = { + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(822), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(2410), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(3867), + [sym_identifier] = ACTIONS(573), + [anon_sym_export] = ACTIONS(575), + [anon_sym_type] = ACTIONS(577), + [anon_sym_namespace] = ACTIONS(579), + [anon_sym_LBRACE] = ACTIONS(547), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(588), + [anon_sym_with] = ACTIONS(581), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(590), + [anon_sym_let] = ACTIONS(583), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(592), + [anon_sym_if] = ACTIONS(585), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(594), + [anon_sym_for] = ACTIONS(587), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(596), + [anon_sym_while] = ACTIONS(589), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -32726,154 +32091,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(598), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(600), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(559), + [anon_sym_async] = ACTIONS(591), + [anon_sym_function] = ACTIONS(563), + [anon_sym_new] = ACTIONS(593), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(602), - [anon_sym_readonly] = ACTIONS(602), - [anon_sym_get] = ACTIONS(602), - [anon_sym_set] = ACTIONS(602), - [anon_sym_declare] = ACTIONS(604), - [anon_sym_public] = ACTIONS(602), - [anon_sym_private] = ACTIONS(602), - [anon_sym_protected] = ACTIONS(602), - [anon_sym_override] = ACTIONS(602), - [anon_sym_module] = ACTIONS(606), - [anon_sym_any] = ACTIONS(602), - [anon_sym_number] = ACTIONS(602), - [anon_sym_boolean] = ACTIONS(602), - [anon_sym_string] = ACTIONS(602), - [anon_sym_symbol] = ACTIONS(602), - [anon_sym_object] = ACTIONS(602), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(595), + [anon_sym_readonly] = ACTIONS(595), + [anon_sym_get] = ACTIONS(595), + [anon_sym_set] = ACTIONS(595), + [anon_sym_declare] = ACTIONS(597), + [anon_sym_public] = ACTIONS(595), + [anon_sym_private] = ACTIONS(595), + [anon_sym_protected] = ACTIONS(595), + [anon_sym_override] = ACTIONS(595), + [anon_sym_module] = ACTIONS(599), + [anon_sym_any] = ACTIONS(595), + [anon_sym_number] = ACTIONS(595), + [anon_sym_boolean] = ACTIONS(595), + [anon_sym_string] = ACTIONS(595), + [anon_sym_symbol] = ACTIONS(595), + [anon_sym_object] = ACTIONS(595), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [80] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(899), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3873), - [sym_identifier] = ACTIONS(580), - [anon_sym_export] = ACTIONS(582), - [anon_sym_type] = ACTIONS(584), - [anon_sym_namespace] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(554), + [79] = { + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(860), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(2410), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(3867), + [sym_identifier] = ACTIONS(573), + [anon_sym_export] = ACTIONS(575), + [anon_sym_type] = ACTIONS(577), + [anon_sym_namespace] = ACTIONS(579), + [anon_sym_LBRACE] = ACTIONS(547), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(588), + [anon_sym_with] = ACTIONS(581), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(590), + [anon_sym_let] = ACTIONS(583), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(592), + [anon_sym_if] = ACTIONS(585), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(594), + [anon_sym_for] = ACTIONS(587), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(596), + [anon_sym_while] = ACTIONS(589), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -32883,154 +32246,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(598), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(600), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(559), + [anon_sym_async] = ACTIONS(591), + [anon_sym_function] = ACTIONS(563), + [anon_sym_new] = ACTIONS(593), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(602), - [anon_sym_readonly] = ACTIONS(602), - [anon_sym_get] = ACTIONS(602), - [anon_sym_set] = ACTIONS(602), - [anon_sym_declare] = ACTIONS(604), - [anon_sym_public] = ACTIONS(602), - [anon_sym_private] = ACTIONS(602), - [anon_sym_protected] = ACTIONS(602), - [anon_sym_override] = ACTIONS(602), - [anon_sym_module] = ACTIONS(606), - [anon_sym_any] = ACTIONS(602), - [anon_sym_number] = ACTIONS(602), - [anon_sym_boolean] = ACTIONS(602), - [anon_sym_string] = ACTIONS(602), - [anon_sym_symbol] = ACTIONS(602), - [anon_sym_object] = ACTIONS(602), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(595), + [anon_sym_readonly] = ACTIONS(595), + [anon_sym_get] = ACTIONS(595), + [anon_sym_set] = ACTIONS(595), + [anon_sym_declare] = ACTIONS(597), + [anon_sym_public] = ACTIONS(595), + [anon_sym_private] = ACTIONS(595), + [anon_sym_protected] = ACTIONS(595), + [anon_sym_override] = ACTIONS(595), + [anon_sym_module] = ACTIONS(599), + [anon_sym_any] = ACTIONS(595), + [anon_sym_number] = ACTIONS(595), + [anon_sym_boolean] = ACTIONS(595), + [anon_sym_string] = ACTIONS(595), + [anon_sym_symbol] = ACTIONS(595), + [anon_sym_object] = ACTIONS(595), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [81] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(782), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3873), - [sym_identifier] = ACTIONS(580), - [anon_sym_export] = ACTIONS(582), - [anon_sym_type] = ACTIONS(584), - [anon_sym_namespace] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(554), + [80] = { + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(881), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(2410), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(3867), + [sym_identifier] = ACTIONS(573), + [anon_sym_export] = ACTIONS(575), + [anon_sym_type] = ACTIONS(577), + [anon_sym_namespace] = ACTIONS(579), + [anon_sym_LBRACE] = ACTIONS(547), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(588), + [anon_sym_with] = ACTIONS(581), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(590), + [anon_sym_let] = ACTIONS(583), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(592), + [anon_sym_if] = ACTIONS(585), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(594), + [anon_sym_for] = ACTIONS(587), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(596), + [anon_sym_while] = ACTIONS(589), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -33040,154 +32401,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(598), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(600), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(559), + [anon_sym_async] = ACTIONS(591), + [anon_sym_function] = ACTIONS(563), + [anon_sym_new] = ACTIONS(593), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(602), - [anon_sym_readonly] = ACTIONS(602), - [anon_sym_get] = ACTIONS(602), - [anon_sym_set] = ACTIONS(602), - [anon_sym_declare] = ACTIONS(604), - [anon_sym_public] = ACTIONS(602), - [anon_sym_private] = ACTIONS(602), - [anon_sym_protected] = ACTIONS(602), - [anon_sym_override] = ACTIONS(602), - [anon_sym_module] = ACTIONS(606), - [anon_sym_any] = ACTIONS(602), - [anon_sym_number] = ACTIONS(602), - [anon_sym_boolean] = ACTIONS(602), - [anon_sym_string] = ACTIONS(602), - [anon_sym_symbol] = ACTIONS(602), - [anon_sym_object] = ACTIONS(602), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(595), + [anon_sym_readonly] = ACTIONS(595), + [anon_sym_get] = ACTIONS(595), + [anon_sym_set] = ACTIONS(595), + [anon_sym_declare] = ACTIONS(597), + [anon_sym_public] = ACTIONS(595), + [anon_sym_private] = ACTIONS(595), + [anon_sym_protected] = ACTIONS(595), + [anon_sym_override] = ACTIONS(595), + [anon_sym_module] = ACTIONS(599), + [anon_sym_any] = ACTIONS(595), + [anon_sym_number] = ACTIONS(595), + [anon_sym_boolean] = ACTIONS(595), + [anon_sym_string] = ACTIONS(595), + [anon_sym_symbol] = ACTIONS(595), + [anon_sym_object] = ACTIONS(595), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [82] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(791), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3873), - [sym_identifier] = ACTIONS(580), - [anon_sym_export] = ACTIONS(582), - [anon_sym_type] = ACTIONS(584), - [anon_sym_namespace] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(554), + [81] = { + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(882), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(2410), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(3867), + [sym_identifier] = ACTIONS(573), + [anon_sym_export] = ACTIONS(575), + [anon_sym_type] = ACTIONS(577), + [anon_sym_namespace] = ACTIONS(579), + [anon_sym_LBRACE] = ACTIONS(547), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(588), + [anon_sym_with] = ACTIONS(581), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(590), + [anon_sym_let] = ACTIONS(583), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(592), + [anon_sym_if] = ACTIONS(585), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(594), + [anon_sym_for] = ACTIONS(587), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(596), + [anon_sym_while] = ACTIONS(589), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -33197,154 +32556,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(598), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(600), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(559), + [anon_sym_async] = ACTIONS(591), + [anon_sym_function] = ACTIONS(563), + [anon_sym_new] = ACTIONS(593), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(602), - [anon_sym_readonly] = ACTIONS(602), - [anon_sym_get] = ACTIONS(602), - [anon_sym_set] = ACTIONS(602), - [anon_sym_declare] = ACTIONS(604), - [anon_sym_public] = ACTIONS(602), - [anon_sym_private] = ACTIONS(602), - [anon_sym_protected] = ACTIONS(602), - [anon_sym_override] = ACTIONS(602), - [anon_sym_module] = ACTIONS(606), - [anon_sym_any] = ACTIONS(602), - [anon_sym_number] = ACTIONS(602), - [anon_sym_boolean] = ACTIONS(602), - [anon_sym_string] = ACTIONS(602), - [anon_sym_symbol] = ACTIONS(602), - [anon_sym_object] = ACTIONS(602), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(595), + [anon_sym_readonly] = ACTIONS(595), + [anon_sym_get] = ACTIONS(595), + [anon_sym_set] = ACTIONS(595), + [anon_sym_declare] = ACTIONS(597), + [anon_sym_public] = ACTIONS(595), + [anon_sym_private] = ACTIONS(595), + [anon_sym_protected] = ACTIONS(595), + [anon_sym_override] = ACTIONS(595), + [anon_sym_module] = ACTIONS(599), + [anon_sym_any] = ACTIONS(595), + [anon_sym_number] = ACTIONS(595), + [anon_sym_boolean] = ACTIONS(595), + [anon_sym_string] = ACTIONS(595), + [anon_sym_symbol] = ACTIONS(595), + [anon_sym_object] = ACTIONS(595), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [83] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(793), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3873), - [sym_identifier] = ACTIONS(580), - [anon_sym_export] = ACTIONS(582), - [anon_sym_type] = ACTIONS(584), - [anon_sym_namespace] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(554), + [82] = { + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(884), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(2410), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(3867), + [sym_identifier] = ACTIONS(573), + [anon_sym_export] = ACTIONS(575), + [anon_sym_type] = ACTIONS(577), + [anon_sym_namespace] = ACTIONS(579), + [anon_sym_LBRACE] = ACTIONS(547), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(588), + [anon_sym_with] = ACTIONS(581), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(590), + [anon_sym_let] = ACTIONS(583), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(592), + [anon_sym_if] = ACTIONS(585), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(594), + [anon_sym_for] = ACTIONS(587), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(596), + [anon_sym_while] = ACTIONS(589), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -33354,154 +32711,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(598), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(600), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(559), + [anon_sym_async] = ACTIONS(591), + [anon_sym_function] = ACTIONS(563), + [anon_sym_new] = ACTIONS(593), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(602), - [anon_sym_readonly] = ACTIONS(602), - [anon_sym_get] = ACTIONS(602), - [anon_sym_set] = ACTIONS(602), - [anon_sym_declare] = ACTIONS(604), - [anon_sym_public] = ACTIONS(602), - [anon_sym_private] = ACTIONS(602), - [anon_sym_protected] = ACTIONS(602), - [anon_sym_override] = ACTIONS(602), - [anon_sym_module] = ACTIONS(606), - [anon_sym_any] = ACTIONS(602), - [anon_sym_number] = ACTIONS(602), - [anon_sym_boolean] = ACTIONS(602), - [anon_sym_string] = ACTIONS(602), - [anon_sym_symbol] = ACTIONS(602), - [anon_sym_object] = ACTIONS(602), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(595), + [anon_sym_readonly] = ACTIONS(595), + [anon_sym_get] = ACTIONS(595), + [anon_sym_set] = ACTIONS(595), + [anon_sym_declare] = ACTIONS(597), + [anon_sym_public] = ACTIONS(595), + [anon_sym_private] = ACTIONS(595), + [anon_sym_protected] = ACTIONS(595), + [anon_sym_override] = ACTIONS(595), + [anon_sym_module] = ACTIONS(599), + [anon_sym_any] = ACTIONS(595), + [anon_sym_number] = ACTIONS(595), + [anon_sym_boolean] = ACTIONS(595), + [anon_sym_string] = ACTIONS(595), + [anon_sym_symbol] = ACTIONS(595), + [anon_sym_object] = ACTIONS(595), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [84] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(794), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3873), - [sym_identifier] = ACTIONS(580), - [anon_sym_export] = ACTIONS(582), - [anon_sym_type] = ACTIONS(584), - [anon_sym_namespace] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(554), + [83] = { + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(894), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(2410), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(3867), + [sym_identifier] = ACTIONS(573), + [anon_sym_export] = ACTIONS(575), + [anon_sym_type] = ACTIONS(577), + [anon_sym_namespace] = ACTIONS(579), + [anon_sym_LBRACE] = ACTIONS(547), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(588), + [anon_sym_with] = ACTIONS(581), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(590), + [anon_sym_let] = ACTIONS(583), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(592), + [anon_sym_if] = ACTIONS(585), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(594), + [anon_sym_for] = ACTIONS(587), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(596), + [anon_sym_while] = ACTIONS(589), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -33511,154 +32866,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(598), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(600), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(559), + [anon_sym_async] = ACTIONS(591), + [anon_sym_function] = ACTIONS(563), + [anon_sym_new] = ACTIONS(593), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(602), - [anon_sym_readonly] = ACTIONS(602), - [anon_sym_get] = ACTIONS(602), - [anon_sym_set] = ACTIONS(602), - [anon_sym_declare] = ACTIONS(604), - [anon_sym_public] = ACTIONS(602), - [anon_sym_private] = ACTIONS(602), - [anon_sym_protected] = ACTIONS(602), - [anon_sym_override] = ACTIONS(602), - [anon_sym_module] = ACTIONS(606), - [anon_sym_any] = ACTIONS(602), - [anon_sym_number] = ACTIONS(602), - [anon_sym_boolean] = ACTIONS(602), - [anon_sym_string] = ACTIONS(602), - [anon_sym_symbol] = ACTIONS(602), - [anon_sym_object] = ACTIONS(602), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(595), + [anon_sym_readonly] = ACTIONS(595), + [anon_sym_get] = ACTIONS(595), + [anon_sym_set] = ACTIONS(595), + [anon_sym_declare] = ACTIONS(597), + [anon_sym_public] = ACTIONS(595), + [anon_sym_private] = ACTIONS(595), + [anon_sym_protected] = ACTIONS(595), + [anon_sym_override] = ACTIONS(595), + [anon_sym_module] = ACTIONS(599), + [anon_sym_any] = ACTIONS(595), + [anon_sym_number] = ACTIONS(595), + [anon_sym_boolean] = ACTIONS(595), + [anon_sym_string] = ACTIONS(595), + [anon_sym_symbol] = ACTIONS(595), + [anon_sym_object] = ACTIONS(595), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [85] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(800), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3873), - [sym_identifier] = ACTIONS(580), - [anon_sym_export] = ACTIONS(582), - [anon_sym_type] = ACTIONS(584), - [anon_sym_namespace] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(554), + [84] = { + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(895), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(2410), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(3867), + [sym_identifier] = ACTIONS(573), + [anon_sym_export] = ACTIONS(575), + [anon_sym_type] = ACTIONS(577), + [anon_sym_namespace] = ACTIONS(579), + [anon_sym_LBRACE] = ACTIONS(547), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(588), + [anon_sym_with] = ACTIONS(581), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(590), + [anon_sym_let] = ACTIONS(583), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(592), + [anon_sym_if] = ACTIONS(585), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(594), + [anon_sym_for] = ACTIONS(587), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(596), + [anon_sym_while] = ACTIONS(589), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -33668,154 +33021,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(598), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(600), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(559), + [anon_sym_async] = ACTIONS(591), + [anon_sym_function] = ACTIONS(563), + [anon_sym_new] = ACTIONS(593), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(602), - [anon_sym_readonly] = ACTIONS(602), - [anon_sym_get] = ACTIONS(602), - [anon_sym_set] = ACTIONS(602), - [anon_sym_declare] = ACTIONS(604), - [anon_sym_public] = ACTIONS(602), - [anon_sym_private] = ACTIONS(602), - [anon_sym_protected] = ACTIONS(602), - [anon_sym_override] = ACTIONS(602), - [anon_sym_module] = ACTIONS(606), - [anon_sym_any] = ACTIONS(602), - [anon_sym_number] = ACTIONS(602), - [anon_sym_boolean] = ACTIONS(602), - [anon_sym_string] = ACTIONS(602), - [anon_sym_symbol] = ACTIONS(602), - [anon_sym_object] = ACTIONS(602), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(595), + [anon_sym_readonly] = ACTIONS(595), + [anon_sym_get] = ACTIONS(595), + [anon_sym_set] = ACTIONS(595), + [anon_sym_declare] = ACTIONS(597), + [anon_sym_public] = ACTIONS(595), + [anon_sym_private] = ACTIONS(595), + [anon_sym_protected] = ACTIONS(595), + [anon_sym_override] = ACTIONS(595), + [anon_sym_module] = ACTIONS(599), + [anon_sym_any] = ACTIONS(595), + [anon_sym_number] = ACTIONS(595), + [anon_sym_boolean] = ACTIONS(595), + [anon_sym_string] = ACTIONS(595), + [anon_sym_symbol] = ACTIONS(595), + [anon_sym_object] = ACTIONS(595), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [86] = { - [sym_export_statement] = STATE(892), - [sym_declaration] = STATE(892), - [sym_import] = STATE(3760), - [sym_import_statement] = STATE(892), - [sym_statement] = STATE(5616), - [sym_expression_statement] = STATE(892), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_statement_block] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_for_in_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_with_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_debugger_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_empty_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5311), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(3822), - [sym_identifier] = ACTIONS(546), - [anon_sym_export] = ACTIONS(548), - [anon_sym_type] = ACTIONS(550), - [anon_sym_namespace] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(554), + [85] = { + [sym_export_statement] = STATE(844), + [sym_declaration] = STATE(844), + [sym_import] = STATE(3555), + [sym_import_statement] = STATE(844), + [sym_statement] = STATE(897), + [sym_expression_statement] = STATE(844), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_statement_block] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_for_in_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_try_statement] = STATE(844), + [sym_with_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_debugger_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_throw_statement] = STATE(844), + [sym_empty_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5350), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(2410), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(3867), + [sym_identifier] = ACTIONS(573), + [anon_sym_export] = ACTIONS(575), + [anon_sym_type] = ACTIONS(577), + [anon_sym_namespace] = ACTIONS(579), + [anon_sym_LBRACE] = ACTIONS(547), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(556), + [anon_sym_with] = ACTIONS(581), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(558), + [anon_sym_let] = ACTIONS(583), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(560), + [anon_sym_if] = ACTIONS(585), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(562), + [anon_sym_for] = ACTIONS(587), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(564), + [anon_sym_while] = ACTIONS(589), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -33825,21362 +33176,21021 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(568), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(572), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(559), + [anon_sym_async] = ACTIONS(591), + [anon_sym_function] = ACTIONS(563), + [anon_sym_new] = ACTIONS(593), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(574), - [anon_sym_readonly] = ACTIONS(574), - [anon_sym_get] = ACTIONS(574), - [anon_sym_set] = ACTIONS(574), - [anon_sym_declare] = ACTIONS(576), - [anon_sym_public] = ACTIONS(574), - [anon_sym_private] = ACTIONS(574), - [anon_sym_protected] = ACTIONS(574), - [anon_sym_override] = ACTIONS(574), - [anon_sym_module] = ACTIONS(578), - [anon_sym_any] = ACTIONS(574), - [anon_sym_number] = ACTIONS(574), - [anon_sym_boolean] = ACTIONS(574), - [anon_sym_string] = ACTIONS(574), - [anon_sym_symbol] = ACTIONS(574), - [anon_sym_object] = ACTIONS(574), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(595), + [anon_sym_readonly] = ACTIONS(595), + [anon_sym_get] = ACTIONS(595), + [anon_sym_set] = ACTIONS(595), + [anon_sym_declare] = ACTIONS(597), + [anon_sym_public] = ACTIONS(595), + [anon_sym_private] = ACTIONS(595), + [anon_sym_protected] = ACTIONS(595), + [anon_sym_override] = ACTIONS(595), + [anon_sym_module] = ACTIONS(599), + [anon_sym_any] = ACTIONS(595), + [anon_sym_number] = ACTIONS(595), + [anon_sym_boolean] = ACTIONS(595), + [anon_sym_string] = ACTIONS(595), + [anon_sym_symbol] = ACTIONS(595), + [anon_sym_object] = ACTIONS(595), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [86] = { + [sym_import] = STATE(3645), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2146), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3596), + [sym_assignment_pattern] = STATE(5112), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3596), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_nested_identifier] = STATE(5753), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1268), + [sym_subscript_expression] = STATE(1268), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3596), + [sym_spread_element] = STATE(4912), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(2313), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(4380), + [sym_pattern] = STATE(4530), + [sym_rest_pattern] = STATE(3991), + [sym_non_null_expression] = STATE(1268), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3263), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3806), + [sym_tuple_parameter] = STATE(5066), + [sym_optional_tuple_parameter] = STATE(5066), + [sym_optional_type] = STATE(5066), + [sym_rest_type] = STATE(5066), + [sym__tuple_type_member] = STATE(5066), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5560), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [aux_sym_export_statement_repeat1] = STATE(4590), + [aux_sym_array_repeat1] = STATE(4921), + [aux_sym_array_pattern_repeat1] = STATE(5134), + [sym_identifier] = ACTIONS(601), + [anon_sym_export] = ACTIONS(603), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_type] = ACTIONS(603), + [anon_sym_namespace] = ACTIONS(607), + [anon_sym_LBRACE] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(611), + [anon_sym_typeof] = ACTIONS(613), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(603), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(621), + [anon_sym_RBRACK] = ACTIONS(685), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(627), + [anon_sym_using] = ACTIONS(629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(631), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(643), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(188), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(651), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(653), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(603), + [anon_sym_readonly] = ACTIONS(655), + [anon_sym_get] = ACTIONS(603), + [anon_sym_set] = ACTIONS(603), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_declare] = ACTIONS(603), + [anon_sym_public] = ACTIONS(603), + [anon_sym_private] = ACTIONS(603), + [anon_sym_protected] = ACTIONS(603), + [anon_sym_override] = ACTIONS(603), + [anon_sym_module] = ACTIONS(603), + [anon_sym_any] = ACTIONS(659), + [anon_sym_number] = ACTIONS(659), + [anon_sym_boolean] = ACTIONS(659), + [anon_sym_string] = ACTIONS(659), + [anon_sym_symbol] = ACTIONS(659), + [anon_sym_object] = ACTIONS(659), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [87] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1317), - [sym_expression] = STATE(2592), - [sym_primary_expression] = STATE(1628), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(2605), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1317), - [sym_subscript_expression] = STATE(1317), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1317), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [aux_sym_object_repeat1] = STATE(4673), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(692), - [anon_sym_export] = ACTIONS(694), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(698), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(702), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(186), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1289), + [sym_expression] = STATE(2567), + [sym_primary_expression] = STATE(1640), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(2661), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1289), + [sym_subscript_expression] = STATE(1289), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1289), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [aux_sym_object_repeat1] = STATE(5191), + [aux_sym_object_pattern_repeat1] = STATE(5131), + [sym_identifier] = ACTIONS(687), + [anon_sym_export] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(689), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(693), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(183), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_yield] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_yield] = ACTIONS(142), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(709), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(713), - [anon_sym_function] = ACTIONS(715), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(719), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(694), - [anon_sym_readonly] = ACTIONS(694), - [anon_sym_get] = ACTIONS(694), - [anon_sym_set] = ACTIONS(694), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(694), - [anon_sym_public] = ACTIONS(694), - [anon_sym_private] = ACTIONS(694), - [anon_sym_protected] = ACTIONS(694), - [anon_sym_override] = ACTIONS(694), - [anon_sym_module] = ACTIONS(694), - [anon_sym_any] = ACTIONS(694), - [anon_sym_number] = ACTIONS(694), - [anon_sym_boolean] = ACTIONS(694), - [anon_sym_string] = ACTIONS(694), - [anon_sym_symbol] = ACTIONS(694), - [anon_sym_object] = ACTIONS(694), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(704), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(708), + [anon_sym_function] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(714), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(689), + [anon_sym_readonly] = ACTIONS(689), + [anon_sym_get] = ACTIONS(689), + [anon_sym_set] = ACTIONS(689), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(689), + [anon_sym_public] = ACTIONS(689), + [anon_sym_private] = ACTIONS(689), + [anon_sym_protected] = ACTIONS(689), + [anon_sym_override] = ACTIONS(689), + [anon_sym_module] = ACTIONS(689), + [anon_sym_any] = ACTIONS(689), + [anon_sym_number] = ACTIONS(689), + [anon_sym_boolean] = ACTIONS(689), + [anon_sym_string] = ACTIONS(689), + [anon_sym_symbol] = ACTIONS(689), + [anon_sym_object] = ACTIONS(689), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [88] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1317), - [sym_expression] = STATE(2592), - [sym_primary_expression] = STATE(1628), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(2605), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1317), - [sym_subscript_expression] = STATE(1317), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1317), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [aux_sym_object_repeat1] = STATE(5173), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(692), - [anon_sym_export] = ACTIONS(694), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(698), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(727), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(186), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1289), + [sym_expression] = STATE(2567), + [sym_primary_expression] = STATE(1640), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(2661), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1289), + [sym_subscript_expression] = STATE(1289), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1289), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [aux_sym_object_repeat1] = STATE(5191), + [aux_sym_object_pattern_repeat1] = STATE(5131), + [sym_identifier] = ACTIONS(687), + [anon_sym_export] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(689), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(693), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(183), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_yield] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_yield] = ACTIONS(142), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(709), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(713), - [anon_sym_function] = ACTIONS(715), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(719), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(694), - [anon_sym_readonly] = ACTIONS(694), - [anon_sym_get] = ACTIONS(694), - [anon_sym_set] = ACTIONS(694), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(694), - [anon_sym_public] = ACTIONS(694), - [anon_sym_private] = ACTIONS(694), - [anon_sym_protected] = ACTIONS(694), - [anon_sym_override] = ACTIONS(694), - [anon_sym_module] = ACTIONS(694), - [anon_sym_any] = ACTIONS(694), - [anon_sym_number] = ACTIONS(694), - [anon_sym_boolean] = ACTIONS(694), - [anon_sym_string] = ACTIONS(694), - [anon_sym_symbol] = ACTIONS(694), - [anon_sym_object] = ACTIONS(694), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(704), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(708), + [anon_sym_function] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(714), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(689), + [anon_sym_readonly] = ACTIONS(689), + [anon_sym_get] = ACTIONS(689), + [anon_sym_set] = ACTIONS(689), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(689), + [anon_sym_public] = ACTIONS(689), + [anon_sym_private] = ACTIONS(689), + [anon_sym_protected] = ACTIONS(689), + [anon_sym_override] = ACTIONS(689), + [anon_sym_module] = ACTIONS(689), + [anon_sym_any] = ACTIONS(689), + [anon_sym_number] = ACTIONS(689), + [anon_sym_boolean] = ACTIONS(689), + [anon_sym_string] = ACTIONS(689), + [anon_sym_symbol] = ACTIONS(689), + [anon_sym_object] = ACTIONS(689), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [89] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1317), - [sym_expression] = STATE(2592), - [sym_primary_expression] = STATE(1628), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(2605), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1317), - [sym_subscript_expression] = STATE(1317), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1317), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [aux_sym_object_repeat1] = STATE(5173), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(692), - [anon_sym_export] = ACTIONS(694), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(698), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(729), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(186), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1289), + [sym_expression] = STATE(2567), + [sym_primary_expression] = STATE(1640), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(2661), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1289), + [sym_subscript_expression] = STATE(1289), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1289), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [aux_sym_object_repeat1] = STATE(5129), + [aux_sym_object_pattern_repeat1] = STATE(5131), + [sym_identifier] = ACTIONS(687), + [anon_sym_export] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(689), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(693), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(183), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_yield] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_yield] = ACTIONS(142), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(709), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(713), - [anon_sym_function] = ACTIONS(715), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(719), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(694), - [anon_sym_readonly] = ACTIONS(694), - [anon_sym_get] = ACTIONS(694), - [anon_sym_set] = ACTIONS(694), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(694), - [anon_sym_public] = ACTIONS(694), - [anon_sym_private] = ACTIONS(694), - [anon_sym_protected] = ACTIONS(694), - [anon_sym_override] = ACTIONS(694), - [anon_sym_module] = ACTIONS(694), - [anon_sym_any] = ACTIONS(694), - [anon_sym_number] = ACTIONS(694), - [anon_sym_boolean] = ACTIONS(694), - [anon_sym_string] = ACTIONS(694), - [anon_sym_symbol] = ACTIONS(694), - [anon_sym_object] = ACTIONS(694), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(704), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(708), + [anon_sym_function] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(714), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(689), + [anon_sym_readonly] = ACTIONS(689), + [anon_sym_get] = ACTIONS(689), + [anon_sym_set] = ACTIONS(689), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(689), + [anon_sym_public] = ACTIONS(689), + [anon_sym_private] = ACTIONS(689), + [anon_sym_protected] = ACTIONS(689), + [anon_sym_override] = ACTIONS(689), + [anon_sym_module] = ACTIONS(689), + [anon_sym_any] = ACTIONS(689), + [anon_sym_number] = ACTIONS(689), + [anon_sym_boolean] = ACTIONS(689), + [anon_sym_string] = ACTIONS(689), + [anon_sym_symbol] = ACTIONS(689), + [anon_sym_object] = ACTIONS(689), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [90] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4353), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(735), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(738), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(741), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(136), - [anon_sym_DASH] = ACTIONS(136), - [anon_sym_SLASH] = ACTIONS(177), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(743), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(188), - [anon_sym_DASH_DASH] = ACTIONS(188), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(746), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(751), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(115), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3631), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3631), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1265), + [sym_subscript_expression] = STATE(1265), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3631), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_pattern] = STATE(4149), + [sym_rest_pattern] = STATE(3626), + [sym_non_null_expression] = STATE(1265), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(220), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(728), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(730), + [anon_sym_RPAREN] = ACTIONS(223), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(223), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(733), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(736), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(174), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(738), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(185), + [anon_sym_DASH_DASH] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(741), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(746), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(750), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [91] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4354), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(735), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(738), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(741), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(136), - [anon_sym_DASH] = ACTIONS(136), - [anon_sym_SLASH] = ACTIONS(177), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(743), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(188), - [anon_sym_DASH_DASH] = ACTIONS(188), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(746), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(757), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(115), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3755), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(1806), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3596), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3596), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_nested_identifier] = STATE(5753), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym__formal_parameter] = STATE(4861), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1268), + [sym_subscript_expression] = STATE(1268), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3596), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_sequence_expression] = STATE(5728), + [sym_string] = STATE(2106), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3948), + [sym_pattern] = STATE(4261), + [sym_rest_pattern] = STATE(3626), + [sym_non_null_expression] = STATE(1268), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_nested_type_identifier] = STATE(2885), + [sym_accessibility_modifier] = STATE(300), + [sym_override_modifier] = STATE(314), + [sym_required_parameter] = STATE(4861), + [sym_optional_parameter] = STATE(4861), + [sym__parameter_name] = STATE(3523), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(4479), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5431), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [aux_sym_export_statement_repeat1] = STATE(284), + [sym_identifier] = ACTIONS(752), + [anon_sym_export] = ACTIONS(603), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_type] = ACTIONS(603), + [anon_sym_namespace] = ACTIONS(607), + [anon_sym_LBRACE] = ACTIONS(754), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(603), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(758), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(760), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(762), + [anon_sym_using] = ACTIONS(629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(643), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(770), + [sym_number] = ACTIONS(772), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(774), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(776), + [sym_false] = ACTIONS(776), + [sym_null] = ACTIONS(776), + [sym_undefined] = ACTIONS(778), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(603), + [anon_sym_readonly] = ACTIONS(780), + [anon_sym_get] = ACTIONS(603), + [anon_sym_set] = ACTIONS(603), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_declare] = ACTIONS(603), + [anon_sym_public] = ACTIONS(784), + [anon_sym_private] = ACTIONS(784), + [anon_sym_protected] = ACTIONS(784), + [anon_sym_override] = ACTIONS(786), + [anon_sym_module] = ACTIONS(603), + [anon_sym_any] = ACTIONS(788), + [anon_sym_number] = ACTIONS(788), + [anon_sym_boolean] = ACTIONS(788), + [anon_sym_string] = ACTIONS(788), + [anon_sym_symbol] = ACTIONS(788), + [anon_sym_object] = ACTIONS(788), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [92] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4200), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(735), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(738), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(741), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(136), - [anon_sym_DASH] = ACTIONS(136), - [anon_sym_SLASH] = ACTIONS(177), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(743), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(188), - [anon_sym_DASH_DASH] = ACTIONS(188), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(746), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(759), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(115), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3631), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3631), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1265), + [sym_subscript_expression] = STATE(1265), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3631), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_pattern] = STATE(4308), + [sym_rest_pattern] = STATE(3626), + [sym_non_null_expression] = STATE(1265), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(220), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(728), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(730), + [anon_sym_RPAREN] = ACTIONS(223), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(223), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(733), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(736), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(174), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(738), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(185), + [anon_sym_DASH_DASH] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(741), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(790), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(750), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [93] = { - [sym_import] = STATE(3603), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1820), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3740), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3740), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym__formal_parameter] = STATE(4652), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1261), - [sym_subscript_expression] = STATE(1261), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3740), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5747), - [sym_string] = STATE(2088), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4033), - [sym_pattern] = STATE(4314), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1261), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(2884), - [sym_accessibility_modifier] = STATE(294), - [sym_override_modifier] = STATE(306), - [sym_required_parameter] = STATE(4652), - [sym_optional_parameter] = STATE(4652), - [sym__parameter_name] = STATE(3554), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4562), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5407), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(266), - [sym_identifier] = ACTIONS(761), - [anon_sym_export] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(763), - [anon_sym_typeof] = ACTIONS(765), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(610), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(767), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(769), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(771), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(648), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(779), - [sym_number] = ACTIONS(781), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(783), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(785), - [sym_false] = ACTIONS(785), - [sym_null] = ACTIONS(785), - [sym_undefined] = ACTIONS(787), - [anon_sym_AT] = ACTIONS(789), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(791), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(795), - [anon_sym_private] = ACTIONS(795), - [anon_sym_protected] = ACTIONS(795), - [anon_sym_override] = ACTIONS(797), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(799), - [anon_sym_number] = ACTIONS(799), - [anon_sym_boolean] = ACTIONS(799), - [anon_sym_string] = ACTIONS(799), - [anon_sym_symbol] = ACTIONS(799), - [anon_sym_object] = ACTIONS(799), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3631), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3631), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1265), + [sym_subscript_expression] = STATE(1265), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3631), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_pattern] = STATE(4135), + [sym_rest_pattern] = STATE(3626), + [sym_non_null_expression] = STATE(1265), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(220), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(728), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(730), + [anon_sym_RPAREN] = ACTIONS(223), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(223), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(733), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(736), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(174), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(738), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(185), + [anon_sym_DASH_DASH] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(741), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(792), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(750), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [94] = { - [sym_import] = STATE(3603), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1759), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3740), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3740), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym__formal_parameter] = STATE(4652), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1261), - [sym_subscript_expression] = STATE(1261), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3740), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5607), - [sym_string] = STATE(2088), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4033), - [sym_pattern] = STATE(4314), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1261), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(2884), - [sym_accessibility_modifier] = STATE(294), - [sym_override_modifier] = STATE(306), - [sym_required_parameter] = STATE(4652), - [sym_optional_parameter] = STATE(4652), - [sym__parameter_name] = STATE(3554), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4562), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5407), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(266), - [sym_identifier] = ACTIONS(761), - [anon_sym_export] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(763), - [anon_sym_typeof] = ACTIONS(765), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(610), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(767), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(769), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(771), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(648), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(779), - [sym_number] = ACTIONS(781), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(783), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(785), - [sym_false] = ACTIONS(785), - [sym_null] = ACTIONS(785), - [sym_undefined] = ACTIONS(787), - [anon_sym_AT] = ACTIONS(789), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(791), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(795), - [anon_sym_private] = ACTIONS(795), - [anon_sym_protected] = ACTIONS(795), - [anon_sym_override] = ACTIONS(797), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(799), - [anon_sym_number] = ACTIONS(799), - [anon_sym_boolean] = ACTIONS(799), - [anon_sym_string] = ACTIONS(799), - [anon_sym_symbol] = ACTIONS(799), - [anon_sym_object] = ACTIONS(799), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3631), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3631), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1265), + [sym_subscript_expression] = STATE(1265), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3631), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_pattern] = STATE(4152), + [sym_rest_pattern] = STATE(3626), + [sym_non_null_expression] = STATE(1265), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(220), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(728), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(730), + [anon_sym_RPAREN] = ACTIONS(223), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(223), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(733), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(736), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(174), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(738), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(185), + [anon_sym_DASH_DASH] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(741), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(794), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(750), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [95] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4204), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(735), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(738), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(741), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(136), - [anon_sym_DASH] = ACTIONS(136), - [anon_sym_SLASH] = ACTIONS(177), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(743), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(188), - [anon_sym_DASH_DASH] = ACTIONS(188), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(746), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(801), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(115), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3755), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(1806), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3596), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3596), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_nested_identifier] = STATE(5753), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym__formal_parameter] = STATE(4861), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1268), + [sym_subscript_expression] = STATE(1268), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3596), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_sequence_expression] = STATE(5728), + [sym_string] = STATE(2106), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3948), + [sym_pattern] = STATE(4261), + [sym_rest_pattern] = STATE(3626), + [sym_non_null_expression] = STATE(1268), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_nested_type_identifier] = STATE(2885), + [sym_accessibility_modifier] = STATE(300), + [sym_override_modifier] = STATE(314), + [sym_required_parameter] = STATE(4861), + [sym_optional_parameter] = STATE(4861), + [sym__parameter_name] = STATE(3523), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(4500), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5431), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [aux_sym_export_statement_repeat1] = STATE(284), + [sym_identifier] = ACTIONS(752), + [anon_sym_export] = ACTIONS(603), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_type] = ACTIONS(603), + [anon_sym_namespace] = ACTIONS(607), + [anon_sym_LBRACE] = ACTIONS(754), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(603), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(758), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(760), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(762), + [anon_sym_using] = ACTIONS(629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(643), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(770), + [sym_number] = ACTIONS(772), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(774), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(776), + [sym_false] = ACTIONS(776), + [sym_null] = ACTIONS(776), + [sym_undefined] = ACTIONS(778), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(603), + [anon_sym_readonly] = ACTIONS(780), + [anon_sym_get] = ACTIONS(603), + [anon_sym_set] = ACTIONS(603), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_declare] = ACTIONS(603), + [anon_sym_public] = ACTIONS(784), + [anon_sym_private] = ACTIONS(784), + [anon_sym_protected] = ACTIONS(784), + [anon_sym_override] = ACTIONS(786), + [anon_sym_module] = ACTIONS(603), + [anon_sym_any] = ACTIONS(788), + [anon_sym_number] = ACTIONS(788), + [anon_sym_boolean] = ACTIONS(788), + [anon_sym_string] = ACTIONS(788), + [anon_sym_symbol] = ACTIONS(788), + [anon_sym_object] = ACTIONS(788), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [96] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4147), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(735), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(738), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(741), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(136), - [anon_sym_DASH] = ACTIONS(136), - [anon_sym_SLASH] = ACTIONS(177), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(743), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(188), - [anon_sym_DASH_DASH] = ACTIONS(188), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(746), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(803), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(115), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3631), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3631), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1265), + [sym_subscript_expression] = STATE(1265), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3631), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_pattern] = STATE(4252), + [sym_rest_pattern] = STATE(3626), + [sym_non_null_expression] = STATE(1265), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(220), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(728), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(730), + [anon_sym_RPAREN] = ACTIONS(223), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(223), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(733), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(736), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(174), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(738), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(185), + [anon_sym_DASH_DASH] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(741), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(796), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(750), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [97] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4209), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(735), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(738), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(741), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(136), - [anon_sym_DASH] = ACTIONS(136), - [anon_sym_SLASH] = ACTIONS(177), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(743), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(188), - [anon_sym_DASH_DASH] = ACTIONS(188), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(746), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(805), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(115), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3631), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3631), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1265), + [sym_subscript_expression] = STATE(1265), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3631), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_pattern] = STATE(4302), + [sym_rest_pattern] = STATE(3626), + [sym_non_null_expression] = STATE(1265), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(728), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(730), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(733), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(156), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(736), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(174), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(738), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(185), + [anon_sym_DASH_DASH] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(741), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(750), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [98] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4147), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(223), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_COMMA] = ACTIONS(226), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(735), - [anon_sym_RPAREN] = ACTIONS(226), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(226), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(738), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(741), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(136), - [anon_sym_DASH] = ACTIONS(136), - [anon_sym_SLASH] = ACTIONS(177), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(743), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(188), - [anon_sym_DASH_DASH] = ACTIONS(188), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(746), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(803), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(115), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3631), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3631), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1265), + [sym_subscript_expression] = STATE(1265), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3631), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_pattern] = STATE(4289), + [sym_rest_pattern] = STATE(3626), + [sym_non_null_expression] = STATE(1265), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(220), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(728), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(730), + [anon_sym_RPAREN] = ACTIONS(223), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(223), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(733), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(736), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(174), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(738), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(185), + [anon_sym_DASH_DASH] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(741), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(800), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(750), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [99] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4364), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(735), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(738), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(741), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(136), - [anon_sym_DASH] = ACTIONS(136), - [anon_sym_SLASH] = ACTIONS(177), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(743), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(188), - [anon_sym_DASH_DASH] = ACTIONS(188), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(746), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(807), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(115), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3755), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(1793), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3596), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3596), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_nested_identifier] = STATE(5753), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym__formal_parameter] = STATE(4861), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1268), + [sym_subscript_expression] = STATE(1268), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3596), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_sequence_expression] = STATE(5974), + [sym_string] = STATE(2106), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3948), + [sym_pattern] = STATE(4261), + [sym_rest_pattern] = STATE(3626), + [sym_non_null_expression] = STATE(1268), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_nested_type_identifier] = STATE(2885), + [sym_accessibility_modifier] = STATE(300), + [sym_override_modifier] = STATE(314), + [sym_required_parameter] = STATE(4861), + [sym_optional_parameter] = STATE(4861), + [sym__parameter_name] = STATE(3523), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(4479), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5431), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [aux_sym_export_statement_repeat1] = STATE(284), + [sym_identifier] = ACTIONS(752), + [anon_sym_export] = ACTIONS(603), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_type] = ACTIONS(603), + [anon_sym_namespace] = ACTIONS(607), + [anon_sym_LBRACE] = ACTIONS(754), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(603), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(758), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(760), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(762), + [anon_sym_using] = ACTIONS(629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(643), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(770), + [sym_number] = ACTIONS(772), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(774), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(776), + [sym_false] = ACTIONS(776), + [sym_null] = ACTIONS(776), + [sym_undefined] = ACTIONS(778), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(603), + [anon_sym_readonly] = ACTIONS(780), + [anon_sym_get] = ACTIONS(603), + [anon_sym_set] = ACTIONS(603), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_declare] = ACTIONS(603), + [anon_sym_public] = ACTIONS(784), + [anon_sym_private] = ACTIONS(784), + [anon_sym_protected] = ACTIONS(784), + [anon_sym_override] = ACTIONS(786), + [anon_sym_module] = ACTIONS(603), + [anon_sym_any] = ACTIONS(788), + [anon_sym_number] = ACTIONS(788), + [anon_sym_boolean] = ACTIONS(788), + [anon_sym_string] = ACTIONS(788), + [anon_sym_symbol] = ACTIONS(788), + [anon_sym_object] = ACTIONS(788), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [100] = { - [sym_import] = STATE(3603), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1820), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3740), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3740), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym__formal_parameter] = STATE(4652), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1261), - [sym_subscript_expression] = STATE(1261), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3740), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5747), - [sym_string] = STATE(2088), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4033), - [sym_pattern] = STATE(4314), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1261), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(2884), - [sym_accessibility_modifier] = STATE(294), - [sym_override_modifier] = STATE(306), - [sym_required_parameter] = STATE(4652), - [sym_optional_parameter] = STATE(4652), - [sym__parameter_name] = STATE(3554), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4484), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5407), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(266), - [sym_identifier] = ACTIONS(761), - [anon_sym_export] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(763), - [anon_sym_typeof] = ACTIONS(765), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(610), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(767), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(769), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(771), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(648), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(779), - [sym_number] = ACTIONS(781), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(783), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(785), - [sym_false] = ACTIONS(785), - [sym_null] = ACTIONS(785), - [sym_undefined] = ACTIONS(787), - [anon_sym_AT] = ACTIONS(789), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(791), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(795), - [anon_sym_private] = ACTIONS(795), - [anon_sym_protected] = ACTIONS(795), - [anon_sym_override] = ACTIONS(797), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(799), - [anon_sym_number] = ACTIONS(799), - [anon_sym_boolean] = ACTIONS(799), - [anon_sym_string] = ACTIONS(799), - [anon_sym_symbol] = ACTIONS(799), - [anon_sym_object] = ACTIONS(799), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3631), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3631), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1265), + [sym_subscript_expression] = STATE(1265), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3631), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_pattern] = STATE(4302), + [sym_rest_pattern] = STATE(3626), + [sym_non_null_expression] = STATE(1265), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(220), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(728), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(730), + [anon_sym_RPAREN] = ACTIONS(223), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(223), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(733), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(736), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(174), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(738), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(185), + [anon_sym_DASH_DASH] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(741), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(750), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [101] = { - [sym_import] = STATE(3552), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym__formal_parameter] = STATE(4652), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2237), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4033), - [sym_pattern] = STATE(4314), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(2884), - [sym_accessibility_modifier] = STATE(294), - [sym_override_modifier] = STATE(306), - [sym_required_parameter] = STATE(4652), - [sym_optional_parameter] = STATE(4652), - [sym__parameter_name] = STATE(3554), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4562), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5407), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(266), - [sym_identifier] = ACTIONS(113), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(126), - [anon_sym_typeof] = ACTIONS(130), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(767), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(145), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(163), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(191), - [sym_number] = ACTIONS(193), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(809), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(201), - [sym_false] = ACTIONS(201), - [sym_null] = ACTIONS(201), - [sym_undefined] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(789), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(813), - [anon_sym_private] = ACTIONS(813), - [anon_sym_protected] = ACTIONS(813), - [anon_sym_override] = ACTIONS(815), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(209), - [anon_sym_number] = ACTIONS(209), - [anon_sym_boolean] = ACTIONS(209), - [anon_sym_string] = ACTIONS(209), - [anon_sym_symbol] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(3582), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3631), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3631), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_nested_identifier] = STATE(5753), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym__formal_parameter] = STATE(4861), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1265), + [sym_subscript_expression] = STATE(1265), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3631), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(2313), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3948), + [sym_pattern] = STATE(4261), + [sym_rest_pattern] = STATE(3626), + [sym_non_null_expression] = STATE(1265), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_nested_type_identifier] = STATE(2885), + [sym_accessibility_modifier] = STATE(300), + [sym_override_modifier] = STATE(314), + [sym_required_parameter] = STATE(4861), + [sym_optional_parameter] = STATE(4861), + [sym__parameter_name] = STATE(3523), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(4520), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5431), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [aux_sym_export_statement_repeat1] = STATE(284), + [sym_identifier] = ACTIONS(111), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(129), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(758), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(144), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(160), + [anon_sym_using] = ACTIONS(162), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(181), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(188), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(802), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(200), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_override] = ACTIONS(808), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(206), + [anon_sym_number] = ACTIONS(206), + [anon_sym_boolean] = ACTIONS(206), + [anon_sym_string] = ACTIONS(206), + [anon_sym_symbol] = ACTIONS(206), + [anon_sym_object] = ACTIONS(206), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [102] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(819), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_RBRACE] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_RBRACK] = ACTIONS(128), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_QMARK] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3582), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3631), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3631), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_nested_identifier] = STATE(5753), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym__formal_parameter] = STATE(4861), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1265), + [sym_subscript_expression] = STATE(1265), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3631), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(2313), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3948), + [sym_pattern] = STATE(4261), + [sym_rest_pattern] = STATE(3626), + [sym_non_null_expression] = STATE(1265), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_nested_type_identifier] = STATE(2885), + [sym_accessibility_modifier] = STATE(300), + [sym_override_modifier] = STATE(314), + [sym_required_parameter] = STATE(4861), + [sym_optional_parameter] = STATE(4861), + [sym__parameter_name] = STATE(3523), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(4479), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5431), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [aux_sym_export_statement_repeat1] = STATE(284), + [sym_identifier] = ACTIONS(111), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(129), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(758), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(144), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(160), + [anon_sym_using] = ACTIONS(162), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(181), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(188), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(802), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(200), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_override] = ACTIONS(808), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(206), + [anon_sym_number] = ACTIONS(206), + [anon_sym_boolean] = ACTIONS(206), + [anon_sym_string] = ACTIONS(206), + [anon_sym_symbol] = ACTIONS(206), + [anon_sym_object] = ACTIONS(206), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [103] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(839), - [anon_sym_export] = ACTIONS(841), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(841), - [anon_sym_EQ] = ACTIONS(223), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(226), - [anon_sym_RBRACE] = ACTIONS(226), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(841), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(226), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(226), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(226), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(849), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(851), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(841), - [anon_sym_readonly] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_QMARK] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_override] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [anon_sym_object] = ACTIONS(841), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(812), + [anon_sym_EQ] = ACTIONS(814), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(158), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_RPAREN] = ACTIONS(158), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(158), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_RBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(156), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [104] = { - [sym_import] = STATE(3552), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym__formal_parameter] = STATE(4652), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2237), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4033), - [sym_pattern] = STATE(4314), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(2884), - [sym_accessibility_modifier] = STATE(294), - [sym_override_modifier] = STATE(306), - [sym_required_parameter] = STATE(4652), - [sym_optional_parameter] = STATE(4652), - [sym__parameter_name] = STATE(3554), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4589), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5407), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(266), - [sym_identifier] = ACTIONS(113), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(126), - [anon_sym_typeof] = ACTIONS(130), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(767), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(145), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(163), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(191), - [sym_number] = ACTIONS(193), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(809), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(201), - [sym_false] = ACTIONS(201), - [sym_null] = ACTIONS(201), - [sym_undefined] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(789), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(813), - [anon_sym_private] = ACTIONS(813), - [anon_sym_protected] = ACTIONS(813), - [anon_sym_override] = ACTIONS(815), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(209), - [anon_sym_number] = ACTIONS(209), - [anon_sym_boolean] = ACTIONS(209), - [anon_sym_string] = ACTIONS(209), - [anon_sym_symbol] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(3582), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3631), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3631), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_nested_identifier] = STATE(5753), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym__formal_parameter] = STATE(4861), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1265), + [sym_subscript_expression] = STATE(1265), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3631), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(2313), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3948), + [sym_pattern] = STATE(4261), + [sym_rest_pattern] = STATE(3626), + [sym_non_null_expression] = STATE(1265), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_nested_type_identifier] = STATE(2885), + [sym_accessibility_modifier] = STATE(300), + [sym_override_modifier] = STATE(314), + [sym_required_parameter] = STATE(4861), + [sym_optional_parameter] = STATE(4861), + [sym__parameter_name] = STATE(3523), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(4483), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5431), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [aux_sym_export_statement_repeat1] = STATE(284), + [sym_identifier] = ACTIONS(111), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(129), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(758), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(144), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(160), + [anon_sym_using] = ACTIONS(162), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(181), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(188), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(802), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(200), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_override] = ACTIONS(808), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(206), + [anon_sym_number] = ACTIONS(206), + [anon_sym_boolean] = ACTIONS(206), + [anon_sym_string] = ACTIONS(206), + [anon_sym_symbol] = ACTIONS(206), + [anon_sym_object] = ACTIONS(206), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [105] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(819), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_COMMA] = ACTIONS(855), - [anon_sym_RBRACE] = ACTIONS(855), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(855), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(855), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_RBRACK] = ACTIONS(855), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_QMARK] = ACTIONS(857), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3582), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3631), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3631), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_nested_identifier] = STATE(5753), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym__formal_parameter] = STATE(4861), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1265), + [sym_subscript_expression] = STATE(1265), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3631), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(2313), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3948), + [sym_pattern] = STATE(4261), + [sym_rest_pattern] = STATE(3626), + [sym_non_null_expression] = STATE(1265), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_nested_type_identifier] = STATE(2885), + [sym_accessibility_modifier] = STATE(300), + [sym_override_modifier] = STATE(314), + [sym_required_parameter] = STATE(4861), + [sym_optional_parameter] = STATE(4861), + [sym__parameter_name] = STATE(3523), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(4500), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5431), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [aux_sym_export_statement_repeat1] = STATE(284), + [sym_identifier] = ACTIONS(111), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(129), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(758), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(144), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(160), + [anon_sym_using] = ACTIONS(162), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(181), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(188), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(802), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(200), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_override] = ACTIONS(808), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(206), + [anon_sym_number] = ACTIONS(206), + [anon_sym_boolean] = ACTIONS(206), + [anon_sym_string] = ACTIONS(206), + [anon_sym_symbol] = ACTIONS(206), + [anon_sym_object] = ACTIONS(206), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [106] = { - [sym_import] = STATE(3552), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym__formal_parameter] = STATE(4652), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2237), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4033), - [sym_pattern] = STATE(4314), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(2884), - [sym_accessibility_modifier] = STATE(294), - [sym_override_modifier] = STATE(306), - [sym_required_parameter] = STATE(4652), - [sym_optional_parameter] = STATE(4652), - [sym__parameter_name] = STATE(3554), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4503), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5407), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(266), - [sym_identifier] = ACTIONS(113), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(126), - [anon_sym_typeof] = ACTIONS(130), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(767), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(145), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(163), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(191), - [sym_number] = ACTIONS(193), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(809), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(201), - [sym_false] = ACTIONS(201), - [sym_null] = ACTIONS(201), - [sym_undefined] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(789), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(813), - [anon_sym_private] = ACTIONS(813), - [anon_sym_protected] = ACTIONS(813), - [anon_sym_override] = ACTIONS(815), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(209), - [anon_sym_number] = ACTIONS(209), - [anon_sym_boolean] = ACTIONS(209), - [anon_sym_string] = ACTIONS(209), - [anon_sym_symbol] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(3582), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3631), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3631), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_nested_identifier] = STATE(5753), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym__formal_parameter] = STATE(4861), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1265), + [sym_subscript_expression] = STATE(1265), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3631), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(2313), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3948), + [sym_pattern] = STATE(4261), + [sym_rest_pattern] = STATE(3626), + [sym_non_null_expression] = STATE(1265), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_nested_type_identifier] = STATE(2885), + [sym_accessibility_modifier] = STATE(300), + [sym_override_modifier] = STATE(314), + [sym_required_parameter] = STATE(4861), + [sym_optional_parameter] = STATE(4861), + [sym__parameter_name] = STATE(3523), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(4466), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5431), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [aux_sym_export_statement_repeat1] = STATE(284), + [sym_identifier] = ACTIONS(111), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(129), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(758), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(144), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(160), + [anon_sym_using] = ACTIONS(162), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(172), + [anon_sym_DASH] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(181), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(188), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(802), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(200), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_override] = ACTIONS(808), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(206), + [anon_sym_number] = ACTIONS(206), + [anon_sym_boolean] = ACTIONS(206), + [anon_sym_string] = ACTIONS(206), + [anon_sym_symbol] = ACTIONS(206), + [anon_sym_object] = ACTIONS(206), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [107] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(839), - [anon_sym_export] = ACTIONS(841), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(841), - [anon_sym_EQ] = ACTIONS(859), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(841), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(161), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(849), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(851), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(841), - [anon_sym_readonly] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_override] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [anon_sym_object] = ACTIONS(841), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(812), + [anon_sym_EQ] = ACTIONS(814), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_COMMA] = ACTIONS(834), + [anon_sym_RBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_RPAREN] = ACTIONS(834), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(834), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_RBRACK] = ACTIONS(834), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_QMARK] = ACTIONS(836), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [108] = { - [sym_import] = STATE(3552), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym__formal_parameter] = STATE(4652), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2237), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4033), - [sym_pattern] = STATE(4314), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(2884), - [sym_accessibility_modifier] = STATE(294), - [sym_override_modifier] = STATE(306), - [sym_required_parameter] = STATE(4652), - [sym_optional_parameter] = STATE(4652), - [sym__parameter_name] = STATE(3554), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4604), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5407), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(266), - [sym_identifier] = ACTIONS(113), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(126), - [anon_sym_typeof] = ACTIONS(130), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(767), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(145), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(163), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(191), - [sym_number] = ACTIONS(193), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(809), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(201), - [sym_false] = ACTIONS(201), - [sym_null] = ACTIONS(201), - [sym_undefined] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(789), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(813), - [anon_sym_private] = ACTIONS(813), - [anon_sym_protected] = ACTIONS(813), - [anon_sym_override] = ACTIONS(815), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(209), - [anon_sym_number] = ACTIONS(209), - [anon_sym_boolean] = ACTIONS(209), - [anon_sym_string] = ACTIONS(209), - [anon_sym_symbol] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3992), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5432), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(838), + [anon_sym_export] = ACTIONS(840), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(840), + [anon_sym_EQ] = ACTIONS(842), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(158), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_RPAREN] = ACTIONS(158), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(158), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_RBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(850), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(156), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(852), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(840), + [anon_sym_readonly] = ACTIONS(840), + [anon_sym_get] = ACTIONS(840), + [anon_sym_set] = ACTIONS(840), + [anon_sym_declare] = ACTIONS(840), + [anon_sym_public] = ACTIONS(840), + [anon_sym_private] = ACTIONS(840), + [anon_sym_protected] = ACTIONS(840), + [anon_sym_override] = ACTIONS(840), + [anon_sym_module] = ACTIONS(840), + [anon_sym_any] = ACTIONS(840), + [anon_sym_number] = ACTIONS(840), + [anon_sym_boolean] = ACTIONS(840), + [anon_sym_string] = ACTIONS(840), + [anon_sym_symbol] = ACTIONS(840), + [anon_sym_object] = ACTIONS(840), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [109] = { - [sym_import] = STATE(3552), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym__formal_parameter] = STATE(4652), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2237), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4033), - [sym_pattern] = STATE(4314), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(2884), - [sym_accessibility_modifier] = STATE(294), - [sym_override_modifier] = STATE(306), - [sym_required_parameter] = STATE(4652), - [sym_optional_parameter] = STATE(4652), - [sym__parameter_name] = STATE(3554), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4484), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5407), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(266), - [sym_identifier] = ACTIONS(113), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(126), - [anon_sym_typeof] = ACTIONS(130), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(767), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(145), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(163), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(191), - [sym_number] = ACTIONS(193), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(809), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(201), - [sym_false] = ACTIONS(201), - [sym_null] = ACTIONS(201), - [sym_undefined] = ACTIONS(203), - [anon_sym_AT] = ACTIONS(789), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(813), - [anon_sym_private] = ACTIONS(813), - [anon_sym_protected] = ACTIONS(813), - [anon_sym_override] = ACTIONS(815), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(209), - [anon_sym_number] = ACTIONS(209), - [anon_sym_boolean] = ACTIONS(209), - [anon_sym_string] = ACTIONS(209), - [anon_sym_symbol] = ACTIONS(209), - [anon_sym_object] = ACTIONS(209), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(838), + [anon_sym_export] = ACTIONS(840), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(840), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_RBRACE] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_RBRACK] = ACTIONS(126), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(850), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(156), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(852), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(840), + [anon_sym_readonly] = ACTIONS(840), + [anon_sym_get] = ACTIONS(840), + [anon_sym_set] = ACTIONS(840), + [anon_sym_QMARK] = ACTIONS(750), + [anon_sym_declare] = ACTIONS(840), + [anon_sym_public] = ACTIONS(840), + [anon_sym_private] = ACTIONS(840), + [anon_sym_protected] = ACTIONS(840), + [anon_sym_override] = ACTIONS(840), + [anon_sym_module] = ACTIONS(840), + [anon_sym_any] = ACTIONS(840), + [anon_sym_number] = ACTIONS(840), + [anon_sym_boolean] = ACTIONS(840), + [anon_sym_string] = ACTIONS(840), + [anon_sym_symbol] = ACTIONS(840), + [anon_sym_object] = ACTIONS(840), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [110] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4106), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5378), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(839), - [anon_sym_export] = ACTIONS(841), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(841), - [anon_sym_EQ] = ACTIONS(859), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(841), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(161), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(849), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(851), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(841), - [anon_sym_readonly] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_override] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [anon_sym_object] = ACTIONS(841), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(812), + [anon_sym_EQ] = ACTIONS(220), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_RBRACE] = ACTIONS(223), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_RPAREN] = ACTIONS(223), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(223), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_RBRACK] = ACTIONS(223), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_QMARK] = ACTIONS(750), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [111] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(819), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_RBRACK] = ACTIONS(161), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(838), + [anon_sym_export] = ACTIONS(840), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(840), + [anon_sym_EQ] = ACTIONS(842), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(158), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_RPAREN] = ACTIONS(158), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(158), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_RBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(850), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(156), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(852), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(840), + [anon_sym_readonly] = ACTIONS(840), + [anon_sym_get] = ACTIONS(840), + [anon_sym_set] = ACTIONS(840), + [anon_sym_declare] = ACTIONS(840), + [anon_sym_public] = ACTIONS(840), + [anon_sym_private] = ACTIONS(840), + [anon_sym_protected] = ACTIONS(840), + [anon_sym_override] = ACTIONS(840), + [anon_sym_module] = ACTIONS(840), + [anon_sym_any] = ACTIONS(840), + [anon_sym_number] = ACTIONS(840), + [anon_sym_boolean] = ACTIONS(840), + [anon_sym_string] = ACTIONS(840), + [anon_sym_symbol] = ACTIONS(840), + [anon_sym_object] = ACTIONS(840), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [112] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1317), - [sym_expression] = STATE(2592), - [sym_primary_expression] = STATE(1628), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(2605), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1317), - [sym_subscript_expression] = STATE(1317), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4106), - [sym_non_null_expression] = STATE(1317), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5378), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(861), - [anon_sym_export] = ACTIONS(863), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(863), - [anon_sym_EQ] = ACTIONS(865), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(867), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(863), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(709), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(869), - [anon_sym_function] = ACTIONS(715), - [anon_sym_EQ_GT] = ACTIONS(871), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(873), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(863), - [anon_sym_readonly] = ACTIONS(863), - [anon_sym_get] = ACTIONS(863), - [anon_sym_set] = ACTIONS(863), - [anon_sym_declare] = ACTIONS(863), - [anon_sym_public] = ACTIONS(863), - [anon_sym_private] = ACTIONS(863), - [anon_sym_protected] = ACTIONS(863), - [anon_sym_override] = ACTIONS(863), - [anon_sym_module] = ACTIONS(863), - [anon_sym_any] = ACTIONS(863), - [anon_sym_number] = ACTIONS(863), - [anon_sym_boolean] = ACTIONS(863), - [anon_sym_string] = ACTIONS(863), - [anon_sym_symbol] = ACTIONS(863), - [anon_sym_object] = ACTIONS(863), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3992), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5432), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(812), + [anon_sym_EQ] = ACTIONS(220), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_RPAREN] = ACTIONS(223), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(223), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_QMARK] = ACTIONS(750), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [113] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(819), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(709), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1289), + [sym_expression] = STATE(2567), + [sym_primary_expression] = STATE(1640), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(2661), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1289), + [sym_subscript_expression] = STATE(1289), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1289), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(687), + [anon_sym_export] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(689), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(693), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(856), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(704), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(708), + [anon_sym_function] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(714), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(689), + [anon_sym_readonly] = ACTIONS(689), + [anon_sym_get] = ACTIONS(689), + [anon_sym_set] = ACTIONS(689), + [anon_sym_declare] = ACTIONS(689), + [anon_sym_public] = ACTIONS(689), + [anon_sym_private] = ACTIONS(689), + [anon_sym_protected] = ACTIONS(689), + [anon_sym_override] = ACTIONS(689), + [anon_sym_module] = ACTIONS(689), + [anon_sym_any] = ACTIONS(689), + [anon_sym_number] = ACTIONS(689), + [anon_sym_boolean] = ACTIONS(689), + [anon_sym_string] = ACTIONS(689), + [anon_sym_symbol] = ACTIONS(689), + [anon_sym_object] = ACTIONS(689), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [114] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4106), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5378), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(819), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_QMARK] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1289), + [sym_expression] = STATE(2567), + [sym_primary_expression] = STATE(1640), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(2661), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1289), + [sym_subscript_expression] = STATE(1289), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3992), + [sym_non_null_expression] = STATE(1289), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5432), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(687), + [anon_sym_export] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(689), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(693), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(158), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(704), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(708), + [anon_sym_function] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(714), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(689), + [anon_sym_readonly] = ACTIONS(689), + [anon_sym_get] = ACTIONS(689), + [anon_sym_set] = ACTIONS(689), + [anon_sym_declare] = ACTIONS(689), + [anon_sym_public] = ACTIONS(689), + [anon_sym_private] = ACTIONS(689), + [anon_sym_protected] = ACTIONS(689), + [anon_sym_override] = ACTIONS(689), + [anon_sym_module] = ACTIONS(689), + [anon_sym_any] = ACTIONS(689), + [anon_sym_number] = ACTIONS(689), + [anon_sym_boolean] = ACTIONS(689), + [anon_sym_string] = ACTIONS(689), + [anon_sym_symbol] = ACTIONS(689), + [anon_sym_object] = ACTIONS(689), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [115] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(819), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(709), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(871), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1289), + [sym_expression] = STATE(2567), + [sym_primary_expression] = STATE(1640), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(2661), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1289), + [sym_subscript_expression] = STATE(1289), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1289), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(687), + [anon_sym_export] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(689), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(693), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(858), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(704), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(708), + [anon_sym_function] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(714), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(689), + [anon_sym_readonly] = ACTIONS(689), + [anon_sym_get] = ACTIONS(689), + [anon_sym_set] = ACTIONS(689), + [anon_sym_declare] = ACTIONS(689), + [anon_sym_public] = ACTIONS(689), + [anon_sym_private] = ACTIONS(689), + [anon_sym_protected] = ACTIONS(689), + [anon_sym_override] = ACTIONS(689), + [anon_sym_module] = ACTIONS(689), + [anon_sym_any] = ACTIONS(689), + [anon_sym_number] = ACTIONS(689), + [anon_sym_boolean] = ACTIONS(689), + [anon_sym_string] = ACTIONS(689), + [anon_sym_symbol] = ACTIONS(689), + [anon_sym_object] = ACTIONS(689), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [116] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1317), - [sym_expression] = STATE(2592), - [sym_primary_expression] = STATE(1628), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(2605), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1317), - [sym_subscript_expression] = STATE(1317), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1317), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(692), - [anon_sym_export] = ACTIONS(694), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(877), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(698), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(186), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1289), + [sym_expression] = STATE(2567), + [sym_primary_expression] = STATE(1640), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(2661), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1289), + [sym_subscript_expression] = STATE(1289), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1289), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(687), + [anon_sym_export] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(689), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(693), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(158), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(183), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(709), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(713), - [anon_sym_function] = ACTIONS(715), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(719), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(694), - [anon_sym_readonly] = ACTIONS(694), - [anon_sym_get] = ACTIONS(694), - [anon_sym_set] = ACTIONS(694), - [anon_sym_declare] = ACTIONS(694), - [anon_sym_public] = ACTIONS(694), - [anon_sym_private] = ACTIONS(694), - [anon_sym_protected] = ACTIONS(694), - [anon_sym_override] = ACTIONS(694), - [anon_sym_module] = ACTIONS(694), - [anon_sym_any] = ACTIONS(694), - [anon_sym_number] = ACTIONS(694), - [anon_sym_boolean] = ACTIONS(694), - [anon_sym_string] = ACTIONS(694), - [anon_sym_symbol] = ACTIONS(694), - [anon_sym_object] = ACTIONS(694), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(704), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(708), + [anon_sym_function] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(714), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(689), + [anon_sym_readonly] = ACTIONS(689), + [anon_sym_get] = ACTIONS(689), + [anon_sym_set] = ACTIONS(689), + [anon_sym_declare] = ACTIONS(689), + [anon_sym_public] = ACTIONS(689), + [anon_sym_private] = ACTIONS(689), + [anon_sym_protected] = ACTIONS(689), + [anon_sym_override] = ACTIONS(689), + [anon_sym_module] = ACTIONS(689), + [anon_sym_any] = ACTIONS(689), + [anon_sym_number] = ACTIONS(689), + [anon_sym_boolean] = ACTIONS(689), + [anon_sym_string] = ACTIONS(689), + [anon_sym_symbol] = ACTIONS(689), + [anon_sym_object] = ACTIONS(689), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [117] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1317), - [sym_expression] = STATE(2592), - [sym_primary_expression] = STATE(1628), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(2605), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1317), - [sym_subscript_expression] = STATE(1317), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1317), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(692), - [anon_sym_export] = ACTIONS(694), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(877), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(698), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(186), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1289), + [sym_expression] = STATE(2567), + [sym_primary_expression] = STATE(1640), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5881), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(2661), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1289), + [sym_subscript_expression] = STATE(1289), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1289), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(860), + [anon_sym_export] = ACTIONS(862), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(862), + [anon_sym_EQ] = ACTIONS(864), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(862), + [anon_sym_BANG] = ACTIONS(183), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(879), - [anon_sym_yield] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(709), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(713), - [anon_sym_function] = ACTIONS(715), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(719), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(694), - [anon_sym_readonly] = ACTIONS(694), - [anon_sym_get] = ACTIONS(694), - [anon_sym_set] = ACTIONS(694), - [anon_sym_declare] = ACTIONS(694), - [anon_sym_public] = ACTIONS(694), - [anon_sym_private] = ACTIONS(694), - [anon_sym_protected] = ACTIONS(694), - [anon_sym_override] = ACTIONS(694), - [anon_sym_module] = ACTIONS(694), - [anon_sym_any] = ACTIONS(694), - [anon_sym_number] = ACTIONS(694), - [anon_sym_boolean] = ACTIONS(694), - [anon_sym_string] = ACTIONS(694), - [anon_sym_symbol] = ACTIONS(694), - [anon_sym_object] = ACTIONS(694), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(704), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(868), + [anon_sym_function] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(870), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(872), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(862), + [anon_sym_readonly] = ACTIONS(862), + [anon_sym_get] = ACTIONS(862), + [anon_sym_set] = ACTIONS(862), + [anon_sym_declare] = ACTIONS(862), + [anon_sym_public] = ACTIONS(862), + [anon_sym_private] = ACTIONS(862), + [anon_sym_protected] = ACTIONS(862), + [anon_sym_override] = ACTIONS(862), + [anon_sym_module] = ACTIONS(862), + [anon_sym_any] = ACTIONS(862), + [anon_sym_number] = ACTIONS(862), + [anon_sym_boolean] = ACTIONS(862), + [anon_sym_string] = ACTIONS(862), + [anon_sym_symbol] = ACTIONS(862), + [anon_sym_object] = ACTIONS(862), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [118] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1317), - [sym_expression] = STATE(2592), - [sym_primary_expression] = STATE(1628), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(2605), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1317), - [sym_subscript_expression] = STATE(1317), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1317), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(692), - [anon_sym_export] = ACTIONS(694), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(877), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(698), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(186), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1289), + [sym_expression] = STATE(2567), + [sym_primary_expression] = STATE(1640), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5881), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(2661), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1289), + [sym_subscript_expression] = STATE(1289), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3992), + [sym_non_null_expression] = STATE(1289), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5432), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(860), + [anon_sym_export] = ACTIONS(862), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(862), + [anon_sym_EQ] = ACTIONS(864), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(862), + [anon_sym_BANG] = ACTIONS(183), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(881), - [anon_sym_yield] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(709), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(713), - [anon_sym_function] = ACTIONS(715), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(719), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(694), - [anon_sym_readonly] = ACTIONS(694), - [anon_sym_get] = ACTIONS(694), - [anon_sym_set] = ACTIONS(694), - [anon_sym_declare] = ACTIONS(694), - [anon_sym_public] = ACTIONS(694), - [anon_sym_private] = ACTIONS(694), - [anon_sym_protected] = ACTIONS(694), - [anon_sym_override] = ACTIONS(694), - [anon_sym_module] = ACTIONS(694), - [anon_sym_any] = ACTIONS(694), - [anon_sym_number] = ACTIONS(694), - [anon_sym_boolean] = ACTIONS(694), - [anon_sym_string] = ACTIONS(694), - [anon_sym_symbol] = ACTIONS(694), - [anon_sym_object] = ACTIONS(694), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(704), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(868), + [anon_sym_function] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(870), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(872), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(862), + [anon_sym_readonly] = ACTIONS(862), + [anon_sym_get] = ACTIONS(862), + [anon_sym_set] = ACTIONS(862), + [anon_sym_declare] = ACTIONS(862), + [anon_sym_public] = ACTIONS(862), + [anon_sym_private] = ACTIONS(862), + [anon_sym_protected] = ACTIONS(862), + [anon_sym_override] = ACTIONS(862), + [anon_sym_module] = ACTIONS(862), + [anon_sym_any] = ACTIONS(862), + [anon_sym_number] = ACTIONS(862), + [anon_sym_boolean] = ACTIONS(862), + [anon_sym_string] = ACTIONS(862), + [anon_sym_symbol] = ACTIONS(862), + [anon_sym_object] = ACTIONS(862), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [119] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4106), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5378), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(839), - [anon_sym_export] = ACTIONS(841), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(841), - [anon_sym_EQ] = ACTIONS(223), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(226), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(841), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(226), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(226), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(849), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(851), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(841), - [anon_sym_readonly] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_QMARK] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_override] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [anon_sym_object] = ACTIONS(841), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1289), + [sym_expression] = STATE(2567), + [sym_primary_expression] = STATE(1640), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(2661), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1289), + [sym_subscript_expression] = STATE(1289), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1289), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(687), + [anon_sym_export] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(689), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(693), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(876), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(704), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(708), + [anon_sym_function] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(714), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(689), + [anon_sym_readonly] = ACTIONS(689), + [anon_sym_get] = ACTIONS(689), + [anon_sym_set] = ACTIONS(689), + [anon_sym_declare] = ACTIONS(689), + [anon_sym_public] = ACTIONS(689), + [anon_sym_private] = ACTIONS(689), + [anon_sym_protected] = ACTIONS(689), + [anon_sym_override] = ACTIONS(689), + [anon_sym_module] = ACTIONS(689), + [anon_sym_any] = ACTIONS(689), + [anon_sym_number] = ACTIONS(689), + [anon_sym_boolean] = ACTIONS(689), + [anon_sym_string] = ACTIONS(689), + [anon_sym_symbol] = ACTIONS(689), + [anon_sym_object] = ACTIONS(689), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [120] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1317), - [sym_expression] = STATE(2592), - [sym_primary_expression] = STATE(1628), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(2605), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1317), - [sym_subscript_expression] = STATE(1317), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4106), - [sym_non_null_expression] = STATE(1317), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5378), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(692), - [anon_sym_export] = ACTIONS(694), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(877), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(698), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(709), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(713), - [anon_sym_function] = ACTIONS(715), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(719), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(694), - [anon_sym_readonly] = ACTIONS(694), - [anon_sym_get] = ACTIONS(694), - [anon_sym_set] = ACTIONS(694), - [anon_sym_declare] = ACTIONS(694), - [anon_sym_public] = ACTIONS(694), - [anon_sym_private] = ACTIONS(694), - [anon_sym_protected] = ACTIONS(694), - [anon_sym_override] = ACTIONS(694), - [anon_sym_module] = ACTIONS(694), - [anon_sym_any] = ACTIONS(694), - [anon_sym_number] = ACTIONS(694), - [anon_sym_boolean] = ACTIONS(694), - [anon_sym_string] = ACTIONS(694), - [anon_sym_symbol] = ACTIONS(694), - [anon_sym_object] = ACTIONS(694), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(812), + [anon_sym_EQ] = ACTIONS(814), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(704), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(870), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [121] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1317), - [sym_expression] = STATE(2592), - [sym_primary_expression] = STATE(1628), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(2605), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1317), - [sym_subscript_expression] = STATE(1317), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1317), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(861), - [anon_sym_export] = ACTIONS(863), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(863), - [anon_sym_EQ] = ACTIONS(865), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(867), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(863), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(709), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(869), - [anon_sym_function] = ACTIONS(715), - [anon_sym_EQ_GT] = ACTIONS(871), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(873), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(863), - [anon_sym_readonly] = ACTIONS(863), - [anon_sym_get] = ACTIONS(863), - [anon_sym_set] = ACTIONS(863), - [anon_sym_declare] = ACTIONS(863), - [anon_sym_public] = ACTIONS(863), - [anon_sym_private] = ACTIONS(863), - [anon_sym_protected] = ACTIONS(863), - [anon_sym_override] = ACTIONS(863), - [anon_sym_module] = ACTIONS(863), - [anon_sym_any] = ACTIONS(863), - [anon_sym_number] = ACTIONS(863), - [anon_sym_boolean] = ACTIONS(863), - [anon_sym_string] = ACTIONS(863), - [anon_sym_symbol] = ACTIONS(863), - [anon_sym_object] = ACTIONS(863), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(812), + [anon_sym_EQ] = ACTIONS(814), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(158), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(704), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [122] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1317), - [sym_expression] = STATE(2592), - [sym_primary_expression] = STATE(1628), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(2605), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1317), - [sym_subscript_expression] = STATE(1317), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1317), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(692), - [anon_sym_export] = ACTIONS(694), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(877), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(698), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(883), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(709), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(713), - [anon_sym_function] = ACTIONS(715), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(719), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(694), - [anon_sym_readonly] = ACTIONS(694), - [anon_sym_get] = ACTIONS(694), - [anon_sym_set] = ACTIONS(694), - [anon_sym_declare] = ACTIONS(694), - [anon_sym_public] = ACTIONS(694), - [anon_sym_private] = ACTIONS(694), - [anon_sym_protected] = ACTIONS(694), - [anon_sym_override] = ACTIONS(694), - [anon_sym_module] = ACTIONS(694), - [anon_sym_any] = ACTIONS(694), - [anon_sym_number] = ACTIONS(694), - [anon_sym_boolean] = ACTIONS(694), - [anon_sym_string] = ACTIONS(694), - [anon_sym_symbol] = ACTIONS(694), - [anon_sym_object] = ACTIONS(694), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3992), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5432), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(838), + [anon_sym_export] = ACTIONS(840), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(840), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(850), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(156), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(852), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(840), + [anon_sym_readonly] = ACTIONS(840), + [anon_sym_get] = ACTIONS(840), + [anon_sym_set] = ACTIONS(840), + [anon_sym_QMARK] = ACTIONS(750), + [anon_sym_declare] = ACTIONS(840), + [anon_sym_public] = ACTIONS(840), + [anon_sym_private] = ACTIONS(840), + [anon_sym_protected] = ACTIONS(840), + [anon_sym_override] = ACTIONS(840), + [anon_sym_module] = ACTIONS(840), + [anon_sym_any] = ACTIONS(840), + [anon_sym_number] = ACTIONS(840), + [anon_sym_boolean] = ACTIONS(840), + [anon_sym_string] = ACTIONS(840), + [anon_sym_symbol] = ACTIONS(840), + [anon_sym_object] = ACTIONS(840), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [123] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(839), - [anon_sym_export] = ACTIONS(841), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(841), - [anon_sym_EQ] = ACTIONS(859), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(885), - [anon_sym_RBRACE] = ACTIONS(885), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(841), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(885), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(849), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(851), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(841), - [anon_sym_readonly] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_override] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [anon_sym_object] = ACTIONS(841), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(838), + [anon_sym_export] = ACTIONS(840), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(840), + [anon_sym_EQ] = ACTIONS(842), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(878), + [anon_sym_of] = ACTIONS(881), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(850), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(156), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(852), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(840), + [anon_sym_readonly] = ACTIONS(840), + [anon_sym_get] = ACTIONS(840), + [anon_sym_set] = ACTIONS(840), + [anon_sym_declare] = ACTIONS(840), + [anon_sym_public] = ACTIONS(840), + [anon_sym_private] = ACTIONS(840), + [anon_sym_protected] = ACTIONS(840), + [anon_sym_override] = ACTIONS(840), + [anon_sym_module] = ACTIONS(840), + [anon_sym_any] = ACTIONS(840), + [anon_sym_number] = ACTIONS(840), + [anon_sym_boolean] = ACTIONS(840), + [anon_sym_string] = ACTIONS(840), + [anon_sym_symbol] = ACTIONS(840), + [anon_sym_object] = ACTIONS(840), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [124] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(888), - [anon_sym_export] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(890), - [anon_sym_EQ] = ACTIONS(892), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(895), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(897), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(226), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(899), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(901), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(903), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(890), - [anon_sym_readonly] = ACTIONS(890), - [anon_sym_get] = ACTIONS(890), - [anon_sym_set] = ACTIONS(890), - [anon_sym_declare] = ACTIONS(890), - [anon_sym_public] = ACTIONS(890), - [anon_sym_private] = ACTIONS(890), - [anon_sym_protected] = ACTIONS(890), - [anon_sym_override] = ACTIONS(890), - [anon_sym_module] = ACTIONS(890), - [anon_sym_any] = ACTIONS(890), - [anon_sym_number] = ACTIONS(890), - [anon_sym_boolean] = ACTIONS(890), - [anon_sym_string] = ACTIONS(890), - [anon_sym_symbol] = ACTIONS(890), - [anon_sym_object] = ACTIONS(890), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3992), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5432), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(838), + [anon_sym_export] = ACTIONS(840), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(840), + [anon_sym_EQ] = ACTIONS(842), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_COMMA] = ACTIONS(883), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(834), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_RBRACK] = ACTIONS(883), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(850), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(156), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(852), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(840), + [anon_sym_readonly] = ACTIONS(840), + [anon_sym_get] = ACTIONS(840), + [anon_sym_set] = ACTIONS(840), + [anon_sym_declare] = ACTIONS(840), + [anon_sym_public] = ACTIONS(840), + [anon_sym_private] = ACTIONS(840), + [anon_sym_protected] = ACTIONS(840), + [anon_sym_override] = ACTIONS(840), + [anon_sym_module] = ACTIONS(840), + [anon_sym_any] = ACTIONS(840), + [anon_sym_number] = ACTIONS(840), + [anon_sym_boolean] = ACTIONS(840), + [anon_sym_string] = ACTIONS(840), + [anon_sym_symbol] = ACTIONS(840), + [anon_sym_object] = ACTIONS(840), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [125] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4106), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5378), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(839), - [anon_sym_export] = ACTIONS(841), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(841), - [anon_sym_EQ] = ACTIONS(859), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(885), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(841), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(855), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(885), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(849), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(851), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(841), - [anon_sym_readonly] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_override] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [anon_sym_object] = ACTIONS(841), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(838), + [anon_sym_export] = ACTIONS(840), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(840), + [anon_sym_EQ] = ACTIONS(842), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_COMMA] = ACTIONS(883), + [anon_sym_RBRACE] = ACTIONS(883), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_RBRACK] = ACTIONS(883), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(850), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(156), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(852), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(840), + [anon_sym_readonly] = ACTIONS(840), + [anon_sym_get] = ACTIONS(840), + [anon_sym_set] = ACTIONS(840), + [anon_sym_declare] = ACTIONS(840), + [anon_sym_public] = ACTIONS(840), + [anon_sym_private] = ACTIONS(840), + [anon_sym_protected] = ACTIONS(840), + [anon_sym_override] = ACTIONS(840), + [anon_sym_module] = ACTIONS(840), + [anon_sym_any] = ACTIONS(840), + [anon_sym_number] = ACTIONS(840), + [anon_sym_boolean] = ACTIONS(840), + [anon_sym_string] = ACTIONS(840), + [anon_sym_symbol] = ACTIONS(840), + [anon_sym_object] = ACTIONS(840), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [126] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(839), - [anon_sym_export] = ACTIONS(841), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(841), - [anon_sym_EQ] = ACTIONS(859), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(841), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(905), - [anon_sym_of] = ACTIONS(908), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(849), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(851), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(841), - [anon_sym_readonly] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_override] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [anon_sym_object] = ACTIONS(841), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5764), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(886), + [anon_sym_export] = ACTIONS(888), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(888), + [anon_sym_EQ] = ACTIONS(890), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(888), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(895), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_RBRACK] = ACTIONS(126), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(897), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(899), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(901), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(888), + [anon_sym_readonly] = ACTIONS(888), + [anon_sym_get] = ACTIONS(888), + [anon_sym_set] = ACTIONS(888), + [anon_sym_declare] = ACTIONS(888), + [anon_sym_public] = ACTIONS(888), + [anon_sym_private] = ACTIONS(888), + [anon_sym_protected] = ACTIONS(888), + [anon_sym_override] = ACTIONS(888), + [anon_sym_module] = ACTIONS(888), + [anon_sym_any] = ACTIONS(888), + [anon_sym_number] = ACTIONS(888), + [anon_sym_boolean] = ACTIONS(888), + [anon_sym_string] = ACTIONS(888), + [anon_sym_symbol] = ACTIONS(888), + [anon_sym_object] = ACTIONS(888), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [127] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(819), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(910), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5764), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(886), + [anon_sym_export] = ACTIONS(888), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(888), + [anon_sym_EQ] = ACTIONS(903), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(888), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(895), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_RBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(897), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(899), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(901), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(888), + [anon_sym_readonly] = ACTIONS(888), + [anon_sym_get] = ACTIONS(888), + [anon_sym_set] = ACTIONS(888), + [anon_sym_declare] = ACTIONS(888), + [anon_sym_public] = ACTIONS(888), + [anon_sym_private] = ACTIONS(888), + [anon_sym_protected] = ACTIONS(888), + [anon_sym_override] = ACTIONS(888), + [anon_sym_module] = ACTIONS(888), + [anon_sym_any] = ACTIONS(888), + [anon_sym_number] = ACTIONS(888), + [anon_sym_boolean] = ACTIONS(888), + [anon_sym_string] = ACTIONS(888), + [anon_sym_symbol] = ACTIONS(888), + [anon_sym_object] = ACTIONS(888), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [128] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(912), - [anon_sym_export] = ACTIONS(914), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(914), - [anon_sym_EQ] = ACTIONS(916), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(914), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(920), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(922), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(924), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(914), - [anon_sym_readonly] = ACTIONS(914), - [anon_sym_get] = ACTIONS(914), - [anon_sym_set] = ACTIONS(914), - [anon_sym_declare] = ACTIONS(914), - [anon_sym_public] = ACTIONS(914), - [anon_sym_private] = ACTIONS(914), - [anon_sym_protected] = ACTIONS(914), - [anon_sym_override] = ACTIONS(914), - [anon_sym_module] = ACTIONS(914), - [anon_sym_any] = ACTIONS(914), - [anon_sym_number] = ACTIONS(914), - [anon_sym_boolean] = ACTIONS(914), - [anon_sym_string] = ACTIONS(914), - [anon_sym_symbol] = ACTIONS(914), - [anon_sym_object] = ACTIONS(914), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_implements] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1289), + [sym_expression] = STATE(2567), + [sym_primary_expression] = STATE(1640), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5594), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(2661), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1289), + [sym_subscript_expression] = STATE(1289), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1289), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(905), + [anon_sym_export] = ACTIONS(907), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(907), + [anon_sym_EQ] = ACTIONS(909), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(911), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(704), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(913), + [anon_sym_function] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(915), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(917), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(907), + [anon_sym_readonly] = ACTIONS(907), + [anon_sym_get] = ACTIONS(907), + [anon_sym_set] = ACTIONS(907), + [anon_sym_declare] = ACTIONS(907), + [anon_sym_public] = ACTIONS(907), + [anon_sym_private] = ACTIONS(907), + [anon_sym_protected] = ACTIONS(907), + [anon_sym_override] = ACTIONS(907), + [anon_sym_module] = ACTIONS(907), + [anon_sym_any] = ACTIONS(907), + [anon_sym_number] = ACTIONS(907), + [anon_sym_boolean] = ACTIONS(907), + [anon_sym_string] = ACTIONS(907), + [anon_sym_symbol] = ACTIONS(907), + [anon_sym_object] = ACTIONS(907), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [129] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4106), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5378), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(912), - [anon_sym_export] = ACTIONS(914), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(914), - [anon_sym_EQ] = ACTIONS(916), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(914), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(920), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(922), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(924), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(914), - [anon_sym_readonly] = ACTIONS(914), - [anon_sym_get] = ACTIONS(914), - [anon_sym_set] = ACTIONS(914), - [anon_sym_declare] = ACTIONS(914), - [anon_sym_public] = ACTIONS(914), - [anon_sym_private] = ACTIONS(914), - [anon_sym_protected] = ACTIONS(914), - [anon_sym_override] = ACTIONS(914), - [anon_sym_module] = ACTIONS(914), - [anon_sym_any] = ACTIONS(914), - [anon_sym_number] = ACTIONS(914), - [anon_sym_boolean] = ACTIONS(914), - [anon_sym_string] = ACTIONS(914), - [anon_sym_symbol] = ACTIONS(914), - [anon_sym_object] = ACTIONS(914), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_implements] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(812), + [anon_sym_EQ] = ACTIONS(814), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(704), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(915), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [130] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(888), - [anon_sym_export] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(890), - [anon_sym_EQ] = ACTIONS(928), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(895), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(930), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(161), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(899), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(901), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(903), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(890), - [anon_sym_readonly] = ACTIONS(890), - [anon_sym_get] = ACTIONS(890), - [anon_sym_set] = ACTIONS(890), - [anon_sym_declare] = ACTIONS(890), - [anon_sym_public] = ACTIONS(890), - [anon_sym_private] = ACTIONS(890), - [anon_sym_protected] = ACTIONS(890), - [anon_sym_override] = ACTIONS(890), - [anon_sym_module] = ACTIONS(890), - [anon_sym_any] = ACTIONS(890), - [anon_sym_number] = ACTIONS(890), - [anon_sym_boolean] = ACTIONS(890), - [anon_sym_string] = ACTIONS(890), - [anon_sym_symbol] = ACTIONS(890), - [anon_sym_object] = ACTIONS(890), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5764), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(886), + [anon_sym_export] = ACTIONS(888), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(888), + [anon_sym_EQ] = ACTIONS(903), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(888), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(919), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_RBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(897), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(899), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(901), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(888), + [anon_sym_readonly] = ACTIONS(888), + [anon_sym_get] = ACTIONS(888), + [anon_sym_set] = ACTIONS(888), + [anon_sym_declare] = ACTIONS(888), + [anon_sym_public] = ACTIONS(888), + [anon_sym_private] = ACTIONS(888), + [anon_sym_protected] = ACTIONS(888), + [anon_sym_override] = ACTIONS(888), + [anon_sym_module] = ACTIONS(888), + [anon_sym_any] = ACTIONS(888), + [anon_sym_number] = ACTIONS(888), + [anon_sym_boolean] = ACTIONS(888), + [anon_sym_string] = ACTIONS(888), + [anon_sym_symbol] = ACTIONS(888), + [anon_sym_object] = ACTIONS(888), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [131] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(888), - [anon_sym_export] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(890), - [anon_sym_EQ] = ACTIONS(928), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(895), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(897), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(161), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(899), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(901), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(903), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(890), - [anon_sym_readonly] = ACTIONS(890), - [anon_sym_get] = ACTIONS(890), - [anon_sym_set] = ACTIONS(890), - [anon_sym_declare] = ACTIONS(890), - [anon_sym_public] = ACTIONS(890), - [anon_sym_private] = ACTIONS(890), - [anon_sym_protected] = ACTIONS(890), - [anon_sym_override] = ACTIONS(890), - [anon_sym_module] = ACTIONS(890), - [anon_sym_any] = ACTIONS(890), - [anon_sym_number] = ACTIONS(890), - [anon_sym_boolean] = ACTIONS(890), - [anon_sym_string] = ACTIONS(890), - [anon_sym_symbol] = ACTIONS(890), - [anon_sym_object] = ACTIONS(890), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1289), + [sym_expression] = STATE(2567), + [sym_primary_expression] = STATE(1640), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5594), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(2661), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1289), + [sym_subscript_expression] = STATE(1289), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3992), + [sym_non_null_expression] = STATE(1289), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5432), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(905), + [anon_sym_export] = ACTIONS(907), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(907), + [anon_sym_EQ] = ACTIONS(909), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(911), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(704), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(913), + [anon_sym_function] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(915), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(917), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(907), + [anon_sym_readonly] = ACTIONS(907), + [anon_sym_get] = ACTIONS(907), + [anon_sym_set] = ACTIONS(907), + [anon_sym_declare] = ACTIONS(907), + [anon_sym_public] = ACTIONS(907), + [anon_sym_private] = ACTIONS(907), + [anon_sym_protected] = ACTIONS(907), + [anon_sym_override] = ACTIONS(907), + [anon_sym_module] = ACTIONS(907), + [anon_sym_any] = ACTIONS(907), + [anon_sym_number] = ACTIONS(907), + [anon_sym_boolean] = ACTIONS(907), + [anon_sym_string] = ACTIONS(907), + [anon_sym_symbol] = ACTIONS(907), + [anon_sym_object] = ACTIONS(907), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [132] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4395), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5565), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(839), - [anon_sym_export] = ACTIONS(841), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(841), - [anon_sym_EQ] = ACTIONS(223), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(226), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(841), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(226), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(849), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(851), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(841), - [anon_sym_readonly] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_override] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [anon_sym_object] = ACTIONS(841), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5764), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(886), + [anon_sym_export] = ACTIONS(888), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(888), + [anon_sym_EQ] = ACTIONS(890), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(888), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_RBRACK] = ACTIONS(126), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(897), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(899), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(901), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(888), + [anon_sym_readonly] = ACTIONS(888), + [anon_sym_get] = ACTIONS(888), + [anon_sym_set] = ACTIONS(888), + [anon_sym_declare] = ACTIONS(888), + [anon_sym_public] = ACTIONS(888), + [anon_sym_private] = ACTIONS(888), + [anon_sym_protected] = ACTIONS(888), + [anon_sym_override] = ACTIONS(888), + [anon_sym_module] = ACTIONS(888), + [anon_sym_any] = ACTIONS(888), + [anon_sym_number] = ACTIONS(888), + [anon_sym_boolean] = ACTIONS(888), + [anon_sym_string] = ACTIONS(888), + [anon_sym_symbol] = ACTIONS(888), + [anon_sym_object] = ACTIONS(888), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [133] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(932), - [anon_sym_export] = ACTIONS(934), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(934), - [anon_sym_EQ] = ACTIONS(936), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(938), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(934), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(940), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(910), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(942), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(934), - [anon_sym_readonly] = ACTIONS(934), - [anon_sym_get] = ACTIONS(934), - [anon_sym_set] = ACTIONS(934), - [anon_sym_declare] = ACTIONS(934), - [anon_sym_public] = ACTIONS(934), - [anon_sym_private] = ACTIONS(934), - [anon_sym_protected] = ACTIONS(934), - [anon_sym_override] = ACTIONS(934), - [anon_sym_module] = ACTIONS(934), - [anon_sym_any] = ACTIONS(934), - [anon_sym_number] = ACTIONS(934), - [anon_sym_boolean] = ACTIONS(934), - [anon_sym_string] = ACTIONS(934), - [anon_sym_symbol] = ACTIONS(934), - [anon_sym_object] = ACTIONS(934), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(4040), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5465), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(838), + [anon_sym_export] = ACTIONS(840), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(840), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_RBRACE] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(850), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(156), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(852), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(840), + [anon_sym_readonly] = ACTIONS(840), + [anon_sym_get] = ACTIONS(840), + [anon_sym_set] = ACTIONS(840), + [anon_sym_declare] = ACTIONS(840), + [anon_sym_public] = ACTIONS(840), + [anon_sym_private] = ACTIONS(840), + [anon_sym_protected] = ACTIONS(840), + [anon_sym_override] = ACTIONS(840), + [anon_sym_module] = ACTIONS(840), + [anon_sym_any] = ACTIONS(840), + [anon_sym_number] = ACTIONS(840), + [anon_sym_boolean] = ACTIONS(840), + [anon_sym_string] = ACTIONS(840), + [anon_sym_symbol] = ACTIONS(840), + [anon_sym_object] = ACTIONS(840), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [134] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1317), - [sym_expression] = STATE(2592), - [sym_primary_expression] = STATE(1628), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(2605), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1317), - [sym_subscript_expression] = STATE(1317), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1317), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(944), - [anon_sym_export] = ACTIONS(946), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(946), - [anon_sym_EQ] = ACTIONS(948), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(946), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(709), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(952), - [anon_sym_function] = ACTIONS(715), - [anon_sym_EQ_GT] = ACTIONS(954), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(956), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(946), - [anon_sym_readonly] = ACTIONS(946), - [anon_sym_get] = ACTIONS(946), - [anon_sym_set] = ACTIONS(946), - [anon_sym_declare] = ACTIONS(946), - [anon_sym_public] = ACTIONS(946), - [anon_sym_private] = ACTIONS(946), - [anon_sym_protected] = ACTIONS(946), - [anon_sym_override] = ACTIONS(946), - [anon_sym_module] = ACTIONS(946), - [anon_sym_any] = ACTIONS(946), - [anon_sym_number] = ACTIONS(946), - [anon_sym_boolean] = ACTIONS(946), - [anon_sym_string] = ACTIONS(946), - [anon_sym_symbol] = ACTIONS(946), - [anon_sym_object] = ACTIONS(946), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5907), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3992), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5432), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(921), + [anon_sym_export] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(923), + [anon_sym_EQ] = ACTIONS(925), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(927), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(158), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(158), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(929), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(931), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(933), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(923), + [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(923), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [135] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(819), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(709), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(954), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(4383), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5563), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(838), + [anon_sym_export] = ACTIONS(840), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(840), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(840), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_RBRACK] = ACTIONS(126), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(850), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(156), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(852), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(840), + [anon_sym_readonly] = ACTIONS(840), + [anon_sym_get] = ACTIONS(840), + [anon_sym_set] = ACTIONS(840), + [anon_sym_declare] = ACTIONS(840), + [anon_sym_public] = ACTIONS(840), + [anon_sym_private] = ACTIONS(840), + [anon_sym_protected] = ACTIONS(840), + [anon_sym_override] = ACTIONS(840), + [anon_sym_module] = ACTIONS(840), + [anon_sym_any] = ACTIONS(840), + [anon_sym_number] = ACTIONS(840), + [anon_sym_boolean] = ACTIONS(840), + [anon_sym_string] = ACTIONS(840), + [anon_sym_symbol] = ACTIONS(840), + [anon_sym_object] = ACTIONS(840), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [136] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4048), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5474), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(839), - [anon_sym_export] = ACTIONS(841), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(841), - [anon_sym_EQ] = ACTIONS(223), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(226), - [anon_sym_RBRACE] = ACTIONS(226), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(841), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(849), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(851), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(841), - [anon_sym_readonly] = ACTIONS(841), - [anon_sym_get] = ACTIONS(841), - [anon_sym_set] = ACTIONS(841), - [anon_sym_declare] = ACTIONS(841), - [anon_sym_public] = ACTIONS(841), - [anon_sym_private] = ACTIONS(841), - [anon_sym_protected] = ACTIONS(841), - [anon_sym_override] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_any] = ACTIONS(841), - [anon_sym_number] = ACTIONS(841), - [anon_sym_boolean] = ACTIONS(841), - [anon_sym_string] = ACTIONS(841), - [anon_sym_symbol] = ACTIONS(841), - [anon_sym_object] = ACTIONS(841), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5780), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(935), + [anon_sym_export] = ACTIONS(937), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(937), + [anon_sym_EQ] = ACTIONS(939), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(941), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(937), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(943), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(945), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(947), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(937), + [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(937), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_implements] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [137] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(819), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(922), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_implements] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(812), + [anon_sym_EQ] = ACTIONS(814), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_RBRACE] = ACTIONS(158), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(158), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(931), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [138] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(888), - [anon_sym_export] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(890), - [anon_sym_EQ] = ACTIONS(892), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(895), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(226), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(899), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(901), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(903), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(890), - [anon_sym_readonly] = ACTIONS(890), - [anon_sym_get] = ACTIONS(890), - [anon_sym_set] = ACTIONS(890), - [anon_sym_declare] = ACTIONS(890), - [anon_sym_public] = ACTIONS(890), - [anon_sym_private] = ACTIONS(890), - [anon_sym_protected] = ACTIONS(890), - [anon_sym_override] = ACTIONS(890), - [anon_sym_module] = ACTIONS(890), - [anon_sym_any] = ACTIONS(890), - [anon_sym_number] = ACTIONS(890), - [anon_sym_boolean] = ACTIONS(890), - [anon_sym_string] = ACTIONS(890), - [anon_sym_symbol] = ACTIONS(890), - [anon_sym_object] = ACTIONS(890), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5780), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3992), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5432), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(935), + [anon_sym_export] = ACTIONS(937), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(937), + [anon_sym_EQ] = ACTIONS(939), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(941), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(937), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(943), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(945), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(947), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(937), + [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(937), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_implements] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [139] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4106), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5378), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(932), - [anon_sym_export] = ACTIONS(934), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(934), - [anon_sym_EQ] = ACTIONS(936), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(938), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(934), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(940), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(910), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(942), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(934), - [anon_sym_readonly] = ACTIONS(934), - [anon_sym_get] = ACTIONS(934), - [anon_sym_set] = ACTIONS(934), - [anon_sym_declare] = ACTIONS(934), - [anon_sym_public] = ACTIONS(934), - [anon_sym_private] = ACTIONS(934), - [anon_sym_protected] = ACTIONS(934), - [anon_sym_override] = ACTIONS(934), - [anon_sym_module] = ACTIONS(934), - [anon_sym_any] = ACTIONS(934), - [anon_sym_number] = ACTIONS(934), - [anon_sym_boolean] = ACTIONS(934), - [anon_sym_string] = ACTIONS(934), - [anon_sym_symbol] = ACTIONS(934), - [anon_sym_object] = ACTIONS(934), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5907), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(921), + [anon_sym_export] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(923), + [anon_sym_EQ] = ACTIONS(925), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(927), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(158), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(158), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(929), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(931), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(933), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(923), + [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(923), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [140] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1317), - [sym_expression] = STATE(2592), - [sym_primary_expression] = STATE(1628), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(2605), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1317), - [sym_subscript_expression] = STATE(1317), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4106), - [sym_non_null_expression] = STATE(1317), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5378), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(944), - [anon_sym_export] = ACTIONS(946), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(946), - [anon_sym_EQ] = ACTIONS(948), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(946), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(709), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(952), - [anon_sym_function] = ACTIONS(715), - [anon_sym_EQ_GT] = ACTIONS(954), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(956), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(946), - [anon_sym_readonly] = ACTIONS(946), - [anon_sym_get] = ACTIONS(946), - [anon_sym_set] = ACTIONS(946), - [anon_sym_declare] = ACTIONS(946), - [anon_sym_public] = ACTIONS(946), - [anon_sym_private] = ACTIONS(946), - [anon_sym_protected] = ACTIONS(946), - [anon_sym_override] = ACTIONS(946), - [anon_sym_module] = ACTIONS(946), - [anon_sym_any] = ACTIONS(946), - [anon_sym_number] = ACTIONS(946), - [anon_sym_boolean] = ACTIONS(946), - [anon_sym_string] = ACTIONS(946), - [anon_sym_symbol] = ACTIONS(946), - [anon_sym_object] = ACTIONS(946), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(812), + [anon_sym_EQ] = ACTIONS(814), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(945), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_implements] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [141] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(958), - [anon_sym_export] = ACTIONS(960), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(960), - [anon_sym_EQ] = ACTIONS(962), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(964), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(966), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(968), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(970), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(960), - [anon_sym_readonly] = ACTIONS(960), - [anon_sym_get] = ACTIONS(960), - [anon_sym_set] = ACTIONS(960), - [anon_sym_declare] = ACTIONS(960), - [anon_sym_public] = ACTIONS(960), - [anon_sym_private] = ACTIONS(960), - [anon_sym_protected] = ACTIONS(960), - [anon_sym_override] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), - [anon_sym_any] = ACTIONS(960), - [anon_sym_number] = ACTIONS(960), - [anon_sym_boolean] = ACTIONS(960), - [anon_sym_string] = ACTIONS(960), - [anon_sym_symbol] = ACTIONS(960), - [anon_sym_object] = ACTIONS(960), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(812), + [anon_sym_EQ] = ACTIONS(814), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(878), + [anon_sym_of] = ACTIONS(881), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [142] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(819), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_RBRACK] = ACTIONS(161), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(901), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5764), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3992), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5432), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(886), + [anon_sym_export] = ACTIONS(888), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(888), + [anon_sym_EQ] = ACTIONS(903), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(888), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_RBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(897), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(899), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(901), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(888), + [anon_sym_readonly] = ACTIONS(888), + [anon_sym_get] = ACTIONS(888), + [anon_sym_set] = ACTIONS(888), + [anon_sym_declare] = ACTIONS(888), + [anon_sym_public] = ACTIONS(888), + [anon_sym_private] = ACTIONS(888), + [anon_sym_protected] = ACTIONS(888), + [anon_sym_override] = ACTIONS(888), + [anon_sym_module] = ACTIONS(888), + [anon_sym_any] = ACTIONS(888), + [anon_sym_number] = ACTIONS(888), + [anon_sym_boolean] = ACTIONS(888), + [anon_sym_string] = ACTIONS(888), + [anon_sym_symbol] = ACTIONS(888), + [anon_sym_object] = ACTIONS(888), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [143] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(819), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(968), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5928), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3992), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5432), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(951), + [anon_sym_export] = ACTIONS(953), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(953), + [anon_sym_EQ] = ACTIONS(955), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(957), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(953), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(959), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(961), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(963), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(953), + [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(953), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [144] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4106), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5378), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(888), - [anon_sym_export] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(890), - [anon_sym_EQ] = ACTIONS(928), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(895), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(161), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(899), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(901), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(903), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(890), - [anon_sym_readonly] = ACTIONS(890), - [anon_sym_get] = ACTIONS(890), - [anon_sym_set] = ACTIONS(890), - [anon_sym_declare] = ACTIONS(890), - [anon_sym_public] = ACTIONS(890), - [anon_sym_private] = ACTIONS(890), - [anon_sym_protected] = ACTIONS(890), - [anon_sym_override] = ACTIONS(890), - [anon_sym_module] = ACTIONS(890), - [anon_sym_any] = ACTIONS(890), - [anon_sym_number] = ACTIONS(890), - [anon_sym_boolean] = ACTIONS(890), - [anon_sym_string] = ACTIONS(890), - [anon_sym_symbol] = ACTIONS(890), - [anon_sym_object] = ACTIONS(890), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(812), + [anon_sym_EQ] = ACTIONS(814), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_RBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(899), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [145] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(819), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(905), - [anon_sym_of] = ACTIONS(908), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5764), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(886), + [anon_sym_export] = ACTIONS(888), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(888), + [anon_sym_EQ] = ACTIONS(903), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(888), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_RBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(897), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(899), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(901), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(888), + [anon_sym_readonly] = ACTIONS(888), + [anon_sym_get] = ACTIONS(888), + [anon_sym_set] = ACTIONS(888), + [anon_sym_declare] = ACTIONS(888), + [anon_sym_public] = ACTIONS(888), + [anon_sym_private] = ACTIONS(888), + [anon_sym_protected] = ACTIONS(888), + [anon_sym_override] = ACTIONS(888), + [anon_sym_module] = ACTIONS(888), + [anon_sym_any] = ACTIONS(888), + [anon_sym_number] = ACTIONS(888), + [anon_sym_boolean] = ACTIONS(888), + [anon_sym_string] = ACTIONS(888), + [anon_sym_symbol] = ACTIONS(888), + [anon_sym_object] = ACTIONS(888), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [146] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(888), - [anon_sym_export] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(890), - [anon_sym_EQ] = ACTIONS(928), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(895), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(161), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(899), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(901), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(903), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(890), - [anon_sym_readonly] = ACTIONS(890), - [anon_sym_get] = ACTIONS(890), - [anon_sym_set] = ACTIONS(890), - [anon_sym_declare] = ACTIONS(890), - [anon_sym_public] = ACTIONS(890), - [anon_sym_private] = ACTIONS(890), - [anon_sym_protected] = ACTIONS(890), - [anon_sym_override] = ACTIONS(890), - [anon_sym_module] = ACTIONS(890), - [anon_sym_any] = ACTIONS(890), - [anon_sym_number] = ACTIONS(890), - [anon_sym_boolean] = ACTIONS(890), - [anon_sym_string] = ACTIONS(890), - [anon_sym_symbol] = ACTIONS(890), - [anon_sym_object] = ACTIONS(890), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3992), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5432), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(812), + [anon_sym_EQ] = ACTIONS(814), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(834), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [147] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4106), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5378), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(958), - [anon_sym_export] = ACTIONS(960), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(960), - [anon_sym_EQ] = ACTIONS(962), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(964), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(966), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(968), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(970), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(960), - [anon_sym_readonly] = ACTIONS(960), - [anon_sym_get] = ACTIONS(960), - [anon_sym_set] = ACTIONS(960), - [anon_sym_declare] = ACTIONS(960), - [anon_sym_public] = ACTIONS(960), - [anon_sym_private] = ACTIONS(960), - [anon_sym_protected] = ACTIONS(960), - [anon_sym_override] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), - [anon_sym_any] = ACTIONS(960), - [anon_sym_number] = ACTIONS(960), - [anon_sym_boolean] = ACTIONS(960), - [anon_sym_string] = ACTIONS(960), - [anon_sym_symbol] = ACTIONS(960), - [anon_sym_object] = ACTIONS(960), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(812), + [anon_sym_EQ] = ACTIONS(814), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(961), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [148] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4106), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5378), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(819), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(855), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5928), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(951), + [anon_sym_export] = ACTIONS(953), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(953), + [anon_sym_EQ] = ACTIONS(955), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(957), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(953), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(959), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(961), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(963), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(953), + [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(953), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [149] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(819), - [anon_sym_EQ] = ACTIONS(974), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(812), + [anon_sym_EQ] = ACTIONS(967), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [150] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(819), - [anon_sym_EQ] = ACTIONS(976), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(812), + [anon_sym_EQ] = ACTIONS(969), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [151] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(819), - [anon_sym_EQ] = ACTIONS(978), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(812), + [anon_sym_EQ] = ACTIONS(971), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [152] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(819), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(812), + [anon_sym_EQ] = ACTIONS(973), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [153] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4106), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5378), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(819), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(812), + [anon_sym_EQ] = ACTIONS(814), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [154] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(819), - [anon_sym_EQ] = ACTIONS(980), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(812), + [anon_sym_EQ] = ACTIONS(975), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [155] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(819), - [anon_sym_EQ] = ACTIONS(982), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(812), + [anon_sym_EQ] = ACTIONS(977), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [156] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(819), - [anon_sym_EQ] = ACTIONS(984), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(812), + [anon_sym_EQ] = ACTIONS(979), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [157] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(819), - [anon_sym_EQ] = ACTIONS(986), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(812), + [anon_sym_EQ] = ACTIONS(981), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [158] = { - [sym_import] = STATE(3751), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2432), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3740), - [sym_assignment_pattern] = STATE(5503), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3740), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5618), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1261), - [sym_subscript_expression] = STATE(1261), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3740), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1958), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4032), - [sym_pattern] = STATE(4827), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1261), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(3044), - [sym__type_query_call_expression_in_type_annotation] = STATE(3176), - [sym_type] = STATE(3284), - [sym_constructor_type] = STATE(3261), - [sym_primary_type] = STATE(3262), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(3261), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3255), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5393), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(3261), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(3261), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(988), - [anon_sym_export] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(992), - [anon_sym_typeof] = ACTIONS(994), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(610), - [anon_sym_const] = ACTIONS(996), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(998), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(1000), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1002), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(1008), - [anon_sym_DASH] = ACTIONS(1008), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(1010), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1012), - [sym_number] = ACTIONS(1014), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(1016), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(1018), - [sym_false] = ACTIONS(1018), - [sym_null] = ACTIONS(1018), - [sym_undefined] = ACTIONS(1020), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(1022), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(1026), - [anon_sym_number] = ACTIONS(1026), - [anon_sym_boolean] = ACTIONS(1026), - [anon_sym_string] = ACTIONS(1026), - [anon_sym_symbol] = ACTIONS(1026), - [anon_sym_object] = ACTIONS(1026), - [anon_sym_abstract] = ACTIONS(1028), - [anon_sym_infer] = ACTIONS(1030), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(1038), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3992), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5432), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(812), + [anon_sym_EQ] = ACTIONS(814), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [159] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(819), - [anon_sym_EQ] = ACTIONS(1040), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3661), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2402), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3596), + [sym_assignment_pattern] = STATE(5398), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3596), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_nested_identifier] = STATE(5834), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1268), + [sym_subscript_expression] = STATE(1268), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3596), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(2006), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(4019), + [sym_pattern] = STATE(5047), + [sym_rest_pattern] = STATE(3626), + [sym_non_null_expression] = STATE(1268), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_nested_type_identifier] = STATE(3070), + [sym__type_query_member_expression_in_type_annotation] = STATE(3029), + [sym__type_query_call_expression_in_type_annotation] = STATE(3159), + [sym_type] = STATE(3279), + [sym_constructor_type] = STATE(3218), + [sym_primary_type] = STATE(3257), + [sym_template_literal_type] = STATE(3211), + [sym_infer_type] = STATE(3218), + [sym_conditional_type] = STATE(3211), + [sym_generic_type] = STATE(3211), + [sym_type_query] = STATE(3211), + [sym_index_type_query] = STATE(3211), + [sym_lookup_type] = STATE(3211), + [sym_literal_type] = STATE(3211), + [sym__number] = STATE(3219), + [sym_existential_type] = STATE(3211), + [sym_flow_maybe_type] = STATE(3211), + [sym_parenthesized_type] = STATE(3211), + [sym_predefined_type] = STATE(3211), + [sym_object_type] = STATE(3211), + [sym_type_parameters] = STATE(5410), + [sym_array_type] = STATE(3211), + [sym_tuple_type] = STATE(3211), + [sym_readonly_type] = STATE(3218), + [sym_union_type] = STATE(3211), + [sym_intersection_type] = STATE(3211), + [sym_function_type] = STATE(3218), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(983), + [anon_sym_export] = ACTIONS(603), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_type] = ACTIONS(603), + [anon_sym_namespace] = ACTIONS(607), + [anon_sym_LBRACE] = ACTIONS(987), + [anon_sym_typeof] = ACTIONS(989), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(603), + [anon_sym_const] = ACTIONS(991), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(995), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(997), + [anon_sym_using] = ACTIONS(629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(1005), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1007), + [sym_number] = ACTIONS(1009), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(1011), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(1013), + [sym_false] = ACTIONS(1013), + [sym_null] = ACTIONS(1013), + [sym_undefined] = ACTIONS(1015), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(603), + [anon_sym_readonly] = ACTIONS(1017), + [anon_sym_get] = ACTIONS(603), + [anon_sym_set] = ACTIONS(603), + [anon_sym_QMARK] = ACTIONS(1019), + [anon_sym_declare] = ACTIONS(603), + [anon_sym_public] = ACTIONS(603), + [anon_sym_private] = ACTIONS(603), + [anon_sym_protected] = ACTIONS(603), + [anon_sym_override] = ACTIONS(603), + [anon_sym_module] = ACTIONS(603), + [anon_sym_any] = ACTIONS(1021), + [anon_sym_number] = ACTIONS(1021), + [anon_sym_boolean] = ACTIONS(1021), + [anon_sym_string] = ACTIONS(1021), + [anon_sym_symbol] = ACTIONS(1021), + [anon_sym_object] = ACTIONS(1021), + [anon_sym_abstract] = ACTIONS(1023), + [anon_sym_infer] = ACTIONS(1025), + [anon_sym_keyof] = ACTIONS(1027), + [anon_sym_unique] = ACTIONS(1029), + [anon_sym_unknown] = ACTIONS(1031), + [anon_sym_never] = ACTIONS(1031), + [anon_sym_LBRACE_PIPE] = ACTIONS(1033), [sym_html_comment] = ACTIONS(5), }, [160] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1460), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(819), - [anon_sym_EQ] = ACTIONS(1042), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(812), + [anon_sym_EQ] = ACTIONS(1035), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [161] = { - [sym_import] = STATE(3603), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2220), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5706), - [sym_string] = STATE(2088), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4033), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(5048), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(4309), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(4507), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5407), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1044), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1050), - [anon_sym_typeof] = ACTIONS(765), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(1052), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1056), - [anon_sym_using] = ACTIONS(636), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(648), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(779), - [sym_number] = ACTIONS(781), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(1058), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(785), - [sym_false] = ACTIONS(785), - [sym_null] = ACTIONS(785), - [sym_undefined] = ACTIONS(1060), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1062), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1064), - [anon_sym_number] = ACTIONS(1064), - [anon_sym_boolean] = ACTIONS(1064), - [anon_sym_string] = ACTIONS(1064), - [anon_sym_symbol] = ACTIONS(1064), - [anon_sym_object] = ACTIONS(1064), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(3755), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2144), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_nested_identifier] = STATE(5753), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_sequence_expression] = STATE(5894), + [sym_string] = STATE(2106), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3948), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(5077), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(4221), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(4521), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5431), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1037), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(1043), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(1045), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1049), + [anon_sym_using] = ACTIONS(629), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(643), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(770), + [sym_number] = ACTIONS(772), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(1051), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(776), + [sym_false] = ACTIONS(776), + [sym_null] = ACTIONS(776), + [sym_undefined] = ACTIONS(1053), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1055), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [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_object] = ACTIONS(1057), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [162] = { - [sym_import] = STATE(3579), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1773), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(1982), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4033), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3812), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5407), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1066), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1072), - [anon_sym_typeof] = ACTIONS(1074), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1076), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(1078), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1082), - [anon_sym_using] = ACTIONS(81), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(1084), - [anon_sym_DASH] = ACTIONS(1084), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(1086), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1088), - [sym_number] = ACTIONS(1090), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(1092), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(1094), - [sym_false] = ACTIONS(1094), - [sym_null] = ACTIONS(1094), - [sym_undefined] = ACTIONS(1096), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1098), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1100), - [anon_sym_number] = ACTIONS(1100), - [anon_sym_boolean] = ACTIONS(1100), - [anon_sym_string] = ACTIONS(1100), - [anon_sym_symbol] = ACTIONS(1100), - [anon_sym_object] = ACTIONS(1100), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(3612), + [sym_parenthesized_expression] = STATE(1375), + [sym_expression] = STATE(2249), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5782), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5782), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_nested_identifier] = STATE(5753), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5907), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1375), + [sym_subscript_expression] = STATE(1375), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5782), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1986), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3948), + [sym_non_null_expression] = STATE(1375), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3863), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5431), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1059), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(1065), + [anon_sym_typeof] = ACTIONS(1067), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(1075), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1079), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1085), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1091), + [sym_number] = ACTIONS(1093), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(1097), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(1099), + [sym_false] = ACTIONS(1099), + [sym_null] = ACTIONS(1099), + [sym_undefined] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1105), + [anon_sym_number] = ACTIONS(1105), + [anon_sym_boolean] = ACTIONS(1105), + [anon_sym_string] = ACTIONS(1105), + [anon_sym_symbol] = ACTIONS(1105), + [anon_sym_object] = ACTIONS(1105), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [163] = { - [sym_import] = STATE(3603), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1700), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1720), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4033), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3799), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5407), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1102), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1104), - [anon_sym_typeof] = ACTIONS(1106), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(1108), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1056), - [anon_sym_using] = ACTIONS(636), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1110), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(648), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1112), - [sym_number] = ACTIONS(1114), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(1116), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(1118), - [sym_false] = ACTIONS(1118), - [sym_null] = ACTIONS(1118), - [sym_undefined] = ACTIONS(1120), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1062), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1122), - [anon_sym_number] = ACTIONS(1122), - [anon_sym_boolean] = ACTIONS(1122), - [anon_sym_string] = ACTIONS(1122), - [anon_sym_symbol] = ACTIONS(1122), - [anon_sym_object] = ACTIONS(1122), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(3755), + [sym_parenthesized_expression] = STATE(1365), + [sym_expression] = STATE(2035), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5873), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5873), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_nested_identifier] = STATE(5753), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5780), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1365), + [sym_subscript_expression] = STATE(1365), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2990), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5873), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1675), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3948), + [sym_non_null_expression] = STATE(1365), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3863), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5431), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1107), + [anon_sym_export] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_type] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_LBRACE] = ACTIONS(1113), + [anon_sym_typeof] = ACTIONS(1115), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1109), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(1117), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(1119), + [anon_sym_yield] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1125), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1127), + [anon_sym_using] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1117), + [anon_sym_void] = ACTIONS(1133), + [anon_sym_delete] = ACTIONS(1135), + [anon_sym_PLUS_PLUS] = ACTIONS(1137), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1139), + [sym_number] = ACTIONS(1141), + [sym_private_property_identifier] = ACTIONS(1143), + [sym_this] = ACTIONS(1145), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(1147), + [sym_false] = ACTIONS(1147), + [sym_null] = ACTIONS(1147), + [sym_undefined] = ACTIONS(1149), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1109), + [anon_sym_readonly] = ACTIONS(1151), + [anon_sym_get] = ACTIONS(1109), + [anon_sym_set] = ACTIONS(1109), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_declare] = ACTIONS(1109), + [anon_sym_public] = ACTIONS(1109), + [anon_sym_private] = ACTIONS(1109), + [anon_sym_protected] = ACTIONS(1109), + [anon_sym_override] = ACTIONS(1109), + [anon_sym_module] = ACTIONS(1109), + [anon_sym_any] = ACTIONS(1153), + [anon_sym_number] = ACTIONS(1153), + [anon_sym_boolean] = ACTIONS(1153), + [anon_sym_string] = ACTIONS(1153), + [anon_sym_symbol] = ACTIONS(1153), + [anon_sym_object] = ACTIONS(1153), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [164] = { - [sym_import] = STATE(3567), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2254), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1931), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4033), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3799), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5407), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1124), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1130), - [anon_sym_typeof] = ACTIONS(1132), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(1140), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1144), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(1148), - [anon_sym_DASH] = ACTIONS(1148), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1150), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1156), - [sym_number] = ACTIONS(1158), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(1162), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(1164), - [sym_false] = ACTIONS(1164), - [sym_null] = ACTIONS(1164), - [sym_undefined] = ACTIONS(1166), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1168), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1170), - [anon_sym_number] = ACTIONS(1170), - [anon_sym_boolean] = ACTIONS(1170), - [anon_sym_string] = ACTIONS(1170), - [anon_sym_symbol] = ACTIONS(1170), - [anon_sym_object] = ACTIONS(1170), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(3612), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2493), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_nested_identifier] = STATE(5753), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1986), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3948), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3863), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5431), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1155), + [anon_sym_export] = ACTIONS(812), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(1157), + [anon_sym_typeof] = ACTIONS(1159), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1075), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1161), + [anon_sym_using] = ACTIONS(162), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(1163), + [anon_sym_DASH] = ACTIONS(1163), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(181), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1091), + [sym_number] = ACTIONS(1093), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(1097), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(1099), + [sym_false] = ACTIONS(1099), + [sym_null] = ACTIONS(1099), + [sym_undefined] = ACTIONS(1165), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(1167), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(1169), + [anon_sym_number] = ACTIONS(1169), + [anon_sym_boolean] = ACTIONS(1169), + [anon_sym_string] = ACTIONS(1169), + [anon_sym_symbol] = ACTIONS(1169), + [anon_sym_object] = ACTIONS(1169), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [165] = { - [sym_import] = STATE(3714), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2478), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1931), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4033), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3799), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5407), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1172), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(1130), - [anon_sym_typeof] = ACTIONS(1178), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1140), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1188), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(1192), - [anon_sym_DASH] = ACTIONS(1192), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1194), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1156), - [sym_number] = ACTIONS(1158), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(1162), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(1164), - [sym_false] = ACTIONS(1164), - [sym_null] = ACTIONS(1164), - [sym_undefined] = ACTIONS(1202), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1204), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1206), - [anon_sym_number] = ACTIONS(1206), - [anon_sym_boolean] = ACTIONS(1206), - [anon_sym_string] = ACTIONS(1206), - [anon_sym_symbol] = ACTIONS(1206), - [anon_sym_object] = ACTIONS(1206), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(3755), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2015), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(4027), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(4027), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_nested_identifier] = STATE(5753), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(4027), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(2313), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3948), + [sym_non_null_expression] = STATE(1328), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(4209), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5431), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1171), + [anon_sym_export] = ACTIONS(1173), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_type] = ACTIONS(1173), + [anon_sym_namespace] = ACTIONS(1175), + [anon_sym_LBRACE] = ACTIONS(1177), + [anon_sym_typeof] = ACTIONS(613), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1173), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(621), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1179), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1181), + [anon_sym_using] = ACTIONS(629), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(643), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(188), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(651), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1183), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1173), + [anon_sym_readonly] = ACTIONS(1185), + [anon_sym_get] = ACTIONS(1173), + [anon_sym_set] = ACTIONS(1173), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_declare] = ACTIONS(1173), + [anon_sym_public] = ACTIONS(1173), + [anon_sym_private] = ACTIONS(1173), + [anon_sym_protected] = ACTIONS(1173), + [anon_sym_override] = ACTIONS(1173), + [anon_sym_module] = ACTIONS(1173), + [anon_sym_any] = ACTIONS(1187), + [anon_sym_number] = ACTIONS(1187), + [anon_sym_boolean] = ACTIONS(1187), + [anon_sym_string] = ACTIONS(1187), + [anon_sym_symbol] = ACTIONS(1187), + [anon_sym_object] = ACTIONS(1187), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [166] = { - [sym_import] = STATE(3603), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2018), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(4305), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(4305), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1332), - [sym_subscript_expression] = STATE(1332), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(4305), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2237), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4033), - [sym_non_null_expression] = STATE(1332), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4306), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5407), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1208), - [anon_sym_export] = ACTIONS(1210), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(1210), - [anon_sym_namespace] = ACTIONS(1212), - [anon_sym_LBRACE] = ACTIONS(1214), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1210), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1216), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1218), - [anon_sym_using] = ACTIONS(636), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(648), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(191), - [sym_number] = ACTIONS(193), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(656), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(201), - [sym_false] = ACTIONS(201), - [sym_null] = ACTIONS(201), - [sym_undefined] = ACTIONS(1220), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1210), - [anon_sym_readonly] = ACTIONS(1222), - [anon_sym_get] = ACTIONS(1210), - [anon_sym_set] = ACTIONS(1210), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(1210), - [anon_sym_public] = ACTIONS(1210), - [anon_sym_private] = ACTIONS(1210), - [anon_sym_protected] = ACTIONS(1210), - [anon_sym_override] = ACTIONS(1210), - [anon_sym_module] = ACTIONS(1210), - [anon_sym_any] = ACTIONS(1224), - [anon_sym_number] = ACTIONS(1224), - [anon_sym_boolean] = ACTIONS(1224), - [anon_sym_string] = ACTIONS(1224), - [anon_sym_symbol] = ACTIONS(1224), - [anon_sym_object] = ACTIONS(1224), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(3612), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3639), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3639), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_nested_identifier] = STATE(5753), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1409), + [sym_subscript_expression] = STATE(1409), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3639), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(2529), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3948), + [sym_non_null_expression] = STATE(1409), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(4209), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5431), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1189), + [anon_sym_export] = ACTIONS(1191), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_type] = ACTIONS(1191), + [anon_sym_namespace] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_typeof] = ACTIONS(1197), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1191), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1199), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1201), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1203), + [anon_sym_using] = ACTIONS(162), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(1205), + [anon_sym_DASH] = ACTIONS(1205), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(181), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1207), + [sym_number] = ACTIONS(1209), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(1211), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(1213), + [sym_false] = ACTIONS(1213), + [sym_null] = ACTIONS(1213), + [sym_undefined] = ACTIONS(1215), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1191), + [anon_sym_readonly] = ACTIONS(1217), + [anon_sym_get] = ACTIONS(1191), + [anon_sym_set] = ACTIONS(1191), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_declare] = ACTIONS(1191), + [anon_sym_public] = ACTIONS(1191), + [anon_sym_private] = ACTIONS(1191), + [anon_sym_protected] = ACTIONS(1191), + [anon_sym_override] = ACTIONS(1191), + [anon_sym_module] = ACTIONS(1191), + [anon_sym_any] = ACTIONS(1219), + [anon_sym_number] = ACTIONS(1219), + [anon_sym_boolean] = ACTIONS(1219), + [anon_sym_string] = ACTIONS(1219), + [anon_sym_symbol] = ACTIONS(1219), + [anon_sym_object] = ACTIONS(1219), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [167] = { - [sym_import] = STATE(3567), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3654), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3654), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1387), - [sym_subscript_expression] = STATE(1387), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3654), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(2502), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4033), - [sym_non_null_expression] = STATE(1387), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4306), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5407), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1226), - [anon_sym_export] = ACTIONS(1228), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(1228), - [anon_sym_namespace] = ACTIONS(1230), - [anon_sym_LBRACE] = ACTIONS(1232), - [anon_sym_typeof] = ACTIONS(1234), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1228), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1236), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1238), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1240), - [anon_sym_using] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1244), - [sym_number] = ACTIONS(1246), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(1248), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(1250), - [sym_false] = ACTIONS(1250), - [sym_null] = ACTIONS(1250), - [sym_undefined] = ACTIONS(1252), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1228), - [anon_sym_readonly] = ACTIONS(1254), - [anon_sym_get] = ACTIONS(1228), - [anon_sym_set] = ACTIONS(1228), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(1228), - [anon_sym_public] = ACTIONS(1228), - [anon_sym_private] = ACTIONS(1228), - [anon_sym_protected] = ACTIONS(1228), - [anon_sym_override] = ACTIONS(1228), - [anon_sym_module] = ACTIONS(1228), - [anon_sym_any] = ACTIONS(1256), - [anon_sym_number] = ACTIONS(1256), - [anon_sym_boolean] = ACTIONS(1256), - [anon_sym_string] = ACTIONS(1256), - [anon_sym_symbol] = ACTIONS(1256), - [anon_sym_object] = ACTIONS(1256), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(3651), + [sym_parenthesized_expression] = STATE(1406), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5918), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5918), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_nested_identifier] = STATE(5753), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5764), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1406), + [sym_subscript_expression] = STATE(1406), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2954), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5918), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1986), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3948), + [sym_non_null_expression] = STATE(1406), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3863), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5431), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1221), + [anon_sym_export] = ACTIONS(1223), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_type] = ACTIONS(1223), + [anon_sym_namespace] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(1065), + [anon_sym_typeof] = ACTIONS(1227), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1223), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(1231), + [anon_sym_yield] = ACTIONS(1233), + [anon_sym_LBRACK] = ACTIONS(1075), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1235), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1237), + [anon_sym_using] = ACTIONS(1239), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(1241), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_void] = ACTIONS(1243), + [anon_sym_delete] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1247), + [anon_sym_DASH_DASH] = ACTIONS(1247), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1091), + [sym_number] = ACTIONS(1093), + [sym_private_property_identifier] = ACTIONS(1249), + [sym_this] = ACTIONS(1097), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(1099), + [sym_false] = ACTIONS(1099), + [sym_null] = ACTIONS(1099), + [sym_undefined] = ACTIONS(1251), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1223), + [anon_sym_readonly] = ACTIONS(1253), + [anon_sym_get] = ACTIONS(1223), + [anon_sym_set] = ACTIONS(1223), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_declare] = ACTIONS(1223), + [anon_sym_public] = ACTIONS(1223), + [anon_sym_private] = ACTIONS(1223), + [anon_sym_protected] = ACTIONS(1223), + [anon_sym_override] = ACTIONS(1223), + [anon_sym_module] = ACTIONS(1223), + [anon_sym_any] = ACTIONS(1255), + [anon_sym_number] = ACTIONS(1255), + [anon_sym_boolean] = ACTIONS(1255), + [anon_sym_string] = ACTIONS(1255), + [anon_sym_symbol] = ACTIONS(1255), + [anon_sym_object] = ACTIONS(1255), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [168] = { - [sym_import] = STATE(3579), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1830), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(1982), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4033), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3812), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5407), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1258), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(1072), - [anon_sym_typeof] = ACTIONS(1264), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(1076), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(1078), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1274), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1278), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1280), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1088), - [sym_number] = ACTIONS(1090), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(1092), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(1094), - [sym_false] = ACTIONS(1094), - [sym_null] = ACTIONS(1094), - [sym_undefined] = ACTIONS(1288), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1290), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1292), - [anon_sym_number] = ACTIONS(1292), - [anon_sym_boolean] = ACTIONS(1292), - [anon_sym_string] = ACTIONS(1292), - [anon_sym_symbol] = ACTIONS(1292), - [anon_sym_object] = ACTIONS(1292), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(3755), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(1657), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_nested_identifier] = STATE(5753), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1675), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3948), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3863), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5431), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1257), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(1113), + [anon_sym_typeof] = ACTIONS(1259), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1049), + [anon_sym_using] = ACTIONS(629), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1261), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(643), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1139), + [sym_number] = ACTIONS(1141), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(1145), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(1147), + [sym_false] = ACTIONS(1147), + [sym_null] = ACTIONS(1147), + [sym_undefined] = ACTIONS(1263), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1055), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1265), + [anon_sym_number] = ACTIONS(1265), + [anon_sym_boolean] = ACTIONS(1265), + [anon_sym_string] = ACTIONS(1265), + [anon_sym_symbol] = ACTIONS(1265), + [anon_sym_object] = ACTIONS(1265), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [169] = { - [sym_import] = STATE(3603), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2036), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1720), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4033), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3799), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5407), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1294), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1104), - [anon_sym_typeof] = ACTIONS(1300), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1108), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1310), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(1314), - [anon_sym_DASH] = ACTIONS(1314), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1316), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1112), - [sym_number] = ACTIONS(1114), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(1116), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(1118), - [sym_false] = ACTIONS(1118), - [sym_null] = ACTIONS(1118), - [sym_undefined] = ACTIONS(1324), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1326), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1328), - [anon_sym_number] = ACTIONS(1328), - [anon_sym_boolean] = ACTIONS(1328), - [anon_sym_string] = ACTIONS(1328), - [anon_sym_symbol] = ACTIONS(1328), - [anon_sym_object] = ACTIONS(1328), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(3633), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(2160), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5596), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5596), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_nested_identifier] = STATE(5753), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5594), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5596), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2379), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3948), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3877), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5431), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1267), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_typeof] = ACTIONS(1275), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1287), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1289), + [anon_sym_using] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(1293), + [anon_sym_DASH] = ACTIONS(1293), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_void] = ACTIONS(1295), + [anon_sym_delete] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1299), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1301), + [sym_number] = ACTIONS(1303), + [sym_private_property_identifier] = ACTIONS(1305), + [sym_this] = ACTIONS(1307), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(1309), + [sym_false] = ACTIONS(1309), + [sym_null] = ACTIONS(1309), + [sym_undefined] = ACTIONS(1311), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1313), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1315), + [anon_sym_number] = ACTIONS(1315), + [anon_sym_boolean] = ACTIONS(1315), + [anon_sym_string] = ACTIONS(1315), + [anon_sym_symbol] = ACTIONS(1315), + [anon_sym_object] = ACTIONS(1315), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [170] = { - [sym_import] = STATE(3567), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2439), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1931), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4033), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3799), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5407), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1330), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(1336), - [anon_sym_typeof] = ACTIONS(1338), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(1140), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1348), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(1352), - [anon_sym_DASH] = ACTIONS(1352), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1354), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1156), - [sym_number] = ACTIONS(1158), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(1162), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(1164), - [sym_false] = ACTIONS(1164), - [sym_null] = ACTIONS(1164), - [sym_undefined] = ACTIONS(1362), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1364), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1366), - [anon_sym_number] = ACTIONS(1366), - [anon_sym_boolean] = ACTIONS(1366), - [anon_sym_string] = ACTIONS(1366), - [anon_sym_symbol] = ACTIONS(1366), - [anon_sym_object] = ACTIONS(1366), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(3704), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1760), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_nested_identifier] = STATE(5753), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(1873), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3948), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3877), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5431), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1317), + [anon_sym_export] = ACTIONS(1319), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_type] = ACTIONS(1319), + [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(1323), + [anon_sym_typeof] = ACTIONS(1325), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1319), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1331), + [anon_sym_using] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(1333), + [anon_sym_DASH] = ACTIONS(1333), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(1335), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1337), + [sym_number] = ACTIONS(1339), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(1341), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(1343), + [sym_false] = ACTIONS(1343), + [sym_null] = ACTIONS(1343), + [sym_undefined] = ACTIONS(1345), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_readonly] = ACTIONS(1347), + [anon_sym_get] = ACTIONS(1319), + [anon_sym_set] = ACTIONS(1319), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_declare] = ACTIONS(1319), + [anon_sym_public] = ACTIONS(1319), + [anon_sym_private] = ACTIONS(1319), + [anon_sym_protected] = ACTIONS(1319), + [anon_sym_override] = ACTIONS(1319), + [anon_sym_module] = ACTIONS(1319), + [anon_sym_any] = ACTIONS(1349), + [anon_sym_number] = ACTIONS(1349), + [anon_sym_boolean] = ACTIONS(1349), + [anon_sym_string] = ACTIONS(1349), + [anon_sym_symbol] = ACTIONS(1349), + [anon_sym_object] = ACTIONS(1349), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [171] = { - [sym_import] = STATE(3648), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2144), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2413), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4033), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3812), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5407), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1368), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(1374), - [anon_sym_typeof] = ACTIONS(1376), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1076), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(1384), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1388), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(1392), - [anon_sym_DASH] = ACTIONS(1392), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1394), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1400), - [sym_number] = ACTIONS(1402), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(1406), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(1408), - [sym_false] = ACTIONS(1408), - [sym_null] = ACTIONS(1408), - [sym_undefined] = ACTIONS(1410), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1412), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1414), - [anon_sym_number] = ACTIONS(1414), - [anon_sym_boolean] = ACTIONS(1414), - [anon_sym_string] = ACTIONS(1414), - [anon_sym_symbol] = ACTIONS(1414), - [anon_sym_object] = ACTIONS(1414), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(3612), + [sym_parenthesized_expression] = STATE(1382), + [sym_expression] = STATE(2451), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5929), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5929), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_nested_identifier] = STATE(5753), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5928), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1382), + [sym_subscript_expression] = STATE(1382), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2964), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5929), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1986), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3948), + [sym_non_null_expression] = STATE(1382), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3863), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5431), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1351), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(1157), + [anon_sym_typeof] = ACTIONS(1357), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(1075), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1367), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(1371), + [anon_sym_DASH] = ACTIONS(1371), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1373), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1091), + [sym_number] = ACTIONS(1093), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(1097), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(1099), + [sym_false] = ACTIONS(1099), + [sym_null] = ACTIONS(1099), + [sym_undefined] = ACTIONS(1381), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1383), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1385), + [anon_sym_number] = ACTIONS(1385), + [anon_sym_boolean] = ACTIONS(1385), + [anon_sym_string] = ACTIONS(1385), + [anon_sym_symbol] = ACTIONS(1385), + [anon_sym_object] = ACTIONS(1385), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [172] = { - [sym_import] = STATE(3567), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2511), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_nested_identifier] = STATE(5937), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1931), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(4033), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3799), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5407), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1416), - [anon_sym_export] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(1336), - [anon_sym_typeof] = ACTIONS(1418), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1140), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1420), - [anon_sym_using] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1156), - [sym_number] = ACTIONS(1158), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(1162), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(1164), - [sym_false] = ACTIONS(1164), - [sym_null] = ACTIONS(1164), - [sym_undefined] = ACTIONS(1424), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(1426), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(1428), - [anon_sym_number] = ACTIONS(1428), - [anon_sym_boolean] = ACTIONS(1428), - [anon_sym_string] = ACTIONS(1428), - [anon_sym_symbol] = ACTIONS(1428), - [anon_sym_object] = ACTIONS(1428), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(3704), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(1758), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_nested_identifier] = STATE(5753), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5881), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(1873), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3948), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3877), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5431), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1323), + [anon_sym_typeof] = ACTIONS(1393), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1403), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(1407), + [anon_sym_DASH] = ACTIONS(1407), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1337), + [sym_number] = ACTIONS(1339), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(1341), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(1343), + [sym_false] = ACTIONS(1343), + [sym_null] = ACTIONS(1343), + [sym_undefined] = ACTIONS(1417), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1419), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [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_object] = ACTIONS(1421), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [173] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1693), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_STAR] = ACTIONS(1432), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_as] = ACTIONS(1434), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1436), - [anon_sym_RBRACE] = ACTIONS(1436), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_SEMI] = ACTIONS(1436), - [anon_sym_RPAREN] = ACTIONS(1436), - [anon_sym_await] = ACTIONS(624), - [anon_sym_in] = ACTIONS(1434), - [anon_sym_COLON] = ACTIONS(1436), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(1436), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1434), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_QMARK_DOT] = ACTIONS(1436), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_AMP_AMP] = ACTIONS(1436), - [anon_sym_PIPE_PIPE] = ACTIONS(1436), - [anon_sym_GT_GT] = ACTIONS(1434), - [anon_sym_GT_GT_GT] = ACTIONS(1436), - [anon_sym_LT_LT] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_PIPE] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_STAR_STAR] = ACTIONS(1436), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(1436), - [anon_sym_EQ_EQ] = ACTIONS(1434), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1436), - [anon_sym_BANG_EQ] = ACTIONS(1434), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1436), - [anon_sym_GT_EQ] = ACTIONS(1436), - [anon_sym_QMARK_QMARK] = ACTIONS(1436), - [anon_sym_instanceof] = ACTIONS(1434), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), - [anon_sym_satisfies] = ACTIONS(1434), - [sym__ternary_qmark] = ACTIONS(1436), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(1710), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_as] = ACTIONS(1427), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_COMMA] = ACTIONS(1429), + [anon_sym_RBRACE] = ACTIONS(1429), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(1429), + [anon_sym_RPAREN] = ACTIONS(1429), + [anon_sym_await] = ACTIONS(617), + [anon_sym_in] = ACTIONS(1427), + [anon_sym_COLON] = ACTIONS(1429), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_RBRACK] = ACTIONS(1429), + [anon_sym_GT] = ACTIONS(1427), + [anon_sym_DOT] = ACTIONS(1427), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(1429), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(1429), + [anon_sym_PIPE_PIPE] = ACTIONS(1429), + [anon_sym_GT_GT] = ACTIONS(1427), + [anon_sym_GT_GT_GT] = ACTIONS(1429), + [anon_sym_LT_LT] = ACTIONS(1429), + [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_CARET] = ACTIONS(1429), + [anon_sym_PIPE] = ACTIONS(1427), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PERCENT] = ACTIONS(1429), + [anon_sym_STAR_STAR] = ACTIONS(1429), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(1429), + [anon_sym_EQ_EQ] = ACTIONS(1427), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1429), + [anon_sym_BANG_EQ] = ACTIONS(1427), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1429), + [anon_sym_GT_EQ] = ACTIONS(1429), + [anon_sym_QMARK_QMARK] = ACTIONS(1429), + [anon_sym_instanceof] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [anon_sym_satisfies] = ACTIONS(1427), + [sym__ternary_qmark] = ACTIONS(1429), [sym_html_comment] = ACTIONS(5), }, [174] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1763), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_as] = ACTIONS(1434), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_COMMA] = ACTIONS(1436), - [anon_sym_RBRACE] = ACTIONS(1436), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1768), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1319), + [anon_sym_STAR] = ACTIONS(1437), + [anon_sym_type] = ACTIONS(1319), + [anon_sym_as] = ACTIONS(1427), + [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(1429), + [anon_sym_RBRACE] = ACTIONS(1429), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1319), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(1436), + [anon_sym_SEMI] = ACTIONS(1429), [anon_sym_await] = ACTIONS(45), - [anon_sym_in] = ACTIONS(1434), + [anon_sym_in] = ACTIONS(1427), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_GT] = ACTIONS(1434), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_QMARK_DOT] = ACTIONS(1436), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), - [anon_sym_AMP_AMP] = ACTIONS(1436), - [anon_sym_PIPE_PIPE] = ACTIONS(1436), - [anon_sym_GT_GT] = ACTIONS(1434), - [anon_sym_GT_GT_GT] = ACTIONS(1436), - [anon_sym_LT_LT] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_PIPE] = ACTIONS(1434), + [anon_sym_GT] = ACTIONS(1427), + [anon_sym_DOT] = ACTIONS(1427), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_function] = ACTIONS(710), + [anon_sym_QMARK_DOT] = ACTIONS(1429), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_AMP_AMP] = ACTIONS(1429), + [anon_sym_PIPE_PIPE] = ACTIONS(1429), + [anon_sym_GT_GT] = ACTIONS(1427), + [anon_sym_GT_GT_GT] = ACTIONS(1429), + [anon_sym_LT_LT] = ACTIONS(1429), + [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_CARET] = ACTIONS(1429), + [anon_sym_PIPE] = ACTIONS(1427), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_STAR_STAR] = ACTIONS(1436), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(1436), - [anon_sym_EQ_EQ] = ACTIONS(1434), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1436), - [anon_sym_BANG_EQ] = ACTIONS(1434), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1436), - [anon_sym_GT_EQ] = ACTIONS(1436), - [anon_sym_QMARK_QMARK] = ACTIONS(1436), - [anon_sym_instanceof] = ACTIONS(1434), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PERCENT] = ACTIONS(1429), + [anon_sym_STAR_STAR] = ACTIONS(1429), + [anon_sym_LT] = ACTIONS(1441), + [anon_sym_LT_EQ] = ACTIONS(1429), + [anon_sym_EQ_EQ] = ACTIONS(1427), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1429), + [anon_sym_BANG_EQ] = ACTIONS(1427), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1429), + [anon_sym_GT_EQ] = ACTIONS(1429), + [anon_sym_QMARK_QMARK] = ACTIONS(1429), + [anon_sym_instanceof] = ACTIONS(1427), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), - [anon_sym_satisfies] = ACTIONS(1434), - [sym__automatic_semicolon] = ACTIONS(1436), - [sym__ternary_qmark] = ACTIONS(1436), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_readonly] = ACTIONS(1319), + [anon_sym_get] = ACTIONS(1319), + [anon_sym_set] = ACTIONS(1319), + [anon_sym_declare] = ACTIONS(1319), + [anon_sym_public] = ACTIONS(1319), + [anon_sym_private] = ACTIONS(1319), + [anon_sym_protected] = ACTIONS(1319), + [anon_sym_override] = ACTIONS(1319), + [anon_sym_module] = ACTIONS(1319), + [anon_sym_any] = ACTIONS(1319), + [anon_sym_number] = ACTIONS(1319), + [anon_sym_boolean] = ACTIONS(1319), + [anon_sym_string] = ACTIONS(1319), + [anon_sym_symbol] = ACTIONS(1319), + [anon_sym_object] = ACTIONS(1319), + [anon_sym_satisfies] = ACTIONS(1427), + [sym__automatic_semicolon] = ACTIONS(1429), + [sym__ternary_qmark] = ACTIONS(1429), [sym_html_comment] = ACTIONS(5), }, [175] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1855), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_STAR] = ACTIONS(1450), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_as] = ACTIONS(1434), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_COMMA] = ACTIONS(1436), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1282), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(1783), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5881), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_STAR] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_as] = ACTIONS(1427), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(1429), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1411), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(1436), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_in] = ACTIONS(1434), - [anon_sym_of] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1270), + [anon_sym_SEMI] = ACTIONS(1429), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_in] = ACTIONS(1427), + [anon_sym_of] = ACTIONS(1427), + [anon_sym_yield] = ACTIONS(1399), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_GT] = ACTIONS(1434), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_QMARK_DOT] = ACTIONS(1436), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_AMP_AMP] = ACTIONS(1436), - [anon_sym_PIPE_PIPE] = ACTIONS(1436), - [anon_sym_GT_GT] = ACTIONS(1434), - [anon_sym_GT_GT_GT] = ACTIONS(1436), - [anon_sym_LT_LT] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_PIPE] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_STAR_STAR] = ACTIONS(1436), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(1436), - [anon_sym_EQ_EQ] = ACTIONS(1434), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1436), - [anon_sym_BANG_EQ] = ACTIONS(1434), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1436), - [anon_sym_GT_EQ] = ACTIONS(1436), - [anon_sym_QMARK_QMARK] = ACTIONS(1436), - [anon_sym_instanceof] = ACTIONS(1434), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), - [anon_sym_satisfies] = ACTIONS(1434), - [sym__automatic_semicolon] = ACTIONS(1436), - [sym__ternary_qmark] = ACTIONS(1436), + [anon_sym_GT] = ACTIONS(1427), + [anon_sym_DOT] = ACTIONS(1427), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(710), + [anon_sym_QMARK_DOT] = ACTIONS(1429), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_AMP_AMP] = ACTIONS(1429), + [anon_sym_PIPE_PIPE] = ACTIONS(1429), + [anon_sym_GT_GT] = ACTIONS(1427), + [anon_sym_GT_GT_GT] = ACTIONS(1429), + [anon_sym_LT_LT] = ACTIONS(1429), + [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_CARET] = ACTIONS(1429), + [anon_sym_PIPE] = ACTIONS(1427), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_PERCENT] = ACTIONS(1429), + [anon_sym_STAR_STAR] = ACTIONS(1429), + [anon_sym_LT] = ACTIONS(1441), + [anon_sym_LT_EQ] = ACTIONS(1429), + [anon_sym_EQ_EQ] = ACTIONS(1427), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1429), + [anon_sym_BANG_EQ] = ACTIONS(1427), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1429), + [anon_sym_GT_EQ] = ACTIONS(1429), + [anon_sym_QMARK_QMARK] = ACTIONS(1429), + [anon_sym_instanceof] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_satisfies] = ACTIONS(1427), + [sym__automatic_semicolon] = ACTIONS(1429), + [sym__ternary_qmark] = ACTIONS(1429), [sym_html_comment] = ACTIONS(5), }, [176] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2209), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1458), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_as] = ACTIONS(1434), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1396), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(2354), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5596), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5596), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5594), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5596), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_STAR] = ACTIONS(1453), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_as] = ACTIONS(1427), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1297), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(1436), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_in] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1382), + [anon_sym_SEMI] = ACTIONS(1429), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_in] = ACTIONS(1427), + [anon_sym_yield] = ACTIONS(1283), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_GT] = ACTIONS(1434), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_QMARK_DOT] = ACTIONS(1436), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_AMP_AMP] = ACTIONS(1436), - [anon_sym_PIPE_PIPE] = ACTIONS(1436), - [anon_sym_GT_GT] = ACTIONS(1434), - [anon_sym_GT_GT_GT] = ACTIONS(1436), - [anon_sym_LT_LT] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_PIPE] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_STAR_STAR] = ACTIONS(1436), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(1436), - [anon_sym_EQ_EQ] = ACTIONS(1434), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1436), - [anon_sym_BANG_EQ] = ACTIONS(1434), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1436), - [anon_sym_GT_EQ] = ACTIONS(1436), - [anon_sym_QMARK_QMARK] = ACTIONS(1436), - [anon_sym_instanceof] = ACTIONS(1434), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), - [anon_sym_satisfies] = ACTIONS(1434), - [sym__automatic_semicolon] = ACTIONS(1436), - [sym__ternary_qmark] = ACTIONS(1436), + [anon_sym_GT] = ACTIONS(1427), + [anon_sym_DOT] = ACTIONS(1427), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1287), + [anon_sym_function] = ACTIONS(710), + [anon_sym_QMARK_DOT] = ACTIONS(1429), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1291), + [anon_sym_AMP_AMP] = ACTIONS(1429), + [anon_sym_PIPE_PIPE] = ACTIONS(1429), + [anon_sym_GT_GT] = ACTIONS(1427), + [anon_sym_GT_GT_GT] = ACTIONS(1429), + [anon_sym_LT_LT] = ACTIONS(1429), + [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_CARET] = ACTIONS(1429), + [anon_sym_PIPE] = ACTIONS(1427), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PERCENT] = ACTIONS(1429), + [anon_sym_STAR_STAR] = ACTIONS(1429), + [anon_sym_LT] = ACTIONS(1441), + [anon_sym_LT_EQ] = ACTIONS(1429), + [anon_sym_EQ_EQ] = ACTIONS(1427), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1429), + [anon_sym_BANG_EQ] = ACTIONS(1427), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1429), + [anon_sym_GT_EQ] = ACTIONS(1429), + [anon_sym_QMARK_QMARK] = ACTIONS(1429), + [anon_sym_instanceof] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_void] = ACTIONS(1297), + [anon_sym_delete] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1299), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1305), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [anon_sym_satisfies] = ACTIONS(1427), + [sym__automatic_semicolon] = ACTIONS(1429), + [sym__ternary_qmark] = ACTIONS(1429), [sym_html_comment] = ACTIONS(5), }, [177] = { - [sym_import] = STATE(3759), + [sym_import] = STATE(3644), [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2058), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), + [sym_expression] = STATE(2057), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5873), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5873), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5780), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), [sym_member_expression] = STATE(1365), [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2990), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5873), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_STAR] = ACTIONS(1466), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_as] = ACTIONS(1434), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1436), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_in] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1434), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_QMARK_DOT] = ACTIONS(1436), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_AMP_AMP] = ACTIONS(1436), - [anon_sym_PIPE_PIPE] = ACTIONS(1436), - [anon_sym_GT_GT] = ACTIONS(1434), - [anon_sym_GT_GT_GT] = ACTIONS(1436), - [anon_sym_LT_LT] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_PIPE] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_STAR_STAR] = ACTIONS(1436), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(1436), - [anon_sym_EQ_EQ] = ACTIONS(1434), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1436), - [anon_sym_BANG_EQ] = ACTIONS(1434), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1436), - [anon_sym_GT_EQ] = ACTIONS(1436), - [anon_sym_QMARK_QMARK] = ACTIONS(1436), - [anon_sym_instanceof] = ACTIONS(1434), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), - [anon_sym_satisfies] = ACTIONS(1434), - [anon_sym_implements] = ACTIONS(1434), - [sym__ternary_qmark] = ACTIONS(1436), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(1461), + [anon_sym_type] = ACTIONS(1109), + [anon_sym_as] = ACTIONS(1427), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_COMMA] = ACTIONS(1429), + [anon_sym_typeof] = ACTIONS(1135), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1109), + [anon_sym_BANG] = ACTIONS(1135), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1119), + [anon_sym_in] = ACTIONS(1427), + [anon_sym_yield] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_GT] = ACTIONS(1427), + [anon_sym_DOT] = ACTIONS(1427), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1125), + [anon_sym_function] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(1429), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1129), + [anon_sym_AMP_AMP] = ACTIONS(1429), + [anon_sym_PIPE_PIPE] = ACTIONS(1429), + [anon_sym_GT_GT] = ACTIONS(1427), + [anon_sym_GT_GT_GT] = ACTIONS(1429), + [anon_sym_LT_LT] = ACTIONS(1429), + [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_CARET] = ACTIONS(1429), + [anon_sym_PIPE] = ACTIONS(1427), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_PERCENT] = ACTIONS(1429), + [anon_sym_STAR_STAR] = ACTIONS(1429), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(1429), + [anon_sym_EQ_EQ] = ACTIONS(1427), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1429), + [anon_sym_BANG_EQ] = ACTIONS(1427), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1429), + [anon_sym_GT_EQ] = ACTIONS(1429), + [anon_sym_QMARK_QMARK] = ACTIONS(1429), + [anon_sym_instanceof] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(1117), + [anon_sym_void] = ACTIONS(1135), + [anon_sym_delete] = ACTIONS(1135), + [anon_sym_PLUS_PLUS] = ACTIONS(1137), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1143), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1109), + [anon_sym_readonly] = ACTIONS(1109), + [anon_sym_get] = ACTIONS(1109), + [anon_sym_set] = ACTIONS(1109), + [anon_sym_declare] = ACTIONS(1109), + [anon_sym_public] = ACTIONS(1109), + [anon_sym_private] = ACTIONS(1109), + [anon_sym_protected] = ACTIONS(1109), + [anon_sym_override] = ACTIONS(1109), + [anon_sym_module] = ACTIONS(1109), + [anon_sym_any] = ACTIONS(1109), + [anon_sym_number] = ACTIONS(1109), + [anon_sym_boolean] = ACTIONS(1109), + [anon_sym_string] = ACTIONS(1109), + [anon_sym_symbol] = ACTIONS(1109), + [anon_sym_object] = ACTIONS(1109), + [anon_sym_satisfies] = ACTIONS(1427), + [anon_sym_implements] = ACTIONS(1427), + [sym__ternary_qmark] = ACTIONS(1429), [sym_html_comment] = ACTIONS(5), }, [178] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1375), [sym_expression] = STATE(2281), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_STAR] = ACTIONS(1474), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_as] = ACTIONS(1434), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_RBRACE] = ACTIONS(1436), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1152), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_in] = ACTIONS(1434), - [anon_sym_COLON] = ACTIONS(1436), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1434), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_QMARK_DOT] = ACTIONS(1436), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_AMP_AMP] = ACTIONS(1436), - [anon_sym_PIPE_PIPE] = ACTIONS(1436), - [anon_sym_GT_GT] = ACTIONS(1434), - [anon_sym_GT_GT_GT] = ACTIONS(1436), - [anon_sym_LT_LT] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_PIPE] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_STAR_STAR] = ACTIONS(1436), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(1436), - [anon_sym_EQ_EQ] = ACTIONS(1434), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1436), - [anon_sym_BANG_EQ] = ACTIONS(1434), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1436), - [anon_sym_GT_EQ] = ACTIONS(1436), - [anon_sym_QMARK_QMARK] = ACTIONS(1436), - [anon_sym_instanceof] = ACTIONS(1434), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), - [anon_sym_satisfies] = ACTIONS(1434), - [sym__ternary_qmark] = ACTIONS(1436), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5782), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5782), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5907), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1375), + [sym_subscript_expression] = STATE(1375), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5782), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1375), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_STAR] = ACTIONS(1469), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_as] = ACTIONS(1427), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(1429), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_in] = ACTIONS(1427), + [anon_sym_COLON] = ACTIONS(1429), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_GT] = ACTIONS(1427), + [anon_sym_DOT] = ACTIONS(1427), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(1429), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_AMP_AMP] = ACTIONS(1429), + [anon_sym_PIPE_PIPE] = ACTIONS(1429), + [anon_sym_GT_GT] = ACTIONS(1427), + [anon_sym_GT_GT_GT] = ACTIONS(1429), + [anon_sym_LT_LT] = ACTIONS(1429), + [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_CARET] = ACTIONS(1429), + [anon_sym_PIPE] = ACTIONS(1427), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PERCENT] = ACTIONS(1429), + [anon_sym_STAR_STAR] = ACTIONS(1429), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(1429), + [anon_sym_EQ_EQ] = ACTIONS(1427), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1429), + [anon_sym_BANG_EQ] = ACTIONS(1427), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1429), + [anon_sym_GT_EQ] = ACTIONS(1429), + [anon_sym_QMARK_QMARK] = ACTIONS(1429), + [anon_sym_instanceof] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1061), + [anon_sym_satisfies] = ACTIONS(1427), + [sym__ternary_qmark] = ACTIONS(1429), [sym_html_comment] = ACTIONS(5), }, [179] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2467), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_as] = ACTIONS(1434), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_in] = ACTIONS(1434), - [anon_sym_of] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1434), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_QMARK_DOT] = ACTIONS(1436), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_AMP_AMP] = ACTIONS(1436), - [anon_sym_PIPE_PIPE] = ACTIONS(1436), - [anon_sym_GT_GT] = ACTIONS(1434), - [anon_sym_GT_GT_GT] = ACTIONS(1436), - [anon_sym_LT_LT] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_PIPE] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_STAR_STAR] = ACTIONS(1436), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(1436), - [anon_sym_EQ_EQ] = ACTIONS(1434), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1436), - [anon_sym_BANG_EQ] = ACTIONS(1434), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1436), - [anon_sym_GT_EQ] = ACTIONS(1436), - [anon_sym_QMARK_QMARK] = ACTIONS(1436), - [anon_sym_instanceof] = ACTIONS(1434), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), - [anon_sym_satisfies] = ACTIONS(1434), - [sym__ternary_qmark] = ACTIONS(1436), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1406), + [sym_expression] = STATE(2441), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5918), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5918), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5764), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1406), + [sym_subscript_expression] = STATE(1406), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2954), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5918), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1406), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1223), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_type] = ACTIONS(1223), + [anon_sym_as] = ACTIONS(1427), + [anon_sym_namespace] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1245), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1223), + [anon_sym_BANG] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1231), + [anon_sym_in] = ACTIONS(1427), + [anon_sym_yield] = ACTIONS(1233), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_RBRACK] = ACTIONS(1429), + [anon_sym_GT] = ACTIONS(1427), + [anon_sym_DOT] = ACTIONS(1427), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1235), + [anon_sym_function] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(1429), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1239), + [anon_sym_AMP_AMP] = ACTIONS(1429), + [anon_sym_PIPE_PIPE] = ACTIONS(1429), + [anon_sym_GT_GT] = ACTIONS(1427), + [anon_sym_GT_GT_GT] = ACTIONS(1429), + [anon_sym_LT_LT] = ACTIONS(1429), + [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_CARET] = ACTIONS(1429), + [anon_sym_PIPE] = ACTIONS(1427), + [anon_sym_PLUS] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PERCENT] = ACTIONS(1429), + [anon_sym_STAR_STAR] = ACTIONS(1429), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(1429), + [anon_sym_EQ_EQ] = ACTIONS(1427), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1429), + [anon_sym_BANG_EQ] = ACTIONS(1427), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1429), + [anon_sym_GT_EQ] = ACTIONS(1429), + [anon_sym_QMARK_QMARK] = ACTIONS(1429), + [anon_sym_instanceof] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_void] = ACTIONS(1245), + [anon_sym_delete] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1247), + [anon_sym_DASH_DASH] = ACTIONS(1247), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1249), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1223), + [anon_sym_readonly] = ACTIONS(1223), + [anon_sym_get] = ACTIONS(1223), + [anon_sym_set] = ACTIONS(1223), + [anon_sym_declare] = ACTIONS(1223), + [anon_sym_public] = ACTIONS(1223), + [anon_sym_private] = ACTIONS(1223), + [anon_sym_protected] = ACTIONS(1223), + [anon_sym_override] = ACTIONS(1223), + [anon_sym_module] = ACTIONS(1223), + [anon_sym_any] = ACTIONS(1223), + [anon_sym_number] = ACTIONS(1223), + [anon_sym_boolean] = ACTIONS(1223), + [anon_sym_string] = ACTIONS(1223), + [anon_sym_symbol] = ACTIONS(1223), + [anon_sym_object] = ACTIONS(1223), + [anon_sym_satisfies] = ACTIONS(1427), + [sym__ternary_qmark] = ACTIONS(1429), [sym_html_comment] = ACTIONS(5), }, [180] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2383), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_STAR] = ACTIONS(1490), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_as] = ACTIONS(1434), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1196), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_in] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(1436), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1434), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_QMARK_DOT] = ACTIONS(1436), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_AMP_AMP] = ACTIONS(1436), - [anon_sym_PIPE_PIPE] = ACTIONS(1436), - [anon_sym_GT_GT] = ACTIONS(1434), - [anon_sym_GT_GT_GT] = ACTIONS(1436), - [anon_sym_LT_LT] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_PIPE] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_STAR_STAR] = ACTIONS(1436), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(1436), - [anon_sym_EQ_EQ] = ACTIONS(1434), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1436), - [anon_sym_BANG_EQ] = ACTIONS(1434), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1436), - [anon_sym_GT_EQ] = ACTIONS(1436), - [anon_sym_QMARK_QMARK] = ACTIONS(1436), - [anon_sym_instanceof] = ACTIONS(1434), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), - [anon_sym_satisfies] = ACTIONS(1434), - [sym__ternary_qmark] = ACTIONS(1436), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1382), + [sym_expression] = STATE(2473), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5929), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5929), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5928), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1382), + [sym_subscript_expression] = STATE(1382), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2964), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5929), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1382), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_STAR] = ACTIONS(1485), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_as] = ACTIONS(1427), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_in] = ACTIONS(1427), + [anon_sym_of] = ACTIONS(1427), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_GT] = ACTIONS(1427), + [anon_sym_DOT] = ACTIONS(1427), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(1429), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_AMP_AMP] = ACTIONS(1429), + [anon_sym_PIPE_PIPE] = ACTIONS(1429), + [anon_sym_GT_GT] = ACTIONS(1427), + [anon_sym_GT_GT_GT] = ACTIONS(1429), + [anon_sym_LT_LT] = ACTIONS(1429), + [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_CARET] = ACTIONS(1429), + [anon_sym_PIPE] = ACTIONS(1427), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_PERCENT] = ACTIONS(1429), + [anon_sym_STAR_STAR] = ACTIONS(1429), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(1429), + [anon_sym_EQ_EQ] = ACTIONS(1427), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1429), + [anon_sym_BANG_EQ] = ACTIONS(1427), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1429), + [anon_sym_GT_EQ] = ACTIONS(1429), + [anon_sym_QMARK_QMARK] = ACTIONS(1429), + [anon_sym_instanceof] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [anon_sym_satisfies] = ACTIONS(1427), + [sym__ternary_qmark] = ACTIONS(1429), [sym_html_comment] = ACTIONS(5), }, [181] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2547), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(1496), - [anon_sym_type] = ACTIONS(819), - [anon_sym_as] = ACTIONS(1434), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(186), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1434), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_QMARK_DOT] = ACTIONS(1436), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_AMP_AMP] = ACTIONS(1436), - [anon_sym_PIPE_PIPE] = ACTIONS(1436), - [anon_sym_GT_GT] = ACTIONS(1434), - [anon_sym_GT_GT_GT] = ACTIONS(1436), - [anon_sym_LT_LT] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_PIPE] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_STAR_STAR] = ACTIONS(1436), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(1436), - [anon_sym_EQ_EQ] = ACTIONS(1434), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1436), - [anon_sym_BANG_EQ] = ACTIONS(1434), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1436), - [anon_sym_GT_EQ] = ACTIONS(1436), - [anon_sym_QMARK_QMARK] = ACTIONS(1436), - [anon_sym_instanceof] = ACTIONS(1434), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), - [anon_sym_satisfies] = ACTIONS(1434), - [sym__ternary_qmark] = ACTIONS(1436), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2550), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_type] = ACTIONS(812), + [anon_sym_as] = ACTIONS(1427), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(1427), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_GT] = ACTIONS(1427), + [anon_sym_DOT] = ACTIONS(1427), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(1429), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(1429), + [anon_sym_PIPE_PIPE] = ACTIONS(1429), + [anon_sym_GT_GT] = ACTIONS(1427), + [anon_sym_GT_GT_GT] = ACTIONS(1429), + [anon_sym_LT_LT] = ACTIONS(1429), + [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_CARET] = ACTIONS(1429), + [anon_sym_PIPE] = ACTIONS(1427), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PERCENT] = ACTIONS(1429), + [anon_sym_STAR_STAR] = ACTIONS(1429), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT_EQ] = ACTIONS(1429), + [anon_sym_EQ_EQ] = ACTIONS(1427), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1429), + [anon_sym_BANG_EQ] = ACTIONS(1427), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1429), + [anon_sym_GT_EQ] = ACTIONS(1429), + [anon_sym_QMARK_QMARK] = ACTIONS(1429), + [anon_sym_instanceof] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), + [anon_sym_satisfies] = ACTIONS(1427), + [sym__ternary_qmark] = ACTIONS(1429), [sym_html_comment] = ACTIONS(5), }, [182] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3053), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(859), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_RBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1518), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(219), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(207), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3058), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(842), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(158), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_RPAREN] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_EQ_GT] = ACTIONS(156), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(168), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(204), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [183] = { - [sym_declaration] = STATE(795), - [sym_import] = STATE(3760), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2387), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4217), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1530), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(1532), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1534), - [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1536), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1538), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1540), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3058), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(864), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_EQ_GT] = ACTIONS(870), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(168), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(204), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [184] = { - [sym_declaration] = STATE(832), - [sym_import] = STATE(3760), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2416), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4217), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1530), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(1532), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1534), - [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1536), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1538), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1540), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3058), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(158), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(168), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(204), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [185] = { - [sym_declaration] = STATE(795), - [sym_import] = STATE(3760), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2387), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4217), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1530), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(1532), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1534), - [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1536), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1542), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1544), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3058), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(220), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_RPAREN] = ACTIONS(223), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(223), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(168), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(204), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [186] = { - [sym_declaration] = STATE(832), - [sym_import] = STATE(3760), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2416), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(2377), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4217), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1530), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(1532), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1534), - [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1536), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1542), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1544), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3058), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(842), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(883), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(834), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(883), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_EQ_GT] = ACTIONS(156), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(168), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(204), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [187] = { - [sym_declaration] = STATE(832), - [sym_import] = STATE(3760), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2416), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4078), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1530), - [anon_sym_namespace] = ACTIONS(1546), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(1532), + [sym_declaration] = STATE(859), + [sym_import] = STATE(3555), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(2477), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5596), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5596), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5594), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5596), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1374), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(2410), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4193), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1525), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_import] = ACTIONS(1527), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1534), + [anon_sym_let] = ACTIONS(1529), [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(1548), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1538), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1540), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(559), + [anon_sym_async] = ACTIONS(1531), + [anon_sym_function] = ACTIONS(563), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_void] = ACTIONS(1297), + [anon_sym_delete] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1299), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1305), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1533), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1535), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [188] = { - [sym_declaration] = STATE(4060), - [sym_import] = STATE(3760), - [sym_variable_declaration] = STATE(4422), - [sym_lexical_declaration] = STATE(4422), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2379), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(4422), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(4422), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(4422), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_function_signature] = STATE(4422), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(4422), - [sym_abstract_class_declaration] = STATE(4422), - [sym_module] = STATE(4422), - [sym_internal_module] = STATE(2411), - [sym_import_alias] = STATE(4422), - [sym_interface_declaration] = STATE(4422), - [sym_enum_declaration] = STATE(4422), - [sym_type_alias_declaration] = STATE(4422), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4311), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1550), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(1552), - [anon_sym_var] = ACTIONS(1554), - [anon_sym_let] = ACTIONS(1556), - [anon_sym_const] = ACTIONS(1558), - [anon_sym_BANG] = ACTIONS(1378), + [sym_declaration] = STATE(4028), + [sym_import] = STATE(3555), + [sym_variable_declaration] = STATE(4393), + [sym_lexical_declaration] = STATE(4393), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(2393), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5596), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5596), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(4393), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(4393), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(4393), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5594), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5596), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1374), + [sym_function_signature] = STATE(4393), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(4393), + [sym_abstract_class_declaration] = STATE(4393), + [sym_module] = STATE(4393), + [sym_internal_module] = STATE(2413), + [sym_import_alias] = STATE(4393), + [sym_interface_declaration] = STATE(4393), + [sym_enum_declaration] = STATE(4393), + [sym_type_alias_declaration] = STATE(4393), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4287), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1537), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_import] = ACTIONS(1539), + [anon_sym_var] = ACTIONS(1541), + [anon_sym_let] = ACTIONS(1543), + [anon_sym_const] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(1560), - [anon_sym_async] = ACTIONS(1562), - [anon_sym_function] = ACTIONS(1564), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1566), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1568), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), - [anon_sym_abstract] = ACTIONS(1570), - [anon_sym_interface] = ACTIONS(1572), - [anon_sym_enum] = ACTIONS(1574), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1547), + [anon_sym_async] = ACTIONS(1549), + [anon_sym_function] = ACTIONS(1551), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_void] = ACTIONS(1297), + [anon_sym_delete] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1299), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1305), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1553), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1555), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [anon_sym_abstract] = ACTIONS(1557), + [anon_sym_interface] = ACTIONS(1559), + [anon_sym_enum] = ACTIONS(1561), [sym_html_comment] = ACTIONS(5), }, [189] = { - [sym_declaration] = STATE(4456), - [sym_import] = STATE(3760), - [sym_variable_declaration] = STATE(4422), - [sym_lexical_declaration] = STATE(4422), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2463), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(4422), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(4422), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(4422), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_function_signature] = STATE(4422), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(4422), - [sym_abstract_class_declaration] = STATE(4422), - [sym_module] = STATE(4422), - [sym_internal_module] = STATE(2411), - [sym_import_alias] = STATE(4422), - [sym_interface_declaration] = STATE(4422), - [sym_enum_declaration] = STATE(4422), - [sym_type_alias_declaration] = STATE(4422), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4311), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1550), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(1552), - [anon_sym_var] = ACTIONS(1554), - [anon_sym_let] = ACTIONS(1556), - [anon_sym_const] = ACTIONS(1558), - [anon_sym_BANG] = ACTIONS(1378), + [sym_declaration] = STATE(4431), + [sym_import] = STATE(3555), + [sym_variable_declaration] = STATE(4393), + [sym_lexical_declaration] = STATE(4393), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(2386), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5596), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5596), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(4393), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(4393), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(4393), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5594), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5596), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1374), + [sym_function_signature] = STATE(4393), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(4393), + [sym_abstract_class_declaration] = STATE(4393), + [sym_module] = STATE(4393), + [sym_internal_module] = STATE(2413), + [sym_import_alias] = STATE(4393), + [sym_interface_declaration] = STATE(4393), + [sym_enum_declaration] = STATE(4393), + [sym_type_alias_declaration] = STATE(4393), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4287), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1537), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_import] = ACTIONS(1539), + [anon_sym_var] = ACTIONS(1541), + [anon_sym_let] = ACTIONS(1543), + [anon_sym_const] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(1560), - [anon_sym_async] = ACTIONS(1562), - [anon_sym_function] = ACTIONS(1564), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1566), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1568), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), - [anon_sym_abstract] = ACTIONS(1570), - [anon_sym_interface] = ACTIONS(1572), - [anon_sym_enum] = ACTIONS(1574), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1547), + [anon_sym_async] = ACTIONS(1549), + [anon_sym_function] = ACTIONS(1551), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_void] = ACTIONS(1297), + [anon_sym_delete] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1299), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1305), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1553), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1555), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [anon_sym_abstract] = ACTIONS(1557), + [anon_sym_interface] = ACTIONS(1559), + [anon_sym_enum] = ACTIONS(1561), [sym_html_comment] = ACTIONS(5), }, [190] = { - [sym_declaration] = STATE(795), - [sym_import] = STATE(3760), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2387), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_class_declaration] = STATE(789), - [sym_function_expression] = STATE(2080), - [sym_function_declaration] = STATE(789), - [sym_generator_function] = STATE(2080), - [sym_generator_function_declaration] = STATE(789), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_function_signature] = STATE(789), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(257), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4078), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1530), - [anon_sym_namespace] = ACTIONS(1546), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(1532), + [sym_declaration] = STATE(806), + [sym_import] = STATE(3555), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(2392), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5596), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5596), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5594), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5596), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1374), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(2410), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4193), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1525), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_import] = ACTIONS(1527), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1534), + [anon_sym_let] = ACTIONS(1529), [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(1548), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1538), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1540), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(559), + [anon_sym_async] = ACTIONS(1531), + [anon_sym_function] = ACTIONS(563), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_void] = ACTIONS(1297), + [anon_sym_delete] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1299), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1305), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1533), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1535), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [191] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3053), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(877), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1518), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(219), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(207), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_declaration] = STATE(806), + [sym_import] = STATE(3555), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(2392), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5596), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5596), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5594), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5596), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1374), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(2410), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4193), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1525), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_import] = ACTIONS(1527), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(1529), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(559), + [anon_sym_async] = ACTIONS(1531), + [anon_sym_function] = ACTIONS(563), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_void] = ACTIONS(1297), + [anon_sym_delete] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1299), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1305), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1563), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1565), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [192] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3053), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(865), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_EQ_GT] = ACTIONS(871), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1518), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(219), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(207), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_declaration] = STATE(806), + [sym_import] = STATE(3555), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(2392), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5596), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5596), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5594), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5596), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1374), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(253), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4333), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1525), + [anon_sym_namespace] = ACTIONS(1567), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_import] = ACTIONS(1527), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(1529), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(1569), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_void] = ACTIONS(1297), + [anon_sym_delete] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1299), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1305), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1563), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1565), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [193] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3053), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1518), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(219), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(207), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), - [sym__ternary_qmark] = ACTIONS(161), + [sym_declaration] = STATE(859), + [sym_import] = STATE(3555), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(2477), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5596), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5596), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5594), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5596), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1374), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(253), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4333), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1525), + [anon_sym_namespace] = ACTIONS(1567), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_import] = ACTIONS(1527), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(1529), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(1569), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_void] = ACTIONS(1297), + [anon_sym_delete] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1299), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1305), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1563), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1565), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [194] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3053), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(859), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_COMMA] = ACTIONS(885), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(855), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_RBRACK] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1518), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(219), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(207), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), - [sym__ternary_qmark] = ACTIONS(161), + [sym_declaration] = STATE(859), + [sym_import] = STATE(3555), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(2477), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5596), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5596), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_class_declaration] = STATE(852), + [sym_function_expression] = STATE(2272), + [sym_function_declaration] = STATE(852), + [sym_generator_function] = STATE(2272), + [sym_generator_function_declaration] = STATE(852), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5594), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5596), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1374), + [sym_function_signature] = STATE(852), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(2410), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4193), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1525), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_import] = ACTIONS(1527), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(1529), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(559), + [anon_sym_async] = ACTIONS(1531), + [anon_sym_function] = ACTIONS(563), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_void] = ACTIONS(1297), + [anon_sym_delete] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1299), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1305), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1563), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1565), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [195] = { - [sym_import] = STATE(5169), - [sym_nested_identifier] = STATE(5618), - [sym_string] = STATE(3256), - [sym_formal_parameters] = STATE(5839), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(3044), - [sym__type_query_call_expression_in_type_annotation] = STATE(3176), - [sym_type] = STATE(3206), - [sym_constructor_type] = STATE(3261), - [sym_primary_type] = STATE(3262), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(3261), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3255), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5399), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(3261), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(3261), - [sym_identifier] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(1578), - [anon_sym_EQ] = ACTIONS(223), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_COMMA] = ACTIONS(226), - [anon_sym_RBRACE] = ACTIONS(226), - [anon_sym_typeof] = ACTIONS(1582), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(996), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1592), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(1594), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_PLUS] = ACTIONS(1598), - [anon_sym_DASH] = ACTIONS(1598), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1518), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(1036), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1602), - [sym_this] = ACTIONS(1604), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), - [sym_null] = ACTIONS(1606), - [sym_undefined] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1610), - [anon_sym_any] = ACTIONS(1036), - [anon_sym_number] = ACTIONS(1036), - [anon_sym_boolean] = ACTIONS(1036), - [anon_sym_string] = ACTIONS(1036), - [anon_sym_symbol] = ACTIONS(1036), - [anon_sym_object] = ACTIONS(1036), - [anon_sym_abstract] = ACTIONS(1028), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(1030), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(1038), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3058), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(939), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_EQ_GT] = ACTIONS(945), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(168), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(204), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_implements] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [196] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3053), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(948), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_EQ_GT] = ACTIONS(954), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1518), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(219), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(207), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(5153), + [sym_nested_identifier] = STATE(5834), + [sym_string] = STATE(3213), + [sym_formal_parameters] = STATE(5829), + [sym_nested_type_identifier] = STATE(3070), + [sym__type_query_member_expression_in_type_annotation] = STATE(3029), + [sym__type_query_call_expression_in_type_annotation] = STATE(3159), + [sym_type] = STATE(3246), + [sym_constructor_type] = STATE(3218), + [sym_primary_type] = STATE(3257), + [sym_template_literal_type] = STATE(3211), + [sym_infer_type] = STATE(3218), + [sym_conditional_type] = STATE(3211), + [sym_generic_type] = STATE(3211), + [sym_type_query] = STATE(3211), + [sym_index_type_query] = STATE(3211), + [sym_lookup_type] = STATE(3211), + [sym_literal_type] = STATE(3211), + [sym__number] = STATE(3219), + [sym_existential_type] = STATE(3211), + [sym_flow_maybe_type] = STATE(3211), + [sym_parenthesized_type] = STATE(3211), + [sym_predefined_type] = STATE(3211), + [sym_object_type] = STATE(3211), + [sym_type_parameters] = STATE(5268), + [sym_array_type] = STATE(3211), + [sym_tuple_type] = STATE(3211), + [sym_readonly_type] = STATE(3218), + [sym_union_type] = STATE(3211), + [sym_intersection_type] = STATE(3211), + [sym_function_type] = STATE(3218), + [sym_identifier] = ACTIONS(1571), + [anon_sym_STAR] = ACTIONS(1573), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_RBRACE] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(991), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_EQ_GT] = ACTIONS(156), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1587), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(1591), + [anon_sym_PLUS] = ACTIONS(1593), + [anon_sym_DASH] = ACTIONS(1593), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(1031), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1595), + [sym_number] = ACTIONS(1597), + [sym_this] = ACTIONS(1599), + [sym_true] = ACTIONS(1601), + [sym_false] = ACTIONS(1601), + [sym_null] = ACTIONS(1601), + [sym_undefined] = ACTIONS(1601), + [anon_sym_readonly] = ACTIONS(1603), + [anon_sym_QMARK] = ACTIONS(1605), + [anon_sym_any] = ACTIONS(1031), + [anon_sym_number] = ACTIONS(1031), + [anon_sym_boolean] = ACTIONS(1031), + [anon_sym_string] = ACTIONS(1031), + [anon_sym_symbol] = ACTIONS(1031), + [anon_sym_object] = ACTIONS(1031), + [anon_sym_abstract] = ACTIONS(1023), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(1025), + [anon_sym_keyof] = ACTIONS(1027), + [anon_sym_unique] = ACTIONS(1029), + [anon_sym_unknown] = ACTIONS(1031), + [anon_sym_never] = ACTIONS(1031), + [anon_sym_LBRACE_PIPE] = ACTIONS(1033), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [197] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3667), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(223), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_COMMA] = ACTIONS(226), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_RBRACK] = ACTIONS(226), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(1614), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(1616), - [anon_sym_PLUS] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1518), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(219), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(1620), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3058), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(909), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_EQ_GT] = ACTIONS(915), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(168), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(204), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [198] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3053), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(916), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_EQ_GT] = ACTIONS(922), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1518), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(219), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(207), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_implements] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3058), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(925), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_RBRACE] = ACTIONS(158), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_EQ_GT] = ACTIONS(931), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(168), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(204), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [199] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3053), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(936), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_EQ_GT] = ACTIONS(910), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1518), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(219), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(207), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(4786), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5658), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3263), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3766), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5559), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(126), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_EQ_GT] = ACTIONS(156), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(1611), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1615), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [200] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3053), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(855), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1518), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(219), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(207), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3058), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(814), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(834), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(168), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(204), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [201] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3053), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(928), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_RBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_EQ_GT] = ACTIONS(901), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1518), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(219), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(207), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3058), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(903), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_EQ_GT] = ACTIONS(899), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(168), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(204), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [202] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3053), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(962), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_EQ_GT] = ACTIONS(968), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1518), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(219), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(207), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3058), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(955), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_EQ_GT] = ACTIONS(961), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(168), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(204), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [203] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3053), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1518), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(219), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(207), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3058), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(814), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(168), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(170), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(204), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [204] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1759), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3740), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3740), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym__formal_parameter] = STATE(4652), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1261), - [sym_subscript_expression] = STATE(1261), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3740), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5607), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4314), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1261), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_accessibility_modifier] = STATE(294), - [sym_override_modifier] = STATE(306), - [sym_required_parameter] = STATE(4652), - [sym_optional_parameter] = STATE(4652), - [sym__parameter_name] = STATE(3554), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(266), - [sym_identifier] = ACTIONS(1622), - [anon_sym_export] = ACTIONS(610), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(610), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(767), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1624), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(1626), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1628), - [anon_sym_AT] = ACTIONS(789), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(1630), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(795), - [anon_sym_private] = ACTIONS(795), - [anon_sym_protected] = ACTIONS(795), - [anon_sym_override] = ACTIONS(797), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(610), - [anon_sym_number] = ACTIONS(610), - [anon_sym_boolean] = ACTIONS(610), - [anon_sym_string] = ACTIONS(610), - [anon_sym_symbol] = ACTIONS(610), - [anon_sym_object] = ACTIONS(610), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(1806), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3596), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3596), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym__formal_parameter] = STATE(4861), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1268), + [sym_subscript_expression] = STATE(1268), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3596), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_sequence_expression] = STATE(5728), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_pattern] = STATE(4261), + [sym_rest_pattern] = STATE(3626), + [sym_non_null_expression] = STATE(1268), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_accessibility_modifier] = STATE(300), + [sym_override_modifier] = STATE(314), + [sym_required_parameter] = STATE(4861), + [sym_optional_parameter] = STATE(4861), + [sym__parameter_name] = STATE(3523), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(284), + [sym_identifier] = ACTIONS(1617), + [anon_sym_export] = ACTIONS(603), + [anon_sym_type] = ACTIONS(603), + [anon_sym_namespace] = ACTIONS(607), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(603), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_RPAREN] = ACTIONS(758), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1619), + [anon_sym_using] = ACTIONS(629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(1621), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1623), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(603), + [anon_sym_readonly] = ACTIONS(1625), + [anon_sym_get] = ACTIONS(603), + [anon_sym_set] = ACTIONS(603), + [anon_sym_declare] = ACTIONS(603), + [anon_sym_public] = ACTIONS(784), + [anon_sym_private] = ACTIONS(784), + [anon_sym_protected] = ACTIONS(784), + [anon_sym_override] = ACTIONS(786), + [anon_sym_module] = ACTIONS(603), + [anon_sym_any] = ACTIONS(603), + [anon_sym_number] = ACTIONS(603), + [anon_sym_boolean] = ACTIONS(603), + [anon_sym_string] = ACTIONS(603), + [anon_sym_symbol] = ACTIONS(603), + [anon_sym_object] = ACTIONS(603), [sym_html_comment] = ACTIONS(5), }, [205] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1820), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3740), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3740), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym__formal_parameter] = STATE(4652), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1261), - [sym_subscript_expression] = STATE(1261), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3740), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5747), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4314), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1261), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_accessibility_modifier] = STATE(294), - [sym_override_modifier] = STATE(306), - [sym_required_parameter] = STATE(4652), - [sym_optional_parameter] = STATE(4652), - [sym__parameter_name] = STATE(3554), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(266), - [sym_identifier] = ACTIONS(1622), - [anon_sym_export] = ACTIONS(610), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(610), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(767), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1624), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(1626), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1628), - [anon_sym_AT] = ACTIONS(789), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(1630), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(795), - [anon_sym_private] = ACTIONS(795), - [anon_sym_protected] = ACTIONS(795), - [anon_sym_override] = ACTIONS(797), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(610), - [anon_sym_number] = ACTIONS(610), - [anon_sym_boolean] = ACTIONS(610), - [anon_sym_string] = ACTIONS(610), - [anon_sym_symbol] = ACTIONS(610), - [anon_sym_object] = ACTIONS(610), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(1793), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3596), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3596), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym__formal_parameter] = STATE(4861), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1268), + [sym_subscript_expression] = STATE(1268), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3596), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_sequence_expression] = STATE(5974), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_pattern] = STATE(4261), + [sym_rest_pattern] = STATE(3626), + [sym_non_null_expression] = STATE(1268), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_accessibility_modifier] = STATE(300), + [sym_override_modifier] = STATE(314), + [sym_required_parameter] = STATE(4861), + [sym_optional_parameter] = STATE(4861), + [sym__parameter_name] = STATE(3523), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(284), + [sym_identifier] = ACTIONS(1617), + [anon_sym_export] = ACTIONS(603), + [anon_sym_type] = ACTIONS(603), + [anon_sym_namespace] = ACTIONS(607), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(603), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_RPAREN] = ACTIONS(758), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1619), + [anon_sym_using] = ACTIONS(629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(1621), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1623), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(603), + [anon_sym_readonly] = ACTIONS(1625), + [anon_sym_get] = ACTIONS(603), + [anon_sym_set] = ACTIONS(603), + [anon_sym_declare] = ACTIONS(603), + [anon_sym_public] = ACTIONS(784), + [anon_sym_private] = ACTIONS(784), + [anon_sym_protected] = ACTIONS(784), + [anon_sym_override] = ACTIONS(786), + [anon_sym_module] = ACTIONS(603), + [anon_sym_any] = ACTIONS(603), + [anon_sym_number] = ACTIONS(603), + [anon_sym_boolean] = ACTIONS(603), + [anon_sym_string] = ACTIONS(603), + [anon_sym_symbol] = ACTIONS(603), + [anon_sym_object] = ACTIONS(603), [sym_html_comment] = ACTIONS(5), }, [206] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym__formal_parameter] = STATE(5550), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4314), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_accessibility_modifier] = STATE(294), - [sym_override_modifier] = STATE(306), - [sym_required_parameter] = STATE(5550), - [sym_optional_parameter] = STATE(5550), - [sym__parameter_name] = STATE(3554), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(266), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(1632), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1634), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(741), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(1636), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(789), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(813), - [anon_sym_private] = ACTIONS(813), - [anon_sym_protected] = ACTIONS(813), - [anon_sym_override] = ACTIONS(815), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3631), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3631), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym__formal_parameter] = STATE(5508), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1265), + [sym_subscript_expression] = STATE(1265), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3631), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_pattern] = STATE(4261), + [sym_rest_pattern] = STATE(3626), + [sym_non_null_expression] = STATE(1265), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_accessibility_modifier] = STATE(300), + [sym_override_modifier] = STATE(314), + [sym_required_parameter] = STATE(5508), + [sym_optional_parameter] = STATE(5508), + [sym__parameter_name] = STATE(3523), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(284), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(728), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_RPAREN] = ACTIONS(1627), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(736), + [anon_sym_using] = ACTIONS(162), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(1631), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1633), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_override] = ACTIONS(808), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, [207] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym__formal_parameter] = STATE(4652), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4314), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_accessibility_modifier] = STATE(294), - [sym_override_modifier] = STATE(306), - [sym_required_parameter] = STATE(4652), - [sym_optional_parameter] = STATE(4652), - [sym__parameter_name] = STATE(3554), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(266), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(767), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1634), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(741), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(1636), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(789), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(813), - [anon_sym_private] = ACTIONS(813), - [anon_sym_protected] = ACTIONS(813), - [anon_sym_override] = ACTIONS(815), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3631), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3631), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym__formal_parameter] = STATE(5508), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1265), + [sym_subscript_expression] = STATE(1265), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3631), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_pattern] = STATE(4261), + [sym_rest_pattern] = STATE(3626), + [sym_non_null_expression] = STATE(1265), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_accessibility_modifier] = STATE(300), + [sym_override_modifier] = STATE(314), + [sym_required_parameter] = STATE(5508), + [sym_optional_parameter] = STATE(5508), + [sym__parameter_name] = STATE(3523), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(284), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(728), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_RPAREN] = ACTIONS(1635), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(736), + [anon_sym_using] = ACTIONS(162), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(1631), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1633), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_override] = ACTIONS(808), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, [208] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym__formal_parameter] = STATE(5119), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4314), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_accessibility_modifier] = STATE(294), - [sym_override_modifier] = STATE(306), - [sym_required_parameter] = STATE(5119), - [sym_optional_parameter] = STATE(5119), - [sym__parameter_name] = STATE(3554), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(266), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(1640), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1634), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(741), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(1636), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(789), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(813), - [anon_sym_private] = ACTIONS(813), - [anon_sym_protected] = ACTIONS(813), - [anon_sym_override] = ACTIONS(815), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3631), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3631), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym__formal_parameter] = STATE(5109), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1265), + [sym_subscript_expression] = STATE(1265), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3631), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_pattern] = STATE(4261), + [sym_rest_pattern] = STATE(3626), + [sym_non_null_expression] = STATE(1265), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_accessibility_modifier] = STATE(300), + [sym_override_modifier] = STATE(314), + [sym_required_parameter] = STATE(5109), + [sym_optional_parameter] = STATE(5109), + [sym__parameter_name] = STATE(3523), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(284), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(728), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_RPAREN] = ACTIONS(1637), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(736), + [anon_sym_using] = ACTIONS(162), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(1631), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1633), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_override] = ACTIONS(808), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, [209] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym__formal_parameter] = STATE(5550), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4314), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_accessibility_modifier] = STATE(294), - [sym_override_modifier] = STATE(306), - [sym_required_parameter] = STATE(5550), - [sym_optional_parameter] = STATE(5550), - [sym__parameter_name] = STATE(3554), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(266), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(1642), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1634), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(741), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(1636), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(789), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(813), - [anon_sym_private] = ACTIONS(813), - [anon_sym_protected] = ACTIONS(813), - [anon_sym_override] = ACTIONS(815), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3631), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3631), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym__formal_parameter] = STATE(5508), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1265), + [sym_subscript_expression] = STATE(1265), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3631), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_pattern] = STATE(4261), + [sym_rest_pattern] = STATE(3626), + [sym_non_null_expression] = STATE(1265), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_accessibility_modifier] = STATE(300), + [sym_override_modifier] = STATE(314), + [sym_required_parameter] = STATE(5508), + [sym_optional_parameter] = STATE(5508), + [sym__parameter_name] = STATE(3523), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(284), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(728), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_RPAREN] = ACTIONS(1639), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(736), + [anon_sym_using] = ACTIONS(162), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(1631), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1633), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_override] = ACTIONS(808), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, [210] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym__formal_parameter] = STATE(5550), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4314), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_accessibility_modifier] = STATE(294), - [sym_override_modifier] = STATE(306), - [sym_required_parameter] = STATE(5550), - [sym_optional_parameter] = STATE(5550), - [sym__parameter_name] = STATE(3554), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(266), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(1644), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1634), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(741), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(1636), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(789), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(813), - [anon_sym_private] = ACTIONS(813), - [anon_sym_protected] = ACTIONS(813), - [anon_sym_override] = ACTIONS(815), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3631), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3631), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym__formal_parameter] = STATE(5508), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1265), + [sym_subscript_expression] = STATE(1265), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3631), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_pattern] = STATE(4261), + [sym_rest_pattern] = STATE(3626), + [sym_non_null_expression] = STATE(1265), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_accessibility_modifier] = STATE(300), + [sym_override_modifier] = STATE(314), + [sym_required_parameter] = STATE(5508), + [sym_optional_parameter] = STATE(5508), + [sym__parameter_name] = STATE(3523), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(284), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(728), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_RPAREN] = ACTIONS(1641), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(736), + [anon_sym_using] = ACTIONS(162), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(1631), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1633), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_override] = ACTIONS(808), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, [211] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym__formal_parameter] = STATE(5550), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4314), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_accessibility_modifier] = STATE(294), - [sym_override_modifier] = STATE(306), - [sym_required_parameter] = STATE(5550), - [sym_optional_parameter] = STATE(5550), - [sym__parameter_name] = STATE(3554), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(266), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(1646), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1634), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(741), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(1636), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(789), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(813), - [anon_sym_private] = ACTIONS(813), - [anon_sym_protected] = ACTIONS(813), - [anon_sym_override] = ACTIONS(815), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3631), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3631), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym__formal_parameter] = STATE(4861), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1265), + [sym_subscript_expression] = STATE(1265), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3631), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_pattern] = STATE(4261), + [sym_rest_pattern] = STATE(3626), + [sym_non_null_expression] = STATE(1265), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_accessibility_modifier] = STATE(300), + [sym_override_modifier] = STATE(314), + [sym_required_parameter] = STATE(4861), + [sym_optional_parameter] = STATE(4861), + [sym__parameter_name] = STATE(3523), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(284), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(728), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_RPAREN] = ACTIONS(758), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(736), + [anon_sym_using] = ACTIONS(162), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(1631), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1633), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_override] = ACTIONS(808), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, [212] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym__formal_parameter] = STATE(5550), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4314), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_accessibility_modifier] = STATE(294), - [sym_override_modifier] = STATE(306), - [sym_required_parameter] = STATE(5550), - [sym_optional_parameter] = STATE(5550), - [sym__parameter_name] = STATE(3554), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(266), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(1648), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1634), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(741), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(1636), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(789), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(813), - [anon_sym_private] = ACTIONS(813), - [anon_sym_protected] = ACTIONS(813), - [anon_sym_override] = ACTIONS(815), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3631), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3631), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym__formal_parameter] = STATE(4889), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1265), + [sym_subscript_expression] = STATE(1265), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3631), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_pattern] = STATE(4261), + [sym_rest_pattern] = STATE(3626), + [sym_non_null_expression] = STATE(1265), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_accessibility_modifier] = STATE(300), + [sym_override_modifier] = STATE(314), + [sym_required_parameter] = STATE(4889), + [sym_optional_parameter] = STATE(4889), + [sym__parameter_name] = STATE(3523), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(284), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(728), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_RPAREN] = ACTIONS(1643), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(736), + [anon_sym_using] = ACTIONS(162), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(1631), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1633), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_override] = ACTIONS(808), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, [213] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym__formal_parameter] = STATE(4879), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4314), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_accessibility_modifier] = STATE(294), - [sym_override_modifier] = STATE(306), - [sym_required_parameter] = STATE(4879), - [sym_optional_parameter] = STATE(4879), - [sym__parameter_name] = STATE(3554), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(266), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(1650), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1634), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(741), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(1636), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(789), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(813), - [anon_sym_private] = ACTIONS(813), - [anon_sym_protected] = ACTIONS(813), - [anon_sym_override] = ACTIONS(815), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3631), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3631), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym__formal_parameter] = STATE(5508), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1265), + [sym_subscript_expression] = STATE(1265), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3631), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_pattern] = STATE(4261), + [sym_rest_pattern] = STATE(3626), + [sym_non_null_expression] = STATE(1265), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_accessibility_modifier] = STATE(300), + [sym_override_modifier] = STATE(314), + [sym_required_parameter] = STATE(5508), + [sym_optional_parameter] = STATE(5508), + [sym__parameter_name] = STATE(3523), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(284), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(728), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_RPAREN] = ACTIONS(1645), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(736), + [anon_sym_using] = ACTIONS(162), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(1631), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1633), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_override] = ACTIONS(808), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, [214] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym__formal_parameter] = STATE(5550), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4314), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_accessibility_modifier] = STATE(294), - [sym_override_modifier] = STATE(306), - [sym_required_parameter] = STATE(5550), - [sym_optional_parameter] = STATE(5550), - [sym__parameter_name] = STATE(3554), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(266), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(1652), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1634), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(741), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(1636), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(789), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(813), - [anon_sym_private] = ACTIONS(813), - [anon_sym_protected] = ACTIONS(813), - [anon_sym_override] = ACTIONS(815), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3631), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3631), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym__formal_parameter] = STATE(5508), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1265), + [sym_subscript_expression] = STATE(1265), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3631), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_pattern] = STATE(4261), + [sym_rest_pattern] = STATE(3626), + [sym_non_null_expression] = STATE(1265), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_accessibility_modifier] = STATE(300), + [sym_override_modifier] = STATE(314), + [sym_required_parameter] = STATE(5508), + [sym_optional_parameter] = STATE(5508), + [sym__parameter_name] = STATE(3523), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(284), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(728), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_RPAREN] = ACTIONS(1647), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(736), + [anon_sym_using] = ACTIONS(162), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(1631), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1633), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_override] = ACTIONS(808), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, [215] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2129), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3740), - [sym_assignment_pattern] = STATE(5171), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3740), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1261), - [sym_subscript_expression] = STATE(1261), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3740), - [sym_spread_element] = STATE(4897), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4569), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1261), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [aux_sym_array_repeat1] = STATE(4906), - [aux_sym_array_pattern_repeat1] = STATE(5199), - [sym_identifier] = ACTIONS(1622), - [anon_sym_export] = ACTIONS(610), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_COMMA] = ACTIONS(1654), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(610), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_RBRACK] = ACTIONS(1656), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1624), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1628), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(610), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(610), - [anon_sym_number] = ACTIONS(610), - [anon_sym_boolean] = ACTIONS(610), - [anon_sym_string] = ACTIONS(610), - [anon_sym_symbol] = ACTIONS(610), - [anon_sym_object] = ACTIONS(610), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2146), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3596), + [sym_assignment_pattern] = STATE(5112), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3596), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1268), + [sym_subscript_expression] = STATE(1268), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3596), + [sym_spread_element] = STATE(4912), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_pattern] = STATE(4530), + [sym_rest_pattern] = STATE(3626), + [sym_non_null_expression] = STATE(1268), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [aux_sym_array_repeat1] = STATE(4921), + [aux_sym_array_pattern_repeat1] = STATE(5134), + [sym_identifier] = ACTIONS(1617), + [anon_sym_export] = ACTIONS(603), + [anon_sym_type] = ACTIONS(603), + [anon_sym_namespace] = ACTIONS(607), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_COMMA] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(603), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_RBRACK] = ACTIONS(1651), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1619), + [anon_sym_using] = ACTIONS(629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1623), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(603), + [anon_sym_readonly] = ACTIONS(603), + [anon_sym_get] = ACTIONS(603), + [anon_sym_set] = ACTIONS(603), + [anon_sym_declare] = ACTIONS(603), + [anon_sym_public] = ACTIONS(603), + [anon_sym_private] = ACTIONS(603), + [anon_sym_protected] = ACTIONS(603), + [anon_sym_override] = ACTIONS(603), + [anon_sym_module] = ACTIONS(603), + [anon_sym_any] = ACTIONS(603), + [anon_sym_number] = ACTIONS(603), + [anon_sym_boolean] = ACTIONS(603), + [anon_sym_string] = ACTIONS(603), + [anon_sym_symbol] = ACTIONS(603), + [anon_sym_object] = ACTIONS(603), [sym_html_comment] = ACTIONS(5), }, [216] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2317), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3740), - [sym_assignment_pattern] = STATE(5171), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3740), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1261), - [sym_subscript_expression] = STATE(1261), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3740), - [sym_spread_element] = STATE(5179), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4569), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1261), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [aux_sym_array_repeat1] = STATE(5196), - [aux_sym_array_pattern_repeat1] = STATE(5199), - [sym_identifier] = ACTIONS(1622), - [anon_sym_export] = ACTIONS(610), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_COMMA] = ACTIONS(1654), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(610), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_RBRACK] = ACTIONS(1658), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1624), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1628), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(610), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(610), - [anon_sym_number] = ACTIONS(610), - [anon_sym_boolean] = ACTIONS(610), - [anon_sym_string] = ACTIONS(610), - [anon_sym_symbol] = ACTIONS(610), - [anon_sym_object] = ACTIONS(610), + [sym_statement_block] = STATE(247), + [ts_builtin_sym_end] = ACTIONS(1653), + [sym_identifier] = ACTIONS(1655), + [anon_sym_export] = ACTIONS(1655), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(1655), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(1655), + [anon_sym_LBRACE] = ACTIONS(1657), + [anon_sym_COMMA] = ACTIONS(1653), + [anon_sym_RBRACE] = ACTIONS(1653), + [anon_sym_typeof] = ACTIONS(1655), + [anon_sym_import] = ACTIONS(1655), + [anon_sym_with] = ACTIONS(1655), + [anon_sym_var] = ACTIONS(1655), + [anon_sym_let] = ACTIONS(1655), + [anon_sym_const] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_else] = ACTIONS(1655), + [anon_sym_if] = ACTIONS(1655), + [anon_sym_switch] = ACTIONS(1655), + [anon_sym_for] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1653), + [anon_sym_SEMI] = ACTIONS(1653), + [anon_sym_await] = ACTIONS(1655), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_while] = ACTIONS(1655), + [anon_sym_do] = ACTIONS(1655), + [anon_sym_try] = ACTIONS(1655), + [anon_sym_break] = ACTIONS(1655), + [anon_sym_continue] = ACTIONS(1655), + [anon_sym_debugger] = ACTIONS(1655), + [anon_sym_return] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1655), + [anon_sym_case] = ACTIONS(1655), + [anon_sym_yield] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_DQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_class] = ACTIONS(1655), + [anon_sym_async] = ACTIONS(1655), + [anon_sym_function] = ACTIONS(1655), + [anon_sym_QMARK_DOT] = ACTIONS(1653), + [anon_sym_new] = ACTIONS(1655), + [anon_sym_using] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1653), + [anon_sym_PIPE_PIPE] = ACTIONS(1653), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1653), + [anon_sym_LT_LT] = ACTIONS(1653), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1653), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1653), + [anon_sym_STAR_STAR] = ACTIONS(1653), + [anon_sym_LT] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1653), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_QMARK_QMARK] = ACTIONS(1653), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_TILDE] = ACTIONS(1653), + [anon_sym_void] = ACTIONS(1655), + [anon_sym_delete] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1653), + [sym_number] = ACTIONS(1653), + [sym_private_property_identifier] = ACTIONS(1653), + [sym_this] = ACTIONS(1655), + [sym_super] = ACTIONS(1655), + [sym_true] = ACTIONS(1655), + [sym_false] = ACTIONS(1655), + [sym_null] = ACTIONS(1655), + [sym_undefined] = ACTIONS(1655), + [anon_sym_AT] = ACTIONS(1653), + [anon_sym_static] = ACTIONS(1655), + [anon_sym_readonly] = ACTIONS(1655), + [anon_sym_get] = ACTIONS(1655), + [anon_sym_set] = ACTIONS(1655), + [anon_sym_declare] = ACTIONS(1655), + [anon_sym_public] = ACTIONS(1655), + [anon_sym_private] = ACTIONS(1655), + [anon_sym_protected] = ACTIONS(1655), + [anon_sym_override] = ACTIONS(1655), + [anon_sym_module] = ACTIONS(1655), + [anon_sym_any] = ACTIONS(1655), + [anon_sym_number] = ACTIONS(1655), + [anon_sym_boolean] = ACTIONS(1655), + [anon_sym_string] = ACTIONS(1655), + [anon_sym_symbol] = ACTIONS(1655), + [anon_sym_object] = ACTIONS(1655), + [anon_sym_abstract] = ACTIONS(1655), + [anon_sym_satisfies] = ACTIONS(1655), + [anon_sym_interface] = ACTIONS(1655), + [anon_sym_enum] = ACTIONS(1655), + [sym__automatic_semicolon] = ACTIONS(1653), + [sym__ternary_qmark] = ACTIONS(1653), [sym_html_comment] = ACTIONS(5), }, [217] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2129), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3740), - [sym_assignment_pattern] = STATE(5171), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3740), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1261), - [sym_subscript_expression] = STATE(1261), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3740), - [sym_spread_element] = STATE(4897), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4569), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1261), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [aux_sym_array_repeat1] = STATE(4906), - [aux_sym_array_pattern_repeat1] = STATE(5199), - [sym_identifier] = ACTIONS(1622), - [anon_sym_export] = ACTIONS(610), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_COMMA] = ACTIONS(1654), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(610), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_RBRACK] = ACTIONS(1660), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1624), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1628), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(610), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(610), - [anon_sym_number] = ACTIONS(610), - [anon_sym_boolean] = ACTIONS(610), - [anon_sym_string] = ACTIONS(610), - [anon_sym_symbol] = ACTIONS(610), - [anon_sym_object] = ACTIONS(610), + [ts_builtin_sym_end] = ACTIONS(1659), + [sym_identifier] = ACTIONS(1661), + [anon_sym_export] = ACTIONS(1661), + [anon_sym_STAR] = ACTIONS(1663), + [anon_sym_default] = ACTIONS(1661), + [anon_sym_type] = ACTIONS(1661), + [anon_sym_EQ] = ACTIONS(1665), + [anon_sym_as] = ACTIONS(1663), + [anon_sym_namespace] = ACTIONS(1661), + [anon_sym_LBRACE] = ACTIONS(1659), + [anon_sym_COMMA] = ACTIONS(1667), + [anon_sym_RBRACE] = ACTIONS(1659), + [anon_sym_typeof] = ACTIONS(1661), + [anon_sym_import] = ACTIONS(1661), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_var] = ACTIONS(1661), + [anon_sym_let] = ACTIONS(1661), + [anon_sym_const] = ACTIONS(1661), + [anon_sym_BANG] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1661), + [anon_sym_if] = ACTIONS(1661), + [anon_sym_switch] = ACTIONS(1661), + [anon_sym_for] = ACTIONS(1661), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_SEMI] = ACTIONS(1659), + [anon_sym_await] = ACTIONS(1661), + [anon_sym_in] = ACTIONS(1663), + [anon_sym_while] = ACTIONS(1661), + [anon_sym_do] = ACTIONS(1661), + [anon_sym_try] = ACTIONS(1661), + [anon_sym_break] = ACTIONS(1661), + [anon_sym_continue] = ACTIONS(1661), + [anon_sym_debugger] = ACTIONS(1661), + [anon_sym_return] = ACTIONS(1661), + [anon_sym_throw] = ACTIONS(1661), + [anon_sym_case] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1661), + [anon_sym_LBRACK] = ACTIONS(1659), + [anon_sym_GT] = ACTIONS(1663), + [anon_sym_DOT] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1659), + [anon_sym_class] = ACTIONS(1661), + [anon_sym_async] = ACTIONS(1661), + [anon_sym_function] = ACTIONS(1661), + [anon_sym_QMARK_DOT] = ACTIONS(1667), + [anon_sym_new] = ACTIONS(1661), + [anon_sym_using] = ACTIONS(1661), + [anon_sym_AMP_AMP] = ACTIONS(1667), + [anon_sym_PIPE_PIPE] = ACTIONS(1667), + [anon_sym_GT_GT] = ACTIONS(1663), + [anon_sym_GT_GT_GT] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1667), + [anon_sym_AMP] = ACTIONS(1663), + [anon_sym_CARET] = ACTIONS(1667), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1661), + [anon_sym_SLASH] = ACTIONS(1661), + [anon_sym_PERCENT] = ACTIONS(1667), + [anon_sym_STAR_STAR] = ACTIONS(1667), + [anon_sym_LT] = ACTIONS(1661), + [anon_sym_LT_EQ] = ACTIONS(1667), + [anon_sym_EQ_EQ] = ACTIONS(1663), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1667), + [anon_sym_BANG_EQ] = ACTIONS(1663), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1667), + [anon_sym_GT_EQ] = ACTIONS(1667), + [anon_sym_QMARK_QMARK] = ACTIONS(1667), + [anon_sym_instanceof] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_void] = ACTIONS(1661), + [anon_sym_delete] = ACTIONS(1661), + [anon_sym_PLUS_PLUS] = ACTIONS(1659), + [anon_sym_DASH_DASH] = ACTIONS(1659), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1659), + [sym_number] = ACTIONS(1659), + [sym_private_property_identifier] = ACTIONS(1659), + [sym_this] = ACTIONS(1661), + [sym_super] = ACTIONS(1661), + [sym_true] = ACTIONS(1661), + [sym_false] = ACTIONS(1661), + [sym_null] = ACTIONS(1661), + [sym_undefined] = ACTIONS(1661), + [anon_sym_AT] = ACTIONS(1659), + [anon_sym_static] = ACTIONS(1661), + [anon_sym_readonly] = ACTIONS(1661), + [anon_sym_get] = ACTIONS(1661), + [anon_sym_set] = ACTIONS(1661), + [anon_sym_declare] = ACTIONS(1661), + [anon_sym_public] = ACTIONS(1661), + [anon_sym_private] = ACTIONS(1661), + [anon_sym_protected] = ACTIONS(1661), + [anon_sym_override] = ACTIONS(1661), + [anon_sym_module] = ACTIONS(1661), + [anon_sym_any] = ACTIONS(1661), + [anon_sym_number] = ACTIONS(1661), + [anon_sym_boolean] = ACTIONS(1661), + [anon_sym_string] = ACTIONS(1661), + [anon_sym_symbol] = ACTIONS(1661), + [anon_sym_object] = ACTIONS(1661), + [anon_sym_abstract] = ACTIONS(1661), + [anon_sym_satisfies] = ACTIONS(1663), + [anon_sym_interface] = ACTIONS(1661), + [anon_sym_enum] = ACTIONS(1661), + [sym__automatic_semicolon] = ACTIONS(1669), + [sym__ternary_qmark] = ACTIONS(1667), [sym_html_comment] = ACTIONS(5), }, [218] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2216), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3740), - [sym_assignment_pattern] = STATE(5171), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3740), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1261), - [sym_subscript_expression] = STATE(1261), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3740), - [sym_spread_element] = STATE(5179), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4569), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1261), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [aux_sym_array_repeat1] = STATE(5196), - [aux_sym_array_pattern_repeat1] = STATE(5199), - [sym_identifier] = ACTIONS(1622), - [anon_sym_export] = ACTIONS(610), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_COMMA] = ACTIONS(1654), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(610), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_RBRACK] = ACTIONS(1658), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1624), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1628), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(610), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(610), - [anon_sym_number] = ACTIONS(610), - [anon_sym_boolean] = ACTIONS(610), - [anon_sym_string] = ACTIONS(610), - [anon_sym_symbol] = ACTIONS(610), - [anon_sym_object] = ACTIONS(610), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3631), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3631), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym__formal_parameter] = STATE(5508), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1265), + [sym_subscript_expression] = STATE(1265), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3631), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_pattern] = STATE(4261), + [sym_rest_pattern] = STATE(3626), + [sym_non_null_expression] = STATE(1265), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_accessibility_modifier] = STATE(300), + [sym_override_modifier] = STATE(314), + [sym_required_parameter] = STATE(5508), + [sym_optional_parameter] = STATE(5508), + [sym__parameter_name] = STATE(3523), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(284), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(728), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(736), + [anon_sym_using] = ACTIONS(162), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(1631), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1633), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_override] = ACTIONS(808), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, [219] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2129), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3740), - [sym_assignment_pattern] = STATE(5171), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3740), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1261), - [sym_subscript_expression] = STATE(1261), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3740), - [sym_spread_element] = STATE(4897), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4569), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1261), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [aux_sym_array_repeat1] = STATE(4906), - [aux_sym_array_pattern_repeat1] = STATE(5199), - [sym_identifier] = ACTIONS(1622), - [anon_sym_export] = ACTIONS(610), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_COMMA] = ACTIONS(1654), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(610), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_RBRACK] = ACTIONS(1662), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1624), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1628), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(610), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(610), - [anon_sym_number] = ACTIONS(610), - [anon_sym_boolean] = ACTIONS(610), - [anon_sym_string] = ACTIONS(610), - [anon_sym_symbol] = ACTIONS(610), - [anon_sym_object] = ACTIONS(610), + [sym_statement_block] = STATE(247), + [ts_builtin_sym_end] = ACTIONS(1653), + [sym_identifier] = ACTIONS(1655), + [anon_sym_export] = ACTIONS(1655), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(1655), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(1655), + [anon_sym_LBRACE] = ACTIONS(1657), + [anon_sym_COMMA] = ACTIONS(1653), + [anon_sym_RBRACE] = ACTIONS(1653), + [anon_sym_typeof] = ACTIONS(1655), + [anon_sym_import] = ACTIONS(1655), + [anon_sym_with] = ACTIONS(1655), + [anon_sym_var] = ACTIONS(1655), + [anon_sym_let] = ACTIONS(1655), + [anon_sym_const] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_else] = ACTIONS(1655), + [anon_sym_if] = ACTIONS(1655), + [anon_sym_switch] = ACTIONS(1655), + [anon_sym_for] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1653), + [anon_sym_SEMI] = ACTIONS(1653), + [anon_sym_await] = ACTIONS(1655), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_while] = ACTIONS(1655), + [anon_sym_do] = ACTIONS(1655), + [anon_sym_try] = ACTIONS(1655), + [anon_sym_break] = ACTIONS(1655), + [anon_sym_continue] = ACTIONS(1655), + [anon_sym_debugger] = ACTIONS(1655), + [anon_sym_return] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1655), + [anon_sym_case] = ACTIONS(1655), + [anon_sym_yield] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1671), + [anon_sym_DQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_class] = ACTIONS(1655), + [anon_sym_async] = ACTIONS(1655), + [anon_sym_function] = ACTIONS(1655), + [anon_sym_QMARK_DOT] = ACTIONS(1653), + [anon_sym_new] = ACTIONS(1655), + [anon_sym_using] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1653), + [anon_sym_PIPE_PIPE] = ACTIONS(1653), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1653), + [anon_sym_LT_LT] = ACTIONS(1653), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1653), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1653), + [anon_sym_STAR_STAR] = ACTIONS(1653), + [anon_sym_LT] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1653), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_QMARK_QMARK] = ACTIONS(1653), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_TILDE] = ACTIONS(1653), + [anon_sym_void] = ACTIONS(1655), + [anon_sym_delete] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1653), + [sym_number] = ACTIONS(1653), + [sym_private_property_identifier] = ACTIONS(1653), + [sym_this] = ACTIONS(1655), + [sym_super] = ACTIONS(1655), + [sym_true] = ACTIONS(1655), + [sym_false] = ACTIONS(1655), + [sym_null] = ACTIONS(1655), + [sym_undefined] = ACTIONS(1655), + [anon_sym_AT] = ACTIONS(1653), + [anon_sym_static] = ACTIONS(1655), + [anon_sym_readonly] = ACTIONS(1655), + [anon_sym_get] = ACTIONS(1655), + [anon_sym_set] = ACTIONS(1655), + [anon_sym_declare] = ACTIONS(1655), + [anon_sym_public] = ACTIONS(1655), + [anon_sym_private] = ACTIONS(1655), + [anon_sym_protected] = ACTIONS(1655), + [anon_sym_override] = ACTIONS(1655), + [anon_sym_module] = ACTIONS(1655), + [anon_sym_any] = ACTIONS(1655), + [anon_sym_number] = ACTIONS(1655), + [anon_sym_boolean] = ACTIONS(1655), + [anon_sym_string] = ACTIONS(1655), + [anon_sym_symbol] = ACTIONS(1655), + [anon_sym_object] = ACTIONS(1655), + [anon_sym_abstract] = ACTIONS(1655), + [anon_sym_satisfies] = ACTIONS(1655), + [anon_sym_interface] = ACTIONS(1655), + [anon_sym_enum] = ACTIONS(1655), + [sym__automatic_semicolon] = ACTIONS(1653), + [sym__ternary_qmark] = ACTIONS(1653), [sym_html_comment] = ACTIONS(5), }, [220] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2129), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3740), - [sym_assignment_pattern] = STATE(5171), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3740), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1261), - [sym_subscript_expression] = STATE(1261), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3740), - [sym_spread_element] = STATE(4897), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4569), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1261), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [aux_sym_array_repeat1] = STATE(4906), - [aux_sym_array_pattern_repeat1] = STATE(5199), - [sym_identifier] = ACTIONS(1622), - [anon_sym_export] = ACTIONS(610), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_COMMA] = ACTIONS(1654), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(610), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_RBRACK] = ACTIONS(1664), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1624), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1628), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(610), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(610), - [anon_sym_number] = ACTIONS(610), - [anon_sym_boolean] = ACTIONS(610), - [anon_sym_string] = ACTIONS(610), - [anon_sym_symbol] = ACTIONS(610), - [anon_sym_object] = ACTIONS(610), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2145), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3596), + [sym_assignment_pattern] = STATE(5112), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3596), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1268), + [sym_subscript_expression] = STATE(1268), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3596), + [sym_spread_element] = STATE(5119), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_pattern] = STATE(4530), + [sym_rest_pattern] = STATE(3626), + [sym_non_null_expression] = STATE(1268), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [aux_sym_array_repeat1] = STATE(5132), + [aux_sym_array_pattern_repeat1] = STATE(5134), + [sym_identifier] = ACTIONS(1617), + [anon_sym_export] = ACTIONS(603), + [anon_sym_type] = ACTIONS(603), + [anon_sym_namespace] = ACTIONS(607), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_COMMA] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(603), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_RBRACK] = ACTIONS(1673), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1619), + [anon_sym_using] = ACTIONS(629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1623), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(603), + [anon_sym_readonly] = ACTIONS(603), + [anon_sym_get] = ACTIONS(603), + [anon_sym_set] = ACTIONS(603), + [anon_sym_declare] = ACTIONS(603), + [anon_sym_public] = ACTIONS(603), + [anon_sym_private] = ACTIONS(603), + [anon_sym_protected] = ACTIONS(603), + [anon_sym_override] = ACTIONS(603), + [anon_sym_module] = ACTIONS(603), + [anon_sym_any] = ACTIONS(603), + [anon_sym_number] = ACTIONS(603), + [anon_sym_boolean] = ACTIONS(603), + [anon_sym_string] = ACTIONS(603), + [anon_sym_symbol] = ACTIONS(603), + [anon_sym_object] = ACTIONS(603), [sym_html_comment] = ACTIONS(5), }, [221] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2129), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3740), - [sym_assignment_pattern] = STATE(5171), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3740), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1261), - [sym_subscript_expression] = STATE(1261), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3740), - [sym_spread_element] = STATE(4897), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4569), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1261), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [aux_sym_array_repeat1] = STATE(4906), - [aux_sym_array_pattern_repeat1] = STATE(5199), - [sym_identifier] = ACTIONS(1622), - [anon_sym_export] = ACTIONS(610), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_COMMA] = ACTIONS(1654), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(610), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_RBRACK] = ACTIONS(1666), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1624), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1628), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(610), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(610), - [anon_sym_number] = ACTIONS(610), - [anon_sym_boolean] = ACTIONS(610), - [anon_sym_string] = ACTIONS(610), - [anon_sym_symbol] = ACTIONS(610), - [anon_sym_object] = ACTIONS(610), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2146), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3596), + [sym_assignment_pattern] = STATE(5112), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3596), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1268), + [sym_subscript_expression] = STATE(1268), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3596), + [sym_spread_element] = STATE(4912), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_pattern] = STATE(4530), + [sym_rest_pattern] = STATE(3626), + [sym_non_null_expression] = STATE(1268), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [aux_sym_array_repeat1] = STATE(4921), + [aux_sym_array_pattern_repeat1] = STATE(5134), + [sym_identifier] = ACTIONS(1617), + [anon_sym_export] = ACTIONS(603), + [anon_sym_type] = ACTIONS(603), + [anon_sym_namespace] = ACTIONS(607), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_COMMA] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(603), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_RBRACK] = ACTIONS(1675), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1619), + [anon_sym_using] = ACTIONS(629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1623), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(603), + [anon_sym_readonly] = ACTIONS(603), + [anon_sym_get] = ACTIONS(603), + [anon_sym_set] = ACTIONS(603), + [anon_sym_declare] = ACTIONS(603), + [anon_sym_public] = ACTIONS(603), + [anon_sym_private] = ACTIONS(603), + [anon_sym_protected] = ACTIONS(603), + [anon_sym_override] = ACTIONS(603), + [anon_sym_module] = ACTIONS(603), + [anon_sym_any] = ACTIONS(603), + [anon_sym_number] = ACTIONS(603), + [anon_sym_boolean] = ACTIONS(603), + [anon_sym_string] = ACTIONS(603), + [anon_sym_symbol] = ACTIONS(603), + [anon_sym_object] = ACTIONS(603), [sym_html_comment] = ACTIONS(5), }, [222] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1726), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(1668), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_RBRACK] = ACTIONS(1668), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1668), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_AMP] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_QMARK] = ACTIONS(1668), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), - [anon_sym_extends] = ACTIONS(1670), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2146), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3596), + [sym_assignment_pattern] = STATE(5112), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3596), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1268), + [sym_subscript_expression] = STATE(1268), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3596), + [sym_spread_element] = STATE(4912), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_pattern] = STATE(4530), + [sym_rest_pattern] = STATE(3626), + [sym_non_null_expression] = STATE(1268), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [aux_sym_array_repeat1] = STATE(4921), + [aux_sym_array_pattern_repeat1] = STATE(5134), + [sym_identifier] = ACTIONS(1617), + [anon_sym_export] = ACTIONS(603), + [anon_sym_type] = ACTIONS(603), + [anon_sym_namespace] = ACTIONS(607), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_COMMA] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(603), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_RBRACK] = ACTIONS(1677), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1619), + [anon_sym_using] = ACTIONS(629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1623), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(603), + [anon_sym_readonly] = ACTIONS(603), + [anon_sym_get] = ACTIONS(603), + [anon_sym_set] = ACTIONS(603), + [anon_sym_declare] = ACTIONS(603), + [anon_sym_public] = ACTIONS(603), + [anon_sym_private] = ACTIONS(603), + [anon_sym_protected] = ACTIONS(603), + [anon_sym_override] = ACTIONS(603), + [anon_sym_module] = ACTIONS(603), + [anon_sym_any] = ACTIONS(603), + [anon_sym_number] = ACTIONS(603), + [anon_sym_boolean] = ACTIONS(603), + [anon_sym_string] = ACTIONS(603), + [anon_sym_symbol] = ACTIONS(603), + [anon_sym_object] = ACTIONS(603), [sym_html_comment] = ACTIONS(5), }, [223] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym__formal_parameter] = STATE(5550), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4314), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_accessibility_modifier] = STATE(294), - [sym_override_modifier] = STATE(306), - [sym_required_parameter] = STATE(5550), - [sym_optional_parameter] = STATE(5550), - [sym__parameter_name] = STATE(3554), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(266), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1634), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(741), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(1636), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(789), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1638), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(813), - [anon_sym_private] = ACTIONS(813), - [anon_sym_protected] = ACTIONS(813), - [anon_sym_override] = ACTIONS(815), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_statement_block] = STATE(247), + [ts_builtin_sym_end] = ACTIONS(1653), + [sym_identifier] = ACTIONS(1655), + [anon_sym_export] = ACTIONS(1655), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(1655), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(1655), + [anon_sym_LBRACE] = ACTIONS(1657), + [anon_sym_COMMA] = ACTIONS(1653), + [anon_sym_RBRACE] = ACTIONS(1653), + [anon_sym_typeof] = ACTIONS(1655), + [anon_sym_import] = ACTIONS(1655), + [anon_sym_with] = ACTIONS(1655), + [anon_sym_var] = ACTIONS(1655), + [anon_sym_let] = ACTIONS(1655), + [anon_sym_const] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_else] = ACTIONS(1655), + [anon_sym_if] = ACTIONS(1655), + [anon_sym_switch] = ACTIONS(1655), + [anon_sym_for] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1653), + [anon_sym_SEMI] = ACTIONS(1653), + [anon_sym_await] = ACTIONS(1655), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_while] = ACTIONS(1655), + [anon_sym_do] = ACTIONS(1655), + [anon_sym_try] = ACTIONS(1655), + [anon_sym_break] = ACTIONS(1655), + [anon_sym_continue] = ACTIONS(1655), + [anon_sym_debugger] = ACTIONS(1655), + [anon_sym_return] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1655), + [anon_sym_case] = ACTIONS(1655), + [anon_sym_yield] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1679), + [anon_sym_DQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_class] = ACTIONS(1655), + [anon_sym_async] = ACTIONS(1655), + [anon_sym_function] = ACTIONS(1655), + [anon_sym_QMARK_DOT] = ACTIONS(1653), + [anon_sym_new] = ACTIONS(1655), + [anon_sym_using] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1653), + [anon_sym_PIPE_PIPE] = ACTIONS(1653), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1653), + [anon_sym_LT_LT] = ACTIONS(1653), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1653), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1653), + [anon_sym_STAR_STAR] = ACTIONS(1653), + [anon_sym_LT] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1653), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_QMARK_QMARK] = ACTIONS(1653), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_TILDE] = ACTIONS(1653), + [anon_sym_void] = ACTIONS(1655), + [anon_sym_delete] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1653), + [sym_number] = ACTIONS(1653), + [sym_private_property_identifier] = ACTIONS(1653), + [sym_this] = ACTIONS(1655), + [sym_super] = ACTIONS(1655), + [sym_true] = ACTIONS(1655), + [sym_false] = ACTIONS(1655), + [sym_null] = ACTIONS(1655), + [sym_undefined] = ACTIONS(1655), + [anon_sym_AT] = ACTIONS(1653), + [anon_sym_static] = ACTIONS(1655), + [anon_sym_readonly] = ACTIONS(1655), + [anon_sym_get] = ACTIONS(1655), + [anon_sym_set] = ACTIONS(1655), + [anon_sym_declare] = ACTIONS(1655), + [anon_sym_public] = ACTIONS(1655), + [anon_sym_private] = ACTIONS(1655), + [anon_sym_protected] = ACTIONS(1655), + [anon_sym_override] = ACTIONS(1655), + [anon_sym_module] = ACTIONS(1655), + [anon_sym_any] = ACTIONS(1655), + [anon_sym_number] = ACTIONS(1655), + [anon_sym_boolean] = ACTIONS(1655), + [anon_sym_string] = ACTIONS(1655), + [anon_sym_symbol] = ACTIONS(1655), + [anon_sym_object] = ACTIONS(1655), + [anon_sym_abstract] = ACTIONS(1655), + [anon_sym_satisfies] = ACTIONS(1655), + [anon_sym_interface] = ACTIONS(1655), + [anon_sym_enum] = ACTIONS(1655), + [sym__automatic_semicolon] = ACTIONS(1653), + [sym__ternary_qmark] = ACTIONS(1653), [sym_html_comment] = ACTIONS(5), }, [224] = { - [sym_statement_block] = STATE(260), - [ts_builtin_sym_end] = ACTIONS(1672), - [sym_identifier] = ACTIONS(1674), - [anon_sym_export] = ACTIONS(1674), - [anon_sym_STAR] = ACTIONS(1674), - [anon_sym_default] = ACTIONS(1674), - [anon_sym_type] = ACTIONS(1674), - [anon_sym_as] = ACTIONS(1674), - [anon_sym_namespace] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1676), - [anon_sym_COMMA] = ACTIONS(1672), - [anon_sym_RBRACE] = ACTIONS(1672), - [anon_sym_typeof] = ACTIONS(1674), - [anon_sym_import] = ACTIONS(1674), - [anon_sym_with] = ACTIONS(1674), - [anon_sym_var] = ACTIONS(1674), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_BANG] = ACTIONS(1674), - [anon_sym_else] = ACTIONS(1674), - [anon_sym_if] = ACTIONS(1674), - [anon_sym_switch] = ACTIONS(1674), - [anon_sym_for] = ACTIONS(1674), - [anon_sym_LPAREN] = ACTIONS(1672), - [anon_sym_SEMI] = ACTIONS(1672), - [anon_sym_await] = ACTIONS(1674), - [anon_sym_in] = ACTIONS(1674), - [anon_sym_while] = ACTIONS(1674), - [anon_sym_do] = ACTIONS(1674), - [anon_sym_try] = ACTIONS(1674), - [anon_sym_break] = ACTIONS(1674), - [anon_sym_continue] = ACTIONS(1674), - [anon_sym_debugger] = ACTIONS(1674), - [anon_sym_return] = ACTIONS(1674), - [anon_sym_throw] = ACTIONS(1674), - [anon_sym_case] = ACTIONS(1674), - [anon_sym_yield] = ACTIONS(1674), - [anon_sym_LBRACK] = ACTIONS(1672), - [sym_glimmer_opening_tag] = ACTIONS(1672), - [anon_sym_GT] = ACTIONS(1674), - [anon_sym_DOT] = ACTIONS(1678), - [anon_sym_DQUOTE] = ACTIONS(1672), - [anon_sym_SQUOTE] = ACTIONS(1672), - [anon_sym_class] = ACTIONS(1674), - [anon_sym_async] = ACTIONS(1674), - [anon_sym_function] = ACTIONS(1674), - [anon_sym_QMARK_DOT] = ACTIONS(1672), - [anon_sym_new] = ACTIONS(1674), - [anon_sym_using] = ACTIONS(1674), - [anon_sym_AMP_AMP] = ACTIONS(1672), - [anon_sym_PIPE_PIPE] = ACTIONS(1672), - [anon_sym_GT_GT] = ACTIONS(1674), - [anon_sym_GT_GT_GT] = ACTIONS(1672), - [anon_sym_LT_LT] = ACTIONS(1672), - [anon_sym_AMP] = ACTIONS(1674), - [anon_sym_CARET] = ACTIONS(1672), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_PLUS] = ACTIONS(1674), - [anon_sym_DASH] = ACTIONS(1674), - [anon_sym_SLASH] = ACTIONS(1674), - [anon_sym_PERCENT] = ACTIONS(1672), - [anon_sym_STAR_STAR] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1674), - [anon_sym_LT_EQ] = ACTIONS(1672), - [anon_sym_EQ_EQ] = ACTIONS(1674), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), - [anon_sym_BANG_EQ] = ACTIONS(1674), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), - [anon_sym_GT_EQ] = ACTIONS(1672), - [anon_sym_QMARK_QMARK] = ACTIONS(1672), - [anon_sym_instanceof] = ACTIONS(1674), - [anon_sym_TILDE] = ACTIONS(1672), - [anon_sym_void] = ACTIONS(1674), - [anon_sym_delete] = ACTIONS(1674), - [anon_sym_PLUS_PLUS] = ACTIONS(1672), - [anon_sym_DASH_DASH] = ACTIONS(1672), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1672), - [sym_number] = ACTIONS(1672), - [sym_private_property_identifier] = ACTIONS(1672), - [sym_this] = ACTIONS(1674), - [sym_super] = ACTIONS(1674), - [sym_true] = ACTIONS(1674), - [sym_false] = ACTIONS(1674), - [sym_null] = ACTIONS(1674), - [sym_undefined] = ACTIONS(1674), - [anon_sym_AT] = ACTIONS(1672), - [anon_sym_static] = ACTIONS(1674), - [anon_sym_readonly] = ACTIONS(1674), - [anon_sym_get] = ACTIONS(1674), - [anon_sym_set] = ACTIONS(1674), - [anon_sym_declare] = ACTIONS(1674), - [anon_sym_public] = ACTIONS(1674), - [anon_sym_private] = ACTIONS(1674), - [anon_sym_protected] = ACTIONS(1674), - [anon_sym_override] = ACTIONS(1674), - [anon_sym_module] = ACTIONS(1674), - [anon_sym_any] = ACTIONS(1674), - [anon_sym_number] = ACTIONS(1674), - [anon_sym_boolean] = ACTIONS(1674), - [anon_sym_string] = ACTIONS(1674), - [anon_sym_symbol] = ACTIONS(1674), - [anon_sym_object] = ACTIONS(1674), - [anon_sym_abstract] = ACTIONS(1674), - [anon_sym_satisfies] = ACTIONS(1674), - [anon_sym_interface] = ACTIONS(1674), - [anon_sym_enum] = ACTIONS(1674), - [sym__automatic_semicolon] = ACTIONS(1672), - [sym__ternary_qmark] = ACTIONS(1672), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2146), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3596), + [sym_assignment_pattern] = STATE(5112), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3596), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1268), + [sym_subscript_expression] = STATE(1268), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3596), + [sym_spread_element] = STATE(4912), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_pattern] = STATE(4530), + [sym_rest_pattern] = STATE(3626), + [sym_non_null_expression] = STATE(1268), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [aux_sym_array_repeat1] = STATE(4921), + [aux_sym_array_pattern_repeat1] = STATE(5134), + [sym_identifier] = ACTIONS(1617), + [anon_sym_export] = ACTIONS(603), + [anon_sym_type] = ACTIONS(603), + [anon_sym_namespace] = ACTIONS(607), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_COMMA] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(603), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_RBRACK] = ACTIONS(1681), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1619), + [anon_sym_using] = ACTIONS(629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1623), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(603), + [anon_sym_readonly] = ACTIONS(603), + [anon_sym_get] = ACTIONS(603), + [anon_sym_set] = ACTIONS(603), + [anon_sym_declare] = ACTIONS(603), + [anon_sym_public] = ACTIONS(603), + [anon_sym_private] = ACTIONS(603), + [anon_sym_protected] = ACTIONS(603), + [anon_sym_override] = ACTIONS(603), + [anon_sym_module] = ACTIONS(603), + [anon_sym_any] = ACTIONS(603), + [anon_sym_number] = ACTIONS(603), + [anon_sym_boolean] = ACTIONS(603), + [anon_sym_string] = ACTIONS(603), + [anon_sym_symbol] = ACTIONS(603), + [anon_sym_object] = ACTIONS(603), [sym_html_comment] = ACTIONS(5), }, [225] = { - [sym_statement_block] = STATE(260), - [ts_builtin_sym_end] = ACTIONS(1672), - [sym_identifier] = ACTIONS(1674), - [anon_sym_export] = ACTIONS(1674), - [anon_sym_STAR] = ACTIONS(1674), - [anon_sym_default] = ACTIONS(1674), - [anon_sym_type] = ACTIONS(1674), - [anon_sym_as] = ACTIONS(1674), - [anon_sym_namespace] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1676), - [anon_sym_COMMA] = ACTIONS(1672), - [anon_sym_RBRACE] = ACTIONS(1672), - [anon_sym_typeof] = ACTIONS(1674), - [anon_sym_import] = ACTIONS(1674), - [anon_sym_with] = ACTIONS(1674), - [anon_sym_var] = ACTIONS(1674), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_BANG] = ACTIONS(1674), - [anon_sym_else] = ACTIONS(1674), - [anon_sym_if] = ACTIONS(1674), - [anon_sym_switch] = ACTIONS(1674), - [anon_sym_for] = ACTIONS(1674), - [anon_sym_LPAREN] = ACTIONS(1672), - [anon_sym_SEMI] = ACTIONS(1672), - [anon_sym_await] = ACTIONS(1674), - [anon_sym_in] = ACTIONS(1674), - [anon_sym_while] = ACTIONS(1674), - [anon_sym_do] = ACTIONS(1674), - [anon_sym_try] = ACTIONS(1674), - [anon_sym_break] = ACTIONS(1674), - [anon_sym_continue] = ACTIONS(1674), - [anon_sym_debugger] = ACTIONS(1674), - [anon_sym_return] = ACTIONS(1674), - [anon_sym_throw] = ACTIONS(1674), - [anon_sym_case] = ACTIONS(1674), - [anon_sym_yield] = ACTIONS(1674), - [anon_sym_LBRACK] = ACTIONS(1672), - [sym_glimmer_opening_tag] = ACTIONS(1672), - [anon_sym_GT] = ACTIONS(1674), - [anon_sym_DOT] = ACTIONS(1674), - [anon_sym_DQUOTE] = ACTIONS(1672), - [anon_sym_SQUOTE] = ACTIONS(1672), - [anon_sym_class] = ACTIONS(1674), - [anon_sym_async] = ACTIONS(1674), - [anon_sym_function] = ACTIONS(1674), - [anon_sym_QMARK_DOT] = ACTIONS(1672), - [anon_sym_new] = ACTIONS(1674), - [anon_sym_using] = ACTIONS(1674), - [anon_sym_AMP_AMP] = ACTIONS(1672), - [anon_sym_PIPE_PIPE] = ACTIONS(1672), - [anon_sym_GT_GT] = ACTIONS(1674), - [anon_sym_GT_GT_GT] = ACTIONS(1672), - [anon_sym_LT_LT] = ACTIONS(1672), - [anon_sym_AMP] = ACTIONS(1674), - [anon_sym_CARET] = ACTIONS(1672), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_PLUS] = ACTIONS(1674), - [anon_sym_DASH] = ACTIONS(1674), - [anon_sym_SLASH] = ACTIONS(1674), - [anon_sym_PERCENT] = ACTIONS(1672), - [anon_sym_STAR_STAR] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1674), - [anon_sym_LT_EQ] = ACTIONS(1672), - [anon_sym_EQ_EQ] = ACTIONS(1674), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), - [anon_sym_BANG_EQ] = ACTIONS(1674), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), - [anon_sym_GT_EQ] = ACTIONS(1672), - [anon_sym_QMARK_QMARK] = ACTIONS(1672), - [anon_sym_instanceof] = ACTIONS(1674), - [anon_sym_TILDE] = ACTIONS(1672), - [anon_sym_void] = ACTIONS(1674), - [anon_sym_delete] = ACTIONS(1674), - [anon_sym_PLUS_PLUS] = ACTIONS(1672), - [anon_sym_DASH_DASH] = ACTIONS(1672), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1672), - [sym_number] = ACTIONS(1672), - [sym_private_property_identifier] = ACTIONS(1672), - [sym_this] = ACTIONS(1674), - [sym_super] = ACTIONS(1674), - [sym_true] = ACTIONS(1674), - [sym_false] = ACTIONS(1674), - [sym_null] = ACTIONS(1674), - [sym_undefined] = ACTIONS(1674), - [anon_sym_AT] = ACTIONS(1672), - [anon_sym_static] = ACTIONS(1674), - [anon_sym_readonly] = ACTIONS(1674), - [anon_sym_get] = ACTIONS(1674), - [anon_sym_set] = ACTIONS(1674), - [anon_sym_declare] = ACTIONS(1674), - [anon_sym_public] = ACTIONS(1674), - [anon_sym_private] = ACTIONS(1674), - [anon_sym_protected] = ACTIONS(1674), - [anon_sym_override] = ACTIONS(1674), - [anon_sym_module] = ACTIONS(1674), - [anon_sym_any] = ACTIONS(1674), - [anon_sym_number] = ACTIONS(1674), - [anon_sym_boolean] = ACTIONS(1674), - [anon_sym_string] = ACTIONS(1674), - [anon_sym_symbol] = ACTIONS(1674), - [anon_sym_object] = ACTIONS(1674), - [anon_sym_abstract] = ACTIONS(1674), - [anon_sym_satisfies] = ACTIONS(1674), - [anon_sym_interface] = ACTIONS(1674), - [anon_sym_enum] = ACTIONS(1674), - [sym__automatic_semicolon] = ACTIONS(1672), - [sym__ternary_qmark] = ACTIONS(1672), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2302), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3596), + [sym_assignment_pattern] = STATE(5112), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3596), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1268), + [sym_subscript_expression] = STATE(1268), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3596), + [sym_spread_element] = STATE(5119), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_pattern] = STATE(4530), + [sym_rest_pattern] = STATE(3626), + [sym_non_null_expression] = STATE(1268), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [aux_sym_array_repeat1] = STATE(5132), + [aux_sym_array_pattern_repeat1] = STATE(5134), + [sym_identifier] = ACTIONS(1617), + [anon_sym_export] = ACTIONS(603), + [anon_sym_type] = ACTIONS(603), + [anon_sym_namespace] = ACTIONS(607), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_COMMA] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(603), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_RBRACK] = ACTIONS(1673), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1619), + [anon_sym_using] = ACTIONS(629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1623), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(603), + [anon_sym_readonly] = ACTIONS(603), + [anon_sym_get] = ACTIONS(603), + [anon_sym_set] = ACTIONS(603), + [anon_sym_declare] = ACTIONS(603), + [anon_sym_public] = ACTIONS(603), + [anon_sym_private] = ACTIONS(603), + [anon_sym_protected] = ACTIONS(603), + [anon_sym_override] = ACTIONS(603), + [anon_sym_module] = ACTIONS(603), + [anon_sym_any] = ACTIONS(603), + [anon_sym_number] = ACTIONS(603), + [anon_sym_boolean] = ACTIONS(603), + [anon_sym_string] = ACTIONS(603), + [anon_sym_symbol] = ACTIONS(603), + [anon_sym_object] = ACTIONS(603), [sym_html_comment] = ACTIONS(5), }, [226] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1726), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(1668), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_AMP] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1670), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), - [anon_sym_extends] = ACTIONS(1670), - [anon_sym_PIPE_RBRACE] = ACTIONS(1668), - [sym__automatic_semicolon] = ACTIONS(1668), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(1699), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_COMMA] = ACTIONS(1683), + [anon_sym_RBRACE] = ACTIONS(1683), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_RPAREN] = ACTIONS(1683), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(1683), + [anon_sym_RBRACK] = ACTIONS(1683), + [anon_sym_GT] = ACTIONS(1683), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_AMP] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1683), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_QMARK] = ACTIONS(1683), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [anon_sym_extends] = ACTIONS(1685), [sym_html_comment] = ACTIONS(5), }, [227] = { - [sym_statement_block] = STATE(260), - [ts_builtin_sym_end] = ACTIONS(1672), - [sym_identifier] = ACTIONS(1674), - [anon_sym_export] = ACTIONS(1674), - [anon_sym_STAR] = ACTIONS(1674), - [anon_sym_default] = ACTIONS(1674), - [anon_sym_type] = ACTIONS(1674), - [anon_sym_as] = ACTIONS(1674), - [anon_sym_namespace] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1676), - [anon_sym_COMMA] = ACTIONS(1672), - [anon_sym_RBRACE] = ACTIONS(1672), - [anon_sym_typeof] = ACTIONS(1674), - [anon_sym_import] = ACTIONS(1674), - [anon_sym_with] = ACTIONS(1674), - [anon_sym_var] = ACTIONS(1674), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_BANG] = ACTIONS(1674), - [anon_sym_else] = ACTIONS(1674), - [anon_sym_if] = ACTIONS(1674), - [anon_sym_switch] = ACTIONS(1674), - [anon_sym_for] = ACTIONS(1674), - [anon_sym_LPAREN] = ACTIONS(1672), - [anon_sym_SEMI] = ACTIONS(1672), - [anon_sym_await] = ACTIONS(1674), - [anon_sym_in] = ACTIONS(1674), - [anon_sym_while] = ACTIONS(1674), - [anon_sym_do] = ACTIONS(1674), - [anon_sym_try] = ACTIONS(1674), - [anon_sym_break] = ACTIONS(1674), - [anon_sym_continue] = ACTIONS(1674), - [anon_sym_debugger] = ACTIONS(1674), - [anon_sym_return] = ACTIONS(1674), - [anon_sym_throw] = ACTIONS(1674), - [anon_sym_case] = ACTIONS(1674), - [anon_sym_yield] = ACTIONS(1674), - [anon_sym_LBRACK] = ACTIONS(1672), - [sym_glimmer_opening_tag] = ACTIONS(1672), - [anon_sym_GT] = ACTIONS(1674), - [anon_sym_DOT] = ACTIONS(1680), - [anon_sym_DQUOTE] = ACTIONS(1672), - [anon_sym_SQUOTE] = ACTIONS(1672), - [anon_sym_class] = ACTIONS(1674), - [anon_sym_async] = ACTIONS(1674), - [anon_sym_function] = ACTIONS(1674), - [anon_sym_QMARK_DOT] = ACTIONS(1672), - [anon_sym_new] = ACTIONS(1674), - [anon_sym_using] = ACTIONS(1674), - [anon_sym_AMP_AMP] = ACTIONS(1672), - [anon_sym_PIPE_PIPE] = ACTIONS(1672), - [anon_sym_GT_GT] = ACTIONS(1674), - [anon_sym_GT_GT_GT] = ACTIONS(1672), - [anon_sym_LT_LT] = ACTIONS(1672), - [anon_sym_AMP] = ACTIONS(1674), - [anon_sym_CARET] = ACTIONS(1672), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_PLUS] = ACTIONS(1674), - [anon_sym_DASH] = ACTIONS(1674), - [anon_sym_SLASH] = ACTIONS(1674), - [anon_sym_PERCENT] = ACTIONS(1672), - [anon_sym_STAR_STAR] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1674), - [anon_sym_LT_EQ] = ACTIONS(1672), - [anon_sym_EQ_EQ] = ACTIONS(1674), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), - [anon_sym_BANG_EQ] = ACTIONS(1674), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), - [anon_sym_GT_EQ] = ACTIONS(1672), - [anon_sym_QMARK_QMARK] = ACTIONS(1672), - [anon_sym_instanceof] = ACTIONS(1674), - [anon_sym_TILDE] = ACTIONS(1672), - [anon_sym_void] = ACTIONS(1674), - [anon_sym_delete] = ACTIONS(1674), - [anon_sym_PLUS_PLUS] = ACTIONS(1672), - [anon_sym_DASH_DASH] = ACTIONS(1672), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1672), - [sym_number] = ACTIONS(1672), - [sym_private_property_identifier] = ACTIONS(1672), - [sym_this] = ACTIONS(1674), - [sym_super] = ACTIONS(1674), - [sym_true] = ACTIONS(1674), - [sym_false] = ACTIONS(1674), - [sym_null] = ACTIONS(1674), - [sym_undefined] = ACTIONS(1674), - [anon_sym_AT] = ACTIONS(1672), - [anon_sym_static] = ACTIONS(1674), - [anon_sym_readonly] = ACTIONS(1674), - [anon_sym_get] = ACTIONS(1674), - [anon_sym_set] = ACTIONS(1674), - [anon_sym_declare] = ACTIONS(1674), - [anon_sym_public] = ACTIONS(1674), - [anon_sym_private] = ACTIONS(1674), - [anon_sym_protected] = ACTIONS(1674), - [anon_sym_override] = ACTIONS(1674), - [anon_sym_module] = ACTIONS(1674), - [anon_sym_any] = ACTIONS(1674), - [anon_sym_number] = ACTIONS(1674), - [anon_sym_boolean] = ACTIONS(1674), - [anon_sym_string] = ACTIONS(1674), - [anon_sym_symbol] = ACTIONS(1674), - [anon_sym_object] = ACTIONS(1674), - [anon_sym_abstract] = ACTIONS(1674), - [anon_sym_satisfies] = ACTIONS(1674), - [anon_sym_interface] = ACTIONS(1674), - [anon_sym_enum] = ACTIONS(1674), - [sym__automatic_semicolon] = ACTIONS(1672), - [sym__ternary_qmark] = ACTIONS(1672), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2146), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3596), + [sym_assignment_pattern] = STATE(5112), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3596), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1268), + [sym_subscript_expression] = STATE(1268), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3596), + [sym_spread_element] = STATE(4912), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_pattern] = STATE(4530), + [sym_rest_pattern] = STATE(3626), + [sym_non_null_expression] = STATE(1268), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [aux_sym_array_repeat1] = STATE(4921), + [aux_sym_array_pattern_repeat1] = STATE(5134), + [sym_identifier] = ACTIONS(1617), + [anon_sym_export] = ACTIONS(603), + [anon_sym_type] = ACTIONS(603), + [anon_sym_namespace] = ACTIONS(607), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_COMMA] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(603), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_RBRACK] = ACTIONS(1687), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1619), + [anon_sym_using] = ACTIONS(629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1623), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(603), + [anon_sym_readonly] = ACTIONS(603), + [anon_sym_get] = ACTIONS(603), + [anon_sym_set] = ACTIONS(603), + [anon_sym_declare] = ACTIONS(603), + [anon_sym_public] = ACTIONS(603), + [anon_sym_private] = ACTIONS(603), + [anon_sym_protected] = ACTIONS(603), + [anon_sym_override] = ACTIONS(603), + [anon_sym_module] = ACTIONS(603), + [anon_sym_any] = ACTIONS(603), + [anon_sym_number] = ACTIONS(603), + [anon_sym_boolean] = ACTIONS(603), + [anon_sym_string] = ACTIONS(603), + [anon_sym_symbol] = ACTIONS(603), + [anon_sym_object] = ACTIONS(603), [sym_html_comment] = ACTIONS(5), }, [228] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2505), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5203), - [sym_assignment_pattern] = STATE(5171), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5203), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5203), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4569), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1369), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_mapped_type_clause] = STATE(5612), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [aux_sym_array_pattern_repeat1] = STATE(5199), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1684), - [anon_sym_type] = ACTIONS(1684), - [anon_sym_namespace] = ACTIONS(1686), - [anon_sym_LBRACE] = ACTIONS(1688), - [anon_sym_COMMA] = ACTIONS(1690), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1684), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_RBRACK] = ACTIONS(1694), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1696), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1698), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1700), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1684), - [anon_sym_readonly] = ACTIONS(1684), - [anon_sym_get] = ACTIONS(1684), - [anon_sym_set] = ACTIONS(1684), - [anon_sym_declare] = ACTIONS(1684), - [anon_sym_public] = ACTIONS(1684), - [anon_sym_private] = ACTIONS(1684), - [anon_sym_protected] = ACTIONS(1684), - [anon_sym_override] = ACTIONS(1684), - [anon_sym_module] = ACTIONS(1684), - [anon_sym_any] = ACTIONS(1684), - [anon_sym_number] = ACTIONS(1684), - [anon_sym_boolean] = ACTIONS(1684), - [anon_sym_string] = ACTIONS(1684), - [anon_sym_symbol] = ACTIONS(1684), - [anon_sym_object] = ACTIONS(1684), + [ts_builtin_sym_end] = ACTIONS(1689), + [sym_identifier] = ACTIONS(1691), + [anon_sym_export] = ACTIONS(1691), + [anon_sym_STAR] = ACTIONS(1693), + [anon_sym_default] = ACTIONS(1691), + [anon_sym_type] = ACTIONS(1691), + [anon_sym_as] = ACTIONS(1693), + [anon_sym_namespace] = ACTIONS(1691), + [anon_sym_LBRACE] = ACTIONS(1689), + [anon_sym_COMMA] = ACTIONS(1695), + [anon_sym_RBRACE] = ACTIONS(1689), + [anon_sym_typeof] = ACTIONS(1691), + [anon_sym_import] = ACTIONS(1691), + [anon_sym_with] = ACTIONS(1691), + [anon_sym_var] = ACTIONS(1691), + [anon_sym_let] = ACTIONS(1691), + [anon_sym_const] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(1691), + [anon_sym_else] = ACTIONS(1691), + [anon_sym_if] = ACTIONS(1691), + [anon_sym_switch] = ACTIONS(1691), + [anon_sym_for] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1689), + [anon_sym_SEMI] = ACTIONS(1689), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_in] = ACTIONS(1693), + [anon_sym_while] = ACTIONS(1691), + [anon_sym_do] = ACTIONS(1691), + [anon_sym_try] = ACTIONS(1691), + [anon_sym_break] = ACTIONS(1691), + [anon_sym_continue] = ACTIONS(1691), + [anon_sym_debugger] = ACTIONS(1691), + [anon_sym_return] = ACTIONS(1691), + [anon_sym_throw] = ACTIONS(1691), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_yield] = ACTIONS(1691), + [anon_sym_LBRACK] = ACTIONS(1689), + [anon_sym_GT] = ACTIONS(1693), + [anon_sym_DOT] = ACTIONS(1693), + [anon_sym_DQUOTE] = ACTIONS(1689), + [anon_sym_SQUOTE] = ACTIONS(1689), + [anon_sym_class] = ACTIONS(1691), + [anon_sym_async] = ACTIONS(1691), + [anon_sym_function] = ACTIONS(1691), + [anon_sym_QMARK_DOT] = ACTIONS(1695), + [anon_sym_new] = ACTIONS(1691), + [anon_sym_using] = ACTIONS(1691), + [anon_sym_AMP_AMP] = ACTIONS(1695), + [anon_sym_PIPE_PIPE] = ACTIONS(1695), + [anon_sym_GT_GT] = ACTIONS(1693), + [anon_sym_GT_GT_GT] = ACTIONS(1695), + [anon_sym_LT_LT] = ACTIONS(1695), + [anon_sym_AMP] = ACTIONS(1693), + [anon_sym_CARET] = ACTIONS(1695), + [anon_sym_PIPE] = ACTIONS(1693), + [anon_sym_PLUS] = ACTIONS(1691), + [anon_sym_DASH] = ACTIONS(1691), + [anon_sym_SLASH] = ACTIONS(1691), + [anon_sym_PERCENT] = ACTIONS(1695), + [anon_sym_STAR_STAR] = ACTIONS(1695), + [anon_sym_LT] = ACTIONS(1691), + [anon_sym_LT_EQ] = ACTIONS(1695), + [anon_sym_EQ_EQ] = ACTIONS(1693), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1695), + [anon_sym_BANG_EQ] = ACTIONS(1693), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1695), + [anon_sym_GT_EQ] = ACTIONS(1695), + [anon_sym_QMARK_QMARK] = ACTIONS(1695), + [anon_sym_instanceof] = ACTIONS(1693), + [anon_sym_TILDE] = ACTIONS(1689), + [anon_sym_void] = ACTIONS(1691), + [anon_sym_delete] = ACTIONS(1691), + [anon_sym_PLUS_PLUS] = ACTIONS(1689), + [anon_sym_DASH_DASH] = ACTIONS(1689), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1689), + [sym_number] = ACTIONS(1689), + [sym_private_property_identifier] = ACTIONS(1689), + [sym_this] = ACTIONS(1691), + [sym_super] = ACTIONS(1691), + [sym_true] = ACTIONS(1691), + [sym_false] = ACTIONS(1691), + [sym_null] = ACTIONS(1691), + [sym_undefined] = ACTIONS(1691), + [anon_sym_AT] = ACTIONS(1689), + [anon_sym_static] = ACTIONS(1691), + [anon_sym_readonly] = ACTIONS(1691), + [anon_sym_get] = ACTIONS(1691), + [anon_sym_set] = ACTIONS(1691), + [anon_sym_declare] = ACTIONS(1691), + [anon_sym_public] = ACTIONS(1691), + [anon_sym_private] = ACTIONS(1691), + [anon_sym_protected] = ACTIONS(1691), + [anon_sym_override] = ACTIONS(1691), + [anon_sym_module] = ACTIONS(1691), + [anon_sym_any] = ACTIONS(1691), + [anon_sym_number] = ACTIONS(1691), + [anon_sym_boolean] = ACTIONS(1691), + [anon_sym_string] = ACTIONS(1691), + [anon_sym_symbol] = ACTIONS(1691), + [anon_sym_object] = ACTIONS(1691), + [anon_sym_abstract] = ACTIONS(1691), + [anon_sym_satisfies] = ACTIONS(1693), + [anon_sym_interface] = ACTIONS(1691), + [anon_sym_enum] = ACTIONS(1691), + [sym__automatic_semicolon] = ACTIONS(1697), + [sym__ternary_qmark] = ACTIONS(1695), [sym_html_comment] = ACTIONS(5), }, [229] = { - [ts_builtin_sym_end] = ACTIONS(1702), - [sym_identifier] = ACTIONS(1704), - [anon_sym_export] = ACTIONS(1704), - [anon_sym_STAR] = ACTIONS(1706), - [anon_sym_default] = ACTIONS(1704), - [anon_sym_type] = ACTIONS(1704), - [anon_sym_EQ] = ACTIONS(1708), - [anon_sym_as] = ACTIONS(1706), - [anon_sym_namespace] = ACTIONS(1704), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_COMMA] = ACTIONS(1710), - [anon_sym_RBRACE] = ACTIONS(1702), - [anon_sym_typeof] = ACTIONS(1704), - [anon_sym_import] = ACTIONS(1704), - [anon_sym_with] = ACTIONS(1704), - [anon_sym_var] = ACTIONS(1704), - [anon_sym_let] = ACTIONS(1704), - [anon_sym_const] = ACTIONS(1704), - [anon_sym_BANG] = ACTIONS(1704), - [anon_sym_else] = ACTIONS(1704), - [anon_sym_if] = ACTIONS(1704), - [anon_sym_switch] = ACTIONS(1704), - [anon_sym_for] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(1702), - [anon_sym_SEMI] = ACTIONS(1702), - [anon_sym_await] = ACTIONS(1704), - [anon_sym_in] = ACTIONS(1706), - [anon_sym_while] = ACTIONS(1704), - [anon_sym_do] = ACTIONS(1704), - [anon_sym_try] = ACTIONS(1704), - [anon_sym_break] = ACTIONS(1704), - [anon_sym_continue] = ACTIONS(1704), - [anon_sym_debugger] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1704), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_case] = ACTIONS(1704), - [anon_sym_yield] = ACTIONS(1704), - [anon_sym_LBRACK] = ACTIONS(1702), - [sym_glimmer_opening_tag] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1706), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_DQUOTE] = ACTIONS(1702), - [anon_sym_SQUOTE] = ACTIONS(1702), - [anon_sym_class] = ACTIONS(1704), - [anon_sym_async] = ACTIONS(1704), - [anon_sym_function] = ACTIONS(1704), - [anon_sym_QMARK_DOT] = ACTIONS(1710), - [anon_sym_new] = ACTIONS(1704), - [anon_sym_using] = ACTIONS(1704), - [anon_sym_AMP_AMP] = ACTIONS(1710), - [anon_sym_PIPE_PIPE] = ACTIONS(1710), - [anon_sym_GT_GT] = ACTIONS(1706), - [anon_sym_GT_GT_GT] = ACTIONS(1710), - [anon_sym_LT_LT] = ACTIONS(1710), - [anon_sym_AMP] = ACTIONS(1706), - [anon_sym_CARET] = ACTIONS(1710), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_PLUS] = ACTIONS(1704), - [anon_sym_DASH] = ACTIONS(1704), - [anon_sym_SLASH] = ACTIONS(1704), - [anon_sym_PERCENT] = ACTIONS(1710), - [anon_sym_STAR_STAR] = ACTIONS(1710), - [anon_sym_LT] = ACTIONS(1704), - [anon_sym_LT_EQ] = ACTIONS(1710), - [anon_sym_EQ_EQ] = ACTIONS(1706), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1710), - [anon_sym_BANG_EQ] = ACTIONS(1706), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1710), - [anon_sym_GT_EQ] = ACTIONS(1710), - [anon_sym_QMARK_QMARK] = ACTIONS(1710), - [anon_sym_instanceof] = ACTIONS(1706), - [anon_sym_TILDE] = ACTIONS(1702), - [anon_sym_void] = ACTIONS(1704), - [anon_sym_delete] = ACTIONS(1704), - [anon_sym_PLUS_PLUS] = ACTIONS(1702), - [anon_sym_DASH_DASH] = ACTIONS(1702), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1702), - [sym_number] = ACTIONS(1702), - [sym_private_property_identifier] = ACTIONS(1702), - [sym_this] = ACTIONS(1704), - [sym_super] = ACTIONS(1704), - [sym_true] = ACTIONS(1704), - [sym_false] = ACTIONS(1704), - [sym_null] = ACTIONS(1704), - [sym_undefined] = ACTIONS(1704), - [anon_sym_AT] = ACTIONS(1702), - [anon_sym_static] = ACTIONS(1704), - [anon_sym_readonly] = ACTIONS(1704), - [anon_sym_get] = ACTIONS(1704), - [anon_sym_set] = ACTIONS(1704), - [anon_sym_declare] = ACTIONS(1704), - [anon_sym_public] = ACTIONS(1704), - [anon_sym_private] = ACTIONS(1704), - [anon_sym_protected] = ACTIONS(1704), - [anon_sym_override] = ACTIONS(1704), - [anon_sym_module] = ACTIONS(1704), - [anon_sym_any] = ACTIONS(1704), - [anon_sym_number] = ACTIONS(1704), - [anon_sym_boolean] = ACTIONS(1704), - [anon_sym_string] = ACTIONS(1704), - [anon_sym_symbol] = ACTIONS(1704), - [anon_sym_object] = ACTIONS(1704), - [anon_sym_abstract] = ACTIONS(1704), - [anon_sym_satisfies] = ACTIONS(1706), - [anon_sym_interface] = ACTIONS(1704), - [anon_sym_enum] = ACTIONS(1704), - [sym__automatic_semicolon] = ACTIONS(1712), - [sym__ternary_qmark] = ACTIONS(1710), + [ts_builtin_sym_end] = ACTIONS(1699), + [sym_identifier] = ACTIONS(1701), + [anon_sym_export] = ACTIONS(1701), + [anon_sym_STAR] = ACTIONS(1701), + [anon_sym_default] = ACTIONS(1701), + [anon_sym_type] = ACTIONS(1701), + [anon_sym_as] = ACTIONS(1701), + [anon_sym_namespace] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1699), + [anon_sym_COMMA] = ACTIONS(1699), + [anon_sym_RBRACE] = ACTIONS(1699), + [anon_sym_typeof] = ACTIONS(1701), + [anon_sym_import] = ACTIONS(1701), + [anon_sym_with] = ACTIONS(1701), + [anon_sym_var] = ACTIONS(1701), + [anon_sym_let] = ACTIONS(1701), + [anon_sym_const] = ACTIONS(1701), + [anon_sym_BANG] = ACTIONS(1701), + [anon_sym_else] = ACTIONS(1701), + [anon_sym_if] = ACTIONS(1701), + [anon_sym_switch] = ACTIONS(1701), + [anon_sym_for] = ACTIONS(1701), + [anon_sym_LPAREN] = ACTIONS(1699), + [anon_sym_SEMI] = ACTIONS(1699), + [anon_sym_await] = ACTIONS(1701), + [anon_sym_in] = ACTIONS(1701), + [anon_sym_while] = ACTIONS(1701), + [anon_sym_do] = ACTIONS(1701), + [anon_sym_try] = ACTIONS(1701), + [anon_sym_break] = ACTIONS(1701), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_debugger] = ACTIONS(1701), + [anon_sym_return] = ACTIONS(1701), + [anon_sym_throw] = ACTIONS(1701), + [anon_sym_case] = ACTIONS(1701), + [anon_sym_yield] = ACTIONS(1701), + [anon_sym_LBRACK] = ACTIONS(1699), + [anon_sym_GT] = ACTIONS(1701), + [anon_sym_DOT] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1699), + [anon_sym_SQUOTE] = ACTIONS(1699), + [anon_sym_class] = ACTIONS(1701), + [anon_sym_async] = ACTIONS(1701), + [anon_sym_function] = ACTIONS(1701), + [anon_sym_QMARK_DOT] = ACTIONS(1699), + [anon_sym_new] = ACTIONS(1701), + [anon_sym_using] = ACTIONS(1701), + [anon_sym_AMP_AMP] = ACTIONS(1699), + [anon_sym_PIPE_PIPE] = ACTIONS(1699), + [anon_sym_GT_GT] = ACTIONS(1701), + [anon_sym_GT_GT_GT] = ACTIONS(1699), + [anon_sym_LT_LT] = ACTIONS(1699), + [anon_sym_AMP] = ACTIONS(1701), + [anon_sym_CARET] = ACTIONS(1699), + [anon_sym_PIPE] = ACTIONS(1701), + [anon_sym_PLUS] = ACTIONS(1701), + [anon_sym_DASH] = ACTIONS(1701), + [anon_sym_SLASH] = ACTIONS(1701), + [anon_sym_PERCENT] = ACTIONS(1699), + [anon_sym_STAR_STAR] = ACTIONS(1699), + [anon_sym_LT] = ACTIONS(1701), + [anon_sym_LT_EQ] = ACTIONS(1699), + [anon_sym_EQ_EQ] = ACTIONS(1701), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1699), + [anon_sym_BANG_EQ] = ACTIONS(1701), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1699), + [anon_sym_GT_EQ] = ACTIONS(1699), + [anon_sym_QMARK_QMARK] = ACTIONS(1699), + [anon_sym_instanceof] = ACTIONS(1701), + [anon_sym_TILDE] = ACTIONS(1699), + [anon_sym_void] = ACTIONS(1701), + [anon_sym_delete] = ACTIONS(1701), + [anon_sym_PLUS_PLUS] = ACTIONS(1699), + [anon_sym_DASH_DASH] = ACTIONS(1699), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1699), + [sym_number] = ACTIONS(1699), + [sym_private_property_identifier] = ACTIONS(1699), + [sym_this] = ACTIONS(1701), + [sym_super] = ACTIONS(1701), + [sym_true] = ACTIONS(1701), + [sym_false] = ACTIONS(1701), + [sym_null] = ACTIONS(1701), + [sym_undefined] = ACTIONS(1701), + [anon_sym_AT] = ACTIONS(1699), + [anon_sym_static] = ACTIONS(1701), + [anon_sym_readonly] = ACTIONS(1701), + [anon_sym_get] = ACTIONS(1701), + [anon_sym_set] = ACTIONS(1701), + [anon_sym_declare] = ACTIONS(1701), + [anon_sym_public] = ACTIONS(1701), + [anon_sym_private] = ACTIONS(1701), + [anon_sym_protected] = ACTIONS(1701), + [anon_sym_override] = ACTIONS(1701), + [anon_sym_module] = ACTIONS(1701), + [anon_sym_any] = ACTIONS(1701), + [anon_sym_number] = ACTIONS(1701), + [anon_sym_boolean] = ACTIONS(1701), + [anon_sym_string] = ACTIONS(1701), + [anon_sym_symbol] = ACTIONS(1701), + [anon_sym_object] = ACTIONS(1701), + [anon_sym_abstract] = ACTIONS(1701), + [anon_sym_satisfies] = ACTIONS(1701), + [anon_sym_interface] = ACTIONS(1701), + [anon_sym_enum] = ACTIONS(1701), + [sym__automatic_semicolon] = ACTIONS(1699), + [sym__ternary_qmark] = ACTIONS(1699), [sym_html_comment] = ACTIONS(5), }, [230] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2173), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3740), - [sym_assignment_pattern] = STATE(5450), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3740), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1261), - [sym_subscript_expression] = STATE(1261), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3740), - [sym_spread_element] = STATE(5148), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(5149), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1261), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1622), - [anon_sym_export] = ACTIONS(610), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_COMMA] = ACTIONS(1714), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(610), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_RBRACK] = ACTIONS(1717), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1624), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1628), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(610), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(610), - [anon_sym_number] = ACTIONS(610), - [anon_sym_boolean] = ACTIONS(610), - [anon_sym_string] = ACTIONS(610), - [anon_sym_symbol] = ACTIONS(610), - [anon_sym_object] = ACTIONS(610), + [ts_builtin_sym_end] = ACTIONS(1703), + [sym_identifier] = ACTIONS(1705), + [anon_sym_export] = ACTIONS(1705), + [anon_sym_STAR] = ACTIONS(1707), + [anon_sym_default] = ACTIONS(1705), + [anon_sym_type] = ACTIONS(1705), + [anon_sym_as] = ACTIONS(1707), + [anon_sym_namespace] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_COMMA] = ACTIONS(1709), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_typeof] = ACTIONS(1705), + [anon_sym_import] = ACTIONS(1705), + [anon_sym_with] = ACTIONS(1705), + [anon_sym_var] = ACTIONS(1705), + [anon_sym_let] = ACTIONS(1705), + [anon_sym_const] = ACTIONS(1705), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_else] = ACTIONS(1705), + [anon_sym_if] = ACTIONS(1705), + [anon_sym_switch] = ACTIONS(1705), + [anon_sym_for] = ACTIONS(1705), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_await] = ACTIONS(1705), + [anon_sym_in] = ACTIONS(1707), + [anon_sym_while] = ACTIONS(1705), + [anon_sym_do] = ACTIONS(1705), + [anon_sym_try] = 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_case] = ACTIONS(1705), + [anon_sym_yield] = ACTIONS(1705), + [anon_sym_LBRACK] = ACTIONS(1703), + [anon_sym_GT] = ACTIONS(1707), + [anon_sym_DOT] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1703), + [anon_sym_class] = ACTIONS(1705), + [anon_sym_async] = ACTIONS(1705), + [anon_sym_function] = ACTIONS(1705), + [anon_sym_QMARK_DOT] = ACTIONS(1709), + [anon_sym_new] = ACTIONS(1705), + [anon_sym_using] = ACTIONS(1705), + [anon_sym_AMP_AMP] = ACTIONS(1709), + [anon_sym_PIPE_PIPE] = ACTIONS(1709), + [anon_sym_GT_GT] = ACTIONS(1707), + [anon_sym_GT_GT_GT] = ACTIONS(1709), + [anon_sym_LT_LT] = ACTIONS(1709), + [anon_sym_AMP] = ACTIONS(1707), + [anon_sym_CARET] = ACTIONS(1709), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_SLASH] = ACTIONS(1705), + [anon_sym_PERCENT] = ACTIONS(1709), + [anon_sym_STAR_STAR] = ACTIONS(1709), + [anon_sym_LT] = ACTIONS(1705), + [anon_sym_LT_EQ] = ACTIONS(1709), + [anon_sym_EQ_EQ] = ACTIONS(1707), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1709), + [anon_sym_BANG_EQ] = ACTIONS(1707), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1709), + [anon_sym_GT_EQ] = ACTIONS(1709), + [anon_sym_QMARK_QMARK] = ACTIONS(1709), + [anon_sym_instanceof] = ACTIONS(1707), + [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), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1703), + [sym_number] = ACTIONS(1703), + [sym_private_property_identifier] = 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_readonly] = 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_override] = 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_object] = ACTIONS(1705), + [anon_sym_abstract] = ACTIONS(1705), + [anon_sym_satisfies] = ACTIONS(1707), + [anon_sym_interface] = ACTIONS(1705), + [anon_sym_enum] = ACTIONS(1705), + [sym__automatic_semicolon] = ACTIONS(1711), + [sym__ternary_qmark] = ACTIONS(1709), [sym_html_comment] = ACTIONS(5), }, [231] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2563), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5203), - [sym_assignment_pattern] = STATE(5171), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5203), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1369), - [sym_subscript_expression] = STATE(1369), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5203), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4569), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1369), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [aux_sym_array_pattern_repeat1] = STATE(5199), - [sym_identifier] = ACTIONS(1721), - [anon_sym_export] = ACTIONS(1723), - [anon_sym_type] = ACTIONS(1723), - [anon_sym_namespace] = ACTIONS(1725), - [anon_sym_LBRACE] = ACTIONS(1688), - [anon_sym_COMMA] = ACTIONS(1690), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1723), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_RBRACK] = ACTIONS(1694), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1727), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1729), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1700), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1723), - [anon_sym_readonly] = ACTIONS(1723), - [anon_sym_get] = ACTIONS(1723), - [anon_sym_set] = ACTIONS(1723), - [anon_sym_declare] = ACTIONS(1723), - [anon_sym_public] = ACTIONS(1723), - [anon_sym_private] = ACTIONS(1723), - [anon_sym_protected] = ACTIONS(1723), - [anon_sym_override] = ACTIONS(1723), - [anon_sym_module] = ACTIONS(1723), - [anon_sym_any] = ACTIONS(1723), - [anon_sym_number] = ACTIONS(1723), - [anon_sym_boolean] = ACTIONS(1723), - [anon_sym_string] = ACTIONS(1723), - [anon_sym_symbol] = ACTIONS(1723), - [anon_sym_object] = ACTIONS(1723), + [ts_builtin_sym_end] = ACTIONS(1713), + [sym_identifier] = ACTIONS(1715), + [anon_sym_export] = ACTIONS(1715), + [anon_sym_STAR] = ACTIONS(1717), + [anon_sym_default] = ACTIONS(1715), + [anon_sym_type] = ACTIONS(1715), + [anon_sym_as] = ACTIONS(1717), + [anon_sym_namespace] = ACTIONS(1715), + [anon_sym_LBRACE] = ACTIONS(1713), + [anon_sym_COMMA] = ACTIONS(1719), + [anon_sym_RBRACE] = ACTIONS(1713), + [anon_sym_typeof] = ACTIONS(1715), + [anon_sym_import] = ACTIONS(1715), + [anon_sym_with] = ACTIONS(1715), + [anon_sym_var] = ACTIONS(1715), + [anon_sym_let] = ACTIONS(1715), + [anon_sym_const] = ACTIONS(1715), + [anon_sym_BANG] = ACTIONS(1715), + [anon_sym_else] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1715), + [anon_sym_switch] = ACTIONS(1715), + [anon_sym_for] = ACTIONS(1715), + [anon_sym_LPAREN] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1713), + [anon_sym_await] = ACTIONS(1715), + [anon_sym_in] = ACTIONS(1717), + [anon_sym_while] = ACTIONS(1715), + [anon_sym_do] = ACTIONS(1715), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_break] = ACTIONS(1715), + [anon_sym_continue] = ACTIONS(1715), + [anon_sym_debugger] = ACTIONS(1715), + [anon_sym_return] = ACTIONS(1715), + [anon_sym_throw] = ACTIONS(1715), + [anon_sym_case] = ACTIONS(1715), + [anon_sym_yield] = ACTIONS(1715), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_GT] = ACTIONS(1717), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_DQUOTE] = ACTIONS(1713), + [anon_sym_SQUOTE] = ACTIONS(1713), + [anon_sym_class] = ACTIONS(1715), + [anon_sym_async] = ACTIONS(1715), + [anon_sym_function] = ACTIONS(1715), + [anon_sym_QMARK_DOT] = ACTIONS(1719), + [anon_sym_new] = ACTIONS(1715), + [anon_sym_using] = ACTIONS(1715), + [anon_sym_AMP_AMP] = ACTIONS(1719), + [anon_sym_PIPE_PIPE] = ACTIONS(1719), + [anon_sym_GT_GT] = ACTIONS(1717), + [anon_sym_GT_GT_GT] = ACTIONS(1719), + [anon_sym_LT_LT] = ACTIONS(1719), + [anon_sym_AMP] = ACTIONS(1717), + [anon_sym_CARET] = ACTIONS(1719), + [anon_sym_PIPE] = ACTIONS(1717), + [anon_sym_PLUS] = ACTIONS(1715), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_SLASH] = ACTIONS(1715), + [anon_sym_PERCENT] = ACTIONS(1719), + [anon_sym_STAR_STAR] = ACTIONS(1719), + [anon_sym_LT] = ACTIONS(1715), + [anon_sym_LT_EQ] = ACTIONS(1719), + [anon_sym_EQ_EQ] = ACTIONS(1717), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1719), + [anon_sym_BANG_EQ] = ACTIONS(1717), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1719), + [anon_sym_GT_EQ] = ACTIONS(1719), + [anon_sym_QMARK_QMARK] = ACTIONS(1719), + [anon_sym_instanceof] = ACTIONS(1717), + [anon_sym_TILDE] = ACTIONS(1713), + [anon_sym_void] = ACTIONS(1715), + [anon_sym_delete] = ACTIONS(1715), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1713), + [sym_number] = ACTIONS(1713), + [sym_private_property_identifier] = ACTIONS(1713), + [sym_this] = ACTIONS(1715), + [sym_super] = ACTIONS(1715), + [sym_true] = ACTIONS(1715), + [sym_false] = ACTIONS(1715), + [sym_null] = ACTIONS(1715), + [sym_undefined] = ACTIONS(1715), + [anon_sym_AT] = ACTIONS(1713), + [anon_sym_static] = ACTIONS(1715), + [anon_sym_readonly] = ACTIONS(1715), + [anon_sym_get] = ACTIONS(1715), + [anon_sym_set] = ACTIONS(1715), + [anon_sym_declare] = ACTIONS(1715), + [anon_sym_public] = ACTIONS(1715), + [anon_sym_private] = ACTIONS(1715), + [anon_sym_protected] = ACTIONS(1715), + [anon_sym_override] = ACTIONS(1715), + [anon_sym_module] = ACTIONS(1715), + [anon_sym_any] = ACTIONS(1715), + [anon_sym_number] = ACTIONS(1715), + [anon_sym_boolean] = ACTIONS(1715), + [anon_sym_string] = ACTIONS(1715), + [anon_sym_symbol] = ACTIONS(1715), + [anon_sym_object] = ACTIONS(1715), + [anon_sym_abstract] = ACTIONS(1715), + [anon_sym_satisfies] = ACTIONS(1717), + [anon_sym_interface] = ACTIONS(1715), + [anon_sym_enum] = ACTIONS(1715), + [sym__automatic_semicolon] = ACTIONS(1721), + [sym__ternary_qmark] = ACTIONS(1719), [sym_html_comment] = ACTIONS(5), }, [232] = { - [ts_builtin_sym_end] = ACTIONS(1731), - [sym_identifier] = ACTIONS(1733), - [anon_sym_export] = ACTIONS(1733), - [anon_sym_STAR] = ACTIONS(1733), - [anon_sym_default] = ACTIONS(1733), - [anon_sym_type] = ACTIONS(1733), - [anon_sym_as] = ACTIONS(1733), - [anon_sym_namespace] = ACTIONS(1733), - [anon_sym_LBRACE] = ACTIONS(1731), - [anon_sym_COMMA] = ACTIONS(1731), - [anon_sym_RBRACE] = ACTIONS(1731), - [anon_sym_typeof] = ACTIONS(1733), - [anon_sym_import] = ACTIONS(1733), - [anon_sym_with] = ACTIONS(1733), - [anon_sym_var] = ACTIONS(1733), - [anon_sym_let] = ACTIONS(1733), - [anon_sym_const] = ACTIONS(1733), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_else] = ACTIONS(1733), - [anon_sym_if] = ACTIONS(1733), - [anon_sym_switch] = ACTIONS(1733), - [anon_sym_for] = ACTIONS(1733), - [anon_sym_LPAREN] = ACTIONS(1731), - [anon_sym_SEMI] = ACTIONS(1731), - [anon_sym_await] = ACTIONS(1733), - [anon_sym_in] = ACTIONS(1733), - [anon_sym_while] = ACTIONS(1733), - [anon_sym_do] = ACTIONS(1733), - [anon_sym_try] = ACTIONS(1733), - [anon_sym_break] = ACTIONS(1733), - [anon_sym_continue] = ACTIONS(1733), - [anon_sym_debugger] = ACTIONS(1733), - [anon_sym_return] = ACTIONS(1733), - [anon_sym_throw] = ACTIONS(1733), - [anon_sym_case] = ACTIONS(1733), - [anon_sym_yield] = ACTIONS(1733), - [anon_sym_LBRACK] = ACTIONS(1731), - [sym_glimmer_opening_tag] = ACTIONS(1731), - [anon_sym_GT] = ACTIONS(1733), - [anon_sym_DOT] = ACTIONS(1733), - [anon_sym_DQUOTE] = ACTIONS(1731), - [anon_sym_SQUOTE] = ACTIONS(1731), - [anon_sym_class] = ACTIONS(1733), - [anon_sym_async] = ACTIONS(1733), - [anon_sym_function] = ACTIONS(1733), - [anon_sym_QMARK_DOT] = ACTIONS(1731), - [anon_sym_new] = ACTIONS(1733), - [anon_sym_using] = ACTIONS(1733), - [anon_sym_AMP_AMP] = ACTIONS(1731), - [anon_sym_PIPE_PIPE] = ACTIONS(1731), - [anon_sym_GT_GT] = ACTIONS(1733), - [anon_sym_GT_GT_GT] = ACTIONS(1731), - [anon_sym_LT_LT] = ACTIONS(1731), - [anon_sym_AMP] = ACTIONS(1733), - [anon_sym_CARET] = ACTIONS(1731), - [anon_sym_PIPE] = ACTIONS(1733), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1733), - [anon_sym_SLASH] = ACTIONS(1733), - [anon_sym_PERCENT] = ACTIONS(1731), - [anon_sym_STAR_STAR] = ACTIONS(1731), - [anon_sym_LT] = ACTIONS(1733), - [anon_sym_LT_EQ] = ACTIONS(1731), - [anon_sym_EQ_EQ] = ACTIONS(1733), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1731), - [anon_sym_BANG_EQ] = ACTIONS(1733), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1731), - [anon_sym_GT_EQ] = ACTIONS(1731), - [anon_sym_QMARK_QMARK] = ACTIONS(1731), - [anon_sym_instanceof] = ACTIONS(1733), - [anon_sym_TILDE] = ACTIONS(1731), - [anon_sym_void] = ACTIONS(1733), - [anon_sym_delete] = ACTIONS(1733), - [anon_sym_PLUS_PLUS] = ACTIONS(1731), - [anon_sym_DASH_DASH] = ACTIONS(1731), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1731), - [sym_number] = ACTIONS(1731), - [sym_private_property_identifier] = ACTIONS(1731), - [sym_this] = ACTIONS(1733), - [sym_super] = ACTIONS(1733), - [sym_true] = ACTIONS(1733), - [sym_false] = ACTIONS(1733), - [sym_null] = ACTIONS(1733), - [sym_undefined] = ACTIONS(1733), - [anon_sym_AT] = ACTIONS(1731), - [anon_sym_static] = ACTIONS(1733), - [anon_sym_readonly] = ACTIONS(1733), - [anon_sym_get] = ACTIONS(1733), - [anon_sym_set] = ACTIONS(1733), - [anon_sym_declare] = ACTIONS(1733), - [anon_sym_public] = ACTIONS(1733), - [anon_sym_private] = ACTIONS(1733), - [anon_sym_protected] = ACTIONS(1733), - [anon_sym_override] = ACTIONS(1733), - [anon_sym_module] = ACTIONS(1733), - [anon_sym_any] = ACTIONS(1733), - [anon_sym_number] = ACTIONS(1733), - [anon_sym_boolean] = ACTIONS(1733), - [anon_sym_string] = ACTIONS(1733), - [anon_sym_symbol] = ACTIONS(1733), - [anon_sym_object] = ACTIONS(1733), - [anon_sym_abstract] = ACTIONS(1733), - [anon_sym_satisfies] = ACTIONS(1733), - [anon_sym_interface] = ACTIONS(1733), - [anon_sym_enum] = ACTIONS(1733), - [sym__automatic_semicolon] = ACTIONS(1731), - [sym__ternary_qmark] = ACTIONS(1731), + [ts_builtin_sym_end] = ACTIONS(1723), + [sym_identifier] = ACTIONS(1725), + [anon_sym_export] = ACTIONS(1725), + [anon_sym_STAR] = ACTIONS(1725), + [anon_sym_default] = ACTIONS(1725), + [anon_sym_type] = ACTIONS(1725), + [anon_sym_as] = ACTIONS(1725), + [anon_sym_namespace] = ACTIONS(1725), + [anon_sym_LBRACE] = ACTIONS(1723), + [anon_sym_COMMA] = ACTIONS(1723), + [anon_sym_RBRACE] = ACTIONS(1723), + [anon_sym_typeof] = ACTIONS(1725), + [anon_sym_import] = ACTIONS(1725), + [anon_sym_with] = ACTIONS(1725), + [anon_sym_var] = ACTIONS(1725), + [anon_sym_let] = ACTIONS(1725), + [anon_sym_const] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1725), + [anon_sym_else] = ACTIONS(1725), + [anon_sym_if] = ACTIONS(1725), + [anon_sym_switch] = ACTIONS(1725), + [anon_sym_for] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1723), + [anon_sym_SEMI] = ACTIONS(1723), + [anon_sym_await] = ACTIONS(1725), + [anon_sym_in] = ACTIONS(1725), + [anon_sym_while] = ACTIONS(1725), + [anon_sym_do] = ACTIONS(1725), + [anon_sym_try] = 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_case] = ACTIONS(1725), + [anon_sym_yield] = ACTIONS(1725), + [anon_sym_LBRACK] = ACTIONS(1723), + [anon_sym_GT] = ACTIONS(1725), + [anon_sym_DOT] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_class] = ACTIONS(1725), + [anon_sym_async] = ACTIONS(1725), + [anon_sym_function] = ACTIONS(1725), + [anon_sym_QMARK_DOT] = ACTIONS(1723), + [anon_sym_new] = ACTIONS(1725), + [anon_sym_using] = ACTIONS(1725), + [anon_sym_AMP_AMP] = ACTIONS(1723), + [anon_sym_PIPE_PIPE] = ACTIONS(1723), + [anon_sym_GT_GT] = ACTIONS(1725), + [anon_sym_GT_GT_GT] = ACTIONS(1723), + [anon_sym_LT_LT] = ACTIONS(1723), + [anon_sym_AMP] = ACTIONS(1725), + [anon_sym_CARET] = ACTIONS(1723), + [anon_sym_PIPE] = ACTIONS(1725), + [anon_sym_PLUS] = ACTIONS(1725), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_SLASH] = ACTIONS(1725), + [anon_sym_PERCENT] = ACTIONS(1723), + [anon_sym_STAR_STAR] = ACTIONS(1723), + [anon_sym_LT] = ACTIONS(1725), + [anon_sym_LT_EQ] = ACTIONS(1723), + [anon_sym_EQ_EQ] = ACTIONS(1725), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1723), + [anon_sym_BANG_EQ] = ACTIONS(1725), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1723), + [anon_sym_GT_EQ] = ACTIONS(1723), + [anon_sym_QMARK_QMARK] = ACTIONS(1723), + [anon_sym_instanceof] = 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), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1723), + [sym_number] = ACTIONS(1723), + [sym_private_property_identifier] = 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_readonly] = 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_override] = 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_object] = ACTIONS(1725), + [anon_sym_abstract] = ACTIONS(1725), + [anon_sym_satisfies] = ACTIONS(1725), + [anon_sym_interface] = ACTIONS(1725), + [anon_sym_enum] = ACTIONS(1725), + [sym__automatic_semicolon] = ACTIONS(1723), + [sym__ternary_qmark] = ACTIONS(1723), [sym_html_comment] = ACTIONS(5), }, [233] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2173), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3740), - [sym_assignment_pattern] = STATE(5450), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3740), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1261), - [sym_subscript_expression] = STATE(1261), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3740), - [sym_spread_element] = STATE(5148), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(5149), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1261), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1622), - [anon_sym_export] = ACTIONS(610), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_COMMA] = ACTIONS(1714), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(610), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_RBRACK] = ACTIONS(1714), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1624), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1628), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(610), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(610), - [anon_sym_number] = ACTIONS(610), - [anon_sym_boolean] = ACTIONS(610), - [anon_sym_string] = ACTIONS(610), - [anon_sym_symbol] = ACTIONS(610), - [anon_sym_object] = ACTIONS(610), + [ts_builtin_sym_end] = ACTIONS(1727), + [sym_identifier] = ACTIONS(1729), + [anon_sym_export] = ACTIONS(1729), + [anon_sym_STAR] = ACTIONS(1731), + [anon_sym_default] = ACTIONS(1729), + [anon_sym_type] = ACTIONS(1729), + [anon_sym_as] = ACTIONS(1731), + [anon_sym_namespace] = ACTIONS(1729), + [anon_sym_LBRACE] = ACTIONS(1727), + [anon_sym_COMMA] = ACTIONS(1733), + [anon_sym_RBRACE] = ACTIONS(1727), + [anon_sym_typeof] = ACTIONS(1729), + [anon_sym_import] = ACTIONS(1729), + [anon_sym_with] = ACTIONS(1729), + [anon_sym_var] = ACTIONS(1729), + [anon_sym_let] = ACTIONS(1729), + [anon_sym_const] = ACTIONS(1729), + [anon_sym_BANG] = ACTIONS(1729), + [anon_sym_else] = ACTIONS(1729), + [anon_sym_if] = ACTIONS(1729), + [anon_sym_switch] = ACTIONS(1729), + [anon_sym_for] = ACTIONS(1729), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_SEMI] = ACTIONS(1727), + [anon_sym_await] = ACTIONS(1729), + [anon_sym_in] = ACTIONS(1731), + [anon_sym_while] = ACTIONS(1729), + [anon_sym_do] = ACTIONS(1729), + [anon_sym_try] = 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_case] = ACTIONS(1729), + [anon_sym_yield] = ACTIONS(1729), + [anon_sym_LBRACK] = ACTIONS(1727), + [anon_sym_GT] = ACTIONS(1731), + [anon_sym_DOT] = ACTIONS(1731), + [anon_sym_DQUOTE] = ACTIONS(1727), + [anon_sym_SQUOTE] = ACTIONS(1727), + [anon_sym_class] = ACTIONS(1729), + [anon_sym_async] = ACTIONS(1729), + [anon_sym_function] = ACTIONS(1729), + [anon_sym_QMARK_DOT] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(1729), + [anon_sym_using] = ACTIONS(1729), + [anon_sym_AMP_AMP] = ACTIONS(1733), + [anon_sym_PIPE_PIPE] = ACTIONS(1733), + [anon_sym_GT_GT] = ACTIONS(1731), + [anon_sym_GT_GT_GT] = ACTIONS(1733), + [anon_sym_LT_LT] = ACTIONS(1733), + [anon_sym_AMP] = ACTIONS(1731), + [anon_sym_CARET] = ACTIONS(1733), + [anon_sym_PIPE] = ACTIONS(1731), + [anon_sym_PLUS] = ACTIONS(1729), + [anon_sym_DASH] = ACTIONS(1729), + [anon_sym_SLASH] = ACTIONS(1729), + [anon_sym_PERCENT] = ACTIONS(1733), + [anon_sym_STAR_STAR] = ACTIONS(1733), + [anon_sym_LT] = ACTIONS(1729), + [anon_sym_LT_EQ] = ACTIONS(1733), + [anon_sym_EQ_EQ] = ACTIONS(1731), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1733), + [anon_sym_BANG_EQ] = ACTIONS(1731), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1733), + [anon_sym_GT_EQ] = ACTIONS(1733), + [anon_sym_QMARK_QMARK] = ACTIONS(1733), + [anon_sym_instanceof] = ACTIONS(1731), + [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), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1727), + [sym_number] = ACTIONS(1727), + [sym_private_property_identifier] = 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_readonly] = 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_override] = 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_object] = ACTIONS(1729), + [anon_sym_abstract] = ACTIONS(1729), + [anon_sym_satisfies] = ACTIONS(1731), + [anon_sym_interface] = ACTIONS(1729), + [anon_sym_enum] = ACTIONS(1729), + [sym__automatic_semicolon] = ACTIONS(1735), + [sym__ternary_qmark] = ACTIONS(1733), [sym_html_comment] = ACTIONS(5), }, [234] = { - [ts_builtin_sym_end] = ACTIONS(1735), - [sym_identifier] = ACTIONS(1737), - [anon_sym_export] = ACTIONS(1737), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_default] = ACTIONS(1737), - [anon_sym_type] = ACTIONS(1737), - [anon_sym_as] = ACTIONS(1737), - [anon_sym_namespace] = ACTIONS(1737), - [anon_sym_LBRACE] = ACTIONS(1735), - [anon_sym_COMMA] = ACTIONS(1735), - [anon_sym_RBRACE] = ACTIONS(1735), - [anon_sym_typeof] = ACTIONS(1737), - [anon_sym_import] = ACTIONS(1737), - [anon_sym_with] = ACTIONS(1737), - [anon_sym_var] = ACTIONS(1737), - [anon_sym_let] = ACTIONS(1737), - [anon_sym_const] = ACTIONS(1737), - [anon_sym_BANG] = ACTIONS(1737), - [anon_sym_else] = ACTIONS(1737), - [anon_sym_if] = ACTIONS(1737), - [anon_sym_switch] = ACTIONS(1737), - [anon_sym_for] = ACTIONS(1737), - [anon_sym_LPAREN] = ACTIONS(1735), - [anon_sym_SEMI] = ACTIONS(1735), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_in] = ACTIONS(1737), - [anon_sym_while] = ACTIONS(1737), - [anon_sym_do] = ACTIONS(1737), - [anon_sym_try] = ACTIONS(1737), - [anon_sym_break] = ACTIONS(1737), - [anon_sym_continue] = ACTIONS(1737), - [anon_sym_debugger] = ACTIONS(1737), - [anon_sym_return] = ACTIONS(1737), - [anon_sym_throw] = ACTIONS(1737), - [anon_sym_case] = ACTIONS(1737), - [anon_sym_yield] = ACTIONS(1737), - [anon_sym_LBRACK] = ACTIONS(1735), - [sym_glimmer_opening_tag] = ACTIONS(1735), - [anon_sym_GT] = ACTIONS(1737), - [anon_sym_DOT] = ACTIONS(1737), - [anon_sym_DQUOTE] = ACTIONS(1735), - [anon_sym_SQUOTE] = ACTIONS(1735), - [anon_sym_class] = ACTIONS(1737), - [anon_sym_async] = ACTIONS(1737), - [anon_sym_function] = ACTIONS(1737), - [anon_sym_QMARK_DOT] = ACTIONS(1735), - [anon_sym_new] = ACTIONS(1737), - [anon_sym_using] = ACTIONS(1737), - [anon_sym_AMP_AMP] = ACTIONS(1735), - [anon_sym_PIPE_PIPE] = ACTIONS(1735), - [anon_sym_GT_GT] = ACTIONS(1737), - [anon_sym_GT_GT_GT] = ACTIONS(1735), - [anon_sym_LT_LT] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1737), - [anon_sym_PLUS] = ACTIONS(1737), - [anon_sym_DASH] = ACTIONS(1737), - [anon_sym_SLASH] = ACTIONS(1737), - [anon_sym_PERCENT] = ACTIONS(1735), - [anon_sym_STAR_STAR] = ACTIONS(1735), - [anon_sym_LT] = ACTIONS(1737), - [anon_sym_LT_EQ] = ACTIONS(1735), - [anon_sym_EQ_EQ] = ACTIONS(1737), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1735), - [anon_sym_BANG_EQ] = ACTIONS(1737), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1735), - [anon_sym_GT_EQ] = ACTIONS(1735), - [anon_sym_QMARK_QMARK] = ACTIONS(1735), - [anon_sym_instanceof] = ACTIONS(1737), - [anon_sym_TILDE] = ACTIONS(1735), - [anon_sym_void] = ACTIONS(1737), - [anon_sym_delete] = ACTIONS(1737), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_DASH_DASH] = ACTIONS(1735), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1735), - [sym_number] = ACTIONS(1735), - [sym_private_property_identifier] = ACTIONS(1735), - [sym_this] = ACTIONS(1737), - [sym_super] = ACTIONS(1737), - [sym_true] = ACTIONS(1737), - [sym_false] = ACTIONS(1737), - [sym_null] = ACTIONS(1737), - [sym_undefined] = ACTIONS(1737), - [anon_sym_AT] = ACTIONS(1735), - [anon_sym_static] = ACTIONS(1737), - [anon_sym_readonly] = ACTIONS(1737), - [anon_sym_get] = ACTIONS(1737), - [anon_sym_set] = ACTIONS(1737), - [anon_sym_declare] = ACTIONS(1737), - [anon_sym_public] = ACTIONS(1737), - [anon_sym_private] = ACTIONS(1737), - [anon_sym_protected] = ACTIONS(1737), - [anon_sym_override] = ACTIONS(1737), - [anon_sym_module] = ACTIONS(1737), - [anon_sym_any] = ACTIONS(1737), - [anon_sym_number] = ACTIONS(1737), - [anon_sym_boolean] = ACTIONS(1737), - [anon_sym_string] = ACTIONS(1737), - [anon_sym_symbol] = ACTIONS(1737), - [anon_sym_object] = ACTIONS(1737), - [anon_sym_abstract] = ACTIONS(1737), - [anon_sym_satisfies] = ACTIONS(1737), - [anon_sym_interface] = ACTIONS(1737), - [anon_sym_enum] = ACTIONS(1737), - [sym__automatic_semicolon] = ACTIONS(1735), - [sym__ternary_qmark] = ACTIONS(1735), + [ts_builtin_sym_end] = ACTIONS(1737), + [sym_identifier] = ACTIONS(1739), + [anon_sym_export] = ACTIONS(1739), + [anon_sym_STAR] = ACTIONS(1739), + [anon_sym_default] = ACTIONS(1739), + [anon_sym_type] = ACTIONS(1739), + [anon_sym_as] = ACTIONS(1739), + [anon_sym_namespace] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1737), + [anon_sym_COMMA] = ACTIONS(1737), + [anon_sym_RBRACE] = ACTIONS(1737), + [anon_sym_typeof] = ACTIONS(1739), + [anon_sym_import] = ACTIONS(1739), + [anon_sym_with] = ACTIONS(1739), + [anon_sym_var] = ACTIONS(1739), + [anon_sym_let] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1739), + [anon_sym_else] = ACTIONS(1739), + [anon_sym_if] = ACTIONS(1739), + [anon_sym_switch] = ACTIONS(1739), + [anon_sym_for] = ACTIONS(1739), + [anon_sym_LPAREN] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1737), + [anon_sym_await] = ACTIONS(1739), + [anon_sym_in] = ACTIONS(1739), + [anon_sym_while] = ACTIONS(1739), + [anon_sym_do] = ACTIONS(1739), + [anon_sym_try] = 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_case] = ACTIONS(1739), + [anon_sym_yield] = ACTIONS(1739), + [anon_sym_LBRACK] = ACTIONS(1737), + [anon_sym_GT] = ACTIONS(1739), + [anon_sym_DOT] = ACTIONS(1739), + [anon_sym_DQUOTE] = ACTIONS(1737), + [anon_sym_SQUOTE] = ACTIONS(1737), + [anon_sym_class] = ACTIONS(1739), + [anon_sym_async] = ACTIONS(1739), + [anon_sym_function] = ACTIONS(1739), + [anon_sym_QMARK_DOT] = ACTIONS(1737), + [anon_sym_new] = ACTIONS(1739), + [anon_sym_using] = ACTIONS(1739), + [anon_sym_AMP_AMP] = ACTIONS(1737), + [anon_sym_PIPE_PIPE] = ACTIONS(1737), + [anon_sym_GT_GT] = ACTIONS(1739), + [anon_sym_GT_GT_GT] = ACTIONS(1737), + [anon_sym_LT_LT] = ACTIONS(1737), + [anon_sym_AMP] = ACTIONS(1739), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PIPE] = ACTIONS(1739), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_SLASH] = ACTIONS(1739), + [anon_sym_PERCENT] = ACTIONS(1737), + [anon_sym_STAR_STAR] = ACTIONS(1737), + [anon_sym_LT] = ACTIONS(1739), + [anon_sym_LT_EQ] = ACTIONS(1737), + [anon_sym_EQ_EQ] = ACTIONS(1739), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1737), + [anon_sym_BANG_EQ] = ACTIONS(1739), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1737), + [anon_sym_GT_EQ] = ACTIONS(1737), + [anon_sym_QMARK_QMARK] = ACTIONS(1737), + [anon_sym_instanceof] = 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), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1737), + [sym_number] = ACTIONS(1737), + [sym_private_property_identifier] = 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_readonly] = 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_override] = 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_object] = ACTIONS(1739), + [anon_sym_abstract] = ACTIONS(1739), + [anon_sym_satisfies] = ACTIONS(1739), + [anon_sym_interface] = ACTIONS(1739), + [anon_sym_enum] = ACTIONS(1739), + [sym__automatic_semicolon] = ACTIONS(1737), + [sym__ternary_qmark] = ACTIONS(1737), [sym_html_comment] = ACTIONS(5), }, [235] = { - [ts_builtin_sym_end] = ACTIONS(1739), - [sym_identifier] = ACTIONS(1741), - [anon_sym_export] = ACTIONS(1741), - [anon_sym_STAR] = ACTIONS(1741), - [anon_sym_default] = ACTIONS(1741), - [anon_sym_type] = ACTIONS(1741), - [anon_sym_as] = ACTIONS(1741), - [anon_sym_namespace] = ACTIONS(1741), - [anon_sym_LBRACE] = ACTIONS(1739), - [anon_sym_COMMA] = ACTIONS(1739), - [anon_sym_RBRACE] = ACTIONS(1739), - [anon_sym_typeof] = ACTIONS(1741), - [anon_sym_import] = ACTIONS(1741), - [anon_sym_with] = ACTIONS(1741), - [anon_sym_var] = ACTIONS(1741), - [anon_sym_let] = ACTIONS(1741), - [anon_sym_const] = ACTIONS(1741), - [anon_sym_BANG] = ACTIONS(1741), - [anon_sym_else] = ACTIONS(1741), - [anon_sym_if] = ACTIONS(1741), - [anon_sym_switch] = ACTIONS(1741), - [anon_sym_for] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1739), - [anon_sym_SEMI] = ACTIONS(1739), - [anon_sym_await] = ACTIONS(1741), - [anon_sym_in] = ACTIONS(1741), - [anon_sym_while] = ACTIONS(1741), - [anon_sym_do] = ACTIONS(1741), - [anon_sym_try] = ACTIONS(1741), - [anon_sym_break] = ACTIONS(1741), - [anon_sym_continue] = ACTIONS(1741), - [anon_sym_debugger] = ACTIONS(1741), - [anon_sym_return] = ACTIONS(1741), - [anon_sym_throw] = ACTIONS(1741), - [anon_sym_case] = ACTIONS(1741), - [anon_sym_yield] = ACTIONS(1741), - [anon_sym_LBRACK] = ACTIONS(1739), - [sym_glimmer_opening_tag] = ACTIONS(1739), - [anon_sym_GT] = ACTIONS(1741), - [anon_sym_DOT] = ACTIONS(1741), - [anon_sym_DQUOTE] = ACTIONS(1739), - [anon_sym_SQUOTE] = ACTIONS(1739), - [anon_sym_class] = ACTIONS(1741), - [anon_sym_async] = ACTIONS(1741), - [anon_sym_function] = ACTIONS(1741), - [anon_sym_QMARK_DOT] = ACTIONS(1739), - [anon_sym_new] = ACTIONS(1741), - [anon_sym_using] = ACTIONS(1741), - [anon_sym_AMP_AMP] = ACTIONS(1739), - [anon_sym_PIPE_PIPE] = ACTIONS(1739), - [anon_sym_GT_GT] = ACTIONS(1741), - [anon_sym_GT_GT_GT] = ACTIONS(1739), - [anon_sym_LT_LT] = ACTIONS(1739), - [anon_sym_AMP] = ACTIONS(1741), - [anon_sym_CARET] = ACTIONS(1739), - [anon_sym_PIPE] = ACTIONS(1741), - [anon_sym_PLUS] = ACTIONS(1741), - [anon_sym_DASH] = ACTIONS(1741), - [anon_sym_SLASH] = ACTIONS(1741), - [anon_sym_PERCENT] = ACTIONS(1739), - [anon_sym_STAR_STAR] = ACTIONS(1739), - [anon_sym_LT] = ACTIONS(1741), - [anon_sym_LT_EQ] = ACTIONS(1739), - [anon_sym_EQ_EQ] = ACTIONS(1741), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1739), - [anon_sym_BANG_EQ] = ACTIONS(1741), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1739), - [anon_sym_GT_EQ] = ACTIONS(1739), - [anon_sym_QMARK_QMARK] = ACTIONS(1739), - [anon_sym_instanceof] = ACTIONS(1741), - [anon_sym_TILDE] = ACTIONS(1739), - [anon_sym_void] = ACTIONS(1741), - [anon_sym_delete] = ACTIONS(1741), - [anon_sym_PLUS_PLUS] = ACTIONS(1739), - [anon_sym_DASH_DASH] = ACTIONS(1739), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1739), - [sym_number] = ACTIONS(1739), - [sym_private_property_identifier] = ACTIONS(1739), - [sym_this] = ACTIONS(1741), - [sym_super] = ACTIONS(1741), - [sym_true] = ACTIONS(1741), - [sym_false] = ACTIONS(1741), - [sym_null] = ACTIONS(1741), - [sym_undefined] = ACTIONS(1741), - [anon_sym_AT] = ACTIONS(1739), - [anon_sym_static] = ACTIONS(1741), - [anon_sym_readonly] = ACTIONS(1741), - [anon_sym_get] = ACTIONS(1741), - [anon_sym_set] = ACTIONS(1741), - [anon_sym_declare] = ACTIONS(1741), - [anon_sym_public] = ACTIONS(1741), - [anon_sym_private] = ACTIONS(1741), - [anon_sym_protected] = ACTIONS(1741), - [anon_sym_override] = ACTIONS(1741), - [anon_sym_module] = ACTIONS(1741), - [anon_sym_any] = ACTIONS(1741), - [anon_sym_number] = ACTIONS(1741), - [anon_sym_boolean] = ACTIONS(1741), - [anon_sym_string] = ACTIONS(1741), - [anon_sym_symbol] = ACTIONS(1741), - [anon_sym_object] = ACTIONS(1741), - [anon_sym_abstract] = ACTIONS(1741), - [anon_sym_satisfies] = ACTIONS(1741), - [anon_sym_interface] = ACTIONS(1741), - [anon_sym_enum] = ACTIONS(1741), - [sym__automatic_semicolon] = ACTIONS(1739), - [sym__ternary_qmark] = ACTIONS(1739), + [ts_builtin_sym_end] = ACTIONS(1741), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1743), + [anon_sym_STAR] = ACTIONS(1745), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_type] = ACTIONS(1743), + [anon_sym_as] = ACTIONS(1745), + [anon_sym_namespace] = ACTIONS(1743), + [anon_sym_LBRACE] = ACTIONS(1741), + [anon_sym_COMMA] = ACTIONS(1747), + [anon_sym_RBRACE] = ACTIONS(1741), + [anon_sym_typeof] = ACTIONS(1743), + [anon_sym_import] = ACTIONS(1743), + [anon_sym_with] = ACTIONS(1743), + [anon_sym_var] = ACTIONS(1743), + [anon_sym_let] = ACTIONS(1743), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_BANG] = ACTIONS(1743), + [anon_sym_else] = ACTIONS(1743), + [anon_sym_if] = ACTIONS(1743), + [anon_sym_switch] = ACTIONS(1743), + [anon_sym_for] = ACTIONS(1743), + [anon_sym_LPAREN] = ACTIONS(1741), + [anon_sym_SEMI] = ACTIONS(1741), + [anon_sym_await] = ACTIONS(1743), + [anon_sym_in] = ACTIONS(1745), + [anon_sym_while] = ACTIONS(1743), + [anon_sym_do] = ACTIONS(1743), + [anon_sym_try] = 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_case] = ACTIONS(1743), + [anon_sym_yield] = ACTIONS(1743), + [anon_sym_LBRACK] = ACTIONS(1741), + [anon_sym_GT] = ACTIONS(1745), + [anon_sym_DOT] = ACTIONS(1745), + [anon_sym_DQUOTE] = ACTIONS(1741), + [anon_sym_SQUOTE] = ACTIONS(1741), + [anon_sym_class] = ACTIONS(1743), + [anon_sym_async] = ACTIONS(1743), + [anon_sym_function] = ACTIONS(1743), + [anon_sym_QMARK_DOT] = ACTIONS(1747), + [anon_sym_new] = ACTIONS(1743), + [anon_sym_using] = ACTIONS(1743), + [anon_sym_AMP_AMP] = ACTIONS(1747), + [anon_sym_PIPE_PIPE] = ACTIONS(1747), + [anon_sym_GT_GT] = ACTIONS(1745), + [anon_sym_GT_GT_GT] = ACTIONS(1747), + [anon_sym_LT_LT] = ACTIONS(1747), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_CARET] = ACTIONS(1747), + [anon_sym_PIPE] = ACTIONS(1745), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_SLASH] = ACTIONS(1743), + [anon_sym_PERCENT] = ACTIONS(1747), + [anon_sym_STAR_STAR] = ACTIONS(1747), + [anon_sym_LT] = ACTIONS(1743), + [anon_sym_LT_EQ] = ACTIONS(1747), + [anon_sym_EQ_EQ] = ACTIONS(1745), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1747), + [anon_sym_BANG_EQ] = ACTIONS(1745), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1747), + [anon_sym_GT_EQ] = ACTIONS(1747), + [anon_sym_QMARK_QMARK] = ACTIONS(1747), + [anon_sym_instanceof] = ACTIONS(1745), + [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), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1741), + [sym_number] = ACTIONS(1741), + [sym_private_property_identifier] = 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_readonly] = 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_override] = 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_object] = ACTIONS(1743), + [anon_sym_abstract] = ACTIONS(1743), + [anon_sym_satisfies] = ACTIONS(1745), + [anon_sym_interface] = ACTIONS(1743), + [anon_sym_enum] = ACTIONS(1743), + [sym__automatic_semicolon] = ACTIONS(1749), + [sym__ternary_qmark] = ACTIONS(1747), [sym_html_comment] = ACTIONS(5), }, [236] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2173), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3740), - [sym_assignment_pattern] = STATE(5450), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3740), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1261), - [sym_subscript_expression] = STATE(1261), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3740), - [sym_spread_element] = STATE(5148), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(5149), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1261), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1622), - [anon_sym_export] = ACTIONS(610), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_COMMA] = ACTIONS(1714), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(610), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_RBRACK] = ACTIONS(1743), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1624), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1628), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(610), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(610), - [anon_sym_number] = ACTIONS(610), - [anon_sym_boolean] = ACTIONS(610), - [anon_sym_string] = ACTIONS(610), - [anon_sym_symbol] = ACTIONS(610), - [anon_sym_object] = ACTIONS(610), + [ts_builtin_sym_end] = ACTIONS(1751), + [sym_identifier] = ACTIONS(1753), + [anon_sym_export] = ACTIONS(1753), + [anon_sym_STAR] = ACTIONS(1755), + [anon_sym_default] = ACTIONS(1753), + [anon_sym_type] = ACTIONS(1753), + [anon_sym_as] = ACTIONS(1755), + [anon_sym_namespace] = ACTIONS(1753), + [anon_sym_LBRACE] = ACTIONS(1751), + [anon_sym_COMMA] = ACTIONS(1757), + [anon_sym_RBRACE] = ACTIONS(1751), + [anon_sym_typeof] = ACTIONS(1753), + [anon_sym_import] = ACTIONS(1753), + [anon_sym_with] = ACTIONS(1753), + [anon_sym_var] = ACTIONS(1753), + [anon_sym_let] = ACTIONS(1753), + [anon_sym_const] = ACTIONS(1753), + [anon_sym_BANG] = ACTIONS(1753), + [anon_sym_else] = ACTIONS(1753), + [anon_sym_if] = ACTIONS(1753), + [anon_sym_switch] = ACTIONS(1753), + [anon_sym_for] = ACTIONS(1753), + [anon_sym_LPAREN] = ACTIONS(1751), + [anon_sym_SEMI] = ACTIONS(1751), + [anon_sym_await] = ACTIONS(1753), + [anon_sym_in] = ACTIONS(1755), + [anon_sym_while] = ACTIONS(1753), + [anon_sym_do] = ACTIONS(1753), + [anon_sym_try] = ACTIONS(1753), + [anon_sym_break] = ACTIONS(1753), + [anon_sym_continue] = ACTIONS(1753), + [anon_sym_debugger] = ACTIONS(1753), + [anon_sym_return] = ACTIONS(1753), + [anon_sym_throw] = ACTIONS(1753), + [anon_sym_case] = ACTIONS(1753), + [anon_sym_yield] = ACTIONS(1753), + [anon_sym_LBRACK] = ACTIONS(1751), + [anon_sym_GT] = ACTIONS(1755), + [anon_sym_DOT] = ACTIONS(1755), + [anon_sym_DQUOTE] = ACTIONS(1751), + [anon_sym_SQUOTE] = ACTIONS(1751), + [anon_sym_class] = ACTIONS(1753), + [anon_sym_async] = ACTIONS(1753), + [anon_sym_function] = ACTIONS(1753), + [anon_sym_QMARK_DOT] = ACTIONS(1757), + [anon_sym_new] = ACTIONS(1753), + [anon_sym_using] = ACTIONS(1753), + [anon_sym_AMP_AMP] = ACTIONS(1757), + [anon_sym_PIPE_PIPE] = ACTIONS(1757), + [anon_sym_GT_GT] = ACTIONS(1755), + [anon_sym_GT_GT_GT] = ACTIONS(1757), + [anon_sym_LT_LT] = ACTIONS(1757), + [anon_sym_AMP] = ACTIONS(1755), + [anon_sym_CARET] = ACTIONS(1757), + [anon_sym_PIPE] = ACTIONS(1755), + [anon_sym_PLUS] = ACTIONS(1753), + [anon_sym_DASH] = ACTIONS(1753), + [anon_sym_SLASH] = ACTIONS(1753), + [anon_sym_PERCENT] = ACTIONS(1757), + [anon_sym_STAR_STAR] = ACTIONS(1757), + [anon_sym_LT] = ACTIONS(1753), + [anon_sym_LT_EQ] = ACTIONS(1757), + [anon_sym_EQ_EQ] = ACTIONS(1755), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1757), + [anon_sym_BANG_EQ] = ACTIONS(1755), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1757), + [anon_sym_GT_EQ] = ACTIONS(1757), + [anon_sym_QMARK_QMARK] = ACTIONS(1757), + [anon_sym_instanceof] = ACTIONS(1755), + [anon_sym_TILDE] = ACTIONS(1751), + [anon_sym_void] = ACTIONS(1753), + [anon_sym_delete] = ACTIONS(1753), + [anon_sym_PLUS_PLUS] = ACTIONS(1751), + [anon_sym_DASH_DASH] = ACTIONS(1751), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1751), + [sym_number] = ACTIONS(1751), + [sym_private_property_identifier] = ACTIONS(1751), + [sym_this] = ACTIONS(1753), + [sym_super] = ACTIONS(1753), + [sym_true] = ACTIONS(1753), + [sym_false] = ACTIONS(1753), + [sym_null] = ACTIONS(1753), + [sym_undefined] = ACTIONS(1753), + [anon_sym_AT] = ACTIONS(1751), + [anon_sym_static] = ACTIONS(1753), + [anon_sym_readonly] = ACTIONS(1753), + [anon_sym_get] = ACTIONS(1753), + [anon_sym_set] = ACTIONS(1753), + [anon_sym_declare] = ACTIONS(1753), + [anon_sym_public] = ACTIONS(1753), + [anon_sym_private] = ACTIONS(1753), + [anon_sym_protected] = ACTIONS(1753), + [anon_sym_override] = ACTIONS(1753), + [anon_sym_module] = ACTIONS(1753), + [anon_sym_any] = ACTIONS(1753), + [anon_sym_number] = ACTIONS(1753), + [anon_sym_boolean] = ACTIONS(1753), + [anon_sym_string] = ACTIONS(1753), + [anon_sym_symbol] = ACTIONS(1753), + [anon_sym_object] = ACTIONS(1753), + [anon_sym_abstract] = ACTIONS(1753), + [anon_sym_satisfies] = ACTIONS(1755), + [anon_sym_interface] = ACTIONS(1753), + [anon_sym_enum] = ACTIONS(1753), + [sym__automatic_semicolon] = ACTIONS(1759), + [sym__ternary_qmark] = ACTIONS(1757), [sym_html_comment] = ACTIONS(5), }, [237] = { - [ts_builtin_sym_end] = ACTIONS(1747), - [sym_identifier] = ACTIONS(1749), - [anon_sym_export] = ACTIONS(1749), - [anon_sym_STAR] = ACTIONS(1751), - [anon_sym_default] = ACTIONS(1749), - [anon_sym_type] = ACTIONS(1749), - [anon_sym_as] = ACTIONS(1751), - [anon_sym_namespace] = ACTIONS(1749), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_COMMA] = ACTIONS(1753), - [anon_sym_RBRACE] = ACTIONS(1747), - [anon_sym_typeof] = ACTIONS(1749), - [anon_sym_import] = ACTIONS(1749), - [anon_sym_with] = ACTIONS(1749), - [anon_sym_var] = ACTIONS(1749), - [anon_sym_let] = ACTIONS(1749), - [anon_sym_const] = ACTIONS(1749), - [anon_sym_BANG] = ACTIONS(1749), - [anon_sym_else] = ACTIONS(1749), - [anon_sym_if] = ACTIONS(1749), - [anon_sym_switch] = ACTIONS(1749), - [anon_sym_for] = ACTIONS(1749), - [anon_sym_LPAREN] = ACTIONS(1747), - [anon_sym_SEMI] = ACTIONS(1747), - [anon_sym_await] = ACTIONS(1749), - [anon_sym_in] = ACTIONS(1751), - [anon_sym_while] = ACTIONS(1749), - [anon_sym_do] = ACTIONS(1749), - [anon_sym_try] = ACTIONS(1749), - [anon_sym_break] = ACTIONS(1749), - [anon_sym_continue] = ACTIONS(1749), - [anon_sym_debugger] = ACTIONS(1749), - [anon_sym_return] = ACTIONS(1749), - [anon_sym_throw] = ACTIONS(1749), - [anon_sym_case] = ACTIONS(1749), - [anon_sym_yield] = ACTIONS(1749), - [anon_sym_LBRACK] = ACTIONS(1747), - [sym_glimmer_opening_tag] = ACTIONS(1747), - [anon_sym_GT] = ACTIONS(1751), - [anon_sym_DOT] = ACTIONS(1751), - [anon_sym_DQUOTE] = ACTIONS(1747), - [anon_sym_SQUOTE] = ACTIONS(1747), - [anon_sym_class] = ACTIONS(1749), - [anon_sym_async] = ACTIONS(1749), - [anon_sym_function] = ACTIONS(1749), - [anon_sym_QMARK_DOT] = ACTIONS(1753), - [anon_sym_new] = ACTIONS(1749), - [anon_sym_using] = ACTIONS(1749), - [anon_sym_AMP_AMP] = ACTIONS(1753), - [anon_sym_PIPE_PIPE] = ACTIONS(1753), - [anon_sym_GT_GT] = ACTIONS(1751), - [anon_sym_GT_GT_GT] = ACTIONS(1753), - [anon_sym_LT_LT] = ACTIONS(1753), - [anon_sym_AMP] = ACTIONS(1751), - [anon_sym_CARET] = ACTIONS(1753), - [anon_sym_PIPE] = ACTIONS(1751), - [anon_sym_PLUS] = ACTIONS(1749), - [anon_sym_DASH] = ACTIONS(1749), - [anon_sym_SLASH] = ACTIONS(1749), - [anon_sym_PERCENT] = ACTIONS(1753), - [anon_sym_STAR_STAR] = ACTIONS(1753), - [anon_sym_LT] = ACTIONS(1749), - [anon_sym_LT_EQ] = ACTIONS(1753), - [anon_sym_EQ_EQ] = ACTIONS(1751), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1753), - [anon_sym_BANG_EQ] = ACTIONS(1751), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1753), - [anon_sym_GT_EQ] = ACTIONS(1753), - [anon_sym_QMARK_QMARK] = ACTIONS(1753), - [anon_sym_instanceof] = ACTIONS(1751), - [anon_sym_TILDE] = ACTIONS(1747), - [anon_sym_void] = ACTIONS(1749), - [anon_sym_delete] = ACTIONS(1749), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1747), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1747), - [sym_number] = ACTIONS(1747), - [sym_private_property_identifier] = ACTIONS(1747), - [sym_this] = ACTIONS(1749), - [sym_super] = ACTIONS(1749), - [sym_true] = ACTIONS(1749), - [sym_false] = ACTIONS(1749), - [sym_null] = ACTIONS(1749), - [sym_undefined] = ACTIONS(1749), - [anon_sym_AT] = ACTIONS(1747), - [anon_sym_static] = ACTIONS(1749), - [anon_sym_readonly] = ACTIONS(1749), - [anon_sym_get] = ACTIONS(1749), - [anon_sym_set] = ACTIONS(1749), - [anon_sym_declare] = ACTIONS(1749), - [anon_sym_public] = ACTIONS(1749), - [anon_sym_private] = ACTIONS(1749), - [anon_sym_protected] = ACTIONS(1749), - [anon_sym_override] = ACTIONS(1749), - [anon_sym_module] = ACTIONS(1749), - [anon_sym_any] = ACTIONS(1749), - [anon_sym_number] = ACTIONS(1749), - [anon_sym_boolean] = ACTIONS(1749), - [anon_sym_string] = ACTIONS(1749), - [anon_sym_symbol] = ACTIONS(1749), - [anon_sym_object] = ACTIONS(1749), - [anon_sym_abstract] = ACTIONS(1749), - [anon_sym_satisfies] = ACTIONS(1751), - [anon_sym_interface] = ACTIONS(1749), - [anon_sym_enum] = ACTIONS(1749), - [sym__automatic_semicolon] = ACTIONS(1755), - [sym__ternary_qmark] = ACTIONS(1753), + [ts_builtin_sym_end] = ACTIONS(1761), + [sym_identifier] = ACTIONS(1763), + [anon_sym_export] = ACTIONS(1763), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_default] = ACTIONS(1763), + [anon_sym_type] = ACTIONS(1763), + [anon_sym_as] = ACTIONS(1765), + [anon_sym_namespace] = ACTIONS(1763), + [anon_sym_LBRACE] = ACTIONS(1761), + [anon_sym_COMMA] = ACTIONS(1767), + [anon_sym_RBRACE] = ACTIONS(1761), + [anon_sym_typeof] = ACTIONS(1763), + [anon_sym_import] = ACTIONS(1763), + [anon_sym_with] = ACTIONS(1763), + [anon_sym_var] = ACTIONS(1763), + [anon_sym_let] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1763), + [anon_sym_BANG] = ACTIONS(1763), + [anon_sym_else] = ACTIONS(1763), + [anon_sym_if] = ACTIONS(1763), + [anon_sym_switch] = ACTIONS(1763), + [anon_sym_for] = ACTIONS(1763), + [anon_sym_LPAREN] = ACTIONS(1761), + [anon_sym_SEMI] = ACTIONS(1761), + [anon_sym_await] = ACTIONS(1763), + [anon_sym_in] = ACTIONS(1765), + [anon_sym_while] = ACTIONS(1763), + [anon_sym_do] = ACTIONS(1763), + [anon_sym_try] = ACTIONS(1763), + [anon_sym_break] = ACTIONS(1763), + [anon_sym_continue] = ACTIONS(1763), + [anon_sym_debugger] = ACTIONS(1763), + [anon_sym_return] = ACTIONS(1763), + [anon_sym_throw] = ACTIONS(1763), + [anon_sym_case] = ACTIONS(1763), + [anon_sym_yield] = ACTIONS(1763), + [anon_sym_LBRACK] = ACTIONS(1761), + [anon_sym_GT] = ACTIONS(1765), + [anon_sym_DOT] = ACTIONS(1765), + [anon_sym_DQUOTE] = ACTIONS(1761), + [anon_sym_SQUOTE] = ACTIONS(1761), + [anon_sym_class] = ACTIONS(1763), + [anon_sym_async] = ACTIONS(1763), + [anon_sym_function] = ACTIONS(1763), + [anon_sym_QMARK_DOT] = ACTIONS(1767), + [anon_sym_new] = ACTIONS(1763), + [anon_sym_using] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1767), + [anon_sym_PIPE_PIPE] = ACTIONS(1767), + [anon_sym_GT_GT] = ACTIONS(1765), + [anon_sym_GT_GT_GT] = ACTIONS(1767), + [anon_sym_LT_LT] = ACTIONS(1767), + [anon_sym_AMP] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_PLUS] = ACTIONS(1763), + [anon_sym_DASH] = ACTIONS(1763), + [anon_sym_SLASH] = ACTIONS(1763), + [anon_sym_PERCENT] = ACTIONS(1767), + [anon_sym_STAR_STAR] = ACTIONS(1767), + [anon_sym_LT] = ACTIONS(1763), + [anon_sym_LT_EQ] = ACTIONS(1767), + [anon_sym_EQ_EQ] = ACTIONS(1765), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1767), + [anon_sym_BANG_EQ] = ACTIONS(1765), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1767), + [anon_sym_GT_EQ] = ACTIONS(1767), + [anon_sym_QMARK_QMARK] = ACTIONS(1767), + [anon_sym_instanceof] = ACTIONS(1765), + [anon_sym_TILDE] = ACTIONS(1761), + [anon_sym_void] = ACTIONS(1763), + [anon_sym_delete] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1761), + [anon_sym_DASH_DASH] = ACTIONS(1761), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1761), + [sym_number] = ACTIONS(1761), + [sym_private_property_identifier] = ACTIONS(1761), + [sym_this] = ACTIONS(1763), + [sym_super] = ACTIONS(1763), + [sym_true] = ACTIONS(1763), + [sym_false] = ACTIONS(1763), + [sym_null] = ACTIONS(1763), + [sym_undefined] = ACTIONS(1763), + [anon_sym_AT] = ACTIONS(1761), + [anon_sym_static] = ACTIONS(1763), + [anon_sym_readonly] = ACTIONS(1763), + [anon_sym_get] = ACTIONS(1763), + [anon_sym_set] = ACTIONS(1763), + [anon_sym_declare] = ACTIONS(1763), + [anon_sym_public] = ACTIONS(1763), + [anon_sym_private] = ACTIONS(1763), + [anon_sym_protected] = ACTIONS(1763), + [anon_sym_override] = ACTIONS(1763), + [anon_sym_module] = ACTIONS(1763), + [anon_sym_any] = ACTIONS(1763), + [anon_sym_number] = ACTIONS(1763), + [anon_sym_boolean] = ACTIONS(1763), + [anon_sym_string] = ACTIONS(1763), + [anon_sym_symbol] = ACTIONS(1763), + [anon_sym_object] = ACTIONS(1763), + [anon_sym_abstract] = ACTIONS(1763), + [anon_sym_satisfies] = ACTIONS(1765), + [anon_sym_interface] = ACTIONS(1763), + [anon_sym_enum] = ACTIONS(1763), + [sym__automatic_semicolon] = ACTIONS(1769), + [sym__ternary_qmark] = ACTIONS(1767), [sym_html_comment] = ACTIONS(5), }, [238] = { - [ts_builtin_sym_end] = ACTIONS(1757), - [sym_identifier] = ACTIONS(1759), - [anon_sym_export] = ACTIONS(1759), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_default] = ACTIONS(1759), - [anon_sym_type] = ACTIONS(1759), - [anon_sym_as] = ACTIONS(1761), - [anon_sym_namespace] = ACTIONS(1759), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_COMMA] = ACTIONS(1763), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_typeof] = ACTIONS(1759), - [anon_sym_import] = ACTIONS(1759), - [anon_sym_with] = ACTIONS(1759), - [anon_sym_var] = ACTIONS(1759), - [anon_sym_let] = ACTIONS(1759), - [anon_sym_const] = ACTIONS(1759), - [anon_sym_BANG] = ACTIONS(1759), - [anon_sym_else] = ACTIONS(1759), - [anon_sym_if] = ACTIONS(1759), - [anon_sym_switch] = ACTIONS(1759), - [anon_sym_for] = ACTIONS(1759), - [anon_sym_LPAREN] = ACTIONS(1757), - [anon_sym_SEMI] = ACTIONS(1757), - [anon_sym_await] = ACTIONS(1759), - [anon_sym_in] = ACTIONS(1761), - [anon_sym_while] = ACTIONS(1759), - [anon_sym_do] = ACTIONS(1759), - [anon_sym_try] = ACTIONS(1759), - [anon_sym_break] = ACTIONS(1759), - [anon_sym_continue] = ACTIONS(1759), - [anon_sym_debugger] = ACTIONS(1759), - [anon_sym_return] = ACTIONS(1759), - [anon_sym_throw] = ACTIONS(1759), - [anon_sym_case] = ACTIONS(1759), - [anon_sym_yield] = ACTIONS(1759), - [anon_sym_LBRACK] = ACTIONS(1757), - [sym_glimmer_opening_tag] = ACTIONS(1757), - [anon_sym_GT] = ACTIONS(1761), - [anon_sym_DOT] = ACTIONS(1761), - [anon_sym_DQUOTE] = ACTIONS(1757), - [anon_sym_SQUOTE] = ACTIONS(1757), - [anon_sym_class] = ACTIONS(1759), - [anon_sym_async] = ACTIONS(1759), - [anon_sym_function] = ACTIONS(1759), - [anon_sym_QMARK_DOT] = ACTIONS(1763), - [anon_sym_new] = ACTIONS(1759), - [anon_sym_using] = ACTIONS(1759), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [anon_sym_GT_GT] = ACTIONS(1761), - [anon_sym_GT_GT_GT] = ACTIONS(1763), - [anon_sym_LT_LT] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1761), - [anon_sym_CARET] = ACTIONS(1763), - [anon_sym_PIPE] = ACTIONS(1761), - [anon_sym_PLUS] = ACTIONS(1759), - [anon_sym_DASH] = ACTIONS(1759), - [anon_sym_SLASH] = ACTIONS(1759), - [anon_sym_PERCENT] = ACTIONS(1763), - [anon_sym_STAR_STAR] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1759), - [anon_sym_LT_EQ] = ACTIONS(1763), - [anon_sym_EQ_EQ] = ACTIONS(1761), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1763), - [anon_sym_BANG_EQ] = ACTIONS(1761), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1763), - [anon_sym_GT_EQ] = ACTIONS(1763), - [anon_sym_QMARK_QMARK] = ACTIONS(1763), - [anon_sym_instanceof] = ACTIONS(1761), - [anon_sym_TILDE] = ACTIONS(1757), - [anon_sym_void] = ACTIONS(1759), - [anon_sym_delete] = ACTIONS(1759), - [anon_sym_PLUS_PLUS] = ACTIONS(1757), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1757), - [sym_number] = ACTIONS(1757), - [sym_private_property_identifier] = ACTIONS(1757), - [sym_this] = ACTIONS(1759), - [sym_super] = ACTIONS(1759), - [sym_true] = ACTIONS(1759), - [sym_false] = ACTIONS(1759), - [sym_null] = ACTIONS(1759), - [sym_undefined] = ACTIONS(1759), - [anon_sym_AT] = ACTIONS(1757), - [anon_sym_static] = ACTIONS(1759), - [anon_sym_readonly] = ACTIONS(1759), - [anon_sym_get] = ACTIONS(1759), - [anon_sym_set] = ACTIONS(1759), - [anon_sym_declare] = ACTIONS(1759), - [anon_sym_public] = ACTIONS(1759), - [anon_sym_private] = ACTIONS(1759), - [anon_sym_protected] = ACTIONS(1759), - [anon_sym_override] = ACTIONS(1759), - [anon_sym_module] = ACTIONS(1759), - [anon_sym_any] = ACTIONS(1759), - [anon_sym_number] = ACTIONS(1759), - [anon_sym_boolean] = ACTIONS(1759), - [anon_sym_string] = ACTIONS(1759), - [anon_sym_symbol] = ACTIONS(1759), - [anon_sym_object] = ACTIONS(1759), - [anon_sym_abstract] = ACTIONS(1759), - [anon_sym_satisfies] = ACTIONS(1761), - [anon_sym_interface] = ACTIONS(1759), - [anon_sym_enum] = ACTIONS(1759), - [sym__automatic_semicolon] = ACTIONS(1765), - [sym__ternary_qmark] = ACTIONS(1763), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1406), + [sym_expression] = STATE(2482), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5183), + [sym_assignment_pattern] = STATE(5112), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5183), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5764), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2954), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5183), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_pattern] = STATE(4530), + [sym_rest_pattern] = STATE(3626), + [sym_non_null_expression] = STATE(1370), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_mapped_type_clause] = STATE(5583), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [aux_sym_array_pattern_repeat1] = STATE(5134), + [sym_identifier] = ACTIONS(1771), + [anon_sym_export] = ACTIONS(1773), + [anon_sym_type] = ACTIONS(1773), + [anon_sym_namespace] = ACTIONS(1775), + [anon_sym_LBRACE] = ACTIONS(1777), + [anon_sym_COMMA] = ACTIONS(1779), + [anon_sym_typeof] = ACTIONS(1245), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1773), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1231), + [anon_sym_yield] = ACTIONS(1233), + [anon_sym_LBRACK] = ACTIONS(1781), + [anon_sym_RBRACK] = ACTIONS(1783), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1785), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1787), + [anon_sym_using] = ACTIONS(1239), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_void] = ACTIONS(1245), + [anon_sym_delete] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1247), + [anon_sym_DASH_DASH] = ACTIONS(1247), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1249), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1789), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1773), + [anon_sym_readonly] = ACTIONS(1773), + [anon_sym_get] = ACTIONS(1773), + [anon_sym_set] = ACTIONS(1773), + [anon_sym_declare] = ACTIONS(1773), + [anon_sym_public] = ACTIONS(1773), + [anon_sym_private] = ACTIONS(1773), + [anon_sym_protected] = ACTIONS(1773), + [anon_sym_override] = ACTIONS(1773), + [anon_sym_module] = ACTIONS(1773), + [anon_sym_any] = ACTIONS(1773), + [anon_sym_number] = ACTIONS(1773), + [anon_sym_boolean] = ACTIONS(1773), + [anon_sym_string] = ACTIONS(1773), + [anon_sym_symbol] = ACTIONS(1773), + [anon_sym_object] = ACTIONS(1773), [sym_html_comment] = ACTIONS(5), }, [239] = { - [ts_builtin_sym_end] = ACTIONS(1767), - [sym_identifier] = ACTIONS(1769), - [anon_sym_export] = ACTIONS(1769), - [anon_sym_STAR] = ACTIONS(1771), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_type] = ACTIONS(1769), - [anon_sym_as] = ACTIONS(1771), - [anon_sym_namespace] = ACTIONS(1769), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_COMMA] = ACTIONS(1773), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_typeof] = ACTIONS(1769), - [anon_sym_import] = ACTIONS(1769), - [anon_sym_with] = ACTIONS(1769), - [anon_sym_var] = ACTIONS(1769), - [anon_sym_let] = ACTIONS(1769), - [anon_sym_const] = ACTIONS(1769), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_else] = ACTIONS(1769), - [anon_sym_if] = ACTIONS(1769), - [anon_sym_switch] = ACTIONS(1769), - [anon_sym_for] = ACTIONS(1769), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_await] = ACTIONS(1769), - [anon_sym_in] = ACTIONS(1771), - [anon_sym_while] = ACTIONS(1769), - [anon_sym_do] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1769), - [anon_sym_break] = ACTIONS(1769), - [anon_sym_continue] = ACTIONS(1769), - [anon_sym_debugger] = ACTIONS(1769), - [anon_sym_return] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1769), - [anon_sym_case] = ACTIONS(1769), - [anon_sym_yield] = ACTIONS(1769), - [anon_sym_LBRACK] = ACTIONS(1767), - [sym_glimmer_opening_tag] = ACTIONS(1767), - [anon_sym_GT] = ACTIONS(1771), - [anon_sym_DOT] = ACTIONS(1771), - [anon_sym_DQUOTE] = ACTIONS(1767), - [anon_sym_SQUOTE] = ACTIONS(1767), - [anon_sym_class] = ACTIONS(1769), - [anon_sym_async] = ACTIONS(1769), - [anon_sym_function] = ACTIONS(1769), - [anon_sym_QMARK_DOT] = ACTIONS(1773), - [anon_sym_new] = ACTIONS(1769), - [anon_sym_using] = ACTIONS(1769), - [anon_sym_AMP_AMP] = ACTIONS(1773), - [anon_sym_PIPE_PIPE] = ACTIONS(1773), - [anon_sym_GT_GT] = ACTIONS(1771), - [anon_sym_GT_GT_GT] = ACTIONS(1773), - [anon_sym_LT_LT] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1771), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_PIPE] = ACTIONS(1771), - [anon_sym_PLUS] = ACTIONS(1769), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_SLASH] = ACTIONS(1769), - [anon_sym_PERCENT] = ACTIONS(1773), - [anon_sym_STAR_STAR] = ACTIONS(1773), - [anon_sym_LT] = ACTIONS(1769), - [anon_sym_LT_EQ] = ACTIONS(1773), - [anon_sym_EQ_EQ] = ACTIONS(1771), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1773), - [anon_sym_BANG_EQ] = ACTIONS(1771), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1773), - [anon_sym_GT_EQ] = ACTIONS(1773), - [anon_sym_QMARK_QMARK] = ACTIONS(1773), - [anon_sym_instanceof] = ACTIONS(1771), - [anon_sym_TILDE] = ACTIONS(1767), - [anon_sym_void] = ACTIONS(1769), - [anon_sym_delete] = ACTIONS(1769), - [anon_sym_PLUS_PLUS] = ACTIONS(1767), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1767), - [sym_number] = ACTIONS(1767), - [sym_private_property_identifier] = ACTIONS(1767), - [sym_this] = ACTIONS(1769), - [sym_super] = ACTIONS(1769), - [sym_true] = ACTIONS(1769), - [sym_false] = ACTIONS(1769), - [sym_null] = ACTIONS(1769), - [sym_undefined] = ACTIONS(1769), - [anon_sym_AT] = ACTIONS(1767), - [anon_sym_static] = ACTIONS(1769), - [anon_sym_readonly] = ACTIONS(1769), - [anon_sym_get] = ACTIONS(1769), - [anon_sym_set] = ACTIONS(1769), - [anon_sym_declare] = ACTIONS(1769), - [anon_sym_public] = ACTIONS(1769), - [anon_sym_private] = ACTIONS(1769), - [anon_sym_protected] = ACTIONS(1769), - [anon_sym_override] = ACTIONS(1769), - [anon_sym_module] = ACTIONS(1769), - [anon_sym_any] = ACTIONS(1769), - [anon_sym_number] = ACTIONS(1769), - [anon_sym_boolean] = ACTIONS(1769), - [anon_sym_string] = ACTIONS(1769), - [anon_sym_symbol] = ACTIONS(1769), - [anon_sym_object] = ACTIONS(1769), - [anon_sym_abstract] = ACTIONS(1769), - [anon_sym_satisfies] = ACTIONS(1771), - [anon_sym_interface] = ACTIONS(1769), - [anon_sym_enum] = ACTIONS(1769), - [sym__automatic_semicolon] = ACTIONS(1775), - [sym__ternary_qmark] = ACTIONS(1773), + [ts_builtin_sym_end] = ACTIONS(1791), + [sym_identifier] = ACTIONS(1793), + [anon_sym_export] = ACTIONS(1793), + [anon_sym_STAR] = ACTIONS(1793), + [anon_sym_default] = ACTIONS(1793), + [anon_sym_type] = ACTIONS(1793), + [anon_sym_as] = ACTIONS(1793), + [anon_sym_namespace] = ACTIONS(1793), + [anon_sym_LBRACE] = ACTIONS(1791), + [anon_sym_COMMA] = ACTIONS(1791), + [anon_sym_RBRACE] = ACTIONS(1791), + [anon_sym_typeof] = ACTIONS(1793), + [anon_sym_import] = ACTIONS(1793), + [anon_sym_with] = ACTIONS(1793), + [anon_sym_var] = ACTIONS(1793), + [anon_sym_let] = ACTIONS(1793), + [anon_sym_const] = ACTIONS(1793), + [anon_sym_BANG] = ACTIONS(1793), + [anon_sym_else] = ACTIONS(1793), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_switch] = ACTIONS(1793), + [anon_sym_for] = ACTIONS(1793), + [anon_sym_LPAREN] = ACTIONS(1791), + [anon_sym_SEMI] = ACTIONS(1791), + [anon_sym_await] = ACTIONS(1793), + [anon_sym_in] = ACTIONS(1793), + [anon_sym_while] = ACTIONS(1793), + [anon_sym_do] = ACTIONS(1793), + [anon_sym_try] = ACTIONS(1793), + [anon_sym_break] = ACTIONS(1793), + [anon_sym_continue] = ACTIONS(1793), + [anon_sym_debugger] = ACTIONS(1793), + [anon_sym_return] = ACTIONS(1793), + [anon_sym_throw] = ACTIONS(1793), + [anon_sym_case] = ACTIONS(1793), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(1791), + [anon_sym_GT] = ACTIONS(1793), + [anon_sym_DOT] = ACTIONS(1793), + [anon_sym_DQUOTE] = ACTIONS(1791), + [anon_sym_SQUOTE] = ACTIONS(1791), + [anon_sym_class] = ACTIONS(1793), + [anon_sym_async] = ACTIONS(1793), + [anon_sym_function] = ACTIONS(1793), + [anon_sym_QMARK_DOT] = ACTIONS(1791), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1793), + [anon_sym_AMP_AMP] = ACTIONS(1791), + [anon_sym_PIPE_PIPE] = ACTIONS(1791), + [anon_sym_GT_GT] = ACTIONS(1793), + [anon_sym_GT_GT_GT] = ACTIONS(1791), + [anon_sym_LT_LT] = ACTIONS(1791), + [anon_sym_AMP] = ACTIONS(1793), + [anon_sym_CARET] = ACTIONS(1791), + [anon_sym_PIPE] = ACTIONS(1793), + [anon_sym_PLUS] = ACTIONS(1793), + [anon_sym_DASH] = ACTIONS(1793), + [anon_sym_SLASH] = ACTIONS(1793), + [anon_sym_PERCENT] = ACTIONS(1791), + [anon_sym_STAR_STAR] = ACTIONS(1791), + [anon_sym_LT] = ACTIONS(1793), + [anon_sym_LT_EQ] = ACTIONS(1791), + [anon_sym_EQ_EQ] = ACTIONS(1793), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1791), + [anon_sym_BANG_EQ] = ACTIONS(1793), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1791), + [anon_sym_GT_EQ] = ACTIONS(1791), + [anon_sym_QMARK_QMARK] = ACTIONS(1791), + [anon_sym_instanceof] = ACTIONS(1793), + [anon_sym_TILDE] = ACTIONS(1791), + [anon_sym_void] = ACTIONS(1793), + [anon_sym_delete] = ACTIONS(1793), + [anon_sym_PLUS_PLUS] = ACTIONS(1791), + [anon_sym_DASH_DASH] = ACTIONS(1791), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1791), + [sym_number] = ACTIONS(1791), + [sym_private_property_identifier] = ACTIONS(1791), + [sym_this] = ACTIONS(1793), + [sym_super] = ACTIONS(1793), + [sym_true] = ACTIONS(1793), + [sym_false] = ACTIONS(1793), + [sym_null] = ACTIONS(1793), + [sym_undefined] = ACTIONS(1793), + [anon_sym_AT] = ACTIONS(1791), + [anon_sym_static] = ACTIONS(1793), + [anon_sym_readonly] = ACTIONS(1793), + [anon_sym_get] = ACTIONS(1793), + [anon_sym_set] = ACTIONS(1793), + [anon_sym_declare] = ACTIONS(1793), + [anon_sym_public] = ACTIONS(1793), + [anon_sym_private] = ACTIONS(1793), + [anon_sym_protected] = ACTIONS(1793), + [anon_sym_override] = ACTIONS(1793), + [anon_sym_module] = ACTIONS(1793), + [anon_sym_any] = ACTIONS(1793), + [anon_sym_number] = ACTIONS(1793), + [anon_sym_boolean] = ACTIONS(1793), + [anon_sym_string] = ACTIONS(1793), + [anon_sym_symbol] = ACTIONS(1793), + [anon_sym_object] = ACTIONS(1793), + [anon_sym_abstract] = ACTIONS(1793), + [anon_sym_satisfies] = ACTIONS(1793), + [anon_sym_interface] = ACTIONS(1793), + [anon_sym_enum] = ACTIONS(1793), + [sym__automatic_semicolon] = ACTIONS(1791), + [sym__ternary_qmark] = ACTIONS(1791), [sym_html_comment] = ACTIONS(5), }, [240] = { - [ts_builtin_sym_end] = ACTIONS(1777), - [sym_identifier] = ACTIONS(1779), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_STAR] = ACTIONS(1781), - [anon_sym_default] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_as] = ACTIONS(1781), - [anon_sym_namespace] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1777), - [anon_sym_COMMA] = ACTIONS(1783), - [anon_sym_RBRACE] = ACTIONS(1777), - [anon_sym_typeof] = ACTIONS(1779), - [anon_sym_import] = ACTIONS(1779), - [anon_sym_with] = ACTIONS(1779), - [anon_sym_var] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_const] = ACTIONS(1779), - [anon_sym_BANG] = ACTIONS(1779), - [anon_sym_else] = ACTIONS(1779), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_switch] = ACTIONS(1779), - [anon_sym_for] = ACTIONS(1779), - [anon_sym_LPAREN] = ACTIONS(1777), - [anon_sym_SEMI] = ACTIONS(1777), - [anon_sym_await] = ACTIONS(1779), - [anon_sym_in] = ACTIONS(1781), - [anon_sym_while] = ACTIONS(1779), - [anon_sym_do] = ACTIONS(1779), - [anon_sym_try] = ACTIONS(1779), - [anon_sym_break] = ACTIONS(1779), - [anon_sym_continue] = ACTIONS(1779), - [anon_sym_debugger] = ACTIONS(1779), - [anon_sym_return] = ACTIONS(1779), - [anon_sym_throw] = ACTIONS(1779), - [anon_sym_case] = ACTIONS(1779), - [anon_sym_yield] = ACTIONS(1779), - [anon_sym_LBRACK] = ACTIONS(1777), - [sym_glimmer_opening_tag] = ACTIONS(1777), - [anon_sym_GT] = ACTIONS(1781), - [anon_sym_DOT] = ACTIONS(1781), - [anon_sym_DQUOTE] = ACTIONS(1777), - [anon_sym_SQUOTE] = ACTIONS(1777), - [anon_sym_class] = ACTIONS(1779), - [anon_sym_async] = ACTIONS(1779), - [anon_sym_function] = ACTIONS(1779), - [anon_sym_QMARK_DOT] = ACTIONS(1783), - [anon_sym_new] = ACTIONS(1779), - [anon_sym_using] = ACTIONS(1779), - [anon_sym_AMP_AMP] = ACTIONS(1783), - [anon_sym_PIPE_PIPE] = ACTIONS(1783), - [anon_sym_GT_GT] = ACTIONS(1781), - [anon_sym_GT_GT_GT] = ACTIONS(1783), - [anon_sym_LT_LT] = ACTIONS(1783), - [anon_sym_AMP] = ACTIONS(1781), - [anon_sym_CARET] = ACTIONS(1783), - [anon_sym_PIPE] = ACTIONS(1781), - [anon_sym_PLUS] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(1779), - [anon_sym_SLASH] = ACTIONS(1779), - [anon_sym_PERCENT] = ACTIONS(1783), - [anon_sym_STAR_STAR] = ACTIONS(1783), - [anon_sym_LT] = ACTIONS(1779), - [anon_sym_LT_EQ] = ACTIONS(1783), - [anon_sym_EQ_EQ] = ACTIONS(1781), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1783), - [anon_sym_BANG_EQ] = ACTIONS(1781), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1783), - [anon_sym_GT_EQ] = ACTIONS(1783), - [anon_sym_QMARK_QMARK] = ACTIONS(1783), - [anon_sym_instanceof] = ACTIONS(1781), - [anon_sym_TILDE] = ACTIONS(1777), - [anon_sym_void] = ACTIONS(1779), - [anon_sym_delete] = ACTIONS(1779), - [anon_sym_PLUS_PLUS] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1777), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1777), - [sym_number] = ACTIONS(1777), - [sym_private_property_identifier] = ACTIONS(1777), - [sym_this] = ACTIONS(1779), - [sym_super] = ACTIONS(1779), - [sym_true] = ACTIONS(1779), - [sym_false] = ACTIONS(1779), - [sym_null] = ACTIONS(1779), - [sym_undefined] = ACTIONS(1779), - [anon_sym_AT] = ACTIONS(1777), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_abstract] = ACTIONS(1779), - [anon_sym_satisfies] = ACTIONS(1781), - [anon_sym_interface] = ACTIONS(1779), - [anon_sym_enum] = ACTIONS(1779), - [sym__automatic_semicolon] = ACTIONS(1785), - [sym__ternary_qmark] = ACTIONS(1783), + [ts_builtin_sym_end] = ACTIONS(1795), + [sym_identifier] = ACTIONS(1797), + [anon_sym_export] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(1799), + [anon_sym_default] = ACTIONS(1797), + [anon_sym_type] = ACTIONS(1797), + [anon_sym_as] = ACTIONS(1799), + [anon_sym_namespace] = ACTIONS(1797), + [anon_sym_LBRACE] = ACTIONS(1795), + [anon_sym_COMMA] = ACTIONS(1801), + [anon_sym_RBRACE] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym_import] = ACTIONS(1797), + [anon_sym_with] = ACTIONS(1797), + [anon_sym_var] = ACTIONS(1797), + [anon_sym_let] = ACTIONS(1797), + [anon_sym_const] = ACTIONS(1797), + [anon_sym_BANG] = ACTIONS(1797), + [anon_sym_else] = ACTIONS(1797), + [anon_sym_if] = ACTIONS(1797), + [anon_sym_switch] = ACTIONS(1797), + [anon_sym_for] = ACTIONS(1797), + [anon_sym_LPAREN] = ACTIONS(1795), + [anon_sym_SEMI] = ACTIONS(1795), + [anon_sym_await] = ACTIONS(1797), + [anon_sym_in] = ACTIONS(1799), + [anon_sym_while] = ACTIONS(1797), + [anon_sym_do] = ACTIONS(1797), + [anon_sym_try] = ACTIONS(1797), + [anon_sym_break] = ACTIONS(1797), + [anon_sym_continue] = ACTIONS(1797), + [anon_sym_debugger] = ACTIONS(1797), + [anon_sym_return] = ACTIONS(1797), + [anon_sym_throw] = ACTIONS(1797), + [anon_sym_case] = ACTIONS(1797), + [anon_sym_yield] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1795), + [anon_sym_GT] = ACTIONS(1799), + [anon_sym_DOT] = ACTIONS(1799), + [anon_sym_DQUOTE] = ACTIONS(1795), + [anon_sym_SQUOTE] = ACTIONS(1795), + [anon_sym_class] = ACTIONS(1797), + [anon_sym_async] = ACTIONS(1797), + [anon_sym_function] = ACTIONS(1797), + [anon_sym_QMARK_DOT] = ACTIONS(1801), + [anon_sym_new] = ACTIONS(1797), + [anon_sym_using] = ACTIONS(1797), + [anon_sym_AMP_AMP] = ACTIONS(1801), + [anon_sym_PIPE_PIPE] = ACTIONS(1801), + [anon_sym_GT_GT] = ACTIONS(1799), + [anon_sym_GT_GT_GT] = ACTIONS(1801), + [anon_sym_LT_LT] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1799), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_PIPE] = ACTIONS(1799), + [anon_sym_PLUS] = ACTIONS(1797), + [anon_sym_DASH] = ACTIONS(1797), + [anon_sym_SLASH] = ACTIONS(1797), + [anon_sym_PERCENT] = ACTIONS(1801), + [anon_sym_STAR_STAR] = ACTIONS(1801), + [anon_sym_LT] = ACTIONS(1797), + [anon_sym_LT_EQ] = ACTIONS(1801), + [anon_sym_EQ_EQ] = ACTIONS(1799), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1801), + [anon_sym_BANG_EQ] = ACTIONS(1799), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1801), + [anon_sym_GT_EQ] = ACTIONS(1801), + [anon_sym_QMARK_QMARK] = ACTIONS(1801), + [anon_sym_instanceof] = ACTIONS(1799), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_void] = ACTIONS(1797), + [anon_sym_delete] = ACTIONS(1797), + [anon_sym_PLUS_PLUS] = ACTIONS(1795), + [anon_sym_DASH_DASH] = ACTIONS(1795), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1795), + [sym_number] = ACTIONS(1795), + [sym_private_property_identifier] = ACTIONS(1795), + [sym_this] = ACTIONS(1797), + [sym_super] = ACTIONS(1797), + [sym_true] = ACTIONS(1797), + [sym_false] = ACTIONS(1797), + [sym_null] = ACTIONS(1797), + [sym_undefined] = ACTIONS(1797), + [anon_sym_AT] = ACTIONS(1795), + [anon_sym_static] = ACTIONS(1797), + [anon_sym_readonly] = ACTIONS(1797), + [anon_sym_get] = ACTIONS(1797), + [anon_sym_set] = ACTIONS(1797), + [anon_sym_declare] = ACTIONS(1797), + [anon_sym_public] = ACTIONS(1797), + [anon_sym_private] = ACTIONS(1797), + [anon_sym_protected] = ACTIONS(1797), + [anon_sym_override] = ACTIONS(1797), + [anon_sym_module] = ACTIONS(1797), + [anon_sym_any] = ACTIONS(1797), + [anon_sym_number] = ACTIONS(1797), + [anon_sym_boolean] = ACTIONS(1797), + [anon_sym_string] = ACTIONS(1797), + [anon_sym_symbol] = ACTIONS(1797), + [anon_sym_object] = ACTIONS(1797), + [anon_sym_abstract] = ACTIONS(1797), + [anon_sym_satisfies] = ACTIONS(1799), + [anon_sym_interface] = ACTIONS(1797), + [anon_sym_enum] = ACTIONS(1797), + [sym__automatic_semicolon] = ACTIONS(1803), + [sym__ternary_qmark] = ACTIONS(1801), [sym_html_comment] = ACTIONS(5), }, [241] = { - [ts_builtin_sym_end] = ACTIONS(1787), - [sym_identifier] = ACTIONS(1789), - [anon_sym_export] = ACTIONS(1789), - [anon_sym_STAR] = ACTIONS(1791), - [anon_sym_default] = ACTIONS(1789), - [anon_sym_type] = ACTIONS(1789), - [anon_sym_as] = ACTIONS(1791), - [anon_sym_namespace] = ACTIONS(1789), - [anon_sym_LBRACE] = ACTIONS(1787), - [anon_sym_COMMA] = ACTIONS(1793), - [anon_sym_RBRACE] = ACTIONS(1787), - [anon_sym_typeof] = ACTIONS(1789), - [anon_sym_import] = ACTIONS(1789), - [anon_sym_with] = ACTIONS(1789), - [anon_sym_var] = ACTIONS(1789), - [anon_sym_let] = ACTIONS(1789), - [anon_sym_const] = ACTIONS(1789), - [anon_sym_BANG] = ACTIONS(1789), - [anon_sym_else] = ACTIONS(1789), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_switch] = ACTIONS(1789), - [anon_sym_for] = ACTIONS(1789), - [anon_sym_LPAREN] = ACTIONS(1787), - [anon_sym_SEMI] = ACTIONS(1787), - [anon_sym_await] = ACTIONS(1789), - [anon_sym_in] = ACTIONS(1791), - [anon_sym_while] = ACTIONS(1789), - [anon_sym_do] = ACTIONS(1789), - [anon_sym_try] = ACTIONS(1789), - [anon_sym_break] = ACTIONS(1789), - [anon_sym_continue] = ACTIONS(1789), - [anon_sym_debugger] = ACTIONS(1789), - [anon_sym_return] = ACTIONS(1789), - [anon_sym_throw] = ACTIONS(1789), - [anon_sym_case] = ACTIONS(1789), - [anon_sym_yield] = ACTIONS(1789), - [anon_sym_LBRACK] = ACTIONS(1787), - [sym_glimmer_opening_tag] = ACTIONS(1787), - [anon_sym_GT] = ACTIONS(1791), - [anon_sym_DOT] = ACTIONS(1791), - [anon_sym_DQUOTE] = ACTIONS(1787), - [anon_sym_SQUOTE] = ACTIONS(1787), - [anon_sym_class] = ACTIONS(1789), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1789), - [anon_sym_QMARK_DOT] = ACTIONS(1793), - [anon_sym_new] = ACTIONS(1789), - [anon_sym_using] = ACTIONS(1789), - [anon_sym_AMP_AMP] = ACTIONS(1793), - [anon_sym_PIPE_PIPE] = ACTIONS(1793), - [anon_sym_GT_GT] = ACTIONS(1791), - [anon_sym_GT_GT_GT] = ACTIONS(1793), - [anon_sym_LT_LT] = ACTIONS(1793), - [anon_sym_AMP] = ACTIONS(1791), - [anon_sym_CARET] = ACTIONS(1793), - [anon_sym_PIPE] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(1789), - [anon_sym_DASH] = ACTIONS(1789), - [anon_sym_SLASH] = ACTIONS(1789), - [anon_sym_PERCENT] = ACTIONS(1793), - [anon_sym_STAR_STAR] = ACTIONS(1793), - [anon_sym_LT] = ACTIONS(1789), - [anon_sym_LT_EQ] = ACTIONS(1793), - [anon_sym_EQ_EQ] = ACTIONS(1791), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1793), - [anon_sym_BANG_EQ] = ACTIONS(1791), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1793), - [anon_sym_GT_EQ] = ACTIONS(1793), - [anon_sym_QMARK_QMARK] = ACTIONS(1793), - [anon_sym_instanceof] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1787), - [anon_sym_void] = ACTIONS(1789), - [anon_sym_delete] = ACTIONS(1789), - [anon_sym_PLUS_PLUS] = ACTIONS(1787), - [anon_sym_DASH_DASH] = ACTIONS(1787), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1787), - [sym_number] = ACTIONS(1787), - [sym_private_property_identifier] = ACTIONS(1787), - [sym_this] = ACTIONS(1789), - [sym_super] = ACTIONS(1789), - [sym_true] = ACTIONS(1789), - [sym_false] = ACTIONS(1789), - [sym_null] = ACTIONS(1789), - [sym_undefined] = ACTIONS(1789), - [anon_sym_AT] = ACTIONS(1787), - [anon_sym_static] = ACTIONS(1789), - [anon_sym_readonly] = ACTIONS(1789), - [anon_sym_get] = ACTIONS(1789), - [anon_sym_set] = ACTIONS(1789), - [anon_sym_declare] = ACTIONS(1789), - [anon_sym_public] = ACTIONS(1789), - [anon_sym_private] = ACTIONS(1789), - [anon_sym_protected] = ACTIONS(1789), - [anon_sym_override] = ACTIONS(1789), - [anon_sym_module] = ACTIONS(1789), - [anon_sym_any] = ACTIONS(1789), - [anon_sym_number] = ACTIONS(1789), - [anon_sym_boolean] = ACTIONS(1789), - [anon_sym_string] = ACTIONS(1789), - [anon_sym_symbol] = ACTIONS(1789), - [anon_sym_object] = ACTIONS(1789), - [anon_sym_abstract] = ACTIONS(1789), - [anon_sym_satisfies] = ACTIONS(1791), - [anon_sym_interface] = ACTIONS(1789), - [anon_sym_enum] = ACTIONS(1789), - [sym__automatic_semicolon] = ACTIONS(1795), - [sym__ternary_qmark] = ACTIONS(1793), - [sym_html_comment] = ACTIONS(5), - }, - [242] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_assignment_pattern] = STATE(4895), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4531), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [aux_sym_array_pattern_repeat1] = STATE(4907), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_COMMA] = ACTIONS(1690), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1634), - [anon_sym_RBRACK] = ACTIONS(1797), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(741), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(115), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), - [sym_html_comment] = ACTIONS(5), - }, - [243] = { - [ts_builtin_sym_end] = ACTIONS(1799), - [sym_identifier] = ACTIONS(1801), - [anon_sym_export] = ACTIONS(1801), - [anon_sym_STAR] = ACTIONS(1803), - [anon_sym_default] = ACTIONS(1801), - [anon_sym_type] = ACTIONS(1801), - [anon_sym_as] = ACTIONS(1803), - [anon_sym_namespace] = ACTIONS(1801), - [anon_sym_LBRACE] = ACTIONS(1799), + [ts_builtin_sym_end] = ACTIONS(1805), + [sym_identifier] = ACTIONS(1807), + [anon_sym_export] = ACTIONS(1807), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_default] = ACTIONS(1807), + [anon_sym_type] = ACTIONS(1807), + [anon_sym_as] = ACTIONS(1807), + [anon_sym_namespace] = ACTIONS(1807), + [anon_sym_LBRACE] = ACTIONS(1805), [anon_sym_COMMA] = ACTIONS(1805), - [anon_sym_RBRACE] = ACTIONS(1799), - [anon_sym_typeof] = ACTIONS(1801), - [anon_sym_import] = ACTIONS(1801), - [anon_sym_with] = ACTIONS(1801), - [anon_sym_var] = ACTIONS(1801), - [anon_sym_let] = ACTIONS(1801), - [anon_sym_const] = ACTIONS(1801), - [anon_sym_BANG] = ACTIONS(1801), - [anon_sym_else] = ACTIONS(1801), - [anon_sym_if] = ACTIONS(1801), - [anon_sym_switch] = ACTIONS(1801), - [anon_sym_for] = ACTIONS(1801), - [anon_sym_LPAREN] = ACTIONS(1799), - [anon_sym_SEMI] = ACTIONS(1799), - [anon_sym_await] = ACTIONS(1801), - [anon_sym_in] = ACTIONS(1803), - [anon_sym_while] = ACTIONS(1801), - [anon_sym_do] = ACTIONS(1801), - [anon_sym_try] = ACTIONS(1801), - [anon_sym_break] = ACTIONS(1801), - [anon_sym_continue] = ACTIONS(1801), - [anon_sym_debugger] = ACTIONS(1801), - [anon_sym_return] = ACTIONS(1801), - [anon_sym_throw] = ACTIONS(1801), - [anon_sym_case] = ACTIONS(1801), - [anon_sym_yield] = ACTIONS(1801), - [anon_sym_LBRACK] = ACTIONS(1799), - [sym_glimmer_opening_tag] = ACTIONS(1799), - [anon_sym_GT] = ACTIONS(1803), - [anon_sym_DOT] = ACTIONS(1803), - [anon_sym_DQUOTE] = ACTIONS(1799), - [anon_sym_SQUOTE] = ACTIONS(1799), - [anon_sym_class] = ACTIONS(1801), - [anon_sym_async] = ACTIONS(1801), - [anon_sym_function] = ACTIONS(1801), + [anon_sym_RBRACE] = ACTIONS(1805), + [anon_sym_typeof] = ACTIONS(1807), + [anon_sym_import] = ACTIONS(1807), + [anon_sym_with] = ACTIONS(1807), + [anon_sym_var] = ACTIONS(1807), + [anon_sym_let] = ACTIONS(1807), + [anon_sym_const] = ACTIONS(1807), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_else] = ACTIONS(1807), + [anon_sym_if] = ACTIONS(1807), + [anon_sym_switch] = ACTIONS(1807), + [anon_sym_for] = ACTIONS(1807), + [anon_sym_LPAREN] = ACTIONS(1805), + [anon_sym_SEMI] = ACTIONS(1805), + [anon_sym_await] = ACTIONS(1807), + [anon_sym_in] = ACTIONS(1807), + [anon_sym_while] = ACTIONS(1807), + [anon_sym_do] = ACTIONS(1807), + [anon_sym_try] = ACTIONS(1807), + [anon_sym_break] = ACTIONS(1807), + [anon_sym_continue] = ACTIONS(1807), + [anon_sym_debugger] = ACTIONS(1807), + [anon_sym_return] = ACTIONS(1807), + [anon_sym_throw] = ACTIONS(1807), + [anon_sym_case] = ACTIONS(1807), + [anon_sym_yield] = ACTIONS(1807), + [anon_sym_LBRACK] = ACTIONS(1805), + [anon_sym_GT] = ACTIONS(1807), + [anon_sym_DOT] = ACTIONS(1807), + [anon_sym_DQUOTE] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1805), + [anon_sym_class] = ACTIONS(1807), + [anon_sym_async] = ACTIONS(1807), + [anon_sym_function] = ACTIONS(1807), [anon_sym_QMARK_DOT] = ACTIONS(1805), - [anon_sym_new] = ACTIONS(1801), - [anon_sym_using] = ACTIONS(1801), + [anon_sym_new] = ACTIONS(1807), + [anon_sym_using] = ACTIONS(1807), [anon_sym_AMP_AMP] = ACTIONS(1805), [anon_sym_PIPE_PIPE] = ACTIONS(1805), - [anon_sym_GT_GT] = ACTIONS(1803), + [anon_sym_GT_GT] = ACTIONS(1807), [anon_sym_GT_GT_GT] = ACTIONS(1805), [anon_sym_LT_LT] = ACTIONS(1805), - [anon_sym_AMP] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1807), [anon_sym_CARET] = ACTIONS(1805), - [anon_sym_PIPE] = ACTIONS(1803), - [anon_sym_PLUS] = ACTIONS(1801), - [anon_sym_DASH] = ACTIONS(1801), - [anon_sym_SLASH] = ACTIONS(1801), + [anon_sym_PIPE] = ACTIONS(1807), + [anon_sym_PLUS] = ACTIONS(1807), + [anon_sym_DASH] = ACTIONS(1807), + [anon_sym_SLASH] = ACTIONS(1807), [anon_sym_PERCENT] = ACTIONS(1805), [anon_sym_STAR_STAR] = ACTIONS(1805), - [anon_sym_LT] = ACTIONS(1801), + [anon_sym_LT] = ACTIONS(1807), [anon_sym_LT_EQ] = ACTIONS(1805), - [anon_sym_EQ_EQ] = ACTIONS(1803), + [anon_sym_EQ_EQ] = ACTIONS(1807), [anon_sym_EQ_EQ_EQ] = ACTIONS(1805), - [anon_sym_BANG_EQ] = ACTIONS(1803), + [anon_sym_BANG_EQ] = ACTIONS(1807), [anon_sym_BANG_EQ_EQ] = ACTIONS(1805), [anon_sym_GT_EQ] = ACTIONS(1805), [anon_sym_QMARK_QMARK] = ACTIONS(1805), - [anon_sym_instanceof] = ACTIONS(1803), - [anon_sym_TILDE] = ACTIONS(1799), - [anon_sym_void] = ACTIONS(1801), - [anon_sym_delete] = ACTIONS(1801), - [anon_sym_PLUS_PLUS] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1799), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1799), - [sym_number] = ACTIONS(1799), - [sym_private_property_identifier] = ACTIONS(1799), - [sym_this] = ACTIONS(1801), - [sym_super] = ACTIONS(1801), - [sym_true] = ACTIONS(1801), - [sym_false] = ACTIONS(1801), - [sym_null] = ACTIONS(1801), - [sym_undefined] = ACTIONS(1801), - [anon_sym_AT] = ACTIONS(1799), - [anon_sym_static] = ACTIONS(1801), - [anon_sym_readonly] = ACTIONS(1801), - [anon_sym_get] = ACTIONS(1801), - [anon_sym_set] = ACTIONS(1801), - [anon_sym_declare] = ACTIONS(1801), - [anon_sym_public] = ACTIONS(1801), - [anon_sym_private] = ACTIONS(1801), - [anon_sym_protected] = ACTIONS(1801), - [anon_sym_override] = ACTIONS(1801), - [anon_sym_module] = ACTIONS(1801), - [anon_sym_any] = ACTIONS(1801), - [anon_sym_number] = ACTIONS(1801), - [anon_sym_boolean] = ACTIONS(1801), - [anon_sym_string] = ACTIONS(1801), - [anon_sym_symbol] = ACTIONS(1801), - [anon_sym_object] = ACTIONS(1801), - [anon_sym_abstract] = ACTIONS(1801), - [anon_sym_satisfies] = ACTIONS(1803), - [anon_sym_interface] = ACTIONS(1801), - [anon_sym_enum] = ACTIONS(1801), - [sym__automatic_semicolon] = ACTIONS(1807), + [anon_sym_instanceof] = ACTIONS(1807), + [anon_sym_TILDE] = ACTIONS(1805), + [anon_sym_void] = ACTIONS(1807), + [anon_sym_delete] = ACTIONS(1807), + [anon_sym_PLUS_PLUS] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1805), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1805), + [sym_number] = ACTIONS(1805), + [sym_private_property_identifier] = ACTIONS(1805), + [sym_this] = ACTIONS(1807), + [sym_super] = ACTIONS(1807), + [sym_true] = ACTIONS(1807), + [sym_false] = ACTIONS(1807), + [sym_null] = ACTIONS(1807), + [sym_undefined] = ACTIONS(1807), + [anon_sym_AT] = ACTIONS(1805), + [anon_sym_static] = ACTIONS(1807), + [anon_sym_readonly] = ACTIONS(1807), + [anon_sym_get] = ACTIONS(1807), + [anon_sym_set] = ACTIONS(1807), + [anon_sym_declare] = ACTIONS(1807), + [anon_sym_public] = ACTIONS(1807), + [anon_sym_private] = ACTIONS(1807), + [anon_sym_protected] = ACTIONS(1807), + [anon_sym_override] = ACTIONS(1807), + [anon_sym_module] = ACTIONS(1807), + [anon_sym_any] = ACTIONS(1807), + [anon_sym_number] = ACTIONS(1807), + [anon_sym_boolean] = ACTIONS(1807), + [anon_sym_string] = ACTIONS(1807), + [anon_sym_symbol] = ACTIONS(1807), + [anon_sym_object] = ACTIONS(1807), + [anon_sym_abstract] = ACTIONS(1807), + [anon_sym_satisfies] = ACTIONS(1807), + [anon_sym_interface] = ACTIONS(1807), + [anon_sym_enum] = ACTIONS(1807), + [sym__automatic_semicolon] = ACTIONS(1805), [sym__ternary_qmark] = ACTIONS(1805), [sym_html_comment] = ACTIONS(5), }, - [244] = { - [sym_import] = STATE(3759), - [sym_variable_declaration] = STATE(313), - [sym_lexical_declaration] = STATE(313), - [sym_empty_statement] = STATE(313), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(2335), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5020), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5020), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5020), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5613), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1809), + [242] = { + [ts_builtin_sym_end] = ACTIONS(1809), + [sym_identifier] = ACTIONS(1811), [anon_sym_export] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1811), + [anon_sym_default] = ACTIONS(1811), [anon_sym_type] = ACTIONS(1811), - [anon_sym_namespace] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(1815), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_var] = ACTIONS(1817), - [anon_sym_let] = ACTIONS(1819), - [anon_sym_const] = ACTIONS(1821), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(1823), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1825), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1827), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1829), - [anon_sym_AT] = ACTIONS(99), + [anon_sym_as] = ACTIONS(1811), + [anon_sym_namespace] = ACTIONS(1811), + [anon_sym_LBRACE] = ACTIONS(1809), + [anon_sym_COMMA] = ACTIONS(1809), + [anon_sym_RBRACE] = ACTIONS(1809), + [anon_sym_typeof] = ACTIONS(1811), + [anon_sym_import] = ACTIONS(1811), + [anon_sym_with] = ACTIONS(1811), + [anon_sym_var] = ACTIONS(1811), + [anon_sym_let] = ACTIONS(1811), + [anon_sym_const] = ACTIONS(1811), + [anon_sym_BANG] = ACTIONS(1811), + [anon_sym_else] = ACTIONS(1811), + [anon_sym_if] = ACTIONS(1811), + [anon_sym_switch] = ACTIONS(1811), + [anon_sym_for] = ACTIONS(1811), + [anon_sym_LPAREN] = ACTIONS(1809), + [anon_sym_SEMI] = ACTIONS(1809), + [anon_sym_await] = ACTIONS(1811), + [anon_sym_in] = ACTIONS(1811), + [anon_sym_while] = ACTIONS(1811), + [anon_sym_do] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1811), + [anon_sym_break] = ACTIONS(1811), + [anon_sym_continue] = ACTIONS(1811), + [anon_sym_debugger] = ACTIONS(1811), + [anon_sym_return] = ACTIONS(1811), + [anon_sym_throw] = ACTIONS(1811), + [anon_sym_case] = ACTIONS(1811), + [anon_sym_yield] = ACTIONS(1811), + [anon_sym_LBRACK] = ACTIONS(1809), + [anon_sym_GT] = ACTIONS(1811), + [anon_sym_DOT] = ACTIONS(1811), + [anon_sym_DQUOTE] = ACTIONS(1809), + [anon_sym_SQUOTE] = ACTIONS(1809), + [anon_sym_class] = ACTIONS(1811), + [anon_sym_async] = ACTIONS(1811), + [anon_sym_function] = ACTIONS(1811), + [anon_sym_QMARK_DOT] = ACTIONS(1809), + [anon_sym_new] = ACTIONS(1811), + [anon_sym_using] = ACTIONS(1811), + [anon_sym_AMP_AMP] = ACTIONS(1809), + [anon_sym_PIPE_PIPE] = ACTIONS(1809), + [anon_sym_GT_GT] = ACTIONS(1811), + [anon_sym_GT_GT_GT] = ACTIONS(1809), + [anon_sym_LT_LT] = ACTIONS(1809), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1809), + [anon_sym_PIPE] = ACTIONS(1811), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_SLASH] = ACTIONS(1811), + [anon_sym_PERCENT] = ACTIONS(1809), + [anon_sym_STAR_STAR] = ACTIONS(1809), + [anon_sym_LT] = ACTIONS(1811), + [anon_sym_LT_EQ] = ACTIONS(1809), + [anon_sym_EQ_EQ] = ACTIONS(1811), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1809), + [anon_sym_BANG_EQ] = ACTIONS(1811), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1809), + [anon_sym_GT_EQ] = ACTIONS(1809), + [anon_sym_QMARK_QMARK] = ACTIONS(1809), + [anon_sym_instanceof] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1809), + [anon_sym_void] = ACTIONS(1811), + [anon_sym_delete] = ACTIONS(1811), + [anon_sym_PLUS_PLUS] = ACTIONS(1809), + [anon_sym_DASH_DASH] = ACTIONS(1809), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1809), + [sym_number] = ACTIONS(1809), + [sym_private_property_identifier] = ACTIONS(1809), + [sym_this] = ACTIONS(1811), + [sym_super] = ACTIONS(1811), + [sym_true] = ACTIONS(1811), + [sym_false] = ACTIONS(1811), + [sym_null] = ACTIONS(1811), + [sym_undefined] = ACTIONS(1811), + [anon_sym_AT] = ACTIONS(1809), [anon_sym_static] = ACTIONS(1811), [anon_sym_readonly] = ACTIONS(1811), [anon_sym_get] = ACTIONS(1811), @@ -55197,323 +54207,760 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1811), [anon_sym_symbol] = ACTIONS(1811), [anon_sym_object] = ACTIONS(1811), + [anon_sym_abstract] = ACTIONS(1811), + [anon_sym_satisfies] = ACTIONS(1811), + [anon_sym_interface] = ACTIONS(1811), + [anon_sym_enum] = ACTIONS(1811), + [sym__automatic_semicolon] = ACTIONS(1809), + [sym__ternary_qmark] = ACTIONS(1809), + [sym_html_comment] = ACTIONS(5), + }, + [243] = { + [ts_builtin_sym_end] = ACTIONS(1813), + [sym_identifier] = ACTIONS(1815), + [anon_sym_export] = ACTIONS(1815), + [anon_sym_STAR] = ACTIONS(1817), + [anon_sym_default] = ACTIONS(1815), + [anon_sym_type] = ACTIONS(1815), + [anon_sym_as] = ACTIONS(1817), + [anon_sym_namespace] = ACTIONS(1815), + [anon_sym_LBRACE] = ACTIONS(1813), + [anon_sym_COMMA] = ACTIONS(1819), + [anon_sym_RBRACE] = ACTIONS(1813), + [anon_sym_typeof] = ACTIONS(1815), + [anon_sym_import] = ACTIONS(1815), + [anon_sym_with] = ACTIONS(1815), + [anon_sym_var] = ACTIONS(1815), + [anon_sym_let] = ACTIONS(1815), + [anon_sym_const] = ACTIONS(1815), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_else] = ACTIONS(1815), + [anon_sym_if] = ACTIONS(1815), + [anon_sym_switch] = ACTIONS(1815), + [anon_sym_for] = ACTIONS(1815), + [anon_sym_LPAREN] = ACTIONS(1813), + [anon_sym_SEMI] = ACTIONS(1813), + [anon_sym_await] = ACTIONS(1815), + [anon_sym_in] = ACTIONS(1817), + [anon_sym_while] = ACTIONS(1815), + [anon_sym_do] = ACTIONS(1815), + [anon_sym_try] = ACTIONS(1815), + [anon_sym_break] = ACTIONS(1815), + [anon_sym_continue] = ACTIONS(1815), + [anon_sym_debugger] = ACTIONS(1815), + [anon_sym_return] = ACTIONS(1815), + [anon_sym_throw] = ACTIONS(1815), + [anon_sym_case] = ACTIONS(1815), + [anon_sym_yield] = ACTIONS(1815), + [anon_sym_LBRACK] = ACTIONS(1813), + [anon_sym_GT] = ACTIONS(1817), + [anon_sym_DOT] = ACTIONS(1817), + [anon_sym_DQUOTE] = ACTIONS(1813), + [anon_sym_SQUOTE] = ACTIONS(1813), + [anon_sym_class] = ACTIONS(1815), + [anon_sym_async] = ACTIONS(1815), + [anon_sym_function] = ACTIONS(1815), + [anon_sym_QMARK_DOT] = ACTIONS(1819), + [anon_sym_new] = ACTIONS(1815), + [anon_sym_using] = ACTIONS(1815), + [anon_sym_AMP_AMP] = ACTIONS(1819), + [anon_sym_PIPE_PIPE] = ACTIONS(1819), + [anon_sym_GT_GT] = ACTIONS(1817), + [anon_sym_GT_GT_GT] = ACTIONS(1819), + [anon_sym_LT_LT] = ACTIONS(1819), + [anon_sym_AMP] = ACTIONS(1817), + [anon_sym_CARET] = ACTIONS(1819), + [anon_sym_PIPE] = ACTIONS(1817), + [anon_sym_PLUS] = ACTIONS(1815), + [anon_sym_DASH] = ACTIONS(1815), + [anon_sym_SLASH] = ACTIONS(1815), + [anon_sym_PERCENT] = ACTIONS(1819), + [anon_sym_STAR_STAR] = ACTIONS(1819), + [anon_sym_LT] = ACTIONS(1815), + [anon_sym_LT_EQ] = ACTIONS(1819), + [anon_sym_EQ_EQ] = ACTIONS(1817), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1819), + [anon_sym_BANG_EQ] = ACTIONS(1817), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1819), + [anon_sym_GT_EQ] = ACTIONS(1819), + [anon_sym_QMARK_QMARK] = ACTIONS(1819), + [anon_sym_instanceof] = ACTIONS(1817), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_void] = ACTIONS(1815), + [anon_sym_delete] = ACTIONS(1815), + [anon_sym_PLUS_PLUS] = ACTIONS(1813), + [anon_sym_DASH_DASH] = ACTIONS(1813), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1813), + [sym_number] = ACTIONS(1813), + [sym_private_property_identifier] = ACTIONS(1813), + [sym_this] = ACTIONS(1815), + [sym_super] = ACTIONS(1815), + [sym_true] = ACTIONS(1815), + [sym_false] = ACTIONS(1815), + [sym_null] = ACTIONS(1815), + [sym_undefined] = ACTIONS(1815), + [anon_sym_AT] = ACTIONS(1813), + [anon_sym_static] = ACTIONS(1815), + [anon_sym_readonly] = ACTIONS(1815), + [anon_sym_get] = ACTIONS(1815), + [anon_sym_set] = ACTIONS(1815), + [anon_sym_declare] = ACTIONS(1815), + [anon_sym_public] = ACTIONS(1815), + [anon_sym_private] = ACTIONS(1815), + [anon_sym_protected] = ACTIONS(1815), + [anon_sym_override] = ACTIONS(1815), + [anon_sym_module] = ACTIONS(1815), + [anon_sym_any] = ACTIONS(1815), + [anon_sym_number] = ACTIONS(1815), + [anon_sym_boolean] = ACTIONS(1815), + [anon_sym_string] = ACTIONS(1815), + [anon_sym_symbol] = ACTIONS(1815), + [anon_sym_object] = ACTIONS(1815), + [anon_sym_abstract] = ACTIONS(1815), + [anon_sym_satisfies] = ACTIONS(1817), + [anon_sym_interface] = ACTIONS(1815), + [anon_sym_enum] = ACTIONS(1815), + [sym__automatic_semicolon] = ACTIONS(1821), + [sym__ternary_qmark] = ACTIONS(1819), + [sym_html_comment] = ACTIONS(5), + }, + [244] = { + [ts_builtin_sym_end] = ACTIONS(1823), + [sym_identifier] = ACTIONS(1825), + [anon_sym_export] = ACTIONS(1825), + [anon_sym_STAR] = ACTIONS(1827), + [anon_sym_default] = ACTIONS(1825), + [anon_sym_type] = ACTIONS(1825), + [anon_sym_as] = ACTIONS(1827), + [anon_sym_namespace] = ACTIONS(1825), + [anon_sym_LBRACE] = ACTIONS(1823), + [anon_sym_COMMA] = ACTIONS(1829), + [anon_sym_RBRACE] = ACTIONS(1823), + [anon_sym_typeof] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1825), + [anon_sym_with] = ACTIONS(1825), + [anon_sym_var] = ACTIONS(1825), + [anon_sym_let] = ACTIONS(1825), + [anon_sym_const] = ACTIONS(1825), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_else] = ACTIONS(1825), + [anon_sym_if] = ACTIONS(1825), + [anon_sym_switch] = ACTIONS(1825), + [anon_sym_for] = ACTIONS(1825), + [anon_sym_LPAREN] = ACTIONS(1823), + [anon_sym_SEMI] = ACTIONS(1823), + [anon_sym_await] = ACTIONS(1825), + [anon_sym_in] = ACTIONS(1827), + [anon_sym_while] = ACTIONS(1825), + [anon_sym_do] = ACTIONS(1825), + [anon_sym_try] = ACTIONS(1825), + [anon_sym_break] = ACTIONS(1825), + [anon_sym_continue] = ACTIONS(1825), + [anon_sym_debugger] = ACTIONS(1825), + [anon_sym_return] = ACTIONS(1825), + [anon_sym_throw] = ACTIONS(1825), + [anon_sym_case] = ACTIONS(1825), + [anon_sym_yield] = ACTIONS(1825), + [anon_sym_LBRACK] = ACTIONS(1823), + [anon_sym_GT] = ACTIONS(1827), + [anon_sym_DOT] = ACTIONS(1827), + [anon_sym_DQUOTE] = ACTIONS(1823), + [anon_sym_SQUOTE] = ACTIONS(1823), + [anon_sym_class] = ACTIONS(1825), + [anon_sym_async] = ACTIONS(1825), + [anon_sym_function] = ACTIONS(1825), + [anon_sym_QMARK_DOT] = ACTIONS(1829), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1825), + [anon_sym_AMP_AMP] = ACTIONS(1829), + [anon_sym_PIPE_PIPE] = ACTIONS(1829), + [anon_sym_GT_GT] = ACTIONS(1827), + [anon_sym_GT_GT_GT] = ACTIONS(1829), + [anon_sym_LT_LT] = ACTIONS(1829), + [anon_sym_AMP] = ACTIONS(1827), + [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_PIPE] = ACTIONS(1827), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_SLASH] = ACTIONS(1825), + [anon_sym_PERCENT] = ACTIONS(1829), + [anon_sym_STAR_STAR] = ACTIONS(1829), + [anon_sym_LT] = ACTIONS(1825), + [anon_sym_LT_EQ] = ACTIONS(1829), + [anon_sym_EQ_EQ] = ACTIONS(1827), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1829), + [anon_sym_BANG_EQ] = ACTIONS(1827), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1829), + [anon_sym_GT_EQ] = ACTIONS(1829), + [anon_sym_QMARK_QMARK] = ACTIONS(1829), + [anon_sym_instanceof] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1823), + [anon_sym_void] = ACTIONS(1825), + [anon_sym_delete] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1823), + [anon_sym_DASH_DASH] = ACTIONS(1823), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1823), + [sym_number] = ACTIONS(1823), + [sym_private_property_identifier] = ACTIONS(1823), + [sym_this] = ACTIONS(1825), + [sym_super] = ACTIONS(1825), + [sym_true] = ACTIONS(1825), + [sym_false] = ACTIONS(1825), + [sym_null] = ACTIONS(1825), + [sym_undefined] = ACTIONS(1825), + [anon_sym_AT] = ACTIONS(1823), + [anon_sym_static] = ACTIONS(1825), + [anon_sym_readonly] = ACTIONS(1825), + [anon_sym_get] = ACTIONS(1825), + [anon_sym_set] = ACTIONS(1825), + [anon_sym_declare] = ACTIONS(1825), + [anon_sym_public] = ACTIONS(1825), + [anon_sym_private] = ACTIONS(1825), + [anon_sym_protected] = ACTIONS(1825), + [anon_sym_override] = ACTIONS(1825), + [anon_sym_module] = ACTIONS(1825), + [anon_sym_any] = ACTIONS(1825), + [anon_sym_number] = ACTIONS(1825), + [anon_sym_boolean] = ACTIONS(1825), + [anon_sym_string] = ACTIONS(1825), + [anon_sym_symbol] = ACTIONS(1825), + [anon_sym_object] = ACTIONS(1825), + [anon_sym_abstract] = ACTIONS(1825), + [anon_sym_satisfies] = ACTIONS(1827), + [anon_sym_interface] = ACTIONS(1825), + [anon_sym_enum] = ACTIONS(1825), + [sym__automatic_semicolon] = ACTIONS(1831), + [sym__ternary_qmark] = ACTIONS(1829), [sym_html_comment] = ACTIONS(5), }, [245] = { - [ts_builtin_sym_end] = ACTIONS(1831), - [sym_identifier] = ACTIONS(1833), - [anon_sym_export] = ACTIONS(1833), + [ts_builtin_sym_end] = ACTIONS(1833), + [sym_identifier] = ACTIONS(1835), + [anon_sym_export] = ACTIONS(1835), [anon_sym_STAR] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1833), - [anon_sym_type] = ACTIONS(1833), + [anon_sym_default] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), [anon_sym_as] = ACTIONS(1835), - [anon_sym_namespace] = ACTIONS(1833), - [anon_sym_LBRACE] = ACTIONS(1831), - [anon_sym_COMMA] = ACTIONS(1837), - [anon_sym_RBRACE] = ACTIONS(1831), - [anon_sym_typeof] = ACTIONS(1833), - [anon_sym_import] = ACTIONS(1833), - [anon_sym_with] = ACTIONS(1833), - [anon_sym_var] = ACTIONS(1833), - [anon_sym_let] = ACTIONS(1833), - [anon_sym_const] = ACTIONS(1833), - [anon_sym_BANG] = ACTIONS(1833), - [anon_sym_else] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_switch] = ACTIONS(1833), - [anon_sym_for] = ACTIONS(1833), - [anon_sym_LPAREN] = ACTIONS(1831), - [anon_sym_SEMI] = ACTIONS(1831), - [anon_sym_await] = ACTIONS(1833), + [anon_sym_namespace] = ACTIONS(1835), + [anon_sym_LBRACE] = ACTIONS(1833), + [anon_sym_COMMA] = ACTIONS(1833), + [anon_sym_RBRACE] = ACTIONS(1833), + [anon_sym_typeof] = ACTIONS(1835), + [anon_sym_import] = ACTIONS(1835), + [anon_sym_with] = ACTIONS(1835), + [anon_sym_var] = ACTIONS(1835), + [anon_sym_let] = ACTIONS(1835), + [anon_sym_const] = ACTIONS(1835), + [anon_sym_BANG] = ACTIONS(1835), + [anon_sym_else] = ACTIONS(1835), + [anon_sym_if] = ACTIONS(1835), + [anon_sym_switch] = ACTIONS(1835), + [anon_sym_for] = ACTIONS(1835), + [anon_sym_LPAREN] = ACTIONS(1833), + [anon_sym_SEMI] = ACTIONS(1833), + [anon_sym_await] = ACTIONS(1835), [anon_sym_in] = ACTIONS(1835), - [anon_sym_while] = ACTIONS(1833), - [anon_sym_do] = ACTIONS(1833), - [anon_sym_try] = ACTIONS(1833), - [anon_sym_break] = ACTIONS(1833), - [anon_sym_continue] = ACTIONS(1833), - [anon_sym_debugger] = ACTIONS(1833), - [anon_sym_return] = ACTIONS(1833), - [anon_sym_throw] = ACTIONS(1833), - [anon_sym_case] = ACTIONS(1833), - [anon_sym_yield] = ACTIONS(1833), - [anon_sym_LBRACK] = ACTIONS(1831), - [sym_glimmer_opening_tag] = ACTIONS(1831), + [anon_sym_while] = ACTIONS(1835), + [anon_sym_do] = ACTIONS(1835), + [anon_sym_try] = ACTIONS(1835), + [anon_sym_break] = ACTIONS(1835), + [anon_sym_continue] = ACTIONS(1835), + [anon_sym_debugger] = ACTIONS(1835), + [anon_sym_return] = ACTIONS(1835), + [anon_sym_throw] = ACTIONS(1835), + [anon_sym_case] = ACTIONS(1835), + [anon_sym_yield] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(1833), [anon_sym_GT] = ACTIONS(1835), [anon_sym_DOT] = ACTIONS(1835), - [anon_sym_DQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE] = ACTIONS(1831), - [anon_sym_class] = ACTIONS(1833), - [anon_sym_async] = ACTIONS(1833), - [anon_sym_function] = ACTIONS(1833), - [anon_sym_QMARK_DOT] = ACTIONS(1837), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1833), - [anon_sym_AMP_AMP] = ACTIONS(1837), - [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1833), + [anon_sym_SQUOTE] = ACTIONS(1833), + [anon_sym_class] = ACTIONS(1835), + [anon_sym_async] = ACTIONS(1835), + [anon_sym_function] = ACTIONS(1835), + [anon_sym_QMARK_DOT] = ACTIONS(1833), + [anon_sym_new] = ACTIONS(1835), + [anon_sym_using] = ACTIONS(1835), + [anon_sym_AMP_AMP] = ACTIONS(1833), + [anon_sym_PIPE_PIPE] = ACTIONS(1833), [anon_sym_GT_GT] = ACTIONS(1835), - [anon_sym_GT_GT_GT] = ACTIONS(1837), - [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_GT_GT_GT] = ACTIONS(1833), + [anon_sym_LT_LT] = ACTIONS(1833), [anon_sym_AMP] = ACTIONS(1835), - [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_CARET] = ACTIONS(1833), [anon_sym_PIPE] = ACTIONS(1835), - [anon_sym_PLUS] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1833), - [anon_sym_SLASH] = ACTIONS(1833), - [anon_sym_PERCENT] = ACTIONS(1837), - [anon_sym_STAR_STAR] = ACTIONS(1837), - [anon_sym_LT] = ACTIONS(1833), - [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1835), + [anon_sym_SLASH] = ACTIONS(1835), + [anon_sym_PERCENT] = ACTIONS(1833), + [anon_sym_STAR_STAR] = ACTIONS(1833), + [anon_sym_LT] = ACTIONS(1835), + [anon_sym_LT_EQ] = ACTIONS(1833), [anon_sym_EQ_EQ] = ACTIONS(1835), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1837), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1833), [anon_sym_BANG_EQ] = ACTIONS(1835), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1837), - [anon_sym_GT_EQ] = ACTIONS(1837), - [anon_sym_QMARK_QMARK] = ACTIONS(1837), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1833), + [anon_sym_GT_EQ] = ACTIONS(1833), + [anon_sym_QMARK_QMARK] = ACTIONS(1833), [anon_sym_instanceof] = ACTIONS(1835), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_void] = ACTIONS(1833), - [anon_sym_delete] = ACTIONS(1833), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1831), - [sym_number] = ACTIONS(1831), - [sym_private_property_identifier] = ACTIONS(1831), - [sym_this] = ACTIONS(1833), - [sym_super] = ACTIONS(1833), - [sym_true] = ACTIONS(1833), - [sym_false] = ACTIONS(1833), - [sym_null] = ACTIONS(1833), - [sym_undefined] = ACTIONS(1833), - [anon_sym_AT] = ACTIONS(1831), - [anon_sym_static] = ACTIONS(1833), - [anon_sym_readonly] = ACTIONS(1833), - [anon_sym_get] = ACTIONS(1833), - [anon_sym_set] = ACTIONS(1833), - [anon_sym_declare] = ACTIONS(1833), - [anon_sym_public] = ACTIONS(1833), - [anon_sym_private] = ACTIONS(1833), - [anon_sym_protected] = ACTIONS(1833), - [anon_sym_override] = ACTIONS(1833), - [anon_sym_module] = ACTIONS(1833), - [anon_sym_any] = ACTIONS(1833), - [anon_sym_number] = ACTIONS(1833), - [anon_sym_boolean] = ACTIONS(1833), - [anon_sym_string] = ACTIONS(1833), - [anon_sym_symbol] = ACTIONS(1833), - [anon_sym_object] = ACTIONS(1833), - [anon_sym_abstract] = ACTIONS(1833), + [anon_sym_TILDE] = ACTIONS(1833), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_delete] = ACTIONS(1835), + [anon_sym_PLUS_PLUS] = ACTIONS(1833), + [anon_sym_DASH_DASH] = ACTIONS(1833), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1833), + [sym_number] = ACTIONS(1833), + [sym_private_property_identifier] = ACTIONS(1833), + [sym_this] = ACTIONS(1835), + [sym_super] = ACTIONS(1835), + [sym_true] = ACTIONS(1835), + [sym_false] = ACTIONS(1835), + [sym_null] = ACTIONS(1835), + [sym_undefined] = ACTIONS(1835), + [anon_sym_AT] = ACTIONS(1833), + [anon_sym_static] = ACTIONS(1835), + [anon_sym_readonly] = ACTIONS(1835), + [anon_sym_get] = ACTIONS(1835), + [anon_sym_set] = ACTIONS(1835), + [anon_sym_declare] = ACTIONS(1835), + [anon_sym_public] = ACTIONS(1835), + [anon_sym_private] = ACTIONS(1835), + [anon_sym_protected] = ACTIONS(1835), + [anon_sym_override] = ACTIONS(1835), + [anon_sym_module] = ACTIONS(1835), + [anon_sym_any] = ACTIONS(1835), + [anon_sym_number] = ACTIONS(1835), + [anon_sym_boolean] = ACTIONS(1835), + [anon_sym_string] = ACTIONS(1835), + [anon_sym_symbol] = ACTIONS(1835), + [anon_sym_object] = ACTIONS(1835), + [anon_sym_abstract] = ACTIONS(1835), [anon_sym_satisfies] = ACTIONS(1835), - [anon_sym_interface] = ACTIONS(1833), - [anon_sym_enum] = ACTIONS(1833), - [sym__automatic_semicolon] = ACTIONS(1839), - [sym__ternary_qmark] = ACTIONS(1837), + [anon_sym_interface] = ACTIONS(1835), + [anon_sym_enum] = ACTIONS(1835), + [sym__automatic_semicolon] = ACTIONS(1833), + [sym__ternary_qmark] = ACTIONS(1833), [sym_html_comment] = ACTIONS(5), }, [246] = { - [ts_builtin_sym_end] = ACTIONS(1841), - [sym_identifier] = ACTIONS(1843), - [anon_sym_export] = ACTIONS(1843), + [ts_builtin_sym_end] = ACTIONS(1659), + [sym_identifier] = ACTIONS(1661), + [anon_sym_export] = ACTIONS(1661), + [anon_sym_STAR] = ACTIONS(1661), + [anon_sym_default] = ACTIONS(1661), + [anon_sym_type] = ACTIONS(1661), + [anon_sym_as] = ACTIONS(1661), + [anon_sym_namespace] = ACTIONS(1661), + [anon_sym_LBRACE] = ACTIONS(1659), + [anon_sym_COMMA] = ACTIONS(1659), + [anon_sym_RBRACE] = ACTIONS(1659), + [anon_sym_typeof] = ACTIONS(1661), + [anon_sym_import] = ACTIONS(1661), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_var] = ACTIONS(1661), + [anon_sym_let] = ACTIONS(1661), + [anon_sym_const] = ACTIONS(1661), + [anon_sym_BANG] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1661), + [anon_sym_if] = ACTIONS(1661), + [anon_sym_switch] = ACTIONS(1661), + [anon_sym_for] = ACTIONS(1661), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_SEMI] = ACTIONS(1659), + [anon_sym_await] = ACTIONS(1661), + [anon_sym_in] = ACTIONS(1661), + [anon_sym_while] = ACTIONS(1661), + [anon_sym_do] = ACTIONS(1661), + [anon_sym_try] = ACTIONS(1661), + [anon_sym_break] = ACTIONS(1661), + [anon_sym_continue] = ACTIONS(1661), + [anon_sym_debugger] = ACTIONS(1661), + [anon_sym_return] = ACTIONS(1661), + [anon_sym_throw] = ACTIONS(1661), + [anon_sym_case] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1661), + [anon_sym_LBRACK] = ACTIONS(1659), + [anon_sym_GT] = ACTIONS(1661), + [anon_sym_DOT] = ACTIONS(1661), + [anon_sym_DQUOTE] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1659), + [anon_sym_class] = ACTIONS(1661), + [anon_sym_async] = ACTIONS(1661), + [anon_sym_function] = ACTIONS(1661), + [anon_sym_QMARK_DOT] = ACTIONS(1659), + [anon_sym_new] = ACTIONS(1661), + [anon_sym_using] = ACTIONS(1661), + [anon_sym_AMP_AMP] = ACTIONS(1659), + [anon_sym_PIPE_PIPE] = ACTIONS(1659), + [anon_sym_GT_GT] = ACTIONS(1661), + [anon_sym_GT_GT_GT] = ACTIONS(1659), + [anon_sym_LT_LT] = ACTIONS(1659), + [anon_sym_AMP] = ACTIONS(1661), + [anon_sym_CARET] = ACTIONS(1659), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1661), + [anon_sym_SLASH] = ACTIONS(1661), + [anon_sym_PERCENT] = ACTIONS(1659), + [anon_sym_STAR_STAR] = ACTIONS(1659), + [anon_sym_LT] = ACTIONS(1661), + [anon_sym_LT_EQ] = ACTIONS(1659), + [anon_sym_EQ_EQ] = ACTIONS(1661), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1659), + [anon_sym_BANG_EQ] = ACTIONS(1661), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1659), + [anon_sym_GT_EQ] = ACTIONS(1659), + [anon_sym_QMARK_QMARK] = ACTIONS(1659), + [anon_sym_instanceof] = ACTIONS(1661), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_void] = ACTIONS(1661), + [anon_sym_delete] = ACTIONS(1661), + [anon_sym_PLUS_PLUS] = ACTIONS(1659), + [anon_sym_DASH_DASH] = ACTIONS(1659), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1659), + [sym_number] = ACTIONS(1659), + [sym_private_property_identifier] = ACTIONS(1659), + [sym_this] = ACTIONS(1661), + [sym_super] = ACTIONS(1661), + [sym_true] = ACTIONS(1661), + [sym_false] = ACTIONS(1661), + [sym_null] = ACTIONS(1661), + [sym_undefined] = ACTIONS(1661), + [anon_sym_AT] = ACTIONS(1659), + [anon_sym_static] = ACTIONS(1661), + [anon_sym_readonly] = ACTIONS(1661), + [anon_sym_get] = ACTIONS(1661), + [anon_sym_set] = ACTIONS(1661), + [anon_sym_declare] = ACTIONS(1661), + [anon_sym_public] = ACTIONS(1661), + [anon_sym_private] = ACTIONS(1661), + [anon_sym_protected] = ACTIONS(1661), + [anon_sym_override] = ACTIONS(1661), + [anon_sym_module] = ACTIONS(1661), + [anon_sym_any] = ACTIONS(1661), + [anon_sym_number] = ACTIONS(1661), + [anon_sym_boolean] = ACTIONS(1661), + [anon_sym_string] = ACTIONS(1661), + [anon_sym_symbol] = ACTIONS(1661), + [anon_sym_object] = ACTIONS(1661), + [anon_sym_abstract] = ACTIONS(1661), + [anon_sym_satisfies] = ACTIONS(1661), + [anon_sym_interface] = ACTIONS(1661), + [anon_sym_enum] = ACTIONS(1661), + [sym__automatic_semicolon] = ACTIONS(1837), + [sym__ternary_qmark] = ACTIONS(1659), + [sym_html_comment] = ACTIONS(5), + }, + [247] = { + [ts_builtin_sym_end] = ACTIONS(1839), + [sym_identifier] = ACTIONS(1841), + [anon_sym_export] = ACTIONS(1841), + [anon_sym_STAR] = ACTIONS(1841), + [anon_sym_default] = ACTIONS(1841), + [anon_sym_type] = ACTIONS(1841), + [anon_sym_as] = ACTIONS(1841), + [anon_sym_namespace] = ACTIONS(1841), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_COMMA] = ACTIONS(1839), + [anon_sym_RBRACE] = ACTIONS(1839), + [anon_sym_typeof] = ACTIONS(1841), + [anon_sym_import] = ACTIONS(1841), + [anon_sym_with] = ACTIONS(1841), + [anon_sym_var] = ACTIONS(1841), + [anon_sym_let] = ACTIONS(1841), + [anon_sym_const] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1841), + [anon_sym_else] = ACTIONS(1841), + [anon_sym_if] = ACTIONS(1841), + [anon_sym_switch] = ACTIONS(1841), + [anon_sym_for] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1839), + [anon_sym_SEMI] = ACTIONS(1839), + [anon_sym_await] = ACTIONS(1841), + [anon_sym_in] = ACTIONS(1841), + [anon_sym_while] = ACTIONS(1841), + [anon_sym_do] = ACTIONS(1841), + [anon_sym_try] = ACTIONS(1841), + [anon_sym_break] = ACTIONS(1841), + [anon_sym_continue] = ACTIONS(1841), + [anon_sym_debugger] = ACTIONS(1841), + [anon_sym_return] = ACTIONS(1841), + [anon_sym_throw] = ACTIONS(1841), + [anon_sym_case] = ACTIONS(1841), + [anon_sym_yield] = ACTIONS(1841), + [anon_sym_LBRACK] = ACTIONS(1839), + [anon_sym_GT] = ACTIONS(1841), + [anon_sym_DOT] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_class] = ACTIONS(1841), + [anon_sym_async] = ACTIONS(1841), + [anon_sym_function] = ACTIONS(1841), + [anon_sym_QMARK_DOT] = ACTIONS(1839), + [anon_sym_new] = ACTIONS(1841), + [anon_sym_using] = ACTIONS(1841), + [anon_sym_AMP_AMP] = ACTIONS(1839), + [anon_sym_PIPE_PIPE] = ACTIONS(1839), + [anon_sym_GT_GT] = ACTIONS(1841), + [anon_sym_GT_GT_GT] = ACTIONS(1839), + [anon_sym_LT_LT] = ACTIONS(1839), + [anon_sym_AMP] = ACTIONS(1841), + [anon_sym_CARET] = ACTIONS(1839), + [anon_sym_PIPE] = ACTIONS(1841), + [anon_sym_PLUS] = ACTIONS(1841), + [anon_sym_DASH] = ACTIONS(1841), + [anon_sym_SLASH] = ACTIONS(1841), + [anon_sym_PERCENT] = ACTIONS(1839), + [anon_sym_STAR_STAR] = ACTIONS(1839), + [anon_sym_LT] = ACTIONS(1841), + [anon_sym_LT_EQ] = ACTIONS(1839), + [anon_sym_EQ_EQ] = ACTIONS(1841), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1839), + [anon_sym_BANG_EQ] = ACTIONS(1841), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1839), + [anon_sym_GT_EQ] = ACTIONS(1839), + [anon_sym_QMARK_QMARK] = ACTIONS(1839), + [anon_sym_instanceof] = ACTIONS(1841), + [anon_sym_TILDE] = ACTIONS(1839), + [anon_sym_void] = ACTIONS(1841), + [anon_sym_delete] = ACTIONS(1841), + [anon_sym_PLUS_PLUS] = ACTIONS(1839), + [anon_sym_DASH_DASH] = ACTIONS(1839), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1839), + [sym_number] = ACTIONS(1839), + [sym_private_property_identifier] = ACTIONS(1839), + [sym_this] = ACTIONS(1841), + [sym_super] = ACTIONS(1841), + [sym_true] = ACTIONS(1841), + [sym_false] = ACTIONS(1841), + [sym_null] = ACTIONS(1841), + [sym_undefined] = ACTIONS(1841), + [anon_sym_AT] = ACTIONS(1839), + [anon_sym_static] = ACTIONS(1841), + [anon_sym_readonly] = ACTIONS(1841), + [anon_sym_get] = ACTIONS(1841), + [anon_sym_set] = ACTIONS(1841), + [anon_sym_declare] = ACTIONS(1841), + [anon_sym_public] = ACTIONS(1841), + [anon_sym_private] = ACTIONS(1841), + [anon_sym_protected] = ACTIONS(1841), + [anon_sym_override] = ACTIONS(1841), + [anon_sym_module] = ACTIONS(1841), + [anon_sym_any] = ACTIONS(1841), + [anon_sym_number] = ACTIONS(1841), + [anon_sym_boolean] = ACTIONS(1841), + [anon_sym_string] = ACTIONS(1841), + [anon_sym_symbol] = ACTIONS(1841), + [anon_sym_object] = ACTIONS(1841), + [anon_sym_abstract] = ACTIONS(1841), + [anon_sym_satisfies] = ACTIONS(1841), + [anon_sym_interface] = ACTIONS(1841), + [anon_sym_enum] = ACTIONS(1841), + [sym__automatic_semicolon] = ACTIONS(1839), + [sym__ternary_qmark] = ACTIONS(1839), + [sym_html_comment] = ACTIONS(5), + }, + [248] = { + [ts_builtin_sym_end] = ACTIONS(1843), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1845), [anon_sym_STAR] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1843), - [anon_sym_type] = ACTIONS(1843), + [anon_sym_default] = ACTIONS(1845), + [anon_sym_type] = ACTIONS(1845), [anon_sym_as] = ACTIONS(1845), - [anon_sym_namespace] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(1841), - [anon_sym_COMMA] = ACTIONS(1847), - [anon_sym_RBRACE] = ACTIONS(1841), - [anon_sym_typeof] = ACTIONS(1843), - [anon_sym_import] = ACTIONS(1843), - [anon_sym_with] = ACTIONS(1843), - [anon_sym_var] = ACTIONS(1843), - [anon_sym_let] = ACTIONS(1843), - [anon_sym_const] = ACTIONS(1843), - [anon_sym_BANG] = ACTIONS(1843), - [anon_sym_else] = ACTIONS(1843), - [anon_sym_if] = ACTIONS(1843), - [anon_sym_switch] = ACTIONS(1843), - [anon_sym_for] = ACTIONS(1843), - [anon_sym_LPAREN] = ACTIONS(1841), - [anon_sym_SEMI] = ACTIONS(1841), - [anon_sym_await] = ACTIONS(1843), + [anon_sym_namespace] = ACTIONS(1845), + [anon_sym_LBRACE] = ACTIONS(1843), + [anon_sym_COMMA] = ACTIONS(1843), + [anon_sym_RBRACE] = ACTIONS(1843), + [anon_sym_typeof] = ACTIONS(1845), + [anon_sym_import] = ACTIONS(1845), + [anon_sym_with] = ACTIONS(1845), + [anon_sym_var] = ACTIONS(1845), + [anon_sym_let] = ACTIONS(1845), + [anon_sym_const] = ACTIONS(1845), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_else] = ACTIONS(1845), + [anon_sym_if] = ACTIONS(1845), + [anon_sym_switch] = ACTIONS(1845), + [anon_sym_for] = ACTIONS(1845), + [anon_sym_LPAREN] = ACTIONS(1843), + [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_await] = ACTIONS(1845), [anon_sym_in] = ACTIONS(1845), - [anon_sym_while] = ACTIONS(1843), - [anon_sym_do] = ACTIONS(1843), - [anon_sym_try] = ACTIONS(1843), - [anon_sym_break] = ACTIONS(1843), - [anon_sym_continue] = ACTIONS(1843), - [anon_sym_debugger] = ACTIONS(1843), - [anon_sym_return] = ACTIONS(1843), - [anon_sym_throw] = ACTIONS(1843), - [anon_sym_case] = ACTIONS(1843), - [anon_sym_yield] = ACTIONS(1843), - [anon_sym_LBRACK] = ACTIONS(1841), - [sym_glimmer_opening_tag] = ACTIONS(1841), + [anon_sym_while] = ACTIONS(1845), + [anon_sym_do] = ACTIONS(1845), + [anon_sym_try] = ACTIONS(1845), + [anon_sym_break] = ACTIONS(1845), + [anon_sym_continue] = ACTIONS(1845), + [anon_sym_debugger] = ACTIONS(1845), + [anon_sym_return] = ACTIONS(1845), + [anon_sym_throw] = ACTIONS(1845), + [anon_sym_case] = ACTIONS(1845), + [anon_sym_yield] = ACTIONS(1845), + [anon_sym_LBRACK] = ACTIONS(1843), [anon_sym_GT] = ACTIONS(1845), [anon_sym_DOT] = ACTIONS(1845), - [anon_sym_DQUOTE] = ACTIONS(1841), - [anon_sym_SQUOTE] = ACTIONS(1841), - [anon_sym_class] = ACTIONS(1843), - [anon_sym_async] = ACTIONS(1843), - [anon_sym_function] = ACTIONS(1843), - [anon_sym_QMARK_DOT] = ACTIONS(1847), - [anon_sym_new] = ACTIONS(1843), - [anon_sym_using] = ACTIONS(1843), - [anon_sym_AMP_AMP] = ACTIONS(1847), - [anon_sym_PIPE_PIPE] = ACTIONS(1847), + [anon_sym_DQUOTE] = ACTIONS(1843), + [anon_sym_SQUOTE] = ACTIONS(1843), + [anon_sym_class] = ACTIONS(1845), + [anon_sym_async] = ACTIONS(1845), + [anon_sym_function] = ACTIONS(1845), + [anon_sym_QMARK_DOT] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(1845), + [anon_sym_using] = ACTIONS(1845), + [anon_sym_AMP_AMP] = ACTIONS(1843), + [anon_sym_PIPE_PIPE] = ACTIONS(1843), [anon_sym_GT_GT] = ACTIONS(1845), - [anon_sym_GT_GT_GT] = ACTIONS(1847), - [anon_sym_LT_LT] = ACTIONS(1847), + [anon_sym_GT_GT_GT] = ACTIONS(1843), + [anon_sym_LT_LT] = ACTIONS(1843), [anon_sym_AMP] = ACTIONS(1845), - [anon_sym_CARET] = ACTIONS(1847), + [anon_sym_CARET] = ACTIONS(1843), [anon_sym_PIPE] = ACTIONS(1845), - [anon_sym_PLUS] = ACTIONS(1843), - [anon_sym_DASH] = ACTIONS(1843), - [anon_sym_SLASH] = ACTIONS(1843), - [anon_sym_PERCENT] = ACTIONS(1847), - [anon_sym_STAR_STAR] = ACTIONS(1847), - [anon_sym_LT] = ACTIONS(1843), - [anon_sym_LT_EQ] = ACTIONS(1847), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_SLASH] = ACTIONS(1845), + [anon_sym_PERCENT] = ACTIONS(1843), + [anon_sym_STAR_STAR] = ACTIONS(1843), + [anon_sym_LT] = ACTIONS(1845), + [anon_sym_LT_EQ] = ACTIONS(1843), [anon_sym_EQ_EQ] = ACTIONS(1845), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1847), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1843), [anon_sym_BANG_EQ] = ACTIONS(1845), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1847), - [anon_sym_GT_EQ] = ACTIONS(1847), - [anon_sym_QMARK_QMARK] = ACTIONS(1847), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1843), + [anon_sym_GT_EQ] = ACTIONS(1843), + [anon_sym_QMARK_QMARK] = ACTIONS(1843), [anon_sym_instanceof] = ACTIONS(1845), - [anon_sym_TILDE] = ACTIONS(1841), - [anon_sym_void] = ACTIONS(1843), - [anon_sym_delete] = ACTIONS(1843), - [anon_sym_PLUS_PLUS] = ACTIONS(1841), - [anon_sym_DASH_DASH] = ACTIONS(1841), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1841), - [sym_number] = ACTIONS(1841), - [sym_private_property_identifier] = ACTIONS(1841), - [sym_this] = ACTIONS(1843), - [sym_super] = ACTIONS(1843), - [sym_true] = ACTIONS(1843), - [sym_false] = ACTIONS(1843), - [sym_null] = ACTIONS(1843), - [sym_undefined] = ACTIONS(1843), - [anon_sym_AT] = ACTIONS(1841), - [anon_sym_static] = ACTIONS(1843), - [anon_sym_readonly] = ACTIONS(1843), - [anon_sym_get] = ACTIONS(1843), - [anon_sym_set] = ACTIONS(1843), - [anon_sym_declare] = ACTIONS(1843), - [anon_sym_public] = ACTIONS(1843), - [anon_sym_private] = ACTIONS(1843), - [anon_sym_protected] = ACTIONS(1843), - [anon_sym_override] = ACTIONS(1843), - [anon_sym_module] = ACTIONS(1843), - [anon_sym_any] = ACTIONS(1843), - [anon_sym_number] = ACTIONS(1843), - [anon_sym_boolean] = ACTIONS(1843), - [anon_sym_string] = ACTIONS(1843), - [anon_sym_symbol] = ACTIONS(1843), - [anon_sym_object] = ACTIONS(1843), - [anon_sym_abstract] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_void] = ACTIONS(1845), + [anon_sym_delete] = ACTIONS(1845), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1843), + [sym_number] = ACTIONS(1843), + [sym_private_property_identifier] = ACTIONS(1843), + [sym_this] = ACTIONS(1845), + [sym_super] = ACTIONS(1845), + [sym_true] = ACTIONS(1845), + [sym_false] = ACTIONS(1845), + [sym_null] = ACTIONS(1845), + [sym_undefined] = ACTIONS(1845), + [anon_sym_AT] = ACTIONS(1843), + [anon_sym_static] = ACTIONS(1845), + [anon_sym_readonly] = ACTIONS(1845), + [anon_sym_get] = ACTIONS(1845), + [anon_sym_set] = ACTIONS(1845), + [anon_sym_declare] = ACTIONS(1845), + [anon_sym_public] = ACTIONS(1845), + [anon_sym_private] = ACTIONS(1845), + [anon_sym_protected] = ACTIONS(1845), + [anon_sym_override] = ACTIONS(1845), + [anon_sym_module] = ACTIONS(1845), + [anon_sym_any] = ACTIONS(1845), + [anon_sym_number] = ACTIONS(1845), + [anon_sym_boolean] = ACTIONS(1845), + [anon_sym_string] = ACTIONS(1845), + [anon_sym_symbol] = ACTIONS(1845), + [anon_sym_object] = ACTIONS(1845), + [anon_sym_abstract] = ACTIONS(1845), [anon_sym_satisfies] = ACTIONS(1845), - [anon_sym_interface] = ACTIONS(1843), - [anon_sym_enum] = ACTIONS(1843), - [sym__automatic_semicolon] = ACTIONS(1849), - [sym__ternary_qmark] = ACTIONS(1847), + [anon_sym_interface] = ACTIONS(1845), + [anon_sym_enum] = ACTIONS(1845), + [sym__automatic_semicolon] = ACTIONS(1843), + [sym__ternary_qmark] = ACTIONS(1843), [sym_html_comment] = ACTIONS(5), }, - [247] = { - [sym_import] = STATE(3759), - [sym_variable_declaration] = STATE(314), - [sym_lexical_declaration] = STATE(314), - [sym_empty_statement] = STATE(314), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(2078), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5020), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5020), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5020), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5989), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1809), + [249] = { + [ts_builtin_sym_end] = ACTIONS(1809), + [sym_identifier] = ACTIONS(1811), [anon_sym_export] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1811), + [anon_sym_default] = ACTIONS(1811), [anon_sym_type] = ACTIONS(1811), - [anon_sym_namespace] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(1815), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_var] = ACTIONS(1817), - [anon_sym_let] = ACTIONS(1819), - [anon_sym_const] = ACTIONS(1821), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(1823), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1825), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1827), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1829), - [anon_sym_AT] = ACTIONS(99), + [anon_sym_as] = ACTIONS(1811), + [anon_sym_namespace] = ACTIONS(1811), + [anon_sym_LBRACE] = ACTIONS(1809), + [anon_sym_COMMA] = ACTIONS(1809), + [anon_sym_RBRACE] = ACTIONS(1809), + [anon_sym_typeof] = ACTIONS(1811), + [anon_sym_import] = ACTIONS(1811), + [anon_sym_with] = ACTIONS(1811), + [anon_sym_var] = ACTIONS(1811), + [anon_sym_let] = ACTIONS(1811), + [anon_sym_const] = ACTIONS(1811), + [anon_sym_BANG] = ACTIONS(1811), + [anon_sym_else] = ACTIONS(1811), + [anon_sym_if] = ACTIONS(1811), + [anon_sym_switch] = ACTIONS(1811), + [anon_sym_for] = ACTIONS(1811), + [anon_sym_LPAREN] = ACTIONS(1809), + [anon_sym_SEMI] = ACTIONS(1809), + [anon_sym_await] = ACTIONS(1811), + [anon_sym_in] = ACTIONS(1811), + [anon_sym_while] = ACTIONS(1811), + [anon_sym_do] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1811), + [anon_sym_break] = ACTIONS(1811), + [anon_sym_continue] = ACTIONS(1811), + [anon_sym_debugger] = ACTIONS(1811), + [anon_sym_return] = ACTIONS(1811), + [anon_sym_throw] = ACTIONS(1811), + [anon_sym_case] = ACTIONS(1811), + [anon_sym_yield] = ACTIONS(1811), + [anon_sym_LBRACK] = ACTIONS(1809), + [anon_sym_GT] = ACTIONS(1811), + [anon_sym_DOT] = ACTIONS(1811), + [anon_sym_DQUOTE] = ACTIONS(1809), + [anon_sym_SQUOTE] = ACTIONS(1809), + [anon_sym_class] = ACTIONS(1811), + [anon_sym_async] = ACTIONS(1811), + [anon_sym_function] = ACTIONS(1811), + [anon_sym_QMARK_DOT] = ACTIONS(1809), + [anon_sym_new] = ACTIONS(1811), + [anon_sym_using] = ACTIONS(1811), + [anon_sym_AMP_AMP] = ACTIONS(1809), + [anon_sym_PIPE_PIPE] = ACTIONS(1809), + [anon_sym_GT_GT] = ACTIONS(1811), + [anon_sym_GT_GT_GT] = ACTIONS(1809), + [anon_sym_LT_LT] = ACTIONS(1809), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1809), + [anon_sym_PIPE] = ACTIONS(1811), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_SLASH] = ACTIONS(1811), + [anon_sym_PERCENT] = ACTIONS(1809), + [anon_sym_STAR_STAR] = ACTIONS(1809), + [anon_sym_LT] = ACTIONS(1811), + [anon_sym_LT_EQ] = ACTIONS(1809), + [anon_sym_EQ_EQ] = ACTIONS(1811), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1809), + [anon_sym_BANG_EQ] = ACTIONS(1811), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1809), + [anon_sym_GT_EQ] = ACTIONS(1809), + [anon_sym_QMARK_QMARK] = ACTIONS(1809), + [anon_sym_instanceof] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1809), + [anon_sym_void] = ACTIONS(1811), + [anon_sym_delete] = ACTIONS(1811), + [anon_sym_PLUS_PLUS] = ACTIONS(1809), + [anon_sym_DASH_DASH] = ACTIONS(1809), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1809), + [sym_number] = ACTIONS(1809), + [sym_private_property_identifier] = ACTIONS(1809), + [sym_this] = ACTIONS(1811), + [sym_super] = ACTIONS(1811), + [sym_true] = ACTIONS(1811), + [sym_false] = ACTIONS(1811), + [sym_null] = ACTIONS(1811), + [sym_undefined] = ACTIONS(1811), + [anon_sym_AT] = ACTIONS(1809), [anon_sym_static] = ACTIONS(1811), [anon_sym_readonly] = ACTIONS(1811), [anon_sym_get] = ACTIONS(1811), @@ -55530,339 +54977,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1811), [anon_sym_symbol] = ACTIONS(1811), [anon_sym_object] = ACTIONS(1811), - [sym_html_comment] = ACTIONS(5), - }, - [248] = { - [ts_builtin_sym_end] = ACTIONS(1702), - [sym_identifier] = ACTIONS(1704), - [anon_sym_export] = ACTIONS(1704), - [anon_sym_STAR] = ACTIONS(1704), - [anon_sym_default] = ACTIONS(1704), - [anon_sym_type] = ACTIONS(1704), - [anon_sym_as] = ACTIONS(1704), - [anon_sym_namespace] = ACTIONS(1704), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_COMMA] = ACTIONS(1702), - [anon_sym_RBRACE] = ACTIONS(1702), - [anon_sym_typeof] = ACTIONS(1704), - [anon_sym_import] = ACTIONS(1704), - [anon_sym_with] = ACTIONS(1704), - [anon_sym_var] = ACTIONS(1704), - [anon_sym_let] = ACTIONS(1704), - [anon_sym_const] = ACTIONS(1704), - [anon_sym_BANG] = ACTIONS(1704), - [anon_sym_else] = ACTIONS(1704), - [anon_sym_if] = ACTIONS(1704), - [anon_sym_switch] = ACTIONS(1704), - [anon_sym_for] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(1702), - [anon_sym_SEMI] = ACTIONS(1702), - [anon_sym_await] = ACTIONS(1704), - [anon_sym_in] = ACTIONS(1704), - [anon_sym_while] = ACTIONS(1704), - [anon_sym_do] = ACTIONS(1704), - [anon_sym_try] = ACTIONS(1704), - [anon_sym_break] = ACTIONS(1704), - [anon_sym_continue] = ACTIONS(1704), - [anon_sym_debugger] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1704), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_case] = ACTIONS(1704), - [anon_sym_yield] = ACTIONS(1704), - [anon_sym_LBRACK] = ACTIONS(1702), - [sym_glimmer_opening_tag] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1704), - [anon_sym_DOT] = ACTIONS(1704), - [anon_sym_DQUOTE] = ACTIONS(1702), - [anon_sym_SQUOTE] = ACTIONS(1702), - [anon_sym_class] = ACTIONS(1704), - [anon_sym_async] = ACTIONS(1704), - [anon_sym_function] = ACTIONS(1704), - [anon_sym_QMARK_DOT] = ACTIONS(1702), - [anon_sym_new] = ACTIONS(1704), - [anon_sym_using] = ACTIONS(1704), - [anon_sym_AMP_AMP] = ACTIONS(1702), - [anon_sym_PIPE_PIPE] = ACTIONS(1702), - [anon_sym_GT_GT] = ACTIONS(1704), - [anon_sym_GT_GT_GT] = ACTIONS(1702), - [anon_sym_LT_LT] = ACTIONS(1702), - [anon_sym_AMP] = ACTIONS(1704), - [anon_sym_CARET] = ACTIONS(1702), - [anon_sym_PIPE] = ACTIONS(1704), - [anon_sym_PLUS] = ACTIONS(1704), - [anon_sym_DASH] = ACTIONS(1704), - [anon_sym_SLASH] = ACTIONS(1704), - [anon_sym_PERCENT] = ACTIONS(1702), - [anon_sym_STAR_STAR] = ACTIONS(1702), - [anon_sym_LT] = ACTIONS(1704), - [anon_sym_LT_EQ] = ACTIONS(1702), - [anon_sym_EQ_EQ] = ACTIONS(1704), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1702), - [anon_sym_BANG_EQ] = ACTIONS(1704), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1702), - [anon_sym_GT_EQ] = ACTIONS(1702), - [anon_sym_QMARK_QMARK] = ACTIONS(1702), - [anon_sym_instanceof] = ACTIONS(1704), - [anon_sym_TILDE] = ACTIONS(1702), - [anon_sym_void] = ACTIONS(1704), - [anon_sym_delete] = ACTIONS(1704), - [anon_sym_PLUS_PLUS] = ACTIONS(1702), - [anon_sym_DASH_DASH] = ACTIONS(1702), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1702), - [sym_number] = ACTIONS(1702), - [sym_private_property_identifier] = ACTIONS(1702), - [sym_this] = ACTIONS(1704), - [sym_super] = ACTIONS(1704), - [sym_true] = ACTIONS(1704), - [sym_false] = ACTIONS(1704), - [sym_null] = ACTIONS(1704), - [sym_undefined] = ACTIONS(1704), - [anon_sym_AT] = ACTIONS(1702), - [anon_sym_static] = ACTIONS(1704), - [anon_sym_readonly] = ACTIONS(1704), - [anon_sym_get] = ACTIONS(1704), - [anon_sym_set] = ACTIONS(1704), - [anon_sym_declare] = ACTIONS(1704), - [anon_sym_public] = ACTIONS(1704), - [anon_sym_private] = ACTIONS(1704), - [anon_sym_protected] = ACTIONS(1704), - [anon_sym_override] = ACTIONS(1704), - [anon_sym_module] = ACTIONS(1704), - [anon_sym_any] = ACTIONS(1704), - [anon_sym_number] = ACTIONS(1704), - [anon_sym_boolean] = ACTIONS(1704), - [anon_sym_string] = ACTIONS(1704), - [anon_sym_symbol] = ACTIONS(1704), - [anon_sym_object] = ACTIONS(1704), - [anon_sym_abstract] = ACTIONS(1704), - [anon_sym_satisfies] = ACTIONS(1704), - [anon_sym_interface] = ACTIONS(1704), - [anon_sym_enum] = ACTIONS(1704), - [sym__automatic_semicolon] = ACTIONS(1851), - [sym__ternary_qmark] = ACTIONS(1702), - [sym_html_comment] = ACTIONS(5), - }, - [249] = { - [ts_builtin_sym_end] = ACTIONS(1853), - [sym_identifier] = ACTIONS(1855), - [anon_sym_export] = ACTIONS(1855), - [anon_sym_STAR] = ACTIONS(1855), - [anon_sym_default] = ACTIONS(1855), - [anon_sym_type] = ACTIONS(1855), - [anon_sym_as] = ACTIONS(1855), - [anon_sym_namespace] = ACTIONS(1855), - [anon_sym_LBRACE] = ACTIONS(1853), - [anon_sym_COMMA] = ACTIONS(1853), - [anon_sym_RBRACE] = ACTIONS(1853), - [anon_sym_typeof] = ACTIONS(1855), - [anon_sym_import] = ACTIONS(1855), - [anon_sym_with] = ACTIONS(1855), - [anon_sym_var] = ACTIONS(1855), - [anon_sym_let] = ACTIONS(1855), - [anon_sym_const] = ACTIONS(1855), - [anon_sym_BANG] = ACTIONS(1855), - [anon_sym_else] = ACTIONS(1855), - [anon_sym_if] = ACTIONS(1855), - [anon_sym_switch] = ACTIONS(1855), - [anon_sym_for] = ACTIONS(1855), - [anon_sym_LPAREN] = ACTIONS(1853), - [anon_sym_SEMI] = ACTIONS(1853), - [anon_sym_await] = ACTIONS(1855), - [anon_sym_in] = ACTIONS(1855), - [anon_sym_while] = ACTIONS(1855), - [anon_sym_do] = ACTIONS(1855), - [anon_sym_try] = ACTIONS(1855), - [anon_sym_break] = ACTIONS(1855), - [anon_sym_continue] = ACTIONS(1855), - [anon_sym_debugger] = ACTIONS(1855), - [anon_sym_return] = ACTIONS(1855), - [anon_sym_throw] = ACTIONS(1855), - [anon_sym_case] = ACTIONS(1855), - [anon_sym_yield] = ACTIONS(1855), - [anon_sym_LBRACK] = ACTIONS(1853), - [sym_glimmer_opening_tag] = ACTIONS(1853), - [anon_sym_GT] = ACTIONS(1855), - [anon_sym_DOT] = ACTIONS(1855), - [anon_sym_DQUOTE] = ACTIONS(1853), - [anon_sym_SQUOTE] = ACTIONS(1853), - [anon_sym_class] = ACTIONS(1855), - [anon_sym_async] = ACTIONS(1855), - [anon_sym_function] = ACTIONS(1855), - [anon_sym_QMARK_DOT] = ACTIONS(1853), - [anon_sym_new] = ACTIONS(1855), - [anon_sym_using] = ACTIONS(1855), - [anon_sym_AMP_AMP] = ACTIONS(1853), - [anon_sym_PIPE_PIPE] = ACTIONS(1853), - [anon_sym_GT_GT] = ACTIONS(1855), - [anon_sym_GT_GT_GT] = ACTIONS(1853), - [anon_sym_LT_LT] = ACTIONS(1853), - [anon_sym_AMP] = ACTIONS(1855), - [anon_sym_CARET] = ACTIONS(1853), - [anon_sym_PIPE] = ACTIONS(1855), - [anon_sym_PLUS] = ACTIONS(1855), - [anon_sym_DASH] = ACTIONS(1855), - [anon_sym_SLASH] = ACTIONS(1855), - [anon_sym_PERCENT] = ACTIONS(1853), - [anon_sym_STAR_STAR] = ACTIONS(1853), - [anon_sym_LT] = ACTIONS(1855), - [anon_sym_LT_EQ] = ACTIONS(1853), - [anon_sym_EQ_EQ] = ACTIONS(1855), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1853), - [anon_sym_BANG_EQ] = ACTIONS(1855), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1853), - [anon_sym_GT_EQ] = ACTIONS(1853), - [anon_sym_QMARK_QMARK] = ACTIONS(1853), - [anon_sym_instanceof] = ACTIONS(1855), - [anon_sym_TILDE] = ACTIONS(1853), - [anon_sym_void] = ACTIONS(1855), - [anon_sym_delete] = ACTIONS(1855), - [anon_sym_PLUS_PLUS] = ACTIONS(1853), - [anon_sym_DASH_DASH] = ACTIONS(1853), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1853), - [sym_number] = ACTIONS(1853), - [sym_private_property_identifier] = ACTIONS(1853), - [sym_this] = ACTIONS(1855), - [sym_super] = ACTIONS(1855), - [sym_true] = ACTIONS(1855), - [sym_false] = ACTIONS(1855), - [sym_null] = ACTIONS(1855), - [sym_undefined] = ACTIONS(1855), - [anon_sym_AT] = ACTIONS(1853), - [anon_sym_static] = ACTIONS(1855), - [anon_sym_readonly] = ACTIONS(1855), - [anon_sym_get] = ACTIONS(1855), - [anon_sym_set] = ACTIONS(1855), - [anon_sym_declare] = ACTIONS(1855), - [anon_sym_public] = ACTIONS(1855), - [anon_sym_private] = ACTIONS(1855), - [anon_sym_protected] = ACTIONS(1855), - [anon_sym_override] = ACTIONS(1855), - [anon_sym_module] = ACTIONS(1855), - [anon_sym_any] = ACTIONS(1855), - [anon_sym_number] = ACTIONS(1855), - [anon_sym_boolean] = ACTIONS(1855), - [anon_sym_string] = ACTIONS(1855), - [anon_sym_symbol] = ACTIONS(1855), - [anon_sym_object] = ACTIONS(1855), - [anon_sym_abstract] = ACTIONS(1855), - [anon_sym_satisfies] = ACTIONS(1855), - [anon_sym_interface] = ACTIONS(1855), - [anon_sym_enum] = ACTIONS(1855), - [sym__automatic_semicolon] = ACTIONS(1853), - [sym__ternary_qmark] = ACTIONS(1853), + [anon_sym_abstract] = ACTIONS(1811), + [anon_sym_satisfies] = ACTIONS(1811), + [anon_sym_interface] = ACTIONS(1811), + [anon_sym_enum] = ACTIONS(1811), + [sym__automatic_semicolon] = ACTIONS(1847), + [sym__ternary_qmark] = ACTIONS(1809), [sym_html_comment] = ACTIONS(5), }, [250] = { - [ts_builtin_sym_end] = ACTIONS(1853), - [sym_identifier] = ACTIONS(1855), - [anon_sym_export] = ACTIONS(1855), - [anon_sym_STAR] = ACTIONS(1855), - [anon_sym_default] = ACTIONS(1855), - [anon_sym_type] = ACTIONS(1855), - [anon_sym_as] = ACTIONS(1855), - [anon_sym_namespace] = ACTIONS(1855), - [anon_sym_LBRACE] = ACTIONS(1853), - [anon_sym_COMMA] = ACTIONS(1853), - [anon_sym_RBRACE] = ACTIONS(1853), - [anon_sym_typeof] = ACTIONS(1855), - [anon_sym_import] = ACTIONS(1855), - [anon_sym_with] = ACTIONS(1855), - [anon_sym_var] = ACTIONS(1855), - [anon_sym_let] = ACTIONS(1855), - [anon_sym_const] = ACTIONS(1855), - [anon_sym_BANG] = ACTIONS(1855), - [anon_sym_else] = ACTIONS(1855), - [anon_sym_if] = ACTIONS(1855), - [anon_sym_switch] = ACTIONS(1855), - [anon_sym_for] = ACTIONS(1855), - [anon_sym_LPAREN] = ACTIONS(1853), - [anon_sym_SEMI] = ACTIONS(1853), - [anon_sym_await] = ACTIONS(1855), - [anon_sym_in] = ACTIONS(1855), - [anon_sym_while] = ACTIONS(1855), - [anon_sym_do] = ACTIONS(1855), - [anon_sym_try] = ACTIONS(1855), - [anon_sym_break] = ACTIONS(1855), - [anon_sym_continue] = ACTIONS(1855), - [anon_sym_debugger] = ACTIONS(1855), - [anon_sym_return] = ACTIONS(1855), - [anon_sym_throw] = ACTIONS(1855), - [anon_sym_case] = ACTIONS(1855), - [anon_sym_yield] = ACTIONS(1855), - [anon_sym_LBRACK] = ACTIONS(1853), - [sym_glimmer_opening_tag] = ACTIONS(1853), - [anon_sym_GT] = ACTIONS(1855), - [anon_sym_DOT] = ACTIONS(1855), - [anon_sym_DQUOTE] = ACTIONS(1853), - [anon_sym_SQUOTE] = ACTIONS(1853), - [anon_sym_class] = ACTIONS(1855), - [anon_sym_async] = ACTIONS(1855), - [anon_sym_function] = ACTIONS(1855), - [anon_sym_QMARK_DOT] = ACTIONS(1853), - [anon_sym_new] = ACTIONS(1855), - [anon_sym_using] = ACTIONS(1855), - [anon_sym_AMP_AMP] = ACTIONS(1853), - [anon_sym_PIPE_PIPE] = ACTIONS(1853), - [anon_sym_GT_GT] = ACTIONS(1855), - [anon_sym_GT_GT_GT] = ACTIONS(1853), - [anon_sym_LT_LT] = ACTIONS(1853), - [anon_sym_AMP] = ACTIONS(1855), - [anon_sym_CARET] = ACTIONS(1853), - [anon_sym_PIPE] = ACTIONS(1855), - [anon_sym_PLUS] = ACTIONS(1855), - [anon_sym_DASH] = ACTIONS(1855), - [anon_sym_SLASH] = ACTIONS(1855), - [anon_sym_PERCENT] = ACTIONS(1853), - [anon_sym_STAR_STAR] = ACTIONS(1853), - [anon_sym_LT] = ACTIONS(1855), - [anon_sym_LT_EQ] = ACTIONS(1853), - [anon_sym_EQ_EQ] = ACTIONS(1855), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1853), - [anon_sym_BANG_EQ] = ACTIONS(1855), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1853), - [anon_sym_GT_EQ] = ACTIONS(1853), - [anon_sym_QMARK_QMARK] = ACTIONS(1853), - [anon_sym_instanceof] = ACTIONS(1855), - [anon_sym_TILDE] = ACTIONS(1853), - [anon_sym_void] = ACTIONS(1855), - [anon_sym_delete] = ACTIONS(1855), - [anon_sym_PLUS_PLUS] = ACTIONS(1853), - [anon_sym_DASH_DASH] = ACTIONS(1853), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1853), - [sym_number] = ACTIONS(1853), - [sym_private_property_identifier] = ACTIONS(1853), - [sym_this] = ACTIONS(1855), - [sym_super] = ACTIONS(1855), - [sym_true] = ACTIONS(1855), - [sym_false] = ACTIONS(1855), - [sym_null] = ACTIONS(1855), - [sym_undefined] = ACTIONS(1855), - [anon_sym_AT] = ACTIONS(1853), - [anon_sym_static] = ACTIONS(1855), - [anon_sym_readonly] = ACTIONS(1855), - [anon_sym_get] = ACTIONS(1855), - [anon_sym_set] = ACTIONS(1855), - [anon_sym_declare] = ACTIONS(1855), - [anon_sym_public] = ACTIONS(1855), - [anon_sym_private] = ACTIONS(1855), - [anon_sym_protected] = ACTIONS(1855), - [anon_sym_override] = ACTIONS(1855), - [anon_sym_module] = ACTIONS(1855), - [anon_sym_any] = ACTIONS(1855), - [anon_sym_number] = ACTIONS(1855), - [anon_sym_boolean] = ACTIONS(1855), - [anon_sym_string] = ACTIONS(1855), - [anon_sym_symbol] = ACTIONS(1855), - [anon_sym_object] = ACTIONS(1855), - [anon_sym_abstract] = ACTIONS(1855), - [anon_sym_satisfies] = ACTIONS(1855), - [anon_sym_interface] = ACTIONS(1855), - [anon_sym_enum] = ACTIONS(1855), + [ts_builtin_sym_end] = ACTIONS(1849), + [sym_identifier] = ACTIONS(1851), + [anon_sym_export] = ACTIONS(1851), + [anon_sym_STAR] = ACTIONS(1853), + [anon_sym_default] = ACTIONS(1851), + [anon_sym_type] = ACTIONS(1851), + [anon_sym_as] = ACTIONS(1853), + [anon_sym_namespace] = ACTIONS(1851), + [anon_sym_LBRACE] = ACTIONS(1849), + [anon_sym_COMMA] = ACTIONS(1855), + [anon_sym_RBRACE] = ACTIONS(1849), + [anon_sym_typeof] = ACTIONS(1851), + [anon_sym_import] = ACTIONS(1851), + [anon_sym_with] = ACTIONS(1851), + [anon_sym_var] = ACTIONS(1851), + [anon_sym_let] = ACTIONS(1851), + [anon_sym_const] = ACTIONS(1851), + [anon_sym_BANG] = ACTIONS(1851), + [anon_sym_else] = ACTIONS(1851), + [anon_sym_if] = ACTIONS(1851), + [anon_sym_switch] = ACTIONS(1851), + [anon_sym_for] = ACTIONS(1851), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_SEMI] = ACTIONS(1849), + [anon_sym_await] = ACTIONS(1851), + [anon_sym_in] = ACTIONS(1853), + [anon_sym_while] = ACTIONS(1851), + [anon_sym_do] = ACTIONS(1851), + [anon_sym_try] = ACTIONS(1851), + [anon_sym_break] = ACTIONS(1851), + [anon_sym_continue] = ACTIONS(1851), + [anon_sym_debugger] = ACTIONS(1851), + [anon_sym_return] = ACTIONS(1851), + [anon_sym_throw] = ACTIONS(1851), + [anon_sym_case] = ACTIONS(1851), + [anon_sym_yield] = ACTIONS(1851), + [anon_sym_LBRACK] = ACTIONS(1849), + [anon_sym_GT] = ACTIONS(1853), + [anon_sym_DOT] = ACTIONS(1853), + [anon_sym_DQUOTE] = ACTIONS(1849), + [anon_sym_SQUOTE] = ACTIONS(1849), + [anon_sym_class] = ACTIONS(1851), + [anon_sym_async] = ACTIONS(1851), + [anon_sym_function] = ACTIONS(1851), + [anon_sym_QMARK_DOT] = ACTIONS(1855), + [anon_sym_new] = ACTIONS(1851), + [anon_sym_using] = ACTIONS(1851), + [anon_sym_AMP_AMP] = ACTIONS(1855), + [anon_sym_PIPE_PIPE] = ACTIONS(1855), + [anon_sym_GT_GT] = ACTIONS(1853), + [anon_sym_GT_GT_GT] = ACTIONS(1855), + [anon_sym_LT_LT] = ACTIONS(1855), + [anon_sym_AMP] = ACTIONS(1853), + [anon_sym_CARET] = ACTIONS(1855), + [anon_sym_PIPE] = ACTIONS(1853), + [anon_sym_PLUS] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_SLASH] = ACTIONS(1851), + [anon_sym_PERCENT] = ACTIONS(1855), + [anon_sym_STAR_STAR] = ACTIONS(1855), + [anon_sym_LT] = ACTIONS(1851), + [anon_sym_LT_EQ] = ACTIONS(1855), + [anon_sym_EQ_EQ] = ACTIONS(1853), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1855), + [anon_sym_BANG_EQ] = ACTIONS(1853), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1855), + [anon_sym_GT_EQ] = ACTIONS(1855), + [anon_sym_QMARK_QMARK] = ACTIONS(1855), + [anon_sym_instanceof] = ACTIONS(1853), + [anon_sym_TILDE] = ACTIONS(1849), + [anon_sym_void] = ACTIONS(1851), + [anon_sym_delete] = ACTIONS(1851), + [anon_sym_PLUS_PLUS] = ACTIONS(1849), + [anon_sym_DASH_DASH] = ACTIONS(1849), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1849), + [sym_number] = ACTIONS(1849), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(1851), + [sym_super] = ACTIONS(1851), + [sym_true] = ACTIONS(1851), + [sym_false] = ACTIONS(1851), + [sym_null] = ACTIONS(1851), + [sym_undefined] = ACTIONS(1851), + [anon_sym_AT] = ACTIONS(1849), + [anon_sym_static] = ACTIONS(1851), + [anon_sym_readonly] = ACTIONS(1851), + [anon_sym_get] = ACTIONS(1851), + [anon_sym_set] = ACTIONS(1851), + [anon_sym_declare] = ACTIONS(1851), + [anon_sym_public] = ACTIONS(1851), + [anon_sym_private] = ACTIONS(1851), + [anon_sym_protected] = ACTIONS(1851), + [anon_sym_override] = ACTIONS(1851), + [anon_sym_module] = ACTIONS(1851), + [anon_sym_any] = ACTIONS(1851), + [anon_sym_number] = ACTIONS(1851), + [anon_sym_boolean] = ACTIONS(1851), + [anon_sym_string] = ACTIONS(1851), + [anon_sym_symbol] = ACTIONS(1851), + [anon_sym_object] = ACTIONS(1851), + [anon_sym_abstract] = ACTIONS(1851), + [anon_sym_satisfies] = ACTIONS(1853), + [anon_sym_interface] = ACTIONS(1851), + [anon_sym_enum] = ACTIONS(1851), [sym__automatic_semicolon] = ACTIONS(1857), - [sym__ternary_qmark] = ACTIONS(1853), + [sym__ternary_qmark] = ACTIONS(1855), [sym_html_comment] = ACTIONS(5), }, [251] = { @@ -55903,7 +55133,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(1861), [anon_sym_yield] = ACTIONS(1861), [anon_sym_LBRACK] = ACTIONS(1859), - [sym_glimmer_opening_tag] = ACTIONS(1859), [anon_sym_GT] = ACTIONS(1863), [anon_sym_DOT] = ACTIONS(1863), [anon_sym_DQUOTE] = ACTIONS(1859), @@ -56014,7 +55243,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(1871), [anon_sym_yield] = ACTIONS(1871), [anon_sym_LBRACK] = ACTIONS(1869), - [sym_glimmer_opening_tag] = ACTIONS(1869), [anon_sym_GT] = ACTIONS(1871), [anon_sym_DOT] = ACTIONS(1871), [anon_sym_DQUOTE] = ACTIONS(1869), @@ -56091,13 +55319,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [ts_builtin_sym_end] = ACTIONS(1873), [sym_identifier] = ACTIONS(1875), [anon_sym_export] = ACTIONS(1875), - [anon_sym_STAR] = ACTIONS(1875), + [anon_sym_STAR] = ACTIONS(1877), [anon_sym_default] = ACTIONS(1875), [anon_sym_type] = ACTIONS(1875), - [anon_sym_as] = ACTIONS(1875), + [anon_sym_as] = ACTIONS(1877), [anon_sym_namespace] = ACTIONS(1875), [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_COMMA] = ACTIONS(1873), + [anon_sym_COMMA] = ACTIONS(1879), [anon_sym_RBRACE] = ACTIONS(1873), [anon_sym_typeof] = ACTIONS(1875), [anon_sym_import] = ACTIONS(1875), @@ -56113,7 +55341,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1873), [anon_sym_SEMI] = ACTIONS(1873), [anon_sym_await] = ACTIONS(1875), - [anon_sym_in] = ACTIONS(1875), + [anon_sym_in] = ACTIONS(1877), [anon_sym_while] = ACTIONS(1875), [anon_sym_do] = ACTIONS(1875), [anon_sym_try] = ACTIONS(1875), @@ -56125,39 +55353,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(1875), [anon_sym_yield] = ACTIONS(1875), [anon_sym_LBRACK] = ACTIONS(1873), - [sym_glimmer_opening_tag] = ACTIONS(1873), - [anon_sym_GT] = ACTIONS(1875), - [anon_sym_DOT] = ACTIONS(1875), + [anon_sym_GT] = ACTIONS(1877), + [anon_sym_DOT] = ACTIONS(1877), [anon_sym_DQUOTE] = ACTIONS(1873), [anon_sym_SQUOTE] = ACTIONS(1873), [anon_sym_class] = ACTIONS(1875), [anon_sym_async] = ACTIONS(1875), [anon_sym_function] = ACTIONS(1875), - [anon_sym_QMARK_DOT] = ACTIONS(1873), + [anon_sym_QMARK_DOT] = ACTIONS(1879), [anon_sym_new] = ACTIONS(1875), [anon_sym_using] = ACTIONS(1875), - [anon_sym_AMP_AMP] = ACTIONS(1873), - [anon_sym_PIPE_PIPE] = ACTIONS(1873), - [anon_sym_GT_GT] = ACTIONS(1875), - [anon_sym_GT_GT_GT] = ACTIONS(1873), - [anon_sym_LT_LT] = ACTIONS(1873), - [anon_sym_AMP] = ACTIONS(1875), - [anon_sym_CARET] = ACTIONS(1873), - [anon_sym_PIPE] = ACTIONS(1875), + [anon_sym_AMP_AMP] = ACTIONS(1879), + [anon_sym_PIPE_PIPE] = ACTIONS(1879), + [anon_sym_GT_GT] = ACTIONS(1877), + [anon_sym_GT_GT_GT] = ACTIONS(1879), + [anon_sym_LT_LT] = ACTIONS(1879), + [anon_sym_AMP] = ACTIONS(1877), + [anon_sym_CARET] = ACTIONS(1879), + [anon_sym_PIPE] = ACTIONS(1877), [anon_sym_PLUS] = ACTIONS(1875), [anon_sym_DASH] = ACTIONS(1875), [anon_sym_SLASH] = ACTIONS(1875), - [anon_sym_PERCENT] = ACTIONS(1873), - [anon_sym_STAR_STAR] = ACTIONS(1873), + [anon_sym_PERCENT] = ACTIONS(1879), + [anon_sym_STAR_STAR] = ACTIONS(1879), [anon_sym_LT] = ACTIONS(1875), - [anon_sym_LT_EQ] = ACTIONS(1873), - [anon_sym_EQ_EQ] = ACTIONS(1875), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1873), - [anon_sym_BANG_EQ] = ACTIONS(1875), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1873), - [anon_sym_GT_EQ] = ACTIONS(1873), - [anon_sym_QMARK_QMARK] = ACTIONS(1873), - [anon_sym_instanceof] = ACTIONS(1875), + [anon_sym_LT_EQ] = ACTIONS(1879), + [anon_sym_EQ_EQ] = ACTIONS(1877), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1879), + [anon_sym_BANG_EQ] = ACTIONS(1877), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1879), + [anon_sym_GT_EQ] = ACTIONS(1879), + [anon_sym_QMARK_QMARK] = ACTIONS(1879), + [anon_sym_instanceof] = ACTIONS(1877), [anon_sym_TILDE] = ACTIONS(1873), [anon_sym_void] = ACTIONS(1875), [anon_sym_delete] = ACTIONS(1875), @@ -56191,51992 +55418,51905 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1875), [anon_sym_object] = ACTIONS(1875), [anon_sym_abstract] = ACTIONS(1875), - [anon_sym_satisfies] = ACTIONS(1875), + [anon_sym_satisfies] = ACTIONS(1877), [anon_sym_interface] = ACTIONS(1875), [anon_sym_enum] = ACTIONS(1875), - [sym__automatic_semicolon] = ACTIONS(1873), - [sym__ternary_qmark] = ACTIONS(1873), + [sym__automatic_semicolon] = ACTIONS(1879), + [sym__ternary_qmark] = ACTIONS(1879), [sym_html_comment] = ACTIONS(5), }, [254] = { - [ts_builtin_sym_end] = ACTIONS(1877), - [sym_identifier] = ACTIONS(1879), - [anon_sym_export] = ACTIONS(1879), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_default] = ACTIONS(1879), - [anon_sym_type] = ACTIONS(1879), - [anon_sym_as] = ACTIONS(1881), - [anon_sym_namespace] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(1877), - [anon_sym_COMMA] = ACTIONS(1883), - [anon_sym_RBRACE] = ACTIONS(1877), - [anon_sym_typeof] = ACTIONS(1879), - [anon_sym_import] = ACTIONS(1879), - [anon_sym_with] = ACTIONS(1879), - [anon_sym_var] = ACTIONS(1879), - [anon_sym_let] = ACTIONS(1879), - [anon_sym_const] = ACTIONS(1879), - [anon_sym_BANG] = ACTIONS(1879), - [anon_sym_else] = ACTIONS(1879), - [anon_sym_if] = ACTIONS(1879), - [anon_sym_switch] = ACTIONS(1879), - [anon_sym_for] = ACTIONS(1879), - [anon_sym_LPAREN] = ACTIONS(1877), - [anon_sym_SEMI] = ACTIONS(1877), - [anon_sym_await] = ACTIONS(1879), - [anon_sym_in] = ACTIONS(1881), - [anon_sym_while] = ACTIONS(1879), - [anon_sym_do] = ACTIONS(1879), - [anon_sym_try] = ACTIONS(1879), - [anon_sym_break] = ACTIONS(1879), - [anon_sym_continue] = ACTIONS(1879), - [anon_sym_debugger] = ACTIONS(1879), - [anon_sym_return] = ACTIONS(1879), - [anon_sym_throw] = ACTIONS(1879), - [anon_sym_case] = ACTIONS(1879), - [anon_sym_yield] = ACTIONS(1879), - [anon_sym_LBRACK] = ACTIONS(1877), - [sym_glimmer_opening_tag] = ACTIONS(1877), - [anon_sym_GT] = ACTIONS(1881), - [anon_sym_DOT] = ACTIONS(1881), - [anon_sym_DQUOTE] = ACTIONS(1877), - [anon_sym_SQUOTE] = ACTIONS(1877), - [anon_sym_class] = ACTIONS(1879), - [anon_sym_async] = ACTIONS(1879), - [anon_sym_function] = ACTIONS(1879), - [anon_sym_QMARK_DOT] = ACTIONS(1883), - [anon_sym_new] = ACTIONS(1879), - [anon_sym_using] = ACTIONS(1879), - [anon_sym_AMP_AMP] = ACTIONS(1883), - [anon_sym_PIPE_PIPE] = ACTIONS(1883), - [anon_sym_GT_GT] = ACTIONS(1881), - [anon_sym_GT_GT_GT] = ACTIONS(1883), - [anon_sym_LT_LT] = ACTIONS(1883), - [anon_sym_AMP] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(1883), - [anon_sym_PIPE] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(1879), - [anon_sym_DASH] = ACTIONS(1879), - [anon_sym_SLASH] = ACTIONS(1879), - [anon_sym_PERCENT] = ACTIONS(1883), - [anon_sym_STAR_STAR] = ACTIONS(1883), - [anon_sym_LT] = ACTIONS(1879), - [anon_sym_LT_EQ] = ACTIONS(1883), - [anon_sym_EQ_EQ] = ACTIONS(1881), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1883), - [anon_sym_BANG_EQ] = ACTIONS(1881), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1883), - [anon_sym_GT_EQ] = ACTIONS(1883), - [anon_sym_QMARK_QMARK] = ACTIONS(1883), - [anon_sym_instanceof] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1877), - [anon_sym_void] = ACTIONS(1879), - [anon_sym_delete] = ACTIONS(1879), - [anon_sym_PLUS_PLUS] = ACTIONS(1877), - [anon_sym_DASH_DASH] = ACTIONS(1877), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1877), - [sym_number] = ACTIONS(1877), - [sym_private_property_identifier] = ACTIONS(1877), - [sym_this] = ACTIONS(1879), - [sym_super] = ACTIONS(1879), - [sym_true] = ACTIONS(1879), - [sym_false] = ACTIONS(1879), - [sym_null] = ACTIONS(1879), - [sym_undefined] = ACTIONS(1879), - [anon_sym_AT] = ACTIONS(1877), - [anon_sym_static] = ACTIONS(1879), - [anon_sym_readonly] = ACTIONS(1879), - [anon_sym_get] = ACTIONS(1879), - [anon_sym_set] = ACTIONS(1879), - [anon_sym_declare] = ACTIONS(1879), - [anon_sym_public] = ACTIONS(1879), - [anon_sym_private] = ACTIONS(1879), - [anon_sym_protected] = ACTIONS(1879), - [anon_sym_override] = ACTIONS(1879), - [anon_sym_module] = ACTIONS(1879), - [anon_sym_any] = ACTIONS(1879), - [anon_sym_number] = ACTIONS(1879), - [anon_sym_boolean] = ACTIONS(1879), - [anon_sym_string] = ACTIONS(1879), - [anon_sym_symbol] = ACTIONS(1879), - [anon_sym_object] = ACTIONS(1879), - [anon_sym_abstract] = ACTIONS(1879), - [anon_sym_satisfies] = ACTIONS(1881), - [anon_sym_interface] = ACTIONS(1879), - [anon_sym_enum] = ACTIONS(1879), - [sym__automatic_semicolon] = ACTIONS(1885), - [sym__ternary_qmark] = ACTIONS(1883), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(1699), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_COMMA] = ACTIONS(1683), + [anon_sym_RBRACE] = ACTIONS(1683), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(1683), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(1683), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_AMP] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [anon_sym_extends] = ACTIONS(1685), + [anon_sym_PIPE_RBRACE] = ACTIONS(1683), + [sym__automatic_semicolon] = ACTIONS(1683), [sym_html_comment] = ACTIONS(5), }, [255] = { - [ts_builtin_sym_end] = ACTIONS(1887), - [sym_identifier] = ACTIONS(1889), - [anon_sym_export] = ACTIONS(1889), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_default] = ACTIONS(1889), - [anon_sym_type] = ACTIONS(1889), - [anon_sym_as] = ACTIONS(1891), - [anon_sym_namespace] = ACTIONS(1889), + [sym_import] = STATE(3644), + [sym_variable_declaration] = STATE(309), + [sym_lexical_declaration] = STATE(309), + [sym_empty_statement] = STATE(309), + [sym_parenthesized_expression] = STATE(1354), + [sym_expression] = STATE(2278), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(4935), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(4935), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1354), + [sym_subscript_expression] = STATE(1354), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(4935), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_sequence_expression] = STATE(5756), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1354), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1881), + [anon_sym_export] = ACTIONS(1883), + [anon_sym_type] = ACTIONS(1883), + [anon_sym_namespace] = ACTIONS(1885), [anon_sym_LBRACE] = ACTIONS(1887), - [anon_sym_COMMA] = ACTIONS(1893), - [anon_sym_RBRACE] = ACTIONS(1887), - [anon_sym_typeof] = ACTIONS(1889), - [anon_sym_import] = ACTIONS(1889), - [anon_sym_with] = ACTIONS(1889), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), [anon_sym_var] = ACTIONS(1889), - [anon_sym_let] = ACTIONS(1889), - [anon_sym_const] = ACTIONS(1889), - [anon_sym_BANG] = ACTIONS(1889), - [anon_sym_else] = ACTIONS(1889), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_switch] = ACTIONS(1889), - [anon_sym_for] = ACTIONS(1889), - [anon_sym_LPAREN] = ACTIONS(1887), - [anon_sym_SEMI] = ACTIONS(1887), - [anon_sym_await] = ACTIONS(1889), - [anon_sym_in] = ACTIONS(1891), - [anon_sym_while] = ACTIONS(1889), - [anon_sym_do] = ACTIONS(1889), - [anon_sym_try] = ACTIONS(1889), - [anon_sym_break] = ACTIONS(1889), - [anon_sym_continue] = ACTIONS(1889), - [anon_sym_debugger] = ACTIONS(1889), - [anon_sym_return] = ACTIONS(1889), - [anon_sym_throw] = ACTIONS(1889), - [anon_sym_case] = ACTIONS(1889), - [anon_sym_yield] = ACTIONS(1889), - [anon_sym_LBRACK] = ACTIONS(1887), - [sym_glimmer_opening_tag] = ACTIONS(1887), - [anon_sym_GT] = ACTIONS(1891), - [anon_sym_DOT] = ACTIONS(1891), - [anon_sym_DQUOTE] = ACTIONS(1887), - [anon_sym_SQUOTE] = ACTIONS(1887), - [anon_sym_class] = ACTIONS(1889), - [anon_sym_async] = ACTIONS(1889), - [anon_sym_function] = ACTIONS(1889), - [anon_sym_QMARK_DOT] = ACTIONS(1893), - [anon_sym_new] = ACTIONS(1889), - [anon_sym_using] = ACTIONS(1889), - [anon_sym_AMP_AMP] = ACTIONS(1893), - [anon_sym_PIPE_PIPE] = ACTIONS(1893), - [anon_sym_GT_GT] = ACTIONS(1891), - [anon_sym_GT_GT_GT] = ACTIONS(1893), - [anon_sym_LT_LT] = ACTIONS(1893), - [anon_sym_AMP] = ACTIONS(1891), - [anon_sym_CARET] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(1891), - [anon_sym_PLUS] = ACTIONS(1889), - [anon_sym_DASH] = ACTIONS(1889), - [anon_sym_SLASH] = ACTIONS(1889), - [anon_sym_PERCENT] = ACTIONS(1893), - [anon_sym_STAR_STAR] = ACTIONS(1893), - [anon_sym_LT] = ACTIONS(1889), - [anon_sym_LT_EQ] = ACTIONS(1893), - [anon_sym_EQ_EQ] = ACTIONS(1891), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1893), - [anon_sym_BANG_EQ] = ACTIONS(1891), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1893), - [anon_sym_GT_EQ] = ACTIONS(1893), - [anon_sym_QMARK_QMARK] = ACTIONS(1893), - [anon_sym_instanceof] = ACTIONS(1891), - [anon_sym_TILDE] = ACTIONS(1887), - [anon_sym_void] = ACTIONS(1889), - [anon_sym_delete] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1887), - [anon_sym_DASH_DASH] = ACTIONS(1887), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1887), - [sym_number] = ACTIONS(1887), - [sym_private_property_identifier] = ACTIONS(1887), - [sym_this] = ACTIONS(1889), - [sym_super] = ACTIONS(1889), - [sym_true] = ACTIONS(1889), - [sym_false] = ACTIONS(1889), - [sym_null] = ACTIONS(1889), - [sym_undefined] = ACTIONS(1889), - [anon_sym_AT] = ACTIONS(1887), - [anon_sym_static] = ACTIONS(1889), - [anon_sym_readonly] = ACTIONS(1889), - [anon_sym_get] = ACTIONS(1889), - [anon_sym_set] = ACTIONS(1889), - [anon_sym_declare] = ACTIONS(1889), - [anon_sym_public] = ACTIONS(1889), - [anon_sym_private] = ACTIONS(1889), - [anon_sym_protected] = ACTIONS(1889), - [anon_sym_override] = ACTIONS(1889), - [anon_sym_module] = ACTIONS(1889), - [anon_sym_any] = ACTIONS(1889), - [anon_sym_number] = ACTIONS(1889), - [anon_sym_boolean] = ACTIONS(1889), - [anon_sym_string] = ACTIONS(1889), - [anon_sym_symbol] = ACTIONS(1889), - [anon_sym_object] = ACTIONS(1889), - [anon_sym_abstract] = ACTIONS(1889), - [anon_sym_satisfies] = ACTIONS(1891), - [anon_sym_interface] = ACTIONS(1889), - [anon_sym_enum] = ACTIONS(1889), - [sym__automatic_semicolon] = ACTIONS(1895), - [sym__ternary_qmark] = ACTIONS(1893), + [anon_sym_let] = ACTIONS(1891), + [anon_sym_const] = ACTIONS(1893), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(1895), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1897), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1899), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1901), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1883), + [anon_sym_readonly] = ACTIONS(1883), + [anon_sym_get] = ACTIONS(1883), + [anon_sym_set] = ACTIONS(1883), + [anon_sym_declare] = ACTIONS(1883), + [anon_sym_public] = ACTIONS(1883), + [anon_sym_private] = ACTIONS(1883), + [anon_sym_protected] = ACTIONS(1883), + [anon_sym_override] = ACTIONS(1883), + [anon_sym_module] = ACTIONS(1883), + [anon_sym_any] = ACTIONS(1883), + [anon_sym_number] = ACTIONS(1883), + [anon_sym_boolean] = ACTIONS(1883), + [anon_sym_string] = ACTIONS(1883), + [anon_sym_symbol] = ACTIONS(1883), + [anon_sym_object] = ACTIONS(1883), [sym_html_comment] = ACTIONS(5), }, [256] = { - [ts_builtin_sym_end] = ACTIONS(1897), - [sym_identifier] = ACTIONS(1899), - [anon_sym_export] = ACTIONS(1899), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym_default] = ACTIONS(1899), - [anon_sym_type] = ACTIONS(1899), - [anon_sym_as] = ACTIONS(1899), - [anon_sym_namespace] = ACTIONS(1899), - [anon_sym_LBRACE] = ACTIONS(1897), - [anon_sym_COMMA] = ACTIONS(1897), - [anon_sym_RBRACE] = ACTIONS(1897), - [anon_sym_typeof] = ACTIONS(1899), - [anon_sym_import] = ACTIONS(1899), - [anon_sym_with] = ACTIONS(1899), - [anon_sym_var] = ACTIONS(1899), - [anon_sym_let] = ACTIONS(1899), - [anon_sym_const] = ACTIONS(1899), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_else] = ACTIONS(1899), - [anon_sym_if] = ACTIONS(1899), - [anon_sym_switch] = ACTIONS(1899), - [anon_sym_for] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(1897), - [anon_sym_SEMI] = ACTIONS(1897), - [anon_sym_await] = ACTIONS(1899), - [anon_sym_in] = ACTIONS(1899), - [anon_sym_while] = ACTIONS(1899), - [anon_sym_do] = ACTIONS(1899), - [anon_sym_try] = ACTIONS(1899), - [anon_sym_break] = ACTIONS(1899), - [anon_sym_continue] = ACTIONS(1899), - [anon_sym_debugger] = ACTIONS(1899), - [anon_sym_return] = ACTIONS(1899), - [anon_sym_throw] = ACTIONS(1899), - [anon_sym_case] = ACTIONS(1899), - [anon_sym_yield] = ACTIONS(1899), - [anon_sym_LBRACK] = ACTIONS(1897), - [sym_glimmer_opening_tag] = ACTIONS(1897), - [anon_sym_GT] = ACTIONS(1899), - [anon_sym_DOT] = ACTIONS(1899), - [anon_sym_DQUOTE] = ACTIONS(1897), - [anon_sym_SQUOTE] = ACTIONS(1897), - [anon_sym_class] = ACTIONS(1899), - [anon_sym_async] = ACTIONS(1899), - [anon_sym_function] = ACTIONS(1899), - [anon_sym_QMARK_DOT] = ACTIONS(1897), + [sym_import] = STATE(3644), + [sym_variable_declaration] = STATE(315), + [sym_lexical_declaration] = STATE(315), + [sym_empty_statement] = STATE(315), + [sym_parenthesized_expression] = STATE(1354), + [sym_expression] = STATE(2349), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(4935), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(4935), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1354), + [sym_subscript_expression] = STATE(1354), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(4935), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_sequence_expression] = STATE(5948), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1354), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1881), + [anon_sym_export] = ACTIONS(1883), + [anon_sym_type] = ACTIONS(1883), + [anon_sym_namespace] = ACTIONS(1885), + [anon_sym_LBRACE] = ACTIONS(1887), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_var] = ACTIONS(1889), + [anon_sym_let] = ACTIONS(1891), + [anon_sym_const] = ACTIONS(1893), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(1895), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1897), + [anon_sym_function] = ACTIONS(154), [anon_sym_new] = ACTIONS(1899), - [anon_sym_using] = ACTIONS(1899), - [anon_sym_AMP_AMP] = ACTIONS(1897), - [anon_sym_PIPE_PIPE] = ACTIONS(1897), - [anon_sym_GT_GT] = ACTIONS(1899), - [anon_sym_GT_GT_GT] = ACTIONS(1897), - [anon_sym_LT_LT] = ACTIONS(1897), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_CARET] = ACTIONS(1897), - [anon_sym_PIPE] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1899), - [anon_sym_SLASH] = ACTIONS(1899), - [anon_sym_PERCENT] = ACTIONS(1897), - [anon_sym_STAR_STAR] = ACTIONS(1897), - [anon_sym_LT] = ACTIONS(1899), - [anon_sym_LT_EQ] = ACTIONS(1897), - [anon_sym_EQ_EQ] = ACTIONS(1899), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1897), - [anon_sym_BANG_EQ] = ACTIONS(1899), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1897), - [anon_sym_GT_EQ] = ACTIONS(1897), - [anon_sym_QMARK_QMARK] = ACTIONS(1897), - [anon_sym_instanceof] = ACTIONS(1899), - [anon_sym_TILDE] = ACTIONS(1897), - [anon_sym_void] = ACTIONS(1899), - [anon_sym_delete] = ACTIONS(1899), - [anon_sym_PLUS_PLUS] = ACTIONS(1897), - [anon_sym_DASH_DASH] = ACTIONS(1897), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1897), - [sym_number] = ACTIONS(1897), - [sym_private_property_identifier] = ACTIONS(1897), - [sym_this] = ACTIONS(1899), - [sym_super] = ACTIONS(1899), - [sym_true] = ACTIONS(1899), - [sym_false] = ACTIONS(1899), - [sym_null] = ACTIONS(1899), - [sym_undefined] = ACTIONS(1899), - [anon_sym_AT] = ACTIONS(1897), - [anon_sym_static] = ACTIONS(1899), - [anon_sym_readonly] = ACTIONS(1899), - [anon_sym_get] = ACTIONS(1899), - [anon_sym_set] = ACTIONS(1899), - [anon_sym_declare] = ACTIONS(1899), - [anon_sym_public] = ACTIONS(1899), - [anon_sym_private] = ACTIONS(1899), - [anon_sym_protected] = ACTIONS(1899), - [anon_sym_override] = ACTIONS(1899), - [anon_sym_module] = ACTIONS(1899), - [anon_sym_any] = ACTIONS(1899), - [anon_sym_number] = ACTIONS(1899), - [anon_sym_boolean] = ACTIONS(1899), - [anon_sym_string] = ACTIONS(1899), - [anon_sym_symbol] = ACTIONS(1899), - [anon_sym_object] = ACTIONS(1899), - [anon_sym_abstract] = ACTIONS(1899), - [anon_sym_satisfies] = ACTIONS(1899), - [anon_sym_interface] = ACTIONS(1899), - [anon_sym_enum] = ACTIONS(1899), - [sym__automatic_semicolon] = ACTIONS(1897), - [sym__ternary_qmark] = ACTIONS(1897), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1901), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1883), + [anon_sym_readonly] = ACTIONS(1883), + [anon_sym_get] = ACTIONS(1883), + [anon_sym_set] = ACTIONS(1883), + [anon_sym_declare] = ACTIONS(1883), + [anon_sym_public] = ACTIONS(1883), + [anon_sym_private] = ACTIONS(1883), + [anon_sym_protected] = ACTIONS(1883), + [anon_sym_override] = ACTIONS(1883), + [anon_sym_module] = ACTIONS(1883), + [anon_sym_any] = ACTIONS(1883), + [anon_sym_number] = ACTIONS(1883), + [anon_sym_boolean] = ACTIONS(1883), + [anon_sym_string] = ACTIONS(1883), + [anon_sym_symbol] = ACTIONS(1883), + [anon_sym_object] = ACTIONS(1883), [sym_html_comment] = ACTIONS(5), }, [257] = { - [ts_builtin_sym_end] = ACTIONS(1901), - [sym_identifier] = ACTIONS(1903), - [anon_sym_export] = ACTIONS(1903), - [anon_sym_STAR] = ACTIONS(1905), - [anon_sym_default] = ACTIONS(1903), - [anon_sym_type] = ACTIONS(1903), - [anon_sym_as] = ACTIONS(1905), - [anon_sym_namespace] = ACTIONS(1903), - [anon_sym_LBRACE] = ACTIONS(1901), - [anon_sym_COMMA] = ACTIONS(1907), - [anon_sym_RBRACE] = ACTIONS(1901), - [anon_sym_typeof] = ACTIONS(1903), - [anon_sym_import] = ACTIONS(1903), - [anon_sym_with] = ACTIONS(1903), - [anon_sym_var] = ACTIONS(1903), - [anon_sym_let] = ACTIONS(1903), - [anon_sym_const] = ACTIONS(1903), - [anon_sym_BANG] = ACTIONS(1903), - [anon_sym_else] = ACTIONS(1903), - [anon_sym_if] = ACTIONS(1903), - [anon_sym_switch] = ACTIONS(1903), - [anon_sym_for] = ACTIONS(1903), - [anon_sym_LPAREN] = ACTIONS(1901), - [anon_sym_SEMI] = ACTIONS(1901), - [anon_sym_await] = ACTIONS(1903), - [anon_sym_in] = ACTIONS(1905), - [anon_sym_while] = ACTIONS(1903), - [anon_sym_do] = ACTIONS(1903), - [anon_sym_try] = ACTIONS(1903), - [anon_sym_break] = ACTIONS(1903), - [anon_sym_continue] = ACTIONS(1903), - [anon_sym_debugger] = ACTIONS(1903), - [anon_sym_return] = ACTIONS(1903), - [anon_sym_throw] = ACTIONS(1903), - [anon_sym_case] = ACTIONS(1903), - [anon_sym_yield] = ACTIONS(1903), - [anon_sym_LBRACK] = ACTIONS(1901), - [sym_glimmer_opening_tag] = ACTIONS(1901), - [anon_sym_GT] = ACTIONS(1905), - [anon_sym_DOT] = ACTIONS(1905), - [anon_sym_DQUOTE] = ACTIONS(1901), - [anon_sym_SQUOTE] = ACTIONS(1901), - [anon_sym_class] = ACTIONS(1903), - [anon_sym_async] = ACTIONS(1903), - [anon_sym_function] = ACTIONS(1903), - [anon_sym_QMARK_DOT] = ACTIONS(1907), - [anon_sym_new] = ACTIONS(1903), - [anon_sym_using] = ACTIONS(1903), - [anon_sym_AMP_AMP] = ACTIONS(1907), - [anon_sym_PIPE_PIPE] = ACTIONS(1907), - [anon_sym_GT_GT] = ACTIONS(1905), - [anon_sym_GT_GT_GT] = ACTIONS(1907), - [anon_sym_LT_LT] = ACTIONS(1907), - [anon_sym_AMP] = ACTIONS(1905), - [anon_sym_CARET] = ACTIONS(1907), - [anon_sym_PIPE] = ACTIONS(1905), - [anon_sym_PLUS] = ACTIONS(1903), - [anon_sym_DASH] = ACTIONS(1903), - [anon_sym_SLASH] = ACTIONS(1903), - [anon_sym_PERCENT] = ACTIONS(1907), - [anon_sym_STAR_STAR] = ACTIONS(1907), - [anon_sym_LT] = ACTIONS(1903), - [anon_sym_LT_EQ] = ACTIONS(1907), - [anon_sym_EQ_EQ] = ACTIONS(1905), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1907), - [anon_sym_BANG_EQ] = ACTIONS(1905), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1907), - [anon_sym_GT_EQ] = ACTIONS(1907), - [anon_sym_QMARK_QMARK] = ACTIONS(1907), - [anon_sym_instanceof] = ACTIONS(1905), - [anon_sym_TILDE] = ACTIONS(1901), - [anon_sym_void] = ACTIONS(1903), - [anon_sym_delete] = ACTIONS(1903), - [anon_sym_PLUS_PLUS] = ACTIONS(1901), - [anon_sym_DASH_DASH] = ACTIONS(1901), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1901), - [sym_number] = ACTIONS(1901), - [sym_private_property_identifier] = ACTIONS(1901), - [sym_this] = ACTIONS(1903), - [sym_super] = ACTIONS(1903), - [sym_true] = ACTIONS(1903), - [sym_false] = ACTIONS(1903), - [sym_null] = ACTIONS(1903), - [sym_undefined] = ACTIONS(1903), - [anon_sym_AT] = ACTIONS(1901), - [anon_sym_static] = ACTIONS(1903), - [anon_sym_readonly] = ACTIONS(1903), - [anon_sym_get] = ACTIONS(1903), - [anon_sym_set] = ACTIONS(1903), - [anon_sym_declare] = ACTIONS(1903), - [anon_sym_public] = ACTIONS(1903), - [anon_sym_private] = ACTIONS(1903), - [anon_sym_protected] = ACTIONS(1903), - [anon_sym_override] = ACTIONS(1903), - [anon_sym_module] = ACTIONS(1903), - [anon_sym_any] = ACTIONS(1903), - [anon_sym_number] = ACTIONS(1903), - [anon_sym_boolean] = ACTIONS(1903), - [anon_sym_string] = ACTIONS(1903), - [anon_sym_symbol] = ACTIONS(1903), - [anon_sym_object] = ACTIONS(1903), - [anon_sym_abstract] = ACTIONS(1903), - [anon_sym_satisfies] = ACTIONS(1905), - [anon_sym_interface] = ACTIONS(1903), - [anon_sym_enum] = ACTIONS(1903), - [sym__automatic_semicolon] = ACTIONS(1907), - [sym__ternary_qmark] = ACTIONS(1907), + [sym_import] = STATE(3644), + [sym_variable_declaration] = STATE(306), + [sym_lexical_declaration] = STATE(306), + [sym_empty_statement] = STATE(306), + [sym_parenthesized_expression] = STATE(1354), + [sym_expression] = STATE(2338), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(4935), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(4935), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1354), + [sym_subscript_expression] = STATE(1354), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(4935), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_sequence_expression] = STATE(5977), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1354), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1881), + [anon_sym_export] = ACTIONS(1883), + [anon_sym_type] = ACTIONS(1883), + [anon_sym_namespace] = ACTIONS(1885), + [anon_sym_LBRACE] = ACTIONS(1887), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_var] = ACTIONS(1889), + [anon_sym_let] = ACTIONS(1891), + [anon_sym_const] = ACTIONS(1893), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(1895), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1897), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1899), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1901), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1883), + [anon_sym_readonly] = ACTIONS(1883), + [anon_sym_get] = ACTIONS(1883), + [anon_sym_set] = ACTIONS(1883), + [anon_sym_declare] = ACTIONS(1883), + [anon_sym_public] = ACTIONS(1883), + [anon_sym_private] = ACTIONS(1883), + [anon_sym_protected] = ACTIONS(1883), + [anon_sym_override] = ACTIONS(1883), + [anon_sym_module] = ACTIONS(1883), + [anon_sym_any] = ACTIONS(1883), + [anon_sym_number] = ACTIONS(1883), + [anon_sym_boolean] = ACTIONS(1883), + [anon_sym_string] = ACTIONS(1883), + [anon_sym_symbol] = ACTIONS(1883), + [anon_sym_object] = ACTIONS(1883), [sym_html_comment] = ACTIONS(5), }, [258] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_COMMA] = ACTIONS(1668), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(1668), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_RBRACK] = ACTIONS(1668), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1668), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), - [anon_sym_extends] = ACTIONS(1670), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1406), + [sym_expression] = STATE(2546), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5183), + [sym_assignment_pattern] = STATE(5112), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5183), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5764), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2954), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5183), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_pattern] = STATE(4530), + [sym_rest_pattern] = STATE(3626), + [sym_non_null_expression] = STATE(1370), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [aux_sym_array_pattern_repeat1] = STATE(5134), + [sym_identifier] = ACTIONS(1903), + [anon_sym_export] = ACTIONS(1905), + [anon_sym_type] = ACTIONS(1905), + [anon_sym_namespace] = ACTIONS(1907), + [anon_sym_LBRACE] = ACTIONS(1777), + [anon_sym_COMMA] = ACTIONS(1779), + [anon_sym_typeof] = ACTIONS(1245), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1905), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1231), + [anon_sym_yield] = ACTIONS(1233), + [anon_sym_LBRACK] = ACTIONS(1781), + [anon_sym_RBRACK] = ACTIONS(1783), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1909), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1911), + [anon_sym_using] = ACTIONS(1239), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_void] = ACTIONS(1245), + [anon_sym_delete] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1247), + [anon_sym_DASH_DASH] = ACTIONS(1247), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1249), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1789), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1905), + [anon_sym_readonly] = ACTIONS(1905), + [anon_sym_get] = ACTIONS(1905), + [anon_sym_set] = ACTIONS(1905), + [anon_sym_declare] = ACTIONS(1905), + [anon_sym_public] = ACTIONS(1905), + [anon_sym_private] = ACTIONS(1905), + [anon_sym_protected] = ACTIONS(1905), + [anon_sym_override] = ACTIONS(1905), + [anon_sym_module] = ACTIONS(1905), + [anon_sym_any] = ACTIONS(1905), + [anon_sym_number] = ACTIONS(1905), + [anon_sym_boolean] = ACTIONS(1905), + [anon_sym_string] = ACTIONS(1905), + [anon_sym_symbol] = ACTIONS(1905), + [anon_sym_object] = ACTIONS(1905), [sym_html_comment] = ACTIONS(5), }, [259] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_assignment_pattern] = STATE(5171), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4569), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [aux_sym_array_pattern_repeat1] = STATE(5199), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_COMMA] = ACTIONS(1690), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1634), - [anon_sym_RBRACK] = ACTIONS(1694), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(741), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(115), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2332), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3596), + [sym_assignment_pattern] = STATE(5492), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3596), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1268), + [sym_subscript_expression] = STATE(1268), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3596), + [sym_spread_element] = STATE(5139), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_pattern] = STATE(5140), + [sym_rest_pattern] = STATE(3626), + [sym_non_null_expression] = STATE(1268), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1617), + [anon_sym_export] = ACTIONS(603), + [anon_sym_type] = ACTIONS(603), + [anon_sym_namespace] = ACTIONS(607), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_COMMA] = ACTIONS(1913), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(603), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_RBRACK] = ACTIONS(1916), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1619), + [anon_sym_using] = ACTIONS(629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1623), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(603), + [anon_sym_readonly] = ACTIONS(603), + [anon_sym_get] = ACTIONS(603), + [anon_sym_set] = ACTIONS(603), + [anon_sym_declare] = ACTIONS(603), + [anon_sym_public] = ACTIONS(603), + [anon_sym_private] = ACTIONS(603), + [anon_sym_protected] = ACTIONS(603), + [anon_sym_override] = ACTIONS(603), + [anon_sym_module] = ACTIONS(603), + [anon_sym_any] = ACTIONS(603), + [anon_sym_number] = ACTIONS(603), + [anon_sym_boolean] = ACTIONS(603), + [anon_sym_string] = ACTIONS(603), + [anon_sym_symbol] = ACTIONS(603), + [anon_sym_object] = ACTIONS(603), [sym_html_comment] = ACTIONS(5), }, [260] = { - [ts_builtin_sym_end] = ACTIONS(1909), - [sym_identifier] = ACTIONS(1911), - [anon_sym_export] = ACTIONS(1911), - [anon_sym_STAR] = ACTIONS(1911), - [anon_sym_default] = ACTIONS(1911), - [anon_sym_type] = ACTIONS(1911), - [anon_sym_as] = ACTIONS(1911), - [anon_sym_namespace] = ACTIONS(1911), - [anon_sym_LBRACE] = ACTIONS(1909), - [anon_sym_COMMA] = ACTIONS(1909), - [anon_sym_RBRACE] = ACTIONS(1909), - [anon_sym_typeof] = ACTIONS(1911), - [anon_sym_import] = ACTIONS(1911), - [anon_sym_with] = ACTIONS(1911), - [anon_sym_var] = ACTIONS(1911), - [anon_sym_let] = ACTIONS(1911), - [anon_sym_const] = ACTIONS(1911), - [anon_sym_BANG] = ACTIONS(1911), - [anon_sym_else] = ACTIONS(1911), - [anon_sym_if] = ACTIONS(1911), - [anon_sym_switch] = ACTIONS(1911), - [anon_sym_for] = ACTIONS(1911), - [anon_sym_LPAREN] = ACTIONS(1909), - [anon_sym_SEMI] = ACTIONS(1909), - [anon_sym_await] = ACTIONS(1911), - [anon_sym_in] = ACTIONS(1911), - [anon_sym_while] = ACTIONS(1911), - [anon_sym_do] = ACTIONS(1911), - [anon_sym_try] = ACTIONS(1911), - [anon_sym_break] = ACTIONS(1911), - [anon_sym_continue] = ACTIONS(1911), - [anon_sym_debugger] = ACTIONS(1911), - [anon_sym_return] = ACTIONS(1911), - [anon_sym_throw] = ACTIONS(1911), - [anon_sym_case] = ACTIONS(1911), - [anon_sym_yield] = ACTIONS(1911), - [anon_sym_LBRACK] = ACTIONS(1909), - [sym_glimmer_opening_tag] = ACTIONS(1909), - [anon_sym_GT] = ACTIONS(1911), - [anon_sym_DOT] = ACTIONS(1911), - [anon_sym_DQUOTE] = ACTIONS(1909), - [anon_sym_SQUOTE] = ACTIONS(1909), - [anon_sym_class] = ACTIONS(1911), - [anon_sym_async] = ACTIONS(1911), - [anon_sym_function] = ACTIONS(1911), - [anon_sym_QMARK_DOT] = ACTIONS(1909), - [anon_sym_new] = ACTIONS(1911), - [anon_sym_using] = ACTIONS(1911), - [anon_sym_AMP_AMP] = ACTIONS(1909), - [anon_sym_PIPE_PIPE] = ACTIONS(1909), - [anon_sym_GT_GT] = ACTIONS(1911), - [anon_sym_GT_GT_GT] = ACTIONS(1909), - [anon_sym_LT_LT] = ACTIONS(1909), - [anon_sym_AMP] = ACTIONS(1911), - [anon_sym_CARET] = ACTIONS(1909), - [anon_sym_PIPE] = ACTIONS(1911), - [anon_sym_PLUS] = ACTIONS(1911), - [anon_sym_DASH] = ACTIONS(1911), - [anon_sym_SLASH] = ACTIONS(1911), - [anon_sym_PERCENT] = ACTIONS(1909), - [anon_sym_STAR_STAR] = ACTIONS(1909), - [anon_sym_LT] = ACTIONS(1911), - [anon_sym_LT_EQ] = ACTIONS(1909), - [anon_sym_EQ_EQ] = ACTIONS(1911), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1909), - [anon_sym_BANG_EQ] = ACTIONS(1911), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1909), - [anon_sym_GT_EQ] = ACTIONS(1909), - [anon_sym_QMARK_QMARK] = ACTIONS(1909), - [anon_sym_instanceof] = ACTIONS(1911), - [anon_sym_TILDE] = ACTIONS(1909), - [anon_sym_void] = ACTIONS(1911), - [anon_sym_delete] = ACTIONS(1911), - [anon_sym_PLUS_PLUS] = ACTIONS(1909), - [anon_sym_DASH_DASH] = ACTIONS(1909), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1909), - [sym_number] = ACTIONS(1909), - [sym_private_property_identifier] = ACTIONS(1909), - [sym_this] = ACTIONS(1911), - [sym_super] = ACTIONS(1911), - [sym_true] = ACTIONS(1911), - [sym_false] = ACTIONS(1911), - [sym_null] = ACTIONS(1911), - [sym_undefined] = ACTIONS(1911), - [anon_sym_AT] = ACTIONS(1909), - [anon_sym_static] = ACTIONS(1911), - [anon_sym_readonly] = ACTIONS(1911), - [anon_sym_get] = ACTIONS(1911), - [anon_sym_set] = ACTIONS(1911), - [anon_sym_declare] = ACTIONS(1911), - [anon_sym_public] = ACTIONS(1911), - [anon_sym_private] = ACTIONS(1911), - [anon_sym_protected] = ACTIONS(1911), - [anon_sym_override] = ACTIONS(1911), - [anon_sym_module] = ACTIONS(1911), - [anon_sym_any] = ACTIONS(1911), - [anon_sym_number] = ACTIONS(1911), - [anon_sym_boolean] = ACTIONS(1911), - [anon_sym_string] = ACTIONS(1911), - [anon_sym_symbol] = ACTIONS(1911), - [anon_sym_object] = ACTIONS(1911), - [anon_sym_abstract] = ACTIONS(1911), - [anon_sym_satisfies] = ACTIONS(1911), - [anon_sym_interface] = ACTIONS(1911), - [anon_sym_enum] = ACTIONS(1911), - [sym__automatic_semicolon] = ACTIONS(1909), - [sym__ternary_qmark] = ACTIONS(1909), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2332), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3596), + [sym_assignment_pattern] = STATE(5492), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3596), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1268), + [sym_subscript_expression] = STATE(1268), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3596), + [sym_spread_element] = STATE(5139), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_pattern] = STATE(5140), + [sym_rest_pattern] = STATE(3626), + [sym_non_null_expression] = STATE(1268), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1617), + [anon_sym_export] = ACTIONS(603), + [anon_sym_type] = ACTIONS(603), + [anon_sym_namespace] = ACTIONS(607), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_COMMA] = ACTIONS(1913), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(603), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_RBRACK] = ACTIONS(1920), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1619), + [anon_sym_using] = ACTIONS(629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1623), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(603), + [anon_sym_readonly] = ACTIONS(603), + [anon_sym_get] = ACTIONS(603), + [anon_sym_set] = ACTIONS(603), + [anon_sym_declare] = ACTIONS(603), + [anon_sym_public] = ACTIONS(603), + [anon_sym_private] = ACTIONS(603), + [anon_sym_protected] = ACTIONS(603), + [anon_sym_override] = ACTIONS(603), + [anon_sym_module] = ACTIONS(603), + [anon_sym_any] = ACTIONS(603), + [anon_sym_number] = ACTIONS(603), + [anon_sym_boolean] = ACTIONS(603), + [anon_sym_string] = ACTIONS(603), + [anon_sym_symbol] = ACTIONS(603), + [anon_sym_object] = ACTIONS(603), [sym_html_comment] = ACTIONS(5), }, [261] = { - [ts_builtin_sym_end] = ACTIONS(1913), - [sym_identifier] = ACTIONS(1915), - [anon_sym_export] = ACTIONS(1915), - [anon_sym_STAR] = ACTIONS(1917), - [anon_sym_default] = ACTIONS(1915), - [anon_sym_type] = ACTIONS(1915), - [anon_sym_as] = ACTIONS(1917), - [anon_sym_namespace] = ACTIONS(1915), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_COMMA] = ACTIONS(1919), - [anon_sym_RBRACE] = ACTIONS(1913), - [anon_sym_typeof] = ACTIONS(1915), - [anon_sym_import] = ACTIONS(1915), - [anon_sym_with] = ACTIONS(1915), - [anon_sym_var] = ACTIONS(1915), - [anon_sym_let] = ACTIONS(1915), - [anon_sym_const] = ACTIONS(1915), - [anon_sym_BANG] = ACTIONS(1915), - [anon_sym_else] = ACTIONS(1915), - [anon_sym_if] = ACTIONS(1915), - [anon_sym_switch] = ACTIONS(1915), - [anon_sym_for] = ACTIONS(1915), - [anon_sym_LPAREN] = ACTIONS(1913), - [anon_sym_SEMI] = ACTIONS(1913), - [anon_sym_await] = ACTIONS(1915), - [anon_sym_in] = ACTIONS(1917), - [anon_sym_while] = ACTIONS(1915), - [anon_sym_do] = ACTIONS(1915), - [anon_sym_try] = ACTIONS(1915), - [anon_sym_break] = ACTIONS(1915), - [anon_sym_continue] = ACTIONS(1915), - [anon_sym_debugger] = ACTIONS(1915), - [anon_sym_return] = ACTIONS(1915), - [anon_sym_throw] = ACTIONS(1915), - [anon_sym_case] = ACTIONS(1915), - [anon_sym_yield] = ACTIONS(1915), - [anon_sym_LBRACK] = ACTIONS(1913), - [sym_glimmer_opening_tag] = ACTIONS(1913), - [anon_sym_GT] = ACTIONS(1917), - [anon_sym_DOT] = ACTIONS(1917), - [anon_sym_DQUOTE] = ACTIONS(1913), - [anon_sym_SQUOTE] = ACTIONS(1913), - [anon_sym_class] = ACTIONS(1915), - [anon_sym_async] = ACTIONS(1915), - [anon_sym_function] = ACTIONS(1915), - [anon_sym_QMARK_DOT] = ACTIONS(1919), - [anon_sym_new] = ACTIONS(1915), - [anon_sym_using] = ACTIONS(1915), - [anon_sym_AMP_AMP] = ACTIONS(1919), - [anon_sym_PIPE_PIPE] = ACTIONS(1919), - [anon_sym_GT_GT] = ACTIONS(1917), - [anon_sym_GT_GT_GT] = ACTIONS(1919), - [anon_sym_LT_LT] = ACTIONS(1919), - [anon_sym_AMP] = ACTIONS(1917), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym_PIPE] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [anon_sym_SLASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1919), - [anon_sym_STAR_STAR] = ACTIONS(1919), - [anon_sym_LT] = ACTIONS(1915), - [anon_sym_LT_EQ] = ACTIONS(1919), - [anon_sym_EQ_EQ] = ACTIONS(1917), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1919), - [anon_sym_BANG_EQ] = ACTIONS(1917), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1919), - [anon_sym_GT_EQ] = ACTIONS(1919), - [anon_sym_QMARK_QMARK] = ACTIONS(1919), - [anon_sym_instanceof] = ACTIONS(1917), - [anon_sym_TILDE] = ACTIONS(1913), - [anon_sym_void] = ACTIONS(1915), - [anon_sym_delete] = ACTIONS(1915), - [anon_sym_PLUS_PLUS] = ACTIONS(1913), - [anon_sym_DASH_DASH] = ACTIONS(1913), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1913), - [sym_number] = ACTIONS(1913), - [sym_private_property_identifier] = ACTIONS(1913), - [sym_this] = ACTIONS(1915), - [sym_super] = ACTIONS(1915), - [sym_true] = ACTIONS(1915), - [sym_false] = ACTIONS(1915), - [sym_null] = ACTIONS(1915), - [sym_undefined] = ACTIONS(1915), - [anon_sym_AT] = ACTIONS(1913), - [anon_sym_static] = ACTIONS(1915), - [anon_sym_readonly] = ACTIONS(1915), - [anon_sym_get] = ACTIONS(1915), - [anon_sym_set] = ACTIONS(1915), - [anon_sym_declare] = ACTIONS(1915), - [anon_sym_public] = ACTIONS(1915), - [anon_sym_private] = ACTIONS(1915), - [anon_sym_protected] = ACTIONS(1915), - [anon_sym_override] = ACTIONS(1915), - [anon_sym_module] = ACTIONS(1915), - [anon_sym_any] = ACTIONS(1915), - [anon_sym_number] = ACTIONS(1915), - [anon_sym_boolean] = ACTIONS(1915), - [anon_sym_string] = ACTIONS(1915), - [anon_sym_symbol] = ACTIONS(1915), - [anon_sym_object] = ACTIONS(1915), - [anon_sym_abstract] = ACTIONS(1915), - [anon_sym_satisfies] = ACTIONS(1917), - [anon_sym_interface] = ACTIONS(1915), - [anon_sym_enum] = ACTIONS(1915), - [sym__automatic_semicolon] = ACTIONS(1921), - [sym__ternary_qmark] = ACTIONS(1919), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2548), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_COMMA] = ACTIONS(1683), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_RPAREN] = ACTIONS(1683), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1683), + [anon_sym_RBRACK] = ACTIONS(1683), + [anon_sym_GT] = ACTIONS(1683), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_AMP] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1683), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), + [anon_sym_extends] = ACTIONS(1685), [sym_html_comment] = ACTIONS(5), }, [262] = { - [ts_builtin_sym_end] = ACTIONS(1923), - [sym_identifier] = ACTIONS(1925), - [anon_sym_export] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1925), - [anon_sym_default] = ACTIONS(1925), - [anon_sym_type] = ACTIONS(1925), - [anon_sym_as] = ACTIONS(1925), - [anon_sym_namespace] = ACTIONS(1925), - [anon_sym_LBRACE] = ACTIONS(1923), - [anon_sym_COMMA] = ACTIONS(1923), - [anon_sym_RBRACE] = ACTIONS(1923), - [anon_sym_typeof] = ACTIONS(1925), - [anon_sym_import] = ACTIONS(1925), - [anon_sym_with] = ACTIONS(1925), - [anon_sym_var] = ACTIONS(1925), - [anon_sym_let] = ACTIONS(1925), - [anon_sym_const] = ACTIONS(1925), - [anon_sym_BANG] = ACTIONS(1925), - [anon_sym_else] = ACTIONS(1925), - [anon_sym_if] = ACTIONS(1925), - [anon_sym_switch] = ACTIONS(1925), - [anon_sym_for] = ACTIONS(1925), - [anon_sym_LPAREN] = ACTIONS(1923), - [anon_sym_SEMI] = ACTIONS(1923), - [anon_sym_await] = ACTIONS(1925), - [anon_sym_in] = ACTIONS(1925), - [anon_sym_while] = ACTIONS(1925), - [anon_sym_do] = ACTIONS(1925), - [anon_sym_try] = ACTIONS(1925), - [anon_sym_break] = ACTIONS(1925), - [anon_sym_continue] = ACTIONS(1925), - [anon_sym_debugger] = ACTIONS(1925), - [anon_sym_return] = ACTIONS(1925), - [anon_sym_throw] = ACTIONS(1925), - [anon_sym_case] = ACTIONS(1925), - [anon_sym_yield] = ACTIONS(1925), - [anon_sym_LBRACK] = ACTIONS(1923), - [sym_glimmer_opening_tag] = ACTIONS(1923), - [anon_sym_GT] = ACTIONS(1925), - [anon_sym_DOT] = ACTIONS(1925), - [anon_sym_DQUOTE] = ACTIONS(1923), - [anon_sym_SQUOTE] = ACTIONS(1923), - [anon_sym_class] = ACTIONS(1925), - [anon_sym_async] = ACTIONS(1925), - [anon_sym_function] = ACTIONS(1925), - [anon_sym_QMARK_DOT] = ACTIONS(1923), - [anon_sym_new] = ACTIONS(1925), - [anon_sym_using] = ACTIONS(1925), - [anon_sym_AMP_AMP] = ACTIONS(1923), - [anon_sym_PIPE_PIPE] = ACTIONS(1923), - [anon_sym_GT_GT] = ACTIONS(1925), - [anon_sym_GT_GT_GT] = ACTIONS(1923), - [anon_sym_LT_LT] = ACTIONS(1923), - [anon_sym_AMP] = ACTIONS(1925), - [anon_sym_CARET] = ACTIONS(1923), - [anon_sym_PIPE] = ACTIONS(1925), - [anon_sym_PLUS] = ACTIONS(1925), - [anon_sym_DASH] = ACTIONS(1925), - [anon_sym_SLASH] = ACTIONS(1925), - [anon_sym_PERCENT] = ACTIONS(1923), - [anon_sym_STAR_STAR] = ACTIONS(1923), - [anon_sym_LT] = ACTIONS(1925), - [anon_sym_LT_EQ] = ACTIONS(1923), - [anon_sym_EQ_EQ] = ACTIONS(1925), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1923), - [anon_sym_BANG_EQ] = ACTIONS(1925), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1923), - [anon_sym_GT_EQ] = ACTIONS(1923), - [anon_sym_QMARK_QMARK] = ACTIONS(1923), - [anon_sym_instanceof] = ACTIONS(1925), - [anon_sym_TILDE] = ACTIONS(1923), - [anon_sym_void] = ACTIONS(1925), - [anon_sym_delete] = ACTIONS(1925), - [anon_sym_PLUS_PLUS] = ACTIONS(1923), - [anon_sym_DASH_DASH] = ACTIONS(1923), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1923), - [sym_number] = ACTIONS(1923), - [sym_private_property_identifier] = ACTIONS(1923), - [sym_this] = ACTIONS(1925), - [sym_super] = ACTIONS(1925), - [sym_true] = ACTIONS(1925), - [sym_false] = ACTIONS(1925), - [sym_null] = ACTIONS(1925), - [sym_undefined] = ACTIONS(1925), - [anon_sym_AT] = ACTIONS(1923), - [anon_sym_static] = ACTIONS(1925), - [anon_sym_readonly] = ACTIONS(1925), - [anon_sym_get] = ACTIONS(1925), - [anon_sym_set] = ACTIONS(1925), - [anon_sym_declare] = ACTIONS(1925), - [anon_sym_public] = ACTIONS(1925), - [anon_sym_private] = ACTIONS(1925), - [anon_sym_protected] = ACTIONS(1925), - [anon_sym_override] = ACTIONS(1925), - [anon_sym_module] = ACTIONS(1925), - [anon_sym_any] = ACTIONS(1925), - [anon_sym_number] = ACTIONS(1925), - [anon_sym_boolean] = ACTIONS(1925), - [anon_sym_string] = ACTIONS(1925), - [anon_sym_symbol] = ACTIONS(1925), - [anon_sym_object] = ACTIONS(1925), - [anon_sym_abstract] = ACTIONS(1925), - [anon_sym_satisfies] = ACTIONS(1925), - [anon_sym_interface] = ACTIONS(1925), - [anon_sym_enum] = ACTIONS(1925), - [sym__automatic_semicolon] = ACTIONS(1923), - [sym__ternary_qmark] = ACTIONS(1923), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3631), + [sym_assignment_pattern] = STATE(5112), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3631), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1265), + [sym_subscript_expression] = STATE(1265), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3631), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_pattern] = STATE(4530), + [sym_rest_pattern] = STATE(3626), + [sym_non_null_expression] = STATE(1265), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [aux_sym_array_pattern_repeat1] = STATE(5134), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(728), + [anon_sym_COMMA] = ACTIONS(1779), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_RBRACK] = ACTIONS(1783), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(736), + [anon_sym_using] = ACTIONS(162), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, [263] = { - [sym_import] = STATE(3759), - [sym_variable_declaration] = STATE(312), - [sym_lexical_declaration] = STATE(312), - [sym_empty_statement] = STATE(312), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(2353), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5020), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5020), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5020), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5960), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1809), - [anon_sym_export] = ACTIONS(1811), - [anon_sym_type] = ACTIONS(1811), - [anon_sym_namespace] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(1815), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_var] = ACTIONS(1817), - [anon_sym_let] = ACTIONS(1819), - [anon_sym_const] = ACTIONS(1821), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(1823), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1825), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1827), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1811), - [anon_sym_readonly] = ACTIONS(1811), - [anon_sym_get] = ACTIONS(1811), - [anon_sym_set] = ACTIONS(1811), - [anon_sym_declare] = ACTIONS(1811), - [anon_sym_public] = ACTIONS(1811), - [anon_sym_private] = ACTIONS(1811), - [anon_sym_protected] = ACTIONS(1811), - [anon_sym_override] = ACTIONS(1811), - [anon_sym_module] = ACTIONS(1811), - [anon_sym_any] = ACTIONS(1811), - [anon_sym_number] = ACTIONS(1811), - [anon_sym_boolean] = ACTIONS(1811), - [anon_sym_string] = ACTIONS(1811), - [anon_sym_symbol] = ACTIONS(1811), - [anon_sym_object] = ACTIONS(1811), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3631), + [sym_assignment_pattern] = STATE(4901), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3631), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1265), + [sym_subscript_expression] = STATE(1265), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3631), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_pattern] = STATE(4513), + [sym_rest_pattern] = STATE(3626), + [sym_non_null_expression] = STATE(1265), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [aux_sym_array_pattern_repeat1] = STATE(4923), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(728), + [anon_sym_COMMA] = ACTIONS(1779), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_RBRACK] = ACTIONS(1924), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(736), + [anon_sym_using] = ACTIONS(162), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, [264] = { - [ts_builtin_sym_end] = ACTIONS(1927), - [sym_identifier] = ACTIONS(1929), - [anon_sym_export] = ACTIONS(1929), - [anon_sym_STAR] = ACTIONS(1929), - [anon_sym_default] = ACTIONS(1929), - [anon_sym_type] = ACTIONS(1929), - [anon_sym_as] = ACTIONS(1929), - [anon_sym_namespace] = ACTIONS(1929), - [anon_sym_LBRACE] = ACTIONS(1927), - [anon_sym_COMMA] = ACTIONS(1927), - [anon_sym_RBRACE] = ACTIONS(1927), - [anon_sym_typeof] = ACTIONS(1929), - [anon_sym_import] = ACTIONS(1929), - [anon_sym_with] = ACTIONS(1929), - [anon_sym_var] = ACTIONS(1929), - [anon_sym_let] = ACTIONS(1929), - [anon_sym_const] = ACTIONS(1929), - [anon_sym_BANG] = ACTIONS(1929), - [anon_sym_else] = ACTIONS(1929), - [anon_sym_if] = ACTIONS(1929), - [anon_sym_switch] = ACTIONS(1929), - [anon_sym_for] = ACTIONS(1929), - [anon_sym_LPAREN] = ACTIONS(1927), - [anon_sym_SEMI] = ACTIONS(1927), - [anon_sym_await] = ACTIONS(1929), - [anon_sym_in] = ACTIONS(1929), - [anon_sym_while] = ACTIONS(1929), - [anon_sym_do] = ACTIONS(1929), - [anon_sym_try] = ACTIONS(1929), - [anon_sym_break] = ACTIONS(1929), - [anon_sym_continue] = ACTIONS(1929), - [anon_sym_debugger] = ACTIONS(1929), - [anon_sym_return] = ACTIONS(1929), - [anon_sym_throw] = ACTIONS(1929), - [anon_sym_case] = ACTIONS(1929), - [anon_sym_yield] = ACTIONS(1929), - [anon_sym_LBRACK] = ACTIONS(1927), - [sym_glimmer_opening_tag] = ACTIONS(1927), - [anon_sym_GT] = ACTIONS(1929), - [anon_sym_DOT] = ACTIONS(1929), - [anon_sym_DQUOTE] = ACTIONS(1927), - [anon_sym_SQUOTE] = ACTIONS(1927), - [anon_sym_class] = ACTIONS(1929), - [anon_sym_async] = ACTIONS(1929), - [anon_sym_function] = ACTIONS(1929), - [anon_sym_QMARK_DOT] = ACTIONS(1927), - [anon_sym_new] = ACTIONS(1929), - [anon_sym_using] = ACTIONS(1929), - [anon_sym_AMP_AMP] = ACTIONS(1927), - [anon_sym_PIPE_PIPE] = ACTIONS(1927), - [anon_sym_GT_GT] = ACTIONS(1929), - [anon_sym_GT_GT_GT] = ACTIONS(1927), - [anon_sym_LT_LT] = ACTIONS(1927), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_CARET] = ACTIONS(1927), - [anon_sym_PIPE] = ACTIONS(1929), - [anon_sym_PLUS] = ACTIONS(1929), - [anon_sym_DASH] = ACTIONS(1929), - [anon_sym_SLASH] = ACTIONS(1929), - [anon_sym_PERCENT] = ACTIONS(1927), - [anon_sym_STAR_STAR] = ACTIONS(1927), - [anon_sym_LT] = ACTIONS(1929), - [anon_sym_LT_EQ] = ACTIONS(1927), - [anon_sym_EQ_EQ] = ACTIONS(1929), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1927), - [anon_sym_BANG_EQ] = ACTIONS(1929), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1927), - [anon_sym_GT_EQ] = ACTIONS(1927), - [anon_sym_QMARK_QMARK] = ACTIONS(1927), - [anon_sym_instanceof] = ACTIONS(1929), - [anon_sym_TILDE] = ACTIONS(1927), - [anon_sym_void] = ACTIONS(1929), - [anon_sym_delete] = ACTIONS(1929), - [anon_sym_PLUS_PLUS] = ACTIONS(1927), - [anon_sym_DASH_DASH] = ACTIONS(1927), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1927), - [sym_number] = ACTIONS(1927), - [sym_private_property_identifier] = ACTIONS(1927), - [sym_this] = ACTIONS(1929), - [sym_super] = ACTIONS(1929), - [sym_true] = ACTIONS(1929), - [sym_false] = ACTIONS(1929), - [sym_null] = ACTIONS(1929), - [sym_undefined] = ACTIONS(1929), - [anon_sym_AT] = ACTIONS(1927), - [anon_sym_static] = ACTIONS(1929), - [anon_sym_readonly] = ACTIONS(1929), - [anon_sym_get] = ACTIONS(1929), - [anon_sym_set] = ACTIONS(1929), - [anon_sym_declare] = ACTIONS(1929), - [anon_sym_public] = ACTIONS(1929), - [anon_sym_private] = ACTIONS(1929), - [anon_sym_protected] = ACTIONS(1929), - [anon_sym_override] = ACTIONS(1929), - [anon_sym_module] = ACTIONS(1929), - [anon_sym_any] = ACTIONS(1929), - [anon_sym_number] = ACTIONS(1929), - [anon_sym_boolean] = ACTIONS(1929), - [anon_sym_string] = ACTIONS(1929), - [anon_sym_symbol] = ACTIONS(1929), - [anon_sym_object] = ACTIONS(1929), - [anon_sym_abstract] = ACTIONS(1929), - [anon_sym_satisfies] = ACTIONS(1929), - [anon_sym_interface] = ACTIONS(1929), - [anon_sym_enum] = ACTIONS(1929), - [sym__automatic_semicolon] = ACTIONS(1927), - [sym__ternary_qmark] = ACTIONS(1927), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2332), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3596), + [sym_assignment_pattern] = STATE(5492), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3596), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1268), + [sym_subscript_expression] = STATE(1268), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3596), + [sym_spread_element] = STATE(5139), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_pattern] = STATE(5140), + [sym_rest_pattern] = STATE(3626), + [sym_non_null_expression] = STATE(1268), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1617), + [anon_sym_export] = ACTIONS(603), + [anon_sym_type] = ACTIONS(603), + [anon_sym_namespace] = ACTIONS(607), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_COMMA] = ACTIONS(1913), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(603), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_RBRACK] = ACTIONS(1913), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1619), + [anon_sym_using] = ACTIONS(629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1623), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(603), + [anon_sym_readonly] = ACTIONS(603), + [anon_sym_get] = ACTIONS(603), + [anon_sym_set] = ACTIONS(603), + [anon_sym_declare] = ACTIONS(603), + [anon_sym_public] = ACTIONS(603), + [anon_sym_private] = ACTIONS(603), + [anon_sym_protected] = ACTIONS(603), + [anon_sym_override] = ACTIONS(603), + [anon_sym_module] = ACTIONS(603), + [anon_sym_any] = ACTIONS(603), + [anon_sym_number] = ACTIONS(603), + [anon_sym_boolean] = ACTIONS(603), + [anon_sym_string] = ACTIONS(603), + [anon_sym_symbol] = ACTIONS(603), + [anon_sym_object] = ACTIONS(603), [sym_html_comment] = ACTIONS(5), }, [265] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_assignment_pattern] = STATE(5450), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(5149), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_COMMA] = ACTIONS(1931), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1634), - [anon_sym_RBRACK] = ACTIONS(1931), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(741), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(115), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3631), + [sym_assignment_pattern] = STATE(5492), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3631), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1265), + [sym_subscript_expression] = STATE(1265), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3631), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_pattern] = STATE(5140), + [sym_rest_pattern] = STATE(3626), + [sym_non_null_expression] = STATE(1265), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(728), + [anon_sym_COMMA] = ACTIONS(1926), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_RBRACK] = ACTIONS(1926), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(736), + [anon_sym_using] = ACTIONS(162), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, [266] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4394), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_accessibility_modifier] = STATE(293), - [sym_override_modifier] = STATE(308), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1634), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(1933), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(741), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(1935), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(789), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1937), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(813), - [anon_sym_private] = ACTIONS(813), - [anon_sym_protected] = ACTIONS(813), - [anon_sym_override] = ACTIONS(815), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2213), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_spread_element] = STATE(4723), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [aux_sym_array_repeat1] = STATE(4724), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_COMMA] = ACTIONS(1928), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_RPAREN] = ACTIONS(1930), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1932), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [267] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2380), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1668), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1668), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1668), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_AMP] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), - [anon_sym_extends] = ACTIONS(1670), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2161), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_spread_element] = STATE(4674), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [aux_sym_array_repeat1] = STATE(4678), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_COMMA] = ACTIONS(1928), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_RPAREN] = ACTIONS(1934), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1932), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [268] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1806), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_COMMA] = ACTIONS(1668), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(1668), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_GT] = ACTIONS(1668), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), - [anon_sym_AMP] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), - [anon_sym_extends] = ACTIONS(1670), + [sym_identifier] = ACTIONS(1936), + [anon_sym_export] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1936), + [anon_sym_EQ] = ACTIONS(220), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1936), + [anon_sym_LBRACE] = ACTIONS(1938), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_typeof] = ACTIONS(1936), + [anon_sym_import] = ACTIONS(1936), + [anon_sym_let] = ACTIONS(1936), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_LPAREN] = ACTIONS(1938), + [anon_sym_RPAREN] = ACTIONS(223), + [anon_sym_await] = ACTIONS(1936), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(223), + [anon_sym_yield] = ACTIONS(1936), + [anon_sym_LBRACK] = ACTIONS(1938), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1938), + [anon_sym_SQUOTE] = ACTIONS(1938), + [anon_sym_class] = ACTIONS(1936), + [anon_sym_async] = ACTIONS(1936), + [anon_sym_function] = ACTIONS(1936), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1936), + [anon_sym_using] = ACTIONS(1936), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1938), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_SLASH] = ACTIONS(1936), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1936), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(1938), + [anon_sym_void] = ACTIONS(1936), + [anon_sym_delete] = ACTIONS(1936), + [anon_sym_PLUS_PLUS] = ACTIONS(1938), + [anon_sym_DASH_DASH] = ACTIONS(1938), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1938), + [sym_number] = ACTIONS(1938), + [sym_private_property_identifier] = ACTIONS(1938), + [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(1938), + [anon_sym_static] = ACTIONS(1936), + [anon_sym_readonly] = ACTIONS(1936), + [anon_sym_get] = ACTIONS(1936), + [anon_sym_set] = ACTIONS(1936), + [anon_sym_QMARK] = ACTIONS(750), + [anon_sym_declare] = ACTIONS(1936), + [anon_sym_public] = ACTIONS(1936), + [anon_sym_private] = ACTIONS(1936), + [anon_sym_protected] = ACTIONS(1936), + [anon_sym_override] = 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_object] = ACTIONS(1936), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [269] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2465), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_COMMA] = ACTIONS(1668), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(1668), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1668), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_AMP] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), - [anon_sym_extends] = ACTIONS(1670), + [sym_identifier] = ACTIONS(1940), + [anon_sym_export] = ACTIONS(1940), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1940), + [anon_sym_EQ] = ACTIONS(220), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1942), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_typeof] = ACTIONS(1940), + [anon_sym_import] = ACTIONS(1940), + [anon_sym_let] = ACTIONS(1940), + [anon_sym_BANG] = ACTIONS(1940), + [anon_sym_LPAREN] = ACTIONS(1942), + [anon_sym_RPAREN] = ACTIONS(223), + [anon_sym_await] = ACTIONS(1940), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(223), + [anon_sym_yield] = ACTIONS(1940), + [anon_sym_LBRACK] = ACTIONS(1942), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1942), + [anon_sym_SQUOTE] = ACTIONS(1942), + [anon_sym_class] = ACTIONS(1940), + [anon_sym_async] = ACTIONS(1940), + [anon_sym_function] = ACTIONS(1940), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1940), + [anon_sym_using] = ACTIONS(1940), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(1940), + [anon_sym_DASH] = ACTIONS(1940), + [anon_sym_SLASH] = ACTIONS(1940), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1940), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(1942), + [anon_sym_void] = ACTIONS(1940), + [anon_sym_delete] = ACTIONS(1940), + [anon_sym_PLUS_PLUS] = ACTIONS(1942), + [anon_sym_DASH_DASH] = ACTIONS(1942), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1942), + [sym_number] = ACTIONS(1942), + [sym_private_property_identifier] = ACTIONS(1942), + [sym_this] = ACTIONS(1940), + [sym_super] = ACTIONS(1940), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_undefined] = ACTIONS(1940), + [anon_sym_AT] = ACTIONS(1942), + [anon_sym_static] = ACTIONS(1940), + [anon_sym_readonly] = ACTIONS(1940), + [anon_sym_get] = ACTIONS(1940), + [anon_sym_set] = ACTIONS(1940), + [anon_sym_QMARK] = ACTIONS(750), + [anon_sym_declare] = ACTIONS(1940), + [anon_sym_public] = ACTIONS(1940), + [anon_sym_private] = ACTIONS(1940), + [anon_sym_protected] = ACTIONS(1940), + [anon_sym_override] = ACTIONS(1940), + [anon_sym_module] = ACTIONS(1940), + [anon_sym_any] = ACTIONS(1940), + [anon_sym_number] = ACTIONS(1940), + [anon_sym_boolean] = ACTIONS(1940), + [anon_sym_string] = ACTIONS(1940), + [anon_sym_symbol] = ACTIONS(1940), + [anon_sym_object] = ACTIONS(1940), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [270] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2145), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_spread_element] = STATE(4662), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [aux_sym_array_repeat1] = STATE(4663), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1939), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(1941), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1943), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1365), + [sym_expression] = STATE(2056), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5873), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5873), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5780), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1365), + [sym_subscript_expression] = STATE(1365), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2990), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5873), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1365), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1109), + [anon_sym_type] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_COMMA] = ACTIONS(1683), + [anon_sym_typeof] = ACTIONS(1135), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1109), + [anon_sym_BANG] = ACTIONS(1117), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1119), + [anon_sym_yield] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(1683), + [anon_sym_GT] = ACTIONS(1683), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1125), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1683), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1117), + [anon_sym_void] = ACTIONS(1135), + [anon_sym_delete] = ACTIONS(1135), + [anon_sym_PLUS_PLUS] = ACTIONS(1137), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1143), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1109), + [anon_sym_readonly] = ACTIONS(1109), + [anon_sym_get] = ACTIONS(1109), + [anon_sym_set] = ACTIONS(1109), + [anon_sym_declare] = ACTIONS(1109), + [anon_sym_public] = ACTIONS(1109), + [anon_sym_private] = ACTIONS(1109), + [anon_sym_protected] = ACTIONS(1109), + [anon_sym_override] = ACTIONS(1109), + [anon_sym_module] = ACTIONS(1109), + [anon_sym_any] = ACTIONS(1109), + [anon_sym_number] = ACTIONS(1109), + [anon_sym_boolean] = ACTIONS(1109), + [anon_sym_string] = ACTIONS(1109), + [anon_sym_symbol] = ACTIONS(1109), + [anon_sym_object] = ACTIONS(1109), + [anon_sym_extends] = ACTIONS(1685), [sym_html_comment] = ACTIONS(5), }, [271] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2199), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_spread_element] = STATE(4715), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [aux_sym_array_repeat1] = STATE(4716), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1939), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(1945), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1943), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2194), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_spread_element] = STATE(5167), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [aux_sym_array_repeat1] = STATE(5168), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_COMMA] = ACTIONS(1928), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_RPAREN] = ACTIONS(1944), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1932), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [272] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2196), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_spread_element] = STATE(4670), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [aux_sym_array_repeat1] = STATE(4671), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1939), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(1947), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1943), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1375), + [sym_expression] = STATE(2279), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5782), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5782), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5907), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1375), + [sym_subscript_expression] = STATE(1375), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5782), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1375), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_COMMA] = ACTIONS(1683), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(1683), + [anon_sym_GT] = ACTIONS(1683), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_AMP] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1683), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1061), + [anon_sym_extends] = ACTIONS(1685), [sym_html_comment] = ACTIONS(5), }, [273] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2197), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_spread_element] = STATE(4699), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [aux_sym_array_repeat1] = STATE(4700), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1939), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(1949), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1943), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(2215), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5596), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5596), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5594), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5596), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(1683), + [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1683), + [anon_sym_GT] = ACTIONS(1683), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1287), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1683), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_void] = ACTIONS(1297), + [anon_sym_delete] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1299), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1305), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [anon_sym_extends] = ACTIONS(1685), [sym_html_comment] = ACTIONS(5), }, [274] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2173), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_spread_element] = STATE(5148), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1951), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(1951), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(1951), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1943), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_identifier] = ACTIONS(1940), + [anon_sym_export] = ACTIONS(1940), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1940), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1942), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(1940), + [anon_sym_import] = ACTIONS(1940), + [anon_sym_let] = ACTIONS(1940), + [anon_sym_BANG] = ACTIONS(1940), + [anon_sym_LPAREN] = ACTIONS(1942), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(1940), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(1940), + [anon_sym_LBRACK] = ACTIONS(1942), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1942), + [anon_sym_SQUOTE] = ACTIONS(1942), + [anon_sym_class] = ACTIONS(1940), + [anon_sym_async] = ACTIONS(1940), + [anon_sym_function] = ACTIONS(1940), + [anon_sym_EQ_GT] = ACTIONS(156), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1940), + [anon_sym_using] = ACTIONS(1940), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(1940), + [anon_sym_DASH] = ACTIONS(1940), + [anon_sym_SLASH] = ACTIONS(1940), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1940), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(1942), + [anon_sym_void] = ACTIONS(1940), + [anon_sym_delete] = ACTIONS(1940), + [anon_sym_PLUS_PLUS] = ACTIONS(1942), + [anon_sym_DASH_DASH] = ACTIONS(1942), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1942), + [sym_number] = ACTIONS(1942), + [sym_private_property_identifier] = ACTIONS(1942), + [sym_this] = ACTIONS(1940), + [sym_super] = ACTIONS(1940), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_undefined] = ACTIONS(1940), + [anon_sym_AT] = ACTIONS(1942), + [anon_sym_static] = ACTIONS(1940), + [anon_sym_readonly] = ACTIONS(1940), + [anon_sym_get] = ACTIONS(1940), + [anon_sym_set] = ACTIONS(1940), + [anon_sym_QMARK] = ACTIONS(750), + [anon_sym_declare] = ACTIONS(1940), + [anon_sym_public] = ACTIONS(1940), + [anon_sym_private] = ACTIONS(1940), + [anon_sym_protected] = ACTIONS(1940), + [anon_sym_override] = ACTIONS(1940), + [anon_sym_module] = ACTIONS(1940), + [anon_sym_any] = ACTIONS(1940), + [anon_sym_number] = ACTIONS(1940), + [anon_sym_boolean] = ACTIONS(1940), + [anon_sym_string] = ACTIONS(1940), + [anon_sym_symbol] = ACTIONS(1940), + [anon_sym_object] = ACTIONS(1940), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [275] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2056), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1668), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1668), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1668), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), - [anon_sym_extends] = ACTIONS(1670), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2332), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_spread_element] = STATE(5139), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_COMMA] = ACTIONS(1946), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_RPAREN] = ACTIONS(1946), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_RBRACK] = ACTIONS(1946), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1932), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [276] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2185), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_spread_element] = STATE(5188), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [aux_sym_array_repeat1] = STATE(5189), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1939), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(1953), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1943), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(1781), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5881), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(1683), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(1683), + [anon_sym_GT] = ACTIONS(1683), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_AMP] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1683), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_extends] = ACTIONS(1685), [sym_html_comment] = ACTIONS(5), }, [277] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2190), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_spread_element] = STATE(4636), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [aux_sym_array_repeat1] = STATE(4637), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1939), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(1955), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1943), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1382), + [sym_expression] = STATE(2471), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5929), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5929), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5928), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1382), + [sym_subscript_expression] = STATE(1382), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2964), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5929), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1382), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_COMMA] = ACTIONS(1683), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(1683), + [anon_sym_GT] = ACTIONS(1683), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1683), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [anon_sym_extends] = ACTIONS(1685), [sym_html_comment] = ACTIONS(5), }, [278] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2207), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_COMMA] = ACTIONS(1668), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(1668), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_GT] = ACTIONS(1668), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_AMP] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), - [anon_sym_extends] = ACTIONS(1670), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2204), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_spread_element] = STATE(4641), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [aux_sym_array_repeat1] = STATE(4642), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_COMMA] = ACTIONS(1928), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_RPAREN] = ACTIONS(1948), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1932), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [279] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1758), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_COMMA] = ACTIONS(1668), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(1668), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_GT] = ACTIONS(1668), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_AMP] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), - [anon_sym_extends] = ACTIONS(1670), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1406), + [sym_expression] = STATE(2439), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5918), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5918), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5764), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1406), + [sym_subscript_expression] = STATE(1406), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2954), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5918), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1406), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1223), + [anon_sym_type] = ACTIONS(1223), + [anon_sym_namespace] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_COMMA] = ACTIONS(1683), + [anon_sym_typeof] = ACTIONS(1245), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1223), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1231), + [anon_sym_yield] = ACTIONS(1233), + [anon_sym_LBRACK] = ACTIONS(1683), + [anon_sym_GT] = ACTIONS(1683), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1235), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1239), + [anon_sym_AMP] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1683), + [anon_sym_PLUS] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_void] = ACTIONS(1245), + [anon_sym_delete] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1247), + [anon_sym_DASH_DASH] = ACTIONS(1247), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1249), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1223), + [anon_sym_readonly] = ACTIONS(1223), + [anon_sym_get] = ACTIONS(1223), + [anon_sym_set] = ACTIONS(1223), + [anon_sym_declare] = ACTIONS(1223), + [anon_sym_public] = ACTIONS(1223), + [anon_sym_private] = ACTIONS(1223), + [anon_sym_protected] = ACTIONS(1223), + [anon_sym_override] = ACTIONS(1223), + [anon_sym_module] = ACTIONS(1223), + [anon_sym_any] = ACTIONS(1223), + [anon_sym_number] = ACTIONS(1223), + [anon_sym_boolean] = ACTIONS(1223), + [anon_sym_string] = ACTIONS(1223), + [anon_sym_symbol] = ACTIONS(1223), + [anon_sym_object] = ACTIONS(1223), + [anon_sym_extends] = ACTIONS(1685), [sym_html_comment] = ACTIONS(5), }, [280] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2279), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1668), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(1668), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1668), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_AMP] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), - [anon_sym_extends] = ACTIONS(1670), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2209), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_spread_element] = STATE(4675), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [aux_sym_array_repeat1] = STATE(4676), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_COMMA] = ACTIONS(1928), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_RPAREN] = ACTIONS(1950), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1932), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [281] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2244), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_spread_element] = STATE(4695), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [aux_sym_array_repeat1] = STATE(4696), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1939), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(1957), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1943), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), - [sym_html_comment] = ACTIONS(5), - }, - [282] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2182), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_spread_element] = STATE(5978), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5978), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_RBRACE] = ACTIONS(1959), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1961), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), - [sym_html_comment] = ACTIONS(5), - }, - [283] = { - [sym_import] = STATE(3613), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2465), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym__type_query_member_expression] = STATE(2835), - [sym__type_query_subscript_expression] = STATE(2834), - [sym__type_query_call_expression] = STATE(2883), - [sym__type_query_instantiation_expression] = STATE(2977), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1963), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(1965), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), - [sym_html_comment] = ACTIONS(5), - }, - [284] = { - [sym_import] = STATE(3771), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1806), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym__type_query_member_expression] = STATE(2835), - [sym__type_query_subscript_expression] = STATE(2834), - [sym__type_query_call_expression] = STATE(2883), - [sym__type_query_instantiation_expression] = STATE(2977), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1967), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1829), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1319), + [anon_sym_type] = ACTIONS(1319), + [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(1683), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1319), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(1683), + [anon_sym_GT] = ACTIONS(1683), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(1683), + [anon_sym_PIPE] = ACTIONS(1683), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(1969), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_readonly] = ACTIONS(1319), + [anon_sym_get] = ACTIONS(1319), + [anon_sym_set] = ACTIONS(1319), + [anon_sym_declare] = ACTIONS(1319), + [anon_sym_public] = ACTIONS(1319), + [anon_sym_private] = ACTIONS(1319), + [anon_sym_protected] = ACTIONS(1319), + [anon_sym_override] = ACTIONS(1319), + [anon_sym_module] = ACTIONS(1319), + [anon_sym_any] = ACTIONS(1319), + [anon_sym_number] = ACTIONS(1319), + [anon_sym_boolean] = ACTIONS(1319), + [anon_sym_string] = ACTIONS(1319), + [anon_sym_symbol] = ACTIONS(1319), + [anon_sym_object] = ACTIONS(1319), + [anon_sym_extends] = ACTIONS(1685), + [sym_html_comment] = ACTIONS(5), + }, + [282] = { + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2076), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_spread_element] = STATE(4624), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [aux_sym_array_repeat1] = STATE(4640), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_COMMA] = ACTIONS(1928), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_RPAREN] = ACTIONS(1952), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1932), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [283] = { + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2212), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_spread_element] = STATE(4707), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [aux_sym_array_repeat1] = STATE(4708), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_COMMA] = ACTIONS(1928), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_RPAREN] = ACTIONS(1954), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1932), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [284] = { + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3631), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3631), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1265), + [sym_subscript_expression] = STATE(1265), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3631), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_pattern] = STATE(4364), + [sym_rest_pattern] = STATE(3626), + [sym_non_null_expression] = STATE(1265), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_accessibility_modifier] = STATE(304), + [sym_override_modifier] = STATE(312), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(728), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(1956), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(736), + [anon_sym_using] = ACTIONS(162), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(1958), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1960), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_override] = ACTIONS(808), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, [285] = { - [sym_identifier] = ACTIONS(1971), - [anon_sym_export] = ACTIONS(1971), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(1971), - [anon_sym_EQ] = ACTIONS(223), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1971), - [anon_sym_LBRACE] = ACTIONS(1973), - [anon_sym_COMMA] = ACTIONS(226), - [anon_sym_typeof] = ACTIONS(1971), - [anon_sym_import] = ACTIONS(1971), - [anon_sym_let] = ACTIONS(1971), - [anon_sym_BANG] = ACTIONS(1971), - [anon_sym_LPAREN] = ACTIONS(1973), - [anon_sym_RPAREN] = ACTIONS(226), - [anon_sym_await] = ACTIONS(1971), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(226), - [anon_sym_yield] = ACTIONS(1971), - [anon_sym_LBRACK] = ACTIONS(1973), - [sym_glimmer_opening_tag] = ACTIONS(1973), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1973), - [anon_sym_SQUOTE] = ACTIONS(1973), - [anon_sym_class] = ACTIONS(1971), - [anon_sym_async] = ACTIONS(1971), - [anon_sym_function] = ACTIONS(1971), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1971), - [anon_sym_using] = ACTIONS(1971), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1973), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_SLASH] = ACTIONS(1971), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1971), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1971), - [anon_sym_delete] = ACTIONS(1971), - [anon_sym_PLUS_PLUS] = ACTIONS(1973), - [anon_sym_DASH_DASH] = ACTIONS(1973), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1973), - [sym_number] = ACTIONS(1973), - [sym_private_property_identifier] = ACTIONS(1973), - [sym_this] = ACTIONS(1971), - [sym_super] = ACTIONS(1971), - [sym_true] = ACTIONS(1971), - [sym_false] = ACTIONS(1971), - [sym_null] = ACTIONS(1971), - [sym_undefined] = ACTIONS(1971), - [anon_sym_AT] = ACTIONS(1973), - [anon_sym_static] = ACTIONS(1971), - [anon_sym_readonly] = ACTIONS(1971), - [anon_sym_get] = ACTIONS(1971), - [anon_sym_set] = ACTIONS(1971), - [anon_sym_QMARK] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(1971), - [anon_sym_public] = ACTIONS(1971), - [anon_sym_private] = ACTIONS(1971), - [anon_sym_protected] = ACTIONS(1971), - [anon_sym_override] = ACTIONS(1971), - [anon_sym_module] = ACTIONS(1971), - [anon_sym_any] = ACTIONS(1971), - [anon_sym_number] = ACTIONS(1971), - [anon_sym_boolean] = ACTIONS(1971), - [anon_sym_string] = ACTIONS(1971), - [anon_sym_symbol] = ACTIONS(1971), - [anon_sym_object] = ACTIONS(1971), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_identifier] = ACTIONS(1936), + [anon_sym_export] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1936), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1936), + [anon_sym_LBRACE] = ACTIONS(1938), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(1936), + [anon_sym_import] = ACTIONS(1936), + [anon_sym_let] = ACTIONS(1936), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_LPAREN] = ACTIONS(1938), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(1936), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(1936), + [anon_sym_LBRACK] = ACTIONS(1938), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1938), + [anon_sym_SQUOTE] = ACTIONS(1938), + [anon_sym_class] = ACTIONS(1936), + [anon_sym_async] = ACTIONS(1936), + [anon_sym_function] = ACTIONS(1936), + [anon_sym_EQ_GT] = ACTIONS(156), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1936), + [anon_sym_using] = ACTIONS(1936), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1938), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_SLASH] = ACTIONS(1936), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1936), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(1938), + [anon_sym_void] = ACTIONS(1936), + [anon_sym_delete] = ACTIONS(1936), + [anon_sym_PLUS_PLUS] = ACTIONS(1938), + [anon_sym_DASH_DASH] = ACTIONS(1938), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1938), + [sym_number] = ACTIONS(1938), + [sym_private_property_identifier] = ACTIONS(1938), + [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(1938), + [anon_sym_static] = ACTIONS(1936), + [anon_sym_readonly] = ACTIONS(1936), + [anon_sym_get] = ACTIONS(1936), + [anon_sym_set] = ACTIONS(1936), + [anon_sym_QMARK] = ACTIONS(750), + [anon_sym_declare] = ACTIONS(1936), + [anon_sym_public] = ACTIONS(1936), + [anon_sym_private] = ACTIONS(1936), + [anon_sym_protected] = ACTIONS(1936), + [anon_sym_override] = 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_object] = ACTIONS(1936), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [286] = { - [sym_import] = STATE(3613), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym__type_query_member_expression] = STATE(2835), - [sym__type_query_subscript_expression] = STATE(2834), - [sym__type_query_call_expression] = STATE(2883), - [sym__type_query_instantiation_expression] = STATE(2977), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1975), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(1965), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [sym_import] = STATE(3617), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(2215), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5596), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5596), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5594), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5596), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym__type_query_member_expression] = STATE(2831), + [sym__type_query_subscript_expression] = STATE(2830), + [sym__type_query_call_expression] = STATE(2879), + [sym__type_query_instantiation_expression] = STATE(2972), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1962), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1287), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_void] = ACTIONS(1297), + [anon_sym_delete] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1299), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1305), + [sym_this] = ACTIONS(1964), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), [sym_html_comment] = ACTIONS(5), }, [287] = { - [sym_import] = STATE(3613), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym__type_query_member_expression] = STATE(2835), - [sym__type_query_subscript_expression] = STATE(2834), - [sym__type_query_call_expression] = STATE(2883), - [sym__type_query_instantiation_expression] = STATE(2977), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1977), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(1979), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [sym_import] = STATE(3607), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(1699), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym__type_query_member_expression] = STATE(2831), + [sym__type_query_subscript_expression] = STATE(2830), + [sym__type_query_call_expression] = STATE(2879), + [sym__type_query_instantiation_expression] = STATE(2972), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1966), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(1968), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [288] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_assignment_pattern] = STATE(5503), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4827), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1634), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(741), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(115), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_import] = STATE(3607), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(1699), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym__type_query_member_expression] = STATE(2831), + [sym__type_query_subscript_expression] = STATE(2830), + [sym__type_query_call_expression] = STATE(2879), + [sym__type_query_instantiation_expression] = STATE(2972), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1970), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(1972), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [289] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2432), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3740), - [sym_assignment_pattern] = STATE(5503), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3740), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1261), - [sym_subscript_expression] = STATE(1261), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3740), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4827), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1261), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1622), - [anon_sym_export] = ACTIONS(610), - [anon_sym_type] = ACTIONS(610), - [anon_sym_namespace] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(610), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(632), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1624), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1628), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(610), - [anon_sym_readonly] = ACTIONS(610), - [anon_sym_get] = ACTIONS(610), - [anon_sym_set] = ACTIONS(610), - [anon_sym_declare] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_protected] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_module] = ACTIONS(610), - [anon_sym_any] = ACTIONS(610), - [anon_sym_number] = ACTIONS(610), - [anon_sym_boolean] = ACTIONS(610), - [anon_sym_string] = ACTIONS(610), - [anon_sym_symbol] = ACTIONS(610), - [anon_sym_object] = ACTIONS(610), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1406), + [sym_expression] = STATE(2439), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5918), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5918), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5764), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1406), + [sym_subscript_expression] = STATE(1406), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2954), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5918), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1406), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym__type_query_member_expression] = STATE(2831), + [sym__type_query_subscript_expression] = STATE(2830), + [sym__type_query_call_expression] = STATE(2879), + [sym__type_query_instantiation_expression] = STATE(2972), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1974), + [anon_sym_export] = ACTIONS(1223), + [anon_sym_type] = ACTIONS(1223), + [anon_sym_namespace] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1245), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1223), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1231), + [anon_sym_yield] = ACTIONS(1233), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1235), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_void] = ACTIONS(1245), + [anon_sym_delete] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1247), + [anon_sym_DASH_DASH] = ACTIONS(1247), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1249), + [sym_this] = ACTIONS(1968), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1223), + [anon_sym_readonly] = ACTIONS(1223), + [anon_sym_get] = ACTIONS(1223), + [anon_sym_set] = ACTIONS(1223), + [anon_sym_declare] = ACTIONS(1223), + [anon_sym_public] = ACTIONS(1223), + [anon_sym_private] = ACTIONS(1223), + [anon_sym_protected] = ACTIONS(1223), + [anon_sym_override] = ACTIONS(1223), + [anon_sym_module] = ACTIONS(1223), + [anon_sym_any] = ACTIONS(1223), + [anon_sym_number] = ACTIONS(1223), + [anon_sym_boolean] = ACTIONS(1223), + [anon_sym_string] = ACTIONS(1223), + [anon_sym_symbol] = ACTIONS(1223), + [anon_sym_object] = ACTIONS(1223), [sym_html_comment] = ACTIONS(5), }, [290] = { - [sym_import] = STATE(3720), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1726), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym__type_query_member_expression] = STATE(2876), - [sym__type_query_subscript_expression] = STATE(2890), - [sym__type_query_call_expression] = STATE(3066), - [sym__type_query_instantiation_expression] = STATE(3195), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1981), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(1983), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3631), + [sym_assignment_pattern] = STATE(5398), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3631), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1265), + [sym_subscript_expression] = STATE(1265), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3631), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_pattern] = STATE(5047), + [sym_rest_pattern] = STATE(3626), + [sym_non_null_expression] = STATE(1265), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(728), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(736), + [anon_sym_using] = ACTIONS(162), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, [291] = { - [sym_import] = STATE(3670), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2056), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym__type_query_member_expression] = STATE(2835), - [sym__type_query_subscript_expression] = STATE(2834), - [sym__type_query_call_expression] = STATE(2883), - [sym__type_query_instantiation_expression] = STATE(2977), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1985), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(1965), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2176), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_spread_element] = STATE(5665), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_sequence_expression] = STATE(5665), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(1976), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1978), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [292] = { - [sym_import] = STATE(3771), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1758), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym__type_query_member_expression] = STATE(2835), - [sym__type_query_subscript_expression] = STATE(2834), - [sym__type_query_call_expression] = STATE(2883), - [sym__type_query_instantiation_expression] = STATE(2977), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1987), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(1969), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [sym_import] = STATE(3587), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2548), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym__type_query_member_expression] = STATE(2831), + [sym__type_query_subscript_expression] = STATE(2830), + [sym__type_query_call_expression] = STATE(2879), + [sym__type_query_instantiation_expression] = STATE(2972), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1980), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(1982), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), [sym_html_comment] = ACTIONS(5), }, [293] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4362), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_override_modifier] = STATE(315), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1634), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(741), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(1989), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1991), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(815), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_import] = STATE(3607), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(1699), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym__type_query_member_expression] = STATE(2831), + [sym__type_query_subscript_expression] = STATE(2830), + [sym__type_query_call_expression] = STATE(2879), + [sym__type_query_instantiation_expression] = STATE(2972), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1984), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(1982), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [294] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4147), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_override_modifier] = STATE(311), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1634), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(741), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(803), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1993), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(815), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_import] = STATE(3607), + [sym_parenthesized_expression] = STATE(1365), + [sym_expression] = STATE(2056), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5873), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5873), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5780), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1365), + [sym_subscript_expression] = STATE(1365), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2990), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5873), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1365), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym__type_query_member_expression] = STATE(2831), + [sym__type_query_subscript_expression] = STATE(2830), + [sym__type_query_call_expression] = STATE(2879), + [sym__type_query_instantiation_expression] = STATE(2972), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1986), + [anon_sym_export] = ACTIONS(1109), + [anon_sym_type] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1135), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1109), + [anon_sym_BANG] = ACTIONS(1117), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1119), + [anon_sym_yield] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1125), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1117), + [anon_sym_void] = ACTIONS(1135), + [anon_sym_delete] = ACTIONS(1135), + [anon_sym_PLUS_PLUS] = ACTIONS(1137), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1143), + [sym_this] = ACTIONS(1968), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1109), + [anon_sym_readonly] = ACTIONS(1109), + [anon_sym_get] = ACTIONS(1109), + [anon_sym_set] = ACTIONS(1109), + [anon_sym_declare] = ACTIONS(1109), + [anon_sym_public] = ACTIONS(1109), + [anon_sym_private] = ACTIONS(1109), + [anon_sym_protected] = ACTIONS(1109), + [anon_sym_override] = ACTIONS(1109), + [anon_sym_module] = ACTIONS(1109), + [anon_sym_any] = ACTIONS(1109), + [anon_sym_number] = ACTIONS(1109), + [anon_sym_boolean] = ACTIONS(1109), + [anon_sym_string] = ACTIONS(1109), + [anon_sym_symbol] = ACTIONS(1109), + [anon_sym_object] = ACTIONS(1109), [sym_html_comment] = ACTIONS(5), }, [295] = { - [sym_identifier] = ACTIONS(1971), - [anon_sym_export] = ACTIONS(1971), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(1971), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1971), - [anon_sym_LBRACE] = ACTIONS(1973), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(1971), - [anon_sym_import] = ACTIONS(1971), - [anon_sym_let] = ACTIONS(1971), - [anon_sym_BANG] = ACTIONS(1971), - [anon_sym_LPAREN] = ACTIONS(1973), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(1971), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(1971), - [anon_sym_LBRACK] = ACTIONS(1973), - [sym_glimmer_opening_tag] = ACTIONS(1973), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1973), - [anon_sym_SQUOTE] = ACTIONS(1973), - [anon_sym_class] = ACTIONS(1971), - [anon_sym_async] = ACTIONS(1971), - [anon_sym_function] = ACTIONS(1971), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1971), - [anon_sym_using] = ACTIONS(1971), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1973), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_SLASH] = ACTIONS(1971), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1971), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1971), - [anon_sym_delete] = ACTIONS(1971), - [anon_sym_PLUS_PLUS] = ACTIONS(1973), - [anon_sym_DASH_DASH] = ACTIONS(1973), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1973), - [sym_number] = ACTIONS(1973), - [sym_private_property_identifier] = ACTIONS(1973), - [sym_this] = ACTIONS(1971), - [sym_super] = ACTIONS(1971), - [sym_true] = ACTIONS(1971), - [sym_false] = ACTIONS(1971), - [sym_null] = ACTIONS(1971), - [sym_undefined] = ACTIONS(1971), - [anon_sym_AT] = ACTIONS(1973), - [anon_sym_static] = ACTIONS(1971), - [anon_sym_readonly] = ACTIONS(1971), - [anon_sym_get] = ACTIONS(1971), - [anon_sym_set] = ACTIONS(1971), - [anon_sym_QMARK] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(1971), - [anon_sym_public] = ACTIONS(1971), - [anon_sym_private] = ACTIONS(1971), - [anon_sym_protected] = ACTIONS(1971), - [anon_sym_override] = ACTIONS(1971), - [anon_sym_module] = ACTIONS(1971), - [anon_sym_any] = ACTIONS(1971), - [anon_sym_number] = ACTIONS(1971), - [anon_sym_boolean] = ACTIONS(1971), - [anon_sym_string] = ACTIONS(1971), - [anon_sym_symbol] = ACTIONS(1971), - [anon_sym_object] = ACTIONS(1971), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3587), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2548), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym__type_query_member_expression] = STATE(2831), + [sym__type_query_subscript_expression] = STATE(2830), + [sym__type_query_call_expression] = STATE(2879), + [sym__type_query_instantiation_expression] = STATE(2972), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(1972), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), [sym_html_comment] = ACTIONS(5), }, [296] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2159), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_spread_element] = STATE(5995), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5995), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_RBRACE] = ACTIONS(1995), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1961), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3587), + [sym_parenthesized_expression] = STATE(1382), + [sym_expression] = STATE(2471), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5929), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5929), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5928), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1382), + [sym_subscript_expression] = STATE(1382), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2964), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5929), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1382), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym__type_query_member_expression] = STATE(2831), + [sym__type_query_subscript_expression] = STATE(2830), + [sym__type_query_call_expression] = STATE(2879), + [sym__type_query_instantiation_expression] = STATE(2972), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1990), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(1968), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), [sym_html_comment] = ACTIONS(5), }, [297] = { - [sym_import] = STATE(3670), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1726), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym__type_query_member_expression] = STATE(2835), - [sym__type_query_subscript_expression] = STATE(2834), - [sym__type_query_call_expression] = STATE(2883), - [sym__type_query_instantiation_expression] = STATE(2977), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1997), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(1999), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2148), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_spread_element] = STATE(5736), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_sequence_expression] = STATE(5736), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_RBRACE] = ACTIONS(1992), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1978), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [298] = { - [sym_import] = STATE(3613), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2279), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym__type_query_member_expression] = STATE(2835), - [sym__type_query_subscript_expression] = STATE(2834), - [sym__type_query_call_expression] = STATE(2883), - [sym__type_query_instantiation_expression] = STATE(2977), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(2001), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(1965), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [sym_import] = STATE(3587), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2548), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym__type_query_member_expression] = STATE(2831), + [sym__type_query_subscript_expression] = STATE(2830), + [sym__type_query_call_expression] = STATE(2879), + [sym__type_query_instantiation_expression] = STATE(2972), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1994), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(1968), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), [sym_html_comment] = ACTIONS(5), }, [299] = { - [sym_import] = STATE(3613), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym__type_query_member_expression] = STATE(2835), - [sym__type_query_subscript_expression] = STATE(2834), - [sym__type_query_call_expression] = STATE(2883), - [sym__type_query_instantiation_expression] = STATE(2977), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(2003), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(1999), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [sym_import] = STATE(3587), + [sym_parenthesized_expression] = STATE(1375), + [sym_expression] = STATE(2279), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5782), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5782), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5907), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1375), + [sym_subscript_expression] = STATE(1375), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5782), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1375), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym__type_query_member_expression] = STATE(2831), + [sym__type_query_subscript_expression] = STATE(2830), + [sym__type_query_call_expression] = STATE(2879), + [sym__type_query_instantiation_expression] = STATE(2972), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1996), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(1968), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, [300] = { - [sym_identifier] = ACTIONS(2005), - [anon_sym_export] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2005), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2005), - [anon_sym_LBRACE] = ACTIONS(2007), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(2005), - [anon_sym_import] = ACTIONS(2005), - [anon_sym_let] = ACTIONS(2005), - [anon_sym_BANG] = ACTIONS(2005), - [anon_sym_LPAREN] = ACTIONS(2007), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(2005), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(2005), - [anon_sym_LBRACK] = ACTIONS(2007), - [sym_glimmer_opening_tag] = ACTIONS(2007), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2007), - [anon_sym_SQUOTE] = ACTIONS(2007), - [anon_sym_class] = ACTIONS(2005), - [anon_sym_async] = ACTIONS(2005), - [anon_sym_function] = ACTIONS(2005), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2005), - [anon_sym_using] = ACTIONS(2005), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2007), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_SLASH] = ACTIONS(2005), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2005), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_void] = ACTIONS(2005), - [anon_sym_delete] = ACTIONS(2005), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2007), - [sym_number] = ACTIONS(2007), - [sym_private_property_identifier] = ACTIONS(2007), - [sym_this] = ACTIONS(2005), - [sym_super] = ACTIONS(2005), - [sym_true] = ACTIONS(2005), - [sym_false] = ACTIONS(2005), - [sym_null] = ACTIONS(2005), - [sym_undefined] = ACTIONS(2005), - [anon_sym_AT] = ACTIONS(2007), - [anon_sym_static] = ACTIONS(2005), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_get] = ACTIONS(2005), - [anon_sym_set] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(2005), - [anon_sym_public] = ACTIONS(2005), - [anon_sym_private] = ACTIONS(2005), - [anon_sym_protected] = ACTIONS(2005), - [anon_sym_override] = ACTIONS(2005), - [anon_sym_module] = ACTIONS(2005), - [anon_sym_any] = ACTIONS(2005), - [anon_sym_number] = ACTIONS(2005), - [anon_sym_boolean] = ACTIONS(2005), - [anon_sym_string] = ACTIONS(2005), - [anon_sym_symbol] = ACTIONS(2005), - [anon_sym_object] = ACTIONS(2005), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3631), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3631), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1265), + [sym_subscript_expression] = STATE(1265), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3631), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_pattern] = STATE(4302), + [sym_rest_pattern] = STATE(3626), + [sym_non_null_expression] = STATE(1265), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_override_modifier] = STATE(310), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(728), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(736), + [anon_sym_using] = ACTIONS(162), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1998), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(808), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, [301] = { - [sym_import] = STATE(3670), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1726), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym__type_query_member_expression] = STATE(2835), - [sym__type_query_subscript_expression] = STATE(2834), - [sym__type_query_call_expression] = STATE(2883), - [sym__type_query_instantiation_expression] = STATE(2977), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(2009), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(1979), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3684), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(1781), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5881), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym__type_query_member_expression] = STATE(2831), + [sym__type_query_subscript_expression] = STATE(2830), + [sym__type_query_call_expression] = STATE(2879), + [sym__type_query_instantiation_expression] = STATE(2972), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(2000), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(1964), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, [302] = { - [sym_import] = STATE(3659), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2380), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym__type_query_member_expression] = STATE(2835), - [sym__type_query_subscript_expression] = STATE(2834), - [sym__type_query_call_expression] = STATE(2883), - [sym__type_query_instantiation_expression] = STATE(2977), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(2011), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(1965), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [sym_import] = STATE(3655), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(1699), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym__type_query_member_expression] = STATE(2887), + [sym__type_query_subscript_expression] = STATE(2883), + [sym__type_query_call_expression] = STATE(3099), + [sym__type_query_instantiation_expression] = STATE(3239), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(2002), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(2004), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [303] = { - [sym_import] = STATE(3592), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2207), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym__type_query_member_expression] = STATE(2835), - [sym__type_query_subscript_expression] = STATE(2834), - [sym__type_query_call_expression] = STATE(2883), - [sym__type_query_instantiation_expression] = STATE(2977), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(2013), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(1969), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2402), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3596), + [sym_assignment_pattern] = STATE(5398), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3596), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1268), + [sym_subscript_expression] = STATE(1268), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3596), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_pattern] = STATE(5047), + [sym_rest_pattern] = STATE(3626), + [sym_non_null_expression] = STATE(1268), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1617), + [anon_sym_export] = ACTIONS(603), + [anon_sym_type] = ACTIONS(603), + [anon_sym_namespace] = ACTIONS(607), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(603), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1619), + [anon_sym_using] = ACTIONS(629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1623), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(603), + [anon_sym_readonly] = ACTIONS(603), + [anon_sym_get] = ACTIONS(603), + [anon_sym_set] = ACTIONS(603), + [anon_sym_declare] = ACTIONS(603), + [anon_sym_public] = ACTIONS(603), + [anon_sym_private] = ACTIONS(603), + [anon_sym_protected] = ACTIONS(603), + [anon_sym_override] = ACTIONS(603), + [anon_sym_module] = ACTIONS(603), + [anon_sym_any] = ACTIONS(603), + [anon_sym_number] = ACTIONS(603), + [anon_sym_boolean] = ACTIONS(603), + [anon_sym_string] = ACTIONS(603), + [anon_sym_symbol] = ACTIONS(603), + [anon_sym_object] = ACTIONS(603), [sym_html_comment] = ACTIONS(5), }, [304] = { - [sym_import] = STATE(3670), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1726), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym__type_query_member_expression] = STATE(2835), - [sym__type_query_subscript_expression] = STATE(2834), - [sym__type_query_call_expression] = STATE(2883), - [sym__type_query_instantiation_expression] = STATE(2977), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(2015), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(1965), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3631), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3631), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1265), + [sym_subscript_expression] = STATE(1265), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3631), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_pattern] = STATE(4299), + [sym_rest_pattern] = STATE(3626), + [sym_non_null_expression] = STATE(1265), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_override_modifier] = STATE(308), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(728), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(736), + [anon_sym_using] = ACTIONS(162), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(2006), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(2008), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(808), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, [305] = { - [sym_identifier] = ACTIONS(2005), - [anon_sym_export] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2005), - [anon_sym_EQ] = ACTIONS(223), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2005), - [anon_sym_LBRACE] = ACTIONS(2007), - [anon_sym_COMMA] = ACTIONS(226), - [anon_sym_typeof] = ACTIONS(2005), - [anon_sym_import] = ACTIONS(2005), - [anon_sym_let] = ACTIONS(2005), - [anon_sym_BANG] = ACTIONS(2005), - [anon_sym_LPAREN] = ACTIONS(2007), - [anon_sym_RPAREN] = ACTIONS(226), - [anon_sym_await] = ACTIONS(2005), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(226), - [anon_sym_yield] = ACTIONS(2005), - [anon_sym_LBRACK] = ACTIONS(2007), - [sym_glimmer_opening_tag] = ACTIONS(2007), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2007), - [anon_sym_SQUOTE] = ACTIONS(2007), - [anon_sym_class] = ACTIONS(2005), - [anon_sym_async] = ACTIONS(2005), - [anon_sym_function] = ACTIONS(2005), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2005), - [anon_sym_using] = ACTIONS(2005), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2007), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_SLASH] = ACTIONS(2005), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2005), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(2007), - [anon_sym_void] = ACTIONS(2005), - [anon_sym_delete] = ACTIONS(2005), - [anon_sym_PLUS_PLUS] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2007), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2007), - [sym_number] = ACTIONS(2007), - [sym_private_property_identifier] = ACTIONS(2007), - [sym_this] = ACTIONS(2005), - [sym_super] = ACTIONS(2005), - [sym_true] = ACTIONS(2005), - [sym_false] = ACTIONS(2005), - [sym_null] = ACTIONS(2005), - [sym_undefined] = ACTIONS(2005), - [anon_sym_AT] = ACTIONS(2007), - [anon_sym_static] = ACTIONS(2005), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_get] = ACTIONS(2005), - [anon_sym_set] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(2005), - [anon_sym_public] = ACTIONS(2005), - [anon_sym_private] = ACTIONS(2005), - [anon_sym_protected] = ACTIONS(2005), - [anon_sym_override] = ACTIONS(2005), - [anon_sym_module] = ACTIONS(2005), - [anon_sym_any] = ACTIONS(2005), - [anon_sym_number] = ACTIONS(2005), - [anon_sym_boolean] = ACTIONS(2005), - [anon_sym_string] = ACTIONS(2005), - [anon_sym_symbol] = ACTIONS(2005), - [anon_sym_object] = ACTIONS(2005), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(3684), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1829), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym__type_query_member_expression] = STATE(2831), + [sym__type_query_subscript_expression] = STATE(2830), + [sym__type_query_call_expression] = STATE(2879), + [sym__type_query_instantiation_expression] = STATE(2972), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(2010), + [anon_sym_export] = ACTIONS(1319), + [anon_sym_type] = ACTIONS(1319), + [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1319), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(1964), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_readonly] = ACTIONS(1319), + [anon_sym_get] = ACTIONS(1319), + [anon_sym_set] = ACTIONS(1319), + [anon_sym_declare] = ACTIONS(1319), + [anon_sym_public] = ACTIONS(1319), + [anon_sym_private] = ACTIONS(1319), + [anon_sym_protected] = ACTIONS(1319), + [anon_sym_override] = ACTIONS(1319), + [anon_sym_module] = ACTIONS(1319), + [anon_sym_any] = ACTIONS(1319), + [anon_sym_number] = ACTIONS(1319), + [anon_sym_boolean] = ACTIONS(1319), + [anon_sym_string] = ACTIONS(1319), + [anon_sym_symbol] = ACTIONS(1319), + [anon_sym_object] = ACTIONS(1319), [sym_html_comment] = ACTIONS(5), }, [306] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4147), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1634), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(741), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(803), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1993), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), - [sym_html_comment] = ACTIONS(5), - }, - [307] = { - [sym_import] = STATE(3759), - [sym_empty_statement] = STATE(323), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2203), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5672), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), + [sym_import] = STATE(3644), + [sym_empty_statement] = STATE(326), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2347), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_sequence_expression] = STATE(5905), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), - [sym_html_comment] = ACTIONS(5), - }, - [308] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4372), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1634), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(741), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(2017), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(2019), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [309] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1914), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5438), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), + [307] = { + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(2027), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5301), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1319), + [anon_sym_type] = ACTIONS(1319), + [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(695), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1319), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2021), + [anon_sym_SEMI] = ACTIONS(2012), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), - [sym__automatic_semicolon] = ACTIONS(2021), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_readonly] = ACTIONS(1319), + [anon_sym_get] = ACTIONS(1319), + [anon_sym_set] = ACTIONS(1319), + [anon_sym_declare] = ACTIONS(1319), + [anon_sym_public] = ACTIONS(1319), + [anon_sym_private] = ACTIONS(1319), + [anon_sym_protected] = ACTIONS(1319), + [anon_sym_override] = ACTIONS(1319), + [anon_sym_module] = ACTIONS(1319), + [anon_sym_any] = ACTIONS(1319), + [anon_sym_number] = ACTIONS(1319), + [anon_sym_boolean] = ACTIONS(1319), + [anon_sym_string] = ACTIONS(1319), + [anon_sym_symbol] = ACTIONS(1319), + [anon_sym_object] = ACTIONS(1319), + [sym__automatic_semicolon] = ACTIONS(2012), [sym_html_comment] = ACTIONS(5), }, - [310] = { - [sym_import] = STATE(3759), + [308] = { + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3631), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3631), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1265), + [sym_subscript_expression] = STATE(1265), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3631), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_pattern] = STATE(4151), + [sym_rest_pattern] = STATE(3626), + [sym_non_null_expression] = STATE(1265), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(728), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(736), + [anon_sym_using] = ACTIONS(162), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(2014), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(2016), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [sym_html_comment] = ACTIONS(5), + }, + [309] = { + [sym_import] = STATE(3644), [sym_empty_statement] = STATE(318), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2316), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5701), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2323), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_sequence_expression] = STATE(5766), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [310] = { + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3631), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3631), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1265), + [sym_subscript_expression] = STATE(1265), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3631), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_pattern] = STATE(4252), + [sym_rest_pattern] = STATE(3626), + [sym_non_null_expression] = STATE(1265), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(728), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(736), + [anon_sym_using] = ACTIONS(162), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(796), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(2018), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, [311] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4353), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1634), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(741), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(751), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(2023), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_import] = STATE(3644), + [sym_empty_statement] = STATE(317), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2201), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_sequence_expression] = STATE(5752), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [312] = { - [sym_import] = STATE(3759), - [sym_empty_statement] = STATE(327), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2315), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5683), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3631), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3631), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1265), + [sym_subscript_expression] = STATE(1265), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3631), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_pattern] = STATE(4300), + [sym_rest_pattern] = STATE(3626), + [sym_non_null_expression] = STATE(1265), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(728), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(736), + [anon_sym_using] = ACTIONS(162), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(2020), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(2022), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, [313] = { - [sym_import] = STATE(3759), - [sym_empty_statement] = STATE(317), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2356), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5793), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), + [sym_import] = STATE(3644), + [sym_empty_statement] = STATE(324), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2300), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_sequence_expression] = STATE(5689), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [314] = { - [sym_import] = STATE(3759), - [sym_empty_statement] = STATE(319), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2351), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5917), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3631), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3631), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1265), + [sym_subscript_expression] = STATE(1265), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3631), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_pattern] = STATE(4302), + [sym_rest_pattern] = STATE(3626), + [sym_non_null_expression] = STATE(1265), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(728), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(736), + [anon_sym_using] = ACTIONS(162), + [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1998), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, [315] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3643), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3643), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1279), - [sym_subscript_expression] = STATE(1279), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3643), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_pattern] = STATE(4205), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1279), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(731), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1634), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(741), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(2025), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(2027), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_import] = STATE(3644), + [sym_empty_statement] = STATE(322), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2299), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_sequence_expression] = STATE(5671), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [316] = { - [sym_import] = STATE(3759), - [sym_empty_statement] = STATE(322), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2352), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5920), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), + [sym_import] = STATE(3644), + [sym_empty_statement] = STATE(328), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2348), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_sequence_expression] = STATE(5908), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [317] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2202), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5656), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(2029), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2289), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_sequence_expression] = STATE(5824), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_RPAREN] = ACTIONS(2024), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [318] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2239), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5711), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(2031), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2198), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_sequence_expression] = STATE(5607), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_RPAREN] = ACTIONS(2026), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [319] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2346), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5867), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(2033), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2287), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_sequence_expression] = STATE(5818), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_RPAREN] = ACTIONS(2028), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [320] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2347), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5871), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(2035), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2345), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_sequence_expression] = STATE(5880), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_RPAREN] = ACTIONS(2030), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [321] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2306), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5928), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(2037), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1415), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5083), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5083), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1415), + [sym_subscript_expression] = STATE(1415), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5083), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1415), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(2032), + [anon_sym_export] = ACTIONS(2034), + [anon_sym_type] = ACTIONS(2034), + [anon_sym_namespace] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(1887), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_var] = ACTIONS(2038), + [anon_sym_let] = ACTIONS(2040), + [anon_sym_const] = ACTIONS(2042), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1895), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(2044), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2046), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(2048), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2034), + [anon_sym_readonly] = ACTIONS(2034), + [anon_sym_get] = ACTIONS(2034), + [anon_sym_set] = ACTIONS(2034), + [anon_sym_declare] = ACTIONS(2034), + [anon_sym_public] = ACTIONS(2034), + [anon_sym_private] = ACTIONS(2034), + [anon_sym_protected] = ACTIONS(2034), + [anon_sym_override] = ACTIONS(2034), + [anon_sym_module] = ACTIONS(2034), + [anon_sym_any] = ACTIONS(2034), + [anon_sym_number] = ACTIONS(2034), + [anon_sym_boolean] = ACTIONS(2034), + [anon_sym_string] = ACTIONS(2034), + [anon_sym_symbol] = ACTIONS(2034), + [anon_sym_object] = ACTIONS(2034), [sym_html_comment] = ACTIONS(5), }, [322] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2348), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5873), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(2039), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2230), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_sequence_expression] = STATE(5751), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_RPAREN] = ACTIONS(2050), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [323] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2307), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5935), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(2041), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2232), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_sequence_expression] = STATE(5800), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_RPAREN] = ACTIONS(2052), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [324] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2241), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5746), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(2043), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2233), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_sequence_expression] = STATE(5810), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_RPAREN] = ACTIONS(2054), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [325] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2349), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5876), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(2045), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2235), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_sequence_expression] = STATE(5840), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_RPAREN] = ACTIONS(2056), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [326] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1390), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5070), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5070), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1390), - [sym_subscript_expression] = STATE(1390), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5070), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1390), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(2047), - [anon_sym_export] = ACTIONS(2049), - [anon_sym_type] = ACTIONS(2049), - [anon_sym_namespace] = ACTIONS(2051), - [anon_sym_LBRACE] = ACTIONS(1815), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_var] = ACTIONS(2053), - [anon_sym_let] = ACTIONS(2055), - [anon_sym_const] = ACTIONS(2057), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1823), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2059), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2061), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(2063), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2049), - [anon_sym_readonly] = ACTIONS(2049), - [anon_sym_get] = ACTIONS(2049), - [anon_sym_set] = ACTIONS(2049), - [anon_sym_declare] = ACTIONS(2049), - [anon_sym_public] = ACTIONS(2049), - [anon_sym_private] = ACTIONS(2049), - [anon_sym_protected] = ACTIONS(2049), - [anon_sym_override] = ACTIONS(2049), - [anon_sym_module] = ACTIONS(2049), - [anon_sym_any] = ACTIONS(2049), - [anon_sym_number] = ACTIONS(2049), - [anon_sym_boolean] = ACTIONS(2049), - [anon_sym_string] = ACTIONS(2049), - [anon_sym_symbol] = ACTIONS(2049), - [anon_sym_object] = ACTIONS(2049), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2340), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_sequence_expression] = STATE(5855), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_RPAREN] = ACTIONS(2058), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [327] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2234), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5669), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(2065), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2342), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_sequence_expression] = STATE(5859), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_RPAREN] = ACTIONS(2060), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [328] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2075), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5740), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2343), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_sequence_expression] = STATE(5861), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [329] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2238), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5708), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(2069), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2344), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_sequence_expression] = STATE(5864), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_RPAREN] = ACTIONS(2064), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [330] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2333), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5785), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3644), + [sym_statement_block] = STATE(1622), + [sym_parenthesized_expression] = STATE(1375), + [sym_expression] = STATE(2244), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5782), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5782), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5907), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1375), + [sym_subscript_expression] = STATE(1375), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5782), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1375), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, [331] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1936), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_sequence_expression] = STATE(5454), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), + [sym_import] = STATE(3555), + [sym_statement_block] = STATE(2199), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1319), + [anon_sym_type] = ACTIONS(1319), + [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(2068), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1319), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_readonly] = ACTIONS(1319), + [anon_sym_get] = ACTIONS(1319), + [anon_sym_set] = ACTIONS(1319), + [anon_sym_declare] = ACTIONS(1319), + [anon_sym_public] = ACTIONS(1319), + [anon_sym_private] = ACTIONS(1319), + [anon_sym_protected] = ACTIONS(1319), + [anon_sym_override] = ACTIONS(1319), + [anon_sym_module] = ACTIONS(1319), + [anon_sym_any] = ACTIONS(1319), + [anon_sym_number] = ACTIONS(1319), + [anon_sym_boolean] = ACTIONS(1319), + [anon_sym_string] = ACTIONS(1319), + [anon_sym_symbol] = ACTIONS(1319), + [anon_sym_object] = ACTIONS(1319), [sym_html_comment] = ACTIONS(5), }, [332] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1696), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1702), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(2071), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(1791), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_sequence_expression] = STATE(5584), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [333] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1642), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2506), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(2073), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [sym_import] = STATE(3555), + [sym_statement_block] = STATE(2096), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1833), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1319), + [anon_sym_type] = ACTIONS(1319), + [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(2068), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1319), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_readonly] = ACTIONS(1319), + [anon_sym_get] = ACTIONS(1319), + [anon_sym_set] = ACTIONS(1319), + [anon_sym_declare] = ACTIONS(1319), + [anon_sym_public] = ACTIONS(1319), + [anon_sym_private] = ACTIONS(1319), + [anon_sym_protected] = ACTIONS(1319), + [anon_sym_override] = ACTIONS(1319), + [anon_sym_module] = ACTIONS(1319), + [anon_sym_any] = ACTIONS(1319), + [anon_sym_number] = ACTIONS(1319), + [anon_sym_boolean] = ACTIONS(1319), + [anon_sym_string] = ACTIONS(1319), + [anon_sym_symbol] = ACTIONS(1319), + [anon_sym_object] = ACTIONS(1319), [sym_html_comment] = ACTIONS(5), }, [334] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2304), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5902), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2336), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_sequence_expression] = STATE(5845), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [335] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1642), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2434), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(2073), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2337), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_sequence_expression] = STATE(5847), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [336] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1724), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2438), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(2073), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2059), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_sequence_expression] = STATE(5851), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [337] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1696), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2451), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(2073), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2339), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_sequence_expression] = STATE(5856), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [338] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1657), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2453), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(2073), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2341), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_sequence_expression] = STATE(5862), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [339] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1714), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2454), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(2073), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1406), + [sym_expression] = STATE(2482), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5918), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5918), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5764), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1406), + [sym_subscript_expression] = STATE(1406), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2954), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5918), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1406), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_mapped_type_clause] = STATE(5937), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(2070), + [anon_sym_export] = ACTIONS(2072), + [anon_sym_type] = ACTIONS(2072), + [anon_sym_namespace] = ACTIONS(2074), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1245), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(2072), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1231), + [anon_sym_yield] = ACTIONS(1233), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(2076), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2078), + [anon_sym_using] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_void] = ACTIONS(1245), + [anon_sym_delete] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1247), + [anon_sym_DASH_DASH] = ACTIONS(1247), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1249), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_readonly] = ACTIONS(2072), + [anon_sym_get] = ACTIONS(2072), + [anon_sym_set] = ACTIONS(2072), + [anon_sym_declare] = ACTIONS(2072), + [anon_sym_public] = ACTIONS(2072), + [anon_sym_private] = ACTIONS(2072), + [anon_sym_protected] = ACTIONS(2072), + [anon_sym_override] = ACTIONS(2072), + [anon_sym_module] = ACTIONS(2072), + [anon_sym_any] = ACTIONS(2072), + [anon_sym_number] = ACTIONS(2072), + [anon_sym_boolean] = ACTIONS(2072), + [anon_sym_string] = ACTIONS(2072), + [anon_sym_symbol] = ACTIONS(2072), + [anon_sym_object] = ACTIONS(2072), [sym_html_comment] = ACTIONS(5), }, [340] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1619), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2455), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(2073), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), + [sym_import] = STATE(3555), + [sym_statement_block] = STATE(2096), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(2150), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5596), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5596), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5594), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5596), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(2068), + [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1287), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_void] = ACTIONS(1297), + [anon_sym_delete] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1299), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1305), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), [sym_html_comment] = ACTIONS(5), }, [341] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1724), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2510), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(2073), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(1851), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_sequence_expression] = STATE(5786), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [342] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1696), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2523), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(2073), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [sym_import] = STATE(3555), + [sym_statement_block] = STATE(2226), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(2159), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5596), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5596), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5594), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5596), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(2068), + [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1287), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_void] = ACTIONS(1297), + [anon_sym_delete] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1299), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1305), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), [sym_html_comment] = ACTIONS(5), }, [343] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1657), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2525), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(2073), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2163), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_sequence_expression] = STATE(5640), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [344] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1714), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2526), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(2073), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [sym_import] = STATE(3555), + [sym_statement_block] = STATE(2199), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(2177), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5596), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5596), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5594), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5596), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(2068), + [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1287), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_void] = ACTIONS(1297), + [anon_sym_delete] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1299), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1305), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), [sym_html_comment] = ACTIONS(5), }, [345] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1619), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2527), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(2073), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [sym_import] = STATE(3644), + [sym_statement_block] = STATE(1622), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(1623), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [346] = { - [sym_import] = STATE(3760), - [sym_statement_block] = STATE(2183), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1821), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(2075), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), - [anon_sym_BANG] = ACTIONS(33), + [sym_import] = STATE(3555), + [sym_statement_block] = STATE(2098), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(2180), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5596), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5596), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5594), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5596), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(2068), + [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1287), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_void] = ACTIONS(1297), + [anon_sym_delete] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1299), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1305), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), [sym_html_comment] = ACTIONS(5), }, [347] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1724), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1672), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(2071), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3555), + [sym_statement_block] = STATE(2100), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(2181), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5596), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5596), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5594), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5596), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(2068), + [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1287), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_void] = ACTIONS(1297), + [anon_sym_delete] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1299), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1305), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), [sym_html_comment] = ACTIONS(5), }, [348] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2198), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5814), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3555), + [sym_statement_block] = STATE(2104), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(2182), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5596), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5596), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5594), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5596), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(2068), + [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1287), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_void] = ACTIONS(1297), + [anon_sym_delete] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1299), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1305), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), [sym_html_comment] = ACTIONS(5), }, [349] = { - [sym_import] = STATE(3760), - [sym_statement_block] = STATE(2183), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2135), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(2075), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(2028), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_sequence_expression] = STATE(5341), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1319), + [anon_sym_type] = ACTIONS(1319), + [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1319), + [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_readonly] = ACTIONS(1319), + [anon_sym_get] = ACTIONS(1319), + [anon_sym_set] = ACTIONS(1319), + [anon_sym_declare] = ACTIONS(1319), + [anon_sym_public] = ACTIONS(1319), + [anon_sym_private] = ACTIONS(1319), + [anon_sym_protected] = ACTIONS(1319), + [anon_sym_override] = ACTIONS(1319), + [anon_sym_module] = ACTIONS(1319), + [anon_sym_any] = ACTIONS(1319), + [anon_sym_number] = ACTIONS(1319), + [anon_sym_boolean] = ACTIONS(1319), + [anon_sym_string] = ACTIONS(1319), + [anon_sym_symbol] = ACTIONS(1319), + [anon_sym_object] = ACTIONS(1319), [sym_html_comment] = ACTIONS(5), }, [350] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2505), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_mapped_type_clause] = STATE(5612), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(2077), - [anon_sym_export] = ACTIONS(2079), - [anon_sym_type] = ACTIONS(2079), - [anon_sym_namespace] = ACTIONS(2081), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2079), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2083), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2085), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2079), - [anon_sym_readonly] = ACTIONS(2079), - [anon_sym_get] = ACTIONS(2079), - [anon_sym_set] = ACTIONS(2079), - [anon_sym_declare] = ACTIONS(2079), - [anon_sym_public] = ACTIONS(2079), - [anon_sym_private] = ACTIONS(2079), - [anon_sym_protected] = ACTIONS(2079), - [anon_sym_override] = ACTIONS(2079), - [anon_sym_module] = ACTIONS(2079), - [anon_sym_any] = ACTIONS(2079), - [anon_sym_number] = ACTIONS(2079), - [anon_sym_boolean] = ACTIONS(2079), - [anon_sym_string] = ACTIONS(2079), - [anon_sym_symbol] = ACTIONS(2079), - [anon_sym_object] = ACTIONS(2079), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2186), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_sequence_expression] = STATE(5758), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [351] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2178), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5719), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2107), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_sequence_expression] = STATE(5677), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [352] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2220), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5706), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1365), + [sym_expression] = STATE(2062), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5873), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5873), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5780), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1365), + [sym_subscript_expression] = STATE(1365), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2990), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5873), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1365), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym__extends_clause_single] = STATE(4769), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1109), + [anon_sym_type] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1135), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1109), + [anon_sym_BANG] = ACTIONS(1117), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1119), + [anon_sym_yield] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1125), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1117), + [anon_sym_void] = ACTIONS(1135), + [anon_sym_delete] = ACTIONS(1135), + [anon_sym_PLUS_PLUS] = ACTIONS(1137), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1143), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1109), + [anon_sym_readonly] = ACTIONS(1109), + [anon_sym_get] = ACTIONS(1109), + [anon_sym_set] = ACTIONS(1109), + [anon_sym_declare] = ACTIONS(1109), + [anon_sym_public] = ACTIONS(1109), + [anon_sym_private] = ACTIONS(1109), + [anon_sym_protected] = ACTIONS(1109), + [anon_sym_override] = ACTIONS(1109), + [anon_sym_module] = ACTIONS(1109), + [anon_sym_any] = ACTIONS(1109), + [anon_sym_number] = ACTIONS(1109), + [anon_sym_boolean] = ACTIONS(1109), + [anon_sym_string] = ACTIONS(1109), + [anon_sym_symbol] = ACTIONS(1109), + [anon_sym_object] = ACTIONS(1109), [sym_html_comment] = ACTIONS(5), }, [353] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5651), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3644), + [sym_statement_block] = STATE(1622), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2486), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(2080), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), [sym_html_comment] = ACTIONS(5), }, [354] = { - [sym_import] = STATE(3760), - [sym_statement_block] = STATE(2183), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(2075), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [sym_import] = STATE(3644), + [sym_statement_block] = STATE(1655), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2492), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(2080), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), [sym_html_comment] = ACTIONS(5), }, [355] = { - [sym_import] = STATE(3760), - [sym_statement_block] = STATE(2228), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2143), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(2075), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), + [sym_import] = STATE(3644), + [sym_statement_block] = STATE(1685), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2505), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(2080), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), [sym_html_comment] = ACTIONS(5), }, [356] = { - [sym_import] = STATE(3760), - [sym_statement_block] = STATE(2228), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1829), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(2075), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [sym_import] = STATE(3644), + [sym_statement_block] = STATE(1714), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2508), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(2080), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), [sym_html_comment] = ACTIONS(5), }, [357] = { - [sym_import] = STATE(3760), - [sym_statement_block] = STATE(2195), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1842), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(2075), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [sym_import] = STATE(3644), + [sym_statement_block] = STATE(1719), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2509), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(2080), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), [sym_html_comment] = ACTIONS(5), }, [358] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1642), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2031), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(2071), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [sym_import] = STATE(3644), + [sym_statement_block] = STATE(1721), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2510), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(2080), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), [sym_html_comment] = ACTIONS(5), }, [359] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1724), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2035), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(2071), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [sym_import] = STATE(3644), + [sym_statement_block] = STATE(1655), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(1656), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [360] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2147), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5676), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3555), + [sym_statement_block] = STATE(2096), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(1852), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5881), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(2068), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, [361] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1696), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2048), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(2071), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [sym_import] = STATE(3555), + [sym_statement_block] = STATE(2226), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(1846), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5881), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(2068), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, [362] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1657), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2050), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(2071), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [sym_import] = STATE(3555), + [sym_statement_block] = STATE(2199), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(1803), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5881), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(2068), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, [363] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1714), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2051), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(2071), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [sym_import] = STATE(3555), + [sym_statement_block] = STATE(2098), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5881), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(2068), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, [364] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1619), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2052), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(2071), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [sym_import] = STATE(3555), + [sym_statement_block] = STATE(2100), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(1773), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5881), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(2068), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, [365] = { - [sym_import] = STATE(3760), - [sym_statement_block] = STATE(2121), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1844), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(2075), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), + [sym_import] = STATE(3555), + [sym_statement_block] = STATE(2104), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(1779), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5881), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(2068), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, [366] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2174), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5982), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3644), + [sym_statement_block] = STATE(1655), + [sym_parenthesized_expression] = STATE(1375), + [sym_expression] = STATE(2248), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5782), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5782), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5907), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1375), + [sym_subscript_expression] = STATE(1375), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5782), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1375), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, [367] = { - [sym_import] = STATE(3760), - [sym_statement_block] = STATE(2124), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1845), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(2075), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [sym_import] = STATE(3644), + [sym_statement_block] = STATE(1685), + [sym_parenthesized_expression] = STATE(1375), + [sym_expression] = STATE(2261), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5782), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5782), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5907), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1375), + [sym_subscript_expression] = STATE(1375), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5782), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1375), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, [368] = { - [sym_import] = STATE(3760), - [sym_statement_block] = STATE(2126), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1846), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(2075), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [sym_import] = STATE(3644), + [sym_statement_block] = STATE(1714), + [sym_parenthesized_expression] = STATE(1375), + [sym_expression] = STATE(2263), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5782), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5782), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5907), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1375), + [sym_subscript_expression] = STATE(1375), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5782), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1375), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, [369] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2200), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5615), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3644), + [sym_statement_block] = STATE(1719), + [sym_parenthesized_expression] = STATE(1375), + [sym_expression] = STATE(2264), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5782), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5782), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5907), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1375), + [sym_subscript_expression] = STATE(1375), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5782), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1375), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, [370] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1619), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1620), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(2071), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2283), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_sequence_expression] = STATE(5777), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [371] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2233), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5629), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3644), + [sym_statement_block] = STATE(1685), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(1687), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [372] = { - [sym_import] = STATE(3760), - [sym_statement_block] = STATE(2195), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2160), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(2075), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), + [sym_import] = STATE(3644), + [sym_statement_block] = STATE(1622), + [sym_parenthesized_expression] = STATE(1406), + [sym_expression] = STATE(2414), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5918), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5918), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5764), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1406), + [sym_subscript_expression] = STATE(1406), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2954), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5918), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1406), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1223), + [anon_sym_type] = ACTIONS(1223), + [anon_sym_namespace] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(1245), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1223), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1231), + [anon_sym_yield] = ACTIONS(1233), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1235), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_void] = ACTIONS(1245), + [anon_sym_delete] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1247), + [anon_sym_DASH_DASH] = ACTIONS(1247), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1249), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1223), + [anon_sym_readonly] = ACTIONS(1223), + [anon_sym_get] = ACTIONS(1223), + [anon_sym_set] = ACTIONS(1223), + [anon_sym_declare] = ACTIONS(1223), + [anon_sym_public] = ACTIONS(1223), + [anon_sym_private] = ACTIONS(1223), + [anon_sym_protected] = ACTIONS(1223), + [anon_sym_override] = ACTIONS(1223), + [anon_sym_module] = ACTIONS(1223), + [anon_sym_any] = ACTIONS(1223), + [anon_sym_number] = ACTIONS(1223), + [anon_sym_boolean] = ACTIONS(1223), + [anon_sym_string] = ACTIONS(1223), + [anon_sym_symbol] = ACTIONS(1223), + [anon_sym_object] = ACTIONS(1223), [sym_html_comment] = ACTIONS(5), }, [373] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2243), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5796), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3644), + [sym_statement_block] = STATE(1655), + [sym_parenthesized_expression] = STATE(1406), + [sym_expression] = STATE(2418), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5918), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5918), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5764), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1406), + [sym_subscript_expression] = STATE(1406), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2954), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5918), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1406), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1223), + [anon_sym_type] = ACTIONS(1223), + [anon_sym_namespace] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(1245), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1223), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1231), + [anon_sym_yield] = ACTIONS(1233), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1235), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_void] = ACTIONS(1245), + [anon_sym_delete] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1247), + [anon_sym_DASH_DASH] = ACTIONS(1247), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1249), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1223), + [anon_sym_readonly] = ACTIONS(1223), + [anon_sym_get] = ACTIONS(1223), + [anon_sym_set] = ACTIONS(1223), + [anon_sym_declare] = ACTIONS(1223), + [anon_sym_public] = ACTIONS(1223), + [anon_sym_private] = ACTIONS(1223), + [anon_sym_protected] = ACTIONS(1223), + [anon_sym_override] = ACTIONS(1223), + [anon_sym_module] = ACTIONS(1223), + [anon_sym_any] = ACTIONS(1223), + [anon_sym_number] = ACTIONS(1223), + [anon_sym_boolean] = ACTIONS(1223), + [anon_sym_string] = ACTIONS(1223), + [anon_sym_symbol] = ACTIONS(1223), + [anon_sym_object] = ACTIONS(1223), [sym_html_comment] = ACTIONS(5), }, [374] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2330), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5603), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3644), + [sym_statement_block] = STATE(1685), + [sym_parenthesized_expression] = STATE(1406), + [sym_expression] = STATE(2431), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5918), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5918), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5764), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1406), + [sym_subscript_expression] = STATE(1406), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2954), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5918), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1406), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1223), + [anon_sym_type] = ACTIONS(1223), + [anon_sym_namespace] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(1245), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1223), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1231), + [anon_sym_yield] = ACTIONS(1233), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1235), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_void] = ACTIONS(1245), + [anon_sym_delete] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1247), + [anon_sym_DASH_DASH] = ACTIONS(1247), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1249), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1223), + [anon_sym_readonly] = ACTIONS(1223), + [anon_sym_get] = ACTIONS(1223), + [anon_sym_set] = ACTIONS(1223), + [anon_sym_declare] = ACTIONS(1223), + [anon_sym_public] = ACTIONS(1223), + [anon_sym_private] = ACTIONS(1223), + [anon_sym_protected] = ACTIONS(1223), + [anon_sym_override] = ACTIONS(1223), + [anon_sym_module] = ACTIONS(1223), + [anon_sym_any] = ACTIONS(1223), + [anon_sym_number] = ACTIONS(1223), + [anon_sym_boolean] = ACTIONS(1223), + [anon_sym_string] = ACTIONS(1223), + [anon_sym_symbol] = ACTIONS(1223), + [anon_sym_object] = ACTIONS(1223), [sym_html_comment] = ACTIONS(5), }, [375] = { - [sym_import] = STATE(3760), - [sym_statement_block] = STATE(2228), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1772), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(2075), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [sym_import] = STATE(3644), + [sym_statement_block] = STATE(1714), + [sym_parenthesized_expression] = STATE(1406), + [sym_expression] = STATE(2433), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5918), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5918), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5764), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1406), + [sym_subscript_expression] = STATE(1406), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2954), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5918), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1406), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1223), + [anon_sym_type] = ACTIONS(1223), + [anon_sym_namespace] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(1245), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1223), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1231), + [anon_sym_yield] = ACTIONS(1233), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1235), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_void] = ACTIONS(1245), + [anon_sym_delete] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1247), + [anon_sym_DASH_DASH] = ACTIONS(1247), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1249), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1223), + [anon_sym_readonly] = ACTIONS(1223), + [anon_sym_get] = ACTIONS(1223), + [anon_sym_set] = ACTIONS(1223), + [anon_sym_declare] = ACTIONS(1223), + [anon_sym_public] = ACTIONS(1223), + [anon_sym_private] = ACTIONS(1223), + [anon_sym_protected] = ACTIONS(1223), + [anon_sym_override] = ACTIONS(1223), + [anon_sym_module] = ACTIONS(1223), + [anon_sym_any] = ACTIONS(1223), + [anon_sym_number] = ACTIONS(1223), + [anon_sym_boolean] = ACTIONS(1223), + [anon_sym_string] = ACTIONS(1223), + [anon_sym_symbol] = ACTIONS(1223), + [anon_sym_object] = ACTIONS(1223), [sym_html_comment] = ACTIONS(5), }, [376] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2201), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5652), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3644), + [sym_statement_block] = STATE(1719), + [sym_parenthesized_expression] = STATE(1406), + [sym_expression] = STATE(2434), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5918), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5918), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5764), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1406), + [sym_subscript_expression] = STATE(1406), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2954), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5918), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1406), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1223), + [anon_sym_type] = ACTIONS(1223), + [anon_sym_namespace] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(1245), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1223), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1231), + [anon_sym_yield] = ACTIONS(1233), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1235), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_void] = ACTIONS(1245), + [anon_sym_delete] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1247), + [anon_sym_DASH_DASH] = ACTIONS(1247), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1249), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1223), + [anon_sym_readonly] = ACTIONS(1223), + [anon_sym_get] = ACTIONS(1223), + [anon_sym_set] = ACTIONS(1223), + [anon_sym_declare] = ACTIONS(1223), + [anon_sym_public] = ACTIONS(1223), + [anon_sym_private] = ACTIONS(1223), + [anon_sym_protected] = ACTIONS(1223), + [anon_sym_override] = ACTIONS(1223), + [anon_sym_module] = ACTIONS(1223), + [anon_sym_any] = ACTIONS(1223), + [anon_sym_number] = ACTIONS(1223), + [anon_sym_boolean] = ACTIONS(1223), + [anon_sym_string] = ACTIONS(1223), + [anon_sym_symbol] = ACTIONS(1223), + [anon_sym_object] = ACTIONS(1223), [sym_html_comment] = ACTIONS(5), }, [377] = { - [sym_import] = STATE(3760), - [sym_statement_block] = STATE(2121), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1809), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(2075), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [sym_import] = STATE(3644), + [sym_statement_block] = STATE(1721), + [sym_parenthesized_expression] = STATE(1406), + [sym_expression] = STATE(2435), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5918), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5918), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5764), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1406), + [sym_subscript_expression] = STATE(1406), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2954), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5918), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1406), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1223), + [anon_sym_type] = ACTIONS(1223), + [anon_sym_namespace] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(1245), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1223), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1231), + [anon_sym_yield] = ACTIONS(1233), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1235), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_void] = ACTIONS(1245), + [anon_sym_delete] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1247), + [anon_sym_DASH_DASH] = ACTIONS(1247), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1249), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1223), + [anon_sym_readonly] = ACTIONS(1223), + [anon_sym_get] = ACTIONS(1223), + [anon_sym_set] = ACTIONS(1223), + [anon_sym_declare] = ACTIONS(1223), + [anon_sym_public] = ACTIONS(1223), + [anon_sym_private] = ACTIONS(1223), + [anon_sym_protected] = ACTIONS(1223), + [anon_sym_override] = ACTIONS(1223), + [anon_sym_module] = ACTIONS(1223), + [anon_sym_any] = ACTIONS(1223), + [anon_sym_number] = ACTIONS(1223), + [anon_sym_boolean] = ACTIONS(1223), + [anon_sym_string] = ACTIONS(1223), + [anon_sym_symbol] = ACTIONS(1223), + [anon_sym_object] = ACTIONS(1223), [sym_html_comment] = ACTIONS(5), }, [378] = { - [sym_import] = STATE(3760), - [sym_statement_block] = STATE(2121), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2162), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(2075), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1406), + [sym_expression] = STATE(2482), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5918), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5918), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5764), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1406), + [sym_subscript_expression] = STATE(1406), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2954), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5918), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1406), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_mapped_type_clause] = STATE(5583), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(2082), + [anon_sym_export] = ACTIONS(2084), + [anon_sym_type] = ACTIONS(2084), + [anon_sym_namespace] = ACTIONS(2086), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1245), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(2084), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1231), + [anon_sym_yield] = ACTIONS(1233), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(2088), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2090), + [anon_sym_using] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_void] = ACTIONS(1245), + [anon_sym_delete] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1247), + [anon_sym_DASH_DASH] = ACTIONS(1247), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1249), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2084), + [anon_sym_readonly] = ACTIONS(2084), + [anon_sym_get] = ACTIONS(2084), + [anon_sym_set] = ACTIONS(2084), + [anon_sym_declare] = ACTIONS(2084), + [anon_sym_public] = ACTIONS(2084), + [anon_sym_private] = ACTIONS(2084), + [anon_sym_protected] = ACTIONS(2084), + [anon_sym_override] = ACTIONS(2084), + [anon_sym_module] = ACTIONS(2084), + [anon_sym_any] = ACTIONS(2084), + [anon_sym_number] = ACTIONS(2084), + [anon_sym_boolean] = ACTIONS(2084), + [anon_sym_string] = ACTIONS(2084), + [anon_sym_symbol] = ACTIONS(2084), + [anon_sym_object] = ACTIONS(2084), [sym_html_comment] = ACTIONS(5), }, [379] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1642), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2249), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(2071), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [sym_import] = STATE(3644), + [sym_statement_block] = STATE(1714), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(1715), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [380] = { - [sym_import] = STATE(3760), - [sym_statement_block] = STATE(2124), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2163), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(2075), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), + [sym_import] = STATE(3644), + [sym_statement_block] = STATE(1719), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(1720), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [381] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1724), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2253), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(2071), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [sym_import] = STATE(3644), + [sym_statement_block] = STATE(1721), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(1722), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [382] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1696), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2266), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(2071), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [sym_import] = STATE(3644), + [sym_statement_block] = STATE(1622), + [sym_parenthesized_expression] = STATE(1382), + [sym_expression] = STATE(2446), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5929), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5929), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5928), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1382), + [sym_subscript_expression] = STATE(1382), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2964), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5929), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1382), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(2080), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), [sym_html_comment] = ACTIONS(5), }, [383] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1657), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2268), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(2071), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [sym_import] = STATE(3644), + [sym_statement_block] = STATE(1655), + [sym_parenthesized_expression] = STATE(1382), + [sym_expression] = STATE(2450), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5929), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5929), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5928), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1382), + [sym_subscript_expression] = STATE(1382), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2964), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5929), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1382), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(2080), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), [sym_html_comment] = ACTIONS(5), }, [384] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1714), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2269), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(2071), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [sym_import] = STATE(3644), + [sym_statement_block] = STATE(1685), + [sym_parenthesized_expression] = STATE(1382), + [sym_expression] = STATE(2463), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5929), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5929), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5928), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1382), + [sym_subscript_expression] = STATE(1382), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2964), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5929), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1382), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(2080), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), [sym_html_comment] = ACTIONS(5), }, [385] = { - [sym_import] = STATE(3760), - [sym_statement_block] = STATE(2195), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1788), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(2075), + [sym_import] = STATE(3644), + [sym_statement_block] = STATE(1714), + [sym_parenthesized_expression] = STATE(1382), + [sym_expression] = STATE(2465), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5929), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5929), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5928), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1382), + [sym_subscript_expression] = STATE(1382), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2964), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5929), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1382), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(2080), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [sym_html_comment] = ACTIONS(5), + }, + [386] = { + [sym_import] = STATE(3644), + [sym_statement_block] = STATE(1719), + [sym_parenthesized_expression] = STATE(1382), + [sym_expression] = STATE(2466), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5929), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5929), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5928), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1382), + [sym_subscript_expression] = STATE(1382), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2964), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5929), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1382), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(2080), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [sym_html_comment] = ACTIONS(5), + }, + [387] = { + [sym_import] = STATE(3644), + [sym_statement_block] = STATE(1721), + [sym_parenthesized_expression] = STATE(1382), + [sym_expression] = STATE(2467), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5929), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5929), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5928), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1382), + [sym_subscript_expression] = STATE(1382), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2964), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5929), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1382), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(2080), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [sym_html_comment] = ACTIONS(5), + }, + [388] = { + [sym_import] = STATE(3555), + [sym_statement_block] = STATE(2098), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1319), + [anon_sym_type] = ACTIONS(1319), + [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(2068), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1319), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), - [sym_html_comment] = ACTIONS(5), - }, - [386] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1619), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2270), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(2071), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), - [sym_html_comment] = ACTIONS(5), - }, - [387] = { - [sym_import] = STATE(3760), - [sym_statement_block] = STATE(2126), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2164), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(2075), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), - [sym_html_comment] = ACTIONS(5), - }, - [388] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2505), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_mapped_type_clause] = STATE(5882), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(2087), - [anon_sym_export] = ACTIONS(2089), - [anon_sym_type] = ACTIONS(2089), - [anon_sym_namespace] = ACTIONS(2091), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2089), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2093), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2095), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2089), - [anon_sym_readonly] = ACTIONS(2089), - [anon_sym_get] = ACTIONS(2089), - [anon_sym_set] = ACTIONS(2089), - [anon_sym_declare] = ACTIONS(2089), - [anon_sym_public] = ACTIONS(2089), - [anon_sym_private] = ACTIONS(2089), - [anon_sym_protected] = ACTIONS(2089), - [anon_sym_override] = ACTIONS(2089), - [anon_sym_module] = ACTIONS(2089), - [anon_sym_any] = ACTIONS(2089), - [anon_sym_number] = ACTIONS(2089), - [anon_sym_boolean] = ACTIONS(2089), - [anon_sym_string] = ACTIONS(2089), - [anon_sym_symbol] = ACTIONS(2089), - [anon_sym_object] = ACTIONS(2089), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_readonly] = ACTIONS(1319), + [anon_sym_get] = ACTIONS(1319), + [anon_sym_set] = ACTIONS(1319), + [anon_sym_declare] = ACTIONS(1319), + [anon_sym_public] = ACTIONS(1319), + [anon_sym_private] = ACTIONS(1319), + [anon_sym_protected] = ACTIONS(1319), + [anon_sym_override] = ACTIONS(1319), + [anon_sym_module] = ACTIONS(1319), + [anon_sym_any] = ACTIONS(1319), + [anon_sym_number] = ACTIONS(1319), + [anon_sym_boolean] = ACTIONS(1319), + [anon_sym_string] = ACTIONS(1319), + [anon_sym_symbol] = ACTIONS(1319), + [anon_sym_object] = ACTIONS(1319), [sym_html_comment] = ACTIONS(5), }, [389] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1642), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1699), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(2071), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), - [sym_html_comment] = ACTIONS(5), - }, - [390] = { - [sym_import] = STATE(3760), - [sym_statement_block] = STATE(2124), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1856), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(2075), + [sym_import] = STATE(3555), + [sym_statement_block] = STATE(2100), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1807), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1319), + [anon_sym_type] = ACTIONS(1319), + [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(2068), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1319), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_readonly] = ACTIONS(1319), + [anon_sym_get] = ACTIONS(1319), + [anon_sym_set] = ACTIONS(1319), + [anon_sym_declare] = ACTIONS(1319), + [anon_sym_public] = ACTIONS(1319), + [anon_sym_private] = ACTIONS(1319), + [anon_sym_protected] = ACTIONS(1319), + [anon_sym_override] = ACTIONS(1319), + [anon_sym_module] = ACTIONS(1319), + [anon_sym_any] = ACTIONS(1319), + [anon_sym_number] = ACTIONS(1319), + [anon_sym_boolean] = ACTIONS(1319), + [anon_sym_string] = ACTIONS(1319), + [anon_sym_symbol] = ACTIONS(1319), + [anon_sym_object] = ACTIONS(1319), [sym_html_comment] = ACTIONS(5), }, - [391] = { - [sym_import] = STATE(3760), - [sym_statement_block] = STATE(2126), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1811), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(2075), + [390] = { + [sym_import] = STATE(3555), + [sym_statement_block] = STATE(2104), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1809), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1319), + [anon_sym_type] = ACTIONS(1319), + [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(2068), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1319), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_readonly] = ACTIONS(1319), + [anon_sym_get] = ACTIONS(1319), + [anon_sym_set] = ACTIONS(1319), + [anon_sym_declare] = ACTIONS(1319), + [anon_sym_public] = ACTIONS(1319), + [anon_sym_private] = ACTIONS(1319), + [anon_sym_protected] = ACTIONS(1319), + [anon_sym_override] = ACTIONS(1319), + [anon_sym_module] = ACTIONS(1319), + [anon_sym_any] = ACTIONS(1319), + [anon_sym_number] = ACTIONS(1319), + [anon_sym_boolean] = ACTIONS(1319), + [anon_sym_string] = ACTIONS(1319), + [anon_sym_symbol] = ACTIONS(1319), + [anon_sym_object] = ACTIONS(1319), + [sym_html_comment] = ACTIONS(5), + }, + [391] = { + [sym_import] = STATE(3644), + [sym_statement_block] = STATE(1622), + [sym_parenthesized_expression] = STATE(1365), + [sym_expression] = STATE(2030), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5873), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5873), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5780), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1365), + [sym_subscript_expression] = STATE(1365), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2990), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5873), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1365), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1109), + [anon_sym_type] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(1135), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1109), + [anon_sym_BANG] = ACTIONS(1117), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1119), + [anon_sym_yield] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1125), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1117), + [anon_sym_void] = ACTIONS(1135), + [anon_sym_delete] = ACTIONS(1135), + [anon_sym_PLUS_PLUS] = ACTIONS(1137), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1143), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1109), + [anon_sym_readonly] = ACTIONS(1109), + [anon_sym_get] = ACTIONS(1109), + [anon_sym_set] = ACTIONS(1109), + [anon_sym_declare] = ACTIONS(1109), + [anon_sym_public] = ACTIONS(1109), + [anon_sym_private] = ACTIONS(1109), + [anon_sym_protected] = ACTIONS(1109), + [anon_sym_override] = ACTIONS(1109), + [anon_sym_module] = ACTIONS(1109), + [anon_sym_any] = ACTIONS(1109), + [anon_sym_number] = ACTIONS(1109), + [anon_sym_boolean] = ACTIONS(1109), + [anon_sym_string] = ACTIONS(1109), + [anon_sym_symbol] = ACTIONS(1109), + [anon_sym_object] = ACTIONS(1109), [sym_html_comment] = ACTIONS(5), }, [392] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1657), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1674), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(2071), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3644), + [sym_statement_block] = STATE(1655), + [sym_parenthesized_expression] = STATE(1365), + [sym_expression] = STATE(2034), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5873), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5873), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5780), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1365), + [sym_subscript_expression] = STATE(1365), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2990), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5873), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1365), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1109), + [anon_sym_type] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(1135), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1109), + [anon_sym_BANG] = ACTIONS(1117), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1119), + [anon_sym_yield] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1125), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1117), + [anon_sym_void] = ACTIONS(1135), + [anon_sym_delete] = ACTIONS(1135), + [anon_sym_PLUS_PLUS] = ACTIONS(1137), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1143), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1109), + [anon_sym_readonly] = ACTIONS(1109), + [anon_sym_get] = ACTIONS(1109), + [anon_sym_set] = ACTIONS(1109), + [anon_sym_declare] = ACTIONS(1109), + [anon_sym_public] = ACTIONS(1109), + [anon_sym_private] = ACTIONS(1109), + [anon_sym_protected] = ACTIONS(1109), + [anon_sym_override] = ACTIONS(1109), + [anon_sym_module] = ACTIONS(1109), + [anon_sym_any] = ACTIONS(1109), + [anon_sym_number] = ACTIONS(1109), + [anon_sym_boolean] = ACTIONS(1109), + [anon_sym_string] = ACTIONS(1109), + [anon_sym_symbol] = ACTIONS(1109), + [anon_sym_object] = ACTIONS(1109), [sym_html_comment] = ACTIONS(5), }, [393] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2167), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5673), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3644), + [sym_statement_block] = STATE(1685), + [sym_parenthesized_expression] = STATE(1365), + [sym_expression] = STATE(2047), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5873), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5873), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5780), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1365), + [sym_subscript_expression] = STATE(1365), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2990), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5873), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1365), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1109), + [anon_sym_type] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(1135), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1109), + [anon_sym_BANG] = ACTIONS(1117), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1119), + [anon_sym_yield] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1125), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1117), + [anon_sym_void] = ACTIONS(1135), + [anon_sym_delete] = ACTIONS(1135), + [anon_sym_PLUS_PLUS] = ACTIONS(1137), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1143), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1109), + [anon_sym_readonly] = ACTIONS(1109), + [anon_sym_get] = ACTIONS(1109), + [anon_sym_set] = ACTIONS(1109), + [anon_sym_declare] = ACTIONS(1109), + [anon_sym_public] = ACTIONS(1109), + [anon_sym_private] = ACTIONS(1109), + [anon_sym_protected] = ACTIONS(1109), + [anon_sym_override] = ACTIONS(1109), + [anon_sym_module] = ACTIONS(1109), + [anon_sym_any] = ACTIONS(1109), + [anon_sym_number] = ACTIONS(1109), + [anon_sym_boolean] = ACTIONS(1109), + [anon_sym_string] = ACTIONS(1109), + [anon_sym_symbol] = ACTIONS(1109), + [anon_sym_object] = ACTIONS(1109), [sym_html_comment] = ACTIONS(5), }, [394] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1812), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5892), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3644), + [sym_statement_block] = STATE(1714), + [sym_parenthesized_expression] = STATE(1365), + [sym_expression] = STATE(2049), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5873), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5873), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5780), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1365), + [sym_subscript_expression] = STATE(1365), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2990), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5873), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1365), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1109), + [anon_sym_type] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(1135), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1109), + [anon_sym_BANG] = ACTIONS(1117), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1119), + [anon_sym_yield] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1125), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1117), + [anon_sym_void] = ACTIONS(1135), + [anon_sym_delete] = ACTIONS(1135), + [anon_sym_PLUS_PLUS] = ACTIONS(1137), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1143), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1109), + [anon_sym_readonly] = ACTIONS(1109), + [anon_sym_get] = ACTIONS(1109), + [anon_sym_set] = ACTIONS(1109), + [anon_sym_declare] = ACTIONS(1109), + [anon_sym_public] = ACTIONS(1109), + [anon_sym_private] = ACTIONS(1109), + [anon_sym_protected] = ACTIONS(1109), + [anon_sym_override] = ACTIONS(1109), + [anon_sym_module] = ACTIONS(1109), + [anon_sym_any] = ACTIONS(1109), + [anon_sym_number] = ACTIONS(1109), + [anon_sym_boolean] = ACTIONS(1109), + [anon_sym_string] = ACTIONS(1109), + [anon_sym_symbol] = ACTIONS(1109), + [anon_sym_object] = ACTIONS(1109), [sym_html_comment] = ACTIONS(5), }, [395] = { - [sym_import] = STATE(3759), + [sym_import] = STATE(3644), + [sym_statement_block] = STATE(1719), [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2077), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), + [sym_expression] = STATE(2050), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5873), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5873), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5780), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), [sym_member_expression] = STATE(1365), [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2990), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5873), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym__extends_clause_single] = STATE(4856), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1109), + [anon_sym_type] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(1135), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1109), + [anon_sym_BANG] = ACTIONS(1117), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1119), + [anon_sym_yield] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1125), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1117), + [anon_sym_void] = ACTIONS(1135), + [anon_sym_delete] = ACTIONS(1135), + [anon_sym_PLUS_PLUS] = ACTIONS(1137), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1143), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1109), + [anon_sym_readonly] = ACTIONS(1109), + [anon_sym_get] = ACTIONS(1109), + [anon_sym_set] = ACTIONS(1109), + [anon_sym_declare] = ACTIONS(1109), + [anon_sym_public] = ACTIONS(1109), + [anon_sym_private] = ACTIONS(1109), + [anon_sym_protected] = ACTIONS(1109), + [anon_sym_override] = ACTIONS(1109), + [anon_sym_module] = ACTIONS(1109), + [anon_sym_any] = ACTIONS(1109), + [anon_sym_number] = ACTIONS(1109), + [anon_sym_boolean] = ACTIONS(1109), + [anon_sym_string] = ACTIONS(1109), + [anon_sym_symbol] = ACTIONS(1109), + [anon_sym_object] = ACTIONS(1109), [sym_html_comment] = ACTIONS(5), }, [396] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1642), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2469), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(2071), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [sym_import] = STATE(3644), + [sym_statement_block] = STATE(1721), + [sym_parenthesized_expression] = STATE(1365), + [sym_expression] = STATE(2051), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5873), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5873), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5780), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1365), + [sym_subscript_expression] = STATE(1365), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2990), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5873), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1365), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1109), + [anon_sym_type] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(1135), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1109), + [anon_sym_BANG] = ACTIONS(1117), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1119), + [anon_sym_yield] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1125), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1117), + [anon_sym_void] = ACTIONS(1135), + [anon_sym_delete] = ACTIONS(1135), + [anon_sym_PLUS_PLUS] = ACTIONS(1137), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1143), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1109), + [anon_sym_readonly] = ACTIONS(1109), + [anon_sym_get] = ACTIONS(1109), + [anon_sym_set] = ACTIONS(1109), + [anon_sym_declare] = ACTIONS(1109), + [anon_sym_public] = ACTIONS(1109), + [anon_sym_private] = ACTIONS(1109), + [anon_sym_protected] = ACTIONS(1109), + [anon_sym_override] = ACTIONS(1109), + [anon_sym_module] = ACTIONS(1109), + [anon_sym_any] = ACTIONS(1109), + [anon_sym_number] = ACTIONS(1109), + [anon_sym_boolean] = ACTIONS(1109), + [anon_sym_string] = ACTIONS(1109), + [anon_sym_symbol] = ACTIONS(1109), + [anon_sym_object] = ACTIONS(1109), [sym_html_comment] = ACTIONS(5), }, [397] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1724), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2477), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(2071), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2153), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_sequence_expression] = STATE(5792), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [398] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1696), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2367), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(2071), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1365), + [sym_expression] = STATE(2062), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5873), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5873), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5780), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1365), + [sym_subscript_expression] = STATE(1365), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2990), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5873), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1365), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym__extends_clause_single] = STATE(4474), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1109), + [anon_sym_type] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1135), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1109), + [anon_sym_BANG] = ACTIONS(1117), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1119), + [anon_sym_yield] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1125), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1117), + [anon_sym_void] = ACTIONS(1135), + [anon_sym_delete] = ACTIONS(1135), + [anon_sym_PLUS_PLUS] = ACTIONS(1137), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1143), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1109), + [anon_sym_readonly] = ACTIONS(1109), + [anon_sym_get] = ACTIONS(1109), + [anon_sym_set] = ACTIONS(1109), + [anon_sym_declare] = ACTIONS(1109), + [anon_sym_public] = ACTIONS(1109), + [anon_sym_private] = ACTIONS(1109), + [anon_sym_protected] = ACTIONS(1109), + [anon_sym_override] = ACTIONS(1109), + [anon_sym_module] = ACTIONS(1109), + [anon_sym_any] = ACTIONS(1109), + [anon_sym_number] = ACTIONS(1109), + [anon_sym_boolean] = ACTIONS(1109), + [anon_sym_string] = ACTIONS(1109), + [anon_sym_symbol] = ACTIONS(1109), + [anon_sym_object] = ACTIONS(1109), [sym_html_comment] = ACTIONS(5), }, [399] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1657), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2369), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(2071), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [sym_import] = STATE(3555), + [sym_statement_block] = STATE(2226), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1816), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1319), + [anon_sym_type] = ACTIONS(1319), + [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(2068), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1319), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_readonly] = ACTIONS(1319), + [anon_sym_get] = ACTIONS(1319), + [anon_sym_set] = ACTIONS(1319), + [anon_sym_declare] = ACTIONS(1319), + [anon_sym_public] = ACTIONS(1319), + [anon_sym_private] = ACTIONS(1319), + [anon_sym_protected] = ACTIONS(1319), + [anon_sym_override] = ACTIONS(1319), + [anon_sym_module] = ACTIONS(1319), + [anon_sym_any] = ACTIONS(1319), + [anon_sym_number] = ACTIONS(1319), + [anon_sym_boolean] = ACTIONS(1319), + [anon_sym_string] = ACTIONS(1319), + [anon_sym_symbol] = ACTIONS(1319), + [anon_sym_object] = ACTIONS(1319), [sym_html_comment] = ACTIONS(5), }, [400] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1714), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2370), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(2071), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2144), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_sequence_expression] = STATE(5894), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [401] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1619), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2371), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(2071), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2195), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_sequence_expression] = STATE(5678), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [402] = { - [sym_import] = STATE(3759), - [sym_statement_block] = STATE(1714), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1617), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(2071), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2196), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_sequence_expression] = STATE(5749), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [403] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2077), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym__extends_clause_single] = STATE(4572), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2197), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_sequence_expression] = STATE(5812), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [404] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2224), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_sequence_expression] = STATE(5994), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3644), + [sym_statement_block] = STATE(1721), + [sym_parenthesized_expression] = STATE(1375), + [sym_expression] = STATE(2265), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5782), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5782), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5907), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1375), + [sym_subscript_expression] = STATE(1375), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5782), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1375), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, [405] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1365), + [sym_expression] = STATE(2056), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5873), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5873), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5780), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1365), + [sym_subscript_expression] = STATE(1365), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2990), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5873), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1365), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1109), + [anon_sym_type] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1135), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1109), + [anon_sym_BANG] = ACTIONS(1117), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1119), + [anon_sym_yield] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1125), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1117), + [anon_sym_void] = ACTIONS(1135), + [anon_sym_delete] = ACTIONS(1135), + [anon_sym_PLUS_PLUS] = ACTIONS(1137), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1143), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1109), + [anon_sym_readonly] = ACTIONS(1109), + [anon_sym_get] = ACTIONS(1109), + [anon_sym_set] = ACTIONS(1109), + [anon_sym_declare] = ACTIONS(1109), + [anon_sym_public] = ACTIONS(1109), + [anon_sym_private] = ACTIONS(1109), + [anon_sym_protected] = ACTIONS(1109), + [anon_sym_override] = ACTIONS(1109), + [anon_sym_module] = ACTIONS(1109), + [anon_sym_any] = ACTIONS(1109), + [anon_sym_number] = ACTIONS(1109), + [anon_sym_boolean] = ACTIONS(1109), + [anon_sym_string] = ACTIONS(1109), + [anon_sym_symbol] = ACTIONS(1109), + [anon_sym_object] = ACTIONS(1109), [sym_html_comment] = ACTIONS(5), }, [406] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1969), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(3639), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(3639), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1273), + [sym_subscript_expression] = STATE(1273), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(3639), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1273), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(2092), + [anon_sym_export] = ACTIONS(2094), + [anon_sym_type] = ACTIONS(2094), + [anon_sym_namespace] = ACTIONS(2096), + [anon_sym_LBRACE] = ACTIONS(728), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(2094), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(2098), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2100), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(2102), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2094), + [anon_sym_readonly] = ACTIONS(2094), + [anon_sym_get] = ACTIONS(2094), + [anon_sym_set] = ACTIONS(2094), + [anon_sym_declare] = ACTIONS(2094), + [anon_sym_public] = ACTIONS(2094), + [anon_sym_private] = ACTIONS(2094), + [anon_sym_protected] = ACTIONS(2094), + [anon_sym_override] = ACTIONS(2094), + [anon_sym_module] = ACTIONS(2094), + [anon_sym_any] = ACTIONS(2094), + [anon_sym_number] = ACTIONS(2094), + [anon_sym_boolean] = ACTIONS(2094), + [anon_sym_string] = ACTIONS(2094), + [anon_sym_symbol] = ACTIONS(2094), + [anon_sym_object] = ACTIONS(2094), [sym_html_comment] = ACTIONS(5), }, [407] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1777), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2551), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), + [sym_html_comment] = ACTIONS(5), + }, + [408] = { + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1909), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1319), + [anon_sym_type] = ACTIONS(1319), + [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(695), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1319), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_readonly] = ACTIONS(1319), + [anon_sym_get] = ACTIONS(1319), + [anon_sym_set] = ACTIONS(1319), + [anon_sym_declare] = ACTIONS(1319), + [anon_sym_public] = ACTIONS(1319), + [anon_sym_private] = ACTIONS(1319), + [anon_sym_protected] = ACTIONS(1319), + [anon_sym_override] = ACTIONS(1319), + [anon_sym_module] = ACTIONS(1319), + [anon_sym_any] = ACTIONS(1319), + [anon_sym_number] = ACTIONS(1319), + [anon_sym_boolean] = ACTIONS(1319), + [anon_sym_string] = ACTIONS(1319), + [anon_sym_symbol] = ACTIONS(1319), + [anon_sym_object] = ACTIONS(1319), [sym_html_comment] = ACTIONS(5), }, - [408] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1778), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), + [409] = { + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2487), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), + [sym_html_comment] = ACTIONS(5), + }, + [410] = { + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2490), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), + [sym_html_comment] = ACTIONS(5), + }, + [411] = { + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2491), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), + [sym_html_comment] = ACTIONS(5), + }, + [412] = { + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1797), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1319), + [anon_sym_type] = ACTIONS(1319), + [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(695), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1319), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_readonly] = ACTIONS(1319), + [anon_sym_get] = ACTIONS(1319), + [anon_sym_set] = ACTIONS(1319), + [anon_sym_declare] = ACTIONS(1319), + [anon_sym_public] = ACTIONS(1319), + [anon_sym_private] = ACTIONS(1319), + [anon_sym_protected] = ACTIONS(1319), + [anon_sym_override] = ACTIONS(1319), + [anon_sym_module] = ACTIONS(1319), + [anon_sym_any] = ACTIONS(1319), + [anon_sym_number] = ACTIONS(1319), + [anon_sym_boolean] = ACTIONS(1319), + [anon_sym_string] = ACTIONS(1319), + [anon_sym_symbol] = ACTIONS(1319), + [anon_sym_object] = ACTIONS(1319), [sym_html_comment] = ACTIONS(5), }, - [409] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1779), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [413] = { + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2493), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), [sym_html_comment] = ACTIONS(5), }, - [410] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1780), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [414] = { + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2494), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), [sym_html_comment] = ACTIONS(5), }, - [411] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1783), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [415] = { + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), [sym_html_comment] = ACTIONS(5), }, - [412] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1784), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [416] = { + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2496), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), [sym_html_comment] = ACTIONS(5), }, - [413] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1785), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [417] = { + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2497), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), [sym_html_comment] = ACTIONS(5), }, - [414] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1786), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), + [418] = { + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2498), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), + [sym_html_comment] = ACTIONS(5), + }, + [419] = { + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2499), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), + [sym_html_comment] = ACTIONS(5), + }, + [420] = { + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2500), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), + [sym_html_comment] = ACTIONS(5), + }, + [421] = { + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2501), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), + [sym_html_comment] = ACTIONS(5), + }, + [422] = { + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2502), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), + [sym_html_comment] = ACTIONS(5), + }, + [423] = { + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2503), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), + [sym_html_comment] = ACTIONS(5), + }, + [424] = { + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2504), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), + [sym_html_comment] = ACTIONS(5), + }, + [425] = { + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1771), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1319), + [anon_sym_type] = ACTIONS(1319), + [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(695), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1319), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_readonly] = ACTIONS(1319), + [anon_sym_get] = ACTIONS(1319), + [anon_sym_set] = ACTIONS(1319), + [anon_sym_declare] = ACTIONS(1319), + [anon_sym_public] = ACTIONS(1319), + [anon_sym_private] = ACTIONS(1319), + [anon_sym_protected] = ACTIONS(1319), + [anon_sym_override] = ACTIONS(1319), + [anon_sym_module] = ACTIONS(1319), + [anon_sym_any] = ACTIONS(1319), + [anon_sym_number] = ACTIONS(1319), + [anon_sym_boolean] = ACTIONS(1319), + [anon_sym_string] = ACTIONS(1319), + [anon_sym_symbol] = ACTIONS(1319), + [anon_sym_object] = ACTIONS(1319), [sym_html_comment] = ACTIONS(5), }, - [415] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2018), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(4305), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(4305), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1332), - [sym_subscript_expression] = STATE(1332), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(4305), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1332), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(2097), - [anon_sym_export] = ACTIONS(1210), - [anon_sym_type] = ACTIONS(1210), - [anon_sym_namespace] = ACTIONS(1212), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1210), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1216), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2099), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(2101), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1210), - [anon_sym_readonly] = ACTIONS(1210), - [anon_sym_get] = ACTIONS(1210), - [anon_sym_set] = ACTIONS(1210), - [anon_sym_declare] = ACTIONS(1210), - [anon_sym_public] = ACTIONS(1210), - [anon_sym_private] = ACTIONS(1210), - [anon_sym_protected] = ACTIONS(1210), - [anon_sym_override] = ACTIONS(1210), - [anon_sym_module] = ACTIONS(1210), - [anon_sym_any] = ACTIONS(1210), - [anon_sym_number] = ACTIONS(1210), - [anon_sym_boolean] = ACTIONS(1210), - [anon_sym_string] = ACTIONS(1210), - [anon_sym_symbol] = ACTIONS(1210), - [anon_sym_object] = ACTIONS(1210), + [426] = { + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2506), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), [sym_html_comment] = ACTIONS(5), }, - [416] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1789), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), + [427] = { + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(1699), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(2104), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [428] = { + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1431), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5967), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5967), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1431), + [sym_subscript_expression] = STATE(1431), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5967), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1431), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(2106), + [anon_sym_export] = ACTIONS(2108), + [anon_sym_type] = ACTIONS(2108), + [anon_sym_namespace] = ACTIONS(2110), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(2108), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(2112), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2114), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(2116), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2108), + [anon_sym_readonly] = ACTIONS(2108), + [anon_sym_get] = ACTIONS(2108), + [anon_sym_set] = ACTIONS(2108), + [anon_sym_declare] = ACTIONS(2108), + [anon_sym_public] = ACTIONS(2108), + [anon_sym_private] = ACTIONS(2108), + [anon_sym_protected] = ACTIONS(2108), + [anon_sym_override] = ACTIONS(2108), + [anon_sym_module] = ACTIONS(2108), + [anon_sym_any] = ACTIONS(2108), + [anon_sym_number] = ACTIONS(2108), + [anon_sym_boolean] = ACTIONS(2108), + [anon_sym_string] = ACTIONS(2108), + [anon_sym_symbol] = ACTIONS(2108), + [anon_sym_object] = ACTIONS(2108), + [sym_html_comment] = ACTIONS(5), + }, + [429] = { + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(2311), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1319), + [anon_sym_type] = ACTIONS(1319), + [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(695), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1319), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_readonly] = ACTIONS(1319), + [anon_sym_get] = ACTIONS(1319), + [anon_sym_set] = ACTIONS(1319), + [anon_sym_declare] = ACTIONS(1319), + [anon_sym_public] = ACTIONS(1319), + [anon_sym_private] = ACTIONS(1319), + [anon_sym_protected] = ACTIONS(1319), + [anon_sym_override] = ACTIONS(1319), + [anon_sym_module] = ACTIONS(1319), + [anon_sym_any] = ACTIONS(1319), + [anon_sym_number] = ACTIONS(1319), + [anon_sym_boolean] = ACTIONS(1319), + [anon_sym_string] = ACTIONS(1319), + [anon_sym_symbol] = ACTIONS(1319), + [anon_sym_object] = ACTIONS(1319), [sym_html_comment] = ACTIONS(5), }, - [417] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1712), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [430] = { + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2518), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), [sym_html_comment] = ACTIONS(5), }, - [418] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1725), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [431] = { + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2478), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), [sym_html_comment] = ACTIONS(5), }, - [419] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1908), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), + [432] = { + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1849), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1319), + [anon_sym_type] = ACTIONS(1319), + [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(695), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1319), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_readonly] = ACTIONS(1319), + [anon_sym_get] = ACTIONS(1319), + [anon_sym_set] = ACTIONS(1319), + [anon_sym_declare] = ACTIONS(1319), + [anon_sym_public] = ACTIONS(1319), + [anon_sym_private] = ACTIONS(1319), + [anon_sym_protected] = ACTIONS(1319), + [anon_sym_override] = ACTIONS(1319), + [anon_sym_module] = ACTIONS(1319), + [anon_sym_any] = ACTIONS(1319), + [anon_sym_number] = ACTIONS(1319), + [anon_sym_boolean] = ACTIONS(1319), + [anon_sym_string] = ACTIONS(1319), + [anon_sym_symbol] = ACTIONS(1319), + [anon_sym_object] = ACTIONS(1319), [sym_html_comment] = ACTIONS(5), }, - [420] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2563), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [433] = { + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(1632), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [421] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1909), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), + [434] = { + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2548), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(2118), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), + [sym_html_comment] = ACTIONS(5), + }, + [435] = { + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1820), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1319), + [anon_sym_type] = ACTIONS(1319), + [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(695), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1319), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), - [sym_html_comment] = ACTIONS(5), - }, - [422] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1716), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), - [sym_html_comment] = ACTIONS(5), - }, - [423] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1718), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), - [sym_html_comment] = ACTIONS(5), - }, - [424] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1700), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), - [sym_html_comment] = ACTIONS(5), - }, - [425] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1653), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), - [sym_html_comment] = ACTIONS(5), - }, - [426] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1739), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), - [sym_html_comment] = ACTIONS(5), - }, - [427] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1613), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), - [sym_html_comment] = ACTIONS(5), - }, - [428] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1618), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), - [sym_html_comment] = ACTIONS(5), - }, - [429] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1626), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), - [sym_html_comment] = ACTIONS(5), - }, - [430] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1646), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), - [sym_html_comment] = ACTIONS(5), - }, - [431] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1659), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), - [sym_html_comment] = ACTIONS(5), - }, - [432] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1666), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), - [sym_html_comment] = ACTIONS(5), - }, - [433] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1677), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), - [sym_html_comment] = ACTIONS(5), - }, - [434] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1689), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), - [sym_html_comment] = ACTIONS(5), - }, - [435] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1660), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_readonly] = ACTIONS(1319), + [anon_sym_get] = ACTIONS(1319), + [anon_sym_set] = ACTIONS(1319), + [anon_sym_declare] = ACTIONS(1319), + [anon_sym_public] = ACTIONS(1319), + [anon_sym_private] = ACTIONS(1319), + [anon_sym_protected] = ACTIONS(1319), + [anon_sym_override] = ACTIONS(1319), + [anon_sym_module] = ACTIONS(1319), + [anon_sym_any] = ACTIONS(1319), + [anon_sym_number] = ACTIONS(1319), + [anon_sym_boolean] = ACTIONS(1319), + [anon_sym_string] = ACTIONS(1319), + [anon_sym_symbol] = ACTIONS(1319), + [anon_sym_object] = ACTIONS(1319), [sym_html_comment] = ACTIONS(5), }, [436] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1708), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2527), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), [sym_html_comment] = ACTIONS(5), }, [437] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1610), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(1654), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [438] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2312), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2548), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), [sym_html_comment] = ACTIONS(5), }, [439] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1911), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2549), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), [sym_html_comment] = ACTIONS(5), }, [440] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1912), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1824), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1319), + [anon_sym_type] = ACTIONS(1319), + [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(695), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1319), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_readonly] = ACTIONS(1319), + [anon_sym_get] = ACTIONS(1319), + [anon_sym_set] = ACTIONS(1319), + [anon_sym_declare] = ACTIONS(1319), + [anon_sym_public] = ACTIONS(1319), + [anon_sym_private] = ACTIONS(1319), + [anon_sym_protected] = ACTIONS(1319), + [anon_sym_override] = ACTIONS(1319), + [anon_sym_module] = ACTIONS(1319), + [anon_sym_any] = ACTIONS(1319), + [anon_sym_number] = ACTIONS(1319), + [anon_sym_boolean] = ACTIONS(1319), + [anon_sym_string] = ACTIONS(1319), + [anon_sym_symbol] = ACTIONS(1319), + [anon_sym_object] = ACTIONS(1319), [sym_html_comment] = ACTIONS(5), }, [441] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1634), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(1657), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [442] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1635), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1428), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5819), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5819), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1428), + [sym_subscript_expression] = STATE(1428), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5819), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1428), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(2120), + [anon_sym_export] = ACTIONS(2122), + [anon_sym_type] = ACTIONS(2122), + [anon_sym_namespace] = ACTIONS(2124), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(2122), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(2126), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2128), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(2130), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2122), + [anon_sym_readonly] = ACTIONS(2122), + [anon_sym_get] = ACTIONS(2122), + [anon_sym_set] = ACTIONS(2122), + [anon_sym_declare] = ACTIONS(2122), + [anon_sym_public] = ACTIONS(2122), + [anon_sym_private] = ACTIONS(2122), + [anon_sym_protected] = ACTIONS(2122), + [anon_sym_override] = ACTIONS(2122), + [anon_sym_module] = ACTIONS(2122), + [anon_sym_any] = ACTIONS(2122), + [anon_sym_number] = ACTIONS(2122), + [anon_sym_boolean] = ACTIONS(2122), + [anon_sym_string] = ACTIONS(2122), + [anon_sym_symbol] = ACTIONS(2122), + [anon_sym_object] = ACTIONS(2122), [sym_html_comment] = ACTIONS(5), }, [443] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1726), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(2103), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), - [sym_html_comment] = ACTIONS(5), - }, - [444] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(2338), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1319), + [anon_sym_type] = ACTIONS(1319), + [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(695), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1319), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_readonly] = ACTIONS(1319), + [anon_sym_get] = ACTIONS(1319), + [anon_sym_set] = ACTIONS(1319), + [anon_sym_declare] = ACTIONS(1319), + [anon_sym_public] = ACTIONS(1319), + [anon_sym_private] = ACTIONS(1319), + [anon_sym_protected] = ACTIONS(1319), + [anon_sym_override] = ACTIONS(1319), + [anon_sym_module] = ACTIONS(1319), + [anon_sym_any] = ACTIONS(1319), + [anon_sym_number] = ACTIONS(1319), + [anon_sym_boolean] = ACTIONS(1319), + [anon_sym_string] = ACTIONS(1319), + [anon_sym_symbol] = ACTIONS(1319), + [anon_sym_object] = ACTIONS(1319), + [sym_html_comment] = ACTIONS(5), + }, + [444] = { + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(1778), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5881), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, [445] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1641), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(1661), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [446] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1726), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(1812), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5881), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, [447] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1680), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), - [sym_html_comment] = ACTIONS(5), - }, - [448] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1916), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(1841), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5881), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), - [sym_html_comment] = ACTIONS(5), - }, - [449] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2072), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [450] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1760), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), + [448] = { + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(2095), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1319), + [anon_sym_type] = ACTIONS(1319), + [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(695), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1319), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_readonly] = ACTIONS(1319), + [anon_sym_get] = ACTIONS(1319), + [anon_sym_set] = ACTIONS(1319), + [anon_sym_declare] = ACTIONS(1319), + [anon_sym_public] = ACTIONS(1319), + [anon_sym_private] = ACTIONS(1319), + [anon_sym_protected] = ACTIONS(1319), + [anon_sym_override] = ACTIONS(1319), + [anon_sym_module] = ACTIONS(1319), + [anon_sym_any] = ACTIONS(1319), + [anon_sym_number] = ACTIONS(1319), + [anon_sym_boolean] = ACTIONS(1319), + [anon_sym_string] = ACTIONS(1319), + [anon_sym_symbol] = ACTIONS(1319), + [anon_sym_object] = ACTIONS(1319), + [sym_html_comment] = ACTIONS(5), + }, + [449] = { + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(1758), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5881), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, + [450] = { + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1375), + [sym_expression] = STATE(2552), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5782), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5782), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5907), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1375), + [sym_subscript_expression] = STATE(1375), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5782), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1375), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, [451] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2484), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(1795), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5881), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, [452] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(2105), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(1801), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5881), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, [453] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1813), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), - [anon_sym_BANG] = ACTIONS(33), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(1819), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5881), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, [454] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1814), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), - [anon_sym_BANG] = ACTIONS(33), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(1823), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5881), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, [455] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1726), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(2105), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(1832), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5881), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, [456] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2018), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(1836), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5881), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, [457] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1726), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(2107), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(1847), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5881), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, [458] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1806), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), - [anon_sym_BANG] = ACTIONS(33), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(1853), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5881), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, [459] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(3654), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(3654), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1257), - [sym_subscript_expression] = STATE(1257), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(3654), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1257), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2111), - [anon_sym_type] = ACTIONS(2111), - [anon_sym_namespace] = ACTIONS(2113), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2111), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1634), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2115), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2117), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(2119), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2111), - [anon_sym_readonly] = ACTIONS(2111), - [anon_sym_get] = ACTIONS(2111), - [anon_sym_set] = ACTIONS(2111), - [anon_sym_declare] = ACTIONS(2111), - [anon_sym_public] = ACTIONS(2111), - [anon_sym_private] = ACTIONS(2111), - [anon_sym_protected] = ACTIONS(2111), - [anon_sym_override] = ACTIONS(2111), - [anon_sym_module] = ACTIONS(2111), - [anon_sym_any] = ACTIONS(2111), - [anon_sym_number] = ACTIONS(2111), - [anon_sym_boolean] = ACTIONS(2111), - [anon_sym_string] = ACTIONS(2111), - [anon_sym_symbol] = ACTIONS(2111), - [anon_sym_object] = ACTIONS(2111), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(1808), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5881), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, [460] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1806), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), - [anon_sym_BANG] = ACTIONS(33), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(1787), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5881), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(2121), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, [461] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(2107), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(1796), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5881), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, [462] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(2170), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1425), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1425), + [sym_subscript_expression] = STATE(1425), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1425), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(2132), + [anon_sym_export] = ACTIONS(2134), + [anon_sym_type] = ACTIONS(2134), + [anon_sym_namespace] = ACTIONS(2136), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(2134), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(2138), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2140), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(2142), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2134), + [anon_sym_readonly] = ACTIONS(2134), + [anon_sym_get] = ACTIONS(2134), + [anon_sym_set] = ACTIONS(2134), + [anon_sym_declare] = ACTIONS(2134), + [anon_sym_public] = ACTIONS(2134), + [anon_sym_private] = ACTIONS(2134), + [anon_sym_protected] = ACTIONS(2134), + [anon_sym_override] = ACTIONS(2134), + [anon_sym_module] = ACTIONS(2134), + [anon_sym_any] = ACTIONS(2134), + [anon_sym_number] = ACTIONS(2134), + [anon_sym_boolean] = ACTIONS(2134), + [anon_sym_string] = ACTIONS(2134), + [anon_sym_symbol] = ACTIONS(2134), + [anon_sym_object] = ACTIONS(2134), [sym_html_comment] = ACTIONS(5), }, [463] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(1726), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(2123), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(1805), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5881), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, [464] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1425), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5972), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5972), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1425), - [sym_subscript_expression] = STATE(1425), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5972), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1425), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(2125), - [anon_sym_export] = ACTIONS(2127), - [anon_sym_type] = ACTIONS(2127), - [anon_sym_namespace] = ACTIONS(2129), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2127), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2131), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2133), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(2135), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2127), - [anon_sym_readonly] = ACTIONS(2127), - [anon_sym_get] = ACTIONS(2127), - [anon_sym_set] = ACTIONS(2127), - [anon_sym_declare] = ACTIONS(2127), - [anon_sym_public] = ACTIONS(2127), - [anon_sym_private] = ACTIONS(2127), - [anon_sym_protected] = ACTIONS(2127), - [anon_sym_override] = ACTIONS(2127), - [anon_sym_module] = ACTIONS(2127), - [anon_sym_any] = ACTIONS(2127), - [anon_sym_number] = ACTIONS(2127), - [anon_sym_boolean] = ACTIONS(2127), - [anon_sym_string] = ACTIONS(2127), - [anon_sym_symbol] = ACTIONS(2127), - [anon_sym_object] = ACTIONS(2127), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(1731), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [465] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1810), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(1792), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5881), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, [466] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2136), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1406), + [sym_expression] = STATE(2546), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5918), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5918), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5764), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1406), + [sym_subscript_expression] = STATE(1406), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2954), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5918), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1406), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1223), + [anon_sym_type] = ACTIONS(1223), + [anon_sym_namespace] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1245), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1223), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1231), + [anon_sym_yield] = ACTIONS(1233), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1235), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_void] = ACTIONS(1245), + [anon_sym_delete] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1247), + [anon_sym_DASH_DASH] = ACTIONS(1247), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1249), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1223), + [anon_sym_readonly] = ACTIONS(1223), + [anon_sym_get] = ACTIONS(1223), + [anon_sym_set] = ACTIONS(1223), + [anon_sym_declare] = ACTIONS(1223), + [anon_sym_public] = ACTIONS(1223), + [anon_sym_private] = ACTIONS(1223), + [anon_sym_protected] = ACTIONS(1223), + [anon_sym_override] = ACTIONS(1223), + [anon_sym_module] = ACTIONS(1223), + [anon_sym_any] = ACTIONS(1223), + [anon_sym_number] = ACTIONS(1223), + [anon_sym_boolean] = ACTIONS(1223), + [anon_sym_string] = ACTIONS(1223), + [anon_sym_symbol] = ACTIONS(1223), + [anon_sym_object] = ACTIONS(1223), [sym_html_comment] = ACTIONS(5), }, [467] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2138), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(2151), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5596), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5596), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5594), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5596), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1287), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_void] = ACTIONS(1297), + [anon_sym_delete] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1299), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1305), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), [sym_html_comment] = ACTIONS(5), }, [468] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2142), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(1780), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5881), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, [469] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2424), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(1784), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5881), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, [470] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2144), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(1663), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [471] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2504), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(1664), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [472] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2146), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(1781), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5881), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(2144), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, [473] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2429), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(1665), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [474] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2148), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(1666), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [475] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2149), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(1811), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5881), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, [476] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2150), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(1667), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [477] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2151), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1382), + [sym_expression] = STATE(2474), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5929), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5929), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5928), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1382), + [sym_subscript_expression] = STATE(1382), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2964), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5929), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1382), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), [sym_html_comment] = ACTIONS(5), }, [478] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2152), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1319), + [anon_sym_type] = ACTIONS(1319), + [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1319), + [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_readonly] = ACTIONS(1319), + [anon_sym_get] = ACTIONS(1319), + [anon_sym_set] = ACTIONS(1319), + [anon_sym_declare] = ACTIONS(1319), + [anon_sym_public] = ACTIONS(1319), + [anon_sym_private] = ACTIONS(1319), + [anon_sym_protected] = ACTIONS(1319), + [anon_sym_override] = ACTIONS(1319), + [anon_sym_module] = ACTIONS(1319), + [anon_sym_any] = ACTIONS(1319), + [anon_sym_number] = ACTIONS(1319), + [anon_sym_boolean] = ACTIONS(1319), + [anon_sym_string] = ACTIONS(1319), + [anon_sym_symbol] = ACTIONS(1319), + [anon_sym_object] = ACTIONS(1319), [sym_html_comment] = ACTIONS(5), }, [479] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2153), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1375), + [sym_expression] = STATE(2245), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5782), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5782), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5907), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1375), + [sym_subscript_expression] = STATE(1375), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5782), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1375), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, [480] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2154), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(1725), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [481] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2155), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1375), + [sym_expression] = STATE(2246), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5782), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5782), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5907), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1375), + [sym_subscript_expression] = STATE(1375), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5782), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1375), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, [482] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2157), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1375), + [sym_expression] = STATE(2247), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5782), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5782), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5907), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1375), + [sym_subscript_expression] = STATE(1375), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5782), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1375), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, [483] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2158), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(2055), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1319), + [anon_sym_type] = ACTIONS(1319), + [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1319), + [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_readonly] = ACTIONS(1319), + [anon_sym_get] = ACTIONS(1319), + [anon_sym_set] = ACTIONS(1319), + [anon_sym_declare] = ACTIONS(1319), + [anon_sym_public] = ACTIONS(1319), + [anon_sym_private] = ACTIONS(1319), + [anon_sym_protected] = ACTIONS(1319), + [anon_sym_override] = ACTIONS(1319), + [anon_sym_module] = ACTIONS(1319), + [anon_sym_any] = ACTIONS(1319), + [anon_sym_number] = ACTIONS(1319), + [anon_sym_boolean] = ACTIONS(1319), + [anon_sym_string] = ACTIONS(1319), + [anon_sym_symbol] = ACTIONS(1319), + [anon_sym_object] = ACTIONS(1319), [sym_html_comment] = ACTIONS(5), }, [484] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2161), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1375), + [sym_expression] = STATE(2249), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5782), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5782), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5907), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1375), + [sym_subscript_expression] = STATE(1375), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5782), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1375), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, [485] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2505), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1375), + [sym_expression] = STATE(2250), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5782), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5782), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5907), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1375), + [sym_subscript_expression] = STATE(1375), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5782), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1375), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, [486] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2165), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1375), + [sym_expression] = STATE(2251), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5782), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5782), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5907), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1375), + [sym_subscript_expression] = STATE(1375), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5782), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1375), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, [487] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2166), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1375), + [sym_expression] = STATE(2252), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5782), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5782), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5907), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1375), + [sym_subscript_expression] = STATE(1375), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5782), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1375), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, [488] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2540), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1375), + [sym_expression] = STATE(2253), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5782), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5782), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5907), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1375), + [sym_subscript_expression] = STATE(1375), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5782), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1375), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, [489] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2207), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(2121), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1375), + [sym_expression] = STATE(2254), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5782), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5782), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5907), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1375), + [sym_subscript_expression] = STATE(1375), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5782), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1375), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, [490] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1822), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1375), + [sym_expression] = STATE(2255), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5782), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5782), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5907), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1375), + [sym_subscript_expression] = STATE(1375), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5782), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1375), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, [491] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2168), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1375), + [sym_expression] = STATE(2256), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5782), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5782), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5907), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1375), + [sym_subscript_expression] = STATE(1375), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5782), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1375), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, [492] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2548), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1375), + [sym_expression] = STATE(2257), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5782), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5782), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5907), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1375), + [sym_subscript_expression] = STATE(1375), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5782), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1375), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, [493] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2507), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1375), + [sym_expression] = STATE(2258), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5782), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5782), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5907), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1375), + [sym_subscript_expression] = STATE(1375), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5782), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1375), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, [494] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2508), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1375), + [sym_expression] = STATE(2259), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5782), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5782), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5907), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1375), + [sym_subscript_expression] = STATE(1375), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5782), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1375), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, [495] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2509), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1375), + [sym_expression] = STATE(2260), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5782), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5782), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5907), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1375), + [sym_subscript_expression] = STATE(1375), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5782), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1375), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, [496] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2511), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(2154), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5596), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5596), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5594), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5596), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1287), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_void] = ACTIONS(1297), + [anon_sym_delete] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1299), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1305), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), [sym_html_comment] = ACTIONS(5), }, [497] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2512), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1375), + [sym_expression] = STATE(2262), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5782), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5782), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5907), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1375), + [sym_subscript_expression] = STATE(1375), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5782), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1375), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, [498] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2513), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(2158), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5596), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5596), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5594), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5596), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1287), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_void] = ACTIONS(1297), + [anon_sym_delete] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1299), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1305), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), [sym_html_comment] = ACTIONS(5), }, [499] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2514), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1898), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1319), + [anon_sym_type] = ACTIONS(1319), + [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1319), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_readonly] = ACTIONS(1319), + [anon_sym_get] = ACTIONS(1319), + [anon_sym_set] = ACTIONS(1319), + [anon_sym_declare] = ACTIONS(1319), + [anon_sym_public] = ACTIONS(1319), + [anon_sym_private] = ACTIONS(1319), + [anon_sym_protected] = ACTIONS(1319), + [anon_sym_override] = ACTIONS(1319), + [anon_sym_module] = ACTIONS(1319), + [anon_sym_any] = ACTIONS(1319), + [anon_sym_number] = ACTIONS(1319), + [anon_sym_boolean] = ACTIONS(1319), + [anon_sym_string] = ACTIONS(1319), + [anon_sym_symbol] = ACTIONS(1319), + [anon_sym_object] = ACTIONS(1319), [sym_html_comment] = ACTIONS(5), }, [500] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2515), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(2160), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5596), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5596), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5594), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5596), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1287), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_void] = ACTIONS(1297), + [anon_sym_delete] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1299), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1305), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), [sym_html_comment] = ACTIONS(5), }, [501] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2516), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1375), + [sym_expression] = STATE(2266), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5782), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5782), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5907), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1375), + [sym_subscript_expression] = STATE(1375), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5782), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1375), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, [502] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2517), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1375), + [sym_expression] = STATE(2267), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5782), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5782), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5907), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1375), + [sym_subscript_expression] = STATE(1375), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5782), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1375), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, [503] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2518), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(1671), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [504] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2519), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(1672), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [505] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2520), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1375), + [sym_expression] = STATE(2279), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5782), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5782), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5907), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1375), + [sym_subscript_expression] = STATE(1375), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5782), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1375), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(2118), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, [506] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2521), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), - [sym_html_comment] = ACTIONS(5), - }, - [507] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2522), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), - [sym_html_comment] = ACTIONS(5), - }, - [508] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), - [sym_html_comment] = ACTIONS(5), - }, - [509] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1761), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1829), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1319), + [anon_sym_type] = ACTIONS(1319), + [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(695), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1319), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_readonly] = ACTIONS(1319), + [anon_sym_get] = ACTIONS(1319), + [anon_sym_set] = ACTIONS(1319), + [anon_sym_declare] = ACTIONS(1319), + [anon_sym_public] = ACTIONS(1319), + [anon_sym_private] = ACTIONS(1319), + [anon_sym_protected] = ACTIONS(1319), + [anon_sym_override] = ACTIONS(1319), + [anon_sym_module] = ACTIONS(1319), + [anon_sym_any] = ACTIONS(1319), + [anon_sym_number] = ACTIONS(1319), + [anon_sym_boolean] = ACTIONS(1319), + [anon_sym_string] = ACTIONS(1319), + [anon_sym_symbol] = ACTIONS(1319), + [anon_sym_object] = ACTIONS(1319), + [sym_html_comment] = ACTIONS(5), + }, + [507] = { + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(1679), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [508] = { + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1375), + [sym_expression] = STATE(2268), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5782), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5782), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5907), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1375), + [sym_subscript_expression] = STATE(1375), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5782), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1375), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1061), + [sym_html_comment] = ACTIONS(5), + }, + [509] = { + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(1680), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [510] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1429), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5768), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5768), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1429), - [sym_subscript_expression] = STATE(1429), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5768), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1429), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(2137), - [anon_sym_export] = ACTIONS(2139), - [anon_sym_type] = ACTIONS(2139), - [anon_sym_namespace] = ACTIONS(2141), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2139), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2143), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(2147), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2139), - [anon_sym_readonly] = ACTIONS(2139), - [anon_sym_get] = ACTIONS(2139), - [anon_sym_set] = ACTIONS(2139), - [anon_sym_declare] = ACTIONS(2139), - [anon_sym_public] = ACTIONS(2139), - [anon_sym_private] = ACTIONS(2139), - [anon_sym_protected] = ACTIONS(2139), - [anon_sym_override] = ACTIONS(2139), - [anon_sym_module] = ACTIONS(2139), - [anon_sym_any] = ACTIONS(2139), - [anon_sym_number] = ACTIONS(2139), - [anon_sym_boolean] = ACTIONS(2139), - [anon_sym_string] = ACTIONS(2139), - [anon_sym_symbol] = ACTIONS(2139), - [anon_sym_object] = ACTIONS(2139), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1375), + [sym_expression] = STATE(2279), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5782), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5782), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5907), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1375), + [sym_subscript_expression] = STATE(1375), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5782), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1375), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, [511] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2528), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1375), + [sym_expression] = STATE(2280), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5782), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5782), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5907), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1375), + [sym_subscript_expression] = STATE(1375), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5782), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1375), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, [512] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2529), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1375), + [sym_expression] = STATE(2554), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5782), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5782), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5907), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1375), + [sym_subscript_expression] = STATE(1375), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5782), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1375), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, [513] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(2103), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(1688), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [514] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2530), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5960), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5960), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1429), + [sym_subscript_expression] = STATE(1429), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5960), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1429), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(2146), + [anon_sym_export] = ACTIONS(2148), + [anon_sym_type] = ACTIONS(2148), + [anon_sym_namespace] = ACTIONS(2150), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(2148), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(2152), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2154), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(2156), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2148), + [anon_sym_readonly] = ACTIONS(2148), + [anon_sym_get] = ACTIONS(2148), + [anon_sym_set] = ACTIONS(2148), + [anon_sym_declare] = ACTIONS(2148), + [anon_sym_public] = ACTIONS(2148), + [anon_sym_private] = ACTIONS(2148), + [anon_sym_protected] = ACTIONS(2148), + [anon_sym_override] = ACTIONS(2148), + [anon_sym_module] = ACTIONS(2148), + [anon_sym_any] = ACTIONS(2148), + [anon_sym_number] = ACTIONS(2148), + [anon_sym_boolean] = ACTIONS(2148), + [anon_sym_string] = ACTIONS(2148), + [anon_sym_symbol] = ACTIONS(2148), + [anon_sym_object] = ACTIONS(2148), [sym_html_comment] = ACTIONS(5), }, [515] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1375), + [sym_expression] = STATE(2481), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5782), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5782), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5907), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1375), + [sym_subscript_expression] = STATE(1375), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5782), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1375), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, [516] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1200), - [sym_expression] = STATE(2546), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5944), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5944), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1200), - [sym_subscript_expression] = STATE(1200), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5944), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(817), - [anon_sym_export] = ACTIONS(819), - [anon_sym_type] = ACTIONS(819), - [anon_sym_namespace] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(831), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(833), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(819), - [anon_sym_readonly] = ACTIONS(819), - [anon_sym_get] = ACTIONS(819), - [anon_sym_set] = ACTIONS(819), - [anon_sym_declare] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_protected] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_module] = ACTIONS(819), - [anon_sym_any] = ACTIONS(819), - [anon_sym_number] = ACTIONS(819), - [anon_sym_boolean] = ACTIONS(819), - [anon_sym_string] = ACTIONS(819), - [anon_sym_symbol] = ACTIONS(819), - [anon_sym_object] = ACTIONS(819), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(2162), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5596), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5596), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5594), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5596), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1287), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_void] = ACTIONS(1297), + [anon_sym_delete] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1299), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1305), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), [sym_html_comment] = ACTIONS(5), }, [517] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1431), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5879), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5879), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1431), - [sym_subscript_expression] = STATE(1431), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5879), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1431), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(2149), - [anon_sym_export] = ACTIONS(2151), - [anon_sym_type] = ACTIONS(2151), - [anon_sym_namespace] = ACTIONS(2153), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2151), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2157), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(2159), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2151), - [anon_sym_readonly] = ACTIONS(2151), - [anon_sym_get] = ACTIONS(2151), - [anon_sym_set] = ACTIONS(2151), - [anon_sym_declare] = ACTIONS(2151), - [anon_sym_public] = ACTIONS(2151), - [anon_sym_private] = ACTIONS(2151), - [anon_sym_protected] = ACTIONS(2151), - [anon_sym_override] = ACTIONS(2151), - [anon_sym_module] = ACTIONS(2151), - [anon_sym_any] = ACTIONS(2151), - [anon_sym_number] = ACTIONS(2151), - [anon_sym_boolean] = ACTIONS(2151), - [anon_sym_string] = ACTIONS(2151), - [anon_sym_symbol] = ACTIONS(2151), - [anon_sym_object] = ACTIONS(2151), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1406), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5918), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5918), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5764), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1406), + [sym_subscript_expression] = STATE(1406), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2954), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5918), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1406), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1223), + [anon_sym_type] = ACTIONS(1223), + [anon_sym_namespace] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1245), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1223), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1231), + [anon_sym_yield] = ACTIONS(1233), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1235), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_void] = ACTIONS(1245), + [anon_sym_delete] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1247), + [anon_sym_DASH_DASH] = ACTIONS(1247), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1249), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1223), + [anon_sym_readonly] = ACTIONS(1223), + [anon_sym_get] = ACTIONS(1223), + [anon_sym_set] = ACTIONS(1223), + [anon_sym_declare] = ACTIONS(1223), + [anon_sym_public] = ACTIONS(1223), + [anon_sym_private] = ACTIONS(1223), + [anon_sym_protected] = ACTIONS(1223), + [anon_sym_override] = ACTIONS(1223), + [anon_sym_module] = ACTIONS(1223), + [anon_sym_any] = ACTIONS(1223), + [anon_sym_number] = ACTIONS(1223), + [anon_sym_boolean] = ACTIONS(1223), + [anon_sym_string] = ACTIONS(1223), + [anon_sym_symbol] = ACTIONS(1223), + [anon_sym_object] = ACTIONS(1223), [sym_html_comment] = ACTIONS(5), }, [518] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1826), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1406), + [sym_expression] = STATE(2416), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5918), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5918), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5764), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1406), + [sym_subscript_expression] = STATE(1406), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2954), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5918), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1406), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1223), + [anon_sym_type] = ACTIONS(1223), + [anon_sym_namespace] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1245), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1223), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1231), + [anon_sym_yield] = ACTIONS(1233), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1235), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_void] = ACTIONS(1245), + [anon_sym_delete] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1247), + [anon_sym_DASH_DASH] = ACTIONS(1247), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1249), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1223), + [anon_sym_readonly] = ACTIONS(1223), + [anon_sym_get] = ACTIONS(1223), + [anon_sym_set] = ACTIONS(1223), + [anon_sym_declare] = ACTIONS(1223), + [anon_sym_public] = ACTIONS(1223), + [anon_sym_private] = ACTIONS(1223), + [anon_sym_protected] = ACTIONS(1223), + [anon_sym_override] = ACTIONS(1223), + [anon_sym_module] = ACTIONS(1223), + [anon_sym_any] = ACTIONS(1223), + [anon_sym_number] = ACTIONS(1223), + [anon_sym_boolean] = ACTIONS(1223), + [anon_sym_string] = ACTIONS(1223), + [anon_sym_symbol] = ACTIONS(1223), + [anon_sym_object] = ACTIONS(1223), [sym_html_comment] = ACTIONS(5), }, [519] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1827), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1406), + [sym_expression] = STATE(2417), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5918), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5918), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5764), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1406), + [sym_subscript_expression] = STATE(1406), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2954), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5918), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1406), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1223), + [anon_sym_type] = ACTIONS(1223), + [anon_sym_namespace] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1245), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1223), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1231), + [anon_sym_yield] = ACTIONS(1233), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1235), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_void] = ACTIONS(1245), + [anon_sym_delete] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1247), + [anon_sym_DASH_DASH] = ACTIONS(1247), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1249), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1223), + [anon_sym_readonly] = ACTIONS(1223), + [anon_sym_get] = ACTIONS(1223), + [anon_sym_set] = ACTIONS(1223), + [anon_sym_declare] = ACTIONS(1223), + [anon_sym_public] = ACTIONS(1223), + [anon_sym_private] = ACTIONS(1223), + [anon_sym_protected] = ACTIONS(1223), + [anon_sym_override] = ACTIONS(1223), + [anon_sym_module] = ACTIONS(1223), + [anon_sym_any] = ACTIONS(1223), + [anon_sym_number] = ACTIONS(1223), + [anon_sym_boolean] = ACTIONS(1223), + [anon_sym_string] = ACTIONS(1223), + [anon_sym_symbol] = ACTIONS(1223), + [anon_sym_object] = ACTIONS(1223), [sym_html_comment] = ACTIONS(5), }, [520] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1828), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1760), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1319), + [anon_sym_type] = ACTIONS(1319), + [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1319), + [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_readonly] = ACTIONS(1319), + [anon_sym_get] = ACTIONS(1319), + [anon_sym_set] = ACTIONS(1319), + [anon_sym_declare] = ACTIONS(1319), + [anon_sym_public] = ACTIONS(1319), + [anon_sym_private] = ACTIONS(1319), + [anon_sym_protected] = ACTIONS(1319), + [anon_sym_override] = ACTIONS(1319), + [anon_sym_module] = ACTIONS(1319), + [anon_sym_any] = ACTIONS(1319), + [anon_sym_number] = ACTIONS(1319), + [anon_sym_boolean] = ACTIONS(1319), + [anon_sym_string] = ACTIONS(1319), + [anon_sym_symbol] = ACTIONS(1319), + [anon_sym_object] = ACTIONS(1319), [sym_html_comment] = ACTIONS(5), }, [521] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1830), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1406), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5918), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5918), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5764), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1406), + [sym_subscript_expression] = STATE(1406), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2954), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5918), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1406), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1223), + [anon_sym_type] = ACTIONS(1223), + [anon_sym_namespace] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1245), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1223), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1231), + [anon_sym_yield] = ACTIONS(1233), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1235), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_void] = ACTIONS(1245), + [anon_sym_delete] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1247), + [anon_sym_DASH_DASH] = ACTIONS(1247), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1249), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1223), + [anon_sym_readonly] = ACTIONS(1223), + [anon_sym_get] = ACTIONS(1223), + [anon_sym_set] = ACTIONS(1223), + [anon_sym_declare] = ACTIONS(1223), + [anon_sym_public] = ACTIONS(1223), + [anon_sym_private] = ACTIONS(1223), + [anon_sym_protected] = ACTIONS(1223), + [anon_sym_override] = ACTIONS(1223), + [anon_sym_module] = ACTIONS(1223), + [anon_sym_any] = ACTIONS(1223), + [anon_sym_number] = ACTIONS(1223), + [anon_sym_boolean] = ACTIONS(1223), + [anon_sym_string] = ACTIONS(1223), + [anon_sym_symbol] = ACTIONS(1223), + [anon_sym_object] = ACTIONS(1223), [sym_html_comment] = ACTIONS(5), }, [522] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2549), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1406), + [sym_expression] = STATE(2420), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5918), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5918), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5764), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1406), + [sym_subscript_expression] = STATE(1406), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2954), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5918), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1406), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1223), + [anon_sym_type] = ACTIONS(1223), + [anon_sym_namespace] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1245), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1223), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1231), + [anon_sym_yield] = ACTIONS(1233), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1235), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_void] = ACTIONS(1245), + [anon_sym_delete] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1247), + [anon_sym_DASH_DASH] = ACTIONS(1247), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1249), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1223), + [anon_sym_readonly] = ACTIONS(1223), + [anon_sym_get] = ACTIONS(1223), + [anon_sym_set] = ACTIONS(1223), + [anon_sym_declare] = ACTIONS(1223), + [anon_sym_public] = ACTIONS(1223), + [anon_sym_private] = ACTIONS(1223), + [anon_sym_protected] = ACTIONS(1223), + [anon_sym_override] = ACTIONS(1223), + [anon_sym_module] = ACTIONS(1223), + [anon_sym_any] = ACTIONS(1223), + [anon_sym_number] = ACTIONS(1223), + [anon_sym_boolean] = ACTIONS(1223), + [anon_sym_string] = ACTIONS(1223), + [anon_sym_symbol] = ACTIONS(1223), + [anon_sym_object] = ACTIONS(1223), [sym_html_comment] = ACTIONS(5), }, [523] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1831), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1406), + [sym_expression] = STATE(2421), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5918), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5918), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5764), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1406), + [sym_subscript_expression] = STATE(1406), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2954), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5918), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1406), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1223), + [anon_sym_type] = ACTIONS(1223), + [anon_sym_namespace] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1245), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1223), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1231), + [anon_sym_yield] = ACTIONS(1233), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1235), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_void] = ACTIONS(1245), + [anon_sym_delete] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1247), + [anon_sym_DASH_DASH] = ACTIONS(1247), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1249), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1223), + [anon_sym_readonly] = ACTIONS(1223), + [anon_sym_get] = ACTIONS(1223), + [anon_sym_set] = ACTIONS(1223), + [anon_sym_declare] = ACTIONS(1223), + [anon_sym_public] = ACTIONS(1223), + [anon_sym_private] = ACTIONS(1223), + [anon_sym_protected] = ACTIONS(1223), + [anon_sym_override] = ACTIONS(1223), + [anon_sym_module] = ACTIONS(1223), + [anon_sym_any] = ACTIONS(1223), + [anon_sym_number] = ACTIONS(1223), + [anon_sym_boolean] = ACTIONS(1223), + [anon_sym_string] = ACTIONS(1223), + [anon_sym_symbol] = ACTIONS(1223), + [anon_sym_object] = ACTIONS(1223), [sym_html_comment] = ACTIONS(5), }, [524] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1832), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1406), + [sym_expression] = STATE(2422), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5918), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5918), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5764), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1406), + [sym_subscript_expression] = STATE(1406), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2954), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5918), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1406), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1223), + [anon_sym_type] = ACTIONS(1223), + [anon_sym_namespace] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1245), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1223), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1231), + [anon_sym_yield] = ACTIONS(1233), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1235), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_void] = ACTIONS(1245), + [anon_sym_delete] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1247), + [anon_sym_DASH_DASH] = ACTIONS(1247), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1249), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1223), + [anon_sym_readonly] = ACTIONS(1223), + [anon_sym_get] = ACTIONS(1223), + [anon_sym_set] = ACTIONS(1223), + [anon_sym_declare] = ACTIONS(1223), + [anon_sym_public] = ACTIONS(1223), + [anon_sym_private] = ACTIONS(1223), + [anon_sym_protected] = ACTIONS(1223), + [anon_sym_override] = ACTIONS(1223), + [anon_sym_module] = ACTIONS(1223), + [anon_sym_any] = ACTIONS(1223), + [anon_sym_number] = ACTIONS(1223), + [anon_sym_boolean] = ACTIONS(1223), + [anon_sym_string] = ACTIONS(1223), + [anon_sym_symbol] = ACTIONS(1223), + [anon_sym_object] = ACTIONS(1223), [sym_html_comment] = ACTIONS(5), }, [525] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1833), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1406), + [sym_expression] = STATE(2423), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5918), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5918), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5764), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1406), + [sym_subscript_expression] = STATE(1406), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2954), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5918), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1406), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1223), + [anon_sym_type] = ACTIONS(1223), + [anon_sym_namespace] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1245), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1223), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1231), + [anon_sym_yield] = ACTIONS(1233), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1235), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_void] = ACTIONS(1245), + [anon_sym_delete] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1247), + [anon_sym_DASH_DASH] = ACTIONS(1247), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1249), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1223), + [anon_sym_readonly] = ACTIONS(1223), + [anon_sym_get] = ACTIONS(1223), + [anon_sym_set] = ACTIONS(1223), + [anon_sym_declare] = ACTIONS(1223), + [anon_sym_public] = ACTIONS(1223), + [anon_sym_private] = ACTIONS(1223), + [anon_sym_protected] = ACTIONS(1223), + [anon_sym_override] = ACTIONS(1223), + [anon_sym_module] = ACTIONS(1223), + [anon_sym_any] = ACTIONS(1223), + [anon_sym_number] = ACTIONS(1223), + [anon_sym_boolean] = ACTIONS(1223), + [anon_sym_string] = ACTIONS(1223), + [anon_sym_symbol] = ACTIONS(1223), + [anon_sym_object] = ACTIONS(1223), [sym_html_comment] = ACTIONS(5), }, [526] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1834), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1406), + [sym_expression] = STATE(2424), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5918), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5918), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5764), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1406), + [sym_subscript_expression] = STATE(1406), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2954), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5918), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1406), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1223), + [anon_sym_type] = ACTIONS(1223), + [anon_sym_namespace] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1245), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1223), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1231), + [anon_sym_yield] = ACTIONS(1233), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1235), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_void] = ACTIONS(1245), + [anon_sym_delete] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1247), + [anon_sym_DASH_DASH] = ACTIONS(1247), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1249), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1223), + [anon_sym_readonly] = ACTIONS(1223), + [anon_sym_get] = ACTIONS(1223), + [anon_sym_set] = ACTIONS(1223), + [anon_sym_declare] = ACTIONS(1223), + [anon_sym_public] = ACTIONS(1223), + [anon_sym_private] = ACTIONS(1223), + [anon_sym_protected] = ACTIONS(1223), + [anon_sym_override] = ACTIONS(1223), + [anon_sym_module] = ACTIONS(1223), + [anon_sym_any] = ACTIONS(1223), + [anon_sym_number] = ACTIONS(1223), + [anon_sym_boolean] = ACTIONS(1223), + [anon_sym_string] = ACTIONS(1223), + [anon_sym_symbol] = ACTIONS(1223), + [anon_sym_object] = ACTIONS(1223), [sym_html_comment] = ACTIONS(5), }, [527] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1835), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1406), + [sym_expression] = STATE(2425), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5918), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5918), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5764), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1406), + [sym_subscript_expression] = STATE(1406), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2954), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5918), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1406), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1223), + [anon_sym_type] = ACTIONS(1223), + [anon_sym_namespace] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1245), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1223), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1231), + [anon_sym_yield] = ACTIONS(1233), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1235), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_void] = ACTIONS(1245), + [anon_sym_delete] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1247), + [anon_sym_DASH_DASH] = ACTIONS(1247), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1249), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1223), + [anon_sym_readonly] = ACTIONS(1223), + [anon_sym_get] = ACTIONS(1223), + [anon_sym_set] = ACTIONS(1223), + [anon_sym_declare] = ACTIONS(1223), + [anon_sym_public] = ACTIONS(1223), + [anon_sym_private] = ACTIONS(1223), + [anon_sym_protected] = ACTIONS(1223), + [anon_sym_override] = ACTIONS(1223), + [anon_sym_module] = ACTIONS(1223), + [anon_sym_any] = ACTIONS(1223), + [anon_sym_number] = ACTIONS(1223), + [anon_sym_boolean] = ACTIONS(1223), + [anon_sym_string] = ACTIONS(1223), + [anon_sym_symbol] = ACTIONS(1223), + [anon_sym_object] = ACTIONS(1223), [sym_html_comment] = ACTIONS(5), }, [528] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2564), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1406), + [sym_expression] = STATE(2426), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5918), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5918), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5764), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1406), + [sym_subscript_expression] = STATE(1406), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2954), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5918), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1406), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1223), + [anon_sym_type] = ACTIONS(1223), + [anon_sym_namespace] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1245), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1223), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1231), + [anon_sym_yield] = ACTIONS(1233), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1235), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_void] = ACTIONS(1245), + [anon_sym_delete] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1247), + [anon_sym_DASH_DASH] = ACTIONS(1247), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1249), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1223), + [anon_sym_readonly] = ACTIONS(1223), + [anon_sym_get] = ACTIONS(1223), + [anon_sym_set] = ACTIONS(1223), + [anon_sym_declare] = ACTIONS(1223), + [anon_sym_public] = ACTIONS(1223), + [anon_sym_private] = ACTIONS(1223), + [anon_sym_protected] = ACTIONS(1223), + [anon_sym_override] = ACTIONS(1223), + [anon_sym_module] = ACTIONS(1223), + [anon_sym_any] = ACTIONS(1223), + [anon_sym_number] = ACTIONS(1223), + [anon_sym_boolean] = ACTIONS(1223), + [anon_sym_string] = ACTIONS(1223), + [anon_sym_symbol] = ACTIONS(1223), + [anon_sym_object] = ACTIONS(1223), [sym_html_comment] = ACTIONS(5), }, [529] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1837), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1406), + [sym_expression] = STATE(2427), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5918), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5918), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5764), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1406), + [sym_subscript_expression] = STATE(1406), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2954), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5918), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1406), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1223), + [anon_sym_type] = ACTIONS(1223), + [anon_sym_namespace] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1245), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1223), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1231), + [anon_sym_yield] = ACTIONS(1233), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1235), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_void] = ACTIONS(1245), + [anon_sym_delete] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1247), + [anon_sym_DASH_DASH] = ACTIONS(1247), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1249), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1223), + [anon_sym_readonly] = ACTIONS(1223), + [anon_sym_get] = ACTIONS(1223), + [anon_sym_set] = ACTIONS(1223), + [anon_sym_declare] = ACTIONS(1223), + [anon_sym_public] = ACTIONS(1223), + [anon_sym_private] = ACTIONS(1223), + [anon_sym_protected] = ACTIONS(1223), + [anon_sym_override] = ACTIONS(1223), + [anon_sym_module] = ACTIONS(1223), + [anon_sym_any] = ACTIONS(1223), + [anon_sym_number] = ACTIONS(1223), + [anon_sym_boolean] = ACTIONS(1223), + [anon_sym_string] = ACTIONS(1223), + [anon_sym_symbol] = ACTIONS(1223), + [anon_sym_object] = ACTIONS(1223), [sym_html_comment] = ACTIONS(5), }, [530] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1838), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1406), + [sym_expression] = STATE(2428), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5918), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5918), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5764), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1406), + [sym_subscript_expression] = STATE(1406), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2954), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5918), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1406), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1223), + [anon_sym_type] = ACTIONS(1223), + [anon_sym_namespace] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1245), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1223), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1231), + [anon_sym_yield] = ACTIONS(1233), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1235), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_void] = ACTIONS(1245), + [anon_sym_delete] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1247), + [anon_sym_DASH_DASH] = ACTIONS(1247), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1249), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1223), + [anon_sym_readonly] = ACTIONS(1223), + [anon_sym_get] = ACTIONS(1223), + [anon_sym_set] = ACTIONS(1223), + [anon_sym_declare] = ACTIONS(1223), + [anon_sym_public] = ACTIONS(1223), + [anon_sym_private] = ACTIONS(1223), + [anon_sym_protected] = ACTIONS(1223), + [anon_sym_override] = ACTIONS(1223), + [anon_sym_module] = ACTIONS(1223), + [anon_sym_any] = ACTIONS(1223), + [anon_sym_number] = ACTIONS(1223), + [anon_sym_boolean] = ACTIONS(1223), + [anon_sym_string] = ACTIONS(1223), + [anon_sym_symbol] = ACTIONS(1223), + [anon_sym_object] = ACTIONS(1223), [sym_html_comment] = ACTIONS(5), }, [531] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1839), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1406), + [sym_expression] = STATE(2429), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5918), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5918), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5764), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1406), + [sym_subscript_expression] = STATE(1406), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2954), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5918), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1406), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1223), + [anon_sym_type] = ACTIONS(1223), + [anon_sym_namespace] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1245), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1223), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1231), + [anon_sym_yield] = ACTIONS(1233), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1235), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_void] = ACTIONS(1245), + [anon_sym_delete] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1247), + [anon_sym_DASH_DASH] = ACTIONS(1247), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1249), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1223), + [anon_sym_readonly] = ACTIONS(1223), + [anon_sym_get] = ACTIONS(1223), + [anon_sym_set] = ACTIONS(1223), + [anon_sym_declare] = ACTIONS(1223), + [anon_sym_public] = ACTIONS(1223), + [anon_sym_private] = ACTIONS(1223), + [anon_sym_protected] = ACTIONS(1223), + [anon_sym_override] = ACTIONS(1223), + [anon_sym_module] = ACTIONS(1223), + [anon_sym_any] = ACTIONS(1223), + [anon_sym_number] = ACTIONS(1223), + [anon_sym_boolean] = ACTIONS(1223), + [anon_sym_string] = ACTIONS(1223), + [anon_sym_symbol] = ACTIONS(1223), + [anon_sym_object] = ACTIONS(1223), [sym_html_comment] = ACTIONS(5), }, [532] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1840), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1406), + [sym_expression] = STATE(2430), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5918), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5918), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5764), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1406), + [sym_subscript_expression] = STATE(1406), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2954), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5918), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1406), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1223), + [anon_sym_type] = ACTIONS(1223), + [anon_sym_namespace] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1245), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1223), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1231), + [anon_sym_yield] = ACTIONS(1233), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1235), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_void] = ACTIONS(1245), + [anon_sym_delete] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1247), + [anon_sym_DASH_DASH] = ACTIONS(1247), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1249), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1223), + [anon_sym_readonly] = ACTIONS(1223), + [anon_sym_get] = ACTIONS(1223), + [anon_sym_set] = ACTIONS(1223), + [anon_sym_declare] = ACTIONS(1223), + [anon_sym_public] = ACTIONS(1223), + [anon_sym_private] = ACTIONS(1223), + [anon_sym_protected] = ACTIONS(1223), + [anon_sym_override] = ACTIONS(1223), + [anon_sym_module] = ACTIONS(1223), + [anon_sym_any] = ACTIONS(1223), + [anon_sym_number] = ACTIONS(1223), + [anon_sym_boolean] = ACTIONS(1223), + [anon_sym_string] = ACTIONS(1223), + [anon_sym_symbol] = ACTIONS(1223), + [anon_sym_object] = ACTIONS(1223), [sym_html_comment] = ACTIONS(5), }, [533] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1841), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(2164), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5596), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5596), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5594), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5596), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1287), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_void] = ACTIONS(1297), + [anon_sym_delete] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1299), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1305), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), [sym_html_comment] = ACTIONS(5), }, [534] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1790), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1406), + [sym_expression] = STATE(2432), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5918), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5918), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5764), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1406), + [sym_subscript_expression] = STATE(1406), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2954), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5918), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1406), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1223), + [anon_sym_type] = ACTIONS(1223), + [anon_sym_namespace] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1245), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1223), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1231), + [anon_sym_yield] = ACTIONS(1233), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1235), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_void] = ACTIONS(1245), + [anon_sym_delete] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1247), + [anon_sym_DASH_DASH] = ACTIONS(1247), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1249), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1223), + [anon_sym_readonly] = ACTIONS(1223), + [anon_sym_get] = ACTIONS(1223), + [anon_sym_set] = ACTIONS(1223), + [anon_sym_declare] = ACTIONS(1223), + [anon_sym_public] = ACTIONS(1223), + [anon_sym_private] = ACTIONS(1223), + [anon_sym_protected] = ACTIONS(1223), + [anon_sym_override] = ACTIONS(1223), + [anon_sym_module] = ACTIONS(1223), + [anon_sym_any] = ACTIONS(1223), + [anon_sym_number] = ACTIONS(1223), + [anon_sym_boolean] = ACTIONS(1223), + [anon_sym_string] = ACTIONS(1223), + [anon_sym_symbol] = ACTIONS(1223), + [anon_sym_object] = ACTIONS(1223), [sym_html_comment] = ACTIONS(5), }, [535] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1843), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(2165), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5596), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5596), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5594), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5596), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1287), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_void] = ACTIONS(1297), + [anon_sym_delete] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1299), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1305), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), [sym_html_comment] = ACTIONS(5), }, [536] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1847), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(2166), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5596), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5596), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5594), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5596), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1287), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_void] = ACTIONS(1297), + [anon_sym_delete] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1299), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1305), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), [sym_html_comment] = ACTIONS(5), }, [537] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1848), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(2167), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5596), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5596), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5594), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5596), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1287), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_void] = ACTIONS(1297), + [anon_sym_delete] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1299), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1305), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), [sym_html_comment] = ACTIONS(5), }, [538] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1758), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(2121), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1406), + [sym_expression] = STATE(2436), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5918), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5918), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5764), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1406), + [sym_subscript_expression] = STATE(1406), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2954), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5918), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1406), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1223), + [anon_sym_type] = ACTIONS(1223), + [anon_sym_namespace] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1245), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1223), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1231), + [anon_sym_yield] = ACTIONS(1233), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1235), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_void] = ACTIONS(1245), + [anon_sym_delete] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1247), + [anon_sym_DASH_DASH] = ACTIONS(1247), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1249), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1223), + [anon_sym_readonly] = ACTIONS(1223), + [anon_sym_get] = ACTIONS(1223), + [anon_sym_set] = ACTIONS(1223), + [anon_sym_declare] = ACTIONS(1223), + [anon_sym_public] = ACTIONS(1223), + [anon_sym_private] = ACTIONS(1223), + [anon_sym_protected] = ACTIONS(1223), + [anon_sym_override] = ACTIONS(1223), + [anon_sym_module] = ACTIONS(1223), + [anon_sym_any] = ACTIONS(1223), + [anon_sym_number] = ACTIONS(1223), + [anon_sym_boolean] = ACTIONS(1223), + [anon_sym_string] = ACTIONS(1223), + [anon_sym_symbol] = ACTIONS(1223), + [anon_sym_object] = ACTIONS(1223), [sym_html_comment] = ACTIONS(5), }, [539] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1849), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1406), + [sym_expression] = STATE(2437), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5918), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5918), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5764), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1406), + [sym_subscript_expression] = STATE(1406), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2954), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5918), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1406), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1223), + [anon_sym_type] = ACTIONS(1223), + [anon_sym_namespace] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1245), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1223), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1231), + [anon_sym_yield] = ACTIONS(1233), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1235), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_void] = ACTIONS(1245), + [anon_sym_delete] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1247), + [anon_sym_DASH_DASH] = ACTIONS(1247), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1249), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1223), + [anon_sym_readonly] = ACTIONS(1223), + [anon_sym_get] = ACTIONS(1223), + [anon_sym_set] = ACTIONS(1223), + [anon_sym_declare] = ACTIONS(1223), + [anon_sym_public] = ACTIONS(1223), + [anon_sym_private] = ACTIONS(1223), + [anon_sym_protected] = ACTIONS(1223), + [anon_sym_override] = ACTIONS(1223), + [anon_sym_module] = ACTIONS(1223), + [anon_sym_any] = ACTIONS(1223), + [anon_sym_number] = ACTIONS(1223), + [anon_sym_boolean] = ACTIONS(1223), + [anon_sym_string] = ACTIONS(1223), + [anon_sym_symbol] = ACTIONS(1223), + [anon_sym_object] = ACTIONS(1223), [sym_html_comment] = ACTIONS(5), }, [540] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2468), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2075), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [541] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2250), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1848), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1319), + [anon_sym_type] = ACTIONS(1319), + [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1319), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_readonly] = ACTIONS(1319), + [anon_sym_get] = ACTIONS(1319), + [anon_sym_set] = ACTIONS(1319), + [anon_sym_declare] = ACTIONS(1319), + [anon_sym_public] = ACTIONS(1319), + [anon_sym_private] = ACTIONS(1319), + [anon_sym_protected] = ACTIONS(1319), + [anon_sym_override] = ACTIONS(1319), + [anon_sym_module] = ACTIONS(1319), + [anon_sym_any] = ACTIONS(1319), + [anon_sym_number] = ACTIONS(1319), + [anon_sym_boolean] = ACTIONS(1319), + [anon_sym_string] = ACTIONS(1319), + [anon_sym_symbol] = ACTIONS(1319), + [anon_sym_object] = ACTIONS(1319), [sym_html_comment] = ACTIONS(5), }, [542] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2251), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1406), + [sym_expression] = STATE(2439), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5918), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5918), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5764), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1406), + [sym_subscript_expression] = STATE(1406), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2954), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5918), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1406), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1223), + [anon_sym_type] = ACTIONS(1223), + [anon_sym_namespace] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1245), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1223), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1231), + [anon_sym_yield] = ACTIONS(1233), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1235), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_void] = ACTIONS(1245), + [anon_sym_delete] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1247), + [anon_sym_DASH_DASH] = ACTIONS(1247), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(2118), + [sym_private_property_identifier] = ACTIONS(1249), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1223), + [anon_sym_readonly] = ACTIONS(1223), + [anon_sym_get] = ACTIONS(1223), + [anon_sym_set] = ACTIONS(1223), + [anon_sym_declare] = ACTIONS(1223), + [anon_sym_public] = ACTIONS(1223), + [anon_sym_private] = ACTIONS(1223), + [anon_sym_protected] = ACTIONS(1223), + [anon_sym_override] = ACTIONS(1223), + [anon_sym_module] = ACTIONS(1223), + [anon_sym_any] = ACTIONS(1223), + [anon_sym_number] = ACTIONS(1223), + [anon_sym_boolean] = ACTIONS(1223), + [anon_sym_string] = ACTIONS(1223), + [anon_sym_symbol] = ACTIONS(1223), + [anon_sym_object] = ACTIONS(1223), [sym_html_comment] = ACTIONS(5), }, [543] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2252), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(2168), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5596), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5596), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5594), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5596), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1287), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_void] = ACTIONS(1297), + [anon_sym_delete] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1299), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1305), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), [sym_html_comment] = ACTIONS(5), }, [544] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2254), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1406), + [sym_expression] = STATE(2438), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5918), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5918), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5764), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1406), + [sym_subscript_expression] = STATE(1406), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2954), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5918), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1406), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1223), + [anon_sym_type] = ACTIONS(1223), + [anon_sym_namespace] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1245), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1223), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1231), + [anon_sym_yield] = ACTIONS(1233), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1235), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_void] = ACTIONS(1245), + [anon_sym_delete] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1247), + [anon_sym_DASH_DASH] = ACTIONS(1247), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1249), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1223), + [anon_sym_readonly] = ACTIONS(1223), + [anon_sym_get] = ACTIONS(1223), + [anon_sym_set] = ACTIONS(1223), + [anon_sym_declare] = ACTIONS(1223), + [anon_sym_public] = ACTIONS(1223), + [anon_sym_private] = ACTIONS(1223), + [anon_sym_protected] = ACTIONS(1223), + [anon_sym_override] = ACTIONS(1223), + [anon_sym_module] = ACTIONS(1223), + [anon_sym_any] = ACTIONS(1223), + [anon_sym_number] = ACTIONS(1223), + [anon_sym_boolean] = ACTIONS(1223), + [anon_sym_string] = ACTIONS(1223), + [anon_sym_symbol] = ACTIONS(1223), + [anon_sym_object] = ACTIONS(1223), [sym_html_comment] = ACTIONS(5), }, [545] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2255), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(2169), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5596), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5596), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5594), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5596), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1287), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_void] = ACTIONS(1297), + [anon_sym_delete] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1299), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1305), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), [sym_html_comment] = ACTIONS(5), }, [546] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2256), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1406), + [sym_expression] = STATE(2439), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5918), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5918), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5764), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1406), + [sym_subscript_expression] = STATE(1406), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2954), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5918), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1406), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1223), + [anon_sym_type] = ACTIONS(1223), + [anon_sym_namespace] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1245), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1223), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1231), + [anon_sym_yield] = ACTIONS(1233), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1235), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_void] = ACTIONS(1245), + [anon_sym_delete] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1247), + [anon_sym_DASH_DASH] = ACTIONS(1247), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1249), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1223), + [anon_sym_readonly] = ACTIONS(1223), + [anon_sym_get] = ACTIONS(1223), + [anon_sym_set] = ACTIONS(1223), + [anon_sym_declare] = ACTIONS(1223), + [anon_sym_public] = ACTIONS(1223), + [anon_sym_private] = ACTIONS(1223), + [anon_sym_protected] = ACTIONS(1223), + [anon_sym_override] = ACTIONS(1223), + [anon_sym_module] = ACTIONS(1223), + [anon_sym_any] = ACTIONS(1223), + [anon_sym_number] = ACTIONS(1223), + [anon_sym_boolean] = ACTIONS(1223), + [anon_sym_string] = ACTIONS(1223), + [anon_sym_symbol] = ACTIONS(1223), + [anon_sym_object] = ACTIONS(1223), [sym_html_comment] = ACTIONS(5), }, [547] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2257), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1406), + [sym_expression] = STATE(2440), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5918), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5918), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5764), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1406), + [sym_subscript_expression] = STATE(1406), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2954), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5918), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1406), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1223), + [anon_sym_type] = ACTIONS(1223), + [anon_sym_namespace] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1245), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1223), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1231), + [anon_sym_yield] = ACTIONS(1233), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1235), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_void] = ACTIONS(1245), + [anon_sym_delete] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1247), + [anon_sym_DASH_DASH] = ACTIONS(1247), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1249), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1223), + [anon_sym_readonly] = ACTIONS(1223), + [anon_sym_get] = ACTIONS(1223), + [anon_sym_set] = ACTIONS(1223), + [anon_sym_declare] = ACTIONS(1223), + [anon_sym_public] = ACTIONS(1223), + [anon_sym_private] = ACTIONS(1223), + [anon_sym_protected] = ACTIONS(1223), + [anon_sym_override] = ACTIONS(1223), + [anon_sym_module] = ACTIONS(1223), + [anon_sym_any] = ACTIONS(1223), + [anon_sym_number] = ACTIONS(1223), + [anon_sym_boolean] = ACTIONS(1223), + [anon_sym_string] = ACTIONS(1223), + [anon_sym_symbol] = ACTIONS(1223), + [anon_sym_object] = ACTIONS(1223), [sym_html_comment] = ACTIONS(5), }, [548] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2258), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(2170), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5596), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5596), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5594), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5596), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1287), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_void] = ACTIONS(1297), + [anon_sym_delete] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1299), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1305), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), [sym_html_comment] = ACTIONS(5), }, [549] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2259), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1432), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5793), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5793), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1432), + [sym_subscript_expression] = STATE(1432), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5793), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1432), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(2158), + [anon_sym_export] = ACTIONS(2160), + [anon_sym_type] = ACTIONS(2160), + [anon_sym_namespace] = ACTIONS(2162), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(2160), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(2164), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2166), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(2168), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2160), + [anon_sym_readonly] = ACTIONS(2160), + [anon_sym_get] = ACTIONS(2160), + [anon_sym_set] = ACTIONS(2160), + [anon_sym_declare] = ACTIONS(2160), + [anon_sym_public] = ACTIONS(2160), + [anon_sym_private] = ACTIONS(2160), + [anon_sym_protected] = ACTIONS(2160), + [anon_sym_override] = ACTIONS(2160), + [anon_sym_module] = ACTIONS(2160), + [anon_sym_any] = ACTIONS(2160), + [anon_sym_number] = ACTIONS(2160), + [anon_sym_boolean] = ACTIONS(2160), + [anon_sym_string] = ACTIONS(2160), + [anon_sym_symbol] = ACTIONS(2160), + [anon_sym_object] = ACTIONS(2160), [sym_html_comment] = ACTIONS(5), }, [550] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2260), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1375), + [sym_expression] = STATE(2512), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5782), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5782), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5907), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1375), + [sym_subscript_expression] = STATE(1375), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5782), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1375), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, [551] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2261), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(2171), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5596), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5596), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5594), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5596), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1287), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_void] = ACTIONS(1297), + [anon_sym_delete] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1299), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1305), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), [sym_html_comment] = ACTIONS(5), }, [552] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2262), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(2174), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5596), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5596), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5594), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5596), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1287), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_void] = ACTIONS(1297), + [anon_sym_delete] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1299), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1305), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), [sym_html_comment] = ACTIONS(5), }, [553] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2263), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1382), + [sym_expression] = STATE(2447), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5929), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5929), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5928), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1382), + [sym_subscript_expression] = STATE(1382), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2964), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5929), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1382), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), [sym_html_comment] = ACTIONS(5), }, [554] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2264), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1382), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5929), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5929), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5928), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1382), + [sym_subscript_expression] = STATE(1382), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2964), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5929), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1382), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), [sym_html_comment] = ACTIONS(5), }, [555] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2265), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1382), + [sym_expression] = STATE(2449), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5929), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5929), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5928), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1382), + [sym_subscript_expression] = STATE(1382), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2964), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5929), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1382), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), [sym_html_comment] = ACTIONS(5), }, [556] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2267), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(2175), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5596), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5596), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5594), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5596), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1287), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_void] = ACTIONS(1297), + [anon_sym_delete] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1299), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1305), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), [sym_html_comment] = ACTIONS(5), }, [557] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2271), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1382), + [sym_expression] = STATE(2451), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5929), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5929), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5928), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1382), + [sym_subscript_expression] = STATE(1382), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2964), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5929), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1382), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), [sym_html_comment] = ACTIONS(5), }, [558] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2272), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1382), + [sym_expression] = STATE(2452), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5929), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5929), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5928), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1382), + [sym_subscript_expression] = STATE(1382), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2964), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5929), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1382), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), [sym_html_comment] = ACTIONS(5), }, [559] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2279), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(2103), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1382), + [sym_expression] = STATE(2453), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5929), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5929), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5928), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1382), + [sym_subscript_expression] = STATE(1382), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2964), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5929), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1382), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), [sym_html_comment] = ACTIONS(5), }, [560] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2273), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1382), + [sym_expression] = STATE(2454), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5929), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5929), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5928), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1382), + [sym_subscript_expression] = STATE(1382), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2964), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5929), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1382), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), [sym_html_comment] = ACTIONS(5), }, [561] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2279), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1382), + [sym_expression] = STATE(2455), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5929), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5929), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5928), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1382), + [sym_subscript_expression] = STATE(1382), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2964), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5929), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1382), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), [sym_html_comment] = ACTIONS(5), }, [562] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2280), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1382), + [sym_expression] = STATE(2456), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5929), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5929), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5928), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1382), + [sym_subscript_expression] = STATE(1382), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2964), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5929), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1382), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), [sym_html_comment] = ACTIONS(5), }, [563] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1427), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5732), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5732), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1427), - [sym_subscript_expression] = STATE(1427), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5732), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1427), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(2161), - [anon_sym_export] = ACTIONS(2163), - [anon_sym_type] = ACTIONS(2163), - [anon_sym_namespace] = ACTIONS(2165), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2167), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2169), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(2171), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2163), - [anon_sym_readonly] = ACTIONS(2163), - [anon_sym_get] = ACTIONS(2163), - [anon_sym_set] = ACTIONS(2163), - [anon_sym_declare] = ACTIONS(2163), - [anon_sym_public] = ACTIONS(2163), - [anon_sym_private] = ACTIONS(2163), - [anon_sym_protected] = ACTIONS(2163), - [anon_sym_override] = ACTIONS(2163), - [anon_sym_module] = ACTIONS(2163), - [anon_sym_any] = ACTIONS(2163), - [anon_sym_number] = ACTIONS(2163), - [anon_sym_boolean] = ACTIONS(2163), - [anon_sym_string] = ACTIONS(2163), - [anon_sym_symbol] = ACTIONS(2163), - [anon_sym_object] = ACTIONS(2163), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1382), + [sym_expression] = STATE(2457), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5929), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5929), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5928), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1382), + [sym_subscript_expression] = STATE(1382), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2964), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5929), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1382), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), [sym_html_comment] = ACTIONS(5), }, [564] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2550), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1382), + [sym_expression] = STATE(2458), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5929), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5929), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5928), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1382), + [sym_subscript_expression] = STATE(1382), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2964), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5929), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1382), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), [sym_html_comment] = ACTIONS(5), }, [565] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2470), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1382), + [sym_expression] = STATE(2459), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5929), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5929), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5928), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1382), + [sym_subscript_expression] = STATE(1382), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2964), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5929), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1382), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), [sym_html_comment] = ACTIONS(5), }, [566] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2471), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1382), + [sym_expression] = STATE(2460), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5929), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5929), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5928), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1382), + [sym_subscript_expression] = STATE(1382), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2964), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5929), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1382), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), [sym_html_comment] = ACTIONS(5), }, [567] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2474), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1382), + [sym_expression] = STATE(2461), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5929), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5929), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5928), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1382), + [sym_subscript_expression] = STATE(1382), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2964), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5929), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1382), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), [sym_html_comment] = ACTIONS(5), }, [568] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2478), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1382), + [sym_expression] = STATE(2462), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5929), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5929), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5928), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1382), + [sym_subscript_expression] = STATE(1382), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2964), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5929), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1382), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), [sym_html_comment] = ACTIONS(5), }, [569] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(1699), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(2170), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [570] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2480), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1382), + [sym_expression] = STATE(2464), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5929), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5929), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5928), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1382), + [sym_subscript_expression] = STATE(1382), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2964), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5929), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1382), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), [sym_html_comment] = ACTIONS(5), }, [571] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2422), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(2178), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5596), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5596), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5594), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5596), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1287), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_void] = ACTIONS(1297), + [anon_sym_delete] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1299), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1305), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), [sym_html_comment] = ACTIONS(5), }, [572] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2423), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1406), + [sym_expression] = STATE(2482), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5918), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5918), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5764), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1406), + [sym_subscript_expression] = STATE(1406), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2954), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5918), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1406), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1223), + [anon_sym_type] = ACTIONS(1223), + [anon_sym_namespace] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1245), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1223), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1231), + [anon_sym_yield] = ACTIONS(1233), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1235), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_void] = ACTIONS(1245), + [anon_sym_delete] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1247), + [anon_sym_DASH_DASH] = ACTIONS(1247), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1249), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1223), + [anon_sym_readonly] = ACTIONS(1223), + [anon_sym_get] = ACTIONS(1223), + [anon_sym_set] = ACTIONS(1223), + [anon_sym_declare] = ACTIONS(1223), + [anon_sym_public] = ACTIONS(1223), + [anon_sym_private] = ACTIONS(1223), + [anon_sym_protected] = ACTIONS(1223), + [anon_sym_override] = ACTIONS(1223), + [anon_sym_module] = ACTIONS(1223), + [anon_sym_any] = ACTIONS(1223), + [anon_sym_number] = ACTIONS(1223), + [anon_sym_boolean] = ACTIONS(1223), + [anon_sym_string] = ACTIONS(1223), + [anon_sym_symbol] = ACTIONS(1223), + [anon_sym_object] = ACTIONS(1223), [sym_html_comment] = ACTIONS(5), }, [573] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2360), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(1612), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [574] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2361), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1382), + [sym_expression] = STATE(2468), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5929), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5929), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5928), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1382), + [sym_subscript_expression] = STATE(1382), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2964), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5929), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1382), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), [sym_html_comment] = ACTIONS(5), }, [575] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2362), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1382), + [sym_expression] = STATE(2469), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5929), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5929), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5928), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1382), + [sym_subscript_expression] = STATE(1382), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2964), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5929), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1382), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), [sym_html_comment] = ACTIONS(5), }, [576] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2363), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(1625), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [577] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2364), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(1626), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [578] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2365), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1382), + [sym_expression] = STATE(2471), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5929), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5929), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5928), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1382), + [sym_subscript_expression] = STATE(1382), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2964), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5929), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1382), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(2118), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), [sym_html_comment] = ACTIONS(5), }, [579] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2366), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1850), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1319), + [anon_sym_type] = ACTIONS(1319), + [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1319), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_readonly] = ACTIONS(1319), + [anon_sym_get] = ACTIONS(1319), + [anon_sym_set] = ACTIONS(1319), + [anon_sym_declare] = ACTIONS(1319), + [anon_sym_public] = ACTIONS(1319), + [anon_sym_private] = ACTIONS(1319), + [anon_sym_protected] = ACTIONS(1319), + [anon_sym_override] = ACTIONS(1319), + [anon_sym_module] = ACTIONS(1319), + [anon_sym_any] = ACTIONS(1319), + [anon_sym_number] = ACTIONS(1319), + [anon_sym_boolean] = ACTIONS(1319), + [anon_sym_string] = ACTIONS(1319), + [anon_sym_symbol] = ACTIONS(1319), + [anon_sym_object] = ACTIONS(1319), [sym_html_comment] = ACTIONS(5), }, [580] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2368), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1375), + [sym_expression] = STATE(2532), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5782), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5782), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5907), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1375), + [sym_subscript_expression] = STATE(1375), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5782), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1375), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, [581] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2372), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1382), + [sym_expression] = STATE(2470), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5929), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5929), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5928), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1382), + [sym_subscript_expression] = STATE(1382), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2964), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5929), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1382), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), [sym_html_comment] = ACTIONS(5), }, [582] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2373), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(1699), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(2118), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [583] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2380), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(2103), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1382), + [sym_expression] = STATE(2471), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5929), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5929), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5928), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1382), + [sym_subscript_expression] = STATE(1382), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2964), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5929), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1382), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), [sym_html_comment] = ACTIONS(5), }, [584] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1852), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1382), + [sym_expression] = STATE(2472), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5929), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5929), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5928), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1382), + [sym_subscript_expression] = STATE(1382), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2964), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5929), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1382), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [sym_html_comment] = ACTIONS(5), + }, + [585] = { + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1899), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1319), + [anon_sym_type] = ACTIONS(1319), + [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(695), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1319), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), - [sym_html_comment] = ACTIONS(5), - }, - [585] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2374), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_readonly] = ACTIONS(1319), + [anon_sym_get] = ACTIONS(1319), + [anon_sym_set] = ACTIONS(1319), + [anon_sym_declare] = ACTIONS(1319), + [anon_sym_public] = ACTIONS(1319), + [anon_sym_private] = ACTIONS(1319), + [anon_sym_protected] = ACTIONS(1319), + [anon_sym_override] = ACTIONS(1319), + [anon_sym_module] = ACTIONS(1319), + [anon_sym_any] = ACTIONS(1319), + [anon_sym_number] = ACTIONS(1319), + [anon_sym_boolean] = ACTIONS(1319), + [anon_sym_string] = ACTIONS(1319), + [anon_sym_symbol] = ACTIONS(1319), + [anon_sym_object] = ACTIONS(1319), [sym_html_comment] = ACTIONS(5), }, [586] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2380), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1424), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5956), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5956), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1424), + [sym_subscript_expression] = STATE(1424), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5956), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1424), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(2172), + [anon_sym_export] = ACTIONS(2174), + [anon_sym_type] = ACTIONS(2174), + [anon_sym_namespace] = ACTIONS(2176), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(2174), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(2178), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2180), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(2182), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2174), + [anon_sym_readonly] = ACTIONS(2174), + [anon_sym_get] = ACTIONS(2174), + [anon_sym_set] = ACTIONS(2174), + [anon_sym_declare] = ACTIONS(2174), + [anon_sym_public] = ACTIONS(2174), + [anon_sym_private] = ACTIONS(2174), + [anon_sym_protected] = ACTIONS(2174), + [anon_sym_override] = ACTIONS(2174), + [anon_sym_module] = ACTIONS(2174), + [anon_sym_any] = ACTIONS(2174), + [anon_sym_number] = ACTIONS(2174), + [anon_sym_boolean] = ACTIONS(2174), + [anon_sym_string] = ACTIONS(2174), + [anon_sym_symbol] = ACTIONS(2174), + [anon_sym_object] = ACTIONS(2174), [sym_html_comment] = ACTIONS(5), }, [587] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2381), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1375), + [sym_expression] = STATE(2517), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5782), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5782), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5907), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1375), + [sym_subscript_expression] = STATE(1375), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5782), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1375), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, [588] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1426), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5857), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5857), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1426), - [sym_subscript_expression] = STATE(1426), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5857), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1426), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(2173), - [anon_sym_export] = ACTIONS(2175), - [anon_sym_type] = ACTIONS(2175), - [anon_sym_namespace] = ACTIONS(2177), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2175), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2179), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2181), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(2183), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2175), - [anon_sym_readonly] = ACTIONS(2175), - [anon_sym_get] = ACTIONS(2175), - [anon_sym_set] = ACTIONS(2175), - [anon_sym_declare] = ACTIONS(2175), - [anon_sym_public] = ACTIONS(2175), - [anon_sym_private] = ACTIONS(2175), - [anon_sym_protected] = ACTIONS(2175), - [anon_sym_override] = ACTIONS(2175), - [anon_sym_module] = ACTIONS(2175), - [anon_sym_any] = ACTIONS(2175), - [anon_sym_number] = ACTIONS(2175), - [anon_sym_boolean] = ACTIONS(2175), - [anon_sym_string] = ACTIONS(2175), - [anon_sym_symbol] = ACTIONS(2175), - [anon_sym_object] = ACTIONS(2175), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(2087), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1319), + [anon_sym_type] = ACTIONS(1319), + [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1319), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_readonly] = ACTIONS(1319), + [anon_sym_get] = ACTIONS(1319), + [anon_sym_set] = ACTIONS(1319), + [anon_sym_declare] = ACTIONS(1319), + [anon_sym_public] = ACTIONS(1319), + [anon_sym_private] = ACTIONS(1319), + [anon_sym_protected] = ACTIONS(1319), + [anon_sym_override] = ACTIONS(1319), + [anon_sym_module] = ACTIONS(1319), + [anon_sym_any] = ACTIONS(1319), + [anon_sym_number] = ACTIONS(1319), + [anon_sym_boolean] = ACTIONS(1319), + [anon_sym_string] = ACTIONS(1319), + [anon_sym_symbol] = ACTIONS(1319), + [anon_sym_object] = ACTIONS(1319), [sym_html_comment] = ACTIONS(5), }, [589] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2551), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1830), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1319), + [anon_sym_type] = ACTIONS(1319), + [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1319), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_readonly] = ACTIONS(1319), + [anon_sym_get] = ACTIONS(1319), + [anon_sym_set] = ACTIONS(1319), + [anon_sym_declare] = ACTIONS(1319), + [anon_sym_public] = ACTIONS(1319), + [anon_sym_private] = ACTIONS(1319), + [anon_sym_protected] = ACTIONS(1319), + [anon_sym_override] = ACTIONS(1319), + [anon_sym_module] = ACTIONS(1319), + [anon_sym_any] = ACTIONS(1319), + [anon_sym_number] = ACTIONS(1319), + [anon_sym_boolean] = ACTIONS(1319), + [anon_sym_string] = ACTIONS(1319), + [anon_sym_symbol] = ACTIONS(1319), + [anon_sym_object] = ACTIONS(1319), [sym_html_comment] = ACTIONS(5), }, [590] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2435), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1831), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1319), + [anon_sym_type] = ACTIONS(1319), + [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1319), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_readonly] = ACTIONS(1319), + [anon_sym_get] = ACTIONS(1319), + [anon_sym_set] = ACTIONS(1319), + [anon_sym_declare] = ACTIONS(1319), + [anon_sym_public] = ACTIONS(1319), + [anon_sym_private] = ACTIONS(1319), + [anon_sym_protected] = ACTIONS(1319), + [anon_sym_override] = ACTIONS(1319), + [anon_sym_module] = ACTIONS(1319), + [anon_sym_any] = ACTIONS(1319), + [anon_sym_number] = ACTIONS(1319), + [anon_sym_boolean] = ACTIONS(1319), + [anon_sym_string] = ACTIONS(1319), + [anon_sym_symbol] = ACTIONS(1319), + [anon_sym_object] = ACTIONS(1319), [sym_html_comment] = ACTIONS(5), }, [591] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2436), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2015), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [592] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2437), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(2215), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5596), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5596), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5594), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5596), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1287), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_void] = ACTIONS(1297), + [anon_sym_delete] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1299), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1305), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), [sym_html_comment] = ACTIONS(5), }, [593] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2439), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(2217), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5596), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5596), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5594), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5596), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1287), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_void] = ACTIONS(1297), + [anon_sym_delete] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1299), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1305), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), [sym_html_comment] = ACTIONS(5), }, [594] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2440), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(1723), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, [595] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2441), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(2220), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5596), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5596), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5594), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5596), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1287), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_void] = ACTIONS(1297), + [anon_sym_delete] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1299), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1305), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), [sym_html_comment] = ACTIONS(5), }, [596] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2442), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), - [sym_html_comment] = ACTIONS(5), - }, - [597] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2443), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), - [sym_html_comment] = ACTIONS(5), - }, - [598] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2444), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), - [sym_html_comment] = ACTIONS(5), - }, - [599] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), - [sym_html_comment] = ACTIONS(5), - }, - [600] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2446), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), - [sym_html_comment] = ACTIONS(5), - }, - [601] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2447), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), - [sym_html_comment] = ACTIONS(5), - }, - [602] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2448), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), - [sym_html_comment] = ACTIONS(5), - }, - [603] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2449), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), - [sym_html_comment] = ACTIONS(5), - }, - [604] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2450), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), - [sym_html_comment] = ACTIONS(5), - }, - [605] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2452), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), - [sym_html_comment] = ACTIONS(5), - }, - [606] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2456), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), - [sym_html_comment] = ACTIONS(5), - }, - [607] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2457), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), - [sym_html_comment] = ACTIONS(5), - }, - [608] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2465), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(2103), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), - [sym_html_comment] = ACTIONS(5), - }, - [609] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1771), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1777), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1319), + [anon_sym_type] = ACTIONS(1319), + [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(695), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1319), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), - [sym_html_comment] = ACTIONS(5), - }, - [610] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2458), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), - [sym_html_comment] = ACTIONS(5), - }, - [611] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2465), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), - [sym_html_comment] = ACTIONS(5), - }, - [612] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1414), - [sym_expression] = STATE(2466), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5941), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5941), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5964), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1414), - [sym_subscript_expression] = STATE(1414), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2983), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5941), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1414), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1332), - [anon_sym_type] = ACTIONS(1332), - [anon_sym_namespace] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1360), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1486), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_readonly] = ACTIONS(1332), - [anon_sym_get] = ACTIONS(1332), - [anon_sym_set] = ACTIONS(1332), - [anon_sym_declare] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_protected] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_module] = ACTIONS(1332), - [anon_sym_any] = ACTIONS(1332), - [anon_sym_number] = ACTIONS(1332), - [anon_sym_boolean] = ACTIONS(1332), - [anon_sym_string] = ACTIONS(1332), - [anon_sym_symbol] = ACTIONS(1332), - [anon_sym_object] = ACTIONS(1332), - [sym_html_comment] = ACTIONS(5), - }, - [613] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1430), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5980), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5980), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1430), - [sym_subscript_expression] = STATE(1430), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5980), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1430), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(2185), - [anon_sym_export] = ACTIONS(2187), - [anon_sym_type] = ACTIONS(2187), - [anon_sym_namespace] = ACTIONS(2189), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2187), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2191), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2193), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(2195), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2187), - [anon_sym_readonly] = ACTIONS(2187), - [anon_sym_get] = ACTIONS(2187), - [anon_sym_set] = ACTIONS(2187), - [anon_sym_declare] = ACTIONS(2187), - [anon_sym_public] = ACTIONS(2187), - [anon_sym_private] = ACTIONS(2187), - [anon_sym_protected] = ACTIONS(2187), - [anon_sym_override] = ACTIONS(2187), - [anon_sym_module] = ACTIONS(2187), - [anon_sym_any] = ACTIONS(2187), - [anon_sym_number] = ACTIONS(2187), - [anon_sym_boolean] = ACTIONS(2187), - [anon_sym_string] = ACTIONS(2187), - [anon_sym_symbol] = ACTIONS(2187), - [anon_sym_object] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_readonly] = ACTIONS(1319), + [anon_sym_get] = ACTIONS(1319), + [anon_sym_set] = ACTIONS(1319), + [anon_sym_declare] = ACTIONS(1319), + [anon_sym_public] = ACTIONS(1319), + [anon_sym_private] = ACTIONS(1319), + [anon_sym_protected] = ACTIONS(1319), + [anon_sym_override] = ACTIONS(1319), + [anon_sym_module] = ACTIONS(1319), + [anon_sym_any] = ACTIONS(1319), + [anon_sym_number] = ACTIONS(1319), + [anon_sym_boolean] = ACTIONS(1319), + [anon_sym_string] = ACTIONS(1319), + [anon_sym_symbol] = ACTIONS(1319), + [anon_sym_object] = ACTIONS(1319), [sym_html_comment] = ACTIONS(5), }, - [614] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2554), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), - [sym_html_comment] = ACTIONS(5), - }, - [615] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1773), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), + [597] = { + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1788), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1319), + [anon_sym_type] = ACTIONS(1319), + [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(695), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1319), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_readonly] = ACTIONS(1319), + [anon_sym_get] = ACTIONS(1319), + [anon_sym_set] = ACTIONS(1319), + [anon_sym_declare] = ACTIONS(1319), + [anon_sym_public] = ACTIONS(1319), + [anon_sym_private] = ACTIONS(1319), + [anon_sym_protected] = ACTIONS(1319), + [anon_sym_override] = ACTIONS(1319), + [anon_sym_module] = ACTIONS(1319), + [anon_sym_any] = ACTIONS(1319), + [anon_sym_number] = ACTIONS(1319), + [anon_sym_boolean] = ACTIONS(1319), + [anon_sym_string] = ACTIONS(1319), + [anon_sym_symbol] = ACTIONS(1319), + [anon_sym_object] = ACTIONS(1319), [sym_html_comment] = ACTIONS(5), }, - [616] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2207), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), + [598] = { + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2015), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(4027), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(4027), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(4027), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1328), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(2184), + [anon_sym_export] = ACTIONS(1173), + [anon_sym_type] = ACTIONS(1173), + [anon_sym_namespace] = ACTIONS(1175), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1173), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1179), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2186), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(2188), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1173), + [anon_sym_readonly] = ACTIONS(1173), + [anon_sym_get] = ACTIONS(1173), + [anon_sym_set] = ACTIONS(1173), + [anon_sym_declare] = ACTIONS(1173), + [anon_sym_public] = ACTIONS(1173), + [anon_sym_private] = ACTIONS(1173), + [anon_sym_protected] = ACTIONS(1173), + [anon_sym_override] = ACTIONS(1173), + [anon_sym_module] = ACTIONS(1173), + [anon_sym_any] = ACTIONS(1173), + [anon_sym_number] = ACTIONS(1173), + [anon_sym_boolean] = ACTIONS(1173), + [anon_sym_string] = ACTIONS(1173), + [anon_sym_symbol] = ACTIONS(1173), + [anon_sym_object] = ACTIONS(1173), [sym_html_comment] = ACTIONS(5), }, - [617] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2208), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), + [599] = { + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1365), + [sym_expression] = STATE(1967), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5873), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5873), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5780), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1365), + [sym_subscript_expression] = STATE(1365), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2990), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5873), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1365), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1109), + [anon_sym_type] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1135), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1109), + [anon_sym_BANG] = ACTIONS(1117), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1119), + [anon_sym_yield] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1125), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1117), + [anon_sym_void] = ACTIONS(1135), + [anon_sym_delete] = ACTIONS(1135), + [anon_sym_PLUS_PLUS] = ACTIONS(1137), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1143), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1109), + [anon_sym_readonly] = ACTIONS(1109), + [anon_sym_get] = ACTIONS(1109), + [anon_sym_set] = ACTIONS(1109), + [anon_sym_declare] = ACTIONS(1109), + [anon_sym_public] = ACTIONS(1109), + [anon_sym_private] = ACTIONS(1109), + [anon_sym_protected] = ACTIONS(1109), + [anon_sym_override] = ACTIONS(1109), + [anon_sym_module] = ACTIONS(1109), + [anon_sym_any] = ACTIONS(1109), + [anon_sym_number] = ACTIONS(1109), + [anon_sym_boolean] = ACTIONS(1109), + [anon_sym_string] = ACTIONS(1109), + [anon_sym_symbol] = ACTIONS(1109), + [anon_sym_object] = ACTIONS(1109), [sym_html_comment] = ACTIONS(5), }, - [618] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2210), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), + [600] = { + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1774), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1319), + [anon_sym_type] = ACTIONS(1319), + [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1319), + [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), - [sym_html_comment] = ACTIONS(5), - }, - [619] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1271), - [sym_expression] = STATE(2432), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5859), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5859), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5891), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2925), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5859), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1271), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_namespace] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(650), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(624), - [anon_sym_yield] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(636), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(622), - [anon_sym_void] = ACTIONS(650), - [anon_sym_delete] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(654), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_readonly] = ACTIONS(1046), - [anon_sym_get] = ACTIONS(1046), - [anon_sym_set] = ACTIONS(1046), - [anon_sym_declare] = ACTIONS(1046), - [anon_sym_public] = ACTIONS(1046), - [anon_sym_private] = ACTIONS(1046), - [anon_sym_protected] = ACTIONS(1046), - [anon_sym_override] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_any] = ACTIONS(1046), - [anon_sym_number] = ACTIONS(1046), - [anon_sym_boolean] = ACTIONS(1046), - [anon_sym_string] = ACTIONS(1046), - [anon_sym_symbol] = ACTIONS(1046), - [anon_sym_object] = ACTIONS(1046), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_readonly] = ACTIONS(1319), + [anon_sym_get] = ACTIONS(1319), + [anon_sym_set] = ACTIONS(1319), + [anon_sym_declare] = ACTIONS(1319), + [anon_sym_public] = ACTIONS(1319), + [anon_sym_private] = ACTIONS(1319), + [anon_sym_protected] = ACTIONS(1319), + [anon_sym_override] = ACTIONS(1319), + [anon_sym_module] = ACTIONS(1319), + [anon_sym_any] = ACTIONS(1319), + [anon_sym_number] = ACTIONS(1319), + [anon_sym_boolean] = ACTIONS(1319), + [anon_sym_string] = ACTIONS(1319), + [anon_sym_symbol] = ACTIONS(1319), + [anon_sym_object] = ACTIONS(1319), [sym_html_comment] = ACTIONS(5), }, - [620] = { - [sym_import] = STATE(3759), + [601] = { + [sym_import] = STATE(3644), [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2059), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), + [sym_expression] = STATE(2031), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5873), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5873), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5780), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), [sym_member_expression] = STATE(1365), [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2990), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5873), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1109), + [anon_sym_type] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1135), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1109), + [anon_sym_BANG] = ACTIONS(1117), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1119), + [anon_sym_yield] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1125), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1117), + [anon_sym_void] = ACTIONS(1135), + [anon_sym_delete] = ACTIONS(1135), + [anon_sym_PLUS_PLUS] = ACTIONS(1137), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1143), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1109), + [anon_sym_readonly] = ACTIONS(1109), + [anon_sym_get] = ACTIONS(1109), + [anon_sym_set] = ACTIONS(1109), + [anon_sym_declare] = ACTIONS(1109), + [anon_sym_public] = ACTIONS(1109), + [anon_sym_private] = ACTIONS(1109), + [anon_sym_protected] = ACTIONS(1109), + [anon_sym_override] = ACTIONS(1109), + [anon_sym_module] = ACTIONS(1109), + [anon_sym_any] = ACTIONS(1109), + [anon_sym_number] = ACTIONS(1109), + [anon_sym_boolean] = ACTIONS(1109), + [anon_sym_string] = ACTIONS(1109), + [anon_sym_symbol] = ACTIONS(1109), + [anon_sym_object] = ACTIONS(1109), [sym_html_comment] = ACTIONS(5), }, - [621] = { - [sym_import] = STATE(3759), + [602] = { + [sym_import] = STATE(3644), [sym_parenthesized_expression] = STATE(1365), [sym_expression] = STATE(2032), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5873), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5873), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5780), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), [sym_member_expression] = STATE(1365), [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2990), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5873), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1109), + [anon_sym_type] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1135), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1109), + [anon_sym_BANG] = ACTIONS(1117), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1119), + [anon_sym_yield] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1125), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1117), + [anon_sym_void] = ACTIONS(1135), + [anon_sym_delete] = ACTIONS(1135), + [anon_sym_PLUS_PLUS] = ACTIONS(1137), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1143), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1109), + [anon_sym_readonly] = ACTIONS(1109), + [anon_sym_get] = ACTIONS(1109), + [anon_sym_set] = ACTIONS(1109), + [anon_sym_declare] = ACTIONS(1109), + [anon_sym_public] = ACTIONS(1109), + [anon_sym_private] = ACTIONS(1109), + [anon_sym_protected] = ACTIONS(1109), + [anon_sym_override] = ACTIONS(1109), + [anon_sym_module] = ACTIONS(1109), + [anon_sym_any] = ACTIONS(1109), + [anon_sym_number] = ACTIONS(1109), + [anon_sym_boolean] = ACTIONS(1109), + [anon_sym_string] = ACTIONS(1109), + [anon_sym_symbol] = ACTIONS(1109), + [anon_sym_object] = ACTIONS(1109), [sym_html_comment] = ACTIONS(5), }, - [622] = { - [sym_import] = STATE(3759), + [603] = { + [sym_import] = STATE(3644), [sym_parenthesized_expression] = STATE(1365), [sym_expression] = STATE(2033), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5873), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5873), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5780), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), [sym_member_expression] = STATE(1365), [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2990), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5873), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1109), + [anon_sym_type] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1135), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1109), + [anon_sym_BANG] = ACTIONS(1117), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1119), + [anon_sym_yield] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1125), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1117), + [anon_sym_void] = ACTIONS(1135), + [anon_sym_delete] = ACTIONS(1135), + [anon_sym_PLUS_PLUS] = ACTIONS(1137), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1143), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1109), + [anon_sym_readonly] = ACTIONS(1109), + [anon_sym_get] = ACTIONS(1109), + [anon_sym_set] = ACTIONS(1109), + [anon_sym_declare] = ACTIONS(1109), + [anon_sym_public] = ACTIONS(1109), + [anon_sym_private] = ACTIONS(1109), + [anon_sym_protected] = ACTIONS(1109), + [anon_sym_override] = ACTIONS(1109), + [anon_sym_module] = ACTIONS(1109), + [anon_sym_any] = ACTIONS(1109), + [anon_sym_number] = ACTIONS(1109), + [anon_sym_boolean] = ACTIONS(1109), + [anon_sym_string] = ACTIONS(1109), + [anon_sym_symbol] = ACTIONS(1109), + [anon_sym_object] = ACTIONS(1109), [sym_html_comment] = ACTIONS(5), }, - [623] = { - [sym_import] = STATE(3759), + [604] = { + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(2183), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5596), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5596), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5594), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5596), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1287), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_void] = ACTIONS(1297), + [anon_sym_delete] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1299), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1305), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [sym_html_comment] = ACTIONS(5), + }, + [605] = { + [sym_import] = STATE(3644), [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2034), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), + [sym_expression] = STATE(2035), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5873), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5873), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5780), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), [sym_member_expression] = STATE(1365), [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2990), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5873), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1109), + [anon_sym_type] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1135), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1109), + [anon_sym_BANG] = ACTIONS(1117), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1119), + [anon_sym_yield] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1125), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1117), + [anon_sym_void] = ACTIONS(1135), + [anon_sym_delete] = ACTIONS(1135), + [anon_sym_PLUS_PLUS] = ACTIONS(1137), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1143), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1109), + [anon_sym_readonly] = ACTIONS(1109), + [anon_sym_get] = ACTIONS(1109), + [anon_sym_set] = ACTIONS(1109), + [anon_sym_declare] = ACTIONS(1109), + [anon_sym_public] = ACTIONS(1109), + [anon_sym_private] = ACTIONS(1109), + [anon_sym_protected] = ACTIONS(1109), + [anon_sym_override] = ACTIONS(1109), + [anon_sym_module] = ACTIONS(1109), + [anon_sym_any] = ACTIONS(1109), + [anon_sym_number] = ACTIONS(1109), + [anon_sym_boolean] = ACTIONS(1109), + [anon_sym_string] = ACTIONS(1109), + [anon_sym_symbol] = ACTIONS(1109), + [anon_sym_object] = ACTIONS(1109), [sym_html_comment] = ACTIONS(5), }, - [624] = { - [sym_import] = STATE(3759), + [606] = { + [sym_import] = STATE(3644), [sym_parenthesized_expression] = STATE(1365), [sym_expression] = STATE(2036), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5873), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5873), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5780), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), [sym_member_expression] = STATE(1365), [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2990), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5873), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1109), + [anon_sym_type] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1135), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1109), + [anon_sym_BANG] = ACTIONS(1117), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1119), + [anon_sym_yield] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1125), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1117), + [anon_sym_void] = ACTIONS(1135), + [anon_sym_delete] = ACTIONS(1135), + [anon_sym_PLUS_PLUS] = ACTIONS(1137), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1143), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1109), + [anon_sym_readonly] = ACTIONS(1109), + [anon_sym_get] = ACTIONS(1109), + [anon_sym_set] = ACTIONS(1109), + [anon_sym_declare] = ACTIONS(1109), + [anon_sym_public] = ACTIONS(1109), + [anon_sym_private] = ACTIONS(1109), + [anon_sym_protected] = ACTIONS(1109), + [anon_sym_override] = ACTIONS(1109), + [anon_sym_module] = ACTIONS(1109), + [anon_sym_any] = ACTIONS(1109), + [anon_sym_number] = ACTIONS(1109), + [anon_sym_boolean] = ACTIONS(1109), + [anon_sym_string] = ACTIONS(1109), + [anon_sym_symbol] = ACTIONS(1109), + [anon_sym_object] = ACTIONS(1109), [sym_html_comment] = ACTIONS(5), }, - [625] = { - [sym_import] = STATE(3759), + [607] = { + [sym_import] = STATE(3644), [sym_parenthesized_expression] = STATE(1365), [sym_expression] = STATE(2037), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5873), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5873), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5780), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), [sym_member_expression] = STATE(1365), [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2990), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5873), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1109), + [anon_sym_type] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1135), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1109), + [anon_sym_BANG] = ACTIONS(1117), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1119), + [anon_sym_yield] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1125), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1117), + [anon_sym_void] = ACTIONS(1135), + [anon_sym_delete] = ACTIONS(1135), + [anon_sym_PLUS_PLUS] = ACTIONS(1137), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1143), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1109), + [anon_sym_readonly] = ACTIONS(1109), + [anon_sym_get] = ACTIONS(1109), + [anon_sym_set] = ACTIONS(1109), + [anon_sym_declare] = ACTIONS(1109), + [anon_sym_public] = ACTIONS(1109), + [anon_sym_private] = ACTIONS(1109), + [anon_sym_protected] = ACTIONS(1109), + [anon_sym_override] = ACTIONS(1109), + [anon_sym_module] = ACTIONS(1109), + [anon_sym_any] = ACTIONS(1109), + [anon_sym_number] = ACTIONS(1109), + [anon_sym_boolean] = ACTIONS(1109), + [anon_sym_string] = ACTIONS(1109), + [anon_sym_symbol] = ACTIONS(1109), + [anon_sym_object] = ACTIONS(1109), [sym_html_comment] = ACTIONS(5), }, - [626] = { - [sym_import] = STATE(3759), + [608] = { + [sym_import] = STATE(3644), [sym_parenthesized_expression] = STATE(1365), [sym_expression] = STATE(2038), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5873), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5873), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5780), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), [sym_member_expression] = STATE(1365), [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2990), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5873), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1109), + [anon_sym_type] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1135), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1109), + [anon_sym_BANG] = ACTIONS(1117), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1119), + [anon_sym_yield] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1125), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1117), + [anon_sym_void] = ACTIONS(1135), + [anon_sym_delete] = ACTIONS(1135), + [anon_sym_PLUS_PLUS] = ACTIONS(1137), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1143), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1109), + [anon_sym_readonly] = ACTIONS(1109), + [anon_sym_get] = ACTIONS(1109), + [anon_sym_set] = ACTIONS(1109), + [anon_sym_declare] = ACTIONS(1109), + [anon_sym_public] = ACTIONS(1109), + [anon_sym_private] = ACTIONS(1109), + [anon_sym_protected] = ACTIONS(1109), + [anon_sym_override] = ACTIONS(1109), + [anon_sym_module] = ACTIONS(1109), + [anon_sym_any] = ACTIONS(1109), + [anon_sym_number] = ACTIONS(1109), + [anon_sym_boolean] = ACTIONS(1109), + [anon_sym_string] = ACTIONS(1109), + [anon_sym_symbol] = ACTIONS(1109), + [anon_sym_object] = ACTIONS(1109), [sym_html_comment] = ACTIONS(5), }, - [627] = { - [sym_import] = STATE(3759), + [609] = { + [sym_import] = STATE(3644), [sym_parenthesized_expression] = STATE(1365), [sym_expression] = STATE(2039), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5873), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5873), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5780), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), [sym_member_expression] = STATE(1365), [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2990), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5873), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1109), + [anon_sym_type] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1135), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1109), + [anon_sym_BANG] = ACTIONS(1117), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1119), + [anon_sym_yield] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1125), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1117), + [anon_sym_void] = ACTIONS(1135), + [anon_sym_delete] = ACTIONS(1135), + [anon_sym_PLUS_PLUS] = ACTIONS(1137), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1143), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1109), + [anon_sym_readonly] = ACTIONS(1109), + [anon_sym_get] = ACTIONS(1109), + [anon_sym_set] = ACTIONS(1109), + [anon_sym_declare] = ACTIONS(1109), + [anon_sym_public] = ACTIONS(1109), + [anon_sym_private] = ACTIONS(1109), + [anon_sym_protected] = ACTIONS(1109), + [anon_sym_override] = ACTIONS(1109), + [anon_sym_module] = ACTIONS(1109), + [anon_sym_any] = ACTIONS(1109), + [anon_sym_number] = ACTIONS(1109), + [anon_sym_boolean] = ACTIONS(1109), + [anon_sym_string] = ACTIONS(1109), + [anon_sym_symbol] = ACTIONS(1109), + [anon_sym_object] = ACTIONS(1109), [sym_html_comment] = ACTIONS(5), }, - [628] = { - [sym_import] = STATE(3759), + [610] = { + [sym_import] = STATE(3644), [sym_parenthesized_expression] = STATE(1365), [sym_expression] = STATE(2040), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5873), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5873), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5780), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), [sym_member_expression] = STATE(1365), [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2990), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5873), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1109), + [anon_sym_type] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1135), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1109), + [anon_sym_BANG] = ACTIONS(1117), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1119), + [anon_sym_yield] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1125), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1117), + [anon_sym_void] = ACTIONS(1135), + [anon_sym_delete] = ACTIONS(1135), + [anon_sym_PLUS_PLUS] = ACTIONS(1137), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1143), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1109), + [anon_sym_readonly] = ACTIONS(1109), + [anon_sym_get] = ACTIONS(1109), + [anon_sym_set] = ACTIONS(1109), + [anon_sym_declare] = ACTIONS(1109), + [anon_sym_public] = ACTIONS(1109), + [anon_sym_private] = ACTIONS(1109), + [anon_sym_protected] = ACTIONS(1109), + [anon_sym_override] = ACTIONS(1109), + [anon_sym_module] = ACTIONS(1109), + [anon_sym_any] = ACTIONS(1109), + [anon_sym_number] = ACTIONS(1109), + [anon_sym_boolean] = ACTIONS(1109), + [anon_sym_string] = ACTIONS(1109), + [anon_sym_symbol] = ACTIONS(1109), + [anon_sym_object] = ACTIONS(1109), [sym_html_comment] = ACTIONS(5), }, - [629] = { - [sym_import] = STATE(3759), + [611] = { + [sym_import] = STATE(3644), [sym_parenthesized_expression] = STATE(1365), [sym_expression] = STATE(2041), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5873), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5873), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5780), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), [sym_member_expression] = STATE(1365), [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2990), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5873), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1109), + [anon_sym_type] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1135), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1109), + [anon_sym_BANG] = ACTIONS(1117), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1119), + [anon_sym_yield] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1125), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1117), + [anon_sym_void] = ACTIONS(1135), + [anon_sym_delete] = ACTIONS(1135), + [anon_sym_PLUS_PLUS] = ACTIONS(1137), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1143), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1109), + [anon_sym_readonly] = ACTIONS(1109), + [anon_sym_get] = ACTIONS(1109), + [anon_sym_set] = ACTIONS(1109), + [anon_sym_declare] = ACTIONS(1109), + [anon_sym_public] = ACTIONS(1109), + [anon_sym_private] = ACTIONS(1109), + [anon_sym_protected] = ACTIONS(1109), + [anon_sym_override] = ACTIONS(1109), + [anon_sym_module] = ACTIONS(1109), + [anon_sym_any] = ACTIONS(1109), + [anon_sym_number] = ACTIONS(1109), + [anon_sym_boolean] = ACTIONS(1109), + [anon_sym_string] = ACTIONS(1109), + [anon_sym_symbol] = ACTIONS(1109), + [anon_sym_object] = ACTIONS(1109), [sym_html_comment] = ACTIONS(5), }, - [630] = { - [sym_import] = STATE(3759), + [612] = { + [sym_import] = STATE(3644), [sym_parenthesized_expression] = STATE(1365), [sym_expression] = STATE(2042), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5873), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5873), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5780), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), [sym_member_expression] = STATE(1365), [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2990), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5873), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1109), + [anon_sym_type] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1135), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1109), + [anon_sym_BANG] = ACTIONS(1117), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1119), + [anon_sym_yield] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1125), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1117), + [anon_sym_void] = ACTIONS(1135), + [anon_sym_delete] = ACTIONS(1135), + [anon_sym_PLUS_PLUS] = ACTIONS(1137), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1143), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1109), + [anon_sym_readonly] = ACTIONS(1109), + [anon_sym_get] = ACTIONS(1109), + [anon_sym_set] = ACTIONS(1109), + [anon_sym_declare] = ACTIONS(1109), + [anon_sym_public] = ACTIONS(1109), + [anon_sym_private] = ACTIONS(1109), + [anon_sym_protected] = ACTIONS(1109), + [anon_sym_override] = ACTIONS(1109), + [anon_sym_module] = ACTIONS(1109), + [anon_sym_any] = ACTIONS(1109), + [anon_sym_number] = ACTIONS(1109), + [anon_sym_boolean] = ACTIONS(1109), + [anon_sym_string] = ACTIONS(1109), + [anon_sym_symbol] = ACTIONS(1109), + [anon_sym_object] = ACTIONS(1109), [sym_html_comment] = ACTIONS(5), }, - [631] = { - [sym_import] = STATE(3759), + [613] = { + [sym_import] = STATE(3644), [sym_parenthesized_expression] = STATE(1365), [sym_expression] = STATE(2043), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5873), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5873), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5780), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), [sym_member_expression] = STATE(1365), [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2990), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5873), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1109), + [anon_sym_type] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1135), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1109), + [anon_sym_BANG] = ACTIONS(1117), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1119), + [anon_sym_yield] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1125), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1117), + [anon_sym_void] = ACTIONS(1135), + [anon_sym_delete] = ACTIONS(1135), + [anon_sym_PLUS_PLUS] = ACTIONS(1137), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1143), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1109), + [anon_sym_readonly] = ACTIONS(1109), + [anon_sym_get] = ACTIONS(1109), + [anon_sym_set] = ACTIONS(1109), + [anon_sym_declare] = ACTIONS(1109), + [anon_sym_public] = ACTIONS(1109), + [anon_sym_private] = ACTIONS(1109), + [anon_sym_protected] = ACTIONS(1109), + [anon_sym_override] = ACTIONS(1109), + [anon_sym_module] = ACTIONS(1109), + [anon_sym_any] = ACTIONS(1109), + [anon_sym_number] = ACTIONS(1109), + [anon_sym_boolean] = ACTIONS(1109), + [anon_sym_string] = ACTIONS(1109), + [anon_sym_symbol] = ACTIONS(1109), + [anon_sym_object] = ACTIONS(1109), [sym_html_comment] = ACTIONS(5), }, - [632] = { - [sym_import] = STATE(3759), + [614] = { + [sym_import] = STATE(3644), [sym_parenthesized_expression] = STATE(1365), [sym_expression] = STATE(2044), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5873), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5873), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5780), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), [sym_member_expression] = STATE(1365), [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2990), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5873), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1109), + [anon_sym_type] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1135), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1109), + [anon_sym_BANG] = ACTIONS(1117), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1119), + [anon_sym_yield] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1125), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1117), + [anon_sym_void] = ACTIONS(1135), + [anon_sym_delete] = ACTIONS(1135), + [anon_sym_PLUS_PLUS] = ACTIONS(1137), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1143), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1109), + [anon_sym_readonly] = ACTIONS(1109), + [anon_sym_get] = ACTIONS(1109), + [anon_sym_set] = ACTIONS(1109), + [anon_sym_declare] = ACTIONS(1109), + [anon_sym_public] = ACTIONS(1109), + [anon_sym_private] = ACTIONS(1109), + [anon_sym_protected] = ACTIONS(1109), + [anon_sym_override] = ACTIONS(1109), + [anon_sym_module] = ACTIONS(1109), + [anon_sym_any] = ACTIONS(1109), + [anon_sym_number] = ACTIONS(1109), + [anon_sym_boolean] = ACTIONS(1109), + [anon_sym_string] = ACTIONS(1109), + [anon_sym_symbol] = ACTIONS(1109), + [anon_sym_object] = ACTIONS(1109), [sym_html_comment] = ACTIONS(5), }, - [633] = { - [sym_import] = STATE(3759), + [615] = { + [sym_import] = STATE(3644), [sym_parenthesized_expression] = STATE(1365), [sym_expression] = STATE(2045), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5873), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5873), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5780), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), [sym_member_expression] = STATE(1365), [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2990), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5873), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1109), + [anon_sym_type] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1135), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1109), + [anon_sym_BANG] = ACTIONS(1117), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1119), + [anon_sym_yield] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1125), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1117), + [anon_sym_void] = ACTIONS(1135), + [anon_sym_delete] = ACTIONS(1135), + [anon_sym_PLUS_PLUS] = ACTIONS(1137), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1143), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1109), + [anon_sym_readonly] = ACTIONS(1109), + [anon_sym_get] = ACTIONS(1109), + [anon_sym_set] = ACTIONS(1109), + [anon_sym_declare] = ACTIONS(1109), + [anon_sym_public] = ACTIONS(1109), + [anon_sym_private] = ACTIONS(1109), + [anon_sym_protected] = ACTIONS(1109), + [anon_sym_override] = ACTIONS(1109), + [anon_sym_module] = ACTIONS(1109), + [anon_sym_any] = ACTIONS(1109), + [anon_sym_number] = ACTIONS(1109), + [anon_sym_boolean] = ACTIONS(1109), + [anon_sym_string] = ACTIONS(1109), + [anon_sym_symbol] = ACTIONS(1109), + [anon_sym_object] = ACTIONS(1109), [sym_html_comment] = ACTIONS(5), }, - [634] = { - [sym_import] = STATE(3759), + [616] = { + [sym_import] = STATE(3644), [sym_parenthesized_expression] = STATE(1365), [sym_expression] = STATE(2046), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5873), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5873), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5780), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), [sym_member_expression] = STATE(1365), [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2990), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5873), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1109), + [anon_sym_type] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1135), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1109), + [anon_sym_BANG] = ACTIONS(1117), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1119), + [anon_sym_yield] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1125), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1117), + [anon_sym_void] = ACTIONS(1135), + [anon_sym_delete] = ACTIONS(1135), + [anon_sym_PLUS_PLUS] = ACTIONS(1137), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1143), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1109), + [anon_sym_readonly] = ACTIONS(1109), + [anon_sym_get] = ACTIONS(1109), + [anon_sym_set] = ACTIONS(1109), + [anon_sym_declare] = ACTIONS(1109), + [anon_sym_public] = ACTIONS(1109), + [anon_sym_private] = ACTIONS(1109), + [anon_sym_protected] = ACTIONS(1109), + [anon_sym_override] = ACTIONS(1109), + [anon_sym_module] = ACTIONS(1109), + [anon_sym_any] = ACTIONS(1109), + [anon_sym_number] = ACTIONS(1109), + [anon_sym_boolean] = ACTIONS(1109), + [anon_sym_string] = ACTIONS(1109), + [anon_sym_symbol] = ACTIONS(1109), + [anon_sym_object] = ACTIONS(1109), [sym_html_comment] = ACTIONS(5), }, - [635] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2047), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [617] = { + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(2184), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5596), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5596), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5594), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5596), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1287), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_void] = ACTIONS(1297), + [anon_sym_delete] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1299), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1305), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), [sym_html_comment] = ACTIONS(5), }, - [636] = { - [sym_import] = STATE(3759), + [618] = { + [sym_import] = STATE(3644), [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2049), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), + [sym_expression] = STATE(2048), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5873), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5873), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5780), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), [sym_member_expression] = STATE(1365), [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2990), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5873), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1109), + [anon_sym_type] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1135), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1109), + [anon_sym_BANG] = ACTIONS(1117), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1119), + [anon_sym_yield] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1125), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1117), + [anon_sym_void] = ACTIONS(1135), + [anon_sym_delete] = ACTIONS(1135), + [anon_sym_PLUS_PLUS] = ACTIONS(1137), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1143), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1109), + [anon_sym_readonly] = ACTIONS(1109), + [anon_sym_get] = ACTIONS(1109), + [anon_sym_set] = ACTIONS(1109), + [anon_sym_declare] = ACTIONS(1109), + [anon_sym_public] = ACTIONS(1109), + [anon_sym_private] = ACTIONS(1109), + [anon_sym_protected] = ACTIONS(1109), + [anon_sym_override] = ACTIONS(1109), + [anon_sym_module] = ACTIONS(1109), + [anon_sym_any] = ACTIONS(1109), + [anon_sym_number] = ACTIONS(1109), + [anon_sym_boolean] = ACTIONS(1109), + [anon_sym_string] = ACTIONS(1109), + [anon_sym_symbol] = ACTIONS(1109), + [anon_sym_object] = ACTIONS(1109), [sym_html_comment] = ACTIONS(5), }, - [637] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2053), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [619] = { + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1375), + [sym_expression] = STATE(2547), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5782), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5782), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5907), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1375), + [sym_subscript_expression] = STATE(1375), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5782), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1375), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, - [638] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2054), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [620] = { + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(1624), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [639] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2056), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(2103), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [621] = { + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(2215), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5596), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5596), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5594), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5596), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1287), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_void] = ACTIONS(1297), + [anon_sym_delete] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1299), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(2144), + [sym_private_property_identifier] = ACTIONS(1305), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), [sym_html_comment] = ACTIONS(5), }, - [640] = { - [sym_import] = STATE(3759), + [622] = { + [sym_import] = STATE(3644), [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2055), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), + [sym_expression] = STATE(2052), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5873), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5873), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5780), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), [sym_member_expression] = STATE(1365), [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2990), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5873), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1109), + [anon_sym_type] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1135), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1109), + [anon_sym_BANG] = ACTIONS(1117), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1119), + [anon_sym_yield] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1125), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1117), + [anon_sym_void] = ACTIONS(1135), + [anon_sym_delete] = ACTIONS(1135), + [anon_sym_PLUS_PLUS] = ACTIONS(1137), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1143), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1109), + [anon_sym_readonly] = ACTIONS(1109), + [anon_sym_get] = ACTIONS(1109), + [anon_sym_set] = ACTIONS(1109), + [anon_sym_declare] = ACTIONS(1109), + [anon_sym_public] = ACTIONS(1109), + [anon_sym_private] = ACTIONS(1109), + [anon_sym_protected] = ACTIONS(1109), + [anon_sym_override] = ACTIONS(1109), + [anon_sym_module] = ACTIONS(1109), + [anon_sym_any] = ACTIONS(1109), + [anon_sym_number] = ACTIONS(1109), + [anon_sym_boolean] = ACTIONS(1109), + [anon_sym_string] = ACTIONS(1109), + [anon_sym_symbol] = ACTIONS(1109), + [anon_sym_object] = ACTIONS(1109), [sym_html_comment] = ACTIONS(5), }, - [641] = { - [sym_import] = STATE(3759), + [623] = { + [sym_import] = STATE(3644), [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2056), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), + [sym_expression] = STATE(2053), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5873), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5873), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5780), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), [sym_member_expression] = STATE(1365), [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2990), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5873), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1109), + [anon_sym_type] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1135), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1109), + [anon_sym_BANG] = ACTIONS(1117), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1119), + [anon_sym_yield] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1125), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1117), + [anon_sym_void] = ACTIONS(1135), + [anon_sym_delete] = ACTIONS(1135), + [anon_sym_PLUS_PLUS] = ACTIONS(1137), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1143), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1109), + [anon_sym_readonly] = ACTIONS(1109), + [anon_sym_get] = ACTIONS(1109), + [anon_sym_set] = ACTIONS(1109), + [anon_sym_declare] = ACTIONS(1109), + [anon_sym_public] = ACTIONS(1109), + [anon_sym_private] = ACTIONS(1109), + [anon_sym_protected] = ACTIONS(1109), + [anon_sym_override] = ACTIONS(1109), + [anon_sym_module] = ACTIONS(1109), + [anon_sym_any] = ACTIONS(1109), + [anon_sym_number] = ACTIONS(1109), + [anon_sym_boolean] = ACTIONS(1109), + [anon_sym_string] = ACTIONS(1109), + [anon_sym_symbol] = ACTIONS(1109), + [anon_sym_object] = ACTIONS(1109), [sym_html_comment] = ACTIONS(5), }, - [642] = { - [sym_import] = STATE(3759), + [624] = { + [sym_import] = STATE(3644), [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2057), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5885), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5885), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5792), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), + [sym_expression] = STATE(2056), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5873), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5873), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5780), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), [sym_member_expression] = STATE(1365), [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2991), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5885), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2990), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5873), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1296), - [anon_sym_namespace] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_delete] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1322), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_readonly] = ACTIONS(1296), - [anon_sym_get] = ACTIONS(1296), - [anon_sym_set] = ACTIONS(1296), - [anon_sym_declare] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_protected] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_module] = ACTIONS(1296), - [anon_sym_any] = ACTIONS(1296), - [anon_sym_number] = ACTIONS(1296), - [anon_sym_boolean] = ACTIONS(1296), - [anon_sym_string] = ACTIONS(1296), - [anon_sym_symbol] = ACTIONS(1296), - [anon_sym_object] = ACTIONS(1296), - [sym_html_comment] = ACTIONS(5), - }, - [643] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2565), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1109), + [anon_sym_type] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1135), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1109), + [anon_sym_BANG] = ACTIONS(1117), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1119), + [anon_sym_yield] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1125), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1117), + [anon_sym_void] = ACTIONS(1135), + [anon_sym_delete] = ACTIONS(1135), + [anon_sym_PLUS_PLUS] = ACTIONS(1137), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(2118), + [sym_private_property_identifier] = ACTIONS(1143), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1109), + [anon_sym_readonly] = ACTIONS(1109), + [anon_sym_get] = ACTIONS(1109), + [anon_sym_set] = ACTIONS(1109), + [anon_sym_declare] = ACTIONS(1109), + [anon_sym_public] = ACTIONS(1109), + [anon_sym_private] = ACTIONS(1109), + [anon_sym_protected] = ACTIONS(1109), + [anon_sym_override] = ACTIONS(1109), + [anon_sym_module] = ACTIONS(1109), + [anon_sym_any] = ACTIONS(1109), + [anon_sym_number] = ACTIONS(1109), + [anon_sym_boolean] = ACTIONS(1109), + [anon_sym_string] = ACTIONS(1109), + [anon_sym_symbol] = ACTIONS(1109), + [anon_sym_object] = ACTIONS(1109), [sym_html_comment] = ACTIONS(5), }, - [644] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1775), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), + [625] = { + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1829), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1319), + [anon_sym_type] = ACTIONS(1319), + [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(695), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1319), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), - [sym_html_comment] = ACTIONS(5), - }, - [645] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1373), - [sym_expression] = STATE(2433), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5608), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5608), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5606), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1373), - [sym_subscript_expression] = STATE(1373), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2986), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5608), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_namespace] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_void] = ACTIONS(1396), - [anon_sym_delete] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1404), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_readonly] = ACTIONS(1370), - [anon_sym_get] = ACTIONS(1370), - [anon_sym_set] = ACTIONS(1370), - [anon_sym_declare] = ACTIONS(1370), - [anon_sym_public] = ACTIONS(1370), - [anon_sym_private] = ACTIONS(1370), - [anon_sym_protected] = ACTIONS(1370), - [anon_sym_override] = ACTIONS(1370), - [anon_sym_module] = ACTIONS(1370), - [anon_sym_any] = ACTIONS(1370), - [anon_sym_number] = ACTIONS(1370), - [anon_sym_boolean] = ACTIONS(1370), - [anon_sym_string] = ACTIONS(1370), - [anon_sym_symbol] = ACTIONS(1370), - [anon_sym_object] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(2144), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_readonly] = ACTIONS(1319), + [anon_sym_get] = ACTIONS(1319), + [anon_sym_set] = ACTIONS(1319), + [anon_sym_declare] = ACTIONS(1319), + [anon_sym_public] = ACTIONS(1319), + [anon_sym_private] = ACTIONS(1319), + [anon_sym_protected] = ACTIONS(1319), + [anon_sym_override] = ACTIONS(1319), + [anon_sym_module] = ACTIONS(1319), + [anon_sym_any] = ACTIONS(1319), + [anon_sym_number] = ACTIONS(1319), + [anon_sym_boolean] = ACTIONS(1319), + [anon_sym_string] = ACTIONS(1319), + [anon_sym_symbol] = ACTIONS(1319), + [anon_sym_object] = ACTIONS(1319), [sym_html_comment] = ACTIONS(5), }, - [646] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(2323), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), + [626] = { + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1319), + [anon_sym_type] = ACTIONS(1319), + [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(695), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1319), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_readonly] = ACTIONS(1319), + [anon_sym_get] = ACTIONS(1319), + [anon_sym_set] = ACTIONS(1319), + [anon_sym_declare] = ACTIONS(1319), + [anon_sym_public] = ACTIONS(1319), + [anon_sym_private] = ACTIONS(1319), + [anon_sym_protected] = ACTIONS(1319), + [anon_sym_override] = ACTIONS(1319), + [anon_sym_module] = ACTIONS(1319), + [anon_sym_any] = ACTIONS(1319), + [anon_sym_number] = ACTIONS(1319), + [anon_sym_boolean] = ACTIONS(1319), + [anon_sym_string] = ACTIONS(1319), + [anon_sym_symbol] = ACTIONS(1319), + [anon_sym_object] = ACTIONS(1319), [sym_html_comment] = ACTIONS(5), }, - [647] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1432), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5810), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5810), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1432), - [sym_subscript_expression] = STATE(1432), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5810), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1432), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(2197), - [anon_sym_export] = ACTIONS(2199), - [anon_sym_type] = ACTIONS(2199), - [anon_sym_namespace] = ACTIONS(2201), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2199), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2203), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2205), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(2207), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2199), - [anon_sym_readonly] = ACTIONS(2199), - [anon_sym_get] = ACTIONS(2199), - [anon_sym_set] = ACTIONS(2199), - [anon_sym_declare] = ACTIONS(2199), - [anon_sym_public] = ACTIONS(2199), - [anon_sym_private] = ACTIONS(2199), - [anon_sym_protected] = ACTIONS(2199), - [anon_sym_override] = ACTIONS(2199), - [anon_sym_module] = ACTIONS(2199), - [anon_sym_any] = ACTIONS(2199), - [anon_sym_number] = ACTIONS(2199), - [anon_sym_boolean] = ACTIONS(2199), - [anon_sym_string] = ACTIONS(2199), - [anon_sym_symbol] = ACTIONS(2199), - [anon_sym_object] = ACTIONS(2199), + [627] = { + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(2443), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5596), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5596), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5594), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5596), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1287), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_void] = ACTIONS(1297), + [anon_sym_delete] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1299), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1305), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), [sym_html_comment] = ACTIONS(5), }, - [648] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2561), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [628] = { + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1365), + [sym_expression] = STATE(2054), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5873), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5873), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5780), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1365), + [sym_subscript_expression] = STATE(1365), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2990), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5873), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1365), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1109), + [anon_sym_type] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1135), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1109), + [anon_sym_BANG] = ACTIONS(1117), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1119), + [anon_sym_yield] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1125), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1117), + [anon_sym_void] = ACTIONS(1135), + [anon_sym_delete] = ACTIONS(1135), + [anon_sym_PLUS_PLUS] = ACTIONS(1137), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1143), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1109), + [anon_sym_readonly] = ACTIONS(1109), + [anon_sym_get] = ACTIONS(1109), + [anon_sym_set] = ACTIONS(1109), + [anon_sym_declare] = ACTIONS(1109), + [anon_sym_public] = ACTIONS(1109), + [anon_sym_private] = ACTIONS(1109), + [anon_sym_protected] = ACTIONS(1109), + [anon_sym_override] = ACTIONS(1109), + [anon_sym_module] = ACTIONS(1109), + [anon_sym_any] = ACTIONS(1109), + [anon_sym_number] = ACTIONS(1109), + [anon_sym_boolean] = ACTIONS(1109), + [anon_sym_string] = ACTIONS(1109), + [anon_sym_symbol] = ACTIONS(1109), + [anon_sym_object] = ACTIONS(1109), [sym_html_comment] = ACTIONS(5), }, - [649] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1758), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [629] = { + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2548), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(2170), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), [sym_html_comment] = ACTIONS(5), }, - [650] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1854), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [630] = { + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(1699), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(2190), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [651] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2282), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [631] = { + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1365), + [sym_expression] = STATE(1855), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5873), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5873), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5780), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1365), + [sym_subscript_expression] = STATE(1365), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2990), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5873), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1365), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1109), + [anon_sym_type] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1135), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1109), + [anon_sym_BANG] = ACTIONS(1117), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1119), + [anon_sym_yield] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1125), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1117), + [anon_sym_void] = ACTIONS(1135), + [anon_sym_delete] = ACTIONS(1135), + [anon_sym_PLUS_PLUS] = ACTIONS(1137), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1143), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1109), + [anon_sym_readonly] = ACTIONS(1109), + [anon_sym_get] = ACTIONS(1109), + [anon_sym_set] = ACTIONS(1109), + [anon_sym_declare] = ACTIONS(1109), + [anon_sym_public] = ACTIONS(1109), + [anon_sym_private] = ACTIONS(1109), + [anon_sym_protected] = ACTIONS(1109), + [anon_sym_override] = ACTIONS(1109), + [anon_sym_module] = ACTIONS(1109), + [anon_sym_any] = ACTIONS(1109), + [anon_sym_number] = ACTIONS(1109), + [anon_sym_boolean] = ACTIONS(1109), + [anon_sym_string] = ACTIONS(1109), + [anon_sym_symbol] = ACTIONS(1109), + [anon_sym_object] = ACTIONS(1109), [sym_html_comment] = ACTIONS(5), }, - [652] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1413), - [sym_expression] = STATE(2384), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5930), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5930), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5844), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2976), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5930), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1413), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1174), - [anon_sym_type] = ACTIONS(1174), - [anon_sym_namespace] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1186), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1196), - [anon_sym_delete] = ACTIONS(1196), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1200), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1174), - [anon_sym_readonly] = ACTIONS(1174), - [anon_sym_get] = ACTIONS(1174), - [anon_sym_set] = ACTIONS(1174), - [anon_sym_declare] = ACTIONS(1174), - [anon_sym_public] = ACTIONS(1174), - [anon_sym_private] = ACTIONS(1174), - [anon_sym_protected] = ACTIONS(1174), - [anon_sym_override] = ACTIONS(1174), - [anon_sym_module] = ACTIONS(1174), - [anon_sym_any] = ACTIONS(1174), - [anon_sym_number] = ACTIONS(1174), - [anon_sym_boolean] = ACTIONS(1174), - [anon_sym_string] = ACTIONS(1174), - [anon_sym_symbol] = ACTIONS(1174), - [anon_sym_object] = ACTIONS(1174), + [632] = { + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2394), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [653] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1424), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5634), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5634), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1424), - [sym_subscript_expression] = STATE(1424), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5634), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1424), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(2209), - [anon_sym_export] = ACTIONS(2211), - [anon_sym_type] = ACTIONS(2211), - [anon_sym_namespace] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2211), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2215), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2217), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(2219), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2211), - [anon_sym_readonly] = ACTIONS(2211), - [anon_sym_get] = ACTIONS(2211), - [anon_sym_set] = ACTIONS(2211), - [anon_sym_declare] = ACTIONS(2211), - [anon_sym_public] = ACTIONS(2211), - [anon_sym_private] = ACTIONS(2211), - [anon_sym_protected] = ACTIONS(2211), - [anon_sym_override] = ACTIONS(2211), - [anon_sym_module] = ACTIONS(2211), - [anon_sym_any] = ACTIONS(2211), - [anon_sym_number] = ACTIONS(2211), - [anon_sym_boolean] = ACTIONS(2211), - [anon_sym_string] = ACTIONS(2211), - [anon_sym_symbol] = ACTIONS(2211), - [anon_sym_object] = ACTIONS(2211), + [633] = { + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(1699), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [654] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1336), - [sym_expression] = STATE(1776), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5605), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5605), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5818), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2949), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5605), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1336), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1442), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(700), + [634] = { + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(1708), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [635] = { + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2395), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [636] = { + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1374), + [sym_expression] = STATE(2187), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5596), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5596), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5594), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2969), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5596), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1287), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_void] = ACTIONS(1297), + [anon_sym_delete] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1299), + [anon_sym_DASH_DASH] = ACTIONS(1299), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1305), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [sym_html_comment] = ACTIONS(5), + }, + [637] = { + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1319), + [anon_sym_type] = ACTIONS(1319), + [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(695), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1068), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1319), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1080), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_override] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1068), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_readonly] = ACTIONS(1319), + [anon_sym_get] = ACTIONS(1319), + [anon_sym_set] = ACTIONS(1319), + [anon_sym_declare] = ACTIONS(1319), + [anon_sym_public] = ACTIONS(1319), + [anon_sym_private] = ACTIONS(1319), + [anon_sym_protected] = ACTIONS(1319), + [anon_sym_override] = ACTIONS(1319), + [anon_sym_module] = ACTIONS(1319), + [anon_sym_any] = ACTIONS(1319), + [anon_sym_number] = ACTIONS(1319), + [anon_sym_boolean] = ACTIONS(1319), + [anon_sym_string] = ACTIONS(1319), + [anon_sym_symbol] = ACTIONS(1319), + [anon_sym_object] = ACTIONS(1319), [sym_html_comment] = ACTIONS(5), }, - [655] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1377), - [sym_expression] = STATE(2556), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5794), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5794), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5718), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1377), - [sym_subscript_expression] = STATE(1377), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2971), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5794), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(1472), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1476), - [anon_sym_using] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_delete] = ACTIONS(1152), - [anon_sym_PLUS_PLUS] = ACTIONS(1154), - [anon_sym_DASH_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(1160), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_object] = ACTIONS(1126), + [638] = { + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1427), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5798), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5798), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1427), + [sym_subscript_expression] = STATE(1427), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5798), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1427), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(2192), + [anon_sym_export] = ACTIONS(2194), + [anon_sym_type] = ACTIONS(2194), + [anon_sym_namespace] = ACTIONS(2196), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(2194), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(2198), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2200), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(2202), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2194), + [anon_sym_readonly] = ACTIONS(2194), + [anon_sym_get] = ACTIONS(2194), + [anon_sym_set] = ACTIONS(2194), + [anon_sym_declare] = ACTIONS(2194), + [anon_sym_public] = ACTIONS(2194), + [anon_sym_private] = ACTIONS(2194), + [anon_sym_protected] = ACTIONS(2194), + [anon_sym_override] = ACTIONS(2194), + [anon_sym_module] = ACTIONS(2194), + [anon_sym_any] = ACTIONS(2194), + [anon_sym_number] = ACTIONS(2194), + [anon_sym_boolean] = ACTIONS(2194), + [anon_sym_string] = ACTIONS(2194), + [anon_sym_symbol] = ACTIONS(2194), + [anon_sym_object] = ACTIONS(2194), [sym_html_comment] = ACTIONS(5), }, - [656] = { - [sym_import] = STATE(3759), - [sym_parenthesized_expression] = STATE(1428), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(1486), - [sym_yield_expression] = STATE(1640), - [sym_object] = STATE(1614), - [sym_object_pattern] = STATE(5910), - [sym_array] = STATE(1614), - [sym_array_pattern] = STATE(5910), - [sym_glimmer_template] = STATE(1640), - [sym_jsx_element] = STATE(1640), - [sym_jsx_opening_element] = STATE(3196), - [sym_jsx_self_closing_element] = STATE(1640), - [sym_class] = STATE(1614), - [sym_function_expression] = STATE(1614), - [sym_generator_function] = STATE(1614), - [sym_arrow_function] = STATE(1614), - [sym__call_signature] = STATE(5856), - [sym_call_expression] = STATE(1614), - [sym_new_expression] = STATE(1576), - [sym_await_expression] = STATE(1640), - [sym_member_expression] = STATE(1428), - [sym_subscript_expression] = STATE(1428), - [sym_assignment_expression] = STATE(1640), - [sym__augmented_assignment_lhs] = STATE(2957), - [sym_augmented_assignment_expression] = STATE(1640), - [sym__destructuring_pattern] = STATE(5910), - [sym_ternary_expression] = STATE(1640), - [sym_binary_expression] = STATE(1640), - [sym_unary_expression] = STATE(1640), - [sym_update_expression] = STATE(1640), - [sym_string] = STATE(1614), - [sym_template_string] = STATE(1614), - [sym_regex] = STATE(1614), - [sym_meta_property] = STATE(1614), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1428), - [sym_as_expression] = STATE(1640), - [sym_satisfies_expression] = STATE(1640), - [sym_instantiation_expression] = STATE(1640), - [sym_internal_module] = STATE(1640), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4582), - [sym_identifier] = ACTIONS(2221), - [anon_sym_export] = ACTIONS(2223), - [anon_sym_type] = ACTIONS(2223), - [anon_sym_namespace] = ACTIONS(2225), - [anon_sym_LBRACE] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(186), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2223), - [anon_sym_BANG] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(827), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(2227), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2229), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_SLASH] = ACTIONS(646), - [anon_sym_LT] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(182), - [anon_sym_void] = ACTIONS(186), - [anon_sym_delete] = ACTIONS(186), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DASH_DASH] = ACTIONS(721), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(835), - [sym_number] = ACTIONS(749), - [sym_private_property_identifier] = ACTIONS(195), - [sym_this] = ACTIONS(199), - [sym_super] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(2231), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2223), - [anon_sym_readonly] = ACTIONS(2223), - [anon_sym_get] = ACTIONS(2223), - [anon_sym_set] = ACTIONS(2223), - [anon_sym_declare] = ACTIONS(2223), - [anon_sym_public] = ACTIONS(2223), - [anon_sym_private] = ACTIONS(2223), - [anon_sym_protected] = ACTIONS(2223), - [anon_sym_override] = ACTIONS(2223), - [anon_sym_module] = ACTIONS(2223), - [anon_sym_any] = ACTIONS(2223), - [anon_sym_number] = ACTIONS(2223), - [anon_sym_boolean] = ACTIONS(2223), - [anon_sym_string] = ACTIONS(2223), - [anon_sym_symbol] = ACTIONS(2223), - [anon_sym_object] = ACTIONS(2223), + [639] = { + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1375), + [sym_expression] = STATE(2526), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5782), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5782), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5907), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1375), + [sym_subscript_expression] = STATE(1375), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5782), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1375), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, - [657] = { - [sym_import] = STATE(3760), - [sym_parenthesized_expression] = STATE(1330), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(1801), - [sym_yield_expression] = STATE(2062), - [sym_object] = STATE(2080), - [sym_object_pattern] = STATE(5895), - [sym_array] = STATE(2080), - [sym_array_pattern] = STATE(5895), - [sym_glimmer_template] = STATE(2062), - [sym_jsx_element] = STATE(2062), - [sym_jsx_opening_element] = STATE(3197), - [sym_jsx_self_closing_element] = STATE(2062), - [sym_class] = STATE(2080), - [sym_function_expression] = STATE(2080), - [sym_generator_function] = STATE(2080), - [sym_arrow_function] = STATE(2080), - [sym__call_signature] = STATE(5893), - [sym_call_expression] = STATE(2080), - [sym_new_expression] = STATE(1939), - [sym_await_expression] = STATE(2062), - [sym_member_expression] = STATE(1330), - [sym_subscript_expression] = STATE(1330), - [sym_assignment_expression] = STATE(2062), - [sym__augmented_assignment_lhs] = STATE(2994), - [sym_augmented_assignment_expression] = STATE(2062), - [sym__destructuring_pattern] = STATE(5895), - [sym_ternary_expression] = STATE(2062), - [sym_binary_expression] = STATE(2062), - [sym_unary_expression] = STATE(2062), - [sym_update_expression] = STATE(2062), - [sym_string] = STATE(2080), - [sym_template_string] = STATE(2080), - [sym_regex] = STATE(2080), - [sym_meta_property] = STATE(2080), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3849), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(2062), - [sym_satisfies_expression] = STATE(2062), - [sym_instantiation_expression] = STATE(2062), - [sym_internal_module] = STATE(2062), - [sym_type_parameters] = STATE(5338), - [aux_sym_export_statement_repeat1] = STATE(4577), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1260), - [anon_sym_type] = ACTIONS(1260), - [anon_sym_namespace] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(700), - [anon_sym_typeof] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(704), - [anon_sym_let] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1266), + [640] = { + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1764), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1319), + [anon_sym_type] = ACTIONS(1319), + [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1319), + [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(711), - [anon_sym_async] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(715), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_void] = ACTIONS(1282), - [anon_sym_delete] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1286), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_readonly] = ACTIONS(1260), - [anon_sym_get] = ACTIONS(1260), - [anon_sym_set] = ACTIONS(1260), - [anon_sym_declare] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_protected] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_module] = ACTIONS(1260), - [anon_sym_any] = ACTIONS(1260), - [anon_sym_number] = ACTIONS(1260), - [anon_sym_boolean] = ACTIONS(1260), - [anon_sym_string] = ACTIONS(1260), - [anon_sym_symbol] = ACTIONS(1260), - [anon_sym_object] = ACTIONS(1260), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_readonly] = ACTIONS(1319), + [anon_sym_get] = ACTIONS(1319), + [anon_sym_set] = ACTIONS(1319), + [anon_sym_declare] = ACTIONS(1319), + [anon_sym_public] = ACTIONS(1319), + [anon_sym_private] = ACTIONS(1319), + [anon_sym_protected] = ACTIONS(1319), + [anon_sym_override] = ACTIONS(1319), + [anon_sym_module] = ACTIONS(1319), + [anon_sym_any] = ACTIONS(1319), + [anon_sym_number] = ACTIONS(1319), + [anon_sym_boolean] = ACTIONS(1319), + [anon_sym_string] = ACTIONS(1319), + [anon_sym_symbol] = ACTIONS(1319), + [anon_sym_object] = ACTIONS(1319), [sym_html_comment] = ACTIONS(5), }, - [658] = { - [sym_namespace_export] = STATE(5382), - [sym_export_clause] = STATE(4519), - [sym_declaration] = STATE(854), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_class_declaration] = STATE(789), - [sym_function_declaration] = STATE(789), - [sym_generator_function_declaration] = STATE(789), - [sym_decorator] = STATE(1267), - [sym_function_signature] = STATE(789), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(890), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [aux_sym_export_statement_repeat1] = STATE(4426), - [aux_sym_object_repeat1] = STATE(5173), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [anon_sym_STAR] = ACTIONS(2233), - [anon_sym_default] = ACTIONS(2235), - [anon_sym_type] = ACTIONS(2237), - [anon_sym_EQ] = ACTIONS(2239), - [anon_sym_as] = ACTIONS(2241), - [anon_sym_namespace] = ACTIONS(2243), - [anon_sym_LBRACE] = ACTIONS(2245), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(729), - [anon_sym_import] = ACTIONS(2247), - [anon_sym_var] = ACTIONS(2249), - [anon_sym_let] = ACTIONS(2251), - [anon_sym_const] = ACTIONS(2253), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_class] = ACTIONS(2258), - [anon_sym_async] = ACTIONS(2260), - [anon_sym_function] = ACTIONS(2262), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(2267), - [anon_sym_module] = ACTIONS(2269), - [anon_sym_abstract] = ACTIONS(2271), - [anon_sym_satisfies] = ACTIONS(161), - [anon_sym_interface] = ACTIONS(2273), - [anon_sym_enum] = ACTIONS(2275), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [641] = { + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1382), + [sym_expression] = STATE(2507), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5929), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5929), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5928), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1382), + [sym_subscript_expression] = STATE(1382), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2964), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5929), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1382), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), [sym_html_comment] = ACTIONS(5), }, - [659] = { - [sym_namespace_export] = STATE(5382), - [sym_export_clause] = STATE(4519), - [sym_declaration] = STATE(854), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_class_declaration] = STATE(789), - [sym_function_declaration] = STATE(789), - [sym_generator_function_declaration] = STATE(789), - [sym_decorator] = STATE(1267), - [sym_function_signature] = STATE(789), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(890), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [aux_sym_export_statement_repeat1] = STATE(4426), - [aux_sym_object_repeat1] = STATE(4673), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [anon_sym_STAR] = ACTIONS(2233), - [anon_sym_default] = ACTIONS(2235), - [anon_sym_type] = ACTIONS(2237), - [anon_sym_EQ] = ACTIONS(2239), - [anon_sym_as] = ACTIONS(2241), - [anon_sym_namespace] = ACTIONS(2243), - [anon_sym_LBRACE] = ACTIONS(2245), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(702), - [anon_sym_import] = ACTIONS(2247), - [anon_sym_var] = ACTIONS(2249), - [anon_sym_let] = ACTIONS(2251), - [anon_sym_const] = ACTIONS(2253), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_class] = ACTIONS(2258), - [anon_sym_async] = ACTIONS(2260), - [anon_sym_function] = ACTIONS(2262), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(2267), - [anon_sym_module] = ACTIONS(2269), - [anon_sym_abstract] = ACTIONS(2271), - [anon_sym_satisfies] = ACTIONS(161), - [anon_sym_interface] = ACTIONS(2273), - [anon_sym_enum] = ACTIONS(2275), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [642] = { + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1822), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1319), + [anon_sym_type] = ACTIONS(1319), + [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1319), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_readonly] = ACTIONS(1319), + [anon_sym_get] = ACTIONS(1319), + [anon_sym_set] = ACTIONS(1319), + [anon_sym_declare] = ACTIONS(1319), + [anon_sym_public] = ACTIONS(1319), + [anon_sym_private] = ACTIONS(1319), + [anon_sym_protected] = ACTIONS(1319), + [anon_sym_override] = ACTIONS(1319), + [anon_sym_module] = ACTIONS(1319), + [anon_sym_any] = ACTIONS(1319), + [anon_sym_number] = ACTIONS(1319), + [anon_sym_boolean] = ACTIONS(1319), + [anon_sym_string] = ACTIONS(1319), + [anon_sym_symbol] = ACTIONS(1319), + [anon_sym_object] = ACTIONS(1319), + [sym_html_comment] = ACTIONS(5), + }, + [643] = { + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1195), + [sym_expression] = STATE(2548), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5676), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5676), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1195), + [sym_subscript_expression] = STATE(1195), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5676), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_type] = ACTIONS(812), + [anon_sym_namespace] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(812), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(826), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(828), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(2190), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(832), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [anon_sym_declare] = ACTIONS(812), + [anon_sym_public] = ACTIONS(812), + [anon_sym_private] = ACTIONS(812), + [anon_sym_protected] = ACTIONS(812), + [anon_sym_override] = ACTIONS(812), + [anon_sym_module] = ACTIONS(812), + [anon_sym_any] = ACTIONS(812), + [anon_sym_number] = ACTIONS(812), + [anon_sym_boolean] = ACTIONS(812), + [anon_sym_string] = ACTIONS(812), + [anon_sym_symbol] = ACTIONS(812), + [anon_sym_object] = ACTIONS(812), + [sym_html_comment] = ACTIONS(5), + }, + [644] = { + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(1781), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5881), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, + [645] = { + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5881), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, + [646] = { + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2402), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [647] = { + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1375), + [sym_expression] = STATE(2282), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5782), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5782), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5907), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1375), + [sym_subscript_expression] = STATE(1375), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5782), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1375), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1061), + [sym_html_comment] = ACTIONS(5), + }, + [648] = { + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1406), + [sym_expression] = STATE(2442), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5918), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5918), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5764), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1406), + [sym_subscript_expression] = STATE(1406), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2954), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5918), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1406), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1223), + [anon_sym_type] = ACTIONS(1223), + [anon_sym_namespace] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1245), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1223), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1231), + [anon_sym_yield] = ACTIONS(1233), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1235), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_void] = ACTIONS(1245), + [anon_sym_delete] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(1247), + [anon_sym_DASH_DASH] = ACTIONS(1247), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1249), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1223), + [anon_sym_readonly] = ACTIONS(1223), + [anon_sym_get] = ACTIONS(1223), + [anon_sym_set] = ACTIONS(1223), + [anon_sym_declare] = ACTIONS(1223), + [anon_sym_public] = ACTIONS(1223), + [anon_sym_private] = ACTIONS(1223), + [anon_sym_protected] = ACTIONS(1223), + [anon_sym_override] = ACTIONS(1223), + [anon_sym_module] = ACTIONS(1223), + [anon_sym_any] = ACTIONS(1223), + [anon_sym_number] = ACTIONS(1223), + [anon_sym_boolean] = ACTIONS(1223), + [anon_sym_string] = ACTIONS(1223), + [anon_sym_symbol] = ACTIONS(1223), + [anon_sym_object] = ACTIONS(1223), + [sym_html_comment] = ACTIONS(5), + }, + [649] = { + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1426), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5622), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5622), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1426), + [sym_subscript_expression] = STATE(1426), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5622), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1426), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(2204), + [anon_sym_export] = ACTIONS(2206), + [anon_sym_type] = ACTIONS(2206), + [anon_sym_namespace] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(2206), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(2210), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2212), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(2214), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2206), + [anon_sym_readonly] = ACTIONS(2206), + [anon_sym_get] = ACTIONS(2206), + [anon_sym_set] = ACTIONS(2206), + [anon_sym_declare] = ACTIONS(2206), + [anon_sym_public] = ACTIONS(2206), + [anon_sym_private] = ACTIONS(2206), + [anon_sym_protected] = ACTIONS(2206), + [anon_sym_override] = ACTIONS(2206), + [anon_sym_module] = ACTIONS(2206), + [anon_sym_any] = ACTIONS(2206), + [anon_sym_number] = ACTIONS(2206), + [anon_sym_boolean] = ACTIONS(2206), + [anon_sym_string] = ACTIONS(2206), + [anon_sym_symbol] = ACTIONS(2206), + [anon_sym_object] = ACTIONS(2206), + [sym_html_comment] = ACTIONS(5), + }, + [650] = { + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(1978), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5881), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2996), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, + [651] = { + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1375), + [sym_expression] = STATE(2520), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5782), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5782), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5907), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1375), + [sym_subscript_expression] = STATE(1375), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5782), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1375), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1061), + [sym_html_comment] = ACTIONS(5), + }, + [652] = { + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1775), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1319), + [anon_sym_type] = ACTIONS(1319), + [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1319), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_readonly] = ACTIONS(1319), + [anon_sym_get] = ACTIONS(1319), + [anon_sym_set] = ACTIONS(1319), + [anon_sym_declare] = ACTIONS(1319), + [anon_sym_public] = ACTIONS(1319), + [anon_sym_private] = ACTIONS(1319), + [anon_sym_protected] = ACTIONS(1319), + [anon_sym_override] = ACTIONS(1319), + [anon_sym_module] = ACTIONS(1319), + [anon_sym_any] = ACTIONS(1319), + [anon_sym_number] = ACTIONS(1319), + [anon_sym_boolean] = ACTIONS(1319), + [anon_sym_string] = ACTIONS(1319), + [anon_sym_symbol] = ACTIONS(1319), + [anon_sym_object] = ACTIONS(1319), + [sym_html_comment] = ACTIONS(5), + }, + [653] = { + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1794), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1319), + [anon_sym_type] = ACTIONS(1319), + [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1319), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_readonly] = ACTIONS(1319), + [anon_sym_get] = ACTIONS(1319), + [anon_sym_set] = ACTIONS(1319), + [anon_sym_declare] = ACTIONS(1319), + [anon_sym_public] = ACTIONS(1319), + [anon_sym_private] = ACTIONS(1319), + [anon_sym_protected] = ACTIONS(1319), + [anon_sym_override] = ACTIONS(1319), + [anon_sym_module] = ACTIONS(1319), + [anon_sym_any] = ACTIONS(1319), + [anon_sym_number] = ACTIONS(1319), + [anon_sym_boolean] = ACTIONS(1319), + [anon_sym_string] = ACTIONS(1319), + [anon_sym_symbol] = ACTIONS(1319), + [anon_sym_object] = ACTIONS(1319), + [sym_html_comment] = ACTIONS(5), + }, + [654] = { + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1430), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5898), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5898), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5813), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1430), + [sym_subscript_expression] = STATE(1430), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2923), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5898), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1430), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(2216), + [anon_sym_export] = ACTIONS(2218), + [anon_sym_type] = ACTIONS(2218), + [anon_sym_namespace] = ACTIONS(2220), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_typeof] = ACTIONS(183), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(2218), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(2222), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2224), + [anon_sym_using] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(183), + [anon_sym_DASH] = ACTIONS(183), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(179), + [anon_sym_void] = ACTIONS(183), + [anon_sym_delete] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(2226), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2218), + [anon_sym_readonly] = ACTIONS(2218), + [anon_sym_get] = ACTIONS(2218), + [anon_sym_set] = ACTIONS(2218), + [anon_sym_declare] = ACTIONS(2218), + [anon_sym_public] = ACTIONS(2218), + [anon_sym_private] = ACTIONS(2218), + [anon_sym_protected] = ACTIONS(2218), + [anon_sym_override] = ACTIONS(2218), + [anon_sym_module] = ACTIONS(2218), + [anon_sym_any] = ACTIONS(2218), + [anon_sym_number] = ACTIONS(2218), + [anon_sym_boolean] = ACTIONS(2218), + [anon_sym_string] = ACTIONS(2218), + [anon_sym_symbol] = ACTIONS(2218), + [anon_sym_object] = ACTIONS(2218), + [sym_html_comment] = ACTIONS(5), + }, + [655] = { + [sym_import] = STATE(3555), + [sym_parenthesized_expression] = STATE(1337), + [sym_expression] = STATE(1838), + [sym_primary_expression] = STATE(1756), + [sym_yield_expression] = STATE(2126), + [sym_object] = STATE(2272), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(2272), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(2126), + [sym_jsx_opening_element] = STATE(3238), + [sym_jsx_self_closing_element] = STATE(2126), + [sym_class] = STATE(2272), + [sym_function_expression] = STATE(2272), + [sym_generator_function] = STATE(2272), + [sym_arrow_function] = STATE(2272), + [sym__call_signature] = STATE(5983), + [sym_call_expression] = STATE(2272), + [sym_new_expression] = STATE(1872), + [sym_await_expression] = STATE(2126), + [sym_member_expression] = STATE(1337), + [sym_subscript_expression] = STATE(1337), + [sym_assignment_expression] = STATE(2126), + [sym__augmented_assignment_lhs] = STATE(2910), + [sym_augmented_assignment_expression] = STATE(2126), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(2126), + [sym_binary_expression] = STATE(2126), + [sym_unary_expression] = STATE(2126), + [sym_update_expression] = STATE(2126), + [sym_string] = STATE(2272), + [sym_template_string] = STATE(2272), + [sym_regex] = STATE(2272), + [sym_meta_property] = STATE(2272), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(2126), + [sym_satisfies_expression] = STATE(2126), + [sym_instantiation_expression] = STATE(2126), + [sym_internal_module] = STATE(2126), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1319), + [anon_sym_type] = ACTIONS(1319), + [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1319), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1319), + [anon_sym_readonly] = ACTIONS(1319), + [anon_sym_get] = ACTIONS(1319), + [anon_sym_set] = ACTIONS(1319), + [anon_sym_declare] = ACTIONS(1319), + [anon_sym_public] = ACTIONS(1319), + [anon_sym_private] = ACTIONS(1319), + [anon_sym_protected] = ACTIONS(1319), + [anon_sym_override] = ACTIONS(1319), + [anon_sym_module] = ACTIONS(1319), + [anon_sym_any] = ACTIONS(1319), + [anon_sym_number] = ACTIONS(1319), + [anon_sym_boolean] = ACTIONS(1319), + [anon_sym_string] = ACTIONS(1319), + [anon_sym_symbol] = ACTIONS(1319), + [anon_sym_object] = ACTIONS(1319), + [sym_html_comment] = ACTIONS(5), + }, + [656] = { + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1375), + [sym_expression] = STATE(2557), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5782), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5782), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5907), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1375), + [sym_subscript_expression] = STATE(1375), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2943), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5782), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1375), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1061), + [sym_html_comment] = ACTIONS(5), + }, + [657] = { + [sym_import] = STATE(3644), + [sym_parenthesized_expression] = STATE(1262), + [sym_expression] = STATE(2216), + [sym_primary_expression] = STATE(1471), + [sym_yield_expression] = STATE(1674), + [sym_object] = STATE(1673), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1673), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1674), + [sym_jsx_opening_element] = STATE(3199), + [sym_jsx_self_closing_element] = STATE(1674), + [sym_class] = STATE(1673), + [sym_function_expression] = STATE(1673), + [sym_generator_function] = STATE(1673), + [sym_arrow_function] = STATE(1673), + [sym__call_signature] = STATE(5666), + [sym_call_expression] = STATE(1673), + [sym_new_expression] = STATE(1511), + [sym_await_expression] = STATE(1674), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1674), + [sym__augmented_assignment_lhs] = STATE(2902), + [sym_augmented_assignment_expression] = STATE(1674), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1674), + [sym_binary_expression] = STATE(1674), + [sym_unary_expression] = STATE(1674), + [sym_update_expression] = STATE(1674), + [sym_string] = STATE(1673), + [sym_template_string] = STATE(1673), + [sym_regex] = STATE(1673), + [sym_meta_property] = STATE(1673), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3848), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1674), + [sym_satisfies_expression] = STATE(1674), + [sym_instantiation_expression] = STATE(1674), + [sym_internal_module] = STATE(1674), + [sym_type_parameters] = STATE(5231), + [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_await] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_class] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_LT] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(647), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_number] = ACTIONS(744), + [sym_private_property_identifier] = ACTIONS(649), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [658] = { + [sym_namespace_export] = STATE(5548), + [sym_export_clause] = STATE(4473), + [sym_declaration] = STATE(885), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_class_declaration] = STATE(852), + [sym_function_declaration] = STATE(852), + [sym_generator_function_declaration] = STATE(852), + [sym_decorator] = STATE(1290), + [sym_function_signature] = STATE(852), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(811), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [aux_sym_export_statement_repeat1] = STATE(4284), + [aux_sym_object_repeat1] = STATE(5191), + [aux_sym_object_pattern_repeat1] = STATE(5131), + [anon_sym_STAR] = ACTIONS(2228), + [anon_sym_default] = ACTIONS(2230), + [anon_sym_type] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(2234), + [anon_sym_as] = ACTIONS(2236), + [anon_sym_namespace] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(2240), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_import] = ACTIONS(2242), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2246), + [anon_sym_const] = ACTIONS(2248), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_class] = ACTIONS(2253), + [anon_sym_async] = ACTIONS(2255), + [anon_sym_function] = ACTIONS(2257), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(2262), + [anon_sym_module] = ACTIONS(2264), + [anon_sym_abstract] = ACTIONS(2266), + [anon_sym_satisfies] = ACTIONS(158), + [anon_sym_interface] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2270), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), + [sym_html_comment] = ACTIONS(5), + }, + [659] = { + [sym_namespace_export] = STATE(5548), + [sym_export_clause] = STATE(4473), + [sym_declaration] = STATE(885), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_class_declaration] = STATE(852), + [sym_function_declaration] = STATE(852), + [sym_generator_function_declaration] = STATE(852), + [sym_decorator] = STATE(1290), + [sym_function_signature] = STATE(852), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(811), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [aux_sym_export_statement_repeat1] = STATE(4284), + [aux_sym_object_repeat1] = STATE(5191), + [aux_sym_object_pattern_repeat1] = STATE(5131), + [anon_sym_STAR] = ACTIONS(2228), + [anon_sym_default] = ACTIONS(2230), + [anon_sym_type] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(2234), + [anon_sym_as] = ACTIONS(2236), + [anon_sym_namespace] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(2240), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_import] = ACTIONS(2242), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2246), + [anon_sym_const] = ACTIONS(2248), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_class] = ACTIONS(2253), + [anon_sym_async] = ACTIONS(2255), + [anon_sym_function] = ACTIONS(2257), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(2262), + [anon_sym_module] = ACTIONS(2264), + [anon_sym_abstract] = ACTIONS(2266), + [anon_sym_satisfies] = ACTIONS(158), + [anon_sym_interface] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2270), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [660] = { - [sym_namespace_export] = STATE(5382), - [sym_export_clause] = STATE(4519), - [sym_declaration] = STATE(854), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_class_declaration] = STATE(789), - [sym_function_declaration] = STATE(789), - [sym_generator_function_declaration] = STATE(789), - [sym_decorator] = STATE(1267), - [sym_function_signature] = STATE(789), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(890), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [aux_sym_export_statement_repeat1] = STATE(4426), - [aux_sym_object_repeat1] = STATE(5173), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [anon_sym_STAR] = ACTIONS(2233), - [anon_sym_default] = ACTIONS(2235), - [anon_sym_type] = ACTIONS(2237), - [anon_sym_EQ] = ACTIONS(2239), - [anon_sym_as] = ACTIONS(2241), - [anon_sym_namespace] = ACTIONS(2243), - [anon_sym_LBRACE] = ACTIONS(2245), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(727), - [anon_sym_import] = ACTIONS(2247), - [anon_sym_var] = ACTIONS(2249), - [anon_sym_let] = ACTIONS(2251), - [anon_sym_const] = ACTIONS(2253), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_class] = ACTIONS(2258), - [anon_sym_async] = ACTIONS(2260), - [anon_sym_function] = ACTIONS(2262), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(2267), - [anon_sym_module] = ACTIONS(2269), - [anon_sym_abstract] = ACTIONS(2271), - [anon_sym_satisfies] = ACTIONS(161), - [anon_sym_interface] = ACTIONS(2273), - [anon_sym_enum] = ACTIONS(2275), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_namespace_export] = STATE(5548), + [sym_export_clause] = STATE(4473), + [sym_declaration] = STATE(885), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_class_declaration] = STATE(852), + [sym_function_declaration] = STATE(852), + [sym_generator_function_declaration] = STATE(852), + [sym_decorator] = STATE(1290), + [sym_function_signature] = STATE(852), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(811), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [aux_sym_export_statement_repeat1] = STATE(4284), + [aux_sym_object_repeat1] = STATE(5129), + [aux_sym_object_pattern_repeat1] = STATE(5131), + [anon_sym_STAR] = ACTIONS(2228), + [anon_sym_default] = ACTIONS(2230), + [anon_sym_type] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(2234), + [anon_sym_as] = ACTIONS(2236), + [anon_sym_namespace] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(2240), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_import] = ACTIONS(2242), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2246), + [anon_sym_const] = ACTIONS(2248), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_class] = ACTIONS(2253), + [anon_sym_async] = ACTIONS(2255), + [anon_sym_function] = ACTIONS(2257), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(2262), + [anon_sym_module] = ACTIONS(2264), + [anon_sym_abstract] = ACTIONS(2266), + [anon_sym_satisfies] = ACTIONS(158), + [anon_sym_interface] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2270), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [661] = { - [sym__call_signature] = STATE(5884), - [sym_string] = STATE(3922), - [sym_formal_parameters] = STATE(3849), - [sym__property_name] = STATE(3922), - [sym_computed_property_name] = STATE(3922), - [sym_type_parameters] = STATE(5338), - [aux_sym_object_repeat1] = STATE(5173), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(2277), - [anon_sym_export] = ACTIONS(2279), - [anon_sym_STAR] = ACTIONS(2281), - [anon_sym_type] = ACTIONS(2279), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2279), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(729), - [anon_sym_let] = ACTIONS(2279), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2284), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(2288), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_async] = ACTIONS(2279), - [anon_sym_function] = ACTIONS(2295), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2279), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(2301), - [sym_private_property_identifier] = ACTIONS(2301), - [anon_sym_static] = ACTIONS(2279), - [anon_sym_readonly] = ACTIONS(2279), - [anon_sym_get] = ACTIONS(2303), - [anon_sym_set] = ACTIONS(2303), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(2279), - [anon_sym_public] = ACTIONS(2279), - [anon_sym_private] = ACTIONS(2279), - [anon_sym_protected] = ACTIONS(2279), - [anon_sym_override] = ACTIONS(2279), - [anon_sym_module] = ACTIONS(2279), - [anon_sym_any] = ACTIONS(2279), - [anon_sym_number] = ACTIONS(2279), - [anon_sym_boolean] = ACTIONS(2279), - [anon_sym_string] = ACTIONS(2279), - [anon_sym_symbol] = ACTIONS(2279), - [anon_sym_object] = ACTIONS(2279), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5739), + [sym_string] = STATE(3887), + [sym_formal_parameters] = STATE(3848), + [sym__property_name] = STATE(3887), + [sym_computed_property_name] = STATE(3887), + [sym_type_parameters] = STATE(5231), + [aux_sym_object_repeat1] = STATE(5191), + [aux_sym_object_pattern_repeat1] = STATE(5131), + [sym_identifier] = ACTIONS(2272), + [anon_sym_export] = ACTIONS(2274), + [anon_sym_STAR] = ACTIONS(2276), + [anon_sym_type] = ACTIONS(2274), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2274), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_let] = ACTIONS(2274), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2279), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(2283), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_async] = ACTIONS(2274), + [anon_sym_function] = ACTIONS(2286), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2274), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [sym_number] = ACTIONS(2292), + [sym_private_property_identifier] = ACTIONS(2292), + [anon_sym_static] = ACTIONS(2274), + [anon_sym_readonly] = ACTIONS(2274), + [anon_sym_get] = ACTIONS(2294), + [anon_sym_set] = ACTIONS(2294), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(2274), + [anon_sym_public] = ACTIONS(2274), + [anon_sym_private] = ACTIONS(2274), + [anon_sym_protected] = ACTIONS(2274), + [anon_sym_override] = ACTIONS(2274), + [anon_sym_module] = ACTIONS(2274), + [anon_sym_any] = ACTIONS(2274), + [anon_sym_number] = ACTIONS(2274), + [anon_sym_boolean] = ACTIONS(2274), + [anon_sym_string] = ACTIONS(2274), + [anon_sym_symbol] = ACTIONS(2274), + [anon_sym_object] = ACTIONS(2274), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [662] = { - [sym__call_signature] = STATE(5884), - [sym_string] = STATE(3922), - [sym_formal_parameters] = STATE(3849), - [sym__property_name] = STATE(3922), - [sym_computed_property_name] = STATE(3922), - [sym_type_parameters] = STATE(5338), - [aux_sym_object_repeat1] = STATE(4673), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(2277), - [anon_sym_export] = ACTIONS(2279), - [anon_sym_STAR] = ACTIONS(2281), - [anon_sym_type] = ACTIONS(2279), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2279), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(702), - [anon_sym_let] = ACTIONS(2279), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2284), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(2288), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_async] = ACTIONS(2279), - [anon_sym_function] = ACTIONS(2295), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2279), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(2301), - [sym_private_property_identifier] = ACTIONS(2301), - [anon_sym_static] = ACTIONS(2279), - [anon_sym_readonly] = ACTIONS(2279), - [anon_sym_get] = ACTIONS(2303), - [anon_sym_set] = ACTIONS(2303), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(2279), - [anon_sym_public] = ACTIONS(2279), - [anon_sym_private] = ACTIONS(2279), - [anon_sym_protected] = ACTIONS(2279), - [anon_sym_override] = ACTIONS(2279), - [anon_sym_module] = ACTIONS(2279), - [anon_sym_any] = ACTIONS(2279), - [anon_sym_number] = ACTIONS(2279), - [anon_sym_boolean] = ACTIONS(2279), - [anon_sym_string] = ACTIONS(2279), - [anon_sym_symbol] = ACTIONS(2279), - [anon_sym_object] = ACTIONS(2279), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5739), + [sym_string] = STATE(3887), + [sym_formal_parameters] = STATE(3848), + [sym__property_name] = STATE(3887), + [sym_computed_property_name] = STATE(3887), + [sym_type_parameters] = STATE(5231), + [aux_sym_object_repeat1] = STATE(5129), + [aux_sym_object_pattern_repeat1] = STATE(5131), + [sym_identifier] = ACTIONS(2272), + [anon_sym_export] = ACTIONS(2274), + [anon_sym_STAR] = ACTIONS(2276), + [anon_sym_type] = ACTIONS(2274), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2274), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_let] = ACTIONS(2274), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2279), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(2283), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_async] = ACTIONS(2274), + [anon_sym_function] = ACTIONS(2286), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2274), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [sym_number] = ACTIONS(2292), + [sym_private_property_identifier] = ACTIONS(2292), + [anon_sym_static] = ACTIONS(2274), + [anon_sym_readonly] = ACTIONS(2274), + [anon_sym_get] = ACTIONS(2294), + [anon_sym_set] = ACTIONS(2294), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(2274), + [anon_sym_public] = ACTIONS(2274), + [anon_sym_private] = ACTIONS(2274), + [anon_sym_protected] = ACTIONS(2274), + [anon_sym_override] = ACTIONS(2274), + [anon_sym_module] = ACTIONS(2274), + [anon_sym_any] = ACTIONS(2274), + [anon_sym_number] = ACTIONS(2274), + [anon_sym_boolean] = ACTIONS(2274), + [anon_sym_string] = ACTIONS(2274), + [anon_sym_symbol] = ACTIONS(2274), + [anon_sym_object] = ACTIONS(2274), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [663] = { - [sym__call_signature] = STATE(5884), - [sym_string] = STATE(3922), - [sym_formal_parameters] = STATE(3849), - [sym__property_name] = STATE(3922), - [sym_computed_property_name] = STATE(3922), - [sym_type_parameters] = STATE(5338), - [aux_sym_object_repeat1] = STATE(5173), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(2277), - [anon_sym_export] = ACTIONS(2279), - [anon_sym_STAR] = ACTIONS(2281), - [anon_sym_type] = ACTIONS(2279), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2279), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(727), - [anon_sym_let] = ACTIONS(2279), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2284), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(2288), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_async] = ACTIONS(2279), - [anon_sym_function] = ACTIONS(2295), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2279), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(2301), - [sym_private_property_identifier] = ACTIONS(2301), - [anon_sym_static] = ACTIONS(2279), - [anon_sym_readonly] = ACTIONS(2279), - [anon_sym_get] = ACTIONS(2303), - [anon_sym_set] = ACTIONS(2303), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(2279), - [anon_sym_public] = ACTIONS(2279), - [anon_sym_private] = ACTIONS(2279), - [anon_sym_protected] = ACTIONS(2279), - [anon_sym_override] = ACTIONS(2279), - [anon_sym_module] = ACTIONS(2279), - [anon_sym_any] = ACTIONS(2279), - [anon_sym_number] = ACTIONS(2279), - [anon_sym_boolean] = ACTIONS(2279), - [anon_sym_string] = ACTIONS(2279), - [anon_sym_symbol] = ACTIONS(2279), - [anon_sym_object] = ACTIONS(2279), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5739), + [sym_string] = STATE(3887), + [sym_formal_parameters] = STATE(3848), + [sym__property_name] = STATE(3887), + [sym_computed_property_name] = STATE(3887), + [sym_type_parameters] = STATE(5231), + [aux_sym_object_repeat1] = STATE(5191), + [aux_sym_object_pattern_repeat1] = STATE(5131), + [sym_identifier] = ACTIONS(2272), + [anon_sym_export] = ACTIONS(2274), + [anon_sym_STAR] = ACTIONS(2276), + [anon_sym_type] = ACTIONS(2274), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2274), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_let] = ACTIONS(2274), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2279), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(2283), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_async] = ACTIONS(2274), + [anon_sym_function] = ACTIONS(2286), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2274), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [sym_number] = ACTIONS(2292), + [sym_private_property_identifier] = ACTIONS(2292), + [anon_sym_static] = ACTIONS(2274), + [anon_sym_readonly] = ACTIONS(2274), + [anon_sym_get] = ACTIONS(2294), + [anon_sym_set] = ACTIONS(2294), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(2274), + [anon_sym_public] = ACTIONS(2274), + [anon_sym_private] = ACTIONS(2274), + [anon_sym_protected] = ACTIONS(2274), + [anon_sym_override] = ACTIONS(2274), + [anon_sym_module] = ACTIONS(2274), + [anon_sym_any] = ACTIONS(2274), + [anon_sym_number] = ACTIONS(2274), + [anon_sym_boolean] = ACTIONS(2274), + [anon_sym_string] = ACTIONS(2274), + [anon_sym_symbol] = ACTIONS(2274), + [anon_sym_object] = ACTIONS(2274), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [664] = { - [sym_declaration] = STATE(874), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_class_declaration] = STATE(789), - [sym_function_declaration] = STATE(789), - [sym_generator_function_declaration] = STATE(789), - [sym_decorator] = STATE(1267), - [sym_function_signature] = STATE(789), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(890), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [aux_sym_export_statement_repeat1] = STATE(4426), - [aux_sym_object_repeat1] = STATE(5173), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2305), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2243), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(729), - [anon_sym_import] = ACTIONS(2247), - [anon_sym_var] = ACTIONS(2249), - [anon_sym_let] = ACTIONS(2251), - [anon_sym_const] = ACTIONS(2253), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_class] = ACTIONS(2258), - [anon_sym_async] = ACTIONS(2260), - [anon_sym_function] = ACTIONS(2262), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(2267), - [anon_sym_module] = ACTIONS(2307), - [anon_sym_abstract] = ACTIONS(2271), - [anon_sym_satisfies] = ACTIONS(161), - [anon_sym_global] = ACTIONS(2309), - [anon_sym_interface] = ACTIONS(2273), - [anon_sym_enum] = ACTIONS(2275), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_declaration] = STATE(886), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_class_declaration] = STATE(852), + [sym_function_declaration] = STATE(852), + [sym_generator_function_declaration] = STATE(852), + [sym_decorator] = STATE(1290), + [sym_function_signature] = STATE(852), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(811), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [aux_sym_export_statement_repeat1] = STATE(4284), + [aux_sym_object_repeat1] = STATE(5191), + [aux_sym_object_pattern_repeat1] = STATE(5131), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2296), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2238), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_import] = ACTIONS(2242), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2246), + [anon_sym_const] = ACTIONS(2248), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_class] = ACTIONS(2253), + [anon_sym_async] = ACTIONS(2255), + [anon_sym_function] = ACTIONS(2257), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(2262), + [anon_sym_module] = ACTIONS(2298), + [anon_sym_abstract] = ACTIONS(2266), + [anon_sym_satisfies] = ACTIONS(158), + [anon_sym_global] = ACTIONS(2300), + [anon_sym_interface] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2270), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [665] = { - [sym_declaration] = STATE(874), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_class_declaration] = STATE(789), - [sym_function_declaration] = STATE(789), - [sym_generator_function_declaration] = STATE(789), - [sym_decorator] = STATE(1267), - [sym_function_signature] = STATE(789), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(890), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [aux_sym_export_statement_repeat1] = STATE(4426), - [aux_sym_object_repeat1] = STATE(4673), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2305), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2243), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(702), - [anon_sym_import] = ACTIONS(2247), - [anon_sym_var] = ACTIONS(2249), - [anon_sym_let] = ACTIONS(2251), - [anon_sym_const] = ACTIONS(2253), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_class] = ACTIONS(2258), - [anon_sym_async] = ACTIONS(2260), - [anon_sym_function] = ACTIONS(2262), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(2267), - [anon_sym_module] = ACTIONS(2307), - [anon_sym_abstract] = ACTIONS(2271), - [anon_sym_satisfies] = ACTIONS(161), - [anon_sym_global] = ACTIONS(2309), - [anon_sym_interface] = ACTIONS(2273), - [anon_sym_enum] = ACTIONS(2275), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_declaration] = STATE(886), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_class_declaration] = STATE(852), + [sym_function_declaration] = STATE(852), + [sym_generator_function_declaration] = STATE(852), + [sym_decorator] = STATE(1290), + [sym_function_signature] = STATE(852), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(811), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [aux_sym_export_statement_repeat1] = STATE(4284), + [aux_sym_object_repeat1] = STATE(5129), + [aux_sym_object_pattern_repeat1] = STATE(5131), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2296), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2238), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_import] = ACTIONS(2242), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2246), + [anon_sym_const] = ACTIONS(2248), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_class] = ACTIONS(2253), + [anon_sym_async] = ACTIONS(2255), + [anon_sym_function] = ACTIONS(2257), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(2262), + [anon_sym_module] = ACTIONS(2298), + [anon_sym_abstract] = ACTIONS(2266), + [anon_sym_satisfies] = ACTIONS(158), + [anon_sym_global] = ACTIONS(2300), + [anon_sym_interface] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2270), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [666] = { - [sym_declaration] = STATE(874), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_class_declaration] = STATE(789), - [sym_function_declaration] = STATE(789), - [sym_generator_function_declaration] = STATE(789), - [sym_decorator] = STATE(1267), - [sym_function_signature] = STATE(789), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(890), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [aux_sym_export_statement_repeat1] = STATE(4426), - [aux_sym_object_repeat1] = STATE(5173), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2305), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2243), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(727), - [anon_sym_import] = ACTIONS(2247), - [anon_sym_var] = ACTIONS(2249), - [anon_sym_let] = ACTIONS(2251), - [anon_sym_const] = ACTIONS(2253), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_class] = ACTIONS(2258), - [anon_sym_async] = ACTIONS(2260), - [anon_sym_function] = ACTIONS(2262), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(2267), - [anon_sym_module] = ACTIONS(2307), - [anon_sym_abstract] = ACTIONS(2271), - [anon_sym_satisfies] = ACTIONS(161), - [anon_sym_global] = ACTIONS(2309), - [anon_sym_interface] = ACTIONS(2273), - [anon_sym_enum] = ACTIONS(2275), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_declaration] = STATE(886), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_class_declaration] = STATE(852), + [sym_function_declaration] = STATE(852), + [sym_generator_function_declaration] = STATE(852), + [sym_decorator] = STATE(1290), + [sym_function_signature] = STATE(852), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(811), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [aux_sym_export_statement_repeat1] = STATE(4284), + [aux_sym_object_repeat1] = STATE(5191), + [aux_sym_object_pattern_repeat1] = STATE(5131), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2296), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2238), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_import] = ACTIONS(2242), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2246), + [anon_sym_const] = ACTIONS(2248), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_class] = ACTIONS(2253), + [anon_sym_async] = ACTIONS(2255), + [anon_sym_function] = ACTIONS(2257), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(2262), + [anon_sym_module] = ACTIONS(2298), + [anon_sym_abstract] = ACTIONS(2266), + [anon_sym_satisfies] = ACTIONS(158), + [anon_sym_global] = ACTIONS(2300), + [anon_sym_interface] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2270), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [667] = { - [sym_namespace_export] = STATE(5382), - [sym_export_clause] = STATE(4519), - [sym_declaration] = STATE(854), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_class_declaration] = STATE(789), - [sym_function_declaration] = STATE(789), - [sym_generator_function_declaration] = STATE(789), - [sym_decorator] = STATE(1267), - [sym_function_signature] = STATE(789), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(890), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [aux_sym_export_statement_repeat1] = STATE(4426), - [anon_sym_STAR] = ACTIONS(2233), - [anon_sym_default] = ACTIONS(2235), - [anon_sym_type] = ACTIONS(2237), - [anon_sym_EQ] = ACTIONS(2311), - [anon_sym_as] = ACTIONS(2241), - [anon_sym_namespace] = ACTIONS(2243), - [anon_sym_LBRACE] = ACTIONS(2245), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_import] = ACTIONS(2247), - [anon_sym_var] = ACTIONS(2249), - [anon_sym_let] = ACTIONS(2251), - [anon_sym_const] = ACTIONS(2253), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(881), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_class] = ACTIONS(2258), - [anon_sym_async] = ACTIONS(2260), - [anon_sym_function] = ACTIONS(2262), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(2267), - [anon_sym_module] = ACTIONS(2269), - [anon_sym_abstract] = ACTIONS(2271), - [anon_sym_satisfies] = ACTIONS(161), - [anon_sym_interface] = ACTIONS(2273), - [anon_sym_enum] = ACTIONS(2275), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_namespace_export] = STATE(5548), + [sym_export_clause] = STATE(4473), + [sym_declaration] = STATE(885), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_class_declaration] = STATE(852), + [sym_function_declaration] = STATE(852), + [sym_generator_function_declaration] = STATE(852), + [sym_decorator] = STATE(1290), + [sym_function_signature] = STATE(852), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(811), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [aux_sym_export_statement_repeat1] = STATE(4284), + [anon_sym_STAR] = ACTIONS(2228), + [anon_sym_default] = ACTIONS(2302), + [anon_sym_type] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(2304), + [anon_sym_as] = ACTIONS(2236), + [anon_sym_namespace] = ACTIONS(2306), + [anon_sym_LBRACE] = ACTIONS(2240), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_import] = ACTIONS(2242), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2246), + [anon_sym_const] = ACTIONS(2248), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_class] = ACTIONS(2253), + [anon_sym_async] = ACTIONS(2255), + [anon_sym_function] = ACTIONS(2257), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(2308), + [anon_sym_module] = ACTIONS(2310), + [anon_sym_abstract] = ACTIONS(2266), + [anon_sym_satisfies] = ACTIONS(158), + [anon_sym_interface] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2270), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [668] = { - [sym_namespace_export] = STATE(5382), - [sym_export_clause] = STATE(4519), - [sym_declaration] = STATE(854), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_class_declaration] = STATE(789), - [sym_function_declaration] = STATE(789), - [sym_generator_function_declaration] = STATE(789), - [sym_decorator] = STATE(1267), - [sym_function_signature] = STATE(789), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(890), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [aux_sym_export_statement_repeat1] = STATE(4426), - [anon_sym_STAR] = ACTIONS(2233), - [anon_sym_default] = ACTIONS(2313), - [anon_sym_type] = ACTIONS(2237), - [anon_sym_EQ] = ACTIONS(2311), - [anon_sym_as] = ACTIONS(2241), - [anon_sym_namespace] = ACTIONS(2243), - [anon_sym_LBRACE] = ACTIONS(2245), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_import] = ACTIONS(2247), - [anon_sym_var] = ACTIONS(2249), - [anon_sym_let] = ACTIONS(2251), - [anon_sym_const] = ACTIONS(2253), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(883), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_class] = ACTIONS(2258), - [anon_sym_async] = ACTIONS(2260), - [anon_sym_function] = ACTIONS(2262), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(2267), - [anon_sym_module] = ACTIONS(2269), - [anon_sym_abstract] = ACTIONS(2271), - [anon_sym_satisfies] = ACTIONS(161), - [anon_sym_interface] = ACTIONS(2273), - [anon_sym_enum] = ACTIONS(2275), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_namespace_export] = STATE(5548), + [sym_export_clause] = STATE(4473), + [sym_declaration] = STATE(885), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_class_declaration] = STATE(852), + [sym_function_declaration] = STATE(852), + [sym_generator_function_declaration] = STATE(852), + [sym_decorator] = STATE(1290), + [sym_function_signature] = STATE(852), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(811), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [aux_sym_export_statement_repeat1] = STATE(4284), + [anon_sym_STAR] = ACTIONS(2228), + [anon_sym_default] = ACTIONS(2312), + [anon_sym_type] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(2304), + [anon_sym_as] = ACTIONS(2236), + [anon_sym_namespace] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(2240), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_import] = ACTIONS(2242), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2246), + [anon_sym_const] = ACTIONS(2248), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_class] = ACTIONS(2253), + [anon_sym_async] = ACTIONS(2255), + [anon_sym_function] = ACTIONS(2257), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(2262), + [anon_sym_module] = ACTIONS(2264), + [anon_sym_abstract] = ACTIONS(2266), + [anon_sym_satisfies] = ACTIONS(158), + [anon_sym_interface] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2270), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [669] = { - [sym_namespace_export] = STATE(5382), - [sym_export_clause] = STATE(4519), - [sym_declaration] = STATE(854), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_class_declaration] = STATE(789), - [sym_function_declaration] = STATE(789), - [sym_generator_function_declaration] = STATE(789), - [sym_decorator] = STATE(1267), - [sym_function_signature] = STATE(789), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(890), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [aux_sym_export_statement_repeat1] = STATE(4426), - [anon_sym_STAR] = ACTIONS(2233), - [anon_sym_default] = ACTIONS(2315), - [anon_sym_type] = ACTIONS(2237), - [anon_sym_EQ] = ACTIONS(2311), - [anon_sym_as] = ACTIONS(2241), - [anon_sym_namespace] = ACTIONS(2317), - [anon_sym_LBRACE] = ACTIONS(2245), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_import] = ACTIONS(2247), - [anon_sym_var] = ACTIONS(2249), - [anon_sym_let] = ACTIONS(2251), - [anon_sym_const] = ACTIONS(2253), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(879), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_class] = ACTIONS(2258), - [anon_sym_async] = ACTIONS(2260), - [anon_sym_function] = ACTIONS(2262), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(2319), - [anon_sym_module] = ACTIONS(2321), - [anon_sym_abstract] = ACTIONS(2271), - [anon_sym_satisfies] = ACTIONS(161), - [anon_sym_interface] = ACTIONS(2273), - [anon_sym_enum] = ACTIONS(2275), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_namespace_export] = STATE(5548), + [sym_export_clause] = STATE(4473), + [sym_declaration] = STATE(885), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_class_declaration] = STATE(852), + [sym_function_declaration] = STATE(852), + [sym_generator_function_declaration] = STATE(852), + [sym_decorator] = STATE(1290), + [sym_function_signature] = STATE(852), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(811), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [aux_sym_export_statement_repeat1] = STATE(4284), + [anon_sym_STAR] = ACTIONS(2228), + [anon_sym_default] = ACTIONS(2230), + [anon_sym_type] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(2304), + [anon_sym_as] = ACTIONS(2236), + [anon_sym_namespace] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(2240), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_import] = ACTIONS(2242), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2246), + [anon_sym_const] = ACTIONS(2248), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(856), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_class] = ACTIONS(2253), + [anon_sym_async] = ACTIONS(2255), + [anon_sym_function] = ACTIONS(2257), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(2262), + [anon_sym_module] = ACTIONS(2264), + [anon_sym_abstract] = ACTIONS(2266), + [anon_sym_satisfies] = ACTIONS(158), + [anon_sym_interface] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2270), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [670] = { - [sym_string] = STATE(3922), - [sym__property_name] = STATE(3922), - [sym_computed_property_name] = STATE(3922), - [sym_override_modifier] = STATE(2768), - [aux_sym_object_repeat1] = STATE(5173), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(2323), - [anon_sym_export] = ACTIONS(2323), - [anon_sym_STAR] = ACTIONS(2281), - [anon_sym_type] = ACTIONS(2323), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2323), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(729), - [anon_sym_let] = ACTIONS(2323), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(2288), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_async] = ACTIONS(2325), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2323), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(2301), - [sym_private_property_identifier] = ACTIONS(2301), - [anon_sym_static] = ACTIONS(2323), - [anon_sym_readonly] = ACTIONS(2327), - [anon_sym_get] = ACTIONS(2329), - [anon_sym_set] = ACTIONS(2329), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(2323), - [anon_sym_public] = ACTIONS(2323), - [anon_sym_private] = ACTIONS(2323), - [anon_sym_protected] = ACTIONS(2323), - [anon_sym_override] = ACTIONS(2331), - [anon_sym_module] = ACTIONS(2323), - [anon_sym_any] = ACTIONS(2323), - [anon_sym_number] = ACTIONS(2323), - [anon_sym_boolean] = ACTIONS(2323), - [anon_sym_string] = ACTIONS(2323), - [anon_sym_symbol] = ACTIONS(2323), - [anon_sym_object] = ACTIONS(2323), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_string] = STATE(3887), + [sym__property_name] = STATE(3887), + [sym_computed_property_name] = STATE(3887), + [sym_override_modifier] = STATE(2756), + [aux_sym_object_repeat1] = STATE(5129), + [aux_sym_object_pattern_repeat1] = STATE(5131), + [sym_identifier] = ACTIONS(2314), + [anon_sym_export] = ACTIONS(2314), + [anon_sym_STAR] = ACTIONS(2276), + [anon_sym_type] = ACTIONS(2314), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2314), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_let] = ACTIONS(2314), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(2283), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_async] = ACTIONS(2316), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2314), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [sym_number] = ACTIONS(2292), + [sym_private_property_identifier] = ACTIONS(2292), + [anon_sym_static] = ACTIONS(2314), + [anon_sym_readonly] = ACTIONS(2318), + [anon_sym_get] = ACTIONS(2320), + [anon_sym_set] = ACTIONS(2320), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(2314), + [anon_sym_public] = ACTIONS(2314), + [anon_sym_private] = ACTIONS(2314), + [anon_sym_protected] = ACTIONS(2314), + [anon_sym_override] = ACTIONS(2322), + [anon_sym_module] = ACTIONS(2314), + [anon_sym_any] = ACTIONS(2314), + [anon_sym_number] = ACTIONS(2314), + [anon_sym_boolean] = ACTIONS(2314), + [anon_sym_string] = ACTIONS(2314), + [anon_sym_symbol] = ACTIONS(2314), + [anon_sym_object] = ACTIONS(2314), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [671] = { - [sym_string] = STATE(3922), - [sym__property_name] = STATE(3922), - [sym_computed_property_name] = STATE(3922), - [sym_override_modifier] = STATE(2768), - [aux_sym_object_repeat1] = STATE(4673), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(2323), - [anon_sym_export] = ACTIONS(2323), - [anon_sym_STAR] = ACTIONS(2281), - [anon_sym_type] = ACTIONS(2323), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2323), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(702), - [anon_sym_let] = ACTIONS(2323), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(2288), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_async] = ACTIONS(2325), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2323), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(2301), - [sym_private_property_identifier] = ACTIONS(2301), - [anon_sym_static] = ACTIONS(2323), - [anon_sym_readonly] = ACTIONS(2327), - [anon_sym_get] = ACTIONS(2329), - [anon_sym_set] = ACTIONS(2329), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(2323), - [anon_sym_public] = ACTIONS(2323), - [anon_sym_private] = ACTIONS(2323), - [anon_sym_protected] = ACTIONS(2323), - [anon_sym_override] = ACTIONS(2331), - [anon_sym_module] = ACTIONS(2323), - [anon_sym_any] = ACTIONS(2323), - [anon_sym_number] = ACTIONS(2323), - [anon_sym_boolean] = ACTIONS(2323), - [anon_sym_string] = ACTIONS(2323), - [anon_sym_symbol] = ACTIONS(2323), - [anon_sym_object] = ACTIONS(2323), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_string] = STATE(3887), + [sym__property_name] = STATE(3887), + [sym_computed_property_name] = STATE(3887), + [sym_override_modifier] = STATE(2756), + [aux_sym_object_repeat1] = STATE(5191), + [aux_sym_object_pattern_repeat1] = STATE(5131), + [sym_identifier] = ACTIONS(2314), + [anon_sym_export] = ACTIONS(2314), + [anon_sym_STAR] = ACTIONS(2276), + [anon_sym_type] = ACTIONS(2314), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2314), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_let] = ACTIONS(2314), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(2283), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_async] = ACTIONS(2316), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2314), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [sym_number] = ACTIONS(2292), + [sym_private_property_identifier] = ACTIONS(2292), + [anon_sym_static] = ACTIONS(2314), + [anon_sym_readonly] = ACTIONS(2318), + [anon_sym_get] = ACTIONS(2320), + [anon_sym_set] = ACTIONS(2320), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(2314), + [anon_sym_public] = ACTIONS(2314), + [anon_sym_private] = ACTIONS(2314), + [anon_sym_protected] = ACTIONS(2314), + [anon_sym_override] = ACTIONS(2322), + [anon_sym_module] = ACTIONS(2314), + [anon_sym_any] = ACTIONS(2314), + [anon_sym_number] = ACTIONS(2314), + [anon_sym_boolean] = ACTIONS(2314), + [anon_sym_string] = ACTIONS(2314), + [anon_sym_symbol] = ACTIONS(2314), + [anon_sym_object] = ACTIONS(2314), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [672] = { - [sym_string] = STATE(3922), - [sym__property_name] = STATE(3922), - [sym_computed_property_name] = STATE(3922), - [sym_override_modifier] = STATE(2768), - [aux_sym_object_repeat1] = STATE(5173), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(2323), - [anon_sym_export] = ACTIONS(2323), - [anon_sym_STAR] = ACTIONS(2281), - [anon_sym_type] = ACTIONS(2323), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2323), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(727), - [anon_sym_let] = ACTIONS(2323), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(2288), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_async] = ACTIONS(2325), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2323), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(2301), - [sym_private_property_identifier] = ACTIONS(2301), - [anon_sym_static] = ACTIONS(2323), - [anon_sym_readonly] = ACTIONS(2327), - [anon_sym_get] = ACTIONS(2329), - [anon_sym_set] = ACTIONS(2329), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(2323), - [anon_sym_public] = ACTIONS(2323), - [anon_sym_private] = ACTIONS(2323), - [anon_sym_protected] = ACTIONS(2323), - [anon_sym_override] = ACTIONS(2331), - [anon_sym_module] = ACTIONS(2323), - [anon_sym_any] = ACTIONS(2323), - [anon_sym_number] = ACTIONS(2323), - [anon_sym_boolean] = ACTIONS(2323), - [anon_sym_string] = ACTIONS(2323), - [anon_sym_symbol] = ACTIONS(2323), - [anon_sym_object] = ACTIONS(2323), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_string] = STATE(3887), + [sym__property_name] = STATE(3887), + [sym_computed_property_name] = STATE(3887), + [sym_override_modifier] = STATE(2756), + [aux_sym_object_repeat1] = STATE(5191), + [aux_sym_object_pattern_repeat1] = STATE(5131), + [sym_identifier] = ACTIONS(2314), + [anon_sym_export] = ACTIONS(2314), + [anon_sym_STAR] = ACTIONS(2276), + [anon_sym_type] = ACTIONS(2314), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2314), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_let] = ACTIONS(2314), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(2283), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_async] = ACTIONS(2316), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2314), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [sym_number] = ACTIONS(2292), + [sym_private_property_identifier] = ACTIONS(2292), + [anon_sym_static] = ACTIONS(2314), + [anon_sym_readonly] = ACTIONS(2318), + [anon_sym_get] = ACTIONS(2320), + [anon_sym_set] = ACTIONS(2320), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(2314), + [anon_sym_public] = ACTIONS(2314), + [anon_sym_private] = ACTIONS(2314), + [anon_sym_protected] = ACTIONS(2314), + [anon_sym_override] = ACTIONS(2322), + [anon_sym_module] = ACTIONS(2314), + [anon_sym_any] = ACTIONS(2314), + [anon_sym_number] = ACTIONS(2314), + [anon_sym_boolean] = ACTIONS(2314), + [anon_sym_string] = ACTIONS(2314), + [anon_sym_symbol] = ACTIONS(2314), + [anon_sym_object] = ACTIONS(2314), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [673] = { - [sym_string] = STATE(3922), - [sym__property_name] = STATE(3922), - [sym_computed_property_name] = STATE(3922), - [aux_sym_object_repeat1] = STATE(4673), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(2323), - [anon_sym_export] = ACTIONS(2323), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2323), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2323), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(702), - [anon_sym_let] = ACTIONS(2323), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(2288), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_async] = ACTIONS(2323), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2323), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(2301), - [sym_private_property_identifier] = ACTIONS(2301), - [anon_sym_static] = ACTIONS(2323), - [anon_sym_readonly] = ACTIONS(2323), - [anon_sym_get] = ACTIONS(2323), - [anon_sym_set] = ACTIONS(2323), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(2323), - [anon_sym_public] = ACTIONS(2323), - [anon_sym_private] = ACTIONS(2323), - [anon_sym_protected] = ACTIONS(2323), - [anon_sym_override] = ACTIONS(2323), - [anon_sym_module] = ACTIONS(2323), - [anon_sym_any] = ACTIONS(2323), - [anon_sym_number] = ACTIONS(2323), - [anon_sym_boolean] = ACTIONS(2323), - [anon_sym_string] = ACTIONS(2323), - [anon_sym_symbol] = ACTIONS(2323), - [anon_sym_object] = ACTIONS(2323), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_string] = STATE(3887), + [sym__property_name] = STATE(3887), + [sym_computed_property_name] = STATE(3887), + [aux_sym_object_repeat1] = STATE(5191), + [aux_sym_object_pattern_repeat1] = STATE(5131), + [sym_identifier] = ACTIONS(2314), + [anon_sym_export] = ACTIONS(2314), + [anon_sym_STAR] = ACTIONS(2276), + [anon_sym_type] = ACTIONS(2314), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2314), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_let] = ACTIONS(2314), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(2283), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_async] = ACTIONS(2316), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2314), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [sym_number] = ACTIONS(2292), + [sym_private_property_identifier] = ACTIONS(2292), + [anon_sym_static] = ACTIONS(2314), + [anon_sym_readonly] = ACTIONS(2314), + [anon_sym_get] = ACTIONS(2320), + [anon_sym_set] = ACTIONS(2320), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(2314), + [anon_sym_public] = ACTIONS(2314), + [anon_sym_private] = ACTIONS(2314), + [anon_sym_protected] = ACTIONS(2314), + [anon_sym_override] = ACTIONS(2314), + [anon_sym_module] = ACTIONS(2314), + [anon_sym_any] = ACTIONS(2314), + [anon_sym_number] = ACTIONS(2314), + [anon_sym_boolean] = ACTIONS(2314), + [anon_sym_string] = ACTIONS(2314), + [anon_sym_symbol] = ACTIONS(2314), + [anon_sym_object] = ACTIONS(2314), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [674] = { - [sym_string] = STATE(3922), - [sym__property_name] = STATE(3922), - [sym_computed_property_name] = STATE(3922), - [aux_sym_object_repeat1] = STATE(5173), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(2323), - [anon_sym_export] = ACTIONS(2323), - [anon_sym_STAR] = ACTIONS(2281), - [anon_sym_type] = ACTIONS(2323), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2323), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(729), - [anon_sym_let] = ACTIONS(2323), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(2288), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_async] = ACTIONS(2325), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2323), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(2301), - [sym_private_property_identifier] = ACTIONS(2301), - [anon_sym_static] = ACTIONS(2323), - [anon_sym_readonly] = ACTIONS(2323), - [anon_sym_get] = ACTIONS(2329), - [anon_sym_set] = ACTIONS(2329), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(2323), - [anon_sym_public] = ACTIONS(2323), - [anon_sym_private] = ACTIONS(2323), - [anon_sym_protected] = ACTIONS(2323), - [anon_sym_override] = ACTIONS(2323), - [anon_sym_module] = ACTIONS(2323), - [anon_sym_any] = ACTIONS(2323), - [anon_sym_number] = ACTIONS(2323), - [anon_sym_boolean] = ACTIONS(2323), - [anon_sym_string] = ACTIONS(2323), - [anon_sym_symbol] = ACTIONS(2323), - [anon_sym_object] = ACTIONS(2323), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_string] = STATE(3887), + [sym__property_name] = STATE(3887), + [sym_computed_property_name] = STATE(3887), + [aux_sym_object_repeat1] = STATE(5129), + [aux_sym_object_pattern_repeat1] = STATE(5131), + [sym_identifier] = ACTIONS(2314), + [anon_sym_export] = ACTIONS(2314), + [anon_sym_STAR] = ACTIONS(2276), + [anon_sym_type] = ACTIONS(2314), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2314), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_let] = ACTIONS(2314), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(2283), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_async] = ACTIONS(2316), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2314), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [sym_number] = ACTIONS(2292), + [sym_private_property_identifier] = ACTIONS(2292), + [anon_sym_static] = ACTIONS(2314), + [anon_sym_readonly] = ACTIONS(2314), + [anon_sym_get] = ACTIONS(2320), + [anon_sym_set] = ACTIONS(2320), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(2314), + [anon_sym_public] = ACTIONS(2314), + [anon_sym_private] = ACTIONS(2314), + [anon_sym_protected] = ACTIONS(2314), + [anon_sym_override] = ACTIONS(2314), + [anon_sym_module] = ACTIONS(2314), + [anon_sym_any] = ACTIONS(2314), + [anon_sym_number] = ACTIONS(2314), + [anon_sym_boolean] = ACTIONS(2314), + [anon_sym_string] = ACTIONS(2314), + [anon_sym_symbol] = ACTIONS(2314), + [anon_sym_object] = ACTIONS(2314), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [675] = { - [sym_string] = STATE(3922), - [sym__property_name] = STATE(3922), - [sym_computed_property_name] = STATE(3922), - [aux_sym_object_repeat1] = STATE(5173), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(2323), - [anon_sym_export] = ACTIONS(2323), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2323), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2323), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(729), - [anon_sym_let] = ACTIONS(2323), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(2288), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_async] = ACTIONS(2323), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2323), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(2301), - [sym_private_property_identifier] = ACTIONS(2301), - [anon_sym_static] = ACTIONS(2323), - [anon_sym_readonly] = ACTIONS(2323), - [anon_sym_get] = ACTIONS(2323), - [anon_sym_set] = ACTIONS(2323), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(2323), - [anon_sym_public] = ACTIONS(2323), - [anon_sym_private] = ACTIONS(2323), - [anon_sym_protected] = ACTIONS(2323), - [anon_sym_override] = ACTIONS(2323), - [anon_sym_module] = ACTIONS(2323), - [anon_sym_any] = ACTIONS(2323), - [anon_sym_number] = ACTIONS(2323), - [anon_sym_boolean] = ACTIONS(2323), - [anon_sym_string] = ACTIONS(2323), - [anon_sym_symbol] = ACTIONS(2323), - [anon_sym_object] = ACTIONS(2323), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_string] = STATE(3887), + [sym__property_name] = STATE(3887), + [sym_computed_property_name] = STATE(3887), + [aux_sym_object_repeat1] = STATE(5129), + [aux_sym_object_pattern_repeat1] = STATE(5131), + [sym_identifier] = ACTIONS(2314), + [anon_sym_export] = ACTIONS(2314), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2314), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2314), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_let] = ACTIONS(2314), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(2283), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_async] = ACTIONS(2314), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2314), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [sym_number] = ACTIONS(2292), + [sym_private_property_identifier] = ACTIONS(2292), + [anon_sym_static] = ACTIONS(2314), + [anon_sym_readonly] = ACTIONS(2314), + [anon_sym_get] = ACTIONS(2314), + [anon_sym_set] = ACTIONS(2314), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(2314), + [anon_sym_public] = ACTIONS(2314), + [anon_sym_private] = ACTIONS(2314), + [anon_sym_protected] = ACTIONS(2314), + [anon_sym_override] = ACTIONS(2314), + [anon_sym_module] = ACTIONS(2314), + [anon_sym_any] = ACTIONS(2314), + [anon_sym_number] = ACTIONS(2314), + [anon_sym_boolean] = ACTIONS(2314), + [anon_sym_string] = ACTIONS(2314), + [anon_sym_symbol] = ACTIONS(2314), + [anon_sym_object] = ACTIONS(2314), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [676] = { - [sym_string] = STATE(3922), - [sym__property_name] = STATE(3922), - [sym_computed_property_name] = STATE(3922), - [aux_sym_object_repeat1] = STATE(4673), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(2323), - [anon_sym_export] = ACTIONS(2323), - [anon_sym_STAR] = ACTIONS(2281), - [anon_sym_type] = ACTIONS(2323), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2323), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(702), - [anon_sym_let] = ACTIONS(2323), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(2288), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_async] = ACTIONS(2325), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2323), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(2301), - [sym_private_property_identifier] = ACTIONS(2301), - [anon_sym_static] = ACTIONS(2323), - [anon_sym_readonly] = ACTIONS(2323), - [anon_sym_get] = ACTIONS(2329), - [anon_sym_set] = ACTIONS(2329), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(2323), - [anon_sym_public] = ACTIONS(2323), - [anon_sym_private] = ACTIONS(2323), - [anon_sym_protected] = ACTIONS(2323), - [anon_sym_override] = ACTIONS(2323), - [anon_sym_module] = ACTIONS(2323), - [anon_sym_any] = ACTIONS(2323), - [anon_sym_number] = ACTIONS(2323), - [anon_sym_boolean] = ACTIONS(2323), - [anon_sym_string] = ACTIONS(2323), - [anon_sym_symbol] = ACTIONS(2323), - [anon_sym_object] = ACTIONS(2323), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_string] = STATE(3887), + [sym__property_name] = STATE(3887), + [sym_computed_property_name] = STATE(3887), + [aux_sym_object_repeat1] = STATE(5191), + [aux_sym_object_pattern_repeat1] = STATE(5131), + [sym_identifier] = ACTIONS(2314), + [anon_sym_export] = ACTIONS(2314), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2314), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2314), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_let] = ACTIONS(2314), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(2283), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_async] = ACTIONS(2314), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2314), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [sym_number] = ACTIONS(2292), + [sym_private_property_identifier] = ACTIONS(2292), + [anon_sym_static] = ACTIONS(2314), + [anon_sym_readonly] = ACTIONS(2314), + [anon_sym_get] = ACTIONS(2314), + [anon_sym_set] = ACTIONS(2314), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(2314), + [anon_sym_public] = ACTIONS(2314), + [anon_sym_private] = ACTIONS(2314), + [anon_sym_protected] = ACTIONS(2314), + [anon_sym_override] = ACTIONS(2314), + [anon_sym_module] = ACTIONS(2314), + [anon_sym_any] = ACTIONS(2314), + [anon_sym_number] = ACTIONS(2314), + [anon_sym_boolean] = ACTIONS(2314), + [anon_sym_string] = ACTIONS(2314), + [anon_sym_symbol] = ACTIONS(2314), + [anon_sym_object] = ACTIONS(2314), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [677] = { - [ts_builtin_sym_end] = ACTIONS(1927), - [sym_identifier] = ACTIONS(1929), - [anon_sym_export] = ACTIONS(1929), - [anon_sym_default] = ACTIONS(1929), - [anon_sym_type] = ACTIONS(1929), - [anon_sym_EQ] = ACTIONS(1929), - [anon_sym_namespace] = ACTIONS(1929), - [anon_sym_LBRACE] = ACTIONS(1927), - [anon_sym_COMMA] = ACTIONS(1927), - [anon_sym_RBRACE] = ACTIONS(1927), - [anon_sym_typeof] = ACTIONS(1929), - [anon_sym_import] = ACTIONS(1929), - [anon_sym_from] = ACTIONS(1929), - [anon_sym_with] = ACTIONS(1929), - [anon_sym_var] = ACTIONS(1929), - [anon_sym_let] = ACTIONS(1929), - [anon_sym_const] = ACTIONS(1929), - [anon_sym_BANG] = ACTIONS(1927), - [anon_sym_else] = ACTIONS(1929), - [anon_sym_if] = ACTIONS(1929), - [anon_sym_switch] = ACTIONS(1929), - [anon_sym_for] = ACTIONS(1929), - [anon_sym_LPAREN] = ACTIONS(1927), - [anon_sym_SEMI] = ACTIONS(1927), - [anon_sym_RPAREN] = ACTIONS(1927), - [anon_sym_await] = ACTIONS(1929), - [anon_sym_while] = ACTIONS(1929), - [anon_sym_do] = ACTIONS(1929), - [anon_sym_try] = ACTIONS(1929), - [anon_sym_break] = ACTIONS(1929), - [anon_sym_continue] = ACTIONS(1929), - [anon_sym_debugger] = ACTIONS(1929), - [anon_sym_return] = ACTIONS(1929), - [anon_sym_throw] = ACTIONS(1929), - [anon_sym_COLON] = ACTIONS(1927), - [anon_sym_case] = ACTIONS(1929), - [anon_sym_yield] = ACTIONS(1929), - [anon_sym_LBRACK] = ACTIONS(1927), - [anon_sym_RBRACK] = ACTIONS(1927), - [sym_glimmer_opening_tag] = ACTIONS(1927), - [anon_sym_GT] = ACTIONS(1927), - [anon_sym_DQUOTE] = ACTIONS(1927), - [anon_sym_SQUOTE] = ACTIONS(1927), - [anon_sym_class] = ACTIONS(1929), - [anon_sym_async] = ACTIONS(1929), - [anon_sym_function] = ACTIONS(1929), - [anon_sym_EQ_GT] = ACTIONS(1927), - [anon_sym_new] = ACTIONS(1929), - [anon_sym_using] = ACTIONS(1929), - [anon_sym_AMP] = ACTIONS(1927), - [anon_sym_PIPE] = ACTIONS(1927), - [anon_sym_PLUS] = ACTIONS(1929), - [anon_sym_DASH] = ACTIONS(1929), - [anon_sym_SLASH] = ACTIONS(1929), - [anon_sym_LT] = ACTIONS(1929), - [anon_sym_TILDE] = ACTIONS(1927), - [anon_sym_void] = ACTIONS(1929), - [anon_sym_delete] = ACTIONS(1929), - [anon_sym_PLUS_PLUS] = ACTIONS(1927), - [anon_sym_DASH_DASH] = ACTIONS(1927), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1927), - [sym_number] = ACTIONS(1927), - [sym_private_property_identifier] = ACTIONS(1927), - [sym_this] = ACTIONS(1929), - [sym_super] = ACTIONS(1929), - [sym_true] = ACTIONS(1929), - [sym_false] = ACTIONS(1929), - [sym_null] = ACTIONS(1929), - [sym_undefined] = ACTIONS(1929), - [anon_sym_AT] = ACTIONS(1927), - [anon_sym_static] = ACTIONS(1929), - [anon_sym_readonly] = ACTIONS(1929), - [anon_sym_get] = ACTIONS(1929), - [anon_sym_set] = ACTIONS(1929), - [anon_sym_QMARK] = ACTIONS(1927), - [anon_sym_declare] = ACTIONS(1929), - [anon_sym_public] = ACTIONS(1929), - [anon_sym_private] = ACTIONS(1929), - [anon_sym_protected] = ACTIONS(1929), - [anon_sym_override] = ACTIONS(1929), - [anon_sym_module] = ACTIONS(1929), - [anon_sym_any] = ACTIONS(1929), - [anon_sym_number] = ACTIONS(1929), - [anon_sym_boolean] = ACTIONS(1929), - [anon_sym_string] = ACTIONS(1929), - [anon_sym_symbol] = ACTIONS(1929), - [anon_sym_object] = ACTIONS(1929), - [anon_sym_abstract] = ACTIONS(1929), - [anon_sym_extends] = ACTIONS(1929), - [anon_sym_interface] = ACTIONS(1929), - [anon_sym_enum] = ACTIONS(1929), + [sym_string] = STATE(3887), + [sym__property_name] = STATE(3887), + [sym_computed_property_name] = STATE(3887), + [aux_sym_object_repeat1] = STATE(5191), + [aux_sym_object_pattern_repeat1] = STATE(5131), + [sym_identifier] = ACTIONS(2314), + [anon_sym_export] = ACTIONS(2314), + [anon_sym_STAR] = ACTIONS(2276), + [anon_sym_type] = ACTIONS(2314), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2314), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_let] = ACTIONS(2314), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(2283), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_async] = ACTIONS(2316), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2314), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [sym_number] = ACTIONS(2292), + [sym_private_property_identifier] = ACTIONS(2292), + [anon_sym_static] = ACTIONS(2314), + [anon_sym_readonly] = ACTIONS(2314), + [anon_sym_get] = ACTIONS(2320), + [anon_sym_set] = ACTIONS(2320), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(2314), + [anon_sym_public] = ACTIONS(2314), + [anon_sym_private] = ACTIONS(2314), + [anon_sym_protected] = ACTIONS(2314), + [anon_sym_override] = ACTIONS(2314), + [anon_sym_module] = ACTIONS(2314), + [anon_sym_any] = ACTIONS(2314), + [anon_sym_number] = ACTIONS(2314), + [anon_sym_boolean] = ACTIONS(2314), + [anon_sym_string] = ACTIONS(2314), + [anon_sym_symbol] = ACTIONS(2314), + [anon_sym_object] = ACTIONS(2314), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [678] = { - [ts_builtin_sym_end] = ACTIONS(1731), - [sym_identifier] = ACTIONS(1733), - [anon_sym_export] = ACTIONS(1733), - [anon_sym_default] = ACTIONS(1733), - [anon_sym_type] = ACTIONS(1733), - [anon_sym_EQ] = ACTIONS(1733), - [anon_sym_namespace] = ACTIONS(1733), - [anon_sym_LBRACE] = ACTIONS(1731), - [anon_sym_COMMA] = ACTIONS(1731), - [anon_sym_RBRACE] = ACTIONS(1731), - [anon_sym_typeof] = ACTIONS(1733), - [anon_sym_import] = ACTIONS(1733), - [anon_sym_from] = ACTIONS(1733), - [anon_sym_with] = ACTIONS(1733), - [anon_sym_var] = ACTIONS(1733), - [anon_sym_let] = ACTIONS(1733), - [anon_sym_const] = ACTIONS(1733), - [anon_sym_BANG] = ACTIONS(1731), - [anon_sym_else] = ACTIONS(1733), - [anon_sym_if] = ACTIONS(1733), - [anon_sym_switch] = ACTIONS(1733), - [anon_sym_for] = ACTIONS(1733), - [anon_sym_LPAREN] = ACTIONS(1731), - [anon_sym_SEMI] = ACTIONS(1731), - [anon_sym_RPAREN] = ACTIONS(1731), - [anon_sym_await] = ACTIONS(1733), - [anon_sym_while] = ACTIONS(1733), - [anon_sym_do] = ACTIONS(1733), - [anon_sym_try] = ACTIONS(1733), - [anon_sym_break] = ACTIONS(1733), - [anon_sym_continue] = ACTIONS(1733), - [anon_sym_debugger] = ACTIONS(1733), - [anon_sym_return] = ACTIONS(1733), - [anon_sym_throw] = ACTIONS(1733), - [anon_sym_COLON] = ACTIONS(1731), - [anon_sym_case] = ACTIONS(1733), - [anon_sym_yield] = ACTIONS(1733), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_RBRACK] = ACTIONS(1731), - [sym_glimmer_opening_tag] = ACTIONS(1731), - [anon_sym_GT] = ACTIONS(1731), - [anon_sym_DQUOTE] = ACTIONS(1731), - [anon_sym_SQUOTE] = ACTIONS(1731), - [anon_sym_class] = ACTIONS(1733), - [anon_sym_async] = ACTIONS(1733), - [anon_sym_function] = ACTIONS(1733), - [anon_sym_EQ_GT] = ACTIONS(1731), - [anon_sym_new] = ACTIONS(1733), - [anon_sym_using] = ACTIONS(1733), - [anon_sym_AMP] = ACTIONS(1731), - [anon_sym_PIPE] = ACTIONS(1731), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1733), - [anon_sym_SLASH] = ACTIONS(1733), - [anon_sym_LT] = ACTIONS(1733), - [anon_sym_TILDE] = ACTIONS(1731), - [anon_sym_void] = ACTIONS(1733), - [anon_sym_delete] = ACTIONS(1733), - [anon_sym_PLUS_PLUS] = ACTIONS(1731), - [anon_sym_DASH_DASH] = ACTIONS(1731), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1731), - [sym_number] = ACTIONS(1731), - [sym_private_property_identifier] = ACTIONS(1731), - [sym_this] = ACTIONS(1733), - [sym_super] = ACTIONS(1733), - [sym_true] = ACTIONS(1733), - [sym_false] = ACTIONS(1733), - [sym_null] = ACTIONS(1733), - [sym_undefined] = ACTIONS(1733), - [anon_sym_AT] = ACTIONS(1731), - [anon_sym_static] = ACTIONS(1733), - [anon_sym_readonly] = ACTIONS(1733), - [anon_sym_get] = ACTIONS(1733), - [anon_sym_set] = ACTIONS(1733), - [anon_sym_QMARK] = ACTIONS(1731), - [anon_sym_declare] = ACTIONS(1733), - [anon_sym_public] = ACTIONS(1733), - [anon_sym_private] = ACTIONS(1733), - [anon_sym_protected] = ACTIONS(1733), - [anon_sym_override] = ACTIONS(1733), - [anon_sym_module] = ACTIONS(1733), - [anon_sym_any] = ACTIONS(1733), - [anon_sym_number] = ACTIONS(1733), - [anon_sym_boolean] = ACTIONS(1733), - [anon_sym_string] = ACTIONS(1733), - [anon_sym_symbol] = ACTIONS(1733), - [anon_sym_object] = ACTIONS(1733), - [anon_sym_abstract] = ACTIONS(1733), - [anon_sym_extends] = ACTIONS(1733), - [anon_sym_interface] = ACTIONS(1733), - [anon_sym_enum] = ACTIONS(1733), + [sym_string] = STATE(3887), + [sym__property_name] = STATE(3887), + [sym_computed_property_name] = STATE(3887), + [aux_sym_object_repeat1] = STATE(5191), + [aux_sym_object_pattern_repeat1] = STATE(5131), + [sym_identifier] = ACTIONS(2314), + [anon_sym_export] = ACTIONS(2314), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2314), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2314), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_let] = ACTIONS(2314), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(2283), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_async] = ACTIONS(2314), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2314), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [sym_number] = ACTIONS(2292), + [sym_private_property_identifier] = ACTIONS(2292), + [anon_sym_static] = ACTIONS(2314), + [anon_sym_readonly] = ACTIONS(2314), + [anon_sym_get] = ACTIONS(2314), + [anon_sym_set] = ACTIONS(2314), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(2314), + [anon_sym_public] = ACTIONS(2314), + [anon_sym_private] = ACTIONS(2314), + [anon_sym_protected] = ACTIONS(2314), + [anon_sym_override] = ACTIONS(2314), + [anon_sym_module] = ACTIONS(2314), + [anon_sym_any] = ACTIONS(2314), + [anon_sym_number] = ACTIONS(2314), + [anon_sym_boolean] = ACTIONS(2314), + [anon_sym_string] = ACTIONS(2314), + [anon_sym_symbol] = ACTIONS(2314), + [anon_sym_object] = ACTIONS(2314), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [679] = { - [sym_string] = STATE(3922), - [sym__property_name] = STATE(3922), - [sym_computed_property_name] = STATE(3922), - [aux_sym_object_repeat1] = STATE(5173), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(2323), - [anon_sym_export] = ACTIONS(2323), - [anon_sym_STAR] = ACTIONS(2281), - [anon_sym_type] = ACTIONS(2323), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2323), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(727), - [anon_sym_let] = ACTIONS(2323), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(2288), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_async] = ACTIONS(2325), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2323), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(2301), - [sym_private_property_identifier] = ACTIONS(2301), - [anon_sym_static] = ACTIONS(2323), - [anon_sym_readonly] = ACTIONS(2323), - [anon_sym_get] = ACTIONS(2329), - [anon_sym_set] = ACTIONS(2329), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(2323), - [anon_sym_public] = ACTIONS(2323), - [anon_sym_private] = ACTIONS(2323), - [anon_sym_protected] = ACTIONS(2323), - [anon_sym_override] = ACTIONS(2323), - [anon_sym_module] = ACTIONS(2323), - [anon_sym_any] = ACTIONS(2323), - [anon_sym_number] = ACTIONS(2323), - [anon_sym_boolean] = ACTIONS(2323), - [anon_sym_string] = ACTIONS(2323), - [anon_sym_symbol] = ACTIONS(2323), - [anon_sym_object] = ACTIONS(2323), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_declaration] = STATE(886), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_class_declaration] = STATE(852), + [sym_function_declaration] = STATE(852), + [sym_generator_function_declaration] = STATE(852), + [sym_decorator] = STATE(1290), + [sym_function_signature] = STATE(852), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(811), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [aux_sym_export_statement_repeat1] = STATE(4284), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2296), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2306), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_import] = ACTIONS(2242), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2246), + [anon_sym_const] = ACTIONS(2248), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_class] = ACTIONS(2253), + [anon_sym_async] = ACTIONS(2255), + [anon_sym_function] = ACTIONS(2257), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(2308), + [anon_sym_module] = ACTIONS(2324), + [anon_sym_abstract] = ACTIONS(2266), + [anon_sym_satisfies] = ACTIONS(158), + [anon_sym_global] = ACTIONS(2300), + [anon_sym_interface] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2270), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [680] = { - [sym_string] = STATE(3922), - [sym__property_name] = STATE(3922), - [sym_computed_property_name] = STATE(3922), - [aux_sym_object_repeat1] = STATE(5173), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(2323), - [anon_sym_export] = ACTIONS(2323), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2323), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2323), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(727), - [anon_sym_let] = ACTIONS(2323), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(2288), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_async] = ACTIONS(2323), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2323), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(2301), - [sym_private_property_identifier] = ACTIONS(2301), - [anon_sym_static] = ACTIONS(2323), - [anon_sym_readonly] = ACTIONS(2323), - [anon_sym_get] = ACTIONS(2323), - [anon_sym_set] = ACTIONS(2323), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(2323), - [anon_sym_public] = ACTIONS(2323), - [anon_sym_private] = ACTIONS(2323), - [anon_sym_protected] = ACTIONS(2323), - [anon_sym_override] = ACTIONS(2323), - [anon_sym_module] = ACTIONS(2323), - [anon_sym_any] = ACTIONS(2323), - [anon_sym_number] = ACTIONS(2323), - [anon_sym_boolean] = ACTIONS(2323), - [anon_sym_string] = ACTIONS(2323), - [anon_sym_symbol] = ACTIONS(2323), - [anon_sym_object] = ACTIONS(2323), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [ts_builtin_sym_end] = ACTIONS(1843), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1845), + [anon_sym_type] = ACTIONS(1845), + [anon_sym_EQ] = ACTIONS(1845), + [anon_sym_namespace] = ACTIONS(1845), + [anon_sym_LBRACE] = ACTIONS(1843), + [anon_sym_COMMA] = ACTIONS(1843), + [anon_sym_RBRACE] = ACTIONS(1843), + [anon_sym_typeof] = ACTIONS(1845), + [anon_sym_import] = ACTIONS(1845), + [anon_sym_from] = ACTIONS(1845), + [anon_sym_with] = ACTIONS(1845), + [anon_sym_var] = ACTIONS(1845), + [anon_sym_let] = ACTIONS(1845), + [anon_sym_const] = ACTIONS(1845), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_else] = ACTIONS(1845), + [anon_sym_if] = ACTIONS(1845), + [anon_sym_switch] = ACTIONS(1845), + [anon_sym_for] = ACTIONS(1845), + [anon_sym_LPAREN] = ACTIONS(1843), + [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_RPAREN] = ACTIONS(1843), + [anon_sym_await] = ACTIONS(1845), + [anon_sym_while] = ACTIONS(1845), + [anon_sym_do] = ACTIONS(1845), + [anon_sym_try] = ACTIONS(1845), + [anon_sym_break] = ACTIONS(1845), + [anon_sym_continue] = ACTIONS(1845), + [anon_sym_debugger] = ACTIONS(1845), + [anon_sym_return] = ACTIONS(1845), + [anon_sym_throw] = ACTIONS(1845), + [anon_sym_COLON] = ACTIONS(1843), + [anon_sym_case] = ACTIONS(1845), + [anon_sym_yield] = ACTIONS(1845), + [anon_sym_LBRACK] = ACTIONS(1843), + [anon_sym_RBRACK] = ACTIONS(1843), + [anon_sym_GT] = ACTIONS(1843), + [anon_sym_DQUOTE] = ACTIONS(1843), + [anon_sym_SQUOTE] = ACTIONS(1843), + [anon_sym_class] = ACTIONS(1845), + [anon_sym_async] = ACTIONS(1845), + [anon_sym_function] = ACTIONS(1845), + [anon_sym_EQ_GT] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(1845), + [anon_sym_using] = ACTIONS(1845), + [anon_sym_AMP] = ACTIONS(1843), + [anon_sym_PIPE] = ACTIONS(1843), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_SLASH] = ACTIONS(1845), + [anon_sym_LT] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_void] = ACTIONS(1845), + [anon_sym_delete] = ACTIONS(1845), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1843), + [sym_number] = ACTIONS(1843), + [sym_private_property_identifier] = ACTIONS(1843), + [sym_this] = ACTIONS(1845), + [sym_super] = ACTIONS(1845), + [sym_true] = ACTIONS(1845), + [sym_false] = ACTIONS(1845), + [sym_null] = ACTIONS(1845), + [sym_undefined] = ACTIONS(1845), + [anon_sym_AT] = ACTIONS(1843), + [anon_sym_static] = ACTIONS(1845), + [anon_sym_readonly] = ACTIONS(1845), + [anon_sym_get] = ACTIONS(1845), + [anon_sym_set] = ACTIONS(1845), + [anon_sym_QMARK] = ACTIONS(1843), + [anon_sym_declare] = ACTIONS(1845), + [anon_sym_public] = ACTIONS(1845), + [anon_sym_private] = ACTIONS(1845), + [anon_sym_protected] = ACTIONS(1845), + [anon_sym_override] = ACTIONS(1845), + [anon_sym_module] = ACTIONS(1845), + [anon_sym_any] = ACTIONS(1845), + [anon_sym_number] = ACTIONS(1845), + [anon_sym_boolean] = ACTIONS(1845), + [anon_sym_string] = ACTIONS(1845), + [anon_sym_symbol] = ACTIONS(1845), + [anon_sym_object] = ACTIONS(1845), + [anon_sym_abstract] = ACTIONS(1845), + [anon_sym_extends] = ACTIONS(1845), + [anon_sym_interface] = ACTIONS(1845), + [anon_sym_enum] = ACTIONS(1845), [sym_html_comment] = ACTIONS(5), }, [681] = { - [sym_declaration] = STATE(874), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_class_declaration] = STATE(789), - [sym_function_declaration] = STATE(789), - [sym_generator_function_declaration] = STATE(789), - [sym_decorator] = STATE(1267), - [sym_function_signature] = STATE(789), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(890), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [aux_sym_export_statement_repeat1] = STATE(4426), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2305), - [anon_sym_EQ] = ACTIONS(877), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2243), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_import] = ACTIONS(2247), - [anon_sym_var] = ACTIONS(2249), - [anon_sym_let] = ACTIONS(2251), - [anon_sym_const] = ACTIONS(2253), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(883), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_class] = ACTIONS(2258), - [anon_sym_async] = ACTIONS(2260), - [anon_sym_function] = ACTIONS(2262), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(2267), - [anon_sym_module] = ACTIONS(2307), - [anon_sym_abstract] = ACTIONS(2271), - [anon_sym_satisfies] = ACTIONS(161), - [anon_sym_global] = ACTIONS(2309), - [anon_sym_interface] = ACTIONS(2273), - [anon_sym_enum] = ACTIONS(2275), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [ts_builtin_sym_end] = ACTIONS(1805), + [sym_identifier] = ACTIONS(1807), + [anon_sym_export] = ACTIONS(1807), + [anon_sym_default] = ACTIONS(1807), + [anon_sym_type] = ACTIONS(1807), + [anon_sym_EQ] = ACTIONS(1807), + [anon_sym_namespace] = ACTIONS(1807), + [anon_sym_LBRACE] = ACTIONS(1805), + [anon_sym_COMMA] = ACTIONS(1805), + [anon_sym_RBRACE] = ACTIONS(1805), + [anon_sym_typeof] = ACTIONS(1807), + [anon_sym_import] = ACTIONS(1807), + [anon_sym_from] = ACTIONS(1807), + [anon_sym_with] = ACTIONS(1807), + [anon_sym_var] = ACTIONS(1807), + [anon_sym_let] = ACTIONS(1807), + [anon_sym_const] = ACTIONS(1807), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_else] = ACTIONS(1807), + [anon_sym_if] = ACTIONS(1807), + [anon_sym_switch] = ACTIONS(1807), + [anon_sym_for] = ACTIONS(1807), + [anon_sym_LPAREN] = ACTIONS(1805), + [anon_sym_SEMI] = ACTIONS(1805), + [anon_sym_RPAREN] = ACTIONS(1805), + [anon_sym_await] = ACTIONS(1807), + [anon_sym_while] = ACTIONS(1807), + [anon_sym_do] = ACTIONS(1807), + [anon_sym_try] = ACTIONS(1807), + [anon_sym_break] = ACTIONS(1807), + [anon_sym_continue] = ACTIONS(1807), + [anon_sym_debugger] = ACTIONS(1807), + [anon_sym_return] = ACTIONS(1807), + [anon_sym_throw] = ACTIONS(1807), + [anon_sym_COLON] = ACTIONS(1805), + [anon_sym_case] = ACTIONS(1807), + [anon_sym_yield] = ACTIONS(1807), + [anon_sym_LBRACK] = ACTIONS(1805), + [anon_sym_RBRACK] = ACTIONS(1805), + [anon_sym_GT] = ACTIONS(1805), + [anon_sym_DQUOTE] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1805), + [anon_sym_class] = ACTIONS(1807), + [anon_sym_async] = ACTIONS(1807), + [anon_sym_function] = ACTIONS(1807), + [anon_sym_EQ_GT] = ACTIONS(1805), + [anon_sym_new] = ACTIONS(1807), + [anon_sym_using] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1805), + [anon_sym_PIPE] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1807), + [anon_sym_DASH] = ACTIONS(1807), + [anon_sym_SLASH] = ACTIONS(1807), + [anon_sym_LT] = ACTIONS(1805), + [anon_sym_TILDE] = ACTIONS(1805), + [anon_sym_void] = ACTIONS(1807), + [anon_sym_delete] = ACTIONS(1807), + [anon_sym_PLUS_PLUS] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1805), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1805), + [sym_number] = ACTIONS(1805), + [sym_private_property_identifier] = ACTIONS(1805), + [sym_this] = ACTIONS(1807), + [sym_super] = ACTIONS(1807), + [sym_true] = ACTIONS(1807), + [sym_false] = ACTIONS(1807), + [sym_null] = ACTIONS(1807), + [sym_undefined] = ACTIONS(1807), + [anon_sym_AT] = ACTIONS(1805), + [anon_sym_static] = ACTIONS(1807), + [anon_sym_readonly] = ACTIONS(1807), + [anon_sym_get] = ACTIONS(1807), + [anon_sym_set] = ACTIONS(1807), + [anon_sym_QMARK] = ACTIONS(1805), + [anon_sym_declare] = ACTIONS(1807), + [anon_sym_public] = ACTIONS(1807), + [anon_sym_private] = ACTIONS(1807), + [anon_sym_protected] = ACTIONS(1807), + [anon_sym_override] = ACTIONS(1807), + [anon_sym_module] = ACTIONS(1807), + [anon_sym_any] = ACTIONS(1807), + [anon_sym_number] = ACTIONS(1807), + [anon_sym_boolean] = ACTIONS(1807), + [anon_sym_string] = ACTIONS(1807), + [anon_sym_symbol] = ACTIONS(1807), + [anon_sym_object] = ACTIONS(1807), + [anon_sym_abstract] = ACTIONS(1807), + [anon_sym_extends] = ACTIONS(1807), + [anon_sym_interface] = ACTIONS(1807), + [anon_sym_enum] = ACTIONS(1807), [sym_html_comment] = ACTIONS(5), }, [682] = { - [ts_builtin_sym_end] = ACTIONS(2333), - [sym_identifier] = ACTIONS(2335), - [anon_sym_export] = ACTIONS(2335), - [anon_sym_default] = ACTIONS(2335), - [anon_sym_type] = ACTIONS(2335), - [anon_sym_EQ] = ACTIONS(2335), - [anon_sym_namespace] = ACTIONS(2335), - [anon_sym_LBRACE] = ACTIONS(2333), - [anon_sym_COMMA] = ACTIONS(2333), - [anon_sym_RBRACE] = ACTIONS(2333), - [anon_sym_typeof] = ACTIONS(2335), - [anon_sym_import] = ACTIONS(2335), - [anon_sym_with] = ACTIONS(2335), - [anon_sym_var] = ACTIONS(2335), - [anon_sym_let] = ACTIONS(2335), - [anon_sym_const] = ACTIONS(2335), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_else] = ACTIONS(2335), - [anon_sym_if] = ACTIONS(2335), - [anon_sym_switch] = ACTIONS(2335), - [anon_sym_for] = ACTIONS(2335), - [anon_sym_LPAREN] = ACTIONS(2333), - [anon_sym_SEMI] = ACTIONS(2333), - [anon_sym_RPAREN] = ACTIONS(2333), - [anon_sym_await] = ACTIONS(2335), - [anon_sym_while] = ACTIONS(2335), - [anon_sym_do] = ACTIONS(2335), - [anon_sym_try] = ACTIONS(2335), - [anon_sym_break] = ACTIONS(2335), - [anon_sym_continue] = ACTIONS(2335), - [anon_sym_debugger] = ACTIONS(2335), - [anon_sym_return] = ACTIONS(2335), - [anon_sym_throw] = ACTIONS(2335), - [anon_sym_COLON] = ACTIONS(2333), - [anon_sym_case] = ACTIONS(2335), - [anon_sym_yield] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(2333), - [anon_sym_RBRACK] = ACTIONS(2333), - [sym_glimmer_opening_tag] = ACTIONS(2333), - [anon_sym_GT] = ACTIONS(2333), - [anon_sym_DQUOTE] = ACTIONS(2333), - [anon_sym_SQUOTE] = ACTIONS(2333), - [anon_sym_class] = ACTIONS(2335), - [anon_sym_async] = ACTIONS(2335), - [anon_sym_function] = ACTIONS(2335), - [anon_sym_EQ_GT] = ACTIONS(2333), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_using] = ACTIONS(2335), - [anon_sym_AMP] = ACTIONS(2333), - [anon_sym_PIPE] = ACTIONS(2333), - [anon_sym_PLUS] = ACTIONS(2335), - [anon_sym_DASH] = ACTIONS(2335), - [anon_sym_SLASH] = ACTIONS(2335), - [anon_sym_LT] = ACTIONS(2335), - [anon_sym_TILDE] = ACTIONS(2333), - [anon_sym_void] = ACTIONS(2335), - [anon_sym_delete] = ACTIONS(2335), - [anon_sym_PLUS_PLUS] = ACTIONS(2333), - [anon_sym_DASH_DASH] = ACTIONS(2333), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2333), - [sym_number] = ACTIONS(2333), - [sym_private_property_identifier] = ACTIONS(2333), - [sym_this] = ACTIONS(2335), - [sym_super] = ACTIONS(2335), - [sym_true] = ACTIONS(2335), - [sym_false] = ACTIONS(2335), - [sym_null] = ACTIONS(2335), - [sym_undefined] = ACTIONS(2335), - [anon_sym_AT] = ACTIONS(2333), - [anon_sym_static] = ACTIONS(2335), - [anon_sym_readonly] = ACTIONS(2335), - [anon_sym_get] = ACTIONS(2335), - [anon_sym_set] = ACTIONS(2335), - [anon_sym_QMARK] = ACTIONS(2333), - [anon_sym_declare] = ACTIONS(2335), - [anon_sym_public] = ACTIONS(2335), - [anon_sym_private] = ACTIONS(2335), - [anon_sym_protected] = ACTIONS(2335), - [anon_sym_override] = ACTIONS(2335), - [anon_sym_module] = ACTIONS(2335), - [anon_sym_any] = ACTIONS(2335), - [anon_sym_number] = ACTIONS(2335), - [anon_sym_boolean] = ACTIONS(2335), - [anon_sym_string] = ACTIONS(2335), - [anon_sym_symbol] = ACTIONS(2335), - [anon_sym_object] = ACTIONS(2335), - [anon_sym_abstract] = ACTIONS(2335), - [anon_sym_extends] = ACTIONS(2335), - [anon_sym_interface] = ACTIONS(2335), - [anon_sym_enum] = ACTIONS(2335), + [sym_declaration] = STATE(886), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_class_declaration] = STATE(852), + [sym_function_declaration] = STATE(852), + [sym_generator_function_declaration] = STATE(852), + [sym_decorator] = STATE(1290), + [sym_function_signature] = STATE(852), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(811), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [aux_sym_export_statement_repeat1] = STATE(4284), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2296), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2238), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_import] = ACTIONS(2242), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2246), + [anon_sym_const] = ACTIONS(2248), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(856), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_class] = ACTIONS(2253), + [anon_sym_async] = ACTIONS(2255), + [anon_sym_function] = ACTIONS(2257), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(2262), + [anon_sym_module] = ACTIONS(2298), + [anon_sym_abstract] = ACTIONS(2266), + [anon_sym_satisfies] = ACTIONS(158), + [anon_sym_global] = ACTIONS(2300), + [anon_sym_interface] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2270), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [683] = { - [sym_declaration] = STATE(874), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_class_declaration] = STATE(789), - [sym_function_declaration] = STATE(789), - [sym_generator_function_declaration] = STATE(789), - [sym_decorator] = STATE(1267), - [sym_function_signature] = STATE(789), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(890), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [aux_sym_export_statement_repeat1] = STATE(4426), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2305), - [anon_sym_EQ] = ACTIONS(877), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2243), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_import] = ACTIONS(2247), - [anon_sym_var] = ACTIONS(2249), - [anon_sym_let] = ACTIONS(2251), - [anon_sym_const] = ACTIONS(2253), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(881), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_class] = ACTIONS(2258), - [anon_sym_async] = ACTIONS(2260), - [anon_sym_function] = ACTIONS(2262), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(2267), - [anon_sym_module] = ACTIONS(2307), - [anon_sym_abstract] = ACTIONS(2271), - [anon_sym_satisfies] = ACTIONS(161), - [anon_sym_global] = ACTIONS(2309), - [anon_sym_interface] = ACTIONS(2273), - [anon_sym_enum] = ACTIONS(2275), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_declaration] = STATE(886), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_class_declaration] = STATE(852), + [sym_function_declaration] = STATE(852), + [sym_generator_function_declaration] = STATE(852), + [sym_decorator] = STATE(1290), + [sym_function_signature] = STATE(852), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(811), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [aux_sym_export_statement_repeat1] = STATE(4284), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2296), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2238), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_import] = ACTIONS(2242), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2246), + [anon_sym_const] = ACTIONS(2248), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_class] = ACTIONS(2253), + [anon_sym_async] = ACTIONS(2255), + [anon_sym_function] = ACTIONS(2257), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(2262), + [anon_sym_module] = ACTIONS(2298), + [anon_sym_abstract] = ACTIONS(2266), + [anon_sym_satisfies] = ACTIONS(158), + [anon_sym_global] = ACTIONS(2300), + [anon_sym_interface] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2270), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [684] = { - [ts_builtin_sym_end] = ACTIONS(2337), - [sym_identifier] = ACTIONS(2339), - [anon_sym_export] = ACTIONS(2339), - [anon_sym_default] = ACTIONS(2339), - [anon_sym_type] = ACTIONS(2339), - [anon_sym_EQ] = ACTIONS(2339), - [anon_sym_namespace] = ACTIONS(2339), - [anon_sym_LBRACE] = ACTIONS(2337), - [anon_sym_COMMA] = ACTIONS(2337), - [anon_sym_RBRACE] = ACTIONS(2337), - [anon_sym_typeof] = ACTIONS(2339), - [anon_sym_import] = ACTIONS(2339), - [anon_sym_with] = ACTIONS(2339), - [anon_sym_var] = ACTIONS(2339), - [anon_sym_let] = ACTIONS(2339), - [anon_sym_const] = ACTIONS(2339), - [anon_sym_BANG] = ACTIONS(2337), - [anon_sym_else] = ACTIONS(2339), - [anon_sym_if] = ACTIONS(2339), - [anon_sym_switch] = ACTIONS(2339), - [anon_sym_for] = ACTIONS(2339), - [anon_sym_LPAREN] = ACTIONS(2337), - [anon_sym_SEMI] = ACTIONS(2337), - [anon_sym_RPAREN] = ACTIONS(2337), - [anon_sym_await] = ACTIONS(2339), - [anon_sym_while] = ACTIONS(2339), - [anon_sym_do] = ACTIONS(2339), - [anon_sym_try] = ACTIONS(2339), - [anon_sym_break] = ACTIONS(2339), - [anon_sym_continue] = ACTIONS(2339), - [anon_sym_debugger] = ACTIONS(2339), - [anon_sym_return] = ACTIONS(2339), - [anon_sym_throw] = ACTIONS(2339), - [anon_sym_COLON] = ACTIONS(2337), - [anon_sym_case] = ACTIONS(2339), - [anon_sym_yield] = ACTIONS(2339), - [anon_sym_LBRACK] = ACTIONS(2337), - [anon_sym_RBRACK] = ACTIONS(2337), - [sym_glimmer_opening_tag] = ACTIONS(2337), - [anon_sym_GT] = ACTIONS(2337), - [anon_sym_DQUOTE] = ACTIONS(2337), - [anon_sym_SQUOTE] = ACTIONS(2337), - [anon_sym_class] = ACTIONS(2339), - [anon_sym_async] = ACTIONS(2339), - [anon_sym_function] = ACTIONS(2339), - [anon_sym_EQ_GT] = ACTIONS(2337), - [anon_sym_new] = ACTIONS(2339), - [anon_sym_using] = ACTIONS(2339), - [anon_sym_AMP] = ACTIONS(2337), - [anon_sym_PIPE] = ACTIONS(2337), - [anon_sym_PLUS] = ACTIONS(2339), - [anon_sym_DASH] = ACTIONS(2339), - [anon_sym_SLASH] = ACTIONS(2339), - [anon_sym_LT] = ACTIONS(2339), - [anon_sym_TILDE] = ACTIONS(2337), - [anon_sym_void] = ACTIONS(2339), - [anon_sym_delete] = ACTIONS(2339), - [anon_sym_PLUS_PLUS] = ACTIONS(2337), - [anon_sym_DASH_DASH] = ACTIONS(2337), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2337), - [sym_number] = ACTIONS(2337), - [sym_private_property_identifier] = ACTIONS(2337), - [sym_this] = ACTIONS(2339), - [sym_super] = ACTIONS(2339), - [sym_true] = ACTIONS(2339), - [sym_false] = ACTIONS(2339), - [sym_null] = ACTIONS(2339), - [sym_undefined] = ACTIONS(2339), - [anon_sym_AT] = ACTIONS(2337), - [anon_sym_static] = ACTIONS(2339), - [anon_sym_readonly] = ACTIONS(2339), - [anon_sym_get] = ACTIONS(2339), - [anon_sym_set] = ACTIONS(2339), - [anon_sym_QMARK] = ACTIONS(2337), - [anon_sym_declare] = ACTIONS(2339), - [anon_sym_public] = ACTIONS(2339), - [anon_sym_private] = ACTIONS(2339), - [anon_sym_protected] = ACTIONS(2339), - [anon_sym_override] = ACTIONS(2339), - [anon_sym_module] = ACTIONS(2339), - [anon_sym_any] = ACTIONS(2339), - [anon_sym_number] = ACTIONS(2339), - [anon_sym_boolean] = ACTIONS(2339), - [anon_sym_string] = ACTIONS(2339), - [anon_sym_symbol] = ACTIONS(2339), - [anon_sym_object] = ACTIONS(2339), - [anon_sym_abstract] = ACTIONS(2339), - [anon_sym_extends] = ACTIONS(2339), - [anon_sym_interface] = ACTIONS(2339), - [anon_sym_enum] = ACTIONS(2339), + [ts_builtin_sym_end] = ACTIONS(2326), + [sym_identifier] = ACTIONS(2328), + [anon_sym_export] = ACTIONS(2328), + [anon_sym_default] = ACTIONS(2328), + [anon_sym_type] = ACTIONS(2328), + [anon_sym_EQ] = ACTIONS(2328), + [anon_sym_namespace] = ACTIONS(2328), + [anon_sym_LBRACE] = ACTIONS(2326), + [anon_sym_COMMA] = ACTIONS(2326), + [anon_sym_RBRACE] = ACTIONS(2326), + [anon_sym_typeof] = ACTIONS(2328), + [anon_sym_import] = ACTIONS(2328), + [anon_sym_with] = ACTIONS(2328), + [anon_sym_var] = ACTIONS(2328), + [anon_sym_let] = ACTIONS(2328), + [anon_sym_const] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2326), + [anon_sym_else] = ACTIONS(2328), + [anon_sym_if] = ACTIONS(2328), + [anon_sym_switch] = ACTIONS(2328), + [anon_sym_for] = ACTIONS(2328), + [anon_sym_LPAREN] = ACTIONS(2326), + [anon_sym_SEMI] = ACTIONS(2326), + [anon_sym_RPAREN] = ACTIONS(2326), + [anon_sym_await] = ACTIONS(2328), + [anon_sym_while] = ACTIONS(2328), + [anon_sym_do] = ACTIONS(2328), + [anon_sym_try] = ACTIONS(2328), + [anon_sym_break] = ACTIONS(2328), + [anon_sym_continue] = ACTIONS(2328), + [anon_sym_debugger] = ACTIONS(2328), + [anon_sym_return] = ACTIONS(2328), + [anon_sym_throw] = ACTIONS(2328), + [anon_sym_COLON] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_yield] = ACTIONS(2328), + [anon_sym_LBRACK] = ACTIONS(2326), + [anon_sym_RBRACK] = ACTIONS(2326), + [anon_sym_GT] = ACTIONS(2326), + [anon_sym_DQUOTE] = ACTIONS(2326), + [anon_sym_SQUOTE] = ACTIONS(2326), + [anon_sym_class] = ACTIONS(2328), + [anon_sym_async] = ACTIONS(2328), + [anon_sym_function] = ACTIONS(2328), + [anon_sym_EQ_GT] = ACTIONS(2326), + [anon_sym_new] = ACTIONS(2328), + [anon_sym_using] = ACTIONS(2328), + [anon_sym_AMP] = ACTIONS(2326), + [anon_sym_PIPE] = ACTIONS(2326), + [anon_sym_PLUS] = ACTIONS(2328), + [anon_sym_DASH] = ACTIONS(2328), + [anon_sym_SLASH] = ACTIONS(2328), + [anon_sym_LT] = ACTIONS(2326), + [anon_sym_TILDE] = ACTIONS(2326), + [anon_sym_void] = ACTIONS(2328), + [anon_sym_delete] = ACTIONS(2328), + [anon_sym_PLUS_PLUS] = ACTIONS(2326), + [anon_sym_DASH_DASH] = ACTIONS(2326), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2326), + [sym_number] = ACTIONS(2326), + [sym_private_property_identifier] = ACTIONS(2326), + [sym_this] = ACTIONS(2328), + [sym_super] = ACTIONS(2328), + [sym_true] = ACTIONS(2328), + [sym_false] = ACTIONS(2328), + [sym_null] = ACTIONS(2328), + [sym_undefined] = ACTIONS(2328), + [anon_sym_AT] = ACTIONS(2326), + [anon_sym_static] = ACTIONS(2328), + [anon_sym_readonly] = ACTIONS(2328), + [anon_sym_get] = ACTIONS(2328), + [anon_sym_set] = ACTIONS(2328), + [anon_sym_QMARK] = ACTIONS(2326), + [anon_sym_declare] = ACTIONS(2328), + [anon_sym_public] = ACTIONS(2328), + [anon_sym_private] = ACTIONS(2328), + [anon_sym_protected] = ACTIONS(2328), + [anon_sym_override] = ACTIONS(2328), + [anon_sym_module] = ACTIONS(2328), + [anon_sym_any] = ACTIONS(2328), + [anon_sym_number] = ACTIONS(2328), + [anon_sym_boolean] = ACTIONS(2328), + [anon_sym_string] = ACTIONS(2328), + [anon_sym_symbol] = ACTIONS(2328), + [anon_sym_object] = ACTIONS(2328), + [anon_sym_abstract] = ACTIONS(2328), + [anon_sym_extends] = ACTIONS(2328), + [anon_sym_interface] = ACTIONS(2328), + [anon_sym_enum] = ACTIONS(2328), [sym_html_comment] = ACTIONS(5), }, [685] = { - [ts_builtin_sym_end] = ACTIONS(2341), - [sym_identifier] = ACTIONS(2343), - [anon_sym_export] = ACTIONS(2343), - [anon_sym_default] = ACTIONS(2343), - [anon_sym_type] = ACTIONS(2343), - [anon_sym_EQ] = ACTIONS(2343), - [anon_sym_namespace] = ACTIONS(2343), - [anon_sym_LBRACE] = ACTIONS(2341), - [anon_sym_COMMA] = ACTIONS(2341), - [anon_sym_RBRACE] = ACTIONS(2341), - [anon_sym_typeof] = ACTIONS(2343), - [anon_sym_import] = ACTIONS(2343), - [anon_sym_with] = ACTIONS(2343), - [anon_sym_var] = ACTIONS(2343), - [anon_sym_let] = ACTIONS(2343), - [anon_sym_const] = ACTIONS(2343), - [anon_sym_BANG] = ACTIONS(2341), - [anon_sym_else] = ACTIONS(2343), - [anon_sym_if] = ACTIONS(2343), - [anon_sym_switch] = ACTIONS(2343), - [anon_sym_for] = ACTIONS(2343), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_SEMI] = ACTIONS(2341), - [anon_sym_RPAREN] = ACTIONS(2341), - [anon_sym_await] = ACTIONS(2343), - [anon_sym_while] = ACTIONS(2343), - [anon_sym_do] = ACTIONS(2343), - [anon_sym_try] = ACTIONS(2343), - [anon_sym_break] = ACTIONS(2343), - [anon_sym_continue] = ACTIONS(2343), - [anon_sym_debugger] = ACTIONS(2343), - [anon_sym_return] = ACTIONS(2343), - [anon_sym_throw] = ACTIONS(2343), - [anon_sym_COLON] = ACTIONS(2341), - [anon_sym_case] = ACTIONS(2343), - [anon_sym_yield] = ACTIONS(2343), - [anon_sym_LBRACK] = ACTIONS(2341), - [anon_sym_RBRACK] = ACTIONS(2341), - [sym_glimmer_opening_tag] = ACTIONS(2341), - [anon_sym_GT] = ACTIONS(2341), - [anon_sym_DQUOTE] = ACTIONS(2341), - [anon_sym_SQUOTE] = ACTIONS(2341), - [anon_sym_class] = ACTIONS(2343), - [anon_sym_async] = ACTIONS(2343), - [anon_sym_function] = ACTIONS(2343), - [anon_sym_EQ_GT] = ACTIONS(2341), - [anon_sym_new] = ACTIONS(2343), - [anon_sym_using] = ACTIONS(2343), - [anon_sym_AMP] = ACTIONS(2341), - [anon_sym_PIPE] = ACTIONS(2341), - [anon_sym_PLUS] = ACTIONS(2343), - [anon_sym_DASH] = ACTIONS(2343), - [anon_sym_SLASH] = ACTIONS(2343), - [anon_sym_LT] = ACTIONS(2343), - [anon_sym_TILDE] = ACTIONS(2341), - [anon_sym_void] = ACTIONS(2343), - [anon_sym_delete] = ACTIONS(2343), - [anon_sym_PLUS_PLUS] = ACTIONS(2341), - [anon_sym_DASH_DASH] = ACTIONS(2341), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2341), - [sym_number] = ACTIONS(2341), - [sym_private_property_identifier] = ACTIONS(2341), - [sym_this] = ACTIONS(2343), - [sym_super] = ACTIONS(2343), - [sym_true] = ACTIONS(2343), - [sym_false] = ACTIONS(2343), - [sym_null] = ACTIONS(2343), - [sym_undefined] = ACTIONS(2343), - [anon_sym_AT] = ACTIONS(2341), - [anon_sym_static] = ACTIONS(2343), - [anon_sym_readonly] = ACTIONS(2343), - [anon_sym_get] = ACTIONS(2343), - [anon_sym_set] = ACTIONS(2343), - [anon_sym_QMARK] = ACTIONS(2341), - [anon_sym_declare] = ACTIONS(2343), - [anon_sym_public] = ACTIONS(2343), - [anon_sym_private] = ACTIONS(2343), - [anon_sym_protected] = ACTIONS(2343), - [anon_sym_override] = ACTIONS(2343), - [anon_sym_module] = ACTIONS(2343), - [anon_sym_any] = ACTIONS(2343), - [anon_sym_number] = ACTIONS(2343), - [anon_sym_boolean] = ACTIONS(2343), - [anon_sym_string] = ACTIONS(2343), - [anon_sym_symbol] = ACTIONS(2343), - [anon_sym_object] = ACTIONS(2343), - [anon_sym_abstract] = ACTIONS(2343), - [anon_sym_extends] = ACTIONS(2343), - [anon_sym_interface] = ACTIONS(2343), - [anon_sym_enum] = ACTIONS(2343), + [ts_builtin_sym_end] = ACTIONS(2330), + [sym_identifier] = ACTIONS(2332), + [anon_sym_export] = ACTIONS(2332), + [anon_sym_default] = ACTIONS(2332), + [anon_sym_type] = ACTIONS(2332), + [anon_sym_EQ] = ACTIONS(2332), + [anon_sym_namespace] = ACTIONS(2332), + [anon_sym_LBRACE] = ACTIONS(2330), + [anon_sym_COMMA] = ACTIONS(2330), + [anon_sym_RBRACE] = ACTIONS(2330), + [anon_sym_typeof] = ACTIONS(2332), + [anon_sym_import] = ACTIONS(2332), + [anon_sym_with] = ACTIONS(2332), + [anon_sym_var] = ACTIONS(2332), + [anon_sym_let] = ACTIONS(2332), + [anon_sym_const] = ACTIONS(2332), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_else] = ACTIONS(2332), + [anon_sym_if] = ACTIONS(2332), + [anon_sym_switch] = ACTIONS(2332), + [anon_sym_for] = ACTIONS(2332), + [anon_sym_LPAREN] = ACTIONS(2330), + [anon_sym_SEMI] = ACTIONS(2330), + [anon_sym_RPAREN] = ACTIONS(2330), + [anon_sym_await] = ACTIONS(2332), + [anon_sym_while] = ACTIONS(2332), + [anon_sym_do] = ACTIONS(2332), + [anon_sym_try] = ACTIONS(2332), + [anon_sym_break] = ACTIONS(2332), + [anon_sym_continue] = ACTIONS(2332), + [anon_sym_debugger] = ACTIONS(2332), + [anon_sym_return] = ACTIONS(2332), + [anon_sym_throw] = ACTIONS(2332), + [anon_sym_COLON] = ACTIONS(2330), + [anon_sym_case] = ACTIONS(2332), + [anon_sym_yield] = ACTIONS(2332), + [anon_sym_LBRACK] = ACTIONS(2330), + [anon_sym_RBRACK] = ACTIONS(2330), + [anon_sym_GT] = ACTIONS(2330), + [anon_sym_DQUOTE] = ACTIONS(2330), + [anon_sym_SQUOTE] = ACTIONS(2330), + [anon_sym_class] = ACTIONS(2332), + [anon_sym_async] = ACTIONS(2332), + [anon_sym_function] = ACTIONS(2332), + [anon_sym_EQ_GT] = ACTIONS(2330), + [anon_sym_new] = ACTIONS(2332), + [anon_sym_using] = ACTIONS(2332), + [anon_sym_AMP] = ACTIONS(2330), + [anon_sym_PIPE] = ACTIONS(2330), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_SLASH] = ACTIONS(2332), + [anon_sym_LT] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_void] = ACTIONS(2332), + [anon_sym_delete] = ACTIONS(2332), + [anon_sym_PLUS_PLUS] = ACTIONS(2330), + [anon_sym_DASH_DASH] = ACTIONS(2330), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2330), + [sym_number] = ACTIONS(2330), + [sym_private_property_identifier] = ACTIONS(2330), + [sym_this] = ACTIONS(2332), + [sym_super] = ACTIONS(2332), + [sym_true] = ACTIONS(2332), + [sym_false] = ACTIONS(2332), + [sym_null] = ACTIONS(2332), + [sym_undefined] = ACTIONS(2332), + [anon_sym_AT] = ACTIONS(2330), + [anon_sym_static] = ACTIONS(2332), + [anon_sym_readonly] = ACTIONS(2332), + [anon_sym_get] = ACTIONS(2332), + [anon_sym_set] = ACTIONS(2332), + [anon_sym_QMARK] = ACTIONS(2330), + [anon_sym_declare] = ACTIONS(2332), + [anon_sym_public] = ACTIONS(2332), + [anon_sym_private] = ACTIONS(2332), + [anon_sym_protected] = ACTIONS(2332), + [anon_sym_override] = ACTIONS(2332), + [anon_sym_module] = ACTIONS(2332), + [anon_sym_any] = ACTIONS(2332), + [anon_sym_number] = ACTIONS(2332), + [anon_sym_boolean] = ACTIONS(2332), + [anon_sym_string] = ACTIONS(2332), + [anon_sym_symbol] = ACTIONS(2332), + [anon_sym_object] = ACTIONS(2332), + [anon_sym_abstract] = ACTIONS(2332), + [anon_sym_extends] = ACTIONS(2332), + [anon_sym_interface] = ACTIONS(2332), + [anon_sym_enum] = ACTIONS(2332), [sym_html_comment] = ACTIONS(5), }, [686] = { - [sym_declaration] = STATE(874), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_class_declaration] = STATE(789), - [sym_function_declaration] = STATE(789), - [sym_generator_function_declaration] = STATE(789), - [sym_decorator] = STATE(1267), - [sym_function_signature] = STATE(789), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(890), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [aux_sym_export_statement_repeat1] = STATE(4426), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2305), - [anon_sym_EQ] = ACTIONS(877), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2317), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_import] = ACTIONS(2247), - [anon_sym_var] = ACTIONS(2249), - [anon_sym_let] = ACTIONS(2251), - [anon_sym_const] = ACTIONS(2253), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(879), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_class] = ACTIONS(2258), - [anon_sym_async] = ACTIONS(2260), - [anon_sym_function] = ACTIONS(2262), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(2319), - [anon_sym_module] = ACTIONS(2345), - [anon_sym_abstract] = ACTIONS(2271), - [anon_sym_satisfies] = ACTIONS(161), - [anon_sym_global] = ACTIONS(2309), - [anon_sym_interface] = ACTIONS(2273), - [anon_sym_enum] = ACTIONS(2275), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [ts_builtin_sym_end] = ACTIONS(2334), + [sym_identifier] = ACTIONS(2336), + [anon_sym_export] = ACTIONS(2336), + [anon_sym_default] = ACTIONS(2336), + [anon_sym_type] = ACTIONS(2336), + [anon_sym_EQ] = ACTIONS(2336), + [anon_sym_namespace] = ACTIONS(2336), + [anon_sym_LBRACE] = ACTIONS(2334), + [anon_sym_COMMA] = ACTIONS(2334), + [anon_sym_RBRACE] = ACTIONS(2334), + [anon_sym_typeof] = ACTIONS(2336), + [anon_sym_import] = ACTIONS(2336), + [anon_sym_with] = ACTIONS(2336), + [anon_sym_var] = ACTIONS(2336), + [anon_sym_let] = ACTIONS(2336), + [anon_sym_const] = ACTIONS(2336), + [anon_sym_BANG] = ACTIONS(2334), + [anon_sym_else] = ACTIONS(2336), + [anon_sym_if] = ACTIONS(2336), + [anon_sym_switch] = ACTIONS(2336), + [anon_sym_for] = ACTIONS(2336), + [anon_sym_LPAREN] = ACTIONS(2334), + [anon_sym_SEMI] = ACTIONS(2334), + [anon_sym_RPAREN] = ACTIONS(2334), + [anon_sym_await] = ACTIONS(2336), + [anon_sym_while] = ACTIONS(2336), + [anon_sym_do] = ACTIONS(2336), + [anon_sym_try] = ACTIONS(2336), + [anon_sym_break] = ACTIONS(2336), + [anon_sym_continue] = ACTIONS(2336), + [anon_sym_debugger] = ACTIONS(2336), + [anon_sym_return] = ACTIONS(2336), + [anon_sym_throw] = ACTIONS(2336), + [anon_sym_COLON] = ACTIONS(2334), + [anon_sym_case] = ACTIONS(2336), + [anon_sym_yield] = ACTIONS(2336), + [anon_sym_LBRACK] = ACTIONS(2334), + [anon_sym_RBRACK] = ACTIONS(2334), + [anon_sym_GT] = ACTIONS(2334), + [anon_sym_DQUOTE] = ACTIONS(2334), + [anon_sym_SQUOTE] = ACTIONS(2334), + [anon_sym_class] = ACTIONS(2336), + [anon_sym_async] = ACTIONS(2336), + [anon_sym_function] = ACTIONS(2336), + [anon_sym_EQ_GT] = ACTIONS(2334), + [anon_sym_new] = ACTIONS(2336), + [anon_sym_using] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym_PIPE] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2336), + [anon_sym_DASH] = ACTIONS(2336), + [anon_sym_SLASH] = ACTIONS(2336), + [anon_sym_LT] = ACTIONS(2334), + [anon_sym_TILDE] = ACTIONS(2334), + [anon_sym_void] = ACTIONS(2336), + [anon_sym_delete] = ACTIONS(2336), + [anon_sym_PLUS_PLUS] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2334), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2334), + [sym_number] = ACTIONS(2334), + [sym_private_property_identifier] = ACTIONS(2334), + [sym_this] = ACTIONS(2336), + [sym_super] = ACTIONS(2336), + [sym_true] = ACTIONS(2336), + [sym_false] = ACTIONS(2336), + [sym_null] = ACTIONS(2336), + [sym_undefined] = ACTIONS(2336), + [anon_sym_AT] = ACTIONS(2334), + [anon_sym_static] = ACTIONS(2336), + [anon_sym_readonly] = ACTIONS(2336), + [anon_sym_get] = ACTIONS(2336), + [anon_sym_set] = ACTIONS(2336), + [anon_sym_QMARK] = ACTIONS(2334), + [anon_sym_declare] = ACTIONS(2336), + [anon_sym_public] = ACTIONS(2336), + [anon_sym_private] = ACTIONS(2336), + [anon_sym_protected] = ACTIONS(2336), + [anon_sym_override] = ACTIONS(2336), + [anon_sym_module] = ACTIONS(2336), + [anon_sym_any] = ACTIONS(2336), + [anon_sym_number] = ACTIONS(2336), + [anon_sym_boolean] = ACTIONS(2336), + [anon_sym_string] = ACTIONS(2336), + [anon_sym_symbol] = ACTIONS(2336), + [anon_sym_object] = ACTIONS(2336), + [anon_sym_abstract] = ACTIONS(2336), + [anon_sym_extends] = ACTIONS(2336), + [anon_sym_interface] = ACTIONS(2336), + [anon_sym_enum] = ACTIONS(2336), [sym_html_comment] = ACTIONS(5), }, [687] = { - [ts_builtin_sym_end] = ACTIONS(2347), - [sym_identifier] = ACTIONS(2349), - [anon_sym_export] = ACTIONS(2349), - [anon_sym_default] = ACTIONS(2349), - [anon_sym_type] = ACTIONS(2349), - [anon_sym_EQ] = ACTIONS(2349), - [anon_sym_namespace] = ACTIONS(2349), - [anon_sym_LBRACE] = ACTIONS(2347), - [anon_sym_COMMA] = ACTIONS(2347), - [anon_sym_RBRACE] = ACTIONS(2347), - [anon_sym_typeof] = ACTIONS(2349), - [anon_sym_import] = ACTIONS(2349), - [anon_sym_with] = ACTIONS(2349), - [anon_sym_var] = ACTIONS(2349), - [anon_sym_let] = ACTIONS(2349), - [anon_sym_const] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2349), - [anon_sym_if] = ACTIONS(2349), - [anon_sym_switch] = ACTIONS(2349), - [anon_sym_for] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2347), - [anon_sym_RPAREN] = ACTIONS(2347), - [anon_sym_await] = ACTIONS(2349), - [anon_sym_while] = ACTIONS(2349), - [anon_sym_do] = ACTIONS(2349), - [anon_sym_try] = ACTIONS(2349), - [anon_sym_break] = ACTIONS(2349), - [anon_sym_continue] = ACTIONS(2349), - [anon_sym_debugger] = ACTIONS(2349), - [anon_sym_return] = ACTIONS(2349), - [anon_sym_throw] = ACTIONS(2349), - [anon_sym_COLON] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2349), - [anon_sym_yield] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_RBRACK] = ACTIONS(2347), - [sym_glimmer_opening_tag] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(2347), - [anon_sym_DQUOTE] = ACTIONS(2347), - [anon_sym_SQUOTE] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2349), - [anon_sym_async] = ACTIONS(2349), - [anon_sym_function] = ACTIONS(2349), - [anon_sym_EQ_GT] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2349), - [anon_sym_using] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_PIPE] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2349), - [anon_sym_SLASH] = ACTIONS(2349), - [anon_sym_LT] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2347), - [anon_sym_void] = ACTIONS(2349), - [anon_sym_delete] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2347), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2347), - [sym_number] = ACTIONS(2347), - [sym_private_property_identifier] = ACTIONS(2347), - [sym_this] = ACTIONS(2349), - [sym_super] = ACTIONS(2349), - [sym_true] = ACTIONS(2349), - [sym_false] = ACTIONS(2349), - [sym_null] = ACTIONS(2349), - [sym_undefined] = ACTIONS(2349), - [anon_sym_AT] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2349), - [anon_sym_readonly] = ACTIONS(2349), - [anon_sym_get] = ACTIONS(2349), - [anon_sym_set] = ACTIONS(2349), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_declare] = ACTIONS(2349), - [anon_sym_public] = ACTIONS(2349), - [anon_sym_private] = ACTIONS(2349), - [anon_sym_protected] = ACTIONS(2349), - [anon_sym_override] = ACTIONS(2349), - [anon_sym_module] = ACTIONS(2349), - [anon_sym_any] = ACTIONS(2349), - [anon_sym_number] = ACTIONS(2349), - [anon_sym_boolean] = ACTIONS(2349), - [anon_sym_string] = ACTIONS(2349), - [anon_sym_symbol] = ACTIONS(2349), - [anon_sym_object] = ACTIONS(2349), - [anon_sym_abstract] = ACTIONS(2349), - [anon_sym_extends] = ACTIONS(2349), - [anon_sym_interface] = ACTIONS(2349), - [anon_sym_enum] = ACTIONS(2349), + [ts_builtin_sym_end] = ACTIONS(2338), + [sym_identifier] = ACTIONS(2340), + [anon_sym_export] = ACTIONS(2340), + [anon_sym_default] = ACTIONS(2340), + [anon_sym_type] = ACTIONS(2340), + [anon_sym_EQ] = ACTIONS(2340), + [anon_sym_namespace] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2338), + [anon_sym_COMMA] = ACTIONS(2338), + [anon_sym_RBRACE] = ACTIONS(2338), + [anon_sym_typeof] = ACTIONS(2340), + [anon_sym_import] = ACTIONS(2340), + [anon_sym_with] = ACTIONS(2340), + [anon_sym_var] = ACTIONS(2340), + [anon_sym_let] = ACTIONS(2340), + [anon_sym_const] = ACTIONS(2340), + [anon_sym_BANG] = ACTIONS(2338), + [anon_sym_else] = ACTIONS(2340), + [anon_sym_if] = ACTIONS(2340), + [anon_sym_switch] = ACTIONS(2340), + [anon_sym_for] = ACTIONS(2340), + [anon_sym_LPAREN] = ACTIONS(2338), + [anon_sym_SEMI] = ACTIONS(2338), + [anon_sym_RPAREN] = ACTIONS(2338), + [anon_sym_await] = ACTIONS(2340), + [anon_sym_while] = ACTIONS(2340), + [anon_sym_do] = ACTIONS(2340), + [anon_sym_try] = ACTIONS(2340), + [anon_sym_break] = ACTIONS(2340), + [anon_sym_continue] = ACTIONS(2340), + [anon_sym_debugger] = ACTIONS(2340), + [anon_sym_return] = ACTIONS(2340), + [anon_sym_throw] = ACTIONS(2340), + [anon_sym_COLON] = ACTIONS(2338), + [anon_sym_case] = ACTIONS(2340), + [anon_sym_yield] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(2338), + [anon_sym_RBRACK] = ACTIONS(2338), + [anon_sym_GT] = ACTIONS(2338), + [anon_sym_DQUOTE] = ACTIONS(2338), + [anon_sym_SQUOTE] = ACTIONS(2338), + [anon_sym_class] = ACTIONS(2340), + [anon_sym_async] = ACTIONS(2340), + [anon_sym_function] = ACTIONS(2340), + [anon_sym_EQ_GT] = ACTIONS(2338), + [anon_sym_new] = ACTIONS(2340), + [anon_sym_using] = ACTIONS(2340), + [anon_sym_AMP] = ACTIONS(2338), + [anon_sym_PIPE] = ACTIONS(2338), + [anon_sym_PLUS] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2340), + [anon_sym_SLASH] = ACTIONS(2340), + [anon_sym_LT] = ACTIONS(2338), + [anon_sym_TILDE] = ACTIONS(2338), + [anon_sym_void] = ACTIONS(2340), + [anon_sym_delete] = ACTIONS(2340), + [anon_sym_PLUS_PLUS] = ACTIONS(2338), + [anon_sym_DASH_DASH] = ACTIONS(2338), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2338), + [sym_number] = ACTIONS(2338), + [sym_private_property_identifier] = ACTIONS(2338), + [sym_this] = ACTIONS(2340), + [sym_super] = ACTIONS(2340), + [sym_true] = ACTIONS(2340), + [sym_false] = ACTIONS(2340), + [sym_null] = ACTIONS(2340), + [sym_undefined] = ACTIONS(2340), + [anon_sym_AT] = ACTIONS(2338), + [anon_sym_static] = ACTIONS(2340), + [anon_sym_readonly] = ACTIONS(2340), + [anon_sym_get] = ACTIONS(2340), + [anon_sym_set] = ACTIONS(2340), + [anon_sym_QMARK] = ACTIONS(2338), + [anon_sym_declare] = ACTIONS(2340), + [anon_sym_public] = ACTIONS(2340), + [anon_sym_private] = ACTIONS(2340), + [anon_sym_protected] = ACTIONS(2340), + [anon_sym_override] = ACTIONS(2340), + [anon_sym_module] = ACTIONS(2340), + [anon_sym_any] = ACTIONS(2340), + [anon_sym_number] = ACTIONS(2340), + [anon_sym_boolean] = ACTIONS(2340), + [anon_sym_string] = ACTIONS(2340), + [anon_sym_symbol] = ACTIONS(2340), + [anon_sym_object] = ACTIONS(2340), + [anon_sym_abstract] = ACTIONS(2340), + [anon_sym_extends] = ACTIONS(2340), + [anon_sym_interface] = ACTIONS(2340), + [anon_sym_enum] = ACTIONS(2340), [sym_html_comment] = ACTIONS(5), }, [688] = { - [ts_builtin_sym_end] = ACTIONS(2351), - [sym_identifier] = ACTIONS(2353), - [anon_sym_export] = ACTIONS(2353), - [anon_sym_default] = ACTIONS(2353), - [anon_sym_type] = ACTIONS(2353), - [anon_sym_EQ] = ACTIONS(2353), - [anon_sym_namespace] = ACTIONS(2353), - [anon_sym_LBRACE] = ACTIONS(2351), - [anon_sym_COMMA] = ACTIONS(2351), - [anon_sym_RBRACE] = ACTIONS(2351), - [anon_sym_typeof] = ACTIONS(2353), - [anon_sym_import] = ACTIONS(2353), - [anon_sym_with] = ACTIONS(2353), - [anon_sym_var] = ACTIONS(2353), - [anon_sym_let] = ACTIONS(2353), - [anon_sym_const] = ACTIONS(2353), - [anon_sym_BANG] = ACTIONS(2351), - [anon_sym_else] = ACTIONS(2353), - [anon_sym_if] = ACTIONS(2353), - [anon_sym_switch] = ACTIONS(2353), - [anon_sym_for] = ACTIONS(2353), - [anon_sym_LPAREN] = ACTIONS(2351), - [anon_sym_SEMI] = ACTIONS(2351), - [anon_sym_RPAREN] = ACTIONS(2351), - [anon_sym_await] = ACTIONS(2353), - [anon_sym_while] = ACTIONS(2353), - [anon_sym_do] = ACTIONS(2353), - [anon_sym_try] = ACTIONS(2353), - [anon_sym_break] = ACTIONS(2353), - [anon_sym_continue] = ACTIONS(2353), - [anon_sym_debugger] = ACTIONS(2353), - [anon_sym_return] = ACTIONS(2353), - [anon_sym_throw] = ACTIONS(2353), - [anon_sym_COLON] = ACTIONS(2351), - [anon_sym_case] = ACTIONS(2353), - [anon_sym_yield] = ACTIONS(2353), - [anon_sym_LBRACK] = ACTIONS(2351), - [anon_sym_RBRACK] = ACTIONS(2351), - [sym_glimmer_opening_tag] = ACTIONS(2351), - [anon_sym_GT] = ACTIONS(2351), - [anon_sym_DQUOTE] = ACTIONS(2351), - [anon_sym_SQUOTE] = ACTIONS(2351), - [anon_sym_class] = ACTIONS(2353), - [anon_sym_async] = ACTIONS(2353), - [anon_sym_function] = ACTIONS(2353), - [anon_sym_EQ_GT] = ACTIONS(2351), - [anon_sym_new] = ACTIONS(2353), - [anon_sym_using] = ACTIONS(2353), - [anon_sym_AMP] = ACTIONS(2351), - [anon_sym_PIPE] = ACTIONS(2351), - [anon_sym_PLUS] = ACTIONS(2353), - [anon_sym_DASH] = ACTIONS(2353), - [anon_sym_SLASH] = ACTIONS(2353), - [anon_sym_LT] = ACTIONS(2353), - [anon_sym_TILDE] = ACTIONS(2351), - [anon_sym_void] = ACTIONS(2353), - [anon_sym_delete] = ACTIONS(2353), - [anon_sym_PLUS_PLUS] = ACTIONS(2351), - [anon_sym_DASH_DASH] = ACTIONS(2351), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2351), - [sym_number] = ACTIONS(2351), - [sym_private_property_identifier] = ACTIONS(2351), - [sym_this] = ACTIONS(2353), - [sym_super] = ACTIONS(2353), - [sym_true] = ACTIONS(2353), - [sym_false] = ACTIONS(2353), - [sym_null] = ACTIONS(2353), - [sym_undefined] = ACTIONS(2353), - [anon_sym_AT] = ACTIONS(2351), - [anon_sym_static] = ACTIONS(2353), - [anon_sym_readonly] = ACTIONS(2353), - [anon_sym_get] = ACTIONS(2353), - [anon_sym_set] = ACTIONS(2353), - [anon_sym_QMARK] = ACTIONS(2351), - [anon_sym_declare] = ACTIONS(2353), - [anon_sym_public] = ACTIONS(2353), - [anon_sym_private] = ACTIONS(2353), - [anon_sym_protected] = ACTIONS(2353), - [anon_sym_override] = ACTIONS(2353), - [anon_sym_module] = ACTIONS(2353), - [anon_sym_any] = ACTIONS(2353), - [anon_sym_number] = ACTIONS(2353), - [anon_sym_boolean] = ACTIONS(2353), - [anon_sym_string] = ACTIONS(2353), - [anon_sym_symbol] = ACTIONS(2353), - [anon_sym_object] = ACTIONS(2353), - [anon_sym_abstract] = ACTIONS(2353), - [anon_sym_extends] = ACTIONS(2353), - [anon_sym_interface] = ACTIONS(2353), - [anon_sym_enum] = ACTIONS(2353), + [ts_builtin_sym_end] = ACTIONS(2342), + [sym_identifier] = ACTIONS(2344), + [anon_sym_export] = ACTIONS(2344), + [anon_sym_default] = ACTIONS(2344), + [anon_sym_type] = ACTIONS(2344), + [anon_sym_EQ] = ACTIONS(2344), + [anon_sym_namespace] = ACTIONS(2344), + [anon_sym_LBRACE] = ACTIONS(2342), + [anon_sym_COMMA] = ACTIONS(2342), + [anon_sym_RBRACE] = ACTIONS(2342), + [anon_sym_typeof] = ACTIONS(2344), + [anon_sym_import] = ACTIONS(2344), + [anon_sym_with] = ACTIONS(2344), + [anon_sym_var] = ACTIONS(2344), + [anon_sym_let] = ACTIONS(2344), + [anon_sym_const] = ACTIONS(2344), + [anon_sym_BANG] = ACTIONS(2342), + [anon_sym_else] = ACTIONS(2344), + [anon_sym_if] = ACTIONS(2344), + [anon_sym_switch] = ACTIONS(2344), + [anon_sym_for] = ACTIONS(2344), + [anon_sym_LPAREN] = ACTIONS(2342), + [anon_sym_SEMI] = ACTIONS(2342), + [anon_sym_RPAREN] = ACTIONS(2342), + [anon_sym_await] = ACTIONS(2344), + [anon_sym_while] = ACTIONS(2344), + [anon_sym_do] = ACTIONS(2344), + [anon_sym_try] = ACTIONS(2344), + [anon_sym_break] = ACTIONS(2344), + [anon_sym_continue] = ACTIONS(2344), + [anon_sym_debugger] = ACTIONS(2344), + [anon_sym_return] = ACTIONS(2344), + [anon_sym_throw] = ACTIONS(2344), + [anon_sym_COLON] = ACTIONS(2342), + [anon_sym_case] = ACTIONS(2344), + [anon_sym_yield] = ACTIONS(2344), + [anon_sym_LBRACK] = ACTIONS(2342), + [anon_sym_RBRACK] = ACTIONS(2342), + [anon_sym_GT] = ACTIONS(2342), + [anon_sym_DQUOTE] = ACTIONS(2342), + [anon_sym_SQUOTE] = ACTIONS(2342), + [anon_sym_class] = ACTIONS(2344), + [anon_sym_async] = ACTIONS(2344), + [anon_sym_function] = ACTIONS(2344), + [anon_sym_EQ_GT] = ACTIONS(2342), + [anon_sym_new] = ACTIONS(2344), + [anon_sym_using] = ACTIONS(2344), + [anon_sym_AMP] = ACTIONS(2342), + [anon_sym_PIPE] = ACTIONS(2342), + [anon_sym_PLUS] = ACTIONS(2344), + [anon_sym_DASH] = ACTIONS(2344), + [anon_sym_SLASH] = ACTIONS(2344), + [anon_sym_LT] = ACTIONS(2342), + [anon_sym_TILDE] = ACTIONS(2342), + [anon_sym_void] = ACTIONS(2344), + [anon_sym_delete] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2342), + [sym_number] = ACTIONS(2342), + [sym_private_property_identifier] = ACTIONS(2342), + [sym_this] = ACTIONS(2344), + [sym_super] = ACTIONS(2344), + [sym_true] = ACTIONS(2344), + [sym_false] = ACTIONS(2344), + [sym_null] = ACTIONS(2344), + [sym_undefined] = ACTIONS(2344), + [anon_sym_AT] = ACTIONS(2342), + [anon_sym_static] = ACTIONS(2344), + [anon_sym_readonly] = ACTIONS(2344), + [anon_sym_get] = ACTIONS(2344), + [anon_sym_set] = ACTIONS(2344), + [anon_sym_QMARK] = ACTIONS(2342), + [anon_sym_declare] = ACTIONS(2344), + [anon_sym_public] = ACTIONS(2344), + [anon_sym_private] = ACTIONS(2344), + [anon_sym_protected] = ACTIONS(2344), + [anon_sym_override] = ACTIONS(2344), + [anon_sym_module] = ACTIONS(2344), + [anon_sym_any] = ACTIONS(2344), + [anon_sym_number] = ACTIONS(2344), + [anon_sym_boolean] = ACTIONS(2344), + [anon_sym_string] = ACTIONS(2344), + [anon_sym_symbol] = ACTIONS(2344), + [anon_sym_object] = ACTIONS(2344), + [anon_sym_abstract] = ACTIONS(2344), + [anon_sym_extends] = ACTIONS(2344), + [anon_sym_interface] = ACTIONS(2344), + [anon_sym_enum] = ACTIONS(2344), [sym_html_comment] = ACTIONS(5), }, [689] = { - [aux_sym_object_repeat1] = STATE(4673), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(1971), - [anon_sym_export] = ACTIONS(1971), - [anon_sym_STAR] = ACTIONS(1971), - [anon_sym_type] = ACTIONS(1971), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1971), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(702), - [anon_sym_let] = ACTIONS(1971), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(1973), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1973), - [anon_sym_SQUOTE] = ACTIONS(1973), - [anon_sym_async] = ACTIONS(1971), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1971), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(1973), - [sym_private_property_identifier] = ACTIONS(1973), - [anon_sym_static] = ACTIONS(1971), - [anon_sym_readonly] = ACTIONS(1971), - [anon_sym_get] = ACTIONS(1971), - [anon_sym_set] = ACTIONS(1971), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(1971), - [anon_sym_public] = ACTIONS(1971), - [anon_sym_private] = ACTIONS(1971), - [anon_sym_protected] = ACTIONS(1971), - [anon_sym_override] = ACTIONS(1971), - [anon_sym_module] = ACTIONS(1971), - [anon_sym_any] = ACTIONS(1971), - [anon_sym_number] = ACTIONS(1971), - [anon_sym_boolean] = ACTIONS(1971), - [anon_sym_string] = ACTIONS(1971), - [anon_sym_symbol] = ACTIONS(1971), - [anon_sym_object] = ACTIONS(1971), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [aux_sym_object_repeat1] = STATE(5191), + [aux_sym_object_pattern_repeat1] = STATE(5131), + [sym_identifier] = ACTIONS(1940), + [anon_sym_export] = ACTIONS(1940), + [anon_sym_STAR] = ACTIONS(1940), + [anon_sym_type] = ACTIONS(1940), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1940), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_let] = ACTIONS(1940), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(1942), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1942), + [anon_sym_SQUOTE] = ACTIONS(1942), + [anon_sym_async] = ACTIONS(1940), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1940), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [sym_number] = ACTIONS(1942), + [sym_private_property_identifier] = ACTIONS(1942), + [anon_sym_static] = ACTIONS(1940), + [anon_sym_readonly] = ACTIONS(1940), + [anon_sym_get] = ACTIONS(1940), + [anon_sym_set] = ACTIONS(1940), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(1940), + [anon_sym_public] = ACTIONS(1940), + [anon_sym_private] = ACTIONS(1940), + [anon_sym_protected] = ACTIONS(1940), + [anon_sym_override] = ACTIONS(1940), + [anon_sym_module] = ACTIONS(1940), + [anon_sym_any] = ACTIONS(1940), + [anon_sym_number] = ACTIONS(1940), + [anon_sym_boolean] = ACTIONS(1940), + [anon_sym_string] = ACTIONS(1940), + [anon_sym_symbol] = ACTIONS(1940), + [anon_sym_object] = ACTIONS(1940), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [690] = { - [aux_sym_object_repeat1] = STATE(5173), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(1971), - [anon_sym_export] = ACTIONS(1971), - [anon_sym_STAR] = ACTIONS(1971), - [anon_sym_type] = ACTIONS(1971), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1971), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(729), - [anon_sym_let] = ACTIONS(1971), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(1973), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1973), - [anon_sym_SQUOTE] = ACTIONS(1973), - [anon_sym_async] = ACTIONS(1971), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1971), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(1973), - [sym_private_property_identifier] = ACTIONS(1973), - [anon_sym_static] = ACTIONS(1971), - [anon_sym_readonly] = ACTIONS(1971), - [anon_sym_get] = ACTIONS(1971), - [anon_sym_set] = ACTIONS(1971), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(1971), - [anon_sym_public] = ACTIONS(1971), - [anon_sym_private] = ACTIONS(1971), - [anon_sym_protected] = ACTIONS(1971), - [anon_sym_override] = ACTIONS(1971), - [anon_sym_module] = ACTIONS(1971), - [anon_sym_any] = ACTIONS(1971), - [anon_sym_number] = ACTIONS(1971), - [anon_sym_boolean] = ACTIONS(1971), - [anon_sym_string] = ACTIONS(1971), - [anon_sym_symbol] = ACTIONS(1971), - [anon_sym_object] = ACTIONS(1971), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [aux_sym_object_repeat1] = STATE(5191), + [aux_sym_object_pattern_repeat1] = STATE(5131), + [sym_identifier] = ACTIONS(1936), + [anon_sym_export] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(1936), + [anon_sym_type] = ACTIONS(1936), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1936), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_let] = ACTIONS(1936), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(1938), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1938), + [anon_sym_SQUOTE] = ACTIONS(1938), + [anon_sym_async] = ACTIONS(1936), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1936), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [sym_number] = ACTIONS(1938), + [sym_private_property_identifier] = ACTIONS(1938), + [anon_sym_static] = ACTIONS(1936), + [anon_sym_readonly] = ACTIONS(1936), + [anon_sym_get] = ACTIONS(1936), + [anon_sym_set] = ACTIONS(1936), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(1936), + [anon_sym_public] = ACTIONS(1936), + [anon_sym_private] = ACTIONS(1936), + [anon_sym_protected] = ACTIONS(1936), + [anon_sym_override] = 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_object] = ACTIONS(1936), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [691] = { - [aux_sym_object_repeat1] = STATE(5173), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(2005), - [anon_sym_export] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(2005), - [anon_sym_type] = ACTIONS(2005), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2005), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(729), - [anon_sym_let] = ACTIONS(2005), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(2007), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2007), - [anon_sym_SQUOTE] = ACTIONS(2007), - [anon_sym_async] = ACTIONS(2005), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2005), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(2007), - [sym_private_property_identifier] = ACTIONS(2007), - [anon_sym_static] = ACTIONS(2005), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_get] = ACTIONS(2005), - [anon_sym_set] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(2005), - [anon_sym_public] = ACTIONS(2005), - [anon_sym_private] = ACTIONS(2005), - [anon_sym_protected] = ACTIONS(2005), - [anon_sym_override] = ACTIONS(2005), - [anon_sym_module] = ACTIONS(2005), - [anon_sym_any] = ACTIONS(2005), - [anon_sym_number] = ACTIONS(2005), - [anon_sym_boolean] = ACTIONS(2005), - [anon_sym_string] = ACTIONS(2005), - [anon_sym_symbol] = ACTIONS(2005), - [anon_sym_object] = ACTIONS(2005), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_declaration] = STATE(886), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_class_declaration] = STATE(852), + [sym_function_declaration] = STATE(852), + [sym_generator_function_declaration] = STATE(852), + [sym_decorator] = STATE(1290), + [sym_function_signature] = STATE(852), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(811), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [aux_sym_export_statement_repeat1] = STATE(4284), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2296), + [anon_sym_EQ] = ACTIONS(909), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2238), + [anon_sym_import] = ACTIONS(2242), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2246), + [anon_sym_const] = ACTIONS(2248), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_class] = ACTIONS(2253), + [anon_sym_async] = ACTIONS(2255), + [anon_sym_function] = ACTIONS(2257), + [anon_sym_EQ_GT] = ACTIONS(915), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(2262), + [anon_sym_module] = ACTIONS(2298), + [anon_sym_abstract] = ACTIONS(2266), + [anon_sym_satisfies] = ACTIONS(158), + [anon_sym_global] = ACTIONS(2300), + [anon_sym_interface] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2270), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [692] = { - [sym_declaration] = STATE(4446), - [sym_variable_declaration] = STATE(4422), - [sym_lexical_declaration] = STATE(4422), - [sym_class_declaration] = STATE(4422), - [sym_function_declaration] = STATE(4422), - [sym_generator_function_declaration] = STATE(4422), - [sym_decorator] = STATE(1267), - [sym_function_signature] = STATE(4422), - [sym_ambient_declaration] = STATE(4422), - [sym_abstract_class_declaration] = STATE(4422), - [sym_module] = STATE(4422), - [sym_internal_module] = STATE(4425), - [sym_import_alias] = STATE(4422), - [sym_interface_declaration] = STATE(4422), - [sym_enum_declaration] = STATE(4422), - [sym_type_alias_declaration] = STATE(4422), - [aux_sym_export_statement_repeat1] = STATE(4377), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2355), - [anon_sym_EQ] = ACTIONS(948), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2357), - [anon_sym_import] = ACTIONS(2359), - [anon_sym_var] = ACTIONS(2361), - [anon_sym_let] = ACTIONS(2363), - [anon_sym_const] = ACTIONS(2365), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_class] = ACTIONS(2367), - [anon_sym_async] = ACTIONS(2369), - [anon_sym_function] = ACTIONS(2371), - [anon_sym_EQ_GT] = ACTIONS(954), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(2373), - [anon_sym_module] = ACTIONS(2375), - [anon_sym_abstract] = ACTIONS(2377), - [anon_sym_satisfies] = ACTIONS(161), - [anon_sym_global] = ACTIONS(2379), - [anon_sym_interface] = ACTIONS(2381), - [anon_sym_enum] = ACTIONS(2383), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_declaration] = STATE(4415), + [sym_variable_declaration] = STATE(4393), + [sym_lexical_declaration] = STATE(4393), + [sym_class_declaration] = STATE(4393), + [sym_function_declaration] = STATE(4393), + [sym_generator_function_declaration] = STATE(4393), + [sym_decorator] = STATE(1290), + [sym_function_signature] = STATE(4393), + [sym_ambient_declaration] = STATE(4393), + [sym_abstract_class_declaration] = STATE(4393), + [sym_module] = STATE(4393), + [sym_internal_module] = STATE(4399), + [sym_import_alias] = STATE(4393), + [sym_interface_declaration] = STATE(4393), + [sym_enum_declaration] = STATE(4393), + [sym_type_alias_declaration] = STATE(4393), + [aux_sym_export_statement_repeat1] = STATE(4367), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2346), + [anon_sym_EQ] = ACTIONS(909), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2348), + [anon_sym_import] = ACTIONS(2350), + [anon_sym_var] = ACTIONS(2352), + [anon_sym_let] = ACTIONS(2354), + [anon_sym_const] = ACTIONS(2356), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_class] = ACTIONS(2358), + [anon_sym_async] = ACTIONS(2360), + [anon_sym_function] = ACTIONS(2362), + [anon_sym_EQ_GT] = ACTIONS(915), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(2364), + [anon_sym_module] = ACTIONS(2366), + [anon_sym_abstract] = ACTIONS(2368), + [anon_sym_satisfies] = ACTIONS(158), + [anon_sym_global] = ACTIONS(2370), + [anon_sym_interface] = ACTIONS(2372), + [anon_sym_enum] = ACTIONS(2374), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [693] = { - [sym_declaration] = STATE(874), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_class_declaration] = STATE(789), - [sym_function_declaration] = STATE(789), - [sym_generator_function_declaration] = STATE(789), - [sym_decorator] = STATE(1267), - [sym_function_signature] = STATE(789), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(890), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [aux_sym_export_statement_repeat1] = STATE(4426), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2305), - [anon_sym_EQ] = ACTIONS(948), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2317), - [anon_sym_import] = ACTIONS(2247), - [anon_sym_var] = ACTIONS(2249), - [anon_sym_let] = ACTIONS(2251), - [anon_sym_const] = ACTIONS(2253), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_class] = ACTIONS(2258), - [anon_sym_async] = ACTIONS(2260), - [anon_sym_function] = ACTIONS(2262), - [anon_sym_EQ_GT] = ACTIONS(954), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(2319), - [anon_sym_module] = ACTIONS(2345), - [anon_sym_abstract] = ACTIONS(2271), - [anon_sym_satisfies] = ACTIONS(161), - [anon_sym_global] = ACTIONS(2309), - [anon_sym_interface] = ACTIONS(2273), - [anon_sym_enum] = ACTIONS(2275), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [aux_sym_object_repeat1] = STATE(5129), + [aux_sym_object_pattern_repeat1] = STATE(5131), + [sym_identifier] = ACTIONS(1940), + [anon_sym_export] = ACTIONS(1940), + [anon_sym_STAR] = ACTIONS(1940), + [anon_sym_type] = ACTIONS(1940), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1940), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_let] = ACTIONS(1940), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(1942), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1942), + [anon_sym_SQUOTE] = ACTIONS(1942), + [anon_sym_async] = ACTIONS(1940), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1940), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [sym_number] = ACTIONS(1942), + [sym_private_property_identifier] = ACTIONS(1942), + [anon_sym_static] = ACTIONS(1940), + [anon_sym_readonly] = ACTIONS(1940), + [anon_sym_get] = ACTIONS(1940), + [anon_sym_set] = ACTIONS(1940), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(1940), + [anon_sym_public] = ACTIONS(1940), + [anon_sym_private] = ACTIONS(1940), + [anon_sym_protected] = ACTIONS(1940), + [anon_sym_override] = ACTIONS(1940), + [anon_sym_module] = ACTIONS(1940), + [anon_sym_any] = ACTIONS(1940), + [anon_sym_number] = ACTIONS(1940), + [anon_sym_boolean] = ACTIONS(1940), + [anon_sym_string] = ACTIONS(1940), + [anon_sym_symbol] = ACTIONS(1940), + [anon_sym_object] = ACTIONS(1940), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [694] = { - [sym_declaration] = STATE(874), - [sym_variable_declaration] = STATE(789), - [sym_lexical_declaration] = STATE(789), - [sym_class_declaration] = STATE(789), - [sym_function_declaration] = STATE(789), - [sym_generator_function_declaration] = STATE(789), - [sym_decorator] = STATE(1267), - [sym_function_signature] = STATE(789), - [sym_ambient_declaration] = STATE(789), - [sym_abstract_class_declaration] = STATE(789), - [sym_module] = STATE(789), - [sym_internal_module] = STATE(890), - [sym_import_alias] = STATE(789), - [sym_interface_declaration] = STATE(789), - [sym_enum_declaration] = STATE(789), - [sym_type_alias_declaration] = STATE(789), - [aux_sym_export_statement_repeat1] = STATE(4426), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2305), - [anon_sym_EQ] = ACTIONS(948), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2243), - [anon_sym_import] = ACTIONS(2247), - [anon_sym_var] = ACTIONS(2249), - [anon_sym_let] = ACTIONS(2251), - [anon_sym_const] = ACTIONS(2253), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_class] = ACTIONS(2258), - [anon_sym_async] = ACTIONS(2260), - [anon_sym_function] = ACTIONS(2262), - [anon_sym_EQ_GT] = ACTIONS(954), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(2267), - [anon_sym_module] = ACTIONS(2307), - [anon_sym_abstract] = ACTIONS(2271), - [anon_sym_satisfies] = ACTIONS(161), - [anon_sym_global] = ACTIONS(2309), - [anon_sym_interface] = ACTIONS(2273), - [anon_sym_enum] = ACTIONS(2275), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [aux_sym_object_repeat1] = STATE(5191), + [aux_sym_object_pattern_repeat1] = STATE(5131), + [sym_identifier] = ACTIONS(1936), + [anon_sym_export] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(1936), + [anon_sym_type] = ACTIONS(1936), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1936), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_let] = ACTIONS(1936), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(1938), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1938), + [anon_sym_SQUOTE] = ACTIONS(1938), + [anon_sym_async] = ACTIONS(1936), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1936), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [sym_number] = ACTIONS(1938), + [sym_private_property_identifier] = ACTIONS(1938), + [anon_sym_static] = ACTIONS(1936), + [anon_sym_readonly] = ACTIONS(1936), + [anon_sym_get] = ACTIONS(1936), + [anon_sym_set] = ACTIONS(1936), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(1936), + [anon_sym_public] = ACTIONS(1936), + [anon_sym_private] = ACTIONS(1936), + [anon_sym_protected] = ACTIONS(1936), + [anon_sym_override] = 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_object] = ACTIONS(1936), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [695] = { - [aux_sym_object_repeat1] = STATE(4673), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(2005), - [anon_sym_export] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(2005), - [anon_sym_type] = ACTIONS(2005), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2005), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(702), - [anon_sym_let] = ACTIONS(2005), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(2007), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2007), - [anon_sym_SQUOTE] = ACTIONS(2007), - [anon_sym_async] = ACTIONS(2005), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2005), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(2007), - [sym_private_property_identifier] = ACTIONS(2007), - [anon_sym_static] = ACTIONS(2005), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_get] = ACTIONS(2005), - [anon_sym_set] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(2005), - [anon_sym_public] = ACTIONS(2005), - [anon_sym_private] = ACTIONS(2005), - [anon_sym_protected] = ACTIONS(2005), - [anon_sym_override] = ACTIONS(2005), - [anon_sym_module] = ACTIONS(2005), - [anon_sym_any] = ACTIONS(2005), - [anon_sym_number] = ACTIONS(2005), - [anon_sym_boolean] = ACTIONS(2005), - [anon_sym_string] = ACTIONS(2005), - [anon_sym_symbol] = ACTIONS(2005), - [anon_sym_object] = ACTIONS(2005), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_declaration] = STATE(886), + [sym_variable_declaration] = STATE(852), + [sym_lexical_declaration] = STATE(852), + [sym_class_declaration] = STATE(852), + [sym_function_declaration] = STATE(852), + [sym_generator_function_declaration] = STATE(852), + [sym_decorator] = STATE(1290), + [sym_function_signature] = STATE(852), + [sym_ambient_declaration] = STATE(852), + [sym_abstract_class_declaration] = STATE(852), + [sym_module] = STATE(852), + [sym_internal_module] = STATE(811), + [sym_import_alias] = STATE(852), + [sym_interface_declaration] = STATE(852), + [sym_enum_declaration] = STATE(852), + [sym_type_alias_declaration] = STATE(852), + [aux_sym_export_statement_repeat1] = STATE(4284), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2296), + [anon_sym_EQ] = ACTIONS(909), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2306), + [anon_sym_import] = ACTIONS(2242), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2246), + [anon_sym_const] = ACTIONS(2248), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_class] = ACTIONS(2253), + [anon_sym_async] = ACTIONS(2255), + [anon_sym_function] = ACTIONS(2257), + [anon_sym_EQ_GT] = ACTIONS(915), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(2308), + [anon_sym_module] = ACTIONS(2324), + [anon_sym_abstract] = ACTIONS(2266), + [anon_sym_satisfies] = ACTIONS(158), + [anon_sym_global] = ACTIONS(2300), + [anon_sym_interface] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2270), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [696] = { - [aux_sym_object_repeat1] = STATE(5173), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(2005), - [anon_sym_export] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(2005), - [anon_sym_type] = ACTIONS(2005), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2005), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(727), - [anon_sym_let] = ACTIONS(2005), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(2007), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2007), - [anon_sym_SQUOTE] = ACTIONS(2007), - [anon_sym_async] = ACTIONS(2005), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2005), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(2007), - [sym_private_property_identifier] = ACTIONS(2007), - [anon_sym_static] = ACTIONS(2005), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_get] = ACTIONS(2005), - [anon_sym_set] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(2005), - [anon_sym_public] = ACTIONS(2005), - [anon_sym_private] = ACTIONS(2005), - [anon_sym_protected] = ACTIONS(2005), - [anon_sym_override] = ACTIONS(2005), - [anon_sym_module] = ACTIONS(2005), - [anon_sym_any] = ACTIONS(2005), - [anon_sym_number] = ACTIONS(2005), - [anon_sym_boolean] = ACTIONS(2005), - [anon_sym_string] = ACTIONS(2005), - [anon_sym_symbol] = ACTIONS(2005), - [anon_sym_object] = ACTIONS(2005), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [aux_sym_object_repeat1] = STATE(5191), + [aux_sym_object_pattern_repeat1] = STATE(5131), + [sym_identifier] = ACTIONS(1940), + [anon_sym_export] = ACTIONS(1940), + [anon_sym_STAR] = ACTIONS(1940), + [anon_sym_type] = ACTIONS(1940), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1940), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_let] = ACTIONS(1940), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(1942), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1942), + [anon_sym_SQUOTE] = ACTIONS(1942), + [anon_sym_async] = ACTIONS(1940), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1940), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [sym_number] = ACTIONS(1942), + [sym_private_property_identifier] = ACTIONS(1942), + [anon_sym_static] = ACTIONS(1940), + [anon_sym_readonly] = ACTIONS(1940), + [anon_sym_get] = ACTIONS(1940), + [anon_sym_set] = ACTIONS(1940), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(1940), + [anon_sym_public] = ACTIONS(1940), + [anon_sym_private] = ACTIONS(1940), + [anon_sym_protected] = ACTIONS(1940), + [anon_sym_override] = ACTIONS(1940), + [anon_sym_module] = ACTIONS(1940), + [anon_sym_any] = ACTIONS(1940), + [anon_sym_number] = ACTIONS(1940), + [anon_sym_boolean] = ACTIONS(1940), + [anon_sym_string] = ACTIONS(1940), + [anon_sym_symbol] = ACTIONS(1940), + [anon_sym_object] = ACTIONS(1940), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [697] = { - [aux_sym_object_repeat1] = STATE(5173), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(1971), - [anon_sym_export] = ACTIONS(1971), - [anon_sym_STAR] = ACTIONS(1971), - [anon_sym_type] = ACTIONS(1971), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1971), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(727), - [anon_sym_let] = ACTIONS(1971), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(1973), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1973), - [anon_sym_SQUOTE] = ACTIONS(1973), - [anon_sym_async] = ACTIONS(1971), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1971), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(1973), - [sym_private_property_identifier] = ACTIONS(1973), - [anon_sym_static] = ACTIONS(1971), - [anon_sym_readonly] = ACTIONS(1971), - [anon_sym_get] = ACTIONS(1971), - [anon_sym_set] = ACTIONS(1971), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(1971), - [anon_sym_public] = ACTIONS(1971), - [anon_sym_private] = ACTIONS(1971), - [anon_sym_protected] = ACTIONS(1971), - [anon_sym_override] = ACTIONS(1971), - [anon_sym_module] = ACTIONS(1971), - [anon_sym_any] = ACTIONS(1971), - [anon_sym_number] = ACTIONS(1971), - [anon_sym_boolean] = ACTIONS(1971), - [anon_sym_string] = ACTIONS(1971), - [anon_sym_symbol] = ACTIONS(1971), - [anon_sym_object] = ACTIONS(1971), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [aux_sym_object_repeat1] = STATE(5129), + [aux_sym_object_pattern_repeat1] = STATE(5131), + [sym_identifier] = ACTIONS(1936), + [anon_sym_export] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(1936), + [anon_sym_type] = ACTIONS(1936), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1936), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_let] = ACTIONS(1936), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(1938), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1938), + [anon_sym_SQUOTE] = ACTIONS(1938), + [anon_sym_async] = ACTIONS(1936), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1936), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [sym_number] = ACTIONS(1938), + [sym_private_property_identifier] = ACTIONS(1938), + [anon_sym_static] = ACTIONS(1936), + [anon_sym_readonly] = ACTIONS(1936), + [anon_sym_get] = ACTIONS(1936), + [anon_sym_set] = ACTIONS(1936), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(1936), + [anon_sym_public] = ACTIONS(1936), + [anon_sym_private] = ACTIONS(1936), + [anon_sym_protected] = ACTIONS(1936), + [anon_sym_override] = 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_object] = ACTIONS(1936), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [698] = { - [sym__call_signature] = STATE(5762), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2385), - [anon_sym_export] = ACTIONS(2387), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2387), - [anon_sym_EQ] = ACTIONS(859), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2387), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2387), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2387), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2387), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2387), - [anon_sym_readonly] = ACTIONS(2387), - [anon_sym_get] = ACTIONS(2387), - [anon_sym_set] = ACTIONS(2387), - [anon_sym_declare] = ACTIONS(2387), - [anon_sym_public] = ACTIONS(2387), - [anon_sym_private] = ACTIONS(2387), - [anon_sym_protected] = ACTIONS(2387), - [anon_sym_override] = ACTIONS(2387), - [anon_sym_module] = ACTIONS(2387), - [anon_sym_any] = ACTIONS(2387), - [anon_sym_number] = ACTIONS(2387), - [anon_sym_boolean] = ACTIONS(2387), - [anon_sym_string] = ACTIONS(2387), - [anon_sym_symbol] = ACTIONS(2387), - [anon_sym_object] = ACTIONS(2387), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5575), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [sym_identifier] = ACTIONS(2376), + [anon_sym_export] = ACTIONS(2378), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2378), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2378), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_RBRACE] = ACTIONS(126), + [anon_sym_let] = ACTIONS(2378), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_RBRACK] = ACTIONS(126), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2378), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(156), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2378), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_static] = ACTIONS(2378), + [anon_sym_readonly] = ACTIONS(2378), + [anon_sym_get] = ACTIONS(2378), + [anon_sym_set] = ACTIONS(2378), + [anon_sym_QMARK] = ACTIONS(750), + [anon_sym_declare] = ACTIONS(2378), + [anon_sym_public] = ACTIONS(2378), + [anon_sym_private] = ACTIONS(2378), + [anon_sym_protected] = ACTIONS(2378), + [anon_sym_override] = ACTIONS(2378), + [anon_sym_module] = ACTIONS(2378), + [anon_sym_any] = ACTIONS(2378), + [anon_sym_number] = ACTIONS(2378), + [anon_sym_boolean] = ACTIONS(2378), + [anon_sym_string] = ACTIONS(2378), + [anon_sym_symbol] = ACTIONS(2378), + [anon_sym_object] = ACTIONS(2378), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [699] = { - [sym__call_signature] = STATE(5864), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2397), - [anon_sym_export] = ACTIONS(2399), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2399), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2399), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_RBRACE] = ACTIONS(128), - [anon_sym_let] = ACTIONS(2399), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(128), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2399), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2399), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2399), - [anon_sym_readonly] = ACTIONS(2399), - [anon_sym_get] = ACTIONS(2399), - [anon_sym_set] = ACTIONS(2399), - [anon_sym_QMARK] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(2399), - [anon_sym_public] = ACTIONS(2399), - [anon_sym_private] = ACTIONS(2399), - [anon_sym_protected] = ACTIONS(2399), - [anon_sym_override] = ACTIONS(2399), - [anon_sym_module] = ACTIONS(2399), - [anon_sym_any] = ACTIONS(2399), - [anon_sym_number] = ACTIONS(2399), - [anon_sym_boolean] = ACTIONS(2399), - [anon_sym_string] = ACTIONS(2399), - [anon_sym_symbol] = ACTIONS(2399), - [anon_sym_object] = ACTIONS(2399), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5660), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [sym_identifier] = ACTIONS(2388), + [anon_sym_export] = ACTIONS(2390), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2390), + [anon_sym_EQ] = ACTIONS(220), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2390), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_RBRACE] = ACTIONS(223), + [anon_sym_let] = ACTIONS(2390), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_RPAREN] = ACTIONS(223), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(223), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_RBRACK] = ACTIONS(223), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2390), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2390), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_static] = ACTIONS(2390), + [anon_sym_readonly] = ACTIONS(2390), + [anon_sym_get] = ACTIONS(2390), + [anon_sym_set] = ACTIONS(2390), + [anon_sym_QMARK] = ACTIONS(750), + [anon_sym_declare] = ACTIONS(2390), + [anon_sym_public] = ACTIONS(2390), + [anon_sym_private] = ACTIONS(2390), + [anon_sym_protected] = ACTIONS(2390), + [anon_sym_override] = ACTIONS(2390), + [anon_sym_module] = ACTIONS(2390), + [anon_sym_any] = ACTIONS(2390), + [anon_sym_number] = ACTIONS(2390), + [anon_sym_boolean] = ACTIONS(2390), + [anon_sym_string] = ACTIONS(2390), + [anon_sym_symbol] = ACTIONS(2390), + [anon_sym_object] = ACTIONS(2390), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [700] = { - [sym__call_signature] = STATE(5864), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2397), - [anon_sym_export] = ACTIONS(2399), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2399), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2399), - [anon_sym_COMMA] = ACTIONS(855), - [anon_sym_RBRACE] = ACTIONS(855), - [anon_sym_let] = ACTIONS(2399), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_RPAREN] = ACTIONS(855), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(855), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(855), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2399), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2399), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2399), - [anon_sym_readonly] = ACTIONS(2399), - [anon_sym_get] = ACTIONS(2399), - [anon_sym_set] = ACTIONS(2399), - [anon_sym_QMARK] = ACTIONS(857), - [anon_sym_declare] = ACTIONS(2399), - [anon_sym_public] = ACTIONS(2399), - [anon_sym_private] = ACTIONS(2399), - [anon_sym_protected] = ACTIONS(2399), - [anon_sym_override] = ACTIONS(2399), - [anon_sym_module] = ACTIONS(2399), - [anon_sym_any] = ACTIONS(2399), - [anon_sym_number] = ACTIONS(2399), - [anon_sym_boolean] = ACTIONS(2399), - [anon_sym_string] = ACTIONS(2399), - [anon_sym_symbol] = ACTIONS(2399), - [anon_sym_object] = ACTIONS(2399), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5575), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [sym_identifier] = ACTIONS(2376), + [anon_sym_export] = ACTIONS(2378), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2378), + [anon_sym_EQ] = ACTIONS(842), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2378), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(158), + [anon_sym_let] = ACTIONS(2378), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_RPAREN] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_RBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2378), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(156), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2378), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_static] = ACTIONS(2378), + [anon_sym_readonly] = ACTIONS(2378), + [anon_sym_get] = ACTIONS(2378), + [anon_sym_set] = ACTIONS(2378), + [anon_sym_declare] = ACTIONS(2378), + [anon_sym_public] = ACTIONS(2378), + [anon_sym_private] = ACTIONS(2378), + [anon_sym_protected] = ACTIONS(2378), + [anon_sym_override] = ACTIONS(2378), + [anon_sym_module] = ACTIONS(2378), + [anon_sym_any] = ACTIONS(2378), + [anon_sym_number] = ACTIONS(2378), + [anon_sym_boolean] = ACTIONS(2378), + [anon_sym_string] = ACTIONS(2378), + [anon_sym_symbol] = ACTIONS(2378), + [anon_sym_object] = ACTIONS(2378), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [701] = { - [sym__call_signature] = STATE(5762), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2385), - [anon_sym_export] = ACTIONS(2387), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2387), - [anon_sym_EQ] = ACTIONS(223), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2387), - [anon_sym_COMMA] = ACTIONS(226), - [anon_sym_RBRACE] = ACTIONS(226), - [anon_sym_let] = ACTIONS(2387), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_RPAREN] = ACTIONS(226), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(226), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(226), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2387), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2387), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2387), - [anon_sym_readonly] = ACTIONS(2387), - [anon_sym_get] = ACTIONS(2387), - [anon_sym_set] = ACTIONS(2387), - [anon_sym_QMARK] = ACTIONS(755), - [anon_sym_declare] = ACTIONS(2387), - [anon_sym_public] = ACTIONS(2387), - [anon_sym_private] = ACTIONS(2387), - [anon_sym_protected] = ACTIONS(2387), - [anon_sym_override] = ACTIONS(2387), - [anon_sym_module] = ACTIONS(2387), - [anon_sym_any] = ACTIONS(2387), - [anon_sym_number] = ACTIONS(2387), - [anon_sym_boolean] = ACTIONS(2387), - [anon_sym_string] = ACTIONS(2387), - [anon_sym_symbol] = ACTIONS(2387), - [anon_sym_object] = ACTIONS(2387), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5575), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [sym_identifier] = ACTIONS(2376), + [anon_sym_export] = ACTIONS(2378), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2378), + [anon_sym_EQ] = ACTIONS(814), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2378), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(158), + [anon_sym_let] = ACTIONS(2378), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_RPAREN] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_RBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2378), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(156), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2378), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_static] = ACTIONS(2378), + [anon_sym_readonly] = ACTIONS(2378), + [anon_sym_get] = ACTIONS(2378), + [anon_sym_set] = ACTIONS(2378), + [anon_sym_declare] = ACTIONS(2378), + [anon_sym_public] = ACTIONS(2378), + [anon_sym_private] = ACTIONS(2378), + [anon_sym_protected] = ACTIONS(2378), + [anon_sym_override] = ACTIONS(2378), + [anon_sym_module] = ACTIONS(2378), + [anon_sym_any] = ACTIONS(2378), + [anon_sym_number] = ACTIONS(2378), + [anon_sym_boolean] = ACTIONS(2378), + [anon_sym_string] = ACTIONS(2378), + [anon_sym_symbol] = ACTIONS(2378), + [anon_sym_object] = ACTIONS(2378), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [702] = { - [sym__call_signature] = STATE(5762), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2385), - [anon_sym_export] = ACTIONS(2387), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2387), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2387), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2387), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2387), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2387), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2387), - [anon_sym_readonly] = ACTIONS(2387), - [anon_sym_get] = ACTIONS(2387), - [anon_sym_set] = ACTIONS(2387), - [anon_sym_declare] = ACTIONS(2387), - [anon_sym_public] = ACTIONS(2387), - [anon_sym_private] = ACTIONS(2387), - [anon_sym_protected] = ACTIONS(2387), - [anon_sym_override] = ACTIONS(2387), - [anon_sym_module] = ACTIONS(2387), - [anon_sym_any] = ACTIONS(2387), - [anon_sym_number] = ACTIONS(2387), - [anon_sym_boolean] = ACTIONS(2387), - [anon_sym_string] = ACTIONS(2387), - [anon_sym_symbol] = ACTIONS(2387), - [anon_sym_object] = ACTIONS(2387), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5660), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [sym_identifier] = ACTIONS(2388), + [anon_sym_export] = ACTIONS(2390), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2390), + [anon_sym_EQ] = ACTIONS(814), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2390), + [anon_sym_COMMA] = ACTIONS(834), + [anon_sym_RBRACE] = ACTIONS(834), + [anon_sym_let] = ACTIONS(2390), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_RPAREN] = ACTIONS(834), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(834), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_RBRACK] = ACTIONS(834), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2390), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2390), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_static] = ACTIONS(2390), + [anon_sym_readonly] = ACTIONS(2390), + [anon_sym_get] = ACTIONS(2390), + [anon_sym_set] = ACTIONS(2390), + [anon_sym_QMARK] = ACTIONS(836), + [anon_sym_declare] = ACTIONS(2390), + [anon_sym_public] = ACTIONS(2390), + [anon_sym_private] = ACTIONS(2390), + [anon_sym_protected] = ACTIONS(2390), + [anon_sym_override] = ACTIONS(2390), + [anon_sym_module] = ACTIONS(2390), + [anon_sym_any] = ACTIONS(2390), + [anon_sym_number] = ACTIONS(2390), + [anon_sym_boolean] = ACTIONS(2390), + [anon_sym_string] = ACTIONS(2390), + [anon_sym_symbol] = ACTIONS(2390), + [anon_sym_object] = ACTIONS(2390), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [703] = { - [sym__call_signature] = STATE(5762), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2385), - [anon_sym_export] = ACTIONS(2387), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2387), - [anon_sym_EQ] = ACTIONS(859), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2387), - [anon_sym_COMMA] = ACTIONS(885), - [anon_sym_RBRACE] = ACTIONS(885), - [anon_sym_let] = ACTIONS(2387), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(855), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2387), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2387), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2387), - [anon_sym_readonly] = ACTIONS(2387), - [anon_sym_get] = ACTIONS(2387), - [anon_sym_set] = ACTIONS(2387), - [anon_sym_declare] = ACTIONS(2387), - [anon_sym_public] = ACTIONS(2387), - [anon_sym_private] = ACTIONS(2387), - [anon_sym_protected] = ACTIONS(2387), - [anon_sym_override] = ACTIONS(2387), - [anon_sym_module] = ACTIONS(2387), - [anon_sym_any] = ACTIONS(2387), - [anon_sym_number] = ACTIONS(2387), - [anon_sym_boolean] = ACTIONS(2387), - [anon_sym_string] = ACTIONS(2387), - [anon_sym_symbol] = ACTIONS(2387), - [anon_sym_object] = ACTIONS(2387), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5889), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [sym_identifier] = ACTIONS(2392), + [anon_sym_export] = ACTIONS(2394), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2394), + [anon_sym_EQ] = ACTIONS(814), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2394), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_let] = ACTIONS(2394), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2394), + [anon_sym_function] = ACTIONS(2396), + [anon_sym_EQ_GT] = ACTIONS(870), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2394), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_static] = ACTIONS(2394), + [anon_sym_readonly] = ACTIONS(2394), + [anon_sym_get] = ACTIONS(2394), + [anon_sym_set] = ACTIONS(2394), + [anon_sym_declare] = ACTIONS(2394), + [anon_sym_public] = ACTIONS(2394), + [anon_sym_private] = ACTIONS(2394), + [anon_sym_protected] = ACTIONS(2394), + [anon_sym_override] = ACTIONS(2394), + [anon_sym_module] = ACTIONS(2394), + [anon_sym_any] = ACTIONS(2394), + [anon_sym_number] = ACTIONS(2394), + [anon_sym_boolean] = ACTIONS(2394), + [anon_sym_string] = ACTIONS(2394), + [anon_sym_symbol] = ACTIONS(2394), + [anon_sym_object] = ACTIONS(2394), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [704] = { - [sym__call_signature] = STATE(5884), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2401), - [anon_sym_export] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2403), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2403), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2403), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2403), - [anon_sym_function] = ACTIONS(2405), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2403), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2403), - [anon_sym_readonly] = ACTIONS(2403), - [anon_sym_get] = ACTIONS(2403), - [anon_sym_set] = ACTIONS(2403), - [anon_sym_declare] = ACTIONS(2403), - [anon_sym_public] = ACTIONS(2403), - [anon_sym_private] = ACTIONS(2403), - [anon_sym_protected] = ACTIONS(2403), - [anon_sym_override] = ACTIONS(2403), - [anon_sym_module] = ACTIONS(2403), - [anon_sym_any] = ACTIONS(2403), - [anon_sym_number] = ACTIONS(2403), - [anon_sym_boolean] = ACTIONS(2403), - [anon_sym_string] = ACTIONS(2403), - [anon_sym_symbol] = ACTIONS(2403), - [anon_sym_object] = ACTIONS(2403), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5739), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [sym_identifier] = ACTIONS(2398), + [anon_sym_export] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2400), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2400), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_let] = ACTIONS(2400), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2400), + [anon_sym_function] = ACTIONS(2402), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2400), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_static] = ACTIONS(2400), + [anon_sym_readonly] = ACTIONS(2400), + [anon_sym_get] = ACTIONS(2400), + [anon_sym_set] = ACTIONS(2400), + [anon_sym_declare] = ACTIONS(2400), + [anon_sym_public] = ACTIONS(2400), + [anon_sym_private] = ACTIONS(2400), + [anon_sym_protected] = ACTIONS(2400), + [anon_sym_override] = ACTIONS(2400), + [anon_sym_module] = ACTIONS(2400), + [anon_sym_any] = ACTIONS(2400), + [anon_sym_number] = ACTIONS(2400), + [anon_sym_boolean] = ACTIONS(2400), + [anon_sym_string] = ACTIONS(2400), + [anon_sym_symbol] = ACTIONS(2400), + [anon_sym_object] = ACTIONS(2400), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [705] = { - [sym__call_signature] = STATE(5884), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2401), - [anon_sym_export] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2403), - [anon_sym_EQ] = ACTIONS(877), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2403), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2403), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(883), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2403), - [anon_sym_function] = ACTIONS(2407), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2403), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2403), - [anon_sym_readonly] = ACTIONS(2403), - [anon_sym_get] = ACTIONS(2403), - [anon_sym_set] = ACTIONS(2403), - [anon_sym_declare] = ACTIONS(2403), - [anon_sym_public] = ACTIONS(2403), - [anon_sym_private] = ACTIONS(2403), - [anon_sym_protected] = ACTIONS(2403), - [anon_sym_override] = ACTIONS(2403), - [anon_sym_module] = ACTIONS(2403), - [anon_sym_any] = ACTIONS(2403), - [anon_sym_number] = ACTIONS(2403), - [anon_sym_boolean] = ACTIONS(2403), - [anon_sym_string] = ACTIONS(2403), - [anon_sym_symbol] = ACTIONS(2403), - [anon_sym_object] = ACTIONS(2403), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5889), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [sym_identifier] = ACTIONS(2392), + [anon_sym_export] = ACTIONS(2394), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2394), + [anon_sym_EQ] = ACTIONS(864), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2394), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_let] = ACTIONS(2394), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2394), + [anon_sym_function] = ACTIONS(2396), + [anon_sym_EQ_GT] = ACTIONS(870), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2394), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_static] = ACTIONS(2394), + [anon_sym_readonly] = ACTIONS(2394), + [anon_sym_get] = ACTIONS(2394), + [anon_sym_set] = ACTIONS(2394), + [anon_sym_declare] = ACTIONS(2394), + [anon_sym_public] = ACTIONS(2394), + [anon_sym_private] = ACTIONS(2394), + [anon_sym_protected] = ACTIONS(2394), + [anon_sym_override] = ACTIONS(2394), + [anon_sym_module] = ACTIONS(2394), + [anon_sym_any] = ACTIONS(2394), + [anon_sym_number] = ACTIONS(2394), + [anon_sym_boolean] = ACTIONS(2394), + [anon_sym_string] = ACTIONS(2394), + [anon_sym_symbol] = ACTIONS(2394), + [anon_sym_object] = ACTIONS(2394), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [706] = { - [sym__call_signature] = STATE(5884), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2401), - [anon_sym_export] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2403), - [anon_sym_EQ] = ACTIONS(877), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2403), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2403), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(879), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2403), - [anon_sym_function] = ACTIONS(2407), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2403), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2403), - [anon_sym_readonly] = ACTIONS(2403), - [anon_sym_get] = ACTIONS(2403), - [anon_sym_set] = ACTIONS(2403), - [anon_sym_declare] = ACTIONS(2403), - [anon_sym_public] = ACTIONS(2403), - [anon_sym_private] = ACTIONS(2403), - [anon_sym_protected] = ACTIONS(2403), - [anon_sym_override] = ACTIONS(2403), - [anon_sym_module] = ACTIONS(2403), - [anon_sym_any] = ACTIONS(2403), - [anon_sym_number] = ACTIONS(2403), - [anon_sym_boolean] = ACTIONS(2403), - [anon_sym_string] = ACTIONS(2403), - [anon_sym_symbol] = ACTIONS(2403), - [anon_sym_object] = ACTIONS(2403), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5739), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [sym_identifier] = ACTIONS(2398), + [anon_sym_export] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2400), + [anon_sym_EQ] = ACTIONS(814), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2400), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(158), + [anon_sym_let] = ACTIONS(2400), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2400), + [anon_sym_function] = ACTIONS(2396), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2400), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_static] = ACTIONS(2400), + [anon_sym_readonly] = ACTIONS(2400), + [anon_sym_get] = ACTIONS(2400), + [anon_sym_set] = ACTIONS(2400), + [anon_sym_declare] = ACTIONS(2400), + [anon_sym_public] = ACTIONS(2400), + [anon_sym_private] = ACTIONS(2400), + [anon_sym_protected] = ACTIONS(2400), + [anon_sym_override] = ACTIONS(2400), + [anon_sym_module] = ACTIONS(2400), + [anon_sym_any] = ACTIONS(2400), + [anon_sym_number] = ACTIONS(2400), + [anon_sym_boolean] = ACTIONS(2400), + [anon_sym_string] = ACTIONS(2400), + [anon_sym_symbol] = ACTIONS(2400), + [anon_sym_object] = ACTIONS(2400), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [707] = { - [sym__call_signature] = STATE(5884), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2401), - [anon_sym_export] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2403), - [anon_sym_EQ] = ACTIONS(877), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2403), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2403), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2403), - [anon_sym_function] = ACTIONS(2405), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2403), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2403), - [anon_sym_readonly] = ACTIONS(2403), - [anon_sym_get] = ACTIONS(2403), - [anon_sym_set] = ACTIONS(2403), - [anon_sym_declare] = ACTIONS(2403), - [anon_sym_public] = ACTIONS(2403), - [anon_sym_private] = ACTIONS(2403), - [anon_sym_protected] = ACTIONS(2403), - [anon_sym_override] = ACTIONS(2403), - [anon_sym_module] = ACTIONS(2403), - [anon_sym_any] = ACTIONS(2403), - [anon_sym_number] = ACTIONS(2403), - [anon_sym_boolean] = ACTIONS(2403), - [anon_sym_string] = ACTIONS(2403), - [anon_sym_symbol] = ACTIONS(2403), - [anon_sym_object] = ACTIONS(2403), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5739), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [sym_identifier] = ACTIONS(2398), + [anon_sym_export] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2400), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2400), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_let] = ACTIONS(2400), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2400), + [anon_sym_function] = ACTIONS(2402), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2400), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_static] = ACTIONS(2400), + [anon_sym_readonly] = ACTIONS(2400), + [anon_sym_get] = ACTIONS(2400), + [anon_sym_set] = ACTIONS(2400), + [anon_sym_declare] = ACTIONS(2400), + [anon_sym_public] = ACTIONS(2400), + [anon_sym_private] = ACTIONS(2400), + [anon_sym_protected] = ACTIONS(2400), + [anon_sym_override] = ACTIONS(2400), + [anon_sym_module] = ACTIONS(2400), + [anon_sym_any] = ACTIONS(2400), + [anon_sym_number] = ACTIONS(2400), + [anon_sym_boolean] = ACTIONS(2400), + [anon_sym_string] = ACTIONS(2400), + [anon_sym_symbol] = ACTIONS(2400), + [anon_sym_object] = ACTIONS(2400), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [708] = { - [sym__call_signature] = STATE(5884), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2401), - [anon_sym_export] = ACTIONS(2403), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2403), - [anon_sym_EQ] = ACTIONS(877), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2403), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2403), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(881), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2403), - [anon_sym_function] = ACTIONS(2295), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2403), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2403), - [anon_sym_readonly] = ACTIONS(2403), - [anon_sym_get] = ACTIONS(2403), - [anon_sym_set] = ACTIONS(2403), - [anon_sym_declare] = ACTIONS(2403), - [anon_sym_public] = ACTIONS(2403), - [anon_sym_private] = ACTIONS(2403), - [anon_sym_protected] = ACTIONS(2403), - [anon_sym_override] = ACTIONS(2403), - [anon_sym_module] = ACTIONS(2403), - [anon_sym_any] = ACTIONS(2403), - [anon_sym_number] = ACTIONS(2403), - [anon_sym_boolean] = ACTIONS(2403), - [anon_sym_string] = ACTIONS(2403), - [anon_sym_symbol] = ACTIONS(2403), - [anon_sym_object] = ACTIONS(2403), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5739), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [sym_identifier] = ACTIONS(2398), + [anon_sym_export] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2400), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2400), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_let] = ACTIONS(2400), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(856), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2400), + [anon_sym_function] = ACTIONS(2286), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2400), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_static] = ACTIONS(2400), + [anon_sym_readonly] = ACTIONS(2400), + [anon_sym_get] = ACTIONS(2400), + [anon_sym_set] = ACTIONS(2400), + [anon_sym_declare] = ACTIONS(2400), + [anon_sym_public] = ACTIONS(2400), + [anon_sym_private] = ACTIONS(2400), + [anon_sym_protected] = ACTIONS(2400), + [anon_sym_override] = ACTIONS(2400), + [anon_sym_module] = ACTIONS(2400), + [anon_sym_any] = ACTIONS(2400), + [anon_sym_number] = ACTIONS(2400), + [anon_sym_boolean] = ACTIONS(2400), + [anon_sym_string] = ACTIONS(2400), + [anon_sym_symbol] = ACTIONS(2400), + [anon_sym_object] = ACTIONS(2400), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [709] = { - [sym__call_signature] = STATE(5901), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2409), - [anon_sym_export] = ACTIONS(2411), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2411), - [anon_sym_EQ] = ACTIONS(865), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2411), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2411), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2411), - [anon_sym_function] = ACTIONS(2405), - [anon_sym_EQ_GT] = ACTIONS(871), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2411), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2411), - [anon_sym_readonly] = ACTIONS(2411), - [anon_sym_get] = ACTIONS(2411), - [anon_sym_set] = ACTIONS(2411), - [anon_sym_declare] = ACTIONS(2411), - [anon_sym_public] = ACTIONS(2411), - [anon_sym_private] = ACTIONS(2411), - [anon_sym_protected] = ACTIONS(2411), - [anon_sym_override] = ACTIONS(2411), - [anon_sym_module] = ACTIONS(2411), - [anon_sym_any] = ACTIONS(2411), - [anon_sym_number] = ACTIONS(2411), - [anon_sym_boolean] = ACTIONS(2411), - [anon_sym_string] = ACTIONS(2411), - [anon_sym_symbol] = ACTIONS(2411), - [anon_sym_object] = ACTIONS(2411), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5739), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [sym_identifier] = ACTIONS(2398), + [anon_sym_export] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2400), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2400), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(158), + [anon_sym_let] = ACTIONS(2400), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2400), + [anon_sym_function] = ACTIONS(2396), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2400), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_static] = ACTIONS(2400), + [anon_sym_readonly] = ACTIONS(2400), + [anon_sym_get] = ACTIONS(2400), + [anon_sym_set] = ACTIONS(2400), + [anon_sym_declare] = ACTIONS(2400), + [anon_sym_public] = ACTIONS(2400), + [anon_sym_private] = ACTIONS(2400), + [anon_sym_protected] = ACTIONS(2400), + [anon_sym_override] = ACTIONS(2400), + [anon_sym_module] = ACTIONS(2400), + [anon_sym_any] = ACTIONS(2400), + [anon_sym_number] = ACTIONS(2400), + [anon_sym_boolean] = ACTIONS(2400), + [anon_sym_string] = ACTIONS(2400), + [anon_sym_symbol] = ACTIONS(2400), + [anon_sym_object] = ACTIONS(2400), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [710] = { - [sym__call_signature] = STATE(5901), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2409), - [anon_sym_export] = ACTIONS(2411), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2411), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2411), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2411), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2411), - [anon_sym_function] = ACTIONS(2405), - [anon_sym_EQ_GT] = ACTIONS(871), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2411), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2411), - [anon_sym_readonly] = ACTIONS(2411), - [anon_sym_get] = ACTIONS(2411), - [anon_sym_set] = ACTIONS(2411), - [anon_sym_declare] = ACTIONS(2411), - [anon_sym_public] = ACTIONS(2411), - [anon_sym_private] = ACTIONS(2411), - [anon_sym_protected] = ACTIONS(2411), - [anon_sym_override] = ACTIONS(2411), - [anon_sym_module] = ACTIONS(2411), - [anon_sym_any] = ACTIONS(2411), - [anon_sym_number] = ACTIONS(2411), - [anon_sym_boolean] = ACTIONS(2411), - [anon_sym_string] = ACTIONS(2411), - [anon_sym_symbol] = ACTIONS(2411), - [anon_sym_object] = ACTIONS(2411), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5575), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [sym_identifier] = ACTIONS(2376), + [anon_sym_export] = ACTIONS(2378), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2378), + [anon_sym_EQ] = ACTIONS(842), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2378), + [anon_sym_COMMA] = ACTIONS(883), + [anon_sym_RBRACE] = ACTIONS(883), + [anon_sym_let] = ACTIONS(2378), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(834), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_RBRACK] = ACTIONS(883), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2378), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(156), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2378), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_static] = ACTIONS(2378), + [anon_sym_readonly] = ACTIONS(2378), + [anon_sym_get] = ACTIONS(2378), + [anon_sym_set] = ACTIONS(2378), + [anon_sym_declare] = ACTIONS(2378), + [anon_sym_public] = ACTIONS(2378), + [anon_sym_private] = ACTIONS(2378), + [anon_sym_protected] = ACTIONS(2378), + [anon_sym_override] = ACTIONS(2378), + [anon_sym_module] = ACTIONS(2378), + [anon_sym_any] = ACTIONS(2378), + [anon_sym_number] = ACTIONS(2378), + [anon_sym_boolean] = ACTIONS(2378), + [anon_sym_string] = ACTIONS(2378), + [anon_sym_symbol] = ACTIONS(2378), + [anon_sym_object] = ACTIONS(2378), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [711] = { - [sym_catch_clause] = STATE(744), - [sym_finally_clause] = STATE(783), - [ts_builtin_sym_end] = ACTIONS(2413), - [sym_identifier] = ACTIONS(2415), - [anon_sym_export] = ACTIONS(2415), - [anon_sym_default] = ACTIONS(2415), - [anon_sym_type] = ACTIONS(2415), - [anon_sym_namespace] = ACTIONS(2415), - [anon_sym_LBRACE] = ACTIONS(2413), - [anon_sym_RBRACE] = ACTIONS(2413), - [anon_sym_typeof] = ACTIONS(2415), - [anon_sym_import] = ACTIONS(2415), - [anon_sym_with] = ACTIONS(2415), - [anon_sym_var] = ACTIONS(2415), - [anon_sym_let] = ACTIONS(2415), - [anon_sym_const] = ACTIONS(2415), - [anon_sym_BANG] = ACTIONS(2413), - [anon_sym_else] = ACTIONS(2415), - [anon_sym_if] = ACTIONS(2415), - [anon_sym_switch] = ACTIONS(2415), - [anon_sym_for] = ACTIONS(2415), - [anon_sym_LPAREN] = ACTIONS(2413), - [anon_sym_SEMI] = ACTIONS(2413), - [anon_sym_await] = ACTIONS(2415), - [anon_sym_while] = ACTIONS(2415), - [anon_sym_do] = ACTIONS(2415), - [anon_sym_try] = ACTIONS(2415), - [anon_sym_break] = ACTIONS(2415), - [anon_sym_continue] = ACTIONS(2415), - [anon_sym_debugger] = ACTIONS(2415), - [anon_sym_return] = ACTIONS(2415), - [anon_sym_throw] = ACTIONS(2415), - [anon_sym_case] = ACTIONS(2415), - [anon_sym_catch] = ACTIONS(2417), - [anon_sym_finally] = ACTIONS(2419), - [anon_sym_yield] = ACTIONS(2415), - [anon_sym_LBRACK] = ACTIONS(2413), - [sym_glimmer_opening_tag] = ACTIONS(2413), - [anon_sym_DQUOTE] = ACTIONS(2413), - [anon_sym_SQUOTE] = ACTIONS(2413), - [anon_sym_class] = ACTIONS(2415), - [anon_sym_async] = ACTIONS(2415), - [anon_sym_function] = ACTIONS(2415), - [anon_sym_new] = ACTIONS(2415), - [anon_sym_using] = ACTIONS(2415), - [anon_sym_PLUS] = ACTIONS(2415), - [anon_sym_DASH] = ACTIONS(2415), - [anon_sym_SLASH] = ACTIONS(2415), - [anon_sym_LT] = ACTIONS(2415), - [anon_sym_TILDE] = ACTIONS(2413), - [anon_sym_void] = ACTIONS(2415), - [anon_sym_delete] = ACTIONS(2415), - [anon_sym_PLUS_PLUS] = ACTIONS(2413), - [anon_sym_DASH_DASH] = ACTIONS(2413), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2413), - [sym_number] = ACTIONS(2413), - [sym_private_property_identifier] = ACTIONS(2413), - [sym_this] = ACTIONS(2415), - [sym_super] = ACTIONS(2415), - [sym_true] = ACTIONS(2415), - [sym_false] = ACTIONS(2415), - [sym_null] = ACTIONS(2415), - [sym_undefined] = ACTIONS(2415), - [anon_sym_AT] = ACTIONS(2413), - [anon_sym_static] = ACTIONS(2415), - [anon_sym_readonly] = ACTIONS(2415), - [anon_sym_get] = ACTIONS(2415), - [anon_sym_set] = ACTIONS(2415), - [anon_sym_declare] = ACTIONS(2415), - [anon_sym_public] = ACTIONS(2415), - [anon_sym_private] = ACTIONS(2415), - [anon_sym_protected] = ACTIONS(2415), - [anon_sym_override] = ACTIONS(2415), - [anon_sym_module] = ACTIONS(2415), - [anon_sym_any] = ACTIONS(2415), - [anon_sym_number] = ACTIONS(2415), - [anon_sym_boolean] = ACTIONS(2415), - [anon_sym_string] = ACTIONS(2415), - [anon_sym_symbol] = ACTIONS(2415), - [anon_sym_object] = ACTIONS(2415), - [anon_sym_abstract] = ACTIONS(2415), - [anon_sym_interface] = ACTIONS(2415), - [anon_sym_enum] = ACTIONS(2415), + [sym__call_signature] = STATE(5790), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [sym_identifier] = ACTIONS(2404), + [anon_sym_export] = ACTIONS(2406), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2406), + [anon_sym_EQ] = ACTIONS(814), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2406), + [anon_sym_LBRACE] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_let] = ACTIONS(2406), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2406), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(945), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2406), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_static] = ACTIONS(2406), + [anon_sym_readonly] = ACTIONS(2406), + [anon_sym_get] = ACTIONS(2406), + [anon_sym_set] = ACTIONS(2406), + [anon_sym_declare] = ACTIONS(2406), + [anon_sym_public] = ACTIONS(2406), + [anon_sym_private] = ACTIONS(2406), + [anon_sym_protected] = ACTIONS(2406), + [anon_sym_override] = ACTIONS(2406), + [anon_sym_module] = ACTIONS(2406), + [anon_sym_any] = ACTIONS(2406), + [anon_sym_number] = ACTIONS(2406), + [anon_sym_boolean] = ACTIONS(2406), + [anon_sym_string] = ACTIONS(2406), + [anon_sym_symbol] = ACTIONS(2406), + [anon_sym_object] = ACTIONS(2406), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_implements] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [712] = { - [sym__call_signature] = STATE(5762), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2385), - [anon_sym_export] = ACTIONS(2387), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2387), - [anon_sym_EQ] = ACTIONS(859), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2387), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2387), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(905), - [anon_sym_of] = ACTIONS(908), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2387), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2387), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2387), - [anon_sym_readonly] = ACTIONS(2387), - [anon_sym_get] = ACTIONS(2387), - [anon_sym_set] = ACTIONS(2387), - [anon_sym_declare] = ACTIONS(2387), - [anon_sym_public] = ACTIONS(2387), - [anon_sym_private] = ACTIONS(2387), - [anon_sym_protected] = ACTIONS(2387), - [anon_sym_override] = ACTIONS(2387), - [anon_sym_module] = ACTIONS(2387), - [anon_sym_any] = ACTIONS(2387), - [anon_sym_number] = ACTIONS(2387), - [anon_sym_boolean] = ACTIONS(2387), - [anon_sym_string] = ACTIONS(2387), - [anon_sym_symbol] = ACTIONS(2387), - [anon_sym_object] = ACTIONS(2387), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5770), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [sym_identifier] = ACTIONS(2408), + [anon_sym_export] = ACTIONS(2410), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2410), + [anon_sym_EQ] = ACTIONS(890), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2410), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_let] = ACTIONS(2410), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(895), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_RBRACK] = ACTIONS(126), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2410), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(899), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2410), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_static] = ACTIONS(2410), + [anon_sym_readonly] = ACTIONS(2410), + [anon_sym_get] = ACTIONS(2410), + [anon_sym_set] = ACTIONS(2410), + [anon_sym_declare] = ACTIONS(2410), + [anon_sym_public] = ACTIONS(2410), + [anon_sym_private] = ACTIONS(2410), + [anon_sym_protected] = ACTIONS(2410), + [anon_sym_override] = ACTIONS(2410), + [anon_sym_module] = ACTIONS(2410), + [anon_sym_any] = ACTIONS(2410), + [anon_sym_number] = ACTIONS(2410), + [anon_sym_boolean] = ACTIONS(2410), + [anon_sym_string] = ACTIONS(2410), + [anon_sym_symbol] = ACTIONS(2410), + [anon_sym_object] = ACTIONS(2410), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [713] = { - [ts_builtin_sym_end] = ACTIONS(1702), - [sym_identifier] = ACTIONS(1704), - [anon_sym_export] = ACTIONS(1704), - [anon_sym_default] = ACTIONS(1704), - [anon_sym_type] = ACTIONS(1704), - [anon_sym_namespace] = ACTIONS(1704), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_COMMA] = ACTIONS(1702), - [anon_sym_RBRACE] = ACTIONS(1702), - [anon_sym_typeof] = ACTIONS(1704), - [anon_sym_import] = ACTIONS(1704), - [anon_sym_with] = ACTIONS(1704), - [anon_sym_var] = ACTIONS(1704), - [anon_sym_let] = ACTIONS(1704), - [anon_sym_const] = ACTIONS(1704), - [anon_sym_BANG] = ACTIONS(1702), - [anon_sym_else] = ACTIONS(1704), - [anon_sym_if] = ACTIONS(1704), - [anon_sym_switch] = ACTIONS(1704), - [anon_sym_for] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(1702), - [anon_sym_SEMI] = ACTIONS(1702), - [anon_sym_await] = ACTIONS(1704), - [anon_sym_while] = ACTIONS(1704), - [anon_sym_do] = ACTIONS(1704), - [anon_sym_try] = ACTIONS(1704), - [anon_sym_break] = ACTIONS(1704), - [anon_sym_continue] = ACTIONS(1704), - [anon_sym_debugger] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1704), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_case] = ACTIONS(1704), - [anon_sym_catch] = ACTIONS(1704), - [anon_sym_finally] = ACTIONS(1704), - [anon_sym_yield] = ACTIONS(1704), - [anon_sym_LBRACK] = ACTIONS(1702), - [sym_glimmer_opening_tag] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1702), - [anon_sym_SQUOTE] = ACTIONS(1702), - [anon_sym_class] = ACTIONS(1704), - [anon_sym_async] = ACTIONS(1704), - [anon_sym_function] = ACTIONS(1704), - [anon_sym_new] = ACTIONS(1704), - [anon_sym_using] = ACTIONS(1704), - [anon_sym_PLUS] = ACTIONS(1704), - [anon_sym_DASH] = ACTIONS(1704), - [anon_sym_SLASH] = ACTIONS(1704), - [anon_sym_LT] = ACTIONS(1704), - [anon_sym_TILDE] = ACTIONS(1702), - [anon_sym_void] = ACTIONS(1704), - [anon_sym_delete] = ACTIONS(1704), - [anon_sym_PLUS_PLUS] = ACTIONS(1702), - [anon_sym_DASH_DASH] = ACTIONS(1702), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1702), - [sym_number] = ACTIONS(1702), - [sym_private_property_identifier] = ACTIONS(1702), - [sym_this] = ACTIONS(1704), - [sym_super] = ACTIONS(1704), - [sym_true] = ACTIONS(1704), - [sym_false] = ACTIONS(1704), - [sym_null] = ACTIONS(1704), - [sym_undefined] = ACTIONS(1704), - [anon_sym_AT] = ACTIONS(1702), - [anon_sym_static] = ACTIONS(1704), - [anon_sym_readonly] = ACTIONS(1704), - [anon_sym_get] = ACTIONS(1704), - [anon_sym_set] = ACTIONS(1704), - [anon_sym_declare] = ACTIONS(1704), - [anon_sym_public] = ACTIONS(1704), - [anon_sym_private] = ACTIONS(1704), - [anon_sym_protected] = ACTIONS(1704), - [anon_sym_override] = ACTIONS(1704), - [anon_sym_module] = ACTIONS(1704), - [anon_sym_any] = ACTIONS(1704), - [anon_sym_number] = ACTIONS(1704), - [anon_sym_boolean] = ACTIONS(1704), - [anon_sym_string] = ACTIONS(1704), - [anon_sym_symbol] = ACTIONS(1704), - [anon_sym_object] = ACTIONS(1704), - [anon_sym_abstract] = ACTIONS(1704), - [anon_sym_interface] = ACTIONS(1704), - [anon_sym_enum] = ACTIONS(1704), - [sym__automatic_semicolon] = ACTIONS(1712), + [sym__call_signature] = STATE(5575), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [sym_identifier] = ACTIONS(2376), + [anon_sym_export] = ACTIONS(2378), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2378), + [anon_sym_EQ] = ACTIONS(842), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2378), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_let] = ACTIONS(2378), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(878), + [anon_sym_of] = ACTIONS(881), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2378), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(156), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2378), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_static] = ACTIONS(2378), + [anon_sym_readonly] = ACTIONS(2378), + [anon_sym_get] = ACTIONS(2378), + [anon_sym_set] = ACTIONS(2378), + [anon_sym_declare] = ACTIONS(2378), + [anon_sym_public] = ACTIONS(2378), + [anon_sym_private] = ACTIONS(2378), + [anon_sym_protected] = ACTIONS(2378), + [anon_sym_override] = ACTIONS(2378), + [anon_sym_module] = ACTIONS(2378), + [anon_sym_any] = ACTIONS(2378), + [anon_sym_number] = ACTIONS(2378), + [anon_sym_boolean] = ACTIONS(2378), + [anon_sym_string] = ACTIONS(2378), + [anon_sym_symbol] = ACTIONS(2378), + [anon_sym_object] = ACTIONS(2378), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [714] = { - [sym__call_signature] = STATE(5849), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2421), - [anon_sym_export] = ACTIONS(2423), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2423), - [anon_sym_EQ] = ACTIONS(892), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2423), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_let] = ACTIONS(2423), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(897), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(226), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2423), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(901), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2423), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2423), - [anon_sym_readonly] = ACTIONS(2423), - [anon_sym_get] = ACTIONS(2423), - [anon_sym_set] = ACTIONS(2423), - [anon_sym_declare] = ACTIONS(2423), - [anon_sym_public] = ACTIONS(2423), - [anon_sym_private] = ACTIONS(2423), - [anon_sym_protected] = ACTIONS(2423), - [anon_sym_override] = ACTIONS(2423), - [anon_sym_module] = ACTIONS(2423), - [anon_sym_any] = ACTIONS(2423), - [anon_sym_number] = ACTIONS(2423), - [anon_sym_boolean] = ACTIONS(2423), - [anon_sym_string] = ACTIONS(2423), - [anon_sym_symbol] = ACTIONS(2423), - [anon_sym_object] = ACTIONS(2423), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5790), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [sym_identifier] = ACTIONS(2404), + [anon_sym_export] = ACTIONS(2406), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2406), + [anon_sym_EQ] = ACTIONS(939), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2406), + [anon_sym_LBRACE] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_let] = ACTIONS(2406), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2406), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(945), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2406), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_static] = ACTIONS(2406), + [anon_sym_readonly] = ACTIONS(2406), + [anon_sym_get] = ACTIONS(2406), + [anon_sym_set] = ACTIONS(2406), + [anon_sym_declare] = ACTIONS(2406), + [anon_sym_public] = ACTIONS(2406), + [anon_sym_private] = ACTIONS(2406), + [anon_sym_protected] = ACTIONS(2406), + [anon_sym_override] = ACTIONS(2406), + [anon_sym_module] = ACTIONS(2406), + [anon_sym_any] = ACTIONS(2406), + [anon_sym_number] = ACTIONS(2406), + [anon_sym_boolean] = ACTIONS(2406), + [anon_sym_string] = ACTIONS(2406), + [anon_sym_symbol] = ACTIONS(2406), + [anon_sym_object] = ACTIONS(2406), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_implements] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [715] = { - [sym__call_signature] = STATE(5802), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2425), - [anon_sym_export] = ACTIONS(2427), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2427), - [anon_sym_EQ] = ACTIONS(916), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2427), - [anon_sym_LBRACE] = ACTIONS(161), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2427), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2427), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(922), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2427), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2427), - [anon_sym_readonly] = ACTIONS(2427), - [anon_sym_get] = ACTIONS(2427), - [anon_sym_set] = ACTIONS(2427), - [anon_sym_declare] = ACTIONS(2427), - [anon_sym_public] = ACTIONS(2427), - [anon_sym_private] = ACTIONS(2427), - [anon_sym_protected] = ACTIONS(2427), - [anon_sym_override] = ACTIONS(2427), - [anon_sym_module] = ACTIONS(2427), - [anon_sym_any] = ACTIONS(2427), - [anon_sym_number] = ACTIONS(2427), - [anon_sym_boolean] = ACTIONS(2427), - [anon_sym_string] = ACTIONS(2427), - [anon_sym_symbol] = ACTIONS(2427), - [anon_sym_object] = ACTIONS(2427), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_implements] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [ts_builtin_sym_end] = ACTIONS(1809), + [sym_identifier] = ACTIONS(1811), + [anon_sym_export] = ACTIONS(1811), + [anon_sym_default] = ACTIONS(1811), + [anon_sym_type] = ACTIONS(1811), + [anon_sym_namespace] = ACTIONS(1811), + [anon_sym_LBRACE] = ACTIONS(1809), + [anon_sym_COMMA] = ACTIONS(1809), + [anon_sym_RBRACE] = ACTIONS(1809), + [anon_sym_typeof] = ACTIONS(1811), + [anon_sym_import] = ACTIONS(1811), + [anon_sym_with] = ACTIONS(1811), + [anon_sym_var] = ACTIONS(1811), + [anon_sym_let] = ACTIONS(1811), + [anon_sym_const] = ACTIONS(1811), + [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_else] = ACTIONS(1811), + [anon_sym_if] = ACTIONS(1811), + [anon_sym_switch] = ACTIONS(1811), + [anon_sym_for] = ACTIONS(1811), + [anon_sym_LPAREN] = ACTIONS(1809), + [anon_sym_SEMI] = ACTIONS(1809), + [anon_sym_await] = ACTIONS(1811), + [anon_sym_while] = ACTIONS(1811), + [anon_sym_do] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1811), + [anon_sym_break] = ACTIONS(1811), + [anon_sym_continue] = ACTIONS(1811), + [anon_sym_debugger] = ACTIONS(1811), + [anon_sym_return] = ACTIONS(1811), + [anon_sym_throw] = ACTIONS(1811), + [anon_sym_case] = ACTIONS(1811), + [anon_sym_catch] = ACTIONS(1811), + [anon_sym_finally] = ACTIONS(1811), + [anon_sym_yield] = ACTIONS(1811), + [anon_sym_LBRACK] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1809), + [anon_sym_SQUOTE] = ACTIONS(1809), + [anon_sym_class] = ACTIONS(1811), + [anon_sym_async] = ACTIONS(1811), + [anon_sym_function] = ACTIONS(1811), + [anon_sym_new] = ACTIONS(1811), + [anon_sym_using] = ACTIONS(1811), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_SLASH] = ACTIONS(1811), + [anon_sym_LT] = ACTIONS(1809), + [anon_sym_TILDE] = ACTIONS(1809), + [anon_sym_void] = ACTIONS(1811), + [anon_sym_delete] = ACTIONS(1811), + [anon_sym_PLUS_PLUS] = ACTIONS(1809), + [anon_sym_DASH_DASH] = ACTIONS(1809), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1809), + [sym_number] = ACTIONS(1809), + [sym_private_property_identifier] = ACTIONS(1809), + [sym_this] = ACTIONS(1811), + [sym_super] = ACTIONS(1811), + [sym_true] = ACTIONS(1811), + [sym_false] = ACTIONS(1811), + [sym_null] = ACTIONS(1811), + [sym_undefined] = ACTIONS(1811), + [anon_sym_AT] = ACTIONS(1809), + [anon_sym_static] = ACTIONS(1811), + [anon_sym_readonly] = ACTIONS(1811), + [anon_sym_get] = ACTIONS(1811), + [anon_sym_set] = ACTIONS(1811), + [anon_sym_declare] = ACTIONS(1811), + [anon_sym_public] = ACTIONS(1811), + [anon_sym_private] = ACTIONS(1811), + [anon_sym_protected] = ACTIONS(1811), + [anon_sym_override] = ACTIONS(1811), + [anon_sym_module] = ACTIONS(1811), + [anon_sym_any] = ACTIONS(1811), + [anon_sym_number] = ACTIONS(1811), + [anon_sym_boolean] = ACTIONS(1811), + [anon_sym_string] = ACTIONS(1811), + [anon_sym_symbol] = ACTIONS(1811), + [anon_sym_object] = ACTIONS(1811), + [anon_sym_abstract] = ACTIONS(1811), + [anon_sym_interface] = ACTIONS(1811), + [anon_sym_enum] = ACTIONS(1811), + [sym__automatic_semicolon] = ACTIONS(2412), [sym_html_comment] = ACTIONS(5), }, [716] = { - [sym__call_signature] = STATE(5802), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2425), - [anon_sym_export] = ACTIONS(2427), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2427), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2427), - [anon_sym_LBRACE] = ACTIONS(161), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2427), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2427), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(922), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2427), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2427), - [anon_sym_readonly] = ACTIONS(2427), - [anon_sym_get] = ACTIONS(2427), - [anon_sym_set] = ACTIONS(2427), - [anon_sym_declare] = ACTIONS(2427), - [anon_sym_public] = ACTIONS(2427), - [anon_sym_private] = ACTIONS(2427), - [anon_sym_protected] = ACTIONS(2427), - [anon_sym_override] = ACTIONS(2427), - [anon_sym_module] = ACTIONS(2427), - [anon_sym_any] = ACTIONS(2427), - [anon_sym_number] = ACTIONS(2427), - [anon_sym_boolean] = ACTIONS(2427), - [anon_sym_string] = ACTIONS(2427), - [anon_sym_symbol] = ACTIONS(2427), - [anon_sym_object] = ACTIONS(2427), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_implements] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5770), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [sym_identifier] = ACTIONS(2408), + [anon_sym_export] = ACTIONS(2410), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2410), + [anon_sym_EQ] = ACTIONS(903), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2410), + [anon_sym_let] = ACTIONS(2410), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(919), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_RBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2410), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(899), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2410), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_static] = ACTIONS(2410), + [anon_sym_readonly] = ACTIONS(2410), + [anon_sym_get] = ACTIONS(2410), + [anon_sym_set] = ACTIONS(2410), + [anon_sym_declare] = ACTIONS(2410), + [anon_sym_public] = ACTIONS(2410), + [anon_sym_private] = ACTIONS(2410), + [anon_sym_protected] = ACTIONS(2410), + [anon_sym_override] = ACTIONS(2410), + [anon_sym_module] = ACTIONS(2410), + [anon_sym_any] = ACTIONS(2410), + [anon_sym_number] = ACTIONS(2410), + [anon_sym_boolean] = ACTIONS(2410), + [anon_sym_string] = ACTIONS(2410), + [anon_sym_symbol] = ACTIONS(2410), + [anon_sym_object] = ACTIONS(2410), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [717] = { - [ts_builtin_sym_end] = ACTIONS(1853), - [sym_identifier] = ACTIONS(1855), - [anon_sym_export] = ACTIONS(1855), - [anon_sym_default] = ACTIONS(1855), - [anon_sym_type] = ACTIONS(1855), - [anon_sym_namespace] = ACTIONS(1855), - [anon_sym_LBRACE] = ACTIONS(1853), - [anon_sym_COMMA] = ACTIONS(1853), - [anon_sym_RBRACE] = ACTIONS(1853), - [anon_sym_typeof] = ACTIONS(1855), - [anon_sym_import] = ACTIONS(1855), - [anon_sym_with] = ACTIONS(1855), - [anon_sym_var] = ACTIONS(1855), - [anon_sym_let] = ACTIONS(1855), - [anon_sym_const] = ACTIONS(1855), - [anon_sym_BANG] = ACTIONS(1853), - [anon_sym_else] = ACTIONS(1855), - [anon_sym_if] = ACTIONS(1855), - [anon_sym_switch] = ACTIONS(1855), - [anon_sym_for] = ACTIONS(1855), - [anon_sym_LPAREN] = ACTIONS(1853), - [anon_sym_SEMI] = ACTIONS(1853), - [anon_sym_await] = ACTIONS(1855), - [anon_sym_while] = ACTIONS(1855), - [anon_sym_do] = ACTIONS(1855), - [anon_sym_try] = ACTIONS(1855), - [anon_sym_break] = ACTIONS(1855), - [anon_sym_continue] = ACTIONS(1855), - [anon_sym_debugger] = ACTIONS(1855), - [anon_sym_return] = ACTIONS(1855), - [anon_sym_throw] = ACTIONS(1855), - [anon_sym_case] = ACTIONS(1855), - [anon_sym_catch] = ACTIONS(1855), - [anon_sym_finally] = ACTIONS(1855), - [anon_sym_yield] = ACTIONS(1855), - [anon_sym_LBRACK] = ACTIONS(1853), - [sym_glimmer_opening_tag] = ACTIONS(1853), - [anon_sym_DQUOTE] = ACTIONS(1853), - [anon_sym_SQUOTE] = ACTIONS(1853), - [anon_sym_class] = ACTIONS(1855), - [anon_sym_async] = ACTIONS(1855), - [anon_sym_function] = ACTIONS(1855), - [anon_sym_new] = ACTIONS(1855), - [anon_sym_using] = ACTIONS(1855), - [anon_sym_PLUS] = ACTIONS(1855), - [anon_sym_DASH] = ACTIONS(1855), - [anon_sym_SLASH] = ACTIONS(1855), - [anon_sym_LT] = ACTIONS(1855), - [anon_sym_TILDE] = ACTIONS(1853), - [anon_sym_void] = ACTIONS(1855), - [anon_sym_delete] = ACTIONS(1855), - [anon_sym_PLUS_PLUS] = ACTIONS(1853), - [anon_sym_DASH_DASH] = ACTIONS(1853), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1853), - [sym_number] = ACTIONS(1853), - [sym_private_property_identifier] = ACTIONS(1853), - [sym_this] = ACTIONS(1855), - [sym_super] = ACTIONS(1855), - [sym_true] = ACTIONS(1855), - [sym_false] = ACTIONS(1855), - [sym_null] = ACTIONS(1855), - [sym_undefined] = ACTIONS(1855), - [anon_sym_AT] = ACTIONS(1853), - [anon_sym_static] = ACTIONS(1855), - [anon_sym_readonly] = ACTIONS(1855), - [anon_sym_get] = ACTIONS(1855), - [anon_sym_set] = ACTIONS(1855), - [anon_sym_declare] = ACTIONS(1855), - [anon_sym_public] = ACTIONS(1855), - [anon_sym_private] = ACTIONS(1855), - [anon_sym_protected] = ACTIONS(1855), - [anon_sym_override] = ACTIONS(1855), - [anon_sym_module] = ACTIONS(1855), - [anon_sym_any] = ACTIONS(1855), - [anon_sym_number] = ACTIONS(1855), - [anon_sym_boolean] = ACTIONS(1855), - [anon_sym_string] = ACTIONS(1855), - [anon_sym_symbol] = ACTIONS(1855), - [anon_sym_object] = ACTIONS(1855), - [anon_sym_abstract] = ACTIONS(1855), - [anon_sym_interface] = ACTIONS(1855), - [anon_sym_enum] = ACTIONS(1855), - [sym__automatic_semicolon] = ACTIONS(2429), + [sym__call_signature] = STATE(5613), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [sym_identifier] = ACTIONS(2414), + [anon_sym_export] = ACTIONS(2416), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2416), + [anon_sym_EQ] = ACTIONS(909), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2416), + [anon_sym_let] = ACTIONS(2416), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2416), + [anon_sym_function] = ACTIONS(2286), + [anon_sym_EQ_GT] = ACTIONS(915), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2416), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_static] = ACTIONS(2416), + [anon_sym_readonly] = ACTIONS(2416), + [anon_sym_get] = ACTIONS(2416), + [anon_sym_set] = ACTIONS(2416), + [anon_sym_declare] = ACTIONS(2416), + [anon_sym_public] = ACTIONS(2416), + [anon_sym_private] = ACTIONS(2416), + [anon_sym_protected] = ACTIONS(2416), + [anon_sym_override] = ACTIONS(2416), + [anon_sym_module] = ACTIONS(2416), + [anon_sym_any] = ACTIONS(2416), + [anon_sym_number] = ACTIONS(2416), + [anon_sym_boolean] = ACTIONS(2416), + [anon_sym_string] = ACTIONS(2416), + [anon_sym_symbol] = ACTIONS(2416), + [anon_sym_object] = ACTIONS(2416), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [718] = { - [sym__call_signature] = STATE(5625), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2431), - [anon_sym_export] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2433), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2433), - [anon_sym_let] = ACTIONS(2433), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2433), - [anon_sym_function] = ACTIONS(2405), - [anon_sym_EQ_GT] = ACTIONS(954), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2433), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2433), - [anon_sym_readonly] = ACTIONS(2433), - [anon_sym_get] = ACTIONS(2433), - [anon_sym_set] = ACTIONS(2433), - [anon_sym_declare] = ACTIONS(2433), - [anon_sym_public] = ACTIONS(2433), - [anon_sym_private] = ACTIONS(2433), - [anon_sym_protected] = ACTIONS(2433), - [anon_sym_override] = ACTIONS(2433), - [anon_sym_module] = ACTIONS(2433), - [anon_sym_any] = ACTIONS(2433), - [anon_sym_number] = ACTIONS(2433), - [anon_sym_boolean] = ACTIONS(2433), - [anon_sym_string] = ACTIONS(2433), - [anon_sym_symbol] = ACTIONS(2433), - [anon_sym_object] = ACTIONS(2433), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5925), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [sym_identifier] = ACTIONS(2418), + [anon_sym_export] = ACTIONS(2420), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2420), + [anon_sym_EQ] = ACTIONS(814), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2420), + [anon_sym_RBRACE] = ACTIONS(158), + [anon_sym_let] = ACTIONS(2420), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2420), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(931), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2420), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_static] = ACTIONS(2420), + [anon_sym_readonly] = ACTIONS(2420), + [anon_sym_get] = ACTIONS(2420), + [anon_sym_set] = ACTIONS(2420), + [anon_sym_declare] = ACTIONS(2420), + [anon_sym_public] = ACTIONS(2420), + [anon_sym_private] = ACTIONS(2420), + [anon_sym_protected] = ACTIONS(2420), + [anon_sym_override] = ACTIONS(2420), + [anon_sym_module] = ACTIONS(2420), + [anon_sym_any] = ACTIONS(2420), + [anon_sym_number] = ACTIONS(2420), + [anon_sym_boolean] = ACTIONS(2420), + [anon_sym_string] = ACTIONS(2420), + [anon_sym_symbol] = ACTIONS(2420), + [anon_sym_object] = ACTIONS(2420), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [719] = { - [sym__call_signature] = STATE(5849), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2421), - [anon_sym_export] = ACTIONS(2423), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2423), - [anon_sym_EQ] = ACTIONS(892), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2423), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_let] = ACTIONS(2423), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(226), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2423), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(901), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2423), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2423), - [anon_sym_readonly] = ACTIONS(2423), - [anon_sym_get] = ACTIONS(2423), - [anon_sym_set] = ACTIONS(2423), - [anon_sym_declare] = ACTIONS(2423), - [anon_sym_public] = ACTIONS(2423), - [anon_sym_private] = ACTIONS(2423), - [anon_sym_protected] = ACTIONS(2423), - [anon_sym_override] = ACTIONS(2423), - [anon_sym_module] = ACTIONS(2423), - [anon_sym_any] = ACTIONS(2423), - [anon_sym_number] = ACTIONS(2423), - [anon_sym_boolean] = ACTIONS(2423), - [anon_sym_string] = ACTIONS(2423), - [anon_sym_symbol] = ACTIONS(2423), - [anon_sym_object] = ACTIONS(2423), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5613), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [sym_identifier] = ACTIONS(2414), + [anon_sym_export] = ACTIONS(2416), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2416), + [anon_sym_EQ] = ACTIONS(909), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2416), + [anon_sym_let] = ACTIONS(2416), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2416), + [anon_sym_function] = ACTIONS(2396), + [anon_sym_EQ_GT] = ACTIONS(915), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2416), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_static] = ACTIONS(2416), + [anon_sym_readonly] = ACTIONS(2416), + [anon_sym_get] = ACTIONS(2416), + [anon_sym_set] = ACTIONS(2416), + [anon_sym_declare] = ACTIONS(2416), + [anon_sym_public] = ACTIONS(2416), + [anon_sym_private] = ACTIONS(2416), + [anon_sym_protected] = ACTIONS(2416), + [anon_sym_override] = ACTIONS(2416), + [anon_sym_module] = ACTIONS(2416), + [anon_sym_any] = ACTIONS(2416), + [anon_sym_number] = ACTIONS(2416), + [anon_sym_boolean] = ACTIONS(2416), + [anon_sym_string] = ACTIONS(2416), + [anon_sym_symbol] = ACTIONS(2416), + [anon_sym_object] = ACTIONS(2416), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [720] = { - [sym__call_signature] = STATE(5625), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2431), - [anon_sym_export] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2433), - [anon_sym_EQ] = ACTIONS(948), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2433), - [anon_sym_let] = ACTIONS(2433), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2433), - [anon_sym_function] = ACTIONS(2295), - [anon_sym_EQ_GT] = ACTIONS(954), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2433), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2433), - [anon_sym_readonly] = ACTIONS(2433), - [anon_sym_get] = ACTIONS(2433), - [anon_sym_set] = ACTIONS(2433), - [anon_sym_declare] = ACTIONS(2433), - [anon_sym_public] = ACTIONS(2433), - [anon_sym_private] = ACTIONS(2433), - [anon_sym_protected] = ACTIONS(2433), - [anon_sym_override] = ACTIONS(2433), - [anon_sym_module] = ACTIONS(2433), - [anon_sym_any] = ACTIONS(2433), - [anon_sym_number] = ACTIONS(2433), - [anon_sym_boolean] = ACTIONS(2433), - [anon_sym_string] = ACTIONS(2433), - [anon_sym_symbol] = ACTIONS(2433), - [anon_sym_object] = ACTIONS(2433), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5925), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [sym_identifier] = ACTIONS(2418), + [anon_sym_export] = ACTIONS(2420), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2420), + [anon_sym_EQ] = ACTIONS(925), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2420), + [anon_sym_RBRACE] = ACTIONS(158), + [anon_sym_let] = ACTIONS(2420), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2420), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(931), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2420), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_static] = ACTIONS(2420), + [anon_sym_readonly] = ACTIONS(2420), + [anon_sym_get] = ACTIONS(2420), + [anon_sym_set] = ACTIONS(2420), + [anon_sym_declare] = ACTIONS(2420), + [anon_sym_public] = ACTIONS(2420), + [anon_sym_private] = ACTIONS(2420), + [anon_sym_protected] = ACTIONS(2420), + [anon_sym_override] = ACTIONS(2420), + [anon_sym_module] = ACTIONS(2420), + [anon_sym_any] = ACTIONS(2420), + [anon_sym_number] = ACTIONS(2420), + [anon_sym_boolean] = ACTIONS(2420), + [anon_sym_string] = ACTIONS(2420), + [anon_sym_symbol] = ACTIONS(2420), + [anon_sym_object] = ACTIONS(2420), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [721] = { - [ts_builtin_sym_end] = ACTIONS(1923), - [sym_identifier] = ACTIONS(1925), - [anon_sym_export] = ACTIONS(1925), - [anon_sym_default] = ACTIONS(1925), - [anon_sym_type] = ACTIONS(1925), - [anon_sym_namespace] = ACTIONS(1925), - [anon_sym_LBRACE] = ACTIONS(1923), - [anon_sym_COMMA] = ACTIONS(1923), - [anon_sym_RBRACE] = ACTIONS(1923), - [anon_sym_typeof] = ACTIONS(1925), - [anon_sym_import] = ACTIONS(1925), - [anon_sym_with] = ACTIONS(1925), - [anon_sym_var] = ACTIONS(1925), - [anon_sym_let] = ACTIONS(1925), - [anon_sym_const] = ACTIONS(1925), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_else] = ACTIONS(1925), - [anon_sym_if] = ACTIONS(1925), - [anon_sym_switch] = ACTIONS(1925), - [anon_sym_for] = ACTIONS(1925), - [anon_sym_LPAREN] = ACTIONS(1923), - [anon_sym_SEMI] = ACTIONS(1923), - [anon_sym_await] = ACTIONS(1925), - [anon_sym_while] = ACTIONS(1925), - [anon_sym_do] = ACTIONS(1925), - [anon_sym_try] = ACTIONS(1925), - [anon_sym_break] = ACTIONS(1925), - [anon_sym_continue] = ACTIONS(1925), - [anon_sym_debugger] = ACTIONS(1925), - [anon_sym_return] = ACTIONS(1925), - [anon_sym_throw] = ACTIONS(1925), - [anon_sym_case] = ACTIONS(1925), - [anon_sym_yield] = ACTIONS(1925), - [anon_sym_LBRACK] = ACTIONS(1923), - [sym_glimmer_opening_tag] = ACTIONS(1923), - [anon_sym_DQUOTE] = ACTIONS(1923), - [anon_sym_SQUOTE] = ACTIONS(1923), - [anon_sym_class] = ACTIONS(1925), - [anon_sym_async] = ACTIONS(1925), - [anon_sym_function] = ACTIONS(1925), - [anon_sym_new] = ACTIONS(1925), - [anon_sym_using] = ACTIONS(1925), - [anon_sym_PLUS] = ACTIONS(1925), - [anon_sym_DASH] = ACTIONS(1925), - [anon_sym_SLASH] = ACTIONS(1925), - [anon_sym_LT] = ACTIONS(1925), - [anon_sym_TILDE] = ACTIONS(1923), - [anon_sym_void] = ACTIONS(1925), - [anon_sym_delete] = ACTIONS(1925), - [anon_sym_PLUS_PLUS] = ACTIONS(1923), - [anon_sym_DASH_DASH] = ACTIONS(1923), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1923), - [sym_number] = ACTIONS(1923), - [sym_private_property_identifier] = ACTIONS(1923), - [sym_this] = ACTIONS(1925), - [sym_super] = ACTIONS(1925), - [sym_true] = ACTIONS(1925), - [sym_false] = ACTIONS(1925), - [sym_null] = ACTIONS(1925), - [sym_undefined] = ACTIONS(1925), - [anon_sym_AT] = ACTIONS(1923), - [anon_sym_static] = ACTIONS(1925), - [anon_sym_readonly] = ACTIONS(1925), - [anon_sym_get] = ACTIONS(1925), - [anon_sym_set] = ACTIONS(1925), - [anon_sym_declare] = ACTIONS(1925), - [anon_sym_public] = ACTIONS(1925), - [anon_sym_private] = ACTIONS(1925), - [anon_sym_protected] = ACTIONS(1925), - [anon_sym_override] = ACTIONS(1925), - [anon_sym_module] = ACTIONS(1925), - [anon_sym_any] = ACTIONS(1925), - [anon_sym_number] = ACTIONS(1925), - [anon_sym_boolean] = ACTIONS(1925), - [anon_sym_string] = ACTIONS(1925), - [anon_sym_symbol] = ACTIONS(1925), - [anon_sym_object] = ACTIONS(1925), - [anon_sym_abstract] = ACTIONS(1925), - [anon_sym_interface] = ACTIONS(1925), - [anon_sym_enum] = ACTIONS(1925), - [anon_sym_PIPE_RBRACE] = ACTIONS(1923), - [sym__automatic_semicolon] = ACTIONS(1923), + [sym__call_signature] = STATE(5613), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [sym_identifier] = ACTIONS(2414), + [anon_sym_export] = ACTIONS(2416), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2416), + [anon_sym_EQ] = ACTIONS(909), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2416), + [anon_sym_let] = ACTIONS(2416), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2416), + [anon_sym_function] = ACTIONS(2422), + [anon_sym_EQ_GT] = ACTIONS(915), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2416), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_static] = ACTIONS(2416), + [anon_sym_readonly] = ACTIONS(2416), + [anon_sym_get] = ACTIONS(2416), + [anon_sym_set] = ACTIONS(2416), + [anon_sym_declare] = ACTIONS(2416), + [anon_sym_public] = ACTIONS(2416), + [anon_sym_private] = ACTIONS(2416), + [anon_sym_protected] = ACTIONS(2416), + [anon_sym_override] = ACTIONS(2416), + [anon_sym_module] = ACTIONS(2416), + [anon_sym_any] = ACTIONS(2416), + [anon_sym_number] = ACTIONS(2416), + [anon_sym_boolean] = ACTIONS(2416), + [anon_sym_string] = ACTIONS(2416), + [anon_sym_symbol] = ACTIONS(2416), + [anon_sym_object] = ACTIONS(2416), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [722] = { - [ts_builtin_sym_end] = ACTIONS(1739), - [sym_identifier] = ACTIONS(1741), - [anon_sym_export] = ACTIONS(1741), - [anon_sym_default] = ACTIONS(1741), - [anon_sym_type] = ACTIONS(1741), - [anon_sym_namespace] = ACTIONS(1741), - [anon_sym_LBRACE] = ACTIONS(1739), - [anon_sym_COMMA] = ACTIONS(1739), - [anon_sym_RBRACE] = ACTIONS(1739), - [anon_sym_typeof] = ACTIONS(1741), - [anon_sym_import] = ACTIONS(1741), - [anon_sym_with] = ACTIONS(1741), - [anon_sym_var] = ACTIONS(1741), - [anon_sym_let] = ACTIONS(1741), - [anon_sym_const] = ACTIONS(1741), - [anon_sym_BANG] = ACTIONS(1739), - [anon_sym_else] = ACTIONS(1741), - [anon_sym_if] = ACTIONS(1741), - [anon_sym_switch] = ACTIONS(1741), - [anon_sym_for] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1739), - [anon_sym_SEMI] = ACTIONS(1739), - [anon_sym_await] = ACTIONS(1741), - [anon_sym_while] = ACTIONS(1741), - [anon_sym_do] = ACTIONS(1741), - [anon_sym_try] = ACTIONS(1741), - [anon_sym_break] = ACTIONS(1741), - [anon_sym_continue] = ACTIONS(1741), - [anon_sym_debugger] = ACTIONS(1741), - [anon_sym_return] = ACTIONS(1741), - [anon_sym_throw] = ACTIONS(1741), - [anon_sym_case] = ACTIONS(1741), - [anon_sym_yield] = ACTIONS(1741), - [anon_sym_LBRACK] = ACTIONS(1739), - [sym_glimmer_opening_tag] = ACTIONS(1739), - [anon_sym_DQUOTE] = ACTIONS(1739), - [anon_sym_SQUOTE] = ACTIONS(1739), - [anon_sym_class] = ACTIONS(1741), - [anon_sym_async] = ACTIONS(1741), - [anon_sym_function] = ACTIONS(1741), - [anon_sym_new] = ACTIONS(1741), - [anon_sym_using] = ACTIONS(1741), - [anon_sym_PLUS] = ACTIONS(1741), - [anon_sym_DASH] = ACTIONS(1741), - [anon_sym_SLASH] = ACTIONS(1741), - [anon_sym_LT] = ACTIONS(1741), - [anon_sym_TILDE] = ACTIONS(1739), - [anon_sym_void] = ACTIONS(1741), - [anon_sym_delete] = ACTIONS(1741), - [anon_sym_PLUS_PLUS] = ACTIONS(1739), - [anon_sym_DASH_DASH] = ACTIONS(1739), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1739), - [sym_number] = ACTIONS(1739), - [sym_private_property_identifier] = ACTIONS(1739), - [sym_this] = ACTIONS(1741), - [sym_super] = ACTIONS(1741), - [sym_true] = ACTIONS(1741), - [sym_false] = ACTIONS(1741), - [sym_null] = ACTIONS(1741), - [sym_undefined] = ACTIONS(1741), - [anon_sym_AT] = ACTIONS(1739), - [anon_sym_static] = ACTIONS(1741), - [anon_sym_readonly] = ACTIONS(1741), - [anon_sym_get] = ACTIONS(1741), - [anon_sym_set] = ACTIONS(1741), - [anon_sym_declare] = ACTIONS(1741), - [anon_sym_public] = ACTIONS(1741), - [anon_sym_private] = ACTIONS(1741), - [anon_sym_protected] = ACTIONS(1741), - [anon_sym_override] = ACTIONS(1741), - [anon_sym_module] = ACTIONS(1741), - [anon_sym_any] = ACTIONS(1741), - [anon_sym_number] = ACTIONS(1741), - [anon_sym_boolean] = ACTIONS(1741), - [anon_sym_string] = ACTIONS(1741), - [anon_sym_symbol] = ACTIONS(1741), - [anon_sym_object] = ACTIONS(1741), - [anon_sym_abstract] = ACTIONS(1741), - [anon_sym_interface] = ACTIONS(1741), - [anon_sym_enum] = ACTIONS(1741), - [anon_sym_PIPE_RBRACE] = ACTIONS(1739), - [sym__automatic_semicolon] = ACTIONS(1739), + [sym__call_signature] = STATE(5613), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [sym_identifier] = ACTIONS(2414), + [anon_sym_export] = ACTIONS(2416), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2416), + [anon_sym_EQ] = ACTIONS(814), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2416), + [anon_sym_let] = ACTIONS(2416), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2416), + [anon_sym_function] = ACTIONS(2396), + [anon_sym_EQ_GT] = ACTIONS(915), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2416), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_static] = ACTIONS(2416), + [anon_sym_readonly] = ACTIONS(2416), + [anon_sym_get] = ACTIONS(2416), + [anon_sym_set] = ACTIONS(2416), + [anon_sym_declare] = ACTIONS(2416), + [anon_sym_public] = ACTIONS(2416), + [anon_sym_private] = ACTIONS(2416), + [anon_sym_protected] = ACTIONS(2416), + [anon_sym_override] = ACTIONS(2416), + [anon_sym_module] = ACTIONS(2416), + [anon_sym_any] = ACTIONS(2416), + [anon_sym_number] = ACTIONS(2416), + [anon_sym_boolean] = ACTIONS(2416), + [anon_sym_string] = ACTIONS(2416), + [anon_sym_symbol] = ACTIONS(2416), + [anon_sym_object] = ACTIONS(2416), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [723] = { - [sym__call_signature] = STATE(5849), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2421), - [anon_sym_export] = ACTIONS(2423), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2423), - [anon_sym_EQ] = ACTIONS(928), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2423), - [anon_sym_let] = ACTIONS(2423), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(897), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2423), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(901), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2423), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2423), - [anon_sym_readonly] = ACTIONS(2423), - [anon_sym_get] = ACTIONS(2423), - [anon_sym_set] = ACTIONS(2423), - [anon_sym_declare] = ACTIONS(2423), - [anon_sym_public] = ACTIONS(2423), - [anon_sym_private] = ACTIONS(2423), - [anon_sym_protected] = ACTIONS(2423), - [anon_sym_override] = ACTIONS(2423), - [anon_sym_module] = ACTIONS(2423), - [anon_sym_any] = ACTIONS(2423), - [anon_sym_number] = ACTIONS(2423), - [anon_sym_boolean] = ACTIONS(2423), - [anon_sym_string] = ACTIONS(2423), - [anon_sym_symbol] = ACTIONS(2423), - [anon_sym_object] = ACTIONS(2423), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5613), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [sym_identifier] = ACTIONS(2414), + [anon_sym_export] = ACTIONS(2416), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2416), + [anon_sym_EQ] = ACTIONS(909), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2416), + [anon_sym_let] = ACTIONS(2416), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2416), + [anon_sym_function] = ACTIONS(2402), + [anon_sym_EQ_GT] = ACTIONS(915), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2416), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_static] = ACTIONS(2416), + [anon_sym_readonly] = ACTIONS(2416), + [anon_sym_get] = ACTIONS(2416), + [anon_sym_set] = ACTIONS(2416), + [anon_sym_declare] = ACTIONS(2416), + [anon_sym_public] = ACTIONS(2416), + [anon_sym_private] = ACTIONS(2416), + [anon_sym_protected] = ACTIONS(2416), + [anon_sym_override] = ACTIONS(2416), + [anon_sym_module] = ACTIONS(2416), + [anon_sym_any] = ACTIONS(2416), + [anon_sym_number] = ACTIONS(2416), + [anon_sym_boolean] = ACTIONS(2416), + [anon_sym_string] = ACTIONS(2416), + [anon_sym_symbol] = ACTIONS(2416), + [anon_sym_object] = ACTIONS(2416), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [724] = { - [ts_builtin_sym_end] = ACTIONS(1853), - [sym_identifier] = ACTIONS(1855), - [anon_sym_export] = ACTIONS(1855), - [anon_sym_default] = ACTIONS(1855), - [anon_sym_type] = ACTIONS(1855), - [anon_sym_namespace] = ACTIONS(1855), - [anon_sym_LBRACE] = ACTIONS(1853), - [anon_sym_COMMA] = ACTIONS(1853), - [anon_sym_RBRACE] = ACTIONS(1853), - [anon_sym_typeof] = ACTIONS(1855), - [anon_sym_import] = ACTIONS(1855), - [anon_sym_with] = ACTIONS(1855), - [anon_sym_var] = ACTIONS(1855), - [anon_sym_let] = ACTIONS(1855), - [anon_sym_const] = ACTIONS(1855), - [anon_sym_BANG] = ACTIONS(1853), - [anon_sym_else] = ACTIONS(1855), - [anon_sym_if] = ACTIONS(1855), - [anon_sym_switch] = ACTIONS(1855), - [anon_sym_for] = ACTIONS(1855), - [anon_sym_LPAREN] = ACTIONS(1853), - [anon_sym_SEMI] = ACTIONS(1853), - [anon_sym_await] = ACTIONS(1855), - [anon_sym_while] = ACTIONS(1855), - [anon_sym_do] = ACTIONS(1855), - [anon_sym_try] = ACTIONS(1855), - [anon_sym_break] = ACTIONS(1855), - [anon_sym_continue] = ACTIONS(1855), - [anon_sym_debugger] = ACTIONS(1855), - [anon_sym_return] = ACTIONS(1855), - [anon_sym_throw] = ACTIONS(1855), - [anon_sym_case] = ACTIONS(1855), - [anon_sym_yield] = ACTIONS(1855), - [anon_sym_LBRACK] = ACTIONS(1853), - [sym_glimmer_opening_tag] = ACTIONS(1853), - [anon_sym_DQUOTE] = ACTIONS(1853), - [anon_sym_SQUOTE] = ACTIONS(1853), - [anon_sym_class] = ACTIONS(1855), - [anon_sym_async] = ACTIONS(1855), - [anon_sym_function] = ACTIONS(1855), - [anon_sym_new] = ACTIONS(1855), - [anon_sym_using] = ACTIONS(1855), - [anon_sym_PLUS] = ACTIONS(1855), - [anon_sym_DASH] = ACTIONS(1855), - [anon_sym_SLASH] = ACTIONS(1855), - [anon_sym_LT] = ACTIONS(1855), - [anon_sym_TILDE] = ACTIONS(1853), - [anon_sym_void] = ACTIONS(1855), - [anon_sym_delete] = ACTIONS(1855), - [anon_sym_PLUS_PLUS] = ACTIONS(1853), - [anon_sym_DASH_DASH] = ACTIONS(1853), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1853), - [sym_number] = ACTIONS(1853), - [sym_private_property_identifier] = ACTIONS(1853), - [sym_this] = ACTIONS(1855), - [sym_super] = ACTIONS(1855), - [sym_true] = ACTIONS(1855), - [sym_false] = ACTIONS(1855), - [sym_null] = ACTIONS(1855), - [sym_undefined] = ACTIONS(1855), - [anon_sym_AT] = ACTIONS(1853), - [anon_sym_static] = ACTIONS(1855), - [anon_sym_readonly] = ACTIONS(1855), - [anon_sym_get] = ACTIONS(1855), - [anon_sym_set] = ACTIONS(1855), - [anon_sym_declare] = ACTIONS(1855), - [anon_sym_public] = ACTIONS(1855), - [anon_sym_private] = ACTIONS(1855), - [anon_sym_protected] = ACTIONS(1855), - [anon_sym_override] = ACTIONS(1855), - [anon_sym_module] = ACTIONS(1855), - [anon_sym_any] = ACTIONS(1855), - [anon_sym_number] = ACTIONS(1855), - [anon_sym_boolean] = ACTIONS(1855), - [anon_sym_string] = ACTIONS(1855), - [anon_sym_symbol] = ACTIONS(1855), - [anon_sym_object] = ACTIONS(1855), - [anon_sym_abstract] = ACTIONS(1855), - [anon_sym_interface] = ACTIONS(1855), - [anon_sym_enum] = ACTIONS(1855), - [anon_sym_PIPE_RBRACE] = ACTIONS(1853), - [sym__automatic_semicolon] = ACTIONS(1853), + [sym__call_signature] = STATE(5770), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [sym_identifier] = ACTIONS(2408), + [anon_sym_export] = ACTIONS(2410), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2410), + [anon_sym_EQ] = ACTIONS(890), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2410), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_let] = ACTIONS(2410), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_RBRACK] = ACTIONS(126), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2410), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(899), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2410), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_static] = ACTIONS(2410), + [anon_sym_readonly] = ACTIONS(2410), + [anon_sym_get] = ACTIONS(2410), + [anon_sym_set] = ACTIONS(2410), + [anon_sym_declare] = ACTIONS(2410), + [anon_sym_public] = ACTIONS(2410), + [anon_sym_private] = ACTIONS(2410), + [anon_sym_protected] = ACTIONS(2410), + [anon_sym_override] = ACTIONS(2410), + [anon_sym_module] = ACTIONS(2410), + [anon_sym_any] = ACTIONS(2410), + [anon_sym_number] = ACTIONS(2410), + [anon_sym_boolean] = ACTIONS(2410), + [anon_sym_string] = ACTIONS(2410), + [anon_sym_symbol] = ACTIONS(2410), + [anon_sym_object] = ACTIONS(2410), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [725] = { - [ts_builtin_sym_end] = ACTIONS(1702), - [sym_identifier] = ACTIONS(1704), - [anon_sym_export] = ACTIONS(1704), - [anon_sym_default] = ACTIONS(1704), - [anon_sym_type] = ACTIONS(1704), - [anon_sym_namespace] = ACTIONS(1704), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_COMMA] = ACTIONS(1702), - [anon_sym_RBRACE] = ACTIONS(1702), - [anon_sym_typeof] = ACTIONS(1704), - [anon_sym_import] = ACTIONS(1704), - [anon_sym_with] = ACTIONS(1704), - [anon_sym_var] = ACTIONS(1704), - [anon_sym_let] = ACTIONS(1704), - [anon_sym_const] = ACTIONS(1704), - [anon_sym_BANG] = ACTIONS(1702), - [anon_sym_else] = ACTIONS(1704), - [anon_sym_if] = ACTIONS(1704), - [anon_sym_switch] = ACTIONS(1704), - [anon_sym_for] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(1702), - [anon_sym_SEMI] = ACTIONS(1702), - [anon_sym_await] = ACTIONS(1704), - [anon_sym_while] = ACTIONS(1704), - [anon_sym_do] = ACTIONS(1704), - [anon_sym_try] = ACTIONS(1704), - [anon_sym_break] = ACTIONS(1704), - [anon_sym_continue] = ACTIONS(1704), - [anon_sym_debugger] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1704), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_case] = ACTIONS(1704), - [anon_sym_yield] = ACTIONS(1704), - [anon_sym_LBRACK] = ACTIONS(1702), - [sym_glimmer_opening_tag] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1702), - [anon_sym_SQUOTE] = ACTIONS(1702), - [anon_sym_class] = ACTIONS(1704), - [anon_sym_async] = ACTIONS(1704), - [anon_sym_function] = ACTIONS(1704), - [anon_sym_new] = ACTIONS(1704), - [anon_sym_using] = ACTIONS(1704), - [anon_sym_PLUS] = ACTIONS(1704), - [anon_sym_DASH] = ACTIONS(1704), - [anon_sym_SLASH] = ACTIONS(1704), - [anon_sym_LT] = ACTIONS(1704), - [anon_sym_TILDE] = ACTIONS(1702), - [anon_sym_void] = ACTIONS(1704), - [anon_sym_delete] = ACTIONS(1704), - [anon_sym_PLUS_PLUS] = ACTIONS(1702), - [anon_sym_DASH_DASH] = ACTIONS(1702), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1702), - [sym_number] = ACTIONS(1702), - [sym_private_property_identifier] = ACTIONS(1702), - [sym_this] = ACTIONS(1704), - [sym_super] = ACTIONS(1704), - [sym_true] = ACTIONS(1704), - [sym_false] = ACTIONS(1704), - [sym_null] = ACTIONS(1704), - [sym_undefined] = ACTIONS(1704), - [anon_sym_AT] = ACTIONS(1702), - [anon_sym_static] = ACTIONS(1704), - [anon_sym_readonly] = ACTIONS(1704), - [anon_sym_get] = ACTIONS(1704), - [anon_sym_set] = ACTIONS(1704), - [anon_sym_declare] = ACTIONS(1704), - [anon_sym_public] = ACTIONS(1704), - [anon_sym_private] = ACTIONS(1704), - [anon_sym_protected] = ACTIONS(1704), - [anon_sym_override] = ACTIONS(1704), - [anon_sym_module] = ACTIONS(1704), - [anon_sym_any] = ACTIONS(1704), - [anon_sym_number] = ACTIONS(1704), - [anon_sym_boolean] = ACTIONS(1704), - [anon_sym_string] = ACTIONS(1704), - [anon_sym_symbol] = ACTIONS(1704), - [anon_sym_object] = ACTIONS(1704), - [anon_sym_abstract] = ACTIONS(1704), - [anon_sym_interface] = ACTIONS(1704), - [anon_sym_enum] = ACTIONS(1704), - [anon_sym_PIPE_RBRACE] = ACTIONS(1702), - [sym__automatic_semicolon] = ACTIONS(2435), + [ts_builtin_sym_end] = ACTIONS(1659), + [sym_identifier] = ACTIONS(1661), + [anon_sym_export] = ACTIONS(1661), + [anon_sym_default] = ACTIONS(1661), + [anon_sym_type] = ACTIONS(1661), + [anon_sym_namespace] = ACTIONS(1661), + [anon_sym_LBRACE] = ACTIONS(1659), + [anon_sym_COMMA] = ACTIONS(1659), + [anon_sym_RBRACE] = ACTIONS(1659), + [anon_sym_typeof] = ACTIONS(1661), + [anon_sym_import] = ACTIONS(1661), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_var] = ACTIONS(1661), + [anon_sym_let] = ACTIONS(1661), + [anon_sym_const] = ACTIONS(1661), + [anon_sym_BANG] = ACTIONS(1659), + [anon_sym_else] = ACTIONS(1661), + [anon_sym_if] = ACTIONS(1661), + [anon_sym_switch] = ACTIONS(1661), + [anon_sym_for] = ACTIONS(1661), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_SEMI] = ACTIONS(1659), + [anon_sym_await] = ACTIONS(1661), + [anon_sym_while] = ACTIONS(1661), + [anon_sym_do] = ACTIONS(1661), + [anon_sym_try] = ACTIONS(1661), + [anon_sym_break] = ACTIONS(1661), + [anon_sym_continue] = ACTIONS(1661), + [anon_sym_debugger] = ACTIONS(1661), + [anon_sym_return] = ACTIONS(1661), + [anon_sym_throw] = ACTIONS(1661), + [anon_sym_case] = ACTIONS(1661), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_finally] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1661), + [anon_sym_LBRACK] = ACTIONS(1659), + [anon_sym_DQUOTE] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1659), + [anon_sym_class] = ACTIONS(1661), + [anon_sym_async] = ACTIONS(1661), + [anon_sym_function] = ACTIONS(1661), + [anon_sym_new] = ACTIONS(1661), + [anon_sym_using] = ACTIONS(1661), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1661), + [anon_sym_SLASH] = ACTIONS(1661), + [anon_sym_LT] = ACTIONS(1659), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_void] = ACTIONS(1661), + [anon_sym_delete] = ACTIONS(1661), + [anon_sym_PLUS_PLUS] = ACTIONS(1659), + [anon_sym_DASH_DASH] = ACTIONS(1659), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1659), + [sym_number] = ACTIONS(1659), + [sym_private_property_identifier] = ACTIONS(1659), + [sym_this] = ACTIONS(1661), + [sym_super] = ACTIONS(1661), + [sym_true] = ACTIONS(1661), + [sym_false] = ACTIONS(1661), + [sym_null] = ACTIONS(1661), + [sym_undefined] = ACTIONS(1661), + [anon_sym_AT] = ACTIONS(1659), + [anon_sym_static] = ACTIONS(1661), + [anon_sym_readonly] = ACTIONS(1661), + [anon_sym_get] = ACTIONS(1661), + [anon_sym_set] = ACTIONS(1661), + [anon_sym_declare] = ACTIONS(1661), + [anon_sym_public] = ACTIONS(1661), + [anon_sym_private] = ACTIONS(1661), + [anon_sym_protected] = ACTIONS(1661), + [anon_sym_override] = ACTIONS(1661), + [anon_sym_module] = ACTIONS(1661), + [anon_sym_any] = ACTIONS(1661), + [anon_sym_number] = ACTIONS(1661), + [anon_sym_boolean] = ACTIONS(1661), + [anon_sym_string] = ACTIONS(1661), + [anon_sym_symbol] = ACTIONS(1661), + [anon_sym_object] = ACTIONS(1661), + [anon_sym_abstract] = ACTIONS(1661), + [anon_sym_interface] = ACTIONS(1661), + [anon_sym_enum] = ACTIONS(1661), + [sym__automatic_semicolon] = ACTIONS(1669), [sym_html_comment] = ACTIONS(5), }, [726] = { - [ts_builtin_sym_end] = ACTIONS(1735), - [sym_identifier] = ACTIONS(1737), - [anon_sym_export] = ACTIONS(1737), - [anon_sym_default] = ACTIONS(1737), - [anon_sym_type] = ACTIONS(1737), - [anon_sym_namespace] = ACTIONS(1737), - [anon_sym_LBRACE] = ACTIONS(1735), - [anon_sym_COMMA] = ACTIONS(1735), - [anon_sym_RBRACE] = ACTIONS(1735), - [anon_sym_typeof] = ACTIONS(1737), - [anon_sym_import] = ACTIONS(1737), - [anon_sym_with] = ACTIONS(1737), - [anon_sym_var] = ACTIONS(1737), - [anon_sym_let] = ACTIONS(1737), - [anon_sym_const] = ACTIONS(1737), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_else] = ACTIONS(1737), - [anon_sym_if] = ACTIONS(1737), - [anon_sym_switch] = ACTIONS(1737), - [anon_sym_for] = ACTIONS(1737), - [anon_sym_LPAREN] = ACTIONS(1735), - [anon_sym_SEMI] = ACTIONS(1735), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_while] = ACTIONS(1737), - [anon_sym_do] = ACTIONS(1737), - [anon_sym_try] = ACTIONS(1737), - [anon_sym_break] = ACTIONS(1737), - [anon_sym_continue] = ACTIONS(1737), - [anon_sym_debugger] = ACTIONS(1737), - [anon_sym_return] = ACTIONS(1737), - [anon_sym_throw] = ACTIONS(1737), - [anon_sym_case] = ACTIONS(1737), - [anon_sym_yield] = ACTIONS(1737), - [anon_sym_LBRACK] = ACTIONS(1735), - [sym_glimmer_opening_tag] = ACTIONS(1735), - [anon_sym_DQUOTE] = ACTIONS(1735), - [anon_sym_SQUOTE] = ACTIONS(1735), - [anon_sym_class] = ACTIONS(1737), - [anon_sym_async] = ACTIONS(1737), - [anon_sym_function] = ACTIONS(1737), - [anon_sym_new] = ACTIONS(1737), - [anon_sym_using] = ACTIONS(1737), - [anon_sym_PLUS] = ACTIONS(1737), - [anon_sym_DASH] = ACTIONS(1737), - [anon_sym_SLASH] = ACTIONS(1737), - [anon_sym_LT] = ACTIONS(1737), - [anon_sym_TILDE] = ACTIONS(1735), - [anon_sym_void] = ACTIONS(1737), - [anon_sym_delete] = ACTIONS(1737), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_DASH_DASH] = ACTIONS(1735), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1735), - [sym_number] = ACTIONS(1735), - [sym_private_property_identifier] = ACTIONS(1735), - [sym_this] = ACTIONS(1737), - [sym_super] = ACTIONS(1737), - [sym_true] = ACTIONS(1737), - [sym_false] = ACTIONS(1737), - [sym_null] = ACTIONS(1737), - [sym_undefined] = ACTIONS(1737), - [anon_sym_AT] = ACTIONS(1735), - [anon_sym_static] = ACTIONS(1737), - [anon_sym_readonly] = ACTIONS(1737), - [anon_sym_get] = ACTIONS(1737), - [anon_sym_set] = ACTIONS(1737), - [anon_sym_declare] = ACTIONS(1737), - [anon_sym_public] = ACTIONS(1737), - [anon_sym_private] = ACTIONS(1737), - [anon_sym_protected] = ACTIONS(1737), - [anon_sym_override] = ACTIONS(1737), - [anon_sym_module] = ACTIONS(1737), - [anon_sym_any] = ACTIONS(1737), - [anon_sym_number] = ACTIONS(1737), - [anon_sym_boolean] = ACTIONS(1737), - [anon_sym_string] = ACTIONS(1737), - [anon_sym_symbol] = ACTIONS(1737), - [anon_sym_object] = ACTIONS(1737), - [anon_sym_abstract] = ACTIONS(1737), - [anon_sym_interface] = ACTIONS(1737), - [anon_sym_enum] = ACTIONS(1737), - [anon_sym_PIPE_RBRACE] = ACTIONS(1735), - [sym__automatic_semicolon] = ACTIONS(1735), + [sym__call_signature] = STATE(5770), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [sym_identifier] = ACTIONS(2408), + [anon_sym_export] = ACTIONS(2410), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2410), + [anon_sym_EQ] = ACTIONS(903), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2410), + [anon_sym_let] = ACTIONS(2410), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(895), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_RBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2410), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(899), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2410), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_static] = ACTIONS(2410), + [anon_sym_readonly] = ACTIONS(2410), + [anon_sym_get] = ACTIONS(2410), + [anon_sym_set] = ACTIONS(2410), + [anon_sym_declare] = ACTIONS(2410), + [anon_sym_public] = ACTIONS(2410), + [anon_sym_private] = ACTIONS(2410), + [anon_sym_protected] = ACTIONS(2410), + [anon_sym_override] = ACTIONS(2410), + [anon_sym_module] = ACTIONS(2410), + [anon_sym_any] = ACTIONS(2410), + [anon_sym_number] = ACTIONS(2410), + [anon_sym_boolean] = ACTIONS(2410), + [anon_sym_string] = ACTIONS(2410), + [anon_sym_symbol] = ACTIONS(2410), + [anon_sym_object] = ACTIONS(2410), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [727] = { - [ts_builtin_sym_end] = ACTIONS(1853), - [sym_identifier] = ACTIONS(1855), - [anon_sym_export] = ACTIONS(1855), - [anon_sym_default] = ACTIONS(1855), - [anon_sym_type] = ACTIONS(1855), - [anon_sym_namespace] = ACTIONS(1855), - [anon_sym_LBRACE] = ACTIONS(1853), - [anon_sym_COMMA] = ACTIONS(1853), - [anon_sym_RBRACE] = ACTIONS(1853), - [anon_sym_typeof] = ACTIONS(1855), - [anon_sym_import] = ACTIONS(1855), - [anon_sym_with] = ACTIONS(1855), - [anon_sym_var] = ACTIONS(1855), - [anon_sym_let] = ACTIONS(1855), - [anon_sym_const] = ACTIONS(1855), - [anon_sym_BANG] = ACTIONS(1853), - [anon_sym_else] = ACTIONS(1855), - [anon_sym_if] = ACTIONS(1855), - [anon_sym_switch] = ACTIONS(1855), - [anon_sym_for] = ACTIONS(1855), - [anon_sym_LPAREN] = ACTIONS(1853), - [anon_sym_SEMI] = ACTIONS(1853), - [anon_sym_await] = ACTIONS(1855), - [anon_sym_while] = ACTIONS(1855), - [anon_sym_do] = ACTIONS(1855), - [anon_sym_try] = ACTIONS(1855), - [anon_sym_break] = ACTIONS(1855), - [anon_sym_continue] = ACTIONS(1855), - [anon_sym_debugger] = ACTIONS(1855), - [anon_sym_return] = ACTIONS(1855), - [anon_sym_throw] = ACTIONS(1855), - [anon_sym_case] = ACTIONS(1855), - [anon_sym_yield] = ACTIONS(1855), - [anon_sym_LBRACK] = ACTIONS(1853), - [sym_glimmer_opening_tag] = ACTIONS(1853), - [anon_sym_DQUOTE] = ACTIONS(1853), - [anon_sym_SQUOTE] = ACTIONS(1853), - [anon_sym_class] = ACTIONS(1855), - [anon_sym_async] = ACTIONS(1855), - [anon_sym_function] = ACTIONS(1855), - [anon_sym_new] = ACTIONS(1855), - [anon_sym_using] = ACTIONS(1855), - [anon_sym_PLUS] = ACTIONS(1855), - [anon_sym_DASH] = ACTIONS(1855), - [anon_sym_SLASH] = ACTIONS(1855), - [anon_sym_LT] = ACTIONS(1855), - [anon_sym_TILDE] = ACTIONS(1853), - [anon_sym_void] = ACTIONS(1855), - [anon_sym_delete] = ACTIONS(1855), - [anon_sym_PLUS_PLUS] = ACTIONS(1853), - [anon_sym_DASH_DASH] = ACTIONS(1853), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1853), - [sym_number] = ACTIONS(1853), - [sym_private_property_identifier] = ACTIONS(1853), - [sym_this] = ACTIONS(1855), - [sym_super] = ACTIONS(1855), - [sym_true] = ACTIONS(1855), - [sym_false] = ACTIONS(1855), - [sym_null] = ACTIONS(1855), - [sym_undefined] = ACTIONS(1855), - [anon_sym_AT] = ACTIONS(1853), - [anon_sym_static] = ACTIONS(1855), - [anon_sym_readonly] = ACTIONS(1855), - [anon_sym_get] = ACTIONS(1855), - [anon_sym_set] = ACTIONS(1855), - [anon_sym_declare] = ACTIONS(1855), - [anon_sym_public] = ACTIONS(1855), - [anon_sym_private] = ACTIONS(1855), - [anon_sym_protected] = ACTIONS(1855), - [anon_sym_override] = ACTIONS(1855), - [anon_sym_module] = ACTIONS(1855), - [anon_sym_any] = ACTIONS(1855), - [anon_sym_number] = ACTIONS(1855), - [anon_sym_boolean] = ACTIONS(1855), - [anon_sym_string] = ACTIONS(1855), - [anon_sym_symbol] = ACTIONS(1855), - [anon_sym_object] = ACTIONS(1855), - [anon_sym_abstract] = ACTIONS(1855), - [anon_sym_interface] = ACTIONS(1855), - [anon_sym_enum] = ACTIONS(1855), - [anon_sym_PIPE_RBRACE] = ACTIONS(1853), - [sym__automatic_semicolon] = ACTIONS(2437), + [sym_catch_clause] = STATE(742), + [sym_finally_clause] = STATE(863), + [ts_builtin_sym_end] = ACTIONS(2424), + [sym_identifier] = ACTIONS(2426), + [anon_sym_export] = ACTIONS(2426), + [anon_sym_default] = ACTIONS(2426), + [anon_sym_type] = ACTIONS(2426), + [anon_sym_namespace] = ACTIONS(2426), + [anon_sym_LBRACE] = ACTIONS(2424), + [anon_sym_RBRACE] = ACTIONS(2424), + [anon_sym_typeof] = ACTIONS(2426), + [anon_sym_import] = ACTIONS(2426), + [anon_sym_with] = ACTIONS(2426), + [anon_sym_var] = ACTIONS(2426), + [anon_sym_let] = ACTIONS(2426), + [anon_sym_const] = ACTIONS(2426), + [anon_sym_BANG] = ACTIONS(2424), + [anon_sym_else] = ACTIONS(2426), + [anon_sym_if] = ACTIONS(2426), + [anon_sym_switch] = ACTIONS(2426), + [anon_sym_for] = ACTIONS(2426), + [anon_sym_LPAREN] = ACTIONS(2424), + [anon_sym_SEMI] = ACTIONS(2424), + [anon_sym_await] = ACTIONS(2426), + [anon_sym_while] = ACTIONS(2426), + [anon_sym_do] = ACTIONS(2426), + [anon_sym_try] = ACTIONS(2426), + [anon_sym_break] = ACTIONS(2426), + [anon_sym_continue] = ACTIONS(2426), + [anon_sym_debugger] = ACTIONS(2426), + [anon_sym_return] = ACTIONS(2426), + [anon_sym_throw] = ACTIONS(2426), + [anon_sym_case] = ACTIONS(2426), + [anon_sym_catch] = ACTIONS(2428), + [anon_sym_finally] = ACTIONS(2430), + [anon_sym_yield] = ACTIONS(2426), + [anon_sym_LBRACK] = ACTIONS(2424), + [anon_sym_DQUOTE] = ACTIONS(2424), + [anon_sym_SQUOTE] = ACTIONS(2424), + [anon_sym_class] = ACTIONS(2426), + [anon_sym_async] = ACTIONS(2426), + [anon_sym_function] = ACTIONS(2426), + [anon_sym_new] = ACTIONS(2426), + [anon_sym_using] = ACTIONS(2426), + [anon_sym_PLUS] = ACTIONS(2426), + [anon_sym_DASH] = ACTIONS(2426), + [anon_sym_SLASH] = ACTIONS(2426), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_TILDE] = ACTIONS(2424), + [anon_sym_void] = ACTIONS(2426), + [anon_sym_delete] = ACTIONS(2426), + [anon_sym_PLUS_PLUS] = ACTIONS(2424), + [anon_sym_DASH_DASH] = ACTIONS(2424), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2424), + [sym_number] = ACTIONS(2424), + [sym_private_property_identifier] = ACTIONS(2424), + [sym_this] = ACTIONS(2426), + [sym_super] = ACTIONS(2426), + [sym_true] = ACTIONS(2426), + [sym_false] = ACTIONS(2426), + [sym_null] = ACTIONS(2426), + [sym_undefined] = ACTIONS(2426), + [anon_sym_AT] = ACTIONS(2424), + [anon_sym_static] = ACTIONS(2426), + [anon_sym_readonly] = ACTIONS(2426), + [anon_sym_get] = ACTIONS(2426), + [anon_sym_set] = ACTIONS(2426), + [anon_sym_declare] = ACTIONS(2426), + [anon_sym_public] = ACTIONS(2426), + [anon_sym_private] = ACTIONS(2426), + [anon_sym_protected] = ACTIONS(2426), + [anon_sym_override] = ACTIONS(2426), + [anon_sym_module] = ACTIONS(2426), + [anon_sym_any] = ACTIONS(2426), + [anon_sym_number] = ACTIONS(2426), + [anon_sym_boolean] = ACTIONS(2426), + [anon_sym_string] = ACTIONS(2426), + [anon_sym_symbol] = ACTIONS(2426), + [anon_sym_object] = ACTIONS(2426), + [anon_sym_abstract] = ACTIONS(2426), + [anon_sym_interface] = ACTIONS(2426), + [anon_sym_enum] = ACTIONS(2426), [sym_html_comment] = ACTIONS(5), }, [728] = { - [sym__call_signature] = STATE(5724), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2439), - [anon_sym_export] = ACTIONS(2441), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2441), - [anon_sym_EQ] = ACTIONS(936), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2441), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2441), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2441), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(910), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2441), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2441), - [anon_sym_readonly] = ACTIONS(2441), - [anon_sym_get] = ACTIONS(2441), - [anon_sym_set] = ACTIONS(2441), - [anon_sym_declare] = ACTIONS(2441), - [anon_sym_public] = ACTIONS(2441), - [anon_sym_private] = ACTIONS(2441), - [anon_sym_protected] = ACTIONS(2441), - [anon_sym_override] = ACTIONS(2441), - [anon_sym_module] = ACTIONS(2441), - [anon_sym_any] = ACTIONS(2441), - [anon_sym_number] = ACTIONS(2441), - [anon_sym_boolean] = ACTIONS(2441), - [anon_sym_string] = ACTIONS(2441), - [anon_sym_symbol] = ACTIONS(2441), - [anon_sym_object] = ACTIONS(2441), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5770), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [sym_identifier] = ACTIONS(2408), + [anon_sym_export] = ACTIONS(2410), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2410), + [anon_sym_EQ] = ACTIONS(903), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2410), + [anon_sym_let] = ACTIONS(2410), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_RBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2410), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(899), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2410), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_static] = ACTIONS(2410), + [anon_sym_readonly] = ACTIONS(2410), + [anon_sym_get] = ACTIONS(2410), + [anon_sym_set] = ACTIONS(2410), + [anon_sym_declare] = ACTIONS(2410), + [anon_sym_public] = ACTIONS(2410), + [anon_sym_private] = ACTIONS(2410), + [anon_sym_protected] = ACTIONS(2410), + [anon_sym_override] = ACTIONS(2410), + [anon_sym_module] = ACTIONS(2410), + [anon_sym_any] = ACTIONS(2410), + [anon_sym_number] = ACTIONS(2410), + [anon_sym_boolean] = ACTIONS(2410), + [anon_sym_string] = ACTIONS(2410), + [anon_sym_symbol] = ACTIONS(2410), + [anon_sym_object] = ACTIONS(2410), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [729] = { - [sym__call_signature] = STATE(5724), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2439), - [anon_sym_export] = ACTIONS(2441), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2441), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2441), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2441), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2441), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(910), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2441), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2441), - [anon_sym_readonly] = ACTIONS(2441), - [anon_sym_get] = ACTIONS(2441), - [anon_sym_set] = ACTIONS(2441), - [anon_sym_declare] = ACTIONS(2441), - [anon_sym_public] = ACTIONS(2441), - [anon_sym_private] = ACTIONS(2441), - [anon_sym_protected] = ACTIONS(2441), - [anon_sym_override] = ACTIONS(2441), - [anon_sym_module] = ACTIONS(2441), - [anon_sym_any] = ACTIONS(2441), - [anon_sym_number] = ACTIONS(2441), - [anon_sym_boolean] = ACTIONS(2441), - [anon_sym_string] = ACTIONS(2441), - [anon_sym_symbol] = ACTIONS(2441), - [anon_sym_object] = ACTIONS(2441), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [ts_builtin_sym_end] = ACTIONS(1809), + [sym_identifier] = ACTIONS(1811), + [anon_sym_export] = ACTIONS(1811), + [anon_sym_default] = ACTIONS(1811), + [anon_sym_type] = ACTIONS(1811), + [anon_sym_namespace] = ACTIONS(1811), + [anon_sym_LBRACE] = ACTIONS(1809), + [anon_sym_COMMA] = ACTIONS(1809), + [anon_sym_RBRACE] = ACTIONS(1809), + [anon_sym_typeof] = ACTIONS(1811), + [anon_sym_import] = ACTIONS(1811), + [anon_sym_with] = ACTIONS(1811), + [anon_sym_var] = ACTIONS(1811), + [anon_sym_let] = ACTIONS(1811), + [anon_sym_const] = ACTIONS(1811), + [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_else] = ACTIONS(1811), + [anon_sym_if] = ACTIONS(1811), + [anon_sym_switch] = ACTIONS(1811), + [anon_sym_for] = ACTIONS(1811), + [anon_sym_LPAREN] = ACTIONS(1809), + [anon_sym_SEMI] = ACTIONS(1809), + [anon_sym_await] = ACTIONS(1811), + [anon_sym_while] = ACTIONS(1811), + [anon_sym_do] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1811), + [anon_sym_break] = ACTIONS(1811), + [anon_sym_continue] = ACTIONS(1811), + [anon_sym_debugger] = ACTIONS(1811), + [anon_sym_return] = ACTIONS(1811), + [anon_sym_throw] = ACTIONS(1811), + [anon_sym_case] = ACTIONS(1811), + [anon_sym_yield] = ACTIONS(1811), + [anon_sym_LBRACK] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1809), + [anon_sym_SQUOTE] = ACTIONS(1809), + [anon_sym_class] = ACTIONS(1811), + [anon_sym_async] = ACTIONS(1811), + [anon_sym_function] = ACTIONS(1811), + [anon_sym_new] = ACTIONS(1811), + [anon_sym_using] = ACTIONS(1811), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_SLASH] = ACTIONS(1811), + [anon_sym_LT] = ACTIONS(1809), + [anon_sym_TILDE] = ACTIONS(1809), + [anon_sym_void] = ACTIONS(1811), + [anon_sym_delete] = ACTIONS(1811), + [anon_sym_PLUS_PLUS] = ACTIONS(1809), + [anon_sym_DASH_DASH] = ACTIONS(1809), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1809), + [sym_number] = ACTIONS(1809), + [sym_private_property_identifier] = ACTIONS(1809), + [sym_this] = ACTIONS(1811), + [sym_super] = ACTIONS(1811), + [sym_true] = ACTIONS(1811), + [sym_false] = ACTIONS(1811), + [sym_null] = ACTIONS(1811), + [sym_undefined] = ACTIONS(1811), + [anon_sym_AT] = ACTIONS(1809), + [anon_sym_static] = ACTIONS(1811), + [anon_sym_readonly] = ACTIONS(1811), + [anon_sym_get] = ACTIONS(1811), + [anon_sym_set] = ACTIONS(1811), + [anon_sym_declare] = ACTIONS(1811), + [anon_sym_public] = ACTIONS(1811), + [anon_sym_private] = ACTIONS(1811), + [anon_sym_protected] = ACTIONS(1811), + [anon_sym_override] = ACTIONS(1811), + [anon_sym_module] = ACTIONS(1811), + [anon_sym_any] = ACTIONS(1811), + [anon_sym_number] = ACTIONS(1811), + [anon_sym_boolean] = ACTIONS(1811), + [anon_sym_string] = ACTIONS(1811), + [anon_sym_symbol] = ACTIONS(1811), + [anon_sym_object] = ACTIONS(1811), + [anon_sym_abstract] = ACTIONS(1811), + [anon_sym_interface] = ACTIONS(1811), + [anon_sym_enum] = ACTIONS(1811), + [anon_sym_PIPE_RBRACE] = ACTIONS(1809), + [sym__automatic_semicolon] = ACTIONS(1809), [sym_html_comment] = ACTIONS(5), }, [730] = { - [sym__call_signature] = STATE(5625), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2431), - [anon_sym_export] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2433), - [anon_sym_EQ] = ACTIONS(948), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2433), - [anon_sym_let] = ACTIONS(2433), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2433), - [anon_sym_function] = ACTIONS(2407), - [anon_sym_EQ_GT] = ACTIONS(954), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2433), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2433), - [anon_sym_readonly] = ACTIONS(2433), - [anon_sym_get] = ACTIONS(2433), - [anon_sym_set] = ACTIONS(2433), - [anon_sym_declare] = ACTIONS(2433), - [anon_sym_public] = ACTIONS(2433), - [anon_sym_private] = ACTIONS(2433), - [anon_sym_protected] = ACTIONS(2433), - [anon_sym_override] = ACTIONS(2433), - [anon_sym_module] = ACTIONS(2433), - [anon_sym_any] = ACTIONS(2433), - [anon_sym_number] = ACTIONS(2433), - [anon_sym_boolean] = ACTIONS(2433), - [anon_sym_string] = ACTIONS(2433), - [anon_sym_symbol] = ACTIONS(2433), - [anon_sym_object] = ACTIONS(2433), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [ts_builtin_sym_end] = ACTIONS(1723), + [sym_identifier] = ACTIONS(1725), + [anon_sym_export] = ACTIONS(1725), + [anon_sym_default] = ACTIONS(1725), + [anon_sym_type] = ACTIONS(1725), + [anon_sym_namespace] = ACTIONS(1725), + [anon_sym_LBRACE] = ACTIONS(1723), + [anon_sym_COMMA] = ACTIONS(1723), + [anon_sym_RBRACE] = ACTIONS(1723), + [anon_sym_typeof] = ACTIONS(1725), + [anon_sym_import] = ACTIONS(1725), + [anon_sym_with] = ACTIONS(1725), + [anon_sym_var] = ACTIONS(1725), + [anon_sym_let] = ACTIONS(1725), + [anon_sym_const] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1723), + [anon_sym_else] = ACTIONS(1725), + [anon_sym_if] = ACTIONS(1725), + [anon_sym_switch] = ACTIONS(1725), + [anon_sym_for] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1723), + [anon_sym_SEMI] = ACTIONS(1723), + [anon_sym_await] = ACTIONS(1725), + [anon_sym_while] = ACTIONS(1725), + [anon_sym_do] = ACTIONS(1725), + [anon_sym_try] = 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_case] = ACTIONS(1725), + [anon_sym_catch] = ACTIONS(1725), + [anon_sym_finally] = ACTIONS(1725), + [anon_sym_yield] = ACTIONS(1725), + [anon_sym_LBRACK] = ACTIONS(1723), + [anon_sym_DQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_class] = ACTIONS(1725), + [anon_sym_async] = ACTIONS(1725), + [anon_sym_function] = ACTIONS(1725), + [anon_sym_new] = ACTIONS(1725), + [anon_sym_using] = ACTIONS(1725), + [anon_sym_PLUS] = ACTIONS(1725), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_SLASH] = ACTIONS(1725), + [anon_sym_LT] = ACTIONS(1723), + [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), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1723), + [sym_number] = ACTIONS(1723), + [sym_private_property_identifier] = 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_readonly] = 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_override] = 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_object] = ACTIONS(1725), + [anon_sym_abstract] = ACTIONS(1725), + [anon_sym_interface] = ACTIONS(1725), + [anon_sym_enum] = ACTIONS(1725), [sym_html_comment] = ACTIONS(5), }, [731] = { - [sym__call_signature] = STATE(5625), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2431), - [anon_sym_export] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2433), - [anon_sym_EQ] = ACTIONS(948), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2433), - [anon_sym_let] = ACTIONS(2433), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2433), - [anon_sym_function] = ACTIONS(2443), - [anon_sym_EQ_GT] = ACTIONS(954), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2433), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2433), - [anon_sym_readonly] = ACTIONS(2433), - [anon_sym_get] = ACTIONS(2433), - [anon_sym_set] = ACTIONS(2433), - [anon_sym_declare] = ACTIONS(2433), - [anon_sym_public] = ACTIONS(2433), - [anon_sym_private] = ACTIONS(2433), - [anon_sym_protected] = ACTIONS(2433), - [anon_sym_override] = ACTIONS(2433), - [anon_sym_module] = ACTIONS(2433), - [anon_sym_any] = ACTIONS(2433), - [anon_sym_number] = ACTIONS(2433), - [anon_sym_boolean] = ACTIONS(2433), - [anon_sym_string] = ACTIONS(2433), - [anon_sym_symbol] = ACTIONS(2433), - [anon_sym_object] = ACTIONS(2433), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [ts_builtin_sym_end] = ACTIONS(1659), + [sym_identifier] = ACTIONS(1661), + [anon_sym_export] = ACTIONS(1661), + [anon_sym_default] = ACTIONS(1661), + [anon_sym_type] = ACTIONS(1661), + [anon_sym_namespace] = ACTIONS(1661), + [anon_sym_LBRACE] = ACTIONS(1659), + [anon_sym_COMMA] = ACTIONS(1659), + [anon_sym_RBRACE] = ACTIONS(1659), + [anon_sym_typeof] = ACTIONS(1661), + [anon_sym_import] = ACTIONS(1661), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_var] = ACTIONS(1661), + [anon_sym_let] = ACTIONS(1661), + [anon_sym_const] = ACTIONS(1661), + [anon_sym_BANG] = ACTIONS(1659), + [anon_sym_else] = ACTIONS(1661), + [anon_sym_if] = ACTIONS(1661), + [anon_sym_switch] = ACTIONS(1661), + [anon_sym_for] = ACTIONS(1661), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_SEMI] = ACTIONS(1659), + [anon_sym_await] = ACTIONS(1661), + [anon_sym_while] = ACTIONS(1661), + [anon_sym_do] = ACTIONS(1661), + [anon_sym_try] = ACTIONS(1661), + [anon_sym_break] = ACTIONS(1661), + [anon_sym_continue] = ACTIONS(1661), + [anon_sym_debugger] = ACTIONS(1661), + [anon_sym_return] = ACTIONS(1661), + [anon_sym_throw] = ACTIONS(1661), + [anon_sym_case] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1661), + [anon_sym_LBRACK] = ACTIONS(1659), + [anon_sym_DQUOTE] = ACTIONS(1659), + [anon_sym_SQUOTE] = ACTIONS(1659), + [anon_sym_class] = ACTIONS(1661), + [anon_sym_async] = ACTIONS(1661), + [anon_sym_function] = ACTIONS(1661), + [anon_sym_new] = ACTIONS(1661), + [anon_sym_using] = ACTIONS(1661), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1661), + [anon_sym_SLASH] = ACTIONS(1661), + [anon_sym_LT] = ACTIONS(1659), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_void] = ACTIONS(1661), + [anon_sym_delete] = ACTIONS(1661), + [anon_sym_PLUS_PLUS] = ACTIONS(1659), + [anon_sym_DASH_DASH] = ACTIONS(1659), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1659), + [sym_number] = ACTIONS(1659), + [sym_private_property_identifier] = ACTIONS(1659), + [sym_this] = ACTIONS(1661), + [sym_super] = ACTIONS(1661), + [sym_true] = ACTIONS(1661), + [sym_false] = ACTIONS(1661), + [sym_null] = ACTIONS(1661), + [sym_undefined] = ACTIONS(1661), + [anon_sym_AT] = ACTIONS(1659), + [anon_sym_static] = ACTIONS(1661), + [anon_sym_readonly] = ACTIONS(1661), + [anon_sym_get] = ACTIONS(1661), + [anon_sym_set] = ACTIONS(1661), + [anon_sym_declare] = ACTIONS(1661), + [anon_sym_public] = ACTIONS(1661), + [anon_sym_private] = ACTIONS(1661), + [anon_sym_protected] = ACTIONS(1661), + [anon_sym_override] = ACTIONS(1661), + [anon_sym_module] = ACTIONS(1661), + [anon_sym_any] = ACTIONS(1661), + [anon_sym_number] = ACTIONS(1661), + [anon_sym_boolean] = ACTIONS(1661), + [anon_sym_string] = ACTIONS(1661), + [anon_sym_symbol] = ACTIONS(1661), + [anon_sym_object] = ACTIONS(1661), + [anon_sym_abstract] = ACTIONS(1661), + [anon_sym_interface] = ACTIONS(1661), + [anon_sym_enum] = ACTIONS(1661), + [anon_sym_PIPE_RBRACE] = ACTIONS(1659), + [sym__automatic_semicolon] = ACTIONS(2432), [sym_html_comment] = ACTIONS(5), }, [732] = { - [sym__call_signature] = STATE(5625), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2431), - [anon_sym_export] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2433), - [anon_sym_EQ] = ACTIONS(948), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2433), - [anon_sym_let] = ACTIONS(2433), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2433), - [anon_sym_function] = ACTIONS(2405), - [anon_sym_EQ_GT] = ACTIONS(954), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2433), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2433), - [anon_sym_readonly] = ACTIONS(2433), - [anon_sym_get] = ACTIONS(2433), - [anon_sym_set] = ACTIONS(2433), - [anon_sym_declare] = ACTIONS(2433), - [anon_sym_public] = ACTIONS(2433), - [anon_sym_private] = ACTIONS(2433), - [anon_sym_protected] = ACTIONS(2433), - [anon_sym_override] = ACTIONS(2433), - [anon_sym_module] = ACTIONS(2433), - [anon_sym_any] = ACTIONS(2433), - [anon_sym_number] = ACTIONS(2433), - [anon_sym_boolean] = ACTIONS(2433), - [anon_sym_string] = ACTIONS(2433), - [anon_sym_symbol] = ACTIONS(2433), - [anon_sym_object] = ACTIONS(2433), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5770), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [sym_identifier] = ACTIONS(2408), + [anon_sym_export] = ACTIONS(2410), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2410), + [anon_sym_EQ] = ACTIONS(814), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2410), + [anon_sym_let] = ACTIONS(2410), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_RBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2410), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(899), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2410), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_static] = ACTIONS(2410), + [anon_sym_readonly] = ACTIONS(2410), + [anon_sym_get] = ACTIONS(2410), + [anon_sym_set] = ACTIONS(2410), + [anon_sym_declare] = ACTIONS(2410), + [anon_sym_public] = ACTIONS(2410), + [anon_sym_private] = ACTIONS(2410), + [anon_sym_protected] = ACTIONS(2410), + [anon_sym_override] = ACTIONS(2410), + [anon_sym_module] = ACTIONS(2410), + [anon_sym_any] = ACTIONS(2410), + [anon_sym_number] = ACTIONS(2410), + [anon_sym_boolean] = ACTIONS(2410), + [anon_sym_string] = ACTIONS(2410), + [anon_sym_symbol] = ACTIONS(2410), + [anon_sym_object] = ACTIONS(2410), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [733] = { - [ts_builtin_sym_end] = ACTIONS(1853), - [sym_identifier] = ACTIONS(1855), - [anon_sym_export] = ACTIONS(1855), - [anon_sym_default] = ACTIONS(1855), - [anon_sym_type] = ACTIONS(1855), - [anon_sym_namespace] = ACTIONS(1855), - [anon_sym_LBRACE] = ACTIONS(1853), - [anon_sym_COMMA] = ACTIONS(1853), - [anon_sym_RBRACE] = ACTIONS(1853), - [anon_sym_typeof] = ACTIONS(1855), - [anon_sym_import] = ACTIONS(1855), - [anon_sym_with] = ACTIONS(1855), - [anon_sym_var] = ACTIONS(1855), - [anon_sym_let] = ACTIONS(1855), - [anon_sym_const] = ACTIONS(1855), - [anon_sym_BANG] = ACTIONS(1853), - [anon_sym_else] = ACTIONS(1855), - [anon_sym_if] = ACTIONS(1855), - [anon_sym_switch] = ACTIONS(1855), - [anon_sym_for] = ACTIONS(1855), - [anon_sym_LPAREN] = ACTIONS(1853), - [anon_sym_SEMI] = ACTIONS(1853), - [anon_sym_await] = ACTIONS(1855), - [anon_sym_while] = ACTIONS(1855), - [anon_sym_do] = ACTIONS(1855), - [anon_sym_try] = ACTIONS(1855), - [anon_sym_break] = ACTIONS(1855), - [anon_sym_continue] = ACTIONS(1855), - [anon_sym_debugger] = ACTIONS(1855), - [anon_sym_return] = ACTIONS(1855), - [anon_sym_throw] = ACTIONS(1855), - [anon_sym_case] = ACTIONS(1855), - [anon_sym_catch] = ACTIONS(1855), - [anon_sym_finally] = ACTIONS(1855), - [anon_sym_yield] = ACTIONS(1855), - [anon_sym_LBRACK] = ACTIONS(1853), - [sym_glimmer_opening_tag] = ACTIONS(1853), - [anon_sym_DQUOTE] = ACTIONS(1853), - [anon_sym_SQUOTE] = ACTIONS(1853), - [anon_sym_class] = ACTIONS(1855), - [anon_sym_async] = ACTIONS(1855), - [anon_sym_function] = ACTIONS(1855), - [anon_sym_new] = ACTIONS(1855), - [anon_sym_using] = ACTIONS(1855), - [anon_sym_PLUS] = ACTIONS(1855), - [anon_sym_DASH] = ACTIONS(1855), - [anon_sym_SLASH] = ACTIONS(1855), - [anon_sym_LT] = ACTIONS(1855), - [anon_sym_TILDE] = ACTIONS(1853), - [anon_sym_void] = ACTIONS(1855), - [anon_sym_delete] = ACTIONS(1855), - [anon_sym_PLUS_PLUS] = ACTIONS(1853), - [anon_sym_DASH_DASH] = ACTIONS(1853), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1853), - [sym_number] = ACTIONS(1853), - [sym_private_property_identifier] = ACTIONS(1853), - [sym_this] = ACTIONS(1855), - [sym_super] = ACTIONS(1855), - [sym_true] = ACTIONS(1855), - [sym_false] = ACTIONS(1855), - [sym_null] = ACTIONS(1855), - [sym_undefined] = ACTIONS(1855), - [anon_sym_AT] = ACTIONS(1853), - [anon_sym_static] = ACTIONS(1855), - [anon_sym_readonly] = ACTIONS(1855), - [anon_sym_get] = ACTIONS(1855), - [anon_sym_set] = ACTIONS(1855), - [anon_sym_declare] = ACTIONS(1855), - [anon_sym_public] = ACTIONS(1855), - [anon_sym_private] = ACTIONS(1855), - [anon_sym_protected] = ACTIONS(1855), - [anon_sym_override] = ACTIONS(1855), - [anon_sym_module] = ACTIONS(1855), - [anon_sym_any] = ACTIONS(1855), - [anon_sym_number] = ACTIONS(1855), - [anon_sym_boolean] = ACTIONS(1855), - [anon_sym_string] = ACTIONS(1855), - [anon_sym_symbol] = ACTIONS(1855), - [anon_sym_object] = ACTIONS(1855), - [anon_sym_abstract] = ACTIONS(1855), - [anon_sym_interface] = ACTIONS(1855), - [anon_sym_enum] = ACTIONS(1855), + [sym__call_signature] = STATE(5936), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [sym_identifier] = ACTIONS(2434), + [anon_sym_export] = ACTIONS(2436), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2436), + [anon_sym_EQ] = ACTIONS(814), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2436), + [anon_sym_let] = ACTIONS(2436), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2436), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(961), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2436), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_static] = ACTIONS(2436), + [anon_sym_readonly] = ACTIONS(2436), + [anon_sym_get] = ACTIONS(2436), + [anon_sym_set] = ACTIONS(2436), + [anon_sym_declare] = ACTIONS(2436), + [anon_sym_public] = ACTIONS(2436), + [anon_sym_private] = ACTIONS(2436), + [anon_sym_protected] = ACTIONS(2436), + [anon_sym_override] = ACTIONS(2436), + [anon_sym_module] = ACTIONS(2436), + [anon_sym_any] = ACTIONS(2436), + [anon_sym_number] = ACTIONS(2436), + [anon_sym_boolean] = ACTIONS(2436), + [anon_sym_string] = ACTIONS(2436), + [anon_sym_symbol] = ACTIONS(2436), + [anon_sym_object] = ACTIONS(2436), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [734] = { - [ts_builtin_sym_end] = ACTIONS(1735), - [sym_identifier] = ACTIONS(1737), - [anon_sym_export] = ACTIONS(1737), - [anon_sym_default] = ACTIONS(1737), - [anon_sym_type] = ACTIONS(1737), - [anon_sym_namespace] = ACTIONS(1737), - [anon_sym_LBRACE] = ACTIONS(1735), - [anon_sym_COMMA] = ACTIONS(1735), - [anon_sym_RBRACE] = ACTIONS(1735), - [anon_sym_typeof] = ACTIONS(1737), - [anon_sym_import] = ACTIONS(1737), - [anon_sym_with] = ACTIONS(1737), - [anon_sym_var] = ACTIONS(1737), - [anon_sym_let] = ACTIONS(1737), - [anon_sym_const] = ACTIONS(1737), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_else] = ACTIONS(1737), - [anon_sym_if] = ACTIONS(1737), - [anon_sym_switch] = ACTIONS(1737), - [anon_sym_for] = ACTIONS(1737), - [anon_sym_LPAREN] = ACTIONS(1735), - [anon_sym_SEMI] = ACTIONS(1735), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_while] = ACTIONS(1737), - [anon_sym_do] = ACTIONS(1737), - [anon_sym_try] = ACTIONS(1737), - [anon_sym_break] = ACTIONS(1737), - [anon_sym_continue] = ACTIONS(1737), - [anon_sym_debugger] = ACTIONS(1737), - [anon_sym_return] = ACTIONS(1737), - [anon_sym_throw] = ACTIONS(1737), - [anon_sym_case] = ACTIONS(1737), - [anon_sym_catch] = ACTIONS(1737), - [anon_sym_finally] = ACTIONS(1737), - [anon_sym_yield] = ACTIONS(1737), - [anon_sym_LBRACK] = ACTIONS(1735), - [sym_glimmer_opening_tag] = ACTIONS(1735), - [anon_sym_DQUOTE] = ACTIONS(1735), - [anon_sym_SQUOTE] = ACTIONS(1735), - [anon_sym_class] = ACTIONS(1737), - [anon_sym_async] = ACTIONS(1737), - [anon_sym_function] = ACTIONS(1737), - [anon_sym_new] = ACTIONS(1737), - [anon_sym_using] = ACTIONS(1737), - [anon_sym_PLUS] = ACTIONS(1737), - [anon_sym_DASH] = ACTIONS(1737), - [anon_sym_SLASH] = ACTIONS(1737), - [anon_sym_LT] = ACTIONS(1737), - [anon_sym_TILDE] = ACTIONS(1735), - [anon_sym_void] = ACTIONS(1737), - [anon_sym_delete] = ACTIONS(1737), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_DASH_DASH] = ACTIONS(1735), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1735), - [sym_number] = ACTIONS(1735), - [sym_private_property_identifier] = ACTIONS(1735), - [sym_this] = ACTIONS(1737), - [sym_super] = ACTIONS(1737), - [sym_true] = ACTIONS(1737), - [sym_false] = ACTIONS(1737), - [sym_null] = ACTIONS(1737), - [sym_undefined] = ACTIONS(1737), - [anon_sym_AT] = ACTIONS(1735), - [anon_sym_static] = ACTIONS(1737), - [anon_sym_readonly] = ACTIONS(1737), - [anon_sym_get] = ACTIONS(1737), - [anon_sym_set] = ACTIONS(1737), - [anon_sym_declare] = ACTIONS(1737), - [anon_sym_public] = ACTIONS(1737), - [anon_sym_private] = ACTIONS(1737), - [anon_sym_protected] = ACTIONS(1737), - [anon_sym_override] = ACTIONS(1737), - [anon_sym_module] = ACTIONS(1737), - [anon_sym_any] = ACTIONS(1737), - [anon_sym_number] = ACTIONS(1737), - [anon_sym_boolean] = ACTIONS(1737), - [anon_sym_string] = ACTIONS(1737), - [anon_sym_symbol] = ACTIONS(1737), - [anon_sym_object] = ACTIONS(1737), - [anon_sym_abstract] = ACTIONS(1737), - [anon_sym_interface] = ACTIONS(1737), - [anon_sym_enum] = ACTIONS(1737), + [sym__call_signature] = STATE(5660), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [sym_identifier] = ACTIONS(2388), + [anon_sym_export] = ACTIONS(2390), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2390), + [anon_sym_EQ] = ACTIONS(814), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2390), + [anon_sym_let] = ACTIONS(2390), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(834), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2390), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2390), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_static] = ACTIONS(2390), + [anon_sym_readonly] = ACTIONS(2390), + [anon_sym_get] = ACTIONS(2390), + [anon_sym_set] = ACTIONS(2390), + [anon_sym_declare] = ACTIONS(2390), + [anon_sym_public] = ACTIONS(2390), + [anon_sym_private] = ACTIONS(2390), + [anon_sym_protected] = ACTIONS(2390), + [anon_sym_override] = ACTIONS(2390), + [anon_sym_module] = ACTIONS(2390), + [anon_sym_any] = ACTIONS(2390), + [anon_sym_number] = ACTIONS(2390), + [anon_sym_boolean] = ACTIONS(2390), + [anon_sym_string] = ACTIONS(2390), + [anon_sym_symbol] = ACTIONS(2390), + [anon_sym_object] = ACTIONS(2390), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [735] = { - [sym__call_signature] = STATE(5849), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2421), - [anon_sym_export] = ACTIONS(2423), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2423), - [anon_sym_EQ] = ACTIONS(928), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2423), - [anon_sym_let] = ACTIONS(2423), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(930), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2423), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(901), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2423), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2423), - [anon_sym_readonly] = ACTIONS(2423), - [anon_sym_get] = ACTIONS(2423), - [anon_sym_set] = ACTIONS(2423), - [anon_sym_declare] = ACTIONS(2423), - [anon_sym_public] = ACTIONS(2423), - [anon_sym_private] = ACTIONS(2423), - [anon_sym_protected] = ACTIONS(2423), - [anon_sym_override] = ACTIONS(2423), - [anon_sym_module] = ACTIONS(2423), - [anon_sym_any] = ACTIONS(2423), - [anon_sym_number] = ACTIONS(2423), - [anon_sym_boolean] = ACTIONS(2423), - [anon_sym_string] = ACTIONS(2423), - [anon_sym_symbol] = ACTIONS(2423), - [anon_sym_object] = ACTIONS(2423), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [ts_builtin_sym_end] = ACTIONS(1869), + [sym_identifier] = ACTIONS(1871), + [anon_sym_export] = ACTIONS(1871), + [anon_sym_default] = ACTIONS(1871), + [anon_sym_type] = ACTIONS(1871), + [anon_sym_namespace] = ACTIONS(1871), + [anon_sym_LBRACE] = ACTIONS(1869), + [anon_sym_COMMA] = ACTIONS(1869), + [anon_sym_RBRACE] = ACTIONS(1869), + [anon_sym_typeof] = ACTIONS(1871), + [anon_sym_import] = ACTIONS(1871), + [anon_sym_with] = ACTIONS(1871), + [anon_sym_var] = ACTIONS(1871), + [anon_sym_let] = ACTIONS(1871), + [anon_sym_const] = ACTIONS(1871), + [anon_sym_BANG] = ACTIONS(1869), + [anon_sym_else] = ACTIONS(1871), + [anon_sym_if] = ACTIONS(1871), + [anon_sym_switch] = ACTIONS(1871), + [anon_sym_for] = ACTIONS(1871), + [anon_sym_LPAREN] = ACTIONS(1869), + [anon_sym_SEMI] = ACTIONS(1869), + [anon_sym_await] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(1871), + [anon_sym_do] = ACTIONS(1871), + [anon_sym_try] = ACTIONS(1871), + [anon_sym_break] = ACTIONS(1871), + [anon_sym_continue] = ACTIONS(1871), + [anon_sym_debugger] = ACTIONS(1871), + [anon_sym_return] = ACTIONS(1871), + [anon_sym_throw] = ACTIONS(1871), + [anon_sym_case] = ACTIONS(1871), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1869), + [anon_sym_DQUOTE] = ACTIONS(1869), + [anon_sym_SQUOTE] = ACTIONS(1869), + [anon_sym_class] = ACTIONS(1871), + [anon_sym_async] = ACTIONS(1871), + [anon_sym_function] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1871), + [anon_sym_using] = ACTIONS(1871), + [anon_sym_PLUS] = ACTIONS(1871), + [anon_sym_DASH] = ACTIONS(1871), + [anon_sym_SLASH] = ACTIONS(1871), + [anon_sym_LT] = ACTIONS(1869), + [anon_sym_TILDE] = ACTIONS(1869), + [anon_sym_void] = ACTIONS(1871), + [anon_sym_delete] = ACTIONS(1871), + [anon_sym_PLUS_PLUS] = ACTIONS(1869), + [anon_sym_DASH_DASH] = ACTIONS(1869), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1869), + [sym_number] = ACTIONS(1869), + [sym_private_property_identifier] = ACTIONS(1869), + [sym_this] = ACTIONS(1871), + [sym_super] = ACTIONS(1871), + [sym_true] = ACTIONS(1871), + [sym_false] = ACTIONS(1871), + [sym_null] = ACTIONS(1871), + [sym_undefined] = ACTIONS(1871), + [anon_sym_AT] = ACTIONS(1869), + [anon_sym_static] = ACTIONS(1871), + [anon_sym_readonly] = ACTIONS(1871), + [anon_sym_get] = ACTIONS(1871), + [anon_sym_set] = ACTIONS(1871), + [anon_sym_declare] = ACTIONS(1871), + [anon_sym_public] = ACTIONS(1871), + [anon_sym_private] = ACTIONS(1871), + [anon_sym_protected] = ACTIONS(1871), + [anon_sym_override] = ACTIONS(1871), + [anon_sym_module] = ACTIONS(1871), + [anon_sym_any] = ACTIONS(1871), + [anon_sym_number] = ACTIONS(1871), + [anon_sym_boolean] = ACTIONS(1871), + [anon_sym_string] = ACTIONS(1871), + [anon_sym_symbol] = ACTIONS(1871), + [anon_sym_object] = ACTIONS(1871), + [anon_sym_abstract] = ACTIONS(1871), + [anon_sym_interface] = ACTIONS(1871), + [anon_sym_enum] = ACTIONS(1871), + [anon_sym_PIPE_RBRACE] = ACTIONS(1869), + [sym__automatic_semicolon] = ACTIONS(1869), [sym_html_comment] = ACTIONS(5), }, [736] = { - [sym__call_signature] = STATE(5849), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2421), - [anon_sym_export] = ACTIONS(2423), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2423), - [anon_sym_EQ] = ACTIONS(928), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2423), - [anon_sym_let] = ACTIONS(2423), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2423), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(901), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2423), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2423), - [anon_sym_readonly] = ACTIONS(2423), - [anon_sym_get] = ACTIONS(2423), - [anon_sym_set] = ACTIONS(2423), - [anon_sym_declare] = ACTIONS(2423), - [anon_sym_public] = ACTIONS(2423), - [anon_sym_private] = ACTIONS(2423), - [anon_sym_protected] = ACTIONS(2423), - [anon_sym_override] = ACTIONS(2423), - [anon_sym_module] = ACTIONS(2423), - [anon_sym_any] = ACTIONS(2423), - [anon_sym_number] = ACTIONS(2423), - [anon_sym_boolean] = ACTIONS(2423), - [anon_sym_string] = ACTIONS(2423), - [anon_sym_symbol] = ACTIONS(2423), - [anon_sym_object] = ACTIONS(2423), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5660), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [sym_identifier] = ACTIONS(2388), + [anon_sym_export] = ACTIONS(2390), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2390), + [anon_sym_EQ] = ACTIONS(814), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2390), + [anon_sym_let] = ACTIONS(2390), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(878), + [anon_sym_of] = ACTIONS(881), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2390), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2390), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_static] = ACTIONS(2390), + [anon_sym_readonly] = ACTIONS(2390), + [anon_sym_get] = ACTIONS(2390), + [anon_sym_set] = ACTIONS(2390), + [anon_sym_declare] = ACTIONS(2390), + [anon_sym_public] = ACTIONS(2390), + [anon_sym_private] = ACTIONS(2390), + [anon_sym_protected] = ACTIONS(2390), + [anon_sym_override] = ACTIONS(2390), + [anon_sym_module] = ACTIONS(2390), + [anon_sym_any] = ACTIONS(2390), + [anon_sym_number] = ACTIONS(2390), + [anon_sym_boolean] = ACTIONS(2390), + [anon_sym_string] = ACTIONS(2390), + [anon_sym_symbol] = ACTIONS(2390), + [anon_sym_object] = ACTIONS(2390), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [737] = { - [sym__call_signature] = STATE(5864), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2397), - [anon_sym_export] = ACTIONS(2399), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2399), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2399), - [anon_sym_let] = ACTIONS(2399), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_in] = ACTIONS(905), - [anon_sym_of] = ACTIONS(908), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2399), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2399), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2399), - [anon_sym_readonly] = ACTIONS(2399), - [anon_sym_get] = ACTIONS(2399), - [anon_sym_set] = ACTIONS(2399), - [anon_sym_declare] = ACTIONS(2399), - [anon_sym_public] = ACTIONS(2399), - [anon_sym_private] = ACTIONS(2399), - [anon_sym_protected] = ACTIONS(2399), - [anon_sym_override] = ACTIONS(2399), - [anon_sym_module] = ACTIONS(2399), - [anon_sym_any] = ACTIONS(2399), - [anon_sym_number] = ACTIONS(2399), - [anon_sym_boolean] = ACTIONS(2399), - [anon_sym_string] = ACTIONS(2399), - [anon_sym_symbol] = ACTIONS(2399), - [anon_sym_object] = ACTIONS(2399), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [ts_builtin_sym_end] = ACTIONS(1737), + [sym_identifier] = ACTIONS(1739), + [anon_sym_export] = ACTIONS(1739), + [anon_sym_default] = ACTIONS(1739), + [anon_sym_type] = ACTIONS(1739), + [anon_sym_namespace] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1737), + [anon_sym_COMMA] = ACTIONS(1737), + [anon_sym_RBRACE] = ACTIONS(1737), + [anon_sym_typeof] = ACTIONS(1739), + [anon_sym_import] = ACTIONS(1739), + [anon_sym_with] = ACTIONS(1739), + [anon_sym_var] = ACTIONS(1739), + [anon_sym_let] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_else] = ACTIONS(1739), + [anon_sym_if] = ACTIONS(1739), + [anon_sym_switch] = ACTIONS(1739), + [anon_sym_for] = ACTIONS(1739), + [anon_sym_LPAREN] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1737), + [anon_sym_await] = ACTIONS(1739), + [anon_sym_while] = ACTIONS(1739), + [anon_sym_do] = ACTIONS(1739), + [anon_sym_try] = 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_case] = ACTIONS(1739), + [anon_sym_yield] = ACTIONS(1739), + [anon_sym_LBRACK] = ACTIONS(1737), + [anon_sym_DQUOTE] = ACTIONS(1737), + [anon_sym_SQUOTE] = ACTIONS(1737), + [anon_sym_class] = ACTIONS(1739), + [anon_sym_async] = ACTIONS(1739), + [anon_sym_function] = ACTIONS(1739), + [anon_sym_new] = ACTIONS(1739), + [anon_sym_using] = ACTIONS(1739), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_SLASH] = ACTIONS(1739), + [anon_sym_LT] = ACTIONS(1737), + [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), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1737), + [sym_number] = ACTIONS(1737), + [sym_private_property_identifier] = 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_readonly] = 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_override] = 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_object] = ACTIONS(1739), + [anon_sym_abstract] = ACTIONS(1739), + [anon_sym_interface] = ACTIONS(1739), + [anon_sym_enum] = ACTIONS(1739), + [anon_sym_PIPE_RBRACE] = ACTIONS(1737), + [sym__automatic_semicolon] = ACTIONS(1737), [sym_html_comment] = ACTIONS(5), }, [738] = { - [sym_statement_block] = STATE(869), - [ts_builtin_sym_end] = ACTIONS(1672), - [sym_identifier] = ACTIONS(1674), - [anon_sym_export] = ACTIONS(1674), - [anon_sym_default] = ACTIONS(1674), - [anon_sym_type] = ACTIONS(1674), - [anon_sym_namespace] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(2445), - [anon_sym_RBRACE] = ACTIONS(1672), - [anon_sym_typeof] = ACTIONS(1674), - [anon_sym_import] = ACTIONS(1674), - [anon_sym_with] = ACTIONS(1674), - [anon_sym_var] = ACTIONS(1674), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_BANG] = ACTIONS(1672), - [anon_sym_else] = ACTIONS(1674), - [anon_sym_if] = ACTIONS(1674), - [anon_sym_switch] = ACTIONS(1674), - [anon_sym_for] = ACTIONS(1674), - [anon_sym_LPAREN] = ACTIONS(1672), - [anon_sym_SEMI] = ACTIONS(1672), - [anon_sym_await] = ACTIONS(1674), - [anon_sym_while] = ACTIONS(1674), - [anon_sym_do] = ACTIONS(1674), - [anon_sym_try] = ACTIONS(1674), - [anon_sym_break] = ACTIONS(1674), - [anon_sym_continue] = ACTIONS(1674), - [anon_sym_debugger] = ACTIONS(1674), - [anon_sym_return] = ACTIONS(1674), - [anon_sym_throw] = ACTIONS(1674), - [anon_sym_case] = ACTIONS(1674), - [anon_sym_yield] = ACTIONS(1674), - [anon_sym_LBRACK] = ACTIONS(1672), - [sym_glimmer_opening_tag] = ACTIONS(1672), - [anon_sym_DOT] = ACTIONS(2447), - [anon_sym_DQUOTE] = ACTIONS(1672), - [anon_sym_SQUOTE] = ACTIONS(1672), - [anon_sym_class] = ACTIONS(1674), - [anon_sym_async] = ACTIONS(1674), - [anon_sym_function] = ACTIONS(1674), - [anon_sym_new] = ACTIONS(1674), - [anon_sym_using] = ACTIONS(1674), - [anon_sym_PLUS] = ACTIONS(1674), - [anon_sym_DASH] = ACTIONS(1674), - [anon_sym_SLASH] = ACTIONS(1674), - [anon_sym_LT] = ACTIONS(1674), - [anon_sym_TILDE] = ACTIONS(1672), - [anon_sym_void] = ACTIONS(1674), - [anon_sym_delete] = ACTIONS(1674), - [anon_sym_PLUS_PLUS] = ACTIONS(1672), - [anon_sym_DASH_DASH] = ACTIONS(1672), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1672), - [sym_number] = ACTIONS(1672), - [sym_private_property_identifier] = ACTIONS(1672), - [sym_this] = ACTIONS(1674), - [sym_super] = ACTIONS(1674), - [sym_true] = ACTIONS(1674), - [sym_false] = ACTIONS(1674), - [sym_null] = ACTIONS(1674), - [sym_undefined] = ACTIONS(1674), - [anon_sym_AT] = ACTIONS(1672), - [anon_sym_static] = ACTIONS(1674), - [anon_sym_readonly] = ACTIONS(1674), - [anon_sym_get] = ACTIONS(1674), - [anon_sym_set] = ACTIONS(1674), - [anon_sym_declare] = ACTIONS(1674), - [anon_sym_public] = ACTIONS(1674), - [anon_sym_private] = ACTIONS(1674), - [anon_sym_protected] = ACTIONS(1674), - [anon_sym_override] = ACTIONS(1674), - [anon_sym_module] = ACTIONS(1674), - [anon_sym_any] = ACTIONS(1674), - [anon_sym_number] = ACTIONS(1674), - [anon_sym_boolean] = ACTIONS(1674), - [anon_sym_string] = ACTIONS(1674), - [anon_sym_symbol] = ACTIONS(1674), - [anon_sym_object] = ACTIONS(1674), - [anon_sym_abstract] = ACTIONS(1674), - [anon_sym_interface] = ACTIONS(1674), - [anon_sym_enum] = ACTIONS(1674), + [sym__call_signature] = STATE(5936), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [sym_identifier] = ACTIONS(2434), + [anon_sym_export] = ACTIONS(2436), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2436), + [anon_sym_EQ] = ACTIONS(955), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2436), + [anon_sym_let] = ACTIONS(2436), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2436), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(961), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2436), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_static] = ACTIONS(2436), + [anon_sym_readonly] = ACTIONS(2436), + [anon_sym_get] = ACTIONS(2436), + [anon_sym_set] = ACTIONS(2436), + [anon_sym_declare] = ACTIONS(2436), + [anon_sym_public] = ACTIONS(2436), + [anon_sym_private] = ACTIONS(2436), + [anon_sym_protected] = ACTIONS(2436), + [anon_sym_override] = ACTIONS(2436), + [anon_sym_module] = ACTIONS(2436), + [anon_sym_any] = ACTIONS(2436), + [anon_sym_number] = ACTIONS(2436), + [anon_sym_boolean] = ACTIONS(2436), + [anon_sym_string] = ACTIONS(2436), + [anon_sym_symbol] = ACTIONS(2436), + [anon_sym_object] = ACTIONS(2436), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [739] = { - [sym_statement_block] = STATE(869), - [ts_builtin_sym_end] = ACTIONS(1672), - [sym_identifier] = ACTIONS(1674), - [anon_sym_export] = ACTIONS(1674), - [anon_sym_default] = ACTIONS(1674), - [anon_sym_type] = ACTIONS(1674), - [anon_sym_namespace] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(2445), - [anon_sym_RBRACE] = ACTIONS(1672), - [anon_sym_typeof] = ACTIONS(1674), - [anon_sym_import] = ACTIONS(1674), - [anon_sym_with] = ACTIONS(1674), - [anon_sym_var] = ACTIONS(1674), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_BANG] = ACTIONS(1672), - [anon_sym_else] = ACTIONS(1674), - [anon_sym_if] = ACTIONS(1674), - [anon_sym_switch] = ACTIONS(1674), - [anon_sym_for] = ACTIONS(1674), - [anon_sym_LPAREN] = ACTIONS(1672), - [anon_sym_SEMI] = ACTIONS(1672), - [anon_sym_await] = ACTIONS(1674), - [anon_sym_while] = ACTIONS(1674), - [anon_sym_do] = ACTIONS(1674), - [anon_sym_try] = ACTIONS(1674), - [anon_sym_break] = ACTIONS(1674), - [anon_sym_continue] = ACTIONS(1674), - [anon_sym_debugger] = ACTIONS(1674), - [anon_sym_return] = ACTIONS(1674), - [anon_sym_throw] = ACTIONS(1674), - [anon_sym_case] = ACTIONS(1674), - [anon_sym_yield] = ACTIONS(1674), - [anon_sym_LBRACK] = ACTIONS(1672), - [sym_glimmer_opening_tag] = ACTIONS(1672), - [anon_sym_DOT] = ACTIONS(2449), - [anon_sym_DQUOTE] = ACTIONS(1672), - [anon_sym_SQUOTE] = ACTIONS(1672), - [anon_sym_class] = ACTIONS(1674), - [anon_sym_async] = ACTIONS(1674), - [anon_sym_function] = ACTIONS(1674), - [anon_sym_new] = ACTIONS(1674), - [anon_sym_using] = ACTIONS(1674), - [anon_sym_PLUS] = ACTIONS(1674), - [anon_sym_DASH] = ACTIONS(1674), - [anon_sym_SLASH] = ACTIONS(1674), - [anon_sym_LT] = ACTIONS(1674), - [anon_sym_TILDE] = ACTIONS(1672), - [anon_sym_void] = ACTIONS(1674), - [anon_sym_delete] = ACTIONS(1674), - [anon_sym_PLUS_PLUS] = ACTIONS(1672), - [anon_sym_DASH_DASH] = ACTIONS(1672), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1672), - [sym_number] = ACTIONS(1672), - [sym_private_property_identifier] = ACTIONS(1672), - [sym_this] = ACTIONS(1674), - [sym_super] = ACTIONS(1674), - [sym_true] = ACTIONS(1674), - [sym_false] = ACTIONS(1674), - [sym_null] = ACTIONS(1674), - [sym_undefined] = ACTIONS(1674), - [anon_sym_AT] = ACTIONS(1672), - [anon_sym_static] = ACTIONS(1674), - [anon_sym_readonly] = ACTIONS(1674), - [anon_sym_get] = ACTIONS(1674), - [anon_sym_set] = ACTIONS(1674), - [anon_sym_declare] = ACTIONS(1674), - [anon_sym_public] = ACTIONS(1674), - [anon_sym_private] = ACTIONS(1674), - [anon_sym_protected] = ACTIONS(1674), - [anon_sym_override] = ACTIONS(1674), - [anon_sym_module] = ACTIONS(1674), - [anon_sym_any] = ACTIONS(1674), - [anon_sym_number] = ACTIONS(1674), - [anon_sym_boolean] = ACTIONS(1674), - [anon_sym_string] = ACTIONS(1674), - [anon_sym_symbol] = ACTIONS(1674), - [anon_sym_object] = ACTIONS(1674), - [anon_sym_abstract] = ACTIONS(1674), - [anon_sym_interface] = ACTIONS(1674), - [anon_sym_enum] = ACTIONS(1674), + [ts_builtin_sym_end] = ACTIONS(1809), + [sym_identifier] = ACTIONS(1811), + [anon_sym_export] = ACTIONS(1811), + [anon_sym_default] = ACTIONS(1811), + [anon_sym_type] = ACTIONS(1811), + [anon_sym_namespace] = ACTIONS(1811), + [anon_sym_LBRACE] = ACTIONS(1809), + [anon_sym_COMMA] = ACTIONS(1809), + [anon_sym_RBRACE] = ACTIONS(1809), + [anon_sym_typeof] = ACTIONS(1811), + [anon_sym_import] = ACTIONS(1811), + [anon_sym_with] = ACTIONS(1811), + [anon_sym_var] = ACTIONS(1811), + [anon_sym_let] = ACTIONS(1811), + [anon_sym_const] = ACTIONS(1811), + [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_else] = ACTIONS(1811), + [anon_sym_if] = ACTIONS(1811), + [anon_sym_switch] = ACTIONS(1811), + [anon_sym_for] = ACTIONS(1811), + [anon_sym_LPAREN] = ACTIONS(1809), + [anon_sym_SEMI] = ACTIONS(1809), + [anon_sym_await] = ACTIONS(1811), + [anon_sym_while] = ACTIONS(1811), + [anon_sym_do] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1811), + [anon_sym_break] = ACTIONS(1811), + [anon_sym_continue] = ACTIONS(1811), + [anon_sym_debugger] = ACTIONS(1811), + [anon_sym_return] = ACTIONS(1811), + [anon_sym_throw] = ACTIONS(1811), + [anon_sym_case] = ACTIONS(1811), + [anon_sym_yield] = ACTIONS(1811), + [anon_sym_LBRACK] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1809), + [anon_sym_SQUOTE] = ACTIONS(1809), + [anon_sym_class] = ACTIONS(1811), + [anon_sym_async] = ACTIONS(1811), + [anon_sym_function] = ACTIONS(1811), + [anon_sym_new] = ACTIONS(1811), + [anon_sym_using] = ACTIONS(1811), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_SLASH] = ACTIONS(1811), + [anon_sym_LT] = ACTIONS(1809), + [anon_sym_TILDE] = ACTIONS(1809), + [anon_sym_void] = ACTIONS(1811), + [anon_sym_delete] = ACTIONS(1811), + [anon_sym_PLUS_PLUS] = ACTIONS(1809), + [anon_sym_DASH_DASH] = ACTIONS(1809), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1809), + [sym_number] = ACTIONS(1809), + [sym_private_property_identifier] = ACTIONS(1809), + [sym_this] = ACTIONS(1811), + [sym_super] = ACTIONS(1811), + [sym_true] = ACTIONS(1811), + [sym_false] = ACTIONS(1811), + [sym_null] = ACTIONS(1811), + [sym_undefined] = ACTIONS(1811), + [anon_sym_AT] = ACTIONS(1809), + [anon_sym_static] = ACTIONS(1811), + [anon_sym_readonly] = ACTIONS(1811), + [anon_sym_get] = ACTIONS(1811), + [anon_sym_set] = ACTIONS(1811), + [anon_sym_declare] = ACTIONS(1811), + [anon_sym_public] = ACTIONS(1811), + [anon_sym_private] = ACTIONS(1811), + [anon_sym_protected] = ACTIONS(1811), + [anon_sym_override] = ACTIONS(1811), + [anon_sym_module] = ACTIONS(1811), + [anon_sym_any] = ACTIONS(1811), + [anon_sym_number] = ACTIONS(1811), + [anon_sym_boolean] = ACTIONS(1811), + [anon_sym_string] = ACTIONS(1811), + [anon_sym_symbol] = ACTIONS(1811), + [anon_sym_object] = ACTIONS(1811), + [anon_sym_abstract] = ACTIONS(1811), + [anon_sym_interface] = ACTIONS(1811), + [anon_sym_enum] = ACTIONS(1811), + [anon_sym_PIPE_RBRACE] = ACTIONS(1809), + [sym__automatic_semicolon] = ACTIONS(2438), [sym_html_comment] = ACTIONS(5), }, [740] = { - [sym__call_signature] = STATE(5849), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2421), - [anon_sym_export] = ACTIONS(2423), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2423), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2423), - [anon_sym_let] = ACTIONS(2423), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2423), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(901), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2423), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2423), - [anon_sym_readonly] = ACTIONS(2423), - [anon_sym_get] = ACTIONS(2423), - [anon_sym_set] = ACTIONS(2423), - [anon_sym_declare] = ACTIONS(2423), - [anon_sym_public] = ACTIONS(2423), - [anon_sym_private] = ACTIONS(2423), - [anon_sym_protected] = ACTIONS(2423), - [anon_sym_override] = ACTIONS(2423), - [anon_sym_module] = ACTIONS(2423), - [anon_sym_any] = ACTIONS(2423), - [anon_sym_number] = ACTIONS(2423), - [anon_sym_boolean] = ACTIONS(2423), - [anon_sym_string] = ACTIONS(2423), - [anon_sym_symbol] = ACTIONS(2423), - [anon_sym_object] = ACTIONS(2423), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [ts_builtin_sym_end] = ACTIONS(1723), + [sym_identifier] = ACTIONS(1725), + [anon_sym_export] = ACTIONS(1725), + [anon_sym_default] = ACTIONS(1725), + [anon_sym_type] = ACTIONS(1725), + [anon_sym_namespace] = ACTIONS(1725), + [anon_sym_LBRACE] = ACTIONS(1723), + [anon_sym_COMMA] = ACTIONS(1723), + [anon_sym_RBRACE] = ACTIONS(1723), + [anon_sym_typeof] = ACTIONS(1725), + [anon_sym_import] = ACTIONS(1725), + [anon_sym_with] = ACTIONS(1725), + [anon_sym_var] = ACTIONS(1725), + [anon_sym_let] = ACTIONS(1725), + [anon_sym_const] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1723), + [anon_sym_else] = ACTIONS(1725), + [anon_sym_if] = ACTIONS(1725), + [anon_sym_switch] = ACTIONS(1725), + [anon_sym_for] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1723), + [anon_sym_SEMI] = ACTIONS(1723), + [anon_sym_await] = ACTIONS(1725), + [anon_sym_while] = ACTIONS(1725), + [anon_sym_do] = ACTIONS(1725), + [anon_sym_try] = 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_case] = ACTIONS(1725), + [anon_sym_yield] = ACTIONS(1725), + [anon_sym_LBRACK] = ACTIONS(1723), + [anon_sym_DQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_class] = ACTIONS(1725), + [anon_sym_async] = ACTIONS(1725), + [anon_sym_function] = ACTIONS(1725), + [anon_sym_new] = ACTIONS(1725), + [anon_sym_using] = ACTIONS(1725), + [anon_sym_PLUS] = ACTIONS(1725), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_SLASH] = ACTIONS(1725), + [anon_sym_LT] = ACTIONS(1723), + [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), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1723), + [sym_number] = ACTIONS(1723), + [sym_private_property_identifier] = 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_readonly] = 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_override] = 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_object] = ACTIONS(1725), + [anon_sym_abstract] = ACTIONS(1725), + [anon_sym_interface] = ACTIONS(1725), + [anon_sym_enum] = ACTIONS(1725), + [anon_sym_PIPE_RBRACE] = ACTIONS(1723), + [sym__automatic_semicolon] = ACTIONS(1723), [sym_html_comment] = ACTIONS(5), }, [741] = { - [sym__call_signature] = STATE(5970), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2451), - [anon_sym_export] = ACTIONS(2453), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2453), - [anon_sym_EQ] = ACTIONS(962), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2453), - [anon_sym_let] = ACTIONS(2453), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2453), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(968), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2453), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2453), - [anon_sym_readonly] = ACTIONS(2453), - [anon_sym_get] = ACTIONS(2453), - [anon_sym_set] = ACTIONS(2453), - [anon_sym_declare] = ACTIONS(2453), - [anon_sym_public] = ACTIONS(2453), - [anon_sym_private] = ACTIONS(2453), - [anon_sym_protected] = ACTIONS(2453), - [anon_sym_override] = ACTIONS(2453), - [anon_sym_module] = ACTIONS(2453), - [anon_sym_any] = ACTIONS(2453), - [anon_sym_number] = ACTIONS(2453), - [anon_sym_boolean] = ACTIONS(2453), - [anon_sym_string] = ACTIONS(2453), - [anon_sym_symbol] = ACTIONS(2453), - [anon_sym_object] = ACTIONS(2453), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [ts_builtin_sym_end] = ACTIONS(1809), + [sym_identifier] = ACTIONS(1811), + [anon_sym_export] = ACTIONS(1811), + [anon_sym_default] = ACTIONS(1811), + [anon_sym_type] = ACTIONS(1811), + [anon_sym_namespace] = ACTIONS(1811), + [anon_sym_LBRACE] = ACTIONS(1809), + [anon_sym_COMMA] = ACTIONS(1809), + [anon_sym_RBRACE] = ACTIONS(1809), + [anon_sym_typeof] = ACTIONS(1811), + [anon_sym_import] = ACTIONS(1811), + [anon_sym_with] = ACTIONS(1811), + [anon_sym_var] = ACTIONS(1811), + [anon_sym_let] = ACTIONS(1811), + [anon_sym_const] = ACTIONS(1811), + [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_else] = ACTIONS(1811), + [anon_sym_if] = ACTIONS(1811), + [anon_sym_switch] = ACTIONS(1811), + [anon_sym_for] = ACTIONS(1811), + [anon_sym_LPAREN] = ACTIONS(1809), + [anon_sym_SEMI] = ACTIONS(1809), + [anon_sym_await] = ACTIONS(1811), + [anon_sym_while] = ACTIONS(1811), + [anon_sym_do] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1811), + [anon_sym_break] = ACTIONS(1811), + [anon_sym_continue] = ACTIONS(1811), + [anon_sym_debugger] = ACTIONS(1811), + [anon_sym_return] = ACTIONS(1811), + [anon_sym_throw] = ACTIONS(1811), + [anon_sym_case] = ACTIONS(1811), + [anon_sym_catch] = ACTIONS(1811), + [anon_sym_finally] = ACTIONS(1811), + [anon_sym_yield] = ACTIONS(1811), + [anon_sym_LBRACK] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1809), + [anon_sym_SQUOTE] = ACTIONS(1809), + [anon_sym_class] = ACTIONS(1811), + [anon_sym_async] = ACTIONS(1811), + [anon_sym_function] = ACTIONS(1811), + [anon_sym_new] = ACTIONS(1811), + [anon_sym_using] = ACTIONS(1811), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_SLASH] = ACTIONS(1811), + [anon_sym_LT] = ACTIONS(1809), + [anon_sym_TILDE] = ACTIONS(1809), + [anon_sym_void] = ACTIONS(1811), + [anon_sym_delete] = ACTIONS(1811), + [anon_sym_PLUS_PLUS] = ACTIONS(1809), + [anon_sym_DASH_DASH] = ACTIONS(1809), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1809), + [sym_number] = ACTIONS(1809), + [sym_private_property_identifier] = ACTIONS(1809), + [sym_this] = ACTIONS(1811), + [sym_super] = ACTIONS(1811), + [sym_true] = ACTIONS(1811), + [sym_false] = ACTIONS(1811), + [sym_null] = ACTIONS(1811), + [sym_undefined] = ACTIONS(1811), + [anon_sym_AT] = ACTIONS(1809), + [anon_sym_static] = ACTIONS(1811), + [anon_sym_readonly] = ACTIONS(1811), + [anon_sym_get] = ACTIONS(1811), + [anon_sym_set] = ACTIONS(1811), + [anon_sym_declare] = ACTIONS(1811), + [anon_sym_public] = ACTIONS(1811), + [anon_sym_private] = ACTIONS(1811), + [anon_sym_protected] = ACTIONS(1811), + [anon_sym_override] = ACTIONS(1811), + [anon_sym_module] = ACTIONS(1811), + [anon_sym_any] = ACTIONS(1811), + [anon_sym_number] = ACTIONS(1811), + [anon_sym_boolean] = ACTIONS(1811), + [anon_sym_string] = ACTIONS(1811), + [anon_sym_symbol] = ACTIONS(1811), + [anon_sym_object] = ACTIONS(1811), + [anon_sym_abstract] = ACTIONS(1811), + [anon_sym_interface] = ACTIONS(1811), + [anon_sym_enum] = ACTIONS(1811), [sym_html_comment] = ACTIONS(5), }, [742] = { - [sym__call_signature] = STATE(5970), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2451), - [anon_sym_export] = ACTIONS(2453), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2453), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2453), - [anon_sym_let] = ACTIONS(2453), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2453), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(968), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2453), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2453), - [anon_sym_readonly] = ACTIONS(2453), - [anon_sym_get] = ACTIONS(2453), - [anon_sym_set] = ACTIONS(2453), - [anon_sym_declare] = ACTIONS(2453), - [anon_sym_public] = ACTIONS(2453), - [anon_sym_private] = ACTIONS(2453), - [anon_sym_protected] = ACTIONS(2453), - [anon_sym_override] = ACTIONS(2453), - [anon_sym_module] = ACTIONS(2453), - [anon_sym_any] = ACTIONS(2453), - [anon_sym_number] = ACTIONS(2453), - [anon_sym_boolean] = ACTIONS(2453), - [anon_sym_string] = ACTIONS(2453), - [anon_sym_symbol] = ACTIONS(2453), - [anon_sym_object] = ACTIONS(2453), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_finally_clause] = STATE(903), + [ts_builtin_sym_end] = ACTIONS(2440), + [sym_identifier] = ACTIONS(2442), + [anon_sym_export] = ACTIONS(2442), + [anon_sym_default] = ACTIONS(2442), + [anon_sym_type] = ACTIONS(2442), + [anon_sym_namespace] = ACTIONS(2442), + [anon_sym_LBRACE] = ACTIONS(2440), + [anon_sym_RBRACE] = ACTIONS(2440), + [anon_sym_typeof] = ACTIONS(2442), + [anon_sym_import] = ACTIONS(2442), + [anon_sym_with] = ACTIONS(2442), + [anon_sym_var] = ACTIONS(2442), + [anon_sym_let] = ACTIONS(2442), + [anon_sym_const] = ACTIONS(2442), + [anon_sym_BANG] = ACTIONS(2440), + [anon_sym_else] = ACTIONS(2442), + [anon_sym_if] = ACTIONS(2442), + [anon_sym_switch] = ACTIONS(2442), + [anon_sym_for] = ACTIONS(2442), + [anon_sym_LPAREN] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2440), + [anon_sym_await] = ACTIONS(2442), + [anon_sym_while] = ACTIONS(2442), + [anon_sym_do] = ACTIONS(2442), + [anon_sym_try] = ACTIONS(2442), + [anon_sym_break] = ACTIONS(2442), + [anon_sym_continue] = ACTIONS(2442), + [anon_sym_debugger] = ACTIONS(2442), + [anon_sym_return] = ACTIONS(2442), + [anon_sym_throw] = ACTIONS(2442), + [anon_sym_case] = ACTIONS(2442), + [anon_sym_finally] = ACTIONS(2430), + [anon_sym_yield] = ACTIONS(2442), + [anon_sym_LBRACK] = ACTIONS(2440), + [anon_sym_DQUOTE] = ACTIONS(2440), + [anon_sym_SQUOTE] = ACTIONS(2440), + [anon_sym_class] = ACTIONS(2442), + [anon_sym_async] = ACTIONS(2442), + [anon_sym_function] = ACTIONS(2442), + [anon_sym_new] = ACTIONS(2442), + [anon_sym_using] = ACTIONS(2442), + [anon_sym_PLUS] = ACTIONS(2442), + [anon_sym_DASH] = ACTIONS(2442), + [anon_sym_SLASH] = ACTIONS(2442), + [anon_sym_LT] = ACTIONS(2440), + [anon_sym_TILDE] = ACTIONS(2440), + [anon_sym_void] = ACTIONS(2442), + [anon_sym_delete] = ACTIONS(2442), + [anon_sym_PLUS_PLUS] = ACTIONS(2440), + [anon_sym_DASH_DASH] = ACTIONS(2440), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2440), + [sym_number] = ACTIONS(2440), + [sym_private_property_identifier] = ACTIONS(2440), + [sym_this] = ACTIONS(2442), + [sym_super] = ACTIONS(2442), + [sym_true] = ACTIONS(2442), + [sym_false] = ACTIONS(2442), + [sym_null] = ACTIONS(2442), + [sym_undefined] = ACTIONS(2442), + [anon_sym_AT] = ACTIONS(2440), + [anon_sym_static] = ACTIONS(2442), + [anon_sym_readonly] = ACTIONS(2442), + [anon_sym_get] = ACTIONS(2442), + [anon_sym_set] = ACTIONS(2442), + [anon_sym_declare] = ACTIONS(2442), + [anon_sym_public] = ACTIONS(2442), + [anon_sym_private] = ACTIONS(2442), + [anon_sym_protected] = ACTIONS(2442), + [anon_sym_override] = ACTIONS(2442), + [anon_sym_module] = ACTIONS(2442), + [anon_sym_any] = ACTIONS(2442), + [anon_sym_number] = ACTIONS(2442), + [anon_sym_boolean] = ACTIONS(2442), + [anon_sym_string] = ACTIONS(2442), + [anon_sym_symbol] = ACTIONS(2442), + [anon_sym_object] = ACTIONS(2442), + [anon_sym_abstract] = ACTIONS(2442), + [anon_sym_interface] = ACTIONS(2442), + [anon_sym_enum] = ACTIONS(2442), [sym_html_comment] = ACTIONS(5), }, [743] = { - [sym__call_signature] = STATE(5864), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2397), - [anon_sym_export] = ACTIONS(2399), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2399), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2399), - [anon_sym_let] = ACTIONS(2399), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(855), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2399), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2399), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2399), - [anon_sym_readonly] = ACTIONS(2399), - [anon_sym_get] = ACTIONS(2399), - [anon_sym_set] = ACTIONS(2399), - [anon_sym_declare] = ACTIONS(2399), - [anon_sym_public] = ACTIONS(2399), - [anon_sym_private] = ACTIONS(2399), - [anon_sym_protected] = ACTIONS(2399), - [anon_sym_override] = ACTIONS(2399), - [anon_sym_module] = ACTIONS(2399), - [anon_sym_any] = ACTIONS(2399), - [anon_sym_number] = ACTIONS(2399), - [anon_sym_boolean] = ACTIONS(2399), - [anon_sym_string] = ACTIONS(2399), - [anon_sym_symbol] = ACTIONS(2399), - [anon_sym_object] = ACTIONS(2399), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5660), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [sym_identifier] = ACTIONS(2388), + [anon_sym_export] = ACTIONS(2390), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2390), + [anon_sym_EQ] = ACTIONS(977), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2390), + [anon_sym_let] = ACTIONS(2390), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2390), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2390), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_static] = ACTIONS(2390), + [anon_sym_readonly] = ACTIONS(2390), + [anon_sym_get] = ACTIONS(2390), + [anon_sym_set] = ACTIONS(2390), + [anon_sym_declare] = ACTIONS(2390), + [anon_sym_public] = ACTIONS(2390), + [anon_sym_private] = ACTIONS(2390), + [anon_sym_protected] = ACTIONS(2390), + [anon_sym_override] = ACTIONS(2390), + [anon_sym_module] = ACTIONS(2390), + [anon_sym_any] = ACTIONS(2390), + [anon_sym_number] = ACTIONS(2390), + [anon_sym_boolean] = ACTIONS(2390), + [anon_sym_string] = ACTIONS(2390), + [anon_sym_symbol] = ACTIONS(2390), + [anon_sym_object] = ACTIONS(2390), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [744] = { - [sym_finally_clause] = STATE(905), - [ts_builtin_sym_end] = ACTIONS(2455), - [sym_identifier] = ACTIONS(2457), - [anon_sym_export] = ACTIONS(2457), - [anon_sym_default] = ACTIONS(2457), - [anon_sym_type] = ACTIONS(2457), - [anon_sym_namespace] = ACTIONS(2457), - [anon_sym_LBRACE] = ACTIONS(2455), - [anon_sym_RBRACE] = ACTIONS(2455), - [anon_sym_typeof] = ACTIONS(2457), - [anon_sym_import] = ACTIONS(2457), - [anon_sym_with] = ACTIONS(2457), - [anon_sym_var] = ACTIONS(2457), - [anon_sym_let] = ACTIONS(2457), - [anon_sym_const] = ACTIONS(2457), - [anon_sym_BANG] = ACTIONS(2455), - [anon_sym_else] = ACTIONS(2457), - [anon_sym_if] = ACTIONS(2457), - [anon_sym_switch] = ACTIONS(2457), - [anon_sym_for] = ACTIONS(2457), - [anon_sym_LPAREN] = ACTIONS(2455), - [anon_sym_SEMI] = ACTIONS(2455), - [anon_sym_await] = ACTIONS(2457), - [anon_sym_while] = ACTIONS(2457), - [anon_sym_do] = ACTIONS(2457), - [anon_sym_try] = ACTIONS(2457), - [anon_sym_break] = ACTIONS(2457), - [anon_sym_continue] = ACTIONS(2457), - [anon_sym_debugger] = ACTIONS(2457), - [anon_sym_return] = ACTIONS(2457), - [anon_sym_throw] = ACTIONS(2457), - [anon_sym_case] = ACTIONS(2457), - [anon_sym_finally] = ACTIONS(2419), - [anon_sym_yield] = ACTIONS(2457), - [anon_sym_LBRACK] = ACTIONS(2455), - [sym_glimmer_opening_tag] = ACTIONS(2455), - [anon_sym_DQUOTE] = ACTIONS(2455), - [anon_sym_SQUOTE] = ACTIONS(2455), - [anon_sym_class] = ACTIONS(2457), - [anon_sym_async] = ACTIONS(2457), - [anon_sym_function] = ACTIONS(2457), - [anon_sym_new] = ACTIONS(2457), - [anon_sym_using] = ACTIONS(2457), - [anon_sym_PLUS] = ACTIONS(2457), - [anon_sym_DASH] = ACTIONS(2457), - [anon_sym_SLASH] = ACTIONS(2457), - [anon_sym_LT] = ACTIONS(2457), - [anon_sym_TILDE] = ACTIONS(2455), - [anon_sym_void] = ACTIONS(2457), - [anon_sym_delete] = ACTIONS(2457), - [anon_sym_PLUS_PLUS] = ACTIONS(2455), - [anon_sym_DASH_DASH] = ACTIONS(2455), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2455), - [sym_number] = ACTIONS(2455), - [sym_private_property_identifier] = ACTIONS(2455), - [sym_this] = ACTIONS(2457), - [sym_super] = ACTIONS(2457), - [sym_true] = ACTIONS(2457), - [sym_false] = ACTIONS(2457), - [sym_null] = ACTIONS(2457), - [sym_undefined] = ACTIONS(2457), - [anon_sym_AT] = ACTIONS(2455), - [anon_sym_static] = ACTIONS(2457), - [anon_sym_readonly] = ACTIONS(2457), - [anon_sym_get] = ACTIONS(2457), - [anon_sym_set] = ACTIONS(2457), - [anon_sym_declare] = ACTIONS(2457), - [anon_sym_public] = ACTIONS(2457), - [anon_sym_private] = ACTIONS(2457), - [anon_sym_protected] = ACTIONS(2457), - [anon_sym_override] = ACTIONS(2457), - [anon_sym_module] = ACTIONS(2457), - [anon_sym_any] = ACTIONS(2457), - [anon_sym_number] = ACTIONS(2457), - [anon_sym_boolean] = ACTIONS(2457), - [anon_sym_string] = ACTIONS(2457), - [anon_sym_symbol] = ACTIONS(2457), - [anon_sym_object] = ACTIONS(2457), - [anon_sym_abstract] = ACTIONS(2457), - [anon_sym_interface] = ACTIONS(2457), - [anon_sym_enum] = ACTIONS(2457), + [sym__call_signature] = STATE(5660), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [sym_identifier] = ACTIONS(2388), + [anon_sym_export] = ACTIONS(2390), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2390), + [anon_sym_EQ] = ACTIONS(979), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2390), + [anon_sym_let] = ACTIONS(2390), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2390), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2390), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_static] = ACTIONS(2390), + [anon_sym_readonly] = ACTIONS(2390), + [anon_sym_get] = ACTIONS(2390), + [anon_sym_set] = ACTIONS(2390), + [anon_sym_declare] = ACTIONS(2390), + [anon_sym_public] = ACTIONS(2390), + [anon_sym_private] = ACTIONS(2390), + [anon_sym_protected] = ACTIONS(2390), + [anon_sym_override] = ACTIONS(2390), + [anon_sym_module] = ACTIONS(2390), + [anon_sym_any] = ACTIONS(2390), + [anon_sym_number] = ACTIONS(2390), + [anon_sym_boolean] = ACTIONS(2390), + [anon_sym_string] = ACTIONS(2390), + [anon_sym_symbol] = ACTIONS(2390), + [anon_sym_object] = ACTIONS(2390), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [745] = { - [ts_builtin_sym_end] = ACTIONS(2459), - [sym_identifier] = ACTIONS(2461), - [anon_sym_export] = ACTIONS(2461), - [anon_sym_default] = ACTIONS(2461), - [anon_sym_type] = ACTIONS(2461), - [anon_sym_namespace] = ACTIONS(2461), - [anon_sym_LBRACE] = ACTIONS(2459), - [anon_sym_RBRACE] = ACTIONS(2459), - [anon_sym_typeof] = ACTIONS(2461), - [anon_sym_import] = ACTIONS(2461), - [anon_sym_with] = ACTIONS(2461), - [anon_sym_var] = ACTIONS(2461), - [anon_sym_let] = ACTIONS(2461), - [anon_sym_const] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2461), - [anon_sym_if] = ACTIONS(2461), - [anon_sym_switch] = ACTIONS(2461), - [anon_sym_for] = ACTIONS(2461), - [anon_sym_LPAREN] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2459), - [anon_sym_RPAREN] = ACTIONS(2459), - [anon_sym_await] = ACTIONS(2461), - [anon_sym_while] = ACTIONS(2461), - [anon_sym_do] = ACTIONS(2461), - [anon_sym_try] = ACTIONS(2461), - [anon_sym_break] = ACTIONS(2461), - [anon_sym_continue] = ACTIONS(2461), - [anon_sym_debugger] = ACTIONS(2461), - [anon_sym_return] = ACTIONS(2461), - [anon_sym_throw] = ACTIONS(2461), - [anon_sym_case] = ACTIONS(2461), - [anon_sym_yield] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [sym_glimmer_opening_tag] = ACTIONS(2459), - [anon_sym_DQUOTE] = ACTIONS(2459), - [anon_sym_SQUOTE] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2461), - [anon_sym_async] = ACTIONS(2461), - [anon_sym_function] = ACTIONS(2461), - [anon_sym_new] = ACTIONS(2461), - [anon_sym_using] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2461), - [anon_sym_SLASH] = ACTIONS(2461), - [anon_sym_LT] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2459), - [anon_sym_void] = ACTIONS(2461), - [anon_sym_delete] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2459), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2459), - [sym_number] = ACTIONS(2459), - [sym_private_property_identifier] = ACTIONS(2459), - [sym_this] = ACTIONS(2461), - [sym_super] = ACTIONS(2461), - [sym_true] = ACTIONS(2461), - [sym_false] = ACTIONS(2461), - [sym_null] = ACTIONS(2461), - [sym_undefined] = ACTIONS(2461), - [anon_sym_AT] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2461), - [anon_sym_readonly] = ACTIONS(2461), - [anon_sym_get] = ACTIONS(2461), - [anon_sym_set] = ACTIONS(2461), - [anon_sym_declare] = ACTIONS(2461), - [anon_sym_public] = ACTIONS(2461), - [anon_sym_private] = ACTIONS(2461), - [anon_sym_protected] = ACTIONS(2461), - [anon_sym_override] = ACTIONS(2461), - [anon_sym_module] = ACTIONS(2461), - [anon_sym_any] = ACTIONS(2461), - [anon_sym_number] = ACTIONS(2461), - [anon_sym_boolean] = ACTIONS(2461), - [anon_sym_string] = ACTIONS(2461), - [anon_sym_symbol] = ACTIONS(2461), - [anon_sym_object] = ACTIONS(2461), - [anon_sym_abstract] = ACTIONS(2461), - [anon_sym_interface] = ACTIONS(2461), - [anon_sym_enum] = ACTIONS(2461), + [sym__call_signature] = STATE(5660), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [sym_identifier] = ACTIONS(2388), + [anon_sym_export] = ACTIONS(2390), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2390), + [anon_sym_EQ] = ACTIONS(1035), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2390), + [anon_sym_let] = ACTIONS(2390), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2390), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2390), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_static] = ACTIONS(2390), + [anon_sym_readonly] = ACTIONS(2390), + [anon_sym_get] = ACTIONS(2390), + [anon_sym_set] = ACTIONS(2390), + [anon_sym_declare] = ACTIONS(2390), + [anon_sym_public] = ACTIONS(2390), + [anon_sym_private] = ACTIONS(2390), + [anon_sym_protected] = ACTIONS(2390), + [anon_sym_override] = ACTIONS(2390), + [anon_sym_module] = ACTIONS(2390), + [anon_sym_any] = ACTIONS(2390), + [anon_sym_number] = ACTIONS(2390), + [anon_sym_boolean] = ACTIONS(2390), + [anon_sym_string] = ACTIONS(2390), + [anon_sym_symbol] = ACTIONS(2390), + [anon_sym_object] = ACTIONS(2390), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [746] = { - [sym__call_signature] = STATE(5864), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2397), - [anon_sym_export] = ACTIONS(2399), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2399), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2399), - [anon_sym_let] = ACTIONS(2399), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2399), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2399), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2399), - [anon_sym_readonly] = ACTIONS(2399), - [anon_sym_get] = ACTIONS(2399), - [anon_sym_set] = ACTIONS(2399), - [anon_sym_declare] = ACTIONS(2399), - [anon_sym_public] = ACTIONS(2399), - [anon_sym_private] = ACTIONS(2399), - [anon_sym_protected] = ACTIONS(2399), - [anon_sym_override] = ACTIONS(2399), - [anon_sym_module] = ACTIONS(2399), - [anon_sym_any] = ACTIONS(2399), - [anon_sym_number] = ACTIONS(2399), - [anon_sym_boolean] = ACTIONS(2399), - [anon_sym_string] = ACTIONS(2399), - [anon_sym_symbol] = ACTIONS(2399), - [anon_sym_object] = ACTIONS(2399), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5660), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [sym_identifier] = ACTIONS(2388), + [anon_sym_export] = ACTIONS(2390), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2390), + [anon_sym_EQ] = ACTIONS(981), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2390), + [anon_sym_let] = ACTIONS(2390), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2390), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2390), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_static] = ACTIONS(2390), + [anon_sym_readonly] = ACTIONS(2390), + [anon_sym_get] = ACTIONS(2390), + [anon_sym_set] = ACTIONS(2390), + [anon_sym_declare] = ACTIONS(2390), + [anon_sym_public] = ACTIONS(2390), + [anon_sym_private] = ACTIONS(2390), + [anon_sym_protected] = ACTIONS(2390), + [anon_sym_override] = ACTIONS(2390), + [anon_sym_module] = ACTIONS(2390), + [anon_sym_any] = ACTIONS(2390), + [anon_sym_number] = ACTIONS(2390), + [anon_sym_boolean] = ACTIONS(2390), + [anon_sym_string] = ACTIONS(2390), + [anon_sym_symbol] = ACTIONS(2390), + [anon_sym_object] = ACTIONS(2390), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [747] = { - [sym_statement_block] = STATE(869), - [ts_builtin_sym_end] = ACTIONS(1672), - [sym_identifier] = ACTIONS(1674), - [anon_sym_export] = ACTIONS(1674), - [anon_sym_default] = ACTIONS(1674), - [anon_sym_type] = ACTIONS(1674), - [anon_sym_namespace] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(2445), - [anon_sym_RBRACE] = ACTIONS(1672), - [anon_sym_typeof] = ACTIONS(1674), - [anon_sym_import] = ACTIONS(1674), - [anon_sym_with] = ACTIONS(1674), - [anon_sym_var] = ACTIONS(1674), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_BANG] = ACTIONS(1672), - [anon_sym_else] = ACTIONS(1674), - [anon_sym_if] = ACTIONS(1674), - [anon_sym_switch] = ACTIONS(1674), - [anon_sym_for] = ACTIONS(1674), - [anon_sym_LPAREN] = ACTIONS(1672), - [anon_sym_SEMI] = ACTIONS(1672), - [anon_sym_await] = ACTIONS(1674), - [anon_sym_while] = ACTIONS(1674), - [anon_sym_do] = ACTIONS(1674), - [anon_sym_try] = ACTIONS(1674), - [anon_sym_break] = ACTIONS(1674), - [anon_sym_continue] = ACTIONS(1674), - [anon_sym_debugger] = ACTIONS(1674), - [anon_sym_return] = ACTIONS(1674), - [anon_sym_throw] = ACTIONS(1674), - [anon_sym_case] = ACTIONS(1674), - [anon_sym_yield] = ACTIONS(1674), - [anon_sym_LBRACK] = ACTIONS(1672), - [sym_glimmer_opening_tag] = ACTIONS(1672), - [anon_sym_DQUOTE] = ACTIONS(1672), - [anon_sym_SQUOTE] = ACTIONS(1672), - [anon_sym_class] = ACTIONS(1674), - [anon_sym_async] = ACTIONS(1674), - [anon_sym_function] = ACTIONS(1674), - [anon_sym_new] = ACTIONS(1674), - [anon_sym_using] = ACTIONS(1674), - [anon_sym_PLUS] = ACTIONS(1674), - [anon_sym_DASH] = ACTIONS(1674), - [anon_sym_SLASH] = ACTIONS(1674), - [anon_sym_LT] = ACTIONS(1674), - [anon_sym_TILDE] = ACTIONS(1672), - [anon_sym_void] = ACTIONS(1674), - [anon_sym_delete] = ACTIONS(1674), - [anon_sym_PLUS_PLUS] = ACTIONS(1672), - [anon_sym_DASH_DASH] = ACTIONS(1672), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1672), - [sym_number] = ACTIONS(1672), - [sym_private_property_identifier] = ACTIONS(1672), - [sym_this] = ACTIONS(1674), - [sym_super] = ACTIONS(1674), - [sym_true] = ACTIONS(1674), - [sym_false] = ACTIONS(1674), - [sym_null] = ACTIONS(1674), - [sym_undefined] = ACTIONS(1674), - [anon_sym_AT] = ACTIONS(1672), - [anon_sym_static] = ACTIONS(1674), - [anon_sym_readonly] = ACTIONS(1674), - [anon_sym_get] = ACTIONS(1674), - [anon_sym_set] = ACTIONS(1674), - [anon_sym_declare] = ACTIONS(1674), - [anon_sym_public] = ACTIONS(1674), - [anon_sym_private] = ACTIONS(1674), - [anon_sym_protected] = ACTIONS(1674), - [anon_sym_override] = ACTIONS(1674), - [anon_sym_module] = ACTIONS(1674), - [anon_sym_any] = ACTIONS(1674), - [anon_sym_number] = ACTIONS(1674), - [anon_sym_boolean] = ACTIONS(1674), - [anon_sym_string] = ACTIONS(1674), - [anon_sym_symbol] = ACTIONS(1674), - [anon_sym_object] = ACTIONS(1674), - [anon_sym_abstract] = ACTIONS(1674), - [anon_sym_interface] = ACTIONS(1674), - [anon_sym_enum] = ACTIONS(1674), + [sym__call_signature] = STATE(5660), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [sym_identifier] = ACTIONS(2388), + [anon_sym_export] = ACTIONS(2390), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2390), + [anon_sym_EQ] = ACTIONS(973), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2390), + [anon_sym_let] = ACTIONS(2390), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2390), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2390), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_static] = ACTIONS(2390), + [anon_sym_readonly] = ACTIONS(2390), + [anon_sym_get] = ACTIONS(2390), + [anon_sym_set] = ACTIONS(2390), + [anon_sym_declare] = ACTIONS(2390), + [anon_sym_public] = ACTIONS(2390), + [anon_sym_private] = ACTIONS(2390), + [anon_sym_protected] = ACTIONS(2390), + [anon_sym_override] = ACTIONS(2390), + [anon_sym_module] = ACTIONS(2390), + [anon_sym_any] = ACTIONS(2390), + [anon_sym_number] = ACTIONS(2390), + [anon_sym_boolean] = ACTIONS(2390), + [anon_sym_string] = ACTIONS(2390), + [anon_sym_symbol] = ACTIONS(2390), + [anon_sym_object] = ACTIONS(2390), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [748] = { - [ts_builtin_sym_end] = ACTIONS(2463), - [sym_identifier] = ACTIONS(2465), - [anon_sym_export] = ACTIONS(2465), - [anon_sym_default] = ACTIONS(2465), - [anon_sym_type] = ACTIONS(2465), - [anon_sym_namespace] = ACTIONS(2465), - [anon_sym_LBRACE] = ACTIONS(2463), - [anon_sym_RBRACE] = ACTIONS(2463), - [anon_sym_typeof] = ACTIONS(2465), - [anon_sym_import] = ACTIONS(2465), - [anon_sym_with] = ACTIONS(2465), - [anon_sym_var] = ACTIONS(2465), - [anon_sym_let] = ACTIONS(2465), - [anon_sym_const] = ACTIONS(2465), - [anon_sym_BANG] = ACTIONS(2463), - [anon_sym_else] = ACTIONS(2465), - [anon_sym_if] = ACTIONS(2465), - [anon_sym_switch] = ACTIONS(2465), - [anon_sym_for] = ACTIONS(2465), - [anon_sym_LPAREN] = ACTIONS(2463), - [anon_sym_SEMI] = ACTIONS(2467), - [anon_sym_await] = ACTIONS(2465), - [anon_sym_while] = ACTIONS(2465), - [anon_sym_do] = ACTIONS(2465), - [anon_sym_try] = ACTIONS(2465), - [anon_sym_break] = ACTIONS(2465), - [anon_sym_continue] = ACTIONS(2465), - [anon_sym_debugger] = ACTIONS(2465), - [anon_sym_return] = ACTIONS(2465), - [anon_sym_throw] = ACTIONS(2465), - [anon_sym_case] = ACTIONS(2465), - [anon_sym_yield] = ACTIONS(2465), - [anon_sym_LBRACK] = ACTIONS(2463), - [sym_glimmer_opening_tag] = ACTIONS(2463), - [anon_sym_DQUOTE] = ACTIONS(2463), - [anon_sym_SQUOTE] = ACTIONS(2463), - [anon_sym_class] = ACTIONS(2465), - [anon_sym_async] = ACTIONS(2465), - [anon_sym_function] = ACTIONS(2465), - [anon_sym_new] = ACTIONS(2465), - [anon_sym_using] = ACTIONS(2465), - [anon_sym_PLUS] = ACTIONS(2465), - [anon_sym_DASH] = ACTIONS(2465), - [anon_sym_SLASH] = ACTIONS(2465), - [anon_sym_LT] = ACTIONS(2465), - [anon_sym_TILDE] = ACTIONS(2463), - [anon_sym_void] = ACTIONS(2465), - [anon_sym_delete] = ACTIONS(2465), - [anon_sym_PLUS_PLUS] = ACTIONS(2463), - [anon_sym_DASH_DASH] = ACTIONS(2463), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2463), - [sym_number] = ACTIONS(2463), - [sym_private_property_identifier] = ACTIONS(2463), - [sym_this] = ACTIONS(2465), - [sym_super] = ACTIONS(2465), - [sym_true] = ACTIONS(2465), - [sym_false] = ACTIONS(2465), - [sym_null] = ACTIONS(2465), - [sym_undefined] = ACTIONS(2465), - [anon_sym_AT] = ACTIONS(2463), - [anon_sym_static] = ACTIONS(2465), - [anon_sym_readonly] = ACTIONS(2465), - [anon_sym_get] = ACTIONS(2465), - [anon_sym_set] = ACTIONS(2465), - [anon_sym_declare] = ACTIONS(2465), - [anon_sym_public] = ACTIONS(2465), - [anon_sym_private] = ACTIONS(2465), - [anon_sym_protected] = ACTIONS(2465), - [anon_sym_override] = ACTIONS(2465), - [anon_sym_module] = ACTIONS(2465), - [anon_sym_any] = ACTIONS(2465), - [anon_sym_number] = ACTIONS(2465), - [anon_sym_boolean] = ACTIONS(2465), - [anon_sym_string] = ACTIONS(2465), - [anon_sym_symbol] = ACTIONS(2465), - [anon_sym_object] = ACTIONS(2465), - [anon_sym_abstract] = ACTIONS(2465), - [anon_sym_interface] = ACTIONS(2465), - [anon_sym_enum] = ACTIONS(2465), - [sym__automatic_semicolon] = ACTIONS(2467), + [sym__call_signature] = STATE(5660), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [sym_identifier] = ACTIONS(2388), + [anon_sym_export] = ACTIONS(2390), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2390), + [anon_sym_EQ] = ACTIONS(814), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2390), + [anon_sym_let] = ACTIONS(2390), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2390), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2390), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_static] = ACTIONS(2390), + [anon_sym_readonly] = ACTIONS(2390), + [anon_sym_get] = ACTIONS(2390), + [anon_sym_set] = ACTIONS(2390), + [anon_sym_declare] = ACTIONS(2390), + [anon_sym_public] = ACTIONS(2390), + [anon_sym_private] = ACTIONS(2390), + [anon_sym_protected] = ACTIONS(2390), + [anon_sym_override] = ACTIONS(2390), + [anon_sym_module] = ACTIONS(2390), + [anon_sym_any] = ACTIONS(2390), + [anon_sym_number] = ACTIONS(2390), + [anon_sym_boolean] = ACTIONS(2390), + [anon_sym_string] = ACTIONS(2390), + [anon_sym_symbol] = ACTIONS(2390), + [anon_sym_object] = ACTIONS(2390), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [749] = { - [sym__call_signature] = STATE(5864), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2397), - [anon_sym_export] = ACTIONS(2399), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2399), - [anon_sym_EQ] = ACTIONS(986), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2399), - [anon_sym_let] = ACTIONS(2399), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2399), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2399), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2399), - [anon_sym_readonly] = ACTIONS(2399), - [anon_sym_get] = ACTIONS(2399), - [anon_sym_set] = ACTIONS(2399), - [anon_sym_declare] = ACTIONS(2399), - [anon_sym_public] = ACTIONS(2399), - [anon_sym_private] = ACTIONS(2399), - [anon_sym_protected] = ACTIONS(2399), - [anon_sym_override] = ACTIONS(2399), - [anon_sym_module] = ACTIONS(2399), - [anon_sym_any] = ACTIONS(2399), - [anon_sym_number] = ACTIONS(2399), - [anon_sym_boolean] = ACTIONS(2399), - [anon_sym_string] = ACTIONS(2399), - [anon_sym_symbol] = ACTIONS(2399), - [anon_sym_object] = ACTIONS(2399), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5660), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [sym_identifier] = ACTIONS(2388), + [anon_sym_export] = ACTIONS(2390), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2390), + [anon_sym_EQ] = ACTIONS(967), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2390), + [anon_sym_let] = ACTIONS(2390), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2390), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2390), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_static] = ACTIONS(2390), + [anon_sym_readonly] = ACTIONS(2390), + [anon_sym_get] = ACTIONS(2390), + [anon_sym_set] = ACTIONS(2390), + [anon_sym_declare] = ACTIONS(2390), + [anon_sym_public] = ACTIONS(2390), + [anon_sym_private] = ACTIONS(2390), + [anon_sym_protected] = ACTIONS(2390), + [anon_sym_override] = ACTIONS(2390), + [anon_sym_module] = ACTIONS(2390), + [anon_sym_any] = ACTIONS(2390), + [anon_sym_number] = ACTIONS(2390), + [anon_sym_boolean] = ACTIONS(2390), + [anon_sym_string] = ACTIONS(2390), + [anon_sym_symbol] = ACTIONS(2390), + [anon_sym_object] = ACTIONS(2390), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [750] = { - [ts_builtin_sym_end] = ACTIONS(2469), - [sym_identifier] = ACTIONS(2471), - [anon_sym_export] = ACTIONS(2471), - [anon_sym_default] = ACTIONS(2471), - [anon_sym_type] = ACTIONS(2471), - [anon_sym_namespace] = ACTIONS(2471), - [anon_sym_LBRACE] = ACTIONS(2469), - [anon_sym_RBRACE] = ACTIONS(2469), - [anon_sym_typeof] = ACTIONS(2471), - [anon_sym_import] = ACTIONS(2471), - [anon_sym_with] = ACTIONS(2471), - [anon_sym_var] = ACTIONS(2471), - [anon_sym_let] = ACTIONS(2471), - [anon_sym_const] = ACTIONS(2471), - [anon_sym_BANG] = ACTIONS(2469), - [anon_sym_else] = ACTIONS(2471), - [anon_sym_if] = ACTIONS(2471), - [anon_sym_switch] = ACTIONS(2471), - [anon_sym_for] = ACTIONS(2471), - [anon_sym_LPAREN] = ACTIONS(2469), - [anon_sym_SEMI] = ACTIONS(2469), - [anon_sym_await] = ACTIONS(2471), - [anon_sym_while] = ACTIONS(2471), - [anon_sym_do] = ACTIONS(2471), - [anon_sym_try] = ACTIONS(2471), - [anon_sym_break] = ACTIONS(2471), - [anon_sym_continue] = ACTIONS(2471), - [anon_sym_debugger] = ACTIONS(2471), - [anon_sym_return] = ACTIONS(2471), - [anon_sym_throw] = ACTIONS(2471), - [anon_sym_case] = ACTIONS(2471), - [anon_sym_finally] = ACTIONS(2471), - [anon_sym_yield] = ACTIONS(2471), - [anon_sym_LBRACK] = ACTIONS(2469), - [sym_glimmer_opening_tag] = ACTIONS(2469), - [anon_sym_DQUOTE] = ACTIONS(2469), - [anon_sym_SQUOTE] = ACTIONS(2469), - [anon_sym_class] = ACTIONS(2471), - [anon_sym_async] = ACTIONS(2471), - [anon_sym_function] = ACTIONS(2471), - [anon_sym_new] = ACTIONS(2471), - [anon_sym_using] = ACTIONS(2471), - [anon_sym_PLUS] = ACTIONS(2471), - [anon_sym_DASH] = ACTIONS(2471), - [anon_sym_SLASH] = ACTIONS(2471), - [anon_sym_LT] = ACTIONS(2471), - [anon_sym_TILDE] = ACTIONS(2469), - [anon_sym_void] = ACTIONS(2471), - [anon_sym_delete] = ACTIONS(2471), - [anon_sym_PLUS_PLUS] = ACTIONS(2469), - [anon_sym_DASH_DASH] = ACTIONS(2469), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2469), - [sym_number] = ACTIONS(2469), - [sym_private_property_identifier] = ACTIONS(2469), - [sym_this] = ACTIONS(2471), - [sym_super] = ACTIONS(2471), - [sym_true] = ACTIONS(2471), - [sym_false] = ACTIONS(2471), - [sym_null] = ACTIONS(2471), - [sym_undefined] = ACTIONS(2471), - [anon_sym_AT] = ACTIONS(2469), - [anon_sym_static] = ACTIONS(2471), - [anon_sym_readonly] = ACTIONS(2471), - [anon_sym_get] = ACTIONS(2471), - [anon_sym_set] = ACTIONS(2471), - [anon_sym_declare] = ACTIONS(2471), - [anon_sym_public] = ACTIONS(2471), - [anon_sym_private] = ACTIONS(2471), - [anon_sym_protected] = ACTIONS(2471), - [anon_sym_override] = ACTIONS(2471), - [anon_sym_module] = ACTIONS(2471), - [anon_sym_any] = ACTIONS(2471), - [anon_sym_number] = ACTIONS(2471), - [anon_sym_boolean] = ACTIONS(2471), - [anon_sym_string] = ACTIONS(2471), - [anon_sym_symbol] = ACTIONS(2471), - [anon_sym_object] = ACTIONS(2471), - [anon_sym_abstract] = ACTIONS(2471), - [anon_sym_interface] = ACTIONS(2471), - [anon_sym_enum] = ACTIONS(2471), + [sym_statement_block] = STATE(911), + [ts_builtin_sym_end] = ACTIONS(1653), + [sym_identifier] = ACTIONS(1655), + [anon_sym_export] = ACTIONS(1655), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(1655), + [anon_sym_LBRACE] = ACTIONS(2444), + [anon_sym_RBRACE] = ACTIONS(1653), + [anon_sym_typeof] = ACTIONS(1655), + [anon_sym_import] = ACTIONS(1655), + [anon_sym_with] = ACTIONS(1655), + [anon_sym_var] = ACTIONS(1655), + [anon_sym_let] = ACTIONS(1655), + [anon_sym_const] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(1653), + [anon_sym_else] = ACTIONS(1655), + [anon_sym_if] = ACTIONS(1655), + [anon_sym_switch] = ACTIONS(1655), + [anon_sym_for] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1653), + [anon_sym_SEMI] = ACTIONS(1653), + [anon_sym_await] = ACTIONS(1655), + [anon_sym_while] = ACTIONS(1655), + [anon_sym_do] = ACTIONS(1655), + [anon_sym_try] = ACTIONS(1655), + [anon_sym_break] = ACTIONS(1655), + [anon_sym_continue] = ACTIONS(1655), + [anon_sym_debugger] = ACTIONS(1655), + [anon_sym_return] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1655), + [anon_sym_case] = ACTIONS(1655), + [anon_sym_yield] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DOT] = ACTIONS(2446), + [anon_sym_DQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_class] = ACTIONS(1655), + [anon_sym_async] = ACTIONS(1655), + [anon_sym_function] = ACTIONS(1655), + [anon_sym_new] = ACTIONS(1655), + [anon_sym_using] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT] = ACTIONS(1653), + [anon_sym_TILDE] = ACTIONS(1653), + [anon_sym_void] = ACTIONS(1655), + [anon_sym_delete] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1653), + [sym_number] = ACTIONS(1653), + [sym_private_property_identifier] = ACTIONS(1653), + [sym_this] = ACTIONS(1655), + [sym_super] = ACTIONS(1655), + [sym_true] = ACTIONS(1655), + [sym_false] = ACTIONS(1655), + [sym_null] = ACTIONS(1655), + [sym_undefined] = ACTIONS(1655), + [anon_sym_AT] = ACTIONS(1653), + [anon_sym_static] = ACTIONS(1655), + [anon_sym_readonly] = ACTIONS(1655), + [anon_sym_get] = ACTIONS(1655), + [anon_sym_set] = ACTIONS(1655), + [anon_sym_declare] = ACTIONS(1655), + [anon_sym_public] = ACTIONS(1655), + [anon_sym_private] = ACTIONS(1655), + [anon_sym_protected] = ACTIONS(1655), + [anon_sym_override] = ACTIONS(1655), + [anon_sym_module] = ACTIONS(1655), + [anon_sym_any] = ACTIONS(1655), + [anon_sym_number] = ACTIONS(1655), + [anon_sym_boolean] = ACTIONS(1655), + [anon_sym_string] = ACTIONS(1655), + [anon_sym_symbol] = ACTIONS(1655), + [anon_sym_object] = ACTIONS(1655), + [anon_sym_abstract] = ACTIONS(1655), + [anon_sym_interface] = ACTIONS(1655), + [anon_sym_enum] = ACTIONS(1655), [sym_html_comment] = ACTIONS(5), }, [751] = { - [ts_builtin_sym_end] = ACTIONS(2473), - [sym_identifier] = ACTIONS(2475), - [anon_sym_export] = ACTIONS(2475), - [anon_sym_default] = ACTIONS(2475), - [anon_sym_type] = ACTIONS(2475), - [anon_sym_namespace] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(2473), - [anon_sym_RBRACE] = ACTIONS(2473), - [anon_sym_typeof] = ACTIONS(2475), - [anon_sym_import] = ACTIONS(2475), - [anon_sym_with] = ACTIONS(2475), - [anon_sym_var] = ACTIONS(2475), - [anon_sym_let] = ACTIONS(2475), - [anon_sym_const] = ACTIONS(2475), - [anon_sym_BANG] = ACTIONS(2473), - [anon_sym_else] = ACTIONS(2475), - [anon_sym_if] = ACTIONS(2475), - [anon_sym_switch] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_SEMI] = ACTIONS(2473), - [anon_sym_await] = ACTIONS(2475), - [anon_sym_while] = ACTIONS(2475), - [anon_sym_do] = ACTIONS(2475), - [anon_sym_try] = ACTIONS(2475), - [anon_sym_break] = ACTIONS(2475), - [anon_sym_continue] = ACTIONS(2475), - [anon_sym_debugger] = ACTIONS(2475), - [anon_sym_return] = ACTIONS(2475), - [anon_sym_throw] = ACTIONS(2475), - [anon_sym_case] = ACTIONS(2475), - [anon_sym_finally] = ACTIONS(2475), - [anon_sym_yield] = ACTIONS(2475), - [anon_sym_LBRACK] = ACTIONS(2473), - [sym_glimmer_opening_tag] = ACTIONS(2473), - [anon_sym_DQUOTE] = ACTIONS(2473), - [anon_sym_SQUOTE] = ACTIONS(2473), - [anon_sym_class] = ACTIONS(2475), - [anon_sym_async] = ACTIONS(2475), - [anon_sym_function] = ACTIONS(2475), - [anon_sym_new] = ACTIONS(2475), - [anon_sym_using] = ACTIONS(2475), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_SLASH] = ACTIONS(2475), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_TILDE] = ACTIONS(2473), - [anon_sym_void] = ACTIONS(2475), - [anon_sym_delete] = ACTIONS(2475), - [anon_sym_PLUS_PLUS] = ACTIONS(2473), - [anon_sym_DASH_DASH] = ACTIONS(2473), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2473), - [sym_number] = ACTIONS(2473), - [sym_private_property_identifier] = ACTIONS(2473), - [sym_this] = ACTIONS(2475), - [sym_super] = ACTIONS(2475), - [sym_true] = ACTIONS(2475), - [sym_false] = ACTIONS(2475), - [sym_null] = ACTIONS(2475), - [sym_undefined] = ACTIONS(2475), - [anon_sym_AT] = ACTIONS(2473), - [anon_sym_static] = ACTIONS(2475), - [anon_sym_readonly] = ACTIONS(2475), - [anon_sym_get] = ACTIONS(2475), - [anon_sym_set] = ACTIONS(2475), - [anon_sym_declare] = ACTIONS(2475), - [anon_sym_public] = ACTIONS(2475), - [anon_sym_private] = ACTIONS(2475), - [anon_sym_protected] = ACTIONS(2475), - [anon_sym_override] = ACTIONS(2475), - [anon_sym_module] = ACTIONS(2475), - [anon_sym_any] = ACTIONS(2475), - [anon_sym_number] = ACTIONS(2475), - [anon_sym_boolean] = ACTIONS(2475), - [anon_sym_string] = ACTIONS(2475), - [anon_sym_symbol] = ACTIONS(2475), - [anon_sym_object] = ACTIONS(2475), - [anon_sym_abstract] = ACTIONS(2475), - [anon_sym_interface] = ACTIONS(2475), - [anon_sym_enum] = ACTIONS(2475), + [sym_statement_block] = STATE(911), + [ts_builtin_sym_end] = ACTIONS(1653), + [sym_identifier] = ACTIONS(1655), + [anon_sym_export] = ACTIONS(1655), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(1655), + [anon_sym_LBRACE] = ACTIONS(2444), + [anon_sym_RBRACE] = ACTIONS(1653), + [anon_sym_typeof] = ACTIONS(1655), + [anon_sym_import] = ACTIONS(1655), + [anon_sym_with] = ACTIONS(1655), + [anon_sym_var] = ACTIONS(1655), + [anon_sym_let] = ACTIONS(1655), + [anon_sym_const] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(1653), + [anon_sym_else] = ACTIONS(1655), + [anon_sym_if] = ACTIONS(1655), + [anon_sym_switch] = ACTIONS(1655), + [anon_sym_for] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1653), + [anon_sym_SEMI] = ACTIONS(1653), + [anon_sym_await] = ACTIONS(1655), + [anon_sym_while] = ACTIONS(1655), + [anon_sym_do] = ACTIONS(1655), + [anon_sym_try] = ACTIONS(1655), + [anon_sym_break] = ACTIONS(1655), + [anon_sym_continue] = ACTIONS(1655), + [anon_sym_debugger] = ACTIONS(1655), + [anon_sym_return] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1655), + [anon_sym_case] = ACTIONS(1655), + [anon_sym_yield] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DOT] = ACTIONS(2448), + [anon_sym_DQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_class] = ACTIONS(1655), + [anon_sym_async] = ACTIONS(1655), + [anon_sym_function] = ACTIONS(1655), + [anon_sym_new] = ACTIONS(1655), + [anon_sym_using] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT] = ACTIONS(1653), + [anon_sym_TILDE] = ACTIONS(1653), + [anon_sym_void] = ACTIONS(1655), + [anon_sym_delete] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1653), + [sym_number] = ACTIONS(1653), + [sym_private_property_identifier] = ACTIONS(1653), + [sym_this] = ACTIONS(1655), + [sym_super] = ACTIONS(1655), + [sym_true] = ACTIONS(1655), + [sym_false] = ACTIONS(1655), + [sym_null] = ACTIONS(1655), + [sym_undefined] = ACTIONS(1655), + [anon_sym_AT] = ACTIONS(1653), + [anon_sym_static] = ACTIONS(1655), + [anon_sym_readonly] = ACTIONS(1655), + [anon_sym_get] = ACTIONS(1655), + [anon_sym_set] = ACTIONS(1655), + [anon_sym_declare] = ACTIONS(1655), + [anon_sym_public] = ACTIONS(1655), + [anon_sym_private] = ACTIONS(1655), + [anon_sym_protected] = ACTIONS(1655), + [anon_sym_override] = ACTIONS(1655), + [anon_sym_module] = ACTIONS(1655), + [anon_sym_any] = ACTIONS(1655), + [anon_sym_number] = ACTIONS(1655), + [anon_sym_boolean] = ACTIONS(1655), + [anon_sym_string] = ACTIONS(1655), + [anon_sym_symbol] = ACTIONS(1655), + [anon_sym_object] = ACTIONS(1655), + [anon_sym_abstract] = ACTIONS(1655), + [anon_sym_interface] = ACTIONS(1655), + [anon_sym_enum] = ACTIONS(1655), [sym_html_comment] = ACTIONS(5), }, [752] = { - [sym__call_signature] = STATE(5864), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2397), - [anon_sym_export] = ACTIONS(2399), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2399), - [anon_sym_EQ] = ACTIONS(984), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2399), - [anon_sym_let] = ACTIONS(2399), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2399), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2399), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2399), - [anon_sym_readonly] = ACTIONS(2399), - [anon_sym_get] = ACTIONS(2399), - [anon_sym_set] = ACTIONS(2399), - [anon_sym_declare] = ACTIONS(2399), - [anon_sym_public] = ACTIONS(2399), - [anon_sym_private] = ACTIONS(2399), - [anon_sym_protected] = ACTIONS(2399), - [anon_sym_override] = ACTIONS(2399), - [anon_sym_module] = ACTIONS(2399), - [anon_sym_any] = ACTIONS(2399), - [anon_sym_number] = ACTIONS(2399), - [anon_sym_boolean] = ACTIONS(2399), - [anon_sym_string] = ACTIONS(2399), - [anon_sym_symbol] = ACTIONS(2399), - [anon_sym_object] = ACTIONS(2399), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5660), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [sym_identifier] = ACTIONS(2388), + [anon_sym_export] = ACTIONS(2390), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2390), + [anon_sym_EQ] = ACTIONS(969), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2390), + [anon_sym_let] = ACTIONS(2390), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2390), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2390), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_static] = ACTIONS(2390), + [anon_sym_readonly] = ACTIONS(2390), + [anon_sym_get] = ACTIONS(2390), + [anon_sym_set] = ACTIONS(2390), + [anon_sym_declare] = ACTIONS(2390), + [anon_sym_public] = ACTIONS(2390), + [anon_sym_private] = ACTIONS(2390), + [anon_sym_protected] = ACTIONS(2390), + [anon_sym_override] = ACTIONS(2390), + [anon_sym_module] = ACTIONS(2390), + [anon_sym_any] = ACTIONS(2390), + [anon_sym_number] = ACTIONS(2390), + [anon_sym_boolean] = ACTIONS(2390), + [anon_sym_string] = ACTIONS(2390), + [anon_sym_symbol] = ACTIONS(2390), + [anon_sym_object] = ACTIONS(2390), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [753] = { - [ts_builtin_sym_end] = ACTIONS(2477), - [sym_identifier] = ACTIONS(2479), - [anon_sym_export] = ACTIONS(2479), - [anon_sym_default] = ACTIONS(2479), - [anon_sym_type] = ACTIONS(2479), - [anon_sym_namespace] = ACTIONS(2479), - [anon_sym_LBRACE] = ACTIONS(2477), - [anon_sym_RBRACE] = ACTIONS(2477), - [anon_sym_typeof] = ACTIONS(2479), - [anon_sym_import] = ACTIONS(2479), - [anon_sym_with] = ACTIONS(2479), - [anon_sym_var] = ACTIONS(2479), - [anon_sym_let] = ACTIONS(2479), - [anon_sym_const] = ACTIONS(2479), - [anon_sym_BANG] = ACTIONS(2477), - [anon_sym_else] = ACTIONS(2479), - [anon_sym_if] = ACTIONS(2479), - [anon_sym_switch] = ACTIONS(2479), - [anon_sym_for] = ACTIONS(2479), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_SEMI] = ACTIONS(2477), - [anon_sym_await] = ACTIONS(2479), - [anon_sym_while] = ACTIONS(2479), - [anon_sym_do] = ACTIONS(2479), - [anon_sym_try] = ACTIONS(2479), - [anon_sym_break] = ACTIONS(2479), - [anon_sym_continue] = ACTIONS(2479), - [anon_sym_debugger] = ACTIONS(2479), - [anon_sym_return] = ACTIONS(2479), - [anon_sym_throw] = ACTIONS(2479), - [anon_sym_case] = ACTIONS(2479), - [anon_sym_yield] = ACTIONS(2479), - [anon_sym_LBRACK] = ACTIONS(2477), - [sym_glimmer_opening_tag] = ACTIONS(2477), - [anon_sym_DQUOTE] = ACTIONS(2477), - [anon_sym_SQUOTE] = ACTIONS(2477), - [anon_sym_class] = ACTIONS(2479), - [anon_sym_async] = ACTIONS(2479), - [anon_sym_function] = ACTIONS(2479), - [anon_sym_new] = ACTIONS(2479), - [anon_sym_using] = ACTIONS(2479), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_SLASH] = ACTIONS(2479), - [anon_sym_LT] = ACTIONS(2479), - [anon_sym_TILDE] = ACTIONS(2477), - [anon_sym_void] = ACTIONS(2479), - [anon_sym_delete] = ACTIONS(2479), - [anon_sym_PLUS_PLUS] = ACTIONS(2477), - [anon_sym_DASH_DASH] = ACTIONS(2477), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2477), - [sym_number] = ACTIONS(2477), - [sym_private_property_identifier] = ACTIONS(2477), - [sym_this] = ACTIONS(2479), - [sym_super] = ACTIONS(2479), - [sym_true] = ACTIONS(2479), - [sym_false] = ACTIONS(2479), - [sym_null] = ACTIONS(2479), - [sym_undefined] = ACTIONS(2479), - [anon_sym_AT] = ACTIONS(2477), - [anon_sym_static] = ACTIONS(2479), - [anon_sym_readonly] = ACTIONS(2479), - [anon_sym_get] = ACTIONS(2479), - [anon_sym_set] = ACTIONS(2479), - [anon_sym_declare] = ACTIONS(2479), - [anon_sym_public] = ACTIONS(2479), - [anon_sym_private] = ACTIONS(2479), - [anon_sym_protected] = ACTIONS(2479), - [anon_sym_override] = ACTIONS(2479), - [anon_sym_module] = ACTIONS(2479), - [anon_sym_any] = ACTIONS(2479), - [anon_sym_number] = ACTIONS(2479), - [anon_sym_boolean] = ACTIONS(2479), - [anon_sym_string] = ACTIONS(2479), - [anon_sym_symbol] = ACTIONS(2479), - [anon_sym_object] = ACTIONS(2479), - [anon_sym_abstract] = ACTIONS(2479), - [anon_sym_interface] = ACTIONS(2479), - [anon_sym_enum] = ACTIONS(2479), - [sym__automatic_semicolon] = ACTIONS(2477), + [sym__call_signature] = STATE(5660), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [sym_identifier] = ACTIONS(2388), + [anon_sym_export] = ACTIONS(2390), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2390), + [anon_sym_EQ] = ACTIONS(975), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2390), + [anon_sym_let] = ACTIONS(2390), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2390), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2390), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_static] = ACTIONS(2390), + [anon_sym_readonly] = ACTIONS(2390), + [anon_sym_get] = ACTIONS(2390), + [anon_sym_set] = ACTIONS(2390), + [anon_sym_declare] = ACTIONS(2390), + [anon_sym_public] = ACTIONS(2390), + [anon_sym_private] = ACTIONS(2390), + [anon_sym_protected] = ACTIONS(2390), + [anon_sym_override] = ACTIONS(2390), + [anon_sym_module] = ACTIONS(2390), + [anon_sym_any] = ACTIONS(2390), + [anon_sym_number] = ACTIONS(2390), + [anon_sym_boolean] = ACTIONS(2390), + [anon_sym_string] = ACTIONS(2390), + [anon_sym_symbol] = ACTIONS(2390), + [anon_sym_object] = ACTIONS(2390), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [754] = { - [sym__call_signature] = STATE(5864), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2397), - [anon_sym_export] = ACTIONS(2399), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2399), - [anon_sym_EQ] = ACTIONS(982), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2399), - [anon_sym_let] = ACTIONS(2399), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2399), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2399), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2399), - [anon_sym_readonly] = ACTIONS(2399), - [anon_sym_get] = ACTIONS(2399), - [anon_sym_set] = ACTIONS(2399), - [anon_sym_declare] = ACTIONS(2399), - [anon_sym_public] = ACTIONS(2399), - [anon_sym_private] = ACTIONS(2399), - [anon_sym_protected] = ACTIONS(2399), - [anon_sym_override] = ACTIONS(2399), - [anon_sym_module] = ACTIONS(2399), - [anon_sym_any] = ACTIONS(2399), - [anon_sym_number] = ACTIONS(2399), - [anon_sym_boolean] = ACTIONS(2399), - [anon_sym_string] = ACTIONS(2399), - [anon_sym_symbol] = ACTIONS(2399), - [anon_sym_object] = ACTIONS(2399), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__call_signature] = STATE(5660), + [sym_formal_parameters] = STATE(3848), + [sym_type_parameters] = STATE(5231), + [sym_identifier] = ACTIONS(2388), + [anon_sym_export] = ACTIONS(2390), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2390), + [anon_sym_EQ] = ACTIONS(971), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2390), + [anon_sym_let] = ACTIONS(2390), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_async] = ACTIONS(2390), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_new] = ACTIONS(2390), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_static] = ACTIONS(2390), + [anon_sym_readonly] = ACTIONS(2390), + [anon_sym_get] = ACTIONS(2390), + [anon_sym_set] = ACTIONS(2390), + [anon_sym_declare] = ACTIONS(2390), + [anon_sym_public] = ACTIONS(2390), + [anon_sym_private] = ACTIONS(2390), + [anon_sym_protected] = ACTIONS(2390), + [anon_sym_override] = ACTIONS(2390), + [anon_sym_module] = ACTIONS(2390), + [anon_sym_any] = ACTIONS(2390), + [anon_sym_number] = ACTIONS(2390), + [anon_sym_boolean] = ACTIONS(2390), + [anon_sym_string] = ACTIONS(2390), + [anon_sym_symbol] = ACTIONS(2390), + [anon_sym_object] = ACTIONS(2390), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [755] = { - [ts_builtin_sym_end] = ACTIONS(1913), - [sym_identifier] = ACTIONS(1915), - [anon_sym_export] = ACTIONS(1915), - [anon_sym_default] = ACTIONS(1915), - [anon_sym_type] = ACTIONS(1915), - [anon_sym_namespace] = ACTIONS(1915), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_RBRACE] = ACTIONS(1913), - [anon_sym_typeof] = ACTIONS(1915), - [anon_sym_import] = ACTIONS(1915), - [anon_sym_with] = ACTIONS(1915), - [anon_sym_var] = ACTIONS(1915), - [anon_sym_let] = ACTIONS(1915), - [anon_sym_const] = ACTIONS(1915), - [anon_sym_BANG] = ACTIONS(1913), - [anon_sym_else] = ACTIONS(1915), - [anon_sym_if] = ACTIONS(1915), - [anon_sym_switch] = ACTIONS(1915), - [anon_sym_for] = ACTIONS(1915), - [anon_sym_LPAREN] = ACTIONS(1913), - [anon_sym_SEMI] = ACTIONS(1913), - [anon_sym_await] = ACTIONS(1915), - [anon_sym_while] = ACTIONS(1915), - [anon_sym_do] = ACTIONS(1915), - [anon_sym_try] = ACTIONS(1915), - [anon_sym_break] = ACTIONS(1915), - [anon_sym_continue] = ACTIONS(1915), - [anon_sym_debugger] = ACTIONS(1915), - [anon_sym_return] = ACTIONS(1915), - [anon_sym_throw] = ACTIONS(1915), - [anon_sym_case] = ACTIONS(1915), - [anon_sym_yield] = ACTIONS(1915), - [anon_sym_LBRACK] = ACTIONS(1913), - [sym_glimmer_opening_tag] = ACTIONS(1913), - [anon_sym_DQUOTE] = ACTIONS(1913), - [anon_sym_SQUOTE] = ACTIONS(1913), - [anon_sym_class] = ACTIONS(1915), - [anon_sym_async] = ACTIONS(1915), - [anon_sym_function] = ACTIONS(1915), - [anon_sym_new] = ACTIONS(1915), - [anon_sym_using] = ACTIONS(1915), - [anon_sym_PLUS] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [anon_sym_SLASH] = ACTIONS(1915), - [anon_sym_LT] = ACTIONS(1915), - [anon_sym_TILDE] = ACTIONS(1913), - [anon_sym_void] = ACTIONS(1915), - [anon_sym_delete] = ACTIONS(1915), - [anon_sym_PLUS_PLUS] = ACTIONS(1913), - [anon_sym_DASH_DASH] = ACTIONS(1913), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1913), - [sym_number] = ACTIONS(1913), - [sym_private_property_identifier] = ACTIONS(1913), - [sym_this] = ACTIONS(1915), - [sym_super] = ACTIONS(1915), - [sym_true] = ACTIONS(1915), - [sym_false] = ACTIONS(1915), - [sym_null] = ACTIONS(1915), - [sym_undefined] = ACTIONS(1915), - [anon_sym_AT] = ACTIONS(1913), - [anon_sym_static] = ACTIONS(1915), - [anon_sym_readonly] = ACTIONS(1915), - [anon_sym_get] = ACTIONS(1915), - [anon_sym_set] = ACTIONS(1915), - [anon_sym_declare] = ACTIONS(1915), - [anon_sym_public] = ACTIONS(1915), - [anon_sym_private] = ACTIONS(1915), - [anon_sym_protected] = ACTIONS(1915), - [anon_sym_override] = ACTIONS(1915), - [anon_sym_module] = ACTIONS(1915), - [anon_sym_any] = ACTIONS(1915), - [anon_sym_number] = ACTIONS(1915), - [anon_sym_boolean] = ACTIONS(1915), - [anon_sym_string] = ACTIONS(1915), - [anon_sym_symbol] = ACTIONS(1915), - [anon_sym_object] = ACTIONS(1915), - [anon_sym_abstract] = ACTIONS(1915), - [anon_sym_interface] = ACTIONS(1915), - [anon_sym_enum] = ACTIONS(1915), - [sym__automatic_semicolon] = ACTIONS(1921), + [ts_builtin_sym_end] = ACTIONS(2450), + [sym_identifier] = ACTIONS(2452), + [anon_sym_export] = ACTIONS(2452), + [anon_sym_default] = ACTIONS(2452), + [anon_sym_type] = ACTIONS(2452), + [anon_sym_namespace] = ACTIONS(2452), + [anon_sym_LBRACE] = ACTIONS(2450), + [anon_sym_RBRACE] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(2452), + [anon_sym_import] = ACTIONS(2452), + [anon_sym_with] = ACTIONS(2452), + [anon_sym_var] = ACTIONS(2452), + [anon_sym_let] = ACTIONS(2452), + [anon_sym_const] = ACTIONS(2452), + [anon_sym_BANG] = ACTIONS(2450), + [anon_sym_else] = ACTIONS(2452), + [anon_sym_if] = ACTIONS(2452), + [anon_sym_switch] = ACTIONS(2452), + [anon_sym_for] = ACTIONS(2452), + [anon_sym_LPAREN] = ACTIONS(2450), + [anon_sym_SEMI] = ACTIONS(2450), + [anon_sym_await] = ACTIONS(2452), + [anon_sym_while] = ACTIONS(2452), + [anon_sym_do] = ACTIONS(2452), + [anon_sym_try] = ACTIONS(2452), + [anon_sym_break] = ACTIONS(2452), + [anon_sym_continue] = ACTIONS(2452), + [anon_sym_debugger] = ACTIONS(2452), + [anon_sym_return] = ACTIONS(2452), + [anon_sym_throw] = ACTIONS(2452), + [anon_sym_case] = ACTIONS(2452), + [anon_sym_yield] = ACTIONS(2452), + [anon_sym_LBRACK] = ACTIONS(2450), + [anon_sym_DQUOTE] = ACTIONS(2450), + [anon_sym_SQUOTE] = ACTIONS(2450), + [anon_sym_class] = ACTIONS(2452), + [anon_sym_async] = ACTIONS(2452), + [anon_sym_function] = ACTIONS(2452), + [anon_sym_new] = ACTIONS(2452), + [anon_sym_using] = ACTIONS(2452), + [anon_sym_PLUS] = ACTIONS(2452), + [anon_sym_DASH] = ACTIONS(2452), + [anon_sym_SLASH] = ACTIONS(2452), + [anon_sym_LT] = ACTIONS(2450), + [anon_sym_TILDE] = ACTIONS(2450), + [anon_sym_void] = ACTIONS(2452), + [anon_sym_delete] = ACTIONS(2452), + [anon_sym_PLUS_PLUS] = ACTIONS(2450), + [anon_sym_DASH_DASH] = ACTIONS(2450), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2450), + [sym_number] = ACTIONS(2450), + [sym_private_property_identifier] = ACTIONS(2450), + [sym_this] = ACTIONS(2452), + [sym_super] = ACTIONS(2452), + [sym_true] = ACTIONS(2452), + [sym_false] = ACTIONS(2452), + [sym_null] = ACTIONS(2452), + [sym_undefined] = ACTIONS(2452), + [anon_sym_AT] = ACTIONS(2450), + [anon_sym_static] = ACTIONS(2452), + [anon_sym_readonly] = ACTIONS(2452), + [anon_sym_get] = ACTIONS(2452), + [anon_sym_set] = ACTIONS(2452), + [anon_sym_declare] = ACTIONS(2452), + [anon_sym_public] = ACTIONS(2452), + [anon_sym_private] = ACTIONS(2452), + [anon_sym_protected] = ACTIONS(2452), + [anon_sym_override] = ACTIONS(2452), + [anon_sym_module] = ACTIONS(2452), + [anon_sym_any] = ACTIONS(2452), + [anon_sym_number] = ACTIONS(2452), + [anon_sym_boolean] = ACTIONS(2452), + [anon_sym_string] = ACTIONS(2452), + [anon_sym_symbol] = ACTIONS(2452), + [anon_sym_object] = ACTIONS(2452), + [anon_sym_abstract] = ACTIONS(2452), + [anon_sym_interface] = ACTIONS(2452), + [anon_sym_enum] = ACTIONS(2452), + [sym__automatic_semicolon] = ACTIONS(2450), [sym_html_comment] = ACTIONS(5), }, [756] = { - [ts_builtin_sym_end] = ACTIONS(2481), - [sym_identifier] = ACTIONS(2483), - [anon_sym_export] = ACTIONS(2483), - [anon_sym_default] = ACTIONS(2483), - [anon_sym_type] = ACTIONS(2483), - [anon_sym_namespace] = ACTIONS(2483), - [anon_sym_LBRACE] = ACTIONS(2481), - [anon_sym_RBRACE] = ACTIONS(2481), - [anon_sym_typeof] = ACTIONS(2483), - [anon_sym_import] = ACTIONS(2483), - [anon_sym_with] = ACTIONS(2483), - [anon_sym_var] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_const] = ACTIONS(2483), - [anon_sym_BANG] = ACTIONS(2481), - [anon_sym_else] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_switch] = ACTIONS(2483), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2481), - [anon_sym_SEMI] = ACTIONS(2481), - [anon_sym_await] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_break] = ACTIONS(2483), - [anon_sym_continue] = ACTIONS(2483), - [anon_sym_debugger] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_throw] = ACTIONS(2483), - [anon_sym_case] = ACTIONS(2483), - [anon_sym_finally] = ACTIONS(2483), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_LBRACK] = ACTIONS(2481), - [sym_glimmer_opening_tag] = ACTIONS(2481), - [anon_sym_DQUOTE] = ACTIONS(2481), - [anon_sym_SQUOTE] = ACTIONS(2481), - [anon_sym_class] = ACTIONS(2483), - [anon_sym_async] = ACTIONS(2483), - [anon_sym_function] = ACTIONS(2483), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_using] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_SLASH] = ACTIONS(2483), - [anon_sym_LT] = ACTIONS(2483), - [anon_sym_TILDE] = ACTIONS(2481), - [anon_sym_void] = ACTIONS(2483), - [anon_sym_delete] = ACTIONS(2483), - [anon_sym_PLUS_PLUS] = ACTIONS(2481), - [anon_sym_DASH_DASH] = ACTIONS(2481), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2481), - [sym_number] = ACTIONS(2481), - [sym_private_property_identifier] = ACTIONS(2481), - [sym_this] = ACTIONS(2483), - [sym_super] = ACTIONS(2483), - [sym_true] = ACTIONS(2483), - [sym_false] = ACTIONS(2483), - [sym_null] = ACTIONS(2483), - [sym_undefined] = ACTIONS(2483), - [anon_sym_AT] = ACTIONS(2481), - [anon_sym_static] = ACTIONS(2483), - [anon_sym_readonly] = ACTIONS(2483), - [anon_sym_get] = ACTIONS(2483), - [anon_sym_set] = ACTIONS(2483), - [anon_sym_declare] = ACTIONS(2483), - [anon_sym_public] = ACTIONS(2483), - [anon_sym_private] = ACTIONS(2483), - [anon_sym_protected] = ACTIONS(2483), - [anon_sym_override] = ACTIONS(2483), - [anon_sym_module] = ACTIONS(2483), - [anon_sym_any] = ACTIONS(2483), - [anon_sym_number] = ACTIONS(2483), - [anon_sym_boolean] = ACTIONS(2483), - [anon_sym_string] = ACTIONS(2483), - [anon_sym_symbol] = ACTIONS(2483), - [anon_sym_object] = ACTIONS(2483), - [anon_sym_abstract] = ACTIONS(2483), - [anon_sym_interface] = ACTIONS(2483), - [anon_sym_enum] = ACTIONS(2483), + [ts_builtin_sym_end] = ACTIONS(2454), + [sym_identifier] = ACTIONS(2456), + [anon_sym_export] = ACTIONS(2456), + [anon_sym_default] = ACTIONS(2456), + [anon_sym_type] = ACTIONS(2456), + [anon_sym_namespace] = ACTIONS(2456), + [anon_sym_LBRACE] = ACTIONS(2454), + [anon_sym_RBRACE] = ACTIONS(2454), + [anon_sym_typeof] = ACTIONS(2456), + [anon_sym_import] = ACTIONS(2456), + [anon_sym_with] = ACTIONS(2456), + [anon_sym_var] = ACTIONS(2456), + [anon_sym_let] = ACTIONS(2456), + [anon_sym_const] = ACTIONS(2456), + [anon_sym_BANG] = ACTIONS(2454), + [anon_sym_else] = ACTIONS(2456), + [anon_sym_if] = ACTIONS(2456), + [anon_sym_switch] = ACTIONS(2456), + [anon_sym_for] = ACTIONS(2456), + [anon_sym_LPAREN] = ACTIONS(2454), + [anon_sym_SEMI] = ACTIONS(2454), + [anon_sym_await] = ACTIONS(2456), + [anon_sym_while] = ACTIONS(2456), + [anon_sym_do] = ACTIONS(2456), + [anon_sym_try] = ACTIONS(2456), + [anon_sym_break] = ACTIONS(2456), + [anon_sym_continue] = ACTIONS(2456), + [anon_sym_debugger] = ACTIONS(2456), + [anon_sym_return] = ACTIONS(2456), + [anon_sym_throw] = ACTIONS(2456), + [anon_sym_case] = ACTIONS(2456), + [anon_sym_yield] = ACTIONS(2456), + [anon_sym_LBRACK] = ACTIONS(2454), + [anon_sym_DQUOTE] = ACTIONS(2454), + [anon_sym_SQUOTE] = ACTIONS(2454), + [anon_sym_class] = ACTIONS(2456), + [anon_sym_async] = ACTIONS(2456), + [anon_sym_function] = ACTIONS(2456), + [anon_sym_new] = ACTIONS(2456), + [anon_sym_using] = ACTIONS(2456), + [anon_sym_PLUS] = ACTIONS(2456), + [anon_sym_DASH] = ACTIONS(2456), + [anon_sym_SLASH] = ACTIONS(2456), + [anon_sym_LT] = ACTIONS(2454), + [anon_sym_TILDE] = ACTIONS(2454), + [anon_sym_void] = ACTIONS(2456), + [anon_sym_delete] = ACTIONS(2456), + [anon_sym_PLUS_PLUS] = ACTIONS(2454), + [anon_sym_DASH_DASH] = ACTIONS(2454), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2454), + [sym_number] = ACTIONS(2454), + [sym_private_property_identifier] = ACTIONS(2454), + [sym_this] = ACTIONS(2456), + [sym_super] = ACTIONS(2456), + [sym_true] = ACTIONS(2456), + [sym_false] = ACTIONS(2456), + [sym_null] = ACTIONS(2456), + [sym_undefined] = ACTIONS(2456), + [anon_sym_AT] = ACTIONS(2454), + [anon_sym_static] = ACTIONS(2456), + [anon_sym_readonly] = ACTIONS(2456), + [anon_sym_get] = ACTIONS(2456), + [anon_sym_set] = ACTIONS(2456), + [anon_sym_declare] = ACTIONS(2456), + [anon_sym_public] = ACTIONS(2456), + [anon_sym_private] = ACTIONS(2456), + [anon_sym_protected] = ACTIONS(2456), + [anon_sym_override] = ACTIONS(2456), + [anon_sym_module] = ACTIONS(2456), + [anon_sym_any] = ACTIONS(2456), + [anon_sym_number] = ACTIONS(2456), + [anon_sym_boolean] = ACTIONS(2456), + [anon_sym_string] = ACTIONS(2456), + [anon_sym_symbol] = ACTIONS(2456), + [anon_sym_object] = ACTIONS(2456), + [anon_sym_abstract] = ACTIONS(2456), + [anon_sym_interface] = ACTIONS(2456), + [anon_sym_enum] = ACTIONS(2456), + [sym__automatic_semicolon] = ACTIONS(2454), [sym_html_comment] = ACTIONS(5), }, [757] = { - [ts_builtin_sym_end] = ACTIONS(1831), - [sym_identifier] = ACTIONS(1833), - [anon_sym_export] = ACTIONS(1833), - [anon_sym_default] = ACTIONS(1833), - [anon_sym_type] = ACTIONS(1833), - [anon_sym_namespace] = ACTIONS(1833), - [anon_sym_LBRACE] = ACTIONS(1831), - [anon_sym_RBRACE] = ACTIONS(1831), - [anon_sym_typeof] = ACTIONS(1833), - [anon_sym_import] = ACTIONS(1833), - [anon_sym_with] = ACTIONS(1833), - [anon_sym_var] = ACTIONS(1833), - [anon_sym_let] = ACTIONS(1833), - [anon_sym_const] = ACTIONS(1833), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_else] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_switch] = ACTIONS(1833), - [anon_sym_for] = ACTIONS(1833), - [anon_sym_LPAREN] = ACTIONS(1831), - [anon_sym_SEMI] = ACTIONS(1831), - [anon_sym_await] = ACTIONS(1833), - [anon_sym_while] = ACTIONS(1833), - [anon_sym_do] = ACTIONS(1833), - [anon_sym_try] = ACTIONS(1833), - [anon_sym_break] = ACTIONS(1833), - [anon_sym_continue] = ACTIONS(1833), - [anon_sym_debugger] = ACTIONS(1833), - [anon_sym_return] = ACTIONS(1833), - [anon_sym_throw] = ACTIONS(1833), - [anon_sym_case] = ACTIONS(1833), - [anon_sym_yield] = ACTIONS(1833), - [anon_sym_LBRACK] = ACTIONS(1831), - [sym_glimmer_opening_tag] = ACTIONS(1831), - [anon_sym_DQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE] = ACTIONS(1831), - [anon_sym_class] = ACTIONS(1833), - [anon_sym_async] = ACTIONS(1833), - [anon_sym_function] = ACTIONS(1833), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1833), - [anon_sym_PLUS] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1833), - [anon_sym_SLASH] = ACTIONS(1833), - [anon_sym_LT] = ACTIONS(1833), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_void] = ACTIONS(1833), - [anon_sym_delete] = ACTIONS(1833), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1831), - [sym_number] = ACTIONS(1831), - [sym_private_property_identifier] = ACTIONS(1831), - [sym_this] = ACTIONS(1833), - [sym_super] = ACTIONS(1833), - [sym_true] = ACTIONS(1833), - [sym_false] = ACTIONS(1833), - [sym_null] = ACTIONS(1833), - [sym_undefined] = ACTIONS(1833), - [anon_sym_AT] = ACTIONS(1831), - [anon_sym_static] = ACTIONS(1833), - [anon_sym_readonly] = ACTIONS(1833), - [anon_sym_get] = ACTIONS(1833), - [anon_sym_set] = ACTIONS(1833), - [anon_sym_declare] = ACTIONS(1833), - [anon_sym_public] = ACTIONS(1833), - [anon_sym_private] = ACTIONS(1833), - [anon_sym_protected] = ACTIONS(1833), - [anon_sym_override] = ACTIONS(1833), - [anon_sym_module] = ACTIONS(1833), - [anon_sym_any] = ACTIONS(1833), - [anon_sym_number] = ACTIONS(1833), - [anon_sym_boolean] = ACTIONS(1833), - [anon_sym_string] = ACTIONS(1833), - [anon_sym_symbol] = ACTIONS(1833), - [anon_sym_object] = ACTIONS(1833), - [anon_sym_abstract] = ACTIONS(1833), - [anon_sym_interface] = ACTIONS(1833), - [anon_sym_enum] = ACTIONS(1833), - [sym__automatic_semicolon] = ACTIONS(1839), + [ts_builtin_sym_end] = ACTIONS(1699), + [sym_identifier] = ACTIONS(1701), + [anon_sym_export] = ACTIONS(1701), + [anon_sym_default] = ACTIONS(1701), + [anon_sym_type] = ACTIONS(1701), + [anon_sym_namespace] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1699), + [anon_sym_RBRACE] = ACTIONS(1699), + [anon_sym_typeof] = ACTIONS(1701), + [anon_sym_import] = ACTIONS(1701), + [anon_sym_with] = ACTIONS(1701), + [anon_sym_var] = ACTIONS(1701), + [anon_sym_let] = ACTIONS(1701), + [anon_sym_const] = ACTIONS(1701), + [anon_sym_BANG] = ACTIONS(1699), + [anon_sym_else] = ACTIONS(1701), + [anon_sym_if] = ACTIONS(1701), + [anon_sym_switch] = ACTIONS(1701), + [anon_sym_for] = ACTIONS(1701), + [anon_sym_LPAREN] = ACTIONS(1699), + [anon_sym_SEMI] = ACTIONS(1699), + [anon_sym_await] = ACTIONS(1701), + [anon_sym_while] = ACTIONS(1701), + [anon_sym_do] = ACTIONS(1701), + [anon_sym_try] = ACTIONS(1701), + [anon_sym_break] = ACTIONS(1701), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_debugger] = ACTIONS(1701), + [anon_sym_return] = ACTIONS(1701), + [anon_sym_throw] = ACTIONS(1701), + [anon_sym_case] = ACTIONS(1701), + [anon_sym_yield] = ACTIONS(1701), + [anon_sym_LBRACK] = ACTIONS(1699), + [anon_sym_DOT] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1699), + [anon_sym_SQUOTE] = ACTIONS(1699), + [anon_sym_class] = ACTIONS(1701), + [anon_sym_async] = ACTIONS(1701), + [anon_sym_function] = ACTIONS(1701), + [anon_sym_new] = ACTIONS(1701), + [anon_sym_using] = ACTIONS(1701), + [anon_sym_PLUS] = ACTIONS(1701), + [anon_sym_DASH] = ACTIONS(1701), + [anon_sym_SLASH] = ACTIONS(1701), + [anon_sym_LT] = ACTIONS(1699), + [anon_sym_TILDE] = ACTIONS(1699), + [anon_sym_void] = ACTIONS(1701), + [anon_sym_delete] = ACTIONS(1701), + [anon_sym_PLUS_PLUS] = ACTIONS(1699), + [anon_sym_DASH_DASH] = ACTIONS(1699), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1699), + [sym_number] = ACTIONS(1699), + [sym_private_property_identifier] = ACTIONS(1699), + [sym_this] = ACTIONS(1701), + [sym_super] = ACTIONS(1701), + [sym_true] = ACTIONS(1701), + [sym_false] = ACTIONS(1701), + [sym_null] = ACTIONS(1701), + [sym_undefined] = ACTIONS(1701), + [anon_sym_AT] = ACTIONS(1699), + [anon_sym_static] = ACTIONS(1701), + [anon_sym_readonly] = ACTIONS(1701), + [anon_sym_get] = ACTIONS(1701), + [anon_sym_set] = ACTIONS(1701), + [anon_sym_declare] = ACTIONS(1701), + [anon_sym_public] = ACTIONS(1701), + [anon_sym_private] = ACTIONS(1701), + [anon_sym_protected] = ACTIONS(1701), + [anon_sym_override] = ACTIONS(1701), + [anon_sym_module] = ACTIONS(1701), + [anon_sym_any] = ACTIONS(1701), + [anon_sym_number] = ACTIONS(1701), + [anon_sym_boolean] = ACTIONS(1701), + [anon_sym_string] = ACTIONS(1701), + [anon_sym_symbol] = ACTIONS(1701), + [anon_sym_object] = ACTIONS(1701), + [anon_sym_abstract] = ACTIONS(1701), + [anon_sym_interface] = ACTIONS(1701), + [anon_sym_enum] = ACTIONS(1701), [sym_html_comment] = ACTIONS(5), }, [758] = { - [ts_builtin_sym_end] = ACTIONS(1757), - [sym_identifier] = ACTIONS(1759), - [anon_sym_export] = ACTIONS(1759), - [anon_sym_default] = ACTIONS(1759), - [anon_sym_type] = ACTIONS(1759), - [anon_sym_namespace] = ACTIONS(1759), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_typeof] = ACTIONS(1759), - [anon_sym_import] = ACTIONS(1759), - [anon_sym_with] = ACTIONS(1759), - [anon_sym_var] = ACTIONS(1759), - [anon_sym_let] = ACTIONS(1759), - [anon_sym_const] = ACTIONS(1759), - [anon_sym_BANG] = ACTIONS(1757), - [anon_sym_else] = ACTIONS(1759), - [anon_sym_if] = ACTIONS(1759), - [anon_sym_switch] = ACTIONS(1759), - [anon_sym_for] = ACTIONS(1759), - [anon_sym_LPAREN] = ACTIONS(1757), - [anon_sym_SEMI] = ACTIONS(1757), - [anon_sym_await] = ACTIONS(1759), - [anon_sym_while] = ACTIONS(1759), - [anon_sym_do] = ACTIONS(1759), - [anon_sym_try] = ACTIONS(1759), - [anon_sym_break] = ACTIONS(1759), - [anon_sym_continue] = ACTIONS(1759), - [anon_sym_debugger] = ACTIONS(1759), - [anon_sym_return] = ACTIONS(1759), - [anon_sym_throw] = ACTIONS(1759), - [anon_sym_case] = ACTIONS(1759), - [anon_sym_yield] = ACTIONS(1759), - [anon_sym_LBRACK] = ACTIONS(1757), - [sym_glimmer_opening_tag] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [anon_sym_SQUOTE] = ACTIONS(1757), - [anon_sym_class] = ACTIONS(1759), - [anon_sym_async] = ACTIONS(1759), - [anon_sym_function] = ACTIONS(1759), - [anon_sym_new] = ACTIONS(1759), - [anon_sym_using] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1759), - [anon_sym_DASH] = ACTIONS(1759), - [anon_sym_SLASH] = ACTIONS(1759), - [anon_sym_LT] = ACTIONS(1759), - [anon_sym_TILDE] = ACTIONS(1757), - [anon_sym_void] = ACTIONS(1759), - [anon_sym_delete] = ACTIONS(1759), - [anon_sym_PLUS_PLUS] = ACTIONS(1757), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1757), - [sym_number] = ACTIONS(1757), - [sym_private_property_identifier] = ACTIONS(1757), - [sym_this] = ACTIONS(1759), - [sym_super] = ACTIONS(1759), - [sym_true] = ACTIONS(1759), - [sym_false] = ACTIONS(1759), - [sym_null] = ACTIONS(1759), - [sym_undefined] = ACTIONS(1759), - [anon_sym_AT] = ACTIONS(1757), - [anon_sym_static] = ACTIONS(1759), - [anon_sym_readonly] = ACTIONS(1759), - [anon_sym_get] = ACTIONS(1759), - [anon_sym_set] = ACTIONS(1759), - [anon_sym_declare] = ACTIONS(1759), - [anon_sym_public] = ACTIONS(1759), - [anon_sym_private] = ACTIONS(1759), - [anon_sym_protected] = ACTIONS(1759), - [anon_sym_override] = ACTIONS(1759), - [anon_sym_module] = ACTIONS(1759), - [anon_sym_any] = ACTIONS(1759), - [anon_sym_number] = ACTIONS(1759), - [anon_sym_boolean] = ACTIONS(1759), - [anon_sym_string] = ACTIONS(1759), - [anon_sym_symbol] = ACTIONS(1759), - [anon_sym_object] = ACTIONS(1759), - [anon_sym_abstract] = ACTIONS(1759), - [anon_sym_interface] = ACTIONS(1759), - [anon_sym_enum] = ACTIONS(1759), - [sym__automatic_semicolon] = ACTIONS(1765), + [ts_builtin_sym_end] = ACTIONS(2458), + [sym_identifier] = ACTIONS(2460), + [anon_sym_export] = ACTIONS(2460), + [anon_sym_default] = ACTIONS(2460), + [anon_sym_type] = ACTIONS(2460), + [anon_sym_namespace] = ACTIONS(2460), + [anon_sym_LBRACE] = ACTIONS(2458), + [anon_sym_RBRACE] = ACTIONS(2458), + [anon_sym_typeof] = ACTIONS(2460), + [anon_sym_import] = ACTIONS(2460), + [anon_sym_with] = ACTIONS(2460), + [anon_sym_var] = ACTIONS(2460), + [anon_sym_let] = ACTIONS(2460), + [anon_sym_const] = ACTIONS(2460), + [anon_sym_BANG] = ACTIONS(2458), + [anon_sym_else] = ACTIONS(2460), + [anon_sym_if] = ACTIONS(2460), + [anon_sym_switch] = ACTIONS(2460), + [anon_sym_for] = ACTIONS(2460), + [anon_sym_LPAREN] = ACTIONS(2458), + [anon_sym_SEMI] = ACTIONS(2462), + [anon_sym_await] = ACTIONS(2460), + [anon_sym_while] = ACTIONS(2460), + [anon_sym_do] = ACTIONS(2460), + [anon_sym_try] = ACTIONS(2460), + [anon_sym_break] = ACTIONS(2460), + [anon_sym_continue] = ACTIONS(2460), + [anon_sym_debugger] = ACTIONS(2460), + [anon_sym_return] = ACTIONS(2460), + [anon_sym_throw] = ACTIONS(2460), + [anon_sym_case] = ACTIONS(2460), + [anon_sym_yield] = ACTIONS(2460), + [anon_sym_LBRACK] = ACTIONS(2458), + [anon_sym_DQUOTE] = ACTIONS(2458), + [anon_sym_SQUOTE] = ACTIONS(2458), + [anon_sym_class] = ACTIONS(2460), + [anon_sym_async] = ACTIONS(2460), + [anon_sym_function] = ACTIONS(2460), + [anon_sym_new] = ACTIONS(2460), + [anon_sym_using] = ACTIONS(2460), + [anon_sym_PLUS] = ACTIONS(2460), + [anon_sym_DASH] = ACTIONS(2460), + [anon_sym_SLASH] = ACTIONS(2460), + [anon_sym_LT] = ACTIONS(2458), + [anon_sym_TILDE] = ACTIONS(2458), + [anon_sym_void] = ACTIONS(2460), + [anon_sym_delete] = ACTIONS(2460), + [anon_sym_PLUS_PLUS] = ACTIONS(2458), + [anon_sym_DASH_DASH] = ACTIONS(2458), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2458), + [sym_number] = ACTIONS(2458), + [sym_private_property_identifier] = ACTIONS(2458), + [sym_this] = ACTIONS(2460), + [sym_super] = ACTIONS(2460), + [sym_true] = ACTIONS(2460), + [sym_false] = ACTIONS(2460), + [sym_null] = ACTIONS(2460), + [sym_undefined] = ACTIONS(2460), + [anon_sym_AT] = ACTIONS(2458), + [anon_sym_static] = ACTIONS(2460), + [anon_sym_readonly] = ACTIONS(2460), + [anon_sym_get] = ACTIONS(2460), + [anon_sym_set] = ACTIONS(2460), + [anon_sym_declare] = ACTIONS(2460), + [anon_sym_public] = ACTIONS(2460), + [anon_sym_private] = ACTIONS(2460), + [anon_sym_protected] = ACTIONS(2460), + [anon_sym_override] = ACTIONS(2460), + [anon_sym_module] = ACTIONS(2460), + [anon_sym_any] = ACTIONS(2460), + [anon_sym_number] = ACTIONS(2460), + [anon_sym_boolean] = ACTIONS(2460), + [anon_sym_string] = ACTIONS(2460), + [anon_sym_symbol] = ACTIONS(2460), + [anon_sym_object] = ACTIONS(2460), + [anon_sym_abstract] = ACTIONS(2460), + [anon_sym_interface] = ACTIONS(2460), + [anon_sym_enum] = ACTIONS(2460), + [sym__automatic_semicolon] = ACTIONS(2462), [sym_html_comment] = ACTIONS(5), }, [759] = { - [sym__call_signature] = STATE(5864), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2397), - [anon_sym_export] = ACTIONS(2399), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2399), - [anon_sym_EQ] = ACTIONS(1040), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2399), - [anon_sym_let] = ACTIONS(2399), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2399), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2399), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2399), - [anon_sym_readonly] = ACTIONS(2399), - [anon_sym_get] = ACTIONS(2399), - [anon_sym_set] = ACTIONS(2399), - [anon_sym_declare] = ACTIONS(2399), - [anon_sym_public] = ACTIONS(2399), - [anon_sym_private] = ACTIONS(2399), - [anon_sym_protected] = ACTIONS(2399), - [anon_sym_override] = ACTIONS(2399), - [anon_sym_module] = ACTIONS(2399), - [anon_sym_any] = ACTIONS(2399), - [anon_sym_number] = ACTIONS(2399), - [anon_sym_boolean] = ACTIONS(2399), - [anon_sym_string] = ACTIONS(2399), - [anon_sym_symbol] = ACTIONS(2399), - [anon_sym_object] = ACTIONS(2399), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [ts_builtin_sym_end] = ACTIONS(2464), + [sym_identifier] = ACTIONS(2466), + [anon_sym_export] = ACTIONS(2466), + [anon_sym_default] = ACTIONS(2466), + [anon_sym_type] = ACTIONS(2466), + [anon_sym_namespace] = ACTIONS(2466), + [anon_sym_LBRACE] = ACTIONS(2464), + [anon_sym_RBRACE] = ACTIONS(2464), + [anon_sym_typeof] = ACTIONS(2466), + [anon_sym_import] = ACTIONS(2466), + [anon_sym_with] = ACTIONS(2466), + [anon_sym_var] = ACTIONS(2466), + [anon_sym_let] = ACTIONS(2466), + [anon_sym_const] = ACTIONS(2466), + [anon_sym_BANG] = ACTIONS(2464), + [anon_sym_else] = ACTIONS(2466), + [anon_sym_if] = ACTIONS(2466), + [anon_sym_switch] = ACTIONS(2466), + [anon_sym_for] = ACTIONS(2466), + [anon_sym_LPAREN] = ACTIONS(2464), + [anon_sym_SEMI] = ACTIONS(2464), + [anon_sym_await] = ACTIONS(2466), + [anon_sym_while] = ACTIONS(2466), + [anon_sym_do] = ACTIONS(2466), + [anon_sym_try] = ACTIONS(2466), + [anon_sym_break] = ACTIONS(2466), + [anon_sym_continue] = ACTIONS(2466), + [anon_sym_debugger] = ACTIONS(2466), + [anon_sym_return] = ACTIONS(2466), + [anon_sym_throw] = ACTIONS(2466), + [anon_sym_case] = ACTIONS(2466), + [anon_sym_finally] = ACTIONS(2466), + [anon_sym_yield] = ACTIONS(2466), + [anon_sym_LBRACK] = ACTIONS(2464), + [anon_sym_DQUOTE] = ACTIONS(2464), + [anon_sym_SQUOTE] = ACTIONS(2464), + [anon_sym_class] = ACTIONS(2466), + [anon_sym_async] = ACTIONS(2466), + [anon_sym_function] = ACTIONS(2466), + [anon_sym_new] = ACTIONS(2466), + [anon_sym_using] = ACTIONS(2466), + [anon_sym_PLUS] = ACTIONS(2466), + [anon_sym_DASH] = ACTIONS(2466), + [anon_sym_SLASH] = ACTIONS(2466), + [anon_sym_LT] = ACTIONS(2464), + [anon_sym_TILDE] = ACTIONS(2464), + [anon_sym_void] = ACTIONS(2466), + [anon_sym_delete] = ACTIONS(2466), + [anon_sym_PLUS_PLUS] = ACTIONS(2464), + [anon_sym_DASH_DASH] = ACTIONS(2464), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2464), + [sym_number] = ACTIONS(2464), + [sym_private_property_identifier] = ACTIONS(2464), + [sym_this] = ACTIONS(2466), + [sym_super] = ACTIONS(2466), + [sym_true] = ACTIONS(2466), + [sym_false] = ACTIONS(2466), + [sym_null] = ACTIONS(2466), + [sym_undefined] = ACTIONS(2466), + [anon_sym_AT] = ACTIONS(2464), + [anon_sym_static] = ACTIONS(2466), + [anon_sym_readonly] = ACTIONS(2466), + [anon_sym_get] = ACTIONS(2466), + [anon_sym_set] = ACTIONS(2466), + [anon_sym_declare] = ACTIONS(2466), + [anon_sym_public] = ACTIONS(2466), + [anon_sym_private] = ACTIONS(2466), + [anon_sym_protected] = ACTIONS(2466), + [anon_sym_override] = ACTIONS(2466), + [anon_sym_module] = ACTIONS(2466), + [anon_sym_any] = ACTIONS(2466), + [anon_sym_number] = ACTIONS(2466), + [anon_sym_boolean] = ACTIONS(2466), + [anon_sym_string] = ACTIONS(2466), + [anon_sym_symbol] = ACTIONS(2466), + [anon_sym_object] = ACTIONS(2466), + [anon_sym_abstract] = ACTIONS(2466), + [anon_sym_interface] = ACTIONS(2466), + [anon_sym_enum] = ACTIONS(2466), [sym_html_comment] = ACTIONS(5), }, [760] = { - [ts_builtin_sym_end] = ACTIONS(1767), - [sym_identifier] = ACTIONS(1769), - [anon_sym_export] = ACTIONS(1769), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_type] = ACTIONS(1769), - [anon_sym_namespace] = ACTIONS(1769), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_typeof] = ACTIONS(1769), - [anon_sym_import] = ACTIONS(1769), - [anon_sym_with] = ACTIONS(1769), - [anon_sym_var] = ACTIONS(1769), - [anon_sym_let] = ACTIONS(1769), - [anon_sym_const] = ACTIONS(1769), - [anon_sym_BANG] = ACTIONS(1767), - [anon_sym_else] = ACTIONS(1769), - [anon_sym_if] = ACTIONS(1769), - [anon_sym_switch] = ACTIONS(1769), - [anon_sym_for] = ACTIONS(1769), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_await] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1769), - [anon_sym_do] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1769), - [anon_sym_break] = ACTIONS(1769), - [anon_sym_continue] = ACTIONS(1769), - [anon_sym_debugger] = ACTIONS(1769), - [anon_sym_return] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1769), - [anon_sym_case] = ACTIONS(1769), - [anon_sym_yield] = ACTIONS(1769), - [anon_sym_LBRACK] = ACTIONS(1767), - [sym_glimmer_opening_tag] = ACTIONS(1767), - [anon_sym_DQUOTE] = ACTIONS(1767), - [anon_sym_SQUOTE] = ACTIONS(1767), - [anon_sym_class] = ACTIONS(1769), - [anon_sym_async] = ACTIONS(1769), - [anon_sym_function] = ACTIONS(1769), - [anon_sym_new] = ACTIONS(1769), - [anon_sym_using] = ACTIONS(1769), - [anon_sym_PLUS] = ACTIONS(1769), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_SLASH] = ACTIONS(1769), - [anon_sym_LT] = ACTIONS(1769), - [anon_sym_TILDE] = ACTIONS(1767), - [anon_sym_void] = ACTIONS(1769), - [anon_sym_delete] = ACTIONS(1769), - [anon_sym_PLUS_PLUS] = ACTIONS(1767), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1767), - [sym_number] = ACTIONS(1767), - [sym_private_property_identifier] = ACTIONS(1767), - [sym_this] = ACTIONS(1769), - [sym_super] = ACTIONS(1769), - [sym_true] = ACTIONS(1769), - [sym_false] = ACTIONS(1769), - [sym_null] = ACTIONS(1769), - [sym_undefined] = ACTIONS(1769), - [anon_sym_AT] = ACTIONS(1767), - [anon_sym_static] = ACTIONS(1769), - [anon_sym_readonly] = ACTIONS(1769), - [anon_sym_get] = ACTIONS(1769), - [anon_sym_set] = ACTIONS(1769), - [anon_sym_declare] = ACTIONS(1769), - [anon_sym_public] = ACTIONS(1769), - [anon_sym_private] = ACTIONS(1769), - [anon_sym_protected] = ACTIONS(1769), - [anon_sym_override] = ACTIONS(1769), - [anon_sym_module] = ACTIONS(1769), - [anon_sym_any] = ACTIONS(1769), - [anon_sym_number] = ACTIONS(1769), - [anon_sym_boolean] = ACTIONS(1769), - [anon_sym_string] = ACTIONS(1769), - [anon_sym_symbol] = ACTIONS(1769), - [anon_sym_object] = ACTIONS(1769), - [anon_sym_abstract] = ACTIONS(1769), - [anon_sym_interface] = ACTIONS(1769), - [anon_sym_enum] = ACTIONS(1769), - [sym__automatic_semicolon] = ACTIONS(1775), + [sym_import] = STATE(4786), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5658), + [sym_rest_pattern] = STATE(5415), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3263), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3806), + [sym_tuple_parameter] = STATE(4784), + [sym_optional_tuple_parameter] = STATE(4784), + [sym_optional_type] = STATE(4784), + [sym_rest_type] = STATE(4784), + [sym__tuple_type_member] = STATE(4784), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5559), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(2468), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(2470), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(2472), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2474), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [761] = { - [ts_builtin_sym_end] = ACTIONS(2485), - [sym_identifier] = ACTIONS(2487), - [anon_sym_export] = ACTIONS(2487), - [anon_sym_default] = ACTIONS(2487), - [anon_sym_type] = ACTIONS(2487), - [anon_sym_namespace] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2485), - [anon_sym_RBRACE] = ACTIONS(2485), - [anon_sym_typeof] = ACTIONS(2487), - [anon_sym_import] = ACTIONS(2487), - [anon_sym_with] = ACTIONS(2487), - [anon_sym_var] = ACTIONS(2487), - [anon_sym_let] = ACTIONS(2487), - [anon_sym_const] = ACTIONS(2487), - [anon_sym_BANG] = ACTIONS(2485), - [anon_sym_else] = ACTIONS(2487), - [anon_sym_if] = ACTIONS(2487), - [anon_sym_switch] = ACTIONS(2487), - [anon_sym_for] = ACTIONS(2487), - [anon_sym_LPAREN] = ACTIONS(2485), - [anon_sym_SEMI] = ACTIONS(2485), - [anon_sym_await] = ACTIONS(2487), - [anon_sym_while] = ACTIONS(2487), - [anon_sym_do] = ACTIONS(2487), - [anon_sym_try] = ACTIONS(2487), - [anon_sym_break] = ACTIONS(2487), - [anon_sym_continue] = ACTIONS(2487), - [anon_sym_debugger] = ACTIONS(2487), - [anon_sym_return] = ACTIONS(2487), - [anon_sym_throw] = ACTIONS(2487), - [anon_sym_case] = ACTIONS(2487), - [anon_sym_yield] = ACTIONS(2487), - [anon_sym_LBRACK] = ACTIONS(2485), - [sym_glimmer_opening_tag] = ACTIONS(2485), - [anon_sym_DQUOTE] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_class] = ACTIONS(2487), - [anon_sym_async] = ACTIONS(2487), - [anon_sym_function] = ACTIONS(2487), - [anon_sym_new] = ACTIONS(2487), - [anon_sym_using] = ACTIONS(2487), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_SLASH] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2485), - [anon_sym_void] = ACTIONS(2487), - [anon_sym_delete] = ACTIONS(2487), - [anon_sym_PLUS_PLUS] = ACTIONS(2485), - [anon_sym_DASH_DASH] = ACTIONS(2485), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2485), - [sym_number] = ACTIONS(2485), - [sym_private_property_identifier] = ACTIONS(2485), - [sym_this] = ACTIONS(2487), - [sym_super] = ACTIONS(2487), - [sym_true] = ACTIONS(2487), - [sym_false] = ACTIONS(2487), - [sym_null] = ACTIONS(2487), - [sym_undefined] = ACTIONS(2487), - [anon_sym_AT] = ACTIONS(2485), - [anon_sym_static] = ACTIONS(2487), - [anon_sym_readonly] = ACTIONS(2487), - [anon_sym_get] = ACTIONS(2487), - [anon_sym_set] = ACTIONS(2487), - [anon_sym_declare] = ACTIONS(2487), - [anon_sym_public] = ACTIONS(2487), - [anon_sym_private] = ACTIONS(2487), - [anon_sym_protected] = ACTIONS(2487), - [anon_sym_override] = ACTIONS(2487), - [anon_sym_module] = ACTIONS(2487), - [anon_sym_any] = ACTIONS(2487), - [anon_sym_number] = ACTIONS(2487), - [anon_sym_boolean] = ACTIONS(2487), - [anon_sym_string] = ACTIONS(2487), - [anon_sym_symbol] = ACTIONS(2487), - [anon_sym_object] = ACTIONS(2487), - [anon_sym_abstract] = ACTIONS(2487), - [anon_sym_interface] = ACTIONS(2487), - [anon_sym_enum] = ACTIONS(2487), - [sym__automatic_semicolon] = ACTIONS(2485), + [sym_import] = STATE(4786), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5658), + [sym_rest_pattern] = STATE(5415), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3263), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3806), + [sym_tuple_parameter] = STATE(5194), + [sym_optional_tuple_parameter] = STATE(5194), + [sym_optional_type] = STATE(5194), + [sym_rest_type] = STATE(5194), + [sym__tuple_type_member] = STATE(5194), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5559), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(2468), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(2480), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(2482), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2474), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [762] = { - [ts_builtin_sym_end] = ACTIONS(1841), - [sym_identifier] = ACTIONS(1843), - [anon_sym_export] = ACTIONS(1843), - [anon_sym_default] = ACTIONS(1843), - [anon_sym_type] = ACTIONS(1843), - [anon_sym_namespace] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(1841), - [anon_sym_RBRACE] = ACTIONS(1841), - [anon_sym_typeof] = ACTIONS(1843), - [anon_sym_import] = ACTIONS(1843), - [anon_sym_with] = ACTIONS(1843), - [anon_sym_var] = ACTIONS(1843), - [anon_sym_let] = ACTIONS(1843), - [anon_sym_const] = ACTIONS(1843), - [anon_sym_BANG] = ACTIONS(1841), - [anon_sym_else] = ACTIONS(1843), - [anon_sym_if] = ACTIONS(1843), - [anon_sym_switch] = ACTIONS(1843), - [anon_sym_for] = ACTIONS(1843), - [anon_sym_LPAREN] = ACTIONS(1841), - [anon_sym_SEMI] = ACTIONS(1841), - [anon_sym_await] = ACTIONS(1843), - [anon_sym_while] = ACTIONS(1843), - [anon_sym_do] = ACTIONS(1843), - [anon_sym_try] = ACTIONS(1843), - [anon_sym_break] = ACTIONS(1843), - [anon_sym_continue] = ACTIONS(1843), - [anon_sym_debugger] = ACTIONS(1843), - [anon_sym_return] = ACTIONS(1843), - [anon_sym_throw] = ACTIONS(1843), - [anon_sym_case] = ACTIONS(1843), - [anon_sym_yield] = ACTIONS(1843), - [anon_sym_LBRACK] = ACTIONS(1841), - [sym_glimmer_opening_tag] = ACTIONS(1841), - [anon_sym_DQUOTE] = ACTIONS(1841), - [anon_sym_SQUOTE] = ACTIONS(1841), - [anon_sym_class] = ACTIONS(1843), - [anon_sym_async] = ACTIONS(1843), - [anon_sym_function] = ACTIONS(1843), - [anon_sym_new] = ACTIONS(1843), - [anon_sym_using] = ACTIONS(1843), - [anon_sym_PLUS] = ACTIONS(1843), - [anon_sym_DASH] = ACTIONS(1843), - [anon_sym_SLASH] = ACTIONS(1843), - [anon_sym_LT] = ACTIONS(1843), - [anon_sym_TILDE] = ACTIONS(1841), - [anon_sym_void] = ACTIONS(1843), - [anon_sym_delete] = ACTIONS(1843), - [anon_sym_PLUS_PLUS] = ACTIONS(1841), - [anon_sym_DASH_DASH] = ACTIONS(1841), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1841), - [sym_number] = ACTIONS(1841), - [sym_private_property_identifier] = ACTIONS(1841), - [sym_this] = ACTIONS(1843), - [sym_super] = ACTIONS(1843), - [sym_true] = ACTIONS(1843), - [sym_false] = ACTIONS(1843), - [sym_null] = ACTIONS(1843), - [sym_undefined] = ACTIONS(1843), - [anon_sym_AT] = ACTIONS(1841), - [anon_sym_static] = ACTIONS(1843), - [anon_sym_readonly] = ACTIONS(1843), - [anon_sym_get] = ACTIONS(1843), - [anon_sym_set] = ACTIONS(1843), - [anon_sym_declare] = ACTIONS(1843), - [anon_sym_public] = ACTIONS(1843), - [anon_sym_private] = ACTIONS(1843), - [anon_sym_protected] = ACTIONS(1843), - [anon_sym_override] = ACTIONS(1843), - [anon_sym_module] = ACTIONS(1843), - [anon_sym_any] = ACTIONS(1843), - [anon_sym_number] = ACTIONS(1843), - [anon_sym_boolean] = ACTIONS(1843), - [anon_sym_string] = ACTIONS(1843), - [anon_sym_symbol] = ACTIONS(1843), - [anon_sym_object] = ACTIONS(1843), - [anon_sym_abstract] = ACTIONS(1843), - [anon_sym_interface] = ACTIONS(1843), - [anon_sym_enum] = ACTIONS(1843), - [sym__automatic_semicolon] = ACTIONS(1849), + [sym_import] = STATE(4786), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5658), + [sym_rest_pattern] = STATE(5415), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3263), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3806), + [sym_tuple_parameter] = STATE(4649), + [sym_optional_tuple_parameter] = STATE(4649), + [sym_optional_type] = STATE(4649), + [sym_rest_type] = STATE(4649), + [sym__tuple_type_member] = STATE(4649), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5559), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(2468), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(2486), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2474), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [763] = { - [sym__call_signature] = STATE(5864), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2397), - [anon_sym_export] = ACTIONS(2399), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2399), - [anon_sym_EQ] = ACTIONS(974), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2399), - [anon_sym_let] = ACTIONS(2399), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2399), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2399), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2399), - [anon_sym_readonly] = ACTIONS(2399), - [anon_sym_get] = ACTIONS(2399), - [anon_sym_set] = ACTIONS(2399), - [anon_sym_declare] = ACTIONS(2399), - [anon_sym_public] = ACTIONS(2399), - [anon_sym_private] = ACTIONS(2399), - [anon_sym_protected] = ACTIONS(2399), - [anon_sym_override] = ACTIONS(2399), - [anon_sym_module] = ACTIONS(2399), - [anon_sym_any] = ACTIONS(2399), - [anon_sym_number] = ACTIONS(2399), - [anon_sym_boolean] = ACTIONS(2399), - [anon_sym_string] = ACTIONS(2399), - [anon_sym_symbol] = ACTIONS(2399), - [anon_sym_object] = ACTIONS(2399), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_import] = STATE(4786), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5658), + [sym_rest_pattern] = STATE(5415), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3263), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3806), + [sym_tuple_parameter] = STATE(4682), + [sym_optional_tuple_parameter] = STATE(4682), + [sym_optional_type] = STATE(4682), + [sym_rest_type] = STATE(4682), + [sym__tuple_type_member] = STATE(4682), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5559), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(2468), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(2488), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(2490), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2474), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [764] = { - [ts_builtin_sym_end] = ACTIONS(1799), - [sym_identifier] = ACTIONS(1801), - [anon_sym_export] = ACTIONS(1801), - [anon_sym_default] = ACTIONS(1801), - [anon_sym_type] = ACTIONS(1801), - [anon_sym_namespace] = ACTIONS(1801), - [anon_sym_LBRACE] = ACTIONS(1799), - [anon_sym_RBRACE] = ACTIONS(1799), - [anon_sym_typeof] = ACTIONS(1801), - [anon_sym_import] = ACTIONS(1801), - [anon_sym_with] = ACTIONS(1801), - [anon_sym_var] = ACTIONS(1801), - [anon_sym_let] = ACTIONS(1801), - [anon_sym_const] = ACTIONS(1801), - [anon_sym_BANG] = ACTIONS(1799), - [anon_sym_else] = ACTIONS(1801), - [anon_sym_if] = ACTIONS(1801), - [anon_sym_switch] = ACTIONS(1801), - [anon_sym_for] = ACTIONS(1801), - [anon_sym_LPAREN] = ACTIONS(1799), - [anon_sym_SEMI] = ACTIONS(1799), - [anon_sym_await] = ACTIONS(1801), - [anon_sym_while] = ACTIONS(1801), - [anon_sym_do] = ACTIONS(1801), - [anon_sym_try] = ACTIONS(1801), - [anon_sym_break] = ACTIONS(1801), - [anon_sym_continue] = ACTIONS(1801), - [anon_sym_debugger] = ACTIONS(1801), - [anon_sym_return] = ACTIONS(1801), - [anon_sym_throw] = ACTIONS(1801), - [anon_sym_case] = ACTIONS(1801), - [anon_sym_yield] = ACTIONS(1801), - [anon_sym_LBRACK] = ACTIONS(1799), - [sym_glimmer_opening_tag] = ACTIONS(1799), - [anon_sym_DQUOTE] = ACTIONS(1799), - [anon_sym_SQUOTE] = ACTIONS(1799), - [anon_sym_class] = ACTIONS(1801), - [anon_sym_async] = ACTIONS(1801), - [anon_sym_function] = ACTIONS(1801), - [anon_sym_new] = ACTIONS(1801), - [anon_sym_using] = ACTIONS(1801), - [anon_sym_PLUS] = ACTIONS(1801), - [anon_sym_DASH] = ACTIONS(1801), - [anon_sym_SLASH] = ACTIONS(1801), - [anon_sym_LT] = ACTIONS(1801), - [anon_sym_TILDE] = ACTIONS(1799), - [anon_sym_void] = ACTIONS(1801), - [anon_sym_delete] = ACTIONS(1801), - [anon_sym_PLUS_PLUS] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1799), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1799), - [sym_number] = ACTIONS(1799), - [sym_private_property_identifier] = ACTIONS(1799), - [sym_this] = ACTIONS(1801), - [sym_super] = ACTIONS(1801), - [sym_true] = ACTIONS(1801), - [sym_false] = ACTIONS(1801), - [sym_null] = ACTIONS(1801), - [sym_undefined] = ACTIONS(1801), - [anon_sym_AT] = ACTIONS(1799), - [anon_sym_static] = ACTIONS(1801), - [anon_sym_readonly] = ACTIONS(1801), - [anon_sym_get] = ACTIONS(1801), - [anon_sym_set] = ACTIONS(1801), - [anon_sym_declare] = ACTIONS(1801), - [anon_sym_public] = ACTIONS(1801), - [anon_sym_private] = ACTIONS(1801), - [anon_sym_protected] = ACTIONS(1801), - [anon_sym_override] = ACTIONS(1801), - [anon_sym_module] = ACTIONS(1801), - [anon_sym_any] = ACTIONS(1801), - [anon_sym_number] = ACTIONS(1801), - [anon_sym_boolean] = ACTIONS(1801), - [anon_sym_string] = ACTIONS(1801), - [anon_sym_symbol] = ACTIONS(1801), - [anon_sym_object] = ACTIONS(1801), - [anon_sym_abstract] = ACTIONS(1801), - [anon_sym_interface] = ACTIONS(1801), - [anon_sym_enum] = ACTIONS(1801), - [sym__automatic_semicolon] = ACTIONS(1807), + [ts_builtin_sym_end] = ACTIONS(1703), + [sym_identifier] = ACTIONS(1705), + [anon_sym_export] = ACTIONS(1705), + [anon_sym_default] = ACTIONS(1705), + [anon_sym_type] = ACTIONS(1705), + [anon_sym_namespace] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_typeof] = ACTIONS(1705), + [anon_sym_import] = ACTIONS(1705), + [anon_sym_with] = ACTIONS(1705), + [anon_sym_var] = ACTIONS(1705), + [anon_sym_let] = ACTIONS(1705), + [anon_sym_const] = ACTIONS(1705), + [anon_sym_BANG] = ACTIONS(1703), + [anon_sym_else] = ACTIONS(1705), + [anon_sym_if] = ACTIONS(1705), + [anon_sym_switch] = ACTIONS(1705), + [anon_sym_for] = ACTIONS(1705), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_await] = ACTIONS(1705), + [anon_sym_while] = ACTIONS(1705), + [anon_sym_do] = ACTIONS(1705), + [anon_sym_try] = 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_case] = ACTIONS(1705), + [anon_sym_yield] = ACTIONS(1705), + [anon_sym_LBRACK] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1703), + [anon_sym_class] = ACTIONS(1705), + [anon_sym_async] = ACTIONS(1705), + [anon_sym_function] = ACTIONS(1705), + [anon_sym_new] = ACTIONS(1705), + [anon_sym_using] = ACTIONS(1705), + [anon_sym_PLUS] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_SLASH] = ACTIONS(1705), + [anon_sym_LT] = ACTIONS(1703), + [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), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1703), + [sym_number] = ACTIONS(1703), + [sym_private_property_identifier] = 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_readonly] = 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_override] = 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_object] = ACTIONS(1705), + [anon_sym_abstract] = ACTIONS(1705), + [anon_sym_interface] = ACTIONS(1705), + [anon_sym_enum] = ACTIONS(1705), + [sym__automatic_semicolon] = ACTIONS(1711), [sym_html_comment] = ACTIONS(5), }, [765] = { + [ts_builtin_sym_end] = ACTIONS(1741), + [sym_identifier] = ACTIONS(1743), + [anon_sym_export] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1743), + [anon_sym_type] = ACTIONS(1743), + [anon_sym_namespace] = ACTIONS(1743), + [anon_sym_LBRACE] = ACTIONS(1741), + [anon_sym_RBRACE] = ACTIONS(1741), + [anon_sym_typeof] = ACTIONS(1743), + [anon_sym_import] = ACTIONS(1743), + [anon_sym_with] = ACTIONS(1743), + [anon_sym_var] = ACTIONS(1743), + [anon_sym_let] = ACTIONS(1743), + [anon_sym_const] = ACTIONS(1743), + [anon_sym_BANG] = ACTIONS(1741), + [anon_sym_else] = ACTIONS(1743), + [anon_sym_if] = ACTIONS(1743), + [anon_sym_switch] = ACTIONS(1743), + [anon_sym_for] = ACTIONS(1743), + [anon_sym_LPAREN] = ACTIONS(1741), + [anon_sym_SEMI] = ACTIONS(1741), + [anon_sym_await] = ACTIONS(1743), + [anon_sym_while] = ACTIONS(1743), + [anon_sym_do] = ACTIONS(1743), + [anon_sym_try] = 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_case] = ACTIONS(1743), + [anon_sym_yield] = ACTIONS(1743), + [anon_sym_LBRACK] = ACTIONS(1741), + [anon_sym_DQUOTE] = ACTIONS(1741), + [anon_sym_SQUOTE] = ACTIONS(1741), + [anon_sym_class] = ACTIONS(1743), + [anon_sym_async] = ACTIONS(1743), + [anon_sym_function] = ACTIONS(1743), + [anon_sym_new] = ACTIONS(1743), + [anon_sym_using] = ACTIONS(1743), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_SLASH] = ACTIONS(1743), + [anon_sym_LT] = ACTIONS(1741), + [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), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1741), + [sym_number] = ACTIONS(1741), + [sym_private_property_identifier] = 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_readonly] = 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_override] = 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_object] = ACTIONS(1743), + [anon_sym_abstract] = ACTIONS(1743), + [anon_sym_interface] = ACTIONS(1743), + [anon_sym_enum] = ACTIONS(1743), + [sym__automatic_semicolon] = ACTIONS(1749), + [sym_html_comment] = ACTIONS(5), + }, + [766] = { + [ts_builtin_sym_end] = ACTIONS(1761), + [sym_identifier] = ACTIONS(1763), + [anon_sym_export] = ACTIONS(1763), + [anon_sym_default] = ACTIONS(1763), + [anon_sym_type] = ACTIONS(1763), + [anon_sym_namespace] = ACTIONS(1763), + [anon_sym_LBRACE] = ACTIONS(1761), + [anon_sym_RBRACE] = ACTIONS(1761), + [anon_sym_typeof] = ACTIONS(1763), + [anon_sym_import] = ACTIONS(1763), + [anon_sym_with] = ACTIONS(1763), + [anon_sym_var] = ACTIONS(1763), + [anon_sym_let] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1763), + [anon_sym_BANG] = ACTIONS(1761), + [anon_sym_else] = ACTIONS(1763), + [anon_sym_if] = ACTIONS(1763), + [anon_sym_switch] = ACTIONS(1763), + [anon_sym_for] = ACTIONS(1763), + [anon_sym_LPAREN] = ACTIONS(1761), + [anon_sym_SEMI] = ACTIONS(1761), + [anon_sym_await] = ACTIONS(1763), + [anon_sym_while] = ACTIONS(1763), + [anon_sym_do] = ACTIONS(1763), + [anon_sym_try] = ACTIONS(1763), + [anon_sym_break] = ACTIONS(1763), + [anon_sym_continue] = ACTIONS(1763), + [anon_sym_debugger] = ACTIONS(1763), + [anon_sym_return] = ACTIONS(1763), + [anon_sym_throw] = ACTIONS(1763), + [anon_sym_case] = ACTIONS(1763), + [anon_sym_yield] = ACTIONS(1763), + [anon_sym_LBRACK] = ACTIONS(1761), + [anon_sym_DQUOTE] = ACTIONS(1761), + [anon_sym_SQUOTE] = ACTIONS(1761), + [anon_sym_class] = ACTIONS(1763), + [anon_sym_async] = ACTIONS(1763), + [anon_sym_function] = ACTIONS(1763), + [anon_sym_new] = ACTIONS(1763), + [anon_sym_using] = ACTIONS(1763), + [anon_sym_PLUS] = ACTIONS(1763), + [anon_sym_DASH] = ACTIONS(1763), + [anon_sym_SLASH] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1761), + [anon_sym_TILDE] = ACTIONS(1761), + [anon_sym_void] = ACTIONS(1763), + [anon_sym_delete] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1761), + [anon_sym_DASH_DASH] = ACTIONS(1761), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1761), + [sym_number] = ACTIONS(1761), + [sym_private_property_identifier] = ACTIONS(1761), + [sym_this] = ACTIONS(1763), + [sym_super] = ACTIONS(1763), + [sym_true] = ACTIONS(1763), + [sym_false] = ACTIONS(1763), + [sym_null] = ACTIONS(1763), + [sym_undefined] = ACTIONS(1763), + [anon_sym_AT] = ACTIONS(1761), + [anon_sym_static] = ACTIONS(1763), + [anon_sym_readonly] = ACTIONS(1763), + [anon_sym_get] = ACTIONS(1763), + [anon_sym_set] = ACTIONS(1763), + [anon_sym_declare] = ACTIONS(1763), + [anon_sym_public] = ACTIONS(1763), + [anon_sym_private] = ACTIONS(1763), + [anon_sym_protected] = ACTIONS(1763), + [anon_sym_override] = ACTIONS(1763), + [anon_sym_module] = ACTIONS(1763), + [anon_sym_any] = ACTIONS(1763), + [anon_sym_number] = ACTIONS(1763), + [anon_sym_boolean] = ACTIONS(1763), + [anon_sym_string] = ACTIONS(1763), + [anon_sym_symbol] = ACTIONS(1763), + [anon_sym_object] = ACTIONS(1763), + [anon_sym_abstract] = ACTIONS(1763), + [anon_sym_interface] = ACTIONS(1763), + [anon_sym_enum] = ACTIONS(1763), + [sym__automatic_semicolon] = ACTIONS(1769), + [sym_html_comment] = ACTIONS(5), + }, + [767] = { + [ts_builtin_sym_end] = ACTIONS(1689), + [sym_identifier] = ACTIONS(1691), + [anon_sym_export] = ACTIONS(1691), + [anon_sym_default] = ACTIONS(1691), + [anon_sym_type] = ACTIONS(1691), + [anon_sym_namespace] = ACTIONS(1691), + [anon_sym_LBRACE] = ACTIONS(1689), + [anon_sym_RBRACE] = ACTIONS(1689), + [anon_sym_typeof] = ACTIONS(1691), + [anon_sym_import] = ACTIONS(1691), + [anon_sym_with] = ACTIONS(1691), + [anon_sym_var] = ACTIONS(1691), + [anon_sym_let] = ACTIONS(1691), + [anon_sym_const] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(1689), + [anon_sym_else] = ACTIONS(1691), + [anon_sym_if] = ACTIONS(1691), + [anon_sym_switch] = ACTIONS(1691), + [anon_sym_for] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1689), + [anon_sym_SEMI] = ACTIONS(1689), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_while] = ACTIONS(1691), + [anon_sym_do] = ACTIONS(1691), + [anon_sym_try] = ACTIONS(1691), + [anon_sym_break] = ACTIONS(1691), + [anon_sym_continue] = ACTIONS(1691), + [anon_sym_debugger] = ACTIONS(1691), + [anon_sym_return] = ACTIONS(1691), + [anon_sym_throw] = ACTIONS(1691), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_yield] = ACTIONS(1691), + [anon_sym_LBRACK] = ACTIONS(1689), + [anon_sym_DQUOTE] = ACTIONS(1689), + [anon_sym_SQUOTE] = ACTIONS(1689), + [anon_sym_class] = ACTIONS(1691), + [anon_sym_async] = ACTIONS(1691), + [anon_sym_function] = ACTIONS(1691), + [anon_sym_new] = ACTIONS(1691), + [anon_sym_using] = ACTIONS(1691), + [anon_sym_PLUS] = ACTIONS(1691), + [anon_sym_DASH] = ACTIONS(1691), + [anon_sym_SLASH] = ACTIONS(1691), + [anon_sym_LT] = ACTIONS(1689), + [anon_sym_TILDE] = ACTIONS(1689), + [anon_sym_void] = ACTIONS(1691), + [anon_sym_delete] = ACTIONS(1691), + [anon_sym_PLUS_PLUS] = ACTIONS(1689), + [anon_sym_DASH_DASH] = ACTIONS(1689), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1689), + [sym_number] = ACTIONS(1689), + [sym_private_property_identifier] = ACTIONS(1689), + [sym_this] = ACTIONS(1691), + [sym_super] = ACTIONS(1691), + [sym_true] = ACTIONS(1691), + [sym_false] = ACTIONS(1691), + [sym_null] = ACTIONS(1691), + [sym_undefined] = ACTIONS(1691), + [anon_sym_AT] = ACTIONS(1689), + [anon_sym_static] = ACTIONS(1691), + [anon_sym_readonly] = ACTIONS(1691), + [anon_sym_get] = ACTIONS(1691), + [anon_sym_set] = ACTIONS(1691), + [anon_sym_declare] = ACTIONS(1691), + [anon_sym_public] = ACTIONS(1691), + [anon_sym_private] = ACTIONS(1691), + [anon_sym_protected] = ACTIONS(1691), + [anon_sym_override] = ACTIONS(1691), + [anon_sym_module] = ACTIONS(1691), + [anon_sym_any] = ACTIONS(1691), + [anon_sym_number] = ACTIONS(1691), + [anon_sym_boolean] = ACTIONS(1691), + [anon_sym_string] = ACTIONS(1691), + [anon_sym_symbol] = ACTIONS(1691), + [anon_sym_object] = ACTIONS(1691), + [anon_sym_abstract] = ACTIONS(1691), + [anon_sym_interface] = ACTIONS(1691), + [anon_sym_enum] = ACTIONS(1691), + [sym__automatic_semicolon] = ACTIONS(1697), + [sym_html_comment] = ACTIONS(5), + }, + [768] = { + [sym_else_clause] = STATE(850), + [ts_builtin_sym_end] = ACTIONS(2492), + [sym_identifier] = ACTIONS(2494), + [anon_sym_export] = ACTIONS(2494), + [anon_sym_default] = ACTIONS(2494), + [anon_sym_type] = ACTIONS(2494), + [anon_sym_namespace] = ACTIONS(2494), + [anon_sym_LBRACE] = ACTIONS(2492), + [anon_sym_RBRACE] = ACTIONS(2492), + [anon_sym_typeof] = ACTIONS(2494), + [anon_sym_import] = ACTIONS(2494), + [anon_sym_with] = ACTIONS(2494), + [anon_sym_var] = ACTIONS(2494), + [anon_sym_let] = ACTIONS(2494), + [anon_sym_const] = ACTIONS(2494), + [anon_sym_BANG] = ACTIONS(2492), + [anon_sym_else] = ACTIONS(2496), + [anon_sym_if] = ACTIONS(2494), + [anon_sym_switch] = ACTIONS(2494), + [anon_sym_for] = ACTIONS(2494), + [anon_sym_LPAREN] = ACTIONS(2492), + [anon_sym_SEMI] = ACTIONS(2492), + [anon_sym_await] = ACTIONS(2494), + [anon_sym_while] = ACTIONS(2494), + [anon_sym_do] = ACTIONS(2494), + [anon_sym_try] = ACTIONS(2494), + [anon_sym_break] = ACTIONS(2494), + [anon_sym_continue] = ACTIONS(2494), + [anon_sym_debugger] = ACTIONS(2494), + [anon_sym_return] = ACTIONS(2494), + [anon_sym_throw] = ACTIONS(2494), + [anon_sym_case] = ACTIONS(2494), + [anon_sym_yield] = ACTIONS(2494), + [anon_sym_LBRACK] = ACTIONS(2492), + [anon_sym_DQUOTE] = ACTIONS(2492), + [anon_sym_SQUOTE] = ACTIONS(2492), + [anon_sym_class] = ACTIONS(2494), + [anon_sym_async] = ACTIONS(2494), + [anon_sym_function] = ACTIONS(2494), + [anon_sym_new] = ACTIONS(2494), + [anon_sym_using] = ACTIONS(2494), + [anon_sym_PLUS] = ACTIONS(2494), + [anon_sym_DASH] = ACTIONS(2494), + [anon_sym_SLASH] = ACTIONS(2494), + [anon_sym_LT] = ACTIONS(2492), + [anon_sym_TILDE] = ACTIONS(2492), + [anon_sym_void] = ACTIONS(2494), + [anon_sym_delete] = ACTIONS(2494), + [anon_sym_PLUS_PLUS] = ACTIONS(2492), + [anon_sym_DASH_DASH] = ACTIONS(2492), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2492), + [sym_number] = ACTIONS(2492), + [sym_private_property_identifier] = ACTIONS(2492), + [sym_this] = ACTIONS(2494), + [sym_super] = ACTIONS(2494), + [sym_true] = ACTIONS(2494), + [sym_false] = ACTIONS(2494), + [sym_null] = ACTIONS(2494), + [sym_undefined] = ACTIONS(2494), + [anon_sym_AT] = ACTIONS(2492), + [anon_sym_static] = ACTIONS(2494), + [anon_sym_readonly] = ACTIONS(2494), + [anon_sym_get] = ACTIONS(2494), + [anon_sym_set] = ACTIONS(2494), + [anon_sym_declare] = ACTIONS(2494), + [anon_sym_public] = ACTIONS(2494), + [anon_sym_private] = ACTIONS(2494), + [anon_sym_protected] = ACTIONS(2494), + [anon_sym_override] = ACTIONS(2494), + [anon_sym_module] = ACTIONS(2494), + [anon_sym_any] = ACTIONS(2494), + [anon_sym_number] = ACTIONS(2494), + [anon_sym_boolean] = ACTIONS(2494), + [anon_sym_string] = ACTIONS(2494), + [anon_sym_symbol] = ACTIONS(2494), + [anon_sym_object] = ACTIONS(2494), + [anon_sym_abstract] = ACTIONS(2494), + [anon_sym_interface] = ACTIONS(2494), + [anon_sym_enum] = ACTIONS(2494), + [sym_html_comment] = ACTIONS(5), + }, + [769] = { + [ts_builtin_sym_end] = ACTIONS(1791), + [sym_identifier] = ACTIONS(1793), + [anon_sym_export] = ACTIONS(1793), + [anon_sym_default] = ACTIONS(1793), + [anon_sym_type] = ACTIONS(1793), + [anon_sym_namespace] = ACTIONS(1793), + [anon_sym_LBRACE] = ACTIONS(1791), + [anon_sym_RBRACE] = ACTIONS(1791), + [anon_sym_typeof] = ACTIONS(1793), + [anon_sym_import] = ACTIONS(1793), + [anon_sym_with] = ACTIONS(1793), + [anon_sym_var] = ACTIONS(1793), + [anon_sym_let] = ACTIONS(1793), + [anon_sym_const] = ACTIONS(1793), + [anon_sym_BANG] = ACTIONS(1791), + [anon_sym_else] = ACTIONS(1793), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_switch] = ACTIONS(1793), + [anon_sym_for] = ACTIONS(1793), + [anon_sym_LPAREN] = ACTIONS(1791), + [anon_sym_SEMI] = ACTIONS(1791), + [anon_sym_await] = ACTIONS(1793), + [anon_sym_while] = ACTIONS(1793), + [anon_sym_do] = ACTIONS(1793), + [anon_sym_try] = ACTIONS(1793), + [anon_sym_break] = ACTIONS(1793), + [anon_sym_continue] = ACTIONS(1793), + [anon_sym_debugger] = ACTIONS(1793), + [anon_sym_return] = ACTIONS(1793), + [anon_sym_throw] = ACTIONS(1793), + [anon_sym_case] = ACTIONS(1793), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(1791), + [anon_sym_DOT] = ACTIONS(1793), + [anon_sym_DQUOTE] = ACTIONS(1791), + [anon_sym_SQUOTE] = ACTIONS(1791), + [anon_sym_class] = ACTIONS(1793), + [anon_sym_async] = ACTIONS(1793), + [anon_sym_function] = ACTIONS(1793), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1793), + [anon_sym_PLUS] = ACTIONS(1793), + [anon_sym_DASH] = ACTIONS(1793), + [anon_sym_SLASH] = ACTIONS(1793), + [anon_sym_LT] = ACTIONS(1791), + [anon_sym_TILDE] = ACTIONS(1791), + [anon_sym_void] = ACTIONS(1793), + [anon_sym_delete] = ACTIONS(1793), + [anon_sym_PLUS_PLUS] = ACTIONS(1791), + [anon_sym_DASH_DASH] = ACTIONS(1791), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1791), + [sym_number] = ACTIONS(1791), + [sym_private_property_identifier] = ACTIONS(1791), + [sym_this] = ACTIONS(1793), + [sym_super] = ACTIONS(1793), + [sym_true] = ACTIONS(1793), + [sym_false] = ACTIONS(1793), + [sym_null] = ACTIONS(1793), + [sym_undefined] = ACTIONS(1793), + [anon_sym_AT] = ACTIONS(1791), + [anon_sym_static] = ACTIONS(1793), + [anon_sym_readonly] = ACTIONS(1793), + [anon_sym_get] = ACTIONS(1793), + [anon_sym_set] = ACTIONS(1793), + [anon_sym_declare] = ACTIONS(1793), + [anon_sym_public] = ACTIONS(1793), + [anon_sym_private] = ACTIONS(1793), + [anon_sym_protected] = ACTIONS(1793), + [anon_sym_override] = ACTIONS(1793), + [anon_sym_module] = ACTIONS(1793), + [anon_sym_any] = ACTIONS(1793), + [anon_sym_number] = ACTIONS(1793), + [anon_sym_boolean] = ACTIONS(1793), + [anon_sym_string] = ACTIONS(1793), + [anon_sym_symbol] = ACTIONS(1793), + [anon_sym_object] = ACTIONS(1793), + [anon_sym_abstract] = ACTIONS(1793), + [anon_sym_interface] = ACTIONS(1793), + [anon_sym_enum] = ACTIONS(1793), + [sym_html_comment] = ACTIONS(5), + }, + [770] = { + [ts_builtin_sym_end] = ACTIONS(1795), + [sym_identifier] = ACTIONS(1797), + [anon_sym_export] = ACTIONS(1797), + [anon_sym_default] = ACTIONS(1797), + [anon_sym_type] = ACTIONS(1797), + [anon_sym_namespace] = ACTIONS(1797), + [anon_sym_LBRACE] = ACTIONS(1795), + [anon_sym_RBRACE] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym_import] = ACTIONS(1797), + [anon_sym_with] = ACTIONS(1797), + [anon_sym_var] = ACTIONS(1797), + [anon_sym_let] = ACTIONS(1797), + [anon_sym_const] = ACTIONS(1797), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_else] = ACTIONS(1797), + [anon_sym_if] = ACTIONS(1797), + [anon_sym_switch] = ACTIONS(1797), + [anon_sym_for] = ACTIONS(1797), + [anon_sym_LPAREN] = ACTIONS(1795), + [anon_sym_SEMI] = ACTIONS(1795), + [anon_sym_await] = ACTIONS(1797), + [anon_sym_while] = ACTIONS(1797), + [anon_sym_do] = ACTIONS(1797), + [anon_sym_try] = ACTIONS(1797), + [anon_sym_break] = ACTIONS(1797), + [anon_sym_continue] = ACTIONS(1797), + [anon_sym_debugger] = ACTIONS(1797), + [anon_sym_return] = ACTIONS(1797), + [anon_sym_throw] = ACTIONS(1797), + [anon_sym_case] = ACTIONS(1797), + [anon_sym_yield] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1795), + [anon_sym_DQUOTE] = ACTIONS(1795), + [anon_sym_SQUOTE] = ACTIONS(1795), + [anon_sym_class] = ACTIONS(1797), + [anon_sym_async] = ACTIONS(1797), + [anon_sym_function] = ACTIONS(1797), + [anon_sym_new] = ACTIONS(1797), + [anon_sym_using] = ACTIONS(1797), + [anon_sym_PLUS] = ACTIONS(1797), + [anon_sym_DASH] = ACTIONS(1797), + [anon_sym_SLASH] = ACTIONS(1797), + [anon_sym_LT] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_void] = ACTIONS(1797), + [anon_sym_delete] = ACTIONS(1797), + [anon_sym_PLUS_PLUS] = ACTIONS(1795), + [anon_sym_DASH_DASH] = ACTIONS(1795), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1795), + [sym_number] = ACTIONS(1795), + [sym_private_property_identifier] = ACTIONS(1795), + [sym_this] = ACTIONS(1797), + [sym_super] = ACTIONS(1797), + [sym_true] = ACTIONS(1797), + [sym_false] = ACTIONS(1797), + [sym_null] = ACTIONS(1797), + [sym_undefined] = ACTIONS(1797), + [anon_sym_AT] = ACTIONS(1795), + [anon_sym_static] = ACTIONS(1797), + [anon_sym_readonly] = ACTIONS(1797), + [anon_sym_get] = ACTIONS(1797), + [anon_sym_set] = ACTIONS(1797), + [anon_sym_declare] = ACTIONS(1797), + [anon_sym_public] = ACTIONS(1797), + [anon_sym_private] = ACTIONS(1797), + [anon_sym_protected] = ACTIONS(1797), + [anon_sym_override] = ACTIONS(1797), + [anon_sym_module] = ACTIONS(1797), + [anon_sym_any] = ACTIONS(1797), + [anon_sym_number] = ACTIONS(1797), + [anon_sym_boolean] = ACTIONS(1797), + [anon_sym_string] = ACTIONS(1797), + [anon_sym_symbol] = ACTIONS(1797), + [anon_sym_object] = ACTIONS(1797), + [anon_sym_abstract] = ACTIONS(1797), + [anon_sym_interface] = ACTIONS(1797), + [anon_sym_enum] = ACTIONS(1797), + [sym__automatic_semicolon] = ACTIONS(1803), + [sym_html_comment] = ACTIONS(5), + }, + [771] = { + [ts_builtin_sym_end] = ACTIONS(1813), + [sym_identifier] = ACTIONS(1815), + [anon_sym_export] = ACTIONS(1815), + [anon_sym_default] = ACTIONS(1815), + [anon_sym_type] = ACTIONS(1815), + [anon_sym_namespace] = ACTIONS(1815), + [anon_sym_LBRACE] = ACTIONS(1813), + [anon_sym_RBRACE] = ACTIONS(1813), + [anon_sym_typeof] = ACTIONS(1815), + [anon_sym_import] = ACTIONS(1815), + [anon_sym_with] = ACTIONS(1815), + [anon_sym_var] = ACTIONS(1815), + [anon_sym_let] = ACTIONS(1815), + [anon_sym_const] = ACTIONS(1815), + [anon_sym_BANG] = ACTIONS(1813), + [anon_sym_else] = ACTIONS(1815), + [anon_sym_if] = ACTIONS(1815), + [anon_sym_switch] = ACTIONS(1815), + [anon_sym_for] = ACTIONS(1815), + [anon_sym_LPAREN] = ACTIONS(1813), + [anon_sym_SEMI] = ACTIONS(1813), + [anon_sym_await] = ACTIONS(1815), + [anon_sym_while] = ACTIONS(1815), + [anon_sym_do] = ACTIONS(1815), + [anon_sym_try] = ACTIONS(1815), + [anon_sym_break] = ACTIONS(1815), + [anon_sym_continue] = ACTIONS(1815), + [anon_sym_debugger] = ACTIONS(1815), + [anon_sym_return] = ACTIONS(1815), + [anon_sym_throw] = ACTIONS(1815), + [anon_sym_case] = ACTIONS(1815), + [anon_sym_yield] = ACTIONS(1815), + [anon_sym_LBRACK] = ACTIONS(1813), + [anon_sym_DQUOTE] = ACTIONS(1813), + [anon_sym_SQUOTE] = ACTIONS(1813), + [anon_sym_class] = ACTIONS(1815), + [anon_sym_async] = ACTIONS(1815), + [anon_sym_function] = ACTIONS(1815), + [anon_sym_new] = ACTIONS(1815), + [anon_sym_using] = ACTIONS(1815), + [anon_sym_PLUS] = ACTIONS(1815), + [anon_sym_DASH] = ACTIONS(1815), + [anon_sym_SLASH] = ACTIONS(1815), + [anon_sym_LT] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1813), + [anon_sym_void] = ACTIONS(1815), + [anon_sym_delete] = ACTIONS(1815), + [anon_sym_PLUS_PLUS] = ACTIONS(1813), + [anon_sym_DASH_DASH] = ACTIONS(1813), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1813), + [sym_number] = ACTIONS(1813), + [sym_private_property_identifier] = ACTIONS(1813), + [sym_this] = ACTIONS(1815), + [sym_super] = ACTIONS(1815), + [sym_true] = ACTIONS(1815), + [sym_false] = ACTIONS(1815), + [sym_null] = ACTIONS(1815), + [sym_undefined] = ACTIONS(1815), + [anon_sym_AT] = ACTIONS(1813), + [anon_sym_static] = ACTIONS(1815), + [anon_sym_readonly] = ACTIONS(1815), + [anon_sym_get] = ACTIONS(1815), + [anon_sym_set] = ACTIONS(1815), + [anon_sym_declare] = ACTIONS(1815), + [anon_sym_public] = ACTIONS(1815), + [anon_sym_private] = ACTIONS(1815), + [anon_sym_protected] = ACTIONS(1815), + [anon_sym_override] = ACTIONS(1815), + [anon_sym_module] = ACTIONS(1815), + [anon_sym_any] = ACTIONS(1815), + [anon_sym_number] = ACTIONS(1815), + [anon_sym_boolean] = ACTIONS(1815), + [anon_sym_string] = ACTIONS(1815), + [anon_sym_symbol] = ACTIONS(1815), + [anon_sym_object] = ACTIONS(1815), + [anon_sym_abstract] = ACTIONS(1815), + [anon_sym_interface] = ACTIONS(1815), + [anon_sym_enum] = ACTIONS(1815), + [sym__automatic_semicolon] = ACTIONS(1821), + [sym_html_comment] = ACTIONS(5), + }, + [772] = { + [ts_builtin_sym_end] = ACTIONS(1823), + [sym_identifier] = ACTIONS(1825), + [anon_sym_export] = ACTIONS(1825), + [anon_sym_default] = ACTIONS(1825), + [anon_sym_type] = ACTIONS(1825), + [anon_sym_namespace] = ACTIONS(1825), + [anon_sym_LBRACE] = ACTIONS(1823), + [anon_sym_RBRACE] = ACTIONS(1823), + [anon_sym_typeof] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(1825), + [anon_sym_with] = ACTIONS(1825), + [anon_sym_var] = ACTIONS(1825), + [anon_sym_let] = ACTIONS(1825), + [anon_sym_const] = ACTIONS(1825), + [anon_sym_BANG] = ACTIONS(1823), + [anon_sym_else] = ACTIONS(1825), + [anon_sym_if] = ACTIONS(1825), + [anon_sym_switch] = ACTIONS(1825), + [anon_sym_for] = ACTIONS(1825), + [anon_sym_LPAREN] = ACTIONS(1823), + [anon_sym_SEMI] = ACTIONS(1823), + [anon_sym_await] = ACTIONS(1825), + [anon_sym_while] = ACTIONS(1825), + [anon_sym_do] = ACTIONS(1825), + [anon_sym_try] = ACTIONS(1825), + [anon_sym_break] = ACTIONS(1825), + [anon_sym_continue] = ACTIONS(1825), + [anon_sym_debugger] = ACTIONS(1825), + [anon_sym_return] = ACTIONS(1825), + [anon_sym_throw] = ACTIONS(1825), + [anon_sym_case] = ACTIONS(1825), + [anon_sym_yield] = ACTIONS(1825), + [anon_sym_LBRACK] = ACTIONS(1823), + [anon_sym_DQUOTE] = ACTIONS(1823), + [anon_sym_SQUOTE] = ACTIONS(1823), + [anon_sym_class] = ACTIONS(1825), + [anon_sym_async] = ACTIONS(1825), + [anon_sym_function] = ACTIONS(1825), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1825), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_SLASH] = ACTIONS(1825), + [anon_sym_LT] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1823), + [anon_sym_void] = ACTIONS(1825), + [anon_sym_delete] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1823), + [anon_sym_DASH_DASH] = ACTIONS(1823), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1823), + [sym_number] = ACTIONS(1823), + [sym_private_property_identifier] = ACTIONS(1823), + [sym_this] = ACTIONS(1825), + [sym_super] = ACTIONS(1825), + [sym_true] = ACTIONS(1825), + [sym_false] = ACTIONS(1825), + [sym_null] = ACTIONS(1825), + [sym_undefined] = ACTIONS(1825), + [anon_sym_AT] = ACTIONS(1823), + [anon_sym_static] = ACTIONS(1825), + [anon_sym_readonly] = ACTIONS(1825), + [anon_sym_get] = ACTIONS(1825), + [anon_sym_set] = ACTIONS(1825), + [anon_sym_declare] = ACTIONS(1825), + [anon_sym_public] = ACTIONS(1825), + [anon_sym_private] = ACTIONS(1825), + [anon_sym_protected] = ACTIONS(1825), + [anon_sym_override] = ACTIONS(1825), + [anon_sym_module] = ACTIONS(1825), + [anon_sym_any] = ACTIONS(1825), + [anon_sym_number] = ACTIONS(1825), + [anon_sym_boolean] = ACTIONS(1825), + [anon_sym_string] = ACTIONS(1825), + [anon_sym_symbol] = ACTIONS(1825), + [anon_sym_object] = ACTIONS(1825), + [anon_sym_abstract] = ACTIONS(1825), + [anon_sym_interface] = ACTIONS(1825), + [anon_sym_enum] = ACTIONS(1825), + [sym__automatic_semicolon] = ACTIONS(1831), + [sym_html_comment] = ACTIONS(5), + }, + [773] = { + [ts_builtin_sym_end] = ACTIONS(1849), + [sym_identifier] = ACTIONS(1851), + [anon_sym_export] = ACTIONS(1851), + [anon_sym_default] = ACTIONS(1851), + [anon_sym_type] = ACTIONS(1851), + [anon_sym_namespace] = ACTIONS(1851), + [anon_sym_LBRACE] = ACTIONS(1849), + [anon_sym_RBRACE] = ACTIONS(1849), + [anon_sym_typeof] = ACTIONS(1851), + [anon_sym_import] = ACTIONS(1851), + [anon_sym_with] = ACTIONS(1851), + [anon_sym_var] = ACTIONS(1851), + [anon_sym_let] = ACTIONS(1851), + [anon_sym_const] = ACTIONS(1851), + [anon_sym_BANG] = ACTIONS(1849), + [anon_sym_else] = ACTIONS(1851), + [anon_sym_if] = ACTIONS(1851), + [anon_sym_switch] = ACTIONS(1851), + [anon_sym_for] = ACTIONS(1851), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_SEMI] = ACTIONS(1849), + [anon_sym_await] = ACTIONS(1851), + [anon_sym_while] = ACTIONS(1851), + [anon_sym_do] = ACTIONS(1851), + [anon_sym_try] = ACTIONS(1851), + [anon_sym_break] = ACTIONS(1851), + [anon_sym_continue] = ACTIONS(1851), + [anon_sym_debugger] = ACTIONS(1851), + [anon_sym_return] = ACTIONS(1851), + [anon_sym_throw] = ACTIONS(1851), + [anon_sym_case] = ACTIONS(1851), + [anon_sym_yield] = ACTIONS(1851), + [anon_sym_LBRACK] = ACTIONS(1849), + [anon_sym_DQUOTE] = ACTIONS(1849), + [anon_sym_SQUOTE] = ACTIONS(1849), + [anon_sym_class] = ACTIONS(1851), + [anon_sym_async] = ACTIONS(1851), + [anon_sym_function] = ACTIONS(1851), + [anon_sym_new] = ACTIONS(1851), + [anon_sym_using] = ACTIONS(1851), + [anon_sym_PLUS] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_SLASH] = ACTIONS(1851), + [anon_sym_LT] = ACTIONS(1849), + [anon_sym_TILDE] = ACTIONS(1849), + [anon_sym_void] = ACTIONS(1851), + [anon_sym_delete] = ACTIONS(1851), + [anon_sym_PLUS_PLUS] = ACTIONS(1849), + [anon_sym_DASH_DASH] = ACTIONS(1849), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1849), + [sym_number] = ACTIONS(1849), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(1851), + [sym_super] = ACTIONS(1851), + [sym_true] = ACTIONS(1851), + [sym_false] = ACTIONS(1851), + [sym_null] = ACTIONS(1851), + [sym_undefined] = ACTIONS(1851), + [anon_sym_AT] = ACTIONS(1849), + [anon_sym_static] = ACTIONS(1851), + [anon_sym_readonly] = ACTIONS(1851), + [anon_sym_get] = ACTIONS(1851), + [anon_sym_set] = ACTIONS(1851), + [anon_sym_declare] = ACTIONS(1851), + [anon_sym_public] = ACTIONS(1851), + [anon_sym_private] = ACTIONS(1851), + [anon_sym_protected] = ACTIONS(1851), + [anon_sym_override] = ACTIONS(1851), + [anon_sym_module] = ACTIONS(1851), + [anon_sym_any] = ACTIONS(1851), + [anon_sym_number] = ACTIONS(1851), + [anon_sym_boolean] = ACTIONS(1851), + [anon_sym_string] = ACTIONS(1851), + [anon_sym_symbol] = ACTIONS(1851), + [anon_sym_object] = ACTIONS(1851), + [anon_sym_abstract] = ACTIONS(1851), + [anon_sym_interface] = ACTIONS(1851), + [anon_sym_enum] = ACTIONS(1851), + [sym__automatic_semicolon] = ACTIONS(1857), + [sym_html_comment] = ACTIONS(5), + }, + [774] = { [ts_builtin_sym_end] = ACTIONS(1859), [sym_identifier] = ACTIONS(1861), [anon_sym_export] = ACTIONS(1861), @@ -108210,7 +107350,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(1861), [anon_sym_yield] = ACTIONS(1861), [anon_sym_LBRACK] = ACTIONS(1859), - [sym_glimmer_opening_tag] = ACTIONS(1859), [anon_sym_DQUOTE] = ACTIONS(1859), [anon_sym_SQUOTE] = ACTIONS(1859), [anon_sym_class] = ACTIONS(1861), @@ -108221,7 +107360,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1861), [anon_sym_DASH] = ACTIONS(1861), [anon_sym_SLASH] = ACTIONS(1861), - [anon_sym_LT] = ACTIONS(1861), + [anon_sym_LT] = ACTIONS(1859), [anon_sym_TILDE] = ACTIONS(1859), [anon_sym_void] = ACTIONS(1861), [anon_sym_delete] = ACTIONS(1861), @@ -108260,511 +107399,2967 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__automatic_semicolon] = ACTIONS(1867), [sym_html_comment] = ACTIONS(5), }, - [766] = { - [sym__call_signature] = STATE(5864), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2397), - [anon_sym_export] = ACTIONS(2399), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2399), - [anon_sym_EQ] = ACTIONS(980), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2399), - [anon_sym_let] = ACTIONS(2399), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2399), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2399), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2399), - [anon_sym_readonly] = ACTIONS(2399), - [anon_sym_get] = ACTIONS(2399), - [anon_sym_set] = ACTIONS(2399), - [anon_sym_declare] = ACTIONS(2399), - [anon_sym_public] = ACTIONS(2399), - [anon_sym_private] = ACTIONS(2399), - [anon_sym_protected] = ACTIONS(2399), - [anon_sym_override] = ACTIONS(2399), - [anon_sym_module] = ACTIONS(2399), - [anon_sym_any] = ACTIONS(2399), - [anon_sym_number] = ACTIONS(2399), - [anon_sym_boolean] = ACTIONS(2399), - [anon_sym_string] = ACTIONS(2399), - [anon_sym_symbol] = ACTIONS(2399), - [anon_sym_object] = ACTIONS(2399), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [775] = { + [ts_builtin_sym_end] = ACTIONS(2498), + [sym_identifier] = ACTIONS(2500), + [anon_sym_export] = ACTIONS(2500), + [anon_sym_default] = ACTIONS(2500), + [anon_sym_type] = ACTIONS(2500), + [anon_sym_namespace] = ACTIONS(2500), + [anon_sym_LBRACE] = ACTIONS(2498), + [anon_sym_RBRACE] = ACTIONS(2498), + [anon_sym_typeof] = ACTIONS(2500), + [anon_sym_import] = ACTIONS(2500), + [anon_sym_with] = ACTIONS(2500), + [anon_sym_var] = ACTIONS(2500), + [anon_sym_let] = ACTIONS(2500), + [anon_sym_const] = ACTIONS(2500), + [anon_sym_BANG] = ACTIONS(2498), + [anon_sym_else] = ACTIONS(2500), + [anon_sym_if] = ACTIONS(2500), + [anon_sym_switch] = ACTIONS(2500), + [anon_sym_for] = ACTIONS(2500), + [anon_sym_LPAREN] = ACTIONS(2498), + [anon_sym_SEMI] = ACTIONS(2498), + [anon_sym_RPAREN] = ACTIONS(2498), + [anon_sym_await] = ACTIONS(2500), + [anon_sym_while] = ACTIONS(2500), + [anon_sym_do] = ACTIONS(2500), + [anon_sym_try] = ACTIONS(2500), + [anon_sym_break] = ACTIONS(2500), + [anon_sym_continue] = ACTIONS(2500), + [anon_sym_debugger] = ACTIONS(2500), + [anon_sym_return] = ACTIONS(2500), + [anon_sym_throw] = ACTIONS(2500), + [anon_sym_case] = ACTIONS(2500), + [anon_sym_yield] = ACTIONS(2500), + [anon_sym_LBRACK] = ACTIONS(2498), + [anon_sym_DQUOTE] = ACTIONS(2498), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_class] = ACTIONS(2500), + [anon_sym_async] = ACTIONS(2500), + [anon_sym_function] = ACTIONS(2500), + [anon_sym_new] = ACTIONS(2500), + [anon_sym_using] = ACTIONS(2500), + [anon_sym_PLUS] = ACTIONS(2500), + [anon_sym_DASH] = ACTIONS(2500), + [anon_sym_SLASH] = ACTIONS(2500), + [anon_sym_LT] = ACTIONS(2498), + [anon_sym_TILDE] = ACTIONS(2498), + [anon_sym_void] = ACTIONS(2500), + [anon_sym_delete] = ACTIONS(2500), + [anon_sym_PLUS_PLUS] = ACTIONS(2498), + [anon_sym_DASH_DASH] = ACTIONS(2498), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2498), + [sym_number] = ACTIONS(2498), + [sym_private_property_identifier] = ACTIONS(2498), + [sym_this] = ACTIONS(2500), + [sym_super] = ACTIONS(2500), + [sym_true] = ACTIONS(2500), + [sym_false] = ACTIONS(2500), + [sym_null] = ACTIONS(2500), + [sym_undefined] = ACTIONS(2500), + [anon_sym_AT] = ACTIONS(2498), + [anon_sym_static] = ACTIONS(2500), + [anon_sym_readonly] = ACTIONS(2500), + [anon_sym_get] = ACTIONS(2500), + [anon_sym_set] = ACTIONS(2500), + [anon_sym_declare] = ACTIONS(2500), + [anon_sym_public] = ACTIONS(2500), + [anon_sym_private] = ACTIONS(2500), + [anon_sym_protected] = ACTIONS(2500), + [anon_sym_override] = ACTIONS(2500), + [anon_sym_module] = ACTIONS(2500), + [anon_sym_any] = ACTIONS(2500), + [anon_sym_number] = ACTIONS(2500), + [anon_sym_boolean] = ACTIONS(2500), + [anon_sym_string] = ACTIONS(2500), + [anon_sym_symbol] = ACTIONS(2500), + [anon_sym_object] = ACTIONS(2500), + [anon_sym_abstract] = ACTIONS(2500), + [anon_sym_interface] = ACTIONS(2500), + [anon_sym_enum] = ACTIONS(2500), [sym_html_comment] = ACTIONS(5), }, - [767] = { - [sym_else_clause] = STATE(904), - [ts_builtin_sym_end] = ACTIONS(2489), - [sym_identifier] = ACTIONS(2491), - [anon_sym_export] = ACTIONS(2491), - [anon_sym_default] = ACTIONS(2491), - [anon_sym_type] = ACTIONS(2491), - [anon_sym_namespace] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_RBRACE] = ACTIONS(2489), - [anon_sym_typeof] = ACTIONS(2491), - [anon_sym_import] = ACTIONS(2491), - [anon_sym_with] = ACTIONS(2491), - [anon_sym_var] = ACTIONS(2491), - [anon_sym_let] = ACTIONS(2491), - [anon_sym_const] = ACTIONS(2491), - [anon_sym_BANG] = ACTIONS(2489), - [anon_sym_else] = ACTIONS(2493), - [anon_sym_if] = ACTIONS(2491), - [anon_sym_switch] = ACTIONS(2491), - [anon_sym_for] = ACTIONS(2491), - [anon_sym_LPAREN] = ACTIONS(2489), - [anon_sym_SEMI] = ACTIONS(2489), - [anon_sym_await] = ACTIONS(2491), - [anon_sym_while] = ACTIONS(2491), - [anon_sym_do] = ACTIONS(2491), - [anon_sym_try] = ACTIONS(2491), - [anon_sym_break] = ACTIONS(2491), - [anon_sym_continue] = ACTIONS(2491), - [anon_sym_debugger] = ACTIONS(2491), - [anon_sym_return] = ACTIONS(2491), - [anon_sym_throw] = ACTIONS(2491), - [anon_sym_case] = ACTIONS(2491), - [anon_sym_yield] = ACTIONS(2491), - [anon_sym_LBRACK] = ACTIONS(2489), - [sym_glimmer_opening_tag] = ACTIONS(2489), - [anon_sym_DQUOTE] = ACTIONS(2489), - [anon_sym_SQUOTE] = ACTIONS(2489), - [anon_sym_class] = ACTIONS(2491), - [anon_sym_async] = ACTIONS(2491), - [anon_sym_function] = ACTIONS(2491), - [anon_sym_new] = ACTIONS(2491), - [anon_sym_using] = ACTIONS(2491), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_SLASH] = ACTIONS(2491), - [anon_sym_LT] = ACTIONS(2491), - [anon_sym_TILDE] = ACTIONS(2489), - [anon_sym_void] = ACTIONS(2491), - [anon_sym_delete] = ACTIONS(2491), - [anon_sym_PLUS_PLUS] = ACTIONS(2489), - [anon_sym_DASH_DASH] = ACTIONS(2489), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2489), - [sym_number] = ACTIONS(2489), - [sym_private_property_identifier] = ACTIONS(2489), - [sym_this] = ACTIONS(2491), - [sym_super] = ACTIONS(2491), - [sym_true] = ACTIONS(2491), - [sym_false] = ACTIONS(2491), - [sym_null] = ACTIONS(2491), - [sym_undefined] = ACTIONS(2491), - [anon_sym_AT] = ACTIONS(2489), - [anon_sym_static] = ACTIONS(2491), - [anon_sym_readonly] = ACTIONS(2491), - [anon_sym_get] = ACTIONS(2491), - [anon_sym_set] = ACTIONS(2491), - [anon_sym_declare] = ACTIONS(2491), - [anon_sym_public] = ACTIONS(2491), - [anon_sym_private] = ACTIONS(2491), - [anon_sym_protected] = ACTIONS(2491), - [anon_sym_override] = ACTIONS(2491), - [anon_sym_module] = ACTIONS(2491), - [anon_sym_any] = ACTIONS(2491), - [anon_sym_number] = ACTIONS(2491), - [anon_sym_boolean] = ACTIONS(2491), - [anon_sym_string] = ACTIONS(2491), - [anon_sym_symbol] = ACTIONS(2491), - [anon_sym_object] = ACTIONS(2491), - [anon_sym_abstract] = ACTIONS(2491), - [anon_sym_interface] = ACTIONS(2491), - [anon_sym_enum] = ACTIONS(2491), + [776] = { + [ts_builtin_sym_end] = ACTIONS(1713), + [sym_identifier] = ACTIONS(1715), + [anon_sym_export] = ACTIONS(1715), + [anon_sym_default] = ACTIONS(1715), + [anon_sym_type] = ACTIONS(1715), + [anon_sym_namespace] = ACTIONS(1715), + [anon_sym_LBRACE] = ACTIONS(1713), + [anon_sym_RBRACE] = ACTIONS(1713), + [anon_sym_typeof] = ACTIONS(1715), + [anon_sym_import] = ACTIONS(1715), + [anon_sym_with] = ACTIONS(1715), + [anon_sym_var] = ACTIONS(1715), + [anon_sym_let] = ACTIONS(1715), + [anon_sym_const] = ACTIONS(1715), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_else] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1715), + [anon_sym_switch] = ACTIONS(1715), + [anon_sym_for] = ACTIONS(1715), + [anon_sym_LPAREN] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1713), + [anon_sym_await] = ACTIONS(1715), + [anon_sym_while] = ACTIONS(1715), + [anon_sym_do] = ACTIONS(1715), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_break] = ACTIONS(1715), + [anon_sym_continue] = ACTIONS(1715), + [anon_sym_debugger] = ACTIONS(1715), + [anon_sym_return] = ACTIONS(1715), + [anon_sym_throw] = ACTIONS(1715), + [anon_sym_case] = ACTIONS(1715), + [anon_sym_yield] = ACTIONS(1715), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_DQUOTE] = ACTIONS(1713), + [anon_sym_SQUOTE] = ACTIONS(1713), + [anon_sym_class] = ACTIONS(1715), + [anon_sym_async] = ACTIONS(1715), + [anon_sym_function] = ACTIONS(1715), + [anon_sym_new] = ACTIONS(1715), + [anon_sym_using] = ACTIONS(1715), + [anon_sym_PLUS] = ACTIONS(1715), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_SLASH] = ACTIONS(1715), + [anon_sym_LT] = ACTIONS(1713), + [anon_sym_TILDE] = ACTIONS(1713), + [anon_sym_void] = ACTIONS(1715), + [anon_sym_delete] = ACTIONS(1715), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1713), + [sym_number] = ACTIONS(1713), + [sym_private_property_identifier] = ACTIONS(1713), + [sym_this] = ACTIONS(1715), + [sym_super] = ACTIONS(1715), + [sym_true] = ACTIONS(1715), + [sym_false] = ACTIONS(1715), + [sym_null] = ACTIONS(1715), + [sym_undefined] = ACTIONS(1715), + [anon_sym_AT] = ACTIONS(1713), + [anon_sym_static] = ACTIONS(1715), + [anon_sym_readonly] = ACTIONS(1715), + [anon_sym_get] = ACTIONS(1715), + [anon_sym_set] = ACTIONS(1715), + [anon_sym_declare] = ACTIONS(1715), + [anon_sym_public] = ACTIONS(1715), + [anon_sym_private] = ACTIONS(1715), + [anon_sym_protected] = ACTIONS(1715), + [anon_sym_override] = ACTIONS(1715), + [anon_sym_module] = ACTIONS(1715), + [anon_sym_any] = ACTIONS(1715), + [anon_sym_number] = ACTIONS(1715), + [anon_sym_boolean] = ACTIONS(1715), + [anon_sym_string] = ACTIONS(1715), + [anon_sym_symbol] = ACTIONS(1715), + [anon_sym_object] = ACTIONS(1715), + [anon_sym_abstract] = ACTIONS(1715), + [anon_sym_interface] = ACTIONS(1715), + [anon_sym_enum] = ACTIONS(1715), + [sym__automatic_semicolon] = ACTIONS(1721), [sym_html_comment] = ACTIONS(5), }, - [768] = { - [ts_builtin_sym_end] = ACTIONS(1747), - [sym_identifier] = ACTIONS(1749), - [anon_sym_export] = ACTIONS(1749), - [anon_sym_default] = ACTIONS(1749), - [anon_sym_type] = ACTIONS(1749), - [anon_sym_namespace] = ACTIONS(1749), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_RBRACE] = ACTIONS(1747), - [anon_sym_typeof] = ACTIONS(1749), - [anon_sym_import] = ACTIONS(1749), - [anon_sym_with] = ACTIONS(1749), - [anon_sym_var] = ACTIONS(1749), - [anon_sym_let] = ACTIONS(1749), - [anon_sym_const] = ACTIONS(1749), - [anon_sym_BANG] = ACTIONS(1747), - [anon_sym_else] = ACTIONS(1749), - [anon_sym_if] = ACTIONS(1749), - [anon_sym_switch] = ACTIONS(1749), - [anon_sym_for] = ACTIONS(1749), - [anon_sym_LPAREN] = ACTIONS(1747), - [anon_sym_SEMI] = ACTIONS(1747), - [anon_sym_await] = ACTIONS(1749), - [anon_sym_while] = ACTIONS(1749), - [anon_sym_do] = ACTIONS(1749), - [anon_sym_try] = ACTIONS(1749), - [anon_sym_break] = ACTIONS(1749), - [anon_sym_continue] = ACTIONS(1749), - [anon_sym_debugger] = ACTIONS(1749), - [anon_sym_return] = ACTIONS(1749), - [anon_sym_throw] = ACTIONS(1749), - [anon_sym_case] = ACTIONS(1749), - [anon_sym_yield] = ACTIONS(1749), - [anon_sym_LBRACK] = ACTIONS(1747), - [sym_glimmer_opening_tag] = ACTIONS(1747), - [anon_sym_DQUOTE] = ACTIONS(1747), - [anon_sym_SQUOTE] = ACTIONS(1747), - [anon_sym_class] = ACTIONS(1749), - [anon_sym_async] = ACTIONS(1749), - [anon_sym_function] = ACTIONS(1749), - [anon_sym_new] = ACTIONS(1749), - [anon_sym_using] = ACTIONS(1749), - [anon_sym_PLUS] = ACTIONS(1749), - [anon_sym_DASH] = ACTIONS(1749), - [anon_sym_SLASH] = ACTIONS(1749), - [anon_sym_LT] = ACTIONS(1749), - [anon_sym_TILDE] = ACTIONS(1747), - [anon_sym_void] = ACTIONS(1749), - [anon_sym_delete] = ACTIONS(1749), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1747), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1747), - [sym_number] = ACTIONS(1747), - [sym_private_property_identifier] = ACTIONS(1747), - [sym_this] = ACTIONS(1749), - [sym_super] = ACTIONS(1749), - [sym_true] = ACTIONS(1749), - [sym_false] = ACTIONS(1749), - [sym_null] = ACTIONS(1749), - [sym_undefined] = ACTIONS(1749), - [anon_sym_AT] = ACTIONS(1747), - [anon_sym_static] = ACTIONS(1749), - [anon_sym_readonly] = ACTIONS(1749), - [anon_sym_get] = ACTIONS(1749), - [anon_sym_set] = ACTIONS(1749), - [anon_sym_declare] = ACTIONS(1749), - [anon_sym_public] = ACTIONS(1749), - [anon_sym_private] = ACTIONS(1749), - [anon_sym_protected] = ACTIONS(1749), - [anon_sym_override] = ACTIONS(1749), - [anon_sym_module] = ACTIONS(1749), - [anon_sym_any] = ACTIONS(1749), - [anon_sym_number] = ACTIONS(1749), - [anon_sym_boolean] = ACTIONS(1749), - [anon_sym_string] = ACTIONS(1749), - [anon_sym_symbol] = ACTIONS(1749), - [anon_sym_object] = ACTIONS(1749), - [anon_sym_abstract] = ACTIONS(1749), - [anon_sym_interface] = ACTIONS(1749), - [anon_sym_enum] = ACTIONS(1749), - [sym__automatic_semicolon] = ACTIONS(1755), + [777] = { + [ts_builtin_sym_end] = ACTIONS(1727), + [sym_identifier] = ACTIONS(1729), + [anon_sym_export] = ACTIONS(1729), + [anon_sym_default] = ACTIONS(1729), + [anon_sym_type] = ACTIONS(1729), + [anon_sym_namespace] = ACTIONS(1729), + [anon_sym_LBRACE] = ACTIONS(1727), + [anon_sym_RBRACE] = ACTIONS(1727), + [anon_sym_typeof] = ACTIONS(1729), + [anon_sym_import] = ACTIONS(1729), + [anon_sym_with] = ACTIONS(1729), + [anon_sym_var] = ACTIONS(1729), + [anon_sym_let] = ACTIONS(1729), + [anon_sym_const] = ACTIONS(1729), + [anon_sym_BANG] = ACTIONS(1727), + [anon_sym_else] = ACTIONS(1729), + [anon_sym_if] = ACTIONS(1729), + [anon_sym_switch] = ACTIONS(1729), + [anon_sym_for] = ACTIONS(1729), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_SEMI] = ACTIONS(1727), + [anon_sym_await] = ACTIONS(1729), + [anon_sym_while] = ACTIONS(1729), + [anon_sym_do] = ACTIONS(1729), + [anon_sym_try] = 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_case] = ACTIONS(1729), + [anon_sym_yield] = ACTIONS(1729), + [anon_sym_LBRACK] = ACTIONS(1727), + [anon_sym_DQUOTE] = ACTIONS(1727), + [anon_sym_SQUOTE] = ACTIONS(1727), + [anon_sym_class] = ACTIONS(1729), + [anon_sym_async] = ACTIONS(1729), + [anon_sym_function] = ACTIONS(1729), + [anon_sym_new] = ACTIONS(1729), + [anon_sym_using] = ACTIONS(1729), + [anon_sym_PLUS] = ACTIONS(1729), + [anon_sym_DASH] = ACTIONS(1729), + [anon_sym_SLASH] = ACTIONS(1729), + [anon_sym_LT] = ACTIONS(1727), + [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), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1727), + [sym_number] = ACTIONS(1727), + [sym_private_property_identifier] = 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_readonly] = 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_override] = 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_object] = ACTIONS(1729), + [anon_sym_abstract] = ACTIONS(1729), + [anon_sym_interface] = ACTIONS(1729), + [anon_sym_enum] = ACTIONS(1729), + [sym__automatic_semicolon] = ACTIONS(1735), [sym_html_comment] = ACTIONS(5), }, - [769] = { - [ts_builtin_sym_end] = ACTIONS(1777), - [sym_identifier] = ACTIONS(1779), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_default] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1777), - [anon_sym_RBRACE] = ACTIONS(1777), - [anon_sym_typeof] = ACTIONS(1779), - [anon_sym_import] = ACTIONS(1779), - [anon_sym_with] = ACTIONS(1779), - [anon_sym_var] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_const] = ACTIONS(1779), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_else] = ACTIONS(1779), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_switch] = ACTIONS(1779), - [anon_sym_for] = ACTIONS(1779), - [anon_sym_LPAREN] = ACTIONS(1777), - [anon_sym_SEMI] = ACTIONS(1777), - [anon_sym_await] = ACTIONS(1779), - [anon_sym_while] = ACTIONS(1779), - [anon_sym_do] = ACTIONS(1779), - [anon_sym_try] = ACTIONS(1779), - [anon_sym_break] = ACTIONS(1779), - [anon_sym_continue] = ACTIONS(1779), - [anon_sym_debugger] = ACTIONS(1779), - [anon_sym_return] = ACTIONS(1779), - [anon_sym_throw] = ACTIONS(1779), - [anon_sym_case] = ACTIONS(1779), - [anon_sym_yield] = ACTIONS(1779), - [anon_sym_LBRACK] = ACTIONS(1777), - [sym_glimmer_opening_tag] = ACTIONS(1777), - [anon_sym_DQUOTE] = ACTIONS(1777), - [anon_sym_SQUOTE] = ACTIONS(1777), - [anon_sym_class] = ACTIONS(1779), - [anon_sym_async] = ACTIONS(1779), - [anon_sym_function] = ACTIONS(1779), - [anon_sym_new] = ACTIONS(1779), - [anon_sym_using] = ACTIONS(1779), - [anon_sym_PLUS] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(1779), - [anon_sym_SLASH] = ACTIONS(1779), - [anon_sym_LT] = ACTIONS(1779), - [anon_sym_TILDE] = ACTIONS(1777), - [anon_sym_void] = ACTIONS(1779), - [anon_sym_delete] = ACTIONS(1779), - [anon_sym_PLUS_PLUS] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1777), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1777), - [sym_number] = ACTIONS(1777), - [sym_private_property_identifier] = ACTIONS(1777), - [sym_this] = ACTIONS(1779), - [sym_super] = ACTIONS(1779), - [sym_true] = ACTIONS(1779), - [sym_false] = ACTIONS(1779), - [sym_null] = ACTIONS(1779), - [sym_undefined] = ACTIONS(1779), - [anon_sym_AT] = ACTIONS(1777), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_abstract] = ACTIONS(1779), - [anon_sym_interface] = ACTIONS(1779), - [anon_sym_enum] = ACTIONS(1779), - [sym__automatic_semicolon] = ACTIONS(1785), + [778] = { + [ts_builtin_sym_end] = ACTIONS(2502), + [sym_identifier] = ACTIONS(2504), + [anon_sym_export] = ACTIONS(2504), + [anon_sym_default] = ACTIONS(2504), + [anon_sym_type] = ACTIONS(2504), + [anon_sym_namespace] = ACTIONS(2504), + [anon_sym_LBRACE] = ACTIONS(2502), + [anon_sym_RBRACE] = ACTIONS(2502), + [anon_sym_typeof] = ACTIONS(2504), + [anon_sym_import] = ACTIONS(2504), + [anon_sym_with] = ACTIONS(2504), + [anon_sym_var] = ACTIONS(2504), + [anon_sym_let] = ACTIONS(2504), + [anon_sym_const] = ACTIONS(2504), + [anon_sym_BANG] = ACTIONS(2502), + [anon_sym_else] = ACTIONS(2504), + [anon_sym_if] = ACTIONS(2504), + [anon_sym_switch] = ACTIONS(2504), + [anon_sym_for] = ACTIONS(2504), + [anon_sym_LPAREN] = ACTIONS(2502), + [anon_sym_SEMI] = ACTIONS(2502), + [anon_sym_await] = ACTIONS(2504), + [anon_sym_while] = ACTIONS(2504), + [anon_sym_do] = ACTIONS(2504), + [anon_sym_try] = ACTIONS(2504), + [anon_sym_break] = ACTIONS(2504), + [anon_sym_continue] = ACTIONS(2504), + [anon_sym_debugger] = ACTIONS(2504), + [anon_sym_return] = ACTIONS(2504), + [anon_sym_throw] = ACTIONS(2504), + [anon_sym_case] = ACTIONS(2504), + [anon_sym_finally] = ACTIONS(2504), + [anon_sym_yield] = ACTIONS(2504), + [anon_sym_LBRACK] = ACTIONS(2502), + [anon_sym_DQUOTE] = ACTIONS(2502), + [anon_sym_SQUOTE] = ACTIONS(2502), + [anon_sym_class] = ACTIONS(2504), + [anon_sym_async] = ACTIONS(2504), + [anon_sym_function] = ACTIONS(2504), + [anon_sym_new] = ACTIONS(2504), + [anon_sym_using] = ACTIONS(2504), + [anon_sym_PLUS] = ACTIONS(2504), + [anon_sym_DASH] = ACTIONS(2504), + [anon_sym_SLASH] = ACTIONS(2504), + [anon_sym_LT] = ACTIONS(2502), + [anon_sym_TILDE] = ACTIONS(2502), + [anon_sym_void] = ACTIONS(2504), + [anon_sym_delete] = ACTIONS(2504), + [anon_sym_PLUS_PLUS] = ACTIONS(2502), + [anon_sym_DASH_DASH] = ACTIONS(2502), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2502), + [sym_number] = ACTIONS(2502), + [sym_private_property_identifier] = ACTIONS(2502), + [sym_this] = ACTIONS(2504), + [sym_super] = ACTIONS(2504), + [sym_true] = ACTIONS(2504), + [sym_false] = ACTIONS(2504), + [sym_null] = ACTIONS(2504), + [sym_undefined] = ACTIONS(2504), + [anon_sym_AT] = ACTIONS(2502), + [anon_sym_static] = ACTIONS(2504), + [anon_sym_readonly] = ACTIONS(2504), + [anon_sym_get] = ACTIONS(2504), + [anon_sym_set] = ACTIONS(2504), + [anon_sym_declare] = ACTIONS(2504), + [anon_sym_public] = ACTIONS(2504), + [anon_sym_private] = ACTIONS(2504), + [anon_sym_protected] = ACTIONS(2504), + [anon_sym_override] = ACTIONS(2504), + [anon_sym_module] = ACTIONS(2504), + [anon_sym_any] = ACTIONS(2504), + [anon_sym_number] = ACTIONS(2504), + [anon_sym_boolean] = ACTIONS(2504), + [anon_sym_string] = ACTIONS(2504), + [anon_sym_symbol] = ACTIONS(2504), + [anon_sym_object] = ACTIONS(2504), + [anon_sym_abstract] = ACTIONS(2504), + [anon_sym_interface] = ACTIONS(2504), + [anon_sym_enum] = ACTIONS(2504), [sym_html_comment] = ACTIONS(5), }, - [770] = { - [ts_builtin_sym_end] = ACTIONS(1869), - [sym_identifier] = ACTIONS(1871), - [anon_sym_export] = ACTIONS(1871), - [anon_sym_default] = ACTIONS(1871), - [anon_sym_type] = ACTIONS(1871), - [anon_sym_namespace] = ACTIONS(1871), - [anon_sym_LBRACE] = ACTIONS(1869), - [anon_sym_RBRACE] = ACTIONS(1869), - [anon_sym_typeof] = ACTIONS(1871), - [anon_sym_import] = ACTIONS(1871), - [anon_sym_with] = ACTIONS(1871), - [anon_sym_var] = ACTIONS(1871), - [anon_sym_let] = ACTIONS(1871), - [anon_sym_const] = ACTIONS(1871), - [anon_sym_BANG] = ACTIONS(1869), - [anon_sym_else] = ACTIONS(1871), - [anon_sym_if] = ACTIONS(1871), - [anon_sym_switch] = ACTIONS(1871), - [anon_sym_for] = ACTIONS(1871), - [anon_sym_LPAREN] = ACTIONS(1869), - [anon_sym_SEMI] = ACTIONS(1869), - [anon_sym_await] = ACTIONS(1871), - [anon_sym_while] = ACTIONS(1871), - [anon_sym_do] = ACTIONS(1871), - [anon_sym_try] = ACTIONS(1871), - [anon_sym_break] = ACTIONS(1871), - [anon_sym_continue] = ACTIONS(1871), - [anon_sym_debugger] = ACTIONS(1871), - [anon_sym_return] = ACTIONS(1871), - [anon_sym_throw] = ACTIONS(1871), - [anon_sym_case] = ACTIONS(1871), - [anon_sym_yield] = ACTIONS(1871), - [anon_sym_LBRACK] = ACTIONS(1869), - [sym_glimmer_opening_tag] = ACTIONS(1869), - [anon_sym_DOT] = ACTIONS(1871), - [anon_sym_DQUOTE] = ACTIONS(1869), - [anon_sym_SQUOTE] = ACTIONS(1869), - [anon_sym_class] = ACTIONS(1871), - [anon_sym_async] = ACTIONS(1871), - [anon_sym_function] = ACTIONS(1871), - [anon_sym_new] = ACTIONS(1871), - [anon_sym_using] = ACTIONS(1871), - [anon_sym_PLUS] = ACTIONS(1871), - [anon_sym_DASH] = ACTIONS(1871), - [anon_sym_SLASH] = ACTIONS(1871), - [anon_sym_LT] = ACTIONS(1871), - [anon_sym_TILDE] = ACTIONS(1869), - [anon_sym_void] = ACTIONS(1871), - [anon_sym_delete] = ACTIONS(1871), - [anon_sym_PLUS_PLUS] = ACTIONS(1869), - [anon_sym_DASH_DASH] = ACTIONS(1869), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1869), - [sym_number] = ACTIONS(1869), - [sym_private_property_identifier] = ACTIONS(1869), - [sym_this] = ACTIONS(1871), - [sym_super] = ACTIONS(1871), - [sym_true] = ACTIONS(1871), - [sym_false] = ACTIONS(1871), - [sym_null] = ACTIONS(1871), - [sym_undefined] = ACTIONS(1871), - [anon_sym_AT] = ACTIONS(1869), - [anon_sym_static] = ACTIONS(1871), - [anon_sym_readonly] = ACTIONS(1871), - [anon_sym_get] = ACTIONS(1871), - [anon_sym_set] = ACTIONS(1871), - [anon_sym_declare] = ACTIONS(1871), - [anon_sym_public] = ACTIONS(1871), - [anon_sym_private] = ACTIONS(1871), - [anon_sym_protected] = ACTIONS(1871), - [anon_sym_override] = ACTIONS(1871), - [anon_sym_module] = ACTIONS(1871), - [anon_sym_any] = ACTIONS(1871), - [anon_sym_number] = ACTIONS(1871), - [anon_sym_boolean] = ACTIONS(1871), - [anon_sym_string] = ACTIONS(1871), - [anon_sym_symbol] = ACTIONS(1871), - [anon_sym_object] = ACTIONS(1871), - [anon_sym_abstract] = ACTIONS(1871), - [anon_sym_interface] = ACTIONS(1871), - [anon_sym_enum] = ACTIONS(1871), + [779] = { + [ts_builtin_sym_end] = ACTIONS(2506), + [sym_identifier] = ACTIONS(2508), + [anon_sym_export] = ACTIONS(2508), + [anon_sym_default] = ACTIONS(2508), + [anon_sym_type] = ACTIONS(2508), + [anon_sym_namespace] = ACTIONS(2508), + [anon_sym_LBRACE] = ACTIONS(2506), + [anon_sym_RBRACE] = ACTIONS(2506), + [anon_sym_typeof] = ACTIONS(2508), + [anon_sym_import] = ACTIONS(2508), + [anon_sym_with] = ACTIONS(2508), + [anon_sym_var] = ACTIONS(2508), + [anon_sym_let] = ACTIONS(2508), + [anon_sym_const] = ACTIONS(2508), + [anon_sym_BANG] = ACTIONS(2506), + [anon_sym_else] = ACTIONS(2508), + [anon_sym_if] = ACTIONS(2508), + [anon_sym_switch] = ACTIONS(2508), + [anon_sym_for] = ACTIONS(2508), + [anon_sym_LPAREN] = ACTIONS(2506), + [anon_sym_SEMI] = ACTIONS(2506), + [anon_sym_await] = ACTIONS(2508), + [anon_sym_while] = ACTIONS(2508), + [anon_sym_do] = ACTIONS(2508), + [anon_sym_try] = ACTIONS(2508), + [anon_sym_break] = ACTIONS(2508), + [anon_sym_continue] = ACTIONS(2508), + [anon_sym_debugger] = ACTIONS(2508), + [anon_sym_return] = ACTIONS(2508), + [anon_sym_throw] = ACTIONS(2508), + [anon_sym_case] = ACTIONS(2508), + [anon_sym_finally] = ACTIONS(2508), + [anon_sym_yield] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2506), + [anon_sym_DQUOTE] = ACTIONS(2506), + [anon_sym_SQUOTE] = ACTIONS(2506), + [anon_sym_class] = ACTIONS(2508), + [anon_sym_async] = ACTIONS(2508), + [anon_sym_function] = ACTIONS(2508), + [anon_sym_new] = ACTIONS(2508), + [anon_sym_using] = ACTIONS(2508), + [anon_sym_PLUS] = ACTIONS(2508), + [anon_sym_DASH] = ACTIONS(2508), + [anon_sym_SLASH] = ACTIONS(2508), + [anon_sym_LT] = ACTIONS(2506), + [anon_sym_TILDE] = ACTIONS(2506), + [anon_sym_void] = ACTIONS(2508), + [anon_sym_delete] = ACTIONS(2508), + [anon_sym_PLUS_PLUS] = ACTIONS(2506), + [anon_sym_DASH_DASH] = ACTIONS(2506), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2506), + [sym_number] = ACTIONS(2506), + [sym_private_property_identifier] = ACTIONS(2506), + [sym_this] = ACTIONS(2508), + [sym_super] = ACTIONS(2508), + [sym_true] = ACTIONS(2508), + [sym_false] = ACTIONS(2508), + [sym_null] = ACTIONS(2508), + [sym_undefined] = ACTIONS(2508), + [anon_sym_AT] = ACTIONS(2506), + [anon_sym_static] = ACTIONS(2508), + [anon_sym_readonly] = ACTIONS(2508), + [anon_sym_get] = ACTIONS(2508), + [anon_sym_set] = ACTIONS(2508), + [anon_sym_declare] = ACTIONS(2508), + [anon_sym_public] = ACTIONS(2508), + [anon_sym_private] = ACTIONS(2508), + [anon_sym_protected] = ACTIONS(2508), + [anon_sym_override] = ACTIONS(2508), + [anon_sym_module] = ACTIONS(2508), + [anon_sym_any] = ACTIONS(2508), + [anon_sym_number] = ACTIONS(2508), + [anon_sym_boolean] = ACTIONS(2508), + [anon_sym_string] = ACTIONS(2508), + [anon_sym_symbol] = ACTIONS(2508), + [anon_sym_object] = ACTIONS(2508), + [anon_sym_abstract] = ACTIONS(2508), + [anon_sym_interface] = ACTIONS(2508), + [anon_sym_enum] = ACTIONS(2508), [sym_html_comment] = ACTIONS(5), }, - [771] = { - [sym__call_signature] = STATE(5864), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2397), - [anon_sym_export] = ACTIONS(2399), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2399), - [anon_sym_EQ] = ACTIONS(1042), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2399), - [anon_sym_let] = ACTIONS(2399), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2399), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2399), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2399), - [anon_sym_readonly] = ACTIONS(2399), - [anon_sym_get] = ACTIONS(2399), - [anon_sym_set] = ACTIONS(2399), - [anon_sym_declare] = ACTIONS(2399), - [anon_sym_public] = ACTIONS(2399), - [anon_sym_private] = ACTIONS(2399), - [anon_sym_protected] = ACTIONS(2399), - [anon_sym_override] = ACTIONS(2399), - [anon_sym_module] = ACTIONS(2399), - [anon_sym_any] = ACTIONS(2399), - [anon_sym_number] = ACTIONS(2399), - [anon_sym_boolean] = ACTIONS(2399), - [anon_sym_string] = ACTIONS(2399), - [anon_sym_symbol] = ACTIONS(2399), - [anon_sym_object] = ACTIONS(2399), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [780] = { + [ts_builtin_sym_end] = ACTIONS(1751), + [sym_identifier] = ACTIONS(1753), + [anon_sym_export] = ACTIONS(1753), + [anon_sym_default] = ACTIONS(1753), + [anon_sym_type] = ACTIONS(1753), + [anon_sym_namespace] = ACTIONS(1753), + [anon_sym_LBRACE] = ACTIONS(1751), + [anon_sym_RBRACE] = ACTIONS(1751), + [anon_sym_typeof] = ACTIONS(1753), + [anon_sym_import] = ACTIONS(1753), + [anon_sym_with] = ACTIONS(1753), + [anon_sym_var] = ACTIONS(1753), + [anon_sym_let] = ACTIONS(1753), + [anon_sym_const] = ACTIONS(1753), + [anon_sym_BANG] = ACTIONS(1751), + [anon_sym_else] = ACTIONS(1753), + [anon_sym_if] = ACTIONS(1753), + [anon_sym_switch] = ACTIONS(1753), + [anon_sym_for] = ACTIONS(1753), + [anon_sym_LPAREN] = ACTIONS(1751), + [anon_sym_SEMI] = ACTIONS(1751), + [anon_sym_await] = ACTIONS(1753), + [anon_sym_while] = ACTIONS(1753), + [anon_sym_do] = ACTIONS(1753), + [anon_sym_try] = ACTIONS(1753), + [anon_sym_break] = ACTIONS(1753), + [anon_sym_continue] = ACTIONS(1753), + [anon_sym_debugger] = ACTIONS(1753), + [anon_sym_return] = ACTIONS(1753), + [anon_sym_throw] = ACTIONS(1753), + [anon_sym_case] = ACTIONS(1753), + [anon_sym_yield] = ACTIONS(1753), + [anon_sym_LBRACK] = ACTIONS(1751), + [anon_sym_DQUOTE] = ACTIONS(1751), + [anon_sym_SQUOTE] = ACTIONS(1751), + [anon_sym_class] = ACTIONS(1753), + [anon_sym_async] = ACTIONS(1753), + [anon_sym_function] = ACTIONS(1753), + [anon_sym_new] = ACTIONS(1753), + [anon_sym_using] = ACTIONS(1753), + [anon_sym_PLUS] = ACTIONS(1753), + [anon_sym_DASH] = ACTIONS(1753), + [anon_sym_SLASH] = ACTIONS(1753), + [anon_sym_LT] = ACTIONS(1751), + [anon_sym_TILDE] = ACTIONS(1751), + [anon_sym_void] = ACTIONS(1753), + [anon_sym_delete] = ACTIONS(1753), + [anon_sym_PLUS_PLUS] = ACTIONS(1751), + [anon_sym_DASH_DASH] = ACTIONS(1751), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1751), + [sym_number] = ACTIONS(1751), + [sym_private_property_identifier] = ACTIONS(1751), + [sym_this] = ACTIONS(1753), + [sym_super] = ACTIONS(1753), + [sym_true] = ACTIONS(1753), + [sym_false] = ACTIONS(1753), + [sym_null] = ACTIONS(1753), + [sym_undefined] = ACTIONS(1753), + [anon_sym_AT] = ACTIONS(1751), + [anon_sym_static] = ACTIONS(1753), + [anon_sym_readonly] = ACTIONS(1753), + [anon_sym_get] = ACTIONS(1753), + [anon_sym_set] = ACTIONS(1753), + [anon_sym_declare] = ACTIONS(1753), + [anon_sym_public] = ACTIONS(1753), + [anon_sym_private] = ACTIONS(1753), + [anon_sym_protected] = ACTIONS(1753), + [anon_sym_override] = ACTIONS(1753), + [anon_sym_module] = ACTIONS(1753), + [anon_sym_any] = ACTIONS(1753), + [anon_sym_number] = ACTIONS(1753), + [anon_sym_boolean] = ACTIONS(1753), + [anon_sym_string] = ACTIONS(1753), + [anon_sym_symbol] = ACTIONS(1753), + [anon_sym_object] = ACTIONS(1753), + [anon_sym_abstract] = ACTIONS(1753), + [anon_sym_interface] = ACTIONS(1753), + [anon_sym_enum] = ACTIONS(1753), + [sym__automatic_semicolon] = ACTIONS(1759), [sym_html_comment] = ACTIONS(5), }, - [772] = { + [781] = { + [sym_statement_block] = STATE(911), + [ts_builtin_sym_end] = ACTIONS(1653), + [sym_identifier] = ACTIONS(1655), + [anon_sym_export] = ACTIONS(1655), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(1655), + [anon_sym_LBRACE] = ACTIONS(2444), + [anon_sym_RBRACE] = ACTIONS(1653), + [anon_sym_typeof] = ACTIONS(1655), + [anon_sym_import] = ACTIONS(1655), + [anon_sym_with] = ACTIONS(1655), + [anon_sym_var] = ACTIONS(1655), + [anon_sym_let] = ACTIONS(1655), + [anon_sym_const] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(1653), + [anon_sym_else] = ACTIONS(1655), + [anon_sym_if] = ACTIONS(1655), + [anon_sym_switch] = ACTIONS(1655), + [anon_sym_for] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1653), + [anon_sym_SEMI] = ACTIONS(1653), + [anon_sym_await] = ACTIONS(1655), + [anon_sym_while] = ACTIONS(1655), + [anon_sym_do] = ACTIONS(1655), + [anon_sym_try] = ACTIONS(1655), + [anon_sym_break] = ACTIONS(1655), + [anon_sym_continue] = ACTIONS(1655), + [anon_sym_debugger] = ACTIONS(1655), + [anon_sym_return] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1655), + [anon_sym_case] = ACTIONS(1655), + [anon_sym_yield] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_class] = ACTIONS(1655), + [anon_sym_async] = ACTIONS(1655), + [anon_sym_function] = ACTIONS(1655), + [anon_sym_new] = ACTIONS(1655), + [anon_sym_using] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_LT] = ACTIONS(1653), + [anon_sym_TILDE] = ACTIONS(1653), + [anon_sym_void] = ACTIONS(1655), + [anon_sym_delete] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1653), + [sym_number] = ACTIONS(1653), + [sym_private_property_identifier] = ACTIONS(1653), + [sym_this] = ACTIONS(1655), + [sym_super] = ACTIONS(1655), + [sym_true] = ACTIONS(1655), + [sym_false] = ACTIONS(1655), + [sym_null] = ACTIONS(1655), + [sym_undefined] = ACTIONS(1655), + [anon_sym_AT] = ACTIONS(1653), + [anon_sym_static] = ACTIONS(1655), + [anon_sym_readonly] = ACTIONS(1655), + [anon_sym_get] = ACTIONS(1655), + [anon_sym_set] = ACTIONS(1655), + [anon_sym_declare] = ACTIONS(1655), + [anon_sym_public] = ACTIONS(1655), + [anon_sym_private] = ACTIONS(1655), + [anon_sym_protected] = ACTIONS(1655), + [anon_sym_override] = ACTIONS(1655), + [anon_sym_module] = ACTIONS(1655), + [anon_sym_any] = ACTIONS(1655), + [anon_sym_number] = ACTIONS(1655), + [anon_sym_boolean] = ACTIONS(1655), + [anon_sym_string] = ACTIONS(1655), + [anon_sym_symbol] = ACTIONS(1655), + [anon_sym_object] = ACTIONS(1655), + [anon_sym_abstract] = ACTIONS(1655), + [anon_sym_interface] = ACTIONS(1655), + [anon_sym_enum] = ACTIONS(1655), + [sym_html_comment] = ACTIONS(5), + }, + [782] = { + [sym_import] = STATE(4786), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5658), + [sym_rest_pattern] = STATE(5415), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3263), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3806), + [sym_tuple_parameter] = STATE(5066), + [sym_optional_tuple_parameter] = STATE(5066), + [sym_optional_type] = STATE(5066), + [sym_rest_type] = STATE(5066), + [sym__tuple_type_member] = STATE(5066), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5559), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(2468), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(2510), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(2512), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2474), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [sym_html_comment] = ACTIONS(5), + }, + [783] = { + [ts_builtin_sym_end] = ACTIONS(2514), + [sym_identifier] = ACTIONS(2516), + [anon_sym_export] = ACTIONS(2516), + [anon_sym_default] = ACTIONS(2516), + [anon_sym_type] = ACTIONS(2516), + [anon_sym_namespace] = ACTIONS(2516), + [anon_sym_LBRACE] = ACTIONS(2514), + [anon_sym_RBRACE] = ACTIONS(2514), + [anon_sym_typeof] = ACTIONS(2516), + [anon_sym_import] = ACTIONS(2516), + [anon_sym_with] = ACTIONS(2516), + [anon_sym_var] = ACTIONS(2516), + [anon_sym_let] = ACTIONS(2516), + [anon_sym_const] = ACTIONS(2516), + [anon_sym_BANG] = ACTIONS(2514), + [anon_sym_else] = ACTIONS(2516), + [anon_sym_if] = ACTIONS(2516), + [anon_sym_switch] = ACTIONS(2516), + [anon_sym_for] = ACTIONS(2516), + [anon_sym_LPAREN] = ACTIONS(2514), + [anon_sym_SEMI] = ACTIONS(2514), + [anon_sym_await] = ACTIONS(2516), + [anon_sym_while] = ACTIONS(2516), + [anon_sym_do] = ACTIONS(2516), + [anon_sym_try] = ACTIONS(2516), + [anon_sym_break] = ACTIONS(2516), + [anon_sym_continue] = ACTIONS(2516), + [anon_sym_debugger] = ACTIONS(2516), + [anon_sym_return] = ACTIONS(2516), + [anon_sym_throw] = ACTIONS(2516), + [anon_sym_case] = ACTIONS(2516), + [anon_sym_yield] = ACTIONS(2516), + [anon_sym_LBRACK] = ACTIONS(2514), + [anon_sym_DQUOTE] = ACTIONS(2514), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_class] = ACTIONS(2516), + [anon_sym_async] = ACTIONS(2516), + [anon_sym_function] = ACTIONS(2516), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_using] = ACTIONS(2516), + [anon_sym_PLUS] = ACTIONS(2516), + [anon_sym_DASH] = ACTIONS(2516), + [anon_sym_SLASH] = ACTIONS(2516), + [anon_sym_LT] = ACTIONS(2514), + [anon_sym_TILDE] = ACTIONS(2514), + [anon_sym_void] = ACTIONS(2516), + [anon_sym_delete] = ACTIONS(2516), + [anon_sym_PLUS_PLUS] = ACTIONS(2514), + [anon_sym_DASH_DASH] = ACTIONS(2514), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2514), + [sym_number] = ACTIONS(2514), + [sym_private_property_identifier] = ACTIONS(2514), + [sym_this] = ACTIONS(2516), + [sym_super] = ACTIONS(2516), + [sym_true] = ACTIONS(2516), + [sym_false] = ACTIONS(2516), + [sym_null] = ACTIONS(2516), + [sym_undefined] = ACTIONS(2516), + [anon_sym_AT] = ACTIONS(2514), + [anon_sym_static] = ACTIONS(2516), + [anon_sym_readonly] = ACTIONS(2516), + [anon_sym_get] = ACTIONS(2516), + [anon_sym_set] = ACTIONS(2516), + [anon_sym_declare] = ACTIONS(2516), + [anon_sym_public] = ACTIONS(2516), + [anon_sym_private] = ACTIONS(2516), + [anon_sym_protected] = ACTIONS(2516), + [anon_sym_override] = ACTIONS(2516), + [anon_sym_module] = ACTIONS(2516), + [anon_sym_any] = ACTIONS(2516), + [anon_sym_number] = ACTIONS(2516), + [anon_sym_boolean] = ACTIONS(2516), + [anon_sym_string] = ACTIONS(2516), + [anon_sym_symbol] = ACTIONS(2516), + [anon_sym_object] = ACTIONS(2516), + [anon_sym_abstract] = ACTIONS(2516), + [anon_sym_interface] = ACTIONS(2516), + [anon_sym_enum] = ACTIONS(2516), + [sym_html_comment] = ACTIONS(5), + }, + [784] = { + [sym_import] = STATE(4786), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5658), + [sym_rest_pattern] = STATE(5415), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3263), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3806), + [sym_tuple_parameter] = STATE(5460), + [sym_optional_tuple_parameter] = STATE(5460), + [sym_optional_type] = STATE(5460), + [sym_rest_type] = STATE(5460), + [sym__tuple_type_member] = STATE(5460), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5559), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(2468), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(2518), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2474), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [sym_html_comment] = ACTIONS(5), + }, + [785] = { + [ts_builtin_sym_end] = ACTIONS(2520), + [sym_identifier] = ACTIONS(2522), + [anon_sym_export] = ACTIONS(2522), + [anon_sym_default] = ACTIONS(2522), + [anon_sym_type] = ACTIONS(2522), + [anon_sym_namespace] = ACTIONS(2522), + [anon_sym_LBRACE] = ACTIONS(2520), + [anon_sym_RBRACE] = ACTIONS(2520), + [anon_sym_typeof] = ACTIONS(2522), + [anon_sym_import] = ACTIONS(2522), + [anon_sym_with] = ACTIONS(2522), + [anon_sym_var] = ACTIONS(2522), + [anon_sym_let] = ACTIONS(2522), + [anon_sym_const] = ACTIONS(2522), + [anon_sym_BANG] = ACTIONS(2520), + [anon_sym_else] = ACTIONS(2522), + [anon_sym_if] = ACTIONS(2522), + [anon_sym_switch] = ACTIONS(2522), + [anon_sym_for] = ACTIONS(2522), + [anon_sym_LPAREN] = ACTIONS(2520), + [anon_sym_SEMI] = ACTIONS(2520), + [anon_sym_await] = ACTIONS(2522), + [anon_sym_while] = ACTIONS(2522), + [anon_sym_do] = ACTIONS(2522), + [anon_sym_try] = ACTIONS(2522), + [anon_sym_break] = ACTIONS(2522), + [anon_sym_continue] = ACTIONS(2522), + [anon_sym_debugger] = ACTIONS(2522), + [anon_sym_return] = ACTIONS(2522), + [anon_sym_throw] = ACTIONS(2522), + [anon_sym_case] = ACTIONS(2522), + [anon_sym_yield] = ACTIONS(2522), + [anon_sym_LBRACK] = ACTIONS(2520), + [anon_sym_DQUOTE] = ACTIONS(2520), + [anon_sym_SQUOTE] = ACTIONS(2520), + [anon_sym_class] = ACTIONS(2522), + [anon_sym_async] = ACTIONS(2522), + [anon_sym_function] = ACTIONS(2522), + [anon_sym_new] = ACTIONS(2522), + [anon_sym_using] = ACTIONS(2522), + [anon_sym_PLUS] = ACTIONS(2522), + [anon_sym_DASH] = ACTIONS(2522), + [anon_sym_SLASH] = ACTIONS(2522), + [anon_sym_LT] = ACTIONS(2520), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_void] = ACTIONS(2522), + [anon_sym_delete] = ACTIONS(2522), + [anon_sym_PLUS_PLUS] = ACTIONS(2520), + [anon_sym_DASH_DASH] = ACTIONS(2520), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2520), + [sym_number] = ACTIONS(2520), + [sym_private_property_identifier] = ACTIONS(2520), + [sym_this] = ACTIONS(2522), + [sym_super] = ACTIONS(2522), + [sym_true] = ACTIONS(2522), + [sym_false] = ACTIONS(2522), + [sym_null] = ACTIONS(2522), + [sym_undefined] = ACTIONS(2522), + [anon_sym_AT] = ACTIONS(2520), + [anon_sym_static] = ACTIONS(2522), + [anon_sym_readonly] = ACTIONS(2522), + [anon_sym_get] = ACTIONS(2522), + [anon_sym_set] = ACTIONS(2522), + [anon_sym_declare] = ACTIONS(2522), + [anon_sym_public] = ACTIONS(2522), + [anon_sym_private] = ACTIONS(2522), + [anon_sym_protected] = ACTIONS(2522), + [anon_sym_override] = ACTIONS(2522), + [anon_sym_module] = ACTIONS(2522), + [anon_sym_any] = ACTIONS(2522), + [anon_sym_number] = ACTIONS(2522), + [anon_sym_boolean] = ACTIONS(2522), + [anon_sym_string] = ACTIONS(2522), + [anon_sym_symbol] = ACTIONS(2522), + [anon_sym_object] = ACTIONS(2522), + [anon_sym_abstract] = ACTIONS(2522), + [anon_sym_interface] = ACTIONS(2522), + [anon_sym_enum] = ACTIONS(2522), + [sym_html_comment] = ACTIONS(5), + }, + [786] = { + [ts_builtin_sym_end] = ACTIONS(2524), + [sym_identifier] = ACTIONS(2526), + [anon_sym_export] = ACTIONS(2526), + [anon_sym_default] = ACTIONS(2526), + [anon_sym_type] = ACTIONS(2526), + [anon_sym_namespace] = ACTIONS(2526), + [anon_sym_LBRACE] = ACTIONS(2524), + [anon_sym_RBRACE] = ACTIONS(2524), + [anon_sym_typeof] = ACTIONS(2526), + [anon_sym_import] = ACTIONS(2526), + [anon_sym_with] = ACTIONS(2526), + [anon_sym_var] = ACTIONS(2526), + [anon_sym_let] = ACTIONS(2526), + [anon_sym_const] = ACTIONS(2526), + [anon_sym_BANG] = ACTIONS(2524), + [anon_sym_else] = ACTIONS(2526), + [anon_sym_if] = ACTIONS(2526), + [anon_sym_switch] = ACTIONS(2526), + [anon_sym_for] = ACTIONS(2526), + [anon_sym_LPAREN] = ACTIONS(2524), + [anon_sym_SEMI] = ACTIONS(2524), + [anon_sym_await] = ACTIONS(2526), + [anon_sym_while] = ACTIONS(2526), + [anon_sym_do] = ACTIONS(2526), + [anon_sym_try] = ACTIONS(2526), + [anon_sym_break] = ACTIONS(2526), + [anon_sym_continue] = ACTIONS(2526), + [anon_sym_debugger] = ACTIONS(2526), + [anon_sym_return] = ACTIONS(2526), + [anon_sym_throw] = ACTIONS(2526), + [anon_sym_case] = ACTIONS(2526), + [anon_sym_yield] = ACTIONS(2526), + [anon_sym_LBRACK] = ACTIONS(2524), + [anon_sym_DQUOTE] = ACTIONS(2524), + [anon_sym_SQUOTE] = ACTIONS(2524), + [anon_sym_class] = ACTIONS(2526), + [anon_sym_async] = ACTIONS(2526), + [anon_sym_function] = ACTIONS(2526), + [anon_sym_new] = ACTIONS(2526), + [anon_sym_using] = ACTIONS(2526), + [anon_sym_PLUS] = ACTIONS(2526), + [anon_sym_DASH] = ACTIONS(2526), + [anon_sym_SLASH] = ACTIONS(2526), + [anon_sym_LT] = ACTIONS(2524), + [anon_sym_TILDE] = ACTIONS(2524), + [anon_sym_void] = ACTIONS(2526), + [anon_sym_delete] = ACTIONS(2526), + [anon_sym_PLUS_PLUS] = ACTIONS(2524), + [anon_sym_DASH_DASH] = ACTIONS(2524), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2524), + [sym_number] = ACTIONS(2524), + [sym_private_property_identifier] = ACTIONS(2524), + [sym_this] = ACTIONS(2526), + [sym_super] = ACTIONS(2526), + [sym_true] = ACTIONS(2526), + [sym_false] = ACTIONS(2526), + [sym_null] = ACTIONS(2526), + [sym_undefined] = ACTIONS(2526), + [anon_sym_AT] = ACTIONS(2524), + [anon_sym_static] = ACTIONS(2526), + [anon_sym_readonly] = ACTIONS(2526), + [anon_sym_get] = ACTIONS(2526), + [anon_sym_set] = ACTIONS(2526), + [anon_sym_declare] = ACTIONS(2526), + [anon_sym_public] = ACTIONS(2526), + [anon_sym_private] = ACTIONS(2526), + [anon_sym_protected] = ACTIONS(2526), + [anon_sym_override] = ACTIONS(2526), + [anon_sym_module] = ACTIONS(2526), + [anon_sym_any] = ACTIONS(2526), + [anon_sym_number] = ACTIONS(2526), + [anon_sym_boolean] = ACTIONS(2526), + [anon_sym_string] = ACTIONS(2526), + [anon_sym_symbol] = ACTIONS(2526), + [anon_sym_object] = ACTIONS(2526), + [anon_sym_abstract] = ACTIONS(2526), + [anon_sym_interface] = ACTIONS(2526), + [anon_sym_enum] = ACTIONS(2526), + [sym_html_comment] = ACTIONS(5), + }, + [787] = { + [ts_builtin_sym_end] = ACTIONS(2528), + [sym_identifier] = ACTIONS(2530), + [anon_sym_export] = ACTIONS(2530), + [anon_sym_default] = ACTIONS(2530), + [anon_sym_type] = ACTIONS(2530), + [anon_sym_namespace] = ACTIONS(2530), + [anon_sym_LBRACE] = ACTIONS(2528), + [anon_sym_RBRACE] = ACTIONS(2528), + [anon_sym_typeof] = ACTIONS(2530), + [anon_sym_import] = ACTIONS(2530), + [anon_sym_with] = ACTIONS(2530), + [anon_sym_var] = ACTIONS(2530), + [anon_sym_let] = ACTIONS(2530), + [anon_sym_const] = ACTIONS(2530), + [anon_sym_BANG] = ACTIONS(2528), + [anon_sym_else] = ACTIONS(2530), + [anon_sym_if] = ACTIONS(2530), + [anon_sym_switch] = ACTIONS(2530), + [anon_sym_for] = ACTIONS(2530), + [anon_sym_LPAREN] = ACTIONS(2528), + [anon_sym_SEMI] = ACTIONS(2528), + [anon_sym_await] = ACTIONS(2530), + [anon_sym_while] = ACTIONS(2530), + [anon_sym_do] = ACTIONS(2530), + [anon_sym_try] = ACTIONS(2530), + [anon_sym_break] = ACTIONS(2530), + [anon_sym_continue] = ACTIONS(2530), + [anon_sym_debugger] = ACTIONS(2530), + [anon_sym_return] = ACTIONS(2530), + [anon_sym_throw] = ACTIONS(2530), + [anon_sym_case] = ACTIONS(2530), + [anon_sym_yield] = ACTIONS(2530), + [anon_sym_LBRACK] = ACTIONS(2528), + [anon_sym_DQUOTE] = ACTIONS(2528), + [anon_sym_SQUOTE] = ACTIONS(2528), + [anon_sym_class] = ACTIONS(2530), + [anon_sym_async] = ACTIONS(2530), + [anon_sym_function] = ACTIONS(2530), + [anon_sym_new] = ACTIONS(2530), + [anon_sym_using] = ACTIONS(2530), + [anon_sym_PLUS] = ACTIONS(2530), + [anon_sym_DASH] = ACTIONS(2530), + [anon_sym_SLASH] = ACTIONS(2530), + [anon_sym_LT] = ACTIONS(2528), + [anon_sym_TILDE] = ACTIONS(2528), + [anon_sym_void] = ACTIONS(2530), + [anon_sym_delete] = ACTIONS(2530), + [anon_sym_PLUS_PLUS] = ACTIONS(2528), + [anon_sym_DASH_DASH] = ACTIONS(2528), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2528), + [sym_number] = ACTIONS(2528), + [sym_private_property_identifier] = ACTIONS(2528), + [sym_this] = ACTIONS(2530), + [sym_super] = ACTIONS(2530), + [sym_true] = ACTIONS(2530), + [sym_false] = ACTIONS(2530), + [sym_null] = ACTIONS(2530), + [sym_undefined] = ACTIONS(2530), + [anon_sym_AT] = ACTIONS(2528), + [anon_sym_static] = ACTIONS(2530), + [anon_sym_readonly] = ACTIONS(2530), + [anon_sym_get] = ACTIONS(2530), + [anon_sym_set] = ACTIONS(2530), + [anon_sym_declare] = ACTIONS(2530), + [anon_sym_public] = ACTIONS(2530), + [anon_sym_private] = ACTIONS(2530), + [anon_sym_protected] = ACTIONS(2530), + [anon_sym_override] = ACTIONS(2530), + [anon_sym_module] = ACTIONS(2530), + [anon_sym_any] = ACTIONS(2530), + [anon_sym_number] = ACTIONS(2530), + [anon_sym_boolean] = ACTIONS(2530), + [anon_sym_string] = ACTIONS(2530), + [anon_sym_symbol] = ACTIONS(2530), + [anon_sym_object] = ACTIONS(2530), + [anon_sym_abstract] = ACTIONS(2530), + [anon_sym_interface] = ACTIONS(2530), + [anon_sym_enum] = ACTIONS(2530), + [sym_html_comment] = ACTIONS(5), + }, + [788] = { + [ts_builtin_sym_end] = ACTIONS(2532), + [sym_identifier] = ACTIONS(2534), + [anon_sym_export] = ACTIONS(2534), + [anon_sym_default] = ACTIONS(2534), + [anon_sym_type] = ACTIONS(2534), + [anon_sym_namespace] = ACTIONS(2534), + [anon_sym_LBRACE] = ACTIONS(2532), + [anon_sym_RBRACE] = ACTIONS(2532), + [anon_sym_typeof] = ACTIONS(2534), + [anon_sym_import] = ACTIONS(2534), + [anon_sym_with] = ACTIONS(2534), + [anon_sym_var] = ACTIONS(2534), + [anon_sym_let] = ACTIONS(2534), + [anon_sym_const] = ACTIONS(2534), + [anon_sym_BANG] = ACTIONS(2532), + [anon_sym_else] = ACTIONS(2534), + [anon_sym_if] = ACTIONS(2534), + [anon_sym_switch] = ACTIONS(2534), + [anon_sym_for] = ACTIONS(2534), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_SEMI] = ACTIONS(2532), + [anon_sym_await] = ACTIONS(2534), + [anon_sym_while] = ACTIONS(2534), + [anon_sym_do] = ACTIONS(2534), + [anon_sym_try] = ACTIONS(2534), + [anon_sym_break] = ACTIONS(2534), + [anon_sym_continue] = ACTIONS(2534), + [anon_sym_debugger] = ACTIONS(2534), + [anon_sym_return] = ACTIONS(2534), + [anon_sym_throw] = ACTIONS(2534), + [anon_sym_case] = ACTIONS(2534), + [anon_sym_yield] = ACTIONS(2534), + [anon_sym_LBRACK] = ACTIONS(2532), + [anon_sym_DQUOTE] = ACTIONS(2532), + [anon_sym_SQUOTE] = ACTIONS(2532), + [anon_sym_class] = ACTIONS(2534), + [anon_sym_async] = ACTIONS(2534), + [anon_sym_function] = ACTIONS(2534), + [anon_sym_new] = ACTIONS(2534), + [anon_sym_using] = ACTIONS(2534), + [anon_sym_PLUS] = ACTIONS(2534), + [anon_sym_DASH] = ACTIONS(2534), + [anon_sym_SLASH] = ACTIONS(2534), + [anon_sym_LT] = ACTIONS(2532), + [anon_sym_TILDE] = ACTIONS(2532), + [anon_sym_void] = ACTIONS(2534), + [anon_sym_delete] = ACTIONS(2534), + [anon_sym_PLUS_PLUS] = ACTIONS(2532), + [anon_sym_DASH_DASH] = ACTIONS(2532), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2532), + [sym_number] = ACTIONS(2532), + [sym_private_property_identifier] = ACTIONS(2532), + [sym_this] = ACTIONS(2534), + [sym_super] = ACTIONS(2534), + [sym_true] = ACTIONS(2534), + [sym_false] = ACTIONS(2534), + [sym_null] = ACTIONS(2534), + [sym_undefined] = ACTIONS(2534), + [anon_sym_AT] = ACTIONS(2532), + [anon_sym_static] = ACTIONS(2534), + [anon_sym_readonly] = ACTIONS(2534), + [anon_sym_get] = ACTIONS(2534), + [anon_sym_set] = ACTIONS(2534), + [anon_sym_declare] = ACTIONS(2534), + [anon_sym_public] = ACTIONS(2534), + [anon_sym_private] = ACTIONS(2534), + [anon_sym_protected] = ACTIONS(2534), + [anon_sym_override] = ACTIONS(2534), + [anon_sym_module] = ACTIONS(2534), + [anon_sym_any] = ACTIONS(2534), + [anon_sym_number] = ACTIONS(2534), + [anon_sym_boolean] = ACTIONS(2534), + [anon_sym_string] = ACTIONS(2534), + [anon_sym_symbol] = ACTIONS(2534), + [anon_sym_object] = ACTIONS(2534), + [anon_sym_abstract] = ACTIONS(2534), + [anon_sym_interface] = ACTIONS(2534), + [anon_sym_enum] = ACTIONS(2534), + [sym_html_comment] = ACTIONS(5), + }, + [789] = { + [ts_builtin_sym_end] = ACTIONS(2536), + [sym_identifier] = ACTIONS(2538), + [anon_sym_export] = ACTIONS(2538), + [anon_sym_default] = ACTIONS(2538), + [anon_sym_type] = ACTIONS(2538), + [anon_sym_namespace] = ACTIONS(2538), + [anon_sym_LBRACE] = ACTIONS(2536), + [anon_sym_RBRACE] = ACTIONS(2536), + [anon_sym_typeof] = ACTIONS(2538), + [anon_sym_import] = ACTIONS(2538), + [anon_sym_with] = ACTIONS(2538), + [anon_sym_var] = ACTIONS(2538), + [anon_sym_let] = ACTIONS(2538), + [anon_sym_const] = ACTIONS(2538), + [anon_sym_BANG] = ACTIONS(2536), + [anon_sym_else] = ACTIONS(2538), + [anon_sym_if] = ACTIONS(2538), + [anon_sym_switch] = ACTIONS(2538), + [anon_sym_for] = ACTIONS(2538), + [anon_sym_LPAREN] = ACTIONS(2536), + [anon_sym_SEMI] = ACTIONS(2536), + [anon_sym_await] = ACTIONS(2538), + [anon_sym_while] = ACTIONS(2538), + [anon_sym_do] = ACTIONS(2538), + [anon_sym_try] = ACTIONS(2538), + [anon_sym_break] = ACTIONS(2538), + [anon_sym_continue] = ACTIONS(2538), + [anon_sym_debugger] = ACTIONS(2538), + [anon_sym_return] = ACTIONS(2538), + [anon_sym_throw] = ACTIONS(2538), + [anon_sym_case] = ACTIONS(2538), + [anon_sym_yield] = ACTIONS(2538), + [anon_sym_LBRACK] = ACTIONS(2536), + [anon_sym_DQUOTE] = ACTIONS(2536), + [anon_sym_SQUOTE] = ACTIONS(2536), + [anon_sym_class] = ACTIONS(2538), + [anon_sym_async] = ACTIONS(2538), + [anon_sym_function] = ACTIONS(2538), + [anon_sym_new] = ACTIONS(2538), + [anon_sym_using] = ACTIONS(2538), + [anon_sym_PLUS] = ACTIONS(2538), + [anon_sym_DASH] = ACTIONS(2538), + [anon_sym_SLASH] = ACTIONS(2538), + [anon_sym_LT] = ACTIONS(2536), + [anon_sym_TILDE] = ACTIONS(2536), + [anon_sym_void] = ACTIONS(2538), + [anon_sym_delete] = ACTIONS(2538), + [anon_sym_PLUS_PLUS] = ACTIONS(2536), + [anon_sym_DASH_DASH] = ACTIONS(2536), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2536), + [sym_number] = ACTIONS(2536), + [sym_private_property_identifier] = ACTIONS(2536), + [sym_this] = ACTIONS(2538), + [sym_super] = ACTIONS(2538), + [sym_true] = ACTIONS(2538), + [sym_false] = ACTIONS(2538), + [sym_null] = ACTIONS(2538), + [sym_undefined] = ACTIONS(2538), + [anon_sym_AT] = ACTIONS(2536), + [anon_sym_static] = ACTIONS(2538), + [anon_sym_readonly] = ACTIONS(2538), + [anon_sym_get] = ACTIONS(2538), + [anon_sym_set] = ACTIONS(2538), + [anon_sym_declare] = ACTIONS(2538), + [anon_sym_public] = ACTIONS(2538), + [anon_sym_private] = ACTIONS(2538), + [anon_sym_protected] = ACTIONS(2538), + [anon_sym_override] = ACTIONS(2538), + [anon_sym_module] = ACTIONS(2538), + [anon_sym_any] = ACTIONS(2538), + [anon_sym_number] = ACTIONS(2538), + [anon_sym_boolean] = ACTIONS(2538), + [anon_sym_string] = ACTIONS(2538), + [anon_sym_symbol] = ACTIONS(2538), + [anon_sym_object] = ACTIONS(2538), + [anon_sym_abstract] = ACTIONS(2538), + [anon_sym_interface] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(2538), + [sym_html_comment] = ACTIONS(5), + }, + [790] = { + [ts_builtin_sym_end] = ACTIONS(2540), + [sym_identifier] = ACTIONS(2542), + [anon_sym_export] = ACTIONS(2542), + [anon_sym_default] = ACTIONS(2542), + [anon_sym_type] = ACTIONS(2542), + [anon_sym_namespace] = ACTIONS(2542), + [anon_sym_LBRACE] = ACTIONS(2540), + [anon_sym_RBRACE] = ACTIONS(2540), + [anon_sym_typeof] = ACTIONS(2542), + [anon_sym_import] = ACTIONS(2542), + [anon_sym_with] = ACTIONS(2542), + [anon_sym_var] = ACTIONS(2542), + [anon_sym_let] = ACTIONS(2542), + [anon_sym_const] = ACTIONS(2542), + [anon_sym_BANG] = ACTIONS(2540), + [anon_sym_else] = ACTIONS(2542), + [anon_sym_if] = ACTIONS(2542), + [anon_sym_switch] = ACTIONS(2542), + [anon_sym_for] = ACTIONS(2542), + [anon_sym_LPAREN] = ACTIONS(2540), + [anon_sym_SEMI] = ACTIONS(2540), + [anon_sym_await] = ACTIONS(2542), + [anon_sym_while] = ACTIONS(2542), + [anon_sym_do] = ACTIONS(2542), + [anon_sym_try] = ACTIONS(2542), + [anon_sym_break] = ACTIONS(2542), + [anon_sym_continue] = ACTIONS(2542), + [anon_sym_debugger] = ACTIONS(2542), + [anon_sym_return] = ACTIONS(2542), + [anon_sym_throw] = ACTIONS(2542), + [anon_sym_case] = ACTIONS(2542), + [anon_sym_yield] = ACTIONS(2542), + [anon_sym_LBRACK] = ACTIONS(2540), + [anon_sym_DQUOTE] = ACTIONS(2540), + [anon_sym_SQUOTE] = ACTIONS(2540), + [anon_sym_class] = ACTIONS(2542), + [anon_sym_async] = ACTIONS(2542), + [anon_sym_function] = ACTIONS(2542), + [anon_sym_new] = ACTIONS(2542), + [anon_sym_using] = ACTIONS(2542), + [anon_sym_PLUS] = ACTIONS(2542), + [anon_sym_DASH] = ACTIONS(2542), + [anon_sym_SLASH] = ACTIONS(2542), + [anon_sym_LT] = ACTIONS(2540), + [anon_sym_TILDE] = ACTIONS(2540), + [anon_sym_void] = ACTIONS(2542), + [anon_sym_delete] = ACTIONS(2542), + [anon_sym_PLUS_PLUS] = ACTIONS(2540), + [anon_sym_DASH_DASH] = ACTIONS(2540), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2540), + [sym_number] = ACTIONS(2540), + [sym_private_property_identifier] = ACTIONS(2540), + [sym_this] = ACTIONS(2542), + [sym_super] = ACTIONS(2542), + [sym_true] = ACTIONS(2542), + [sym_false] = ACTIONS(2542), + [sym_null] = ACTIONS(2542), + [sym_undefined] = ACTIONS(2542), + [anon_sym_AT] = ACTIONS(2540), + [anon_sym_static] = ACTIONS(2542), + [anon_sym_readonly] = ACTIONS(2542), + [anon_sym_get] = ACTIONS(2542), + [anon_sym_set] = ACTIONS(2542), + [anon_sym_declare] = ACTIONS(2542), + [anon_sym_public] = ACTIONS(2542), + [anon_sym_private] = ACTIONS(2542), + [anon_sym_protected] = ACTIONS(2542), + [anon_sym_override] = ACTIONS(2542), + [anon_sym_module] = ACTIONS(2542), + [anon_sym_any] = ACTIONS(2542), + [anon_sym_number] = ACTIONS(2542), + [anon_sym_boolean] = ACTIONS(2542), + [anon_sym_string] = ACTIONS(2542), + [anon_sym_symbol] = ACTIONS(2542), + [anon_sym_object] = ACTIONS(2542), + [anon_sym_abstract] = ACTIONS(2542), + [anon_sym_interface] = ACTIONS(2542), + [anon_sym_enum] = ACTIONS(2542), + [sym_html_comment] = ACTIONS(5), + }, + [791] = { + [ts_builtin_sym_end] = ACTIONS(2544), + [sym_identifier] = ACTIONS(2546), + [anon_sym_export] = ACTIONS(2546), + [anon_sym_default] = ACTIONS(2546), + [anon_sym_type] = ACTIONS(2546), + [anon_sym_namespace] = ACTIONS(2546), + [anon_sym_LBRACE] = ACTIONS(2544), + [anon_sym_RBRACE] = ACTIONS(2544), + [anon_sym_typeof] = ACTIONS(2546), + [anon_sym_import] = ACTIONS(2546), + [anon_sym_with] = ACTIONS(2546), + [anon_sym_var] = ACTIONS(2546), + [anon_sym_let] = ACTIONS(2546), + [anon_sym_const] = ACTIONS(2546), + [anon_sym_BANG] = ACTIONS(2544), + [anon_sym_else] = ACTIONS(2546), + [anon_sym_if] = ACTIONS(2546), + [anon_sym_switch] = ACTIONS(2546), + [anon_sym_for] = ACTIONS(2546), + [anon_sym_LPAREN] = ACTIONS(2544), + [anon_sym_SEMI] = ACTIONS(2544), + [anon_sym_await] = ACTIONS(2546), + [anon_sym_while] = ACTIONS(2546), + [anon_sym_do] = ACTIONS(2546), + [anon_sym_try] = ACTIONS(2546), + [anon_sym_break] = ACTIONS(2546), + [anon_sym_continue] = ACTIONS(2546), + [anon_sym_debugger] = ACTIONS(2546), + [anon_sym_return] = ACTIONS(2546), + [anon_sym_throw] = ACTIONS(2546), + [anon_sym_case] = ACTIONS(2546), + [anon_sym_yield] = ACTIONS(2546), + [anon_sym_LBRACK] = ACTIONS(2544), + [anon_sym_DQUOTE] = ACTIONS(2544), + [anon_sym_SQUOTE] = ACTIONS(2544), + [anon_sym_class] = ACTIONS(2546), + [anon_sym_async] = ACTIONS(2546), + [anon_sym_function] = ACTIONS(2546), + [anon_sym_new] = ACTIONS(2546), + [anon_sym_using] = ACTIONS(2546), + [anon_sym_PLUS] = ACTIONS(2546), + [anon_sym_DASH] = ACTIONS(2546), + [anon_sym_SLASH] = ACTIONS(2546), + [anon_sym_LT] = ACTIONS(2544), + [anon_sym_TILDE] = ACTIONS(2544), + [anon_sym_void] = ACTIONS(2546), + [anon_sym_delete] = ACTIONS(2546), + [anon_sym_PLUS_PLUS] = ACTIONS(2544), + [anon_sym_DASH_DASH] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2544), + [sym_number] = ACTIONS(2544), + [sym_private_property_identifier] = ACTIONS(2544), + [sym_this] = ACTIONS(2546), + [sym_super] = ACTIONS(2546), + [sym_true] = ACTIONS(2546), + [sym_false] = ACTIONS(2546), + [sym_null] = ACTIONS(2546), + [sym_undefined] = ACTIONS(2546), + [anon_sym_AT] = ACTIONS(2544), + [anon_sym_static] = ACTIONS(2546), + [anon_sym_readonly] = ACTIONS(2546), + [anon_sym_get] = ACTIONS(2546), + [anon_sym_set] = ACTIONS(2546), + [anon_sym_declare] = ACTIONS(2546), + [anon_sym_public] = ACTIONS(2546), + [anon_sym_private] = ACTIONS(2546), + [anon_sym_protected] = ACTIONS(2546), + [anon_sym_override] = ACTIONS(2546), + [anon_sym_module] = ACTIONS(2546), + [anon_sym_any] = ACTIONS(2546), + [anon_sym_number] = ACTIONS(2546), + [anon_sym_boolean] = ACTIONS(2546), + [anon_sym_string] = ACTIONS(2546), + [anon_sym_symbol] = ACTIONS(2546), + [anon_sym_object] = ACTIONS(2546), + [anon_sym_abstract] = ACTIONS(2546), + [anon_sym_interface] = ACTIONS(2546), + [anon_sym_enum] = ACTIONS(2546), + [sym_html_comment] = ACTIONS(5), + }, + [792] = { + [ts_builtin_sym_end] = ACTIONS(2540), + [sym_identifier] = ACTIONS(2542), + [anon_sym_export] = ACTIONS(2542), + [anon_sym_default] = ACTIONS(2542), + [anon_sym_type] = ACTIONS(2542), + [anon_sym_namespace] = ACTIONS(2542), + [anon_sym_LBRACE] = ACTIONS(2540), + [anon_sym_RBRACE] = ACTIONS(2540), + [anon_sym_typeof] = ACTIONS(2542), + [anon_sym_import] = ACTIONS(2542), + [anon_sym_with] = ACTIONS(2542), + [anon_sym_var] = ACTIONS(2542), + [anon_sym_let] = ACTIONS(2542), + [anon_sym_const] = ACTIONS(2542), + [anon_sym_BANG] = ACTIONS(2540), + [anon_sym_else] = ACTIONS(2542), + [anon_sym_if] = ACTIONS(2542), + [anon_sym_switch] = ACTIONS(2542), + [anon_sym_for] = ACTIONS(2542), + [anon_sym_LPAREN] = ACTIONS(2540), + [anon_sym_SEMI] = ACTIONS(2540), + [anon_sym_await] = ACTIONS(2542), + [anon_sym_while] = ACTIONS(2542), + [anon_sym_do] = ACTIONS(2542), + [anon_sym_try] = ACTIONS(2542), + [anon_sym_break] = ACTIONS(2542), + [anon_sym_continue] = ACTIONS(2542), + [anon_sym_debugger] = ACTIONS(2542), + [anon_sym_return] = ACTIONS(2542), + [anon_sym_throw] = ACTIONS(2542), + [anon_sym_case] = ACTIONS(2542), + [anon_sym_yield] = ACTIONS(2542), + [anon_sym_LBRACK] = ACTIONS(2540), + [anon_sym_DQUOTE] = ACTIONS(2540), + [anon_sym_SQUOTE] = ACTIONS(2540), + [anon_sym_class] = ACTIONS(2542), + [anon_sym_async] = ACTIONS(2542), + [anon_sym_function] = ACTIONS(2542), + [anon_sym_new] = ACTIONS(2542), + [anon_sym_using] = ACTIONS(2542), + [anon_sym_PLUS] = ACTIONS(2542), + [anon_sym_DASH] = ACTIONS(2542), + [anon_sym_SLASH] = ACTIONS(2542), + [anon_sym_LT] = ACTIONS(2540), + [anon_sym_TILDE] = ACTIONS(2540), + [anon_sym_void] = ACTIONS(2542), + [anon_sym_delete] = ACTIONS(2542), + [anon_sym_PLUS_PLUS] = ACTIONS(2540), + [anon_sym_DASH_DASH] = ACTIONS(2540), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2540), + [sym_number] = ACTIONS(2540), + [sym_private_property_identifier] = ACTIONS(2540), + [sym_this] = ACTIONS(2542), + [sym_super] = ACTIONS(2542), + [sym_true] = ACTIONS(2542), + [sym_false] = ACTIONS(2542), + [sym_null] = ACTIONS(2542), + [sym_undefined] = ACTIONS(2542), + [anon_sym_AT] = ACTIONS(2540), + [anon_sym_static] = ACTIONS(2542), + [anon_sym_readonly] = ACTIONS(2542), + [anon_sym_get] = ACTIONS(2542), + [anon_sym_set] = ACTIONS(2542), + [anon_sym_declare] = ACTIONS(2542), + [anon_sym_public] = ACTIONS(2542), + [anon_sym_private] = ACTIONS(2542), + [anon_sym_protected] = ACTIONS(2542), + [anon_sym_override] = ACTIONS(2542), + [anon_sym_module] = ACTIONS(2542), + [anon_sym_any] = ACTIONS(2542), + [anon_sym_number] = ACTIONS(2542), + [anon_sym_boolean] = ACTIONS(2542), + [anon_sym_string] = ACTIONS(2542), + [anon_sym_symbol] = ACTIONS(2542), + [anon_sym_object] = ACTIONS(2542), + [anon_sym_abstract] = ACTIONS(2542), + [anon_sym_interface] = ACTIONS(2542), + [anon_sym_enum] = ACTIONS(2542), + [sym_html_comment] = ACTIONS(5), + }, + [793] = { + [ts_builtin_sym_end] = ACTIONS(2540), + [sym_identifier] = ACTIONS(2542), + [anon_sym_export] = ACTIONS(2542), + [anon_sym_default] = ACTIONS(2542), + [anon_sym_type] = ACTIONS(2542), + [anon_sym_namespace] = ACTIONS(2542), + [anon_sym_LBRACE] = ACTIONS(2540), + [anon_sym_RBRACE] = ACTIONS(2540), + [anon_sym_typeof] = ACTIONS(2542), + [anon_sym_import] = ACTIONS(2542), + [anon_sym_with] = ACTIONS(2542), + [anon_sym_var] = ACTIONS(2542), + [anon_sym_let] = ACTIONS(2542), + [anon_sym_const] = ACTIONS(2542), + [anon_sym_BANG] = ACTIONS(2540), + [anon_sym_else] = ACTIONS(2542), + [anon_sym_if] = ACTIONS(2542), + [anon_sym_switch] = ACTIONS(2542), + [anon_sym_for] = ACTIONS(2542), + [anon_sym_LPAREN] = ACTIONS(2540), + [anon_sym_SEMI] = ACTIONS(2540), + [anon_sym_await] = ACTIONS(2542), + [anon_sym_while] = ACTIONS(2542), + [anon_sym_do] = ACTIONS(2542), + [anon_sym_try] = ACTIONS(2542), + [anon_sym_break] = ACTIONS(2542), + [anon_sym_continue] = ACTIONS(2542), + [anon_sym_debugger] = ACTIONS(2542), + [anon_sym_return] = ACTIONS(2542), + [anon_sym_throw] = ACTIONS(2542), + [anon_sym_case] = ACTIONS(2542), + [anon_sym_yield] = ACTIONS(2542), + [anon_sym_LBRACK] = ACTIONS(2540), + [anon_sym_DQUOTE] = ACTIONS(2540), + [anon_sym_SQUOTE] = ACTIONS(2540), + [anon_sym_class] = ACTIONS(2542), + [anon_sym_async] = ACTIONS(2542), + [anon_sym_function] = ACTIONS(2542), + [anon_sym_new] = ACTIONS(2542), + [anon_sym_using] = ACTIONS(2542), + [anon_sym_PLUS] = ACTIONS(2542), + [anon_sym_DASH] = ACTIONS(2542), + [anon_sym_SLASH] = ACTIONS(2542), + [anon_sym_LT] = ACTIONS(2540), + [anon_sym_TILDE] = ACTIONS(2540), + [anon_sym_void] = ACTIONS(2542), + [anon_sym_delete] = ACTIONS(2542), + [anon_sym_PLUS_PLUS] = ACTIONS(2540), + [anon_sym_DASH_DASH] = ACTIONS(2540), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2540), + [sym_number] = ACTIONS(2540), + [sym_private_property_identifier] = ACTIONS(2540), + [sym_this] = ACTIONS(2542), + [sym_super] = ACTIONS(2542), + [sym_true] = ACTIONS(2542), + [sym_false] = ACTIONS(2542), + [sym_null] = ACTIONS(2542), + [sym_undefined] = ACTIONS(2542), + [anon_sym_AT] = ACTIONS(2540), + [anon_sym_static] = ACTIONS(2542), + [anon_sym_readonly] = ACTIONS(2542), + [anon_sym_get] = ACTIONS(2542), + [anon_sym_set] = ACTIONS(2542), + [anon_sym_declare] = ACTIONS(2542), + [anon_sym_public] = ACTIONS(2542), + [anon_sym_private] = ACTIONS(2542), + [anon_sym_protected] = ACTIONS(2542), + [anon_sym_override] = ACTIONS(2542), + [anon_sym_module] = ACTIONS(2542), + [anon_sym_any] = ACTIONS(2542), + [anon_sym_number] = ACTIONS(2542), + [anon_sym_boolean] = ACTIONS(2542), + [anon_sym_string] = ACTIONS(2542), + [anon_sym_symbol] = ACTIONS(2542), + [anon_sym_object] = ACTIONS(2542), + [anon_sym_abstract] = ACTIONS(2542), + [anon_sym_interface] = ACTIONS(2542), + [anon_sym_enum] = ACTIONS(2542), + [sym_html_comment] = ACTIONS(5), + }, + [794] = { + [sym_import] = STATE(4786), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5658), + [sym_rest_pattern] = STATE(5415), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3263), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3806), + [sym_tuple_parameter] = STATE(5460), + [sym_optional_tuple_parameter] = STATE(5460), + [sym_optional_type] = STATE(5460), + [sym_rest_type] = STATE(5460), + [sym__tuple_type_member] = STATE(5460), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5559), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(2468), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(2548), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2474), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [sym_html_comment] = ACTIONS(5), + }, + [795] = { + [sym_import] = STATE(4786), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5658), + [sym_rest_pattern] = STATE(5415), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3263), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3806), + [sym_tuple_parameter] = STATE(5460), + [sym_optional_tuple_parameter] = STATE(5460), + [sym_optional_type] = STATE(5460), + [sym_rest_type] = STATE(5460), + [sym__tuple_type_member] = STATE(5460), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5559), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(2468), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(2550), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2474), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [sym_html_comment] = ACTIONS(5), + }, + [796] = { + [ts_builtin_sym_end] = ACTIONS(2552), + [sym_identifier] = ACTIONS(2554), + [anon_sym_export] = ACTIONS(2554), + [anon_sym_default] = ACTIONS(2554), + [anon_sym_type] = ACTIONS(2554), + [anon_sym_namespace] = ACTIONS(2554), + [anon_sym_LBRACE] = ACTIONS(2552), + [anon_sym_RBRACE] = ACTIONS(2552), + [anon_sym_typeof] = ACTIONS(2554), + [anon_sym_import] = ACTIONS(2554), + [anon_sym_with] = ACTIONS(2554), + [anon_sym_var] = ACTIONS(2554), + [anon_sym_let] = ACTIONS(2554), + [anon_sym_const] = ACTIONS(2554), + [anon_sym_BANG] = ACTIONS(2552), + [anon_sym_else] = ACTIONS(2554), + [anon_sym_if] = ACTIONS(2554), + [anon_sym_switch] = ACTIONS(2554), + [anon_sym_for] = ACTIONS(2554), + [anon_sym_LPAREN] = ACTIONS(2552), + [anon_sym_SEMI] = ACTIONS(2552), + [anon_sym_await] = ACTIONS(2554), + [anon_sym_while] = ACTIONS(2554), + [anon_sym_do] = ACTIONS(2554), + [anon_sym_try] = ACTIONS(2554), + [anon_sym_break] = ACTIONS(2554), + [anon_sym_continue] = ACTIONS(2554), + [anon_sym_debugger] = ACTIONS(2554), + [anon_sym_return] = ACTIONS(2554), + [anon_sym_throw] = ACTIONS(2554), + [anon_sym_case] = ACTIONS(2554), + [anon_sym_yield] = ACTIONS(2554), + [anon_sym_LBRACK] = ACTIONS(2552), + [anon_sym_DQUOTE] = ACTIONS(2552), + [anon_sym_SQUOTE] = ACTIONS(2552), + [anon_sym_class] = ACTIONS(2554), + [anon_sym_async] = ACTIONS(2554), + [anon_sym_function] = ACTIONS(2554), + [anon_sym_new] = ACTIONS(2554), + [anon_sym_using] = ACTIONS(2554), + [anon_sym_PLUS] = ACTIONS(2554), + [anon_sym_DASH] = ACTIONS(2554), + [anon_sym_SLASH] = ACTIONS(2554), + [anon_sym_LT] = ACTIONS(2552), + [anon_sym_TILDE] = ACTIONS(2552), + [anon_sym_void] = ACTIONS(2554), + [anon_sym_delete] = ACTIONS(2554), + [anon_sym_PLUS_PLUS] = ACTIONS(2552), + [anon_sym_DASH_DASH] = ACTIONS(2552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2552), + [sym_number] = ACTIONS(2552), + [sym_private_property_identifier] = ACTIONS(2552), + [sym_this] = ACTIONS(2554), + [sym_super] = ACTIONS(2554), + [sym_true] = ACTIONS(2554), + [sym_false] = ACTIONS(2554), + [sym_null] = ACTIONS(2554), + [sym_undefined] = ACTIONS(2554), + [anon_sym_AT] = ACTIONS(2552), + [anon_sym_static] = ACTIONS(2554), + [anon_sym_readonly] = ACTIONS(2554), + [anon_sym_get] = ACTIONS(2554), + [anon_sym_set] = ACTIONS(2554), + [anon_sym_declare] = ACTIONS(2554), + [anon_sym_public] = ACTIONS(2554), + [anon_sym_private] = ACTIONS(2554), + [anon_sym_protected] = ACTIONS(2554), + [anon_sym_override] = ACTIONS(2554), + [anon_sym_module] = ACTIONS(2554), + [anon_sym_any] = ACTIONS(2554), + [anon_sym_number] = ACTIONS(2554), + [anon_sym_boolean] = ACTIONS(2554), + [anon_sym_string] = ACTIONS(2554), + [anon_sym_symbol] = ACTIONS(2554), + [anon_sym_object] = ACTIONS(2554), + [anon_sym_abstract] = ACTIONS(2554), + [anon_sym_interface] = ACTIONS(2554), + [anon_sym_enum] = ACTIONS(2554), + [sym_html_comment] = ACTIONS(5), + }, + [797] = { + [ts_builtin_sym_end] = ACTIONS(2556), + [sym_identifier] = ACTIONS(2558), + [anon_sym_export] = ACTIONS(2558), + [anon_sym_default] = ACTIONS(2558), + [anon_sym_type] = ACTIONS(2558), + [anon_sym_namespace] = ACTIONS(2558), + [anon_sym_LBRACE] = ACTIONS(2556), + [anon_sym_RBRACE] = ACTIONS(2556), + [anon_sym_typeof] = ACTIONS(2558), + [anon_sym_import] = ACTIONS(2558), + [anon_sym_with] = ACTIONS(2558), + [anon_sym_var] = ACTIONS(2558), + [anon_sym_let] = ACTIONS(2558), + [anon_sym_const] = ACTIONS(2558), + [anon_sym_BANG] = ACTIONS(2556), + [anon_sym_else] = ACTIONS(2558), + [anon_sym_if] = ACTIONS(2558), + [anon_sym_switch] = ACTIONS(2558), + [anon_sym_for] = ACTIONS(2558), + [anon_sym_LPAREN] = ACTIONS(2556), + [anon_sym_SEMI] = ACTIONS(2556), + [anon_sym_await] = ACTIONS(2558), + [anon_sym_while] = ACTIONS(2558), + [anon_sym_do] = ACTIONS(2558), + [anon_sym_try] = ACTIONS(2558), + [anon_sym_break] = ACTIONS(2558), + [anon_sym_continue] = ACTIONS(2558), + [anon_sym_debugger] = ACTIONS(2558), + [anon_sym_return] = ACTIONS(2558), + [anon_sym_throw] = ACTIONS(2558), + [anon_sym_case] = ACTIONS(2558), + [anon_sym_yield] = ACTIONS(2558), + [anon_sym_LBRACK] = ACTIONS(2556), + [anon_sym_DQUOTE] = ACTIONS(2556), + [anon_sym_SQUOTE] = ACTIONS(2556), + [anon_sym_class] = ACTIONS(2558), + [anon_sym_async] = ACTIONS(2558), + [anon_sym_function] = ACTIONS(2558), + [anon_sym_new] = ACTIONS(2558), + [anon_sym_using] = ACTIONS(2558), + [anon_sym_PLUS] = ACTIONS(2558), + [anon_sym_DASH] = ACTIONS(2558), + [anon_sym_SLASH] = ACTIONS(2558), + [anon_sym_LT] = ACTIONS(2556), + [anon_sym_TILDE] = ACTIONS(2556), + [anon_sym_void] = ACTIONS(2558), + [anon_sym_delete] = ACTIONS(2558), + [anon_sym_PLUS_PLUS] = ACTIONS(2556), + [anon_sym_DASH_DASH] = ACTIONS(2556), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2556), + [sym_number] = ACTIONS(2556), + [sym_private_property_identifier] = ACTIONS(2556), + [sym_this] = ACTIONS(2558), + [sym_super] = ACTIONS(2558), + [sym_true] = ACTIONS(2558), + [sym_false] = ACTIONS(2558), + [sym_null] = ACTIONS(2558), + [sym_undefined] = ACTIONS(2558), + [anon_sym_AT] = ACTIONS(2556), + [anon_sym_static] = ACTIONS(2558), + [anon_sym_readonly] = ACTIONS(2558), + [anon_sym_get] = ACTIONS(2558), + [anon_sym_set] = ACTIONS(2558), + [anon_sym_declare] = ACTIONS(2558), + [anon_sym_public] = ACTIONS(2558), + [anon_sym_private] = ACTIONS(2558), + [anon_sym_protected] = ACTIONS(2558), + [anon_sym_override] = ACTIONS(2558), + [anon_sym_module] = ACTIONS(2558), + [anon_sym_any] = ACTIONS(2558), + [anon_sym_number] = ACTIONS(2558), + [anon_sym_boolean] = ACTIONS(2558), + [anon_sym_string] = ACTIONS(2558), + [anon_sym_symbol] = ACTIONS(2558), + [anon_sym_object] = ACTIONS(2558), + [anon_sym_abstract] = ACTIONS(2558), + [anon_sym_interface] = ACTIONS(2558), + [anon_sym_enum] = ACTIONS(2558), + [sym_html_comment] = ACTIONS(5), + }, + [798] = { + [ts_builtin_sym_end] = ACTIONS(2560), + [sym_identifier] = ACTIONS(2562), + [anon_sym_export] = ACTIONS(2562), + [anon_sym_default] = ACTIONS(2562), + [anon_sym_type] = ACTIONS(2562), + [anon_sym_namespace] = ACTIONS(2562), + [anon_sym_LBRACE] = ACTIONS(2560), + [anon_sym_RBRACE] = ACTIONS(2560), + [anon_sym_typeof] = ACTIONS(2562), + [anon_sym_import] = ACTIONS(2562), + [anon_sym_with] = ACTIONS(2562), + [anon_sym_var] = ACTIONS(2562), + [anon_sym_let] = ACTIONS(2562), + [anon_sym_const] = ACTIONS(2562), + [anon_sym_BANG] = ACTIONS(2560), + [anon_sym_else] = ACTIONS(2562), + [anon_sym_if] = ACTIONS(2562), + [anon_sym_switch] = ACTIONS(2562), + [anon_sym_for] = ACTIONS(2562), + [anon_sym_LPAREN] = ACTIONS(2560), + [anon_sym_SEMI] = ACTIONS(2560), + [anon_sym_await] = ACTIONS(2562), + [anon_sym_while] = ACTIONS(2562), + [anon_sym_do] = ACTIONS(2562), + [anon_sym_try] = ACTIONS(2562), + [anon_sym_break] = ACTIONS(2562), + [anon_sym_continue] = ACTIONS(2562), + [anon_sym_debugger] = ACTIONS(2562), + [anon_sym_return] = ACTIONS(2562), + [anon_sym_throw] = ACTIONS(2562), + [anon_sym_case] = ACTIONS(2562), + [anon_sym_yield] = ACTIONS(2562), + [anon_sym_LBRACK] = ACTIONS(2560), + [anon_sym_DQUOTE] = ACTIONS(2560), + [anon_sym_SQUOTE] = ACTIONS(2560), + [anon_sym_class] = ACTIONS(2562), + [anon_sym_async] = ACTIONS(2562), + [anon_sym_function] = ACTIONS(2562), + [anon_sym_new] = ACTIONS(2562), + [anon_sym_using] = ACTIONS(2562), + [anon_sym_PLUS] = ACTIONS(2562), + [anon_sym_DASH] = ACTIONS(2562), + [anon_sym_SLASH] = ACTIONS(2562), + [anon_sym_LT] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2560), + [anon_sym_void] = ACTIONS(2562), + [anon_sym_delete] = ACTIONS(2562), + [anon_sym_PLUS_PLUS] = ACTIONS(2560), + [anon_sym_DASH_DASH] = ACTIONS(2560), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2560), + [sym_number] = ACTIONS(2560), + [sym_private_property_identifier] = ACTIONS(2560), + [sym_this] = ACTIONS(2562), + [sym_super] = ACTIONS(2562), + [sym_true] = ACTIONS(2562), + [sym_false] = ACTIONS(2562), + [sym_null] = ACTIONS(2562), + [sym_undefined] = ACTIONS(2562), + [anon_sym_AT] = ACTIONS(2560), + [anon_sym_static] = ACTIONS(2562), + [anon_sym_readonly] = ACTIONS(2562), + [anon_sym_get] = ACTIONS(2562), + [anon_sym_set] = ACTIONS(2562), + [anon_sym_declare] = ACTIONS(2562), + [anon_sym_public] = ACTIONS(2562), + [anon_sym_private] = ACTIONS(2562), + [anon_sym_protected] = ACTIONS(2562), + [anon_sym_override] = ACTIONS(2562), + [anon_sym_module] = ACTIONS(2562), + [anon_sym_any] = ACTIONS(2562), + [anon_sym_number] = ACTIONS(2562), + [anon_sym_boolean] = ACTIONS(2562), + [anon_sym_string] = ACTIONS(2562), + [anon_sym_symbol] = ACTIONS(2562), + [anon_sym_object] = ACTIONS(2562), + [anon_sym_abstract] = ACTIONS(2562), + [anon_sym_interface] = ACTIONS(2562), + [anon_sym_enum] = ACTIONS(2562), + [sym_html_comment] = ACTIONS(5), + }, + [799] = { + [ts_builtin_sym_end] = ACTIONS(2564), + [sym_identifier] = ACTIONS(2566), + [anon_sym_export] = ACTIONS(2566), + [anon_sym_default] = ACTIONS(2566), + [anon_sym_type] = ACTIONS(2566), + [anon_sym_namespace] = ACTIONS(2566), + [anon_sym_LBRACE] = ACTIONS(2564), + [anon_sym_RBRACE] = ACTIONS(2564), + [anon_sym_typeof] = ACTIONS(2566), + [anon_sym_import] = ACTIONS(2566), + [anon_sym_with] = ACTIONS(2566), + [anon_sym_var] = ACTIONS(2566), + [anon_sym_let] = ACTIONS(2566), + [anon_sym_const] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2564), + [anon_sym_else] = ACTIONS(2566), + [anon_sym_if] = ACTIONS(2566), + [anon_sym_switch] = ACTIONS(2566), + [anon_sym_for] = ACTIONS(2566), + [anon_sym_LPAREN] = ACTIONS(2564), + [anon_sym_SEMI] = ACTIONS(2564), + [anon_sym_await] = ACTIONS(2566), + [anon_sym_while] = ACTIONS(2566), + [anon_sym_do] = ACTIONS(2566), + [anon_sym_try] = ACTIONS(2566), + [anon_sym_break] = ACTIONS(2566), + [anon_sym_continue] = ACTIONS(2566), + [anon_sym_debugger] = ACTIONS(2566), + [anon_sym_return] = ACTIONS(2566), + [anon_sym_throw] = ACTIONS(2566), + [anon_sym_case] = ACTIONS(2566), + [anon_sym_yield] = ACTIONS(2566), + [anon_sym_LBRACK] = ACTIONS(2564), + [anon_sym_DQUOTE] = ACTIONS(2564), + [anon_sym_SQUOTE] = ACTIONS(2564), + [anon_sym_class] = ACTIONS(2566), + [anon_sym_async] = ACTIONS(2566), + [anon_sym_function] = ACTIONS(2566), + [anon_sym_new] = ACTIONS(2566), + [anon_sym_using] = ACTIONS(2566), + [anon_sym_PLUS] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2566), + [anon_sym_SLASH] = ACTIONS(2566), + [anon_sym_LT] = ACTIONS(2564), + [anon_sym_TILDE] = ACTIONS(2564), + [anon_sym_void] = ACTIONS(2566), + [anon_sym_delete] = ACTIONS(2566), + [anon_sym_PLUS_PLUS] = ACTIONS(2564), + [anon_sym_DASH_DASH] = ACTIONS(2564), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2564), + [sym_number] = ACTIONS(2564), + [sym_private_property_identifier] = ACTIONS(2564), + [sym_this] = ACTIONS(2566), + [sym_super] = ACTIONS(2566), + [sym_true] = ACTIONS(2566), + [sym_false] = ACTIONS(2566), + [sym_null] = ACTIONS(2566), + [sym_undefined] = ACTIONS(2566), + [anon_sym_AT] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2566), + [anon_sym_readonly] = ACTIONS(2566), + [anon_sym_get] = ACTIONS(2566), + [anon_sym_set] = ACTIONS(2566), + [anon_sym_declare] = ACTIONS(2566), + [anon_sym_public] = ACTIONS(2566), + [anon_sym_private] = ACTIONS(2566), + [anon_sym_protected] = ACTIONS(2566), + [anon_sym_override] = ACTIONS(2566), + [anon_sym_module] = ACTIONS(2566), + [anon_sym_any] = ACTIONS(2566), + [anon_sym_number] = ACTIONS(2566), + [anon_sym_boolean] = ACTIONS(2566), + [anon_sym_string] = ACTIONS(2566), + [anon_sym_symbol] = ACTIONS(2566), + [anon_sym_object] = ACTIONS(2566), + [anon_sym_abstract] = ACTIONS(2566), + [anon_sym_interface] = ACTIONS(2566), + [anon_sym_enum] = ACTIONS(2566), + [sym_html_comment] = ACTIONS(5), + }, + [800] = { + [sym_import] = STATE(4786), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5658), + [sym_rest_pattern] = STATE(5415), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3263), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3806), + [sym_tuple_parameter] = STATE(5460), + [sym_optional_tuple_parameter] = STATE(5460), + [sym_optional_type] = STATE(5460), + [sym_rest_type] = STATE(5460), + [sym__tuple_type_member] = STATE(5460), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5559), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(2468), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(2568), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2474), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [sym_html_comment] = ACTIONS(5), + }, + [801] = { + [sym_import] = STATE(4786), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5658), + [sym_rest_pattern] = STATE(5415), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3263), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3806), + [sym_tuple_parameter] = STATE(5460), + [sym_optional_tuple_parameter] = STATE(5460), + [sym_optional_type] = STATE(5460), + [sym_rest_type] = STATE(5460), + [sym__tuple_type_member] = STATE(5460), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5559), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(2468), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(2570), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2474), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [sym_html_comment] = ACTIONS(5), + }, + [802] = { + [ts_builtin_sym_end] = ACTIONS(2572), + [sym_identifier] = ACTIONS(2574), + [anon_sym_export] = ACTIONS(2574), + [anon_sym_default] = ACTIONS(2574), + [anon_sym_type] = ACTIONS(2574), + [anon_sym_namespace] = ACTIONS(2574), + [anon_sym_LBRACE] = ACTIONS(2572), + [anon_sym_RBRACE] = ACTIONS(2572), + [anon_sym_typeof] = ACTIONS(2574), + [anon_sym_import] = ACTIONS(2574), + [anon_sym_with] = ACTIONS(2574), + [anon_sym_var] = ACTIONS(2574), + [anon_sym_let] = ACTIONS(2574), + [anon_sym_const] = ACTIONS(2574), + [anon_sym_BANG] = ACTIONS(2572), + [anon_sym_else] = ACTIONS(2574), + [anon_sym_if] = ACTIONS(2574), + [anon_sym_switch] = ACTIONS(2574), + [anon_sym_for] = ACTIONS(2574), + [anon_sym_LPAREN] = ACTIONS(2572), + [anon_sym_SEMI] = ACTIONS(2572), + [anon_sym_await] = ACTIONS(2574), + [anon_sym_while] = ACTIONS(2574), + [anon_sym_do] = ACTIONS(2574), + [anon_sym_try] = ACTIONS(2574), + [anon_sym_break] = ACTIONS(2574), + [anon_sym_continue] = ACTIONS(2574), + [anon_sym_debugger] = ACTIONS(2574), + [anon_sym_return] = ACTIONS(2574), + [anon_sym_throw] = ACTIONS(2574), + [anon_sym_case] = ACTIONS(2574), + [anon_sym_yield] = ACTIONS(2574), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_DQUOTE] = ACTIONS(2572), + [anon_sym_SQUOTE] = ACTIONS(2572), + [anon_sym_class] = ACTIONS(2574), + [anon_sym_async] = ACTIONS(2574), + [anon_sym_function] = ACTIONS(2574), + [anon_sym_new] = ACTIONS(2574), + [anon_sym_using] = ACTIONS(2574), + [anon_sym_PLUS] = ACTIONS(2574), + [anon_sym_DASH] = ACTIONS(2574), + [anon_sym_SLASH] = ACTIONS(2574), + [anon_sym_LT] = ACTIONS(2572), + [anon_sym_TILDE] = ACTIONS(2572), + [anon_sym_void] = ACTIONS(2574), + [anon_sym_delete] = ACTIONS(2574), + [anon_sym_PLUS_PLUS] = ACTIONS(2572), + [anon_sym_DASH_DASH] = ACTIONS(2572), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2572), + [sym_number] = ACTIONS(2572), + [sym_private_property_identifier] = ACTIONS(2572), + [sym_this] = ACTIONS(2574), + [sym_super] = ACTIONS(2574), + [sym_true] = ACTIONS(2574), + [sym_false] = ACTIONS(2574), + [sym_null] = ACTIONS(2574), + [sym_undefined] = ACTIONS(2574), + [anon_sym_AT] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(2574), + [anon_sym_readonly] = ACTIONS(2574), + [anon_sym_get] = ACTIONS(2574), + [anon_sym_set] = ACTIONS(2574), + [anon_sym_declare] = ACTIONS(2574), + [anon_sym_public] = ACTIONS(2574), + [anon_sym_private] = ACTIONS(2574), + [anon_sym_protected] = ACTIONS(2574), + [anon_sym_override] = ACTIONS(2574), + [anon_sym_module] = ACTIONS(2574), + [anon_sym_any] = ACTIONS(2574), + [anon_sym_number] = ACTIONS(2574), + [anon_sym_boolean] = ACTIONS(2574), + [anon_sym_string] = ACTIONS(2574), + [anon_sym_symbol] = ACTIONS(2574), + [anon_sym_object] = ACTIONS(2574), + [anon_sym_abstract] = ACTIONS(2574), + [anon_sym_interface] = ACTIONS(2574), + [anon_sym_enum] = ACTIONS(2574), + [sym_html_comment] = ACTIONS(5), + }, + [803] = { + [ts_builtin_sym_end] = ACTIONS(2560), + [sym_identifier] = ACTIONS(2562), + [anon_sym_export] = ACTIONS(2562), + [anon_sym_default] = ACTIONS(2562), + [anon_sym_type] = ACTIONS(2562), + [anon_sym_namespace] = ACTIONS(2562), + [anon_sym_LBRACE] = ACTIONS(2560), + [anon_sym_RBRACE] = ACTIONS(2560), + [anon_sym_typeof] = ACTIONS(2562), + [anon_sym_import] = ACTIONS(2562), + [anon_sym_with] = ACTIONS(2562), + [anon_sym_var] = ACTIONS(2562), + [anon_sym_let] = ACTIONS(2562), + [anon_sym_const] = ACTIONS(2562), + [anon_sym_BANG] = ACTIONS(2560), + [anon_sym_else] = ACTIONS(2562), + [anon_sym_if] = ACTIONS(2562), + [anon_sym_switch] = ACTIONS(2562), + [anon_sym_for] = ACTIONS(2562), + [anon_sym_LPAREN] = ACTIONS(2560), + [anon_sym_SEMI] = ACTIONS(2560), + [anon_sym_await] = ACTIONS(2562), + [anon_sym_while] = ACTIONS(2562), + [anon_sym_do] = ACTIONS(2562), + [anon_sym_try] = ACTIONS(2562), + [anon_sym_break] = ACTIONS(2562), + [anon_sym_continue] = ACTIONS(2562), + [anon_sym_debugger] = ACTIONS(2562), + [anon_sym_return] = ACTIONS(2562), + [anon_sym_throw] = ACTIONS(2562), + [anon_sym_case] = ACTIONS(2562), + [anon_sym_yield] = ACTIONS(2562), + [anon_sym_LBRACK] = ACTIONS(2560), + [anon_sym_DQUOTE] = ACTIONS(2560), + [anon_sym_SQUOTE] = ACTIONS(2560), + [anon_sym_class] = ACTIONS(2562), + [anon_sym_async] = ACTIONS(2562), + [anon_sym_function] = ACTIONS(2562), + [anon_sym_new] = ACTIONS(2562), + [anon_sym_using] = ACTIONS(2562), + [anon_sym_PLUS] = ACTIONS(2562), + [anon_sym_DASH] = ACTIONS(2562), + [anon_sym_SLASH] = ACTIONS(2562), + [anon_sym_LT] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2560), + [anon_sym_void] = ACTIONS(2562), + [anon_sym_delete] = ACTIONS(2562), + [anon_sym_PLUS_PLUS] = ACTIONS(2560), + [anon_sym_DASH_DASH] = ACTIONS(2560), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2560), + [sym_number] = ACTIONS(2560), + [sym_private_property_identifier] = ACTIONS(2560), + [sym_this] = ACTIONS(2562), + [sym_super] = ACTIONS(2562), + [sym_true] = ACTIONS(2562), + [sym_false] = ACTIONS(2562), + [sym_null] = ACTIONS(2562), + [sym_undefined] = ACTIONS(2562), + [anon_sym_AT] = ACTIONS(2560), + [anon_sym_static] = ACTIONS(2562), + [anon_sym_readonly] = ACTIONS(2562), + [anon_sym_get] = ACTIONS(2562), + [anon_sym_set] = ACTIONS(2562), + [anon_sym_declare] = ACTIONS(2562), + [anon_sym_public] = ACTIONS(2562), + [anon_sym_private] = ACTIONS(2562), + [anon_sym_protected] = ACTIONS(2562), + [anon_sym_override] = ACTIONS(2562), + [anon_sym_module] = ACTIONS(2562), + [anon_sym_any] = ACTIONS(2562), + [anon_sym_number] = ACTIONS(2562), + [anon_sym_boolean] = ACTIONS(2562), + [anon_sym_string] = ACTIONS(2562), + [anon_sym_symbol] = ACTIONS(2562), + [anon_sym_object] = ACTIONS(2562), + [anon_sym_abstract] = ACTIONS(2562), + [anon_sym_interface] = ACTIONS(2562), + [anon_sym_enum] = ACTIONS(2562), + [sym_html_comment] = ACTIONS(5), + }, + [804] = { + [sym_import] = STATE(4786), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5658), + [sym_rest_pattern] = STATE(5415), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3263), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3806), + [sym_tuple_parameter] = STATE(5460), + [sym_optional_tuple_parameter] = STATE(5460), + [sym_optional_type] = STATE(5460), + [sym_rest_type] = STATE(5460), + [sym__tuple_type_member] = STATE(5460), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5559), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(2468), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(2576), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2474), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [sym_html_comment] = ACTIONS(5), + }, + [805] = { + [sym_import] = STATE(4786), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5658), + [sym_rest_pattern] = STATE(5415), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3263), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3806), + [sym_tuple_parameter] = STATE(5460), + [sym_optional_tuple_parameter] = STATE(5460), + [sym_optional_type] = STATE(5460), + [sym_rest_type] = STATE(5460), + [sym__tuple_type_member] = STATE(5460), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5559), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(2468), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(2578), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2474), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [sym_html_comment] = ACTIONS(5), + }, + [806] = { + [ts_builtin_sym_end] = ACTIONS(2580), + [sym_identifier] = ACTIONS(2582), + [anon_sym_export] = ACTIONS(2582), + [anon_sym_default] = ACTIONS(2582), + [anon_sym_type] = ACTIONS(2582), + [anon_sym_namespace] = ACTIONS(2582), + [anon_sym_LBRACE] = ACTIONS(2580), + [anon_sym_RBRACE] = ACTIONS(2580), + [anon_sym_typeof] = ACTIONS(2582), + [anon_sym_import] = ACTIONS(2582), + [anon_sym_with] = ACTIONS(2582), + [anon_sym_var] = ACTIONS(2582), + [anon_sym_let] = ACTIONS(2582), + [anon_sym_const] = ACTIONS(2582), + [anon_sym_BANG] = ACTIONS(2580), + [anon_sym_else] = ACTIONS(2582), + [anon_sym_if] = ACTIONS(2582), + [anon_sym_switch] = ACTIONS(2582), + [anon_sym_for] = ACTIONS(2582), + [anon_sym_LPAREN] = ACTIONS(2580), + [anon_sym_SEMI] = ACTIONS(2580), + [anon_sym_await] = ACTIONS(2582), + [anon_sym_while] = ACTIONS(2582), + [anon_sym_do] = ACTIONS(2582), + [anon_sym_try] = ACTIONS(2582), + [anon_sym_break] = ACTIONS(2582), + [anon_sym_continue] = ACTIONS(2582), + [anon_sym_debugger] = ACTIONS(2582), + [anon_sym_return] = ACTIONS(2582), + [anon_sym_throw] = ACTIONS(2582), + [anon_sym_case] = ACTIONS(2582), + [anon_sym_yield] = ACTIONS(2582), + [anon_sym_LBRACK] = ACTIONS(2580), + [anon_sym_DQUOTE] = ACTIONS(2580), + [anon_sym_SQUOTE] = ACTIONS(2580), + [anon_sym_class] = ACTIONS(2582), + [anon_sym_async] = ACTIONS(2582), + [anon_sym_function] = ACTIONS(2582), + [anon_sym_new] = ACTIONS(2582), + [anon_sym_using] = ACTIONS(2582), + [anon_sym_PLUS] = ACTIONS(2582), + [anon_sym_DASH] = ACTIONS(2582), + [anon_sym_SLASH] = ACTIONS(2582), + [anon_sym_LT] = ACTIONS(2580), + [anon_sym_TILDE] = ACTIONS(2580), + [anon_sym_void] = ACTIONS(2582), + [anon_sym_delete] = ACTIONS(2582), + [anon_sym_PLUS_PLUS] = ACTIONS(2580), + [anon_sym_DASH_DASH] = ACTIONS(2580), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2580), + [sym_number] = ACTIONS(2580), + [sym_private_property_identifier] = ACTIONS(2580), + [sym_this] = ACTIONS(2582), + [sym_super] = ACTIONS(2582), + [sym_true] = ACTIONS(2582), + [sym_false] = ACTIONS(2582), + [sym_null] = ACTIONS(2582), + [sym_undefined] = ACTIONS(2582), + [anon_sym_AT] = ACTIONS(2580), + [anon_sym_static] = ACTIONS(2582), + [anon_sym_readonly] = ACTIONS(2582), + [anon_sym_get] = ACTIONS(2582), + [anon_sym_set] = ACTIONS(2582), + [anon_sym_declare] = ACTIONS(2582), + [anon_sym_public] = ACTIONS(2582), + [anon_sym_private] = ACTIONS(2582), + [anon_sym_protected] = ACTIONS(2582), + [anon_sym_override] = ACTIONS(2582), + [anon_sym_module] = ACTIONS(2582), + [anon_sym_any] = ACTIONS(2582), + [anon_sym_number] = ACTIONS(2582), + [anon_sym_boolean] = ACTIONS(2582), + [anon_sym_string] = ACTIONS(2582), + [anon_sym_symbol] = ACTIONS(2582), + [anon_sym_object] = ACTIONS(2582), + [anon_sym_abstract] = ACTIONS(2582), + [anon_sym_interface] = ACTIONS(2582), + [anon_sym_enum] = ACTIONS(2582), + [sym_html_comment] = ACTIONS(5), + }, + [807] = { + [ts_builtin_sym_end] = ACTIONS(2584), + [sym_identifier] = ACTIONS(2586), + [anon_sym_export] = ACTIONS(2586), + [anon_sym_default] = ACTIONS(2586), + [anon_sym_type] = ACTIONS(2586), + [anon_sym_namespace] = ACTIONS(2586), + [anon_sym_LBRACE] = ACTIONS(2584), + [anon_sym_RBRACE] = ACTIONS(2584), + [anon_sym_typeof] = ACTIONS(2586), + [anon_sym_import] = ACTIONS(2586), + [anon_sym_with] = ACTIONS(2586), + [anon_sym_var] = ACTIONS(2586), + [anon_sym_let] = ACTIONS(2586), + [anon_sym_const] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(2584), + [anon_sym_else] = ACTIONS(2586), + [anon_sym_if] = ACTIONS(2586), + [anon_sym_switch] = ACTIONS(2586), + [anon_sym_for] = ACTIONS(2586), + [anon_sym_LPAREN] = ACTIONS(2584), + [anon_sym_SEMI] = ACTIONS(2584), + [anon_sym_await] = ACTIONS(2586), + [anon_sym_while] = ACTIONS(2586), + [anon_sym_do] = ACTIONS(2586), + [anon_sym_try] = ACTIONS(2586), + [anon_sym_break] = ACTIONS(2586), + [anon_sym_continue] = ACTIONS(2586), + [anon_sym_debugger] = ACTIONS(2586), + [anon_sym_return] = ACTIONS(2586), + [anon_sym_throw] = ACTIONS(2586), + [anon_sym_case] = ACTIONS(2586), + [anon_sym_yield] = ACTIONS(2586), + [anon_sym_LBRACK] = ACTIONS(2584), + [anon_sym_DQUOTE] = ACTIONS(2584), + [anon_sym_SQUOTE] = ACTIONS(2584), + [anon_sym_class] = ACTIONS(2586), + [anon_sym_async] = ACTIONS(2586), + [anon_sym_function] = ACTIONS(2586), + [anon_sym_new] = ACTIONS(2586), + [anon_sym_using] = ACTIONS(2586), + [anon_sym_PLUS] = ACTIONS(2586), + [anon_sym_DASH] = ACTIONS(2586), + [anon_sym_SLASH] = ACTIONS(2586), + [anon_sym_LT] = ACTIONS(2584), + [anon_sym_TILDE] = ACTIONS(2584), + [anon_sym_void] = ACTIONS(2586), + [anon_sym_delete] = ACTIONS(2586), + [anon_sym_PLUS_PLUS] = ACTIONS(2584), + [anon_sym_DASH_DASH] = ACTIONS(2584), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2584), + [sym_number] = ACTIONS(2584), + [sym_private_property_identifier] = ACTIONS(2584), + [sym_this] = ACTIONS(2586), + [sym_super] = ACTIONS(2586), + [sym_true] = ACTIONS(2586), + [sym_false] = ACTIONS(2586), + [sym_null] = ACTIONS(2586), + [sym_undefined] = ACTIONS(2586), + [anon_sym_AT] = ACTIONS(2584), + [anon_sym_static] = ACTIONS(2586), + [anon_sym_readonly] = ACTIONS(2586), + [anon_sym_get] = ACTIONS(2586), + [anon_sym_set] = ACTIONS(2586), + [anon_sym_declare] = ACTIONS(2586), + [anon_sym_public] = ACTIONS(2586), + [anon_sym_private] = ACTIONS(2586), + [anon_sym_protected] = ACTIONS(2586), + [anon_sym_override] = ACTIONS(2586), + [anon_sym_module] = ACTIONS(2586), + [anon_sym_any] = ACTIONS(2586), + [anon_sym_number] = ACTIONS(2586), + [anon_sym_boolean] = ACTIONS(2586), + [anon_sym_string] = ACTIONS(2586), + [anon_sym_symbol] = ACTIONS(2586), + [anon_sym_object] = ACTIONS(2586), + [anon_sym_abstract] = ACTIONS(2586), + [anon_sym_interface] = ACTIONS(2586), + [anon_sym_enum] = ACTIONS(2586), + [sym_html_comment] = ACTIONS(5), + }, + [808] = { + [ts_builtin_sym_end] = ACTIONS(2584), + [sym_identifier] = ACTIONS(2586), + [anon_sym_export] = ACTIONS(2586), + [anon_sym_default] = ACTIONS(2586), + [anon_sym_type] = ACTIONS(2586), + [anon_sym_namespace] = ACTIONS(2586), + [anon_sym_LBRACE] = ACTIONS(2584), + [anon_sym_RBRACE] = ACTIONS(2584), + [anon_sym_typeof] = ACTIONS(2586), + [anon_sym_import] = ACTIONS(2586), + [anon_sym_with] = ACTIONS(2586), + [anon_sym_var] = ACTIONS(2586), + [anon_sym_let] = ACTIONS(2586), + [anon_sym_const] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(2584), + [anon_sym_else] = ACTIONS(2586), + [anon_sym_if] = ACTIONS(2586), + [anon_sym_switch] = ACTIONS(2586), + [anon_sym_for] = ACTIONS(2586), + [anon_sym_LPAREN] = ACTIONS(2584), + [anon_sym_SEMI] = ACTIONS(2584), + [anon_sym_await] = ACTIONS(2586), + [anon_sym_while] = ACTIONS(2586), + [anon_sym_do] = ACTIONS(2586), + [anon_sym_try] = ACTIONS(2586), + [anon_sym_break] = ACTIONS(2586), + [anon_sym_continue] = ACTIONS(2586), + [anon_sym_debugger] = ACTIONS(2586), + [anon_sym_return] = ACTIONS(2586), + [anon_sym_throw] = ACTIONS(2586), + [anon_sym_case] = ACTIONS(2586), + [anon_sym_yield] = ACTIONS(2586), + [anon_sym_LBRACK] = ACTIONS(2584), + [anon_sym_DQUOTE] = ACTIONS(2584), + [anon_sym_SQUOTE] = ACTIONS(2584), + [anon_sym_class] = ACTIONS(2586), + [anon_sym_async] = ACTIONS(2586), + [anon_sym_function] = ACTIONS(2586), + [anon_sym_new] = ACTIONS(2586), + [anon_sym_using] = ACTIONS(2586), + [anon_sym_PLUS] = ACTIONS(2586), + [anon_sym_DASH] = ACTIONS(2586), + [anon_sym_SLASH] = ACTIONS(2586), + [anon_sym_LT] = ACTIONS(2584), + [anon_sym_TILDE] = ACTIONS(2584), + [anon_sym_void] = ACTIONS(2586), + [anon_sym_delete] = ACTIONS(2586), + [anon_sym_PLUS_PLUS] = ACTIONS(2584), + [anon_sym_DASH_DASH] = ACTIONS(2584), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2584), + [sym_number] = ACTIONS(2584), + [sym_private_property_identifier] = ACTIONS(2584), + [sym_this] = ACTIONS(2586), + [sym_super] = ACTIONS(2586), + [sym_true] = ACTIONS(2586), + [sym_false] = ACTIONS(2586), + [sym_null] = ACTIONS(2586), + [sym_undefined] = ACTIONS(2586), + [anon_sym_AT] = ACTIONS(2584), + [anon_sym_static] = ACTIONS(2586), + [anon_sym_readonly] = ACTIONS(2586), + [anon_sym_get] = ACTIONS(2586), + [anon_sym_set] = ACTIONS(2586), + [anon_sym_declare] = ACTIONS(2586), + [anon_sym_public] = ACTIONS(2586), + [anon_sym_private] = ACTIONS(2586), + [anon_sym_protected] = ACTIONS(2586), + [anon_sym_override] = ACTIONS(2586), + [anon_sym_module] = ACTIONS(2586), + [anon_sym_any] = ACTIONS(2586), + [anon_sym_number] = ACTIONS(2586), + [anon_sym_boolean] = ACTIONS(2586), + [anon_sym_string] = ACTIONS(2586), + [anon_sym_symbol] = ACTIONS(2586), + [anon_sym_object] = ACTIONS(2586), + [anon_sym_abstract] = ACTIONS(2586), + [anon_sym_interface] = ACTIONS(2586), + [anon_sym_enum] = ACTIONS(2586), + [sym_html_comment] = ACTIONS(5), + }, + [809] = { + [ts_builtin_sym_end] = ACTIONS(2588), + [sym_identifier] = ACTIONS(2590), + [anon_sym_export] = ACTIONS(2590), + [anon_sym_default] = ACTIONS(2590), + [anon_sym_type] = ACTIONS(2590), + [anon_sym_namespace] = ACTIONS(2590), + [anon_sym_LBRACE] = ACTIONS(2588), + [anon_sym_RBRACE] = ACTIONS(2588), + [anon_sym_typeof] = ACTIONS(2590), + [anon_sym_import] = ACTIONS(2590), + [anon_sym_with] = ACTIONS(2590), + [anon_sym_var] = ACTIONS(2590), + [anon_sym_let] = ACTIONS(2590), + [anon_sym_const] = ACTIONS(2590), + [anon_sym_BANG] = ACTIONS(2588), + [anon_sym_else] = ACTIONS(2590), + [anon_sym_if] = ACTIONS(2590), + [anon_sym_switch] = ACTIONS(2590), + [anon_sym_for] = ACTIONS(2590), + [anon_sym_LPAREN] = ACTIONS(2588), + [anon_sym_SEMI] = ACTIONS(2588), + [anon_sym_await] = ACTIONS(2590), + [anon_sym_while] = ACTIONS(2590), + [anon_sym_do] = ACTIONS(2590), + [anon_sym_try] = ACTIONS(2590), + [anon_sym_break] = ACTIONS(2590), + [anon_sym_continue] = ACTIONS(2590), + [anon_sym_debugger] = ACTIONS(2590), + [anon_sym_return] = ACTIONS(2590), + [anon_sym_throw] = ACTIONS(2590), + [anon_sym_case] = ACTIONS(2590), + [anon_sym_yield] = ACTIONS(2590), + [anon_sym_LBRACK] = ACTIONS(2588), + [anon_sym_DQUOTE] = ACTIONS(2588), + [anon_sym_SQUOTE] = ACTIONS(2588), + [anon_sym_class] = ACTIONS(2590), + [anon_sym_async] = ACTIONS(2590), + [anon_sym_function] = ACTIONS(2590), + [anon_sym_new] = ACTIONS(2590), + [anon_sym_using] = ACTIONS(2590), + [anon_sym_PLUS] = ACTIONS(2590), + [anon_sym_DASH] = ACTIONS(2590), + [anon_sym_SLASH] = ACTIONS(2590), + [anon_sym_LT] = ACTIONS(2588), + [anon_sym_TILDE] = ACTIONS(2588), + [anon_sym_void] = ACTIONS(2590), + [anon_sym_delete] = ACTIONS(2590), + [anon_sym_PLUS_PLUS] = ACTIONS(2588), + [anon_sym_DASH_DASH] = ACTIONS(2588), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2588), + [sym_number] = ACTIONS(2588), + [sym_private_property_identifier] = ACTIONS(2588), + [sym_this] = ACTIONS(2590), + [sym_super] = ACTIONS(2590), + [sym_true] = ACTIONS(2590), + [sym_false] = ACTIONS(2590), + [sym_null] = ACTIONS(2590), + [sym_undefined] = ACTIONS(2590), + [anon_sym_AT] = ACTIONS(2588), + [anon_sym_static] = ACTIONS(2590), + [anon_sym_readonly] = ACTIONS(2590), + [anon_sym_get] = ACTIONS(2590), + [anon_sym_set] = ACTIONS(2590), + [anon_sym_declare] = ACTIONS(2590), + [anon_sym_public] = ACTIONS(2590), + [anon_sym_private] = ACTIONS(2590), + [anon_sym_protected] = ACTIONS(2590), + [anon_sym_override] = ACTIONS(2590), + [anon_sym_module] = ACTIONS(2590), + [anon_sym_any] = ACTIONS(2590), + [anon_sym_number] = ACTIONS(2590), + [anon_sym_boolean] = ACTIONS(2590), + [anon_sym_string] = ACTIONS(2590), + [anon_sym_symbol] = ACTIONS(2590), + [anon_sym_object] = ACTIONS(2590), + [anon_sym_abstract] = ACTIONS(2590), + [anon_sym_interface] = ACTIONS(2590), + [anon_sym_enum] = ACTIONS(2590), + [sym_html_comment] = ACTIONS(5), + }, + [810] = { + [ts_builtin_sym_end] = ACTIONS(2592), + [sym_identifier] = ACTIONS(2594), + [anon_sym_export] = ACTIONS(2594), + [anon_sym_default] = ACTIONS(2594), + [anon_sym_type] = ACTIONS(2594), + [anon_sym_namespace] = ACTIONS(2594), + [anon_sym_LBRACE] = ACTIONS(2592), + [anon_sym_RBRACE] = ACTIONS(2592), + [anon_sym_typeof] = ACTIONS(2594), + [anon_sym_import] = ACTIONS(2594), + [anon_sym_with] = ACTIONS(2594), + [anon_sym_var] = ACTIONS(2594), + [anon_sym_let] = ACTIONS(2594), + [anon_sym_const] = ACTIONS(2594), + [anon_sym_BANG] = ACTIONS(2592), + [anon_sym_else] = ACTIONS(2594), + [anon_sym_if] = ACTIONS(2594), + [anon_sym_switch] = ACTIONS(2594), + [anon_sym_for] = ACTIONS(2594), + [anon_sym_LPAREN] = ACTIONS(2592), + [anon_sym_SEMI] = ACTIONS(2592), + [anon_sym_await] = ACTIONS(2594), + [anon_sym_while] = ACTIONS(2594), + [anon_sym_do] = ACTIONS(2594), + [anon_sym_try] = ACTIONS(2594), + [anon_sym_break] = ACTIONS(2594), + [anon_sym_continue] = ACTIONS(2594), + [anon_sym_debugger] = ACTIONS(2594), + [anon_sym_return] = ACTIONS(2594), + [anon_sym_throw] = ACTIONS(2594), + [anon_sym_case] = ACTIONS(2594), + [anon_sym_yield] = ACTIONS(2594), + [anon_sym_LBRACK] = ACTIONS(2592), + [anon_sym_DQUOTE] = ACTIONS(2592), + [anon_sym_SQUOTE] = ACTIONS(2592), + [anon_sym_class] = ACTIONS(2594), + [anon_sym_async] = ACTIONS(2594), + [anon_sym_function] = ACTIONS(2594), + [anon_sym_new] = ACTIONS(2594), + [anon_sym_using] = ACTIONS(2594), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_SLASH] = ACTIONS(2594), + [anon_sym_LT] = ACTIONS(2592), + [anon_sym_TILDE] = ACTIONS(2592), + [anon_sym_void] = ACTIONS(2594), + [anon_sym_delete] = ACTIONS(2594), + [anon_sym_PLUS_PLUS] = ACTIONS(2592), + [anon_sym_DASH_DASH] = ACTIONS(2592), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2592), + [sym_number] = ACTIONS(2592), + [sym_private_property_identifier] = ACTIONS(2592), + [sym_this] = ACTIONS(2594), + [sym_super] = ACTIONS(2594), + [sym_true] = ACTIONS(2594), + [sym_false] = ACTIONS(2594), + [sym_null] = ACTIONS(2594), + [sym_undefined] = ACTIONS(2594), + [anon_sym_AT] = ACTIONS(2592), + [anon_sym_static] = ACTIONS(2594), + [anon_sym_readonly] = ACTIONS(2594), + [anon_sym_get] = ACTIONS(2594), + [anon_sym_set] = ACTIONS(2594), + [anon_sym_declare] = ACTIONS(2594), + [anon_sym_public] = ACTIONS(2594), + [anon_sym_private] = ACTIONS(2594), + [anon_sym_protected] = ACTIONS(2594), + [anon_sym_override] = ACTIONS(2594), + [anon_sym_module] = ACTIONS(2594), + [anon_sym_any] = ACTIONS(2594), + [anon_sym_number] = ACTIONS(2594), + [anon_sym_boolean] = ACTIONS(2594), + [anon_sym_string] = ACTIONS(2594), + [anon_sym_symbol] = ACTIONS(2594), + [anon_sym_object] = ACTIONS(2594), + [anon_sym_abstract] = ACTIONS(2594), + [anon_sym_interface] = ACTIONS(2594), + [anon_sym_enum] = ACTIONS(2594), + [sym_html_comment] = ACTIONS(5), + }, + [811] = { [ts_builtin_sym_end] = ACTIONS(1873), [sym_identifier] = ACTIONS(1875), [anon_sym_export] = ACTIONS(1875), @@ -108798,8 +110393,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(1875), [anon_sym_yield] = ACTIONS(1875), [anon_sym_LBRACK] = ACTIONS(1873), - [sym_glimmer_opening_tag] = ACTIONS(1873), - [anon_sym_DOT] = ACTIONS(1875), [anon_sym_DQUOTE] = ACTIONS(1873), [anon_sym_SQUOTE] = ACTIONS(1873), [anon_sym_class] = ACTIONS(1875), @@ -108810,7 +110403,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1875), [anon_sym_DASH] = ACTIONS(1875), [anon_sym_SLASH] = ACTIONS(1875), - [anon_sym_LT] = ACTIONS(1875), + [anon_sym_LT] = ACTIONS(1873), [anon_sym_TILDE] = ACTIONS(1873), [anon_sym_void] = ACTIONS(1875), [anon_sym_delete] = ACTIONS(1875), @@ -108848,30444 +110441,27088 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1875), [sym_html_comment] = ACTIONS(5), }, - [773] = { - [ts_builtin_sym_end] = ACTIONS(1877), - [sym_identifier] = ACTIONS(1879), - [anon_sym_export] = ACTIONS(1879), - [anon_sym_default] = ACTIONS(1879), - [anon_sym_type] = ACTIONS(1879), - [anon_sym_namespace] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(1877), - [anon_sym_RBRACE] = ACTIONS(1877), - [anon_sym_typeof] = ACTIONS(1879), - [anon_sym_import] = ACTIONS(1879), - [anon_sym_with] = ACTIONS(1879), - [anon_sym_var] = ACTIONS(1879), - [anon_sym_let] = ACTIONS(1879), - [anon_sym_const] = ACTIONS(1879), - [anon_sym_BANG] = ACTIONS(1877), - [anon_sym_else] = ACTIONS(1879), - [anon_sym_if] = ACTIONS(1879), - [anon_sym_switch] = ACTIONS(1879), - [anon_sym_for] = ACTIONS(1879), - [anon_sym_LPAREN] = ACTIONS(1877), - [anon_sym_SEMI] = ACTIONS(1877), - [anon_sym_await] = ACTIONS(1879), - [anon_sym_while] = ACTIONS(1879), - [anon_sym_do] = ACTIONS(1879), - [anon_sym_try] = ACTIONS(1879), - [anon_sym_break] = ACTIONS(1879), - [anon_sym_continue] = ACTIONS(1879), - [anon_sym_debugger] = ACTIONS(1879), - [anon_sym_return] = ACTIONS(1879), - [anon_sym_throw] = ACTIONS(1879), - [anon_sym_case] = ACTIONS(1879), - [anon_sym_yield] = ACTIONS(1879), - [anon_sym_LBRACK] = ACTIONS(1877), - [sym_glimmer_opening_tag] = ACTIONS(1877), - [anon_sym_DQUOTE] = ACTIONS(1877), - [anon_sym_SQUOTE] = ACTIONS(1877), - [anon_sym_class] = ACTIONS(1879), - [anon_sym_async] = ACTIONS(1879), - [anon_sym_function] = ACTIONS(1879), - [anon_sym_new] = ACTIONS(1879), - [anon_sym_using] = ACTIONS(1879), - [anon_sym_PLUS] = ACTIONS(1879), - [anon_sym_DASH] = ACTIONS(1879), - [anon_sym_SLASH] = ACTIONS(1879), - [anon_sym_LT] = ACTIONS(1879), - [anon_sym_TILDE] = ACTIONS(1877), - [anon_sym_void] = ACTIONS(1879), - [anon_sym_delete] = ACTIONS(1879), - [anon_sym_PLUS_PLUS] = ACTIONS(1877), - [anon_sym_DASH_DASH] = ACTIONS(1877), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1877), - [sym_number] = ACTIONS(1877), - [sym_private_property_identifier] = ACTIONS(1877), - [sym_this] = ACTIONS(1879), - [sym_super] = ACTIONS(1879), - [sym_true] = ACTIONS(1879), - [sym_false] = ACTIONS(1879), - [sym_null] = ACTIONS(1879), - [sym_undefined] = ACTIONS(1879), - [anon_sym_AT] = ACTIONS(1877), - [anon_sym_static] = ACTIONS(1879), - [anon_sym_readonly] = ACTIONS(1879), - [anon_sym_get] = ACTIONS(1879), - [anon_sym_set] = ACTIONS(1879), - [anon_sym_declare] = ACTIONS(1879), - [anon_sym_public] = ACTIONS(1879), - [anon_sym_private] = ACTIONS(1879), - [anon_sym_protected] = ACTIONS(1879), - [anon_sym_override] = ACTIONS(1879), - [anon_sym_module] = ACTIONS(1879), - [anon_sym_any] = ACTIONS(1879), - [anon_sym_number] = ACTIONS(1879), - [anon_sym_boolean] = ACTIONS(1879), - [anon_sym_string] = ACTIONS(1879), - [anon_sym_symbol] = ACTIONS(1879), - [anon_sym_object] = ACTIONS(1879), - [anon_sym_abstract] = ACTIONS(1879), - [anon_sym_interface] = ACTIONS(1879), - [anon_sym_enum] = ACTIONS(1879), - [sym__automatic_semicolon] = ACTIONS(1885), - [sym_html_comment] = ACTIONS(5), - }, - [774] = { - [ts_builtin_sym_end] = ACTIONS(1887), - [sym_identifier] = ACTIONS(1889), - [anon_sym_export] = ACTIONS(1889), - [anon_sym_default] = ACTIONS(1889), - [anon_sym_type] = ACTIONS(1889), - [anon_sym_namespace] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1887), - [anon_sym_RBRACE] = ACTIONS(1887), - [anon_sym_typeof] = ACTIONS(1889), - [anon_sym_import] = ACTIONS(1889), - [anon_sym_with] = ACTIONS(1889), - [anon_sym_var] = ACTIONS(1889), - [anon_sym_let] = ACTIONS(1889), - [anon_sym_const] = ACTIONS(1889), - [anon_sym_BANG] = ACTIONS(1887), - [anon_sym_else] = ACTIONS(1889), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_switch] = ACTIONS(1889), - [anon_sym_for] = ACTIONS(1889), - [anon_sym_LPAREN] = ACTIONS(1887), - [anon_sym_SEMI] = ACTIONS(1887), - [anon_sym_await] = ACTIONS(1889), - [anon_sym_while] = ACTIONS(1889), - [anon_sym_do] = ACTIONS(1889), - [anon_sym_try] = ACTIONS(1889), - [anon_sym_break] = ACTIONS(1889), - [anon_sym_continue] = ACTIONS(1889), - [anon_sym_debugger] = ACTIONS(1889), - [anon_sym_return] = ACTIONS(1889), - [anon_sym_throw] = ACTIONS(1889), - [anon_sym_case] = ACTIONS(1889), - [anon_sym_yield] = ACTIONS(1889), - [anon_sym_LBRACK] = ACTIONS(1887), - [sym_glimmer_opening_tag] = ACTIONS(1887), - [anon_sym_DQUOTE] = ACTIONS(1887), - [anon_sym_SQUOTE] = ACTIONS(1887), - [anon_sym_class] = ACTIONS(1889), - [anon_sym_async] = ACTIONS(1889), - [anon_sym_function] = ACTIONS(1889), - [anon_sym_new] = ACTIONS(1889), - [anon_sym_using] = ACTIONS(1889), - [anon_sym_PLUS] = ACTIONS(1889), - [anon_sym_DASH] = ACTIONS(1889), - [anon_sym_SLASH] = ACTIONS(1889), - [anon_sym_LT] = ACTIONS(1889), - [anon_sym_TILDE] = ACTIONS(1887), - [anon_sym_void] = ACTIONS(1889), - [anon_sym_delete] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1887), - [anon_sym_DASH_DASH] = ACTIONS(1887), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1887), - [sym_number] = ACTIONS(1887), - [sym_private_property_identifier] = ACTIONS(1887), - [sym_this] = ACTIONS(1889), - [sym_super] = ACTIONS(1889), - [sym_true] = ACTIONS(1889), - [sym_false] = ACTIONS(1889), - [sym_null] = ACTIONS(1889), - [sym_undefined] = ACTIONS(1889), - [anon_sym_AT] = ACTIONS(1887), - [anon_sym_static] = ACTIONS(1889), - [anon_sym_readonly] = ACTIONS(1889), - [anon_sym_get] = ACTIONS(1889), - [anon_sym_set] = ACTIONS(1889), - [anon_sym_declare] = ACTIONS(1889), - [anon_sym_public] = ACTIONS(1889), - [anon_sym_private] = ACTIONS(1889), - [anon_sym_protected] = ACTIONS(1889), - [anon_sym_override] = ACTIONS(1889), - [anon_sym_module] = ACTIONS(1889), - [anon_sym_any] = ACTIONS(1889), - [anon_sym_number] = ACTIONS(1889), - [anon_sym_boolean] = ACTIONS(1889), - [anon_sym_string] = ACTIONS(1889), - [anon_sym_symbol] = ACTIONS(1889), - [anon_sym_object] = ACTIONS(1889), - [anon_sym_abstract] = ACTIONS(1889), - [anon_sym_interface] = ACTIONS(1889), - [anon_sym_enum] = ACTIONS(1889), - [sym__automatic_semicolon] = ACTIONS(1895), - [sym_html_comment] = ACTIONS(5), - }, - [775] = { - [sym__call_signature] = STATE(5864), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2397), - [anon_sym_export] = ACTIONS(2399), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2399), - [anon_sym_EQ] = ACTIONS(978), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2399), - [anon_sym_let] = ACTIONS(2399), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2399), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2399), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2399), - [anon_sym_readonly] = ACTIONS(2399), - [anon_sym_get] = ACTIONS(2399), - [anon_sym_set] = ACTIONS(2399), - [anon_sym_declare] = ACTIONS(2399), - [anon_sym_public] = ACTIONS(2399), - [anon_sym_private] = ACTIONS(2399), - [anon_sym_protected] = ACTIONS(2399), - [anon_sym_override] = ACTIONS(2399), - [anon_sym_module] = ACTIONS(2399), - [anon_sym_any] = ACTIONS(2399), - [anon_sym_number] = ACTIONS(2399), - [anon_sym_boolean] = ACTIONS(2399), - [anon_sym_string] = ACTIONS(2399), - [anon_sym_symbol] = ACTIONS(2399), - [anon_sym_object] = ACTIONS(2399), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), - [sym_html_comment] = ACTIONS(5), - }, - [776] = { - [ts_builtin_sym_end] = ACTIONS(1787), - [sym_identifier] = ACTIONS(1789), - [anon_sym_export] = ACTIONS(1789), - [anon_sym_default] = ACTIONS(1789), - [anon_sym_type] = ACTIONS(1789), - [anon_sym_namespace] = ACTIONS(1789), - [anon_sym_LBRACE] = ACTIONS(1787), - [anon_sym_RBRACE] = ACTIONS(1787), - [anon_sym_typeof] = ACTIONS(1789), - [anon_sym_import] = ACTIONS(1789), - [anon_sym_with] = ACTIONS(1789), - [anon_sym_var] = ACTIONS(1789), - [anon_sym_let] = ACTIONS(1789), - [anon_sym_const] = ACTIONS(1789), - [anon_sym_BANG] = ACTIONS(1787), - [anon_sym_else] = ACTIONS(1789), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_switch] = ACTIONS(1789), - [anon_sym_for] = ACTIONS(1789), - [anon_sym_LPAREN] = ACTIONS(1787), - [anon_sym_SEMI] = ACTIONS(1787), - [anon_sym_await] = ACTIONS(1789), - [anon_sym_while] = ACTIONS(1789), - [anon_sym_do] = ACTIONS(1789), - [anon_sym_try] = ACTIONS(1789), - [anon_sym_break] = ACTIONS(1789), - [anon_sym_continue] = ACTIONS(1789), - [anon_sym_debugger] = ACTIONS(1789), - [anon_sym_return] = ACTIONS(1789), - [anon_sym_throw] = ACTIONS(1789), - [anon_sym_case] = ACTIONS(1789), - [anon_sym_yield] = ACTIONS(1789), - [anon_sym_LBRACK] = ACTIONS(1787), - [sym_glimmer_opening_tag] = ACTIONS(1787), - [anon_sym_DQUOTE] = ACTIONS(1787), - [anon_sym_SQUOTE] = ACTIONS(1787), - [anon_sym_class] = ACTIONS(1789), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1789), - [anon_sym_new] = ACTIONS(1789), - [anon_sym_using] = ACTIONS(1789), - [anon_sym_PLUS] = ACTIONS(1789), - [anon_sym_DASH] = ACTIONS(1789), - [anon_sym_SLASH] = ACTIONS(1789), - [anon_sym_LT] = ACTIONS(1789), - [anon_sym_TILDE] = ACTIONS(1787), - [anon_sym_void] = ACTIONS(1789), - [anon_sym_delete] = ACTIONS(1789), - [anon_sym_PLUS_PLUS] = ACTIONS(1787), - [anon_sym_DASH_DASH] = ACTIONS(1787), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1787), - [sym_number] = ACTIONS(1787), - [sym_private_property_identifier] = ACTIONS(1787), - [sym_this] = ACTIONS(1789), - [sym_super] = ACTIONS(1789), - [sym_true] = ACTIONS(1789), - [sym_false] = ACTIONS(1789), - [sym_null] = ACTIONS(1789), - [sym_undefined] = ACTIONS(1789), - [anon_sym_AT] = ACTIONS(1787), - [anon_sym_static] = ACTIONS(1789), - [anon_sym_readonly] = ACTIONS(1789), - [anon_sym_get] = ACTIONS(1789), - [anon_sym_set] = ACTIONS(1789), - [anon_sym_declare] = ACTIONS(1789), - [anon_sym_public] = ACTIONS(1789), - [anon_sym_private] = ACTIONS(1789), - [anon_sym_protected] = ACTIONS(1789), - [anon_sym_override] = ACTIONS(1789), - [anon_sym_module] = ACTIONS(1789), - [anon_sym_any] = ACTIONS(1789), - [anon_sym_number] = ACTIONS(1789), - [anon_sym_boolean] = ACTIONS(1789), - [anon_sym_string] = ACTIONS(1789), - [anon_sym_symbol] = ACTIONS(1789), - [anon_sym_object] = ACTIONS(1789), - [anon_sym_abstract] = ACTIONS(1789), - [anon_sym_interface] = ACTIONS(1789), - [anon_sym_enum] = ACTIONS(1789), - [sym__automatic_semicolon] = ACTIONS(1795), - [sym_html_comment] = ACTIONS(5), - }, - [777] = { - [sym__call_signature] = STATE(5864), - [sym_formal_parameters] = STATE(3849), - [sym_type_parameters] = STATE(5338), - [sym_identifier] = ACTIONS(2397), - [anon_sym_export] = ACTIONS(2399), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2399), - [anon_sym_EQ] = ACTIONS(976), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2399), - [anon_sym_let] = ACTIONS(2399), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2399), - [anon_sym_function] = ACTIONS(2392), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2399), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2399), - [anon_sym_readonly] = ACTIONS(2399), - [anon_sym_get] = ACTIONS(2399), - [anon_sym_set] = ACTIONS(2399), - [anon_sym_declare] = ACTIONS(2399), - [anon_sym_public] = ACTIONS(2399), - [anon_sym_private] = ACTIONS(2399), - [anon_sym_protected] = ACTIONS(2399), - [anon_sym_override] = ACTIONS(2399), - [anon_sym_module] = ACTIONS(2399), - [anon_sym_any] = ACTIONS(2399), - [anon_sym_number] = ACTIONS(2399), - [anon_sym_boolean] = ACTIONS(2399), - [anon_sym_string] = ACTIONS(2399), - [anon_sym_symbol] = ACTIONS(2399), - [anon_sym_object] = ACTIONS(2399), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), - [sym_html_comment] = ACTIONS(5), - }, - [778] = { - [ts_builtin_sym_end] = ACTIONS(2495), - [sym_identifier] = ACTIONS(2497), - [anon_sym_export] = ACTIONS(2497), - [anon_sym_default] = ACTIONS(2497), - [anon_sym_type] = ACTIONS(2497), - [anon_sym_namespace] = ACTIONS(2497), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_RBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(2497), - [anon_sym_import] = ACTIONS(2497), - [anon_sym_with] = ACTIONS(2497), - [anon_sym_var] = ACTIONS(2497), - [anon_sym_let] = ACTIONS(2497), - [anon_sym_const] = ACTIONS(2497), - [anon_sym_BANG] = ACTIONS(2495), - [anon_sym_else] = ACTIONS(2497), - [anon_sym_if] = ACTIONS(2497), - [anon_sym_switch] = ACTIONS(2497), - [anon_sym_for] = ACTIONS(2497), - [anon_sym_LPAREN] = ACTIONS(2495), - [anon_sym_SEMI] = ACTIONS(2495), - [anon_sym_await] = ACTIONS(2497), - [anon_sym_while] = ACTIONS(2497), - [anon_sym_do] = ACTIONS(2497), - [anon_sym_try] = ACTIONS(2497), - [anon_sym_break] = ACTIONS(2497), - [anon_sym_continue] = ACTIONS(2497), - [anon_sym_debugger] = ACTIONS(2497), - [anon_sym_return] = ACTIONS(2497), - [anon_sym_throw] = ACTIONS(2497), - [anon_sym_case] = ACTIONS(2497), - [anon_sym_yield] = ACTIONS(2497), - [anon_sym_LBRACK] = ACTIONS(2495), - [sym_glimmer_opening_tag] = ACTIONS(2495), - [anon_sym_DQUOTE] = ACTIONS(2495), - [anon_sym_SQUOTE] = ACTIONS(2495), - [anon_sym_class] = ACTIONS(2497), - [anon_sym_async] = ACTIONS(2497), - [anon_sym_function] = ACTIONS(2497), - [anon_sym_new] = ACTIONS(2497), - [anon_sym_using] = ACTIONS(2497), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_SLASH] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2497), - [anon_sym_TILDE] = ACTIONS(2495), - [anon_sym_void] = ACTIONS(2497), - [anon_sym_delete] = ACTIONS(2497), - [anon_sym_PLUS_PLUS] = ACTIONS(2495), - [anon_sym_DASH_DASH] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2495), - [sym_number] = ACTIONS(2495), - [sym_private_property_identifier] = ACTIONS(2495), - [sym_this] = ACTIONS(2497), - [sym_super] = ACTIONS(2497), - [sym_true] = ACTIONS(2497), - [sym_false] = ACTIONS(2497), - [sym_null] = ACTIONS(2497), - [sym_undefined] = ACTIONS(2497), - [anon_sym_AT] = ACTIONS(2495), - [anon_sym_static] = ACTIONS(2497), - [anon_sym_readonly] = ACTIONS(2497), - [anon_sym_get] = ACTIONS(2497), - [anon_sym_set] = ACTIONS(2497), - [anon_sym_declare] = ACTIONS(2497), - [anon_sym_public] = ACTIONS(2497), - [anon_sym_private] = ACTIONS(2497), - [anon_sym_protected] = ACTIONS(2497), - [anon_sym_override] = ACTIONS(2497), - [anon_sym_module] = ACTIONS(2497), - [anon_sym_any] = ACTIONS(2497), - [anon_sym_number] = ACTIONS(2497), - [anon_sym_boolean] = ACTIONS(2497), - [anon_sym_string] = ACTIONS(2497), - [anon_sym_symbol] = ACTIONS(2497), - [anon_sym_object] = ACTIONS(2497), - [anon_sym_abstract] = ACTIONS(2497), - [anon_sym_interface] = ACTIONS(2497), - [anon_sym_enum] = ACTIONS(2497), - [sym_html_comment] = ACTIONS(5), - }, - [779] = { - [ts_builtin_sym_end] = ACTIONS(2499), - [sym_identifier] = ACTIONS(2501), - [anon_sym_export] = ACTIONS(2501), - [anon_sym_default] = ACTIONS(2501), - [anon_sym_type] = ACTIONS(2501), - [anon_sym_namespace] = ACTIONS(2501), - [anon_sym_LBRACE] = ACTIONS(2499), - [anon_sym_RBRACE] = ACTIONS(2499), - [anon_sym_typeof] = ACTIONS(2501), - [anon_sym_import] = ACTIONS(2501), - [anon_sym_with] = ACTIONS(2501), - [anon_sym_var] = ACTIONS(2501), - [anon_sym_let] = ACTIONS(2501), - [anon_sym_const] = ACTIONS(2501), - [anon_sym_BANG] = ACTIONS(2499), - [anon_sym_else] = ACTIONS(2501), - [anon_sym_if] = ACTIONS(2501), - [anon_sym_switch] = ACTIONS(2501), - [anon_sym_for] = ACTIONS(2501), - [anon_sym_LPAREN] = ACTIONS(2499), - [anon_sym_SEMI] = ACTIONS(2499), - [anon_sym_await] = ACTIONS(2501), - [anon_sym_while] = ACTIONS(2501), - [anon_sym_do] = ACTIONS(2501), - [anon_sym_try] = ACTIONS(2501), - [anon_sym_break] = ACTIONS(2501), - [anon_sym_continue] = ACTIONS(2501), - [anon_sym_debugger] = ACTIONS(2501), - [anon_sym_return] = ACTIONS(2501), - [anon_sym_throw] = ACTIONS(2501), - [anon_sym_case] = ACTIONS(2501), - [anon_sym_yield] = ACTIONS(2501), - [anon_sym_LBRACK] = ACTIONS(2499), - [sym_glimmer_opening_tag] = ACTIONS(2499), - [anon_sym_DQUOTE] = ACTIONS(2499), - [anon_sym_SQUOTE] = ACTIONS(2499), - [anon_sym_class] = ACTIONS(2501), - [anon_sym_async] = ACTIONS(2501), - [anon_sym_function] = ACTIONS(2501), - [anon_sym_new] = ACTIONS(2501), - [anon_sym_using] = ACTIONS(2501), - [anon_sym_PLUS] = ACTIONS(2501), - [anon_sym_DASH] = ACTIONS(2501), - [anon_sym_SLASH] = ACTIONS(2501), - [anon_sym_LT] = ACTIONS(2501), - [anon_sym_TILDE] = ACTIONS(2499), - [anon_sym_void] = ACTIONS(2501), - [anon_sym_delete] = ACTIONS(2501), - [anon_sym_PLUS_PLUS] = ACTIONS(2499), - [anon_sym_DASH_DASH] = ACTIONS(2499), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2499), - [sym_number] = ACTIONS(2499), - [sym_private_property_identifier] = ACTIONS(2499), - [sym_this] = ACTIONS(2501), - [sym_super] = ACTIONS(2501), - [sym_true] = ACTIONS(2501), - [sym_false] = ACTIONS(2501), - [sym_null] = ACTIONS(2501), - [sym_undefined] = ACTIONS(2501), - [anon_sym_AT] = ACTIONS(2499), - [anon_sym_static] = ACTIONS(2501), - [anon_sym_readonly] = ACTIONS(2501), - [anon_sym_get] = ACTIONS(2501), - [anon_sym_set] = ACTIONS(2501), - [anon_sym_declare] = ACTIONS(2501), - [anon_sym_public] = ACTIONS(2501), - [anon_sym_private] = ACTIONS(2501), - [anon_sym_protected] = ACTIONS(2501), - [anon_sym_override] = ACTIONS(2501), - [anon_sym_module] = ACTIONS(2501), - [anon_sym_any] = ACTIONS(2501), - [anon_sym_number] = ACTIONS(2501), - [anon_sym_boolean] = ACTIONS(2501), - [anon_sym_string] = ACTIONS(2501), - [anon_sym_symbol] = ACTIONS(2501), - [anon_sym_object] = ACTIONS(2501), - [anon_sym_abstract] = ACTIONS(2501), - [anon_sym_interface] = ACTIONS(2501), - [anon_sym_enum] = ACTIONS(2501), - [sym_html_comment] = ACTIONS(5), - }, - [780] = { - [ts_builtin_sym_end] = ACTIONS(2503), - [sym_identifier] = ACTIONS(2505), - [anon_sym_export] = ACTIONS(2505), - [anon_sym_default] = ACTIONS(2505), - [anon_sym_type] = ACTIONS(2505), - [anon_sym_namespace] = ACTIONS(2505), - [anon_sym_LBRACE] = ACTIONS(2503), - [anon_sym_RBRACE] = ACTIONS(2503), - [anon_sym_typeof] = ACTIONS(2505), - [anon_sym_import] = ACTIONS(2505), - [anon_sym_with] = ACTIONS(2505), - [anon_sym_var] = ACTIONS(2505), - [anon_sym_let] = ACTIONS(2505), - [anon_sym_const] = ACTIONS(2505), - [anon_sym_BANG] = ACTIONS(2503), - [anon_sym_else] = ACTIONS(2505), - [anon_sym_if] = ACTIONS(2505), - [anon_sym_switch] = ACTIONS(2505), - [anon_sym_for] = ACTIONS(2505), - [anon_sym_LPAREN] = ACTIONS(2503), - [anon_sym_SEMI] = ACTIONS(2503), - [anon_sym_await] = ACTIONS(2505), - [anon_sym_while] = ACTIONS(2505), - [anon_sym_do] = ACTIONS(2505), - [anon_sym_try] = ACTIONS(2505), - [anon_sym_break] = ACTIONS(2505), - [anon_sym_continue] = ACTIONS(2505), - [anon_sym_debugger] = ACTIONS(2505), - [anon_sym_return] = ACTIONS(2505), - [anon_sym_throw] = ACTIONS(2505), - [anon_sym_case] = ACTIONS(2505), - [anon_sym_yield] = ACTIONS(2505), - [anon_sym_LBRACK] = ACTIONS(2503), - [sym_glimmer_opening_tag] = ACTIONS(2503), - [anon_sym_DQUOTE] = ACTIONS(2503), - [anon_sym_SQUOTE] = ACTIONS(2503), - [anon_sym_class] = ACTIONS(2505), - [anon_sym_async] = ACTIONS(2505), - [anon_sym_function] = ACTIONS(2505), - [anon_sym_new] = ACTIONS(2505), - [anon_sym_using] = ACTIONS(2505), - [anon_sym_PLUS] = ACTIONS(2505), - [anon_sym_DASH] = ACTIONS(2505), - [anon_sym_SLASH] = ACTIONS(2505), - [anon_sym_LT] = ACTIONS(2505), - [anon_sym_TILDE] = ACTIONS(2503), - [anon_sym_void] = ACTIONS(2505), - [anon_sym_delete] = ACTIONS(2505), - [anon_sym_PLUS_PLUS] = ACTIONS(2503), - [anon_sym_DASH_DASH] = ACTIONS(2503), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2503), - [sym_number] = ACTIONS(2503), - [sym_private_property_identifier] = ACTIONS(2503), - [sym_this] = ACTIONS(2505), - [sym_super] = ACTIONS(2505), - [sym_true] = ACTIONS(2505), - [sym_false] = ACTIONS(2505), - [sym_null] = ACTIONS(2505), - [sym_undefined] = ACTIONS(2505), - [anon_sym_AT] = ACTIONS(2503), - [anon_sym_static] = ACTIONS(2505), - [anon_sym_readonly] = ACTIONS(2505), - [anon_sym_get] = ACTIONS(2505), - [anon_sym_set] = ACTIONS(2505), - [anon_sym_declare] = ACTIONS(2505), - [anon_sym_public] = ACTIONS(2505), - [anon_sym_private] = ACTIONS(2505), - [anon_sym_protected] = ACTIONS(2505), - [anon_sym_override] = ACTIONS(2505), - [anon_sym_module] = ACTIONS(2505), - [anon_sym_any] = ACTIONS(2505), - [anon_sym_number] = ACTIONS(2505), - [anon_sym_boolean] = ACTIONS(2505), - [anon_sym_string] = ACTIONS(2505), - [anon_sym_symbol] = ACTIONS(2505), - [anon_sym_object] = ACTIONS(2505), - [anon_sym_abstract] = ACTIONS(2505), - [anon_sym_interface] = ACTIONS(2505), - [anon_sym_enum] = ACTIONS(2505), - [sym_html_comment] = ACTIONS(5), - }, - [781] = { - [ts_builtin_sym_end] = ACTIONS(2507), - [sym_identifier] = ACTIONS(2509), - [anon_sym_export] = ACTIONS(2509), - [anon_sym_default] = ACTIONS(2509), - [anon_sym_type] = ACTIONS(2509), - [anon_sym_namespace] = ACTIONS(2509), - [anon_sym_LBRACE] = ACTIONS(2507), - [anon_sym_RBRACE] = ACTIONS(2507), - [anon_sym_typeof] = ACTIONS(2509), - [anon_sym_import] = ACTIONS(2509), - [anon_sym_with] = ACTIONS(2509), - [anon_sym_var] = ACTIONS(2509), - [anon_sym_let] = ACTIONS(2509), - [anon_sym_const] = ACTIONS(2509), - [anon_sym_BANG] = ACTIONS(2507), - [anon_sym_else] = ACTIONS(2509), - [anon_sym_if] = ACTIONS(2509), - [anon_sym_switch] = ACTIONS(2509), - [anon_sym_for] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2507), - [anon_sym_SEMI] = ACTIONS(2507), - [anon_sym_await] = ACTIONS(2509), - [anon_sym_while] = ACTIONS(2509), - [anon_sym_do] = ACTIONS(2509), - [anon_sym_try] = ACTIONS(2509), - [anon_sym_break] = ACTIONS(2509), - [anon_sym_continue] = ACTIONS(2509), - [anon_sym_debugger] = ACTIONS(2509), - [anon_sym_return] = ACTIONS(2509), - [anon_sym_throw] = ACTIONS(2509), - [anon_sym_case] = ACTIONS(2509), - [anon_sym_yield] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(2507), - [sym_glimmer_opening_tag] = ACTIONS(2507), - [anon_sym_DQUOTE] = ACTIONS(2507), - [anon_sym_SQUOTE] = ACTIONS(2507), - [anon_sym_class] = ACTIONS(2509), - [anon_sym_async] = ACTIONS(2509), - [anon_sym_function] = ACTIONS(2509), - [anon_sym_new] = ACTIONS(2509), - [anon_sym_using] = ACTIONS(2509), - [anon_sym_PLUS] = ACTIONS(2509), - [anon_sym_DASH] = ACTIONS(2509), - [anon_sym_SLASH] = ACTIONS(2509), - [anon_sym_LT] = ACTIONS(2509), - [anon_sym_TILDE] = ACTIONS(2507), - [anon_sym_void] = ACTIONS(2509), - [anon_sym_delete] = ACTIONS(2509), - [anon_sym_PLUS_PLUS] = ACTIONS(2507), - [anon_sym_DASH_DASH] = ACTIONS(2507), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2507), - [sym_number] = ACTIONS(2507), - [sym_private_property_identifier] = ACTIONS(2507), - [sym_this] = ACTIONS(2509), - [sym_super] = ACTIONS(2509), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_null] = ACTIONS(2509), - [sym_undefined] = ACTIONS(2509), - [anon_sym_AT] = ACTIONS(2507), - [anon_sym_static] = ACTIONS(2509), - [anon_sym_readonly] = ACTIONS(2509), - [anon_sym_get] = ACTIONS(2509), - [anon_sym_set] = ACTIONS(2509), - [anon_sym_declare] = ACTIONS(2509), - [anon_sym_public] = ACTIONS(2509), - [anon_sym_private] = ACTIONS(2509), - [anon_sym_protected] = ACTIONS(2509), - [anon_sym_override] = ACTIONS(2509), - [anon_sym_module] = ACTIONS(2509), - [anon_sym_any] = ACTIONS(2509), - [anon_sym_number] = ACTIONS(2509), - [anon_sym_boolean] = ACTIONS(2509), - [anon_sym_string] = ACTIONS(2509), - [anon_sym_symbol] = ACTIONS(2509), - [anon_sym_object] = ACTIONS(2509), - [anon_sym_abstract] = ACTIONS(2509), - [anon_sym_interface] = ACTIONS(2509), - [anon_sym_enum] = ACTIONS(2509), - [sym_html_comment] = ACTIONS(5), - }, - [782] = { - [ts_builtin_sym_end] = ACTIONS(2511), - [sym_identifier] = ACTIONS(2513), - [anon_sym_export] = ACTIONS(2513), - [anon_sym_default] = ACTIONS(2513), - [anon_sym_type] = ACTIONS(2513), - [anon_sym_namespace] = ACTIONS(2513), - [anon_sym_LBRACE] = ACTIONS(2511), - [anon_sym_RBRACE] = ACTIONS(2511), - [anon_sym_typeof] = ACTIONS(2513), - [anon_sym_import] = ACTIONS(2513), - [anon_sym_with] = ACTIONS(2513), - [anon_sym_var] = ACTIONS(2513), - [anon_sym_let] = ACTIONS(2513), - [anon_sym_const] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2513), - [anon_sym_if] = ACTIONS(2513), - [anon_sym_switch] = ACTIONS(2513), - [anon_sym_for] = ACTIONS(2513), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2511), - [anon_sym_await] = ACTIONS(2513), - [anon_sym_while] = ACTIONS(2513), - [anon_sym_do] = ACTIONS(2513), - [anon_sym_try] = ACTIONS(2513), - [anon_sym_break] = ACTIONS(2513), - [anon_sym_continue] = ACTIONS(2513), - [anon_sym_debugger] = ACTIONS(2513), - [anon_sym_return] = ACTIONS(2513), - [anon_sym_throw] = ACTIONS(2513), - [anon_sym_case] = ACTIONS(2513), - [anon_sym_yield] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [sym_glimmer_opening_tag] = ACTIONS(2511), - [anon_sym_DQUOTE] = ACTIONS(2511), - [anon_sym_SQUOTE] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2513), - [anon_sym_async] = ACTIONS(2513), - [anon_sym_function] = ACTIONS(2513), - [anon_sym_new] = ACTIONS(2513), - [anon_sym_using] = ACTIONS(2513), - [anon_sym_PLUS] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2513), - [anon_sym_SLASH] = ACTIONS(2513), - [anon_sym_LT] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2511), - [anon_sym_void] = ACTIONS(2513), - [anon_sym_delete] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2511), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2511), - [sym_number] = ACTIONS(2511), - [sym_private_property_identifier] = ACTIONS(2511), - [sym_this] = ACTIONS(2513), - [sym_super] = ACTIONS(2513), - [sym_true] = ACTIONS(2513), - [sym_false] = ACTIONS(2513), - [sym_null] = ACTIONS(2513), - [sym_undefined] = ACTIONS(2513), - [anon_sym_AT] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2513), - [anon_sym_readonly] = ACTIONS(2513), - [anon_sym_get] = ACTIONS(2513), - [anon_sym_set] = ACTIONS(2513), - [anon_sym_declare] = ACTIONS(2513), - [anon_sym_public] = ACTIONS(2513), - [anon_sym_private] = ACTIONS(2513), - [anon_sym_protected] = ACTIONS(2513), - [anon_sym_override] = ACTIONS(2513), - [anon_sym_module] = ACTIONS(2513), - [anon_sym_any] = ACTIONS(2513), - [anon_sym_number] = ACTIONS(2513), - [anon_sym_boolean] = ACTIONS(2513), - [anon_sym_string] = ACTIONS(2513), - [anon_sym_symbol] = ACTIONS(2513), - [anon_sym_object] = ACTIONS(2513), - [anon_sym_abstract] = ACTIONS(2513), - [anon_sym_interface] = ACTIONS(2513), - [anon_sym_enum] = ACTIONS(2513), - [sym_html_comment] = ACTIONS(5), - }, - [783] = { - [ts_builtin_sym_end] = ACTIONS(2515), - [sym_identifier] = ACTIONS(2517), - [anon_sym_export] = ACTIONS(2517), - [anon_sym_default] = ACTIONS(2517), - [anon_sym_type] = ACTIONS(2517), - [anon_sym_namespace] = ACTIONS(2517), - [anon_sym_LBRACE] = ACTIONS(2515), - [anon_sym_RBRACE] = ACTIONS(2515), - [anon_sym_typeof] = ACTIONS(2517), - [anon_sym_import] = ACTIONS(2517), - [anon_sym_with] = ACTIONS(2517), - [anon_sym_var] = ACTIONS(2517), - [anon_sym_let] = ACTIONS(2517), - [anon_sym_const] = ACTIONS(2517), - [anon_sym_BANG] = ACTIONS(2515), - [anon_sym_else] = ACTIONS(2517), - [anon_sym_if] = ACTIONS(2517), - [anon_sym_switch] = ACTIONS(2517), - [anon_sym_for] = ACTIONS(2517), - [anon_sym_LPAREN] = ACTIONS(2515), - [anon_sym_SEMI] = ACTIONS(2515), - [anon_sym_await] = ACTIONS(2517), - [anon_sym_while] = ACTIONS(2517), - [anon_sym_do] = ACTIONS(2517), - [anon_sym_try] = ACTIONS(2517), - [anon_sym_break] = ACTIONS(2517), - [anon_sym_continue] = ACTIONS(2517), - [anon_sym_debugger] = ACTIONS(2517), - [anon_sym_return] = ACTIONS(2517), - [anon_sym_throw] = ACTIONS(2517), - [anon_sym_case] = ACTIONS(2517), - [anon_sym_yield] = ACTIONS(2517), - [anon_sym_LBRACK] = ACTIONS(2515), - [sym_glimmer_opening_tag] = ACTIONS(2515), - [anon_sym_DQUOTE] = ACTIONS(2515), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_class] = ACTIONS(2517), - [anon_sym_async] = ACTIONS(2517), - [anon_sym_function] = ACTIONS(2517), - [anon_sym_new] = ACTIONS(2517), - [anon_sym_using] = ACTIONS(2517), - [anon_sym_PLUS] = ACTIONS(2517), - [anon_sym_DASH] = ACTIONS(2517), - [anon_sym_SLASH] = ACTIONS(2517), - [anon_sym_LT] = ACTIONS(2517), - [anon_sym_TILDE] = ACTIONS(2515), - [anon_sym_void] = ACTIONS(2517), - [anon_sym_delete] = ACTIONS(2517), - [anon_sym_PLUS_PLUS] = ACTIONS(2515), - [anon_sym_DASH_DASH] = ACTIONS(2515), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2515), - [sym_number] = ACTIONS(2515), - [sym_private_property_identifier] = ACTIONS(2515), - [sym_this] = ACTIONS(2517), - [sym_super] = ACTIONS(2517), - [sym_true] = ACTIONS(2517), - [sym_false] = ACTIONS(2517), - [sym_null] = ACTIONS(2517), - [sym_undefined] = ACTIONS(2517), - [anon_sym_AT] = ACTIONS(2515), - [anon_sym_static] = ACTIONS(2517), - [anon_sym_readonly] = ACTIONS(2517), - [anon_sym_get] = ACTIONS(2517), - [anon_sym_set] = ACTIONS(2517), - [anon_sym_declare] = ACTIONS(2517), - [anon_sym_public] = ACTIONS(2517), - [anon_sym_private] = ACTIONS(2517), - [anon_sym_protected] = ACTIONS(2517), - [anon_sym_override] = ACTIONS(2517), - [anon_sym_module] = ACTIONS(2517), - [anon_sym_any] = ACTIONS(2517), - [anon_sym_number] = ACTIONS(2517), - [anon_sym_boolean] = ACTIONS(2517), - [anon_sym_string] = ACTIONS(2517), - [anon_sym_symbol] = ACTIONS(2517), - [anon_sym_object] = ACTIONS(2517), - [anon_sym_abstract] = ACTIONS(2517), - [anon_sym_interface] = ACTIONS(2517), - [anon_sym_enum] = ACTIONS(2517), - [sym_html_comment] = ACTIONS(5), - }, - [784] = { - [ts_builtin_sym_end] = ACTIONS(2519), - [sym_identifier] = ACTIONS(2521), - [anon_sym_export] = ACTIONS(2521), - [anon_sym_default] = ACTIONS(2521), - [anon_sym_type] = ACTIONS(2521), - [anon_sym_namespace] = ACTIONS(2521), - [anon_sym_LBRACE] = ACTIONS(2519), - [anon_sym_RBRACE] = ACTIONS(2519), - [anon_sym_typeof] = ACTIONS(2521), - [anon_sym_import] = ACTIONS(2521), - [anon_sym_with] = ACTIONS(2521), - [anon_sym_var] = ACTIONS(2521), - [anon_sym_let] = ACTIONS(2521), - [anon_sym_const] = ACTIONS(2521), - [anon_sym_BANG] = ACTIONS(2519), - [anon_sym_else] = ACTIONS(2521), - [anon_sym_if] = ACTIONS(2521), - [anon_sym_switch] = ACTIONS(2521), - [anon_sym_for] = ACTIONS(2521), - [anon_sym_LPAREN] = ACTIONS(2519), - [anon_sym_SEMI] = ACTIONS(2519), - [anon_sym_await] = ACTIONS(2521), - [anon_sym_while] = ACTIONS(2521), - [anon_sym_do] = ACTIONS(2521), - [anon_sym_try] = ACTIONS(2521), - [anon_sym_break] = ACTIONS(2521), - [anon_sym_continue] = ACTIONS(2521), - [anon_sym_debugger] = ACTIONS(2521), - [anon_sym_return] = ACTIONS(2521), - [anon_sym_throw] = ACTIONS(2521), - [anon_sym_case] = ACTIONS(2521), - [anon_sym_yield] = ACTIONS(2521), - [anon_sym_LBRACK] = ACTIONS(2519), - [sym_glimmer_opening_tag] = ACTIONS(2519), - [anon_sym_DQUOTE] = ACTIONS(2519), - [anon_sym_SQUOTE] = ACTIONS(2519), - [anon_sym_class] = ACTIONS(2521), - [anon_sym_async] = ACTIONS(2521), - [anon_sym_function] = ACTIONS(2521), - [anon_sym_new] = ACTIONS(2521), - [anon_sym_using] = ACTIONS(2521), - [anon_sym_PLUS] = ACTIONS(2521), - [anon_sym_DASH] = ACTIONS(2521), - [anon_sym_SLASH] = ACTIONS(2521), - [anon_sym_LT] = ACTIONS(2521), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_void] = ACTIONS(2521), - [anon_sym_delete] = ACTIONS(2521), - [anon_sym_PLUS_PLUS] = ACTIONS(2519), - [anon_sym_DASH_DASH] = ACTIONS(2519), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2519), - [sym_number] = ACTIONS(2519), - [sym_private_property_identifier] = ACTIONS(2519), - [sym_this] = ACTIONS(2521), - [sym_super] = ACTIONS(2521), - [sym_true] = ACTIONS(2521), - [sym_false] = ACTIONS(2521), - [sym_null] = ACTIONS(2521), - [sym_undefined] = ACTIONS(2521), - [anon_sym_AT] = ACTIONS(2519), - [anon_sym_static] = ACTIONS(2521), - [anon_sym_readonly] = ACTIONS(2521), - [anon_sym_get] = ACTIONS(2521), - [anon_sym_set] = ACTIONS(2521), - [anon_sym_declare] = ACTIONS(2521), - [anon_sym_public] = ACTIONS(2521), - [anon_sym_private] = ACTIONS(2521), - [anon_sym_protected] = ACTIONS(2521), - [anon_sym_override] = ACTIONS(2521), - [anon_sym_module] = ACTIONS(2521), - [anon_sym_any] = ACTIONS(2521), - [anon_sym_number] = ACTIONS(2521), - [anon_sym_boolean] = ACTIONS(2521), - [anon_sym_string] = ACTIONS(2521), - [anon_sym_symbol] = ACTIONS(2521), - [anon_sym_object] = ACTIONS(2521), - [anon_sym_abstract] = ACTIONS(2521), - [anon_sym_interface] = ACTIONS(2521), - [anon_sym_enum] = ACTIONS(2521), - [sym_html_comment] = ACTIONS(5), - }, - [785] = { - [ts_builtin_sym_end] = ACTIONS(2523), - [sym_identifier] = ACTIONS(2525), - [anon_sym_export] = ACTIONS(2525), - [anon_sym_default] = ACTIONS(2525), - [anon_sym_type] = ACTIONS(2525), - [anon_sym_namespace] = ACTIONS(2525), - [anon_sym_LBRACE] = ACTIONS(2523), - [anon_sym_RBRACE] = ACTIONS(2523), - [anon_sym_typeof] = ACTIONS(2525), - [anon_sym_import] = ACTIONS(2525), - [anon_sym_with] = ACTIONS(2525), - [anon_sym_var] = ACTIONS(2525), - [anon_sym_let] = ACTIONS(2525), - [anon_sym_const] = ACTIONS(2525), - [anon_sym_BANG] = ACTIONS(2523), - [anon_sym_else] = ACTIONS(2525), - [anon_sym_if] = ACTIONS(2525), - [anon_sym_switch] = ACTIONS(2525), - [anon_sym_for] = ACTIONS(2525), - [anon_sym_LPAREN] = ACTIONS(2523), - [anon_sym_SEMI] = ACTIONS(2523), - [anon_sym_await] = ACTIONS(2525), - [anon_sym_while] = ACTIONS(2525), - [anon_sym_do] = ACTIONS(2525), - [anon_sym_try] = ACTIONS(2525), - [anon_sym_break] = ACTIONS(2525), - [anon_sym_continue] = ACTIONS(2525), - [anon_sym_debugger] = ACTIONS(2525), - [anon_sym_return] = ACTIONS(2525), - [anon_sym_throw] = ACTIONS(2525), - [anon_sym_case] = ACTIONS(2525), - [anon_sym_yield] = ACTIONS(2525), - [anon_sym_LBRACK] = ACTIONS(2523), - [sym_glimmer_opening_tag] = ACTIONS(2523), - [anon_sym_DQUOTE] = ACTIONS(2523), - [anon_sym_SQUOTE] = ACTIONS(2523), - [anon_sym_class] = ACTIONS(2525), - [anon_sym_async] = ACTIONS(2525), - [anon_sym_function] = ACTIONS(2525), - [anon_sym_new] = ACTIONS(2525), - [anon_sym_using] = ACTIONS(2525), - [anon_sym_PLUS] = ACTIONS(2525), - [anon_sym_DASH] = ACTIONS(2525), - [anon_sym_SLASH] = ACTIONS(2525), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_TILDE] = ACTIONS(2523), - [anon_sym_void] = ACTIONS(2525), - [anon_sym_delete] = ACTIONS(2525), - [anon_sym_PLUS_PLUS] = ACTIONS(2523), - [anon_sym_DASH_DASH] = ACTIONS(2523), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2523), - [sym_number] = ACTIONS(2523), - [sym_private_property_identifier] = ACTIONS(2523), - [sym_this] = ACTIONS(2525), - [sym_super] = ACTIONS(2525), - [sym_true] = ACTIONS(2525), - [sym_false] = ACTIONS(2525), - [sym_null] = ACTIONS(2525), - [sym_undefined] = ACTIONS(2525), - [anon_sym_AT] = ACTIONS(2523), - [anon_sym_static] = ACTIONS(2525), - [anon_sym_readonly] = ACTIONS(2525), - [anon_sym_get] = ACTIONS(2525), - [anon_sym_set] = ACTIONS(2525), - [anon_sym_declare] = ACTIONS(2525), - [anon_sym_public] = ACTIONS(2525), - [anon_sym_private] = ACTIONS(2525), - [anon_sym_protected] = ACTIONS(2525), - [anon_sym_override] = ACTIONS(2525), - [anon_sym_module] = ACTIONS(2525), - [anon_sym_any] = ACTIONS(2525), - [anon_sym_number] = ACTIONS(2525), - [anon_sym_boolean] = ACTIONS(2525), - [anon_sym_string] = ACTIONS(2525), - [anon_sym_symbol] = ACTIONS(2525), - [anon_sym_object] = ACTIONS(2525), - [anon_sym_abstract] = ACTIONS(2525), - [anon_sym_interface] = ACTIONS(2525), - [anon_sym_enum] = ACTIONS(2525), - [sym_html_comment] = ACTIONS(5), - }, - [786] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_rest_pattern] = STATE(5529), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3817), - [sym_tuple_parameter] = STATE(4756), - [sym_optional_tuple_parameter] = STATE(4756), - [sym_optional_type] = STATE(4756), - [sym_rest_type] = STATE(4756), - [sym__tuple_type_member] = STATE(4756), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(2527), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_COMMA] = ACTIONS(2529), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_RBRACK] = ACTIONS(2531), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), - [sym_html_comment] = ACTIONS(5), - }, - [787] = { - [ts_builtin_sym_end] = ACTIONS(2539), - [sym_identifier] = ACTIONS(2541), - [anon_sym_export] = ACTIONS(2541), - [anon_sym_default] = ACTIONS(2541), - [anon_sym_type] = ACTIONS(2541), - [anon_sym_namespace] = ACTIONS(2541), - [anon_sym_LBRACE] = ACTIONS(2539), - [anon_sym_RBRACE] = ACTIONS(2539), - [anon_sym_typeof] = ACTIONS(2541), - [anon_sym_import] = ACTIONS(2541), - [anon_sym_with] = ACTIONS(2541), - [anon_sym_var] = ACTIONS(2541), - [anon_sym_let] = ACTIONS(2541), - [anon_sym_const] = ACTIONS(2541), - [anon_sym_BANG] = ACTIONS(2539), - [anon_sym_else] = ACTIONS(2541), - [anon_sym_if] = ACTIONS(2541), - [anon_sym_switch] = ACTIONS(2541), - [anon_sym_for] = ACTIONS(2541), - [anon_sym_LPAREN] = ACTIONS(2539), - [anon_sym_SEMI] = ACTIONS(2539), - [anon_sym_await] = ACTIONS(2541), - [anon_sym_while] = ACTIONS(2541), - [anon_sym_do] = ACTIONS(2541), - [anon_sym_try] = ACTIONS(2541), - [anon_sym_break] = ACTIONS(2541), - [anon_sym_continue] = ACTIONS(2541), - [anon_sym_debugger] = ACTIONS(2541), - [anon_sym_return] = ACTIONS(2541), - [anon_sym_throw] = ACTIONS(2541), - [anon_sym_case] = ACTIONS(2541), - [anon_sym_yield] = ACTIONS(2541), - [anon_sym_LBRACK] = ACTIONS(2539), - [sym_glimmer_opening_tag] = ACTIONS(2539), - [anon_sym_DQUOTE] = ACTIONS(2539), - [anon_sym_SQUOTE] = ACTIONS(2539), - [anon_sym_class] = ACTIONS(2541), - [anon_sym_async] = ACTIONS(2541), - [anon_sym_function] = ACTIONS(2541), - [anon_sym_new] = ACTIONS(2541), - [anon_sym_using] = ACTIONS(2541), - [anon_sym_PLUS] = ACTIONS(2541), - [anon_sym_DASH] = ACTIONS(2541), - [anon_sym_SLASH] = ACTIONS(2541), - [anon_sym_LT] = ACTIONS(2541), - [anon_sym_TILDE] = ACTIONS(2539), - [anon_sym_void] = ACTIONS(2541), - [anon_sym_delete] = ACTIONS(2541), - [anon_sym_PLUS_PLUS] = ACTIONS(2539), - [anon_sym_DASH_DASH] = ACTIONS(2539), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2539), - [sym_number] = ACTIONS(2539), - [sym_private_property_identifier] = ACTIONS(2539), - [sym_this] = ACTIONS(2541), - [sym_super] = ACTIONS(2541), - [sym_true] = ACTIONS(2541), - [sym_false] = ACTIONS(2541), - [sym_null] = ACTIONS(2541), - [sym_undefined] = ACTIONS(2541), - [anon_sym_AT] = ACTIONS(2539), - [anon_sym_static] = ACTIONS(2541), - [anon_sym_readonly] = ACTIONS(2541), - [anon_sym_get] = ACTIONS(2541), - [anon_sym_set] = ACTIONS(2541), - [anon_sym_declare] = ACTIONS(2541), - [anon_sym_public] = ACTIONS(2541), - [anon_sym_private] = ACTIONS(2541), - [anon_sym_protected] = ACTIONS(2541), - [anon_sym_override] = ACTIONS(2541), - [anon_sym_module] = ACTIONS(2541), - [anon_sym_any] = ACTIONS(2541), - [anon_sym_number] = ACTIONS(2541), - [anon_sym_boolean] = ACTIONS(2541), - [anon_sym_string] = ACTIONS(2541), - [anon_sym_symbol] = ACTIONS(2541), - [anon_sym_object] = ACTIONS(2541), - [anon_sym_abstract] = ACTIONS(2541), - [anon_sym_interface] = ACTIONS(2541), - [anon_sym_enum] = ACTIONS(2541), - [sym_html_comment] = ACTIONS(5), - }, - [788] = { - [ts_builtin_sym_end] = ACTIONS(2543), - [sym_identifier] = ACTIONS(2545), - [anon_sym_export] = ACTIONS(2545), - [anon_sym_default] = ACTIONS(2545), - [anon_sym_type] = ACTIONS(2545), - [anon_sym_namespace] = ACTIONS(2545), - [anon_sym_LBRACE] = ACTIONS(2543), - [anon_sym_RBRACE] = ACTIONS(2543), - [anon_sym_typeof] = ACTIONS(2545), - [anon_sym_import] = ACTIONS(2545), - [anon_sym_with] = ACTIONS(2545), - [anon_sym_var] = ACTIONS(2545), - [anon_sym_let] = ACTIONS(2545), - [anon_sym_const] = ACTIONS(2545), - [anon_sym_BANG] = ACTIONS(2543), - [anon_sym_else] = ACTIONS(2545), - [anon_sym_if] = ACTIONS(2545), - [anon_sym_switch] = ACTIONS(2545), - [anon_sym_for] = ACTIONS(2545), - [anon_sym_LPAREN] = ACTIONS(2543), - [anon_sym_SEMI] = ACTIONS(2543), - [anon_sym_await] = ACTIONS(2545), - [anon_sym_while] = ACTIONS(2545), - [anon_sym_do] = ACTIONS(2545), - [anon_sym_try] = ACTIONS(2545), - [anon_sym_break] = ACTIONS(2545), - [anon_sym_continue] = ACTIONS(2545), - [anon_sym_debugger] = ACTIONS(2545), - [anon_sym_return] = ACTIONS(2545), - [anon_sym_throw] = ACTIONS(2545), - [anon_sym_case] = ACTIONS(2545), - [anon_sym_yield] = ACTIONS(2545), - [anon_sym_LBRACK] = ACTIONS(2543), - [sym_glimmer_opening_tag] = ACTIONS(2543), - [anon_sym_DQUOTE] = ACTIONS(2543), - [anon_sym_SQUOTE] = ACTIONS(2543), - [anon_sym_class] = ACTIONS(2545), - [anon_sym_async] = ACTIONS(2545), - [anon_sym_function] = ACTIONS(2545), - [anon_sym_new] = ACTIONS(2545), - [anon_sym_using] = ACTIONS(2545), - [anon_sym_PLUS] = ACTIONS(2545), - [anon_sym_DASH] = ACTIONS(2545), - [anon_sym_SLASH] = ACTIONS(2545), - [anon_sym_LT] = ACTIONS(2545), - [anon_sym_TILDE] = ACTIONS(2543), - [anon_sym_void] = ACTIONS(2545), - [anon_sym_delete] = ACTIONS(2545), - [anon_sym_PLUS_PLUS] = ACTIONS(2543), - [anon_sym_DASH_DASH] = ACTIONS(2543), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2543), - [sym_number] = ACTIONS(2543), - [sym_private_property_identifier] = ACTIONS(2543), - [sym_this] = ACTIONS(2545), - [sym_super] = ACTIONS(2545), - [sym_true] = ACTIONS(2545), - [sym_false] = ACTIONS(2545), - [sym_null] = ACTIONS(2545), - [sym_undefined] = ACTIONS(2545), - [anon_sym_AT] = ACTIONS(2543), - [anon_sym_static] = ACTIONS(2545), - [anon_sym_readonly] = ACTIONS(2545), - [anon_sym_get] = ACTIONS(2545), - [anon_sym_set] = ACTIONS(2545), - [anon_sym_declare] = ACTIONS(2545), - [anon_sym_public] = ACTIONS(2545), - [anon_sym_private] = ACTIONS(2545), - [anon_sym_protected] = ACTIONS(2545), - [anon_sym_override] = ACTIONS(2545), - [anon_sym_module] = ACTIONS(2545), - [anon_sym_any] = ACTIONS(2545), - [anon_sym_number] = ACTIONS(2545), - [anon_sym_boolean] = ACTIONS(2545), - [anon_sym_string] = ACTIONS(2545), - [anon_sym_symbol] = ACTIONS(2545), - [anon_sym_object] = ACTIONS(2545), - [anon_sym_abstract] = ACTIONS(2545), - [anon_sym_interface] = ACTIONS(2545), - [anon_sym_enum] = ACTIONS(2545), - [sym_html_comment] = ACTIONS(5), - }, - [789] = { - [ts_builtin_sym_end] = ACTIONS(1901), - [sym_identifier] = ACTIONS(1903), - [anon_sym_export] = ACTIONS(1903), - [anon_sym_default] = ACTIONS(1903), - [anon_sym_type] = ACTIONS(1903), - [anon_sym_namespace] = ACTIONS(1903), - [anon_sym_LBRACE] = ACTIONS(1901), - [anon_sym_RBRACE] = ACTIONS(1901), - [anon_sym_typeof] = ACTIONS(1903), - [anon_sym_import] = ACTIONS(1903), - [anon_sym_with] = ACTIONS(1903), - [anon_sym_var] = ACTIONS(1903), - [anon_sym_let] = ACTIONS(1903), - [anon_sym_const] = ACTIONS(1903), - [anon_sym_BANG] = ACTIONS(1901), - [anon_sym_else] = ACTIONS(1903), - [anon_sym_if] = ACTIONS(1903), - [anon_sym_switch] = ACTIONS(1903), - [anon_sym_for] = ACTIONS(1903), - [anon_sym_LPAREN] = ACTIONS(1901), - [anon_sym_SEMI] = ACTIONS(1901), - [anon_sym_await] = ACTIONS(1903), - [anon_sym_while] = ACTIONS(1903), - [anon_sym_do] = ACTIONS(1903), - [anon_sym_try] = ACTIONS(1903), - [anon_sym_break] = ACTIONS(1903), - [anon_sym_continue] = ACTIONS(1903), - [anon_sym_debugger] = ACTIONS(1903), - [anon_sym_return] = ACTIONS(1903), - [anon_sym_throw] = ACTIONS(1903), - [anon_sym_case] = ACTIONS(1903), - [anon_sym_yield] = ACTIONS(1903), - [anon_sym_LBRACK] = ACTIONS(1901), - [sym_glimmer_opening_tag] = ACTIONS(1901), - [anon_sym_DQUOTE] = ACTIONS(1901), - [anon_sym_SQUOTE] = ACTIONS(1901), - [anon_sym_class] = ACTIONS(1903), - [anon_sym_async] = ACTIONS(1903), - [anon_sym_function] = ACTIONS(1903), - [anon_sym_new] = ACTIONS(1903), - [anon_sym_using] = ACTIONS(1903), - [anon_sym_PLUS] = ACTIONS(1903), - [anon_sym_DASH] = ACTIONS(1903), - [anon_sym_SLASH] = ACTIONS(1903), - [anon_sym_LT] = ACTIONS(1903), - [anon_sym_TILDE] = ACTIONS(1901), - [anon_sym_void] = ACTIONS(1903), - [anon_sym_delete] = ACTIONS(1903), - [anon_sym_PLUS_PLUS] = ACTIONS(1901), - [anon_sym_DASH_DASH] = ACTIONS(1901), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1901), - [sym_number] = ACTIONS(1901), - [sym_private_property_identifier] = ACTIONS(1901), - [sym_this] = ACTIONS(1903), - [sym_super] = ACTIONS(1903), - [sym_true] = ACTIONS(1903), - [sym_false] = ACTIONS(1903), - [sym_null] = ACTIONS(1903), - [sym_undefined] = ACTIONS(1903), - [anon_sym_AT] = ACTIONS(1901), - [anon_sym_static] = ACTIONS(1903), - [anon_sym_readonly] = ACTIONS(1903), - [anon_sym_get] = ACTIONS(1903), - [anon_sym_set] = ACTIONS(1903), - [anon_sym_declare] = ACTIONS(1903), - [anon_sym_public] = ACTIONS(1903), - [anon_sym_private] = ACTIONS(1903), - [anon_sym_protected] = ACTIONS(1903), - [anon_sym_override] = ACTIONS(1903), - [anon_sym_module] = ACTIONS(1903), - [anon_sym_any] = ACTIONS(1903), - [anon_sym_number] = ACTIONS(1903), - [anon_sym_boolean] = ACTIONS(1903), - [anon_sym_string] = ACTIONS(1903), - [anon_sym_symbol] = ACTIONS(1903), - [anon_sym_object] = ACTIONS(1903), - [anon_sym_abstract] = ACTIONS(1903), - [anon_sym_interface] = ACTIONS(1903), - [anon_sym_enum] = ACTIONS(1903), - [sym_html_comment] = ACTIONS(5), - }, - [790] = { - [ts_builtin_sym_end] = ACTIONS(2547), - [sym_identifier] = ACTIONS(2549), - [anon_sym_export] = ACTIONS(2549), - [anon_sym_default] = ACTIONS(2549), - [anon_sym_type] = ACTIONS(2549), - [anon_sym_namespace] = ACTIONS(2549), - [anon_sym_LBRACE] = ACTIONS(2547), - [anon_sym_RBRACE] = ACTIONS(2547), - [anon_sym_typeof] = ACTIONS(2549), - [anon_sym_import] = ACTIONS(2549), - [anon_sym_with] = ACTIONS(2549), - [anon_sym_var] = ACTIONS(2549), - [anon_sym_let] = ACTIONS(2549), - [anon_sym_const] = ACTIONS(2549), - [anon_sym_BANG] = ACTIONS(2547), - [anon_sym_else] = ACTIONS(2549), - [anon_sym_if] = ACTIONS(2549), - [anon_sym_switch] = ACTIONS(2549), - [anon_sym_for] = ACTIONS(2549), - [anon_sym_LPAREN] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2547), - [anon_sym_await] = ACTIONS(2549), - [anon_sym_while] = ACTIONS(2549), - [anon_sym_do] = ACTIONS(2549), - [anon_sym_try] = ACTIONS(2549), - [anon_sym_break] = ACTIONS(2549), - [anon_sym_continue] = ACTIONS(2549), - [anon_sym_debugger] = ACTIONS(2549), - [anon_sym_return] = ACTIONS(2549), - [anon_sym_throw] = ACTIONS(2549), - [anon_sym_case] = ACTIONS(2549), - [anon_sym_yield] = ACTIONS(2549), - [anon_sym_LBRACK] = ACTIONS(2547), - [sym_glimmer_opening_tag] = ACTIONS(2547), - [anon_sym_DQUOTE] = ACTIONS(2547), - [anon_sym_SQUOTE] = ACTIONS(2547), - [anon_sym_class] = ACTIONS(2549), - [anon_sym_async] = ACTIONS(2549), - [anon_sym_function] = ACTIONS(2549), - [anon_sym_new] = ACTIONS(2549), - [anon_sym_using] = ACTIONS(2549), - [anon_sym_PLUS] = ACTIONS(2549), - [anon_sym_DASH] = ACTIONS(2549), - [anon_sym_SLASH] = ACTIONS(2549), - [anon_sym_LT] = ACTIONS(2549), - [anon_sym_TILDE] = ACTIONS(2547), - [anon_sym_void] = ACTIONS(2549), - [anon_sym_delete] = ACTIONS(2549), - [anon_sym_PLUS_PLUS] = ACTIONS(2547), - [anon_sym_DASH_DASH] = ACTIONS(2547), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2547), - [sym_number] = ACTIONS(2547), - [sym_private_property_identifier] = ACTIONS(2547), - [sym_this] = ACTIONS(2549), - [sym_super] = ACTIONS(2549), - [sym_true] = ACTIONS(2549), - [sym_false] = ACTIONS(2549), - [sym_null] = ACTIONS(2549), - [sym_undefined] = ACTIONS(2549), - [anon_sym_AT] = ACTIONS(2547), - [anon_sym_static] = ACTIONS(2549), - [anon_sym_readonly] = ACTIONS(2549), - [anon_sym_get] = ACTIONS(2549), - [anon_sym_set] = ACTIONS(2549), - [anon_sym_declare] = ACTIONS(2549), - [anon_sym_public] = ACTIONS(2549), - [anon_sym_private] = ACTIONS(2549), - [anon_sym_protected] = ACTIONS(2549), - [anon_sym_override] = ACTIONS(2549), - [anon_sym_module] = ACTIONS(2549), - [anon_sym_any] = ACTIONS(2549), - [anon_sym_number] = ACTIONS(2549), - [anon_sym_boolean] = ACTIONS(2549), - [anon_sym_string] = ACTIONS(2549), - [anon_sym_symbol] = ACTIONS(2549), - [anon_sym_object] = ACTIONS(2549), - [anon_sym_abstract] = ACTIONS(2549), - [anon_sym_interface] = ACTIONS(2549), - [anon_sym_enum] = ACTIONS(2549), - [sym_html_comment] = ACTIONS(5), - }, - [791] = { - [ts_builtin_sym_end] = ACTIONS(2551), - [sym_identifier] = ACTIONS(2553), - [anon_sym_export] = ACTIONS(2553), - [anon_sym_default] = ACTIONS(2553), - [anon_sym_type] = ACTIONS(2553), - [anon_sym_namespace] = ACTIONS(2553), - [anon_sym_LBRACE] = ACTIONS(2551), - [anon_sym_RBRACE] = ACTIONS(2551), - [anon_sym_typeof] = ACTIONS(2553), - [anon_sym_import] = ACTIONS(2553), - [anon_sym_with] = ACTIONS(2553), - [anon_sym_var] = ACTIONS(2553), - [anon_sym_let] = ACTIONS(2553), - [anon_sym_const] = ACTIONS(2553), - [anon_sym_BANG] = ACTIONS(2551), - [anon_sym_else] = ACTIONS(2553), - [anon_sym_if] = ACTIONS(2553), - [anon_sym_switch] = ACTIONS(2553), - [anon_sym_for] = ACTIONS(2553), - [anon_sym_LPAREN] = ACTIONS(2551), - [anon_sym_SEMI] = ACTIONS(2551), - [anon_sym_await] = ACTIONS(2553), - [anon_sym_while] = ACTIONS(2553), - [anon_sym_do] = ACTIONS(2553), - [anon_sym_try] = ACTIONS(2553), - [anon_sym_break] = ACTIONS(2553), - [anon_sym_continue] = ACTIONS(2553), - [anon_sym_debugger] = ACTIONS(2553), - [anon_sym_return] = ACTIONS(2553), - [anon_sym_throw] = ACTIONS(2553), - [anon_sym_case] = ACTIONS(2553), - [anon_sym_yield] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2551), - [sym_glimmer_opening_tag] = ACTIONS(2551), - [anon_sym_DQUOTE] = ACTIONS(2551), - [anon_sym_SQUOTE] = ACTIONS(2551), - [anon_sym_class] = ACTIONS(2553), - [anon_sym_async] = ACTIONS(2553), - [anon_sym_function] = ACTIONS(2553), - [anon_sym_new] = ACTIONS(2553), - [anon_sym_using] = ACTIONS(2553), - [anon_sym_PLUS] = ACTIONS(2553), - [anon_sym_DASH] = ACTIONS(2553), - [anon_sym_SLASH] = ACTIONS(2553), - [anon_sym_LT] = ACTIONS(2553), - [anon_sym_TILDE] = ACTIONS(2551), - [anon_sym_void] = ACTIONS(2553), - [anon_sym_delete] = ACTIONS(2553), - [anon_sym_PLUS_PLUS] = ACTIONS(2551), - [anon_sym_DASH_DASH] = ACTIONS(2551), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2551), - [sym_number] = ACTIONS(2551), - [sym_private_property_identifier] = ACTIONS(2551), - [sym_this] = ACTIONS(2553), - [sym_super] = ACTIONS(2553), - [sym_true] = ACTIONS(2553), - [sym_false] = ACTIONS(2553), - [sym_null] = ACTIONS(2553), - [sym_undefined] = ACTIONS(2553), - [anon_sym_AT] = ACTIONS(2551), - [anon_sym_static] = ACTIONS(2553), - [anon_sym_readonly] = ACTIONS(2553), - [anon_sym_get] = ACTIONS(2553), - [anon_sym_set] = ACTIONS(2553), - [anon_sym_declare] = ACTIONS(2553), - [anon_sym_public] = ACTIONS(2553), - [anon_sym_private] = ACTIONS(2553), - [anon_sym_protected] = ACTIONS(2553), - [anon_sym_override] = ACTIONS(2553), - [anon_sym_module] = ACTIONS(2553), - [anon_sym_any] = ACTIONS(2553), - [anon_sym_number] = ACTIONS(2553), - [anon_sym_boolean] = ACTIONS(2553), - [anon_sym_string] = ACTIONS(2553), - [anon_sym_symbol] = ACTIONS(2553), - [anon_sym_object] = ACTIONS(2553), - [anon_sym_abstract] = ACTIONS(2553), - [anon_sym_interface] = ACTIONS(2553), - [anon_sym_enum] = ACTIONS(2553), - [sym_html_comment] = ACTIONS(5), - }, - [792] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_rest_pattern] = STATE(5529), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3817), - [sym_tuple_parameter] = STATE(5205), - [sym_optional_tuple_parameter] = STATE(5205), - [sym_optional_type] = STATE(5205), - [sym_rest_type] = STATE(5205), - [sym__tuple_type_member] = STATE(5205), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(2527), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_COMMA] = ACTIONS(2555), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_RBRACK] = ACTIONS(2557), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), - [sym_html_comment] = ACTIONS(5), - }, - [793] = { - [ts_builtin_sym_end] = ACTIONS(2559), - [sym_identifier] = ACTIONS(2561), - [anon_sym_export] = ACTIONS(2561), - [anon_sym_default] = ACTIONS(2561), - [anon_sym_type] = ACTIONS(2561), - [anon_sym_namespace] = ACTIONS(2561), - [anon_sym_LBRACE] = ACTIONS(2559), - [anon_sym_RBRACE] = ACTIONS(2559), - [anon_sym_typeof] = ACTIONS(2561), - [anon_sym_import] = ACTIONS(2561), - [anon_sym_with] = ACTIONS(2561), - [anon_sym_var] = ACTIONS(2561), - [anon_sym_let] = ACTIONS(2561), - [anon_sym_const] = ACTIONS(2561), - [anon_sym_BANG] = ACTIONS(2559), - [anon_sym_else] = ACTIONS(2561), - [anon_sym_if] = ACTIONS(2561), - [anon_sym_switch] = ACTIONS(2561), - [anon_sym_for] = ACTIONS(2561), - [anon_sym_LPAREN] = ACTIONS(2559), - [anon_sym_SEMI] = ACTIONS(2559), - [anon_sym_await] = ACTIONS(2561), - [anon_sym_while] = ACTIONS(2561), - [anon_sym_do] = ACTIONS(2561), - [anon_sym_try] = ACTIONS(2561), - [anon_sym_break] = ACTIONS(2561), - [anon_sym_continue] = ACTIONS(2561), - [anon_sym_debugger] = ACTIONS(2561), - [anon_sym_return] = ACTIONS(2561), - [anon_sym_throw] = ACTIONS(2561), - [anon_sym_case] = ACTIONS(2561), - [anon_sym_yield] = ACTIONS(2561), - [anon_sym_LBRACK] = ACTIONS(2559), - [sym_glimmer_opening_tag] = ACTIONS(2559), - [anon_sym_DQUOTE] = ACTIONS(2559), - [anon_sym_SQUOTE] = ACTIONS(2559), - [anon_sym_class] = ACTIONS(2561), - [anon_sym_async] = ACTIONS(2561), - [anon_sym_function] = ACTIONS(2561), - [anon_sym_new] = ACTIONS(2561), - [anon_sym_using] = ACTIONS(2561), - [anon_sym_PLUS] = ACTIONS(2561), - [anon_sym_DASH] = ACTIONS(2561), - [anon_sym_SLASH] = ACTIONS(2561), - [anon_sym_LT] = ACTIONS(2561), - [anon_sym_TILDE] = ACTIONS(2559), - [anon_sym_void] = ACTIONS(2561), - [anon_sym_delete] = ACTIONS(2561), - [anon_sym_PLUS_PLUS] = ACTIONS(2559), - [anon_sym_DASH_DASH] = ACTIONS(2559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2559), - [sym_number] = ACTIONS(2559), - [sym_private_property_identifier] = ACTIONS(2559), - [sym_this] = ACTIONS(2561), - [sym_super] = ACTIONS(2561), - [sym_true] = ACTIONS(2561), - [sym_false] = ACTIONS(2561), - [sym_null] = ACTIONS(2561), - [sym_undefined] = ACTIONS(2561), - [anon_sym_AT] = ACTIONS(2559), - [anon_sym_static] = ACTIONS(2561), - [anon_sym_readonly] = ACTIONS(2561), - [anon_sym_get] = ACTIONS(2561), - [anon_sym_set] = ACTIONS(2561), - [anon_sym_declare] = ACTIONS(2561), - [anon_sym_public] = ACTIONS(2561), - [anon_sym_private] = ACTIONS(2561), - [anon_sym_protected] = ACTIONS(2561), - [anon_sym_override] = ACTIONS(2561), - [anon_sym_module] = ACTIONS(2561), - [anon_sym_any] = ACTIONS(2561), - [anon_sym_number] = ACTIONS(2561), - [anon_sym_boolean] = ACTIONS(2561), - [anon_sym_string] = ACTIONS(2561), - [anon_sym_symbol] = ACTIONS(2561), - [anon_sym_object] = ACTIONS(2561), - [anon_sym_abstract] = ACTIONS(2561), - [anon_sym_interface] = ACTIONS(2561), - [anon_sym_enum] = ACTIONS(2561), - [sym_html_comment] = ACTIONS(5), - }, - [794] = { - [ts_builtin_sym_end] = ACTIONS(2563), - [sym_identifier] = ACTIONS(2565), - [anon_sym_export] = ACTIONS(2565), - [anon_sym_default] = ACTIONS(2565), - [anon_sym_type] = ACTIONS(2565), - [anon_sym_namespace] = ACTIONS(2565), - [anon_sym_LBRACE] = ACTIONS(2563), - [anon_sym_RBRACE] = ACTIONS(2563), - [anon_sym_typeof] = ACTIONS(2565), - [anon_sym_import] = ACTIONS(2565), - [anon_sym_with] = ACTIONS(2565), - [anon_sym_var] = ACTIONS(2565), - [anon_sym_let] = ACTIONS(2565), - [anon_sym_const] = ACTIONS(2565), - [anon_sym_BANG] = ACTIONS(2563), - [anon_sym_else] = ACTIONS(2565), - [anon_sym_if] = ACTIONS(2565), - [anon_sym_switch] = ACTIONS(2565), - [anon_sym_for] = ACTIONS(2565), - [anon_sym_LPAREN] = ACTIONS(2563), - [anon_sym_SEMI] = ACTIONS(2563), - [anon_sym_await] = ACTIONS(2565), - [anon_sym_while] = ACTIONS(2565), - [anon_sym_do] = ACTIONS(2565), - [anon_sym_try] = ACTIONS(2565), - [anon_sym_break] = ACTIONS(2565), - [anon_sym_continue] = ACTIONS(2565), - [anon_sym_debugger] = ACTIONS(2565), - [anon_sym_return] = ACTIONS(2565), - [anon_sym_throw] = ACTIONS(2565), - [anon_sym_case] = ACTIONS(2565), - [anon_sym_yield] = ACTIONS(2565), - [anon_sym_LBRACK] = ACTIONS(2563), - [sym_glimmer_opening_tag] = ACTIONS(2563), - [anon_sym_DQUOTE] = ACTIONS(2563), - [anon_sym_SQUOTE] = ACTIONS(2563), - [anon_sym_class] = ACTIONS(2565), - [anon_sym_async] = ACTIONS(2565), - [anon_sym_function] = ACTIONS(2565), - [anon_sym_new] = ACTIONS(2565), - [anon_sym_using] = ACTIONS(2565), - [anon_sym_PLUS] = ACTIONS(2565), - [anon_sym_DASH] = ACTIONS(2565), - [anon_sym_SLASH] = ACTIONS(2565), - [anon_sym_LT] = ACTIONS(2565), - [anon_sym_TILDE] = ACTIONS(2563), - [anon_sym_void] = ACTIONS(2565), - [anon_sym_delete] = ACTIONS(2565), - [anon_sym_PLUS_PLUS] = ACTIONS(2563), - [anon_sym_DASH_DASH] = ACTIONS(2563), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2563), - [sym_number] = ACTIONS(2563), - [sym_private_property_identifier] = ACTIONS(2563), - [sym_this] = ACTIONS(2565), - [sym_super] = ACTIONS(2565), - [sym_true] = ACTIONS(2565), - [sym_false] = ACTIONS(2565), - [sym_null] = ACTIONS(2565), - [sym_undefined] = ACTIONS(2565), - [anon_sym_AT] = ACTIONS(2563), - [anon_sym_static] = ACTIONS(2565), - [anon_sym_readonly] = ACTIONS(2565), - [anon_sym_get] = ACTIONS(2565), - [anon_sym_set] = ACTIONS(2565), - [anon_sym_declare] = ACTIONS(2565), - [anon_sym_public] = ACTIONS(2565), - [anon_sym_private] = ACTIONS(2565), - [anon_sym_protected] = ACTIONS(2565), - [anon_sym_override] = ACTIONS(2565), - [anon_sym_module] = ACTIONS(2565), - [anon_sym_any] = ACTIONS(2565), - [anon_sym_number] = ACTIONS(2565), - [anon_sym_boolean] = ACTIONS(2565), - [anon_sym_string] = ACTIONS(2565), - [anon_sym_symbol] = ACTIONS(2565), - [anon_sym_object] = ACTIONS(2565), - [anon_sym_abstract] = ACTIONS(2565), - [anon_sym_interface] = ACTIONS(2565), - [anon_sym_enum] = ACTIONS(2565), - [sym_html_comment] = ACTIONS(5), - }, - [795] = { - [ts_builtin_sym_end] = ACTIONS(2567), - [sym_identifier] = ACTIONS(2569), - [anon_sym_export] = ACTIONS(2569), - [anon_sym_default] = ACTIONS(2569), - [anon_sym_type] = ACTIONS(2569), - [anon_sym_namespace] = ACTIONS(2569), - [anon_sym_LBRACE] = ACTIONS(2567), - [anon_sym_RBRACE] = ACTIONS(2567), - [anon_sym_typeof] = ACTIONS(2569), - [anon_sym_import] = ACTIONS(2569), - [anon_sym_with] = ACTIONS(2569), - [anon_sym_var] = ACTIONS(2569), - [anon_sym_let] = ACTIONS(2569), - [anon_sym_const] = ACTIONS(2569), - [anon_sym_BANG] = ACTIONS(2567), - [anon_sym_else] = ACTIONS(2569), - [anon_sym_if] = ACTIONS(2569), - [anon_sym_switch] = ACTIONS(2569), - [anon_sym_for] = ACTIONS(2569), - [anon_sym_LPAREN] = ACTIONS(2567), - [anon_sym_SEMI] = ACTIONS(2567), - [anon_sym_await] = ACTIONS(2569), - [anon_sym_while] = ACTIONS(2569), - [anon_sym_do] = ACTIONS(2569), - [anon_sym_try] = ACTIONS(2569), - [anon_sym_break] = ACTIONS(2569), - [anon_sym_continue] = ACTIONS(2569), - [anon_sym_debugger] = ACTIONS(2569), - [anon_sym_return] = ACTIONS(2569), - [anon_sym_throw] = ACTIONS(2569), - [anon_sym_case] = ACTIONS(2569), - [anon_sym_yield] = ACTIONS(2569), - [anon_sym_LBRACK] = ACTIONS(2567), - [sym_glimmer_opening_tag] = ACTIONS(2567), - [anon_sym_DQUOTE] = ACTIONS(2567), - [anon_sym_SQUOTE] = ACTIONS(2567), - [anon_sym_class] = ACTIONS(2569), - [anon_sym_async] = ACTIONS(2569), - [anon_sym_function] = ACTIONS(2569), - [anon_sym_new] = ACTIONS(2569), - [anon_sym_using] = ACTIONS(2569), - [anon_sym_PLUS] = ACTIONS(2569), - [anon_sym_DASH] = ACTIONS(2569), - [anon_sym_SLASH] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2569), - [anon_sym_TILDE] = ACTIONS(2567), - [anon_sym_void] = ACTIONS(2569), - [anon_sym_delete] = ACTIONS(2569), - [anon_sym_PLUS_PLUS] = ACTIONS(2567), - [anon_sym_DASH_DASH] = ACTIONS(2567), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2567), - [sym_number] = ACTIONS(2567), - [sym_private_property_identifier] = ACTIONS(2567), - [sym_this] = ACTIONS(2569), - [sym_super] = ACTIONS(2569), - [sym_true] = ACTIONS(2569), - [sym_false] = ACTIONS(2569), - [sym_null] = ACTIONS(2569), - [sym_undefined] = ACTIONS(2569), - [anon_sym_AT] = ACTIONS(2567), - [anon_sym_static] = ACTIONS(2569), - [anon_sym_readonly] = ACTIONS(2569), - [anon_sym_get] = ACTIONS(2569), - [anon_sym_set] = ACTIONS(2569), - [anon_sym_declare] = ACTIONS(2569), - [anon_sym_public] = ACTIONS(2569), - [anon_sym_private] = ACTIONS(2569), - [anon_sym_protected] = ACTIONS(2569), - [anon_sym_override] = ACTIONS(2569), - [anon_sym_module] = ACTIONS(2569), - [anon_sym_any] = ACTIONS(2569), - [anon_sym_number] = ACTIONS(2569), - [anon_sym_boolean] = ACTIONS(2569), - [anon_sym_string] = ACTIONS(2569), - [anon_sym_symbol] = ACTIONS(2569), - [anon_sym_object] = ACTIONS(2569), - [anon_sym_abstract] = ACTIONS(2569), - [anon_sym_interface] = ACTIONS(2569), - [anon_sym_enum] = ACTIONS(2569), - [sym_html_comment] = ACTIONS(5), - }, - [796] = { - [ts_builtin_sym_end] = ACTIONS(2571), - [sym_identifier] = ACTIONS(2573), - [anon_sym_export] = ACTIONS(2573), - [anon_sym_default] = ACTIONS(2573), - [anon_sym_type] = ACTIONS(2573), - [anon_sym_namespace] = ACTIONS(2573), - [anon_sym_LBRACE] = ACTIONS(2571), - [anon_sym_RBRACE] = ACTIONS(2571), - [anon_sym_typeof] = ACTIONS(2573), - [anon_sym_import] = ACTIONS(2573), - [anon_sym_with] = ACTIONS(2573), - [anon_sym_var] = ACTIONS(2573), - [anon_sym_let] = ACTIONS(2573), - [anon_sym_const] = ACTIONS(2573), - [anon_sym_BANG] = ACTIONS(2571), - [anon_sym_else] = ACTIONS(2573), - [anon_sym_if] = ACTIONS(2573), - [anon_sym_switch] = ACTIONS(2573), - [anon_sym_for] = ACTIONS(2573), - [anon_sym_LPAREN] = ACTIONS(2571), - [anon_sym_SEMI] = ACTIONS(2571), - [anon_sym_await] = ACTIONS(2573), - [anon_sym_while] = ACTIONS(2573), - [anon_sym_do] = ACTIONS(2573), - [anon_sym_try] = ACTIONS(2573), - [anon_sym_break] = ACTIONS(2573), - [anon_sym_continue] = ACTIONS(2573), - [anon_sym_debugger] = ACTIONS(2573), - [anon_sym_return] = ACTIONS(2573), - [anon_sym_throw] = ACTIONS(2573), - [anon_sym_case] = ACTIONS(2573), - [anon_sym_yield] = ACTIONS(2573), - [anon_sym_LBRACK] = ACTIONS(2571), - [sym_glimmer_opening_tag] = ACTIONS(2571), - [anon_sym_DQUOTE] = ACTIONS(2571), - [anon_sym_SQUOTE] = ACTIONS(2571), - [anon_sym_class] = ACTIONS(2573), - [anon_sym_async] = ACTIONS(2573), - [anon_sym_function] = ACTIONS(2573), - [anon_sym_new] = ACTIONS(2573), - [anon_sym_using] = ACTIONS(2573), - [anon_sym_PLUS] = ACTIONS(2573), - [anon_sym_DASH] = ACTIONS(2573), - [anon_sym_SLASH] = ACTIONS(2573), - [anon_sym_LT] = ACTIONS(2573), - [anon_sym_TILDE] = ACTIONS(2571), - [anon_sym_void] = ACTIONS(2573), - [anon_sym_delete] = ACTIONS(2573), - [anon_sym_PLUS_PLUS] = ACTIONS(2571), - [anon_sym_DASH_DASH] = ACTIONS(2571), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2571), - [sym_number] = ACTIONS(2571), - [sym_private_property_identifier] = ACTIONS(2571), - [sym_this] = ACTIONS(2573), - [sym_super] = ACTIONS(2573), - [sym_true] = ACTIONS(2573), - [sym_false] = ACTIONS(2573), - [sym_null] = ACTIONS(2573), - [sym_undefined] = ACTIONS(2573), - [anon_sym_AT] = ACTIONS(2571), - [anon_sym_static] = ACTIONS(2573), - [anon_sym_readonly] = ACTIONS(2573), - [anon_sym_get] = ACTIONS(2573), - [anon_sym_set] = ACTIONS(2573), - [anon_sym_declare] = ACTIONS(2573), - [anon_sym_public] = ACTIONS(2573), - [anon_sym_private] = ACTIONS(2573), - [anon_sym_protected] = ACTIONS(2573), - [anon_sym_override] = ACTIONS(2573), - [anon_sym_module] = ACTIONS(2573), - [anon_sym_any] = ACTIONS(2573), - [anon_sym_number] = ACTIONS(2573), - [anon_sym_boolean] = ACTIONS(2573), - [anon_sym_string] = ACTIONS(2573), - [anon_sym_symbol] = ACTIONS(2573), - [anon_sym_object] = ACTIONS(2573), - [anon_sym_abstract] = ACTIONS(2573), - [anon_sym_interface] = ACTIONS(2573), - [anon_sym_enum] = ACTIONS(2573), - [sym_html_comment] = ACTIONS(5), - }, - [797] = { - [ts_builtin_sym_end] = ACTIONS(2575), - [sym_identifier] = ACTIONS(2577), - [anon_sym_export] = ACTIONS(2577), - [anon_sym_default] = ACTIONS(2577), - [anon_sym_type] = ACTIONS(2577), - [anon_sym_namespace] = ACTIONS(2577), - [anon_sym_LBRACE] = ACTIONS(2575), - [anon_sym_RBRACE] = ACTIONS(2575), - [anon_sym_typeof] = ACTIONS(2577), - [anon_sym_import] = ACTIONS(2577), - [anon_sym_with] = ACTIONS(2577), - [anon_sym_var] = ACTIONS(2577), - [anon_sym_let] = ACTIONS(2577), - [anon_sym_const] = ACTIONS(2577), - [anon_sym_BANG] = ACTIONS(2575), - [anon_sym_else] = ACTIONS(2577), - [anon_sym_if] = ACTIONS(2577), - [anon_sym_switch] = ACTIONS(2577), - [anon_sym_for] = ACTIONS(2577), - [anon_sym_LPAREN] = ACTIONS(2575), - [anon_sym_SEMI] = ACTIONS(2575), - [anon_sym_await] = ACTIONS(2577), - [anon_sym_while] = ACTIONS(2577), - [anon_sym_do] = ACTIONS(2577), - [anon_sym_try] = ACTIONS(2577), - [anon_sym_break] = ACTIONS(2577), - [anon_sym_continue] = ACTIONS(2577), - [anon_sym_debugger] = ACTIONS(2577), - [anon_sym_return] = ACTIONS(2577), - [anon_sym_throw] = ACTIONS(2577), - [anon_sym_case] = ACTIONS(2577), - [anon_sym_yield] = ACTIONS(2577), - [anon_sym_LBRACK] = ACTIONS(2575), - [sym_glimmer_opening_tag] = ACTIONS(2575), - [anon_sym_DQUOTE] = ACTIONS(2575), - [anon_sym_SQUOTE] = ACTIONS(2575), - [anon_sym_class] = ACTIONS(2577), - [anon_sym_async] = ACTIONS(2577), - [anon_sym_function] = ACTIONS(2577), - [anon_sym_new] = ACTIONS(2577), - [anon_sym_using] = ACTIONS(2577), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2577), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_TILDE] = ACTIONS(2575), - [anon_sym_void] = ACTIONS(2577), - [anon_sym_delete] = ACTIONS(2577), - [anon_sym_PLUS_PLUS] = ACTIONS(2575), - [anon_sym_DASH_DASH] = ACTIONS(2575), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2575), - [sym_number] = ACTIONS(2575), - [sym_private_property_identifier] = ACTIONS(2575), - [sym_this] = ACTIONS(2577), - [sym_super] = ACTIONS(2577), - [sym_true] = ACTIONS(2577), - [sym_false] = ACTIONS(2577), - [sym_null] = ACTIONS(2577), - [sym_undefined] = ACTIONS(2577), - [anon_sym_AT] = ACTIONS(2575), - [anon_sym_static] = ACTIONS(2577), - [anon_sym_readonly] = ACTIONS(2577), - [anon_sym_get] = ACTIONS(2577), - [anon_sym_set] = ACTIONS(2577), - [anon_sym_declare] = ACTIONS(2577), - [anon_sym_public] = ACTIONS(2577), - [anon_sym_private] = ACTIONS(2577), - [anon_sym_protected] = ACTIONS(2577), - [anon_sym_override] = ACTIONS(2577), - [anon_sym_module] = ACTIONS(2577), - [anon_sym_any] = ACTIONS(2577), - [anon_sym_number] = ACTIONS(2577), - [anon_sym_boolean] = ACTIONS(2577), - [anon_sym_string] = ACTIONS(2577), - [anon_sym_symbol] = ACTIONS(2577), - [anon_sym_object] = ACTIONS(2577), - [anon_sym_abstract] = ACTIONS(2577), - [anon_sym_interface] = ACTIONS(2577), - [anon_sym_enum] = ACTIONS(2577), - [sym_html_comment] = ACTIONS(5), - }, - [798] = { - [ts_builtin_sym_end] = ACTIONS(2575), - [sym_identifier] = ACTIONS(2577), - [anon_sym_export] = ACTIONS(2577), - [anon_sym_default] = ACTIONS(2577), - [anon_sym_type] = ACTIONS(2577), - [anon_sym_namespace] = ACTIONS(2577), - [anon_sym_LBRACE] = ACTIONS(2575), - [anon_sym_RBRACE] = ACTIONS(2575), - [anon_sym_typeof] = ACTIONS(2577), - [anon_sym_import] = ACTIONS(2577), - [anon_sym_with] = ACTIONS(2577), - [anon_sym_var] = ACTIONS(2577), - [anon_sym_let] = ACTIONS(2577), - [anon_sym_const] = ACTIONS(2577), - [anon_sym_BANG] = ACTIONS(2575), - [anon_sym_else] = ACTIONS(2577), - [anon_sym_if] = ACTIONS(2577), - [anon_sym_switch] = ACTIONS(2577), - [anon_sym_for] = ACTIONS(2577), - [anon_sym_LPAREN] = ACTIONS(2575), - [anon_sym_SEMI] = ACTIONS(2575), - [anon_sym_await] = ACTIONS(2577), - [anon_sym_while] = ACTIONS(2577), - [anon_sym_do] = ACTIONS(2577), - [anon_sym_try] = ACTIONS(2577), - [anon_sym_break] = ACTIONS(2577), - [anon_sym_continue] = ACTIONS(2577), - [anon_sym_debugger] = ACTIONS(2577), - [anon_sym_return] = ACTIONS(2577), - [anon_sym_throw] = ACTIONS(2577), - [anon_sym_case] = ACTIONS(2577), - [anon_sym_yield] = ACTIONS(2577), - [anon_sym_LBRACK] = ACTIONS(2575), - [sym_glimmer_opening_tag] = ACTIONS(2575), - [anon_sym_DQUOTE] = ACTIONS(2575), - [anon_sym_SQUOTE] = ACTIONS(2575), - [anon_sym_class] = ACTIONS(2577), - [anon_sym_async] = ACTIONS(2577), - [anon_sym_function] = ACTIONS(2577), - [anon_sym_new] = ACTIONS(2577), - [anon_sym_using] = ACTIONS(2577), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2577), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_TILDE] = ACTIONS(2575), - [anon_sym_void] = ACTIONS(2577), - [anon_sym_delete] = ACTIONS(2577), - [anon_sym_PLUS_PLUS] = ACTIONS(2575), - [anon_sym_DASH_DASH] = ACTIONS(2575), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2575), - [sym_number] = ACTIONS(2575), - [sym_private_property_identifier] = ACTIONS(2575), - [sym_this] = ACTIONS(2577), - [sym_super] = ACTIONS(2577), - [sym_true] = ACTIONS(2577), - [sym_false] = ACTIONS(2577), - [sym_null] = ACTIONS(2577), - [sym_undefined] = ACTIONS(2577), - [anon_sym_AT] = ACTIONS(2575), - [anon_sym_static] = ACTIONS(2577), - [anon_sym_readonly] = ACTIONS(2577), - [anon_sym_get] = ACTIONS(2577), - [anon_sym_set] = ACTIONS(2577), - [anon_sym_declare] = ACTIONS(2577), - [anon_sym_public] = ACTIONS(2577), - [anon_sym_private] = ACTIONS(2577), - [anon_sym_protected] = ACTIONS(2577), - [anon_sym_override] = ACTIONS(2577), - [anon_sym_module] = ACTIONS(2577), - [anon_sym_any] = ACTIONS(2577), - [anon_sym_number] = ACTIONS(2577), - [anon_sym_boolean] = ACTIONS(2577), - [anon_sym_string] = ACTIONS(2577), - [anon_sym_symbol] = ACTIONS(2577), - [anon_sym_object] = ACTIONS(2577), - [anon_sym_abstract] = ACTIONS(2577), - [anon_sym_interface] = ACTIONS(2577), - [anon_sym_enum] = ACTIONS(2577), - [sym_html_comment] = ACTIONS(5), - }, - [799] = { - [ts_builtin_sym_end] = ACTIONS(2575), - [sym_identifier] = ACTIONS(2577), - [anon_sym_export] = ACTIONS(2577), - [anon_sym_default] = ACTIONS(2577), - [anon_sym_type] = ACTIONS(2577), - [anon_sym_namespace] = ACTIONS(2577), - [anon_sym_LBRACE] = ACTIONS(2575), - [anon_sym_RBRACE] = ACTIONS(2575), - [anon_sym_typeof] = ACTIONS(2577), - [anon_sym_import] = ACTIONS(2577), - [anon_sym_with] = ACTIONS(2577), - [anon_sym_var] = ACTIONS(2577), - [anon_sym_let] = ACTIONS(2577), - [anon_sym_const] = ACTIONS(2577), - [anon_sym_BANG] = ACTIONS(2575), - [anon_sym_else] = ACTIONS(2577), - [anon_sym_if] = ACTIONS(2577), - [anon_sym_switch] = ACTIONS(2577), - [anon_sym_for] = ACTIONS(2577), - [anon_sym_LPAREN] = ACTIONS(2575), - [anon_sym_SEMI] = ACTIONS(2575), - [anon_sym_await] = ACTIONS(2577), - [anon_sym_while] = ACTIONS(2577), - [anon_sym_do] = ACTIONS(2577), - [anon_sym_try] = ACTIONS(2577), - [anon_sym_break] = ACTIONS(2577), - [anon_sym_continue] = ACTIONS(2577), - [anon_sym_debugger] = ACTIONS(2577), - [anon_sym_return] = ACTIONS(2577), - [anon_sym_throw] = ACTIONS(2577), - [anon_sym_case] = ACTIONS(2577), - [anon_sym_yield] = ACTIONS(2577), - [anon_sym_LBRACK] = ACTIONS(2575), - [sym_glimmer_opening_tag] = ACTIONS(2575), - [anon_sym_DQUOTE] = ACTIONS(2575), - [anon_sym_SQUOTE] = ACTIONS(2575), - [anon_sym_class] = ACTIONS(2577), - [anon_sym_async] = ACTIONS(2577), - [anon_sym_function] = ACTIONS(2577), - [anon_sym_new] = ACTIONS(2577), - [anon_sym_using] = ACTIONS(2577), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2577), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_TILDE] = ACTIONS(2575), - [anon_sym_void] = ACTIONS(2577), - [anon_sym_delete] = ACTIONS(2577), - [anon_sym_PLUS_PLUS] = ACTIONS(2575), - [anon_sym_DASH_DASH] = ACTIONS(2575), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2575), - [sym_number] = ACTIONS(2575), - [sym_private_property_identifier] = ACTIONS(2575), - [sym_this] = ACTIONS(2577), - [sym_super] = ACTIONS(2577), - [sym_true] = ACTIONS(2577), - [sym_false] = ACTIONS(2577), - [sym_null] = ACTIONS(2577), - [sym_undefined] = ACTIONS(2577), - [anon_sym_AT] = ACTIONS(2575), - [anon_sym_static] = ACTIONS(2577), - [anon_sym_readonly] = ACTIONS(2577), - [anon_sym_get] = ACTIONS(2577), - [anon_sym_set] = ACTIONS(2577), - [anon_sym_declare] = ACTIONS(2577), - [anon_sym_public] = ACTIONS(2577), - [anon_sym_private] = ACTIONS(2577), - [anon_sym_protected] = ACTIONS(2577), - [anon_sym_override] = ACTIONS(2577), - [anon_sym_module] = ACTIONS(2577), - [anon_sym_any] = ACTIONS(2577), - [anon_sym_number] = ACTIONS(2577), - [anon_sym_boolean] = ACTIONS(2577), - [anon_sym_string] = ACTIONS(2577), - [anon_sym_symbol] = ACTIONS(2577), - [anon_sym_object] = ACTIONS(2577), - [anon_sym_abstract] = ACTIONS(2577), - [anon_sym_interface] = ACTIONS(2577), - [anon_sym_enum] = ACTIONS(2577), - [sym_html_comment] = ACTIONS(5), - }, - [800] = { - [ts_builtin_sym_end] = ACTIONS(2579), - [sym_identifier] = ACTIONS(2581), - [anon_sym_export] = ACTIONS(2581), - [anon_sym_default] = ACTIONS(2581), - [anon_sym_type] = ACTIONS(2581), - [anon_sym_namespace] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2579), - [anon_sym_RBRACE] = ACTIONS(2579), - [anon_sym_typeof] = ACTIONS(2581), - [anon_sym_import] = ACTIONS(2581), - [anon_sym_with] = ACTIONS(2581), - [anon_sym_var] = ACTIONS(2581), - [anon_sym_let] = ACTIONS(2581), - [anon_sym_const] = ACTIONS(2581), - [anon_sym_BANG] = ACTIONS(2579), - [anon_sym_else] = ACTIONS(2581), - [anon_sym_if] = ACTIONS(2581), - [anon_sym_switch] = ACTIONS(2581), - [anon_sym_for] = ACTIONS(2581), - [anon_sym_LPAREN] = ACTIONS(2579), - [anon_sym_SEMI] = ACTIONS(2579), - [anon_sym_await] = ACTIONS(2581), - [anon_sym_while] = ACTIONS(2581), - [anon_sym_do] = ACTIONS(2581), - [anon_sym_try] = ACTIONS(2581), - [anon_sym_break] = ACTIONS(2581), - [anon_sym_continue] = ACTIONS(2581), - [anon_sym_debugger] = ACTIONS(2581), - [anon_sym_return] = ACTIONS(2581), - [anon_sym_throw] = ACTIONS(2581), - [anon_sym_case] = ACTIONS(2581), - [anon_sym_yield] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2579), - [sym_glimmer_opening_tag] = ACTIONS(2579), - [anon_sym_DQUOTE] = ACTIONS(2579), - [anon_sym_SQUOTE] = ACTIONS(2579), - [anon_sym_class] = ACTIONS(2581), - [anon_sym_async] = ACTIONS(2581), - [anon_sym_function] = ACTIONS(2581), - [anon_sym_new] = ACTIONS(2581), - [anon_sym_using] = ACTIONS(2581), - [anon_sym_PLUS] = ACTIONS(2581), - [anon_sym_DASH] = ACTIONS(2581), - [anon_sym_SLASH] = ACTIONS(2581), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_TILDE] = ACTIONS(2579), - [anon_sym_void] = ACTIONS(2581), - [anon_sym_delete] = ACTIONS(2581), - [anon_sym_PLUS_PLUS] = ACTIONS(2579), - [anon_sym_DASH_DASH] = ACTIONS(2579), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2579), - [sym_number] = ACTIONS(2579), - [sym_private_property_identifier] = ACTIONS(2579), - [sym_this] = ACTIONS(2581), - [sym_super] = ACTIONS(2581), - [sym_true] = ACTIONS(2581), - [sym_false] = ACTIONS(2581), - [sym_null] = ACTIONS(2581), - [sym_undefined] = ACTIONS(2581), - [anon_sym_AT] = ACTIONS(2579), - [anon_sym_static] = ACTIONS(2581), - [anon_sym_readonly] = ACTIONS(2581), - [anon_sym_get] = ACTIONS(2581), - [anon_sym_set] = ACTIONS(2581), - [anon_sym_declare] = ACTIONS(2581), - [anon_sym_public] = ACTIONS(2581), - [anon_sym_private] = ACTIONS(2581), - [anon_sym_protected] = ACTIONS(2581), - [anon_sym_override] = ACTIONS(2581), - [anon_sym_module] = ACTIONS(2581), - [anon_sym_any] = ACTIONS(2581), - [anon_sym_number] = ACTIONS(2581), - [anon_sym_boolean] = ACTIONS(2581), - [anon_sym_string] = ACTIONS(2581), - [anon_sym_symbol] = ACTIONS(2581), - [anon_sym_object] = ACTIONS(2581), - [anon_sym_abstract] = ACTIONS(2581), - [anon_sym_interface] = ACTIONS(2581), - [anon_sym_enum] = ACTIONS(2581), - [sym_html_comment] = ACTIONS(5), - }, - [801] = { - [ts_builtin_sym_end] = ACTIONS(2583), - [sym_identifier] = ACTIONS(2585), - [anon_sym_export] = ACTIONS(2585), - [anon_sym_default] = ACTIONS(2585), - [anon_sym_type] = ACTIONS(2585), - [anon_sym_namespace] = ACTIONS(2585), - [anon_sym_LBRACE] = ACTIONS(2583), - [anon_sym_RBRACE] = ACTIONS(2583), - [anon_sym_typeof] = ACTIONS(2585), - [anon_sym_import] = ACTIONS(2585), - [anon_sym_with] = ACTIONS(2585), - [anon_sym_var] = ACTIONS(2585), - [anon_sym_let] = ACTIONS(2585), - [anon_sym_const] = ACTIONS(2585), - [anon_sym_BANG] = ACTIONS(2583), - [anon_sym_else] = ACTIONS(2585), - [anon_sym_if] = ACTIONS(2585), - [anon_sym_switch] = ACTIONS(2585), - [anon_sym_for] = ACTIONS(2585), - [anon_sym_LPAREN] = ACTIONS(2583), - [anon_sym_SEMI] = ACTIONS(2583), - [anon_sym_await] = ACTIONS(2585), - [anon_sym_while] = ACTIONS(2585), - [anon_sym_do] = ACTIONS(2585), - [anon_sym_try] = ACTIONS(2585), - [anon_sym_break] = ACTIONS(2585), - [anon_sym_continue] = ACTIONS(2585), - [anon_sym_debugger] = ACTIONS(2585), - [anon_sym_return] = ACTIONS(2585), - [anon_sym_throw] = ACTIONS(2585), - [anon_sym_case] = ACTIONS(2585), - [anon_sym_yield] = ACTIONS(2585), - [anon_sym_LBRACK] = ACTIONS(2583), - [sym_glimmer_opening_tag] = ACTIONS(2583), - [anon_sym_DQUOTE] = ACTIONS(2583), - [anon_sym_SQUOTE] = ACTIONS(2583), - [anon_sym_class] = ACTIONS(2585), - [anon_sym_async] = ACTIONS(2585), - [anon_sym_function] = ACTIONS(2585), - [anon_sym_new] = ACTIONS(2585), - [anon_sym_using] = ACTIONS(2585), - [anon_sym_PLUS] = ACTIONS(2585), - [anon_sym_DASH] = ACTIONS(2585), - [anon_sym_SLASH] = ACTIONS(2585), - [anon_sym_LT] = ACTIONS(2585), - [anon_sym_TILDE] = ACTIONS(2583), - [anon_sym_void] = ACTIONS(2585), - [anon_sym_delete] = ACTIONS(2585), - [anon_sym_PLUS_PLUS] = ACTIONS(2583), - [anon_sym_DASH_DASH] = ACTIONS(2583), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2583), - [sym_number] = ACTIONS(2583), - [sym_private_property_identifier] = ACTIONS(2583), - [sym_this] = ACTIONS(2585), - [sym_super] = ACTIONS(2585), - [sym_true] = ACTIONS(2585), - [sym_false] = ACTIONS(2585), - [sym_null] = ACTIONS(2585), - [sym_undefined] = ACTIONS(2585), - [anon_sym_AT] = ACTIONS(2583), - [anon_sym_static] = ACTIONS(2585), - [anon_sym_readonly] = ACTIONS(2585), - [anon_sym_get] = ACTIONS(2585), - [anon_sym_set] = ACTIONS(2585), - [anon_sym_declare] = ACTIONS(2585), - [anon_sym_public] = ACTIONS(2585), - [anon_sym_private] = ACTIONS(2585), - [anon_sym_protected] = ACTIONS(2585), - [anon_sym_override] = ACTIONS(2585), - [anon_sym_module] = ACTIONS(2585), - [anon_sym_any] = ACTIONS(2585), - [anon_sym_number] = ACTIONS(2585), - [anon_sym_boolean] = ACTIONS(2585), - [anon_sym_string] = ACTIONS(2585), - [anon_sym_symbol] = ACTIONS(2585), - [anon_sym_object] = ACTIONS(2585), - [anon_sym_abstract] = ACTIONS(2585), - [anon_sym_interface] = ACTIONS(2585), - [anon_sym_enum] = ACTIONS(2585), - [sym_html_comment] = ACTIONS(5), - }, - [802] = { - [ts_builtin_sym_end] = ACTIONS(2587), - [sym_identifier] = ACTIONS(2589), - [anon_sym_export] = ACTIONS(2589), - [anon_sym_default] = ACTIONS(2589), - [anon_sym_type] = ACTIONS(2589), - [anon_sym_namespace] = ACTIONS(2589), - [anon_sym_LBRACE] = ACTIONS(2587), - [anon_sym_RBRACE] = ACTIONS(2587), - [anon_sym_typeof] = ACTIONS(2589), - [anon_sym_import] = ACTIONS(2589), - [anon_sym_with] = ACTIONS(2589), - [anon_sym_var] = ACTIONS(2589), - [anon_sym_let] = ACTIONS(2589), - [anon_sym_const] = ACTIONS(2589), - [anon_sym_BANG] = ACTIONS(2587), - [anon_sym_else] = ACTIONS(2589), - [anon_sym_if] = ACTIONS(2589), - [anon_sym_switch] = ACTIONS(2589), - [anon_sym_for] = ACTIONS(2589), - [anon_sym_LPAREN] = ACTIONS(2587), - [anon_sym_SEMI] = ACTIONS(2587), - [anon_sym_await] = ACTIONS(2589), - [anon_sym_while] = ACTIONS(2589), - [anon_sym_do] = ACTIONS(2589), - [anon_sym_try] = ACTIONS(2589), - [anon_sym_break] = ACTIONS(2589), - [anon_sym_continue] = ACTIONS(2589), - [anon_sym_debugger] = ACTIONS(2589), - [anon_sym_return] = ACTIONS(2589), - [anon_sym_throw] = ACTIONS(2589), - [anon_sym_case] = ACTIONS(2589), - [anon_sym_yield] = ACTIONS(2589), - [anon_sym_LBRACK] = ACTIONS(2587), - [sym_glimmer_opening_tag] = ACTIONS(2587), - [anon_sym_DQUOTE] = ACTIONS(2587), - [anon_sym_SQUOTE] = ACTIONS(2587), - [anon_sym_class] = ACTIONS(2589), - [anon_sym_async] = ACTIONS(2589), - [anon_sym_function] = ACTIONS(2589), - [anon_sym_new] = ACTIONS(2589), - [anon_sym_using] = ACTIONS(2589), - [anon_sym_PLUS] = ACTIONS(2589), - [anon_sym_DASH] = ACTIONS(2589), - [anon_sym_SLASH] = ACTIONS(2589), - [anon_sym_LT] = ACTIONS(2589), - [anon_sym_TILDE] = ACTIONS(2587), - [anon_sym_void] = ACTIONS(2589), - [anon_sym_delete] = ACTIONS(2589), - [anon_sym_PLUS_PLUS] = ACTIONS(2587), - [anon_sym_DASH_DASH] = ACTIONS(2587), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2587), - [sym_number] = ACTIONS(2587), - [sym_private_property_identifier] = ACTIONS(2587), - [sym_this] = ACTIONS(2589), - [sym_super] = ACTIONS(2589), - [sym_true] = ACTIONS(2589), - [sym_false] = ACTIONS(2589), - [sym_null] = ACTIONS(2589), - [sym_undefined] = ACTIONS(2589), - [anon_sym_AT] = ACTIONS(2587), - [anon_sym_static] = ACTIONS(2589), - [anon_sym_readonly] = ACTIONS(2589), - [anon_sym_get] = ACTIONS(2589), - [anon_sym_set] = ACTIONS(2589), - [anon_sym_declare] = ACTIONS(2589), - [anon_sym_public] = ACTIONS(2589), - [anon_sym_private] = ACTIONS(2589), - [anon_sym_protected] = ACTIONS(2589), - [anon_sym_override] = ACTIONS(2589), - [anon_sym_module] = ACTIONS(2589), - [anon_sym_any] = ACTIONS(2589), - [anon_sym_number] = ACTIONS(2589), - [anon_sym_boolean] = ACTIONS(2589), - [anon_sym_string] = ACTIONS(2589), - [anon_sym_symbol] = ACTIONS(2589), - [anon_sym_object] = ACTIONS(2589), - [anon_sym_abstract] = ACTIONS(2589), - [anon_sym_interface] = ACTIONS(2589), - [anon_sym_enum] = ACTIONS(2589), - [sym_html_comment] = ACTIONS(5), - }, - [803] = { - [ts_builtin_sym_end] = ACTIONS(2591), - [sym_identifier] = ACTIONS(2593), - [anon_sym_export] = ACTIONS(2593), - [anon_sym_default] = ACTIONS(2593), - [anon_sym_type] = ACTIONS(2593), - [anon_sym_namespace] = ACTIONS(2593), - [anon_sym_LBRACE] = ACTIONS(2591), - [anon_sym_RBRACE] = ACTIONS(2591), - [anon_sym_typeof] = ACTIONS(2593), - [anon_sym_import] = ACTIONS(2593), - [anon_sym_with] = ACTIONS(2593), - [anon_sym_var] = ACTIONS(2593), - [anon_sym_let] = ACTIONS(2593), - [anon_sym_const] = ACTIONS(2593), - [anon_sym_BANG] = ACTIONS(2591), - [anon_sym_else] = ACTIONS(2593), - [anon_sym_if] = ACTIONS(2593), - [anon_sym_switch] = ACTIONS(2593), - [anon_sym_for] = ACTIONS(2593), - [anon_sym_LPAREN] = ACTIONS(2591), - [anon_sym_SEMI] = ACTIONS(2591), - [anon_sym_await] = ACTIONS(2593), - [anon_sym_while] = ACTIONS(2593), - [anon_sym_do] = ACTIONS(2593), - [anon_sym_try] = ACTIONS(2593), - [anon_sym_break] = ACTIONS(2593), - [anon_sym_continue] = ACTIONS(2593), - [anon_sym_debugger] = ACTIONS(2593), - [anon_sym_return] = ACTIONS(2593), - [anon_sym_throw] = ACTIONS(2593), - [anon_sym_case] = ACTIONS(2593), - [anon_sym_yield] = ACTIONS(2593), - [anon_sym_LBRACK] = ACTIONS(2591), - [sym_glimmer_opening_tag] = ACTIONS(2591), - [anon_sym_DQUOTE] = ACTIONS(2591), - [anon_sym_SQUOTE] = ACTIONS(2591), - [anon_sym_class] = ACTIONS(2593), - [anon_sym_async] = ACTIONS(2593), - [anon_sym_function] = ACTIONS(2593), - [anon_sym_new] = ACTIONS(2593), - [anon_sym_using] = ACTIONS(2593), - [anon_sym_PLUS] = ACTIONS(2593), - [anon_sym_DASH] = ACTIONS(2593), - [anon_sym_SLASH] = ACTIONS(2593), - [anon_sym_LT] = ACTIONS(2593), - [anon_sym_TILDE] = ACTIONS(2591), - [anon_sym_void] = ACTIONS(2593), - [anon_sym_delete] = ACTIONS(2593), - [anon_sym_PLUS_PLUS] = ACTIONS(2591), - [anon_sym_DASH_DASH] = ACTIONS(2591), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2591), - [sym_number] = ACTIONS(2591), - [sym_private_property_identifier] = ACTIONS(2591), - [sym_this] = ACTIONS(2593), - [sym_super] = ACTIONS(2593), - [sym_true] = ACTIONS(2593), - [sym_false] = ACTIONS(2593), - [sym_null] = ACTIONS(2593), - [sym_undefined] = ACTIONS(2593), - [anon_sym_AT] = ACTIONS(2591), - [anon_sym_static] = ACTIONS(2593), - [anon_sym_readonly] = ACTIONS(2593), - [anon_sym_get] = ACTIONS(2593), - [anon_sym_set] = ACTIONS(2593), - [anon_sym_declare] = ACTIONS(2593), - [anon_sym_public] = ACTIONS(2593), - [anon_sym_private] = ACTIONS(2593), - [anon_sym_protected] = ACTIONS(2593), - [anon_sym_override] = ACTIONS(2593), - [anon_sym_module] = ACTIONS(2593), - [anon_sym_any] = ACTIONS(2593), - [anon_sym_number] = ACTIONS(2593), - [anon_sym_boolean] = ACTIONS(2593), - [anon_sym_string] = ACTIONS(2593), - [anon_sym_symbol] = ACTIONS(2593), - [anon_sym_object] = ACTIONS(2593), - [anon_sym_abstract] = ACTIONS(2593), - [anon_sym_interface] = ACTIONS(2593), - [anon_sym_enum] = ACTIONS(2593), - [sym_html_comment] = ACTIONS(5), - }, - [804] = { - [ts_builtin_sym_end] = ACTIONS(2595), - [sym_identifier] = ACTIONS(2597), - [anon_sym_export] = ACTIONS(2597), - [anon_sym_default] = ACTIONS(2597), - [anon_sym_type] = ACTIONS(2597), - [anon_sym_namespace] = ACTIONS(2597), - [anon_sym_LBRACE] = ACTIONS(2595), - [anon_sym_RBRACE] = ACTIONS(2595), - [anon_sym_typeof] = ACTIONS(2597), - [anon_sym_import] = ACTIONS(2597), - [anon_sym_with] = ACTIONS(2597), - [anon_sym_var] = ACTIONS(2597), - [anon_sym_let] = ACTIONS(2597), - [anon_sym_const] = ACTIONS(2597), - [anon_sym_BANG] = ACTIONS(2595), - [anon_sym_else] = ACTIONS(2597), - [anon_sym_if] = ACTIONS(2597), - [anon_sym_switch] = ACTIONS(2597), - [anon_sym_for] = ACTIONS(2597), - [anon_sym_LPAREN] = ACTIONS(2595), - [anon_sym_SEMI] = ACTIONS(2595), - [anon_sym_await] = ACTIONS(2597), - [anon_sym_while] = ACTIONS(2597), - [anon_sym_do] = ACTIONS(2597), - [anon_sym_try] = ACTIONS(2597), - [anon_sym_break] = ACTIONS(2597), - [anon_sym_continue] = ACTIONS(2597), - [anon_sym_debugger] = ACTIONS(2597), - [anon_sym_return] = ACTIONS(2597), - [anon_sym_throw] = ACTIONS(2597), - [anon_sym_case] = ACTIONS(2597), - [anon_sym_yield] = ACTIONS(2597), - [anon_sym_LBRACK] = ACTIONS(2595), - [sym_glimmer_opening_tag] = ACTIONS(2595), - [anon_sym_DQUOTE] = ACTIONS(2595), - [anon_sym_SQUOTE] = ACTIONS(2595), - [anon_sym_class] = ACTIONS(2597), - [anon_sym_async] = ACTIONS(2597), - [anon_sym_function] = ACTIONS(2597), - [anon_sym_new] = ACTIONS(2597), - [anon_sym_using] = ACTIONS(2597), - [anon_sym_PLUS] = ACTIONS(2597), - [anon_sym_DASH] = ACTIONS(2597), - [anon_sym_SLASH] = ACTIONS(2597), - [anon_sym_LT] = ACTIONS(2597), - [anon_sym_TILDE] = ACTIONS(2595), - [anon_sym_void] = ACTIONS(2597), - [anon_sym_delete] = ACTIONS(2597), - [anon_sym_PLUS_PLUS] = ACTIONS(2595), - [anon_sym_DASH_DASH] = ACTIONS(2595), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2595), - [sym_number] = ACTIONS(2595), - [sym_private_property_identifier] = ACTIONS(2595), - [sym_this] = ACTIONS(2597), - [sym_super] = ACTIONS(2597), - [sym_true] = ACTIONS(2597), - [sym_false] = ACTIONS(2597), - [sym_null] = ACTIONS(2597), - [sym_undefined] = ACTIONS(2597), - [anon_sym_AT] = ACTIONS(2595), - [anon_sym_static] = ACTIONS(2597), - [anon_sym_readonly] = ACTIONS(2597), - [anon_sym_get] = ACTIONS(2597), - [anon_sym_set] = ACTIONS(2597), - [anon_sym_declare] = ACTIONS(2597), - [anon_sym_public] = ACTIONS(2597), - [anon_sym_private] = ACTIONS(2597), - [anon_sym_protected] = ACTIONS(2597), - [anon_sym_override] = ACTIONS(2597), - [anon_sym_module] = ACTIONS(2597), - [anon_sym_any] = ACTIONS(2597), - [anon_sym_number] = ACTIONS(2597), - [anon_sym_boolean] = ACTIONS(2597), - [anon_sym_string] = ACTIONS(2597), - [anon_sym_symbol] = ACTIONS(2597), - [anon_sym_object] = ACTIONS(2597), - [anon_sym_abstract] = ACTIONS(2597), - [anon_sym_interface] = ACTIONS(2597), - [anon_sym_enum] = ACTIONS(2597), - [sym_html_comment] = ACTIONS(5), - }, - [805] = { - [ts_builtin_sym_end] = ACTIONS(2599), - [sym_identifier] = ACTIONS(2601), - [anon_sym_export] = ACTIONS(2601), - [anon_sym_default] = ACTIONS(2601), - [anon_sym_type] = ACTIONS(2601), - [anon_sym_namespace] = ACTIONS(2601), - [anon_sym_LBRACE] = ACTIONS(2599), - [anon_sym_RBRACE] = ACTIONS(2599), - [anon_sym_typeof] = ACTIONS(2601), - [anon_sym_import] = ACTIONS(2601), - [anon_sym_with] = ACTIONS(2601), - [anon_sym_var] = ACTIONS(2601), - [anon_sym_let] = ACTIONS(2601), - [anon_sym_const] = ACTIONS(2601), - [anon_sym_BANG] = ACTIONS(2599), - [anon_sym_else] = ACTIONS(2601), - [anon_sym_if] = ACTIONS(2601), - [anon_sym_switch] = ACTIONS(2601), - [anon_sym_for] = ACTIONS(2601), - [anon_sym_LPAREN] = ACTIONS(2599), - [anon_sym_SEMI] = ACTIONS(2599), - [anon_sym_await] = ACTIONS(2601), - [anon_sym_while] = ACTIONS(2601), - [anon_sym_do] = ACTIONS(2601), - [anon_sym_try] = ACTIONS(2601), - [anon_sym_break] = ACTIONS(2601), - [anon_sym_continue] = ACTIONS(2601), - [anon_sym_debugger] = ACTIONS(2601), - [anon_sym_return] = ACTIONS(2601), - [anon_sym_throw] = ACTIONS(2601), - [anon_sym_case] = ACTIONS(2601), - [anon_sym_yield] = ACTIONS(2601), - [anon_sym_LBRACK] = ACTIONS(2599), - [sym_glimmer_opening_tag] = ACTIONS(2599), - [anon_sym_DQUOTE] = ACTIONS(2599), - [anon_sym_SQUOTE] = ACTIONS(2599), - [anon_sym_class] = ACTIONS(2601), - [anon_sym_async] = ACTIONS(2601), - [anon_sym_function] = ACTIONS(2601), - [anon_sym_new] = ACTIONS(2601), - [anon_sym_using] = ACTIONS(2601), - [anon_sym_PLUS] = ACTIONS(2601), - [anon_sym_DASH] = ACTIONS(2601), - [anon_sym_SLASH] = ACTIONS(2601), - [anon_sym_LT] = ACTIONS(2601), - [anon_sym_TILDE] = ACTIONS(2599), - [anon_sym_void] = ACTIONS(2601), - [anon_sym_delete] = ACTIONS(2601), - [anon_sym_PLUS_PLUS] = ACTIONS(2599), - [anon_sym_DASH_DASH] = ACTIONS(2599), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2599), - [sym_number] = ACTIONS(2599), - [sym_private_property_identifier] = ACTIONS(2599), - [sym_this] = ACTIONS(2601), - [sym_super] = ACTIONS(2601), - [sym_true] = ACTIONS(2601), - [sym_false] = ACTIONS(2601), - [sym_null] = ACTIONS(2601), - [sym_undefined] = ACTIONS(2601), - [anon_sym_AT] = ACTIONS(2599), - [anon_sym_static] = ACTIONS(2601), - [anon_sym_readonly] = ACTIONS(2601), - [anon_sym_get] = ACTIONS(2601), - [anon_sym_set] = ACTIONS(2601), - [anon_sym_declare] = ACTIONS(2601), - [anon_sym_public] = ACTIONS(2601), - [anon_sym_private] = ACTIONS(2601), - [anon_sym_protected] = ACTIONS(2601), - [anon_sym_override] = ACTIONS(2601), - [anon_sym_module] = ACTIONS(2601), - [anon_sym_any] = ACTIONS(2601), - [anon_sym_number] = ACTIONS(2601), - [anon_sym_boolean] = ACTIONS(2601), - [anon_sym_string] = ACTIONS(2601), - [anon_sym_symbol] = ACTIONS(2601), - [anon_sym_object] = ACTIONS(2601), - [anon_sym_abstract] = ACTIONS(2601), - [anon_sym_interface] = ACTIONS(2601), - [anon_sym_enum] = ACTIONS(2601), - [sym_html_comment] = ACTIONS(5), - }, - [806] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_rest_pattern] = STATE(5529), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3817), - [sym_tuple_parameter] = STATE(5211), - [sym_optional_tuple_parameter] = STATE(5211), - [sym_optional_type] = STATE(5211), - [sym_rest_type] = STATE(5211), - [sym__tuple_type_member] = STATE(5211), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(2527), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_COMMA] = ACTIONS(2603), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_RBRACK] = ACTIONS(2605), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), - [sym_html_comment] = ACTIONS(5), - }, - [807] = { - [ts_builtin_sym_end] = ACTIONS(2607), - [sym_identifier] = ACTIONS(2609), - [anon_sym_export] = ACTIONS(2609), - [anon_sym_default] = ACTIONS(2609), - [anon_sym_type] = ACTIONS(2609), - [anon_sym_namespace] = ACTIONS(2609), - [anon_sym_LBRACE] = ACTIONS(2607), - [anon_sym_RBRACE] = ACTIONS(2607), - [anon_sym_typeof] = ACTIONS(2609), - [anon_sym_import] = ACTIONS(2609), - [anon_sym_with] = ACTIONS(2609), - [anon_sym_var] = ACTIONS(2609), - [anon_sym_let] = ACTIONS(2609), - [anon_sym_const] = ACTIONS(2609), - [anon_sym_BANG] = ACTIONS(2607), - [anon_sym_else] = ACTIONS(2609), - [anon_sym_if] = ACTIONS(2609), - [anon_sym_switch] = ACTIONS(2609), - [anon_sym_for] = ACTIONS(2609), - [anon_sym_LPAREN] = ACTIONS(2607), - [anon_sym_SEMI] = ACTIONS(2607), - [anon_sym_await] = ACTIONS(2609), - [anon_sym_while] = ACTIONS(2609), - [anon_sym_do] = ACTIONS(2609), - [anon_sym_try] = ACTIONS(2609), - [anon_sym_break] = ACTIONS(2609), - [anon_sym_continue] = ACTIONS(2609), - [anon_sym_debugger] = ACTIONS(2609), - [anon_sym_return] = ACTIONS(2609), - [anon_sym_throw] = ACTIONS(2609), - [anon_sym_case] = ACTIONS(2609), - [anon_sym_yield] = ACTIONS(2609), - [anon_sym_LBRACK] = ACTIONS(2607), - [sym_glimmer_opening_tag] = ACTIONS(2607), - [anon_sym_DQUOTE] = ACTIONS(2607), - [anon_sym_SQUOTE] = ACTIONS(2607), - [anon_sym_class] = ACTIONS(2609), - [anon_sym_async] = ACTIONS(2609), - [anon_sym_function] = ACTIONS(2609), - [anon_sym_new] = ACTIONS(2609), - [anon_sym_using] = ACTIONS(2609), - [anon_sym_PLUS] = ACTIONS(2609), - [anon_sym_DASH] = ACTIONS(2609), - [anon_sym_SLASH] = ACTIONS(2609), - [anon_sym_LT] = ACTIONS(2609), - [anon_sym_TILDE] = ACTIONS(2607), - [anon_sym_void] = ACTIONS(2609), - [anon_sym_delete] = ACTIONS(2609), - [anon_sym_PLUS_PLUS] = ACTIONS(2607), - [anon_sym_DASH_DASH] = ACTIONS(2607), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2607), - [sym_number] = ACTIONS(2607), - [sym_private_property_identifier] = ACTIONS(2607), - [sym_this] = ACTIONS(2609), - [sym_super] = ACTIONS(2609), - [sym_true] = ACTIONS(2609), - [sym_false] = ACTIONS(2609), - [sym_null] = ACTIONS(2609), - [sym_undefined] = ACTIONS(2609), - [anon_sym_AT] = ACTIONS(2607), - [anon_sym_static] = ACTIONS(2609), - [anon_sym_readonly] = ACTIONS(2609), - [anon_sym_get] = ACTIONS(2609), - [anon_sym_set] = ACTIONS(2609), - [anon_sym_declare] = ACTIONS(2609), - [anon_sym_public] = ACTIONS(2609), - [anon_sym_private] = ACTIONS(2609), - [anon_sym_protected] = ACTIONS(2609), - [anon_sym_override] = ACTIONS(2609), - [anon_sym_module] = ACTIONS(2609), - [anon_sym_any] = ACTIONS(2609), - [anon_sym_number] = ACTIONS(2609), - [anon_sym_boolean] = ACTIONS(2609), - [anon_sym_string] = ACTIONS(2609), - [anon_sym_symbol] = ACTIONS(2609), - [anon_sym_object] = ACTIONS(2609), - [anon_sym_abstract] = ACTIONS(2609), - [anon_sym_interface] = ACTIONS(2609), - [anon_sym_enum] = ACTIONS(2609), - [sym_html_comment] = ACTIONS(5), - }, - [808] = { - [ts_builtin_sym_end] = ACTIONS(2611), - [sym_identifier] = ACTIONS(2613), - [anon_sym_export] = ACTIONS(2613), - [anon_sym_default] = ACTIONS(2613), - [anon_sym_type] = ACTIONS(2613), - [anon_sym_namespace] = ACTIONS(2613), - [anon_sym_LBRACE] = ACTIONS(2611), - [anon_sym_RBRACE] = ACTIONS(2611), - [anon_sym_typeof] = ACTIONS(2613), - [anon_sym_import] = ACTIONS(2613), - [anon_sym_with] = ACTIONS(2613), - [anon_sym_var] = ACTIONS(2613), - [anon_sym_let] = ACTIONS(2613), - [anon_sym_const] = ACTIONS(2613), - [anon_sym_BANG] = ACTIONS(2611), - [anon_sym_else] = ACTIONS(2613), - [anon_sym_if] = ACTIONS(2613), - [anon_sym_switch] = ACTIONS(2613), - [anon_sym_for] = ACTIONS(2613), - [anon_sym_LPAREN] = ACTIONS(2611), - [anon_sym_SEMI] = ACTIONS(2611), - [anon_sym_await] = ACTIONS(2613), - [anon_sym_while] = ACTIONS(2613), - [anon_sym_do] = ACTIONS(2613), - [anon_sym_try] = ACTIONS(2613), - [anon_sym_break] = ACTIONS(2613), - [anon_sym_continue] = ACTIONS(2613), - [anon_sym_debugger] = ACTIONS(2613), - [anon_sym_return] = ACTIONS(2613), - [anon_sym_throw] = ACTIONS(2613), - [anon_sym_case] = ACTIONS(2613), - [anon_sym_yield] = ACTIONS(2613), - [anon_sym_LBRACK] = ACTIONS(2611), - [sym_glimmer_opening_tag] = ACTIONS(2611), - [anon_sym_DQUOTE] = ACTIONS(2611), - [anon_sym_SQUOTE] = ACTIONS(2611), - [anon_sym_class] = ACTIONS(2613), - [anon_sym_async] = ACTIONS(2613), - [anon_sym_function] = ACTIONS(2613), - [anon_sym_new] = ACTIONS(2613), - [anon_sym_using] = ACTIONS(2613), - [anon_sym_PLUS] = ACTIONS(2613), - [anon_sym_DASH] = ACTIONS(2613), - [anon_sym_SLASH] = ACTIONS(2613), - [anon_sym_LT] = ACTIONS(2613), - [anon_sym_TILDE] = ACTIONS(2611), - [anon_sym_void] = ACTIONS(2613), - [anon_sym_delete] = ACTIONS(2613), - [anon_sym_PLUS_PLUS] = ACTIONS(2611), - [anon_sym_DASH_DASH] = ACTIONS(2611), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2611), - [sym_number] = ACTIONS(2611), - [sym_private_property_identifier] = ACTIONS(2611), - [sym_this] = ACTIONS(2613), - [sym_super] = ACTIONS(2613), - [sym_true] = ACTIONS(2613), - [sym_false] = ACTIONS(2613), - [sym_null] = ACTIONS(2613), - [sym_undefined] = ACTIONS(2613), - [anon_sym_AT] = ACTIONS(2611), - [anon_sym_static] = ACTIONS(2613), - [anon_sym_readonly] = ACTIONS(2613), - [anon_sym_get] = ACTIONS(2613), - [anon_sym_set] = ACTIONS(2613), - [anon_sym_declare] = ACTIONS(2613), - [anon_sym_public] = ACTIONS(2613), - [anon_sym_private] = ACTIONS(2613), - [anon_sym_protected] = ACTIONS(2613), - [anon_sym_override] = ACTIONS(2613), - [anon_sym_module] = ACTIONS(2613), - [anon_sym_any] = ACTIONS(2613), - [anon_sym_number] = ACTIONS(2613), - [anon_sym_boolean] = ACTIONS(2613), - [anon_sym_string] = ACTIONS(2613), - [anon_sym_symbol] = ACTIONS(2613), - [anon_sym_object] = ACTIONS(2613), - [anon_sym_abstract] = ACTIONS(2613), - [anon_sym_interface] = ACTIONS(2613), - [anon_sym_enum] = ACTIONS(2613), - [sym_html_comment] = ACTIONS(5), - }, - [809] = { - [ts_builtin_sym_end] = ACTIONS(2615), - [sym_identifier] = ACTIONS(2617), - [anon_sym_export] = ACTIONS(2617), - [anon_sym_default] = ACTIONS(2617), - [anon_sym_type] = ACTIONS(2617), - [anon_sym_namespace] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2615), - [anon_sym_RBRACE] = ACTIONS(2615), - [anon_sym_typeof] = ACTIONS(2617), - [anon_sym_import] = ACTIONS(2617), - [anon_sym_with] = ACTIONS(2617), - [anon_sym_var] = ACTIONS(2617), - [anon_sym_let] = ACTIONS(2617), - [anon_sym_const] = ACTIONS(2617), - [anon_sym_BANG] = ACTIONS(2615), - [anon_sym_else] = ACTIONS(2617), - [anon_sym_if] = ACTIONS(2617), - [anon_sym_switch] = ACTIONS(2617), - [anon_sym_for] = ACTIONS(2617), - [anon_sym_LPAREN] = ACTIONS(2615), - [anon_sym_SEMI] = ACTIONS(2615), - [anon_sym_await] = ACTIONS(2617), - [anon_sym_while] = ACTIONS(2617), - [anon_sym_do] = ACTIONS(2617), - [anon_sym_try] = ACTIONS(2617), - [anon_sym_break] = ACTIONS(2617), - [anon_sym_continue] = ACTIONS(2617), - [anon_sym_debugger] = ACTIONS(2617), - [anon_sym_return] = ACTIONS(2617), - [anon_sym_throw] = ACTIONS(2617), - [anon_sym_case] = ACTIONS(2617), - [anon_sym_yield] = ACTIONS(2617), - [anon_sym_LBRACK] = ACTIONS(2615), - [sym_glimmer_opening_tag] = ACTIONS(2615), - [anon_sym_DQUOTE] = ACTIONS(2615), - [anon_sym_SQUOTE] = ACTIONS(2615), - [anon_sym_class] = ACTIONS(2617), - [anon_sym_async] = ACTIONS(2617), - [anon_sym_function] = ACTIONS(2617), - [anon_sym_new] = ACTIONS(2617), - [anon_sym_using] = ACTIONS(2617), - [anon_sym_PLUS] = ACTIONS(2617), - [anon_sym_DASH] = ACTIONS(2617), - [anon_sym_SLASH] = ACTIONS(2617), - [anon_sym_LT] = ACTIONS(2617), - [anon_sym_TILDE] = ACTIONS(2615), - [anon_sym_void] = ACTIONS(2617), - [anon_sym_delete] = ACTIONS(2617), - [anon_sym_PLUS_PLUS] = ACTIONS(2615), - [anon_sym_DASH_DASH] = ACTIONS(2615), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2615), - [sym_number] = ACTIONS(2615), - [sym_private_property_identifier] = ACTIONS(2615), - [sym_this] = ACTIONS(2617), - [sym_super] = ACTIONS(2617), - [sym_true] = ACTIONS(2617), - [sym_false] = ACTIONS(2617), - [sym_null] = ACTIONS(2617), - [sym_undefined] = ACTIONS(2617), - [anon_sym_AT] = ACTIONS(2615), - [anon_sym_static] = ACTIONS(2617), - [anon_sym_readonly] = ACTIONS(2617), - [anon_sym_get] = ACTIONS(2617), - [anon_sym_set] = ACTIONS(2617), - [anon_sym_declare] = ACTIONS(2617), - [anon_sym_public] = ACTIONS(2617), - [anon_sym_private] = ACTIONS(2617), - [anon_sym_protected] = ACTIONS(2617), - [anon_sym_override] = ACTIONS(2617), - [anon_sym_module] = ACTIONS(2617), - [anon_sym_any] = ACTIONS(2617), - [anon_sym_number] = ACTIONS(2617), - [anon_sym_boolean] = ACTIONS(2617), - [anon_sym_string] = ACTIONS(2617), - [anon_sym_symbol] = ACTIONS(2617), - [anon_sym_object] = ACTIONS(2617), - [anon_sym_abstract] = ACTIONS(2617), - [anon_sym_interface] = ACTIONS(2617), - [anon_sym_enum] = ACTIONS(2617), - [sym_html_comment] = ACTIONS(5), - }, - [810] = { - [ts_builtin_sym_end] = ACTIONS(1897), - [sym_identifier] = ACTIONS(1899), - [anon_sym_export] = ACTIONS(1899), - [anon_sym_default] = ACTIONS(1899), - [anon_sym_type] = ACTIONS(1899), - [anon_sym_namespace] = ACTIONS(1899), - [anon_sym_LBRACE] = ACTIONS(1897), - [anon_sym_RBRACE] = ACTIONS(1897), - [anon_sym_typeof] = ACTIONS(1899), - [anon_sym_import] = ACTIONS(1899), - [anon_sym_with] = ACTIONS(1899), - [anon_sym_var] = ACTIONS(1899), - [anon_sym_let] = ACTIONS(1899), - [anon_sym_const] = ACTIONS(1899), - [anon_sym_BANG] = ACTIONS(1897), - [anon_sym_else] = ACTIONS(1899), - [anon_sym_if] = ACTIONS(1899), - [anon_sym_switch] = ACTIONS(1899), - [anon_sym_for] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(1897), - [anon_sym_SEMI] = ACTIONS(1897), - [anon_sym_await] = ACTIONS(1899), - [anon_sym_while] = ACTIONS(1899), - [anon_sym_do] = ACTIONS(1899), - [anon_sym_try] = ACTIONS(1899), - [anon_sym_break] = ACTIONS(1899), - [anon_sym_continue] = ACTIONS(1899), - [anon_sym_debugger] = ACTIONS(1899), - [anon_sym_return] = ACTIONS(1899), - [anon_sym_throw] = ACTIONS(1899), - [anon_sym_case] = ACTIONS(1899), - [anon_sym_yield] = ACTIONS(1899), - [anon_sym_LBRACK] = ACTIONS(1897), - [sym_glimmer_opening_tag] = ACTIONS(1897), - [anon_sym_DQUOTE] = ACTIONS(1897), - [anon_sym_SQUOTE] = ACTIONS(1897), - [anon_sym_class] = ACTIONS(1899), - [anon_sym_async] = ACTIONS(1899), - [anon_sym_function] = ACTIONS(1899), - [anon_sym_new] = ACTIONS(1899), - [anon_sym_using] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1899), - [anon_sym_SLASH] = ACTIONS(1899), - [anon_sym_LT] = ACTIONS(1899), - [anon_sym_TILDE] = ACTIONS(1897), - [anon_sym_void] = ACTIONS(1899), - [anon_sym_delete] = ACTIONS(1899), - [anon_sym_PLUS_PLUS] = ACTIONS(1897), - [anon_sym_DASH_DASH] = ACTIONS(1897), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1897), - [sym_number] = ACTIONS(1897), - [sym_private_property_identifier] = ACTIONS(1897), - [sym_this] = ACTIONS(1899), - [sym_super] = ACTIONS(1899), - [sym_true] = ACTIONS(1899), - [sym_false] = ACTIONS(1899), - [sym_null] = ACTIONS(1899), - [sym_undefined] = ACTIONS(1899), - [anon_sym_AT] = ACTIONS(1897), - [anon_sym_static] = ACTIONS(1899), - [anon_sym_readonly] = ACTIONS(1899), - [anon_sym_get] = ACTIONS(1899), - [anon_sym_set] = ACTIONS(1899), - [anon_sym_declare] = ACTIONS(1899), - [anon_sym_public] = ACTIONS(1899), - [anon_sym_private] = ACTIONS(1899), - [anon_sym_protected] = ACTIONS(1899), - [anon_sym_override] = ACTIONS(1899), - [anon_sym_module] = ACTIONS(1899), - [anon_sym_any] = ACTIONS(1899), - [anon_sym_number] = ACTIONS(1899), - [anon_sym_boolean] = ACTIONS(1899), - [anon_sym_string] = ACTIONS(1899), - [anon_sym_symbol] = ACTIONS(1899), - [anon_sym_object] = ACTIONS(1899), - [anon_sym_abstract] = ACTIONS(1899), - [anon_sym_interface] = ACTIONS(1899), - [anon_sym_enum] = ACTIONS(1899), - [sym_html_comment] = ACTIONS(5), - }, - [811] = { - [ts_builtin_sym_end] = ACTIONS(2619), - [sym_identifier] = ACTIONS(2621), - [anon_sym_export] = ACTIONS(2621), - [anon_sym_default] = ACTIONS(2621), - [anon_sym_type] = ACTIONS(2621), - [anon_sym_namespace] = ACTIONS(2621), - [anon_sym_LBRACE] = ACTIONS(2619), - [anon_sym_RBRACE] = ACTIONS(2619), - [anon_sym_typeof] = ACTIONS(2621), - [anon_sym_import] = ACTIONS(2621), - [anon_sym_with] = ACTIONS(2621), - [anon_sym_var] = ACTIONS(2621), - [anon_sym_let] = ACTIONS(2621), - [anon_sym_const] = ACTIONS(2621), - [anon_sym_BANG] = ACTIONS(2619), - [anon_sym_else] = ACTIONS(2621), - [anon_sym_if] = ACTIONS(2621), - [anon_sym_switch] = ACTIONS(2621), - [anon_sym_for] = ACTIONS(2621), - [anon_sym_LPAREN] = ACTIONS(2619), - [anon_sym_SEMI] = ACTIONS(2619), - [anon_sym_await] = ACTIONS(2621), - [anon_sym_while] = ACTIONS(2621), - [anon_sym_do] = ACTIONS(2621), - [anon_sym_try] = ACTIONS(2621), - [anon_sym_break] = ACTIONS(2621), - [anon_sym_continue] = ACTIONS(2621), - [anon_sym_debugger] = ACTIONS(2621), - [anon_sym_return] = ACTIONS(2621), - [anon_sym_throw] = ACTIONS(2621), - [anon_sym_case] = ACTIONS(2621), - [anon_sym_yield] = ACTIONS(2621), - [anon_sym_LBRACK] = ACTIONS(2619), - [sym_glimmer_opening_tag] = ACTIONS(2619), - [anon_sym_DQUOTE] = ACTIONS(2619), - [anon_sym_SQUOTE] = ACTIONS(2619), - [anon_sym_class] = ACTIONS(2621), - [anon_sym_async] = ACTIONS(2621), - [anon_sym_function] = ACTIONS(2621), - [anon_sym_new] = ACTIONS(2621), - [anon_sym_using] = ACTIONS(2621), - [anon_sym_PLUS] = ACTIONS(2621), - [anon_sym_DASH] = ACTIONS(2621), - [anon_sym_SLASH] = ACTIONS(2621), - [anon_sym_LT] = ACTIONS(2621), - [anon_sym_TILDE] = ACTIONS(2619), - [anon_sym_void] = ACTIONS(2621), - [anon_sym_delete] = ACTIONS(2621), - [anon_sym_PLUS_PLUS] = ACTIONS(2619), - [anon_sym_DASH_DASH] = ACTIONS(2619), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2619), - [sym_number] = ACTIONS(2619), - [sym_private_property_identifier] = ACTIONS(2619), - [sym_this] = ACTIONS(2621), - [sym_super] = ACTIONS(2621), - [sym_true] = ACTIONS(2621), - [sym_false] = ACTIONS(2621), - [sym_null] = ACTIONS(2621), - [sym_undefined] = ACTIONS(2621), - [anon_sym_AT] = ACTIONS(2619), - [anon_sym_static] = ACTIONS(2621), - [anon_sym_readonly] = ACTIONS(2621), - [anon_sym_get] = ACTIONS(2621), - [anon_sym_set] = ACTIONS(2621), - [anon_sym_declare] = ACTIONS(2621), - [anon_sym_public] = ACTIONS(2621), - [anon_sym_private] = ACTIONS(2621), - [anon_sym_protected] = ACTIONS(2621), - [anon_sym_override] = ACTIONS(2621), - [anon_sym_module] = ACTIONS(2621), - [anon_sym_any] = ACTIONS(2621), - [anon_sym_number] = ACTIONS(2621), - [anon_sym_boolean] = ACTIONS(2621), - [anon_sym_string] = ACTIONS(2621), - [anon_sym_symbol] = ACTIONS(2621), - [anon_sym_object] = ACTIONS(2621), - [anon_sym_abstract] = ACTIONS(2621), - [anon_sym_interface] = ACTIONS(2621), - [anon_sym_enum] = ACTIONS(2621), - [sym_html_comment] = ACTIONS(5), - }, - [812] = { - [ts_builtin_sym_end] = ACTIONS(2623), - [sym_identifier] = ACTIONS(2625), - [anon_sym_export] = ACTIONS(2625), - [anon_sym_default] = ACTIONS(2625), - [anon_sym_type] = ACTIONS(2625), - [anon_sym_namespace] = ACTIONS(2625), - [anon_sym_LBRACE] = ACTIONS(2623), - [anon_sym_RBRACE] = ACTIONS(2623), - [anon_sym_typeof] = ACTIONS(2625), - [anon_sym_import] = ACTIONS(2625), - [anon_sym_with] = ACTIONS(2625), - [anon_sym_var] = ACTIONS(2625), - [anon_sym_let] = ACTIONS(2625), - [anon_sym_const] = ACTIONS(2625), - [anon_sym_BANG] = ACTIONS(2623), - [anon_sym_else] = ACTIONS(2625), - [anon_sym_if] = ACTIONS(2625), - [anon_sym_switch] = ACTIONS(2625), - [anon_sym_for] = ACTIONS(2625), - [anon_sym_LPAREN] = ACTIONS(2623), - [anon_sym_SEMI] = ACTIONS(2623), - [anon_sym_await] = ACTIONS(2625), - [anon_sym_while] = ACTIONS(2625), - [anon_sym_do] = ACTIONS(2625), - [anon_sym_try] = ACTIONS(2625), - [anon_sym_break] = ACTIONS(2625), - [anon_sym_continue] = ACTIONS(2625), - [anon_sym_debugger] = ACTIONS(2625), - [anon_sym_return] = ACTIONS(2625), - [anon_sym_throw] = ACTIONS(2625), - [anon_sym_case] = ACTIONS(2625), - [anon_sym_yield] = ACTIONS(2625), - [anon_sym_LBRACK] = ACTIONS(2623), - [sym_glimmer_opening_tag] = ACTIONS(2623), - [anon_sym_DQUOTE] = ACTIONS(2623), - [anon_sym_SQUOTE] = ACTIONS(2623), - [anon_sym_class] = ACTIONS(2625), - [anon_sym_async] = ACTIONS(2625), - [anon_sym_function] = ACTIONS(2625), - [anon_sym_new] = ACTIONS(2625), - [anon_sym_using] = ACTIONS(2625), - [anon_sym_PLUS] = ACTIONS(2625), - [anon_sym_DASH] = ACTIONS(2625), - [anon_sym_SLASH] = ACTIONS(2625), - [anon_sym_LT] = ACTIONS(2625), - [anon_sym_TILDE] = ACTIONS(2623), - [anon_sym_void] = ACTIONS(2625), - [anon_sym_delete] = ACTIONS(2625), - [anon_sym_PLUS_PLUS] = ACTIONS(2623), - [anon_sym_DASH_DASH] = ACTIONS(2623), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2623), - [sym_number] = ACTIONS(2623), - [sym_private_property_identifier] = ACTIONS(2623), - [sym_this] = ACTIONS(2625), - [sym_super] = ACTIONS(2625), - [sym_true] = ACTIONS(2625), - [sym_false] = ACTIONS(2625), - [sym_null] = ACTIONS(2625), - [sym_undefined] = ACTIONS(2625), - [anon_sym_AT] = ACTIONS(2623), - [anon_sym_static] = ACTIONS(2625), - [anon_sym_readonly] = ACTIONS(2625), - [anon_sym_get] = ACTIONS(2625), - [anon_sym_set] = ACTIONS(2625), - [anon_sym_declare] = ACTIONS(2625), - [anon_sym_public] = ACTIONS(2625), - [anon_sym_private] = ACTIONS(2625), - [anon_sym_protected] = ACTIONS(2625), - [anon_sym_override] = ACTIONS(2625), - [anon_sym_module] = ACTIONS(2625), - [anon_sym_any] = ACTIONS(2625), - [anon_sym_number] = ACTIONS(2625), - [anon_sym_boolean] = ACTIONS(2625), - [anon_sym_string] = ACTIONS(2625), - [anon_sym_symbol] = ACTIONS(2625), - [anon_sym_object] = ACTIONS(2625), - [anon_sym_abstract] = ACTIONS(2625), - [anon_sym_interface] = ACTIONS(2625), - [anon_sym_enum] = ACTIONS(2625), + [812] = { + [ts_builtin_sym_end] = ACTIONS(2596), + [sym_identifier] = ACTIONS(2598), + [anon_sym_export] = ACTIONS(2598), + [anon_sym_default] = ACTIONS(2598), + [anon_sym_type] = ACTIONS(2598), + [anon_sym_namespace] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(2596), + [anon_sym_RBRACE] = ACTIONS(2596), + [anon_sym_typeof] = ACTIONS(2598), + [anon_sym_import] = ACTIONS(2598), + [anon_sym_with] = ACTIONS(2598), + [anon_sym_var] = ACTIONS(2598), + [anon_sym_let] = ACTIONS(2598), + [anon_sym_const] = ACTIONS(2598), + [anon_sym_BANG] = ACTIONS(2596), + [anon_sym_else] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(2598), + [anon_sym_switch] = ACTIONS(2598), + [anon_sym_for] = ACTIONS(2598), + [anon_sym_LPAREN] = ACTIONS(2596), + [anon_sym_SEMI] = ACTIONS(2596), + [anon_sym_await] = ACTIONS(2598), + [anon_sym_while] = ACTIONS(2598), + [anon_sym_do] = ACTIONS(2598), + [anon_sym_try] = ACTIONS(2598), + [anon_sym_break] = ACTIONS(2598), + [anon_sym_continue] = ACTIONS(2598), + [anon_sym_debugger] = ACTIONS(2598), + [anon_sym_return] = ACTIONS(2598), + [anon_sym_throw] = ACTIONS(2598), + [anon_sym_case] = ACTIONS(2598), + [anon_sym_yield] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(2596), + [anon_sym_DQUOTE] = ACTIONS(2596), + [anon_sym_SQUOTE] = ACTIONS(2596), + [anon_sym_class] = ACTIONS(2598), + [anon_sym_async] = ACTIONS(2598), + [anon_sym_function] = ACTIONS(2598), + [anon_sym_new] = ACTIONS(2598), + [anon_sym_using] = ACTIONS(2598), + [anon_sym_PLUS] = ACTIONS(2598), + [anon_sym_DASH] = ACTIONS(2598), + [anon_sym_SLASH] = ACTIONS(2598), + [anon_sym_LT] = ACTIONS(2596), + [anon_sym_TILDE] = ACTIONS(2596), + [anon_sym_void] = ACTIONS(2598), + [anon_sym_delete] = ACTIONS(2598), + [anon_sym_PLUS_PLUS] = ACTIONS(2596), + [anon_sym_DASH_DASH] = ACTIONS(2596), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2596), + [sym_number] = ACTIONS(2596), + [sym_private_property_identifier] = ACTIONS(2596), + [sym_this] = ACTIONS(2598), + [sym_super] = ACTIONS(2598), + [sym_true] = ACTIONS(2598), + [sym_false] = ACTIONS(2598), + [sym_null] = ACTIONS(2598), + [sym_undefined] = ACTIONS(2598), + [anon_sym_AT] = ACTIONS(2596), + [anon_sym_static] = ACTIONS(2598), + [anon_sym_readonly] = ACTIONS(2598), + [anon_sym_get] = ACTIONS(2598), + [anon_sym_set] = ACTIONS(2598), + [anon_sym_declare] = ACTIONS(2598), + [anon_sym_public] = ACTIONS(2598), + [anon_sym_private] = ACTIONS(2598), + [anon_sym_protected] = ACTIONS(2598), + [anon_sym_override] = ACTIONS(2598), + [anon_sym_module] = ACTIONS(2598), + [anon_sym_any] = ACTIONS(2598), + [anon_sym_number] = ACTIONS(2598), + [anon_sym_boolean] = ACTIONS(2598), + [anon_sym_string] = ACTIONS(2598), + [anon_sym_symbol] = ACTIONS(2598), + [anon_sym_object] = ACTIONS(2598), + [anon_sym_abstract] = ACTIONS(2598), + [anon_sym_interface] = ACTIONS(2598), + [anon_sym_enum] = ACTIONS(2598), [sym_html_comment] = ACTIONS(5), }, [813] = { - [ts_builtin_sym_end] = ACTIONS(2627), - [sym_identifier] = ACTIONS(2629), - [anon_sym_export] = ACTIONS(2629), - [anon_sym_default] = ACTIONS(2629), - [anon_sym_type] = ACTIONS(2629), - [anon_sym_namespace] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(2627), - [anon_sym_RBRACE] = ACTIONS(2627), - [anon_sym_typeof] = ACTIONS(2629), - [anon_sym_import] = ACTIONS(2629), - [anon_sym_with] = ACTIONS(2629), - [anon_sym_var] = ACTIONS(2629), - [anon_sym_let] = ACTIONS(2629), - [anon_sym_const] = ACTIONS(2629), - [anon_sym_BANG] = ACTIONS(2627), - [anon_sym_else] = ACTIONS(2629), - [anon_sym_if] = ACTIONS(2629), - [anon_sym_switch] = ACTIONS(2629), - [anon_sym_for] = ACTIONS(2629), - [anon_sym_LPAREN] = ACTIONS(2627), - [anon_sym_SEMI] = ACTIONS(2627), - [anon_sym_await] = ACTIONS(2629), - [anon_sym_while] = ACTIONS(2629), - [anon_sym_do] = ACTIONS(2629), - [anon_sym_try] = ACTIONS(2629), - [anon_sym_break] = ACTIONS(2629), - [anon_sym_continue] = ACTIONS(2629), - [anon_sym_debugger] = ACTIONS(2629), - [anon_sym_return] = ACTIONS(2629), - [anon_sym_throw] = ACTIONS(2629), - [anon_sym_case] = ACTIONS(2629), - [anon_sym_yield] = ACTIONS(2629), - [anon_sym_LBRACK] = ACTIONS(2627), - [sym_glimmer_opening_tag] = ACTIONS(2627), - [anon_sym_DQUOTE] = ACTIONS(2627), - [anon_sym_SQUOTE] = ACTIONS(2627), - [anon_sym_class] = ACTIONS(2629), - [anon_sym_async] = ACTIONS(2629), - [anon_sym_function] = ACTIONS(2629), - [anon_sym_new] = ACTIONS(2629), - [anon_sym_using] = ACTIONS(2629), - [anon_sym_PLUS] = ACTIONS(2629), - [anon_sym_DASH] = ACTIONS(2629), - [anon_sym_SLASH] = ACTIONS(2629), - [anon_sym_LT] = ACTIONS(2629), - [anon_sym_TILDE] = ACTIONS(2627), - [anon_sym_void] = ACTIONS(2629), - [anon_sym_delete] = ACTIONS(2629), - [anon_sym_PLUS_PLUS] = ACTIONS(2627), - [anon_sym_DASH_DASH] = ACTIONS(2627), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2627), - [sym_number] = ACTIONS(2627), - [sym_private_property_identifier] = ACTIONS(2627), - [sym_this] = ACTIONS(2629), - [sym_super] = ACTIONS(2629), - [sym_true] = ACTIONS(2629), - [sym_false] = ACTIONS(2629), - [sym_null] = ACTIONS(2629), - [sym_undefined] = ACTIONS(2629), - [anon_sym_AT] = ACTIONS(2627), - [anon_sym_static] = ACTIONS(2629), - [anon_sym_readonly] = ACTIONS(2629), - [anon_sym_get] = ACTIONS(2629), - [anon_sym_set] = ACTIONS(2629), - [anon_sym_declare] = ACTIONS(2629), - [anon_sym_public] = ACTIONS(2629), - [anon_sym_private] = ACTIONS(2629), - [anon_sym_protected] = ACTIONS(2629), - [anon_sym_override] = ACTIONS(2629), - [anon_sym_module] = ACTIONS(2629), - [anon_sym_any] = ACTIONS(2629), - [anon_sym_number] = ACTIONS(2629), - [anon_sym_boolean] = ACTIONS(2629), - [anon_sym_string] = ACTIONS(2629), - [anon_sym_symbol] = ACTIONS(2629), - [anon_sym_object] = ACTIONS(2629), - [anon_sym_abstract] = ACTIONS(2629), - [anon_sym_interface] = ACTIONS(2629), - [anon_sym_enum] = ACTIONS(2629), + [ts_builtin_sym_end] = ACTIONS(2600), + [sym_identifier] = ACTIONS(2602), + [anon_sym_export] = ACTIONS(2602), + [anon_sym_default] = ACTIONS(2602), + [anon_sym_type] = ACTIONS(2602), + [anon_sym_namespace] = ACTIONS(2602), + [anon_sym_LBRACE] = ACTIONS(2600), + [anon_sym_RBRACE] = ACTIONS(2600), + [anon_sym_typeof] = ACTIONS(2602), + [anon_sym_import] = ACTIONS(2602), + [anon_sym_with] = ACTIONS(2602), + [anon_sym_var] = ACTIONS(2602), + [anon_sym_let] = ACTIONS(2602), + [anon_sym_const] = ACTIONS(2602), + [anon_sym_BANG] = ACTIONS(2600), + [anon_sym_else] = ACTIONS(2602), + [anon_sym_if] = ACTIONS(2602), + [anon_sym_switch] = ACTIONS(2602), + [anon_sym_for] = ACTIONS(2602), + [anon_sym_LPAREN] = ACTIONS(2600), + [anon_sym_SEMI] = ACTIONS(2600), + [anon_sym_await] = ACTIONS(2602), + [anon_sym_while] = ACTIONS(2602), + [anon_sym_do] = ACTIONS(2602), + [anon_sym_try] = ACTIONS(2602), + [anon_sym_break] = ACTIONS(2602), + [anon_sym_continue] = ACTIONS(2602), + [anon_sym_debugger] = ACTIONS(2602), + [anon_sym_return] = ACTIONS(2602), + [anon_sym_throw] = ACTIONS(2602), + [anon_sym_case] = ACTIONS(2602), + [anon_sym_yield] = ACTIONS(2602), + [anon_sym_LBRACK] = ACTIONS(2600), + [anon_sym_DQUOTE] = ACTIONS(2600), + [anon_sym_SQUOTE] = ACTIONS(2600), + [anon_sym_class] = ACTIONS(2602), + [anon_sym_async] = ACTIONS(2602), + [anon_sym_function] = ACTIONS(2602), + [anon_sym_new] = ACTIONS(2602), + [anon_sym_using] = ACTIONS(2602), + [anon_sym_PLUS] = ACTIONS(2602), + [anon_sym_DASH] = ACTIONS(2602), + [anon_sym_SLASH] = ACTIONS(2602), + [anon_sym_LT] = ACTIONS(2600), + [anon_sym_TILDE] = ACTIONS(2600), + [anon_sym_void] = ACTIONS(2602), + [anon_sym_delete] = ACTIONS(2602), + [anon_sym_PLUS_PLUS] = ACTIONS(2600), + [anon_sym_DASH_DASH] = ACTIONS(2600), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2600), + [sym_number] = ACTIONS(2600), + [sym_private_property_identifier] = ACTIONS(2600), + [sym_this] = ACTIONS(2602), + [sym_super] = ACTIONS(2602), + [sym_true] = ACTIONS(2602), + [sym_false] = ACTIONS(2602), + [sym_null] = ACTIONS(2602), + [sym_undefined] = ACTIONS(2602), + [anon_sym_AT] = ACTIONS(2600), + [anon_sym_static] = ACTIONS(2602), + [anon_sym_readonly] = ACTIONS(2602), + [anon_sym_get] = ACTIONS(2602), + [anon_sym_set] = ACTIONS(2602), + [anon_sym_declare] = ACTIONS(2602), + [anon_sym_public] = ACTIONS(2602), + [anon_sym_private] = ACTIONS(2602), + [anon_sym_protected] = ACTIONS(2602), + [anon_sym_override] = ACTIONS(2602), + [anon_sym_module] = ACTIONS(2602), + [anon_sym_any] = ACTIONS(2602), + [anon_sym_number] = ACTIONS(2602), + [anon_sym_boolean] = ACTIONS(2602), + [anon_sym_string] = ACTIONS(2602), + [anon_sym_symbol] = ACTIONS(2602), + [anon_sym_object] = ACTIONS(2602), + [anon_sym_abstract] = ACTIONS(2602), + [anon_sym_interface] = ACTIONS(2602), + [anon_sym_enum] = ACTIONS(2602), [sym_html_comment] = ACTIONS(5), }, [814] = { - [ts_builtin_sym_end] = ACTIONS(2631), - [sym_identifier] = ACTIONS(2633), - [anon_sym_export] = ACTIONS(2633), - [anon_sym_default] = ACTIONS(2633), - [anon_sym_type] = ACTIONS(2633), - [anon_sym_namespace] = ACTIONS(2633), - [anon_sym_LBRACE] = ACTIONS(2631), - [anon_sym_RBRACE] = ACTIONS(2631), - [anon_sym_typeof] = ACTIONS(2633), - [anon_sym_import] = ACTIONS(2633), - [anon_sym_with] = ACTIONS(2633), - [anon_sym_var] = ACTIONS(2633), - [anon_sym_let] = ACTIONS(2633), - [anon_sym_const] = ACTIONS(2633), - [anon_sym_BANG] = ACTIONS(2631), - [anon_sym_else] = ACTIONS(2633), - [anon_sym_if] = ACTIONS(2633), - [anon_sym_switch] = ACTIONS(2633), - [anon_sym_for] = ACTIONS(2633), - [anon_sym_LPAREN] = ACTIONS(2631), - [anon_sym_SEMI] = ACTIONS(2631), - [anon_sym_await] = ACTIONS(2633), - [anon_sym_while] = ACTIONS(2633), - [anon_sym_do] = ACTIONS(2633), - [anon_sym_try] = ACTIONS(2633), - [anon_sym_break] = ACTIONS(2633), - [anon_sym_continue] = ACTIONS(2633), - [anon_sym_debugger] = ACTIONS(2633), - [anon_sym_return] = ACTIONS(2633), - [anon_sym_throw] = ACTIONS(2633), - [anon_sym_case] = ACTIONS(2633), - [anon_sym_yield] = ACTIONS(2633), - [anon_sym_LBRACK] = ACTIONS(2631), - [sym_glimmer_opening_tag] = ACTIONS(2631), - [anon_sym_DQUOTE] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2631), - [anon_sym_class] = ACTIONS(2633), - [anon_sym_async] = ACTIONS(2633), - [anon_sym_function] = ACTIONS(2633), - [anon_sym_new] = ACTIONS(2633), - [anon_sym_using] = ACTIONS(2633), - [anon_sym_PLUS] = ACTIONS(2633), - [anon_sym_DASH] = ACTIONS(2633), - [anon_sym_SLASH] = ACTIONS(2633), - [anon_sym_LT] = ACTIONS(2633), - [anon_sym_TILDE] = ACTIONS(2631), - [anon_sym_void] = ACTIONS(2633), - [anon_sym_delete] = ACTIONS(2633), - [anon_sym_PLUS_PLUS] = ACTIONS(2631), - [anon_sym_DASH_DASH] = ACTIONS(2631), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2631), - [sym_number] = ACTIONS(2631), - [sym_private_property_identifier] = ACTIONS(2631), - [sym_this] = ACTIONS(2633), - [sym_super] = ACTIONS(2633), - [sym_true] = ACTIONS(2633), - [sym_false] = ACTIONS(2633), - [sym_null] = ACTIONS(2633), - [sym_undefined] = ACTIONS(2633), - [anon_sym_AT] = ACTIONS(2631), - [anon_sym_static] = ACTIONS(2633), - [anon_sym_readonly] = ACTIONS(2633), - [anon_sym_get] = ACTIONS(2633), - [anon_sym_set] = ACTIONS(2633), - [anon_sym_declare] = ACTIONS(2633), - [anon_sym_public] = ACTIONS(2633), - [anon_sym_private] = ACTIONS(2633), - [anon_sym_protected] = ACTIONS(2633), - [anon_sym_override] = ACTIONS(2633), - [anon_sym_module] = ACTIONS(2633), - [anon_sym_any] = ACTIONS(2633), - [anon_sym_number] = ACTIONS(2633), - [anon_sym_boolean] = ACTIONS(2633), - [anon_sym_string] = ACTIONS(2633), - [anon_sym_symbol] = ACTIONS(2633), - [anon_sym_object] = ACTIONS(2633), - [anon_sym_abstract] = ACTIONS(2633), - [anon_sym_interface] = ACTIONS(2633), - [anon_sym_enum] = ACTIONS(2633), + [ts_builtin_sym_end] = ACTIONS(2604), + [sym_identifier] = ACTIONS(2606), + [anon_sym_export] = ACTIONS(2606), + [anon_sym_default] = ACTIONS(2606), + [anon_sym_type] = ACTIONS(2606), + [anon_sym_namespace] = ACTIONS(2606), + [anon_sym_LBRACE] = ACTIONS(2604), + [anon_sym_RBRACE] = ACTIONS(2604), + [anon_sym_typeof] = ACTIONS(2606), + [anon_sym_import] = ACTIONS(2606), + [anon_sym_with] = ACTIONS(2606), + [anon_sym_var] = ACTIONS(2606), + [anon_sym_let] = ACTIONS(2606), + [anon_sym_const] = ACTIONS(2606), + [anon_sym_BANG] = ACTIONS(2604), + [anon_sym_else] = ACTIONS(2606), + [anon_sym_if] = ACTIONS(2606), + [anon_sym_switch] = ACTIONS(2606), + [anon_sym_for] = ACTIONS(2606), + [anon_sym_LPAREN] = ACTIONS(2604), + [anon_sym_SEMI] = ACTIONS(2604), + [anon_sym_await] = ACTIONS(2606), + [anon_sym_while] = ACTIONS(2606), + [anon_sym_do] = ACTIONS(2606), + [anon_sym_try] = ACTIONS(2606), + [anon_sym_break] = ACTIONS(2606), + [anon_sym_continue] = ACTIONS(2606), + [anon_sym_debugger] = ACTIONS(2606), + [anon_sym_return] = ACTIONS(2606), + [anon_sym_throw] = ACTIONS(2606), + [anon_sym_case] = ACTIONS(2606), + [anon_sym_yield] = ACTIONS(2606), + [anon_sym_LBRACK] = ACTIONS(2604), + [anon_sym_DQUOTE] = ACTIONS(2604), + [anon_sym_SQUOTE] = ACTIONS(2604), + [anon_sym_class] = ACTIONS(2606), + [anon_sym_async] = ACTIONS(2606), + [anon_sym_function] = ACTIONS(2606), + [anon_sym_new] = ACTIONS(2606), + [anon_sym_using] = ACTIONS(2606), + [anon_sym_PLUS] = ACTIONS(2606), + [anon_sym_DASH] = ACTIONS(2606), + [anon_sym_SLASH] = ACTIONS(2606), + [anon_sym_LT] = ACTIONS(2604), + [anon_sym_TILDE] = ACTIONS(2604), + [anon_sym_void] = ACTIONS(2606), + [anon_sym_delete] = ACTIONS(2606), + [anon_sym_PLUS_PLUS] = ACTIONS(2604), + [anon_sym_DASH_DASH] = ACTIONS(2604), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2604), + [sym_number] = ACTIONS(2604), + [sym_private_property_identifier] = ACTIONS(2604), + [sym_this] = ACTIONS(2606), + [sym_super] = ACTIONS(2606), + [sym_true] = ACTIONS(2606), + [sym_false] = ACTIONS(2606), + [sym_null] = ACTIONS(2606), + [sym_undefined] = ACTIONS(2606), + [anon_sym_AT] = ACTIONS(2604), + [anon_sym_static] = ACTIONS(2606), + [anon_sym_readonly] = ACTIONS(2606), + [anon_sym_get] = ACTIONS(2606), + [anon_sym_set] = ACTIONS(2606), + [anon_sym_declare] = ACTIONS(2606), + [anon_sym_public] = ACTIONS(2606), + [anon_sym_private] = ACTIONS(2606), + [anon_sym_protected] = ACTIONS(2606), + [anon_sym_override] = ACTIONS(2606), + [anon_sym_module] = ACTIONS(2606), + [anon_sym_any] = ACTIONS(2606), + [anon_sym_number] = ACTIONS(2606), + [anon_sym_boolean] = ACTIONS(2606), + [anon_sym_string] = ACTIONS(2606), + [anon_sym_symbol] = ACTIONS(2606), + [anon_sym_object] = ACTIONS(2606), + [anon_sym_abstract] = ACTIONS(2606), + [anon_sym_interface] = ACTIONS(2606), + [anon_sym_enum] = ACTIONS(2606), [sym_html_comment] = ACTIONS(5), }, [815] = { - [ts_builtin_sym_end] = ACTIONS(2635), - [sym_identifier] = ACTIONS(2637), - [anon_sym_export] = ACTIONS(2637), - [anon_sym_default] = ACTIONS(2637), - [anon_sym_type] = ACTIONS(2637), - [anon_sym_namespace] = ACTIONS(2637), - [anon_sym_LBRACE] = ACTIONS(2635), - [anon_sym_RBRACE] = ACTIONS(2635), - [anon_sym_typeof] = ACTIONS(2637), - [anon_sym_import] = ACTIONS(2637), - [anon_sym_with] = ACTIONS(2637), - [anon_sym_var] = ACTIONS(2637), - [anon_sym_let] = ACTIONS(2637), - [anon_sym_const] = ACTIONS(2637), - [anon_sym_BANG] = ACTIONS(2635), - [anon_sym_else] = ACTIONS(2637), - [anon_sym_if] = ACTIONS(2637), - [anon_sym_switch] = ACTIONS(2637), - [anon_sym_for] = ACTIONS(2637), - [anon_sym_LPAREN] = ACTIONS(2635), - [anon_sym_SEMI] = ACTIONS(2635), - [anon_sym_await] = ACTIONS(2637), - [anon_sym_while] = ACTIONS(2637), - [anon_sym_do] = ACTIONS(2637), - [anon_sym_try] = ACTIONS(2637), - [anon_sym_break] = ACTIONS(2637), - [anon_sym_continue] = ACTIONS(2637), - [anon_sym_debugger] = ACTIONS(2637), - [anon_sym_return] = ACTIONS(2637), - [anon_sym_throw] = ACTIONS(2637), - [anon_sym_case] = ACTIONS(2637), - [anon_sym_yield] = ACTIONS(2637), - [anon_sym_LBRACK] = ACTIONS(2635), - [sym_glimmer_opening_tag] = ACTIONS(2635), - [anon_sym_DQUOTE] = ACTIONS(2635), - [anon_sym_SQUOTE] = ACTIONS(2635), - [anon_sym_class] = ACTIONS(2637), - [anon_sym_async] = ACTIONS(2637), - [anon_sym_function] = ACTIONS(2637), - [anon_sym_new] = ACTIONS(2637), - [anon_sym_using] = ACTIONS(2637), - [anon_sym_PLUS] = ACTIONS(2637), - [anon_sym_DASH] = ACTIONS(2637), - [anon_sym_SLASH] = ACTIONS(2637), - [anon_sym_LT] = ACTIONS(2637), - [anon_sym_TILDE] = ACTIONS(2635), - [anon_sym_void] = ACTIONS(2637), - [anon_sym_delete] = ACTIONS(2637), - [anon_sym_PLUS_PLUS] = ACTIONS(2635), - [anon_sym_DASH_DASH] = ACTIONS(2635), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2635), - [sym_number] = ACTIONS(2635), - [sym_private_property_identifier] = ACTIONS(2635), - [sym_this] = ACTIONS(2637), - [sym_super] = ACTIONS(2637), - [sym_true] = ACTIONS(2637), - [sym_false] = ACTIONS(2637), - [sym_null] = ACTIONS(2637), - [sym_undefined] = ACTIONS(2637), - [anon_sym_AT] = ACTIONS(2635), - [anon_sym_static] = ACTIONS(2637), - [anon_sym_readonly] = ACTIONS(2637), - [anon_sym_get] = ACTIONS(2637), - [anon_sym_set] = ACTIONS(2637), - [anon_sym_declare] = ACTIONS(2637), - [anon_sym_public] = ACTIONS(2637), - [anon_sym_private] = ACTIONS(2637), - [anon_sym_protected] = ACTIONS(2637), - [anon_sym_override] = ACTIONS(2637), - [anon_sym_module] = ACTIONS(2637), - [anon_sym_any] = ACTIONS(2637), - [anon_sym_number] = ACTIONS(2637), - [anon_sym_boolean] = ACTIONS(2637), - [anon_sym_string] = ACTIONS(2637), - [anon_sym_symbol] = ACTIONS(2637), - [anon_sym_object] = ACTIONS(2637), - [anon_sym_abstract] = ACTIONS(2637), - [anon_sym_interface] = ACTIONS(2637), - [anon_sym_enum] = ACTIONS(2637), + [ts_builtin_sym_end] = ACTIONS(2608), + [sym_identifier] = ACTIONS(2610), + [anon_sym_export] = ACTIONS(2610), + [anon_sym_default] = ACTIONS(2610), + [anon_sym_type] = ACTIONS(2610), + [anon_sym_namespace] = ACTIONS(2610), + [anon_sym_LBRACE] = ACTIONS(2608), + [anon_sym_RBRACE] = ACTIONS(2608), + [anon_sym_typeof] = ACTIONS(2610), + [anon_sym_import] = ACTIONS(2610), + [anon_sym_with] = ACTIONS(2610), + [anon_sym_var] = ACTIONS(2610), + [anon_sym_let] = ACTIONS(2610), + [anon_sym_const] = ACTIONS(2610), + [anon_sym_BANG] = ACTIONS(2608), + [anon_sym_else] = ACTIONS(2610), + [anon_sym_if] = ACTIONS(2610), + [anon_sym_switch] = ACTIONS(2610), + [anon_sym_for] = ACTIONS(2610), + [anon_sym_LPAREN] = ACTIONS(2608), + [anon_sym_SEMI] = ACTIONS(2608), + [anon_sym_await] = ACTIONS(2610), + [anon_sym_while] = ACTIONS(2610), + [anon_sym_do] = ACTIONS(2610), + [anon_sym_try] = ACTIONS(2610), + [anon_sym_break] = ACTIONS(2610), + [anon_sym_continue] = ACTIONS(2610), + [anon_sym_debugger] = ACTIONS(2610), + [anon_sym_return] = ACTIONS(2610), + [anon_sym_throw] = ACTIONS(2610), + [anon_sym_case] = ACTIONS(2610), + [anon_sym_yield] = ACTIONS(2610), + [anon_sym_LBRACK] = ACTIONS(2608), + [anon_sym_DQUOTE] = ACTIONS(2608), + [anon_sym_SQUOTE] = ACTIONS(2608), + [anon_sym_class] = ACTIONS(2610), + [anon_sym_async] = ACTIONS(2610), + [anon_sym_function] = ACTIONS(2610), + [anon_sym_new] = ACTIONS(2610), + [anon_sym_using] = ACTIONS(2610), + [anon_sym_PLUS] = ACTIONS(2610), + [anon_sym_DASH] = ACTIONS(2610), + [anon_sym_SLASH] = ACTIONS(2610), + [anon_sym_LT] = ACTIONS(2608), + [anon_sym_TILDE] = ACTIONS(2608), + [anon_sym_void] = ACTIONS(2610), + [anon_sym_delete] = ACTIONS(2610), + [anon_sym_PLUS_PLUS] = ACTIONS(2608), + [anon_sym_DASH_DASH] = ACTIONS(2608), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2608), + [sym_number] = ACTIONS(2608), + [sym_private_property_identifier] = ACTIONS(2608), + [sym_this] = ACTIONS(2610), + [sym_super] = ACTIONS(2610), + [sym_true] = ACTIONS(2610), + [sym_false] = ACTIONS(2610), + [sym_null] = ACTIONS(2610), + [sym_undefined] = ACTIONS(2610), + [anon_sym_AT] = ACTIONS(2608), + [anon_sym_static] = ACTIONS(2610), + [anon_sym_readonly] = ACTIONS(2610), + [anon_sym_get] = ACTIONS(2610), + [anon_sym_set] = ACTIONS(2610), + [anon_sym_declare] = ACTIONS(2610), + [anon_sym_public] = ACTIONS(2610), + [anon_sym_private] = ACTIONS(2610), + [anon_sym_protected] = ACTIONS(2610), + [anon_sym_override] = ACTIONS(2610), + [anon_sym_module] = ACTIONS(2610), + [anon_sym_any] = ACTIONS(2610), + [anon_sym_number] = ACTIONS(2610), + [anon_sym_boolean] = ACTIONS(2610), + [anon_sym_string] = ACTIONS(2610), + [anon_sym_symbol] = ACTIONS(2610), + [anon_sym_object] = ACTIONS(2610), + [anon_sym_abstract] = ACTIONS(2610), + [anon_sym_interface] = ACTIONS(2610), + [anon_sym_enum] = ACTIONS(2610), [sym_html_comment] = ACTIONS(5), }, [816] = { - [ts_builtin_sym_end] = ACTIONS(2639), - [sym_identifier] = ACTIONS(2641), - [anon_sym_export] = ACTIONS(2641), - [anon_sym_default] = ACTIONS(2641), - [anon_sym_type] = ACTIONS(2641), - [anon_sym_namespace] = ACTIONS(2641), - [anon_sym_LBRACE] = ACTIONS(2639), - [anon_sym_RBRACE] = ACTIONS(2639), - [anon_sym_typeof] = ACTIONS(2641), - [anon_sym_import] = ACTIONS(2641), - [anon_sym_with] = ACTIONS(2641), - [anon_sym_var] = ACTIONS(2641), - [anon_sym_let] = ACTIONS(2641), - [anon_sym_const] = ACTIONS(2641), - [anon_sym_BANG] = ACTIONS(2639), - [anon_sym_else] = ACTIONS(2641), - [anon_sym_if] = ACTIONS(2641), - [anon_sym_switch] = ACTIONS(2641), - [anon_sym_for] = ACTIONS(2641), - [anon_sym_LPAREN] = ACTIONS(2639), - [anon_sym_SEMI] = ACTIONS(2639), - [anon_sym_await] = ACTIONS(2641), - [anon_sym_while] = ACTIONS(2641), - [anon_sym_do] = ACTIONS(2641), - [anon_sym_try] = ACTIONS(2641), - [anon_sym_break] = ACTIONS(2641), - [anon_sym_continue] = ACTIONS(2641), - [anon_sym_debugger] = ACTIONS(2641), - [anon_sym_return] = ACTIONS(2641), - [anon_sym_throw] = ACTIONS(2641), - [anon_sym_case] = ACTIONS(2641), - [anon_sym_yield] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2639), - [sym_glimmer_opening_tag] = ACTIONS(2639), - [anon_sym_DQUOTE] = ACTIONS(2639), - [anon_sym_SQUOTE] = ACTIONS(2639), - [anon_sym_class] = ACTIONS(2641), - [anon_sym_async] = ACTIONS(2641), - [anon_sym_function] = ACTIONS(2641), - [anon_sym_new] = ACTIONS(2641), - [anon_sym_using] = ACTIONS(2641), - [anon_sym_PLUS] = ACTIONS(2641), - [anon_sym_DASH] = ACTIONS(2641), - [anon_sym_SLASH] = ACTIONS(2641), - [anon_sym_LT] = ACTIONS(2641), - [anon_sym_TILDE] = ACTIONS(2639), - [anon_sym_void] = ACTIONS(2641), - [anon_sym_delete] = ACTIONS(2641), - [anon_sym_PLUS_PLUS] = ACTIONS(2639), - [anon_sym_DASH_DASH] = ACTIONS(2639), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2639), - [sym_number] = ACTIONS(2639), - [sym_private_property_identifier] = ACTIONS(2639), - [sym_this] = ACTIONS(2641), - [sym_super] = ACTIONS(2641), - [sym_true] = ACTIONS(2641), - [sym_false] = ACTIONS(2641), - [sym_null] = ACTIONS(2641), - [sym_undefined] = ACTIONS(2641), - [anon_sym_AT] = ACTIONS(2639), - [anon_sym_static] = ACTIONS(2641), - [anon_sym_readonly] = ACTIONS(2641), - [anon_sym_get] = ACTIONS(2641), - [anon_sym_set] = ACTIONS(2641), - [anon_sym_declare] = ACTIONS(2641), - [anon_sym_public] = ACTIONS(2641), - [anon_sym_private] = ACTIONS(2641), - [anon_sym_protected] = ACTIONS(2641), - [anon_sym_override] = ACTIONS(2641), - [anon_sym_module] = ACTIONS(2641), - [anon_sym_any] = ACTIONS(2641), - [anon_sym_number] = ACTIONS(2641), - [anon_sym_boolean] = ACTIONS(2641), - [anon_sym_string] = ACTIONS(2641), - [anon_sym_symbol] = ACTIONS(2641), - [anon_sym_object] = ACTIONS(2641), - [anon_sym_abstract] = ACTIONS(2641), - [anon_sym_interface] = ACTIONS(2641), - [anon_sym_enum] = ACTIONS(2641), + [ts_builtin_sym_end] = ACTIONS(2608), + [sym_identifier] = ACTIONS(2610), + [anon_sym_export] = ACTIONS(2610), + [anon_sym_default] = ACTIONS(2610), + [anon_sym_type] = ACTIONS(2610), + [anon_sym_namespace] = ACTIONS(2610), + [anon_sym_LBRACE] = ACTIONS(2608), + [anon_sym_RBRACE] = ACTIONS(2608), + [anon_sym_typeof] = ACTIONS(2610), + [anon_sym_import] = ACTIONS(2610), + [anon_sym_with] = ACTIONS(2610), + [anon_sym_var] = ACTIONS(2610), + [anon_sym_let] = ACTIONS(2610), + [anon_sym_const] = ACTIONS(2610), + [anon_sym_BANG] = ACTIONS(2608), + [anon_sym_else] = ACTIONS(2610), + [anon_sym_if] = ACTIONS(2610), + [anon_sym_switch] = ACTIONS(2610), + [anon_sym_for] = ACTIONS(2610), + [anon_sym_LPAREN] = ACTIONS(2608), + [anon_sym_SEMI] = ACTIONS(2608), + [anon_sym_await] = ACTIONS(2610), + [anon_sym_while] = ACTIONS(2610), + [anon_sym_do] = ACTIONS(2610), + [anon_sym_try] = ACTIONS(2610), + [anon_sym_break] = ACTIONS(2610), + [anon_sym_continue] = ACTIONS(2610), + [anon_sym_debugger] = ACTIONS(2610), + [anon_sym_return] = ACTIONS(2610), + [anon_sym_throw] = ACTIONS(2610), + [anon_sym_case] = ACTIONS(2610), + [anon_sym_yield] = ACTIONS(2610), + [anon_sym_LBRACK] = ACTIONS(2608), + [anon_sym_DQUOTE] = ACTIONS(2608), + [anon_sym_SQUOTE] = ACTIONS(2608), + [anon_sym_class] = ACTIONS(2610), + [anon_sym_async] = ACTIONS(2610), + [anon_sym_function] = ACTIONS(2610), + [anon_sym_new] = ACTIONS(2610), + [anon_sym_using] = ACTIONS(2610), + [anon_sym_PLUS] = ACTIONS(2610), + [anon_sym_DASH] = ACTIONS(2610), + [anon_sym_SLASH] = ACTIONS(2610), + [anon_sym_LT] = ACTIONS(2608), + [anon_sym_TILDE] = ACTIONS(2608), + [anon_sym_void] = ACTIONS(2610), + [anon_sym_delete] = ACTIONS(2610), + [anon_sym_PLUS_PLUS] = ACTIONS(2608), + [anon_sym_DASH_DASH] = ACTIONS(2608), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2608), + [sym_number] = ACTIONS(2608), + [sym_private_property_identifier] = ACTIONS(2608), + [sym_this] = ACTIONS(2610), + [sym_super] = ACTIONS(2610), + [sym_true] = ACTIONS(2610), + [sym_false] = ACTIONS(2610), + [sym_null] = ACTIONS(2610), + [sym_undefined] = ACTIONS(2610), + [anon_sym_AT] = ACTIONS(2608), + [anon_sym_static] = ACTIONS(2610), + [anon_sym_readonly] = ACTIONS(2610), + [anon_sym_get] = ACTIONS(2610), + [anon_sym_set] = ACTIONS(2610), + [anon_sym_declare] = ACTIONS(2610), + [anon_sym_public] = ACTIONS(2610), + [anon_sym_private] = ACTIONS(2610), + [anon_sym_protected] = ACTIONS(2610), + [anon_sym_override] = ACTIONS(2610), + [anon_sym_module] = ACTIONS(2610), + [anon_sym_any] = ACTIONS(2610), + [anon_sym_number] = ACTIONS(2610), + [anon_sym_boolean] = ACTIONS(2610), + [anon_sym_string] = ACTIONS(2610), + [anon_sym_symbol] = ACTIONS(2610), + [anon_sym_object] = ACTIONS(2610), + [anon_sym_abstract] = ACTIONS(2610), + [anon_sym_interface] = ACTIONS(2610), + [anon_sym_enum] = ACTIONS(2610), [sym_html_comment] = ACTIONS(5), }, [817] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_rest_pattern] = STATE(5529), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3817), - [sym_tuple_parameter] = STATE(4645), - [sym_optional_tuple_parameter] = STATE(4645), - [sym_optional_type] = STATE(4645), - [sym_rest_type] = STATE(4645), - [sym__tuple_type_member] = STATE(4645), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(2527), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_COMMA] = ACTIONS(2643), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_RBRACK] = ACTIONS(2645), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [ts_builtin_sym_end] = ACTIONS(2612), + [sym_identifier] = ACTIONS(2614), + [anon_sym_export] = ACTIONS(2614), + [anon_sym_default] = ACTIONS(2614), + [anon_sym_type] = ACTIONS(2614), + [anon_sym_namespace] = ACTIONS(2614), + [anon_sym_LBRACE] = ACTIONS(2612), + [anon_sym_RBRACE] = ACTIONS(2612), + [anon_sym_typeof] = ACTIONS(2614), + [anon_sym_import] = ACTIONS(2614), + [anon_sym_with] = ACTIONS(2614), + [anon_sym_var] = ACTIONS(2614), + [anon_sym_let] = ACTIONS(2614), + [anon_sym_const] = ACTIONS(2614), + [anon_sym_BANG] = ACTIONS(2612), + [anon_sym_else] = ACTIONS(2614), + [anon_sym_if] = ACTIONS(2614), + [anon_sym_switch] = ACTIONS(2614), + [anon_sym_for] = ACTIONS(2614), + [anon_sym_LPAREN] = ACTIONS(2612), + [anon_sym_SEMI] = ACTIONS(2612), + [anon_sym_await] = ACTIONS(2614), + [anon_sym_while] = ACTIONS(2614), + [anon_sym_do] = ACTIONS(2614), + [anon_sym_try] = ACTIONS(2614), + [anon_sym_break] = ACTIONS(2614), + [anon_sym_continue] = ACTIONS(2614), + [anon_sym_debugger] = ACTIONS(2614), + [anon_sym_return] = ACTIONS(2614), + [anon_sym_throw] = ACTIONS(2614), + [anon_sym_case] = ACTIONS(2614), + [anon_sym_yield] = ACTIONS(2614), + [anon_sym_LBRACK] = ACTIONS(2612), + [anon_sym_DQUOTE] = ACTIONS(2612), + [anon_sym_SQUOTE] = ACTIONS(2612), + [anon_sym_class] = ACTIONS(2614), + [anon_sym_async] = ACTIONS(2614), + [anon_sym_function] = ACTIONS(2614), + [anon_sym_new] = ACTIONS(2614), + [anon_sym_using] = ACTIONS(2614), + [anon_sym_PLUS] = ACTIONS(2614), + [anon_sym_DASH] = ACTIONS(2614), + [anon_sym_SLASH] = ACTIONS(2614), + [anon_sym_LT] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(2612), + [anon_sym_void] = ACTIONS(2614), + [anon_sym_delete] = ACTIONS(2614), + [anon_sym_PLUS_PLUS] = ACTIONS(2612), + [anon_sym_DASH_DASH] = ACTIONS(2612), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2612), + [sym_number] = ACTIONS(2612), + [sym_private_property_identifier] = ACTIONS(2612), + [sym_this] = ACTIONS(2614), + [sym_super] = ACTIONS(2614), + [sym_true] = ACTIONS(2614), + [sym_false] = ACTIONS(2614), + [sym_null] = ACTIONS(2614), + [sym_undefined] = ACTIONS(2614), + [anon_sym_AT] = ACTIONS(2612), + [anon_sym_static] = ACTIONS(2614), + [anon_sym_readonly] = ACTIONS(2614), + [anon_sym_get] = ACTIONS(2614), + [anon_sym_set] = ACTIONS(2614), + [anon_sym_declare] = ACTIONS(2614), + [anon_sym_public] = ACTIONS(2614), + [anon_sym_private] = ACTIONS(2614), + [anon_sym_protected] = ACTIONS(2614), + [anon_sym_override] = ACTIONS(2614), + [anon_sym_module] = ACTIONS(2614), + [anon_sym_any] = ACTIONS(2614), + [anon_sym_number] = ACTIONS(2614), + [anon_sym_boolean] = ACTIONS(2614), + [anon_sym_string] = ACTIONS(2614), + [anon_sym_symbol] = ACTIONS(2614), + [anon_sym_object] = ACTIONS(2614), + [anon_sym_abstract] = ACTIONS(2614), + [anon_sym_interface] = ACTIONS(2614), + [anon_sym_enum] = ACTIONS(2614), [sym_html_comment] = ACTIONS(5), }, [818] = { - [ts_builtin_sym_end] = ACTIONS(2647), - [sym_identifier] = ACTIONS(2649), - [anon_sym_export] = ACTIONS(2649), - [anon_sym_default] = ACTIONS(2649), - [anon_sym_type] = ACTIONS(2649), - [anon_sym_namespace] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2647), - [anon_sym_RBRACE] = ACTIONS(2647), - [anon_sym_typeof] = ACTIONS(2649), - [anon_sym_import] = ACTIONS(2649), - [anon_sym_with] = ACTIONS(2649), - [anon_sym_var] = ACTIONS(2649), - [anon_sym_let] = ACTIONS(2649), - [anon_sym_const] = ACTIONS(2649), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_else] = ACTIONS(2649), - [anon_sym_if] = ACTIONS(2649), - [anon_sym_switch] = ACTIONS(2649), - [anon_sym_for] = ACTIONS(2649), - [anon_sym_LPAREN] = ACTIONS(2647), - [anon_sym_SEMI] = ACTIONS(2647), - [anon_sym_await] = ACTIONS(2649), - [anon_sym_while] = ACTIONS(2649), - [anon_sym_do] = ACTIONS(2649), - [anon_sym_try] = ACTIONS(2649), - [anon_sym_break] = ACTIONS(2649), - [anon_sym_continue] = ACTIONS(2649), - [anon_sym_debugger] = ACTIONS(2649), - [anon_sym_return] = ACTIONS(2649), - [anon_sym_throw] = ACTIONS(2649), - [anon_sym_case] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2649), - [anon_sym_LBRACK] = ACTIONS(2647), - [sym_glimmer_opening_tag] = ACTIONS(2647), - [anon_sym_DQUOTE] = ACTIONS(2647), - [anon_sym_SQUOTE] = ACTIONS(2647), - [anon_sym_class] = ACTIONS(2649), - [anon_sym_async] = ACTIONS(2649), - [anon_sym_function] = ACTIONS(2649), - [anon_sym_new] = ACTIONS(2649), - [anon_sym_using] = ACTIONS(2649), - [anon_sym_PLUS] = ACTIONS(2649), - [anon_sym_DASH] = ACTIONS(2649), - [anon_sym_SLASH] = ACTIONS(2649), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_void] = ACTIONS(2649), - [anon_sym_delete] = ACTIONS(2649), - [anon_sym_PLUS_PLUS] = ACTIONS(2647), - [anon_sym_DASH_DASH] = ACTIONS(2647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2647), - [sym_number] = ACTIONS(2647), - [sym_private_property_identifier] = ACTIONS(2647), - [sym_this] = ACTIONS(2649), - [sym_super] = ACTIONS(2649), - [sym_true] = ACTIONS(2649), - [sym_false] = ACTIONS(2649), - [sym_null] = ACTIONS(2649), - [sym_undefined] = ACTIONS(2649), - [anon_sym_AT] = ACTIONS(2647), - [anon_sym_static] = ACTIONS(2649), - [anon_sym_readonly] = ACTIONS(2649), - [anon_sym_get] = ACTIONS(2649), - [anon_sym_set] = ACTIONS(2649), - [anon_sym_declare] = ACTIONS(2649), - [anon_sym_public] = ACTIONS(2649), - [anon_sym_private] = ACTIONS(2649), - [anon_sym_protected] = ACTIONS(2649), - [anon_sym_override] = ACTIONS(2649), - [anon_sym_module] = ACTIONS(2649), - [anon_sym_any] = ACTIONS(2649), - [anon_sym_number] = ACTIONS(2649), - [anon_sym_boolean] = ACTIONS(2649), - [anon_sym_string] = ACTIONS(2649), - [anon_sym_symbol] = ACTIONS(2649), - [anon_sym_object] = ACTIONS(2649), - [anon_sym_abstract] = ACTIONS(2649), - [anon_sym_interface] = ACTIONS(2649), - [anon_sym_enum] = ACTIONS(2649), + [ts_builtin_sym_end] = ACTIONS(2616), + [sym_identifier] = ACTIONS(2618), + [anon_sym_export] = ACTIONS(2618), + [anon_sym_default] = ACTIONS(2618), + [anon_sym_type] = ACTIONS(2618), + [anon_sym_namespace] = ACTIONS(2618), + [anon_sym_LBRACE] = ACTIONS(2616), + [anon_sym_RBRACE] = ACTIONS(2616), + [anon_sym_typeof] = ACTIONS(2618), + [anon_sym_import] = ACTIONS(2618), + [anon_sym_with] = ACTIONS(2618), + [anon_sym_var] = ACTIONS(2618), + [anon_sym_let] = ACTIONS(2618), + [anon_sym_const] = ACTIONS(2618), + [anon_sym_BANG] = ACTIONS(2616), + [anon_sym_else] = ACTIONS(2618), + [anon_sym_if] = ACTIONS(2618), + [anon_sym_switch] = ACTIONS(2618), + [anon_sym_for] = ACTIONS(2618), + [anon_sym_LPAREN] = ACTIONS(2616), + [anon_sym_SEMI] = ACTIONS(2616), + [anon_sym_await] = ACTIONS(2618), + [anon_sym_while] = ACTIONS(2618), + [anon_sym_do] = ACTIONS(2618), + [anon_sym_try] = ACTIONS(2618), + [anon_sym_break] = ACTIONS(2618), + [anon_sym_continue] = ACTIONS(2618), + [anon_sym_debugger] = ACTIONS(2618), + [anon_sym_return] = ACTIONS(2618), + [anon_sym_throw] = ACTIONS(2618), + [anon_sym_case] = ACTIONS(2618), + [anon_sym_yield] = ACTIONS(2618), + [anon_sym_LBRACK] = ACTIONS(2616), + [anon_sym_DQUOTE] = ACTIONS(2616), + [anon_sym_SQUOTE] = ACTIONS(2616), + [anon_sym_class] = ACTIONS(2618), + [anon_sym_async] = ACTIONS(2618), + [anon_sym_function] = ACTIONS(2618), + [anon_sym_new] = ACTIONS(2618), + [anon_sym_using] = ACTIONS(2618), + [anon_sym_PLUS] = ACTIONS(2618), + [anon_sym_DASH] = ACTIONS(2618), + [anon_sym_SLASH] = ACTIONS(2618), + [anon_sym_LT] = ACTIONS(2616), + [anon_sym_TILDE] = ACTIONS(2616), + [anon_sym_void] = ACTIONS(2618), + [anon_sym_delete] = ACTIONS(2618), + [anon_sym_PLUS_PLUS] = ACTIONS(2616), + [anon_sym_DASH_DASH] = ACTIONS(2616), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2616), + [sym_number] = ACTIONS(2616), + [sym_private_property_identifier] = ACTIONS(2616), + [sym_this] = ACTIONS(2618), + [sym_super] = ACTIONS(2618), + [sym_true] = ACTIONS(2618), + [sym_false] = ACTIONS(2618), + [sym_null] = ACTIONS(2618), + [sym_undefined] = ACTIONS(2618), + [anon_sym_AT] = ACTIONS(2616), + [anon_sym_static] = ACTIONS(2618), + [anon_sym_readonly] = ACTIONS(2618), + [anon_sym_get] = ACTIONS(2618), + [anon_sym_set] = ACTIONS(2618), + [anon_sym_declare] = ACTIONS(2618), + [anon_sym_public] = ACTIONS(2618), + [anon_sym_private] = ACTIONS(2618), + [anon_sym_protected] = ACTIONS(2618), + [anon_sym_override] = ACTIONS(2618), + [anon_sym_module] = ACTIONS(2618), + [anon_sym_any] = ACTIONS(2618), + [anon_sym_number] = ACTIONS(2618), + [anon_sym_boolean] = ACTIONS(2618), + [anon_sym_string] = ACTIONS(2618), + [anon_sym_symbol] = ACTIONS(2618), + [anon_sym_object] = ACTIONS(2618), + [anon_sym_abstract] = ACTIONS(2618), + [anon_sym_interface] = ACTIONS(2618), + [anon_sym_enum] = ACTIONS(2618), [sym_html_comment] = ACTIONS(5), }, [819] = { - [ts_builtin_sym_end] = ACTIONS(2635), - [sym_identifier] = ACTIONS(2637), - [anon_sym_export] = ACTIONS(2637), - [anon_sym_default] = ACTIONS(2637), - [anon_sym_type] = ACTIONS(2637), - [anon_sym_namespace] = ACTIONS(2637), - [anon_sym_LBRACE] = ACTIONS(2635), - [anon_sym_RBRACE] = ACTIONS(2635), - [anon_sym_typeof] = ACTIONS(2637), - [anon_sym_import] = ACTIONS(2637), - [anon_sym_with] = ACTIONS(2637), - [anon_sym_var] = ACTIONS(2637), - [anon_sym_let] = ACTIONS(2637), - [anon_sym_const] = ACTIONS(2637), - [anon_sym_BANG] = ACTIONS(2635), - [anon_sym_else] = ACTIONS(2637), - [anon_sym_if] = ACTIONS(2637), - [anon_sym_switch] = ACTIONS(2637), - [anon_sym_for] = ACTIONS(2637), - [anon_sym_LPAREN] = ACTIONS(2635), - [anon_sym_SEMI] = ACTIONS(2635), - [anon_sym_await] = ACTIONS(2637), - [anon_sym_while] = ACTIONS(2637), - [anon_sym_do] = ACTIONS(2637), - [anon_sym_try] = ACTIONS(2637), - [anon_sym_break] = ACTIONS(2637), - [anon_sym_continue] = ACTIONS(2637), - [anon_sym_debugger] = ACTIONS(2637), - [anon_sym_return] = ACTIONS(2637), - [anon_sym_throw] = ACTIONS(2637), - [anon_sym_case] = ACTIONS(2637), - [anon_sym_yield] = ACTIONS(2637), - [anon_sym_LBRACK] = ACTIONS(2635), - [sym_glimmer_opening_tag] = ACTIONS(2635), - [anon_sym_DQUOTE] = ACTIONS(2635), - [anon_sym_SQUOTE] = ACTIONS(2635), - [anon_sym_class] = ACTIONS(2637), - [anon_sym_async] = ACTIONS(2637), - [anon_sym_function] = ACTIONS(2637), - [anon_sym_new] = ACTIONS(2637), - [anon_sym_using] = ACTIONS(2637), - [anon_sym_PLUS] = ACTIONS(2637), - [anon_sym_DASH] = ACTIONS(2637), - [anon_sym_SLASH] = ACTIONS(2637), - [anon_sym_LT] = ACTIONS(2637), - [anon_sym_TILDE] = ACTIONS(2635), - [anon_sym_void] = ACTIONS(2637), - [anon_sym_delete] = ACTIONS(2637), - [anon_sym_PLUS_PLUS] = ACTIONS(2635), - [anon_sym_DASH_DASH] = ACTIONS(2635), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2635), - [sym_number] = ACTIONS(2635), - [sym_private_property_identifier] = ACTIONS(2635), - [sym_this] = ACTIONS(2637), - [sym_super] = ACTIONS(2637), - [sym_true] = ACTIONS(2637), - [sym_false] = ACTIONS(2637), - [sym_null] = ACTIONS(2637), - [sym_undefined] = ACTIONS(2637), - [anon_sym_AT] = ACTIONS(2635), - [anon_sym_static] = ACTIONS(2637), - [anon_sym_readonly] = ACTIONS(2637), - [anon_sym_get] = ACTIONS(2637), - [anon_sym_set] = ACTIONS(2637), - [anon_sym_declare] = ACTIONS(2637), - [anon_sym_public] = ACTIONS(2637), - [anon_sym_private] = ACTIONS(2637), - [anon_sym_protected] = ACTIONS(2637), - [anon_sym_override] = ACTIONS(2637), - [anon_sym_module] = ACTIONS(2637), - [anon_sym_any] = ACTIONS(2637), - [anon_sym_number] = ACTIONS(2637), - [anon_sym_boolean] = ACTIONS(2637), - [anon_sym_string] = ACTIONS(2637), - [anon_sym_symbol] = ACTIONS(2637), - [anon_sym_object] = ACTIONS(2637), - [anon_sym_abstract] = ACTIONS(2637), - [anon_sym_interface] = ACTIONS(2637), - [anon_sym_enum] = ACTIONS(2637), + [ts_builtin_sym_end] = ACTIONS(2620), + [sym_identifier] = ACTIONS(2622), + [anon_sym_export] = ACTIONS(2622), + [anon_sym_default] = ACTIONS(2622), + [anon_sym_type] = ACTIONS(2622), + [anon_sym_namespace] = ACTIONS(2622), + [anon_sym_LBRACE] = ACTIONS(2620), + [anon_sym_RBRACE] = ACTIONS(2620), + [anon_sym_typeof] = ACTIONS(2622), + [anon_sym_import] = ACTIONS(2622), + [anon_sym_with] = ACTIONS(2622), + [anon_sym_var] = ACTIONS(2622), + [anon_sym_let] = ACTIONS(2622), + [anon_sym_const] = ACTIONS(2622), + [anon_sym_BANG] = ACTIONS(2620), + [anon_sym_else] = ACTIONS(2622), + [anon_sym_if] = ACTIONS(2622), + [anon_sym_switch] = ACTIONS(2622), + [anon_sym_for] = ACTIONS(2622), + [anon_sym_LPAREN] = ACTIONS(2620), + [anon_sym_SEMI] = ACTIONS(2620), + [anon_sym_await] = ACTIONS(2622), + [anon_sym_while] = ACTIONS(2622), + [anon_sym_do] = ACTIONS(2622), + [anon_sym_try] = ACTIONS(2622), + [anon_sym_break] = ACTIONS(2622), + [anon_sym_continue] = ACTIONS(2622), + [anon_sym_debugger] = ACTIONS(2622), + [anon_sym_return] = ACTIONS(2622), + [anon_sym_throw] = ACTIONS(2622), + [anon_sym_case] = ACTIONS(2622), + [anon_sym_yield] = ACTIONS(2622), + [anon_sym_LBRACK] = ACTIONS(2620), + [anon_sym_DQUOTE] = ACTIONS(2620), + [anon_sym_SQUOTE] = ACTIONS(2620), + [anon_sym_class] = ACTIONS(2622), + [anon_sym_async] = ACTIONS(2622), + [anon_sym_function] = ACTIONS(2622), + [anon_sym_new] = ACTIONS(2622), + [anon_sym_using] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_SLASH] = ACTIONS(2622), + [anon_sym_LT] = ACTIONS(2620), + [anon_sym_TILDE] = ACTIONS(2620), + [anon_sym_void] = ACTIONS(2622), + [anon_sym_delete] = ACTIONS(2622), + [anon_sym_PLUS_PLUS] = ACTIONS(2620), + [anon_sym_DASH_DASH] = ACTIONS(2620), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2620), + [sym_number] = ACTIONS(2620), + [sym_private_property_identifier] = ACTIONS(2620), + [sym_this] = ACTIONS(2622), + [sym_super] = ACTIONS(2622), + [sym_true] = ACTIONS(2622), + [sym_false] = ACTIONS(2622), + [sym_null] = ACTIONS(2622), + [sym_undefined] = ACTIONS(2622), + [anon_sym_AT] = ACTIONS(2620), + [anon_sym_static] = ACTIONS(2622), + [anon_sym_readonly] = ACTIONS(2622), + [anon_sym_get] = ACTIONS(2622), + [anon_sym_set] = ACTIONS(2622), + [anon_sym_declare] = ACTIONS(2622), + [anon_sym_public] = ACTIONS(2622), + [anon_sym_private] = ACTIONS(2622), + [anon_sym_protected] = ACTIONS(2622), + [anon_sym_override] = ACTIONS(2622), + [anon_sym_module] = ACTIONS(2622), + [anon_sym_any] = ACTIONS(2622), + [anon_sym_number] = ACTIONS(2622), + [anon_sym_boolean] = ACTIONS(2622), + [anon_sym_string] = ACTIONS(2622), + [anon_sym_symbol] = ACTIONS(2622), + [anon_sym_object] = ACTIONS(2622), + [anon_sym_abstract] = ACTIONS(2622), + [anon_sym_interface] = ACTIONS(2622), + [anon_sym_enum] = ACTIONS(2622), [sym_html_comment] = ACTIONS(5), }, [820] = { - [ts_builtin_sym_end] = ACTIONS(2651), - [sym_identifier] = ACTIONS(2653), - [anon_sym_export] = ACTIONS(2653), - [anon_sym_default] = ACTIONS(2653), - [anon_sym_type] = ACTIONS(2653), - [anon_sym_namespace] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2651), - [anon_sym_RBRACE] = ACTIONS(2651), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_import] = ACTIONS(2653), - [anon_sym_with] = ACTIONS(2653), - [anon_sym_var] = ACTIONS(2653), - [anon_sym_let] = ACTIONS(2653), - [anon_sym_const] = ACTIONS(2653), - [anon_sym_BANG] = ACTIONS(2651), - [anon_sym_else] = ACTIONS(2653), - [anon_sym_if] = ACTIONS(2653), - [anon_sym_switch] = ACTIONS(2653), - [anon_sym_for] = ACTIONS(2653), - [anon_sym_LPAREN] = ACTIONS(2651), - [anon_sym_SEMI] = ACTIONS(2651), - [anon_sym_await] = ACTIONS(2653), - [anon_sym_while] = ACTIONS(2653), - [anon_sym_do] = ACTIONS(2653), - [anon_sym_try] = ACTIONS(2653), - [anon_sym_break] = ACTIONS(2653), - [anon_sym_continue] = ACTIONS(2653), - [anon_sym_debugger] = ACTIONS(2653), - [anon_sym_return] = ACTIONS(2653), - [anon_sym_throw] = ACTIONS(2653), - [anon_sym_case] = ACTIONS(2653), - [anon_sym_yield] = ACTIONS(2653), - [anon_sym_LBRACK] = ACTIONS(2651), - [sym_glimmer_opening_tag] = ACTIONS(2651), - [anon_sym_DQUOTE] = ACTIONS(2651), - [anon_sym_SQUOTE] = ACTIONS(2651), - [anon_sym_class] = ACTIONS(2653), - [anon_sym_async] = ACTIONS(2653), - [anon_sym_function] = ACTIONS(2653), - [anon_sym_new] = ACTIONS(2653), - [anon_sym_using] = ACTIONS(2653), - [anon_sym_PLUS] = ACTIONS(2653), - [anon_sym_DASH] = ACTIONS(2653), - [anon_sym_SLASH] = ACTIONS(2653), - [anon_sym_LT] = ACTIONS(2653), - [anon_sym_TILDE] = ACTIONS(2651), - [anon_sym_void] = ACTIONS(2653), - [anon_sym_delete] = ACTIONS(2653), - [anon_sym_PLUS_PLUS] = ACTIONS(2651), - [anon_sym_DASH_DASH] = ACTIONS(2651), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2651), - [sym_number] = ACTIONS(2651), - [sym_private_property_identifier] = ACTIONS(2651), - [sym_this] = ACTIONS(2653), - [sym_super] = ACTIONS(2653), - [sym_true] = ACTIONS(2653), - [sym_false] = ACTIONS(2653), - [sym_null] = ACTIONS(2653), - [sym_undefined] = ACTIONS(2653), - [anon_sym_AT] = ACTIONS(2651), - [anon_sym_static] = ACTIONS(2653), - [anon_sym_readonly] = ACTIONS(2653), - [anon_sym_get] = ACTIONS(2653), - [anon_sym_set] = ACTIONS(2653), - [anon_sym_declare] = ACTIONS(2653), - [anon_sym_public] = ACTIONS(2653), - [anon_sym_private] = ACTIONS(2653), - [anon_sym_protected] = ACTIONS(2653), - [anon_sym_override] = ACTIONS(2653), - [anon_sym_module] = ACTIONS(2653), - [anon_sym_any] = ACTIONS(2653), - [anon_sym_number] = ACTIONS(2653), - [anon_sym_boolean] = ACTIONS(2653), - [anon_sym_string] = ACTIONS(2653), - [anon_sym_symbol] = ACTIONS(2653), - [anon_sym_object] = ACTIONS(2653), - [anon_sym_abstract] = ACTIONS(2653), - [anon_sym_interface] = ACTIONS(2653), - [anon_sym_enum] = ACTIONS(2653), + [ts_builtin_sym_end] = ACTIONS(2624), + [sym_identifier] = ACTIONS(2626), + [anon_sym_export] = ACTIONS(2626), + [anon_sym_default] = ACTIONS(2626), + [anon_sym_type] = ACTIONS(2626), + [anon_sym_namespace] = ACTIONS(2626), + [anon_sym_LBRACE] = ACTIONS(2624), + [anon_sym_RBRACE] = ACTIONS(2624), + [anon_sym_typeof] = ACTIONS(2626), + [anon_sym_import] = ACTIONS(2626), + [anon_sym_with] = ACTIONS(2626), + [anon_sym_var] = ACTIONS(2626), + [anon_sym_let] = ACTIONS(2626), + [anon_sym_const] = ACTIONS(2626), + [anon_sym_BANG] = ACTIONS(2624), + [anon_sym_else] = ACTIONS(2626), + [anon_sym_if] = ACTIONS(2626), + [anon_sym_switch] = ACTIONS(2626), + [anon_sym_for] = ACTIONS(2626), + [anon_sym_LPAREN] = ACTIONS(2624), + [anon_sym_SEMI] = ACTIONS(2624), + [anon_sym_await] = ACTIONS(2626), + [anon_sym_while] = ACTIONS(2626), + [anon_sym_do] = ACTIONS(2626), + [anon_sym_try] = ACTIONS(2626), + [anon_sym_break] = ACTIONS(2626), + [anon_sym_continue] = ACTIONS(2626), + [anon_sym_debugger] = ACTIONS(2626), + [anon_sym_return] = ACTIONS(2626), + [anon_sym_throw] = ACTIONS(2626), + [anon_sym_case] = ACTIONS(2626), + [anon_sym_yield] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(2624), + [anon_sym_DQUOTE] = ACTIONS(2624), + [anon_sym_SQUOTE] = ACTIONS(2624), + [anon_sym_class] = ACTIONS(2626), + [anon_sym_async] = ACTIONS(2626), + [anon_sym_function] = ACTIONS(2626), + [anon_sym_new] = ACTIONS(2626), + [anon_sym_using] = ACTIONS(2626), + [anon_sym_PLUS] = ACTIONS(2626), + [anon_sym_DASH] = ACTIONS(2626), + [anon_sym_SLASH] = ACTIONS(2626), + [anon_sym_LT] = ACTIONS(2624), + [anon_sym_TILDE] = ACTIONS(2624), + [anon_sym_void] = ACTIONS(2626), + [anon_sym_delete] = ACTIONS(2626), + [anon_sym_PLUS_PLUS] = ACTIONS(2624), + [anon_sym_DASH_DASH] = ACTIONS(2624), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2624), + [sym_number] = ACTIONS(2624), + [sym_private_property_identifier] = ACTIONS(2624), + [sym_this] = ACTIONS(2626), + [sym_super] = ACTIONS(2626), + [sym_true] = ACTIONS(2626), + [sym_false] = ACTIONS(2626), + [sym_null] = ACTIONS(2626), + [sym_undefined] = ACTIONS(2626), + [anon_sym_AT] = ACTIONS(2624), + [anon_sym_static] = ACTIONS(2626), + [anon_sym_readonly] = ACTIONS(2626), + [anon_sym_get] = ACTIONS(2626), + [anon_sym_set] = ACTIONS(2626), + [anon_sym_declare] = ACTIONS(2626), + [anon_sym_public] = ACTIONS(2626), + [anon_sym_private] = ACTIONS(2626), + [anon_sym_protected] = ACTIONS(2626), + [anon_sym_override] = ACTIONS(2626), + [anon_sym_module] = ACTIONS(2626), + [anon_sym_any] = ACTIONS(2626), + [anon_sym_number] = ACTIONS(2626), + [anon_sym_boolean] = ACTIONS(2626), + [anon_sym_string] = ACTIONS(2626), + [anon_sym_symbol] = ACTIONS(2626), + [anon_sym_object] = ACTIONS(2626), + [anon_sym_abstract] = ACTIONS(2626), + [anon_sym_interface] = ACTIONS(2626), + [anon_sym_enum] = ACTIONS(2626), [sym_html_comment] = ACTIONS(5), }, [821] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_rest_pattern] = STATE(5529), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3817), - [sym_tuple_parameter] = STATE(4677), - [sym_optional_tuple_parameter] = STATE(4677), - [sym_optional_type] = STATE(4677), - [sym_rest_type] = STATE(4677), - [sym__tuple_type_member] = STATE(4677), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(2527), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_COMMA] = ACTIONS(2655), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_RBRACK] = ACTIONS(2657), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [ts_builtin_sym_end] = ACTIONS(2624), + [sym_identifier] = ACTIONS(2626), + [anon_sym_export] = ACTIONS(2626), + [anon_sym_default] = ACTIONS(2626), + [anon_sym_type] = ACTIONS(2626), + [anon_sym_namespace] = ACTIONS(2626), + [anon_sym_LBRACE] = ACTIONS(2624), + [anon_sym_RBRACE] = ACTIONS(2624), + [anon_sym_typeof] = ACTIONS(2626), + [anon_sym_import] = ACTIONS(2626), + [anon_sym_with] = ACTIONS(2626), + [anon_sym_var] = ACTIONS(2626), + [anon_sym_let] = ACTIONS(2626), + [anon_sym_const] = ACTIONS(2626), + [anon_sym_BANG] = ACTIONS(2624), + [anon_sym_else] = ACTIONS(2626), + [anon_sym_if] = ACTIONS(2626), + [anon_sym_switch] = ACTIONS(2626), + [anon_sym_for] = ACTIONS(2626), + [anon_sym_LPAREN] = ACTIONS(2624), + [anon_sym_SEMI] = ACTIONS(2624), + [anon_sym_await] = ACTIONS(2626), + [anon_sym_while] = ACTIONS(2626), + [anon_sym_do] = ACTIONS(2626), + [anon_sym_try] = ACTIONS(2626), + [anon_sym_break] = ACTIONS(2626), + [anon_sym_continue] = ACTIONS(2626), + [anon_sym_debugger] = ACTIONS(2626), + [anon_sym_return] = ACTIONS(2626), + [anon_sym_throw] = ACTIONS(2626), + [anon_sym_case] = ACTIONS(2626), + [anon_sym_yield] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(2624), + [anon_sym_DQUOTE] = ACTIONS(2624), + [anon_sym_SQUOTE] = ACTIONS(2624), + [anon_sym_class] = ACTIONS(2626), + [anon_sym_async] = ACTIONS(2626), + [anon_sym_function] = ACTIONS(2626), + [anon_sym_new] = ACTIONS(2626), + [anon_sym_using] = ACTIONS(2626), + [anon_sym_PLUS] = ACTIONS(2626), + [anon_sym_DASH] = ACTIONS(2626), + [anon_sym_SLASH] = ACTIONS(2626), + [anon_sym_LT] = ACTIONS(2624), + [anon_sym_TILDE] = ACTIONS(2624), + [anon_sym_void] = ACTIONS(2626), + [anon_sym_delete] = ACTIONS(2626), + [anon_sym_PLUS_PLUS] = ACTIONS(2624), + [anon_sym_DASH_DASH] = ACTIONS(2624), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2624), + [sym_number] = ACTIONS(2624), + [sym_private_property_identifier] = ACTIONS(2624), + [sym_this] = ACTIONS(2626), + [sym_super] = ACTIONS(2626), + [sym_true] = ACTIONS(2626), + [sym_false] = ACTIONS(2626), + [sym_null] = ACTIONS(2626), + [sym_undefined] = ACTIONS(2626), + [anon_sym_AT] = ACTIONS(2624), + [anon_sym_static] = ACTIONS(2626), + [anon_sym_readonly] = ACTIONS(2626), + [anon_sym_get] = ACTIONS(2626), + [anon_sym_set] = ACTIONS(2626), + [anon_sym_declare] = ACTIONS(2626), + [anon_sym_public] = ACTIONS(2626), + [anon_sym_private] = ACTIONS(2626), + [anon_sym_protected] = ACTIONS(2626), + [anon_sym_override] = ACTIONS(2626), + [anon_sym_module] = ACTIONS(2626), + [anon_sym_any] = ACTIONS(2626), + [anon_sym_number] = ACTIONS(2626), + [anon_sym_boolean] = ACTIONS(2626), + [anon_sym_string] = ACTIONS(2626), + [anon_sym_symbol] = ACTIONS(2626), + [anon_sym_object] = ACTIONS(2626), + [anon_sym_abstract] = ACTIONS(2626), + [anon_sym_interface] = ACTIONS(2626), + [anon_sym_enum] = ACTIONS(2626), [sym_html_comment] = ACTIONS(5), }, [822] = { - [ts_builtin_sym_end] = ACTIONS(2659), - [sym_identifier] = ACTIONS(2661), - [anon_sym_export] = ACTIONS(2661), - [anon_sym_default] = ACTIONS(2661), - [anon_sym_type] = ACTIONS(2661), - [anon_sym_namespace] = ACTIONS(2661), - [anon_sym_LBRACE] = ACTIONS(2659), - [anon_sym_RBRACE] = ACTIONS(2659), - [anon_sym_typeof] = ACTIONS(2661), - [anon_sym_import] = ACTIONS(2661), - [anon_sym_with] = ACTIONS(2661), - [anon_sym_var] = ACTIONS(2661), - [anon_sym_let] = ACTIONS(2661), - [anon_sym_const] = ACTIONS(2661), - [anon_sym_BANG] = ACTIONS(2659), - [anon_sym_else] = ACTIONS(2661), - [anon_sym_if] = ACTIONS(2661), - [anon_sym_switch] = ACTIONS(2661), - [anon_sym_for] = ACTIONS(2661), - [anon_sym_LPAREN] = ACTIONS(2659), - [anon_sym_SEMI] = ACTIONS(2659), - [anon_sym_await] = ACTIONS(2661), - [anon_sym_while] = ACTIONS(2661), - [anon_sym_do] = ACTIONS(2661), - [anon_sym_try] = ACTIONS(2661), - [anon_sym_break] = ACTIONS(2661), - [anon_sym_continue] = ACTIONS(2661), - [anon_sym_debugger] = ACTIONS(2661), - [anon_sym_return] = ACTIONS(2661), - [anon_sym_throw] = ACTIONS(2661), - [anon_sym_case] = ACTIONS(2661), - [anon_sym_yield] = ACTIONS(2661), - [anon_sym_LBRACK] = ACTIONS(2659), - [sym_glimmer_opening_tag] = ACTIONS(2659), - [anon_sym_DQUOTE] = ACTIONS(2659), - [anon_sym_SQUOTE] = ACTIONS(2659), - [anon_sym_class] = ACTIONS(2661), - [anon_sym_async] = ACTIONS(2661), - [anon_sym_function] = ACTIONS(2661), - [anon_sym_new] = ACTIONS(2661), - [anon_sym_using] = ACTIONS(2661), - [anon_sym_PLUS] = ACTIONS(2661), - [anon_sym_DASH] = ACTIONS(2661), - [anon_sym_SLASH] = ACTIONS(2661), - [anon_sym_LT] = ACTIONS(2661), - [anon_sym_TILDE] = ACTIONS(2659), - [anon_sym_void] = ACTIONS(2661), - [anon_sym_delete] = ACTIONS(2661), - [anon_sym_PLUS_PLUS] = ACTIONS(2659), - [anon_sym_DASH_DASH] = ACTIONS(2659), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2659), - [sym_number] = ACTIONS(2659), - [sym_private_property_identifier] = ACTIONS(2659), - [sym_this] = ACTIONS(2661), - [sym_super] = ACTIONS(2661), - [sym_true] = ACTIONS(2661), - [sym_false] = ACTIONS(2661), - [sym_null] = ACTIONS(2661), - [sym_undefined] = ACTIONS(2661), - [anon_sym_AT] = ACTIONS(2659), - [anon_sym_static] = ACTIONS(2661), - [anon_sym_readonly] = ACTIONS(2661), - [anon_sym_get] = ACTIONS(2661), - [anon_sym_set] = ACTIONS(2661), - [anon_sym_declare] = ACTIONS(2661), - [anon_sym_public] = ACTIONS(2661), - [anon_sym_private] = ACTIONS(2661), - [anon_sym_protected] = ACTIONS(2661), - [anon_sym_override] = ACTIONS(2661), - [anon_sym_module] = ACTIONS(2661), - [anon_sym_any] = ACTIONS(2661), - [anon_sym_number] = ACTIONS(2661), - [anon_sym_boolean] = ACTIONS(2661), - [anon_sym_string] = ACTIONS(2661), - [anon_sym_symbol] = ACTIONS(2661), - [anon_sym_object] = ACTIONS(2661), - [anon_sym_abstract] = ACTIONS(2661), - [anon_sym_interface] = ACTIONS(2661), - [anon_sym_enum] = ACTIONS(2661), + [ts_builtin_sym_end] = ACTIONS(2628), + [sym_identifier] = ACTIONS(2630), + [anon_sym_export] = ACTIONS(2630), + [anon_sym_default] = ACTIONS(2630), + [anon_sym_type] = ACTIONS(2630), + [anon_sym_namespace] = ACTIONS(2630), + [anon_sym_LBRACE] = ACTIONS(2628), + [anon_sym_RBRACE] = ACTIONS(2628), + [anon_sym_typeof] = ACTIONS(2630), + [anon_sym_import] = ACTIONS(2630), + [anon_sym_with] = ACTIONS(2630), + [anon_sym_var] = ACTIONS(2630), + [anon_sym_let] = ACTIONS(2630), + [anon_sym_const] = ACTIONS(2630), + [anon_sym_BANG] = ACTIONS(2628), + [anon_sym_else] = ACTIONS(2630), + [anon_sym_if] = ACTIONS(2630), + [anon_sym_switch] = ACTIONS(2630), + [anon_sym_for] = ACTIONS(2630), + [anon_sym_LPAREN] = ACTIONS(2628), + [anon_sym_SEMI] = ACTIONS(2628), + [anon_sym_await] = ACTIONS(2630), + [anon_sym_while] = ACTIONS(2630), + [anon_sym_do] = ACTIONS(2630), + [anon_sym_try] = ACTIONS(2630), + [anon_sym_break] = ACTIONS(2630), + [anon_sym_continue] = ACTIONS(2630), + [anon_sym_debugger] = ACTIONS(2630), + [anon_sym_return] = ACTIONS(2630), + [anon_sym_throw] = ACTIONS(2630), + [anon_sym_case] = ACTIONS(2630), + [anon_sym_yield] = ACTIONS(2630), + [anon_sym_LBRACK] = ACTIONS(2628), + [anon_sym_DQUOTE] = ACTIONS(2628), + [anon_sym_SQUOTE] = ACTIONS(2628), + [anon_sym_class] = ACTIONS(2630), + [anon_sym_async] = ACTIONS(2630), + [anon_sym_function] = ACTIONS(2630), + [anon_sym_new] = ACTIONS(2630), + [anon_sym_using] = ACTIONS(2630), + [anon_sym_PLUS] = ACTIONS(2630), + [anon_sym_DASH] = ACTIONS(2630), + [anon_sym_SLASH] = ACTIONS(2630), + [anon_sym_LT] = ACTIONS(2628), + [anon_sym_TILDE] = ACTIONS(2628), + [anon_sym_void] = ACTIONS(2630), + [anon_sym_delete] = ACTIONS(2630), + [anon_sym_PLUS_PLUS] = ACTIONS(2628), + [anon_sym_DASH_DASH] = ACTIONS(2628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2628), + [sym_number] = ACTIONS(2628), + [sym_private_property_identifier] = ACTIONS(2628), + [sym_this] = ACTIONS(2630), + [sym_super] = ACTIONS(2630), + [sym_true] = ACTIONS(2630), + [sym_false] = ACTIONS(2630), + [sym_null] = ACTIONS(2630), + [sym_undefined] = ACTIONS(2630), + [anon_sym_AT] = ACTIONS(2628), + [anon_sym_static] = ACTIONS(2630), + [anon_sym_readonly] = ACTIONS(2630), + [anon_sym_get] = ACTIONS(2630), + [anon_sym_set] = ACTIONS(2630), + [anon_sym_declare] = ACTIONS(2630), + [anon_sym_public] = ACTIONS(2630), + [anon_sym_private] = ACTIONS(2630), + [anon_sym_protected] = ACTIONS(2630), + [anon_sym_override] = ACTIONS(2630), + [anon_sym_module] = ACTIONS(2630), + [anon_sym_any] = ACTIONS(2630), + [anon_sym_number] = ACTIONS(2630), + [anon_sym_boolean] = ACTIONS(2630), + [anon_sym_string] = ACTIONS(2630), + [anon_sym_symbol] = ACTIONS(2630), + [anon_sym_object] = ACTIONS(2630), + [anon_sym_abstract] = ACTIONS(2630), + [anon_sym_interface] = ACTIONS(2630), + [anon_sym_enum] = ACTIONS(2630), [sym_html_comment] = ACTIONS(5), }, [823] = { - [ts_builtin_sym_end] = ACTIONS(2659), - [sym_identifier] = ACTIONS(2661), - [anon_sym_export] = ACTIONS(2661), - [anon_sym_default] = ACTIONS(2661), - [anon_sym_type] = ACTIONS(2661), - [anon_sym_namespace] = ACTIONS(2661), - [anon_sym_LBRACE] = ACTIONS(2659), - [anon_sym_RBRACE] = ACTIONS(2659), - [anon_sym_typeof] = ACTIONS(2661), - [anon_sym_import] = ACTIONS(2661), - [anon_sym_with] = ACTIONS(2661), - [anon_sym_var] = ACTIONS(2661), - [anon_sym_let] = ACTIONS(2661), - [anon_sym_const] = ACTIONS(2661), - [anon_sym_BANG] = ACTIONS(2659), - [anon_sym_else] = ACTIONS(2661), - [anon_sym_if] = ACTIONS(2661), - [anon_sym_switch] = ACTIONS(2661), - [anon_sym_for] = ACTIONS(2661), - [anon_sym_LPAREN] = ACTIONS(2659), - [anon_sym_SEMI] = ACTIONS(2659), - [anon_sym_await] = ACTIONS(2661), - [anon_sym_while] = ACTIONS(2661), - [anon_sym_do] = ACTIONS(2661), - [anon_sym_try] = ACTIONS(2661), - [anon_sym_break] = ACTIONS(2661), - [anon_sym_continue] = ACTIONS(2661), - [anon_sym_debugger] = ACTIONS(2661), - [anon_sym_return] = ACTIONS(2661), - [anon_sym_throw] = ACTIONS(2661), - [anon_sym_case] = ACTIONS(2661), - [anon_sym_yield] = ACTIONS(2661), - [anon_sym_LBRACK] = ACTIONS(2659), - [sym_glimmer_opening_tag] = ACTIONS(2659), - [anon_sym_DQUOTE] = ACTIONS(2659), - [anon_sym_SQUOTE] = ACTIONS(2659), - [anon_sym_class] = ACTIONS(2661), - [anon_sym_async] = ACTIONS(2661), - [anon_sym_function] = ACTIONS(2661), - [anon_sym_new] = ACTIONS(2661), - [anon_sym_using] = ACTIONS(2661), - [anon_sym_PLUS] = ACTIONS(2661), - [anon_sym_DASH] = ACTIONS(2661), - [anon_sym_SLASH] = ACTIONS(2661), - [anon_sym_LT] = ACTIONS(2661), - [anon_sym_TILDE] = ACTIONS(2659), - [anon_sym_void] = ACTIONS(2661), - [anon_sym_delete] = ACTIONS(2661), - [anon_sym_PLUS_PLUS] = ACTIONS(2659), - [anon_sym_DASH_DASH] = ACTIONS(2659), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2659), - [sym_number] = ACTIONS(2659), - [sym_private_property_identifier] = ACTIONS(2659), - [sym_this] = ACTIONS(2661), - [sym_super] = ACTIONS(2661), - [sym_true] = ACTIONS(2661), - [sym_false] = ACTIONS(2661), - [sym_null] = ACTIONS(2661), - [sym_undefined] = ACTIONS(2661), - [anon_sym_AT] = ACTIONS(2659), - [anon_sym_static] = ACTIONS(2661), - [anon_sym_readonly] = ACTIONS(2661), - [anon_sym_get] = ACTIONS(2661), - [anon_sym_set] = ACTIONS(2661), - [anon_sym_declare] = ACTIONS(2661), - [anon_sym_public] = ACTIONS(2661), - [anon_sym_private] = ACTIONS(2661), - [anon_sym_protected] = ACTIONS(2661), - [anon_sym_override] = ACTIONS(2661), - [anon_sym_module] = ACTIONS(2661), - [anon_sym_any] = ACTIONS(2661), - [anon_sym_number] = ACTIONS(2661), - [anon_sym_boolean] = ACTIONS(2661), - [anon_sym_string] = ACTIONS(2661), - [anon_sym_symbol] = ACTIONS(2661), - [anon_sym_object] = ACTIONS(2661), - [anon_sym_abstract] = ACTIONS(2661), - [anon_sym_interface] = ACTIONS(2661), - [anon_sym_enum] = ACTIONS(2661), + [ts_builtin_sym_end] = ACTIONS(2632), + [sym_identifier] = ACTIONS(2634), + [anon_sym_export] = ACTIONS(2634), + [anon_sym_default] = ACTIONS(2634), + [anon_sym_type] = ACTIONS(2634), + [anon_sym_namespace] = ACTIONS(2634), + [anon_sym_LBRACE] = ACTIONS(2632), + [anon_sym_RBRACE] = ACTIONS(2632), + [anon_sym_typeof] = ACTIONS(2634), + [anon_sym_import] = ACTIONS(2634), + [anon_sym_with] = ACTIONS(2634), + [anon_sym_var] = ACTIONS(2634), + [anon_sym_let] = ACTIONS(2634), + [anon_sym_const] = ACTIONS(2634), + [anon_sym_BANG] = ACTIONS(2632), + [anon_sym_else] = ACTIONS(2634), + [anon_sym_if] = ACTIONS(2634), + [anon_sym_switch] = ACTIONS(2634), + [anon_sym_for] = ACTIONS(2634), + [anon_sym_LPAREN] = ACTIONS(2632), + [anon_sym_SEMI] = ACTIONS(2632), + [anon_sym_await] = ACTIONS(2634), + [anon_sym_while] = ACTIONS(2634), + [anon_sym_do] = ACTIONS(2634), + [anon_sym_try] = ACTIONS(2634), + [anon_sym_break] = ACTIONS(2634), + [anon_sym_continue] = ACTIONS(2634), + [anon_sym_debugger] = ACTIONS(2634), + [anon_sym_return] = ACTIONS(2634), + [anon_sym_throw] = ACTIONS(2634), + [anon_sym_case] = ACTIONS(2634), + [anon_sym_yield] = ACTIONS(2634), + [anon_sym_LBRACK] = ACTIONS(2632), + [anon_sym_DQUOTE] = ACTIONS(2632), + [anon_sym_SQUOTE] = ACTIONS(2632), + [anon_sym_class] = ACTIONS(2634), + [anon_sym_async] = ACTIONS(2634), + [anon_sym_function] = ACTIONS(2634), + [anon_sym_new] = ACTIONS(2634), + [anon_sym_using] = ACTIONS(2634), + [anon_sym_PLUS] = ACTIONS(2634), + [anon_sym_DASH] = ACTIONS(2634), + [anon_sym_SLASH] = ACTIONS(2634), + [anon_sym_LT] = ACTIONS(2632), + [anon_sym_TILDE] = ACTIONS(2632), + [anon_sym_void] = ACTIONS(2634), + [anon_sym_delete] = ACTIONS(2634), + [anon_sym_PLUS_PLUS] = ACTIONS(2632), + [anon_sym_DASH_DASH] = ACTIONS(2632), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2632), + [sym_number] = ACTIONS(2632), + [sym_private_property_identifier] = ACTIONS(2632), + [sym_this] = ACTIONS(2634), + [sym_super] = ACTIONS(2634), + [sym_true] = ACTIONS(2634), + [sym_false] = ACTIONS(2634), + [sym_null] = ACTIONS(2634), + [sym_undefined] = ACTIONS(2634), + [anon_sym_AT] = ACTIONS(2632), + [anon_sym_static] = ACTIONS(2634), + [anon_sym_readonly] = ACTIONS(2634), + [anon_sym_get] = ACTIONS(2634), + [anon_sym_set] = ACTIONS(2634), + [anon_sym_declare] = ACTIONS(2634), + [anon_sym_public] = ACTIONS(2634), + [anon_sym_private] = ACTIONS(2634), + [anon_sym_protected] = ACTIONS(2634), + [anon_sym_override] = ACTIONS(2634), + [anon_sym_module] = ACTIONS(2634), + [anon_sym_any] = ACTIONS(2634), + [anon_sym_number] = ACTIONS(2634), + [anon_sym_boolean] = ACTIONS(2634), + [anon_sym_string] = ACTIONS(2634), + [anon_sym_symbol] = ACTIONS(2634), + [anon_sym_object] = ACTIONS(2634), + [anon_sym_abstract] = ACTIONS(2634), + [anon_sym_interface] = ACTIONS(2634), + [anon_sym_enum] = ACTIONS(2634), [sym_html_comment] = ACTIONS(5), }, [824] = { - [ts_builtin_sym_end] = ACTIONS(2663), - [sym_identifier] = ACTIONS(2665), - [anon_sym_export] = ACTIONS(2665), - [anon_sym_default] = ACTIONS(2665), - [anon_sym_type] = ACTIONS(2665), - [anon_sym_namespace] = ACTIONS(2665), - [anon_sym_LBRACE] = ACTIONS(2663), - [anon_sym_RBRACE] = ACTIONS(2663), - [anon_sym_typeof] = ACTIONS(2665), - [anon_sym_import] = ACTIONS(2665), - [anon_sym_with] = ACTIONS(2665), - [anon_sym_var] = ACTIONS(2665), - [anon_sym_let] = ACTIONS(2665), - [anon_sym_const] = ACTIONS(2665), - [anon_sym_BANG] = ACTIONS(2663), - [anon_sym_else] = ACTIONS(2665), - [anon_sym_if] = ACTIONS(2665), - [anon_sym_switch] = ACTIONS(2665), - [anon_sym_for] = ACTIONS(2665), - [anon_sym_LPAREN] = ACTIONS(2663), - [anon_sym_SEMI] = ACTIONS(2663), - [anon_sym_await] = ACTIONS(2665), - [anon_sym_while] = ACTIONS(2665), - [anon_sym_do] = ACTIONS(2665), - [anon_sym_try] = ACTIONS(2665), - [anon_sym_break] = ACTIONS(2665), - [anon_sym_continue] = ACTIONS(2665), - [anon_sym_debugger] = ACTIONS(2665), - [anon_sym_return] = ACTIONS(2665), - [anon_sym_throw] = ACTIONS(2665), - [anon_sym_case] = ACTIONS(2665), - [anon_sym_yield] = ACTIONS(2665), - [anon_sym_LBRACK] = ACTIONS(2663), - [sym_glimmer_opening_tag] = ACTIONS(2663), - [anon_sym_DQUOTE] = ACTIONS(2663), - [anon_sym_SQUOTE] = ACTIONS(2663), - [anon_sym_class] = ACTIONS(2665), - [anon_sym_async] = ACTIONS(2665), - [anon_sym_function] = ACTIONS(2665), - [anon_sym_new] = ACTIONS(2665), - [anon_sym_using] = ACTIONS(2665), - [anon_sym_PLUS] = ACTIONS(2665), - [anon_sym_DASH] = ACTIONS(2665), - [anon_sym_SLASH] = ACTIONS(2665), - [anon_sym_LT] = ACTIONS(2665), - [anon_sym_TILDE] = ACTIONS(2663), - [anon_sym_void] = ACTIONS(2665), - [anon_sym_delete] = ACTIONS(2665), - [anon_sym_PLUS_PLUS] = ACTIONS(2663), - [anon_sym_DASH_DASH] = ACTIONS(2663), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2663), - [sym_number] = ACTIONS(2663), - [sym_private_property_identifier] = ACTIONS(2663), - [sym_this] = ACTIONS(2665), - [sym_super] = ACTIONS(2665), - [sym_true] = ACTIONS(2665), - [sym_false] = ACTIONS(2665), - [sym_null] = ACTIONS(2665), - [sym_undefined] = ACTIONS(2665), - [anon_sym_AT] = ACTIONS(2663), - [anon_sym_static] = ACTIONS(2665), - [anon_sym_readonly] = ACTIONS(2665), - [anon_sym_get] = ACTIONS(2665), - [anon_sym_set] = ACTIONS(2665), - [anon_sym_declare] = ACTIONS(2665), - [anon_sym_public] = ACTIONS(2665), - [anon_sym_private] = ACTIONS(2665), - [anon_sym_protected] = ACTIONS(2665), - [anon_sym_override] = ACTIONS(2665), - [anon_sym_module] = ACTIONS(2665), - [anon_sym_any] = ACTIONS(2665), - [anon_sym_number] = ACTIONS(2665), - [anon_sym_boolean] = ACTIONS(2665), - [anon_sym_string] = ACTIONS(2665), - [anon_sym_symbol] = ACTIONS(2665), - [anon_sym_object] = ACTIONS(2665), - [anon_sym_abstract] = ACTIONS(2665), - [anon_sym_interface] = ACTIONS(2665), - [anon_sym_enum] = ACTIONS(2665), + [ts_builtin_sym_end] = ACTIONS(2636), + [sym_identifier] = ACTIONS(2638), + [anon_sym_export] = ACTIONS(2638), + [anon_sym_default] = ACTIONS(2638), + [anon_sym_type] = ACTIONS(2638), + [anon_sym_namespace] = ACTIONS(2638), + [anon_sym_LBRACE] = ACTIONS(2636), + [anon_sym_RBRACE] = ACTIONS(2636), + [anon_sym_typeof] = ACTIONS(2638), + [anon_sym_import] = ACTIONS(2638), + [anon_sym_with] = ACTIONS(2638), + [anon_sym_var] = ACTIONS(2638), + [anon_sym_let] = ACTIONS(2638), + [anon_sym_const] = ACTIONS(2638), + [anon_sym_BANG] = ACTIONS(2636), + [anon_sym_else] = ACTIONS(2638), + [anon_sym_if] = ACTIONS(2638), + [anon_sym_switch] = ACTIONS(2638), + [anon_sym_for] = ACTIONS(2638), + [anon_sym_LPAREN] = ACTIONS(2636), + [anon_sym_SEMI] = ACTIONS(2636), + [anon_sym_await] = ACTIONS(2638), + [anon_sym_while] = ACTIONS(2638), + [anon_sym_do] = ACTIONS(2638), + [anon_sym_try] = ACTIONS(2638), + [anon_sym_break] = ACTIONS(2638), + [anon_sym_continue] = ACTIONS(2638), + [anon_sym_debugger] = ACTIONS(2638), + [anon_sym_return] = ACTIONS(2638), + [anon_sym_throw] = ACTIONS(2638), + [anon_sym_case] = ACTIONS(2638), + [anon_sym_yield] = ACTIONS(2638), + [anon_sym_LBRACK] = ACTIONS(2636), + [anon_sym_DQUOTE] = ACTIONS(2636), + [anon_sym_SQUOTE] = ACTIONS(2636), + [anon_sym_class] = ACTIONS(2638), + [anon_sym_async] = ACTIONS(2638), + [anon_sym_function] = ACTIONS(2638), + [anon_sym_new] = ACTIONS(2638), + [anon_sym_using] = ACTIONS(2638), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_SLASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2636), + [anon_sym_TILDE] = ACTIONS(2636), + [anon_sym_void] = ACTIONS(2638), + [anon_sym_delete] = ACTIONS(2638), + [anon_sym_PLUS_PLUS] = ACTIONS(2636), + [anon_sym_DASH_DASH] = ACTIONS(2636), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2636), + [sym_number] = ACTIONS(2636), + [sym_private_property_identifier] = ACTIONS(2636), + [sym_this] = ACTIONS(2638), + [sym_super] = ACTIONS(2638), + [sym_true] = ACTIONS(2638), + [sym_false] = ACTIONS(2638), + [sym_null] = ACTIONS(2638), + [sym_undefined] = ACTIONS(2638), + [anon_sym_AT] = ACTIONS(2636), + [anon_sym_static] = ACTIONS(2638), + [anon_sym_readonly] = ACTIONS(2638), + [anon_sym_get] = ACTIONS(2638), + [anon_sym_set] = ACTIONS(2638), + [anon_sym_declare] = ACTIONS(2638), + [anon_sym_public] = ACTIONS(2638), + [anon_sym_private] = ACTIONS(2638), + [anon_sym_protected] = ACTIONS(2638), + [anon_sym_override] = ACTIONS(2638), + [anon_sym_module] = ACTIONS(2638), + [anon_sym_any] = ACTIONS(2638), + [anon_sym_number] = ACTIONS(2638), + [anon_sym_boolean] = ACTIONS(2638), + [anon_sym_string] = ACTIONS(2638), + [anon_sym_symbol] = ACTIONS(2638), + [anon_sym_object] = ACTIONS(2638), + [anon_sym_abstract] = ACTIONS(2638), + [anon_sym_interface] = ACTIONS(2638), + [anon_sym_enum] = ACTIONS(2638), [sym_html_comment] = ACTIONS(5), }, [825] = { - [ts_builtin_sym_end] = ACTIONS(2667), - [sym_identifier] = ACTIONS(2669), - [anon_sym_export] = ACTIONS(2669), - [anon_sym_default] = ACTIONS(2669), - [anon_sym_type] = ACTIONS(2669), - [anon_sym_namespace] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_RBRACE] = ACTIONS(2667), - [anon_sym_typeof] = ACTIONS(2669), - [anon_sym_import] = ACTIONS(2669), - [anon_sym_with] = ACTIONS(2669), - [anon_sym_var] = ACTIONS(2669), - [anon_sym_let] = ACTIONS(2669), - [anon_sym_const] = ACTIONS(2669), - [anon_sym_BANG] = ACTIONS(2667), - [anon_sym_else] = ACTIONS(2669), - [anon_sym_if] = ACTIONS(2669), - [anon_sym_switch] = ACTIONS(2669), - [anon_sym_for] = ACTIONS(2669), - [anon_sym_LPAREN] = ACTIONS(2667), - [anon_sym_SEMI] = ACTIONS(2667), - [anon_sym_await] = ACTIONS(2669), - [anon_sym_while] = ACTIONS(2669), - [anon_sym_do] = ACTIONS(2669), - [anon_sym_try] = ACTIONS(2669), - [anon_sym_break] = ACTIONS(2669), - [anon_sym_continue] = ACTIONS(2669), - [anon_sym_debugger] = ACTIONS(2669), - [anon_sym_return] = ACTIONS(2669), - [anon_sym_throw] = ACTIONS(2669), - [anon_sym_case] = ACTIONS(2669), - [anon_sym_yield] = ACTIONS(2669), - [anon_sym_LBRACK] = ACTIONS(2667), - [sym_glimmer_opening_tag] = ACTIONS(2667), - [anon_sym_DQUOTE] = ACTIONS(2667), - [anon_sym_SQUOTE] = ACTIONS(2667), - [anon_sym_class] = ACTIONS(2669), - [anon_sym_async] = ACTIONS(2669), - [anon_sym_function] = ACTIONS(2669), - [anon_sym_new] = ACTIONS(2669), - [anon_sym_using] = ACTIONS(2669), - [anon_sym_PLUS] = ACTIONS(2669), - [anon_sym_DASH] = ACTIONS(2669), - [anon_sym_SLASH] = ACTIONS(2669), - [anon_sym_LT] = ACTIONS(2669), - [anon_sym_TILDE] = ACTIONS(2667), - [anon_sym_void] = ACTIONS(2669), - [anon_sym_delete] = ACTIONS(2669), - [anon_sym_PLUS_PLUS] = ACTIONS(2667), - [anon_sym_DASH_DASH] = ACTIONS(2667), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2667), - [sym_number] = ACTIONS(2667), - [sym_private_property_identifier] = ACTIONS(2667), - [sym_this] = ACTIONS(2669), - [sym_super] = ACTIONS(2669), - [sym_true] = ACTIONS(2669), - [sym_false] = ACTIONS(2669), - [sym_null] = ACTIONS(2669), - [sym_undefined] = ACTIONS(2669), - [anon_sym_AT] = ACTIONS(2667), - [anon_sym_static] = ACTIONS(2669), - [anon_sym_readonly] = ACTIONS(2669), - [anon_sym_get] = ACTIONS(2669), - [anon_sym_set] = ACTIONS(2669), - [anon_sym_declare] = ACTIONS(2669), - [anon_sym_public] = ACTIONS(2669), - [anon_sym_private] = ACTIONS(2669), - [anon_sym_protected] = ACTIONS(2669), - [anon_sym_override] = ACTIONS(2669), - [anon_sym_module] = ACTIONS(2669), - [anon_sym_any] = ACTIONS(2669), - [anon_sym_number] = ACTIONS(2669), - [anon_sym_boolean] = ACTIONS(2669), - [anon_sym_string] = ACTIONS(2669), - [anon_sym_symbol] = ACTIONS(2669), - [anon_sym_object] = ACTIONS(2669), - [anon_sym_abstract] = ACTIONS(2669), - [anon_sym_interface] = ACTIONS(2669), - [anon_sym_enum] = ACTIONS(2669), + [ts_builtin_sym_end] = ACTIONS(2640), + [sym_identifier] = ACTIONS(2642), + [anon_sym_export] = ACTIONS(2642), + [anon_sym_default] = ACTIONS(2642), + [anon_sym_type] = ACTIONS(2642), + [anon_sym_namespace] = ACTIONS(2642), + [anon_sym_LBRACE] = ACTIONS(2640), + [anon_sym_RBRACE] = ACTIONS(2640), + [anon_sym_typeof] = ACTIONS(2642), + [anon_sym_import] = ACTIONS(2642), + [anon_sym_with] = ACTIONS(2642), + [anon_sym_var] = ACTIONS(2642), + [anon_sym_let] = ACTIONS(2642), + [anon_sym_const] = ACTIONS(2642), + [anon_sym_BANG] = ACTIONS(2640), + [anon_sym_else] = ACTIONS(2642), + [anon_sym_if] = ACTIONS(2642), + [anon_sym_switch] = ACTIONS(2642), + [anon_sym_for] = ACTIONS(2642), + [anon_sym_LPAREN] = ACTIONS(2640), + [anon_sym_SEMI] = ACTIONS(2640), + [anon_sym_await] = ACTIONS(2642), + [anon_sym_while] = ACTIONS(2642), + [anon_sym_do] = ACTIONS(2642), + [anon_sym_try] = ACTIONS(2642), + [anon_sym_break] = ACTIONS(2642), + [anon_sym_continue] = ACTIONS(2642), + [anon_sym_debugger] = ACTIONS(2642), + [anon_sym_return] = ACTIONS(2642), + [anon_sym_throw] = ACTIONS(2642), + [anon_sym_case] = ACTIONS(2642), + [anon_sym_yield] = ACTIONS(2642), + [anon_sym_LBRACK] = ACTIONS(2640), + [anon_sym_DQUOTE] = ACTIONS(2640), + [anon_sym_SQUOTE] = ACTIONS(2640), + [anon_sym_class] = ACTIONS(2642), + [anon_sym_async] = ACTIONS(2642), + [anon_sym_function] = ACTIONS(2642), + [anon_sym_new] = ACTIONS(2642), + [anon_sym_using] = ACTIONS(2642), + [anon_sym_PLUS] = ACTIONS(2642), + [anon_sym_DASH] = ACTIONS(2642), + [anon_sym_SLASH] = ACTIONS(2642), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_TILDE] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(2642), + [anon_sym_delete] = ACTIONS(2642), + [anon_sym_PLUS_PLUS] = ACTIONS(2640), + [anon_sym_DASH_DASH] = ACTIONS(2640), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2640), + [sym_number] = ACTIONS(2640), + [sym_private_property_identifier] = ACTIONS(2640), + [sym_this] = ACTIONS(2642), + [sym_super] = ACTIONS(2642), + [sym_true] = ACTIONS(2642), + [sym_false] = ACTIONS(2642), + [sym_null] = ACTIONS(2642), + [sym_undefined] = ACTIONS(2642), + [anon_sym_AT] = ACTIONS(2640), + [anon_sym_static] = ACTIONS(2642), + [anon_sym_readonly] = ACTIONS(2642), + [anon_sym_get] = ACTIONS(2642), + [anon_sym_set] = ACTIONS(2642), + [anon_sym_declare] = ACTIONS(2642), + [anon_sym_public] = ACTIONS(2642), + [anon_sym_private] = ACTIONS(2642), + [anon_sym_protected] = ACTIONS(2642), + [anon_sym_override] = ACTIONS(2642), + [anon_sym_module] = ACTIONS(2642), + [anon_sym_any] = ACTIONS(2642), + [anon_sym_number] = ACTIONS(2642), + [anon_sym_boolean] = ACTIONS(2642), + [anon_sym_string] = ACTIONS(2642), + [anon_sym_symbol] = ACTIONS(2642), + [anon_sym_object] = ACTIONS(2642), + [anon_sym_abstract] = ACTIONS(2642), + [anon_sym_interface] = ACTIONS(2642), + [anon_sym_enum] = ACTIONS(2642), [sym_html_comment] = ACTIONS(5), }, [826] = { - [ts_builtin_sym_end] = ACTIONS(2671), - [sym_identifier] = ACTIONS(2673), - [anon_sym_export] = ACTIONS(2673), - [anon_sym_default] = ACTIONS(2673), - [anon_sym_type] = ACTIONS(2673), - [anon_sym_namespace] = ACTIONS(2673), - [anon_sym_LBRACE] = ACTIONS(2671), - [anon_sym_RBRACE] = ACTIONS(2671), - [anon_sym_typeof] = ACTIONS(2673), - [anon_sym_import] = ACTIONS(2673), - [anon_sym_with] = ACTIONS(2673), - [anon_sym_var] = ACTIONS(2673), - [anon_sym_let] = ACTIONS(2673), - [anon_sym_const] = ACTIONS(2673), - [anon_sym_BANG] = ACTIONS(2671), - [anon_sym_else] = ACTIONS(2673), - [anon_sym_if] = ACTIONS(2673), - [anon_sym_switch] = ACTIONS(2673), - [anon_sym_for] = ACTIONS(2673), - [anon_sym_LPAREN] = ACTIONS(2671), - [anon_sym_SEMI] = ACTIONS(2671), - [anon_sym_await] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2673), - [anon_sym_do] = ACTIONS(2673), - [anon_sym_try] = ACTIONS(2673), - [anon_sym_break] = ACTIONS(2673), - [anon_sym_continue] = ACTIONS(2673), - [anon_sym_debugger] = ACTIONS(2673), - [anon_sym_return] = ACTIONS(2673), - [anon_sym_throw] = ACTIONS(2673), - [anon_sym_case] = ACTIONS(2673), - [anon_sym_yield] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2671), - [sym_glimmer_opening_tag] = ACTIONS(2671), - [anon_sym_DQUOTE] = ACTIONS(2671), - [anon_sym_SQUOTE] = ACTIONS(2671), - [anon_sym_class] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_function] = ACTIONS(2673), - [anon_sym_new] = ACTIONS(2673), - [anon_sym_using] = ACTIONS(2673), - [anon_sym_PLUS] = ACTIONS(2673), - [anon_sym_DASH] = ACTIONS(2673), - [anon_sym_SLASH] = ACTIONS(2673), - [anon_sym_LT] = ACTIONS(2673), - [anon_sym_TILDE] = ACTIONS(2671), - [anon_sym_void] = ACTIONS(2673), - [anon_sym_delete] = ACTIONS(2673), - [anon_sym_PLUS_PLUS] = ACTIONS(2671), - [anon_sym_DASH_DASH] = ACTIONS(2671), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2671), - [sym_number] = ACTIONS(2671), - [sym_private_property_identifier] = ACTIONS(2671), - [sym_this] = ACTIONS(2673), - [sym_super] = ACTIONS(2673), - [sym_true] = ACTIONS(2673), - [sym_false] = ACTIONS(2673), - [sym_null] = ACTIONS(2673), - [sym_undefined] = ACTIONS(2673), - [anon_sym_AT] = ACTIONS(2671), - [anon_sym_static] = ACTIONS(2673), - [anon_sym_readonly] = ACTIONS(2673), - [anon_sym_get] = ACTIONS(2673), - [anon_sym_set] = ACTIONS(2673), - [anon_sym_declare] = ACTIONS(2673), - [anon_sym_public] = ACTIONS(2673), - [anon_sym_private] = ACTIONS(2673), - [anon_sym_protected] = ACTIONS(2673), - [anon_sym_override] = ACTIONS(2673), - [anon_sym_module] = ACTIONS(2673), - [anon_sym_any] = ACTIONS(2673), - [anon_sym_number] = ACTIONS(2673), - [anon_sym_boolean] = ACTIONS(2673), - [anon_sym_string] = ACTIONS(2673), - [anon_sym_symbol] = ACTIONS(2673), - [anon_sym_object] = ACTIONS(2673), - [anon_sym_abstract] = ACTIONS(2673), - [anon_sym_interface] = ACTIONS(2673), - [anon_sym_enum] = ACTIONS(2673), + [ts_builtin_sym_end] = ACTIONS(2644), + [sym_identifier] = ACTIONS(2646), + [anon_sym_export] = ACTIONS(2646), + [anon_sym_default] = ACTIONS(2646), + [anon_sym_type] = ACTIONS(2646), + [anon_sym_namespace] = ACTIONS(2646), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_RBRACE] = ACTIONS(2644), + [anon_sym_typeof] = ACTIONS(2646), + [anon_sym_import] = ACTIONS(2646), + [anon_sym_with] = ACTIONS(2646), + [anon_sym_var] = ACTIONS(2646), + [anon_sym_let] = ACTIONS(2646), + [anon_sym_const] = ACTIONS(2646), + [anon_sym_BANG] = ACTIONS(2644), + [anon_sym_else] = ACTIONS(2646), + [anon_sym_if] = ACTIONS(2646), + [anon_sym_switch] = ACTIONS(2646), + [anon_sym_for] = ACTIONS(2646), + [anon_sym_LPAREN] = ACTIONS(2644), + [anon_sym_SEMI] = ACTIONS(2644), + [anon_sym_await] = ACTIONS(2646), + [anon_sym_while] = ACTIONS(2646), + [anon_sym_do] = ACTIONS(2646), + [anon_sym_try] = ACTIONS(2646), + [anon_sym_break] = ACTIONS(2646), + [anon_sym_continue] = ACTIONS(2646), + [anon_sym_debugger] = ACTIONS(2646), + [anon_sym_return] = ACTIONS(2646), + [anon_sym_throw] = ACTIONS(2646), + [anon_sym_case] = ACTIONS(2646), + [anon_sym_yield] = ACTIONS(2646), + [anon_sym_LBRACK] = ACTIONS(2644), + [anon_sym_DQUOTE] = ACTIONS(2644), + [anon_sym_SQUOTE] = ACTIONS(2644), + [anon_sym_class] = ACTIONS(2646), + [anon_sym_async] = ACTIONS(2646), + [anon_sym_function] = ACTIONS(2646), + [anon_sym_new] = ACTIONS(2646), + [anon_sym_using] = ACTIONS(2646), + [anon_sym_PLUS] = ACTIONS(2646), + [anon_sym_DASH] = ACTIONS(2646), + [anon_sym_SLASH] = ACTIONS(2646), + [anon_sym_LT] = ACTIONS(2644), + [anon_sym_TILDE] = ACTIONS(2644), + [anon_sym_void] = ACTIONS(2646), + [anon_sym_delete] = ACTIONS(2646), + [anon_sym_PLUS_PLUS] = ACTIONS(2644), + [anon_sym_DASH_DASH] = ACTIONS(2644), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2644), + [sym_number] = ACTIONS(2644), + [sym_private_property_identifier] = ACTIONS(2644), + [sym_this] = ACTIONS(2646), + [sym_super] = ACTIONS(2646), + [sym_true] = ACTIONS(2646), + [sym_false] = ACTIONS(2646), + [sym_null] = ACTIONS(2646), + [sym_undefined] = ACTIONS(2646), + [anon_sym_AT] = ACTIONS(2644), + [anon_sym_static] = ACTIONS(2646), + [anon_sym_readonly] = ACTIONS(2646), + [anon_sym_get] = ACTIONS(2646), + [anon_sym_set] = ACTIONS(2646), + [anon_sym_declare] = ACTIONS(2646), + [anon_sym_public] = ACTIONS(2646), + [anon_sym_private] = ACTIONS(2646), + [anon_sym_protected] = ACTIONS(2646), + [anon_sym_override] = ACTIONS(2646), + [anon_sym_module] = ACTIONS(2646), + [anon_sym_any] = ACTIONS(2646), + [anon_sym_number] = ACTIONS(2646), + [anon_sym_boolean] = ACTIONS(2646), + [anon_sym_string] = ACTIONS(2646), + [anon_sym_symbol] = ACTIONS(2646), + [anon_sym_object] = ACTIONS(2646), + [anon_sym_abstract] = ACTIONS(2646), + [anon_sym_interface] = ACTIONS(2646), + [anon_sym_enum] = ACTIONS(2646), [sym_html_comment] = ACTIONS(5), }, [827] = { - [ts_builtin_sym_end] = ACTIONS(2671), - [sym_identifier] = ACTIONS(2673), - [anon_sym_export] = ACTIONS(2673), - [anon_sym_default] = ACTIONS(2673), - [anon_sym_type] = ACTIONS(2673), - [anon_sym_namespace] = ACTIONS(2673), - [anon_sym_LBRACE] = ACTIONS(2671), - [anon_sym_RBRACE] = ACTIONS(2671), - [anon_sym_typeof] = ACTIONS(2673), - [anon_sym_import] = ACTIONS(2673), - [anon_sym_with] = ACTIONS(2673), - [anon_sym_var] = ACTIONS(2673), - [anon_sym_let] = ACTIONS(2673), - [anon_sym_const] = ACTIONS(2673), - [anon_sym_BANG] = ACTIONS(2671), - [anon_sym_else] = ACTIONS(2673), - [anon_sym_if] = ACTIONS(2673), - [anon_sym_switch] = ACTIONS(2673), - [anon_sym_for] = ACTIONS(2673), - [anon_sym_LPAREN] = ACTIONS(2671), - [anon_sym_SEMI] = ACTIONS(2671), - [anon_sym_await] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2673), - [anon_sym_do] = ACTIONS(2673), - [anon_sym_try] = ACTIONS(2673), - [anon_sym_break] = ACTIONS(2673), - [anon_sym_continue] = ACTIONS(2673), - [anon_sym_debugger] = ACTIONS(2673), - [anon_sym_return] = ACTIONS(2673), - [anon_sym_throw] = ACTIONS(2673), - [anon_sym_case] = ACTIONS(2673), - [anon_sym_yield] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2671), - [sym_glimmer_opening_tag] = ACTIONS(2671), - [anon_sym_DQUOTE] = ACTIONS(2671), - [anon_sym_SQUOTE] = ACTIONS(2671), - [anon_sym_class] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_function] = ACTIONS(2673), - [anon_sym_new] = ACTIONS(2673), - [anon_sym_using] = ACTIONS(2673), - [anon_sym_PLUS] = ACTIONS(2673), - [anon_sym_DASH] = ACTIONS(2673), - [anon_sym_SLASH] = ACTIONS(2673), - [anon_sym_LT] = ACTIONS(2673), - [anon_sym_TILDE] = ACTIONS(2671), - [anon_sym_void] = ACTIONS(2673), - [anon_sym_delete] = ACTIONS(2673), - [anon_sym_PLUS_PLUS] = ACTIONS(2671), - [anon_sym_DASH_DASH] = ACTIONS(2671), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2671), - [sym_number] = ACTIONS(2671), - [sym_private_property_identifier] = ACTIONS(2671), - [sym_this] = ACTIONS(2673), - [sym_super] = ACTIONS(2673), - [sym_true] = ACTIONS(2673), - [sym_false] = ACTIONS(2673), - [sym_null] = ACTIONS(2673), - [sym_undefined] = ACTIONS(2673), - [anon_sym_AT] = ACTIONS(2671), - [anon_sym_static] = ACTIONS(2673), - [anon_sym_readonly] = ACTIONS(2673), - [anon_sym_get] = ACTIONS(2673), - [anon_sym_set] = ACTIONS(2673), - [anon_sym_declare] = ACTIONS(2673), - [anon_sym_public] = ACTIONS(2673), - [anon_sym_private] = ACTIONS(2673), - [anon_sym_protected] = ACTIONS(2673), - [anon_sym_override] = ACTIONS(2673), - [anon_sym_module] = ACTIONS(2673), - [anon_sym_any] = ACTIONS(2673), - [anon_sym_number] = ACTIONS(2673), - [anon_sym_boolean] = ACTIONS(2673), - [anon_sym_string] = ACTIONS(2673), - [anon_sym_symbol] = ACTIONS(2673), - [anon_sym_object] = ACTIONS(2673), - [anon_sym_abstract] = ACTIONS(2673), - [anon_sym_interface] = ACTIONS(2673), - [anon_sym_enum] = ACTIONS(2673), + [ts_builtin_sym_end] = ACTIONS(2648), + [sym_identifier] = ACTIONS(2650), + [anon_sym_export] = ACTIONS(2650), + [anon_sym_default] = ACTIONS(2650), + [anon_sym_type] = ACTIONS(2650), + [anon_sym_namespace] = ACTIONS(2650), + [anon_sym_LBRACE] = ACTIONS(2648), + [anon_sym_RBRACE] = ACTIONS(2648), + [anon_sym_typeof] = ACTIONS(2650), + [anon_sym_import] = ACTIONS(2650), + [anon_sym_with] = ACTIONS(2650), + [anon_sym_var] = ACTIONS(2650), + [anon_sym_let] = ACTIONS(2650), + [anon_sym_const] = ACTIONS(2650), + [anon_sym_BANG] = ACTIONS(2648), + [anon_sym_else] = ACTIONS(2650), + [anon_sym_if] = ACTIONS(2650), + [anon_sym_switch] = ACTIONS(2650), + [anon_sym_for] = ACTIONS(2650), + [anon_sym_LPAREN] = ACTIONS(2648), + [anon_sym_SEMI] = ACTIONS(2648), + [anon_sym_await] = ACTIONS(2650), + [anon_sym_while] = ACTIONS(2650), + [anon_sym_do] = ACTIONS(2650), + [anon_sym_try] = ACTIONS(2650), + [anon_sym_break] = ACTIONS(2650), + [anon_sym_continue] = ACTIONS(2650), + [anon_sym_debugger] = ACTIONS(2650), + [anon_sym_return] = ACTIONS(2650), + [anon_sym_throw] = ACTIONS(2650), + [anon_sym_case] = ACTIONS(2650), + [anon_sym_yield] = ACTIONS(2650), + [anon_sym_LBRACK] = ACTIONS(2648), + [anon_sym_DQUOTE] = ACTIONS(2648), + [anon_sym_SQUOTE] = ACTIONS(2648), + [anon_sym_class] = ACTIONS(2650), + [anon_sym_async] = ACTIONS(2650), + [anon_sym_function] = ACTIONS(2650), + [anon_sym_new] = ACTIONS(2650), + [anon_sym_using] = ACTIONS(2650), + [anon_sym_PLUS] = ACTIONS(2650), + [anon_sym_DASH] = ACTIONS(2650), + [anon_sym_SLASH] = ACTIONS(2650), + [anon_sym_LT] = ACTIONS(2648), + [anon_sym_TILDE] = ACTIONS(2648), + [anon_sym_void] = ACTIONS(2650), + [anon_sym_delete] = ACTIONS(2650), + [anon_sym_PLUS_PLUS] = ACTIONS(2648), + [anon_sym_DASH_DASH] = ACTIONS(2648), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2648), + [sym_number] = ACTIONS(2648), + [sym_private_property_identifier] = ACTIONS(2648), + [sym_this] = ACTIONS(2650), + [sym_super] = ACTIONS(2650), + [sym_true] = ACTIONS(2650), + [sym_false] = ACTIONS(2650), + [sym_null] = ACTIONS(2650), + [sym_undefined] = ACTIONS(2650), + [anon_sym_AT] = ACTIONS(2648), + [anon_sym_static] = ACTIONS(2650), + [anon_sym_readonly] = ACTIONS(2650), + [anon_sym_get] = ACTIONS(2650), + [anon_sym_set] = ACTIONS(2650), + [anon_sym_declare] = ACTIONS(2650), + [anon_sym_public] = ACTIONS(2650), + [anon_sym_private] = ACTIONS(2650), + [anon_sym_protected] = ACTIONS(2650), + [anon_sym_override] = ACTIONS(2650), + [anon_sym_module] = ACTIONS(2650), + [anon_sym_any] = ACTIONS(2650), + [anon_sym_number] = ACTIONS(2650), + [anon_sym_boolean] = ACTIONS(2650), + [anon_sym_string] = ACTIONS(2650), + [anon_sym_symbol] = ACTIONS(2650), + [anon_sym_object] = ACTIONS(2650), + [anon_sym_abstract] = ACTIONS(2650), + [anon_sym_interface] = ACTIONS(2650), + [anon_sym_enum] = ACTIONS(2650), [sym_html_comment] = ACTIONS(5), }, [828] = { - [ts_builtin_sym_end] = ACTIONS(2675), - [sym_identifier] = ACTIONS(2677), - [anon_sym_export] = ACTIONS(2677), - [anon_sym_default] = ACTIONS(2677), - [anon_sym_type] = ACTIONS(2677), - [anon_sym_namespace] = ACTIONS(2677), - [anon_sym_LBRACE] = ACTIONS(2675), - [anon_sym_RBRACE] = ACTIONS(2675), - [anon_sym_typeof] = ACTIONS(2677), - [anon_sym_import] = ACTIONS(2677), - [anon_sym_with] = ACTIONS(2677), - [anon_sym_var] = ACTIONS(2677), - [anon_sym_let] = ACTIONS(2677), - [anon_sym_const] = ACTIONS(2677), - [anon_sym_BANG] = ACTIONS(2675), - [anon_sym_else] = ACTIONS(2677), - [anon_sym_if] = ACTIONS(2677), - [anon_sym_switch] = ACTIONS(2677), - [anon_sym_for] = ACTIONS(2677), - [anon_sym_LPAREN] = ACTIONS(2675), - [anon_sym_SEMI] = ACTIONS(2675), - [anon_sym_await] = ACTIONS(2677), - [anon_sym_while] = ACTIONS(2677), - [anon_sym_do] = ACTIONS(2677), - [anon_sym_try] = ACTIONS(2677), - [anon_sym_break] = ACTIONS(2677), - [anon_sym_continue] = ACTIONS(2677), - [anon_sym_debugger] = ACTIONS(2677), - [anon_sym_return] = ACTIONS(2677), - [anon_sym_throw] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2677), - [anon_sym_yield] = ACTIONS(2677), - [anon_sym_LBRACK] = ACTIONS(2675), - [sym_glimmer_opening_tag] = ACTIONS(2675), - [anon_sym_DQUOTE] = ACTIONS(2675), - [anon_sym_SQUOTE] = ACTIONS(2675), - [anon_sym_class] = ACTIONS(2677), - [anon_sym_async] = ACTIONS(2677), - [anon_sym_function] = ACTIONS(2677), - [anon_sym_new] = ACTIONS(2677), - [anon_sym_using] = ACTIONS(2677), - [anon_sym_PLUS] = ACTIONS(2677), - [anon_sym_DASH] = ACTIONS(2677), - [anon_sym_SLASH] = ACTIONS(2677), - [anon_sym_LT] = ACTIONS(2677), - [anon_sym_TILDE] = ACTIONS(2675), - [anon_sym_void] = ACTIONS(2677), - [anon_sym_delete] = ACTIONS(2677), - [anon_sym_PLUS_PLUS] = ACTIONS(2675), - [anon_sym_DASH_DASH] = ACTIONS(2675), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2675), - [sym_number] = ACTIONS(2675), - [sym_private_property_identifier] = ACTIONS(2675), - [sym_this] = ACTIONS(2677), - [sym_super] = ACTIONS(2677), - [sym_true] = ACTIONS(2677), - [sym_false] = ACTIONS(2677), - [sym_null] = ACTIONS(2677), - [sym_undefined] = ACTIONS(2677), - [anon_sym_AT] = ACTIONS(2675), - [anon_sym_static] = ACTIONS(2677), - [anon_sym_readonly] = ACTIONS(2677), - [anon_sym_get] = ACTIONS(2677), - [anon_sym_set] = ACTIONS(2677), - [anon_sym_declare] = ACTIONS(2677), - [anon_sym_public] = ACTIONS(2677), - [anon_sym_private] = ACTIONS(2677), - [anon_sym_protected] = ACTIONS(2677), - [anon_sym_override] = ACTIONS(2677), - [anon_sym_module] = ACTIONS(2677), - [anon_sym_any] = ACTIONS(2677), - [anon_sym_number] = ACTIONS(2677), - [anon_sym_boolean] = ACTIONS(2677), - [anon_sym_string] = ACTIONS(2677), - [anon_sym_symbol] = ACTIONS(2677), - [anon_sym_object] = ACTIONS(2677), - [anon_sym_abstract] = ACTIONS(2677), - [anon_sym_interface] = ACTIONS(2677), - [anon_sym_enum] = ACTIONS(2677), + [ts_builtin_sym_end] = ACTIONS(2652), + [sym_identifier] = ACTIONS(2654), + [anon_sym_export] = ACTIONS(2654), + [anon_sym_default] = ACTIONS(2654), + [anon_sym_type] = ACTIONS(2654), + [anon_sym_namespace] = ACTIONS(2654), + [anon_sym_LBRACE] = ACTIONS(2652), + [anon_sym_RBRACE] = ACTIONS(2652), + [anon_sym_typeof] = ACTIONS(2654), + [anon_sym_import] = ACTIONS(2654), + [anon_sym_with] = ACTIONS(2654), + [anon_sym_var] = ACTIONS(2654), + [anon_sym_let] = ACTIONS(2654), + [anon_sym_const] = ACTIONS(2654), + [anon_sym_BANG] = ACTIONS(2652), + [anon_sym_else] = ACTIONS(2654), + [anon_sym_if] = ACTIONS(2654), + [anon_sym_switch] = ACTIONS(2654), + [anon_sym_for] = ACTIONS(2654), + [anon_sym_LPAREN] = ACTIONS(2652), + [anon_sym_SEMI] = ACTIONS(2652), + [anon_sym_await] = ACTIONS(2654), + [anon_sym_while] = ACTIONS(2654), + [anon_sym_do] = ACTIONS(2654), + [anon_sym_try] = ACTIONS(2654), + [anon_sym_break] = ACTIONS(2654), + [anon_sym_continue] = ACTIONS(2654), + [anon_sym_debugger] = ACTIONS(2654), + [anon_sym_return] = ACTIONS(2654), + [anon_sym_throw] = ACTIONS(2654), + [anon_sym_case] = ACTIONS(2654), + [anon_sym_yield] = ACTIONS(2654), + [anon_sym_LBRACK] = ACTIONS(2652), + [anon_sym_DQUOTE] = ACTIONS(2652), + [anon_sym_SQUOTE] = ACTIONS(2652), + [anon_sym_class] = ACTIONS(2654), + [anon_sym_async] = ACTIONS(2654), + [anon_sym_function] = ACTIONS(2654), + [anon_sym_new] = ACTIONS(2654), + [anon_sym_using] = ACTIONS(2654), + [anon_sym_PLUS] = ACTIONS(2654), + [anon_sym_DASH] = ACTIONS(2654), + [anon_sym_SLASH] = ACTIONS(2654), + [anon_sym_LT] = ACTIONS(2652), + [anon_sym_TILDE] = ACTIONS(2652), + [anon_sym_void] = ACTIONS(2654), + [anon_sym_delete] = ACTIONS(2654), + [anon_sym_PLUS_PLUS] = ACTIONS(2652), + [anon_sym_DASH_DASH] = ACTIONS(2652), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2652), + [sym_number] = ACTIONS(2652), + [sym_private_property_identifier] = ACTIONS(2652), + [sym_this] = ACTIONS(2654), + [sym_super] = ACTIONS(2654), + [sym_true] = ACTIONS(2654), + [sym_false] = ACTIONS(2654), + [sym_null] = ACTIONS(2654), + [sym_undefined] = ACTIONS(2654), + [anon_sym_AT] = ACTIONS(2652), + [anon_sym_static] = ACTIONS(2654), + [anon_sym_readonly] = ACTIONS(2654), + [anon_sym_get] = ACTIONS(2654), + [anon_sym_set] = ACTIONS(2654), + [anon_sym_declare] = ACTIONS(2654), + [anon_sym_public] = ACTIONS(2654), + [anon_sym_private] = ACTIONS(2654), + [anon_sym_protected] = ACTIONS(2654), + [anon_sym_override] = ACTIONS(2654), + [anon_sym_module] = ACTIONS(2654), + [anon_sym_any] = ACTIONS(2654), + [anon_sym_number] = ACTIONS(2654), + [anon_sym_boolean] = ACTIONS(2654), + [anon_sym_string] = ACTIONS(2654), + [anon_sym_symbol] = ACTIONS(2654), + [anon_sym_object] = ACTIONS(2654), + [anon_sym_abstract] = ACTIONS(2654), + [anon_sym_interface] = ACTIONS(2654), + [anon_sym_enum] = ACTIONS(2654), [sym_html_comment] = ACTIONS(5), }, [829] = { - [ts_builtin_sym_end] = ACTIONS(2679), - [sym_identifier] = ACTIONS(2681), - [anon_sym_export] = ACTIONS(2681), - [anon_sym_default] = ACTIONS(2681), - [anon_sym_type] = ACTIONS(2681), - [anon_sym_namespace] = ACTIONS(2681), - [anon_sym_LBRACE] = ACTIONS(2679), - [anon_sym_RBRACE] = ACTIONS(2679), - [anon_sym_typeof] = ACTIONS(2681), - [anon_sym_import] = ACTIONS(2681), - [anon_sym_with] = ACTIONS(2681), - [anon_sym_var] = ACTIONS(2681), - [anon_sym_let] = ACTIONS(2681), - [anon_sym_const] = ACTIONS(2681), - [anon_sym_BANG] = ACTIONS(2679), - [anon_sym_else] = ACTIONS(2681), - [anon_sym_if] = ACTIONS(2681), - [anon_sym_switch] = ACTIONS(2681), - [anon_sym_for] = ACTIONS(2681), - [anon_sym_LPAREN] = ACTIONS(2679), - [anon_sym_SEMI] = ACTIONS(2679), - [anon_sym_await] = ACTIONS(2681), - [anon_sym_while] = ACTIONS(2681), - [anon_sym_do] = ACTIONS(2681), - [anon_sym_try] = ACTIONS(2681), - [anon_sym_break] = ACTIONS(2681), - [anon_sym_continue] = ACTIONS(2681), - [anon_sym_debugger] = ACTIONS(2681), - [anon_sym_return] = ACTIONS(2681), - [anon_sym_throw] = ACTIONS(2681), - [anon_sym_case] = ACTIONS(2681), - [anon_sym_yield] = ACTIONS(2681), - [anon_sym_LBRACK] = ACTIONS(2679), - [sym_glimmer_opening_tag] = ACTIONS(2679), - [anon_sym_DQUOTE] = ACTIONS(2679), - [anon_sym_SQUOTE] = ACTIONS(2679), - [anon_sym_class] = ACTIONS(2681), - [anon_sym_async] = ACTIONS(2681), - [anon_sym_function] = ACTIONS(2681), - [anon_sym_new] = ACTIONS(2681), - [anon_sym_using] = ACTIONS(2681), - [anon_sym_PLUS] = ACTIONS(2681), - [anon_sym_DASH] = ACTIONS(2681), - [anon_sym_SLASH] = ACTIONS(2681), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_TILDE] = ACTIONS(2679), - [anon_sym_void] = ACTIONS(2681), - [anon_sym_delete] = ACTIONS(2681), - [anon_sym_PLUS_PLUS] = ACTIONS(2679), - [anon_sym_DASH_DASH] = ACTIONS(2679), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2679), - [sym_number] = ACTIONS(2679), - [sym_private_property_identifier] = ACTIONS(2679), - [sym_this] = ACTIONS(2681), - [sym_super] = ACTIONS(2681), - [sym_true] = ACTIONS(2681), - [sym_false] = ACTIONS(2681), - [sym_null] = ACTIONS(2681), - [sym_undefined] = ACTIONS(2681), - [anon_sym_AT] = ACTIONS(2679), - [anon_sym_static] = ACTIONS(2681), - [anon_sym_readonly] = ACTIONS(2681), - [anon_sym_get] = ACTIONS(2681), - [anon_sym_set] = ACTIONS(2681), - [anon_sym_declare] = ACTIONS(2681), - [anon_sym_public] = ACTIONS(2681), - [anon_sym_private] = ACTIONS(2681), - [anon_sym_protected] = ACTIONS(2681), - [anon_sym_override] = ACTIONS(2681), - [anon_sym_module] = ACTIONS(2681), - [anon_sym_any] = ACTIONS(2681), - [anon_sym_number] = ACTIONS(2681), - [anon_sym_boolean] = ACTIONS(2681), - [anon_sym_string] = ACTIONS(2681), - [anon_sym_symbol] = ACTIONS(2681), - [anon_sym_object] = ACTIONS(2681), - [anon_sym_abstract] = ACTIONS(2681), - [anon_sym_interface] = ACTIONS(2681), - [anon_sym_enum] = ACTIONS(2681), + [ts_builtin_sym_end] = ACTIONS(2656), + [sym_identifier] = ACTIONS(2658), + [anon_sym_export] = ACTIONS(2658), + [anon_sym_default] = ACTIONS(2658), + [anon_sym_type] = ACTIONS(2658), + [anon_sym_namespace] = ACTIONS(2658), + [anon_sym_LBRACE] = ACTIONS(2656), + [anon_sym_RBRACE] = ACTIONS(2656), + [anon_sym_typeof] = ACTIONS(2658), + [anon_sym_import] = ACTIONS(2658), + [anon_sym_with] = ACTIONS(2658), + [anon_sym_var] = ACTIONS(2658), + [anon_sym_let] = ACTIONS(2658), + [anon_sym_const] = ACTIONS(2658), + [anon_sym_BANG] = ACTIONS(2656), + [anon_sym_else] = ACTIONS(2658), + [anon_sym_if] = ACTIONS(2658), + [anon_sym_switch] = ACTIONS(2658), + [anon_sym_for] = ACTIONS(2658), + [anon_sym_LPAREN] = ACTIONS(2656), + [anon_sym_SEMI] = ACTIONS(2656), + [anon_sym_await] = ACTIONS(2658), + [anon_sym_while] = ACTIONS(2658), + [anon_sym_do] = ACTIONS(2658), + [anon_sym_try] = ACTIONS(2658), + [anon_sym_break] = ACTIONS(2658), + [anon_sym_continue] = ACTIONS(2658), + [anon_sym_debugger] = ACTIONS(2658), + [anon_sym_return] = ACTIONS(2658), + [anon_sym_throw] = ACTIONS(2658), + [anon_sym_case] = ACTIONS(2658), + [anon_sym_yield] = ACTIONS(2658), + [anon_sym_LBRACK] = ACTIONS(2656), + [anon_sym_DQUOTE] = ACTIONS(2656), + [anon_sym_SQUOTE] = ACTIONS(2656), + [anon_sym_class] = ACTIONS(2658), + [anon_sym_async] = ACTIONS(2658), + [anon_sym_function] = ACTIONS(2658), + [anon_sym_new] = ACTIONS(2658), + [anon_sym_using] = ACTIONS(2658), + [anon_sym_PLUS] = ACTIONS(2658), + [anon_sym_DASH] = ACTIONS(2658), + [anon_sym_SLASH] = ACTIONS(2658), + [anon_sym_LT] = ACTIONS(2656), + [anon_sym_TILDE] = ACTIONS(2656), + [anon_sym_void] = ACTIONS(2658), + [anon_sym_delete] = ACTIONS(2658), + [anon_sym_PLUS_PLUS] = ACTIONS(2656), + [anon_sym_DASH_DASH] = ACTIONS(2656), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2656), + [sym_number] = ACTIONS(2656), + [sym_private_property_identifier] = ACTIONS(2656), + [sym_this] = ACTIONS(2658), + [sym_super] = ACTIONS(2658), + [sym_true] = ACTIONS(2658), + [sym_false] = ACTIONS(2658), + [sym_null] = ACTIONS(2658), + [sym_undefined] = ACTIONS(2658), + [anon_sym_AT] = ACTIONS(2656), + [anon_sym_static] = ACTIONS(2658), + [anon_sym_readonly] = ACTIONS(2658), + [anon_sym_get] = ACTIONS(2658), + [anon_sym_set] = ACTIONS(2658), + [anon_sym_declare] = ACTIONS(2658), + [anon_sym_public] = ACTIONS(2658), + [anon_sym_private] = ACTIONS(2658), + [anon_sym_protected] = ACTIONS(2658), + [anon_sym_override] = ACTIONS(2658), + [anon_sym_module] = ACTIONS(2658), + [anon_sym_any] = ACTIONS(2658), + [anon_sym_number] = ACTIONS(2658), + [anon_sym_boolean] = ACTIONS(2658), + [anon_sym_string] = ACTIONS(2658), + [anon_sym_symbol] = ACTIONS(2658), + [anon_sym_object] = ACTIONS(2658), + [anon_sym_abstract] = ACTIONS(2658), + [anon_sym_interface] = ACTIONS(2658), + [anon_sym_enum] = ACTIONS(2658), [sym_html_comment] = ACTIONS(5), }, [830] = { - [ts_builtin_sym_end] = ACTIONS(2683), - [sym_identifier] = ACTIONS(2685), - [anon_sym_export] = ACTIONS(2685), - [anon_sym_default] = ACTIONS(2685), - [anon_sym_type] = ACTIONS(2685), - [anon_sym_namespace] = ACTIONS(2685), - [anon_sym_LBRACE] = ACTIONS(2683), - [anon_sym_RBRACE] = ACTIONS(2683), - [anon_sym_typeof] = ACTIONS(2685), - [anon_sym_import] = ACTIONS(2685), - [anon_sym_with] = ACTIONS(2685), - [anon_sym_var] = ACTIONS(2685), - [anon_sym_let] = ACTIONS(2685), - [anon_sym_const] = ACTIONS(2685), - [anon_sym_BANG] = ACTIONS(2683), - [anon_sym_else] = ACTIONS(2685), - [anon_sym_if] = ACTIONS(2685), - [anon_sym_switch] = ACTIONS(2685), - [anon_sym_for] = ACTIONS(2685), - [anon_sym_LPAREN] = ACTIONS(2683), - [anon_sym_SEMI] = ACTIONS(2683), - [anon_sym_await] = ACTIONS(2685), - [anon_sym_while] = ACTIONS(2685), - [anon_sym_do] = ACTIONS(2685), - [anon_sym_try] = ACTIONS(2685), - [anon_sym_break] = ACTIONS(2685), - [anon_sym_continue] = ACTIONS(2685), - [anon_sym_debugger] = ACTIONS(2685), - [anon_sym_return] = ACTIONS(2685), - [anon_sym_throw] = ACTIONS(2685), - [anon_sym_case] = ACTIONS(2685), - [anon_sym_yield] = ACTIONS(2685), - [anon_sym_LBRACK] = ACTIONS(2683), - [sym_glimmer_opening_tag] = ACTIONS(2683), - [anon_sym_DQUOTE] = ACTIONS(2683), - [anon_sym_SQUOTE] = ACTIONS(2683), - [anon_sym_class] = ACTIONS(2685), - [anon_sym_async] = ACTIONS(2685), - [anon_sym_function] = ACTIONS(2685), - [anon_sym_new] = ACTIONS(2685), - [anon_sym_using] = ACTIONS(2685), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_SLASH] = ACTIONS(2685), - [anon_sym_LT] = ACTIONS(2685), - [anon_sym_TILDE] = ACTIONS(2683), - [anon_sym_void] = ACTIONS(2685), - [anon_sym_delete] = ACTIONS(2685), - [anon_sym_PLUS_PLUS] = ACTIONS(2683), - [anon_sym_DASH_DASH] = ACTIONS(2683), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2683), - [sym_number] = ACTIONS(2683), - [sym_private_property_identifier] = ACTIONS(2683), - [sym_this] = ACTIONS(2685), - [sym_super] = ACTIONS(2685), - [sym_true] = ACTIONS(2685), - [sym_false] = ACTIONS(2685), - [sym_null] = ACTIONS(2685), - [sym_undefined] = ACTIONS(2685), - [anon_sym_AT] = ACTIONS(2683), - [anon_sym_static] = ACTIONS(2685), - [anon_sym_readonly] = ACTIONS(2685), - [anon_sym_get] = ACTIONS(2685), - [anon_sym_set] = ACTIONS(2685), - [anon_sym_declare] = ACTIONS(2685), - [anon_sym_public] = ACTIONS(2685), - [anon_sym_private] = ACTIONS(2685), - [anon_sym_protected] = ACTIONS(2685), - [anon_sym_override] = ACTIONS(2685), - [anon_sym_module] = ACTIONS(2685), - [anon_sym_any] = ACTIONS(2685), - [anon_sym_number] = ACTIONS(2685), - [anon_sym_boolean] = ACTIONS(2685), - [anon_sym_string] = ACTIONS(2685), - [anon_sym_symbol] = ACTIONS(2685), - [anon_sym_object] = ACTIONS(2685), - [anon_sym_abstract] = ACTIONS(2685), - [anon_sym_interface] = ACTIONS(2685), - [anon_sym_enum] = ACTIONS(2685), + [ts_builtin_sym_end] = ACTIONS(2660), + [sym_identifier] = ACTIONS(2662), + [anon_sym_export] = ACTIONS(2662), + [anon_sym_default] = ACTIONS(2662), + [anon_sym_type] = ACTIONS(2662), + [anon_sym_namespace] = ACTIONS(2662), + [anon_sym_LBRACE] = ACTIONS(2660), + [anon_sym_RBRACE] = ACTIONS(2660), + [anon_sym_typeof] = ACTIONS(2662), + [anon_sym_import] = ACTIONS(2662), + [anon_sym_with] = ACTIONS(2662), + [anon_sym_var] = ACTIONS(2662), + [anon_sym_let] = ACTIONS(2662), + [anon_sym_const] = ACTIONS(2662), + [anon_sym_BANG] = ACTIONS(2660), + [anon_sym_else] = ACTIONS(2662), + [anon_sym_if] = ACTIONS(2662), + [anon_sym_switch] = ACTIONS(2662), + [anon_sym_for] = ACTIONS(2662), + [anon_sym_LPAREN] = ACTIONS(2660), + [anon_sym_SEMI] = ACTIONS(2660), + [anon_sym_await] = ACTIONS(2662), + [anon_sym_while] = ACTIONS(2662), + [anon_sym_do] = ACTIONS(2662), + [anon_sym_try] = ACTIONS(2662), + [anon_sym_break] = ACTIONS(2662), + [anon_sym_continue] = ACTIONS(2662), + [anon_sym_debugger] = ACTIONS(2662), + [anon_sym_return] = ACTIONS(2662), + [anon_sym_throw] = ACTIONS(2662), + [anon_sym_case] = ACTIONS(2662), + [anon_sym_yield] = ACTIONS(2662), + [anon_sym_LBRACK] = ACTIONS(2660), + [anon_sym_DQUOTE] = ACTIONS(2660), + [anon_sym_SQUOTE] = ACTIONS(2660), + [anon_sym_class] = ACTIONS(2662), + [anon_sym_async] = ACTIONS(2662), + [anon_sym_function] = ACTIONS(2662), + [anon_sym_new] = ACTIONS(2662), + [anon_sym_using] = ACTIONS(2662), + [anon_sym_PLUS] = ACTIONS(2662), + [anon_sym_DASH] = ACTIONS(2662), + [anon_sym_SLASH] = ACTIONS(2662), + [anon_sym_LT] = ACTIONS(2660), + [anon_sym_TILDE] = ACTIONS(2660), + [anon_sym_void] = ACTIONS(2662), + [anon_sym_delete] = ACTIONS(2662), + [anon_sym_PLUS_PLUS] = ACTIONS(2660), + [anon_sym_DASH_DASH] = ACTIONS(2660), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2660), + [sym_number] = ACTIONS(2660), + [sym_private_property_identifier] = ACTIONS(2660), + [sym_this] = ACTIONS(2662), + [sym_super] = ACTIONS(2662), + [sym_true] = ACTIONS(2662), + [sym_false] = ACTIONS(2662), + [sym_null] = ACTIONS(2662), + [sym_undefined] = ACTIONS(2662), + [anon_sym_AT] = ACTIONS(2660), + [anon_sym_static] = ACTIONS(2662), + [anon_sym_readonly] = ACTIONS(2662), + [anon_sym_get] = ACTIONS(2662), + [anon_sym_set] = ACTIONS(2662), + [anon_sym_declare] = ACTIONS(2662), + [anon_sym_public] = ACTIONS(2662), + [anon_sym_private] = ACTIONS(2662), + [anon_sym_protected] = ACTIONS(2662), + [anon_sym_override] = ACTIONS(2662), + [anon_sym_module] = ACTIONS(2662), + [anon_sym_any] = ACTIONS(2662), + [anon_sym_number] = ACTIONS(2662), + [anon_sym_boolean] = ACTIONS(2662), + [anon_sym_string] = ACTIONS(2662), + [anon_sym_symbol] = ACTIONS(2662), + [anon_sym_object] = ACTIONS(2662), + [anon_sym_abstract] = ACTIONS(2662), + [anon_sym_interface] = ACTIONS(2662), + [anon_sym_enum] = ACTIONS(2662), [sym_html_comment] = ACTIONS(5), }, [831] = { - [ts_builtin_sym_end] = ACTIONS(2687), - [sym_identifier] = ACTIONS(2689), - [anon_sym_export] = ACTIONS(2689), - [anon_sym_default] = ACTIONS(2689), - [anon_sym_type] = ACTIONS(2689), - [anon_sym_namespace] = ACTIONS(2689), - [anon_sym_LBRACE] = ACTIONS(2687), - [anon_sym_RBRACE] = ACTIONS(2687), - [anon_sym_typeof] = ACTIONS(2689), - [anon_sym_import] = ACTIONS(2689), - [anon_sym_with] = ACTIONS(2689), - [anon_sym_var] = ACTIONS(2689), - [anon_sym_let] = ACTIONS(2689), - [anon_sym_const] = ACTIONS(2689), - [anon_sym_BANG] = ACTIONS(2687), - [anon_sym_else] = ACTIONS(2689), - [anon_sym_if] = ACTIONS(2689), - [anon_sym_switch] = ACTIONS(2689), - [anon_sym_for] = ACTIONS(2689), - [anon_sym_LPAREN] = ACTIONS(2687), - [anon_sym_SEMI] = ACTIONS(2687), - [anon_sym_await] = ACTIONS(2689), - [anon_sym_while] = ACTIONS(2689), - [anon_sym_do] = ACTIONS(2689), - [anon_sym_try] = ACTIONS(2689), - [anon_sym_break] = ACTIONS(2689), - [anon_sym_continue] = ACTIONS(2689), - [anon_sym_debugger] = ACTIONS(2689), - [anon_sym_return] = ACTIONS(2689), - [anon_sym_throw] = ACTIONS(2689), - [anon_sym_case] = ACTIONS(2689), - [anon_sym_yield] = ACTIONS(2689), - [anon_sym_LBRACK] = ACTIONS(2687), - [sym_glimmer_opening_tag] = ACTIONS(2687), - [anon_sym_DQUOTE] = ACTIONS(2687), - [anon_sym_SQUOTE] = ACTIONS(2687), - [anon_sym_class] = ACTIONS(2689), - [anon_sym_async] = ACTIONS(2689), - [anon_sym_function] = ACTIONS(2689), - [anon_sym_new] = ACTIONS(2689), - [anon_sym_using] = ACTIONS(2689), - [anon_sym_PLUS] = ACTIONS(2689), - [anon_sym_DASH] = ACTIONS(2689), - [anon_sym_SLASH] = ACTIONS(2689), - [anon_sym_LT] = ACTIONS(2689), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_void] = ACTIONS(2689), - [anon_sym_delete] = ACTIONS(2689), - [anon_sym_PLUS_PLUS] = ACTIONS(2687), - [anon_sym_DASH_DASH] = ACTIONS(2687), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2687), - [sym_number] = ACTIONS(2687), - [sym_private_property_identifier] = ACTIONS(2687), - [sym_this] = ACTIONS(2689), - [sym_super] = ACTIONS(2689), - [sym_true] = ACTIONS(2689), - [sym_false] = ACTIONS(2689), - [sym_null] = ACTIONS(2689), - [sym_undefined] = ACTIONS(2689), - [anon_sym_AT] = ACTIONS(2687), - [anon_sym_static] = ACTIONS(2689), - [anon_sym_readonly] = ACTIONS(2689), - [anon_sym_get] = ACTIONS(2689), - [anon_sym_set] = ACTIONS(2689), - [anon_sym_declare] = ACTIONS(2689), - [anon_sym_public] = ACTIONS(2689), - [anon_sym_private] = ACTIONS(2689), - [anon_sym_protected] = ACTIONS(2689), - [anon_sym_override] = ACTIONS(2689), - [anon_sym_module] = ACTIONS(2689), - [anon_sym_any] = ACTIONS(2689), - [anon_sym_number] = ACTIONS(2689), - [anon_sym_boolean] = ACTIONS(2689), - [anon_sym_string] = ACTIONS(2689), - [anon_sym_symbol] = ACTIONS(2689), - [anon_sym_object] = ACTIONS(2689), - [anon_sym_abstract] = ACTIONS(2689), - [anon_sym_interface] = ACTIONS(2689), - [anon_sym_enum] = ACTIONS(2689), + [ts_builtin_sym_end] = ACTIONS(2664), + [sym_identifier] = ACTIONS(2666), + [anon_sym_export] = ACTIONS(2666), + [anon_sym_default] = ACTIONS(2666), + [anon_sym_type] = ACTIONS(2666), + [anon_sym_namespace] = ACTIONS(2666), + [anon_sym_LBRACE] = ACTIONS(2664), + [anon_sym_RBRACE] = ACTIONS(2664), + [anon_sym_typeof] = ACTIONS(2666), + [anon_sym_import] = ACTIONS(2666), + [anon_sym_with] = ACTIONS(2666), + [anon_sym_var] = ACTIONS(2666), + [anon_sym_let] = ACTIONS(2666), + [anon_sym_const] = ACTIONS(2666), + [anon_sym_BANG] = ACTIONS(2664), + [anon_sym_else] = ACTIONS(2666), + [anon_sym_if] = ACTIONS(2666), + [anon_sym_switch] = ACTIONS(2666), + [anon_sym_for] = ACTIONS(2666), + [anon_sym_LPAREN] = ACTIONS(2664), + [anon_sym_SEMI] = ACTIONS(2664), + [anon_sym_await] = ACTIONS(2666), + [anon_sym_while] = ACTIONS(2666), + [anon_sym_do] = ACTIONS(2666), + [anon_sym_try] = ACTIONS(2666), + [anon_sym_break] = ACTIONS(2666), + [anon_sym_continue] = ACTIONS(2666), + [anon_sym_debugger] = ACTIONS(2666), + [anon_sym_return] = ACTIONS(2666), + [anon_sym_throw] = ACTIONS(2666), + [anon_sym_case] = ACTIONS(2666), + [anon_sym_yield] = ACTIONS(2666), + [anon_sym_LBRACK] = ACTIONS(2664), + [anon_sym_DQUOTE] = ACTIONS(2664), + [anon_sym_SQUOTE] = ACTIONS(2664), + [anon_sym_class] = ACTIONS(2666), + [anon_sym_async] = ACTIONS(2666), + [anon_sym_function] = ACTIONS(2666), + [anon_sym_new] = ACTIONS(2666), + [anon_sym_using] = ACTIONS(2666), + [anon_sym_PLUS] = ACTIONS(2666), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_SLASH] = ACTIONS(2666), + [anon_sym_LT] = ACTIONS(2664), + [anon_sym_TILDE] = ACTIONS(2664), + [anon_sym_void] = ACTIONS(2666), + [anon_sym_delete] = ACTIONS(2666), + [anon_sym_PLUS_PLUS] = ACTIONS(2664), + [anon_sym_DASH_DASH] = ACTIONS(2664), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2664), + [sym_number] = ACTIONS(2664), + [sym_private_property_identifier] = ACTIONS(2664), + [sym_this] = ACTIONS(2666), + [sym_super] = ACTIONS(2666), + [sym_true] = ACTIONS(2666), + [sym_false] = ACTIONS(2666), + [sym_null] = ACTIONS(2666), + [sym_undefined] = ACTIONS(2666), + [anon_sym_AT] = ACTIONS(2664), + [anon_sym_static] = ACTIONS(2666), + [anon_sym_readonly] = ACTIONS(2666), + [anon_sym_get] = ACTIONS(2666), + [anon_sym_set] = ACTIONS(2666), + [anon_sym_declare] = ACTIONS(2666), + [anon_sym_public] = ACTIONS(2666), + [anon_sym_private] = ACTIONS(2666), + [anon_sym_protected] = ACTIONS(2666), + [anon_sym_override] = ACTIONS(2666), + [anon_sym_module] = ACTIONS(2666), + [anon_sym_any] = ACTIONS(2666), + [anon_sym_number] = ACTIONS(2666), + [anon_sym_boolean] = ACTIONS(2666), + [anon_sym_string] = ACTIONS(2666), + [anon_sym_symbol] = ACTIONS(2666), + [anon_sym_object] = ACTIONS(2666), + [anon_sym_abstract] = ACTIONS(2666), + [anon_sym_interface] = ACTIONS(2666), + [anon_sym_enum] = ACTIONS(2666), [sym_html_comment] = ACTIONS(5), }, [832] = { - [ts_builtin_sym_end] = ACTIONS(2691), - [sym_identifier] = ACTIONS(2693), - [anon_sym_export] = ACTIONS(2693), - [anon_sym_default] = ACTIONS(2693), - [anon_sym_type] = ACTIONS(2693), - [anon_sym_namespace] = ACTIONS(2693), - [anon_sym_LBRACE] = ACTIONS(2691), - [anon_sym_RBRACE] = ACTIONS(2691), - [anon_sym_typeof] = ACTIONS(2693), - [anon_sym_import] = ACTIONS(2693), - [anon_sym_with] = ACTIONS(2693), - [anon_sym_var] = ACTIONS(2693), - [anon_sym_let] = ACTIONS(2693), - [anon_sym_const] = ACTIONS(2693), - [anon_sym_BANG] = ACTIONS(2691), - [anon_sym_else] = ACTIONS(2693), - [anon_sym_if] = ACTIONS(2693), - [anon_sym_switch] = ACTIONS(2693), - [anon_sym_for] = ACTIONS(2693), - [anon_sym_LPAREN] = ACTIONS(2691), - [anon_sym_SEMI] = ACTIONS(2691), - [anon_sym_await] = ACTIONS(2693), - [anon_sym_while] = ACTIONS(2693), - [anon_sym_do] = ACTIONS(2693), - [anon_sym_try] = ACTIONS(2693), - [anon_sym_break] = ACTIONS(2693), - [anon_sym_continue] = ACTIONS(2693), - [anon_sym_debugger] = ACTIONS(2693), - [anon_sym_return] = ACTIONS(2693), - [anon_sym_throw] = ACTIONS(2693), - [anon_sym_case] = ACTIONS(2693), - [anon_sym_yield] = ACTIONS(2693), - [anon_sym_LBRACK] = ACTIONS(2691), - [sym_glimmer_opening_tag] = ACTIONS(2691), - [anon_sym_DQUOTE] = ACTIONS(2691), - [anon_sym_SQUOTE] = ACTIONS(2691), - [anon_sym_class] = ACTIONS(2693), - [anon_sym_async] = ACTIONS(2693), - [anon_sym_function] = ACTIONS(2693), - [anon_sym_new] = ACTIONS(2693), - [anon_sym_using] = ACTIONS(2693), - [anon_sym_PLUS] = ACTIONS(2693), - [anon_sym_DASH] = ACTIONS(2693), - [anon_sym_SLASH] = ACTIONS(2693), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_TILDE] = ACTIONS(2691), - [anon_sym_void] = ACTIONS(2693), - [anon_sym_delete] = ACTIONS(2693), - [anon_sym_PLUS_PLUS] = ACTIONS(2691), - [anon_sym_DASH_DASH] = ACTIONS(2691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2691), - [sym_number] = ACTIONS(2691), - [sym_private_property_identifier] = ACTIONS(2691), - [sym_this] = ACTIONS(2693), - [sym_super] = ACTIONS(2693), - [sym_true] = ACTIONS(2693), - [sym_false] = ACTIONS(2693), - [sym_null] = ACTIONS(2693), - [sym_undefined] = ACTIONS(2693), - [anon_sym_AT] = ACTIONS(2691), - [anon_sym_static] = ACTIONS(2693), - [anon_sym_readonly] = ACTIONS(2693), - [anon_sym_get] = ACTIONS(2693), - [anon_sym_set] = ACTIONS(2693), - [anon_sym_declare] = ACTIONS(2693), - [anon_sym_public] = ACTIONS(2693), - [anon_sym_private] = ACTIONS(2693), - [anon_sym_protected] = ACTIONS(2693), - [anon_sym_override] = ACTIONS(2693), - [anon_sym_module] = ACTIONS(2693), - [anon_sym_any] = ACTIONS(2693), - [anon_sym_number] = ACTIONS(2693), - [anon_sym_boolean] = ACTIONS(2693), - [anon_sym_string] = ACTIONS(2693), - [anon_sym_symbol] = ACTIONS(2693), - [anon_sym_object] = ACTIONS(2693), - [anon_sym_abstract] = ACTIONS(2693), - [anon_sym_interface] = ACTIONS(2693), - [anon_sym_enum] = ACTIONS(2693), + [ts_builtin_sym_end] = ACTIONS(2668), + [sym_identifier] = ACTIONS(2670), + [anon_sym_export] = ACTIONS(2670), + [anon_sym_default] = ACTIONS(2670), + [anon_sym_type] = ACTIONS(2670), + [anon_sym_namespace] = ACTIONS(2670), + [anon_sym_LBRACE] = ACTIONS(2668), + [anon_sym_RBRACE] = ACTIONS(2668), + [anon_sym_typeof] = ACTIONS(2670), + [anon_sym_import] = ACTIONS(2670), + [anon_sym_with] = ACTIONS(2670), + [anon_sym_var] = ACTIONS(2670), + [anon_sym_let] = ACTIONS(2670), + [anon_sym_const] = ACTIONS(2670), + [anon_sym_BANG] = ACTIONS(2668), + [anon_sym_else] = ACTIONS(2670), + [anon_sym_if] = ACTIONS(2670), + [anon_sym_switch] = ACTIONS(2670), + [anon_sym_for] = ACTIONS(2670), + [anon_sym_LPAREN] = ACTIONS(2668), + [anon_sym_SEMI] = ACTIONS(2668), + [anon_sym_await] = ACTIONS(2670), + [anon_sym_while] = ACTIONS(2670), + [anon_sym_do] = ACTIONS(2670), + [anon_sym_try] = ACTIONS(2670), + [anon_sym_break] = ACTIONS(2670), + [anon_sym_continue] = ACTIONS(2670), + [anon_sym_debugger] = ACTIONS(2670), + [anon_sym_return] = ACTIONS(2670), + [anon_sym_throw] = ACTIONS(2670), + [anon_sym_case] = ACTIONS(2670), + [anon_sym_yield] = ACTIONS(2670), + [anon_sym_LBRACK] = ACTIONS(2668), + [anon_sym_DQUOTE] = ACTIONS(2668), + [anon_sym_SQUOTE] = ACTIONS(2668), + [anon_sym_class] = ACTIONS(2670), + [anon_sym_async] = ACTIONS(2670), + [anon_sym_function] = ACTIONS(2670), + [anon_sym_new] = ACTIONS(2670), + [anon_sym_using] = ACTIONS(2670), + [anon_sym_PLUS] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(2670), + [anon_sym_SLASH] = ACTIONS(2670), + [anon_sym_LT] = ACTIONS(2668), + [anon_sym_TILDE] = ACTIONS(2668), + [anon_sym_void] = ACTIONS(2670), + [anon_sym_delete] = ACTIONS(2670), + [anon_sym_PLUS_PLUS] = ACTIONS(2668), + [anon_sym_DASH_DASH] = ACTIONS(2668), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2668), + [sym_number] = ACTIONS(2668), + [sym_private_property_identifier] = ACTIONS(2668), + [sym_this] = ACTIONS(2670), + [sym_super] = ACTIONS(2670), + [sym_true] = ACTIONS(2670), + [sym_false] = ACTIONS(2670), + [sym_null] = ACTIONS(2670), + [sym_undefined] = ACTIONS(2670), + [anon_sym_AT] = ACTIONS(2668), + [anon_sym_static] = ACTIONS(2670), + [anon_sym_readonly] = ACTIONS(2670), + [anon_sym_get] = ACTIONS(2670), + [anon_sym_set] = ACTIONS(2670), + [anon_sym_declare] = ACTIONS(2670), + [anon_sym_public] = ACTIONS(2670), + [anon_sym_private] = ACTIONS(2670), + [anon_sym_protected] = ACTIONS(2670), + [anon_sym_override] = ACTIONS(2670), + [anon_sym_module] = ACTIONS(2670), + [anon_sym_any] = ACTIONS(2670), + [anon_sym_number] = ACTIONS(2670), + [anon_sym_boolean] = ACTIONS(2670), + [anon_sym_string] = ACTIONS(2670), + [anon_sym_symbol] = ACTIONS(2670), + [anon_sym_object] = ACTIONS(2670), + [anon_sym_abstract] = ACTIONS(2670), + [anon_sym_interface] = ACTIONS(2670), + [anon_sym_enum] = ACTIONS(2670), [sym_html_comment] = ACTIONS(5), }, [833] = { - [ts_builtin_sym_end] = ACTIONS(2695), - [sym_identifier] = ACTIONS(2697), - [anon_sym_export] = ACTIONS(2697), - [anon_sym_default] = ACTIONS(2697), - [anon_sym_type] = ACTIONS(2697), - [anon_sym_namespace] = ACTIONS(2697), - [anon_sym_LBRACE] = ACTIONS(2695), - [anon_sym_RBRACE] = ACTIONS(2695), - [anon_sym_typeof] = ACTIONS(2697), - [anon_sym_import] = ACTIONS(2697), - [anon_sym_with] = ACTIONS(2697), - [anon_sym_var] = ACTIONS(2697), - [anon_sym_let] = ACTIONS(2697), - [anon_sym_const] = ACTIONS(2697), - [anon_sym_BANG] = ACTIONS(2695), - [anon_sym_else] = ACTIONS(2697), - [anon_sym_if] = ACTIONS(2697), - [anon_sym_switch] = ACTIONS(2697), - [anon_sym_for] = ACTIONS(2697), - [anon_sym_LPAREN] = ACTIONS(2695), - [anon_sym_SEMI] = ACTIONS(2695), - [anon_sym_await] = ACTIONS(2697), - [anon_sym_while] = ACTIONS(2697), - [anon_sym_do] = ACTIONS(2697), - [anon_sym_try] = ACTIONS(2697), - [anon_sym_break] = ACTIONS(2697), - [anon_sym_continue] = ACTIONS(2697), - [anon_sym_debugger] = ACTIONS(2697), - [anon_sym_return] = ACTIONS(2697), - [anon_sym_throw] = ACTIONS(2697), - [anon_sym_case] = ACTIONS(2697), - [anon_sym_yield] = ACTIONS(2697), - [anon_sym_LBRACK] = ACTIONS(2695), - [sym_glimmer_opening_tag] = ACTIONS(2695), - [anon_sym_DQUOTE] = ACTIONS(2695), - [anon_sym_SQUOTE] = ACTIONS(2695), - [anon_sym_class] = ACTIONS(2697), - [anon_sym_async] = ACTIONS(2697), - [anon_sym_function] = ACTIONS(2697), - [anon_sym_new] = ACTIONS(2697), - [anon_sym_using] = ACTIONS(2697), - [anon_sym_PLUS] = ACTIONS(2697), - [anon_sym_DASH] = ACTIONS(2697), - [anon_sym_SLASH] = ACTIONS(2697), - [anon_sym_LT] = ACTIONS(2697), - [anon_sym_TILDE] = ACTIONS(2695), - [anon_sym_void] = ACTIONS(2697), - [anon_sym_delete] = ACTIONS(2697), - [anon_sym_PLUS_PLUS] = ACTIONS(2695), - [anon_sym_DASH_DASH] = ACTIONS(2695), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2695), - [sym_number] = ACTIONS(2695), - [sym_private_property_identifier] = ACTIONS(2695), - [sym_this] = ACTIONS(2697), - [sym_super] = ACTIONS(2697), - [sym_true] = ACTIONS(2697), - [sym_false] = ACTIONS(2697), - [sym_null] = ACTIONS(2697), - [sym_undefined] = ACTIONS(2697), - [anon_sym_AT] = ACTIONS(2695), - [anon_sym_static] = ACTIONS(2697), - [anon_sym_readonly] = ACTIONS(2697), - [anon_sym_get] = ACTIONS(2697), - [anon_sym_set] = ACTIONS(2697), - [anon_sym_declare] = ACTIONS(2697), - [anon_sym_public] = ACTIONS(2697), - [anon_sym_private] = ACTIONS(2697), - [anon_sym_protected] = ACTIONS(2697), - [anon_sym_override] = ACTIONS(2697), - [anon_sym_module] = ACTIONS(2697), - [anon_sym_any] = ACTIONS(2697), - [anon_sym_number] = ACTIONS(2697), - [anon_sym_boolean] = ACTIONS(2697), - [anon_sym_string] = ACTIONS(2697), - [anon_sym_symbol] = ACTIONS(2697), - [anon_sym_object] = ACTIONS(2697), - [anon_sym_abstract] = ACTIONS(2697), - [anon_sym_interface] = ACTIONS(2697), - [anon_sym_enum] = ACTIONS(2697), + [ts_builtin_sym_end] = ACTIONS(2672), + [sym_identifier] = ACTIONS(2674), + [anon_sym_export] = ACTIONS(2674), + [anon_sym_default] = ACTIONS(2674), + [anon_sym_type] = ACTIONS(2674), + [anon_sym_namespace] = ACTIONS(2674), + [anon_sym_LBRACE] = ACTIONS(2672), + [anon_sym_RBRACE] = ACTIONS(2672), + [anon_sym_typeof] = ACTIONS(2674), + [anon_sym_import] = ACTIONS(2674), + [anon_sym_with] = ACTIONS(2674), + [anon_sym_var] = ACTIONS(2674), + [anon_sym_let] = ACTIONS(2674), + [anon_sym_const] = ACTIONS(2674), + [anon_sym_BANG] = ACTIONS(2672), + [anon_sym_else] = ACTIONS(2674), + [anon_sym_if] = ACTIONS(2674), + [anon_sym_switch] = ACTIONS(2674), + [anon_sym_for] = ACTIONS(2674), + [anon_sym_LPAREN] = ACTIONS(2672), + [anon_sym_SEMI] = ACTIONS(2672), + [anon_sym_await] = ACTIONS(2674), + [anon_sym_while] = ACTIONS(2674), + [anon_sym_do] = ACTIONS(2674), + [anon_sym_try] = ACTIONS(2674), + [anon_sym_break] = ACTIONS(2674), + [anon_sym_continue] = ACTIONS(2674), + [anon_sym_debugger] = ACTIONS(2674), + [anon_sym_return] = ACTIONS(2674), + [anon_sym_throw] = ACTIONS(2674), + [anon_sym_case] = ACTIONS(2674), + [anon_sym_yield] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2672), + [anon_sym_DQUOTE] = ACTIONS(2672), + [anon_sym_SQUOTE] = ACTIONS(2672), + [anon_sym_class] = ACTIONS(2674), + [anon_sym_async] = ACTIONS(2674), + [anon_sym_function] = ACTIONS(2674), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_using] = ACTIONS(2674), + [anon_sym_PLUS] = ACTIONS(2674), + [anon_sym_DASH] = ACTIONS(2674), + [anon_sym_SLASH] = ACTIONS(2674), + [anon_sym_LT] = ACTIONS(2672), + [anon_sym_TILDE] = ACTIONS(2672), + [anon_sym_void] = ACTIONS(2674), + [anon_sym_delete] = ACTIONS(2674), + [anon_sym_PLUS_PLUS] = ACTIONS(2672), + [anon_sym_DASH_DASH] = ACTIONS(2672), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2672), + [sym_number] = ACTIONS(2672), + [sym_private_property_identifier] = ACTIONS(2672), + [sym_this] = ACTIONS(2674), + [sym_super] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [sym_null] = ACTIONS(2674), + [sym_undefined] = ACTIONS(2674), + [anon_sym_AT] = ACTIONS(2672), + [anon_sym_static] = ACTIONS(2674), + [anon_sym_readonly] = ACTIONS(2674), + [anon_sym_get] = ACTIONS(2674), + [anon_sym_set] = ACTIONS(2674), + [anon_sym_declare] = ACTIONS(2674), + [anon_sym_public] = ACTIONS(2674), + [anon_sym_private] = ACTIONS(2674), + [anon_sym_protected] = ACTIONS(2674), + [anon_sym_override] = ACTIONS(2674), + [anon_sym_module] = ACTIONS(2674), + [anon_sym_any] = ACTIONS(2674), + [anon_sym_number] = ACTIONS(2674), + [anon_sym_boolean] = ACTIONS(2674), + [anon_sym_string] = ACTIONS(2674), + [anon_sym_symbol] = ACTIONS(2674), + [anon_sym_object] = ACTIONS(2674), + [anon_sym_abstract] = ACTIONS(2674), + [anon_sym_interface] = ACTIONS(2674), + [anon_sym_enum] = ACTIONS(2674), [sym_html_comment] = ACTIONS(5), }, [834] = { - [ts_builtin_sym_end] = ACTIONS(2699), - [sym_identifier] = ACTIONS(2701), - [anon_sym_export] = ACTIONS(2701), - [anon_sym_default] = ACTIONS(2701), - [anon_sym_type] = ACTIONS(2701), - [anon_sym_namespace] = ACTIONS(2701), - [anon_sym_LBRACE] = ACTIONS(2699), - [anon_sym_RBRACE] = ACTIONS(2699), - [anon_sym_typeof] = ACTIONS(2701), - [anon_sym_import] = ACTIONS(2701), - [anon_sym_with] = ACTIONS(2701), - [anon_sym_var] = ACTIONS(2701), - [anon_sym_let] = ACTIONS(2701), - [anon_sym_const] = ACTIONS(2701), - [anon_sym_BANG] = ACTIONS(2699), - [anon_sym_else] = ACTIONS(2701), - [anon_sym_if] = ACTIONS(2701), - [anon_sym_switch] = ACTIONS(2701), - [anon_sym_for] = ACTIONS(2701), - [anon_sym_LPAREN] = ACTIONS(2699), - [anon_sym_SEMI] = ACTIONS(2699), - [anon_sym_await] = ACTIONS(2701), - [anon_sym_while] = ACTIONS(2701), - [anon_sym_do] = ACTIONS(2701), - [anon_sym_try] = ACTIONS(2701), - [anon_sym_break] = ACTIONS(2701), - [anon_sym_continue] = ACTIONS(2701), - [anon_sym_debugger] = ACTIONS(2701), - [anon_sym_return] = ACTIONS(2701), - [anon_sym_throw] = ACTIONS(2701), - [anon_sym_case] = ACTIONS(2701), - [anon_sym_yield] = ACTIONS(2701), - [anon_sym_LBRACK] = ACTIONS(2699), - [sym_glimmer_opening_tag] = ACTIONS(2699), - [anon_sym_DQUOTE] = ACTIONS(2699), - [anon_sym_SQUOTE] = ACTIONS(2699), - [anon_sym_class] = ACTIONS(2701), - [anon_sym_async] = ACTIONS(2701), - [anon_sym_function] = ACTIONS(2701), - [anon_sym_new] = ACTIONS(2701), - [anon_sym_using] = ACTIONS(2701), - [anon_sym_PLUS] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_SLASH] = ACTIONS(2701), - [anon_sym_LT] = ACTIONS(2701), - [anon_sym_TILDE] = ACTIONS(2699), - [anon_sym_void] = ACTIONS(2701), - [anon_sym_delete] = ACTIONS(2701), - [anon_sym_PLUS_PLUS] = ACTIONS(2699), - [anon_sym_DASH_DASH] = ACTIONS(2699), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2699), - [sym_number] = ACTIONS(2699), - [sym_private_property_identifier] = ACTIONS(2699), - [sym_this] = ACTIONS(2701), - [sym_super] = ACTIONS(2701), - [sym_true] = ACTIONS(2701), - [sym_false] = ACTIONS(2701), - [sym_null] = ACTIONS(2701), - [sym_undefined] = ACTIONS(2701), - [anon_sym_AT] = ACTIONS(2699), - [anon_sym_static] = ACTIONS(2701), - [anon_sym_readonly] = ACTIONS(2701), - [anon_sym_get] = ACTIONS(2701), - [anon_sym_set] = ACTIONS(2701), - [anon_sym_declare] = ACTIONS(2701), - [anon_sym_public] = ACTIONS(2701), - [anon_sym_private] = ACTIONS(2701), - [anon_sym_protected] = ACTIONS(2701), - [anon_sym_override] = ACTIONS(2701), - [anon_sym_module] = ACTIONS(2701), - [anon_sym_any] = ACTIONS(2701), - [anon_sym_number] = ACTIONS(2701), - [anon_sym_boolean] = ACTIONS(2701), - [anon_sym_string] = ACTIONS(2701), - [anon_sym_symbol] = ACTIONS(2701), - [anon_sym_object] = ACTIONS(2701), - [anon_sym_abstract] = ACTIONS(2701), - [anon_sym_interface] = ACTIONS(2701), - [anon_sym_enum] = ACTIONS(2701), + [sym_import] = STATE(4786), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5658), + [sym_rest_pattern] = STATE(5415), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3263), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3806), + [sym_tuple_parameter] = STATE(5460), + [sym_optional_tuple_parameter] = STATE(5460), + [sym_optional_type] = STATE(5460), + [sym_rest_type] = STATE(5460), + [sym__tuple_type_member] = STATE(5460), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5559), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(2468), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(2676), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2474), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [835] = { - [ts_builtin_sym_end] = ACTIONS(2699), - [sym_identifier] = ACTIONS(2701), - [anon_sym_export] = ACTIONS(2701), - [anon_sym_default] = ACTIONS(2701), - [anon_sym_type] = ACTIONS(2701), - [anon_sym_namespace] = ACTIONS(2701), - [anon_sym_LBRACE] = ACTIONS(2699), - [anon_sym_RBRACE] = ACTIONS(2699), - [anon_sym_typeof] = ACTIONS(2701), - [anon_sym_import] = ACTIONS(2701), - [anon_sym_with] = ACTIONS(2701), - [anon_sym_var] = ACTIONS(2701), - [anon_sym_let] = ACTIONS(2701), - [anon_sym_const] = ACTIONS(2701), - [anon_sym_BANG] = ACTIONS(2699), - [anon_sym_else] = ACTIONS(2701), - [anon_sym_if] = ACTIONS(2701), - [anon_sym_switch] = ACTIONS(2701), - [anon_sym_for] = ACTIONS(2701), - [anon_sym_LPAREN] = ACTIONS(2699), - [anon_sym_SEMI] = ACTIONS(2699), - [anon_sym_await] = ACTIONS(2701), - [anon_sym_while] = ACTIONS(2701), - [anon_sym_do] = ACTIONS(2701), - [anon_sym_try] = ACTIONS(2701), - [anon_sym_break] = ACTIONS(2701), - [anon_sym_continue] = ACTIONS(2701), - [anon_sym_debugger] = ACTIONS(2701), - [anon_sym_return] = ACTIONS(2701), - [anon_sym_throw] = ACTIONS(2701), - [anon_sym_case] = ACTIONS(2701), - [anon_sym_yield] = ACTIONS(2701), - [anon_sym_LBRACK] = ACTIONS(2699), - [sym_glimmer_opening_tag] = ACTIONS(2699), - [anon_sym_DQUOTE] = ACTIONS(2699), - [anon_sym_SQUOTE] = ACTIONS(2699), - [anon_sym_class] = ACTIONS(2701), - [anon_sym_async] = ACTIONS(2701), - [anon_sym_function] = ACTIONS(2701), - [anon_sym_new] = ACTIONS(2701), - [anon_sym_using] = ACTIONS(2701), - [anon_sym_PLUS] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_SLASH] = ACTIONS(2701), - [anon_sym_LT] = ACTIONS(2701), - [anon_sym_TILDE] = ACTIONS(2699), - [anon_sym_void] = ACTIONS(2701), - [anon_sym_delete] = ACTIONS(2701), - [anon_sym_PLUS_PLUS] = ACTIONS(2699), - [anon_sym_DASH_DASH] = ACTIONS(2699), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2699), - [sym_number] = ACTIONS(2699), - [sym_private_property_identifier] = ACTIONS(2699), - [sym_this] = ACTIONS(2701), - [sym_super] = ACTIONS(2701), - [sym_true] = ACTIONS(2701), - [sym_false] = ACTIONS(2701), - [sym_null] = ACTIONS(2701), - [sym_undefined] = ACTIONS(2701), - [anon_sym_AT] = ACTIONS(2699), - [anon_sym_static] = ACTIONS(2701), - [anon_sym_readonly] = ACTIONS(2701), - [anon_sym_get] = ACTIONS(2701), - [anon_sym_set] = ACTIONS(2701), - [anon_sym_declare] = ACTIONS(2701), - [anon_sym_public] = ACTIONS(2701), - [anon_sym_private] = ACTIONS(2701), - [anon_sym_protected] = ACTIONS(2701), - [anon_sym_override] = ACTIONS(2701), - [anon_sym_module] = ACTIONS(2701), - [anon_sym_any] = ACTIONS(2701), - [anon_sym_number] = ACTIONS(2701), - [anon_sym_boolean] = ACTIONS(2701), - [anon_sym_string] = ACTIONS(2701), - [anon_sym_symbol] = ACTIONS(2701), - [anon_sym_object] = ACTIONS(2701), - [anon_sym_abstract] = ACTIONS(2701), - [anon_sym_interface] = ACTIONS(2701), - [anon_sym_enum] = ACTIONS(2701), + [ts_builtin_sym_end] = ACTIONS(2678), + [sym_identifier] = ACTIONS(2680), + [anon_sym_export] = ACTIONS(2680), + [anon_sym_default] = ACTIONS(2680), + [anon_sym_type] = ACTIONS(2680), + [anon_sym_namespace] = ACTIONS(2680), + [anon_sym_LBRACE] = ACTIONS(2678), + [anon_sym_RBRACE] = ACTIONS(2678), + [anon_sym_typeof] = ACTIONS(2680), + [anon_sym_import] = ACTIONS(2680), + [anon_sym_with] = ACTIONS(2680), + [anon_sym_var] = ACTIONS(2680), + [anon_sym_let] = ACTIONS(2680), + [anon_sym_const] = ACTIONS(2680), + [anon_sym_BANG] = ACTIONS(2678), + [anon_sym_else] = ACTIONS(2680), + [anon_sym_if] = ACTIONS(2680), + [anon_sym_switch] = ACTIONS(2680), + [anon_sym_for] = ACTIONS(2680), + [anon_sym_LPAREN] = ACTIONS(2678), + [anon_sym_SEMI] = ACTIONS(2678), + [anon_sym_await] = ACTIONS(2680), + [anon_sym_while] = ACTIONS(2680), + [anon_sym_do] = ACTIONS(2680), + [anon_sym_try] = ACTIONS(2680), + [anon_sym_break] = ACTIONS(2680), + [anon_sym_continue] = ACTIONS(2680), + [anon_sym_debugger] = ACTIONS(2680), + [anon_sym_return] = ACTIONS(2680), + [anon_sym_throw] = ACTIONS(2680), + [anon_sym_case] = ACTIONS(2680), + [anon_sym_yield] = ACTIONS(2680), + [anon_sym_LBRACK] = ACTIONS(2678), + [anon_sym_DQUOTE] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2678), + [anon_sym_class] = ACTIONS(2680), + [anon_sym_async] = ACTIONS(2680), + [anon_sym_function] = ACTIONS(2680), + [anon_sym_new] = ACTIONS(2680), + [anon_sym_using] = ACTIONS(2680), + [anon_sym_PLUS] = ACTIONS(2680), + [anon_sym_DASH] = ACTIONS(2680), + [anon_sym_SLASH] = ACTIONS(2680), + [anon_sym_LT] = ACTIONS(2678), + [anon_sym_TILDE] = ACTIONS(2678), + [anon_sym_void] = ACTIONS(2680), + [anon_sym_delete] = ACTIONS(2680), + [anon_sym_PLUS_PLUS] = ACTIONS(2678), + [anon_sym_DASH_DASH] = ACTIONS(2678), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2678), + [sym_number] = ACTIONS(2678), + [sym_private_property_identifier] = ACTIONS(2678), + [sym_this] = ACTIONS(2680), + [sym_super] = ACTIONS(2680), + [sym_true] = ACTIONS(2680), + [sym_false] = ACTIONS(2680), + [sym_null] = ACTIONS(2680), + [sym_undefined] = ACTIONS(2680), + [anon_sym_AT] = ACTIONS(2678), + [anon_sym_static] = ACTIONS(2680), + [anon_sym_readonly] = ACTIONS(2680), + [anon_sym_get] = ACTIONS(2680), + [anon_sym_set] = ACTIONS(2680), + [anon_sym_declare] = ACTIONS(2680), + [anon_sym_public] = ACTIONS(2680), + [anon_sym_private] = ACTIONS(2680), + [anon_sym_protected] = ACTIONS(2680), + [anon_sym_override] = ACTIONS(2680), + [anon_sym_module] = ACTIONS(2680), + [anon_sym_any] = ACTIONS(2680), + [anon_sym_number] = ACTIONS(2680), + [anon_sym_boolean] = ACTIONS(2680), + [anon_sym_string] = ACTIONS(2680), + [anon_sym_symbol] = ACTIONS(2680), + [anon_sym_object] = ACTIONS(2680), + [anon_sym_abstract] = ACTIONS(2680), + [anon_sym_interface] = ACTIONS(2680), + [anon_sym_enum] = ACTIONS(2680), [sym_html_comment] = ACTIONS(5), }, [836] = { - [ts_builtin_sym_end] = ACTIONS(2671), - [sym_identifier] = ACTIONS(2673), - [anon_sym_export] = ACTIONS(2673), - [anon_sym_default] = ACTIONS(2673), - [anon_sym_type] = ACTIONS(2673), - [anon_sym_namespace] = ACTIONS(2673), - [anon_sym_LBRACE] = ACTIONS(2671), - [anon_sym_RBRACE] = ACTIONS(2671), - [anon_sym_typeof] = ACTIONS(2673), - [anon_sym_import] = ACTIONS(2673), - [anon_sym_with] = ACTIONS(2673), - [anon_sym_var] = ACTIONS(2673), - [anon_sym_let] = ACTIONS(2673), - [anon_sym_const] = ACTIONS(2673), - [anon_sym_BANG] = ACTIONS(2671), - [anon_sym_else] = ACTIONS(2673), - [anon_sym_if] = ACTIONS(2673), - [anon_sym_switch] = ACTIONS(2673), - [anon_sym_for] = ACTIONS(2673), - [anon_sym_LPAREN] = ACTIONS(2671), - [anon_sym_SEMI] = ACTIONS(2671), - [anon_sym_await] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2673), - [anon_sym_do] = ACTIONS(2673), - [anon_sym_try] = ACTIONS(2673), - [anon_sym_break] = ACTIONS(2673), - [anon_sym_continue] = ACTIONS(2673), - [anon_sym_debugger] = ACTIONS(2673), - [anon_sym_return] = ACTIONS(2673), - [anon_sym_throw] = ACTIONS(2673), - [anon_sym_case] = ACTIONS(2673), - [anon_sym_yield] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2671), - [sym_glimmer_opening_tag] = ACTIONS(2671), - [anon_sym_DQUOTE] = ACTIONS(2671), - [anon_sym_SQUOTE] = ACTIONS(2671), - [anon_sym_class] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_function] = ACTIONS(2673), - [anon_sym_new] = ACTIONS(2673), - [anon_sym_using] = ACTIONS(2673), - [anon_sym_PLUS] = ACTIONS(2673), - [anon_sym_DASH] = ACTIONS(2673), - [anon_sym_SLASH] = ACTIONS(2673), - [anon_sym_LT] = ACTIONS(2673), - [anon_sym_TILDE] = ACTIONS(2671), - [anon_sym_void] = ACTIONS(2673), - [anon_sym_delete] = ACTIONS(2673), - [anon_sym_PLUS_PLUS] = ACTIONS(2671), - [anon_sym_DASH_DASH] = ACTIONS(2671), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2671), - [sym_number] = ACTIONS(2671), - [sym_private_property_identifier] = ACTIONS(2671), - [sym_this] = ACTIONS(2673), - [sym_super] = ACTIONS(2673), - [sym_true] = ACTIONS(2673), - [sym_false] = ACTIONS(2673), - [sym_null] = ACTIONS(2673), - [sym_undefined] = ACTIONS(2673), - [anon_sym_AT] = ACTIONS(2671), - [anon_sym_static] = ACTIONS(2673), - [anon_sym_readonly] = ACTIONS(2673), - [anon_sym_get] = ACTIONS(2673), - [anon_sym_set] = ACTIONS(2673), - [anon_sym_declare] = ACTIONS(2673), - [anon_sym_public] = ACTIONS(2673), - [anon_sym_private] = ACTIONS(2673), - [anon_sym_protected] = ACTIONS(2673), - [anon_sym_override] = ACTIONS(2673), - [anon_sym_module] = ACTIONS(2673), - [anon_sym_any] = ACTIONS(2673), - [anon_sym_number] = ACTIONS(2673), - [anon_sym_boolean] = ACTIONS(2673), - [anon_sym_string] = ACTIONS(2673), - [anon_sym_symbol] = ACTIONS(2673), - [anon_sym_object] = ACTIONS(2673), - [anon_sym_abstract] = ACTIONS(2673), - [anon_sym_interface] = ACTIONS(2673), - [anon_sym_enum] = ACTIONS(2673), + [ts_builtin_sym_end] = ACTIONS(2678), + [sym_identifier] = ACTIONS(2680), + [anon_sym_export] = ACTIONS(2680), + [anon_sym_default] = ACTIONS(2680), + [anon_sym_type] = ACTIONS(2680), + [anon_sym_namespace] = ACTIONS(2680), + [anon_sym_LBRACE] = ACTIONS(2678), + [anon_sym_RBRACE] = ACTIONS(2678), + [anon_sym_typeof] = ACTIONS(2680), + [anon_sym_import] = ACTIONS(2680), + [anon_sym_with] = ACTIONS(2680), + [anon_sym_var] = ACTIONS(2680), + [anon_sym_let] = ACTIONS(2680), + [anon_sym_const] = ACTIONS(2680), + [anon_sym_BANG] = ACTIONS(2678), + [anon_sym_else] = ACTIONS(2680), + [anon_sym_if] = ACTIONS(2680), + [anon_sym_switch] = ACTIONS(2680), + [anon_sym_for] = ACTIONS(2680), + [anon_sym_LPAREN] = ACTIONS(2678), + [anon_sym_SEMI] = ACTIONS(2678), + [anon_sym_await] = ACTIONS(2680), + [anon_sym_while] = ACTIONS(2680), + [anon_sym_do] = ACTIONS(2680), + [anon_sym_try] = ACTIONS(2680), + [anon_sym_break] = ACTIONS(2680), + [anon_sym_continue] = ACTIONS(2680), + [anon_sym_debugger] = ACTIONS(2680), + [anon_sym_return] = ACTIONS(2680), + [anon_sym_throw] = ACTIONS(2680), + [anon_sym_case] = ACTIONS(2680), + [anon_sym_yield] = ACTIONS(2680), + [anon_sym_LBRACK] = ACTIONS(2678), + [anon_sym_DQUOTE] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2678), + [anon_sym_class] = ACTIONS(2680), + [anon_sym_async] = ACTIONS(2680), + [anon_sym_function] = ACTIONS(2680), + [anon_sym_new] = ACTIONS(2680), + [anon_sym_using] = ACTIONS(2680), + [anon_sym_PLUS] = ACTIONS(2680), + [anon_sym_DASH] = ACTIONS(2680), + [anon_sym_SLASH] = ACTIONS(2680), + [anon_sym_LT] = ACTIONS(2678), + [anon_sym_TILDE] = ACTIONS(2678), + [anon_sym_void] = ACTIONS(2680), + [anon_sym_delete] = ACTIONS(2680), + [anon_sym_PLUS_PLUS] = ACTIONS(2678), + [anon_sym_DASH_DASH] = ACTIONS(2678), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2678), + [sym_number] = ACTIONS(2678), + [sym_private_property_identifier] = ACTIONS(2678), + [sym_this] = ACTIONS(2680), + [sym_super] = ACTIONS(2680), + [sym_true] = ACTIONS(2680), + [sym_false] = ACTIONS(2680), + [sym_null] = ACTIONS(2680), + [sym_undefined] = ACTIONS(2680), + [anon_sym_AT] = ACTIONS(2678), + [anon_sym_static] = ACTIONS(2680), + [anon_sym_readonly] = ACTIONS(2680), + [anon_sym_get] = ACTIONS(2680), + [anon_sym_set] = ACTIONS(2680), + [anon_sym_declare] = ACTIONS(2680), + [anon_sym_public] = ACTIONS(2680), + [anon_sym_private] = ACTIONS(2680), + [anon_sym_protected] = ACTIONS(2680), + [anon_sym_override] = ACTIONS(2680), + [anon_sym_module] = ACTIONS(2680), + [anon_sym_any] = ACTIONS(2680), + [anon_sym_number] = ACTIONS(2680), + [anon_sym_boolean] = ACTIONS(2680), + [anon_sym_string] = ACTIONS(2680), + [anon_sym_symbol] = ACTIONS(2680), + [anon_sym_object] = ACTIONS(2680), + [anon_sym_abstract] = ACTIONS(2680), + [anon_sym_interface] = ACTIONS(2680), + [anon_sym_enum] = ACTIONS(2680), [sym_html_comment] = ACTIONS(5), }, [837] = { - [ts_builtin_sym_end] = ACTIONS(2703), - [sym_identifier] = ACTIONS(2705), - [anon_sym_export] = ACTIONS(2705), - [anon_sym_default] = ACTIONS(2705), - [anon_sym_type] = ACTIONS(2705), - [anon_sym_namespace] = ACTIONS(2705), - [anon_sym_LBRACE] = ACTIONS(2703), - [anon_sym_RBRACE] = ACTIONS(2703), - [anon_sym_typeof] = ACTIONS(2705), - [anon_sym_import] = ACTIONS(2705), - [anon_sym_with] = ACTIONS(2705), - [anon_sym_var] = ACTIONS(2705), - [anon_sym_let] = ACTIONS(2705), - [anon_sym_const] = ACTIONS(2705), - [anon_sym_BANG] = ACTIONS(2703), - [anon_sym_else] = ACTIONS(2705), - [anon_sym_if] = ACTIONS(2705), - [anon_sym_switch] = ACTIONS(2705), - [anon_sym_for] = ACTIONS(2705), - [anon_sym_LPAREN] = ACTIONS(2703), - [anon_sym_SEMI] = ACTIONS(2703), - [anon_sym_await] = ACTIONS(2705), - [anon_sym_while] = ACTIONS(2705), - [anon_sym_do] = ACTIONS(2705), - [anon_sym_try] = ACTIONS(2705), - [anon_sym_break] = ACTIONS(2705), - [anon_sym_continue] = ACTIONS(2705), - [anon_sym_debugger] = ACTIONS(2705), - [anon_sym_return] = ACTIONS(2705), - [anon_sym_throw] = ACTIONS(2705), - [anon_sym_case] = ACTIONS(2705), - [anon_sym_yield] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2703), - [sym_glimmer_opening_tag] = ACTIONS(2703), - [anon_sym_DQUOTE] = ACTIONS(2703), - [anon_sym_SQUOTE] = ACTIONS(2703), - [anon_sym_class] = ACTIONS(2705), - [anon_sym_async] = ACTIONS(2705), - [anon_sym_function] = ACTIONS(2705), - [anon_sym_new] = ACTIONS(2705), - [anon_sym_using] = ACTIONS(2705), - [anon_sym_PLUS] = ACTIONS(2705), - [anon_sym_DASH] = ACTIONS(2705), - [anon_sym_SLASH] = ACTIONS(2705), - [anon_sym_LT] = ACTIONS(2705), - [anon_sym_TILDE] = ACTIONS(2703), - [anon_sym_void] = ACTIONS(2705), - [anon_sym_delete] = ACTIONS(2705), - [anon_sym_PLUS_PLUS] = ACTIONS(2703), - [anon_sym_DASH_DASH] = ACTIONS(2703), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2703), - [sym_number] = ACTIONS(2703), - [sym_private_property_identifier] = ACTIONS(2703), - [sym_this] = ACTIONS(2705), - [sym_super] = ACTIONS(2705), - [sym_true] = ACTIONS(2705), - [sym_false] = ACTIONS(2705), - [sym_null] = ACTIONS(2705), - [sym_undefined] = ACTIONS(2705), - [anon_sym_AT] = ACTIONS(2703), - [anon_sym_static] = ACTIONS(2705), - [anon_sym_readonly] = ACTIONS(2705), - [anon_sym_get] = ACTIONS(2705), - [anon_sym_set] = ACTIONS(2705), - [anon_sym_declare] = ACTIONS(2705), - [anon_sym_public] = ACTIONS(2705), - [anon_sym_private] = ACTIONS(2705), - [anon_sym_protected] = ACTIONS(2705), - [anon_sym_override] = ACTIONS(2705), - [anon_sym_module] = ACTIONS(2705), - [anon_sym_any] = ACTIONS(2705), - [anon_sym_number] = ACTIONS(2705), - [anon_sym_boolean] = ACTIONS(2705), - [anon_sym_string] = ACTIONS(2705), - [anon_sym_symbol] = ACTIONS(2705), - [anon_sym_object] = ACTIONS(2705), - [anon_sym_abstract] = ACTIONS(2705), - [anon_sym_interface] = ACTIONS(2705), - [anon_sym_enum] = ACTIONS(2705), + [ts_builtin_sym_end] = ACTIONS(2678), + [sym_identifier] = ACTIONS(2680), + [anon_sym_export] = ACTIONS(2680), + [anon_sym_default] = ACTIONS(2680), + [anon_sym_type] = ACTIONS(2680), + [anon_sym_namespace] = ACTIONS(2680), + [anon_sym_LBRACE] = ACTIONS(2678), + [anon_sym_RBRACE] = ACTIONS(2678), + [anon_sym_typeof] = ACTIONS(2680), + [anon_sym_import] = ACTIONS(2680), + [anon_sym_with] = ACTIONS(2680), + [anon_sym_var] = ACTIONS(2680), + [anon_sym_let] = ACTIONS(2680), + [anon_sym_const] = ACTIONS(2680), + [anon_sym_BANG] = ACTIONS(2678), + [anon_sym_else] = ACTIONS(2680), + [anon_sym_if] = ACTIONS(2680), + [anon_sym_switch] = ACTIONS(2680), + [anon_sym_for] = ACTIONS(2680), + [anon_sym_LPAREN] = ACTIONS(2678), + [anon_sym_SEMI] = ACTIONS(2678), + [anon_sym_await] = ACTIONS(2680), + [anon_sym_while] = ACTIONS(2680), + [anon_sym_do] = ACTIONS(2680), + [anon_sym_try] = ACTIONS(2680), + [anon_sym_break] = ACTIONS(2680), + [anon_sym_continue] = ACTIONS(2680), + [anon_sym_debugger] = ACTIONS(2680), + [anon_sym_return] = ACTIONS(2680), + [anon_sym_throw] = ACTIONS(2680), + [anon_sym_case] = ACTIONS(2680), + [anon_sym_yield] = ACTIONS(2680), + [anon_sym_LBRACK] = ACTIONS(2678), + [anon_sym_DQUOTE] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2678), + [anon_sym_class] = ACTIONS(2680), + [anon_sym_async] = ACTIONS(2680), + [anon_sym_function] = ACTIONS(2680), + [anon_sym_new] = ACTIONS(2680), + [anon_sym_using] = ACTIONS(2680), + [anon_sym_PLUS] = ACTIONS(2680), + [anon_sym_DASH] = ACTIONS(2680), + [anon_sym_SLASH] = ACTIONS(2680), + [anon_sym_LT] = ACTIONS(2678), + [anon_sym_TILDE] = ACTIONS(2678), + [anon_sym_void] = ACTIONS(2680), + [anon_sym_delete] = ACTIONS(2680), + [anon_sym_PLUS_PLUS] = ACTIONS(2678), + [anon_sym_DASH_DASH] = ACTIONS(2678), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2678), + [sym_number] = ACTIONS(2678), + [sym_private_property_identifier] = ACTIONS(2678), + [sym_this] = ACTIONS(2680), + [sym_super] = ACTIONS(2680), + [sym_true] = ACTIONS(2680), + [sym_false] = ACTIONS(2680), + [sym_null] = ACTIONS(2680), + [sym_undefined] = ACTIONS(2680), + [anon_sym_AT] = ACTIONS(2678), + [anon_sym_static] = ACTIONS(2680), + [anon_sym_readonly] = ACTIONS(2680), + [anon_sym_get] = ACTIONS(2680), + [anon_sym_set] = ACTIONS(2680), + [anon_sym_declare] = ACTIONS(2680), + [anon_sym_public] = ACTIONS(2680), + [anon_sym_private] = ACTIONS(2680), + [anon_sym_protected] = ACTIONS(2680), + [anon_sym_override] = ACTIONS(2680), + [anon_sym_module] = ACTIONS(2680), + [anon_sym_any] = ACTIONS(2680), + [anon_sym_number] = ACTIONS(2680), + [anon_sym_boolean] = ACTIONS(2680), + [anon_sym_string] = ACTIONS(2680), + [anon_sym_symbol] = ACTIONS(2680), + [anon_sym_object] = ACTIONS(2680), + [anon_sym_abstract] = ACTIONS(2680), + [anon_sym_interface] = ACTIONS(2680), + [anon_sym_enum] = ACTIONS(2680), [sym_html_comment] = ACTIONS(5), }, [838] = { - [ts_builtin_sym_end] = ACTIONS(2671), - [sym_identifier] = ACTIONS(2673), - [anon_sym_export] = ACTIONS(2673), - [anon_sym_default] = ACTIONS(2673), - [anon_sym_type] = ACTIONS(2673), - [anon_sym_namespace] = ACTIONS(2673), - [anon_sym_LBRACE] = ACTIONS(2671), - [anon_sym_RBRACE] = ACTIONS(2671), - [anon_sym_typeof] = ACTIONS(2673), - [anon_sym_import] = ACTIONS(2673), - [anon_sym_with] = ACTIONS(2673), - [anon_sym_var] = ACTIONS(2673), - [anon_sym_let] = ACTIONS(2673), - [anon_sym_const] = ACTIONS(2673), - [anon_sym_BANG] = ACTIONS(2671), - [anon_sym_else] = ACTIONS(2673), - [anon_sym_if] = ACTIONS(2673), - [anon_sym_switch] = ACTIONS(2673), - [anon_sym_for] = ACTIONS(2673), - [anon_sym_LPAREN] = ACTIONS(2671), - [anon_sym_SEMI] = ACTIONS(2671), - [anon_sym_await] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2673), - [anon_sym_do] = ACTIONS(2673), - [anon_sym_try] = ACTIONS(2673), - [anon_sym_break] = ACTIONS(2673), - [anon_sym_continue] = ACTIONS(2673), - [anon_sym_debugger] = ACTIONS(2673), - [anon_sym_return] = ACTIONS(2673), - [anon_sym_throw] = ACTIONS(2673), - [anon_sym_case] = ACTIONS(2673), - [anon_sym_yield] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2671), - [sym_glimmer_opening_tag] = ACTIONS(2671), - [anon_sym_DQUOTE] = ACTIONS(2671), - [anon_sym_SQUOTE] = ACTIONS(2671), - [anon_sym_class] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_function] = ACTIONS(2673), - [anon_sym_new] = ACTIONS(2673), - [anon_sym_using] = ACTIONS(2673), - [anon_sym_PLUS] = ACTIONS(2673), - [anon_sym_DASH] = ACTIONS(2673), - [anon_sym_SLASH] = ACTIONS(2673), - [anon_sym_LT] = ACTIONS(2673), - [anon_sym_TILDE] = ACTIONS(2671), - [anon_sym_void] = ACTIONS(2673), - [anon_sym_delete] = ACTIONS(2673), - [anon_sym_PLUS_PLUS] = ACTIONS(2671), - [anon_sym_DASH_DASH] = ACTIONS(2671), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2671), - [sym_number] = ACTIONS(2671), - [sym_private_property_identifier] = ACTIONS(2671), - [sym_this] = ACTIONS(2673), - [sym_super] = ACTIONS(2673), - [sym_true] = ACTIONS(2673), - [sym_false] = ACTIONS(2673), - [sym_null] = ACTIONS(2673), - [sym_undefined] = ACTIONS(2673), - [anon_sym_AT] = ACTIONS(2671), - [anon_sym_static] = ACTIONS(2673), - [anon_sym_readonly] = ACTIONS(2673), - [anon_sym_get] = ACTIONS(2673), - [anon_sym_set] = ACTIONS(2673), - [anon_sym_declare] = ACTIONS(2673), - [anon_sym_public] = ACTIONS(2673), - [anon_sym_private] = ACTIONS(2673), - [anon_sym_protected] = ACTIONS(2673), - [anon_sym_override] = ACTIONS(2673), - [anon_sym_module] = ACTIONS(2673), - [anon_sym_any] = ACTIONS(2673), - [anon_sym_number] = ACTIONS(2673), - [anon_sym_boolean] = ACTIONS(2673), - [anon_sym_string] = ACTIONS(2673), - [anon_sym_symbol] = ACTIONS(2673), - [anon_sym_object] = ACTIONS(2673), - [anon_sym_abstract] = ACTIONS(2673), - [anon_sym_interface] = ACTIONS(2673), - [anon_sym_enum] = ACTIONS(2673), + [ts_builtin_sym_end] = ACTIONS(2682), + [sym_identifier] = ACTIONS(2684), + [anon_sym_export] = ACTIONS(2684), + [anon_sym_default] = ACTIONS(2684), + [anon_sym_type] = ACTIONS(2684), + [anon_sym_namespace] = ACTIONS(2684), + [anon_sym_LBRACE] = ACTIONS(2682), + [anon_sym_RBRACE] = ACTIONS(2682), + [anon_sym_typeof] = ACTIONS(2684), + [anon_sym_import] = ACTIONS(2684), + [anon_sym_with] = ACTIONS(2684), + [anon_sym_var] = ACTIONS(2684), + [anon_sym_let] = ACTIONS(2684), + [anon_sym_const] = ACTIONS(2684), + [anon_sym_BANG] = ACTIONS(2682), + [anon_sym_else] = ACTIONS(2684), + [anon_sym_if] = ACTIONS(2684), + [anon_sym_switch] = ACTIONS(2684), + [anon_sym_for] = ACTIONS(2684), + [anon_sym_LPAREN] = ACTIONS(2682), + [anon_sym_SEMI] = ACTIONS(2682), + [anon_sym_await] = ACTIONS(2684), + [anon_sym_while] = ACTIONS(2684), + [anon_sym_do] = ACTIONS(2684), + [anon_sym_try] = ACTIONS(2684), + [anon_sym_break] = ACTIONS(2684), + [anon_sym_continue] = ACTIONS(2684), + [anon_sym_debugger] = ACTIONS(2684), + [anon_sym_return] = ACTIONS(2684), + [anon_sym_throw] = ACTIONS(2684), + [anon_sym_case] = ACTIONS(2684), + [anon_sym_yield] = ACTIONS(2684), + [anon_sym_LBRACK] = ACTIONS(2682), + [anon_sym_DQUOTE] = ACTIONS(2682), + [anon_sym_SQUOTE] = ACTIONS(2682), + [anon_sym_class] = ACTIONS(2684), + [anon_sym_async] = ACTIONS(2684), + [anon_sym_function] = ACTIONS(2684), + [anon_sym_new] = ACTIONS(2684), + [anon_sym_using] = ACTIONS(2684), + [anon_sym_PLUS] = ACTIONS(2684), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_SLASH] = ACTIONS(2684), + [anon_sym_LT] = ACTIONS(2682), + [anon_sym_TILDE] = ACTIONS(2682), + [anon_sym_void] = ACTIONS(2684), + [anon_sym_delete] = ACTIONS(2684), + [anon_sym_PLUS_PLUS] = ACTIONS(2682), + [anon_sym_DASH_DASH] = ACTIONS(2682), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2682), + [sym_number] = ACTIONS(2682), + [sym_private_property_identifier] = ACTIONS(2682), + [sym_this] = ACTIONS(2684), + [sym_super] = ACTIONS(2684), + [sym_true] = ACTIONS(2684), + [sym_false] = ACTIONS(2684), + [sym_null] = ACTIONS(2684), + [sym_undefined] = ACTIONS(2684), + [anon_sym_AT] = ACTIONS(2682), + [anon_sym_static] = ACTIONS(2684), + [anon_sym_readonly] = ACTIONS(2684), + [anon_sym_get] = ACTIONS(2684), + [anon_sym_set] = ACTIONS(2684), + [anon_sym_declare] = ACTIONS(2684), + [anon_sym_public] = ACTIONS(2684), + [anon_sym_private] = ACTIONS(2684), + [anon_sym_protected] = ACTIONS(2684), + [anon_sym_override] = ACTIONS(2684), + [anon_sym_module] = ACTIONS(2684), + [anon_sym_any] = ACTIONS(2684), + [anon_sym_number] = ACTIONS(2684), + [anon_sym_boolean] = ACTIONS(2684), + [anon_sym_string] = ACTIONS(2684), + [anon_sym_symbol] = ACTIONS(2684), + [anon_sym_object] = ACTIONS(2684), + [anon_sym_abstract] = ACTIONS(2684), + [anon_sym_interface] = ACTIONS(2684), + [anon_sym_enum] = ACTIONS(2684), [sym_html_comment] = ACTIONS(5), }, [839] = { - [ts_builtin_sym_end] = ACTIONS(2707), - [sym_identifier] = ACTIONS(2709), - [anon_sym_export] = ACTIONS(2709), - [anon_sym_default] = ACTIONS(2709), - [anon_sym_type] = ACTIONS(2709), - [anon_sym_namespace] = ACTIONS(2709), - [anon_sym_LBRACE] = ACTIONS(2707), - [anon_sym_RBRACE] = ACTIONS(2707), - [anon_sym_typeof] = ACTIONS(2709), - [anon_sym_import] = ACTIONS(2709), - [anon_sym_with] = ACTIONS(2709), - [anon_sym_var] = ACTIONS(2709), - [anon_sym_let] = ACTIONS(2709), - [anon_sym_const] = ACTIONS(2709), - [anon_sym_BANG] = ACTIONS(2707), - [anon_sym_else] = ACTIONS(2709), - [anon_sym_if] = ACTIONS(2709), - [anon_sym_switch] = ACTIONS(2709), - [anon_sym_for] = ACTIONS(2709), - [anon_sym_LPAREN] = ACTIONS(2707), - [anon_sym_SEMI] = ACTIONS(2707), - [anon_sym_await] = ACTIONS(2709), - [anon_sym_while] = ACTIONS(2709), - [anon_sym_do] = ACTIONS(2709), - [anon_sym_try] = ACTIONS(2709), - [anon_sym_break] = ACTIONS(2709), - [anon_sym_continue] = ACTIONS(2709), - [anon_sym_debugger] = ACTIONS(2709), - [anon_sym_return] = ACTIONS(2709), - [anon_sym_throw] = ACTIONS(2709), - [anon_sym_case] = ACTIONS(2709), - [anon_sym_yield] = ACTIONS(2709), - [anon_sym_LBRACK] = ACTIONS(2707), - [sym_glimmer_opening_tag] = ACTIONS(2707), - [anon_sym_DQUOTE] = ACTIONS(2707), - [anon_sym_SQUOTE] = ACTIONS(2707), - [anon_sym_class] = ACTIONS(2709), - [anon_sym_async] = ACTIONS(2709), - [anon_sym_function] = ACTIONS(2709), - [anon_sym_new] = ACTIONS(2709), - [anon_sym_using] = ACTIONS(2709), - [anon_sym_PLUS] = ACTIONS(2709), - [anon_sym_DASH] = ACTIONS(2709), - [anon_sym_SLASH] = ACTIONS(2709), - [anon_sym_LT] = ACTIONS(2709), - [anon_sym_TILDE] = ACTIONS(2707), - [anon_sym_void] = ACTIONS(2709), - [anon_sym_delete] = ACTIONS(2709), - [anon_sym_PLUS_PLUS] = ACTIONS(2707), - [anon_sym_DASH_DASH] = ACTIONS(2707), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2707), - [sym_number] = ACTIONS(2707), - [sym_private_property_identifier] = ACTIONS(2707), - [sym_this] = ACTIONS(2709), - [sym_super] = ACTIONS(2709), - [sym_true] = ACTIONS(2709), - [sym_false] = ACTIONS(2709), - [sym_null] = ACTIONS(2709), - [sym_undefined] = ACTIONS(2709), - [anon_sym_AT] = ACTIONS(2707), - [anon_sym_static] = ACTIONS(2709), - [anon_sym_readonly] = ACTIONS(2709), - [anon_sym_get] = ACTIONS(2709), - [anon_sym_set] = ACTIONS(2709), - [anon_sym_declare] = ACTIONS(2709), - [anon_sym_public] = ACTIONS(2709), - [anon_sym_private] = ACTIONS(2709), - [anon_sym_protected] = ACTIONS(2709), - [anon_sym_override] = ACTIONS(2709), - [anon_sym_module] = ACTIONS(2709), - [anon_sym_any] = ACTIONS(2709), - [anon_sym_number] = ACTIONS(2709), - [anon_sym_boolean] = ACTIONS(2709), - [anon_sym_string] = ACTIONS(2709), - [anon_sym_symbol] = ACTIONS(2709), - [anon_sym_object] = ACTIONS(2709), - [anon_sym_abstract] = ACTIONS(2709), - [anon_sym_interface] = ACTIONS(2709), - [anon_sym_enum] = ACTIONS(2709), + [ts_builtin_sym_end] = ACTIONS(2686), + [sym_identifier] = ACTIONS(2688), + [anon_sym_export] = ACTIONS(2688), + [anon_sym_default] = ACTIONS(2688), + [anon_sym_type] = ACTIONS(2688), + [anon_sym_namespace] = ACTIONS(2688), + [anon_sym_LBRACE] = ACTIONS(2686), + [anon_sym_RBRACE] = ACTIONS(2686), + [anon_sym_typeof] = ACTIONS(2688), + [anon_sym_import] = ACTIONS(2688), + [anon_sym_with] = ACTIONS(2688), + [anon_sym_var] = ACTIONS(2688), + [anon_sym_let] = ACTIONS(2688), + [anon_sym_const] = ACTIONS(2688), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_else] = ACTIONS(2688), + [anon_sym_if] = ACTIONS(2688), + [anon_sym_switch] = ACTIONS(2688), + [anon_sym_for] = ACTIONS(2688), + [anon_sym_LPAREN] = ACTIONS(2686), + [anon_sym_SEMI] = ACTIONS(2686), + [anon_sym_await] = ACTIONS(2688), + [anon_sym_while] = ACTIONS(2688), + [anon_sym_do] = ACTIONS(2688), + [anon_sym_try] = ACTIONS(2688), + [anon_sym_break] = ACTIONS(2688), + [anon_sym_continue] = ACTIONS(2688), + [anon_sym_debugger] = ACTIONS(2688), + [anon_sym_return] = ACTIONS(2688), + [anon_sym_throw] = ACTIONS(2688), + [anon_sym_case] = ACTIONS(2688), + [anon_sym_yield] = ACTIONS(2688), + [anon_sym_LBRACK] = ACTIONS(2686), + [anon_sym_DQUOTE] = ACTIONS(2686), + [anon_sym_SQUOTE] = ACTIONS(2686), + [anon_sym_class] = ACTIONS(2688), + [anon_sym_async] = ACTIONS(2688), + [anon_sym_function] = ACTIONS(2688), + [anon_sym_new] = ACTIONS(2688), + [anon_sym_using] = ACTIONS(2688), + [anon_sym_PLUS] = ACTIONS(2688), + [anon_sym_DASH] = ACTIONS(2688), + [anon_sym_SLASH] = ACTIONS(2688), + [anon_sym_LT] = ACTIONS(2686), + [anon_sym_TILDE] = ACTIONS(2686), + [anon_sym_void] = ACTIONS(2688), + [anon_sym_delete] = ACTIONS(2688), + [anon_sym_PLUS_PLUS] = ACTIONS(2686), + [anon_sym_DASH_DASH] = ACTIONS(2686), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2686), + [sym_number] = ACTIONS(2686), + [sym_private_property_identifier] = ACTIONS(2686), + [sym_this] = ACTIONS(2688), + [sym_super] = ACTIONS(2688), + [sym_true] = ACTIONS(2688), + [sym_false] = ACTIONS(2688), + [sym_null] = ACTIONS(2688), + [sym_undefined] = ACTIONS(2688), + [anon_sym_AT] = ACTIONS(2686), + [anon_sym_static] = ACTIONS(2688), + [anon_sym_readonly] = ACTIONS(2688), + [anon_sym_get] = ACTIONS(2688), + [anon_sym_set] = ACTIONS(2688), + [anon_sym_declare] = ACTIONS(2688), + [anon_sym_public] = ACTIONS(2688), + [anon_sym_private] = ACTIONS(2688), + [anon_sym_protected] = ACTIONS(2688), + [anon_sym_override] = ACTIONS(2688), + [anon_sym_module] = ACTIONS(2688), + [anon_sym_any] = ACTIONS(2688), + [anon_sym_number] = ACTIONS(2688), + [anon_sym_boolean] = ACTIONS(2688), + [anon_sym_string] = ACTIONS(2688), + [anon_sym_symbol] = ACTIONS(2688), + [anon_sym_object] = ACTIONS(2688), + [anon_sym_abstract] = ACTIONS(2688), + [anon_sym_interface] = ACTIONS(2688), + [anon_sym_enum] = ACTIONS(2688), [sym_html_comment] = ACTIONS(5), }, [840] = { - [ts_builtin_sym_end] = ACTIONS(1923), - [sym_identifier] = ACTIONS(1925), - [anon_sym_export] = ACTIONS(1925), - [anon_sym_default] = ACTIONS(1925), - [anon_sym_type] = ACTIONS(1925), - [anon_sym_namespace] = ACTIONS(1925), - [anon_sym_LBRACE] = ACTIONS(1923), - [anon_sym_RBRACE] = ACTIONS(1923), - [anon_sym_typeof] = ACTIONS(1925), - [anon_sym_import] = ACTIONS(1925), - [anon_sym_with] = ACTIONS(1925), - [anon_sym_var] = ACTIONS(1925), - [anon_sym_let] = ACTIONS(1925), - [anon_sym_const] = ACTIONS(1925), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_else] = ACTIONS(1925), - [anon_sym_if] = ACTIONS(1925), - [anon_sym_switch] = ACTIONS(1925), - [anon_sym_for] = ACTIONS(1925), - [anon_sym_LPAREN] = ACTIONS(1923), - [anon_sym_SEMI] = ACTIONS(1923), - [anon_sym_await] = ACTIONS(1925), - [anon_sym_while] = ACTIONS(1925), - [anon_sym_do] = ACTIONS(1925), - [anon_sym_try] = ACTIONS(1925), - [anon_sym_break] = ACTIONS(1925), - [anon_sym_continue] = ACTIONS(1925), - [anon_sym_debugger] = ACTIONS(1925), - [anon_sym_return] = ACTIONS(1925), - [anon_sym_throw] = ACTIONS(1925), - [anon_sym_case] = ACTIONS(1925), - [anon_sym_yield] = ACTIONS(1925), - [anon_sym_LBRACK] = ACTIONS(1923), - [sym_glimmer_opening_tag] = ACTIONS(1923), - [anon_sym_DQUOTE] = ACTIONS(1923), - [anon_sym_SQUOTE] = ACTIONS(1923), - [anon_sym_class] = ACTIONS(1925), - [anon_sym_async] = ACTIONS(1925), - [anon_sym_function] = ACTIONS(1925), - [anon_sym_new] = ACTIONS(1925), - [anon_sym_using] = ACTIONS(1925), - [anon_sym_PLUS] = ACTIONS(1925), - [anon_sym_DASH] = ACTIONS(1925), - [anon_sym_SLASH] = ACTIONS(1925), - [anon_sym_LT] = ACTIONS(1925), - [anon_sym_TILDE] = ACTIONS(1923), - [anon_sym_void] = ACTIONS(1925), - [anon_sym_delete] = ACTIONS(1925), - [anon_sym_PLUS_PLUS] = ACTIONS(1923), - [anon_sym_DASH_DASH] = ACTIONS(1923), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1923), - [sym_number] = ACTIONS(1923), - [sym_private_property_identifier] = ACTIONS(1923), - [sym_this] = ACTIONS(1925), - [sym_super] = ACTIONS(1925), - [sym_true] = ACTIONS(1925), - [sym_false] = ACTIONS(1925), - [sym_null] = ACTIONS(1925), - [sym_undefined] = ACTIONS(1925), - [anon_sym_AT] = ACTIONS(1923), - [anon_sym_static] = ACTIONS(1925), - [anon_sym_readonly] = ACTIONS(1925), - [anon_sym_get] = ACTIONS(1925), - [anon_sym_set] = ACTIONS(1925), - [anon_sym_declare] = ACTIONS(1925), - [anon_sym_public] = ACTIONS(1925), - [anon_sym_private] = ACTIONS(1925), - [anon_sym_protected] = ACTIONS(1925), - [anon_sym_override] = ACTIONS(1925), - [anon_sym_module] = ACTIONS(1925), - [anon_sym_any] = ACTIONS(1925), - [anon_sym_number] = ACTIONS(1925), - [anon_sym_boolean] = ACTIONS(1925), - [anon_sym_string] = ACTIONS(1925), - [anon_sym_symbol] = ACTIONS(1925), - [anon_sym_object] = ACTIONS(1925), - [anon_sym_abstract] = ACTIONS(1925), - [anon_sym_interface] = ACTIONS(1925), - [anon_sym_enum] = ACTIONS(1925), + [ts_builtin_sym_end] = ACTIONS(2690), + [sym_identifier] = ACTIONS(2692), + [anon_sym_export] = ACTIONS(2692), + [anon_sym_default] = ACTIONS(2692), + [anon_sym_type] = ACTIONS(2692), + [anon_sym_namespace] = ACTIONS(2692), + [anon_sym_LBRACE] = ACTIONS(2690), + [anon_sym_RBRACE] = ACTIONS(2690), + [anon_sym_typeof] = ACTIONS(2692), + [anon_sym_import] = ACTIONS(2692), + [anon_sym_with] = ACTIONS(2692), + [anon_sym_var] = ACTIONS(2692), + [anon_sym_let] = ACTIONS(2692), + [anon_sym_const] = ACTIONS(2692), + [anon_sym_BANG] = ACTIONS(2690), + [anon_sym_else] = ACTIONS(2692), + [anon_sym_if] = ACTIONS(2692), + [anon_sym_switch] = ACTIONS(2692), + [anon_sym_for] = ACTIONS(2692), + [anon_sym_LPAREN] = ACTIONS(2690), + [anon_sym_SEMI] = ACTIONS(2690), + [anon_sym_await] = ACTIONS(2692), + [anon_sym_while] = ACTIONS(2692), + [anon_sym_do] = ACTIONS(2692), + [anon_sym_try] = ACTIONS(2692), + [anon_sym_break] = ACTIONS(2692), + [anon_sym_continue] = ACTIONS(2692), + [anon_sym_debugger] = ACTIONS(2692), + [anon_sym_return] = ACTIONS(2692), + [anon_sym_throw] = ACTIONS(2692), + [anon_sym_case] = ACTIONS(2692), + [anon_sym_yield] = ACTIONS(2692), + [anon_sym_LBRACK] = ACTIONS(2690), + [anon_sym_DQUOTE] = ACTIONS(2690), + [anon_sym_SQUOTE] = ACTIONS(2690), + [anon_sym_class] = ACTIONS(2692), + [anon_sym_async] = ACTIONS(2692), + [anon_sym_function] = ACTIONS(2692), + [anon_sym_new] = ACTIONS(2692), + [anon_sym_using] = ACTIONS(2692), + [anon_sym_PLUS] = ACTIONS(2692), + [anon_sym_DASH] = ACTIONS(2692), + [anon_sym_SLASH] = ACTIONS(2692), + [anon_sym_LT] = ACTIONS(2690), + [anon_sym_TILDE] = ACTIONS(2690), + [anon_sym_void] = ACTIONS(2692), + [anon_sym_delete] = ACTIONS(2692), + [anon_sym_PLUS_PLUS] = ACTIONS(2690), + [anon_sym_DASH_DASH] = ACTIONS(2690), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2690), + [sym_number] = ACTIONS(2690), + [sym_private_property_identifier] = ACTIONS(2690), + [sym_this] = ACTIONS(2692), + [sym_super] = ACTIONS(2692), + [sym_true] = ACTIONS(2692), + [sym_false] = ACTIONS(2692), + [sym_null] = ACTIONS(2692), + [sym_undefined] = ACTIONS(2692), + [anon_sym_AT] = ACTIONS(2690), + [anon_sym_static] = ACTIONS(2692), + [anon_sym_readonly] = ACTIONS(2692), + [anon_sym_get] = ACTIONS(2692), + [anon_sym_set] = ACTIONS(2692), + [anon_sym_declare] = ACTIONS(2692), + [anon_sym_public] = ACTIONS(2692), + [anon_sym_private] = ACTIONS(2692), + [anon_sym_protected] = ACTIONS(2692), + [anon_sym_override] = ACTIONS(2692), + [anon_sym_module] = ACTIONS(2692), + [anon_sym_any] = ACTIONS(2692), + [anon_sym_number] = ACTIONS(2692), + [anon_sym_boolean] = ACTIONS(2692), + [anon_sym_string] = ACTIONS(2692), + [anon_sym_symbol] = ACTIONS(2692), + [anon_sym_object] = ACTIONS(2692), + [anon_sym_abstract] = ACTIONS(2692), + [anon_sym_interface] = ACTIONS(2692), + [anon_sym_enum] = ACTIONS(2692), [sym_html_comment] = ACTIONS(5), }, [841] = { - [ts_builtin_sym_end] = ACTIONS(1739), - [sym_identifier] = ACTIONS(1741), - [anon_sym_export] = ACTIONS(1741), - [anon_sym_default] = ACTIONS(1741), - [anon_sym_type] = ACTIONS(1741), - [anon_sym_namespace] = ACTIONS(1741), - [anon_sym_LBRACE] = ACTIONS(1739), - [anon_sym_RBRACE] = ACTIONS(1739), - [anon_sym_typeof] = ACTIONS(1741), - [anon_sym_import] = ACTIONS(1741), - [anon_sym_with] = ACTIONS(1741), - [anon_sym_var] = ACTIONS(1741), - [anon_sym_let] = ACTIONS(1741), - [anon_sym_const] = ACTIONS(1741), - [anon_sym_BANG] = ACTIONS(1739), - [anon_sym_else] = ACTIONS(1741), - [anon_sym_if] = ACTIONS(1741), - [anon_sym_switch] = ACTIONS(1741), - [anon_sym_for] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1739), - [anon_sym_SEMI] = ACTIONS(1739), - [anon_sym_await] = ACTIONS(1741), - [anon_sym_while] = ACTIONS(1741), - [anon_sym_do] = ACTIONS(1741), - [anon_sym_try] = ACTIONS(1741), - [anon_sym_break] = ACTIONS(1741), - [anon_sym_continue] = ACTIONS(1741), - [anon_sym_debugger] = ACTIONS(1741), - [anon_sym_return] = ACTIONS(1741), - [anon_sym_throw] = ACTIONS(1741), - [anon_sym_case] = ACTIONS(1741), - [anon_sym_yield] = ACTIONS(1741), - [anon_sym_LBRACK] = ACTIONS(1739), - [sym_glimmer_opening_tag] = ACTIONS(1739), - [anon_sym_DQUOTE] = ACTIONS(1739), - [anon_sym_SQUOTE] = ACTIONS(1739), - [anon_sym_class] = ACTIONS(1741), - [anon_sym_async] = ACTIONS(1741), - [anon_sym_function] = ACTIONS(1741), - [anon_sym_new] = ACTIONS(1741), - [anon_sym_using] = ACTIONS(1741), - [anon_sym_PLUS] = ACTIONS(1741), - [anon_sym_DASH] = ACTIONS(1741), - [anon_sym_SLASH] = ACTIONS(1741), - [anon_sym_LT] = ACTIONS(1741), - [anon_sym_TILDE] = ACTIONS(1739), - [anon_sym_void] = ACTIONS(1741), - [anon_sym_delete] = ACTIONS(1741), - [anon_sym_PLUS_PLUS] = ACTIONS(1739), - [anon_sym_DASH_DASH] = ACTIONS(1739), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1739), - [sym_number] = ACTIONS(1739), - [sym_private_property_identifier] = ACTIONS(1739), - [sym_this] = ACTIONS(1741), - [sym_super] = ACTIONS(1741), - [sym_true] = ACTIONS(1741), - [sym_false] = ACTIONS(1741), - [sym_null] = ACTIONS(1741), - [sym_undefined] = ACTIONS(1741), - [anon_sym_AT] = ACTIONS(1739), - [anon_sym_static] = ACTIONS(1741), - [anon_sym_readonly] = ACTIONS(1741), - [anon_sym_get] = ACTIONS(1741), - [anon_sym_set] = ACTIONS(1741), - [anon_sym_declare] = ACTIONS(1741), - [anon_sym_public] = ACTIONS(1741), - [anon_sym_private] = ACTIONS(1741), - [anon_sym_protected] = ACTIONS(1741), - [anon_sym_override] = ACTIONS(1741), - [anon_sym_module] = ACTIONS(1741), - [anon_sym_any] = ACTIONS(1741), - [anon_sym_number] = ACTIONS(1741), - [anon_sym_boolean] = ACTIONS(1741), - [anon_sym_string] = ACTIONS(1741), - [anon_sym_symbol] = ACTIONS(1741), - [anon_sym_object] = ACTIONS(1741), - [anon_sym_abstract] = ACTIONS(1741), - [anon_sym_interface] = ACTIONS(1741), - [anon_sym_enum] = ACTIONS(1741), + [ts_builtin_sym_end] = ACTIONS(2694), + [sym_identifier] = ACTIONS(2696), + [anon_sym_export] = ACTIONS(2696), + [anon_sym_default] = ACTIONS(2696), + [anon_sym_type] = ACTIONS(2696), + [anon_sym_namespace] = ACTIONS(2696), + [anon_sym_LBRACE] = ACTIONS(2694), + [anon_sym_RBRACE] = ACTIONS(2694), + [anon_sym_typeof] = ACTIONS(2696), + [anon_sym_import] = ACTIONS(2696), + [anon_sym_with] = ACTIONS(2696), + [anon_sym_var] = ACTIONS(2696), + [anon_sym_let] = ACTIONS(2696), + [anon_sym_const] = ACTIONS(2696), + [anon_sym_BANG] = ACTIONS(2694), + [anon_sym_else] = ACTIONS(2696), + [anon_sym_if] = ACTIONS(2696), + [anon_sym_switch] = ACTIONS(2696), + [anon_sym_for] = ACTIONS(2696), + [anon_sym_LPAREN] = ACTIONS(2694), + [anon_sym_SEMI] = ACTIONS(2694), + [anon_sym_await] = ACTIONS(2696), + [anon_sym_while] = ACTIONS(2696), + [anon_sym_do] = ACTIONS(2696), + [anon_sym_try] = ACTIONS(2696), + [anon_sym_break] = ACTIONS(2696), + [anon_sym_continue] = ACTIONS(2696), + [anon_sym_debugger] = ACTIONS(2696), + [anon_sym_return] = ACTIONS(2696), + [anon_sym_throw] = ACTIONS(2696), + [anon_sym_case] = ACTIONS(2696), + [anon_sym_yield] = ACTIONS(2696), + [anon_sym_LBRACK] = ACTIONS(2694), + [anon_sym_DQUOTE] = ACTIONS(2694), + [anon_sym_SQUOTE] = ACTIONS(2694), + [anon_sym_class] = ACTIONS(2696), + [anon_sym_async] = ACTIONS(2696), + [anon_sym_function] = ACTIONS(2696), + [anon_sym_new] = ACTIONS(2696), + [anon_sym_using] = ACTIONS(2696), + [anon_sym_PLUS] = ACTIONS(2696), + [anon_sym_DASH] = ACTIONS(2696), + [anon_sym_SLASH] = ACTIONS(2696), + [anon_sym_LT] = ACTIONS(2694), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_void] = ACTIONS(2696), + [anon_sym_delete] = ACTIONS(2696), + [anon_sym_PLUS_PLUS] = ACTIONS(2694), + [anon_sym_DASH_DASH] = ACTIONS(2694), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2694), + [sym_number] = ACTIONS(2694), + [sym_private_property_identifier] = ACTIONS(2694), + [sym_this] = ACTIONS(2696), + [sym_super] = ACTIONS(2696), + [sym_true] = ACTIONS(2696), + [sym_false] = ACTIONS(2696), + [sym_null] = ACTIONS(2696), + [sym_undefined] = ACTIONS(2696), + [anon_sym_AT] = ACTIONS(2694), + [anon_sym_static] = ACTIONS(2696), + [anon_sym_readonly] = ACTIONS(2696), + [anon_sym_get] = ACTIONS(2696), + [anon_sym_set] = ACTIONS(2696), + [anon_sym_declare] = ACTIONS(2696), + [anon_sym_public] = ACTIONS(2696), + [anon_sym_private] = ACTIONS(2696), + [anon_sym_protected] = ACTIONS(2696), + [anon_sym_override] = ACTIONS(2696), + [anon_sym_module] = ACTIONS(2696), + [anon_sym_any] = ACTIONS(2696), + [anon_sym_number] = ACTIONS(2696), + [anon_sym_boolean] = ACTIONS(2696), + [anon_sym_string] = ACTIONS(2696), + [anon_sym_symbol] = ACTIONS(2696), + [anon_sym_object] = ACTIONS(2696), + [anon_sym_abstract] = ACTIONS(2696), + [anon_sym_interface] = ACTIONS(2696), + [anon_sym_enum] = ACTIONS(2696), [sym_html_comment] = ACTIONS(5), }, [842] = { - [ts_builtin_sym_end] = ACTIONS(2711), - [sym_identifier] = ACTIONS(2713), - [anon_sym_export] = ACTIONS(2713), - [anon_sym_default] = ACTIONS(2713), - [anon_sym_type] = ACTIONS(2713), - [anon_sym_namespace] = ACTIONS(2713), - [anon_sym_LBRACE] = ACTIONS(2711), - [anon_sym_RBRACE] = ACTIONS(2711), - [anon_sym_typeof] = ACTIONS(2713), - [anon_sym_import] = ACTIONS(2713), - [anon_sym_with] = ACTIONS(2713), - [anon_sym_var] = ACTIONS(2713), - [anon_sym_let] = ACTIONS(2713), - [anon_sym_const] = ACTIONS(2713), - [anon_sym_BANG] = ACTIONS(2711), - [anon_sym_else] = ACTIONS(2713), - [anon_sym_if] = ACTIONS(2713), - [anon_sym_switch] = ACTIONS(2713), - [anon_sym_for] = ACTIONS(2713), - [anon_sym_LPAREN] = ACTIONS(2711), - [anon_sym_SEMI] = ACTIONS(2711), - [anon_sym_await] = ACTIONS(2713), - [anon_sym_while] = ACTIONS(2713), - [anon_sym_do] = ACTIONS(2713), - [anon_sym_try] = ACTIONS(2713), - [anon_sym_break] = ACTIONS(2713), - [anon_sym_continue] = ACTIONS(2713), - [anon_sym_debugger] = ACTIONS(2713), - [anon_sym_return] = ACTIONS(2713), - [anon_sym_throw] = ACTIONS(2713), - [anon_sym_case] = ACTIONS(2713), - [anon_sym_yield] = ACTIONS(2713), - [anon_sym_LBRACK] = ACTIONS(2711), - [sym_glimmer_opening_tag] = ACTIONS(2711), - [anon_sym_DQUOTE] = ACTIONS(2711), - [anon_sym_SQUOTE] = ACTIONS(2711), - [anon_sym_class] = ACTIONS(2713), - [anon_sym_async] = ACTIONS(2713), - [anon_sym_function] = ACTIONS(2713), - [anon_sym_new] = ACTIONS(2713), - [anon_sym_using] = ACTIONS(2713), - [anon_sym_PLUS] = ACTIONS(2713), - [anon_sym_DASH] = ACTIONS(2713), - [anon_sym_SLASH] = ACTIONS(2713), - [anon_sym_LT] = ACTIONS(2713), - [anon_sym_TILDE] = ACTIONS(2711), - [anon_sym_void] = ACTIONS(2713), - [anon_sym_delete] = ACTIONS(2713), - [anon_sym_PLUS_PLUS] = ACTIONS(2711), - [anon_sym_DASH_DASH] = ACTIONS(2711), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2711), - [sym_number] = ACTIONS(2711), - [sym_private_property_identifier] = ACTIONS(2711), - [sym_this] = ACTIONS(2713), - [sym_super] = ACTIONS(2713), - [sym_true] = ACTIONS(2713), - [sym_false] = ACTIONS(2713), - [sym_null] = ACTIONS(2713), - [sym_undefined] = ACTIONS(2713), - [anon_sym_AT] = ACTIONS(2711), - [anon_sym_static] = ACTIONS(2713), - [anon_sym_readonly] = ACTIONS(2713), - [anon_sym_get] = ACTIONS(2713), - [anon_sym_set] = ACTIONS(2713), - [anon_sym_declare] = ACTIONS(2713), - [anon_sym_public] = ACTIONS(2713), - [anon_sym_private] = ACTIONS(2713), - [anon_sym_protected] = ACTIONS(2713), - [anon_sym_override] = ACTIONS(2713), - [anon_sym_module] = ACTIONS(2713), - [anon_sym_any] = ACTIONS(2713), - [anon_sym_number] = ACTIONS(2713), - [anon_sym_boolean] = ACTIONS(2713), - [anon_sym_string] = ACTIONS(2713), - [anon_sym_symbol] = ACTIONS(2713), - [anon_sym_object] = ACTIONS(2713), - [anon_sym_abstract] = ACTIONS(2713), - [anon_sym_interface] = ACTIONS(2713), - [anon_sym_enum] = ACTIONS(2713), + [ts_builtin_sym_end] = ACTIONS(2698), + [sym_identifier] = ACTIONS(2700), + [anon_sym_export] = ACTIONS(2700), + [anon_sym_default] = ACTIONS(2700), + [anon_sym_type] = ACTIONS(2700), + [anon_sym_namespace] = ACTIONS(2700), + [anon_sym_LBRACE] = ACTIONS(2698), + [anon_sym_RBRACE] = ACTIONS(2698), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_import] = ACTIONS(2700), + [anon_sym_with] = ACTIONS(2700), + [anon_sym_var] = ACTIONS(2700), + [anon_sym_let] = ACTIONS(2700), + [anon_sym_const] = ACTIONS(2700), + [anon_sym_BANG] = ACTIONS(2698), + [anon_sym_else] = ACTIONS(2700), + [anon_sym_if] = ACTIONS(2700), + [anon_sym_switch] = ACTIONS(2700), + [anon_sym_for] = ACTIONS(2700), + [anon_sym_LPAREN] = ACTIONS(2698), + [anon_sym_SEMI] = ACTIONS(2698), + [anon_sym_await] = ACTIONS(2700), + [anon_sym_while] = ACTIONS(2700), + [anon_sym_do] = ACTIONS(2700), + [anon_sym_try] = ACTIONS(2700), + [anon_sym_break] = ACTIONS(2700), + [anon_sym_continue] = ACTIONS(2700), + [anon_sym_debugger] = ACTIONS(2700), + [anon_sym_return] = ACTIONS(2700), + [anon_sym_throw] = ACTIONS(2700), + [anon_sym_case] = ACTIONS(2700), + [anon_sym_yield] = ACTIONS(2700), + [anon_sym_LBRACK] = ACTIONS(2698), + [anon_sym_DQUOTE] = ACTIONS(2698), + [anon_sym_SQUOTE] = ACTIONS(2698), + [anon_sym_class] = ACTIONS(2700), + [anon_sym_async] = ACTIONS(2700), + [anon_sym_function] = ACTIONS(2700), + [anon_sym_new] = ACTIONS(2700), + [anon_sym_using] = ACTIONS(2700), + [anon_sym_PLUS] = ACTIONS(2700), + [anon_sym_DASH] = ACTIONS(2700), + [anon_sym_SLASH] = ACTIONS(2700), + [anon_sym_LT] = ACTIONS(2698), + [anon_sym_TILDE] = ACTIONS(2698), + [anon_sym_void] = ACTIONS(2700), + [anon_sym_delete] = ACTIONS(2700), + [anon_sym_PLUS_PLUS] = ACTIONS(2698), + [anon_sym_DASH_DASH] = ACTIONS(2698), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2698), + [sym_number] = ACTIONS(2698), + [sym_private_property_identifier] = ACTIONS(2698), + [sym_this] = ACTIONS(2700), + [sym_super] = ACTIONS(2700), + [sym_true] = ACTIONS(2700), + [sym_false] = ACTIONS(2700), + [sym_null] = ACTIONS(2700), + [sym_undefined] = ACTIONS(2700), + [anon_sym_AT] = ACTIONS(2698), + [anon_sym_static] = ACTIONS(2700), + [anon_sym_readonly] = ACTIONS(2700), + [anon_sym_get] = ACTIONS(2700), + [anon_sym_set] = ACTIONS(2700), + [anon_sym_declare] = ACTIONS(2700), + [anon_sym_public] = ACTIONS(2700), + [anon_sym_private] = ACTIONS(2700), + [anon_sym_protected] = ACTIONS(2700), + [anon_sym_override] = ACTIONS(2700), + [anon_sym_module] = ACTIONS(2700), + [anon_sym_any] = ACTIONS(2700), + [anon_sym_number] = ACTIONS(2700), + [anon_sym_boolean] = ACTIONS(2700), + [anon_sym_string] = ACTIONS(2700), + [anon_sym_symbol] = ACTIONS(2700), + [anon_sym_object] = ACTIONS(2700), + [anon_sym_abstract] = ACTIONS(2700), + [anon_sym_interface] = ACTIONS(2700), + [anon_sym_enum] = ACTIONS(2700), [sym_html_comment] = ACTIONS(5), }, [843] = { - [ts_builtin_sym_end] = ACTIONS(2715), - [sym_identifier] = ACTIONS(2717), - [anon_sym_export] = ACTIONS(2717), - [anon_sym_default] = ACTIONS(2717), - [anon_sym_type] = ACTIONS(2717), - [anon_sym_namespace] = ACTIONS(2717), - [anon_sym_LBRACE] = ACTIONS(2715), - [anon_sym_RBRACE] = ACTIONS(2715), - [anon_sym_typeof] = ACTIONS(2717), - [anon_sym_import] = ACTIONS(2717), - [anon_sym_with] = ACTIONS(2717), - [anon_sym_var] = ACTIONS(2717), - [anon_sym_let] = ACTIONS(2717), - [anon_sym_const] = ACTIONS(2717), - [anon_sym_BANG] = ACTIONS(2715), - [anon_sym_else] = ACTIONS(2717), - [anon_sym_if] = ACTIONS(2717), - [anon_sym_switch] = ACTIONS(2717), - [anon_sym_for] = ACTIONS(2717), - [anon_sym_LPAREN] = ACTIONS(2715), - [anon_sym_SEMI] = ACTIONS(2715), - [anon_sym_await] = ACTIONS(2717), - [anon_sym_while] = ACTIONS(2717), - [anon_sym_do] = ACTIONS(2717), - [anon_sym_try] = ACTIONS(2717), - [anon_sym_break] = ACTIONS(2717), - [anon_sym_continue] = ACTIONS(2717), - [anon_sym_debugger] = ACTIONS(2717), - [anon_sym_return] = ACTIONS(2717), - [anon_sym_throw] = ACTIONS(2717), - [anon_sym_case] = ACTIONS(2717), - [anon_sym_yield] = ACTIONS(2717), - [anon_sym_LBRACK] = ACTIONS(2715), - [sym_glimmer_opening_tag] = ACTIONS(2715), - [anon_sym_DQUOTE] = ACTIONS(2715), - [anon_sym_SQUOTE] = ACTIONS(2715), - [anon_sym_class] = ACTIONS(2717), - [anon_sym_async] = ACTIONS(2717), - [anon_sym_function] = ACTIONS(2717), - [anon_sym_new] = ACTIONS(2717), - [anon_sym_using] = ACTIONS(2717), - [anon_sym_PLUS] = ACTIONS(2717), - [anon_sym_DASH] = ACTIONS(2717), - [anon_sym_SLASH] = ACTIONS(2717), - [anon_sym_LT] = ACTIONS(2717), - [anon_sym_TILDE] = ACTIONS(2715), - [anon_sym_void] = ACTIONS(2717), - [anon_sym_delete] = ACTIONS(2717), - [anon_sym_PLUS_PLUS] = ACTIONS(2715), - [anon_sym_DASH_DASH] = ACTIONS(2715), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2715), - [sym_number] = ACTIONS(2715), - [sym_private_property_identifier] = ACTIONS(2715), - [sym_this] = ACTIONS(2717), - [sym_super] = ACTIONS(2717), - [sym_true] = ACTIONS(2717), - [sym_false] = ACTIONS(2717), - [sym_null] = ACTIONS(2717), - [sym_undefined] = ACTIONS(2717), - [anon_sym_AT] = ACTIONS(2715), - [anon_sym_static] = ACTIONS(2717), - [anon_sym_readonly] = ACTIONS(2717), - [anon_sym_get] = ACTIONS(2717), - [anon_sym_set] = ACTIONS(2717), - [anon_sym_declare] = ACTIONS(2717), - [anon_sym_public] = ACTIONS(2717), - [anon_sym_private] = ACTIONS(2717), - [anon_sym_protected] = ACTIONS(2717), - [anon_sym_override] = ACTIONS(2717), - [anon_sym_module] = ACTIONS(2717), - [anon_sym_any] = ACTIONS(2717), - [anon_sym_number] = ACTIONS(2717), - [anon_sym_boolean] = ACTIONS(2717), - [anon_sym_string] = ACTIONS(2717), - [anon_sym_symbol] = ACTIONS(2717), - [anon_sym_object] = ACTIONS(2717), - [anon_sym_abstract] = ACTIONS(2717), - [anon_sym_interface] = ACTIONS(2717), - [anon_sym_enum] = ACTIONS(2717), + [ts_builtin_sym_end] = ACTIONS(2702), + [sym_identifier] = ACTIONS(2704), + [anon_sym_export] = ACTIONS(2704), + [anon_sym_default] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_namespace] = ACTIONS(2704), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_RBRACE] = ACTIONS(2702), + [anon_sym_typeof] = ACTIONS(2704), + [anon_sym_import] = ACTIONS(2704), + [anon_sym_with] = ACTIONS(2704), + [anon_sym_var] = ACTIONS(2704), + [anon_sym_let] = ACTIONS(2704), + [anon_sym_const] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2702), + [anon_sym_else] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_switch] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(2702), + [anon_sym_SEMI] = ACTIONS(2702), + [anon_sym_await] = ACTIONS(2704), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_do] = ACTIONS(2704), + [anon_sym_try] = ACTIONS(2704), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_debugger] = ACTIONS(2704), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_throw] = ACTIONS(2704), + [anon_sym_case] = ACTIONS(2704), + [anon_sym_yield] = ACTIONS(2704), + [anon_sym_LBRACK] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(2702), + [anon_sym_SQUOTE] = ACTIONS(2702), + [anon_sym_class] = ACTIONS(2704), + [anon_sym_async] = ACTIONS(2704), + [anon_sym_function] = ACTIONS(2704), + [anon_sym_new] = ACTIONS(2704), + [anon_sym_using] = ACTIONS(2704), + [anon_sym_PLUS] = ACTIONS(2704), + [anon_sym_DASH] = ACTIONS(2704), + [anon_sym_SLASH] = ACTIONS(2704), + [anon_sym_LT] = ACTIONS(2702), + [anon_sym_TILDE] = ACTIONS(2702), + [anon_sym_void] = ACTIONS(2704), + [anon_sym_delete] = ACTIONS(2704), + [anon_sym_PLUS_PLUS] = ACTIONS(2702), + [anon_sym_DASH_DASH] = ACTIONS(2702), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2702), + [sym_number] = ACTIONS(2702), + [sym_private_property_identifier] = ACTIONS(2702), + [sym_this] = ACTIONS(2704), + [sym_super] = ACTIONS(2704), + [sym_true] = ACTIONS(2704), + [sym_false] = ACTIONS(2704), + [sym_null] = ACTIONS(2704), + [sym_undefined] = ACTIONS(2704), + [anon_sym_AT] = ACTIONS(2702), + [anon_sym_static] = ACTIONS(2704), + [anon_sym_readonly] = ACTIONS(2704), + [anon_sym_get] = ACTIONS(2704), + [anon_sym_set] = ACTIONS(2704), + [anon_sym_declare] = ACTIONS(2704), + [anon_sym_public] = ACTIONS(2704), + [anon_sym_private] = ACTIONS(2704), + [anon_sym_protected] = ACTIONS(2704), + [anon_sym_override] = ACTIONS(2704), + [anon_sym_module] = ACTIONS(2704), + [anon_sym_any] = ACTIONS(2704), + [anon_sym_number] = ACTIONS(2704), + [anon_sym_boolean] = ACTIONS(2704), + [anon_sym_string] = ACTIONS(2704), + [anon_sym_symbol] = ACTIONS(2704), + [anon_sym_object] = ACTIONS(2704), + [anon_sym_abstract] = ACTIONS(2704), + [anon_sym_interface] = ACTIONS(2704), + [anon_sym_enum] = ACTIONS(2704), [sym_html_comment] = ACTIONS(5), }, [844] = { - [ts_builtin_sym_end] = ACTIONS(2719), - [sym_identifier] = ACTIONS(2721), - [anon_sym_export] = ACTIONS(2721), - [anon_sym_default] = ACTIONS(2721), - [anon_sym_type] = ACTIONS(2721), - [anon_sym_namespace] = ACTIONS(2721), - [anon_sym_LBRACE] = ACTIONS(2719), - [anon_sym_RBRACE] = ACTIONS(2719), - [anon_sym_typeof] = ACTIONS(2721), - [anon_sym_import] = ACTIONS(2721), - [anon_sym_with] = ACTIONS(2721), - [anon_sym_var] = ACTIONS(2721), - [anon_sym_let] = ACTIONS(2721), - [anon_sym_const] = ACTIONS(2721), - [anon_sym_BANG] = ACTIONS(2719), - [anon_sym_else] = ACTIONS(2721), - [anon_sym_if] = ACTIONS(2721), - [anon_sym_switch] = ACTIONS(2721), - [anon_sym_for] = ACTIONS(2721), - [anon_sym_LPAREN] = ACTIONS(2719), - [anon_sym_SEMI] = ACTIONS(2719), - [anon_sym_await] = ACTIONS(2721), - [anon_sym_while] = ACTIONS(2721), - [anon_sym_do] = ACTIONS(2721), - [anon_sym_try] = ACTIONS(2721), - [anon_sym_break] = ACTIONS(2721), - [anon_sym_continue] = ACTIONS(2721), - [anon_sym_debugger] = ACTIONS(2721), - [anon_sym_return] = ACTIONS(2721), - [anon_sym_throw] = ACTIONS(2721), - [anon_sym_case] = ACTIONS(2721), - [anon_sym_yield] = ACTIONS(2721), - [anon_sym_LBRACK] = ACTIONS(2719), - [sym_glimmer_opening_tag] = ACTIONS(2719), - [anon_sym_DQUOTE] = ACTIONS(2719), - [anon_sym_SQUOTE] = ACTIONS(2719), - [anon_sym_class] = ACTIONS(2721), - [anon_sym_async] = ACTIONS(2721), - [anon_sym_function] = ACTIONS(2721), - [anon_sym_new] = ACTIONS(2721), - [anon_sym_using] = ACTIONS(2721), - [anon_sym_PLUS] = ACTIONS(2721), - [anon_sym_DASH] = ACTIONS(2721), - [anon_sym_SLASH] = ACTIONS(2721), - [anon_sym_LT] = ACTIONS(2721), - [anon_sym_TILDE] = ACTIONS(2719), - [anon_sym_void] = ACTIONS(2721), - [anon_sym_delete] = ACTIONS(2721), - [anon_sym_PLUS_PLUS] = ACTIONS(2719), - [anon_sym_DASH_DASH] = ACTIONS(2719), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2719), - [sym_number] = ACTIONS(2719), - [sym_private_property_identifier] = ACTIONS(2719), - [sym_this] = ACTIONS(2721), - [sym_super] = ACTIONS(2721), - [sym_true] = ACTIONS(2721), - [sym_false] = ACTIONS(2721), - [sym_null] = ACTIONS(2721), - [sym_undefined] = ACTIONS(2721), - [anon_sym_AT] = ACTIONS(2719), - [anon_sym_static] = ACTIONS(2721), - [anon_sym_readonly] = ACTIONS(2721), - [anon_sym_get] = ACTIONS(2721), - [anon_sym_set] = ACTIONS(2721), - [anon_sym_declare] = ACTIONS(2721), - [anon_sym_public] = ACTIONS(2721), - [anon_sym_private] = ACTIONS(2721), - [anon_sym_protected] = ACTIONS(2721), - [anon_sym_override] = ACTIONS(2721), - [anon_sym_module] = ACTIONS(2721), - [anon_sym_any] = ACTIONS(2721), - [anon_sym_number] = ACTIONS(2721), - [anon_sym_boolean] = ACTIONS(2721), - [anon_sym_string] = ACTIONS(2721), - [anon_sym_symbol] = ACTIONS(2721), - [anon_sym_object] = ACTIONS(2721), - [anon_sym_abstract] = ACTIONS(2721), - [anon_sym_interface] = ACTIONS(2721), - [anon_sym_enum] = ACTIONS(2721), + [ts_builtin_sym_end] = ACTIONS(2706), + [sym_identifier] = ACTIONS(2708), + [anon_sym_export] = ACTIONS(2708), + [anon_sym_default] = ACTIONS(2708), + [anon_sym_type] = ACTIONS(2708), + [anon_sym_namespace] = ACTIONS(2708), + [anon_sym_LBRACE] = ACTIONS(2706), + [anon_sym_RBRACE] = ACTIONS(2706), + [anon_sym_typeof] = ACTIONS(2708), + [anon_sym_import] = ACTIONS(2708), + [anon_sym_with] = ACTIONS(2708), + [anon_sym_var] = ACTIONS(2708), + [anon_sym_let] = ACTIONS(2708), + [anon_sym_const] = ACTIONS(2708), + [anon_sym_BANG] = ACTIONS(2706), + [anon_sym_else] = ACTIONS(2708), + [anon_sym_if] = ACTIONS(2708), + [anon_sym_switch] = ACTIONS(2708), + [anon_sym_for] = ACTIONS(2708), + [anon_sym_LPAREN] = ACTIONS(2706), + [anon_sym_SEMI] = ACTIONS(2706), + [anon_sym_await] = ACTIONS(2708), + [anon_sym_while] = ACTIONS(2708), + [anon_sym_do] = ACTIONS(2708), + [anon_sym_try] = ACTIONS(2708), + [anon_sym_break] = ACTIONS(2708), + [anon_sym_continue] = ACTIONS(2708), + [anon_sym_debugger] = ACTIONS(2708), + [anon_sym_return] = ACTIONS(2708), + [anon_sym_throw] = ACTIONS(2708), + [anon_sym_case] = ACTIONS(2708), + [anon_sym_yield] = ACTIONS(2708), + [anon_sym_LBRACK] = ACTIONS(2706), + [anon_sym_DQUOTE] = ACTIONS(2706), + [anon_sym_SQUOTE] = ACTIONS(2706), + [anon_sym_class] = ACTIONS(2708), + [anon_sym_async] = ACTIONS(2708), + [anon_sym_function] = ACTIONS(2708), + [anon_sym_new] = ACTIONS(2708), + [anon_sym_using] = ACTIONS(2708), + [anon_sym_PLUS] = ACTIONS(2708), + [anon_sym_DASH] = ACTIONS(2708), + [anon_sym_SLASH] = ACTIONS(2708), + [anon_sym_LT] = ACTIONS(2706), + [anon_sym_TILDE] = ACTIONS(2706), + [anon_sym_void] = ACTIONS(2708), + [anon_sym_delete] = ACTIONS(2708), + [anon_sym_PLUS_PLUS] = ACTIONS(2706), + [anon_sym_DASH_DASH] = ACTIONS(2706), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2706), + [sym_number] = ACTIONS(2706), + [sym_private_property_identifier] = ACTIONS(2706), + [sym_this] = ACTIONS(2708), + [sym_super] = ACTIONS(2708), + [sym_true] = ACTIONS(2708), + [sym_false] = ACTIONS(2708), + [sym_null] = ACTIONS(2708), + [sym_undefined] = ACTIONS(2708), + [anon_sym_AT] = ACTIONS(2706), + [anon_sym_static] = ACTIONS(2708), + [anon_sym_readonly] = ACTIONS(2708), + [anon_sym_get] = ACTIONS(2708), + [anon_sym_set] = ACTIONS(2708), + [anon_sym_declare] = ACTIONS(2708), + [anon_sym_public] = ACTIONS(2708), + [anon_sym_private] = ACTIONS(2708), + [anon_sym_protected] = ACTIONS(2708), + [anon_sym_override] = ACTIONS(2708), + [anon_sym_module] = ACTIONS(2708), + [anon_sym_any] = ACTIONS(2708), + [anon_sym_number] = ACTIONS(2708), + [anon_sym_boolean] = ACTIONS(2708), + [anon_sym_string] = ACTIONS(2708), + [anon_sym_symbol] = ACTIONS(2708), + [anon_sym_object] = ACTIONS(2708), + [anon_sym_abstract] = ACTIONS(2708), + [anon_sym_interface] = ACTIONS(2708), + [anon_sym_enum] = ACTIONS(2708), [sym_html_comment] = ACTIONS(5), }, [845] = { - [ts_builtin_sym_end] = ACTIONS(2723), - [sym_identifier] = ACTIONS(2725), - [anon_sym_export] = ACTIONS(2725), - [anon_sym_default] = ACTIONS(2725), - [anon_sym_type] = ACTIONS(2725), - [anon_sym_namespace] = ACTIONS(2725), - [anon_sym_LBRACE] = ACTIONS(2723), - [anon_sym_RBRACE] = ACTIONS(2723), - [anon_sym_typeof] = ACTIONS(2725), - [anon_sym_import] = ACTIONS(2725), - [anon_sym_with] = ACTIONS(2725), - [anon_sym_var] = ACTIONS(2725), - [anon_sym_let] = ACTIONS(2725), - [anon_sym_const] = ACTIONS(2725), - [anon_sym_BANG] = ACTIONS(2723), - [anon_sym_else] = ACTIONS(2725), - [anon_sym_if] = ACTIONS(2725), - [anon_sym_switch] = ACTIONS(2725), - [anon_sym_for] = ACTIONS(2725), - [anon_sym_LPAREN] = ACTIONS(2723), - [anon_sym_SEMI] = ACTIONS(2723), - [anon_sym_await] = ACTIONS(2725), - [anon_sym_while] = ACTIONS(2725), - [anon_sym_do] = ACTIONS(2725), - [anon_sym_try] = ACTIONS(2725), - [anon_sym_break] = ACTIONS(2725), - [anon_sym_continue] = ACTIONS(2725), - [anon_sym_debugger] = ACTIONS(2725), - [anon_sym_return] = ACTIONS(2725), - [anon_sym_throw] = ACTIONS(2725), - [anon_sym_case] = ACTIONS(2725), - [anon_sym_yield] = ACTIONS(2725), - [anon_sym_LBRACK] = ACTIONS(2723), - [sym_glimmer_opening_tag] = ACTIONS(2723), - [anon_sym_DQUOTE] = ACTIONS(2723), - [anon_sym_SQUOTE] = ACTIONS(2723), - [anon_sym_class] = ACTIONS(2725), - [anon_sym_async] = ACTIONS(2725), - [anon_sym_function] = ACTIONS(2725), - [anon_sym_new] = ACTIONS(2725), - [anon_sym_using] = ACTIONS(2725), - [anon_sym_PLUS] = ACTIONS(2725), - [anon_sym_DASH] = ACTIONS(2725), - [anon_sym_SLASH] = ACTIONS(2725), - [anon_sym_LT] = ACTIONS(2725), - [anon_sym_TILDE] = ACTIONS(2723), - [anon_sym_void] = ACTIONS(2725), - [anon_sym_delete] = ACTIONS(2725), - [anon_sym_PLUS_PLUS] = ACTIONS(2723), - [anon_sym_DASH_DASH] = ACTIONS(2723), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2723), - [sym_number] = ACTIONS(2723), - [sym_private_property_identifier] = ACTIONS(2723), - [sym_this] = ACTIONS(2725), - [sym_super] = ACTIONS(2725), - [sym_true] = ACTIONS(2725), - [sym_false] = ACTIONS(2725), - [sym_null] = ACTIONS(2725), - [sym_undefined] = ACTIONS(2725), - [anon_sym_AT] = ACTIONS(2723), - [anon_sym_static] = ACTIONS(2725), - [anon_sym_readonly] = ACTIONS(2725), - [anon_sym_get] = ACTIONS(2725), - [anon_sym_set] = ACTIONS(2725), - [anon_sym_declare] = ACTIONS(2725), - [anon_sym_public] = ACTIONS(2725), - [anon_sym_private] = ACTIONS(2725), - [anon_sym_protected] = ACTIONS(2725), - [anon_sym_override] = ACTIONS(2725), - [anon_sym_module] = ACTIONS(2725), - [anon_sym_any] = ACTIONS(2725), - [anon_sym_number] = ACTIONS(2725), - [anon_sym_boolean] = ACTIONS(2725), - [anon_sym_string] = ACTIONS(2725), - [anon_sym_symbol] = ACTIONS(2725), - [anon_sym_object] = ACTIONS(2725), - [anon_sym_abstract] = ACTIONS(2725), - [anon_sym_interface] = ACTIONS(2725), - [anon_sym_enum] = ACTIONS(2725), + [ts_builtin_sym_end] = ACTIONS(2710), + [sym_identifier] = ACTIONS(2712), + [anon_sym_export] = ACTIONS(2712), + [anon_sym_default] = ACTIONS(2712), + [anon_sym_type] = ACTIONS(2712), + [anon_sym_namespace] = ACTIONS(2712), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_RBRACE] = ACTIONS(2710), + [anon_sym_typeof] = ACTIONS(2712), + [anon_sym_import] = ACTIONS(2712), + [anon_sym_with] = ACTIONS(2712), + [anon_sym_var] = ACTIONS(2712), + [anon_sym_let] = ACTIONS(2712), + [anon_sym_const] = ACTIONS(2712), + [anon_sym_BANG] = ACTIONS(2710), + [anon_sym_else] = ACTIONS(2712), + [anon_sym_if] = ACTIONS(2712), + [anon_sym_switch] = ACTIONS(2712), + [anon_sym_for] = ACTIONS(2712), + [anon_sym_LPAREN] = ACTIONS(2710), + [anon_sym_SEMI] = ACTIONS(2710), + [anon_sym_await] = ACTIONS(2712), + [anon_sym_while] = ACTIONS(2712), + [anon_sym_do] = ACTIONS(2712), + [anon_sym_try] = ACTIONS(2712), + [anon_sym_break] = ACTIONS(2712), + [anon_sym_continue] = ACTIONS(2712), + [anon_sym_debugger] = ACTIONS(2712), + [anon_sym_return] = ACTIONS(2712), + [anon_sym_throw] = ACTIONS(2712), + [anon_sym_case] = ACTIONS(2712), + [anon_sym_yield] = ACTIONS(2712), + [anon_sym_LBRACK] = ACTIONS(2710), + [anon_sym_DQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_class] = ACTIONS(2712), + [anon_sym_async] = ACTIONS(2712), + [anon_sym_function] = ACTIONS(2712), + [anon_sym_new] = ACTIONS(2712), + [anon_sym_using] = ACTIONS(2712), + [anon_sym_PLUS] = ACTIONS(2712), + [anon_sym_DASH] = ACTIONS(2712), + [anon_sym_SLASH] = ACTIONS(2712), + [anon_sym_LT] = ACTIONS(2710), + [anon_sym_TILDE] = ACTIONS(2710), + [anon_sym_void] = ACTIONS(2712), + [anon_sym_delete] = ACTIONS(2712), + [anon_sym_PLUS_PLUS] = ACTIONS(2710), + [anon_sym_DASH_DASH] = ACTIONS(2710), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2710), + [sym_number] = ACTIONS(2710), + [sym_private_property_identifier] = ACTIONS(2710), + [sym_this] = ACTIONS(2712), + [sym_super] = ACTIONS(2712), + [sym_true] = ACTIONS(2712), + [sym_false] = ACTIONS(2712), + [sym_null] = ACTIONS(2712), + [sym_undefined] = ACTIONS(2712), + [anon_sym_AT] = ACTIONS(2710), + [anon_sym_static] = ACTIONS(2712), + [anon_sym_readonly] = ACTIONS(2712), + [anon_sym_get] = ACTIONS(2712), + [anon_sym_set] = ACTIONS(2712), + [anon_sym_declare] = ACTIONS(2712), + [anon_sym_public] = ACTIONS(2712), + [anon_sym_private] = ACTIONS(2712), + [anon_sym_protected] = ACTIONS(2712), + [anon_sym_override] = ACTIONS(2712), + [anon_sym_module] = ACTIONS(2712), + [anon_sym_any] = ACTIONS(2712), + [anon_sym_number] = ACTIONS(2712), + [anon_sym_boolean] = ACTIONS(2712), + [anon_sym_string] = ACTIONS(2712), + [anon_sym_symbol] = ACTIONS(2712), + [anon_sym_object] = ACTIONS(2712), + [anon_sym_abstract] = ACTIONS(2712), + [anon_sym_interface] = ACTIONS(2712), + [anon_sym_enum] = ACTIONS(2712), [sym_html_comment] = ACTIONS(5), }, [846] = { - [ts_builtin_sym_end] = ACTIONS(2671), - [sym_identifier] = ACTIONS(2673), - [anon_sym_export] = ACTIONS(2673), - [anon_sym_default] = ACTIONS(2673), - [anon_sym_type] = ACTIONS(2673), - [anon_sym_namespace] = ACTIONS(2673), - [anon_sym_LBRACE] = ACTIONS(2671), - [anon_sym_RBRACE] = ACTIONS(2671), - [anon_sym_typeof] = ACTIONS(2673), - [anon_sym_import] = ACTIONS(2673), - [anon_sym_with] = ACTIONS(2673), - [anon_sym_var] = ACTIONS(2673), - [anon_sym_let] = ACTIONS(2673), - [anon_sym_const] = ACTIONS(2673), - [anon_sym_BANG] = ACTIONS(2671), - [anon_sym_else] = ACTIONS(2673), - [anon_sym_if] = ACTIONS(2673), - [anon_sym_switch] = ACTIONS(2673), - [anon_sym_for] = ACTIONS(2673), - [anon_sym_LPAREN] = ACTIONS(2671), - [anon_sym_SEMI] = ACTIONS(2671), - [anon_sym_await] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2673), - [anon_sym_do] = ACTIONS(2673), - [anon_sym_try] = ACTIONS(2673), - [anon_sym_break] = ACTIONS(2673), - [anon_sym_continue] = ACTIONS(2673), - [anon_sym_debugger] = ACTIONS(2673), - [anon_sym_return] = ACTIONS(2673), - [anon_sym_throw] = ACTIONS(2673), - [anon_sym_case] = ACTIONS(2673), - [anon_sym_yield] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2671), - [sym_glimmer_opening_tag] = ACTIONS(2671), - [anon_sym_DQUOTE] = ACTIONS(2671), - [anon_sym_SQUOTE] = ACTIONS(2671), - [anon_sym_class] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_function] = ACTIONS(2673), - [anon_sym_new] = ACTIONS(2673), - [anon_sym_using] = ACTIONS(2673), - [anon_sym_PLUS] = ACTIONS(2673), - [anon_sym_DASH] = ACTIONS(2673), - [anon_sym_SLASH] = ACTIONS(2673), - [anon_sym_LT] = ACTIONS(2673), - [anon_sym_TILDE] = ACTIONS(2671), - [anon_sym_void] = ACTIONS(2673), - [anon_sym_delete] = ACTIONS(2673), - [anon_sym_PLUS_PLUS] = ACTIONS(2671), - [anon_sym_DASH_DASH] = ACTIONS(2671), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2671), - [sym_number] = ACTIONS(2671), - [sym_private_property_identifier] = ACTIONS(2671), - [sym_this] = ACTIONS(2673), - [sym_super] = ACTIONS(2673), - [sym_true] = ACTIONS(2673), - [sym_false] = ACTIONS(2673), - [sym_null] = ACTIONS(2673), - [sym_undefined] = ACTIONS(2673), - [anon_sym_AT] = ACTIONS(2671), - [anon_sym_static] = ACTIONS(2673), - [anon_sym_readonly] = ACTIONS(2673), - [anon_sym_get] = ACTIONS(2673), - [anon_sym_set] = ACTIONS(2673), - [anon_sym_declare] = ACTIONS(2673), - [anon_sym_public] = ACTIONS(2673), - [anon_sym_private] = ACTIONS(2673), - [anon_sym_protected] = ACTIONS(2673), - [anon_sym_override] = ACTIONS(2673), - [anon_sym_module] = ACTIONS(2673), - [anon_sym_any] = ACTIONS(2673), - [anon_sym_number] = ACTIONS(2673), - [anon_sym_boolean] = ACTIONS(2673), - [anon_sym_string] = ACTIONS(2673), - [anon_sym_symbol] = ACTIONS(2673), - [anon_sym_object] = ACTIONS(2673), - [anon_sym_abstract] = ACTIONS(2673), - [anon_sym_interface] = ACTIONS(2673), - [anon_sym_enum] = ACTIONS(2673), + [ts_builtin_sym_end] = ACTIONS(2710), + [sym_identifier] = ACTIONS(2712), + [anon_sym_export] = ACTIONS(2712), + [anon_sym_default] = ACTIONS(2712), + [anon_sym_type] = ACTIONS(2712), + [anon_sym_namespace] = ACTIONS(2712), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_RBRACE] = ACTIONS(2710), + [anon_sym_typeof] = ACTIONS(2712), + [anon_sym_import] = ACTIONS(2712), + [anon_sym_with] = ACTIONS(2712), + [anon_sym_var] = ACTIONS(2712), + [anon_sym_let] = ACTIONS(2712), + [anon_sym_const] = ACTIONS(2712), + [anon_sym_BANG] = ACTIONS(2710), + [anon_sym_else] = ACTIONS(2712), + [anon_sym_if] = ACTIONS(2712), + [anon_sym_switch] = ACTIONS(2712), + [anon_sym_for] = ACTIONS(2712), + [anon_sym_LPAREN] = ACTIONS(2710), + [anon_sym_SEMI] = ACTIONS(2710), + [anon_sym_await] = ACTIONS(2712), + [anon_sym_while] = ACTIONS(2712), + [anon_sym_do] = ACTIONS(2712), + [anon_sym_try] = ACTIONS(2712), + [anon_sym_break] = ACTIONS(2712), + [anon_sym_continue] = ACTIONS(2712), + [anon_sym_debugger] = ACTIONS(2712), + [anon_sym_return] = ACTIONS(2712), + [anon_sym_throw] = ACTIONS(2712), + [anon_sym_case] = ACTIONS(2712), + [anon_sym_yield] = ACTIONS(2712), + [anon_sym_LBRACK] = ACTIONS(2710), + [anon_sym_DQUOTE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_class] = ACTIONS(2712), + [anon_sym_async] = ACTIONS(2712), + [anon_sym_function] = ACTIONS(2712), + [anon_sym_new] = ACTIONS(2712), + [anon_sym_using] = ACTIONS(2712), + [anon_sym_PLUS] = ACTIONS(2712), + [anon_sym_DASH] = ACTIONS(2712), + [anon_sym_SLASH] = ACTIONS(2712), + [anon_sym_LT] = ACTIONS(2710), + [anon_sym_TILDE] = ACTIONS(2710), + [anon_sym_void] = ACTIONS(2712), + [anon_sym_delete] = ACTIONS(2712), + [anon_sym_PLUS_PLUS] = ACTIONS(2710), + [anon_sym_DASH_DASH] = ACTIONS(2710), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2710), + [sym_number] = ACTIONS(2710), + [sym_private_property_identifier] = ACTIONS(2710), + [sym_this] = ACTIONS(2712), + [sym_super] = ACTIONS(2712), + [sym_true] = ACTIONS(2712), + [sym_false] = ACTIONS(2712), + [sym_null] = ACTIONS(2712), + [sym_undefined] = ACTIONS(2712), + [anon_sym_AT] = ACTIONS(2710), + [anon_sym_static] = ACTIONS(2712), + [anon_sym_readonly] = ACTIONS(2712), + [anon_sym_get] = ACTIONS(2712), + [anon_sym_set] = ACTIONS(2712), + [anon_sym_declare] = ACTIONS(2712), + [anon_sym_public] = ACTIONS(2712), + [anon_sym_private] = ACTIONS(2712), + [anon_sym_protected] = ACTIONS(2712), + [anon_sym_override] = ACTIONS(2712), + [anon_sym_module] = ACTIONS(2712), + [anon_sym_any] = ACTIONS(2712), + [anon_sym_number] = ACTIONS(2712), + [anon_sym_boolean] = ACTIONS(2712), + [anon_sym_string] = ACTIONS(2712), + [anon_sym_symbol] = ACTIONS(2712), + [anon_sym_object] = ACTIONS(2712), + [anon_sym_abstract] = ACTIONS(2712), + [anon_sym_interface] = ACTIONS(2712), + [anon_sym_enum] = ACTIONS(2712), [sym_html_comment] = ACTIONS(5), }, [847] = { - [ts_builtin_sym_end] = ACTIONS(2727), - [sym_identifier] = ACTIONS(2729), - [anon_sym_export] = ACTIONS(2729), - [anon_sym_default] = ACTIONS(2729), - [anon_sym_type] = ACTIONS(2729), - [anon_sym_namespace] = ACTIONS(2729), - [anon_sym_LBRACE] = ACTIONS(2727), - [anon_sym_RBRACE] = ACTIONS(2727), - [anon_sym_typeof] = ACTIONS(2729), - [anon_sym_import] = ACTIONS(2729), - [anon_sym_with] = ACTIONS(2729), - [anon_sym_var] = ACTIONS(2729), - [anon_sym_let] = ACTIONS(2729), - [anon_sym_const] = ACTIONS(2729), - [anon_sym_BANG] = ACTIONS(2727), - [anon_sym_else] = ACTIONS(2729), - [anon_sym_if] = ACTIONS(2729), - [anon_sym_switch] = ACTIONS(2729), - [anon_sym_for] = ACTIONS(2729), - [anon_sym_LPAREN] = ACTIONS(2727), - [anon_sym_SEMI] = ACTIONS(2727), - [anon_sym_await] = ACTIONS(2729), - [anon_sym_while] = ACTIONS(2729), - [anon_sym_do] = ACTIONS(2729), - [anon_sym_try] = ACTIONS(2729), - [anon_sym_break] = ACTIONS(2729), - [anon_sym_continue] = ACTIONS(2729), - [anon_sym_debugger] = ACTIONS(2729), - [anon_sym_return] = ACTIONS(2729), - [anon_sym_throw] = ACTIONS(2729), - [anon_sym_case] = ACTIONS(2729), - [anon_sym_yield] = ACTIONS(2729), - [anon_sym_LBRACK] = ACTIONS(2727), - [sym_glimmer_opening_tag] = ACTIONS(2727), - [anon_sym_DQUOTE] = ACTIONS(2727), - [anon_sym_SQUOTE] = ACTIONS(2727), - [anon_sym_class] = ACTIONS(2729), - [anon_sym_async] = ACTIONS(2729), - [anon_sym_function] = ACTIONS(2729), - [anon_sym_new] = ACTIONS(2729), - [anon_sym_using] = ACTIONS(2729), - [anon_sym_PLUS] = ACTIONS(2729), - [anon_sym_DASH] = ACTIONS(2729), - [anon_sym_SLASH] = ACTIONS(2729), - [anon_sym_LT] = ACTIONS(2729), - [anon_sym_TILDE] = ACTIONS(2727), - [anon_sym_void] = ACTIONS(2729), - [anon_sym_delete] = ACTIONS(2729), - [anon_sym_PLUS_PLUS] = ACTIONS(2727), - [anon_sym_DASH_DASH] = ACTIONS(2727), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2727), - [sym_number] = ACTIONS(2727), - [sym_private_property_identifier] = ACTIONS(2727), - [sym_this] = ACTIONS(2729), - [sym_super] = ACTIONS(2729), - [sym_true] = ACTIONS(2729), - [sym_false] = ACTIONS(2729), - [sym_null] = ACTIONS(2729), - [sym_undefined] = ACTIONS(2729), - [anon_sym_AT] = ACTIONS(2727), - [anon_sym_static] = ACTIONS(2729), - [anon_sym_readonly] = ACTIONS(2729), - [anon_sym_get] = ACTIONS(2729), - [anon_sym_set] = ACTIONS(2729), - [anon_sym_declare] = ACTIONS(2729), - [anon_sym_public] = ACTIONS(2729), - [anon_sym_private] = ACTIONS(2729), - [anon_sym_protected] = ACTIONS(2729), - [anon_sym_override] = ACTIONS(2729), - [anon_sym_module] = ACTIONS(2729), - [anon_sym_any] = ACTIONS(2729), - [anon_sym_number] = ACTIONS(2729), - [anon_sym_boolean] = ACTIONS(2729), - [anon_sym_string] = ACTIONS(2729), - [anon_sym_symbol] = ACTIONS(2729), - [anon_sym_object] = ACTIONS(2729), - [anon_sym_abstract] = ACTIONS(2729), - [anon_sym_interface] = ACTIONS(2729), - [anon_sym_enum] = ACTIONS(2729), + [ts_builtin_sym_end] = ACTIONS(2714), + [sym_identifier] = ACTIONS(2716), + [anon_sym_export] = ACTIONS(2716), + [anon_sym_default] = ACTIONS(2716), + [anon_sym_type] = ACTIONS(2716), + [anon_sym_namespace] = ACTIONS(2716), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(2714), + [anon_sym_typeof] = ACTIONS(2716), + [anon_sym_import] = ACTIONS(2716), + [anon_sym_with] = ACTIONS(2716), + [anon_sym_var] = ACTIONS(2716), + [anon_sym_let] = ACTIONS(2716), + [anon_sym_const] = ACTIONS(2716), + [anon_sym_BANG] = ACTIONS(2714), + [anon_sym_else] = ACTIONS(2716), + [anon_sym_if] = ACTIONS(2716), + [anon_sym_switch] = ACTIONS(2716), + [anon_sym_for] = ACTIONS(2716), + [anon_sym_LPAREN] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym_await] = ACTIONS(2716), + [anon_sym_while] = ACTIONS(2716), + [anon_sym_do] = ACTIONS(2716), + [anon_sym_try] = ACTIONS(2716), + [anon_sym_break] = ACTIONS(2716), + [anon_sym_continue] = ACTIONS(2716), + [anon_sym_debugger] = ACTIONS(2716), + [anon_sym_return] = ACTIONS(2716), + [anon_sym_throw] = ACTIONS(2716), + [anon_sym_case] = ACTIONS(2716), + [anon_sym_yield] = ACTIONS(2716), + [anon_sym_LBRACK] = ACTIONS(2714), + [anon_sym_DQUOTE] = ACTIONS(2714), + [anon_sym_SQUOTE] = ACTIONS(2714), + [anon_sym_class] = ACTIONS(2716), + [anon_sym_async] = ACTIONS(2716), + [anon_sym_function] = ACTIONS(2716), + [anon_sym_new] = ACTIONS(2716), + [anon_sym_using] = ACTIONS(2716), + [anon_sym_PLUS] = ACTIONS(2716), + [anon_sym_DASH] = ACTIONS(2716), + [anon_sym_SLASH] = ACTIONS(2716), + [anon_sym_LT] = ACTIONS(2714), + [anon_sym_TILDE] = ACTIONS(2714), + [anon_sym_void] = ACTIONS(2716), + [anon_sym_delete] = ACTIONS(2716), + [anon_sym_PLUS_PLUS] = ACTIONS(2714), + [anon_sym_DASH_DASH] = ACTIONS(2714), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2714), + [sym_number] = ACTIONS(2714), + [sym_private_property_identifier] = ACTIONS(2714), + [sym_this] = ACTIONS(2716), + [sym_super] = ACTIONS(2716), + [sym_true] = ACTIONS(2716), + [sym_false] = ACTIONS(2716), + [sym_null] = ACTIONS(2716), + [sym_undefined] = ACTIONS(2716), + [anon_sym_AT] = ACTIONS(2714), + [anon_sym_static] = ACTIONS(2716), + [anon_sym_readonly] = ACTIONS(2716), + [anon_sym_get] = ACTIONS(2716), + [anon_sym_set] = ACTIONS(2716), + [anon_sym_declare] = ACTIONS(2716), + [anon_sym_public] = ACTIONS(2716), + [anon_sym_private] = ACTIONS(2716), + [anon_sym_protected] = ACTIONS(2716), + [anon_sym_override] = ACTIONS(2716), + [anon_sym_module] = ACTIONS(2716), + [anon_sym_any] = ACTIONS(2716), + [anon_sym_number] = ACTIONS(2716), + [anon_sym_boolean] = ACTIONS(2716), + [anon_sym_string] = ACTIONS(2716), + [anon_sym_symbol] = ACTIONS(2716), + [anon_sym_object] = ACTIONS(2716), + [anon_sym_abstract] = ACTIONS(2716), + [anon_sym_interface] = ACTIONS(2716), + [anon_sym_enum] = ACTIONS(2716), [sym_html_comment] = ACTIONS(5), }, [848] = { - [ts_builtin_sym_end] = ACTIONS(2731), - [sym_identifier] = ACTIONS(2733), - [anon_sym_export] = ACTIONS(2733), - [anon_sym_default] = ACTIONS(2733), - [anon_sym_type] = ACTIONS(2733), - [anon_sym_namespace] = ACTIONS(2733), - [anon_sym_LBRACE] = ACTIONS(2731), - [anon_sym_RBRACE] = ACTIONS(2731), - [anon_sym_typeof] = ACTIONS(2733), - [anon_sym_import] = ACTIONS(2733), - [anon_sym_with] = ACTIONS(2733), - [anon_sym_var] = ACTIONS(2733), - [anon_sym_let] = ACTIONS(2733), - [anon_sym_const] = ACTIONS(2733), - [anon_sym_BANG] = ACTIONS(2731), - [anon_sym_else] = ACTIONS(2733), - [anon_sym_if] = ACTIONS(2733), - [anon_sym_switch] = ACTIONS(2733), - [anon_sym_for] = ACTIONS(2733), - [anon_sym_LPAREN] = ACTIONS(2731), - [anon_sym_SEMI] = ACTIONS(2731), - [anon_sym_await] = ACTIONS(2733), - [anon_sym_while] = ACTIONS(2733), - [anon_sym_do] = ACTIONS(2733), - [anon_sym_try] = ACTIONS(2733), - [anon_sym_break] = ACTIONS(2733), - [anon_sym_continue] = ACTIONS(2733), - [anon_sym_debugger] = ACTIONS(2733), - [anon_sym_return] = ACTIONS(2733), - [anon_sym_throw] = ACTIONS(2733), - [anon_sym_case] = ACTIONS(2733), - [anon_sym_yield] = ACTIONS(2733), - [anon_sym_LBRACK] = ACTIONS(2731), - [sym_glimmer_opening_tag] = ACTIONS(2731), - [anon_sym_DQUOTE] = ACTIONS(2731), - [anon_sym_SQUOTE] = ACTIONS(2731), - [anon_sym_class] = ACTIONS(2733), - [anon_sym_async] = ACTIONS(2733), - [anon_sym_function] = ACTIONS(2733), - [anon_sym_new] = ACTIONS(2733), - [anon_sym_using] = ACTIONS(2733), - [anon_sym_PLUS] = ACTIONS(2733), - [anon_sym_DASH] = ACTIONS(2733), - [anon_sym_SLASH] = ACTIONS(2733), - [anon_sym_LT] = ACTIONS(2733), - [anon_sym_TILDE] = ACTIONS(2731), - [anon_sym_void] = ACTIONS(2733), - [anon_sym_delete] = ACTIONS(2733), - [anon_sym_PLUS_PLUS] = ACTIONS(2731), - [anon_sym_DASH_DASH] = ACTIONS(2731), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2731), - [sym_number] = ACTIONS(2731), - [sym_private_property_identifier] = ACTIONS(2731), - [sym_this] = ACTIONS(2733), - [sym_super] = ACTIONS(2733), - [sym_true] = ACTIONS(2733), - [sym_false] = ACTIONS(2733), - [sym_null] = ACTIONS(2733), - [sym_undefined] = ACTIONS(2733), - [anon_sym_AT] = ACTIONS(2731), - [anon_sym_static] = ACTIONS(2733), - [anon_sym_readonly] = ACTIONS(2733), - [anon_sym_get] = ACTIONS(2733), - [anon_sym_set] = ACTIONS(2733), - [anon_sym_declare] = ACTIONS(2733), - [anon_sym_public] = ACTIONS(2733), - [anon_sym_private] = ACTIONS(2733), - [anon_sym_protected] = ACTIONS(2733), - [anon_sym_override] = ACTIONS(2733), - [anon_sym_module] = ACTIONS(2733), - [anon_sym_any] = ACTIONS(2733), - [anon_sym_number] = ACTIONS(2733), - [anon_sym_boolean] = ACTIONS(2733), - [anon_sym_string] = ACTIONS(2733), - [anon_sym_symbol] = ACTIONS(2733), - [anon_sym_object] = ACTIONS(2733), - [anon_sym_abstract] = ACTIONS(2733), - [anon_sym_interface] = ACTIONS(2733), - [anon_sym_enum] = ACTIONS(2733), + [ts_builtin_sym_end] = ACTIONS(2718), + [sym_identifier] = ACTIONS(2720), + [anon_sym_export] = ACTIONS(2720), + [anon_sym_default] = ACTIONS(2720), + [anon_sym_type] = ACTIONS(2720), + [anon_sym_namespace] = ACTIONS(2720), + [anon_sym_LBRACE] = ACTIONS(2718), + [anon_sym_RBRACE] = ACTIONS(2718), + [anon_sym_typeof] = ACTIONS(2720), + [anon_sym_import] = ACTIONS(2720), + [anon_sym_with] = ACTIONS(2720), + [anon_sym_var] = ACTIONS(2720), + [anon_sym_let] = ACTIONS(2720), + [anon_sym_const] = ACTIONS(2720), + [anon_sym_BANG] = ACTIONS(2718), + [anon_sym_else] = ACTIONS(2720), + [anon_sym_if] = ACTIONS(2720), + [anon_sym_switch] = ACTIONS(2720), + [anon_sym_for] = ACTIONS(2720), + [anon_sym_LPAREN] = ACTIONS(2718), + [anon_sym_SEMI] = ACTIONS(2718), + [anon_sym_await] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2720), + [anon_sym_do] = ACTIONS(2720), + [anon_sym_try] = ACTIONS(2720), + [anon_sym_break] = ACTIONS(2720), + [anon_sym_continue] = ACTIONS(2720), + [anon_sym_debugger] = ACTIONS(2720), + [anon_sym_return] = ACTIONS(2720), + [anon_sym_throw] = ACTIONS(2720), + [anon_sym_case] = ACTIONS(2720), + [anon_sym_yield] = ACTIONS(2720), + [anon_sym_LBRACK] = ACTIONS(2718), + [anon_sym_DQUOTE] = ACTIONS(2718), + [anon_sym_SQUOTE] = ACTIONS(2718), + [anon_sym_class] = ACTIONS(2720), + [anon_sym_async] = ACTIONS(2720), + [anon_sym_function] = ACTIONS(2720), + [anon_sym_new] = ACTIONS(2720), + [anon_sym_using] = ACTIONS(2720), + [anon_sym_PLUS] = ACTIONS(2720), + [anon_sym_DASH] = ACTIONS(2720), + [anon_sym_SLASH] = ACTIONS(2720), + [anon_sym_LT] = ACTIONS(2718), + [anon_sym_TILDE] = ACTIONS(2718), + [anon_sym_void] = ACTIONS(2720), + [anon_sym_delete] = ACTIONS(2720), + [anon_sym_PLUS_PLUS] = ACTIONS(2718), + [anon_sym_DASH_DASH] = ACTIONS(2718), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2718), + [sym_number] = ACTIONS(2718), + [sym_private_property_identifier] = ACTIONS(2718), + [sym_this] = ACTIONS(2720), + [sym_super] = ACTIONS(2720), + [sym_true] = ACTIONS(2720), + [sym_false] = ACTIONS(2720), + [sym_null] = ACTIONS(2720), + [sym_undefined] = ACTIONS(2720), + [anon_sym_AT] = ACTIONS(2718), + [anon_sym_static] = ACTIONS(2720), + [anon_sym_readonly] = ACTIONS(2720), + [anon_sym_get] = ACTIONS(2720), + [anon_sym_set] = ACTIONS(2720), + [anon_sym_declare] = ACTIONS(2720), + [anon_sym_public] = ACTIONS(2720), + [anon_sym_private] = ACTIONS(2720), + [anon_sym_protected] = ACTIONS(2720), + [anon_sym_override] = ACTIONS(2720), + [anon_sym_module] = ACTIONS(2720), + [anon_sym_any] = ACTIONS(2720), + [anon_sym_number] = ACTIONS(2720), + [anon_sym_boolean] = ACTIONS(2720), + [anon_sym_string] = ACTIONS(2720), + [anon_sym_symbol] = ACTIONS(2720), + [anon_sym_object] = ACTIONS(2720), + [anon_sym_abstract] = ACTIONS(2720), + [anon_sym_interface] = ACTIONS(2720), + [anon_sym_enum] = ACTIONS(2720), [sym_html_comment] = ACTIONS(5), }, [849] = { - [ts_builtin_sym_end] = ACTIONS(2735), - [sym_identifier] = ACTIONS(2737), - [anon_sym_export] = ACTIONS(2737), - [anon_sym_default] = ACTIONS(2737), - [anon_sym_type] = ACTIONS(2737), - [anon_sym_namespace] = ACTIONS(2737), - [anon_sym_LBRACE] = ACTIONS(2735), - [anon_sym_RBRACE] = ACTIONS(2735), - [anon_sym_typeof] = ACTIONS(2737), - [anon_sym_import] = ACTIONS(2737), - [anon_sym_with] = ACTIONS(2737), - [anon_sym_var] = ACTIONS(2737), - [anon_sym_let] = ACTIONS(2737), - [anon_sym_const] = ACTIONS(2737), - [anon_sym_BANG] = ACTIONS(2735), - [anon_sym_else] = ACTIONS(2737), - [anon_sym_if] = ACTIONS(2737), - [anon_sym_switch] = ACTIONS(2737), - [anon_sym_for] = ACTIONS(2737), - [anon_sym_LPAREN] = ACTIONS(2735), - [anon_sym_SEMI] = ACTIONS(2735), - [anon_sym_await] = ACTIONS(2737), - [anon_sym_while] = ACTIONS(2737), - [anon_sym_do] = ACTIONS(2737), - [anon_sym_try] = ACTIONS(2737), - [anon_sym_break] = ACTIONS(2737), - [anon_sym_continue] = ACTIONS(2737), - [anon_sym_debugger] = ACTIONS(2737), - [anon_sym_return] = ACTIONS(2737), - [anon_sym_throw] = ACTIONS(2737), - [anon_sym_case] = ACTIONS(2737), - [anon_sym_yield] = ACTIONS(2737), - [anon_sym_LBRACK] = ACTIONS(2735), - [sym_glimmer_opening_tag] = ACTIONS(2735), - [anon_sym_DQUOTE] = ACTIONS(2735), - [anon_sym_SQUOTE] = ACTIONS(2735), - [anon_sym_class] = ACTIONS(2737), - [anon_sym_async] = ACTIONS(2737), - [anon_sym_function] = ACTIONS(2737), - [anon_sym_new] = ACTIONS(2737), - [anon_sym_using] = ACTIONS(2737), - [anon_sym_PLUS] = ACTIONS(2737), - [anon_sym_DASH] = ACTIONS(2737), - [anon_sym_SLASH] = ACTIONS(2737), - [anon_sym_LT] = ACTIONS(2737), - [anon_sym_TILDE] = ACTIONS(2735), - [anon_sym_void] = ACTIONS(2737), - [anon_sym_delete] = ACTIONS(2737), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2735), - [sym_number] = ACTIONS(2735), - [sym_private_property_identifier] = ACTIONS(2735), - [sym_this] = ACTIONS(2737), - [sym_super] = ACTIONS(2737), - [sym_true] = ACTIONS(2737), - [sym_false] = ACTIONS(2737), - [sym_null] = ACTIONS(2737), - [sym_undefined] = ACTIONS(2737), - [anon_sym_AT] = ACTIONS(2735), - [anon_sym_static] = ACTIONS(2737), - [anon_sym_readonly] = ACTIONS(2737), - [anon_sym_get] = ACTIONS(2737), - [anon_sym_set] = ACTIONS(2737), - [anon_sym_declare] = ACTIONS(2737), - [anon_sym_public] = ACTIONS(2737), - [anon_sym_private] = ACTIONS(2737), - [anon_sym_protected] = ACTIONS(2737), - [anon_sym_override] = ACTIONS(2737), - [anon_sym_module] = ACTIONS(2737), - [anon_sym_any] = ACTIONS(2737), - [anon_sym_number] = ACTIONS(2737), - [anon_sym_boolean] = ACTIONS(2737), - [anon_sym_string] = ACTIONS(2737), - [anon_sym_symbol] = ACTIONS(2737), - [anon_sym_object] = ACTIONS(2737), - [anon_sym_abstract] = ACTIONS(2737), - [anon_sym_interface] = ACTIONS(2737), - [anon_sym_enum] = ACTIONS(2737), + [ts_builtin_sym_end] = ACTIONS(2722), + [sym_identifier] = ACTIONS(2724), + [anon_sym_export] = ACTIONS(2724), + [anon_sym_default] = ACTIONS(2724), + [anon_sym_type] = ACTIONS(2724), + [anon_sym_namespace] = ACTIONS(2724), + [anon_sym_LBRACE] = ACTIONS(2722), + [anon_sym_RBRACE] = ACTIONS(2722), + [anon_sym_typeof] = ACTIONS(2724), + [anon_sym_import] = ACTIONS(2724), + [anon_sym_with] = ACTIONS(2724), + [anon_sym_var] = ACTIONS(2724), + [anon_sym_let] = ACTIONS(2724), + [anon_sym_const] = ACTIONS(2724), + [anon_sym_BANG] = ACTIONS(2722), + [anon_sym_else] = ACTIONS(2724), + [anon_sym_if] = ACTIONS(2724), + [anon_sym_switch] = ACTIONS(2724), + [anon_sym_for] = ACTIONS(2724), + [anon_sym_LPAREN] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_await] = ACTIONS(2724), + [anon_sym_while] = ACTIONS(2724), + [anon_sym_do] = ACTIONS(2724), + [anon_sym_try] = ACTIONS(2724), + [anon_sym_break] = ACTIONS(2724), + [anon_sym_continue] = ACTIONS(2724), + [anon_sym_debugger] = ACTIONS(2724), + [anon_sym_return] = ACTIONS(2724), + [anon_sym_throw] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2724), + [anon_sym_yield] = ACTIONS(2724), + [anon_sym_LBRACK] = ACTIONS(2722), + [anon_sym_DQUOTE] = ACTIONS(2722), + [anon_sym_SQUOTE] = ACTIONS(2722), + [anon_sym_class] = ACTIONS(2724), + [anon_sym_async] = ACTIONS(2724), + [anon_sym_function] = ACTIONS(2724), + [anon_sym_new] = ACTIONS(2724), + [anon_sym_using] = ACTIONS(2724), + [anon_sym_PLUS] = ACTIONS(2724), + [anon_sym_DASH] = ACTIONS(2724), + [anon_sym_SLASH] = ACTIONS(2724), + [anon_sym_LT] = ACTIONS(2722), + [anon_sym_TILDE] = ACTIONS(2722), + [anon_sym_void] = ACTIONS(2724), + [anon_sym_delete] = ACTIONS(2724), + [anon_sym_PLUS_PLUS] = ACTIONS(2722), + [anon_sym_DASH_DASH] = ACTIONS(2722), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2722), + [sym_number] = ACTIONS(2722), + [sym_private_property_identifier] = ACTIONS(2722), + [sym_this] = ACTIONS(2724), + [sym_super] = ACTIONS(2724), + [sym_true] = ACTIONS(2724), + [sym_false] = ACTIONS(2724), + [sym_null] = ACTIONS(2724), + [sym_undefined] = ACTIONS(2724), + [anon_sym_AT] = ACTIONS(2722), + [anon_sym_static] = ACTIONS(2724), + [anon_sym_readonly] = ACTIONS(2724), + [anon_sym_get] = ACTIONS(2724), + [anon_sym_set] = ACTIONS(2724), + [anon_sym_declare] = ACTIONS(2724), + [anon_sym_public] = ACTIONS(2724), + [anon_sym_private] = ACTIONS(2724), + [anon_sym_protected] = ACTIONS(2724), + [anon_sym_override] = ACTIONS(2724), + [anon_sym_module] = ACTIONS(2724), + [anon_sym_any] = ACTIONS(2724), + [anon_sym_number] = ACTIONS(2724), + [anon_sym_boolean] = ACTIONS(2724), + [anon_sym_string] = ACTIONS(2724), + [anon_sym_symbol] = ACTIONS(2724), + [anon_sym_object] = ACTIONS(2724), + [anon_sym_abstract] = ACTIONS(2724), + [anon_sym_interface] = ACTIONS(2724), + [anon_sym_enum] = ACTIONS(2724), [sym_html_comment] = ACTIONS(5), }, [850] = { - [ts_builtin_sym_end] = ACTIONS(2739), - [sym_identifier] = ACTIONS(2741), - [anon_sym_export] = ACTIONS(2741), - [anon_sym_default] = ACTIONS(2741), - [anon_sym_type] = ACTIONS(2741), - [anon_sym_namespace] = ACTIONS(2741), - [anon_sym_LBRACE] = ACTIONS(2739), - [anon_sym_RBRACE] = ACTIONS(2739), - [anon_sym_typeof] = ACTIONS(2741), - [anon_sym_import] = ACTIONS(2741), - [anon_sym_with] = ACTIONS(2741), - [anon_sym_var] = ACTIONS(2741), - [anon_sym_let] = ACTIONS(2741), - [anon_sym_const] = ACTIONS(2741), - [anon_sym_BANG] = ACTIONS(2739), - [anon_sym_else] = ACTIONS(2741), - [anon_sym_if] = ACTIONS(2741), - [anon_sym_switch] = ACTIONS(2741), - [anon_sym_for] = ACTIONS(2741), - [anon_sym_LPAREN] = ACTIONS(2739), - [anon_sym_SEMI] = ACTIONS(2739), - [anon_sym_await] = ACTIONS(2741), - [anon_sym_while] = ACTIONS(2741), - [anon_sym_do] = ACTIONS(2741), - [anon_sym_try] = ACTIONS(2741), - [anon_sym_break] = ACTIONS(2741), - [anon_sym_continue] = ACTIONS(2741), - [anon_sym_debugger] = ACTIONS(2741), - [anon_sym_return] = ACTIONS(2741), - [anon_sym_throw] = ACTIONS(2741), - [anon_sym_case] = ACTIONS(2741), - [anon_sym_yield] = ACTIONS(2741), - [anon_sym_LBRACK] = ACTIONS(2739), - [sym_glimmer_opening_tag] = ACTIONS(2739), - [anon_sym_DQUOTE] = ACTIONS(2739), - [anon_sym_SQUOTE] = ACTIONS(2739), - [anon_sym_class] = ACTIONS(2741), - [anon_sym_async] = ACTIONS(2741), - [anon_sym_function] = ACTIONS(2741), - [anon_sym_new] = ACTIONS(2741), - [anon_sym_using] = ACTIONS(2741), - [anon_sym_PLUS] = ACTIONS(2741), - [anon_sym_DASH] = ACTIONS(2741), - [anon_sym_SLASH] = ACTIONS(2741), - [anon_sym_LT] = ACTIONS(2741), - [anon_sym_TILDE] = ACTIONS(2739), - [anon_sym_void] = ACTIONS(2741), - [anon_sym_delete] = ACTIONS(2741), - [anon_sym_PLUS_PLUS] = ACTIONS(2739), - [anon_sym_DASH_DASH] = ACTIONS(2739), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2739), - [sym_number] = ACTIONS(2739), - [sym_private_property_identifier] = ACTIONS(2739), - [sym_this] = ACTIONS(2741), - [sym_super] = ACTIONS(2741), - [sym_true] = ACTIONS(2741), - [sym_false] = ACTIONS(2741), - [sym_null] = ACTIONS(2741), - [sym_undefined] = ACTIONS(2741), - [anon_sym_AT] = ACTIONS(2739), - [anon_sym_static] = ACTIONS(2741), - [anon_sym_readonly] = ACTIONS(2741), - [anon_sym_get] = ACTIONS(2741), - [anon_sym_set] = ACTIONS(2741), - [anon_sym_declare] = ACTIONS(2741), - [anon_sym_public] = ACTIONS(2741), - [anon_sym_private] = ACTIONS(2741), - [anon_sym_protected] = ACTIONS(2741), - [anon_sym_override] = ACTIONS(2741), - [anon_sym_module] = ACTIONS(2741), - [anon_sym_any] = ACTIONS(2741), - [anon_sym_number] = ACTIONS(2741), - [anon_sym_boolean] = ACTIONS(2741), - [anon_sym_string] = ACTIONS(2741), - [anon_sym_symbol] = ACTIONS(2741), - [anon_sym_object] = ACTIONS(2741), - [anon_sym_abstract] = ACTIONS(2741), - [anon_sym_interface] = ACTIONS(2741), - [anon_sym_enum] = ACTIONS(2741), + [ts_builtin_sym_end] = ACTIONS(2726), + [sym_identifier] = ACTIONS(2728), + [anon_sym_export] = ACTIONS(2728), + [anon_sym_default] = ACTIONS(2728), + [anon_sym_type] = ACTIONS(2728), + [anon_sym_namespace] = ACTIONS(2728), + [anon_sym_LBRACE] = ACTIONS(2726), + [anon_sym_RBRACE] = ACTIONS(2726), + [anon_sym_typeof] = ACTIONS(2728), + [anon_sym_import] = ACTIONS(2728), + [anon_sym_with] = ACTIONS(2728), + [anon_sym_var] = ACTIONS(2728), + [anon_sym_let] = ACTIONS(2728), + [anon_sym_const] = ACTIONS(2728), + [anon_sym_BANG] = ACTIONS(2726), + [anon_sym_else] = ACTIONS(2728), + [anon_sym_if] = ACTIONS(2728), + [anon_sym_switch] = ACTIONS(2728), + [anon_sym_for] = ACTIONS(2728), + [anon_sym_LPAREN] = ACTIONS(2726), + [anon_sym_SEMI] = ACTIONS(2726), + [anon_sym_await] = ACTIONS(2728), + [anon_sym_while] = ACTIONS(2728), + [anon_sym_do] = ACTIONS(2728), + [anon_sym_try] = ACTIONS(2728), + [anon_sym_break] = ACTIONS(2728), + [anon_sym_continue] = ACTIONS(2728), + [anon_sym_debugger] = ACTIONS(2728), + [anon_sym_return] = ACTIONS(2728), + [anon_sym_throw] = ACTIONS(2728), + [anon_sym_case] = ACTIONS(2728), + [anon_sym_yield] = ACTIONS(2728), + [anon_sym_LBRACK] = ACTIONS(2726), + [anon_sym_DQUOTE] = ACTIONS(2726), + [anon_sym_SQUOTE] = ACTIONS(2726), + [anon_sym_class] = ACTIONS(2728), + [anon_sym_async] = ACTIONS(2728), + [anon_sym_function] = ACTIONS(2728), + [anon_sym_new] = ACTIONS(2728), + [anon_sym_using] = ACTIONS(2728), + [anon_sym_PLUS] = ACTIONS(2728), + [anon_sym_DASH] = ACTIONS(2728), + [anon_sym_SLASH] = ACTIONS(2728), + [anon_sym_LT] = ACTIONS(2726), + [anon_sym_TILDE] = ACTIONS(2726), + [anon_sym_void] = ACTIONS(2728), + [anon_sym_delete] = ACTIONS(2728), + [anon_sym_PLUS_PLUS] = ACTIONS(2726), + [anon_sym_DASH_DASH] = ACTIONS(2726), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2726), + [sym_number] = ACTIONS(2726), + [sym_private_property_identifier] = ACTIONS(2726), + [sym_this] = ACTIONS(2728), + [sym_super] = ACTIONS(2728), + [sym_true] = ACTIONS(2728), + [sym_false] = ACTIONS(2728), + [sym_null] = ACTIONS(2728), + [sym_undefined] = ACTIONS(2728), + [anon_sym_AT] = ACTIONS(2726), + [anon_sym_static] = ACTIONS(2728), + [anon_sym_readonly] = ACTIONS(2728), + [anon_sym_get] = ACTIONS(2728), + [anon_sym_set] = ACTIONS(2728), + [anon_sym_declare] = ACTIONS(2728), + [anon_sym_public] = ACTIONS(2728), + [anon_sym_private] = ACTIONS(2728), + [anon_sym_protected] = ACTIONS(2728), + [anon_sym_override] = ACTIONS(2728), + [anon_sym_module] = ACTIONS(2728), + [anon_sym_any] = ACTIONS(2728), + [anon_sym_number] = ACTIONS(2728), + [anon_sym_boolean] = ACTIONS(2728), + [anon_sym_string] = ACTIONS(2728), + [anon_sym_symbol] = ACTIONS(2728), + [anon_sym_object] = ACTIONS(2728), + [anon_sym_abstract] = ACTIONS(2728), + [anon_sym_interface] = ACTIONS(2728), + [anon_sym_enum] = ACTIONS(2728), [sym_html_comment] = ACTIONS(5), }, [851] = { - [ts_builtin_sym_end] = ACTIONS(2671), - [sym_identifier] = ACTIONS(2673), - [anon_sym_export] = ACTIONS(2673), - [anon_sym_default] = ACTIONS(2673), - [anon_sym_type] = ACTIONS(2673), - [anon_sym_namespace] = ACTIONS(2673), - [anon_sym_LBRACE] = ACTIONS(2671), - [anon_sym_RBRACE] = ACTIONS(2671), - [anon_sym_typeof] = ACTIONS(2673), - [anon_sym_import] = ACTIONS(2673), - [anon_sym_with] = ACTIONS(2673), - [anon_sym_var] = ACTIONS(2673), - [anon_sym_let] = ACTIONS(2673), - [anon_sym_const] = ACTIONS(2673), - [anon_sym_BANG] = ACTIONS(2671), - [anon_sym_else] = ACTIONS(2673), - [anon_sym_if] = ACTIONS(2673), - [anon_sym_switch] = ACTIONS(2673), - [anon_sym_for] = ACTIONS(2673), - [anon_sym_LPAREN] = ACTIONS(2671), - [anon_sym_SEMI] = ACTIONS(2671), - [anon_sym_await] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2673), - [anon_sym_do] = ACTIONS(2673), - [anon_sym_try] = ACTIONS(2673), - [anon_sym_break] = ACTIONS(2673), - [anon_sym_continue] = ACTIONS(2673), - [anon_sym_debugger] = ACTIONS(2673), - [anon_sym_return] = ACTIONS(2673), - [anon_sym_throw] = ACTIONS(2673), - [anon_sym_case] = ACTIONS(2673), - [anon_sym_yield] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2671), - [sym_glimmer_opening_tag] = ACTIONS(2671), - [anon_sym_DQUOTE] = ACTIONS(2671), - [anon_sym_SQUOTE] = ACTIONS(2671), - [anon_sym_class] = ACTIONS(2673), - [anon_sym_async] = ACTIONS(2673), - [anon_sym_function] = ACTIONS(2673), - [anon_sym_new] = ACTIONS(2673), - [anon_sym_using] = ACTIONS(2673), - [anon_sym_PLUS] = ACTIONS(2673), - [anon_sym_DASH] = ACTIONS(2673), - [anon_sym_SLASH] = ACTIONS(2673), - [anon_sym_LT] = ACTIONS(2673), - [anon_sym_TILDE] = ACTIONS(2671), - [anon_sym_void] = ACTIONS(2673), - [anon_sym_delete] = ACTIONS(2673), - [anon_sym_PLUS_PLUS] = ACTIONS(2671), - [anon_sym_DASH_DASH] = ACTIONS(2671), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2671), - [sym_number] = ACTIONS(2671), - [sym_private_property_identifier] = ACTIONS(2671), - [sym_this] = ACTIONS(2673), - [sym_super] = ACTIONS(2673), - [sym_true] = ACTIONS(2673), - [sym_false] = ACTIONS(2673), - [sym_null] = ACTIONS(2673), - [sym_undefined] = ACTIONS(2673), - [anon_sym_AT] = ACTIONS(2671), - [anon_sym_static] = ACTIONS(2673), - [anon_sym_readonly] = ACTIONS(2673), - [anon_sym_get] = ACTIONS(2673), - [anon_sym_set] = ACTIONS(2673), - [anon_sym_declare] = ACTIONS(2673), - [anon_sym_public] = ACTIONS(2673), - [anon_sym_private] = ACTIONS(2673), - [anon_sym_protected] = ACTIONS(2673), - [anon_sym_override] = ACTIONS(2673), - [anon_sym_module] = ACTIONS(2673), - [anon_sym_any] = ACTIONS(2673), - [anon_sym_number] = ACTIONS(2673), - [anon_sym_boolean] = ACTIONS(2673), - [anon_sym_string] = ACTIONS(2673), - [anon_sym_symbol] = ACTIONS(2673), - [anon_sym_object] = ACTIONS(2673), - [anon_sym_abstract] = ACTIONS(2673), - [anon_sym_interface] = ACTIONS(2673), - [anon_sym_enum] = ACTIONS(2673), + [ts_builtin_sym_end] = ACTIONS(2730), + [sym_identifier] = ACTIONS(2732), + [anon_sym_export] = ACTIONS(2732), + [anon_sym_default] = ACTIONS(2732), + [anon_sym_type] = ACTIONS(2732), + [anon_sym_namespace] = ACTIONS(2732), + [anon_sym_LBRACE] = ACTIONS(2730), + [anon_sym_RBRACE] = ACTIONS(2730), + [anon_sym_typeof] = ACTIONS(2732), + [anon_sym_import] = ACTIONS(2732), + [anon_sym_with] = ACTIONS(2732), + [anon_sym_var] = ACTIONS(2732), + [anon_sym_let] = ACTIONS(2732), + [anon_sym_const] = ACTIONS(2732), + [anon_sym_BANG] = ACTIONS(2730), + [anon_sym_else] = ACTIONS(2732), + [anon_sym_if] = ACTIONS(2732), + [anon_sym_switch] = ACTIONS(2732), + [anon_sym_for] = ACTIONS(2732), + [anon_sym_LPAREN] = ACTIONS(2730), + [anon_sym_SEMI] = ACTIONS(2730), + [anon_sym_await] = ACTIONS(2732), + [anon_sym_while] = ACTIONS(2732), + [anon_sym_do] = ACTIONS(2732), + [anon_sym_try] = ACTIONS(2732), + [anon_sym_break] = ACTIONS(2732), + [anon_sym_continue] = ACTIONS(2732), + [anon_sym_debugger] = ACTIONS(2732), + [anon_sym_return] = ACTIONS(2732), + [anon_sym_throw] = ACTIONS(2732), + [anon_sym_case] = ACTIONS(2732), + [anon_sym_yield] = ACTIONS(2732), + [anon_sym_LBRACK] = ACTIONS(2730), + [anon_sym_DQUOTE] = ACTIONS(2730), + [anon_sym_SQUOTE] = ACTIONS(2730), + [anon_sym_class] = ACTIONS(2732), + [anon_sym_async] = ACTIONS(2732), + [anon_sym_function] = ACTIONS(2732), + [anon_sym_new] = ACTIONS(2732), + [anon_sym_using] = ACTIONS(2732), + [anon_sym_PLUS] = ACTIONS(2732), + [anon_sym_DASH] = ACTIONS(2732), + [anon_sym_SLASH] = ACTIONS(2732), + [anon_sym_LT] = ACTIONS(2730), + [anon_sym_TILDE] = ACTIONS(2730), + [anon_sym_void] = ACTIONS(2732), + [anon_sym_delete] = ACTIONS(2732), + [anon_sym_PLUS_PLUS] = ACTIONS(2730), + [anon_sym_DASH_DASH] = ACTIONS(2730), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2730), + [sym_number] = ACTIONS(2730), + [sym_private_property_identifier] = ACTIONS(2730), + [sym_this] = ACTIONS(2732), + [sym_super] = ACTIONS(2732), + [sym_true] = ACTIONS(2732), + [sym_false] = ACTIONS(2732), + [sym_null] = ACTIONS(2732), + [sym_undefined] = ACTIONS(2732), + [anon_sym_AT] = ACTIONS(2730), + [anon_sym_static] = ACTIONS(2732), + [anon_sym_readonly] = ACTIONS(2732), + [anon_sym_get] = ACTIONS(2732), + [anon_sym_set] = ACTIONS(2732), + [anon_sym_declare] = ACTIONS(2732), + [anon_sym_public] = ACTIONS(2732), + [anon_sym_private] = ACTIONS(2732), + [anon_sym_protected] = ACTIONS(2732), + [anon_sym_override] = ACTIONS(2732), + [anon_sym_module] = ACTIONS(2732), + [anon_sym_any] = ACTIONS(2732), + [anon_sym_number] = ACTIONS(2732), + [anon_sym_boolean] = ACTIONS(2732), + [anon_sym_string] = ACTIONS(2732), + [anon_sym_symbol] = ACTIONS(2732), + [anon_sym_object] = ACTIONS(2732), + [anon_sym_abstract] = ACTIONS(2732), + [anon_sym_interface] = ACTIONS(2732), + [anon_sym_enum] = ACTIONS(2732), [sym_html_comment] = ACTIONS(5), }, [852] = { - [ts_builtin_sym_end] = ACTIONS(2731), - [sym_identifier] = ACTIONS(2733), - [anon_sym_export] = ACTIONS(2733), - [anon_sym_default] = ACTIONS(2733), - [anon_sym_type] = ACTIONS(2733), - [anon_sym_namespace] = ACTIONS(2733), - [anon_sym_LBRACE] = ACTIONS(2731), - [anon_sym_RBRACE] = ACTIONS(2731), - [anon_sym_typeof] = ACTIONS(2733), - [anon_sym_import] = ACTIONS(2733), - [anon_sym_with] = ACTIONS(2733), - [anon_sym_var] = ACTIONS(2733), - [anon_sym_let] = ACTIONS(2733), - [anon_sym_const] = ACTIONS(2733), - [anon_sym_BANG] = ACTIONS(2731), - [anon_sym_else] = ACTIONS(2733), - [anon_sym_if] = ACTIONS(2733), - [anon_sym_switch] = ACTIONS(2733), - [anon_sym_for] = ACTIONS(2733), - [anon_sym_LPAREN] = ACTIONS(2731), - [anon_sym_SEMI] = ACTIONS(2731), - [anon_sym_await] = ACTIONS(2733), - [anon_sym_while] = ACTIONS(2733), - [anon_sym_do] = ACTIONS(2733), - [anon_sym_try] = ACTIONS(2733), - [anon_sym_break] = ACTIONS(2733), - [anon_sym_continue] = ACTIONS(2733), - [anon_sym_debugger] = ACTIONS(2733), - [anon_sym_return] = ACTIONS(2733), - [anon_sym_throw] = ACTIONS(2733), - [anon_sym_case] = ACTIONS(2733), - [anon_sym_yield] = ACTIONS(2733), - [anon_sym_LBRACK] = ACTIONS(2731), - [sym_glimmer_opening_tag] = ACTIONS(2731), - [anon_sym_DQUOTE] = ACTIONS(2731), - [anon_sym_SQUOTE] = ACTIONS(2731), - [anon_sym_class] = ACTIONS(2733), - [anon_sym_async] = ACTIONS(2733), - [anon_sym_function] = ACTIONS(2733), - [anon_sym_new] = ACTIONS(2733), - [anon_sym_using] = ACTIONS(2733), - [anon_sym_PLUS] = ACTIONS(2733), - [anon_sym_DASH] = ACTIONS(2733), - [anon_sym_SLASH] = ACTIONS(2733), - [anon_sym_LT] = ACTIONS(2733), - [anon_sym_TILDE] = ACTIONS(2731), - [anon_sym_void] = ACTIONS(2733), - [anon_sym_delete] = ACTIONS(2733), - [anon_sym_PLUS_PLUS] = ACTIONS(2731), - [anon_sym_DASH_DASH] = ACTIONS(2731), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2731), - [sym_number] = ACTIONS(2731), - [sym_private_property_identifier] = ACTIONS(2731), - [sym_this] = ACTIONS(2733), - [sym_super] = ACTIONS(2733), - [sym_true] = ACTIONS(2733), - [sym_false] = ACTIONS(2733), - [sym_null] = ACTIONS(2733), - [sym_undefined] = ACTIONS(2733), - [anon_sym_AT] = ACTIONS(2731), - [anon_sym_static] = ACTIONS(2733), - [anon_sym_readonly] = ACTIONS(2733), - [anon_sym_get] = ACTIONS(2733), - [anon_sym_set] = ACTIONS(2733), - [anon_sym_declare] = ACTIONS(2733), - [anon_sym_public] = ACTIONS(2733), - [anon_sym_private] = ACTIONS(2733), - [anon_sym_protected] = ACTIONS(2733), - [anon_sym_override] = ACTIONS(2733), - [anon_sym_module] = ACTIONS(2733), - [anon_sym_any] = ACTIONS(2733), - [anon_sym_number] = ACTIONS(2733), - [anon_sym_boolean] = ACTIONS(2733), - [anon_sym_string] = ACTIONS(2733), - [anon_sym_symbol] = ACTIONS(2733), - [anon_sym_object] = ACTIONS(2733), - [anon_sym_abstract] = ACTIONS(2733), - [anon_sym_interface] = ACTIONS(2733), - [anon_sym_enum] = ACTIONS(2733), + [ts_builtin_sym_end] = ACTIONS(1873), + [sym_identifier] = ACTIONS(1875), + [anon_sym_export] = ACTIONS(1875), + [anon_sym_default] = ACTIONS(1875), + [anon_sym_type] = ACTIONS(1875), + [anon_sym_namespace] = ACTIONS(1875), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(1873), + [anon_sym_typeof] = ACTIONS(1875), + [anon_sym_import] = ACTIONS(1875), + [anon_sym_with] = ACTIONS(1875), + [anon_sym_var] = ACTIONS(1875), + [anon_sym_let] = ACTIONS(1875), + [anon_sym_const] = ACTIONS(1875), + [anon_sym_BANG] = ACTIONS(1873), + [anon_sym_else] = ACTIONS(1875), + [anon_sym_if] = ACTIONS(1875), + [anon_sym_switch] = ACTIONS(1875), + [anon_sym_for] = ACTIONS(1875), + [anon_sym_LPAREN] = ACTIONS(1873), + [anon_sym_SEMI] = ACTIONS(1873), + [anon_sym_await] = ACTIONS(1875), + [anon_sym_while] = ACTIONS(1875), + [anon_sym_do] = ACTIONS(1875), + [anon_sym_try] = ACTIONS(1875), + [anon_sym_break] = ACTIONS(1875), + [anon_sym_continue] = ACTIONS(1875), + [anon_sym_debugger] = ACTIONS(1875), + [anon_sym_return] = ACTIONS(1875), + [anon_sym_throw] = ACTIONS(1875), + [anon_sym_case] = ACTIONS(1875), + [anon_sym_yield] = ACTIONS(1875), + [anon_sym_LBRACK] = ACTIONS(1873), + [anon_sym_DQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_class] = ACTIONS(1875), + [anon_sym_async] = ACTIONS(1875), + [anon_sym_function] = ACTIONS(1875), + [anon_sym_new] = ACTIONS(1875), + [anon_sym_using] = ACTIONS(1875), + [anon_sym_PLUS] = ACTIONS(1875), + [anon_sym_DASH] = ACTIONS(1875), + [anon_sym_SLASH] = ACTIONS(1875), + [anon_sym_LT] = ACTIONS(1873), + [anon_sym_TILDE] = ACTIONS(1873), + [anon_sym_void] = ACTIONS(1875), + [anon_sym_delete] = ACTIONS(1875), + [anon_sym_PLUS_PLUS] = ACTIONS(1873), + [anon_sym_DASH_DASH] = ACTIONS(1873), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1873), + [sym_number] = ACTIONS(1873), + [sym_private_property_identifier] = ACTIONS(1873), + [sym_this] = ACTIONS(1875), + [sym_super] = ACTIONS(1875), + [sym_true] = ACTIONS(1875), + [sym_false] = ACTIONS(1875), + [sym_null] = ACTIONS(1875), + [sym_undefined] = ACTIONS(1875), + [anon_sym_AT] = ACTIONS(1873), + [anon_sym_static] = ACTIONS(1875), + [anon_sym_readonly] = ACTIONS(1875), + [anon_sym_get] = ACTIONS(1875), + [anon_sym_set] = ACTIONS(1875), + [anon_sym_declare] = ACTIONS(1875), + [anon_sym_public] = ACTIONS(1875), + [anon_sym_private] = ACTIONS(1875), + [anon_sym_protected] = ACTIONS(1875), + [anon_sym_override] = ACTIONS(1875), + [anon_sym_module] = ACTIONS(1875), + [anon_sym_any] = ACTIONS(1875), + [anon_sym_number] = ACTIONS(1875), + [anon_sym_boolean] = ACTIONS(1875), + [anon_sym_string] = ACTIONS(1875), + [anon_sym_symbol] = ACTIONS(1875), + [anon_sym_object] = ACTIONS(1875), + [anon_sym_abstract] = ACTIONS(1875), + [anon_sym_interface] = ACTIONS(1875), + [anon_sym_enum] = ACTIONS(1875), [sym_html_comment] = ACTIONS(5), }, [853] = { - [ts_builtin_sym_end] = ACTIONS(2743), - [sym_identifier] = ACTIONS(2745), - [anon_sym_export] = ACTIONS(2745), - [anon_sym_default] = ACTIONS(2745), - [anon_sym_type] = ACTIONS(2745), - [anon_sym_namespace] = ACTIONS(2745), - [anon_sym_LBRACE] = ACTIONS(2743), - [anon_sym_RBRACE] = ACTIONS(2743), - [anon_sym_typeof] = ACTIONS(2745), - [anon_sym_import] = ACTIONS(2745), - [anon_sym_with] = ACTIONS(2745), - [anon_sym_var] = ACTIONS(2745), - [anon_sym_let] = ACTIONS(2745), - [anon_sym_const] = ACTIONS(2745), - [anon_sym_BANG] = ACTIONS(2743), - [anon_sym_else] = ACTIONS(2745), - [anon_sym_if] = ACTIONS(2745), - [anon_sym_switch] = ACTIONS(2745), - [anon_sym_for] = ACTIONS(2745), - [anon_sym_LPAREN] = ACTIONS(2743), - [anon_sym_SEMI] = ACTIONS(2743), - [anon_sym_await] = ACTIONS(2745), - [anon_sym_while] = ACTIONS(2745), - [anon_sym_do] = ACTIONS(2745), - [anon_sym_try] = ACTIONS(2745), - [anon_sym_break] = ACTIONS(2745), - [anon_sym_continue] = ACTIONS(2745), - [anon_sym_debugger] = ACTIONS(2745), - [anon_sym_return] = ACTIONS(2745), - [anon_sym_throw] = ACTIONS(2745), - [anon_sym_case] = ACTIONS(2745), - [anon_sym_yield] = ACTIONS(2745), - [anon_sym_LBRACK] = ACTIONS(2743), - [sym_glimmer_opening_tag] = ACTIONS(2743), - [anon_sym_DQUOTE] = ACTIONS(2743), - [anon_sym_SQUOTE] = ACTIONS(2743), - [anon_sym_class] = ACTIONS(2745), - [anon_sym_async] = ACTIONS(2745), - [anon_sym_function] = ACTIONS(2745), - [anon_sym_new] = ACTIONS(2745), - [anon_sym_using] = ACTIONS(2745), - [anon_sym_PLUS] = ACTIONS(2745), - [anon_sym_DASH] = ACTIONS(2745), - [anon_sym_SLASH] = ACTIONS(2745), - [anon_sym_LT] = ACTIONS(2745), - [anon_sym_TILDE] = ACTIONS(2743), - [anon_sym_void] = ACTIONS(2745), - [anon_sym_delete] = ACTIONS(2745), - [anon_sym_PLUS_PLUS] = ACTIONS(2743), - [anon_sym_DASH_DASH] = ACTIONS(2743), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2743), - [sym_number] = ACTIONS(2743), - [sym_private_property_identifier] = ACTIONS(2743), - [sym_this] = ACTIONS(2745), - [sym_super] = ACTIONS(2745), - [sym_true] = ACTIONS(2745), - [sym_false] = ACTIONS(2745), - [sym_null] = ACTIONS(2745), - [sym_undefined] = ACTIONS(2745), - [anon_sym_AT] = ACTIONS(2743), - [anon_sym_static] = ACTIONS(2745), - [anon_sym_readonly] = ACTIONS(2745), - [anon_sym_get] = ACTIONS(2745), - [anon_sym_set] = ACTIONS(2745), - [anon_sym_declare] = ACTIONS(2745), - [anon_sym_public] = ACTIONS(2745), - [anon_sym_private] = ACTIONS(2745), - [anon_sym_protected] = ACTIONS(2745), - [anon_sym_override] = ACTIONS(2745), - [anon_sym_module] = ACTIONS(2745), - [anon_sym_any] = ACTIONS(2745), - [anon_sym_number] = ACTIONS(2745), - [anon_sym_boolean] = ACTIONS(2745), - [anon_sym_string] = ACTIONS(2745), - [anon_sym_symbol] = ACTIONS(2745), - [anon_sym_object] = ACTIONS(2745), - [anon_sym_abstract] = ACTIONS(2745), - [anon_sym_interface] = ACTIONS(2745), - [anon_sym_enum] = ACTIONS(2745), + [ts_builtin_sym_end] = ACTIONS(1737), + [sym_identifier] = ACTIONS(1739), + [anon_sym_export] = ACTIONS(1739), + [anon_sym_default] = ACTIONS(1739), + [anon_sym_type] = ACTIONS(1739), + [anon_sym_namespace] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1737), + [anon_sym_RBRACE] = ACTIONS(1737), + [anon_sym_typeof] = ACTIONS(1739), + [anon_sym_import] = ACTIONS(1739), + [anon_sym_with] = ACTIONS(1739), + [anon_sym_var] = ACTIONS(1739), + [anon_sym_let] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_else] = ACTIONS(1739), + [anon_sym_if] = ACTIONS(1739), + [anon_sym_switch] = ACTIONS(1739), + [anon_sym_for] = ACTIONS(1739), + [anon_sym_LPAREN] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1737), + [anon_sym_await] = ACTIONS(1739), + [anon_sym_while] = ACTIONS(1739), + [anon_sym_do] = ACTIONS(1739), + [anon_sym_try] = 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_case] = ACTIONS(1739), + [anon_sym_yield] = ACTIONS(1739), + [anon_sym_LBRACK] = ACTIONS(1737), + [anon_sym_DQUOTE] = ACTIONS(1737), + [anon_sym_SQUOTE] = ACTIONS(1737), + [anon_sym_class] = ACTIONS(1739), + [anon_sym_async] = ACTIONS(1739), + [anon_sym_function] = ACTIONS(1739), + [anon_sym_new] = ACTIONS(1739), + [anon_sym_using] = ACTIONS(1739), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_SLASH] = ACTIONS(1739), + [anon_sym_LT] = ACTIONS(1737), + [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), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1737), + [sym_number] = ACTIONS(1737), + [sym_private_property_identifier] = 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_readonly] = 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_override] = 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_object] = ACTIONS(1739), + [anon_sym_abstract] = ACTIONS(1739), + [anon_sym_interface] = ACTIONS(1739), + [anon_sym_enum] = ACTIONS(1739), [sym_html_comment] = ACTIONS(5), }, [854] = { - [ts_builtin_sym_end] = ACTIONS(2747), - [sym_identifier] = ACTIONS(2749), - [anon_sym_export] = ACTIONS(2749), - [anon_sym_default] = ACTIONS(2749), - [anon_sym_type] = ACTIONS(2749), - [anon_sym_namespace] = ACTIONS(2749), - [anon_sym_LBRACE] = ACTIONS(2747), - [anon_sym_RBRACE] = ACTIONS(2747), - [anon_sym_typeof] = ACTIONS(2749), - [anon_sym_import] = ACTIONS(2749), - [anon_sym_with] = ACTIONS(2749), - [anon_sym_var] = ACTIONS(2749), - [anon_sym_let] = ACTIONS(2749), - [anon_sym_const] = ACTIONS(2749), - [anon_sym_BANG] = ACTIONS(2747), - [anon_sym_else] = ACTIONS(2749), - [anon_sym_if] = ACTIONS(2749), - [anon_sym_switch] = ACTIONS(2749), - [anon_sym_for] = ACTIONS(2749), - [anon_sym_LPAREN] = ACTIONS(2747), - [anon_sym_SEMI] = ACTIONS(2747), - [anon_sym_await] = ACTIONS(2749), - [anon_sym_while] = ACTIONS(2749), - [anon_sym_do] = ACTIONS(2749), - [anon_sym_try] = ACTIONS(2749), - [anon_sym_break] = ACTIONS(2749), - [anon_sym_continue] = ACTIONS(2749), - [anon_sym_debugger] = ACTIONS(2749), - [anon_sym_return] = ACTIONS(2749), - [anon_sym_throw] = ACTIONS(2749), - [anon_sym_case] = ACTIONS(2749), - [anon_sym_yield] = ACTIONS(2749), - [anon_sym_LBRACK] = ACTIONS(2747), - [sym_glimmer_opening_tag] = ACTIONS(2747), - [anon_sym_DQUOTE] = ACTIONS(2747), - [anon_sym_SQUOTE] = ACTIONS(2747), - [anon_sym_class] = ACTIONS(2749), - [anon_sym_async] = ACTIONS(2749), - [anon_sym_function] = ACTIONS(2749), - [anon_sym_new] = ACTIONS(2749), - [anon_sym_using] = ACTIONS(2749), - [anon_sym_PLUS] = ACTIONS(2749), - [anon_sym_DASH] = ACTIONS(2749), - [anon_sym_SLASH] = ACTIONS(2749), - [anon_sym_LT] = ACTIONS(2749), - [anon_sym_TILDE] = ACTIONS(2747), - [anon_sym_void] = ACTIONS(2749), - [anon_sym_delete] = ACTIONS(2749), - [anon_sym_PLUS_PLUS] = ACTIONS(2747), - [anon_sym_DASH_DASH] = ACTIONS(2747), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2747), - [sym_number] = ACTIONS(2747), - [sym_private_property_identifier] = ACTIONS(2747), - [sym_this] = ACTIONS(2749), - [sym_super] = ACTIONS(2749), - [sym_true] = ACTIONS(2749), - [sym_false] = ACTIONS(2749), - [sym_null] = ACTIONS(2749), - [sym_undefined] = ACTIONS(2749), - [anon_sym_AT] = ACTIONS(2747), - [anon_sym_static] = ACTIONS(2749), - [anon_sym_readonly] = ACTIONS(2749), - [anon_sym_get] = ACTIONS(2749), - [anon_sym_set] = ACTIONS(2749), - [anon_sym_declare] = ACTIONS(2749), - [anon_sym_public] = ACTIONS(2749), - [anon_sym_private] = ACTIONS(2749), - [anon_sym_protected] = ACTIONS(2749), - [anon_sym_override] = ACTIONS(2749), - [anon_sym_module] = ACTIONS(2749), - [anon_sym_any] = ACTIONS(2749), - [anon_sym_number] = ACTIONS(2749), - [anon_sym_boolean] = ACTIONS(2749), - [anon_sym_string] = ACTIONS(2749), - [anon_sym_symbol] = ACTIONS(2749), - [anon_sym_object] = ACTIONS(2749), - [anon_sym_abstract] = ACTIONS(2749), - [anon_sym_interface] = ACTIONS(2749), - [anon_sym_enum] = ACTIONS(2749), + [ts_builtin_sym_end] = ACTIONS(2734), + [sym_identifier] = ACTIONS(2736), + [anon_sym_export] = ACTIONS(2736), + [anon_sym_default] = ACTIONS(2736), + [anon_sym_type] = ACTIONS(2736), + [anon_sym_namespace] = ACTIONS(2736), + [anon_sym_LBRACE] = ACTIONS(2734), + [anon_sym_RBRACE] = ACTIONS(2734), + [anon_sym_typeof] = ACTIONS(2736), + [anon_sym_import] = ACTIONS(2736), + [anon_sym_with] = ACTIONS(2736), + [anon_sym_var] = ACTIONS(2736), + [anon_sym_let] = ACTIONS(2736), + [anon_sym_const] = ACTIONS(2736), + [anon_sym_BANG] = ACTIONS(2734), + [anon_sym_else] = ACTIONS(2736), + [anon_sym_if] = ACTIONS(2736), + [anon_sym_switch] = ACTIONS(2736), + [anon_sym_for] = ACTIONS(2736), + [anon_sym_LPAREN] = ACTIONS(2734), + [anon_sym_SEMI] = ACTIONS(2734), + [anon_sym_await] = ACTIONS(2736), + [anon_sym_while] = ACTIONS(2736), + [anon_sym_do] = ACTIONS(2736), + [anon_sym_try] = ACTIONS(2736), + [anon_sym_break] = ACTIONS(2736), + [anon_sym_continue] = ACTIONS(2736), + [anon_sym_debugger] = ACTIONS(2736), + [anon_sym_return] = ACTIONS(2736), + [anon_sym_throw] = ACTIONS(2736), + [anon_sym_case] = ACTIONS(2736), + [anon_sym_yield] = ACTIONS(2736), + [anon_sym_LBRACK] = ACTIONS(2734), + [anon_sym_DQUOTE] = ACTIONS(2734), + [anon_sym_SQUOTE] = ACTIONS(2734), + [anon_sym_class] = ACTIONS(2736), + [anon_sym_async] = ACTIONS(2736), + [anon_sym_function] = ACTIONS(2736), + [anon_sym_new] = ACTIONS(2736), + [anon_sym_using] = ACTIONS(2736), + [anon_sym_PLUS] = ACTIONS(2736), + [anon_sym_DASH] = ACTIONS(2736), + [anon_sym_SLASH] = ACTIONS(2736), + [anon_sym_LT] = ACTIONS(2734), + [anon_sym_TILDE] = ACTIONS(2734), + [anon_sym_void] = ACTIONS(2736), + [anon_sym_delete] = ACTIONS(2736), + [anon_sym_PLUS_PLUS] = ACTIONS(2734), + [anon_sym_DASH_DASH] = ACTIONS(2734), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2734), + [sym_number] = ACTIONS(2734), + [sym_private_property_identifier] = ACTIONS(2734), + [sym_this] = ACTIONS(2736), + [sym_super] = ACTIONS(2736), + [sym_true] = ACTIONS(2736), + [sym_false] = ACTIONS(2736), + [sym_null] = ACTIONS(2736), + [sym_undefined] = ACTIONS(2736), + [anon_sym_AT] = ACTIONS(2734), + [anon_sym_static] = ACTIONS(2736), + [anon_sym_readonly] = ACTIONS(2736), + [anon_sym_get] = ACTIONS(2736), + [anon_sym_set] = ACTIONS(2736), + [anon_sym_declare] = ACTIONS(2736), + [anon_sym_public] = ACTIONS(2736), + [anon_sym_private] = ACTIONS(2736), + [anon_sym_protected] = ACTIONS(2736), + [anon_sym_override] = ACTIONS(2736), + [anon_sym_module] = ACTIONS(2736), + [anon_sym_any] = ACTIONS(2736), + [anon_sym_number] = ACTIONS(2736), + [anon_sym_boolean] = ACTIONS(2736), + [anon_sym_string] = ACTIONS(2736), + [anon_sym_symbol] = ACTIONS(2736), + [anon_sym_object] = ACTIONS(2736), + [anon_sym_abstract] = ACTIONS(2736), + [anon_sym_interface] = ACTIONS(2736), + [anon_sym_enum] = ACTIONS(2736), [sym_html_comment] = ACTIONS(5), }, [855] = { - [ts_builtin_sym_end] = ACTIONS(2751), - [sym_identifier] = ACTIONS(2753), - [anon_sym_export] = ACTIONS(2753), - [anon_sym_default] = ACTIONS(2753), - [anon_sym_type] = ACTIONS(2753), - [anon_sym_namespace] = ACTIONS(2753), - [anon_sym_LBRACE] = ACTIONS(2751), - [anon_sym_RBRACE] = ACTIONS(2751), - [anon_sym_typeof] = ACTIONS(2753), - [anon_sym_import] = ACTIONS(2753), - [anon_sym_with] = ACTIONS(2753), - [anon_sym_var] = ACTIONS(2753), - [anon_sym_let] = ACTIONS(2753), - [anon_sym_const] = ACTIONS(2753), - [anon_sym_BANG] = ACTIONS(2751), - [anon_sym_else] = ACTIONS(2753), - [anon_sym_if] = ACTIONS(2753), - [anon_sym_switch] = ACTIONS(2753), - [anon_sym_for] = ACTIONS(2753), - [anon_sym_LPAREN] = ACTIONS(2751), - [anon_sym_SEMI] = ACTIONS(2751), - [anon_sym_await] = ACTIONS(2753), - [anon_sym_while] = ACTIONS(2753), - [anon_sym_do] = ACTIONS(2753), - [anon_sym_try] = ACTIONS(2753), - [anon_sym_break] = ACTIONS(2753), - [anon_sym_continue] = ACTIONS(2753), - [anon_sym_debugger] = ACTIONS(2753), - [anon_sym_return] = ACTIONS(2753), - [anon_sym_throw] = ACTIONS(2753), - [anon_sym_case] = ACTIONS(2753), - [anon_sym_yield] = ACTIONS(2753), - [anon_sym_LBRACK] = ACTIONS(2751), - [sym_glimmer_opening_tag] = ACTIONS(2751), - [anon_sym_DQUOTE] = ACTIONS(2751), - [anon_sym_SQUOTE] = ACTIONS(2751), - [anon_sym_class] = ACTIONS(2753), - [anon_sym_async] = ACTIONS(2753), - [anon_sym_function] = ACTIONS(2753), - [anon_sym_new] = ACTIONS(2753), - [anon_sym_using] = ACTIONS(2753), - [anon_sym_PLUS] = ACTIONS(2753), - [anon_sym_DASH] = ACTIONS(2753), - [anon_sym_SLASH] = ACTIONS(2753), - [anon_sym_LT] = ACTIONS(2753), - [anon_sym_TILDE] = ACTIONS(2751), - [anon_sym_void] = ACTIONS(2753), - [anon_sym_delete] = ACTIONS(2753), - [anon_sym_PLUS_PLUS] = ACTIONS(2751), - [anon_sym_DASH_DASH] = ACTIONS(2751), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2751), - [sym_number] = ACTIONS(2751), - [sym_private_property_identifier] = ACTIONS(2751), - [sym_this] = ACTIONS(2753), - [sym_super] = ACTIONS(2753), - [sym_true] = ACTIONS(2753), - [sym_false] = ACTIONS(2753), - [sym_null] = ACTIONS(2753), - [sym_undefined] = ACTIONS(2753), - [anon_sym_AT] = ACTIONS(2751), - [anon_sym_static] = ACTIONS(2753), - [anon_sym_readonly] = ACTIONS(2753), - [anon_sym_get] = ACTIONS(2753), - [anon_sym_set] = ACTIONS(2753), - [anon_sym_declare] = ACTIONS(2753), - [anon_sym_public] = ACTIONS(2753), - [anon_sym_private] = ACTIONS(2753), - [anon_sym_protected] = ACTIONS(2753), - [anon_sym_override] = ACTIONS(2753), - [anon_sym_module] = ACTIONS(2753), - [anon_sym_any] = ACTIONS(2753), - [anon_sym_number] = ACTIONS(2753), - [anon_sym_boolean] = ACTIONS(2753), - [anon_sym_string] = ACTIONS(2753), - [anon_sym_symbol] = ACTIONS(2753), - [anon_sym_object] = ACTIONS(2753), - [anon_sym_abstract] = ACTIONS(2753), - [anon_sym_interface] = ACTIONS(2753), - [anon_sym_enum] = ACTIONS(2753), + [ts_builtin_sym_end] = ACTIONS(1869), + [sym_identifier] = ACTIONS(1871), + [anon_sym_export] = ACTIONS(1871), + [anon_sym_default] = ACTIONS(1871), + [anon_sym_type] = ACTIONS(1871), + [anon_sym_namespace] = ACTIONS(1871), + [anon_sym_LBRACE] = ACTIONS(1869), + [anon_sym_RBRACE] = ACTIONS(1869), + [anon_sym_typeof] = ACTIONS(1871), + [anon_sym_import] = ACTIONS(1871), + [anon_sym_with] = ACTIONS(1871), + [anon_sym_var] = ACTIONS(1871), + [anon_sym_let] = ACTIONS(1871), + [anon_sym_const] = ACTIONS(1871), + [anon_sym_BANG] = ACTIONS(1869), + [anon_sym_else] = ACTIONS(1871), + [anon_sym_if] = ACTIONS(1871), + [anon_sym_switch] = ACTIONS(1871), + [anon_sym_for] = ACTIONS(1871), + [anon_sym_LPAREN] = ACTIONS(1869), + [anon_sym_SEMI] = ACTIONS(1869), + [anon_sym_await] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(1871), + [anon_sym_do] = ACTIONS(1871), + [anon_sym_try] = ACTIONS(1871), + [anon_sym_break] = ACTIONS(1871), + [anon_sym_continue] = ACTIONS(1871), + [anon_sym_debugger] = ACTIONS(1871), + [anon_sym_return] = ACTIONS(1871), + [anon_sym_throw] = ACTIONS(1871), + [anon_sym_case] = ACTIONS(1871), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1869), + [anon_sym_DQUOTE] = ACTIONS(1869), + [anon_sym_SQUOTE] = ACTIONS(1869), + [anon_sym_class] = ACTIONS(1871), + [anon_sym_async] = ACTIONS(1871), + [anon_sym_function] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1871), + [anon_sym_using] = ACTIONS(1871), + [anon_sym_PLUS] = ACTIONS(1871), + [anon_sym_DASH] = ACTIONS(1871), + [anon_sym_SLASH] = ACTIONS(1871), + [anon_sym_LT] = ACTIONS(1869), + [anon_sym_TILDE] = ACTIONS(1869), + [anon_sym_void] = ACTIONS(1871), + [anon_sym_delete] = ACTIONS(1871), + [anon_sym_PLUS_PLUS] = ACTIONS(1869), + [anon_sym_DASH_DASH] = ACTIONS(1869), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1869), + [sym_number] = ACTIONS(1869), + [sym_private_property_identifier] = ACTIONS(1869), + [sym_this] = ACTIONS(1871), + [sym_super] = ACTIONS(1871), + [sym_true] = ACTIONS(1871), + [sym_false] = ACTIONS(1871), + [sym_null] = ACTIONS(1871), + [sym_undefined] = ACTIONS(1871), + [anon_sym_AT] = ACTIONS(1869), + [anon_sym_static] = ACTIONS(1871), + [anon_sym_readonly] = ACTIONS(1871), + [anon_sym_get] = ACTIONS(1871), + [anon_sym_set] = ACTIONS(1871), + [anon_sym_declare] = ACTIONS(1871), + [anon_sym_public] = ACTIONS(1871), + [anon_sym_private] = ACTIONS(1871), + [anon_sym_protected] = ACTIONS(1871), + [anon_sym_override] = ACTIONS(1871), + [anon_sym_module] = ACTIONS(1871), + [anon_sym_any] = ACTIONS(1871), + [anon_sym_number] = ACTIONS(1871), + [anon_sym_boolean] = ACTIONS(1871), + [anon_sym_string] = ACTIONS(1871), + [anon_sym_symbol] = ACTIONS(1871), + [anon_sym_object] = ACTIONS(1871), + [anon_sym_abstract] = ACTIONS(1871), + [anon_sym_interface] = ACTIONS(1871), + [anon_sym_enum] = ACTIONS(1871), [sym_html_comment] = ACTIONS(5), }, [856] = { - [ts_builtin_sym_end] = ACTIONS(2755), - [sym_identifier] = ACTIONS(2757), - [anon_sym_export] = ACTIONS(2757), - [anon_sym_default] = ACTIONS(2757), - [anon_sym_type] = ACTIONS(2757), - [anon_sym_namespace] = ACTIONS(2757), - [anon_sym_LBRACE] = ACTIONS(2755), - [anon_sym_RBRACE] = ACTIONS(2755), - [anon_sym_typeof] = ACTIONS(2757), - [anon_sym_import] = ACTIONS(2757), - [anon_sym_with] = ACTIONS(2757), - [anon_sym_var] = ACTIONS(2757), - [anon_sym_let] = ACTIONS(2757), - [anon_sym_const] = ACTIONS(2757), - [anon_sym_BANG] = ACTIONS(2755), - [anon_sym_else] = ACTIONS(2757), - [anon_sym_if] = ACTIONS(2757), - [anon_sym_switch] = ACTIONS(2757), - [anon_sym_for] = ACTIONS(2757), - [anon_sym_LPAREN] = ACTIONS(2755), - [anon_sym_SEMI] = ACTIONS(2755), - [anon_sym_await] = ACTIONS(2757), - [anon_sym_while] = ACTIONS(2757), - [anon_sym_do] = ACTIONS(2757), - [anon_sym_try] = ACTIONS(2757), - [anon_sym_break] = ACTIONS(2757), - [anon_sym_continue] = ACTIONS(2757), - [anon_sym_debugger] = ACTIONS(2757), - [anon_sym_return] = ACTIONS(2757), - [anon_sym_throw] = ACTIONS(2757), - [anon_sym_case] = ACTIONS(2757), - [anon_sym_yield] = ACTIONS(2757), - [anon_sym_LBRACK] = ACTIONS(2755), - [sym_glimmer_opening_tag] = ACTIONS(2755), - [anon_sym_DQUOTE] = ACTIONS(2755), - [anon_sym_SQUOTE] = ACTIONS(2755), - [anon_sym_class] = ACTIONS(2757), - [anon_sym_async] = ACTIONS(2757), - [anon_sym_function] = ACTIONS(2757), - [anon_sym_new] = ACTIONS(2757), - [anon_sym_using] = ACTIONS(2757), - [anon_sym_PLUS] = ACTIONS(2757), - [anon_sym_DASH] = ACTIONS(2757), - [anon_sym_SLASH] = ACTIONS(2757), - [anon_sym_LT] = ACTIONS(2757), - [anon_sym_TILDE] = ACTIONS(2755), - [anon_sym_void] = ACTIONS(2757), - [anon_sym_delete] = ACTIONS(2757), - [anon_sym_PLUS_PLUS] = ACTIONS(2755), - [anon_sym_DASH_DASH] = ACTIONS(2755), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2755), - [sym_number] = ACTIONS(2755), - [sym_private_property_identifier] = ACTIONS(2755), - [sym_this] = ACTIONS(2757), - [sym_super] = ACTIONS(2757), - [sym_true] = ACTIONS(2757), - [sym_false] = ACTIONS(2757), - [sym_null] = ACTIONS(2757), - [sym_undefined] = ACTIONS(2757), - [anon_sym_AT] = ACTIONS(2755), - [anon_sym_static] = ACTIONS(2757), - [anon_sym_readonly] = ACTIONS(2757), - [anon_sym_get] = ACTIONS(2757), - [anon_sym_set] = ACTIONS(2757), - [anon_sym_declare] = ACTIONS(2757), - [anon_sym_public] = ACTIONS(2757), - [anon_sym_private] = ACTIONS(2757), - [anon_sym_protected] = ACTIONS(2757), - [anon_sym_override] = ACTIONS(2757), - [anon_sym_module] = ACTIONS(2757), - [anon_sym_any] = ACTIONS(2757), - [anon_sym_number] = ACTIONS(2757), - [anon_sym_boolean] = ACTIONS(2757), - [anon_sym_string] = ACTIONS(2757), - [anon_sym_symbol] = ACTIONS(2757), - [anon_sym_object] = ACTIONS(2757), - [anon_sym_abstract] = ACTIONS(2757), - [anon_sym_interface] = ACTIONS(2757), - [anon_sym_enum] = ACTIONS(2757), + [ts_builtin_sym_end] = ACTIONS(2738), + [sym_identifier] = ACTIONS(2740), + [anon_sym_export] = ACTIONS(2740), + [anon_sym_default] = ACTIONS(2740), + [anon_sym_type] = ACTIONS(2740), + [anon_sym_namespace] = ACTIONS(2740), + [anon_sym_LBRACE] = ACTIONS(2738), + [anon_sym_RBRACE] = ACTIONS(2738), + [anon_sym_typeof] = ACTIONS(2740), + [anon_sym_import] = ACTIONS(2740), + [anon_sym_with] = ACTIONS(2740), + [anon_sym_var] = ACTIONS(2740), + [anon_sym_let] = ACTIONS(2740), + [anon_sym_const] = ACTIONS(2740), + [anon_sym_BANG] = ACTIONS(2738), + [anon_sym_else] = ACTIONS(2740), + [anon_sym_if] = ACTIONS(2740), + [anon_sym_switch] = ACTIONS(2740), + [anon_sym_for] = ACTIONS(2740), + [anon_sym_LPAREN] = ACTIONS(2738), + [anon_sym_SEMI] = ACTIONS(2738), + [anon_sym_await] = ACTIONS(2740), + [anon_sym_while] = ACTIONS(2740), + [anon_sym_do] = ACTIONS(2740), + [anon_sym_try] = ACTIONS(2740), + [anon_sym_break] = ACTIONS(2740), + [anon_sym_continue] = ACTIONS(2740), + [anon_sym_debugger] = ACTIONS(2740), + [anon_sym_return] = ACTIONS(2740), + [anon_sym_throw] = ACTIONS(2740), + [anon_sym_case] = ACTIONS(2740), + [anon_sym_yield] = ACTIONS(2740), + [anon_sym_LBRACK] = ACTIONS(2738), + [anon_sym_DQUOTE] = ACTIONS(2738), + [anon_sym_SQUOTE] = ACTIONS(2738), + [anon_sym_class] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(2740), + [anon_sym_function] = ACTIONS(2740), + [anon_sym_new] = ACTIONS(2740), + [anon_sym_using] = ACTIONS(2740), + [anon_sym_PLUS] = ACTIONS(2740), + [anon_sym_DASH] = ACTIONS(2740), + [anon_sym_SLASH] = ACTIONS(2740), + [anon_sym_LT] = ACTIONS(2738), + [anon_sym_TILDE] = ACTIONS(2738), + [anon_sym_void] = ACTIONS(2740), + [anon_sym_delete] = ACTIONS(2740), + [anon_sym_PLUS_PLUS] = ACTIONS(2738), + [anon_sym_DASH_DASH] = ACTIONS(2738), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2738), + [sym_number] = ACTIONS(2738), + [sym_private_property_identifier] = ACTIONS(2738), + [sym_this] = ACTIONS(2740), + [sym_super] = ACTIONS(2740), + [sym_true] = ACTIONS(2740), + [sym_false] = ACTIONS(2740), + [sym_null] = ACTIONS(2740), + [sym_undefined] = ACTIONS(2740), + [anon_sym_AT] = ACTIONS(2738), + [anon_sym_static] = ACTIONS(2740), + [anon_sym_readonly] = ACTIONS(2740), + [anon_sym_get] = ACTIONS(2740), + [anon_sym_set] = ACTIONS(2740), + [anon_sym_declare] = ACTIONS(2740), + [anon_sym_public] = ACTIONS(2740), + [anon_sym_private] = ACTIONS(2740), + [anon_sym_protected] = ACTIONS(2740), + [anon_sym_override] = ACTIONS(2740), + [anon_sym_module] = ACTIONS(2740), + [anon_sym_any] = ACTIONS(2740), + [anon_sym_number] = ACTIONS(2740), + [anon_sym_boolean] = ACTIONS(2740), + [anon_sym_string] = ACTIONS(2740), + [anon_sym_symbol] = ACTIONS(2740), + [anon_sym_object] = ACTIONS(2740), + [anon_sym_abstract] = ACTIONS(2740), + [anon_sym_interface] = ACTIONS(2740), + [anon_sym_enum] = ACTIONS(2740), [sym_html_comment] = ACTIONS(5), }, [857] = { - [ts_builtin_sym_end] = ACTIONS(2759), - [sym_identifier] = ACTIONS(2761), - [anon_sym_export] = ACTIONS(2761), - [anon_sym_default] = ACTIONS(2761), - [anon_sym_type] = ACTIONS(2761), - [anon_sym_namespace] = ACTIONS(2761), - [anon_sym_LBRACE] = ACTIONS(2759), - [anon_sym_RBRACE] = ACTIONS(2759), - [anon_sym_typeof] = ACTIONS(2761), - [anon_sym_import] = ACTIONS(2761), - [anon_sym_with] = ACTIONS(2761), - [anon_sym_var] = ACTIONS(2761), - [anon_sym_let] = ACTIONS(2761), - [anon_sym_const] = ACTIONS(2761), - [anon_sym_BANG] = ACTIONS(2759), - [anon_sym_else] = ACTIONS(2761), - [anon_sym_if] = ACTIONS(2761), - [anon_sym_switch] = ACTIONS(2761), - [anon_sym_for] = ACTIONS(2761), - [anon_sym_LPAREN] = ACTIONS(2759), - [anon_sym_SEMI] = ACTIONS(2759), - [anon_sym_await] = ACTIONS(2761), - [anon_sym_while] = ACTIONS(2761), - [anon_sym_do] = ACTIONS(2761), - [anon_sym_try] = ACTIONS(2761), - [anon_sym_break] = ACTIONS(2761), - [anon_sym_continue] = ACTIONS(2761), - [anon_sym_debugger] = ACTIONS(2761), - [anon_sym_return] = ACTIONS(2761), - [anon_sym_throw] = ACTIONS(2761), - [anon_sym_case] = ACTIONS(2761), - [anon_sym_yield] = ACTIONS(2761), - [anon_sym_LBRACK] = ACTIONS(2759), - [sym_glimmer_opening_tag] = ACTIONS(2759), - [anon_sym_DQUOTE] = ACTIONS(2759), - [anon_sym_SQUOTE] = ACTIONS(2759), - [anon_sym_class] = ACTIONS(2761), - [anon_sym_async] = ACTIONS(2761), - [anon_sym_function] = ACTIONS(2761), - [anon_sym_new] = ACTIONS(2761), - [anon_sym_using] = ACTIONS(2761), - [anon_sym_PLUS] = ACTIONS(2761), - [anon_sym_DASH] = ACTIONS(2761), - [anon_sym_SLASH] = ACTIONS(2761), - [anon_sym_LT] = ACTIONS(2761), - [anon_sym_TILDE] = ACTIONS(2759), - [anon_sym_void] = ACTIONS(2761), - [anon_sym_delete] = ACTIONS(2761), - [anon_sym_PLUS_PLUS] = ACTIONS(2759), - [anon_sym_DASH_DASH] = ACTIONS(2759), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2759), - [sym_number] = ACTIONS(2759), - [sym_private_property_identifier] = ACTIONS(2759), - [sym_this] = ACTIONS(2761), - [sym_super] = ACTIONS(2761), - [sym_true] = ACTIONS(2761), - [sym_false] = ACTIONS(2761), - [sym_null] = ACTIONS(2761), - [sym_undefined] = ACTIONS(2761), - [anon_sym_AT] = ACTIONS(2759), - [anon_sym_static] = ACTIONS(2761), - [anon_sym_readonly] = ACTIONS(2761), - [anon_sym_get] = ACTIONS(2761), - [anon_sym_set] = ACTIONS(2761), - [anon_sym_declare] = ACTIONS(2761), - [anon_sym_public] = ACTIONS(2761), - [anon_sym_private] = ACTIONS(2761), - [anon_sym_protected] = ACTIONS(2761), - [anon_sym_override] = ACTIONS(2761), - [anon_sym_module] = ACTIONS(2761), - [anon_sym_any] = ACTIONS(2761), - [anon_sym_number] = ACTIONS(2761), - [anon_sym_boolean] = ACTIONS(2761), - [anon_sym_string] = ACTIONS(2761), - [anon_sym_symbol] = ACTIONS(2761), - [anon_sym_object] = ACTIONS(2761), - [anon_sym_abstract] = ACTIONS(2761), - [anon_sym_interface] = ACTIONS(2761), - [anon_sym_enum] = ACTIONS(2761), + [ts_builtin_sym_end] = ACTIONS(2738), + [sym_identifier] = ACTIONS(2740), + [anon_sym_export] = ACTIONS(2740), + [anon_sym_default] = ACTIONS(2740), + [anon_sym_type] = ACTIONS(2740), + [anon_sym_namespace] = ACTIONS(2740), + [anon_sym_LBRACE] = ACTIONS(2738), + [anon_sym_RBRACE] = ACTIONS(2738), + [anon_sym_typeof] = ACTIONS(2740), + [anon_sym_import] = ACTIONS(2740), + [anon_sym_with] = ACTIONS(2740), + [anon_sym_var] = ACTIONS(2740), + [anon_sym_let] = ACTIONS(2740), + [anon_sym_const] = ACTIONS(2740), + [anon_sym_BANG] = ACTIONS(2738), + [anon_sym_else] = ACTIONS(2740), + [anon_sym_if] = ACTIONS(2740), + [anon_sym_switch] = ACTIONS(2740), + [anon_sym_for] = ACTIONS(2740), + [anon_sym_LPAREN] = ACTIONS(2738), + [anon_sym_SEMI] = ACTIONS(2738), + [anon_sym_await] = ACTIONS(2740), + [anon_sym_while] = ACTIONS(2740), + [anon_sym_do] = ACTIONS(2740), + [anon_sym_try] = ACTIONS(2740), + [anon_sym_break] = ACTIONS(2740), + [anon_sym_continue] = ACTIONS(2740), + [anon_sym_debugger] = ACTIONS(2740), + [anon_sym_return] = ACTIONS(2740), + [anon_sym_throw] = ACTIONS(2740), + [anon_sym_case] = ACTIONS(2740), + [anon_sym_yield] = ACTIONS(2740), + [anon_sym_LBRACK] = ACTIONS(2738), + [anon_sym_DQUOTE] = ACTIONS(2738), + [anon_sym_SQUOTE] = ACTIONS(2738), + [anon_sym_class] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(2740), + [anon_sym_function] = ACTIONS(2740), + [anon_sym_new] = ACTIONS(2740), + [anon_sym_using] = ACTIONS(2740), + [anon_sym_PLUS] = ACTIONS(2740), + [anon_sym_DASH] = ACTIONS(2740), + [anon_sym_SLASH] = ACTIONS(2740), + [anon_sym_LT] = ACTIONS(2738), + [anon_sym_TILDE] = ACTIONS(2738), + [anon_sym_void] = ACTIONS(2740), + [anon_sym_delete] = ACTIONS(2740), + [anon_sym_PLUS_PLUS] = ACTIONS(2738), + [anon_sym_DASH_DASH] = ACTIONS(2738), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2738), + [sym_number] = ACTIONS(2738), + [sym_private_property_identifier] = ACTIONS(2738), + [sym_this] = ACTIONS(2740), + [sym_super] = ACTIONS(2740), + [sym_true] = ACTIONS(2740), + [sym_false] = ACTIONS(2740), + [sym_null] = ACTIONS(2740), + [sym_undefined] = ACTIONS(2740), + [anon_sym_AT] = ACTIONS(2738), + [anon_sym_static] = ACTIONS(2740), + [anon_sym_readonly] = ACTIONS(2740), + [anon_sym_get] = ACTIONS(2740), + [anon_sym_set] = ACTIONS(2740), + [anon_sym_declare] = ACTIONS(2740), + [anon_sym_public] = ACTIONS(2740), + [anon_sym_private] = ACTIONS(2740), + [anon_sym_protected] = ACTIONS(2740), + [anon_sym_override] = ACTIONS(2740), + [anon_sym_module] = ACTIONS(2740), + [anon_sym_any] = ACTIONS(2740), + [anon_sym_number] = ACTIONS(2740), + [anon_sym_boolean] = ACTIONS(2740), + [anon_sym_string] = ACTIONS(2740), + [anon_sym_symbol] = ACTIONS(2740), + [anon_sym_object] = ACTIONS(2740), + [anon_sym_abstract] = ACTIONS(2740), + [anon_sym_interface] = ACTIONS(2740), + [anon_sym_enum] = ACTIONS(2740), [sym_html_comment] = ACTIONS(5), }, [858] = { - [ts_builtin_sym_end] = ACTIONS(2763), - [sym_identifier] = ACTIONS(2765), - [anon_sym_export] = ACTIONS(2765), - [anon_sym_default] = ACTIONS(2765), - [anon_sym_type] = ACTIONS(2765), - [anon_sym_namespace] = ACTIONS(2765), - [anon_sym_LBRACE] = ACTIONS(2763), - [anon_sym_RBRACE] = ACTIONS(2763), - [anon_sym_typeof] = ACTIONS(2765), - [anon_sym_import] = ACTIONS(2765), - [anon_sym_with] = ACTIONS(2765), - [anon_sym_var] = ACTIONS(2765), - [anon_sym_let] = ACTIONS(2765), - [anon_sym_const] = ACTIONS(2765), - [anon_sym_BANG] = ACTIONS(2763), - [anon_sym_else] = ACTIONS(2765), - [anon_sym_if] = ACTIONS(2765), - [anon_sym_switch] = ACTIONS(2765), - [anon_sym_for] = ACTIONS(2765), - [anon_sym_LPAREN] = ACTIONS(2763), - [anon_sym_SEMI] = ACTIONS(2763), - [anon_sym_await] = ACTIONS(2765), - [anon_sym_while] = ACTIONS(2765), - [anon_sym_do] = ACTIONS(2765), - [anon_sym_try] = ACTIONS(2765), - [anon_sym_break] = ACTIONS(2765), - [anon_sym_continue] = ACTIONS(2765), - [anon_sym_debugger] = ACTIONS(2765), - [anon_sym_return] = ACTIONS(2765), - [anon_sym_throw] = ACTIONS(2765), - [anon_sym_case] = ACTIONS(2765), - [anon_sym_yield] = ACTIONS(2765), - [anon_sym_LBRACK] = ACTIONS(2763), - [sym_glimmer_opening_tag] = ACTIONS(2763), - [anon_sym_DQUOTE] = ACTIONS(2763), - [anon_sym_SQUOTE] = ACTIONS(2763), - [anon_sym_class] = ACTIONS(2765), - [anon_sym_async] = ACTIONS(2765), - [anon_sym_function] = ACTIONS(2765), - [anon_sym_new] = ACTIONS(2765), - [anon_sym_using] = ACTIONS(2765), - [anon_sym_PLUS] = ACTIONS(2765), - [anon_sym_DASH] = ACTIONS(2765), - [anon_sym_SLASH] = ACTIONS(2765), - [anon_sym_LT] = ACTIONS(2765), - [anon_sym_TILDE] = ACTIONS(2763), - [anon_sym_void] = ACTIONS(2765), - [anon_sym_delete] = ACTIONS(2765), - [anon_sym_PLUS_PLUS] = ACTIONS(2763), - [anon_sym_DASH_DASH] = ACTIONS(2763), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2763), - [sym_number] = ACTIONS(2763), - [sym_private_property_identifier] = ACTIONS(2763), - [sym_this] = ACTIONS(2765), - [sym_super] = ACTIONS(2765), - [sym_true] = ACTIONS(2765), - [sym_false] = ACTIONS(2765), - [sym_null] = ACTIONS(2765), - [sym_undefined] = ACTIONS(2765), - [anon_sym_AT] = ACTIONS(2763), - [anon_sym_static] = ACTIONS(2765), - [anon_sym_readonly] = ACTIONS(2765), - [anon_sym_get] = ACTIONS(2765), - [anon_sym_set] = ACTIONS(2765), - [anon_sym_declare] = ACTIONS(2765), - [anon_sym_public] = ACTIONS(2765), - [anon_sym_private] = ACTIONS(2765), - [anon_sym_protected] = ACTIONS(2765), - [anon_sym_override] = ACTIONS(2765), - [anon_sym_module] = ACTIONS(2765), - [anon_sym_any] = ACTIONS(2765), - [anon_sym_number] = ACTIONS(2765), - [anon_sym_boolean] = ACTIONS(2765), - [anon_sym_string] = ACTIONS(2765), - [anon_sym_symbol] = ACTIONS(2765), - [anon_sym_object] = ACTIONS(2765), - [anon_sym_abstract] = ACTIONS(2765), - [anon_sym_interface] = ACTIONS(2765), - [anon_sym_enum] = ACTIONS(2765), + [ts_builtin_sym_end] = ACTIONS(2742), + [sym_identifier] = ACTIONS(2744), + [anon_sym_export] = ACTIONS(2744), + [anon_sym_default] = ACTIONS(2744), + [anon_sym_type] = ACTIONS(2744), + [anon_sym_namespace] = ACTIONS(2744), + [anon_sym_LBRACE] = ACTIONS(2742), + [anon_sym_RBRACE] = ACTIONS(2742), + [anon_sym_typeof] = ACTIONS(2744), + [anon_sym_import] = ACTIONS(2744), + [anon_sym_with] = ACTIONS(2744), + [anon_sym_var] = ACTIONS(2744), + [anon_sym_let] = ACTIONS(2744), + [anon_sym_const] = ACTIONS(2744), + [anon_sym_BANG] = ACTIONS(2742), + [anon_sym_else] = ACTIONS(2744), + [anon_sym_if] = ACTIONS(2744), + [anon_sym_switch] = ACTIONS(2744), + [anon_sym_for] = ACTIONS(2744), + [anon_sym_LPAREN] = ACTIONS(2742), + [anon_sym_SEMI] = ACTIONS(2742), + [anon_sym_await] = ACTIONS(2744), + [anon_sym_while] = ACTIONS(2744), + [anon_sym_do] = ACTIONS(2744), + [anon_sym_try] = ACTIONS(2744), + [anon_sym_break] = ACTIONS(2744), + [anon_sym_continue] = ACTIONS(2744), + [anon_sym_debugger] = ACTIONS(2744), + [anon_sym_return] = ACTIONS(2744), + [anon_sym_throw] = ACTIONS(2744), + [anon_sym_case] = ACTIONS(2744), + [anon_sym_yield] = ACTIONS(2744), + [anon_sym_LBRACK] = ACTIONS(2742), + [anon_sym_DQUOTE] = ACTIONS(2742), + [anon_sym_SQUOTE] = ACTIONS(2742), + [anon_sym_class] = ACTIONS(2744), + [anon_sym_async] = ACTIONS(2744), + [anon_sym_function] = ACTIONS(2744), + [anon_sym_new] = ACTIONS(2744), + [anon_sym_using] = ACTIONS(2744), + [anon_sym_PLUS] = ACTIONS(2744), + [anon_sym_DASH] = ACTIONS(2744), + [anon_sym_SLASH] = ACTIONS(2744), + [anon_sym_LT] = ACTIONS(2742), + [anon_sym_TILDE] = ACTIONS(2742), + [anon_sym_void] = ACTIONS(2744), + [anon_sym_delete] = ACTIONS(2744), + [anon_sym_PLUS_PLUS] = ACTIONS(2742), + [anon_sym_DASH_DASH] = ACTIONS(2742), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2742), + [sym_number] = ACTIONS(2742), + [sym_private_property_identifier] = ACTIONS(2742), + [sym_this] = ACTIONS(2744), + [sym_super] = ACTIONS(2744), + [sym_true] = ACTIONS(2744), + [sym_false] = ACTIONS(2744), + [sym_null] = ACTIONS(2744), + [sym_undefined] = ACTIONS(2744), + [anon_sym_AT] = ACTIONS(2742), + [anon_sym_static] = ACTIONS(2744), + [anon_sym_readonly] = ACTIONS(2744), + [anon_sym_get] = ACTIONS(2744), + [anon_sym_set] = ACTIONS(2744), + [anon_sym_declare] = ACTIONS(2744), + [anon_sym_public] = ACTIONS(2744), + [anon_sym_private] = ACTIONS(2744), + [anon_sym_protected] = ACTIONS(2744), + [anon_sym_override] = ACTIONS(2744), + [anon_sym_module] = ACTIONS(2744), + [anon_sym_any] = ACTIONS(2744), + [anon_sym_number] = ACTIONS(2744), + [anon_sym_boolean] = ACTIONS(2744), + [anon_sym_string] = ACTIONS(2744), + [anon_sym_symbol] = ACTIONS(2744), + [anon_sym_object] = ACTIONS(2744), + [anon_sym_abstract] = ACTIONS(2744), + [anon_sym_interface] = ACTIONS(2744), + [anon_sym_enum] = ACTIONS(2744), [sym_html_comment] = ACTIONS(5), }, [859] = { - [ts_builtin_sym_end] = ACTIONS(2767), - [sym_identifier] = ACTIONS(2769), - [anon_sym_export] = ACTIONS(2769), - [anon_sym_default] = ACTIONS(2769), - [anon_sym_type] = ACTIONS(2769), - [anon_sym_namespace] = ACTIONS(2769), - [anon_sym_LBRACE] = ACTIONS(2767), - [anon_sym_RBRACE] = ACTIONS(2767), - [anon_sym_typeof] = ACTIONS(2769), - [anon_sym_import] = ACTIONS(2769), - [anon_sym_with] = ACTIONS(2769), - [anon_sym_var] = ACTIONS(2769), - [anon_sym_let] = ACTIONS(2769), - [anon_sym_const] = ACTIONS(2769), - [anon_sym_BANG] = ACTIONS(2767), - [anon_sym_else] = ACTIONS(2769), - [anon_sym_if] = ACTIONS(2769), - [anon_sym_switch] = ACTIONS(2769), - [anon_sym_for] = ACTIONS(2769), - [anon_sym_LPAREN] = ACTIONS(2767), - [anon_sym_SEMI] = ACTIONS(2767), - [anon_sym_await] = ACTIONS(2769), - [anon_sym_while] = ACTIONS(2769), - [anon_sym_do] = ACTIONS(2769), - [anon_sym_try] = ACTIONS(2769), - [anon_sym_break] = ACTIONS(2769), - [anon_sym_continue] = ACTIONS(2769), - [anon_sym_debugger] = ACTIONS(2769), - [anon_sym_return] = ACTIONS(2769), - [anon_sym_throw] = ACTIONS(2769), - [anon_sym_case] = ACTIONS(2769), - [anon_sym_yield] = ACTIONS(2769), - [anon_sym_LBRACK] = ACTIONS(2767), - [sym_glimmer_opening_tag] = ACTIONS(2767), - [anon_sym_DQUOTE] = ACTIONS(2767), - [anon_sym_SQUOTE] = ACTIONS(2767), - [anon_sym_class] = ACTIONS(2769), - [anon_sym_async] = ACTIONS(2769), - [anon_sym_function] = ACTIONS(2769), - [anon_sym_new] = ACTIONS(2769), - [anon_sym_using] = ACTIONS(2769), - [anon_sym_PLUS] = ACTIONS(2769), - [anon_sym_DASH] = ACTIONS(2769), - [anon_sym_SLASH] = ACTIONS(2769), - [anon_sym_LT] = ACTIONS(2769), - [anon_sym_TILDE] = ACTIONS(2767), - [anon_sym_void] = ACTIONS(2769), - [anon_sym_delete] = ACTIONS(2769), - [anon_sym_PLUS_PLUS] = ACTIONS(2767), - [anon_sym_DASH_DASH] = ACTIONS(2767), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2767), - [sym_number] = ACTIONS(2767), - [sym_private_property_identifier] = ACTIONS(2767), - [sym_this] = ACTIONS(2769), - [sym_super] = ACTIONS(2769), - [sym_true] = ACTIONS(2769), - [sym_false] = ACTIONS(2769), - [sym_null] = ACTIONS(2769), - [sym_undefined] = ACTIONS(2769), - [anon_sym_AT] = ACTIONS(2767), - [anon_sym_static] = ACTIONS(2769), - [anon_sym_readonly] = ACTIONS(2769), - [anon_sym_get] = ACTIONS(2769), - [anon_sym_set] = ACTIONS(2769), - [anon_sym_declare] = ACTIONS(2769), - [anon_sym_public] = ACTIONS(2769), - [anon_sym_private] = ACTIONS(2769), - [anon_sym_protected] = ACTIONS(2769), - [anon_sym_override] = ACTIONS(2769), - [anon_sym_module] = ACTIONS(2769), - [anon_sym_any] = ACTIONS(2769), - [anon_sym_number] = ACTIONS(2769), - [anon_sym_boolean] = ACTIONS(2769), - [anon_sym_string] = ACTIONS(2769), - [anon_sym_symbol] = ACTIONS(2769), - [anon_sym_object] = ACTIONS(2769), - [anon_sym_abstract] = ACTIONS(2769), - [anon_sym_interface] = ACTIONS(2769), - [anon_sym_enum] = ACTIONS(2769), + [ts_builtin_sym_end] = ACTIONS(2746), + [sym_identifier] = ACTIONS(2748), + [anon_sym_export] = ACTIONS(2748), + [anon_sym_default] = ACTIONS(2748), + [anon_sym_type] = ACTIONS(2748), + [anon_sym_namespace] = ACTIONS(2748), + [anon_sym_LBRACE] = ACTIONS(2746), + [anon_sym_RBRACE] = ACTIONS(2746), + [anon_sym_typeof] = ACTIONS(2748), + [anon_sym_import] = ACTIONS(2748), + [anon_sym_with] = ACTIONS(2748), + [anon_sym_var] = ACTIONS(2748), + [anon_sym_let] = ACTIONS(2748), + [anon_sym_const] = ACTIONS(2748), + [anon_sym_BANG] = ACTIONS(2746), + [anon_sym_else] = ACTIONS(2748), + [anon_sym_if] = ACTIONS(2748), + [anon_sym_switch] = ACTIONS(2748), + [anon_sym_for] = ACTIONS(2748), + [anon_sym_LPAREN] = ACTIONS(2746), + [anon_sym_SEMI] = ACTIONS(2746), + [anon_sym_await] = ACTIONS(2748), + [anon_sym_while] = ACTIONS(2748), + [anon_sym_do] = ACTIONS(2748), + [anon_sym_try] = ACTIONS(2748), + [anon_sym_break] = ACTIONS(2748), + [anon_sym_continue] = ACTIONS(2748), + [anon_sym_debugger] = ACTIONS(2748), + [anon_sym_return] = ACTIONS(2748), + [anon_sym_throw] = ACTIONS(2748), + [anon_sym_case] = ACTIONS(2748), + [anon_sym_yield] = ACTIONS(2748), + [anon_sym_LBRACK] = ACTIONS(2746), + [anon_sym_DQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_class] = ACTIONS(2748), + [anon_sym_async] = ACTIONS(2748), + [anon_sym_function] = ACTIONS(2748), + [anon_sym_new] = ACTIONS(2748), + [anon_sym_using] = ACTIONS(2748), + [anon_sym_PLUS] = ACTIONS(2748), + [anon_sym_DASH] = ACTIONS(2748), + [anon_sym_SLASH] = ACTIONS(2748), + [anon_sym_LT] = ACTIONS(2746), + [anon_sym_TILDE] = ACTIONS(2746), + [anon_sym_void] = ACTIONS(2748), + [anon_sym_delete] = ACTIONS(2748), + [anon_sym_PLUS_PLUS] = ACTIONS(2746), + [anon_sym_DASH_DASH] = ACTIONS(2746), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2746), + [sym_number] = ACTIONS(2746), + [sym_private_property_identifier] = ACTIONS(2746), + [sym_this] = ACTIONS(2748), + [sym_super] = ACTIONS(2748), + [sym_true] = ACTIONS(2748), + [sym_false] = ACTIONS(2748), + [sym_null] = ACTIONS(2748), + [sym_undefined] = ACTIONS(2748), + [anon_sym_AT] = ACTIONS(2746), + [anon_sym_static] = ACTIONS(2748), + [anon_sym_readonly] = ACTIONS(2748), + [anon_sym_get] = ACTIONS(2748), + [anon_sym_set] = ACTIONS(2748), + [anon_sym_declare] = ACTIONS(2748), + [anon_sym_public] = ACTIONS(2748), + [anon_sym_private] = ACTIONS(2748), + [anon_sym_protected] = ACTIONS(2748), + [anon_sym_override] = ACTIONS(2748), + [anon_sym_module] = ACTIONS(2748), + [anon_sym_any] = ACTIONS(2748), + [anon_sym_number] = ACTIONS(2748), + [anon_sym_boolean] = ACTIONS(2748), + [anon_sym_string] = ACTIONS(2748), + [anon_sym_symbol] = ACTIONS(2748), + [anon_sym_object] = ACTIONS(2748), + [anon_sym_abstract] = ACTIONS(2748), + [anon_sym_interface] = ACTIONS(2748), + [anon_sym_enum] = ACTIONS(2748), [sym_html_comment] = ACTIONS(5), }, [860] = { - [ts_builtin_sym_end] = ACTIONS(2771), - [sym_identifier] = ACTIONS(2773), - [anon_sym_export] = ACTIONS(2773), - [anon_sym_default] = ACTIONS(2773), - [anon_sym_type] = ACTIONS(2773), - [anon_sym_namespace] = ACTIONS(2773), - [anon_sym_LBRACE] = ACTIONS(2771), - [anon_sym_RBRACE] = ACTIONS(2771), - [anon_sym_typeof] = ACTIONS(2773), - [anon_sym_import] = ACTIONS(2773), - [anon_sym_with] = ACTIONS(2773), - [anon_sym_var] = ACTIONS(2773), - [anon_sym_let] = ACTIONS(2773), - [anon_sym_const] = ACTIONS(2773), - [anon_sym_BANG] = ACTIONS(2771), - [anon_sym_else] = ACTIONS(2773), - [anon_sym_if] = ACTIONS(2773), - [anon_sym_switch] = ACTIONS(2773), - [anon_sym_for] = ACTIONS(2773), - [anon_sym_LPAREN] = ACTIONS(2771), - [anon_sym_SEMI] = ACTIONS(2771), - [anon_sym_await] = ACTIONS(2773), - [anon_sym_while] = ACTIONS(2773), - [anon_sym_do] = ACTIONS(2773), - [anon_sym_try] = ACTIONS(2773), - [anon_sym_break] = ACTIONS(2773), - [anon_sym_continue] = ACTIONS(2773), - [anon_sym_debugger] = ACTIONS(2773), - [anon_sym_return] = ACTIONS(2773), - [anon_sym_throw] = ACTIONS(2773), - [anon_sym_case] = ACTIONS(2773), - [anon_sym_yield] = ACTIONS(2773), - [anon_sym_LBRACK] = ACTIONS(2771), - [sym_glimmer_opening_tag] = ACTIONS(2771), - [anon_sym_DQUOTE] = ACTIONS(2771), - [anon_sym_SQUOTE] = ACTIONS(2771), - [anon_sym_class] = ACTIONS(2773), - [anon_sym_async] = ACTIONS(2773), - [anon_sym_function] = ACTIONS(2773), - [anon_sym_new] = ACTIONS(2773), - [anon_sym_using] = ACTIONS(2773), - [anon_sym_PLUS] = ACTIONS(2773), - [anon_sym_DASH] = ACTIONS(2773), - [anon_sym_SLASH] = ACTIONS(2773), - [anon_sym_LT] = ACTIONS(2773), - [anon_sym_TILDE] = ACTIONS(2771), - [anon_sym_void] = ACTIONS(2773), - [anon_sym_delete] = ACTIONS(2773), - [anon_sym_PLUS_PLUS] = ACTIONS(2771), - [anon_sym_DASH_DASH] = ACTIONS(2771), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2771), - [sym_number] = ACTIONS(2771), - [sym_private_property_identifier] = ACTIONS(2771), - [sym_this] = ACTIONS(2773), - [sym_super] = ACTIONS(2773), - [sym_true] = ACTIONS(2773), - [sym_false] = ACTIONS(2773), - [sym_null] = ACTIONS(2773), - [sym_undefined] = ACTIONS(2773), - [anon_sym_AT] = ACTIONS(2771), - [anon_sym_static] = ACTIONS(2773), - [anon_sym_readonly] = ACTIONS(2773), - [anon_sym_get] = ACTIONS(2773), - [anon_sym_set] = ACTIONS(2773), - [anon_sym_declare] = ACTIONS(2773), - [anon_sym_public] = ACTIONS(2773), - [anon_sym_private] = ACTIONS(2773), - [anon_sym_protected] = ACTIONS(2773), - [anon_sym_override] = ACTIONS(2773), - [anon_sym_module] = ACTIONS(2773), - [anon_sym_any] = ACTIONS(2773), - [anon_sym_number] = ACTIONS(2773), - [anon_sym_boolean] = ACTIONS(2773), - [anon_sym_string] = ACTIONS(2773), - [anon_sym_symbol] = ACTIONS(2773), - [anon_sym_object] = ACTIONS(2773), - [anon_sym_abstract] = ACTIONS(2773), - [anon_sym_interface] = ACTIONS(2773), - [anon_sym_enum] = ACTIONS(2773), + [ts_builtin_sym_end] = ACTIONS(2750), + [sym_identifier] = ACTIONS(2752), + [anon_sym_export] = ACTIONS(2752), + [anon_sym_default] = ACTIONS(2752), + [anon_sym_type] = ACTIONS(2752), + [anon_sym_namespace] = ACTIONS(2752), + [anon_sym_LBRACE] = ACTIONS(2750), + [anon_sym_RBRACE] = ACTIONS(2750), + [anon_sym_typeof] = ACTIONS(2752), + [anon_sym_import] = ACTIONS(2752), + [anon_sym_with] = ACTIONS(2752), + [anon_sym_var] = ACTIONS(2752), + [anon_sym_let] = ACTIONS(2752), + [anon_sym_const] = ACTIONS(2752), + [anon_sym_BANG] = ACTIONS(2750), + [anon_sym_else] = ACTIONS(2752), + [anon_sym_if] = ACTIONS(2752), + [anon_sym_switch] = ACTIONS(2752), + [anon_sym_for] = ACTIONS(2752), + [anon_sym_LPAREN] = ACTIONS(2750), + [anon_sym_SEMI] = ACTIONS(2750), + [anon_sym_await] = ACTIONS(2752), + [anon_sym_while] = ACTIONS(2752), + [anon_sym_do] = ACTIONS(2752), + [anon_sym_try] = ACTIONS(2752), + [anon_sym_break] = ACTIONS(2752), + [anon_sym_continue] = ACTIONS(2752), + [anon_sym_debugger] = ACTIONS(2752), + [anon_sym_return] = ACTIONS(2752), + [anon_sym_throw] = ACTIONS(2752), + [anon_sym_case] = ACTIONS(2752), + [anon_sym_yield] = ACTIONS(2752), + [anon_sym_LBRACK] = ACTIONS(2750), + [anon_sym_DQUOTE] = ACTIONS(2750), + [anon_sym_SQUOTE] = ACTIONS(2750), + [anon_sym_class] = ACTIONS(2752), + [anon_sym_async] = ACTIONS(2752), + [anon_sym_function] = ACTIONS(2752), + [anon_sym_new] = ACTIONS(2752), + [anon_sym_using] = ACTIONS(2752), + [anon_sym_PLUS] = ACTIONS(2752), + [anon_sym_DASH] = ACTIONS(2752), + [anon_sym_SLASH] = ACTIONS(2752), + [anon_sym_LT] = ACTIONS(2750), + [anon_sym_TILDE] = ACTIONS(2750), + [anon_sym_void] = ACTIONS(2752), + [anon_sym_delete] = ACTIONS(2752), + [anon_sym_PLUS_PLUS] = ACTIONS(2750), + [anon_sym_DASH_DASH] = ACTIONS(2750), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2750), + [sym_number] = ACTIONS(2750), + [sym_private_property_identifier] = ACTIONS(2750), + [sym_this] = ACTIONS(2752), + [sym_super] = ACTIONS(2752), + [sym_true] = ACTIONS(2752), + [sym_false] = ACTIONS(2752), + [sym_null] = ACTIONS(2752), + [sym_undefined] = ACTIONS(2752), + [anon_sym_AT] = ACTIONS(2750), + [anon_sym_static] = ACTIONS(2752), + [anon_sym_readonly] = ACTIONS(2752), + [anon_sym_get] = ACTIONS(2752), + [anon_sym_set] = ACTIONS(2752), + [anon_sym_declare] = ACTIONS(2752), + [anon_sym_public] = ACTIONS(2752), + [anon_sym_private] = ACTIONS(2752), + [anon_sym_protected] = ACTIONS(2752), + [anon_sym_override] = ACTIONS(2752), + [anon_sym_module] = ACTIONS(2752), + [anon_sym_any] = ACTIONS(2752), + [anon_sym_number] = ACTIONS(2752), + [anon_sym_boolean] = ACTIONS(2752), + [anon_sym_string] = ACTIONS(2752), + [anon_sym_symbol] = ACTIONS(2752), + [anon_sym_object] = ACTIONS(2752), + [anon_sym_abstract] = ACTIONS(2752), + [anon_sym_interface] = ACTIONS(2752), + [anon_sym_enum] = ACTIONS(2752), [sym_html_comment] = ACTIONS(5), }, [861] = { - [ts_builtin_sym_end] = ACTIONS(2775), - [sym_identifier] = ACTIONS(2777), - [anon_sym_export] = ACTIONS(2777), - [anon_sym_default] = ACTIONS(2777), - [anon_sym_type] = ACTIONS(2777), - [anon_sym_namespace] = ACTIONS(2777), - [anon_sym_LBRACE] = ACTIONS(2775), - [anon_sym_RBRACE] = ACTIONS(2775), - [anon_sym_typeof] = ACTIONS(2777), - [anon_sym_import] = ACTIONS(2777), - [anon_sym_with] = ACTIONS(2777), - [anon_sym_var] = ACTIONS(2777), - [anon_sym_let] = ACTIONS(2777), - [anon_sym_const] = ACTIONS(2777), - [anon_sym_BANG] = ACTIONS(2775), - [anon_sym_else] = ACTIONS(2777), - [anon_sym_if] = ACTIONS(2777), - [anon_sym_switch] = ACTIONS(2777), - [anon_sym_for] = ACTIONS(2777), - [anon_sym_LPAREN] = ACTIONS(2775), - [anon_sym_SEMI] = ACTIONS(2775), - [anon_sym_await] = ACTIONS(2777), - [anon_sym_while] = ACTIONS(2777), - [anon_sym_do] = ACTIONS(2777), - [anon_sym_try] = ACTIONS(2777), - [anon_sym_break] = ACTIONS(2777), - [anon_sym_continue] = ACTIONS(2777), - [anon_sym_debugger] = ACTIONS(2777), - [anon_sym_return] = ACTIONS(2777), - [anon_sym_throw] = ACTIONS(2777), - [anon_sym_case] = ACTIONS(2777), - [anon_sym_yield] = ACTIONS(2777), - [anon_sym_LBRACK] = ACTIONS(2775), - [sym_glimmer_opening_tag] = ACTIONS(2775), - [anon_sym_DQUOTE] = ACTIONS(2775), - [anon_sym_SQUOTE] = ACTIONS(2775), - [anon_sym_class] = ACTIONS(2777), - [anon_sym_async] = ACTIONS(2777), - [anon_sym_function] = ACTIONS(2777), - [anon_sym_new] = ACTIONS(2777), - [anon_sym_using] = ACTIONS(2777), - [anon_sym_PLUS] = ACTIONS(2777), - [anon_sym_DASH] = ACTIONS(2777), - [anon_sym_SLASH] = ACTIONS(2777), - [anon_sym_LT] = ACTIONS(2777), - [anon_sym_TILDE] = ACTIONS(2775), - [anon_sym_void] = ACTIONS(2777), - [anon_sym_delete] = ACTIONS(2777), - [anon_sym_PLUS_PLUS] = ACTIONS(2775), - [anon_sym_DASH_DASH] = ACTIONS(2775), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2775), - [sym_number] = ACTIONS(2775), - [sym_private_property_identifier] = ACTIONS(2775), - [sym_this] = ACTIONS(2777), - [sym_super] = ACTIONS(2777), - [sym_true] = ACTIONS(2777), - [sym_false] = ACTIONS(2777), - [sym_null] = ACTIONS(2777), - [sym_undefined] = ACTIONS(2777), - [anon_sym_AT] = ACTIONS(2775), - [anon_sym_static] = ACTIONS(2777), - [anon_sym_readonly] = ACTIONS(2777), - [anon_sym_get] = ACTIONS(2777), - [anon_sym_set] = ACTIONS(2777), - [anon_sym_declare] = ACTIONS(2777), - [anon_sym_public] = ACTIONS(2777), - [anon_sym_private] = ACTIONS(2777), - [anon_sym_protected] = ACTIONS(2777), - [anon_sym_override] = ACTIONS(2777), - [anon_sym_module] = ACTIONS(2777), - [anon_sym_any] = ACTIONS(2777), - [anon_sym_number] = ACTIONS(2777), - [anon_sym_boolean] = ACTIONS(2777), - [anon_sym_string] = ACTIONS(2777), - [anon_sym_symbol] = ACTIONS(2777), - [anon_sym_object] = ACTIONS(2777), - [anon_sym_abstract] = ACTIONS(2777), - [anon_sym_interface] = ACTIONS(2777), - [anon_sym_enum] = ACTIONS(2777), + [ts_builtin_sym_end] = ACTIONS(2754), + [sym_identifier] = ACTIONS(2756), + [anon_sym_export] = ACTIONS(2756), + [anon_sym_default] = ACTIONS(2756), + [anon_sym_type] = ACTIONS(2756), + [anon_sym_namespace] = ACTIONS(2756), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_RBRACE] = ACTIONS(2754), + [anon_sym_typeof] = ACTIONS(2756), + [anon_sym_import] = ACTIONS(2756), + [anon_sym_with] = ACTIONS(2756), + [anon_sym_var] = ACTIONS(2756), + [anon_sym_let] = ACTIONS(2756), + [anon_sym_const] = ACTIONS(2756), + [anon_sym_BANG] = ACTIONS(2754), + [anon_sym_else] = ACTIONS(2756), + [anon_sym_if] = ACTIONS(2756), + [anon_sym_switch] = ACTIONS(2756), + [anon_sym_for] = ACTIONS(2756), + [anon_sym_LPAREN] = ACTIONS(2754), + [anon_sym_SEMI] = ACTIONS(2754), + [anon_sym_await] = ACTIONS(2756), + [anon_sym_while] = ACTIONS(2756), + [anon_sym_do] = ACTIONS(2756), + [anon_sym_try] = ACTIONS(2756), + [anon_sym_break] = ACTIONS(2756), + [anon_sym_continue] = ACTIONS(2756), + [anon_sym_debugger] = ACTIONS(2756), + [anon_sym_return] = ACTIONS(2756), + [anon_sym_throw] = ACTIONS(2756), + [anon_sym_case] = ACTIONS(2756), + [anon_sym_yield] = ACTIONS(2756), + [anon_sym_LBRACK] = ACTIONS(2754), + [anon_sym_DQUOTE] = ACTIONS(2754), + [anon_sym_SQUOTE] = ACTIONS(2754), + [anon_sym_class] = ACTIONS(2756), + [anon_sym_async] = ACTIONS(2756), + [anon_sym_function] = ACTIONS(2756), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_using] = ACTIONS(2756), + [anon_sym_PLUS] = ACTIONS(2756), + [anon_sym_DASH] = ACTIONS(2756), + [anon_sym_SLASH] = ACTIONS(2756), + [anon_sym_LT] = ACTIONS(2754), + [anon_sym_TILDE] = ACTIONS(2754), + [anon_sym_void] = ACTIONS(2756), + [anon_sym_delete] = ACTIONS(2756), + [anon_sym_PLUS_PLUS] = ACTIONS(2754), + [anon_sym_DASH_DASH] = ACTIONS(2754), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2754), + [sym_number] = ACTIONS(2754), + [sym_private_property_identifier] = ACTIONS(2754), + [sym_this] = ACTIONS(2756), + [sym_super] = ACTIONS(2756), + [sym_true] = ACTIONS(2756), + [sym_false] = ACTIONS(2756), + [sym_null] = ACTIONS(2756), + [sym_undefined] = ACTIONS(2756), + [anon_sym_AT] = ACTIONS(2754), + [anon_sym_static] = ACTIONS(2756), + [anon_sym_readonly] = ACTIONS(2756), + [anon_sym_get] = ACTIONS(2756), + [anon_sym_set] = ACTIONS(2756), + [anon_sym_declare] = ACTIONS(2756), + [anon_sym_public] = ACTIONS(2756), + [anon_sym_private] = ACTIONS(2756), + [anon_sym_protected] = ACTIONS(2756), + [anon_sym_override] = ACTIONS(2756), + [anon_sym_module] = ACTIONS(2756), + [anon_sym_any] = ACTIONS(2756), + [anon_sym_number] = ACTIONS(2756), + [anon_sym_boolean] = ACTIONS(2756), + [anon_sym_string] = ACTIONS(2756), + [anon_sym_symbol] = ACTIONS(2756), + [anon_sym_object] = ACTIONS(2756), + [anon_sym_abstract] = ACTIONS(2756), + [anon_sym_interface] = ACTIONS(2756), + [anon_sym_enum] = ACTIONS(2756), [sym_html_comment] = ACTIONS(5), }, [862] = { - [ts_builtin_sym_end] = ACTIONS(2779), - [sym_identifier] = ACTIONS(2781), - [anon_sym_export] = ACTIONS(2781), - [anon_sym_default] = ACTIONS(2781), - [anon_sym_type] = ACTIONS(2781), - [anon_sym_namespace] = ACTIONS(2781), - [anon_sym_LBRACE] = ACTIONS(2779), - [anon_sym_RBRACE] = ACTIONS(2779), - [anon_sym_typeof] = ACTIONS(2781), - [anon_sym_import] = ACTIONS(2781), - [anon_sym_with] = ACTIONS(2781), - [anon_sym_var] = ACTIONS(2781), - [anon_sym_let] = ACTIONS(2781), - [anon_sym_const] = ACTIONS(2781), - [anon_sym_BANG] = ACTIONS(2779), - [anon_sym_else] = ACTIONS(2781), - [anon_sym_if] = ACTIONS(2781), - [anon_sym_switch] = ACTIONS(2781), - [anon_sym_for] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(2779), - [anon_sym_SEMI] = ACTIONS(2779), - [anon_sym_await] = ACTIONS(2781), - [anon_sym_while] = ACTIONS(2781), - [anon_sym_do] = ACTIONS(2781), - [anon_sym_try] = ACTIONS(2781), - [anon_sym_break] = ACTIONS(2781), - [anon_sym_continue] = ACTIONS(2781), - [anon_sym_debugger] = ACTIONS(2781), - [anon_sym_return] = ACTIONS(2781), - [anon_sym_throw] = ACTIONS(2781), - [anon_sym_case] = ACTIONS(2781), - [anon_sym_yield] = ACTIONS(2781), - [anon_sym_LBRACK] = ACTIONS(2779), - [sym_glimmer_opening_tag] = ACTIONS(2779), - [anon_sym_DQUOTE] = ACTIONS(2779), - [anon_sym_SQUOTE] = ACTIONS(2779), - [anon_sym_class] = ACTIONS(2781), - [anon_sym_async] = ACTIONS(2781), - [anon_sym_function] = ACTIONS(2781), - [anon_sym_new] = ACTIONS(2781), - [anon_sym_using] = ACTIONS(2781), - [anon_sym_PLUS] = ACTIONS(2781), - [anon_sym_DASH] = ACTIONS(2781), - [anon_sym_SLASH] = ACTIONS(2781), - [anon_sym_LT] = ACTIONS(2781), - [anon_sym_TILDE] = ACTIONS(2779), - [anon_sym_void] = ACTIONS(2781), - [anon_sym_delete] = ACTIONS(2781), - [anon_sym_PLUS_PLUS] = ACTIONS(2779), - [anon_sym_DASH_DASH] = ACTIONS(2779), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2779), - [sym_number] = ACTIONS(2779), - [sym_private_property_identifier] = ACTIONS(2779), - [sym_this] = ACTIONS(2781), - [sym_super] = ACTIONS(2781), - [sym_true] = ACTIONS(2781), - [sym_false] = ACTIONS(2781), - [sym_null] = ACTIONS(2781), - [sym_undefined] = ACTIONS(2781), - [anon_sym_AT] = ACTIONS(2779), - [anon_sym_static] = ACTIONS(2781), - [anon_sym_readonly] = ACTIONS(2781), - [anon_sym_get] = ACTIONS(2781), - [anon_sym_set] = ACTIONS(2781), - [anon_sym_declare] = ACTIONS(2781), - [anon_sym_public] = ACTIONS(2781), - [anon_sym_private] = ACTIONS(2781), - [anon_sym_protected] = ACTIONS(2781), - [anon_sym_override] = ACTIONS(2781), - [anon_sym_module] = ACTIONS(2781), - [anon_sym_any] = ACTIONS(2781), - [anon_sym_number] = ACTIONS(2781), - [anon_sym_boolean] = ACTIONS(2781), - [anon_sym_string] = ACTIONS(2781), - [anon_sym_symbol] = ACTIONS(2781), - [anon_sym_object] = ACTIONS(2781), - [anon_sym_abstract] = ACTIONS(2781), - [anon_sym_interface] = ACTIONS(2781), - [anon_sym_enum] = ACTIONS(2781), + [ts_builtin_sym_end] = ACTIONS(2758), + [sym_identifier] = ACTIONS(2760), + [anon_sym_export] = ACTIONS(2760), + [anon_sym_default] = ACTIONS(2760), + [anon_sym_type] = ACTIONS(2760), + [anon_sym_namespace] = ACTIONS(2760), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_RBRACE] = ACTIONS(2758), + [anon_sym_typeof] = ACTIONS(2760), + [anon_sym_import] = ACTIONS(2760), + [anon_sym_with] = ACTIONS(2760), + [anon_sym_var] = ACTIONS(2760), + [anon_sym_let] = ACTIONS(2760), + [anon_sym_const] = ACTIONS(2760), + [anon_sym_BANG] = ACTIONS(2758), + [anon_sym_else] = ACTIONS(2760), + [anon_sym_if] = ACTIONS(2760), + [anon_sym_switch] = ACTIONS(2760), + [anon_sym_for] = ACTIONS(2760), + [anon_sym_LPAREN] = ACTIONS(2758), + [anon_sym_SEMI] = ACTIONS(2758), + [anon_sym_await] = ACTIONS(2760), + [anon_sym_while] = ACTIONS(2760), + [anon_sym_do] = ACTIONS(2760), + [anon_sym_try] = ACTIONS(2760), + [anon_sym_break] = ACTIONS(2760), + [anon_sym_continue] = ACTIONS(2760), + [anon_sym_debugger] = ACTIONS(2760), + [anon_sym_return] = ACTIONS(2760), + [anon_sym_throw] = ACTIONS(2760), + [anon_sym_case] = ACTIONS(2760), + [anon_sym_yield] = ACTIONS(2760), + [anon_sym_LBRACK] = ACTIONS(2758), + [anon_sym_DQUOTE] = ACTIONS(2758), + [anon_sym_SQUOTE] = ACTIONS(2758), + [anon_sym_class] = ACTIONS(2760), + [anon_sym_async] = ACTIONS(2760), + [anon_sym_function] = ACTIONS(2760), + [anon_sym_new] = ACTIONS(2760), + [anon_sym_using] = ACTIONS(2760), + [anon_sym_PLUS] = ACTIONS(2760), + [anon_sym_DASH] = ACTIONS(2760), + [anon_sym_SLASH] = ACTIONS(2760), + [anon_sym_LT] = ACTIONS(2758), + [anon_sym_TILDE] = ACTIONS(2758), + [anon_sym_void] = ACTIONS(2760), + [anon_sym_delete] = ACTIONS(2760), + [anon_sym_PLUS_PLUS] = ACTIONS(2758), + [anon_sym_DASH_DASH] = ACTIONS(2758), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2758), + [sym_number] = ACTIONS(2758), + [sym_private_property_identifier] = ACTIONS(2758), + [sym_this] = ACTIONS(2760), + [sym_super] = ACTIONS(2760), + [sym_true] = ACTIONS(2760), + [sym_false] = ACTIONS(2760), + [sym_null] = ACTIONS(2760), + [sym_undefined] = ACTIONS(2760), + [anon_sym_AT] = ACTIONS(2758), + [anon_sym_static] = ACTIONS(2760), + [anon_sym_readonly] = ACTIONS(2760), + [anon_sym_get] = ACTIONS(2760), + [anon_sym_set] = ACTIONS(2760), + [anon_sym_declare] = ACTIONS(2760), + [anon_sym_public] = ACTIONS(2760), + [anon_sym_private] = ACTIONS(2760), + [anon_sym_protected] = ACTIONS(2760), + [anon_sym_override] = ACTIONS(2760), + [anon_sym_module] = ACTIONS(2760), + [anon_sym_any] = ACTIONS(2760), + [anon_sym_number] = ACTIONS(2760), + [anon_sym_boolean] = ACTIONS(2760), + [anon_sym_string] = ACTIONS(2760), + [anon_sym_symbol] = ACTIONS(2760), + [anon_sym_object] = ACTIONS(2760), + [anon_sym_abstract] = ACTIONS(2760), + [anon_sym_interface] = ACTIONS(2760), + [anon_sym_enum] = ACTIONS(2760), [sym_html_comment] = ACTIONS(5), }, [863] = { - [ts_builtin_sym_end] = ACTIONS(2783), - [sym_identifier] = ACTIONS(2785), - [anon_sym_export] = ACTIONS(2785), - [anon_sym_default] = ACTIONS(2785), - [anon_sym_type] = ACTIONS(2785), - [anon_sym_namespace] = ACTIONS(2785), - [anon_sym_LBRACE] = ACTIONS(2783), - [anon_sym_RBRACE] = ACTIONS(2783), - [anon_sym_typeof] = ACTIONS(2785), - [anon_sym_import] = ACTIONS(2785), - [anon_sym_with] = ACTIONS(2785), - [anon_sym_var] = ACTIONS(2785), - [anon_sym_let] = ACTIONS(2785), - [anon_sym_const] = ACTIONS(2785), - [anon_sym_BANG] = ACTIONS(2783), - [anon_sym_else] = ACTIONS(2785), - [anon_sym_if] = ACTIONS(2785), - [anon_sym_switch] = ACTIONS(2785), - [anon_sym_for] = ACTIONS(2785), - [anon_sym_LPAREN] = ACTIONS(2783), - [anon_sym_SEMI] = ACTIONS(2783), - [anon_sym_await] = ACTIONS(2785), - [anon_sym_while] = ACTIONS(2785), - [anon_sym_do] = ACTIONS(2785), - [anon_sym_try] = ACTIONS(2785), - [anon_sym_break] = ACTIONS(2785), - [anon_sym_continue] = ACTIONS(2785), - [anon_sym_debugger] = ACTIONS(2785), - [anon_sym_return] = ACTIONS(2785), - [anon_sym_throw] = ACTIONS(2785), - [anon_sym_case] = ACTIONS(2785), - [anon_sym_yield] = ACTIONS(2785), - [anon_sym_LBRACK] = ACTIONS(2783), - [sym_glimmer_opening_tag] = ACTIONS(2783), - [anon_sym_DQUOTE] = ACTIONS(2783), - [anon_sym_SQUOTE] = ACTIONS(2783), - [anon_sym_class] = ACTIONS(2785), - [anon_sym_async] = ACTIONS(2785), - [anon_sym_function] = ACTIONS(2785), - [anon_sym_new] = ACTIONS(2785), - [anon_sym_using] = ACTIONS(2785), - [anon_sym_PLUS] = ACTIONS(2785), - [anon_sym_DASH] = ACTIONS(2785), - [anon_sym_SLASH] = ACTIONS(2785), - [anon_sym_LT] = ACTIONS(2785), - [anon_sym_TILDE] = ACTIONS(2783), - [anon_sym_void] = ACTIONS(2785), - [anon_sym_delete] = ACTIONS(2785), - [anon_sym_PLUS_PLUS] = ACTIONS(2783), - [anon_sym_DASH_DASH] = ACTIONS(2783), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2783), - [sym_number] = ACTIONS(2783), - [sym_private_property_identifier] = ACTIONS(2783), - [sym_this] = ACTIONS(2785), - [sym_super] = ACTIONS(2785), - [sym_true] = ACTIONS(2785), - [sym_false] = ACTIONS(2785), - [sym_null] = ACTIONS(2785), - [sym_undefined] = ACTIONS(2785), - [anon_sym_AT] = ACTIONS(2783), - [anon_sym_static] = ACTIONS(2785), - [anon_sym_readonly] = ACTIONS(2785), - [anon_sym_get] = ACTIONS(2785), - [anon_sym_set] = ACTIONS(2785), - [anon_sym_declare] = ACTIONS(2785), - [anon_sym_public] = ACTIONS(2785), - [anon_sym_private] = ACTIONS(2785), - [anon_sym_protected] = ACTIONS(2785), - [anon_sym_override] = ACTIONS(2785), - [anon_sym_module] = ACTIONS(2785), - [anon_sym_any] = ACTIONS(2785), - [anon_sym_number] = ACTIONS(2785), - [anon_sym_boolean] = ACTIONS(2785), - [anon_sym_string] = ACTIONS(2785), - [anon_sym_symbol] = ACTIONS(2785), - [anon_sym_object] = ACTIONS(2785), - [anon_sym_abstract] = ACTIONS(2785), - [anon_sym_interface] = ACTIONS(2785), - [anon_sym_enum] = ACTIONS(2785), + [ts_builtin_sym_end] = ACTIONS(2762), + [sym_identifier] = ACTIONS(2764), + [anon_sym_export] = ACTIONS(2764), + [anon_sym_default] = ACTIONS(2764), + [anon_sym_type] = ACTIONS(2764), + [anon_sym_namespace] = ACTIONS(2764), + [anon_sym_LBRACE] = ACTIONS(2762), + [anon_sym_RBRACE] = ACTIONS(2762), + [anon_sym_typeof] = ACTIONS(2764), + [anon_sym_import] = ACTIONS(2764), + [anon_sym_with] = ACTIONS(2764), + [anon_sym_var] = ACTIONS(2764), + [anon_sym_let] = ACTIONS(2764), + [anon_sym_const] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2764), + [anon_sym_if] = ACTIONS(2764), + [anon_sym_switch] = ACTIONS(2764), + [anon_sym_for] = ACTIONS(2764), + [anon_sym_LPAREN] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2762), + [anon_sym_await] = ACTIONS(2764), + [anon_sym_while] = ACTIONS(2764), + [anon_sym_do] = ACTIONS(2764), + [anon_sym_try] = ACTIONS(2764), + [anon_sym_break] = ACTIONS(2764), + [anon_sym_continue] = ACTIONS(2764), + [anon_sym_debugger] = ACTIONS(2764), + [anon_sym_return] = ACTIONS(2764), + [anon_sym_throw] = ACTIONS(2764), + [anon_sym_case] = ACTIONS(2764), + [anon_sym_yield] = ACTIONS(2764), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_DQUOTE] = ACTIONS(2762), + [anon_sym_SQUOTE] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2764), + [anon_sym_async] = ACTIONS(2764), + [anon_sym_function] = ACTIONS(2764), + [anon_sym_new] = ACTIONS(2764), + [anon_sym_using] = ACTIONS(2764), + [anon_sym_PLUS] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2764), + [anon_sym_SLASH] = ACTIONS(2764), + [anon_sym_LT] = ACTIONS(2762), + [anon_sym_TILDE] = ACTIONS(2762), + [anon_sym_void] = ACTIONS(2764), + [anon_sym_delete] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2762), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2762), + [sym_number] = ACTIONS(2762), + [sym_private_property_identifier] = ACTIONS(2762), + [sym_this] = ACTIONS(2764), + [sym_super] = ACTIONS(2764), + [sym_true] = ACTIONS(2764), + [sym_false] = ACTIONS(2764), + [sym_null] = ACTIONS(2764), + [sym_undefined] = ACTIONS(2764), + [anon_sym_AT] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2764), + [anon_sym_readonly] = ACTIONS(2764), + [anon_sym_get] = ACTIONS(2764), + [anon_sym_set] = ACTIONS(2764), + [anon_sym_declare] = ACTIONS(2764), + [anon_sym_public] = ACTIONS(2764), + [anon_sym_private] = ACTIONS(2764), + [anon_sym_protected] = ACTIONS(2764), + [anon_sym_override] = ACTIONS(2764), + [anon_sym_module] = ACTIONS(2764), + [anon_sym_any] = ACTIONS(2764), + [anon_sym_number] = ACTIONS(2764), + [anon_sym_boolean] = ACTIONS(2764), + [anon_sym_string] = ACTIONS(2764), + [anon_sym_symbol] = ACTIONS(2764), + [anon_sym_object] = ACTIONS(2764), + [anon_sym_abstract] = ACTIONS(2764), + [anon_sym_interface] = ACTIONS(2764), + [anon_sym_enum] = ACTIONS(2764), [sym_html_comment] = ACTIONS(5), }, [864] = { - [ts_builtin_sym_end] = ACTIONS(2787), - [sym_identifier] = ACTIONS(2789), - [anon_sym_export] = ACTIONS(2789), - [anon_sym_default] = ACTIONS(2789), - [anon_sym_type] = ACTIONS(2789), - [anon_sym_namespace] = ACTIONS(2789), - [anon_sym_LBRACE] = ACTIONS(2787), - [anon_sym_RBRACE] = ACTIONS(2787), - [anon_sym_typeof] = ACTIONS(2789), - [anon_sym_import] = ACTIONS(2789), - [anon_sym_with] = ACTIONS(2789), - [anon_sym_var] = ACTIONS(2789), - [anon_sym_let] = ACTIONS(2789), - [anon_sym_const] = ACTIONS(2789), - [anon_sym_BANG] = ACTIONS(2787), - [anon_sym_else] = ACTIONS(2789), - [anon_sym_if] = ACTIONS(2789), - [anon_sym_switch] = ACTIONS(2789), - [anon_sym_for] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2787), - [anon_sym_SEMI] = ACTIONS(2787), - [anon_sym_await] = ACTIONS(2789), - [anon_sym_while] = ACTIONS(2789), - [anon_sym_do] = ACTIONS(2789), - [anon_sym_try] = ACTIONS(2789), - [anon_sym_break] = ACTIONS(2789), - [anon_sym_continue] = ACTIONS(2789), - [anon_sym_debugger] = ACTIONS(2789), - [anon_sym_return] = ACTIONS(2789), - [anon_sym_throw] = ACTIONS(2789), - [anon_sym_case] = ACTIONS(2789), - [anon_sym_yield] = ACTIONS(2789), - [anon_sym_LBRACK] = ACTIONS(2787), - [sym_glimmer_opening_tag] = ACTIONS(2787), - [anon_sym_DQUOTE] = ACTIONS(2787), - [anon_sym_SQUOTE] = ACTIONS(2787), - [anon_sym_class] = ACTIONS(2789), - [anon_sym_async] = ACTIONS(2789), - [anon_sym_function] = ACTIONS(2789), - [anon_sym_new] = ACTIONS(2789), - [anon_sym_using] = ACTIONS(2789), - [anon_sym_PLUS] = ACTIONS(2789), - [anon_sym_DASH] = ACTIONS(2789), - [anon_sym_SLASH] = ACTIONS(2789), - [anon_sym_LT] = ACTIONS(2789), - [anon_sym_TILDE] = ACTIONS(2787), - [anon_sym_void] = ACTIONS(2789), - [anon_sym_delete] = ACTIONS(2789), - [anon_sym_PLUS_PLUS] = ACTIONS(2787), - [anon_sym_DASH_DASH] = ACTIONS(2787), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2787), - [sym_number] = ACTIONS(2787), - [sym_private_property_identifier] = ACTIONS(2787), - [sym_this] = ACTIONS(2789), - [sym_super] = ACTIONS(2789), - [sym_true] = ACTIONS(2789), - [sym_false] = ACTIONS(2789), - [sym_null] = ACTIONS(2789), - [sym_undefined] = ACTIONS(2789), - [anon_sym_AT] = ACTIONS(2787), - [anon_sym_static] = ACTIONS(2789), - [anon_sym_readonly] = ACTIONS(2789), - [anon_sym_get] = ACTIONS(2789), - [anon_sym_set] = ACTIONS(2789), - [anon_sym_declare] = ACTIONS(2789), - [anon_sym_public] = ACTIONS(2789), - [anon_sym_private] = ACTIONS(2789), - [anon_sym_protected] = ACTIONS(2789), - [anon_sym_override] = ACTIONS(2789), - [anon_sym_module] = ACTIONS(2789), - [anon_sym_any] = ACTIONS(2789), - [anon_sym_number] = ACTIONS(2789), - [anon_sym_boolean] = ACTIONS(2789), - [anon_sym_string] = ACTIONS(2789), - [anon_sym_symbol] = ACTIONS(2789), - [anon_sym_object] = ACTIONS(2789), - [anon_sym_abstract] = ACTIONS(2789), - [anon_sym_interface] = ACTIONS(2789), - [anon_sym_enum] = ACTIONS(2789), + [sym_import] = STATE(4786), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5658), + [sym_rest_pattern] = STATE(5415), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3263), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3806), + [sym_tuple_parameter] = STATE(5460), + [sym_optional_tuple_parameter] = STATE(5460), + [sym_optional_type] = STATE(5460), + [sym_rest_type] = STATE(5460), + [sym__tuple_type_member] = STATE(5460), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5559), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(2468), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(2766), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2474), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [865] = { - [ts_builtin_sym_end] = ACTIONS(2791), - [sym_identifier] = ACTIONS(2793), - [anon_sym_export] = ACTIONS(2793), - [anon_sym_default] = ACTIONS(2793), - [anon_sym_type] = ACTIONS(2793), - [anon_sym_namespace] = ACTIONS(2793), - [anon_sym_LBRACE] = ACTIONS(2791), - [anon_sym_RBRACE] = ACTIONS(2791), - [anon_sym_typeof] = ACTIONS(2793), - [anon_sym_import] = ACTIONS(2793), - [anon_sym_with] = ACTIONS(2793), - [anon_sym_var] = ACTIONS(2793), - [anon_sym_let] = ACTIONS(2793), - [anon_sym_const] = ACTIONS(2793), - [anon_sym_BANG] = ACTIONS(2791), - [anon_sym_else] = ACTIONS(2793), - [anon_sym_if] = ACTIONS(2793), - [anon_sym_switch] = ACTIONS(2793), - [anon_sym_for] = ACTIONS(2793), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_SEMI] = ACTIONS(2791), - [anon_sym_await] = ACTIONS(2793), - [anon_sym_while] = ACTIONS(2793), - [anon_sym_do] = ACTIONS(2793), - [anon_sym_try] = ACTIONS(2793), - [anon_sym_break] = ACTIONS(2793), - [anon_sym_continue] = ACTIONS(2793), - [anon_sym_debugger] = ACTIONS(2793), - [anon_sym_return] = ACTIONS(2793), - [anon_sym_throw] = ACTIONS(2793), - [anon_sym_case] = ACTIONS(2793), - [anon_sym_yield] = ACTIONS(2793), - [anon_sym_LBRACK] = ACTIONS(2791), - [sym_glimmer_opening_tag] = ACTIONS(2791), - [anon_sym_DQUOTE] = ACTIONS(2791), - [anon_sym_SQUOTE] = ACTIONS(2791), - [anon_sym_class] = ACTIONS(2793), - [anon_sym_async] = ACTIONS(2793), - [anon_sym_function] = ACTIONS(2793), - [anon_sym_new] = ACTIONS(2793), - [anon_sym_using] = ACTIONS(2793), - [anon_sym_PLUS] = ACTIONS(2793), - [anon_sym_DASH] = ACTIONS(2793), - [anon_sym_SLASH] = ACTIONS(2793), - [anon_sym_LT] = ACTIONS(2793), - [anon_sym_TILDE] = ACTIONS(2791), - [anon_sym_void] = ACTIONS(2793), - [anon_sym_delete] = ACTIONS(2793), - [anon_sym_PLUS_PLUS] = ACTIONS(2791), - [anon_sym_DASH_DASH] = ACTIONS(2791), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2791), - [sym_number] = ACTIONS(2791), - [sym_private_property_identifier] = ACTIONS(2791), - [sym_this] = ACTIONS(2793), - [sym_super] = ACTIONS(2793), - [sym_true] = ACTIONS(2793), - [sym_false] = ACTIONS(2793), - [sym_null] = ACTIONS(2793), - [sym_undefined] = ACTIONS(2793), - [anon_sym_AT] = ACTIONS(2791), - [anon_sym_static] = ACTIONS(2793), - [anon_sym_readonly] = ACTIONS(2793), - [anon_sym_get] = ACTIONS(2793), - [anon_sym_set] = ACTIONS(2793), - [anon_sym_declare] = ACTIONS(2793), - [anon_sym_public] = ACTIONS(2793), - [anon_sym_private] = ACTIONS(2793), - [anon_sym_protected] = ACTIONS(2793), - [anon_sym_override] = ACTIONS(2793), - [anon_sym_module] = ACTIONS(2793), - [anon_sym_any] = ACTIONS(2793), - [anon_sym_number] = ACTIONS(2793), - [anon_sym_boolean] = ACTIONS(2793), - [anon_sym_string] = ACTIONS(2793), - [anon_sym_symbol] = ACTIONS(2793), - [anon_sym_object] = ACTIONS(2793), - [anon_sym_abstract] = ACTIONS(2793), - [anon_sym_interface] = ACTIONS(2793), - [anon_sym_enum] = ACTIONS(2793), + [ts_builtin_sym_end] = ACTIONS(2768), + [sym_identifier] = ACTIONS(2770), + [anon_sym_export] = ACTIONS(2770), + [anon_sym_default] = ACTIONS(2770), + [anon_sym_type] = ACTIONS(2770), + [anon_sym_namespace] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_RBRACE] = ACTIONS(2768), + [anon_sym_typeof] = ACTIONS(2770), + [anon_sym_import] = ACTIONS(2770), + [anon_sym_with] = ACTIONS(2770), + [anon_sym_var] = ACTIONS(2770), + [anon_sym_let] = ACTIONS(2770), + [anon_sym_const] = ACTIONS(2770), + [anon_sym_BANG] = ACTIONS(2768), + [anon_sym_else] = ACTIONS(2770), + [anon_sym_if] = ACTIONS(2770), + [anon_sym_switch] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_SEMI] = ACTIONS(2768), + [anon_sym_await] = ACTIONS(2770), + [anon_sym_while] = ACTIONS(2770), + [anon_sym_do] = ACTIONS(2770), + [anon_sym_try] = ACTIONS(2770), + [anon_sym_break] = ACTIONS(2770), + [anon_sym_continue] = ACTIONS(2770), + [anon_sym_debugger] = ACTIONS(2770), + [anon_sym_return] = ACTIONS(2770), + [anon_sym_throw] = ACTIONS(2770), + [anon_sym_case] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2770), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_SQUOTE] = ACTIONS(2768), + [anon_sym_class] = ACTIONS(2770), + [anon_sym_async] = ACTIONS(2770), + [anon_sym_function] = ACTIONS(2770), + [anon_sym_new] = ACTIONS(2770), + [anon_sym_using] = ACTIONS(2770), + [anon_sym_PLUS] = ACTIONS(2770), + [anon_sym_DASH] = ACTIONS(2770), + [anon_sym_SLASH] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2768), + [anon_sym_TILDE] = ACTIONS(2768), + [anon_sym_void] = ACTIONS(2770), + [anon_sym_delete] = ACTIONS(2770), + [anon_sym_PLUS_PLUS] = ACTIONS(2768), + [anon_sym_DASH_DASH] = ACTIONS(2768), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2768), + [sym_number] = ACTIONS(2768), + [sym_private_property_identifier] = ACTIONS(2768), + [sym_this] = ACTIONS(2770), + [sym_super] = ACTIONS(2770), + [sym_true] = ACTIONS(2770), + [sym_false] = ACTIONS(2770), + [sym_null] = ACTIONS(2770), + [sym_undefined] = ACTIONS(2770), + [anon_sym_AT] = ACTIONS(2768), + [anon_sym_static] = ACTIONS(2770), + [anon_sym_readonly] = ACTIONS(2770), + [anon_sym_get] = ACTIONS(2770), + [anon_sym_set] = ACTIONS(2770), + [anon_sym_declare] = ACTIONS(2770), + [anon_sym_public] = ACTIONS(2770), + [anon_sym_private] = ACTIONS(2770), + [anon_sym_protected] = ACTIONS(2770), + [anon_sym_override] = ACTIONS(2770), + [anon_sym_module] = ACTIONS(2770), + [anon_sym_any] = ACTIONS(2770), + [anon_sym_number] = ACTIONS(2770), + [anon_sym_boolean] = ACTIONS(2770), + [anon_sym_string] = ACTIONS(2770), + [anon_sym_symbol] = ACTIONS(2770), + [anon_sym_object] = ACTIONS(2770), + [anon_sym_abstract] = ACTIONS(2770), + [anon_sym_interface] = ACTIONS(2770), + [anon_sym_enum] = ACTIONS(2770), [sym_html_comment] = ACTIONS(5), }, [866] = { - [ts_builtin_sym_end] = ACTIONS(2795), - [sym_identifier] = ACTIONS(2797), - [anon_sym_export] = ACTIONS(2797), - [anon_sym_default] = ACTIONS(2797), - [anon_sym_type] = ACTIONS(2797), - [anon_sym_namespace] = ACTIONS(2797), - [anon_sym_LBRACE] = ACTIONS(2795), - [anon_sym_RBRACE] = ACTIONS(2795), - [anon_sym_typeof] = ACTIONS(2797), - [anon_sym_import] = ACTIONS(2797), - [anon_sym_with] = ACTIONS(2797), - [anon_sym_var] = ACTIONS(2797), - [anon_sym_let] = ACTIONS(2797), - [anon_sym_const] = ACTIONS(2797), - [anon_sym_BANG] = ACTIONS(2795), - [anon_sym_else] = ACTIONS(2797), - [anon_sym_if] = ACTIONS(2797), - [anon_sym_switch] = ACTIONS(2797), - [anon_sym_for] = ACTIONS(2797), - [anon_sym_LPAREN] = ACTIONS(2795), - [anon_sym_SEMI] = ACTIONS(2795), - [anon_sym_await] = ACTIONS(2797), - [anon_sym_while] = ACTIONS(2797), - [anon_sym_do] = ACTIONS(2797), - [anon_sym_try] = ACTIONS(2797), - [anon_sym_break] = ACTIONS(2797), - [anon_sym_continue] = ACTIONS(2797), - [anon_sym_debugger] = ACTIONS(2797), - [anon_sym_return] = ACTIONS(2797), - [anon_sym_throw] = ACTIONS(2797), - [anon_sym_case] = ACTIONS(2797), - [anon_sym_yield] = ACTIONS(2797), - [anon_sym_LBRACK] = ACTIONS(2795), - [sym_glimmer_opening_tag] = ACTIONS(2795), - [anon_sym_DQUOTE] = ACTIONS(2795), - [anon_sym_SQUOTE] = ACTIONS(2795), - [anon_sym_class] = ACTIONS(2797), - [anon_sym_async] = ACTIONS(2797), - [anon_sym_function] = ACTIONS(2797), - [anon_sym_new] = ACTIONS(2797), - [anon_sym_using] = ACTIONS(2797), - [anon_sym_PLUS] = ACTIONS(2797), - [anon_sym_DASH] = ACTIONS(2797), - [anon_sym_SLASH] = ACTIONS(2797), - [anon_sym_LT] = ACTIONS(2797), - [anon_sym_TILDE] = ACTIONS(2795), - [anon_sym_void] = ACTIONS(2797), - [anon_sym_delete] = ACTIONS(2797), - [anon_sym_PLUS_PLUS] = ACTIONS(2795), - [anon_sym_DASH_DASH] = ACTIONS(2795), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2795), - [sym_number] = ACTIONS(2795), - [sym_private_property_identifier] = ACTIONS(2795), - [sym_this] = ACTIONS(2797), - [sym_super] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [sym_null] = ACTIONS(2797), - [sym_undefined] = ACTIONS(2797), - [anon_sym_AT] = ACTIONS(2795), - [anon_sym_static] = ACTIONS(2797), - [anon_sym_readonly] = ACTIONS(2797), - [anon_sym_get] = ACTIONS(2797), - [anon_sym_set] = ACTIONS(2797), - [anon_sym_declare] = ACTIONS(2797), - [anon_sym_public] = ACTIONS(2797), - [anon_sym_private] = ACTIONS(2797), - [anon_sym_protected] = ACTIONS(2797), - [anon_sym_override] = ACTIONS(2797), - [anon_sym_module] = ACTIONS(2797), - [anon_sym_any] = ACTIONS(2797), - [anon_sym_number] = ACTIONS(2797), - [anon_sym_boolean] = ACTIONS(2797), - [anon_sym_string] = ACTIONS(2797), - [anon_sym_symbol] = ACTIONS(2797), - [anon_sym_object] = ACTIONS(2797), - [anon_sym_abstract] = ACTIONS(2797), - [anon_sym_interface] = ACTIONS(2797), - [anon_sym_enum] = ACTIONS(2797), + [ts_builtin_sym_end] = ACTIONS(2772), + [sym_identifier] = ACTIONS(2774), + [anon_sym_export] = ACTIONS(2774), + [anon_sym_default] = ACTIONS(2774), + [anon_sym_type] = ACTIONS(2774), + [anon_sym_namespace] = ACTIONS(2774), + [anon_sym_LBRACE] = ACTIONS(2772), + [anon_sym_RBRACE] = ACTIONS(2772), + [anon_sym_typeof] = ACTIONS(2774), + [anon_sym_import] = ACTIONS(2774), + [anon_sym_with] = ACTIONS(2774), + [anon_sym_var] = ACTIONS(2774), + [anon_sym_let] = ACTIONS(2774), + [anon_sym_const] = ACTIONS(2774), + [anon_sym_BANG] = ACTIONS(2772), + [anon_sym_else] = ACTIONS(2774), + [anon_sym_if] = ACTIONS(2774), + [anon_sym_switch] = ACTIONS(2774), + [anon_sym_for] = ACTIONS(2774), + [anon_sym_LPAREN] = ACTIONS(2772), + [anon_sym_SEMI] = ACTIONS(2772), + [anon_sym_await] = ACTIONS(2774), + [anon_sym_while] = ACTIONS(2774), + [anon_sym_do] = ACTIONS(2774), + [anon_sym_try] = ACTIONS(2774), + [anon_sym_break] = ACTIONS(2774), + [anon_sym_continue] = ACTIONS(2774), + [anon_sym_debugger] = ACTIONS(2774), + [anon_sym_return] = ACTIONS(2774), + [anon_sym_throw] = ACTIONS(2774), + [anon_sym_case] = ACTIONS(2774), + [anon_sym_yield] = ACTIONS(2774), + [anon_sym_LBRACK] = ACTIONS(2772), + [anon_sym_DQUOTE] = ACTIONS(2772), + [anon_sym_SQUOTE] = ACTIONS(2772), + [anon_sym_class] = ACTIONS(2774), + [anon_sym_async] = ACTIONS(2774), + [anon_sym_function] = ACTIONS(2774), + [anon_sym_new] = ACTIONS(2774), + [anon_sym_using] = ACTIONS(2774), + [anon_sym_PLUS] = ACTIONS(2774), + [anon_sym_DASH] = ACTIONS(2774), + [anon_sym_SLASH] = ACTIONS(2774), + [anon_sym_LT] = ACTIONS(2772), + [anon_sym_TILDE] = ACTIONS(2772), + [anon_sym_void] = ACTIONS(2774), + [anon_sym_delete] = ACTIONS(2774), + [anon_sym_PLUS_PLUS] = ACTIONS(2772), + [anon_sym_DASH_DASH] = ACTIONS(2772), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2772), + [sym_number] = ACTIONS(2772), + [sym_private_property_identifier] = ACTIONS(2772), + [sym_this] = ACTIONS(2774), + [sym_super] = ACTIONS(2774), + [sym_true] = ACTIONS(2774), + [sym_false] = ACTIONS(2774), + [sym_null] = ACTIONS(2774), + [sym_undefined] = ACTIONS(2774), + [anon_sym_AT] = ACTIONS(2772), + [anon_sym_static] = ACTIONS(2774), + [anon_sym_readonly] = ACTIONS(2774), + [anon_sym_get] = ACTIONS(2774), + [anon_sym_set] = ACTIONS(2774), + [anon_sym_declare] = ACTIONS(2774), + [anon_sym_public] = ACTIONS(2774), + [anon_sym_private] = ACTIONS(2774), + [anon_sym_protected] = ACTIONS(2774), + [anon_sym_override] = ACTIONS(2774), + [anon_sym_module] = ACTIONS(2774), + [anon_sym_any] = ACTIONS(2774), + [anon_sym_number] = ACTIONS(2774), + [anon_sym_boolean] = ACTIONS(2774), + [anon_sym_string] = ACTIONS(2774), + [anon_sym_symbol] = ACTIONS(2774), + [anon_sym_object] = ACTIONS(2774), + [anon_sym_abstract] = ACTIONS(2774), + [anon_sym_interface] = ACTIONS(2774), + [anon_sym_enum] = ACTIONS(2774), [sym_html_comment] = ACTIONS(5), }, [867] = { - [ts_builtin_sym_end] = ACTIONS(2799), - [sym_identifier] = ACTIONS(2801), - [anon_sym_export] = ACTIONS(2801), - [anon_sym_default] = ACTIONS(2801), - [anon_sym_type] = ACTIONS(2801), - [anon_sym_namespace] = ACTIONS(2801), - [anon_sym_LBRACE] = ACTIONS(2799), - [anon_sym_RBRACE] = ACTIONS(2799), - [anon_sym_typeof] = ACTIONS(2801), - [anon_sym_import] = ACTIONS(2801), - [anon_sym_with] = ACTIONS(2801), - [anon_sym_var] = ACTIONS(2801), - [anon_sym_let] = ACTIONS(2801), - [anon_sym_const] = ACTIONS(2801), - [anon_sym_BANG] = ACTIONS(2799), - [anon_sym_else] = ACTIONS(2801), - [anon_sym_if] = ACTIONS(2801), - [anon_sym_switch] = ACTIONS(2801), - [anon_sym_for] = ACTIONS(2801), - [anon_sym_LPAREN] = ACTIONS(2799), - [anon_sym_SEMI] = ACTIONS(2799), - [anon_sym_await] = ACTIONS(2801), - [anon_sym_while] = ACTIONS(2801), - [anon_sym_do] = ACTIONS(2801), - [anon_sym_try] = ACTIONS(2801), - [anon_sym_break] = ACTIONS(2801), - [anon_sym_continue] = ACTIONS(2801), - [anon_sym_debugger] = ACTIONS(2801), - [anon_sym_return] = ACTIONS(2801), - [anon_sym_throw] = ACTIONS(2801), - [anon_sym_case] = ACTIONS(2801), - [anon_sym_yield] = ACTIONS(2801), - [anon_sym_LBRACK] = ACTIONS(2799), - [sym_glimmer_opening_tag] = ACTIONS(2799), - [anon_sym_DQUOTE] = ACTIONS(2799), - [anon_sym_SQUOTE] = ACTIONS(2799), - [anon_sym_class] = ACTIONS(2801), - [anon_sym_async] = ACTIONS(2801), - [anon_sym_function] = ACTIONS(2801), - [anon_sym_new] = ACTIONS(2801), - [anon_sym_using] = ACTIONS(2801), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_SLASH] = ACTIONS(2801), - [anon_sym_LT] = ACTIONS(2801), - [anon_sym_TILDE] = ACTIONS(2799), - [anon_sym_void] = ACTIONS(2801), - [anon_sym_delete] = ACTIONS(2801), - [anon_sym_PLUS_PLUS] = ACTIONS(2799), - [anon_sym_DASH_DASH] = ACTIONS(2799), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2799), - [sym_number] = ACTIONS(2799), - [sym_private_property_identifier] = ACTIONS(2799), - [sym_this] = ACTIONS(2801), - [sym_super] = ACTIONS(2801), - [sym_true] = ACTIONS(2801), - [sym_false] = ACTIONS(2801), - [sym_null] = ACTIONS(2801), - [sym_undefined] = ACTIONS(2801), - [anon_sym_AT] = ACTIONS(2799), - [anon_sym_static] = ACTIONS(2801), - [anon_sym_readonly] = ACTIONS(2801), - [anon_sym_get] = ACTIONS(2801), - [anon_sym_set] = ACTIONS(2801), - [anon_sym_declare] = ACTIONS(2801), - [anon_sym_public] = ACTIONS(2801), - [anon_sym_private] = ACTIONS(2801), - [anon_sym_protected] = ACTIONS(2801), - [anon_sym_override] = ACTIONS(2801), - [anon_sym_module] = ACTIONS(2801), - [anon_sym_any] = ACTIONS(2801), - [anon_sym_number] = ACTIONS(2801), - [anon_sym_boolean] = ACTIONS(2801), - [anon_sym_string] = ACTIONS(2801), - [anon_sym_symbol] = ACTIONS(2801), - [anon_sym_object] = ACTIONS(2801), - [anon_sym_abstract] = ACTIONS(2801), - [anon_sym_interface] = ACTIONS(2801), - [anon_sym_enum] = ACTIONS(2801), + [ts_builtin_sym_end] = ACTIONS(2776), + [sym_identifier] = ACTIONS(2778), + [anon_sym_export] = ACTIONS(2778), + [anon_sym_default] = ACTIONS(2778), + [anon_sym_type] = ACTIONS(2778), + [anon_sym_namespace] = ACTIONS(2778), + [anon_sym_LBRACE] = ACTIONS(2776), + [anon_sym_RBRACE] = ACTIONS(2776), + [anon_sym_typeof] = ACTIONS(2778), + [anon_sym_import] = ACTIONS(2778), + [anon_sym_with] = ACTIONS(2778), + [anon_sym_var] = ACTIONS(2778), + [anon_sym_let] = ACTIONS(2778), + [anon_sym_const] = ACTIONS(2778), + [anon_sym_BANG] = ACTIONS(2776), + [anon_sym_else] = ACTIONS(2778), + [anon_sym_if] = ACTIONS(2778), + [anon_sym_switch] = ACTIONS(2778), + [anon_sym_for] = ACTIONS(2778), + [anon_sym_LPAREN] = ACTIONS(2776), + [anon_sym_SEMI] = ACTIONS(2776), + [anon_sym_await] = ACTIONS(2778), + [anon_sym_while] = ACTIONS(2778), + [anon_sym_do] = ACTIONS(2778), + [anon_sym_try] = ACTIONS(2778), + [anon_sym_break] = ACTIONS(2778), + [anon_sym_continue] = ACTIONS(2778), + [anon_sym_debugger] = ACTIONS(2778), + [anon_sym_return] = ACTIONS(2778), + [anon_sym_throw] = ACTIONS(2778), + [anon_sym_case] = ACTIONS(2778), + [anon_sym_yield] = ACTIONS(2778), + [anon_sym_LBRACK] = ACTIONS(2776), + [anon_sym_DQUOTE] = ACTIONS(2776), + [anon_sym_SQUOTE] = ACTIONS(2776), + [anon_sym_class] = ACTIONS(2778), + [anon_sym_async] = ACTIONS(2778), + [anon_sym_function] = ACTIONS(2778), + [anon_sym_new] = ACTIONS(2778), + [anon_sym_using] = ACTIONS(2778), + [anon_sym_PLUS] = ACTIONS(2778), + [anon_sym_DASH] = ACTIONS(2778), + [anon_sym_SLASH] = ACTIONS(2778), + [anon_sym_LT] = ACTIONS(2776), + [anon_sym_TILDE] = ACTIONS(2776), + [anon_sym_void] = ACTIONS(2778), + [anon_sym_delete] = ACTIONS(2778), + [anon_sym_PLUS_PLUS] = ACTIONS(2776), + [anon_sym_DASH_DASH] = ACTIONS(2776), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2776), + [sym_number] = ACTIONS(2776), + [sym_private_property_identifier] = ACTIONS(2776), + [sym_this] = ACTIONS(2778), + [sym_super] = ACTIONS(2778), + [sym_true] = ACTIONS(2778), + [sym_false] = ACTIONS(2778), + [sym_null] = ACTIONS(2778), + [sym_undefined] = ACTIONS(2778), + [anon_sym_AT] = ACTIONS(2776), + [anon_sym_static] = ACTIONS(2778), + [anon_sym_readonly] = ACTIONS(2778), + [anon_sym_get] = ACTIONS(2778), + [anon_sym_set] = ACTIONS(2778), + [anon_sym_declare] = ACTIONS(2778), + [anon_sym_public] = ACTIONS(2778), + [anon_sym_private] = ACTIONS(2778), + [anon_sym_protected] = ACTIONS(2778), + [anon_sym_override] = ACTIONS(2778), + [anon_sym_module] = ACTIONS(2778), + [anon_sym_any] = ACTIONS(2778), + [anon_sym_number] = ACTIONS(2778), + [anon_sym_boolean] = ACTIONS(2778), + [anon_sym_string] = ACTIONS(2778), + [anon_sym_symbol] = ACTIONS(2778), + [anon_sym_object] = ACTIONS(2778), + [anon_sym_abstract] = ACTIONS(2778), + [anon_sym_interface] = ACTIONS(2778), + [anon_sym_enum] = ACTIONS(2778), [sym_html_comment] = ACTIONS(5), }, [868] = { - [ts_builtin_sym_end] = ACTIONS(2799), - [sym_identifier] = ACTIONS(2801), - [anon_sym_export] = ACTIONS(2801), - [anon_sym_default] = ACTIONS(2801), - [anon_sym_type] = ACTIONS(2801), - [anon_sym_namespace] = ACTIONS(2801), - [anon_sym_LBRACE] = ACTIONS(2799), - [anon_sym_RBRACE] = ACTIONS(2799), - [anon_sym_typeof] = ACTIONS(2801), - [anon_sym_import] = ACTIONS(2801), - [anon_sym_with] = ACTIONS(2801), - [anon_sym_var] = ACTIONS(2801), - [anon_sym_let] = ACTIONS(2801), - [anon_sym_const] = ACTIONS(2801), - [anon_sym_BANG] = ACTIONS(2799), - [anon_sym_else] = ACTIONS(2801), - [anon_sym_if] = ACTIONS(2801), - [anon_sym_switch] = ACTIONS(2801), - [anon_sym_for] = ACTIONS(2801), - [anon_sym_LPAREN] = ACTIONS(2799), - [anon_sym_SEMI] = ACTIONS(2799), - [anon_sym_await] = ACTIONS(2801), - [anon_sym_while] = ACTIONS(2801), - [anon_sym_do] = ACTIONS(2801), - [anon_sym_try] = ACTIONS(2801), - [anon_sym_break] = ACTIONS(2801), - [anon_sym_continue] = ACTIONS(2801), - [anon_sym_debugger] = ACTIONS(2801), - [anon_sym_return] = ACTIONS(2801), - [anon_sym_throw] = ACTIONS(2801), - [anon_sym_case] = ACTIONS(2801), - [anon_sym_yield] = ACTIONS(2801), - [anon_sym_LBRACK] = ACTIONS(2799), - [sym_glimmer_opening_tag] = ACTIONS(2799), - [anon_sym_DQUOTE] = ACTIONS(2799), - [anon_sym_SQUOTE] = ACTIONS(2799), - [anon_sym_class] = ACTIONS(2801), - [anon_sym_async] = ACTIONS(2801), - [anon_sym_function] = ACTIONS(2801), - [anon_sym_new] = ACTIONS(2801), - [anon_sym_using] = ACTIONS(2801), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_SLASH] = ACTIONS(2801), - [anon_sym_LT] = ACTIONS(2801), - [anon_sym_TILDE] = ACTIONS(2799), - [anon_sym_void] = ACTIONS(2801), - [anon_sym_delete] = ACTIONS(2801), - [anon_sym_PLUS_PLUS] = ACTIONS(2799), - [anon_sym_DASH_DASH] = ACTIONS(2799), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2799), - [sym_number] = ACTIONS(2799), - [sym_private_property_identifier] = ACTIONS(2799), - [sym_this] = ACTIONS(2801), - [sym_super] = ACTIONS(2801), - [sym_true] = ACTIONS(2801), - [sym_false] = ACTIONS(2801), - [sym_null] = ACTIONS(2801), - [sym_undefined] = ACTIONS(2801), - [anon_sym_AT] = ACTIONS(2799), - [anon_sym_static] = ACTIONS(2801), - [anon_sym_readonly] = ACTIONS(2801), - [anon_sym_get] = ACTIONS(2801), - [anon_sym_set] = ACTIONS(2801), - [anon_sym_declare] = ACTIONS(2801), - [anon_sym_public] = ACTIONS(2801), - [anon_sym_private] = ACTIONS(2801), - [anon_sym_protected] = ACTIONS(2801), - [anon_sym_override] = ACTIONS(2801), - [anon_sym_module] = ACTIONS(2801), - [anon_sym_any] = ACTIONS(2801), - [anon_sym_number] = ACTIONS(2801), - [anon_sym_boolean] = ACTIONS(2801), - [anon_sym_string] = ACTIONS(2801), - [anon_sym_symbol] = ACTIONS(2801), - [anon_sym_object] = ACTIONS(2801), - [anon_sym_abstract] = ACTIONS(2801), - [anon_sym_interface] = ACTIONS(2801), - [anon_sym_enum] = ACTIONS(2801), + [ts_builtin_sym_end] = ACTIONS(2780), + [sym_identifier] = ACTIONS(2782), + [anon_sym_export] = ACTIONS(2782), + [anon_sym_default] = ACTIONS(2782), + [anon_sym_type] = ACTIONS(2782), + [anon_sym_namespace] = ACTIONS(2782), + [anon_sym_LBRACE] = ACTIONS(2780), + [anon_sym_RBRACE] = ACTIONS(2780), + [anon_sym_typeof] = ACTIONS(2782), + [anon_sym_import] = ACTIONS(2782), + [anon_sym_with] = ACTIONS(2782), + [anon_sym_var] = ACTIONS(2782), + [anon_sym_let] = ACTIONS(2782), + [anon_sym_const] = ACTIONS(2782), + [anon_sym_BANG] = ACTIONS(2780), + [anon_sym_else] = ACTIONS(2782), + [anon_sym_if] = ACTIONS(2782), + [anon_sym_switch] = ACTIONS(2782), + [anon_sym_for] = ACTIONS(2782), + [anon_sym_LPAREN] = ACTIONS(2780), + [anon_sym_SEMI] = ACTIONS(2780), + [anon_sym_await] = ACTIONS(2782), + [anon_sym_while] = ACTIONS(2782), + [anon_sym_do] = ACTIONS(2782), + [anon_sym_try] = ACTIONS(2782), + [anon_sym_break] = ACTIONS(2782), + [anon_sym_continue] = ACTIONS(2782), + [anon_sym_debugger] = ACTIONS(2782), + [anon_sym_return] = ACTIONS(2782), + [anon_sym_throw] = ACTIONS(2782), + [anon_sym_case] = ACTIONS(2782), + [anon_sym_yield] = ACTIONS(2782), + [anon_sym_LBRACK] = ACTIONS(2780), + [anon_sym_DQUOTE] = ACTIONS(2780), + [anon_sym_SQUOTE] = ACTIONS(2780), + [anon_sym_class] = ACTIONS(2782), + [anon_sym_async] = ACTIONS(2782), + [anon_sym_function] = ACTIONS(2782), + [anon_sym_new] = ACTIONS(2782), + [anon_sym_using] = ACTIONS(2782), + [anon_sym_PLUS] = ACTIONS(2782), + [anon_sym_DASH] = ACTIONS(2782), + [anon_sym_SLASH] = ACTIONS(2782), + [anon_sym_LT] = ACTIONS(2780), + [anon_sym_TILDE] = ACTIONS(2780), + [anon_sym_void] = ACTIONS(2782), + [anon_sym_delete] = ACTIONS(2782), + [anon_sym_PLUS_PLUS] = ACTIONS(2780), + [anon_sym_DASH_DASH] = ACTIONS(2780), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2780), + [sym_number] = ACTIONS(2780), + [sym_private_property_identifier] = ACTIONS(2780), + [sym_this] = ACTIONS(2782), + [sym_super] = ACTIONS(2782), + [sym_true] = ACTIONS(2782), + [sym_false] = ACTIONS(2782), + [sym_null] = ACTIONS(2782), + [sym_undefined] = ACTIONS(2782), + [anon_sym_AT] = ACTIONS(2780), + [anon_sym_static] = ACTIONS(2782), + [anon_sym_readonly] = ACTIONS(2782), + [anon_sym_get] = ACTIONS(2782), + [anon_sym_set] = ACTIONS(2782), + [anon_sym_declare] = ACTIONS(2782), + [anon_sym_public] = ACTIONS(2782), + [anon_sym_private] = ACTIONS(2782), + [anon_sym_protected] = ACTIONS(2782), + [anon_sym_override] = ACTIONS(2782), + [anon_sym_module] = ACTIONS(2782), + [anon_sym_any] = ACTIONS(2782), + [anon_sym_number] = ACTIONS(2782), + [anon_sym_boolean] = ACTIONS(2782), + [anon_sym_string] = ACTIONS(2782), + [anon_sym_symbol] = ACTIONS(2782), + [anon_sym_object] = ACTIONS(2782), + [anon_sym_abstract] = ACTIONS(2782), + [anon_sym_interface] = ACTIONS(2782), + [anon_sym_enum] = ACTIONS(2782), [sym_html_comment] = ACTIONS(5), }, [869] = { - [ts_builtin_sym_end] = ACTIONS(1909), - [sym_identifier] = ACTIONS(1911), - [anon_sym_export] = ACTIONS(1911), - [anon_sym_default] = ACTIONS(1911), - [anon_sym_type] = ACTIONS(1911), - [anon_sym_namespace] = ACTIONS(1911), - [anon_sym_LBRACE] = ACTIONS(1909), - [anon_sym_RBRACE] = ACTIONS(1909), - [anon_sym_typeof] = ACTIONS(1911), - [anon_sym_import] = ACTIONS(1911), - [anon_sym_with] = ACTIONS(1911), - [anon_sym_var] = ACTIONS(1911), - [anon_sym_let] = ACTIONS(1911), - [anon_sym_const] = ACTIONS(1911), - [anon_sym_BANG] = ACTIONS(1909), - [anon_sym_else] = ACTIONS(1911), - [anon_sym_if] = ACTIONS(1911), - [anon_sym_switch] = ACTIONS(1911), - [anon_sym_for] = ACTIONS(1911), - [anon_sym_LPAREN] = ACTIONS(1909), - [anon_sym_SEMI] = ACTIONS(1909), - [anon_sym_await] = ACTIONS(1911), - [anon_sym_while] = ACTIONS(1911), - [anon_sym_do] = ACTIONS(1911), - [anon_sym_try] = ACTIONS(1911), - [anon_sym_break] = ACTIONS(1911), - [anon_sym_continue] = ACTIONS(1911), - [anon_sym_debugger] = ACTIONS(1911), - [anon_sym_return] = ACTIONS(1911), - [anon_sym_throw] = ACTIONS(1911), - [anon_sym_case] = ACTIONS(1911), - [anon_sym_yield] = ACTIONS(1911), - [anon_sym_LBRACK] = ACTIONS(1909), - [sym_glimmer_opening_tag] = ACTIONS(1909), - [anon_sym_DQUOTE] = ACTIONS(1909), - [anon_sym_SQUOTE] = ACTIONS(1909), - [anon_sym_class] = ACTIONS(1911), - [anon_sym_async] = ACTIONS(1911), - [anon_sym_function] = ACTIONS(1911), - [anon_sym_new] = ACTIONS(1911), - [anon_sym_using] = ACTIONS(1911), - [anon_sym_PLUS] = ACTIONS(1911), - [anon_sym_DASH] = ACTIONS(1911), - [anon_sym_SLASH] = ACTIONS(1911), - [anon_sym_LT] = ACTIONS(1911), - [anon_sym_TILDE] = ACTIONS(1909), - [anon_sym_void] = ACTIONS(1911), - [anon_sym_delete] = ACTIONS(1911), - [anon_sym_PLUS_PLUS] = ACTIONS(1909), - [anon_sym_DASH_DASH] = ACTIONS(1909), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1909), - [sym_number] = ACTIONS(1909), - [sym_private_property_identifier] = ACTIONS(1909), - [sym_this] = ACTIONS(1911), - [sym_super] = ACTIONS(1911), - [sym_true] = ACTIONS(1911), - [sym_false] = ACTIONS(1911), - [sym_null] = ACTIONS(1911), - [sym_undefined] = ACTIONS(1911), - [anon_sym_AT] = ACTIONS(1909), - [anon_sym_static] = ACTIONS(1911), - [anon_sym_readonly] = ACTIONS(1911), - [anon_sym_get] = ACTIONS(1911), - [anon_sym_set] = ACTIONS(1911), - [anon_sym_declare] = ACTIONS(1911), - [anon_sym_public] = ACTIONS(1911), - [anon_sym_private] = ACTIONS(1911), - [anon_sym_protected] = ACTIONS(1911), - [anon_sym_override] = ACTIONS(1911), - [anon_sym_module] = ACTIONS(1911), - [anon_sym_any] = ACTIONS(1911), - [anon_sym_number] = ACTIONS(1911), - [anon_sym_boolean] = ACTIONS(1911), - [anon_sym_string] = ACTIONS(1911), - [anon_sym_symbol] = ACTIONS(1911), - [anon_sym_object] = ACTIONS(1911), - [anon_sym_abstract] = ACTIONS(1911), - [anon_sym_interface] = ACTIONS(1911), - [anon_sym_enum] = ACTIONS(1911), + [ts_builtin_sym_end] = ACTIONS(2784), + [sym_identifier] = ACTIONS(2786), + [anon_sym_export] = ACTIONS(2786), + [anon_sym_default] = ACTIONS(2786), + [anon_sym_type] = ACTIONS(2786), + [anon_sym_namespace] = ACTIONS(2786), + [anon_sym_LBRACE] = ACTIONS(2784), + [anon_sym_RBRACE] = ACTIONS(2784), + [anon_sym_typeof] = ACTIONS(2786), + [anon_sym_import] = ACTIONS(2786), + [anon_sym_with] = ACTIONS(2786), + [anon_sym_var] = ACTIONS(2786), + [anon_sym_let] = ACTIONS(2786), + [anon_sym_const] = ACTIONS(2786), + [anon_sym_BANG] = ACTIONS(2784), + [anon_sym_else] = ACTIONS(2786), + [anon_sym_if] = ACTIONS(2786), + [anon_sym_switch] = ACTIONS(2786), + [anon_sym_for] = ACTIONS(2786), + [anon_sym_LPAREN] = ACTIONS(2784), + [anon_sym_SEMI] = ACTIONS(2784), + [anon_sym_await] = ACTIONS(2786), + [anon_sym_while] = ACTIONS(2786), + [anon_sym_do] = ACTIONS(2786), + [anon_sym_try] = ACTIONS(2786), + [anon_sym_break] = ACTIONS(2786), + [anon_sym_continue] = ACTIONS(2786), + [anon_sym_debugger] = ACTIONS(2786), + [anon_sym_return] = ACTIONS(2786), + [anon_sym_throw] = ACTIONS(2786), + [anon_sym_case] = ACTIONS(2786), + [anon_sym_yield] = ACTIONS(2786), + [anon_sym_LBRACK] = ACTIONS(2784), + [anon_sym_DQUOTE] = ACTIONS(2784), + [anon_sym_SQUOTE] = ACTIONS(2784), + [anon_sym_class] = ACTIONS(2786), + [anon_sym_async] = ACTIONS(2786), + [anon_sym_function] = ACTIONS(2786), + [anon_sym_new] = ACTIONS(2786), + [anon_sym_using] = ACTIONS(2786), + [anon_sym_PLUS] = ACTIONS(2786), + [anon_sym_DASH] = ACTIONS(2786), + [anon_sym_SLASH] = ACTIONS(2786), + [anon_sym_LT] = ACTIONS(2784), + [anon_sym_TILDE] = ACTIONS(2784), + [anon_sym_void] = ACTIONS(2786), + [anon_sym_delete] = ACTIONS(2786), + [anon_sym_PLUS_PLUS] = ACTIONS(2784), + [anon_sym_DASH_DASH] = ACTIONS(2784), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2784), + [sym_number] = ACTIONS(2784), + [sym_private_property_identifier] = ACTIONS(2784), + [sym_this] = ACTIONS(2786), + [sym_super] = ACTIONS(2786), + [sym_true] = ACTIONS(2786), + [sym_false] = ACTIONS(2786), + [sym_null] = ACTIONS(2786), + [sym_undefined] = ACTIONS(2786), + [anon_sym_AT] = ACTIONS(2784), + [anon_sym_static] = ACTIONS(2786), + [anon_sym_readonly] = ACTIONS(2786), + [anon_sym_get] = ACTIONS(2786), + [anon_sym_set] = ACTIONS(2786), + [anon_sym_declare] = ACTIONS(2786), + [anon_sym_public] = ACTIONS(2786), + [anon_sym_private] = ACTIONS(2786), + [anon_sym_protected] = ACTIONS(2786), + [anon_sym_override] = ACTIONS(2786), + [anon_sym_module] = ACTIONS(2786), + [anon_sym_any] = ACTIONS(2786), + [anon_sym_number] = ACTIONS(2786), + [anon_sym_boolean] = ACTIONS(2786), + [anon_sym_string] = ACTIONS(2786), + [anon_sym_symbol] = ACTIONS(2786), + [anon_sym_object] = ACTIONS(2786), + [anon_sym_abstract] = ACTIONS(2786), + [anon_sym_interface] = ACTIONS(2786), + [anon_sym_enum] = ACTIONS(2786), [sym_html_comment] = ACTIONS(5), }, [870] = { - [ts_builtin_sym_end] = ACTIONS(2803), - [sym_identifier] = ACTIONS(2805), - [anon_sym_export] = ACTIONS(2805), - [anon_sym_default] = ACTIONS(2805), - [anon_sym_type] = ACTIONS(2805), - [anon_sym_namespace] = ACTIONS(2805), - [anon_sym_LBRACE] = ACTIONS(2803), - [anon_sym_RBRACE] = ACTIONS(2803), - [anon_sym_typeof] = ACTIONS(2805), - [anon_sym_import] = ACTIONS(2805), - [anon_sym_with] = ACTIONS(2805), - [anon_sym_var] = ACTIONS(2805), - [anon_sym_let] = ACTIONS(2805), - [anon_sym_const] = ACTIONS(2805), - [anon_sym_BANG] = ACTIONS(2803), - [anon_sym_else] = ACTIONS(2805), - [anon_sym_if] = ACTIONS(2805), - [anon_sym_switch] = ACTIONS(2805), - [anon_sym_for] = ACTIONS(2805), - [anon_sym_LPAREN] = ACTIONS(2803), - [anon_sym_SEMI] = ACTIONS(2803), - [anon_sym_await] = ACTIONS(2805), - [anon_sym_while] = ACTIONS(2805), - [anon_sym_do] = ACTIONS(2805), - [anon_sym_try] = ACTIONS(2805), - [anon_sym_break] = ACTIONS(2805), - [anon_sym_continue] = ACTIONS(2805), - [anon_sym_debugger] = ACTIONS(2805), - [anon_sym_return] = ACTIONS(2805), - [anon_sym_throw] = ACTIONS(2805), - [anon_sym_case] = ACTIONS(2805), - [anon_sym_yield] = ACTIONS(2805), - [anon_sym_LBRACK] = ACTIONS(2803), - [sym_glimmer_opening_tag] = ACTIONS(2803), - [anon_sym_DQUOTE] = ACTIONS(2803), - [anon_sym_SQUOTE] = ACTIONS(2803), - [anon_sym_class] = ACTIONS(2805), - [anon_sym_async] = ACTIONS(2805), - [anon_sym_function] = ACTIONS(2805), - [anon_sym_new] = ACTIONS(2805), - [anon_sym_using] = ACTIONS(2805), - [anon_sym_PLUS] = ACTIONS(2805), - [anon_sym_DASH] = ACTIONS(2805), - [anon_sym_SLASH] = ACTIONS(2805), - [anon_sym_LT] = ACTIONS(2805), - [anon_sym_TILDE] = ACTIONS(2803), - [anon_sym_void] = ACTIONS(2805), - [anon_sym_delete] = ACTIONS(2805), - [anon_sym_PLUS_PLUS] = ACTIONS(2803), - [anon_sym_DASH_DASH] = ACTIONS(2803), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2803), - [sym_number] = ACTIONS(2803), - [sym_private_property_identifier] = ACTIONS(2803), - [sym_this] = ACTIONS(2805), - [sym_super] = ACTIONS(2805), - [sym_true] = ACTIONS(2805), - [sym_false] = ACTIONS(2805), - [sym_null] = ACTIONS(2805), - [sym_undefined] = ACTIONS(2805), - [anon_sym_AT] = ACTIONS(2803), - [anon_sym_static] = ACTIONS(2805), - [anon_sym_readonly] = ACTIONS(2805), - [anon_sym_get] = ACTIONS(2805), - [anon_sym_set] = ACTIONS(2805), - [anon_sym_declare] = ACTIONS(2805), - [anon_sym_public] = ACTIONS(2805), - [anon_sym_private] = ACTIONS(2805), - [anon_sym_protected] = ACTIONS(2805), - [anon_sym_override] = ACTIONS(2805), - [anon_sym_module] = ACTIONS(2805), - [anon_sym_any] = ACTIONS(2805), - [anon_sym_number] = ACTIONS(2805), - [anon_sym_boolean] = ACTIONS(2805), - [anon_sym_string] = ACTIONS(2805), - [anon_sym_symbol] = ACTIONS(2805), - [anon_sym_object] = ACTIONS(2805), - [anon_sym_abstract] = ACTIONS(2805), - [anon_sym_interface] = ACTIONS(2805), - [anon_sym_enum] = ACTIONS(2805), + [ts_builtin_sym_end] = ACTIONS(2788), + [sym_identifier] = ACTIONS(2790), + [anon_sym_export] = ACTIONS(2790), + [anon_sym_default] = ACTIONS(2790), + [anon_sym_type] = ACTIONS(2790), + [anon_sym_namespace] = ACTIONS(2790), + [anon_sym_LBRACE] = ACTIONS(2788), + [anon_sym_RBRACE] = ACTIONS(2788), + [anon_sym_typeof] = ACTIONS(2790), + [anon_sym_import] = ACTIONS(2790), + [anon_sym_with] = ACTIONS(2790), + [anon_sym_var] = ACTIONS(2790), + [anon_sym_let] = ACTIONS(2790), + [anon_sym_const] = ACTIONS(2790), + [anon_sym_BANG] = ACTIONS(2788), + [anon_sym_else] = ACTIONS(2790), + [anon_sym_if] = ACTIONS(2790), + [anon_sym_switch] = ACTIONS(2790), + [anon_sym_for] = ACTIONS(2790), + [anon_sym_LPAREN] = ACTIONS(2788), + [anon_sym_SEMI] = ACTIONS(2788), + [anon_sym_await] = ACTIONS(2790), + [anon_sym_while] = ACTIONS(2790), + [anon_sym_do] = ACTIONS(2790), + [anon_sym_try] = ACTIONS(2790), + [anon_sym_break] = ACTIONS(2790), + [anon_sym_continue] = ACTIONS(2790), + [anon_sym_debugger] = ACTIONS(2790), + [anon_sym_return] = ACTIONS(2790), + [anon_sym_throw] = ACTIONS(2790), + [anon_sym_case] = ACTIONS(2790), + [anon_sym_yield] = ACTIONS(2790), + [anon_sym_LBRACK] = ACTIONS(2788), + [anon_sym_DQUOTE] = ACTIONS(2788), + [anon_sym_SQUOTE] = ACTIONS(2788), + [anon_sym_class] = ACTIONS(2790), + [anon_sym_async] = ACTIONS(2790), + [anon_sym_function] = ACTIONS(2790), + [anon_sym_new] = ACTIONS(2790), + [anon_sym_using] = ACTIONS(2790), + [anon_sym_PLUS] = ACTIONS(2790), + [anon_sym_DASH] = ACTIONS(2790), + [anon_sym_SLASH] = ACTIONS(2790), + [anon_sym_LT] = ACTIONS(2788), + [anon_sym_TILDE] = ACTIONS(2788), + [anon_sym_void] = ACTIONS(2790), + [anon_sym_delete] = ACTIONS(2790), + [anon_sym_PLUS_PLUS] = ACTIONS(2788), + [anon_sym_DASH_DASH] = ACTIONS(2788), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2788), + [sym_number] = ACTIONS(2788), + [sym_private_property_identifier] = ACTIONS(2788), + [sym_this] = ACTIONS(2790), + [sym_super] = ACTIONS(2790), + [sym_true] = ACTIONS(2790), + [sym_false] = ACTIONS(2790), + [sym_null] = ACTIONS(2790), + [sym_undefined] = ACTIONS(2790), + [anon_sym_AT] = ACTIONS(2788), + [anon_sym_static] = ACTIONS(2790), + [anon_sym_readonly] = ACTIONS(2790), + [anon_sym_get] = ACTIONS(2790), + [anon_sym_set] = ACTIONS(2790), + [anon_sym_declare] = ACTIONS(2790), + [anon_sym_public] = ACTIONS(2790), + [anon_sym_private] = ACTIONS(2790), + [anon_sym_protected] = ACTIONS(2790), + [anon_sym_override] = ACTIONS(2790), + [anon_sym_module] = ACTIONS(2790), + [anon_sym_any] = ACTIONS(2790), + [anon_sym_number] = ACTIONS(2790), + [anon_sym_boolean] = ACTIONS(2790), + [anon_sym_string] = ACTIONS(2790), + [anon_sym_symbol] = ACTIONS(2790), + [anon_sym_object] = ACTIONS(2790), + [anon_sym_abstract] = ACTIONS(2790), + [anon_sym_interface] = ACTIONS(2790), + [anon_sym_enum] = ACTIONS(2790), [sym_html_comment] = ACTIONS(5), }, [871] = { - [ts_builtin_sym_end] = ACTIONS(2807), - [sym_identifier] = ACTIONS(2809), - [anon_sym_export] = ACTIONS(2809), - [anon_sym_default] = ACTIONS(2809), - [anon_sym_type] = ACTIONS(2809), - [anon_sym_namespace] = ACTIONS(2809), - [anon_sym_LBRACE] = ACTIONS(2807), - [anon_sym_RBRACE] = ACTIONS(2807), - [anon_sym_typeof] = ACTIONS(2809), - [anon_sym_import] = ACTIONS(2809), - [anon_sym_with] = ACTIONS(2809), - [anon_sym_var] = ACTIONS(2809), - [anon_sym_let] = ACTIONS(2809), - [anon_sym_const] = ACTIONS(2809), - [anon_sym_BANG] = ACTIONS(2807), - [anon_sym_else] = ACTIONS(2809), - [anon_sym_if] = ACTIONS(2809), - [anon_sym_switch] = ACTIONS(2809), - [anon_sym_for] = ACTIONS(2809), - [anon_sym_LPAREN] = ACTIONS(2807), - [anon_sym_SEMI] = ACTIONS(2807), - [anon_sym_await] = ACTIONS(2809), - [anon_sym_while] = ACTIONS(2809), - [anon_sym_do] = ACTIONS(2809), - [anon_sym_try] = ACTIONS(2809), - [anon_sym_break] = ACTIONS(2809), - [anon_sym_continue] = ACTIONS(2809), - [anon_sym_debugger] = ACTIONS(2809), - [anon_sym_return] = ACTIONS(2809), - [anon_sym_throw] = ACTIONS(2809), - [anon_sym_case] = ACTIONS(2809), - [anon_sym_yield] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(2807), - [sym_glimmer_opening_tag] = ACTIONS(2807), - [anon_sym_DQUOTE] = ACTIONS(2807), - [anon_sym_SQUOTE] = ACTIONS(2807), - [anon_sym_class] = ACTIONS(2809), - [anon_sym_async] = ACTIONS(2809), - [anon_sym_function] = ACTIONS(2809), - [anon_sym_new] = ACTIONS(2809), - [anon_sym_using] = ACTIONS(2809), - [anon_sym_PLUS] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2809), - [anon_sym_SLASH] = ACTIONS(2809), - [anon_sym_LT] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2807), - [anon_sym_void] = ACTIONS(2809), - [anon_sym_delete] = ACTIONS(2809), - [anon_sym_PLUS_PLUS] = ACTIONS(2807), - [anon_sym_DASH_DASH] = ACTIONS(2807), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2807), - [sym_number] = ACTIONS(2807), - [sym_private_property_identifier] = ACTIONS(2807), - [sym_this] = ACTIONS(2809), - [sym_super] = ACTIONS(2809), - [sym_true] = ACTIONS(2809), - [sym_false] = ACTIONS(2809), - [sym_null] = ACTIONS(2809), - [sym_undefined] = ACTIONS(2809), - [anon_sym_AT] = ACTIONS(2807), - [anon_sym_static] = ACTIONS(2809), - [anon_sym_readonly] = ACTIONS(2809), - [anon_sym_get] = ACTIONS(2809), - [anon_sym_set] = ACTIONS(2809), - [anon_sym_declare] = ACTIONS(2809), - [anon_sym_public] = ACTIONS(2809), - [anon_sym_private] = ACTIONS(2809), - [anon_sym_protected] = ACTIONS(2809), - [anon_sym_override] = ACTIONS(2809), - [anon_sym_module] = ACTIONS(2809), - [anon_sym_any] = ACTIONS(2809), - [anon_sym_number] = ACTIONS(2809), - [anon_sym_boolean] = ACTIONS(2809), - [anon_sym_string] = ACTIONS(2809), - [anon_sym_symbol] = ACTIONS(2809), - [anon_sym_object] = ACTIONS(2809), - [anon_sym_abstract] = ACTIONS(2809), - [anon_sym_interface] = ACTIONS(2809), - [anon_sym_enum] = ACTIONS(2809), + [ts_builtin_sym_end] = ACTIONS(2792), + [sym_identifier] = ACTIONS(2794), + [anon_sym_export] = ACTIONS(2794), + [anon_sym_default] = ACTIONS(2794), + [anon_sym_type] = ACTIONS(2794), + [anon_sym_namespace] = ACTIONS(2794), + [anon_sym_LBRACE] = ACTIONS(2792), + [anon_sym_RBRACE] = ACTIONS(2792), + [anon_sym_typeof] = ACTIONS(2794), + [anon_sym_import] = ACTIONS(2794), + [anon_sym_with] = ACTIONS(2794), + [anon_sym_var] = ACTIONS(2794), + [anon_sym_let] = ACTIONS(2794), + [anon_sym_const] = ACTIONS(2794), + [anon_sym_BANG] = ACTIONS(2792), + [anon_sym_else] = ACTIONS(2794), + [anon_sym_if] = ACTIONS(2794), + [anon_sym_switch] = ACTIONS(2794), + [anon_sym_for] = ACTIONS(2794), + [anon_sym_LPAREN] = ACTIONS(2792), + [anon_sym_SEMI] = ACTIONS(2792), + [anon_sym_await] = ACTIONS(2794), + [anon_sym_while] = ACTIONS(2794), + [anon_sym_do] = ACTIONS(2794), + [anon_sym_try] = ACTIONS(2794), + [anon_sym_break] = ACTIONS(2794), + [anon_sym_continue] = ACTIONS(2794), + [anon_sym_debugger] = ACTIONS(2794), + [anon_sym_return] = ACTIONS(2794), + [anon_sym_throw] = ACTIONS(2794), + [anon_sym_case] = ACTIONS(2794), + [anon_sym_yield] = ACTIONS(2794), + [anon_sym_LBRACK] = ACTIONS(2792), + [anon_sym_DQUOTE] = ACTIONS(2792), + [anon_sym_SQUOTE] = ACTIONS(2792), + [anon_sym_class] = ACTIONS(2794), + [anon_sym_async] = ACTIONS(2794), + [anon_sym_function] = ACTIONS(2794), + [anon_sym_new] = ACTIONS(2794), + [anon_sym_using] = ACTIONS(2794), + [anon_sym_PLUS] = ACTIONS(2794), + [anon_sym_DASH] = ACTIONS(2794), + [anon_sym_SLASH] = ACTIONS(2794), + [anon_sym_LT] = ACTIONS(2792), + [anon_sym_TILDE] = ACTIONS(2792), + [anon_sym_void] = ACTIONS(2794), + [anon_sym_delete] = ACTIONS(2794), + [anon_sym_PLUS_PLUS] = ACTIONS(2792), + [anon_sym_DASH_DASH] = ACTIONS(2792), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2792), + [sym_number] = ACTIONS(2792), + [sym_private_property_identifier] = ACTIONS(2792), + [sym_this] = ACTIONS(2794), + [sym_super] = ACTIONS(2794), + [sym_true] = ACTIONS(2794), + [sym_false] = ACTIONS(2794), + [sym_null] = ACTIONS(2794), + [sym_undefined] = ACTIONS(2794), + [anon_sym_AT] = ACTIONS(2792), + [anon_sym_static] = ACTIONS(2794), + [anon_sym_readonly] = ACTIONS(2794), + [anon_sym_get] = ACTIONS(2794), + [anon_sym_set] = ACTIONS(2794), + [anon_sym_declare] = ACTIONS(2794), + [anon_sym_public] = ACTIONS(2794), + [anon_sym_private] = ACTIONS(2794), + [anon_sym_protected] = ACTIONS(2794), + [anon_sym_override] = ACTIONS(2794), + [anon_sym_module] = ACTIONS(2794), + [anon_sym_any] = ACTIONS(2794), + [anon_sym_number] = ACTIONS(2794), + [anon_sym_boolean] = ACTIONS(2794), + [anon_sym_string] = ACTIONS(2794), + [anon_sym_symbol] = ACTIONS(2794), + [anon_sym_object] = ACTIONS(2794), + [anon_sym_abstract] = ACTIONS(2794), + [anon_sym_interface] = ACTIONS(2794), + [anon_sym_enum] = ACTIONS(2794), [sym_html_comment] = ACTIONS(5), }, [872] = { - [ts_builtin_sym_end] = ACTIONS(2811), - [sym_identifier] = ACTIONS(2813), - [anon_sym_export] = ACTIONS(2813), - [anon_sym_default] = ACTIONS(2813), - [anon_sym_type] = ACTIONS(2813), - [anon_sym_namespace] = ACTIONS(2813), - [anon_sym_LBRACE] = ACTIONS(2811), - [anon_sym_RBRACE] = ACTIONS(2811), - [anon_sym_typeof] = ACTIONS(2813), - [anon_sym_import] = ACTIONS(2813), - [anon_sym_with] = ACTIONS(2813), - [anon_sym_var] = ACTIONS(2813), - [anon_sym_let] = ACTIONS(2813), - [anon_sym_const] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(2811), - [anon_sym_else] = ACTIONS(2813), - [anon_sym_if] = ACTIONS(2813), - [anon_sym_switch] = ACTIONS(2813), - [anon_sym_for] = ACTIONS(2813), - [anon_sym_LPAREN] = ACTIONS(2811), - [anon_sym_SEMI] = ACTIONS(2811), - [anon_sym_await] = ACTIONS(2813), - [anon_sym_while] = ACTIONS(2813), - [anon_sym_do] = ACTIONS(2813), - [anon_sym_try] = ACTIONS(2813), - [anon_sym_break] = ACTIONS(2813), - [anon_sym_continue] = ACTIONS(2813), - [anon_sym_debugger] = ACTIONS(2813), - [anon_sym_return] = ACTIONS(2813), - [anon_sym_throw] = ACTIONS(2813), - [anon_sym_case] = ACTIONS(2813), - [anon_sym_yield] = ACTIONS(2813), - [anon_sym_LBRACK] = ACTIONS(2811), - [sym_glimmer_opening_tag] = ACTIONS(2811), - [anon_sym_DQUOTE] = ACTIONS(2811), - [anon_sym_SQUOTE] = ACTIONS(2811), - [anon_sym_class] = ACTIONS(2813), - [anon_sym_async] = ACTIONS(2813), - [anon_sym_function] = ACTIONS(2813), - [anon_sym_new] = ACTIONS(2813), - [anon_sym_using] = ACTIONS(2813), - [anon_sym_PLUS] = ACTIONS(2813), - [anon_sym_DASH] = ACTIONS(2813), - [anon_sym_SLASH] = ACTIONS(2813), - [anon_sym_LT] = ACTIONS(2813), - [anon_sym_TILDE] = ACTIONS(2811), - [anon_sym_void] = ACTIONS(2813), - [anon_sym_delete] = ACTIONS(2813), - [anon_sym_PLUS_PLUS] = ACTIONS(2811), - [anon_sym_DASH_DASH] = ACTIONS(2811), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2811), - [sym_number] = ACTIONS(2811), - [sym_private_property_identifier] = ACTIONS(2811), - [sym_this] = ACTIONS(2813), - [sym_super] = ACTIONS(2813), - [sym_true] = ACTIONS(2813), - [sym_false] = ACTIONS(2813), - [sym_null] = ACTIONS(2813), - [sym_undefined] = ACTIONS(2813), - [anon_sym_AT] = ACTIONS(2811), - [anon_sym_static] = ACTIONS(2813), - [anon_sym_readonly] = ACTIONS(2813), - [anon_sym_get] = ACTIONS(2813), - [anon_sym_set] = ACTIONS(2813), - [anon_sym_declare] = ACTIONS(2813), - [anon_sym_public] = ACTIONS(2813), - [anon_sym_private] = ACTIONS(2813), - [anon_sym_protected] = ACTIONS(2813), - [anon_sym_override] = ACTIONS(2813), - [anon_sym_module] = ACTIONS(2813), - [anon_sym_any] = ACTIONS(2813), - [anon_sym_number] = ACTIONS(2813), - [anon_sym_boolean] = ACTIONS(2813), - [anon_sym_string] = ACTIONS(2813), - [anon_sym_symbol] = ACTIONS(2813), - [anon_sym_object] = ACTIONS(2813), - [anon_sym_abstract] = ACTIONS(2813), - [anon_sym_interface] = ACTIONS(2813), - [anon_sym_enum] = ACTIONS(2813), + [ts_builtin_sym_end] = ACTIONS(2796), + [sym_identifier] = ACTIONS(2798), + [anon_sym_export] = ACTIONS(2798), + [anon_sym_default] = ACTIONS(2798), + [anon_sym_type] = ACTIONS(2798), + [anon_sym_namespace] = ACTIONS(2798), + [anon_sym_LBRACE] = ACTIONS(2796), + [anon_sym_RBRACE] = ACTIONS(2796), + [anon_sym_typeof] = ACTIONS(2798), + [anon_sym_import] = ACTIONS(2798), + [anon_sym_with] = ACTIONS(2798), + [anon_sym_var] = ACTIONS(2798), + [anon_sym_let] = ACTIONS(2798), + [anon_sym_const] = ACTIONS(2798), + [anon_sym_BANG] = ACTIONS(2796), + [anon_sym_else] = ACTIONS(2798), + [anon_sym_if] = ACTIONS(2798), + [anon_sym_switch] = ACTIONS(2798), + [anon_sym_for] = ACTIONS(2798), + [anon_sym_LPAREN] = ACTIONS(2796), + [anon_sym_SEMI] = ACTIONS(2796), + [anon_sym_await] = ACTIONS(2798), + [anon_sym_while] = ACTIONS(2798), + [anon_sym_do] = ACTIONS(2798), + [anon_sym_try] = ACTIONS(2798), + [anon_sym_break] = ACTIONS(2798), + [anon_sym_continue] = ACTIONS(2798), + [anon_sym_debugger] = ACTIONS(2798), + [anon_sym_return] = ACTIONS(2798), + [anon_sym_throw] = ACTIONS(2798), + [anon_sym_case] = ACTIONS(2798), + [anon_sym_yield] = ACTIONS(2798), + [anon_sym_LBRACK] = ACTIONS(2796), + [anon_sym_DQUOTE] = ACTIONS(2796), + [anon_sym_SQUOTE] = ACTIONS(2796), + [anon_sym_class] = ACTIONS(2798), + [anon_sym_async] = ACTIONS(2798), + [anon_sym_function] = ACTIONS(2798), + [anon_sym_new] = ACTIONS(2798), + [anon_sym_using] = ACTIONS(2798), + [anon_sym_PLUS] = ACTIONS(2798), + [anon_sym_DASH] = ACTIONS(2798), + [anon_sym_SLASH] = ACTIONS(2798), + [anon_sym_LT] = ACTIONS(2796), + [anon_sym_TILDE] = ACTIONS(2796), + [anon_sym_void] = ACTIONS(2798), + [anon_sym_delete] = ACTIONS(2798), + [anon_sym_PLUS_PLUS] = ACTIONS(2796), + [anon_sym_DASH_DASH] = ACTIONS(2796), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2796), + [sym_number] = ACTIONS(2796), + [sym_private_property_identifier] = ACTIONS(2796), + [sym_this] = ACTIONS(2798), + [sym_super] = ACTIONS(2798), + [sym_true] = ACTIONS(2798), + [sym_false] = ACTIONS(2798), + [sym_null] = ACTIONS(2798), + [sym_undefined] = ACTIONS(2798), + [anon_sym_AT] = ACTIONS(2796), + [anon_sym_static] = ACTIONS(2798), + [anon_sym_readonly] = ACTIONS(2798), + [anon_sym_get] = ACTIONS(2798), + [anon_sym_set] = ACTIONS(2798), + [anon_sym_declare] = ACTIONS(2798), + [anon_sym_public] = ACTIONS(2798), + [anon_sym_private] = ACTIONS(2798), + [anon_sym_protected] = ACTIONS(2798), + [anon_sym_override] = ACTIONS(2798), + [anon_sym_module] = ACTIONS(2798), + [anon_sym_any] = ACTIONS(2798), + [anon_sym_number] = ACTIONS(2798), + [anon_sym_boolean] = ACTIONS(2798), + [anon_sym_string] = ACTIONS(2798), + [anon_sym_symbol] = ACTIONS(2798), + [anon_sym_object] = ACTIONS(2798), + [anon_sym_abstract] = ACTIONS(2798), + [anon_sym_interface] = ACTIONS(2798), + [anon_sym_enum] = ACTIONS(2798), [sym_html_comment] = ACTIONS(5), }, [873] = { - [ts_builtin_sym_end] = ACTIONS(2815), - [sym_identifier] = ACTIONS(2817), - [anon_sym_export] = ACTIONS(2817), - [anon_sym_default] = ACTIONS(2817), - [anon_sym_type] = ACTIONS(2817), - [anon_sym_namespace] = ACTIONS(2817), - [anon_sym_LBRACE] = ACTIONS(2815), - [anon_sym_RBRACE] = ACTIONS(2815), - [anon_sym_typeof] = ACTIONS(2817), - [anon_sym_import] = ACTIONS(2817), - [anon_sym_with] = ACTIONS(2817), - [anon_sym_var] = ACTIONS(2817), - [anon_sym_let] = ACTIONS(2817), - [anon_sym_const] = ACTIONS(2817), - [anon_sym_BANG] = ACTIONS(2815), - [anon_sym_else] = ACTIONS(2817), - [anon_sym_if] = ACTIONS(2817), - [anon_sym_switch] = ACTIONS(2817), - [anon_sym_for] = ACTIONS(2817), - [anon_sym_LPAREN] = ACTIONS(2815), - [anon_sym_SEMI] = ACTIONS(2815), - [anon_sym_await] = ACTIONS(2817), - [anon_sym_while] = ACTIONS(2817), - [anon_sym_do] = ACTIONS(2817), - [anon_sym_try] = ACTIONS(2817), - [anon_sym_break] = ACTIONS(2817), - [anon_sym_continue] = ACTIONS(2817), - [anon_sym_debugger] = ACTIONS(2817), - [anon_sym_return] = ACTIONS(2817), - [anon_sym_throw] = ACTIONS(2817), - [anon_sym_case] = ACTIONS(2817), - [anon_sym_yield] = ACTIONS(2817), - [anon_sym_LBRACK] = ACTIONS(2815), - [sym_glimmer_opening_tag] = ACTIONS(2815), - [anon_sym_DQUOTE] = ACTIONS(2815), - [anon_sym_SQUOTE] = ACTIONS(2815), - [anon_sym_class] = ACTIONS(2817), - [anon_sym_async] = ACTIONS(2817), - [anon_sym_function] = ACTIONS(2817), - [anon_sym_new] = ACTIONS(2817), - [anon_sym_using] = ACTIONS(2817), - [anon_sym_PLUS] = ACTIONS(2817), - [anon_sym_DASH] = ACTIONS(2817), - [anon_sym_SLASH] = ACTIONS(2817), - [anon_sym_LT] = ACTIONS(2817), - [anon_sym_TILDE] = ACTIONS(2815), - [anon_sym_void] = ACTIONS(2817), - [anon_sym_delete] = ACTIONS(2817), - [anon_sym_PLUS_PLUS] = ACTIONS(2815), - [anon_sym_DASH_DASH] = ACTIONS(2815), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2815), - [sym_number] = ACTIONS(2815), - [sym_private_property_identifier] = ACTIONS(2815), - [sym_this] = ACTIONS(2817), - [sym_super] = ACTIONS(2817), - [sym_true] = ACTIONS(2817), - [sym_false] = ACTIONS(2817), - [sym_null] = ACTIONS(2817), - [sym_undefined] = ACTIONS(2817), - [anon_sym_AT] = ACTIONS(2815), - [anon_sym_static] = ACTIONS(2817), - [anon_sym_readonly] = ACTIONS(2817), - [anon_sym_get] = ACTIONS(2817), - [anon_sym_set] = ACTIONS(2817), - [anon_sym_declare] = ACTIONS(2817), - [anon_sym_public] = ACTIONS(2817), - [anon_sym_private] = ACTIONS(2817), - [anon_sym_protected] = ACTIONS(2817), - [anon_sym_override] = ACTIONS(2817), - [anon_sym_module] = ACTIONS(2817), - [anon_sym_any] = ACTIONS(2817), - [anon_sym_number] = ACTIONS(2817), - [anon_sym_boolean] = ACTIONS(2817), - [anon_sym_string] = ACTIONS(2817), - [anon_sym_symbol] = ACTIONS(2817), - [anon_sym_object] = ACTIONS(2817), - [anon_sym_abstract] = ACTIONS(2817), - [anon_sym_interface] = ACTIONS(2817), - [anon_sym_enum] = ACTIONS(2817), + [ts_builtin_sym_end] = ACTIONS(2800), + [sym_identifier] = ACTIONS(2802), + [anon_sym_export] = ACTIONS(2802), + [anon_sym_default] = ACTIONS(2802), + [anon_sym_type] = ACTIONS(2802), + [anon_sym_namespace] = ACTIONS(2802), + [anon_sym_LBRACE] = ACTIONS(2800), + [anon_sym_RBRACE] = ACTIONS(2800), + [anon_sym_typeof] = ACTIONS(2802), + [anon_sym_import] = ACTIONS(2802), + [anon_sym_with] = ACTIONS(2802), + [anon_sym_var] = ACTIONS(2802), + [anon_sym_let] = ACTIONS(2802), + [anon_sym_const] = ACTIONS(2802), + [anon_sym_BANG] = ACTIONS(2800), + [anon_sym_else] = ACTIONS(2802), + [anon_sym_if] = ACTIONS(2802), + [anon_sym_switch] = ACTIONS(2802), + [anon_sym_for] = ACTIONS(2802), + [anon_sym_LPAREN] = ACTIONS(2800), + [anon_sym_SEMI] = ACTIONS(2800), + [anon_sym_await] = ACTIONS(2802), + [anon_sym_while] = ACTIONS(2802), + [anon_sym_do] = ACTIONS(2802), + [anon_sym_try] = ACTIONS(2802), + [anon_sym_break] = ACTIONS(2802), + [anon_sym_continue] = ACTIONS(2802), + [anon_sym_debugger] = ACTIONS(2802), + [anon_sym_return] = ACTIONS(2802), + [anon_sym_throw] = ACTIONS(2802), + [anon_sym_case] = ACTIONS(2802), + [anon_sym_yield] = ACTIONS(2802), + [anon_sym_LBRACK] = ACTIONS(2800), + [anon_sym_DQUOTE] = ACTIONS(2800), + [anon_sym_SQUOTE] = ACTIONS(2800), + [anon_sym_class] = ACTIONS(2802), + [anon_sym_async] = ACTIONS(2802), + [anon_sym_function] = ACTIONS(2802), + [anon_sym_new] = ACTIONS(2802), + [anon_sym_using] = ACTIONS(2802), + [anon_sym_PLUS] = ACTIONS(2802), + [anon_sym_DASH] = ACTIONS(2802), + [anon_sym_SLASH] = ACTIONS(2802), + [anon_sym_LT] = ACTIONS(2800), + [anon_sym_TILDE] = ACTIONS(2800), + [anon_sym_void] = ACTIONS(2802), + [anon_sym_delete] = ACTIONS(2802), + [anon_sym_PLUS_PLUS] = ACTIONS(2800), + [anon_sym_DASH_DASH] = ACTIONS(2800), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2800), + [sym_number] = ACTIONS(2800), + [sym_private_property_identifier] = ACTIONS(2800), + [sym_this] = ACTIONS(2802), + [sym_super] = ACTIONS(2802), + [sym_true] = ACTIONS(2802), + [sym_false] = ACTIONS(2802), + [sym_null] = ACTIONS(2802), + [sym_undefined] = ACTIONS(2802), + [anon_sym_AT] = ACTIONS(2800), + [anon_sym_static] = ACTIONS(2802), + [anon_sym_readonly] = ACTIONS(2802), + [anon_sym_get] = ACTIONS(2802), + [anon_sym_set] = ACTIONS(2802), + [anon_sym_declare] = ACTIONS(2802), + [anon_sym_public] = ACTIONS(2802), + [anon_sym_private] = ACTIONS(2802), + [anon_sym_protected] = ACTIONS(2802), + [anon_sym_override] = ACTIONS(2802), + [anon_sym_module] = ACTIONS(2802), + [anon_sym_any] = ACTIONS(2802), + [anon_sym_number] = ACTIONS(2802), + [anon_sym_boolean] = ACTIONS(2802), + [anon_sym_string] = ACTIONS(2802), + [anon_sym_symbol] = ACTIONS(2802), + [anon_sym_object] = ACTIONS(2802), + [anon_sym_abstract] = ACTIONS(2802), + [anon_sym_interface] = ACTIONS(2802), + [anon_sym_enum] = ACTIONS(2802), [sym_html_comment] = ACTIONS(5), }, [874] = { - [ts_builtin_sym_end] = ACTIONS(2819), - [sym_identifier] = ACTIONS(2821), - [anon_sym_export] = ACTIONS(2821), - [anon_sym_default] = ACTIONS(2821), - [anon_sym_type] = ACTIONS(2821), - [anon_sym_namespace] = ACTIONS(2821), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_RBRACE] = ACTIONS(2819), - [anon_sym_typeof] = ACTIONS(2821), - [anon_sym_import] = ACTIONS(2821), - [anon_sym_with] = ACTIONS(2821), - [anon_sym_var] = ACTIONS(2821), - [anon_sym_let] = ACTIONS(2821), - [anon_sym_const] = ACTIONS(2821), - [anon_sym_BANG] = ACTIONS(2819), - [anon_sym_else] = ACTIONS(2821), - [anon_sym_if] = ACTIONS(2821), - [anon_sym_switch] = ACTIONS(2821), - [anon_sym_for] = ACTIONS(2821), - [anon_sym_LPAREN] = ACTIONS(2819), - [anon_sym_SEMI] = ACTIONS(2819), - [anon_sym_await] = ACTIONS(2821), - [anon_sym_while] = ACTIONS(2821), - [anon_sym_do] = ACTIONS(2821), - [anon_sym_try] = ACTIONS(2821), - [anon_sym_break] = ACTIONS(2821), - [anon_sym_continue] = ACTIONS(2821), - [anon_sym_debugger] = ACTIONS(2821), - [anon_sym_return] = ACTIONS(2821), - [anon_sym_throw] = ACTIONS(2821), - [anon_sym_case] = ACTIONS(2821), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_LBRACK] = ACTIONS(2819), - [sym_glimmer_opening_tag] = ACTIONS(2819), - [anon_sym_DQUOTE] = ACTIONS(2819), - [anon_sym_SQUOTE] = ACTIONS(2819), - [anon_sym_class] = ACTIONS(2821), - [anon_sym_async] = ACTIONS(2821), - [anon_sym_function] = ACTIONS(2821), - [anon_sym_new] = ACTIONS(2821), - [anon_sym_using] = ACTIONS(2821), - [anon_sym_PLUS] = ACTIONS(2821), - [anon_sym_DASH] = ACTIONS(2821), - [anon_sym_SLASH] = ACTIONS(2821), - [anon_sym_LT] = ACTIONS(2821), - [anon_sym_TILDE] = ACTIONS(2819), - [anon_sym_void] = ACTIONS(2821), - [anon_sym_delete] = ACTIONS(2821), - [anon_sym_PLUS_PLUS] = ACTIONS(2819), - [anon_sym_DASH_DASH] = ACTIONS(2819), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2819), - [sym_number] = ACTIONS(2819), - [sym_private_property_identifier] = ACTIONS(2819), - [sym_this] = ACTIONS(2821), - [sym_super] = ACTIONS(2821), - [sym_true] = ACTIONS(2821), - [sym_false] = ACTIONS(2821), - [sym_null] = ACTIONS(2821), - [sym_undefined] = ACTIONS(2821), - [anon_sym_AT] = ACTIONS(2819), - [anon_sym_static] = ACTIONS(2821), - [anon_sym_readonly] = ACTIONS(2821), - [anon_sym_get] = ACTIONS(2821), - [anon_sym_set] = ACTIONS(2821), - [anon_sym_declare] = ACTIONS(2821), - [anon_sym_public] = ACTIONS(2821), - [anon_sym_private] = ACTIONS(2821), - [anon_sym_protected] = ACTIONS(2821), - [anon_sym_override] = ACTIONS(2821), - [anon_sym_module] = ACTIONS(2821), - [anon_sym_any] = ACTIONS(2821), - [anon_sym_number] = ACTIONS(2821), - [anon_sym_boolean] = ACTIONS(2821), - [anon_sym_string] = ACTIONS(2821), - [anon_sym_symbol] = ACTIONS(2821), - [anon_sym_object] = ACTIONS(2821), - [anon_sym_abstract] = ACTIONS(2821), - [anon_sym_interface] = ACTIONS(2821), - [anon_sym_enum] = ACTIONS(2821), + [ts_builtin_sym_end] = ACTIONS(2804), + [sym_identifier] = ACTIONS(2806), + [anon_sym_export] = ACTIONS(2806), + [anon_sym_default] = ACTIONS(2806), + [anon_sym_type] = ACTIONS(2806), + [anon_sym_namespace] = ACTIONS(2806), + [anon_sym_LBRACE] = ACTIONS(2804), + [anon_sym_RBRACE] = ACTIONS(2804), + [anon_sym_typeof] = ACTIONS(2806), + [anon_sym_import] = ACTIONS(2806), + [anon_sym_with] = ACTIONS(2806), + [anon_sym_var] = ACTIONS(2806), + [anon_sym_let] = ACTIONS(2806), + [anon_sym_const] = ACTIONS(2806), + [anon_sym_BANG] = ACTIONS(2804), + [anon_sym_else] = ACTIONS(2806), + [anon_sym_if] = ACTIONS(2806), + [anon_sym_switch] = ACTIONS(2806), + [anon_sym_for] = ACTIONS(2806), + [anon_sym_LPAREN] = ACTIONS(2804), + [anon_sym_SEMI] = ACTIONS(2804), + [anon_sym_await] = ACTIONS(2806), + [anon_sym_while] = ACTIONS(2806), + [anon_sym_do] = ACTIONS(2806), + [anon_sym_try] = ACTIONS(2806), + [anon_sym_break] = ACTIONS(2806), + [anon_sym_continue] = ACTIONS(2806), + [anon_sym_debugger] = ACTIONS(2806), + [anon_sym_return] = ACTIONS(2806), + [anon_sym_throw] = ACTIONS(2806), + [anon_sym_case] = ACTIONS(2806), + [anon_sym_yield] = ACTIONS(2806), + [anon_sym_LBRACK] = ACTIONS(2804), + [anon_sym_DQUOTE] = ACTIONS(2804), + [anon_sym_SQUOTE] = ACTIONS(2804), + [anon_sym_class] = ACTIONS(2806), + [anon_sym_async] = ACTIONS(2806), + [anon_sym_function] = ACTIONS(2806), + [anon_sym_new] = ACTIONS(2806), + [anon_sym_using] = ACTIONS(2806), + [anon_sym_PLUS] = ACTIONS(2806), + [anon_sym_DASH] = ACTIONS(2806), + [anon_sym_SLASH] = ACTIONS(2806), + [anon_sym_LT] = ACTIONS(2804), + [anon_sym_TILDE] = ACTIONS(2804), + [anon_sym_void] = ACTIONS(2806), + [anon_sym_delete] = ACTIONS(2806), + [anon_sym_PLUS_PLUS] = ACTIONS(2804), + [anon_sym_DASH_DASH] = ACTIONS(2804), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2804), + [sym_number] = ACTIONS(2804), + [sym_private_property_identifier] = ACTIONS(2804), + [sym_this] = ACTIONS(2806), + [sym_super] = ACTIONS(2806), + [sym_true] = ACTIONS(2806), + [sym_false] = ACTIONS(2806), + [sym_null] = ACTIONS(2806), + [sym_undefined] = ACTIONS(2806), + [anon_sym_AT] = ACTIONS(2804), + [anon_sym_static] = ACTIONS(2806), + [anon_sym_readonly] = ACTIONS(2806), + [anon_sym_get] = ACTIONS(2806), + [anon_sym_set] = ACTIONS(2806), + [anon_sym_declare] = ACTIONS(2806), + [anon_sym_public] = ACTIONS(2806), + [anon_sym_private] = ACTIONS(2806), + [anon_sym_protected] = ACTIONS(2806), + [anon_sym_override] = ACTIONS(2806), + [anon_sym_module] = ACTIONS(2806), + [anon_sym_any] = ACTIONS(2806), + [anon_sym_number] = ACTIONS(2806), + [anon_sym_boolean] = ACTIONS(2806), + [anon_sym_string] = ACTIONS(2806), + [anon_sym_symbol] = ACTIONS(2806), + [anon_sym_object] = ACTIONS(2806), + [anon_sym_abstract] = ACTIONS(2806), + [anon_sym_interface] = ACTIONS(2806), + [anon_sym_enum] = ACTIONS(2806), [sym_html_comment] = ACTIONS(5), }, [875] = { - [ts_builtin_sym_end] = ACTIONS(2823), - [sym_identifier] = ACTIONS(2825), - [anon_sym_export] = ACTIONS(2825), - [anon_sym_default] = ACTIONS(2825), - [anon_sym_type] = ACTIONS(2825), - [anon_sym_namespace] = ACTIONS(2825), - [anon_sym_LBRACE] = ACTIONS(2823), - [anon_sym_RBRACE] = ACTIONS(2823), - [anon_sym_typeof] = ACTIONS(2825), - [anon_sym_import] = ACTIONS(2825), - [anon_sym_with] = ACTIONS(2825), - [anon_sym_var] = ACTIONS(2825), - [anon_sym_let] = ACTIONS(2825), - [anon_sym_const] = ACTIONS(2825), - [anon_sym_BANG] = ACTIONS(2823), - [anon_sym_else] = ACTIONS(2825), - [anon_sym_if] = ACTIONS(2825), - [anon_sym_switch] = ACTIONS(2825), - [anon_sym_for] = ACTIONS(2825), - [anon_sym_LPAREN] = ACTIONS(2823), - [anon_sym_SEMI] = ACTIONS(2823), - [anon_sym_await] = ACTIONS(2825), - [anon_sym_while] = ACTIONS(2825), - [anon_sym_do] = ACTIONS(2825), - [anon_sym_try] = ACTIONS(2825), - [anon_sym_break] = ACTIONS(2825), - [anon_sym_continue] = ACTIONS(2825), - [anon_sym_debugger] = ACTIONS(2825), - [anon_sym_return] = ACTIONS(2825), - [anon_sym_throw] = ACTIONS(2825), - [anon_sym_case] = ACTIONS(2825), - [anon_sym_yield] = ACTIONS(2825), - [anon_sym_LBRACK] = ACTIONS(2823), - [sym_glimmer_opening_tag] = ACTIONS(2823), - [anon_sym_DQUOTE] = ACTIONS(2823), - [anon_sym_SQUOTE] = ACTIONS(2823), - [anon_sym_class] = ACTIONS(2825), - [anon_sym_async] = ACTIONS(2825), - [anon_sym_function] = ACTIONS(2825), - [anon_sym_new] = ACTIONS(2825), - [anon_sym_using] = ACTIONS(2825), - [anon_sym_PLUS] = ACTIONS(2825), - [anon_sym_DASH] = ACTIONS(2825), - [anon_sym_SLASH] = ACTIONS(2825), - [anon_sym_LT] = ACTIONS(2825), - [anon_sym_TILDE] = ACTIONS(2823), - [anon_sym_void] = ACTIONS(2825), - [anon_sym_delete] = ACTIONS(2825), - [anon_sym_PLUS_PLUS] = ACTIONS(2823), - [anon_sym_DASH_DASH] = ACTIONS(2823), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2823), - [sym_number] = ACTIONS(2823), - [sym_private_property_identifier] = ACTIONS(2823), - [sym_this] = ACTIONS(2825), - [sym_super] = ACTIONS(2825), - [sym_true] = ACTIONS(2825), - [sym_false] = ACTIONS(2825), - [sym_null] = ACTIONS(2825), - [sym_undefined] = ACTIONS(2825), - [anon_sym_AT] = ACTIONS(2823), - [anon_sym_static] = ACTIONS(2825), - [anon_sym_readonly] = ACTIONS(2825), - [anon_sym_get] = ACTIONS(2825), - [anon_sym_set] = ACTIONS(2825), - [anon_sym_declare] = ACTIONS(2825), - [anon_sym_public] = ACTIONS(2825), - [anon_sym_private] = ACTIONS(2825), - [anon_sym_protected] = ACTIONS(2825), - [anon_sym_override] = ACTIONS(2825), - [anon_sym_module] = ACTIONS(2825), - [anon_sym_any] = ACTIONS(2825), - [anon_sym_number] = ACTIONS(2825), - [anon_sym_boolean] = ACTIONS(2825), - [anon_sym_string] = ACTIONS(2825), - [anon_sym_symbol] = ACTIONS(2825), - [anon_sym_object] = ACTIONS(2825), - [anon_sym_abstract] = ACTIONS(2825), - [anon_sym_interface] = ACTIONS(2825), - [anon_sym_enum] = ACTIONS(2825), + [ts_builtin_sym_end] = ACTIONS(2808), + [sym_identifier] = ACTIONS(2810), + [anon_sym_export] = ACTIONS(2810), + [anon_sym_default] = ACTIONS(2810), + [anon_sym_type] = ACTIONS(2810), + [anon_sym_namespace] = ACTIONS(2810), + [anon_sym_LBRACE] = ACTIONS(2808), + [anon_sym_RBRACE] = ACTIONS(2808), + [anon_sym_typeof] = ACTIONS(2810), + [anon_sym_import] = ACTIONS(2810), + [anon_sym_with] = ACTIONS(2810), + [anon_sym_var] = ACTIONS(2810), + [anon_sym_let] = ACTIONS(2810), + [anon_sym_const] = ACTIONS(2810), + [anon_sym_BANG] = ACTIONS(2808), + [anon_sym_else] = ACTIONS(2810), + [anon_sym_if] = ACTIONS(2810), + [anon_sym_switch] = ACTIONS(2810), + [anon_sym_for] = ACTIONS(2810), + [anon_sym_LPAREN] = ACTIONS(2808), + [anon_sym_SEMI] = ACTIONS(2808), + [anon_sym_await] = ACTIONS(2810), + [anon_sym_while] = ACTIONS(2810), + [anon_sym_do] = ACTIONS(2810), + [anon_sym_try] = ACTIONS(2810), + [anon_sym_break] = ACTIONS(2810), + [anon_sym_continue] = ACTIONS(2810), + [anon_sym_debugger] = ACTIONS(2810), + [anon_sym_return] = ACTIONS(2810), + [anon_sym_throw] = ACTIONS(2810), + [anon_sym_case] = ACTIONS(2810), + [anon_sym_yield] = ACTIONS(2810), + [anon_sym_LBRACK] = ACTIONS(2808), + [anon_sym_DQUOTE] = ACTIONS(2808), + [anon_sym_SQUOTE] = ACTIONS(2808), + [anon_sym_class] = ACTIONS(2810), + [anon_sym_async] = ACTIONS(2810), + [anon_sym_function] = ACTIONS(2810), + [anon_sym_new] = ACTIONS(2810), + [anon_sym_using] = ACTIONS(2810), + [anon_sym_PLUS] = ACTIONS(2810), + [anon_sym_DASH] = ACTIONS(2810), + [anon_sym_SLASH] = ACTIONS(2810), + [anon_sym_LT] = ACTIONS(2808), + [anon_sym_TILDE] = ACTIONS(2808), + [anon_sym_void] = ACTIONS(2810), + [anon_sym_delete] = ACTIONS(2810), + [anon_sym_PLUS_PLUS] = ACTIONS(2808), + [anon_sym_DASH_DASH] = ACTIONS(2808), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2808), + [sym_number] = ACTIONS(2808), + [sym_private_property_identifier] = ACTIONS(2808), + [sym_this] = ACTIONS(2810), + [sym_super] = ACTIONS(2810), + [sym_true] = ACTIONS(2810), + [sym_false] = ACTIONS(2810), + [sym_null] = ACTIONS(2810), + [sym_undefined] = ACTIONS(2810), + [anon_sym_AT] = ACTIONS(2808), + [anon_sym_static] = ACTIONS(2810), + [anon_sym_readonly] = ACTIONS(2810), + [anon_sym_get] = ACTIONS(2810), + [anon_sym_set] = ACTIONS(2810), + [anon_sym_declare] = ACTIONS(2810), + [anon_sym_public] = ACTIONS(2810), + [anon_sym_private] = ACTIONS(2810), + [anon_sym_protected] = ACTIONS(2810), + [anon_sym_override] = ACTIONS(2810), + [anon_sym_module] = ACTIONS(2810), + [anon_sym_any] = ACTIONS(2810), + [anon_sym_number] = ACTIONS(2810), + [anon_sym_boolean] = ACTIONS(2810), + [anon_sym_string] = ACTIONS(2810), + [anon_sym_symbol] = ACTIONS(2810), + [anon_sym_object] = ACTIONS(2810), + [anon_sym_abstract] = ACTIONS(2810), + [anon_sym_interface] = ACTIONS(2810), + [anon_sym_enum] = ACTIONS(2810), [sym_html_comment] = ACTIONS(5), }, [876] = { - [ts_builtin_sym_end] = ACTIONS(2827), - [sym_identifier] = ACTIONS(2829), - [anon_sym_export] = ACTIONS(2829), - [anon_sym_default] = ACTIONS(2829), - [anon_sym_type] = ACTIONS(2829), - [anon_sym_namespace] = ACTIONS(2829), - [anon_sym_LBRACE] = ACTIONS(2827), - [anon_sym_RBRACE] = ACTIONS(2827), - [anon_sym_typeof] = ACTIONS(2829), - [anon_sym_import] = ACTIONS(2829), - [anon_sym_with] = ACTIONS(2829), - [anon_sym_var] = ACTIONS(2829), - [anon_sym_let] = ACTIONS(2829), - [anon_sym_const] = ACTIONS(2829), - [anon_sym_BANG] = ACTIONS(2827), - [anon_sym_else] = ACTIONS(2829), - [anon_sym_if] = ACTIONS(2829), - [anon_sym_switch] = ACTIONS(2829), - [anon_sym_for] = ACTIONS(2829), - [anon_sym_LPAREN] = ACTIONS(2827), - [anon_sym_SEMI] = ACTIONS(2827), - [anon_sym_await] = ACTIONS(2829), - [anon_sym_while] = ACTIONS(2829), - [anon_sym_do] = ACTIONS(2829), - [anon_sym_try] = ACTIONS(2829), - [anon_sym_break] = ACTIONS(2829), - [anon_sym_continue] = ACTIONS(2829), - [anon_sym_debugger] = ACTIONS(2829), - [anon_sym_return] = ACTIONS(2829), - [anon_sym_throw] = ACTIONS(2829), - [anon_sym_case] = ACTIONS(2829), - [anon_sym_yield] = ACTIONS(2829), - [anon_sym_LBRACK] = ACTIONS(2827), - [sym_glimmer_opening_tag] = ACTIONS(2827), - [anon_sym_DQUOTE] = ACTIONS(2827), - [anon_sym_SQUOTE] = ACTIONS(2827), - [anon_sym_class] = ACTIONS(2829), - [anon_sym_async] = ACTIONS(2829), - [anon_sym_function] = ACTIONS(2829), - [anon_sym_new] = ACTIONS(2829), - [anon_sym_using] = ACTIONS(2829), - [anon_sym_PLUS] = ACTIONS(2829), - [anon_sym_DASH] = ACTIONS(2829), - [anon_sym_SLASH] = ACTIONS(2829), - [anon_sym_LT] = ACTIONS(2829), - [anon_sym_TILDE] = ACTIONS(2827), - [anon_sym_void] = ACTIONS(2829), - [anon_sym_delete] = ACTIONS(2829), - [anon_sym_PLUS_PLUS] = ACTIONS(2827), - [anon_sym_DASH_DASH] = ACTIONS(2827), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2827), - [sym_number] = ACTIONS(2827), - [sym_private_property_identifier] = ACTIONS(2827), - [sym_this] = ACTIONS(2829), - [sym_super] = ACTIONS(2829), - [sym_true] = ACTIONS(2829), - [sym_false] = ACTIONS(2829), - [sym_null] = ACTIONS(2829), - [sym_undefined] = ACTIONS(2829), - [anon_sym_AT] = ACTIONS(2827), - [anon_sym_static] = ACTIONS(2829), - [anon_sym_readonly] = ACTIONS(2829), - [anon_sym_get] = ACTIONS(2829), - [anon_sym_set] = ACTIONS(2829), - [anon_sym_declare] = ACTIONS(2829), - [anon_sym_public] = ACTIONS(2829), - [anon_sym_private] = ACTIONS(2829), - [anon_sym_protected] = ACTIONS(2829), - [anon_sym_override] = ACTIONS(2829), - [anon_sym_module] = ACTIONS(2829), - [anon_sym_any] = ACTIONS(2829), - [anon_sym_number] = ACTIONS(2829), - [anon_sym_boolean] = ACTIONS(2829), - [anon_sym_string] = ACTIONS(2829), - [anon_sym_symbol] = ACTIONS(2829), - [anon_sym_object] = ACTIONS(2829), - [anon_sym_abstract] = ACTIONS(2829), - [anon_sym_interface] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(2829), + [ts_builtin_sym_end] = ACTIONS(2812), + [sym_identifier] = ACTIONS(2814), + [anon_sym_export] = ACTIONS(2814), + [anon_sym_default] = ACTIONS(2814), + [anon_sym_type] = ACTIONS(2814), + [anon_sym_namespace] = ACTIONS(2814), + [anon_sym_LBRACE] = ACTIONS(2812), + [anon_sym_RBRACE] = ACTIONS(2812), + [anon_sym_typeof] = ACTIONS(2814), + [anon_sym_import] = ACTIONS(2814), + [anon_sym_with] = ACTIONS(2814), + [anon_sym_var] = ACTIONS(2814), + [anon_sym_let] = ACTIONS(2814), + [anon_sym_const] = ACTIONS(2814), + [anon_sym_BANG] = ACTIONS(2812), + [anon_sym_else] = ACTIONS(2814), + [anon_sym_if] = ACTIONS(2814), + [anon_sym_switch] = ACTIONS(2814), + [anon_sym_for] = ACTIONS(2814), + [anon_sym_LPAREN] = ACTIONS(2812), + [anon_sym_SEMI] = ACTIONS(2812), + [anon_sym_await] = ACTIONS(2814), + [anon_sym_while] = ACTIONS(2814), + [anon_sym_do] = ACTIONS(2814), + [anon_sym_try] = ACTIONS(2814), + [anon_sym_break] = ACTIONS(2814), + [anon_sym_continue] = ACTIONS(2814), + [anon_sym_debugger] = ACTIONS(2814), + [anon_sym_return] = ACTIONS(2814), + [anon_sym_throw] = ACTIONS(2814), + [anon_sym_case] = ACTIONS(2814), + [anon_sym_yield] = ACTIONS(2814), + [anon_sym_LBRACK] = ACTIONS(2812), + [anon_sym_DQUOTE] = ACTIONS(2812), + [anon_sym_SQUOTE] = ACTIONS(2812), + [anon_sym_class] = ACTIONS(2814), + [anon_sym_async] = ACTIONS(2814), + [anon_sym_function] = ACTIONS(2814), + [anon_sym_new] = ACTIONS(2814), + [anon_sym_using] = ACTIONS(2814), + [anon_sym_PLUS] = ACTIONS(2814), + [anon_sym_DASH] = ACTIONS(2814), + [anon_sym_SLASH] = ACTIONS(2814), + [anon_sym_LT] = ACTIONS(2812), + [anon_sym_TILDE] = ACTIONS(2812), + [anon_sym_void] = ACTIONS(2814), + [anon_sym_delete] = ACTIONS(2814), + [anon_sym_PLUS_PLUS] = ACTIONS(2812), + [anon_sym_DASH_DASH] = ACTIONS(2812), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2812), + [sym_number] = ACTIONS(2812), + [sym_private_property_identifier] = ACTIONS(2812), + [sym_this] = ACTIONS(2814), + [sym_super] = ACTIONS(2814), + [sym_true] = ACTIONS(2814), + [sym_false] = ACTIONS(2814), + [sym_null] = ACTIONS(2814), + [sym_undefined] = ACTIONS(2814), + [anon_sym_AT] = ACTIONS(2812), + [anon_sym_static] = ACTIONS(2814), + [anon_sym_readonly] = ACTIONS(2814), + [anon_sym_get] = ACTIONS(2814), + [anon_sym_set] = ACTIONS(2814), + [anon_sym_declare] = ACTIONS(2814), + [anon_sym_public] = ACTIONS(2814), + [anon_sym_private] = ACTIONS(2814), + [anon_sym_protected] = ACTIONS(2814), + [anon_sym_override] = ACTIONS(2814), + [anon_sym_module] = ACTIONS(2814), + [anon_sym_any] = ACTIONS(2814), + [anon_sym_number] = ACTIONS(2814), + [anon_sym_boolean] = ACTIONS(2814), + [anon_sym_string] = ACTIONS(2814), + [anon_sym_symbol] = ACTIONS(2814), + [anon_sym_object] = ACTIONS(2814), + [anon_sym_abstract] = ACTIONS(2814), + [anon_sym_interface] = ACTIONS(2814), + [anon_sym_enum] = ACTIONS(2814), [sym_html_comment] = ACTIONS(5), }, [877] = { - [ts_builtin_sym_end] = ACTIONS(2831), - [sym_identifier] = ACTIONS(2833), - [anon_sym_export] = ACTIONS(2833), - [anon_sym_default] = ACTIONS(2833), - [anon_sym_type] = ACTIONS(2833), - [anon_sym_namespace] = ACTIONS(2833), - [anon_sym_LBRACE] = ACTIONS(2831), - [anon_sym_RBRACE] = ACTIONS(2831), - [anon_sym_typeof] = ACTIONS(2833), - [anon_sym_import] = ACTIONS(2833), - [anon_sym_with] = ACTIONS(2833), - [anon_sym_var] = ACTIONS(2833), - [anon_sym_let] = ACTIONS(2833), - [anon_sym_const] = ACTIONS(2833), - [anon_sym_BANG] = ACTIONS(2831), - [anon_sym_else] = ACTIONS(2833), - [anon_sym_if] = ACTIONS(2833), - [anon_sym_switch] = ACTIONS(2833), - [anon_sym_for] = ACTIONS(2833), - [anon_sym_LPAREN] = ACTIONS(2831), - [anon_sym_SEMI] = ACTIONS(2831), - [anon_sym_await] = ACTIONS(2833), - [anon_sym_while] = ACTIONS(2833), - [anon_sym_do] = ACTIONS(2833), - [anon_sym_try] = ACTIONS(2833), - [anon_sym_break] = ACTIONS(2833), - [anon_sym_continue] = ACTIONS(2833), - [anon_sym_debugger] = ACTIONS(2833), - [anon_sym_return] = ACTIONS(2833), - [anon_sym_throw] = ACTIONS(2833), - [anon_sym_case] = ACTIONS(2833), - [anon_sym_yield] = ACTIONS(2833), - [anon_sym_LBRACK] = ACTIONS(2831), - [sym_glimmer_opening_tag] = ACTIONS(2831), - [anon_sym_DQUOTE] = ACTIONS(2831), - [anon_sym_SQUOTE] = ACTIONS(2831), - [anon_sym_class] = ACTIONS(2833), - [anon_sym_async] = ACTIONS(2833), - [anon_sym_function] = ACTIONS(2833), - [anon_sym_new] = ACTIONS(2833), - [anon_sym_using] = ACTIONS(2833), - [anon_sym_PLUS] = ACTIONS(2833), - [anon_sym_DASH] = ACTIONS(2833), - [anon_sym_SLASH] = ACTIONS(2833), - [anon_sym_LT] = ACTIONS(2833), - [anon_sym_TILDE] = ACTIONS(2831), - [anon_sym_void] = ACTIONS(2833), - [anon_sym_delete] = ACTIONS(2833), - [anon_sym_PLUS_PLUS] = ACTIONS(2831), - [anon_sym_DASH_DASH] = ACTIONS(2831), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2831), - [sym_number] = ACTIONS(2831), - [sym_private_property_identifier] = ACTIONS(2831), - [sym_this] = ACTIONS(2833), - [sym_super] = ACTIONS(2833), - [sym_true] = ACTIONS(2833), - [sym_false] = ACTIONS(2833), - [sym_null] = ACTIONS(2833), - [sym_undefined] = ACTIONS(2833), - [anon_sym_AT] = ACTIONS(2831), - [anon_sym_static] = ACTIONS(2833), - [anon_sym_readonly] = ACTIONS(2833), - [anon_sym_get] = ACTIONS(2833), - [anon_sym_set] = ACTIONS(2833), - [anon_sym_declare] = ACTIONS(2833), - [anon_sym_public] = ACTIONS(2833), - [anon_sym_private] = ACTIONS(2833), - [anon_sym_protected] = ACTIONS(2833), - [anon_sym_override] = ACTIONS(2833), - [anon_sym_module] = ACTIONS(2833), - [anon_sym_any] = ACTIONS(2833), - [anon_sym_number] = ACTIONS(2833), - [anon_sym_boolean] = ACTIONS(2833), - [anon_sym_string] = ACTIONS(2833), - [anon_sym_symbol] = ACTIONS(2833), - [anon_sym_object] = ACTIONS(2833), - [anon_sym_abstract] = ACTIONS(2833), - [anon_sym_interface] = ACTIONS(2833), - [anon_sym_enum] = ACTIONS(2833), + [ts_builtin_sym_end] = ACTIONS(2816), + [sym_identifier] = ACTIONS(2818), + [anon_sym_export] = ACTIONS(2818), + [anon_sym_default] = ACTIONS(2818), + [anon_sym_type] = ACTIONS(2818), + [anon_sym_namespace] = ACTIONS(2818), + [anon_sym_LBRACE] = ACTIONS(2816), + [anon_sym_RBRACE] = ACTIONS(2816), + [anon_sym_typeof] = ACTIONS(2818), + [anon_sym_import] = ACTIONS(2818), + [anon_sym_with] = ACTIONS(2818), + [anon_sym_var] = ACTIONS(2818), + [anon_sym_let] = ACTIONS(2818), + [anon_sym_const] = ACTIONS(2818), + [anon_sym_BANG] = ACTIONS(2816), + [anon_sym_else] = ACTIONS(2818), + [anon_sym_if] = ACTIONS(2818), + [anon_sym_switch] = ACTIONS(2818), + [anon_sym_for] = ACTIONS(2818), + [anon_sym_LPAREN] = ACTIONS(2816), + [anon_sym_SEMI] = ACTIONS(2816), + [anon_sym_await] = ACTIONS(2818), + [anon_sym_while] = ACTIONS(2818), + [anon_sym_do] = ACTIONS(2818), + [anon_sym_try] = ACTIONS(2818), + [anon_sym_break] = ACTIONS(2818), + [anon_sym_continue] = ACTIONS(2818), + [anon_sym_debugger] = ACTIONS(2818), + [anon_sym_return] = ACTIONS(2818), + [anon_sym_throw] = ACTIONS(2818), + [anon_sym_case] = ACTIONS(2818), + [anon_sym_yield] = ACTIONS(2818), + [anon_sym_LBRACK] = ACTIONS(2816), + [anon_sym_DQUOTE] = ACTIONS(2816), + [anon_sym_SQUOTE] = ACTIONS(2816), + [anon_sym_class] = ACTIONS(2818), + [anon_sym_async] = ACTIONS(2818), + [anon_sym_function] = ACTIONS(2818), + [anon_sym_new] = ACTIONS(2818), + [anon_sym_using] = ACTIONS(2818), + [anon_sym_PLUS] = ACTIONS(2818), + [anon_sym_DASH] = ACTIONS(2818), + [anon_sym_SLASH] = ACTIONS(2818), + [anon_sym_LT] = ACTIONS(2816), + [anon_sym_TILDE] = ACTIONS(2816), + [anon_sym_void] = ACTIONS(2818), + [anon_sym_delete] = ACTIONS(2818), + [anon_sym_PLUS_PLUS] = ACTIONS(2816), + [anon_sym_DASH_DASH] = ACTIONS(2816), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2816), + [sym_number] = ACTIONS(2816), + [sym_private_property_identifier] = ACTIONS(2816), + [sym_this] = ACTIONS(2818), + [sym_super] = ACTIONS(2818), + [sym_true] = ACTIONS(2818), + [sym_false] = ACTIONS(2818), + [sym_null] = ACTIONS(2818), + [sym_undefined] = ACTIONS(2818), + [anon_sym_AT] = ACTIONS(2816), + [anon_sym_static] = ACTIONS(2818), + [anon_sym_readonly] = ACTIONS(2818), + [anon_sym_get] = ACTIONS(2818), + [anon_sym_set] = ACTIONS(2818), + [anon_sym_declare] = ACTIONS(2818), + [anon_sym_public] = ACTIONS(2818), + [anon_sym_private] = ACTIONS(2818), + [anon_sym_protected] = ACTIONS(2818), + [anon_sym_override] = ACTIONS(2818), + [anon_sym_module] = ACTIONS(2818), + [anon_sym_any] = ACTIONS(2818), + [anon_sym_number] = ACTIONS(2818), + [anon_sym_boolean] = ACTIONS(2818), + [anon_sym_string] = ACTIONS(2818), + [anon_sym_symbol] = ACTIONS(2818), + [anon_sym_object] = ACTIONS(2818), + [anon_sym_abstract] = ACTIONS(2818), + [anon_sym_interface] = ACTIONS(2818), + [anon_sym_enum] = ACTIONS(2818), [sym_html_comment] = ACTIONS(5), }, [878] = { - [ts_builtin_sym_end] = ACTIONS(2835), - [sym_identifier] = ACTIONS(2837), - [anon_sym_export] = ACTIONS(2837), - [anon_sym_default] = ACTIONS(2837), - [anon_sym_type] = ACTIONS(2837), - [anon_sym_namespace] = ACTIONS(2837), - [anon_sym_LBRACE] = ACTIONS(2835), - [anon_sym_RBRACE] = ACTIONS(2835), - [anon_sym_typeof] = ACTIONS(2837), - [anon_sym_import] = ACTIONS(2837), - [anon_sym_with] = ACTIONS(2837), - [anon_sym_var] = ACTIONS(2837), - [anon_sym_let] = ACTIONS(2837), - [anon_sym_const] = ACTIONS(2837), - [anon_sym_BANG] = ACTIONS(2835), - [anon_sym_else] = ACTIONS(2837), - [anon_sym_if] = ACTIONS(2837), - [anon_sym_switch] = ACTIONS(2837), - [anon_sym_for] = ACTIONS(2837), - [anon_sym_LPAREN] = ACTIONS(2835), - [anon_sym_SEMI] = ACTIONS(2835), - [anon_sym_await] = ACTIONS(2837), - [anon_sym_while] = ACTIONS(2837), - [anon_sym_do] = ACTIONS(2837), - [anon_sym_try] = ACTIONS(2837), - [anon_sym_break] = ACTIONS(2837), - [anon_sym_continue] = ACTIONS(2837), - [anon_sym_debugger] = ACTIONS(2837), - [anon_sym_return] = ACTIONS(2837), - [anon_sym_throw] = ACTIONS(2837), - [anon_sym_case] = ACTIONS(2837), - [anon_sym_yield] = ACTIONS(2837), - [anon_sym_LBRACK] = ACTIONS(2835), - [sym_glimmer_opening_tag] = ACTIONS(2835), - [anon_sym_DQUOTE] = ACTIONS(2835), - [anon_sym_SQUOTE] = ACTIONS(2835), - [anon_sym_class] = ACTIONS(2837), - [anon_sym_async] = ACTIONS(2837), - [anon_sym_function] = ACTIONS(2837), - [anon_sym_new] = ACTIONS(2837), - [anon_sym_using] = ACTIONS(2837), - [anon_sym_PLUS] = ACTIONS(2837), - [anon_sym_DASH] = ACTIONS(2837), - [anon_sym_SLASH] = ACTIONS(2837), - [anon_sym_LT] = ACTIONS(2837), - [anon_sym_TILDE] = ACTIONS(2835), - [anon_sym_void] = ACTIONS(2837), - [anon_sym_delete] = ACTIONS(2837), - [anon_sym_PLUS_PLUS] = ACTIONS(2835), - [anon_sym_DASH_DASH] = ACTIONS(2835), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2835), - [sym_number] = ACTIONS(2835), - [sym_private_property_identifier] = ACTIONS(2835), - [sym_this] = ACTIONS(2837), - [sym_super] = ACTIONS(2837), - [sym_true] = ACTIONS(2837), - [sym_false] = ACTIONS(2837), - [sym_null] = ACTIONS(2837), - [sym_undefined] = ACTIONS(2837), - [anon_sym_AT] = ACTIONS(2835), - [anon_sym_static] = ACTIONS(2837), - [anon_sym_readonly] = ACTIONS(2837), - [anon_sym_get] = ACTIONS(2837), - [anon_sym_set] = ACTIONS(2837), - [anon_sym_declare] = ACTIONS(2837), - [anon_sym_public] = ACTIONS(2837), - [anon_sym_private] = ACTIONS(2837), - [anon_sym_protected] = ACTIONS(2837), - [anon_sym_override] = ACTIONS(2837), - [anon_sym_module] = ACTIONS(2837), - [anon_sym_any] = ACTIONS(2837), - [anon_sym_number] = ACTIONS(2837), - [anon_sym_boolean] = ACTIONS(2837), - [anon_sym_string] = ACTIONS(2837), - [anon_sym_symbol] = ACTIONS(2837), - [anon_sym_object] = ACTIONS(2837), - [anon_sym_abstract] = ACTIONS(2837), - [anon_sym_interface] = ACTIONS(2837), - [anon_sym_enum] = ACTIONS(2837), + [ts_builtin_sym_end] = ACTIONS(2820), + [sym_identifier] = ACTIONS(2822), + [anon_sym_export] = ACTIONS(2822), + [anon_sym_default] = ACTIONS(2822), + [anon_sym_type] = ACTIONS(2822), + [anon_sym_namespace] = ACTIONS(2822), + [anon_sym_LBRACE] = ACTIONS(2820), + [anon_sym_RBRACE] = ACTIONS(2820), + [anon_sym_typeof] = ACTIONS(2822), + [anon_sym_import] = ACTIONS(2822), + [anon_sym_with] = ACTIONS(2822), + [anon_sym_var] = ACTIONS(2822), + [anon_sym_let] = ACTIONS(2822), + [anon_sym_const] = ACTIONS(2822), + [anon_sym_BANG] = ACTIONS(2820), + [anon_sym_else] = ACTIONS(2822), + [anon_sym_if] = ACTIONS(2822), + [anon_sym_switch] = ACTIONS(2822), + [anon_sym_for] = ACTIONS(2822), + [anon_sym_LPAREN] = ACTIONS(2820), + [anon_sym_SEMI] = ACTIONS(2820), + [anon_sym_await] = ACTIONS(2822), + [anon_sym_while] = ACTIONS(2822), + [anon_sym_do] = ACTIONS(2822), + [anon_sym_try] = ACTIONS(2822), + [anon_sym_break] = ACTIONS(2822), + [anon_sym_continue] = ACTIONS(2822), + [anon_sym_debugger] = ACTIONS(2822), + [anon_sym_return] = ACTIONS(2822), + [anon_sym_throw] = ACTIONS(2822), + [anon_sym_case] = ACTIONS(2822), + [anon_sym_yield] = ACTIONS(2822), + [anon_sym_LBRACK] = ACTIONS(2820), + [anon_sym_DQUOTE] = ACTIONS(2820), + [anon_sym_SQUOTE] = ACTIONS(2820), + [anon_sym_class] = ACTIONS(2822), + [anon_sym_async] = ACTIONS(2822), + [anon_sym_function] = ACTIONS(2822), + [anon_sym_new] = ACTIONS(2822), + [anon_sym_using] = ACTIONS(2822), + [anon_sym_PLUS] = ACTIONS(2822), + [anon_sym_DASH] = ACTIONS(2822), + [anon_sym_SLASH] = ACTIONS(2822), + [anon_sym_LT] = ACTIONS(2820), + [anon_sym_TILDE] = ACTIONS(2820), + [anon_sym_void] = ACTIONS(2822), + [anon_sym_delete] = ACTIONS(2822), + [anon_sym_PLUS_PLUS] = ACTIONS(2820), + [anon_sym_DASH_DASH] = ACTIONS(2820), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2820), + [sym_number] = ACTIONS(2820), + [sym_private_property_identifier] = ACTIONS(2820), + [sym_this] = ACTIONS(2822), + [sym_super] = ACTIONS(2822), + [sym_true] = ACTIONS(2822), + [sym_false] = ACTIONS(2822), + [sym_null] = ACTIONS(2822), + [sym_undefined] = ACTIONS(2822), + [anon_sym_AT] = ACTIONS(2820), + [anon_sym_static] = ACTIONS(2822), + [anon_sym_readonly] = ACTIONS(2822), + [anon_sym_get] = ACTIONS(2822), + [anon_sym_set] = ACTIONS(2822), + [anon_sym_declare] = ACTIONS(2822), + [anon_sym_public] = ACTIONS(2822), + [anon_sym_private] = ACTIONS(2822), + [anon_sym_protected] = ACTIONS(2822), + [anon_sym_override] = ACTIONS(2822), + [anon_sym_module] = ACTIONS(2822), + [anon_sym_any] = ACTIONS(2822), + [anon_sym_number] = ACTIONS(2822), + [anon_sym_boolean] = ACTIONS(2822), + [anon_sym_string] = ACTIONS(2822), + [anon_sym_symbol] = ACTIONS(2822), + [anon_sym_object] = ACTIONS(2822), + [anon_sym_abstract] = ACTIONS(2822), + [anon_sym_interface] = ACTIONS(2822), + [anon_sym_enum] = ACTIONS(2822), [sym_html_comment] = ACTIONS(5), }, [879] = { - [ts_builtin_sym_end] = ACTIONS(2839), - [sym_identifier] = ACTIONS(2841), - [anon_sym_export] = ACTIONS(2841), - [anon_sym_default] = ACTIONS(2841), - [anon_sym_type] = ACTIONS(2841), - [anon_sym_namespace] = ACTIONS(2841), - [anon_sym_LBRACE] = ACTIONS(2839), - [anon_sym_RBRACE] = ACTIONS(2839), - [anon_sym_typeof] = ACTIONS(2841), - [anon_sym_import] = ACTIONS(2841), - [anon_sym_with] = ACTIONS(2841), - [anon_sym_var] = ACTIONS(2841), - [anon_sym_let] = ACTIONS(2841), - [anon_sym_const] = ACTIONS(2841), - [anon_sym_BANG] = ACTIONS(2839), - [anon_sym_else] = ACTIONS(2841), - [anon_sym_if] = ACTIONS(2841), - [anon_sym_switch] = ACTIONS(2841), - [anon_sym_for] = ACTIONS(2841), - [anon_sym_LPAREN] = ACTIONS(2839), - [anon_sym_SEMI] = ACTIONS(2839), - [anon_sym_await] = ACTIONS(2841), - [anon_sym_while] = ACTIONS(2841), - [anon_sym_do] = ACTIONS(2841), - [anon_sym_try] = ACTIONS(2841), - [anon_sym_break] = ACTIONS(2841), - [anon_sym_continue] = ACTIONS(2841), - [anon_sym_debugger] = ACTIONS(2841), - [anon_sym_return] = ACTIONS(2841), - [anon_sym_throw] = ACTIONS(2841), - [anon_sym_case] = ACTIONS(2841), - [anon_sym_yield] = ACTIONS(2841), - [anon_sym_LBRACK] = ACTIONS(2839), - [sym_glimmer_opening_tag] = ACTIONS(2839), - [anon_sym_DQUOTE] = ACTIONS(2839), - [anon_sym_SQUOTE] = ACTIONS(2839), - [anon_sym_class] = ACTIONS(2841), - [anon_sym_async] = ACTIONS(2841), - [anon_sym_function] = ACTIONS(2841), - [anon_sym_new] = ACTIONS(2841), - [anon_sym_using] = ACTIONS(2841), - [anon_sym_PLUS] = ACTIONS(2841), - [anon_sym_DASH] = ACTIONS(2841), - [anon_sym_SLASH] = ACTIONS(2841), - [anon_sym_LT] = ACTIONS(2841), - [anon_sym_TILDE] = ACTIONS(2839), - [anon_sym_void] = ACTIONS(2841), - [anon_sym_delete] = ACTIONS(2841), - [anon_sym_PLUS_PLUS] = ACTIONS(2839), - [anon_sym_DASH_DASH] = ACTIONS(2839), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2839), - [sym_number] = ACTIONS(2839), - [sym_private_property_identifier] = ACTIONS(2839), - [sym_this] = ACTIONS(2841), - [sym_super] = ACTIONS(2841), - [sym_true] = ACTIONS(2841), - [sym_false] = ACTIONS(2841), - [sym_null] = ACTIONS(2841), - [sym_undefined] = ACTIONS(2841), - [anon_sym_AT] = ACTIONS(2839), - [anon_sym_static] = ACTIONS(2841), - [anon_sym_readonly] = ACTIONS(2841), - [anon_sym_get] = ACTIONS(2841), - [anon_sym_set] = ACTIONS(2841), - [anon_sym_declare] = ACTIONS(2841), - [anon_sym_public] = ACTIONS(2841), - [anon_sym_private] = ACTIONS(2841), - [anon_sym_protected] = ACTIONS(2841), - [anon_sym_override] = ACTIONS(2841), - [anon_sym_module] = ACTIONS(2841), - [anon_sym_any] = ACTIONS(2841), - [anon_sym_number] = ACTIONS(2841), - [anon_sym_boolean] = ACTIONS(2841), - [anon_sym_string] = ACTIONS(2841), - [anon_sym_symbol] = ACTIONS(2841), - [anon_sym_object] = ACTIONS(2841), - [anon_sym_abstract] = ACTIONS(2841), - [anon_sym_interface] = ACTIONS(2841), - [anon_sym_enum] = ACTIONS(2841), + [ts_builtin_sym_end] = ACTIONS(2742), + [sym_identifier] = ACTIONS(2744), + [anon_sym_export] = ACTIONS(2744), + [anon_sym_default] = ACTIONS(2744), + [anon_sym_type] = ACTIONS(2744), + [anon_sym_namespace] = ACTIONS(2744), + [anon_sym_LBRACE] = ACTIONS(2742), + [anon_sym_RBRACE] = ACTIONS(2742), + [anon_sym_typeof] = ACTIONS(2744), + [anon_sym_import] = ACTIONS(2744), + [anon_sym_with] = ACTIONS(2744), + [anon_sym_var] = ACTIONS(2744), + [anon_sym_let] = ACTIONS(2744), + [anon_sym_const] = ACTIONS(2744), + [anon_sym_BANG] = ACTIONS(2742), + [anon_sym_else] = ACTIONS(2744), + [anon_sym_if] = ACTIONS(2744), + [anon_sym_switch] = ACTIONS(2744), + [anon_sym_for] = ACTIONS(2744), + [anon_sym_LPAREN] = ACTIONS(2742), + [anon_sym_SEMI] = ACTIONS(2742), + [anon_sym_await] = ACTIONS(2744), + [anon_sym_while] = ACTIONS(2744), + [anon_sym_do] = ACTIONS(2744), + [anon_sym_try] = ACTIONS(2744), + [anon_sym_break] = ACTIONS(2744), + [anon_sym_continue] = ACTIONS(2744), + [anon_sym_debugger] = ACTIONS(2744), + [anon_sym_return] = ACTIONS(2744), + [anon_sym_throw] = ACTIONS(2744), + [anon_sym_case] = ACTIONS(2744), + [anon_sym_yield] = ACTIONS(2744), + [anon_sym_LBRACK] = ACTIONS(2742), + [anon_sym_DQUOTE] = ACTIONS(2742), + [anon_sym_SQUOTE] = ACTIONS(2742), + [anon_sym_class] = ACTIONS(2744), + [anon_sym_async] = ACTIONS(2744), + [anon_sym_function] = ACTIONS(2744), + [anon_sym_new] = ACTIONS(2744), + [anon_sym_using] = ACTIONS(2744), + [anon_sym_PLUS] = ACTIONS(2744), + [anon_sym_DASH] = ACTIONS(2744), + [anon_sym_SLASH] = ACTIONS(2744), + [anon_sym_LT] = ACTIONS(2742), + [anon_sym_TILDE] = ACTIONS(2742), + [anon_sym_void] = ACTIONS(2744), + [anon_sym_delete] = ACTIONS(2744), + [anon_sym_PLUS_PLUS] = ACTIONS(2742), + [anon_sym_DASH_DASH] = ACTIONS(2742), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2742), + [sym_number] = ACTIONS(2742), + [sym_private_property_identifier] = ACTIONS(2742), + [sym_this] = ACTIONS(2744), + [sym_super] = ACTIONS(2744), + [sym_true] = ACTIONS(2744), + [sym_false] = ACTIONS(2744), + [sym_null] = ACTIONS(2744), + [sym_undefined] = ACTIONS(2744), + [anon_sym_AT] = ACTIONS(2742), + [anon_sym_static] = ACTIONS(2744), + [anon_sym_readonly] = ACTIONS(2744), + [anon_sym_get] = ACTIONS(2744), + [anon_sym_set] = ACTIONS(2744), + [anon_sym_declare] = ACTIONS(2744), + [anon_sym_public] = ACTIONS(2744), + [anon_sym_private] = ACTIONS(2744), + [anon_sym_protected] = ACTIONS(2744), + [anon_sym_override] = ACTIONS(2744), + [anon_sym_module] = ACTIONS(2744), + [anon_sym_any] = ACTIONS(2744), + [anon_sym_number] = ACTIONS(2744), + [anon_sym_boolean] = ACTIONS(2744), + [anon_sym_string] = ACTIONS(2744), + [anon_sym_symbol] = ACTIONS(2744), + [anon_sym_object] = ACTIONS(2744), + [anon_sym_abstract] = ACTIONS(2744), + [anon_sym_interface] = ACTIONS(2744), + [anon_sym_enum] = ACTIONS(2744), [sym_html_comment] = ACTIONS(5), }, [880] = { - [ts_builtin_sym_end] = ACTIONS(2843), - [sym_identifier] = ACTIONS(2845), - [anon_sym_export] = ACTIONS(2845), - [anon_sym_default] = ACTIONS(2845), - [anon_sym_type] = ACTIONS(2845), - [anon_sym_namespace] = ACTIONS(2845), - [anon_sym_LBRACE] = ACTIONS(2843), - [anon_sym_RBRACE] = ACTIONS(2843), - [anon_sym_typeof] = ACTIONS(2845), - [anon_sym_import] = ACTIONS(2845), - [anon_sym_with] = ACTIONS(2845), - [anon_sym_var] = ACTIONS(2845), - [anon_sym_let] = ACTIONS(2845), - [anon_sym_const] = ACTIONS(2845), - [anon_sym_BANG] = ACTIONS(2843), - [anon_sym_else] = ACTIONS(2845), - [anon_sym_if] = ACTIONS(2845), - [anon_sym_switch] = ACTIONS(2845), - [anon_sym_for] = ACTIONS(2845), - [anon_sym_LPAREN] = ACTIONS(2843), - [anon_sym_SEMI] = ACTIONS(2843), - [anon_sym_await] = ACTIONS(2845), - [anon_sym_while] = ACTIONS(2845), - [anon_sym_do] = ACTIONS(2845), - [anon_sym_try] = ACTIONS(2845), - [anon_sym_break] = ACTIONS(2845), - [anon_sym_continue] = ACTIONS(2845), - [anon_sym_debugger] = ACTIONS(2845), - [anon_sym_return] = ACTIONS(2845), - [anon_sym_throw] = ACTIONS(2845), - [anon_sym_case] = ACTIONS(2845), - [anon_sym_yield] = ACTIONS(2845), - [anon_sym_LBRACK] = ACTIONS(2843), - [sym_glimmer_opening_tag] = ACTIONS(2843), - [anon_sym_DQUOTE] = ACTIONS(2843), - [anon_sym_SQUOTE] = ACTIONS(2843), - [anon_sym_class] = ACTIONS(2845), - [anon_sym_async] = ACTIONS(2845), - [anon_sym_function] = ACTIONS(2845), - [anon_sym_new] = ACTIONS(2845), - [anon_sym_using] = ACTIONS(2845), - [anon_sym_PLUS] = ACTIONS(2845), - [anon_sym_DASH] = ACTIONS(2845), - [anon_sym_SLASH] = ACTIONS(2845), - [anon_sym_LT] = ACTIONS(2845), - [anon_sym_TILDE] = ACTIONS(2843), - [anon_sym_void] = ACTIONS(2845), - [anon_sym_delete] = ACTIONS(2845), - [anon_sym_PLUS_PLUS] = ACTIONS(2843), - [anon_sym_DASH_DASH] = ACTIONS(2843), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2843), - [sym_number] = ACTIONS(2843), - [sym_private_property_identifier] = ACTIONS(2843), - [sym_this] = ACTIONS(2845), - [sym_super] = ACTIONS(2845), - [sym_true] = ACTIONS(2845), - [sym_false] = ACTIONS(2845), - [sym_null] = ACTIONS(2845), - [sym_undefined] = ACTIONS(2845), - [anon_sym_AT] = ACTIONS(2843), - [anon_sym_static] = ACTIONS(2845), - [anon_sym_readonly] = ACTIONS(2845), - [anon_sym_get] = ACTIONS(2845), - [anon_sym_set] = ACTIONS(2845), - [anon_sym_declare] = ACTIONS(2845), - [anon_sym_public] = ACTIONS(2845), - [anon_sym_private] = ACTIONS(2845), - [anon_sym_protected] = ACTIONS(2845), - [anon_sym_override] = ACTIONS(2845), - [anon_sym_module] = ACTIONS(2845), - [anon_sym_any] = ACTIONS(2845), - [anon_sym_number] = ACTIONS(2845), - [anon_sym_boolean] = ACTIONS(2845), - [anon_sym_string] = ACTIONS(2845), - [anon_sym_symbol] = ACTIONS(2845), - [anon_sym_object] = ACTIONS(2845), - [anon_sym_abstract] = ACTIONS(2845), - [anon_sym_interface] = ACTIONS(2845), - [anon_sym_enum] = ACTIONS(2845), + [ts_builtin_sym_end] = ACTIONS(2824), + [sym_identifier] = ACTIONS(2826), + [anon_sym_export] = ACTIONS(2826), + [anon_sym_default] = ACTIONS(2826), + [anon_sym_type] = ACTIONS(2826), + [anon_sym_namespace] = ACTIONS(2826), + [anon_sym_LBRACE] = ACTIONS(2824), + [anon_sym_RBRACE] = ACTIONS(2824), + [anon_sym_typeof] = ACTIONS(2826), + [anon_sym_import] = ACTIONS(2826), + [anon_sym_with] = ACTIONS(2826), + [anon_sym_var] = ACTIONS(2826), + [anon_sym_let] = ACTIONS(2826), + [anon_sym_const] = ACTIONS(2826), + [anon_sym_BANG] = ACTIONS(2824), + [anon_sym_else] = ACTIONS(2826), + [anon_sym_if] = ACTIONS(2826), + [anon_sym_switch] = ACTIONS(2826), + [anon_sym_for] = ACTIONS(2826), + [anon_sym_LPAREN] = ACTIONS(2824), + [anon_sym_SEMI] = ACTIONS(2824), + [anon_sym_await] = ACTIONS(2826), + [anon_sym_while] = ACTIONS(2826), + [anon_sym_do] = ACTIONS(2826), + [anon_sym_try] = ACTIONS(2826), + [anon_sym_break] = ACTIONS(2826), + [anon_sym_continue] = ACTIONS(2826), + [anon_sym_debugger] = ACTIONS(2826), + [anon_sym_return] = ACTIONS(2826), + [anon_sym_throw] = ACTIONS(2826), + [anon_sym_case] = ACTIONS(2826), + [anon_sym_yield] = ACTIONS(2826), + [anon_sym_LBRACK] = ACTIONS(2824), + [anon_sym_DQUOTE] = ACTIONS(2824), + [anon_sym_SQUOTE] = ACTIONS(2824), + [anon_sym_class] = ACTIONS(2826), + [anon_sym_async] = ACTIONS(2826), + [anon_sym_function] = ACTIONS(2826), + [anon_sym_new] = ACTIONS(2826), + [anon_sym_using] = ACTIONS(2826), + [anon_sym_PLUS] = ACTIONS(2826), + [anon_sym_DASH] = ACTIONS(2826), + [anon_sym_SLASH] = ACTIONS(2826), + [anon_sym_LT] = ACTIONS(2824), + [anon_sym_TILDE] = ACTIONS(2824), + [anon_sym_void] = ACTIONS(2826), + [anon_sym_delete] = ACTIONS(2826), + [anon_sym_PLUS_PLUS] = ACTIONS(2824), + [anon_sym_DASH_DASH] = ACTIONS(2824), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2824), + [sym_number] = ACTIONS(2824), + [sym_private_property_identifier] = ACTIONS(2824), + [sym_this] = ACTIONS(2826), + [sym_super] = ACTIONS(2826), + [sym_true] = ACTIONS(2826), + [sym_false] = ACTIONS(2826), + [sym_null] = ACTIONS(2826), + [sym_undefined] = ACTIONS(2826), + [anon_sym_AT] = ACTIONS(2824), + [anon_sym_static] = ACTIONS(2826), + [anon_sym_readonly] = ACTIONS(2826), + [anon_sym_get] = ACTIONS(2826), + [anon_sym_set] = ACTIONS(2826), + [anon_sym_declare] = ACTIONS(2826), + [anon_sym_public] = ACTIONS(2826), + [anon_sym_private] = ACTIONS(2826), + [anon_sym_protected] = ACTIONS(2826), + [anon_sym_override] = ACTIONS(2826), + [anon_sym_module] = ACTIONS(2826), + [anon_sym_any] = ACTIONS(2826), + [anon_sym_number] = ACTIONS(2826), + [anon_sym_boolean] = ACTIONS(2826), + [anon_sym_string] = ACTIONS(2826), + [anon_sym_symbol] = ACTIONS(2826), + [anon_sym_object] = ACTIONS(2826), + [anon_sym_abstract] = ACTIONS(2826), + [anon_sym_interface] = ACTIONS(2826), + [anon_sym_enum] = ACTIONS(2826), [sym_html_comment] = ACTIONS(5), }, [881] = { - [ts_builtin_sym_end] = ACTIONS(2847), - [sym_identifier] = ACTIONS(2849), - [anon_sym_export] = ACTIONS(2849), - [anon_sym_default] = ACTIONS(2849), - [anon_sym_type] = ACTIONS(2849), - [anon_sym_namespace] = ACTIONS(2849), - [anon_sym_LBRACE] = ACTIONS(2847), - [anon_sym_RBRACE] = ACTIONS(2847), - [anon_sym_typeof] = ACTIONS(2849), - [anon_sym_import] = ACTIONS(2849), - [anon_sym_with] = ACTIONS(2849), - [anon_sym_var] = ACTIONS(2849), - [anon_sym_let] = ACTIONS(2849), - [anon_sym_const] = ACTIONS(2849), - [anon_sym_BANG] = ACTIONS(2847), - [anon_sym_else] = ACTIONS(2849), - [anon_sym_if] = ACTIONS(2849), - [anon_sym_switch] = ACTIONS(2849), - [anon_sym_for] = ACTIONS(2849), - [anon_sym_LPAREN] = ACTIONS(2847), - [anon_sym_SEMI] = ACTIONS(2847), - [anon_sym_await] = ACTIONS(2849), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_do] = ACTIONS(2849), - [anon_sym_try] = ACTIONS(2849), - [anon_sym_break] = ACTIONS(2849), - [anon_sym_continue] = ACTIONS(2849), - [anon_sym_debugger] = ACTIONS(2849), - [anon_sym_return] = ACTIONS(2849), - [anon_sym_throw] = ACTIONS(2849), - [anon_sym_case] = ACTIONS(2849), - [anon_sym_yield] = ACTIONS(2849), - [anon_sym_LBRACK] = ACTIONS(2847), - [sym_glimmer_opening_tag] = ACTIONS(2847), - [anon_sym_DQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_class] = ACTIONS(2849), - [anon_sym_async] = ACTIONS(2849), - [anon_sym_function] = ACTIONS(2849), - [anon_sym_new] = ACTIONS(2849), - [anon_sym_using] = ACTIONS(2849), - [anon_sym_PLUS] = ACTIONS(2849), - [anon_sym_DASH] = ACTIONS(2849), - [anon_sym_SLASH] = ACTIONS(2849), - [anon_sym_LT] = ACTIONS(2849), - [anon_sym_TILDE] = ACTIONS(2847), - [anon_sym_void] = ACTIONS(2849), - [anon_sym_delete] = ACTIONS(2849), - [anon_sym_PLUS_PLUS] = ACTIONS(2847), - [anon_sym_DASH_DASH] = ACTIONS(2847), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2847), - [sym_number] = ACTIONS(2847), - [sym_private_property_identifier] = ACTIONS(2847), - [sym_this] = ACTIONS(2849), - [sym_super] = ACTIONS(2849), - [sym_true] = ACTIONS(2849), - [sym_false] = ACTIONS(2849), - [sym_null] = ACTIONS(2849), - [sym_undefined] = ACTIONS(2849), - [anon_sym_AT] = ACTIONS(2847), - [anon_sym_static] = ACTIONS(2849), - [anon_sym_readonly] = ACTIONS(2849), - [anon_sym_get] = ACTIONS(2849), - [anon_sym_set] = ACTIONS(2849), - [anon_sym_declare] = ACTIONS(2849), - [anon_sym_public] = ACTIONS(2849), - [anon_sym_private] = ACTIONS(2849), - [anon_sym_protected] = ACTIONS(2849), - [anon_sym_override] = ACTIONS(2849), - [anon_sym_module] = ACTIONS(2849), - [anon_sym_any] = ACTIONS(2849), - [anon_sym_number] = ACTIONS(2849), - [anon_sym_boolean] = ACTIONS(2849), - [anon_sym_string] = ACTIONS(2849), - [anon_sym_symbol] = ACTIONS(2849), - [anon_sym_object] = ACTIONS(2849), - [anon_sym_abstract] = ACTIONS(2849), - [anon_sym_interface] = ACTIONS(2849), - [anon_sym_enum] = ACTIONS(2849), + [ts_builtin_sym_end] = ACTIONS(2828), + [sym_identifier] = ACTIONS(2830), + [anon_sym_export] = ACTIONS(2830), + [anon_sym_default] = ACTIONS(2830), + [anon_sym_type] = ACTIONS(2830), + [anon_sym_namespace] = ACTIONS(2830), + [anon_sym_LBRACE] = ACTIONS(2828), + [anon_sym_RBRACE] = ACTIONS(2828), + [anon_sym_typeof] = ACTIONS(2830), + [anon_sym_import] = ACTIONS(2830), + [anon_sym_with] = ACTIONS(2830), + [anon_sym_var] = ACTIONS(2830), + [anon_sym_let] = ACTIONS(2830), + [anon_sym_const] = ACTIONS(2830), + [anon_sym_BANG] = ACTIONS(2828), + [anon_sym_else] = ACTIONS(2830), + [anon_sym_if] = ACTIONS(2830), + [anon_sym_switch] = ACTIONS(2830), + [anon_sym_for] = ACTIONS(2830), + [anon_sym_LPAREN] = ACTIONS(2828), + [anon_sym_SEMI] = ACTIONS(2828), + [anon_sym_await] = ACTIONS(2830), + [anon_sym_while] = ACTIONS(2830), + [anon_sym_do] = ACTIONS(2830), + [anon_sym_try] = ACTIONS(2830), + [anon_sym_break] = ACTIONS(2830), + [anon_sym_continue] = ACTIONS(2830), + [anon_sym_debugger] = ACTIONS(2830), + [anon_sym_return] = ACTIONS(2830), + [anon_sym_throw] = ACTIONS(2830), + [anon_sym_case] = ACTIONS(2830), + [anon_sym_yield] = ACTIONS(2830), + [anon_sym_LBRACK] = ACTIONS(2828), + [anon_sym_DQUOTE] = ACTIONS(2828), + [anon_sym_SQUOTE] = ACTIONS(2828), + [anon_sym_class] = ACTIONS(2830), + [anon_sym_async] = ACTIONS(2830), + [anon_sym_function] = ACTIONS(2830), + [anon_sym_new] = ACTIONS(2830), + [anon_sym_using] = ACTIONS(2830), + [anon_sym_PLUS] = ACTIONS(2830), + [anon_sym_DASH] = ACTIONS(2830), + [anon_sym_SLASH] = ACTIONS(2830), + [anon_sym_LT] = ACTIONS(2828), + [anon_sym_TILDE] = ACTIONS(2828), + [anon_sym_void] = ACTIONS(2830), + [anon_sym_delete] = ACTIONS(2830), + [anon_sym_PLUS_PLUS] = ACTIONS(2828), + [anon_sym_DASH_DASH] = ACTIONS(2828), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2828), + [sym_number] = ACTIONS(2828), + [sym_private_property_identifier] = ACTIONS(2828), + [sym_this] = ACTIONS(2830), + [sym_super] = ACTIONS(2830), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [sym_null] = ACTIONS(2830), + [sym_undefined] = ACTIONS(2830), + [anon_sym_AT] = ACTIONS(2828), + [anon_sym_static] = ACTIONS(2830), + [anon_sym_readonly] = ACTIONS(2830), + [anon_sym_get] = ACTIONS(2830), + [anon_sym_set] = ACTIONS(2830), + [anon_sym_declare] = ACTIONS(2830), + [anon_sym_public] = ACTIONS(2830), + [anon_sym_private] = ACTIONS(2830), + [anon_sym_protected] = ACTIONS(2830), + [anon_sym_override] = ACTIONS(2830), + [anon_sym_module] = ACTIONS(2830), + [anon_sym_any] = ACTIONS(2830), + [anon_sym_number] = ACTIONS(2830), + [anon_sym_boolean] = ACTIONS(2830), + [anon_sym_string] = ACTIONS(2830), + [anon_sym_symbol] = ACTIONS(2830), + [anon_sym_object] = ACTIONS(2830), + [anon_sym_abstract] = ACTIONS(2830), + [anon_sym_interface] = ACTIONS(2830), + [anon_sym_enum] = ACTIONS(2830), [sym_html_comment] = ACTIONS(5), }, [882] = { - [ts_builtin_sym_end] = ACTIONS(2851), - [sym_identifier] = ACTIONS(2853), - [anon_sym_export] = ACTIONS(2853), - [anon_sym_default] = ACTIONS(2853), - [anon_sym_type] = ACTIONS(2853), - [anon_sym_namespace] = ACTIONS(2853), - [anon_sym_LBRACE] = ACTIONS(2851), - [anon_sym_RBRACE] = ACTIONS(2851), - [anon_sym_typeof] = ACTIONS(2853), - [anon_sym_import] = ACTIONS(2853), - [anon_sym_with] = ACTIONS(2853), - [anon_sym_var] = ACTIONS(2853), - [anon_sym_let] = ACTIONS(2853), - [anon_sym_const] = ACTIONS(2853), - [anon_sym_BANG] = ACTIONS(2851), - [anon_sym_else] = ACTIONS(2853), - [anon_sym_if] = ACTIONS(2853), - [anon_sym_switch] = ACTIONS(2853), - [anon_sym_for] = ACTIONS(2853), - [anon_sym_LPAREN] = ACTIONS(2851), - [anon_sym_SEMI] = ACTIONS(2851), - [anon_sym_await] = ACTIONS(2853), - [anon_sym_while] = ACTIONS(2853), - [anon_sym_do] = ACTIONS(2853), - [anon_sym_try] = ACTIONS(2853), - [anon_sym_break] = ACTIONS(2853), - [anon_sym_continue] = ACTIONS(2853), - [anon_sym_debugger] = ACTIONS(2853), - [anon_sym_return] = ACTIONS(2853), - [anon_sym_throw] = ACTIONS(2853), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_yield] = ACTIONS(2853), - [anon_sym_LBRACK] = ACTIONS(2851), - [sym_glimmer_opening_tag] = ACTIONS(2851), - [anon_sym_DQUOTE] = ACTIONS(2851), - [anon_sym_SQUOTE] = ACTIONS(2851), - [anon_sym_class] = ACTIONS(2853), - [anon_sym_async] = ACTIONS(2853), - [anon_sym_function] = ACTIONS(2853), - [anon_sym_new] = ACTIONS(2853), - [anon_sym_using] = ACTIONS(2853), - [anon_sym_PLUS] = ACTIONS(2853), - [anon_sym_DASH] = ACTIONS(2853), - [anon_sym_SLASH] = ACTIONS(2853), - [anon_sym_LT] = ACTIONS(2853), - [anon_sym_TILDE] = ACTIONS(2851), - [anon_sym_void] = ACTIONS(2853), - [anon_sym_delete] = ACTIONS(2853), - [anon_sym_PLUS_PLUS] = ACTIONS(2851), - [anon_sym_DASH_DASH] = ACTIONS(2851), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2851), - [sym_number] = ACTIONS(2851), - [sym_private_property_identifier] = ACTIONS(2851), - [sym_this] = ACTIONS(2853), - [sym_super] = ACTIONS(2853), - [sym_true] = ACTIONS(2853), - [sym_false] = ACTIONS(2853), - [sym_null] = ACTIONS(2853), - [sym_undefined] = ACTIONS(2853), - [anon_sym_AT] = ACTIONS(2851), - [anon_sym_static] = ACTIONS(2853), - [anon_sym_readonly] = ACTIONS(2853), - [anon_sym_get] = ACTIONS(2853), - [anon_sym_set] = ACTIONS(2853), - [anon_sym_declare] = ACTIONS(2853), - [anon_sym_public] = ACTIONS(2853), - [anon_sym_private] = ACTIONS(2853), - [anon_sym_protected] = ACTIONS(2853), - [anon_sym_override] = ACTIONS(2853), - [anon_sym_module] = ACTIONS(2853), - [anon_sym_any] = ACTIONS(2853), - [anon_sym_number] = ACTIONS(2853), - [anon_sym_boolean] = ACTIONS(2853), - [anon_sym_string] = ACTIONS(2853), - [anon_sym_symbol] = ACTIONS(2853), - [anon_sym_object] = ACTIONS(2853), - [anon_sym_abstract] = ACTIONS(2853), - [anon_sym_interface] = ACTIONS(2853), - [anon_sym_enum] = ACTIONS(2853), + [ts_builtin_sym_end] = ACTIONS(2832), + [sym_identifier] = ACTIONS(2834), + [anon_sym_export] = ACTIONS(2834), + [anon_sym_default] = ACTIONS(2834), + [anon_sym_type] = ACTIONS(2834), + [anon_sym_namespace] = ACTIONS(2834), + [anon_sym_LBRACE] = ACTIONS(2832), + [anon_sym_RBRACE] = ACTIONS(2832), + [anon_sym_typeof] = ACTIONS(2834), + [anon_sym_import] = ACTIONS(2834), + [anon_sym_with] = ACTIONS(2834), + [anon_sym_var] = ACTIONS(2834), + [anon_sym_let] = ACTIONS(2834), + [anon_sym_const] = ACTIONS(2834), + [anon_sym_BANG] = ACTIONS(2832), + [anon_sym_else] = ACTIONS(2834), + [anon_sym_if] = ACTIONS(2834), + [anon_sym_switch] = ACTIONS(2834), + [anon_sym_for] = ACTIONS(2834), + [anon_sym_LPAREN] = ACTIONS(2832), + [anon_sym_SEMI] = ACTIONS(2832), + [anon_sym_await] = ACTIONS(2834), + [anon_sym_while] = ACTIONS(2834), + [anon_sym_do] = ACTIONS(2834), + [anon_sym_try] = ACTIONS(2834), + [anon_sym_break] = ACTIONS(2834), + [anon_sym_continue] = ACTIONS(2834), + [anon_sym_debugger] = ACTIONS(2834), + [anon_sym_return] = ACTIONS(2834), + [anon_sym_throw] = ACTIONS(2834), + [anon_sym_case] = ACTIONS(2834), + [anon_sym_yield] = ACTIONS(2834), + [anon_sym_LBRACK] = ACTIONS(2832), + [anon_sym_DQUOTE] = ACTIONS(2832), + [anon_sym_SQUOTE] = ACTIONS(2832), + [anon_sym_class] = ACTIONS(2834), + [anon_sym_async] = ACTIONS(2834), + [anon_sym_function] = ACTIONS(2834), + [anon_sym_new] = ACTIONS(2834), + [anon_sym_using] = ACTIONS(2834), + [anon_sym_PLUS] = ACTIONS(2834), + [anon_sym_DASH] = ACTIONS(2834), + [anon_sym_SLASH] = ACTIONS(2834), + [anon_sym_LT] = ACTIONS(2832), + [anon_sym_TILDE] = ACTIONS(2832), + [anon_sym_void] = ACTIONS(2834), + [anon_sym_delete] = ACTIONS(2834), + [anon_sym_PLUS_PLUS] = ACTIONS(2832), + [anon_sym_DASH_DASH] = ACTIONS(2832), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2832), + [sym_number] = ACTIONS(2832), + [sym_private_property_identifier] = ACTIONS(2832), + [sym_this] = ACTIONS(2834), + [sym_super] = ACTIONS(2834), + [sym_true] = ACTIONS(2834), + [sym_false] = ACTIONS(2834), + [sym_null] = ACTIONS(2834), + [sym_undefined] = ACTIONS(2834), + [anon_sym_AT] = ACTIONS(2832), + [anon_sym_static] = ACTIONS(2834), + [anon_sym_readonly] = ACTIONS(2834), + [anon_sym_get] = ACTIONS(2834), + [anon_sym_set] = ACTIONS(2834), + [anon_sym_declare] = ACTIONS(2834), + [anon_sym_public] = ACTIONS(2834), + [anon_sym_private] = ACTIONS(2834), + [anon_sym_protected] = ACTIONS(2834), + [anon_sym_override] = ACTIONS(2834), + [anon_sym_module] = ACTIONS(2834), + [anon_sym_any] = ACTIONS(2834), + [anon_sym_number] = ACTIONS(2834), + [anon_sym_boolean] = ACTIONS(2834), + [anon_sym_string] = ACTIONS(2834), + [anon_sym_symbol] = ACTIONS(2834), + [anon_sym_object] = ACTIONS(2834), + [anon_sym_abstract] = ACTIONS(2834), + [anon_sym_interface] = ACTIONS(2834), + [anon_sym_enum] = ACTIONS(2834), [sym_html_comment] = ACTIONS(5), }, [883] = { - [ts_builtin_sym_end] = ACTIONS(2855), - [sym_identifier] = ACTIONS(2857), - [anon_sym_export] = ACTIONS(2857), - [anon_sym_default] = ACTIONS(2857), - [anon_sym_type] = ACTIONS(2857), - [anon_sym_namespace] = ACTIONS(2857), - [anon_sym_LBRACE] = ACTIONS(2855), - [anon_sym_RBRACE] = ACTIONS(2855), - [anon_sym_typeof] = ACTIONS(2857), - [anon_sym_import] = ACTIONS(2857), - [anon_sym_with] = ACTIONS(2857), - [anon_sym_var] = ACTIONS(2857), - [anon_sym_let] = ACTIONS(2857), - [anon_sym_const] = ACTIONS(2857), - [anon_sym_BANG] = ACTIONS(2855), - [anon_sym_else] = ACTIONS(2857), - [anon_sym_if] = ACTIONS(2857), - [anon_sym_switch] = ACTIONS(2857), - [anon_sym_for] = ACTIONS(2857), - [anon_sym_LPAREN] = ACTIONS(2855), - [anon_sym_SEMI] = ACTIONS(2855), - [anon_sym_await] = ACTIONS(2857), - [anon_sym_while] = ACTIONS(2857), - [anon_sym_do] = ACTIONS(2857), - [anon_sym_try] = ACTIONS(2857), - [anon_sym_break] = ACTIONS(2857), - [anon_sym_continue] = ACTIONS(2857), - [anon_sym_debugger] = ACTIONS(2857), - [anon_sym_return] = ACTIONS(2857), - [anon_sym_throw] = ACTIONS(2857), - [anon_sym_case] = ACTIONS(2857), - [anon_sym_yield] = ACTIONS(2857), - [anon_sym_LBRACK] = ACTIONS(2855), - [sym_glimmer_opening_tag] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(2855), - [anon_sym_SQUOTE] = ACTIONS(2855), - [anon_sym_class] = ACTIONS(2857), - [anon_sym_async] = ACTIONS(2857), - [anon_sym_function] = ACTIONS(2857), - [anon_sym_new] = ACTIONS(2857), - [anon_sym_using] = ACTIONS(2857), - [anon_sym_PLUS] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2857), - [anon_sym_SLASH] = ACTIONS(2857), - [anon_sym_LT] = ACTIONS(2857), - [anon_sym_TILDE] = ACTIONS(2855), - [anon_sym_void] = ACTIONS(2857), - [anon_sym_delete] = ACTIONS(2857), - [anon_sym_PLUS_PLUS] = ACTIONS(2855), - [anon_sym_DASH_DASH] = ACTIONS(2855), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2855), - [sym_number] = ACTIONS(2855), - [sym_private_property_identifier] = ACTIONS(2855), - [sym_this] = ACTIONS(2857), - [sym_super] = ACTIONS(2857), - [sym_true] = ACTIONS(2857), - [sym_false] = ACTIONS(2857), - [sym_null] = ACTIONS(2857), - [sym_undefined] = ACTIONS(2857), - [anon_sym_AT] = ACTIONS(2855), - [anon_sym_static] = ACTIONS(2857), - [anon_sym_readonly] = ACTIONS(2857), - [anon_sym_get] = ACTIONS(2857), - [anon_sym_set] = ACTIONS(2857), - [anon_sym_declare] = ACTIONS(2857), - [anon_sym_public] = ACTIONS(2857), - [anon_sym_private] = ACTIONS(2857), - [anon_sym_protected] = ACTIONS(2857), - [anon_sym_override] = ACTIONS(2857), - [anon_sym_module] = ACTIONS(2857), - [anon_sym_any] = ACTIONS(2857), - [anon_sym_number] = ACTIONS(2857), - [anon_sym_boolean] = ACTIONS(2857), - [anon_sym_string] = ACTIONS(2857), - [anon_sym_symbol] = ACTIONS(2857), - [anon_sym_object] = ACTIONS(2857), - [anon_sym_abstract] = ACTIONS(2857), - [anon_sym_interface] = ACTIONS(2857), - [anon_sym_enum] = ACTIONS(2857), + [ts_builtin_sym_end] = ACTIONS(2836), + [sym_identifier] = ACTIONS(2838), + [anon_sym_export] = ACTIONS(2838), + [anon_sym_default] = ACTIONS(2838), + [anon_sym_type] = ACTIONS(2838), + [anon_sym_namespace] = ACTIONS(2838), + [anon_sym_LBRACE] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(2836), + [anon_sym_typeof] = ACTIONS(2838), + [anon_sym_import] = ACTIONS(2838), + [anon_sym_with] = ACTIONS(2838), + [anon_sym_var] = ACTIONS(2838), + [anon_sym_let] = ACTIONS(2838), + [anon_sym_const] = ACTIONS(2838), + [anon_sym_BANG] = ACTIONS(2836), + [anon_sym_else] = ACTIONS(2838), + [anon_sym_if] = ACTIONS(2838), + [anon_sym_switch] = ACTIONS(2838), + [anon_sym_for] = ACTIONS(2838), + [anon_sym_LPAREN] = ACTIONS(2836), + [anon_sym_SEMI] = ACTIONS(2836), + [anon_sym_await] = ACTIONS(2838), + [anon_sym_while] = ACTIONS(2838), + [anon_sym_do] = ACTIONS(2838), + [anon_sym_try] = ACTIONS(2838), + [anon_sym_break] = ACTIONS(2838), + [anon_sym_continue] = ACTIONS(2838), + [anon_sym_debugger] = ACTIONS(2838), + [anon_sym_return] = ACTIONS(2838), + [anon_sym_throw] = ACTIONS(2838), + [anon_sym_case] = ACTIONS(2838), + [anon_sym_yield] = ACTIONS(2838), + [anon_sym_LBRACK] = ACTIONS(2836), + [anon_sym_DQUOTE] = ACTIONS(2836), + [anon_sym_SQUOTE] = ACTIONS(2836), + [anon_sym_class] = ACTIONS(2838), + [anon_sym_async] = ACTIONS(2838), + [anon_sym_function] = ACTIONS(2838), + [anon_sym_new] = ACTIONS(2838), + [anon_sym_using] = ACTIONS(2838), + [anon_sym_PLUS] = ACTIONS(2838), + [anon_sym_DASH] = ACTIONS(2838), + [anon_sym_SLASH] = ACTIONS(2838), + [anon_sym_LT] = ACTIONS(2836), + [anon_sym_TILDE] = ACTIONS(2836), + [anon_sym_void] = ACTIONS(2838), + [anon_sym_delete] = ACTIONS(2838), + [anon_sym_PLUS_PLUS] = ACTIONS(2836), + [anon_sym_DASH_DASH] = ACTIONS(2836), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2836), + [sym_number] = ACTIONS(2836), + [sym_private_property_identifier] = ACTIONS(2836), + [sym_this] = ACTIONS(2838), + [sym_super] = ACTIONS(2838), + [sym_true] = ACTIONS(2838), + [sym_false] = ACTIONS(2838), + [sym_null] = ACTIONS(2838), + [sym_undefined] = ACTIONS(2838), + [anon_sym_AT] = ACTIONS(2836), + [anon_sym_static] = ACTIONS(2838), + [anon_sym_readonly] = ACTIONS(2838), + [anon_sym_get] = ACTIONS(2838), + [anon_sym_set] = ACTIONS(2838), + [anon_sym_declare] = ACTIONS(2838), + [anon_sym_public] = ACTIONS(2838), + [anon_sym_private] = ACTIONS(2838), + [anon_sym_protected] = ACTIONS(2838), + [anon_sym_override] = ACTIONS(2838), + [anon_sym_module] = ACTIONS(2838), + [anon_sym_any] = ACTIONS(2838), + [anon_sym_number] = ACTIONS(2838), + [anon_sym_boolean] = ACTIONS(2838), + [anon_sym_string] = ACTIONS(2838), + [anon_sym_symbol] = ACTIONS(2838), + [anon_sym_object] = ACTIONS(2838), + [anon_sym_abstract] = ACTIONS(2838), + [anon_sym_interface] = ACTIONS(2838), + [anon_sym_enum] = ACTIONS(2838), [sym_html_comment] = ACTIONS(5), }, [884] = { - [ts_builtin_sym_end] = ACTIONS(2859), - [sym_identifier] = ACTIONS(2861), - [anon_sym_export] = ACTIONS(2861), - [anon_sym_default] = ACTIONS(2861), - [anon_sym_type] = ACTIONS(2861), - [anon_sym_namespace] = ACTIONS(2861), - [anon_sym_LBRACE] = ACTIONS(2859), - [anon_sym_RBRACE] = ACTIONS(2859), - [anon_sym_typeof] = ACTIONS(2861), - [anon_sym_import] = ACTIONS(2861), - [anon_sym_with] = ACTIONS(2861), - [anon_sym_var] = ACTIONS(2861), - [anon_sym_let] = ACTIONS(2861), - [anon_sym_const] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2861), - [anon_sym_if] = ACTIONS(2861), - [anon_sym_switch] = ACTIONS(2861), - [anon_sym_for] = ACTIONS(2861), - [anon_sym_LPAREN] = ACTIONS(2859), - [anon_sym_SEMI] = ACTIONS(2859), - [anon_sym_await] = ACTIONS(2861), - [anon_sym_while] = ACTIONS(2861), - [anon_sym_do] = ACTIONS(2861), - [anon_sym_try] = ACTIONS(2861), - [anon_sym_break] = ACTIONS(2861), - [anon_sym_continue] = ACTIONS(2861), - [anon_sym_debugger] = ACTIONS(2861), - [anon_sym_return] = ACTIONS(2861), - [anon_sym_throw] = ACTIONS(2861), - [anon_sym_case] = ACTIONS(2861), - [anon_sym_yield] = ACTIONS(2861), - [anon_sym_LBRACK] = ACTIONS(2859), - [sym_glimmer_opening_tag] = ACTIONS(2859), - [anon_sym_DQUOTE] = ACTIONS(2859), - [anon_sym_SQUOTE] = ACTIONS(2859), - [anon_sym_class] = ACTIONS(2861), - [anon_sym_async] = ACTIONS(2861), - [anon_sym_function] = ACTIONS(2861), - [anon_sym_new] = ACTIONS(2861), - [anon_sym_using] = ACTIONS(2861), - [anon_sym_PLUS] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2861), - [anon_sym_SLASH] = ACTIONS(2861), - [anon_sym_LT] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2859), - [anon_sym_void] = ACTIONS(2861), - [anon_sym_delete] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2859), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2859), - [sym_number] = ACTIONS(2859), - [sym_private_property_identifier] = ACTIONS(2859), - [sym_this] = ACTIONS(2861), - [sym_super] = ACTIONS(2861), - [sym_true] = ACTIONS(2861), - [sym_false] = ACTIONS(2861), - [sym_null] = ACTIONS(2861), - [sym_undefined] = ACTIONS(2861), - [anon_sym_AT] = ACTIONS(2859), - [anon_sym_static] = ACTIONS(2861), - [anon_sym_readonly] = ACTIONS(2861), - [anon_sym_get] = ACTIONS(2861), - [anon_sym_set] = ACTIONS(2861), - [anon_sym_declare] = ACTIONS(2861), - [anon_sym_public] = ACTIONS(2861), - [anon_sym_private] = ACTIONS(2861), - [anon_sym_protected] = ACTIONS(2861), - [anon_sym_override] = ACTIONS(2861), - [anon_sym_module] = ACTIONS(2861), - [anon_sym_any] = ACTIONS(2861), - [anon_sym_number] = ACTIONS(2861), - [anon_sym_boolean] = ACTIONS(2861), - [anon_sym_string] = ACTIONS(2861), - [anon_sym_symbol] = ACTIONS(2861), - [anon_sym_object] = ACTIONS(2861), - [anon_sym_abstract] = ACTIONS(2861), - [anon_sym_interface] = ACTIONS(2861), - [anon_sym_enum] = ACTIONS(2861), + [ts_builtin_sym_end] = ACTIONS(2840), + [sym_identifier] = ACTIONS(2842), + [anon_sym_export] = ACTIONS(2842), + [anon_sym_default] = ACTIONS(2842), + [anon_sym_type] = ACTIONS(2842), + [anon_sym_namespace] = ACTIONS(2842), + [anon_sym_LBRACE] = ACTIONS(2840), + [anon_sym_RBRACE] = ACTIONS(2840), + [anon_sym_typeof] = ACTIONS(2842), + [anon_sym_import] = ACTIONS(2842), + [anon_sym_with] = ACTIONS(2842), + [anon_sym_var] = ACTIONS(2842), + [anon_sym_let] = ACTIONS(2842), + [anon_sym_const] = ACTIONS(2842), + [anon_sym_BANG] = ACTIONS(2840), + [anon_sym_else] = ACTIONS(2842), + [anon_sym_if] = ACTIONS(2842), + [anon_sym_switch] = ACTIONS(2842), + [anon_sym_for] = ACTIONS(2842), + [anon_sym_LPAREN] = ACTIONS(2840), + [anon_sym_SEMI] = ACTIONS(2840), + [anon_sym_await] = ACTIONS(2842), + [anon_sym_while] = ACTIONS(2842), + [anon_sym_do] = ACTIONS(2842), + [anon_sym_try] = ACTIONS(2842), + [anon_sym_break] = ACTIONS(2842), + [anon_sym_continue] = ACTIONS(2842), + [anon_sym_debugger] = ACTIONS(2842), + [anon_sym_return] = ACTIONS(2842), + [anon_sym_throw] = ACTIONS(2842), + [anon_sym_case] = ACTIONS(2842), + [anon_sym_yield] = ACTIONS(2842), + [anon_sym_LBRACK] = ACTIONS(2840), + [anon_sym_DQUOTE] = ACTIONS(2840), + [anon_sym_SQUOTE] = ACTIONS(2840), + [anon_sym_class] = ACTIONS(2842), + [anon_sym_async] = ACTIONS(2842), + [anon_sym_function] = ACTIONS(2842), + [anon_sym_new] = ACTIONS(2842), + [anon_sym_using] = ACTIONS(2842), + [anon_sym_PLUS] = ACTIONS(2842), + [anon_sym_DASH] = ACTIONS(2842), + [anon_sym_SLASH] = ACTIONS(2842), + [anon_sym_LT] = ACTIONS(2840), + [anon_sym_TILDE] = ACTIONS(2840), + [anon_sym_void] = ACTIONS(2842), + [anon_sym_delete] = ACTIONS(2842), + [anon_sym_PLUS_PLUS] = ACTIONS(2840), + [anon_sym_DASH_DASH] = ACTIONS(2840), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2840), + [sym_number] = ACTIONS(2840), + [sym_private_property_identifier] = ACTIONS(2840), + [sym_this] = ACTIONS(2842), + [sym_super] = ACTIONS(2842), + [sym_true] = ACTIONS(2842), + [sym_false] = ACTIONS(2842), + [sym_null] = ACTIONS(2842), + [sym_undefined] = ACTIONS(2842), + [anon_sym_AT] = ACTIONS(2840), + [anon_sym_static] = ACTIONS(2842), + [anon_sym_readonly] = ACTIONS(2842), + [anon_sym_get] = ACTIONS(2842), + [anon_sym_set] = ACTIONS(2842), + [anon_sym_declare] = ACTIONS(2842), + [anon_sym_public] = ACTIONS(2842), + [anon_sym_private] = ACTIONS(2842), + [anon_sym_protected] = ACTIONS(2842), + [anon_sym_override] = ACTIONS(2842), + [anon_sym_module] = ACTIONS(2842), + [anon_sym_any] = ACTIONS(2842), + [anon_sym_number] = ACTIONS(2842), + [anon_sym_boolean] = ACTIONS(2842), + [anon_sym_string] = ACTIONS(2842), + [anon_sym_symbol] = ACTIONS(2842), + [anon_sym_object] = ACTIONS(2842), + [anon_sym_abstract] = ACTIONS(2842), + [anon_sym_interface] = ACTIONS(2842), + [anon_sym_enum] = ACTIONS(2842), [sym_html_comment] = ACTIONS(5), }, [885] = { - [ts_builtin_sym_end] = ACTIONS(2863), - [sym_identifier] = ACTIONS(2865), - [anon_sym_export] = ACTIONS(2865), - [anon_sym_default] = ACTIONS(2865), - [anon_sym_type] = ACTIONS(2865), - [anon_sym_namespace] = ACTIONS(2865), - [anon_sym_LBRACE] = ACTIONS(2863), - [anon_sym_RBRACE] = ACTIONS(2863), - [anon_sym_typeof] = ACTIONS(2865), - [anon_sym_import] = ACTIONS(2865), - [anon_sym_with] = ACTIONS(2865), - [anon_sym_var] = ACTIONS(2865), - [anon_sym_let] = ACTIONS(2865), - [anon_sym_const] = ACTIONS(2865), - [anon_sym_BANG] = ACTIONS(2863), - [anon_sym_else] = ACTIONS(2865), - [anon_sym_if] = ACTIONS(2865), - [anon_sym_switch] = ACTIONS(2865), - [anon_sym_for] = ACTIONS(2865), - [anon_sym_LPAREN] = ACTIONS(2863), - [anon_sym_SEMI] = ACTIONS(2863), - [anon_sym_await] = ACTIONS(2865), - [anon_sym_while] = ACTIONS(2865), - [anon_sym_do] = ACTIONS(2865), - [anon_sym_try] = ACTIONS(2865), - [anon_sym_break] = ACTIONS(2865), - [anon_sym_continue] = ACTIONS(2865), - [anon_sym_debugger] = ACTIONS(2865), - [anon_sym_return] = ACTIONS(2865), - [anon_sym_throw] = ACTIONS(2865), - [anon_sym_case] = ACTIONS(2865), - [anon_sym_yield] = ACTIONS(2865), - [anon_sym_LBRACK] = ACTIONS(2863), - [sym_glimmer_opening_tag] = ACTIONS(2863), - [anon_sym_DQUOTE] = ACTIONS(2863), - [anon_sym_SQUOTE] = ACTIONS(2863), - [anon_sym_class] = ACTIONS(2865), - [anon_sym_async] = ACTIONS(2865), - [anon_sym_function] = ACTIONS(2865), - [anon_sym_new] = ACTIONS(2865), - [anon_sym_using] = ACTIONS(2865), - [anon_sym_PLUS] = ACTIONS(2865), - [anon_sym_DASH] = ACTIONS(2865), - [anon_sym_SLASH] = ACTIONS(2865), - [anon_sym_LT] = ACTIONS(2865), - [anon_sym_TILDE] = ACTIONS(2863), - [anon_sym_void] = ACTIONS(2865), - [anon_sym_delete] = ACTIONS(2865), - [anon_sym_PLUS_PLUS] = ACTIONS(2863), - [anon_sym_DASH_DASH] = ACTIONS(2863), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2863), - [sym_number] = ACTIONS(2863), - [sym_private_property_identifier] = ACTIONS(2863), - [sym_this] = ACTIONS(2865), - [sym_super] = ACTIONS(2865), - [sym_true] = ACTIONS(2865), - [sym_false] = ACTIONS(2865), - [sym_null] = ACTIONS(2865), - [sym_undefined] = ACTIONS(2865), - [anon_sym_AT] = ACTIONS(2863), - [anon_sym_static] = ACTIONS(2865), - [anon_sym_readonly] = ACTIONS(2865), - [anon_sym_get] = ACTIONS(2865), - [anon_sym_set] = ACTIONS(2865), - [anon_sym_declare] = ACTIONS(2865), - [anon_sym_public] = ACTIONS(2865), - [anon_sym_private] = ACTIONS(2865), - [anon_sym_protected] = ACTIONS(2865), - [anon_sym_override] = ACTIONS(2865), - [anon_sym_module] = ACTIONS(2865), - [anon_sym_any] = ACTIONS(2865), - [anon_sym_number] = ACTIONS(2865), - [anon_sym_boolean] = ACTIONS(2865), - [anon_sym_string] = ACTIONS(2865), - [anon_sym_symbol] = ACTIONS(2865), - [anon_sym_object] = ACTIONS(2865), - [anon_sym_abstract] = ACTIONS(2865), - [anon_sym_interface] = ACTIONS(2865), - [anon_sym_enum] = ACTIONS(2865), + [ts_builtin_sym_end] = ACTIONS(2844), + [sym_identifier] = ACTIONS(2846), + [anon_sym_export] = ACTIONS(2846), + [anon_sym_default] = ACTIONS(2846), + [anon_sym_type] = ACTIONS(2846), + [anon_sym_namespace] = ACTIONS(2846), + [anon_sym_LBRACE] = ACTIONS(2844), + [anon_sym_RBRACE] = ACTIONS(2844), + [anon_sym_typeof] = ACTIONS(2846), + [anon_sym_import] = ACTIONS(2846), + [anon_sym_with] = ACTIONS(2846), + [anon_sym_var] = ACTIONS(2846), + [anon_sym_let] = ACTIONS(2846), + [anon_sym_const] = ACTIONS(2846), + [anon_sym_BANG] = ACTIONS(2844), + [anon_sym_else] = ACTIONS(2846), + [anon_sym_if] = ACTIONS(2846), + [anon_sym_switch] = ACTIONS(2846), + [anon_sym_for] = ACTIONS(2846), + [anon_sym_LPAREN] = ACTIONS(2844), + [anon_sym_SEMI] = ACTIONS(2844), + [anon_sym_await] = ACTIONS(2846), + [anon_sym_while] = ACTIONS(2846), + [anon_sym_do] = ACTIONS(2846), + [anon_sym_try] = ACTIONS(2846), + [anon_sym_break] = ACTIONS(2846), + [anon_sym_continue] = ACTIONS(2846), + [anon_sym_debugger] = ACTIONS(2846), + [anon_sym_return] = ACTIONS(2846), + [anon_sym_throw] = ACTIONS(2846), + [anon_sym_case] = ACTIONS(2846), + [anon_sym_yield] = ACTIONS(2846), + [anon_sym_LBRACK] = ACTIONS(2844), + [anon_sym_DQUOTE] = ACTIONS(2844), + [anon_sym_SQUOTE] = ACTIONS(2844), + [anon_sym_class] = ACTIONS(2846), + [anon_sym_async] = ACTIONS(2846), + [anon_sym_function] = ACTIONS(2846), + [anon_sym_new] = ACTIONS(2846), + [anon_sym_using] = ACTIONS(2846), + [anon_sym_PLUS] = ACTIONS(2846), + [anon_sym_DASH] = ACTIONS(2846), + [anon_sym_SLASH] = ACTIONS(2846), + [anon_sym_LT] = ACTIONS(2844), + [anon_sym_TILDE] = ACTIONS(2844), + [anon_sym_void] = ACTIONS(2846), + [anon_sym_delete] = ACTIONS(2846), + [anon_sym_PLUS_PLUS] = ACTIONS(2844), + [anon_sym_DASH_DASH] = ACTIONS(2844), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2844), + [sym_number] = ACTIONS(2844), + [sym_private_property_identifier] = ACTIONS(2844), + [sym_this] = ACTIONS(2846), + [sym_super] = ACTIONS(2846), + [sym_true] = ACTIONS(2846), + [sym_false] = ACTIONS(2846), + [sym_null] = ACTIONS(2846), + [sym_undefined] = ACTIONS(2846), + [anon_sym_AT] = ACTIONS(2844), + [anon_sym_static] = ACTIONS(2846), + [anon_sym_readonly] = ACTIONS(2846), + [anon_sym_get] = ACTIONS(2846), + [anon_sym_set] = ACTIONS(2846), + [anon_sym_declare] = ACTIONS(2846), + [anon_sym_public] = ACTIONS(2846), + [anon_sym_private] = ACTIONS(2846), + [anon_sym_protected] = ACTIONS(2846), + [anon_sym_override] = ACTIONS(2846), + [anon_sym_module] = ACTIONS(2846), + [anon_sym_any] = ACTIONS(2846), + [anon_sym_number] = ACTIONS(2846), + [anon_sym_boolean] = ACTIONS(2846), + [anon_sym_string] = ACTIONS(2846), + [anon_sym_symbol] = ACTIONS(2846), + [anon_sym_object] = ACTIONS(2846), + [anon_sym_abstract] = ACTIONS(2846), + [anon_sym_interface] = ACTIONS(2846), + [anon_sym_enum] = ACTIONS(2846), [sym_html_comment] = ACTIONS(5), }, [886] = { - [ts_builtin_sym_end] = ACTIONS(2867), - [sym_identifier] = ACTIONS(2869), - [anon_sym_export] = ACTIONS(2869), - [anon_sym_default] = ACTIONS(2869), - [anon_sym_type] = ACTIONS(2869), - [anon_sym_namespace] = ACTIONS(2869), - [anon_sym_LBRACE] = ACTIONS(2867), - [anon_sym_RBRACE] = ACTIONS(2867), - [anon_sym_typeof] = ACTIONS(2869), - [anon_sym_import] = ACTIONS(2869), - [anon_sym_with] = ACTIONS(2869), - [anon_sym_var] = ACTIONS(2869), - [anon_sym_let] = ACTIONS(2869), - [anon_sym_const] = ACTIONS(2869), - [anon_sym_BANG] = ACTIONS(2867), - [anon_sym_else] = ACTIONS(2869), - [anon_sym_if] = ACTIONS(2869), - [anon_sym_switch] = ACTIONS(2869), - [anon_sym_for] = ACTIONS(2869), - [anon_sym_LPAREN] = ACTIONS(2867), - [anon_sym_SEMI] = ACTIONS(2867), - [anon_sym_await] = ACTIONS(2869), - [anon_sym_while] = ACTIONS(2869), - [anon_sym_do] = ACTIONS(2869), - [anon_sym_try] = ACTIONS(2869), - [anon_sym_break] = ACTIONS(2869), - [anon_sym_continue] = ACTIONS(2869), - [anon_sym_debugger] = ACTIONS(2869), - [anon_sym_return] = ACTIONS(2869), - [anon_sym_throw] = ACTIONS(2869), - [anon_sym_case] = ACTIONS(2869), - [anon_sym_yield] = ACTIONS(2869), - [anon_sym_LBRACK] = ACTIONS(2867), - [sym_glimmer_opening_tag] = ACTIONS(2867), - [anon_sym_DQUOTE] = ACTIONS(2867), - [anon_sym_SQUOTE] = ACTIONS(2867), - [anon_sym_class] = ACTIONS(2869), - [anon_sym_async] = ACTIONS(2869), - [anon_sym_function] = ACTIONS(2869), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_using] = ACTIONS(2869), - [anon_sym_PLUS] = ACTIONS(2869), - [anon_sym_DASH] = ACTIONS(2869), - [anon_sym_SLASH] = ACTIONS(2869), - [anon_sym_LT] = ACTIONS(2869), - [anon_sym_TILDE] = ACTIONS(2867), - [anon_sym_void] = ACTIONS(2869), - [anon_sym_delete] = ACTIONS(2869), - [anon_sym_PLUS_PLUS] = ACTIONS(2867), - [anon_sym_DASH_DASH] = ACTIONS(2867), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2867), - [sym_number] = ACTIONS(2867), - [sym_private_property_identifier] = ACTIONS(2867), - [sym_this] = ACTIONS(2869), - [sym_super] = ACTIONS(2869), - [sym_true] = ACTIONS(2869), - [sym_false] = ACTIONS(2869), - [sym_null] = ACTIONS(2869), - [sym_undefined] = ACTIONS(2869), - [anon_sym_AT] = ACTIONS(2867), - [anon_sym_static] = ACTIONS(2869), - [anon_sym_readonly] = ACTIONS(2869), - [anon_sym_get] = ACTIONS(2869), - [anon_sym_set] = ACTIONS(2869), - [anon_sym_declare] = ACTIONS(2869), - [anon_sym_public] = ACTIONS(2869), - [anon_sym_private] = ACTIONS(2869), - [anon_sym_protected] = ACTIONS(2869), - [anon_sym_override] = ACTIONS(2869), - [anon_sym_module] = ACTIONS(2869), - [anon_sym_any] = ACTIONS(2869), - [anon_sym_number] = ACTIONS(2869), - [anon_sym_boolean] = ACTIONS(2869), - [anon_sym_string] = ACTIONS(2869), - [anon_sym_symbol] = ACTIONS(2869), - [anon_sym_object] = ACTIONS(2869), - [anon_sym_abstract] = ACTIONS(2869), - [anon_sym_interface] = ACTIONS(2869), - [anon_sym_enum] = ACTIONS(2869), + [ts_builtin_sym_end] = ACTIONS(2848), + [sym_identifier] = ACTIONS(2850), + [anon_sym_export] = ACTIONS(2850), + [anon_sym_default] = ACTIONS(2850), + [anon_sym_type] = ACTIONS(2850), + [anon_sym_namespace] = ACTIONS(2850), + [anon_sym_LBRACE] = ACTIONS(2848), + [anon_sym_RBRACE] = ACTIONS(2848), + [anon_sym_typeof] = ACTIONS(2850), + [anon_sym_import] = ACTIONS(2850), + [anon_sym_with] = ACTIONS(2850), + [anon_sym_var] = ACTIONS(2850), + [anon_sym_let] = ACTIONS(2850), + [anon_sym_const] = ACTIONS(2850), + [anon_sym_BANG] = ACTIONS(2848), + [anon_sym_else] = ACTIONS(2850), + [anon_sym_if] = ACTIONS(2850), + [anon_sym_switch] = ACTIONS(2850), + [anon_sym_for] = ACTIONS(2850), + [anon_sym_LPAREN] = ACTIONS(2848), + [anon_sym_SEMI] = ACTIONS(2848), + [anon_sym_await] = ACTIONS(2850), + [anon_sym_while] = ACTIONS(2850), + [anon_sym_do] = ACTIONS(2850), + [anon_sym_try] = ACTIONS(2850), + [anon_sym_break] = ACTIONS(2850), + [anon_sym_continue] = ACTIONS(2850), + [anon_sym_debugger] = ACTIONS(2850), + [anon_sym_return] = ACTIONS(2850), + [anon_sym_throw] = ACTIONS(2850), + [anon_sym_case] = ACTIONS(2850), + [anon_sym_yield] = ACTIONS(2850), + [anon_sym_LBRACK] = ACTIONS(2848), + [anon_sym_DQUOTE] = ACTIONS(2848), + [anon_sym_SQUOTE] = ACTIONS(2848), + [anon_sym_class] = ACTIONS(2850), + [anon_sym_async] = ACTIONS(2850), + [anon_sym_function] = ACTIONS(2850), + [anon_sym_new] = ACTIONS(2850), + [anon_sym_using] = ACTIONS(2850), + [anon_sym_PLUS] = ACTIONS(2850), + [anon_sym_DASH] = ACTIONS(2850), + [anon_sym_SLASH] = ACTIONS(2850), + [anon_sym_LT] = ACTIONS(2848), + [anon_sym_TILDE] = ACTIONS(2848), + [anon_sym_void] = ACTIONS(2850), + [anon_sym_delete] = ACTIONS(2850), + [anon_sym_PLUS_PLUS] = ACTIONS(2848), + [anon_sym_DASH_DASH] = ACTIONS(2848), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2848), + [sym_number] = ACTIONS(2848), + [sym_private_property_identifier] = ACTIONS(2848), + [sym_this] = ACTIONS(2850), + [sym_super] = ACTIONS(2850), + [sym_true] = ACTIONS(2850), + [sym_false] = ACTIONS(2850), + [sym_null] = ACTIONS(2850), + [sym_undefined] = ACTIONS(2850), + [anon_sym_AT] = ACTIONS(2848), + [anon_sym_static] = ACTIONS(2850), + [anon_sym_readonly] = ACTIONS(2850), + [anon_sym_get] = ACTIONS(2850), + [anon_sym_set] = ACTIONS(2850), + [anon_sym_declare] = ACTIONS(2850), + [anon_sym_public] = ACTIONS(2850), + [anon_sym_private] = ACTIONS(2850), + [anon_sym_protected] = ACTIONS(2850), + [anon_sym_override] = ACTIONS(2850), + [anon_sym_module] = ACTIONS(2850), + [anon_sym_any] = ACTIONS(2850), + [anon_sym_number] = ACTIONS(2850), + [anon_sym_boolean] = ACTIONS(2850), + [anon_sym_string] = ACTIONS(2850), + [anon_sym_symbol] = ACTIONS(2850), + [anon_sym_object] = ACTIONS(2850), + [anon_sym_abstract] = ACTIONS(2850), + [anon_sym_interface] = ACTIONS(2850), + [anon_sym_enum] = ACTIONS(2850), [sym_html_comment] = ACTIONS(5), }, [887] = { - [ts_builtin_sym_end] = ACTIONS(2871), - [sym_identifier] = ACTIONS(2873), - [anon_sym_export] = ACTIONS(2873), - [anon_sym_default] = ACTIONS(2873), - [anon_sym_type] = ACTIONS(2873), - [anon_sym_namespace] = ACTIONS(2873), - [anon_sym_LBRACE] = ACTIONS(2871), - [anon_sym_RBRACE] = ACTIONS(2871), - [anon_sym_typeof] = ACTIONS(2873), - [anon_sym_import] = ACTIONS(2873), - [anon_sym_with] = ACTIONS(2873), - [anon_sym_var] = ACTIONS(2873), - [anon_sym_let] = ACTIONS(2873), - [anon_sym_const] = ACTIONS(2873), - [anon_sym_BANG] = ACTIONS(2871), - [anon_sym_else] = ACTIONS(2873), - [anon_sym_if] = ACTIONS(2873), - [anon_sym_switch] = ACTIONS(2873), - [anon_sym_for] = ACTIONS(2873), - [anon_sym_LPAREN] = ACTIONS(2871), - [anon_sym_SEMI] = ACTIONS(2871), - [anon_sym_await] = ACTIONS(2873), - [anon_sym_while] = ACTIONS(2873), - [anon_sym_do] = ACTIONS(2873), - [anon_sym_try] = ACTIONS(2873), - [anon_sym_break] = ACTIONS(2873), - [anon_sym_continue] = ACTIONS(2873), - [anon_sym_debugger] = ACTIONS(2873), - [anon_sym_return] = ACTIONS(2873), - [anon_sym_throw] = ACTIONS(2873), - [anon_sym_case] = ACTIONS(2873), - [anon_sym_yield] = ACTIONS(2873), - [anon_sym_LBRACK] = ACTIONS(2871), - [sym_glimmer_opening_tag] = ACTIONS(2871), - [anon_sym_DQUOTE] = ACTIONS(2871), - [anon_sym_SQUOTE] = ACTIONS(2871), - [anon_sym_class] = ACTIONS(2873), - [anon_sym_async] = ACTIONS(2873), - [anon_sym_function] = ACTIONS(2873), - [anon_sym_new] = ACTIONS(2873), - [anon_sym_using] = ACTIONS(2873), - [anon_sym_PLUS] = ACTIONS(2873), - [anon_sym_DASH] = ACTIONS(2873), - [anon_sym_SLASH] = ACTIONS(2873), - [anon_sym_LT] = ACTIONS(2873), - [anon_sym_TILDE] = ACTIONS(2871), - [anon_sym_void] = ACTIONS(2873), - [anon_sym_delete] = ACTIONS(2873), - [anon_sym_PLUS_PLUS] = ACTIONS(2871), - [anon_sym_DASH_DASH] = ACTIONS(2871), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2871), - [sym_number] = ACTIONS(2871), - [sym_private_property_identifier] = ACTIONS(2871), - [sym_this] = ACTIONS(2873), - [sym_super] = ACTIONS(2873), - [sym_true] = ACTIONS(2873), - [sym_false] = ACTIONS(2873), - [sym_null] = ACTIONS(2873), - [sym_undefined] = ACTIONS(2873), - [anon_sym_AT] = ACTIONS(2871), - [anon_sym_static] = ACTIONS(2873), - [anon_sym_readonly] = ACTIONS(2873), - [anon_sym_get] = ACTIONS(2873), - [anon_sym_set] = ACTIONS(2873), - [anon_sym_declare] = ACTIONS(2873), - [anon_sym_public] = ACTIONS(2873), - [anon_sym_private] = ACTIONS(2873), - [anon_sym_protected] = ACTIONS(2873), - [anon_sym_override] = ACTIONS(2873), - [anon_sym_module] = ACTIONS(2873), - [anon_sym_any] = ACTIONS(2873), - [anon_sym_number] = ACTIONS(2873), - [anon_sym_boolean] = ACTIONS(2873), - [anon_sym_string] = ACTIONS(2873), - [anon_sym_symbol] = ACTIONS(2873), - [anon_sym_object] = ACTIONS(2873), - [anon_sym_abstract] = ACTIONS(2873), - [anon_sym_interface] = ACTIONS(2873), - [anon_sym_enum] = ACTIONS(2873), + [ts_builtin_sym_end] = ACTIONS(2852), + [sym_identifier] = ACTIONS(2854), + [anon_sym_export] = ACTIONS(2854), + [anon_sym_default] = ACTIONS(2854), + [anon_sym_type] = ACTIONS(2854), + [anon_sym_namespace] = ACTIONS(2854), + [anon_sym_LBRACE] = ACTIONS(2852), + [anon_sym_RBRACE] = ACTIONS(2852), + [anon_sym_typeof] = ACTIONS(2854), + [anon_sym_import] = ACTIONS(2854), + [anon_sym_with] = ACTIONS(2854), + [anon_sym_var] = ACTIONS(2854), + [anon_sym_let] = ACTIONS(2854), + [anon_sym_const] = ACTIONS(2854), + [anon_sym_BANG] = ACTIONS(2852), + [anon_sym_else] = ACTIONS(2854), + [anon_sym_if] = ACTIONS(2854), + [anon_sym_switch] = ACTIONS(2854), + [anon_sym_for] = ACTIONS(2854), + [anon_sym_LPAREN] = ACTIONS(2852), + [anon_sym_SEMI] = ACTIONS(2852), + [anon_sym_await] = ACTIONS(2854), + [anon_sym_while] = ACTIONS(2854), + [anon_sym_do] = ACTIONS(2854), + [anon_sym_try] = ACTIONS(2854), + [anon_sym_break] = ACTIONS(2854), + [anon_sym_continue] = ACTIONS(2854), + [anon_sym_debugger] = ACTIONS(2854), + [anon_sym_return] = ACTIONS(2854), + [anon_sym_throw] = ACTIONS(2854), + [anon_sym_case] = ACTIONS(2854), + [anon_sym_yield] = ACTIONS(2854), + [anon_sym_LBRACK] = ACTIONS(2852), + [anon_sym_DQUOTE] = ACTIONS(2852), + [anon_sym_SQUOTE] = ACTIONS(2852), + [anon_sym_class] = ACTIONS(2854), + [anon_sym_async] = ACTIONS(2854), + [anon_sym_function] = ACTIONS(2854), + [anon_sym_new] = ACTIONS(2854), + [anon_sym_using] = ACTIONS(2854), + [anon_sym_PLUS] = ACTIONS(2854), + [anon_sym_DASH] = ACTIONS(2854), + [anon_sym_SLASH] = ACTIONS(2854), + [anon_sym_LT] = ACTIONS(2852), + [anon_sym_TILDE] = ACTIONS(2852), + [anon_sym_void] = ACTIONS(2854), + [anon_sym_delete] = ACTIONS(2854), + [anon_sym_PLUS_PLUS] = ACTIONS(2852), + [anon_sym_DASH_DASH] = ACTIONS(2852), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2852), + [sym_number] = ACTIONS(2852), + [sym_private_property_identifier] = ACTIONS(2852), + [sym_this] = ACTIONS(2854), + [sym_super] = ACTIONS(2854), + [sym_true] = ACTIONS(2854), + [sym_false] = ACTIONS(2854), + [sym_null] = ACTIONS(2854), + [sym_undefined] = ACTIONS(2854), + [anon_sym_AT] = ACTIONS(2852), + [anon_sym_static] = ACTIONS(2854), + [anon_sym_readonly] = ACTIONS(2854), + [anon_sym_get] = ACTIONS(2854), + [anon_sym_set] = ACTIONS(2854), + [anon_sym_declare] = ACTIONS(2854), + [anon_sym_public] = ACTIONS(2854), + [anon_sym_private] = ACTIONS(2854), + [anon_sym_protected] = ACTIONS(2854), + [anon_sym_override] = ACTIONS(2854), + [anon_sym_module] = ACTIONS(2854), + [anon_sym_any] = ACTIONS(2854), + [anon_sym_number] = ACTIONS(2854), + [anon_sym_boolean] = ACTIONS(2854), + [anon_sym_string] = ACTIONS(2854), + [anon_sym_symbol] = ACTIONS(2854), + [anon_sym_object] = ACTIONS(2854), + [anon_sym_abstract] = ACTIONS(2854), + [anon_sym_interface] = ACTIONS(2854), + [anon_sym_enum] = ACTIONS(2854), [sym_html_comment] = ACTIONS(5), }, [888] = { - [ts_builtin_sym_end] = ACTIONS(2871), - [sym_identifier] = ACTIONS(2873), - [anon_sym_export] = ACTIONS(2873), - [anon_sym_default] = ACTIONS(2873), - [anon_sym_type] = ACTIONS(2873), - [anon_sym_namespace] = ACTIONS(2873), - [anon_sym_LBRACE] = ACTIONS(2871), - [anon_sym_RBRACE] = ACTIONS(2871), - [anon_sym_typeof] = ACTIONS(2873), - [anon_sym_import] = ACTIONS(2873), - [anon_sym_with] = ACTIONS(2873), - [anon_sym_var] = ACTIONS(2873), - [anon_sym_let] = ACTIONS(2873), - [anon_sym_const] = ACTIONS(2873), - [anon_sym_BANG] = ACTIONS(2871), - [anon_sym_else] = ACTIONS(2873), - [anon_sym_if] = ACTIONS(2873), - [anon_sym_switch] = ACTIONS(2873), - [anon_sym_for] = ACTIONS(2873), - [anon_sym_LPAREN] = ACTIONS(2871), - [anon_sym_SEMI] = ACTIONS(2871), - [anon_sym_await] = ACTIONS(2873), - [anon_sym_while] = ACTIONS(2873), - [anon_sym_do] = ACTIONS(2873), - [anon_sym_try] = ACTIONS(2873), - [anon_sym_break] = ACTIONS(2873), - [anon_sym_continue] = ACTIONS(2873), - [anon_sym_debugger] = ACTIONS(2873), - [anon_sym_return] = ACTIONS(2873), - [anon_sym_throw] = ACTIONS(2873), - [anon_sym_case] = ACTIONS(2873), - [anon_sym_yield] = ACTIONS(2873), - [anon_sym_LBRACK] = ACTIONS(2871), - [sym_glimmer_opening_tag] = ACTIONS(2871), - [anon_sym_DQUOTE] = ACTIONS(2871), - [anon_sym_SQUOTE] = ACTIONS(2871), - [anon_sym_class] = ACTIONS(2873), - [anon_sym_async] = ACTIONS(2873), - [anon_sym_function] = ACTIONS(2873), - [anon_sym_new] = ACTIONS(2873), - [anon_sym_using] = ACTIONS(2873), - [anon_sym_PLUS] = ACTIONS(2873), - [anon_sym_DASH] = ACTIONS(2873), - [anon_sym_SLASH] = ACTIONS(2873), - [anon_sym_LT] = ACTIONS(2873), - [anon_sym_TILDE] = ACTIONS(2871), - [anon_sym_void] = ACTIONS(2873), - [anon_sym_delete] = ACTIONS(2873), - [anon_sym_PLUS_PLUS] = ACTIONS(2871), - [anon_sym_DASH_DASH] = ACTIONS(2871), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2871), - [sym_number] = ACTIONS(2871), - [sym_private_property_identifier] = ACTIONS(2871), - [sym_this] = ACTIONS(2873), - [sym_super] = ACTIONS(2873), - [sym_true] = ACTIONS(2873), - [sym_false] = ACTIONS(2873), - [sym_null] = ACTIONS(2873), - [sym_undefined] = ACTIONS(2873), - [anon_sym_AT] = ACTIONS(2871), - [anon_sym_static] = ACTIONS(2873), - [anon_sym_readonly] = ACTIONS(2873), - [anon_sym_get] = ACTIONS(2873), - [anon_sym_set] = ACTIONS(2873), - [anon_sym_declare] = ACTIONS(2873), - [anon_sym_public] = ACTIONS(2873), - [anon_sym_private] = ACTIONS(2873), - [anon_sym_protected] = ACTIONS(2873), - [anon_sym_override] = ACTIONS(2873), - [anon_sym_module] = ACTIONS(2873), - [anon_sym_any] = ACTIONS(2873), - [anon_sym_number] = ACTIONS(2873), - [anon_sym_boolean] = ACTIONS(2873), - [anon_sym_string] = ACTIONS(2873), - [anon_sym_symbol] = ACTIONS(2873), - [anon_sym_object] = ACTIONS(2873), - [anon_sym_abstract] = ACTIONS(2873), - [anon_sym_interface] = ACTIONS(2873), - [anon_sym_enum] = ACTIONS(2873), + [ts_builtin_sym_end] = ACTIONS(2856), + [sym_identifier] = ACTIONS(2858), + [anon_sym_export] = ACTIONS(2858), + [anon_sym_default] = ACTIONS(2858), + [anon_sym_type] = ACTIONS(2858), + [anon_sym_namespace] = ACTIONS(2858), + [anon_sym_LBRACE] = ACTIONS(2856), + [anon_sym_RBRACE] = ACTIONS(2856), + [anon_sym_typeof] = ACTIONS(2858), + [anon_sym_import] = ACTIONS(2858), + [anon_sym_with] = ACTIONS(2858), + [anon_sym_var] = ACTIONS(2858), + [anon_sym_let] = ACTIONS(2858), + [anon_sym_const] = ACTIONS(2858), + [anon_sym_BANG] = ACTIONS(2856), + [anon_sym_else] = ACTIONS(2858), + [anon_sym_if] = ACTIONS(2858), + [anon_sym_switch] = ACTIONS(2858), + [anon_sym_for] = ACTIONS(2858), + [anon_sym_LPAREN] = ACTIONS(2856), + [anon_sym_SEMI] = ACTIONS(2856), + [anon_sym_await] = ACTIONS(2858), + [anon_sym_while] = ACTIONS(2858), + [anon_sym_do] = ACTIONS(2858), + [anon_sym_try] = ACTIONS(2858), + [anon_sym_break] = ACTIONS(2858), + [anon_sym_continue] = ACTIONS(2858), + [anon_sym_debugger] = ACTIONS(2858), + [anon_sym_return] = ACTIONS(2858), + [anon_sym_throw] = ACTIONS(2858), + [anon_sym_case] = ACTIONS(2858), + [anon_sym_yield] = ACTIONS(2858), + [anon_sym_LBRACK] = ACTIONS(2856), + [anon_sym_DQUOTE] = ACTIONS(2856), + [anon_sym_SQUOTE] = ACTIONS(2856), + [anon_sym_class] = ACTIONS(2858), + [anon_sym_async] = ACTIONS(2858), + [anon_sym_function] = ACTIONS(2858), + [anon_sym_new] = ACTIONS(2858), + [anon_sym_using] = ACTIONS(2858), + [anon_sym_PLUS] = ACTIONS(2858), + [anon_sym_DASH] = ACTIONS(2858), + [anon_sym_SLASH] = ACTIONS(2858), + [anon_sym_LT] = ACTIONS(2856), + [anon_sym_TILDE] = ACTIONS(2856), + [anon_sym_void] = ACTIONS(2858), + [anon_sym_delete] = ACTIONS(2858), + [anon_sym_PLUS_PLUS] = ACTIONS(2856), + [anon_sym_DASH_DASH] = ACTIONS(2856), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2856), + [sym_number] = ACTIONS(2856), + [sym_private_property_identifier] = ACTIONS(2856), + [sym_this] = ACTIONS(2858), + [sym_super] = ACTIONS(2858), + [sym_true] = ACTIONS(2858), + [sym_false] = ACTIONS(2858), + [sym_null] = ACTIONS(2858), + [sym_undefined] = ACTIONS(2858), + [anon_sym_AT] = ACTIONS(2856), + [anon_sym_static] = ACTIONS(2858), + [anon_sym_readonly] = ACTIONS(2858), + [anon_sym_get] = ACTIONS(2858), + [anon_sym_set] = ACTIONS(2858), + [anon_sym_declare] = ACTIONS(2858), + [anon_sym_public] = ACTIONS(2858), + [anon_sym_private] = ACTIONS(2858), + [anon_sym_protected] = ACTIONS(2858), + [anon_sym_override] = ACTIONS(2858), + [anon_sym_module] = ACTIONS(2858), + [anon_sym_any] = ACTIONS(2858), + [anon_sym_number] = ACTIONS(2858), + [anon_sym_boolean] = ACTIONS(2858), + [anon_sym_string] = ACTIONS(2858), + [anon_sym_symbol] = ACTIONS(2858), + [anon_sym_object] = ACTIONS(2858), + [anon_sym_abstract] = ACTIONS(2858), + [anon_sym_interface] = ACTIONS(2858), + [anon_sym_enum] = ACTIONS(2858), [sym_html_comment] = ACTIONS(5), }, [889] = { - [ts_builtin_sym_end] = ACTIONS(2875), - [sym_identifier] = ACTIONS(2877), - [anon_sym_export] = ACTIONS(2877), - [anon_sym_default] = ACTIONS(2877), - [anon_sym_type] = ACTIONS(2877), - [anon_sym_namespace] = ACTIONS(2877), - [anon_sym_LBRACE] = ACTIONS(2875), - [anon_sym_RBRACE] = ACTIONS(2875), - [anon_sym_typeof] = ACTIONS(2877), - [anon_sym_import] = ACTIONS(2877), - [anon_sym_with] = ACTIONS(2877), - [anon_sym_var] = ACTIONS(2877), - [anon_sym_let] = ACTIONS(2877), - [anon_sym_const] = ACTIONS(2877), - [anon_sym_BANG] = ACTIONS(2875), - [anon_sym_else] = ACTIONS(2877), - [anon_sym_if] = ACTIONS(2877), - [anon_sym_switch] = ACTIONS(2877), - [anon_sym_for] = ACTIONS(2877), - [anon_sym_LPAREN] = ACTIONS(2875), - [anon_sym_SEMI] = ACTIONS(2875), - [anon_sym_await] = ACTIONS(2877), - [anon_sym_while] = ACTIONS(2877), - [anon_sym_do] = ACTIONS(2877), - [anon_sym_try] = ACTIONS(2877), - [anon_sym_break] = ACTIONS(2877), - [anon_sym_continue] = ACTIONS(2877), - [anon_sym_debugger] = ACTIONS(2877), - [anon_sym_return] = ACTIONS(2877), - [anon_sym_throw] = ACTIONS(2877), - [anon_sym_case] = ACTIONS(2877), - [anon_sym_yield] = ACTIONS(2877), - [anon_sym_LBRACK] = ACTIONS(2875), - [sym_glimmer_opening_tag] = ACTIONS(2875), - [anon_sym_DQUOTE] = ACTIONS(2875), - [anon_sym_SQUOTE] = ACTIONS(2875), - [anon_sym_class] = ACTIONS(2877), - [anon_sym_async] = ACTIONS(2877), - [anon_sym_function] = ACTIONS(2877), - [anon_sym_new] = ACTIONS(2877), - [anon_sym_using] = ACTIONS(2877), - [anon_sym_PLUS] = ACTIONS(2877), - [anon_sym_DASH] = ACTIONS(2877), - [anon_sym_SLASH] = ACTIONS(2877), - [anon_sym_LT] = ACTIONS(2877), - [anon_sym_TILDE] = ACTIONS(2875), - [anon_sym_void] = ACTIONS(2877), - [anon_sym_delete] = ACTIONS(2877), - [anon_sym_PLUS_PLUS] = ACTIONS(2875), - [anon_sym_DASH_DASH] = ACTIONS(2875), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2875), - [sym_number] = ACTIONS(2875), - [sym_private_property_identifier] = ACTIONS(2875), - [sym_this] = ACTIONS(2877), - [sym_super] = ACTIONS(2877), - [sym_true] = ACTIONS(2877), - [sym_false] = ACTIONS(2877), - [sym_null] = ACTIONS(2877), - [sym_undefined] = ACTIONS(2877), - [anon_sym_AT] = ACTIONS(2875), - [anon_sym_static] = ACTIONS(2877), - [anon_sym_readonly] = ACTIONS(2877), - [anon_sym_get] = ACTIONS(2877), - [anon_sym_set] = ACTIONS(2877), - [anon_sym_declare] = ACTIONS(2877), - [anon_sym_public] = ACTIONS(2877), - [anon_sym_private] = ACTIONS(2877), - [anon_sym_protected] = ACTIONS(2877), - [anon_sym_override] = ACTIONS(2877), - [anon_sym_module] = ACTIONS(2877), - [anon_sym_any] = ACTIONS(2877), - [anon_sym_number] = ACTIONS(2877), - [anon_sym_boolean] = ACTIONS(2877), - [anon_sym_string] = ACTIONS(2877), - [anon_sym_symbol] = ACTIONS(2877), - [anon_sym_object] = ACTIONS(2877), - [anon_sym_abstract] = ACTIONS(2877), - [anon_sym_interface] = ACTIONS(2877), - [anon_sym_enum] = ACTIONS(2877), + [ts_builtin_sym_end] = ACTIONS(2860), + [sym_identifier] = ACTIONS(2862), + [anon_sym_export] = ACTIONS(2862), + [anon_sym_default] = ACTIONS(2862), + [anon_sym_type] = ACTIONS(2862), + [anon_sym_namespace] = ACTIONS(2862), + [anon_sym_LBRACE] = ACTIONS(2860), + [anon_sym_RBRACE] = ACTIONS(2860), + [anon_sym_typeof] = ACTIONS(2862), + [anon_sym_import] = ACTIONS(2862), + [anon_sym_with] = ACTIONS(2862), + [anon_sym_var] = ACTIONS(2862), + [anon_sym_let] = ACTIONS(2862), + [anon_sym_const] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2862), + [anon_sym_if] = ACTIONS(2862), + [anon_sym_switch] = ACTIONS(2862), + [anon_sym_for] = ACTIONS(2862), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2860), + [anon_sym_await] = ACTIONS(2862), + [anon_sym_while] = ACTIONS(2862), + [anon_sym_do] = ACTIONS(2862), + [anon_sym_try] = ACTIONS(2862), + [anon_sym_break] = ACTIONS(2862), + [anon_sym_continue] = ACTIONS(2862), + [anon_sym_debugger] = ACTIONS(2862), + [anon_sym_return] = ACTIONS(2862), + [anon_sym_throw] = ACTIONS(2862), + [anon_sym_case] = ACTIONS(2862), + [anon_sym_yield] = ACTIONS(2862), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_DQUOTE] = ACTIONS(2860), + [anon_sym_SQUOTE] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2862), + [anon_sym_async] = ACTIONS(2862), + [anon_sym_function] = ACTIONS(2862), + [anon_sym_new] = ACTIONS(2862), + [anon_sym_using] = ACTIONS(2862), + [anon_sym_PLUS] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2862), + [anon_sym_SLASH] = ACTIONS(2862), + [anon_sym_LT] = ACTIONS(2860), + [anon_sym_TILDE] = ACTIONS(2860), + [anon_sym_void] = ACTIONS(2862), + [anon_sym_delete] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2860), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2860), + [sym_number] = ACTIONS(2860), + [sym_private_property_identifier] = ACTIONS(2860), + [sym_this] = ACTIONS(2862), + [sym_super] = ACTIONS(2862), + [sym_true] = ACTIONS(2862), + [sym_false] = ACTIONS(2862), + [sym_null] = ACTIONS(2862), + [sym_undefined] = ACTIONS(2862), + [anon_sym_AT] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2862), + [anon_sym_readonly] = ACTIONS(2862), + [anon_sym_get] = ACTIONS(2862), + [anon_sym_set] = ACTIONS(2862), + [anon_sym_declare] = ACTIONS(2862), + [anon_sym_public] = ACTIONS(2862), + [anon_sym_private] = ACTIONS(2862), + [anon_sym_protected] = ACTIONS(2862), + [anon_sym_override] = ACTIONS(2862), + [anon_sym_module] = ACTIONS(2862), + [anon_sym_any] = ACTIONS(2862), + [anon_sym_number] = ACTIONS(2862), + [anon_sym_boolean] = ACTIONS(2862), + [anon_sym_string] = ACTIONS(2862), + [anon_sym_symbol] = ACTIONS(2862), + [anon_sym_object] = ACTIONS(2862), + [anon_sym_abstract] = ACTIONS(2862), + [anon_sym_interface] = ACTIONS(2862), + [anon_sym_enum] = ACTIONS(2862), [sym_html_comment] = ACTIONS(5), }, [890] = { - [ts_builtin_sym_end] = ACTIONS(1901), - [sym_identifier] = ACTIONS(1903), - [anon_sym_export] = ACTIONS(1903), - [anon_sym_default] = ACTIONS(1903), - [anon_sym_type] = ACTIONS(1903), - [anon_sym_namespace] = ACTIONS(1903), - [anon_sym_LBRACE] = ACTIONS(1901), - [anon_sym_RBRACE] = ACTIONS(1901), - [anon_sym_typeof] = ACTIONS(1903), - [anon_sym_import] = ACTIONS(1903), - [anon_sym_with] = ACTIONS(1903), - [anon_sym_var] = ACTIONS(1903), - [anon_sym_let] = ACTIONS(1903), - [anon_sym_const] = ACTIONS(1903), - [anon_sym_BANG] = ACTIONS(1901), - [anon_sym_else] = ACTIONS(1903), - [anon_sym_if] = ACTIONS(1903), - [anon_sym_switch] = ACTIONS(1903), - [anon_sym_for] = ACTIONS(1903), - [anon_sym_LPAREN] = ACTIONS(1901), - [anon_sym_SEMI] = ACTIONS(1901), - [anon_sym_await] = ACTIONS(1903), - [anon_sym_while] = ACTIONS(1903), - [anon_sym_do] = ACTIONS(1903), - [anon_sym_try] = ACTIONS(1903), - [anon_sym_break] = ACTIONS(1903), - [anon_sym_continue] = ACTIONS(1903), - [anon_sym_debugger] = ACTIONS(1903), - [anon_sym_return] = ACTIONS(1903), - [anon_sym_throw] = ACTIONS(1903), - [anon_sym_case] = ACTIONS(1903), - [anon_sym_yield] = ACTIONS(1903), - [anon_sym_LBRACK] = ACTIONS(1901), - [sym_glimmer_opening_tag] = ACTIONS(1901), - [anon_sym_DQUOTE] = ACTIONS(1901), - [anon_sym_SQUOTE] = ACTIONS(1901), - [anon_sym_class] = ACTIONS(1903), - [anon_sym_async] = ACTIONS(1903), - [anon_sym_function] = ACTIONS(1903), - [anon_sym_new] = ACTIONS(1903), - [anon_sym_using] = ACTIONS(1903), - [anon_sym_PLUS] = ACTIONS(1903), - [anon_sym_DASH] = ACTIONS(1903), - [anon_sym_SLASH] = ACTIONS(1903), - [anon_sym_LT] = ACTIONS(1903), - [anon_sym_TILDE] = ACTIONS(1901), - [anon_sym_void] = ACTIONS(1903), - [anon_sym_delete] = ACTIONS(1903), - [anon_sym_PLUS_PLUS] = ACTIONS(1901), - [anon_sym_DASH_DASH] = ACTIONS(1901), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1901), - [sym_number] = ACTIONS(1901), - [sym_private_property_identifier] = ACTIONS(1901), - [sym_this] = ACTIONS(1903), - [sym_super] = ACTIONS(1903), - [sym_true] = ACTIONS(1903), - [sym_false] = ACTIONS(1903), - [sym_null] = ACTIONS(1903), - [sym_undefined] = ACTIONS(1903), - [anon_sym_AT] = ACTIONS(1901), - [anon_sym_static] = ACTIONS(1903), - [anon_sym_readonly] = ACTIONS(1903), - [anon_sym_get] = ACTIONS(1903), - [anon_sym_set] = ACTIONS(1903), - [anon_sym_declare] = ACTIONS(1903), - [anon_sym_public] = ACTIONS(1903), - [anon_sym_private] = ACTIONS(1903), - [anon_sym_protected] = ACTIONS(1903), - [anon_sym_override] = ACTIONS(1903), - [anon_sym_module] = ACTIONS(1903), - [anon_sym_any] = ACTIONS(1903), - [anon_sym_number] = ACTIONS(1903), - [anon_sym_boolean] = ACTIONS(1903), - [anon_sym_string] = ACTIONS(1903), - [anon_sym_symbol] = ACTIONS(1903), - [anon_sym_object] = ACTIONS(1903), - [anon_sym_abstract] = ACTIONS(1903), - [anon_sym_interface] = ACTIONS(1903), - [anon_sym_enum] = ACTIONS(1903), + [ts_builtin_sym_end] = ACTIONS(2864), + [sym_identifier] = ACTIONS(2866), + [anon_sym_export] = ACTIONS(2866), + [anon_sym_default] = ACTIONS(2866), + [anon_sym_type] = ACTIONS(2866), + [anon_sym_namespace] = ACTIONS(2866), + [anon_sym_LBRACE] = ACTIONS(2864), + [anon_sym_RBRACE] = ACTIONS(2864), + [anon_sym_typeof] = ACTIONS(2866), + [anon_sym_import] = ACTIONS(2866), + [anon_sym_with] = ACTIONS(2866), + [anon_sym_var] = ACTIONS(2866), + [anon_sym_let] = ACTIONS(2866), + [anon_sym_const] = ACTIONS(2866), + [anon_sym_BANG] = ACTIONS(2864), + [anon_sym_else] = ACTIONS(2866), + [anon_sym_if] = ACTIONS(2866), + [anon_sym_switch] = ACTIONS(2866), + [anon_sym_for] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2864), + [anon_sym_SEMI] = ACTIONS(2864), + [anon_sym_await] = ACTIONS(2866), + [anon_sym_while] = ACTIONS(2866), + [anon_sym_do] = ACTIONS(2866), + [anon_sym_try] = ACTIONS(2866), + [anon_sym_break] = ACTIONS(2866), + [anon_sym_continue] = ACTIONS(2866), + [anon_sym_debugger] = ACTIONS(2866), + [anon_sym_return] = ACTIONS(2866), + [anon_sym_throw] = ACTIONS(2866), + [anon_sym_case] = ACTIONS(2866), + [anon_sym_yield] = ACTIONS(2866), + [anon_sym_LBRACK] = ACTIONS(2864), + [anon_sym_DQUOTE] = ACTIONS(2864), + [anon_sym_SQUOTE] = ACTIONS(2864), + [anon_sym_class] = ACTIONS(2866), + [anon_sym_async] = ACTIONS(2866), + [anon_sym_function] = ACTIONS(2866), + [anon_sym_new] = ACTIONS(2866), + [anon_sym_using] = ACTIONS(2866), + [anon_sym_PLUS] = ACTIONS(2866), + [anon_sym_DASH] = ACTIONS(2866), + [anon_sym_SLASH] = ACTIONS(2866), + [anon_sym_LT] = ACTIONS(2864), + [anon_sym_TILDE] = ACTIONS(2864), + [anon_sym_void] = ACTIONS(2866), + [anon_sym_delete] = ACTIONS(2866), + [anon_sym_PLUS_PLUS] = ACTIONS(2864), + [anon_sym_DASH_DASH] = ACTIONS(2864), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2864), + [sym_number] = ACTIONS(2864), + [sym_private_property_identifier] = ACTIONS(2864), + [sym_this] = ACTIONS(2866), + [sym_super] = ACTIONS(2866), + [sym_true] = ACTIONS(2866), + [sym_false] = ACTIONS(2866), + [sym_null] = ACTIONS(2866), + [sym_undefined] = ACTIONS(2866), + [anon_sym_AT] = ACTIONS(2864), + [anon_sym_static] = ACTIONS(2866), + [anon_sym_readonly] = ACTIONS(2866), + [anon_sym_get] = ACTIONS(2866), + [anon_sym_set] = ACTIONS(2866), + [anon_sym_declare] = ACTIONS(2866), + [anon_sym_public] = ACTIONS(2866), + [anon_sym_private] = ACTIONS(2866), + [anon_sym_protected] = ACTIONS(2866), + [anon_sym_override] = ACTIONS(2866), + [anon_sym_module] = ACTIONS(2866), + [anon_sym_any] = ACTIONS(2866), + [anon_sym_number] = ACTIONS(2866), + [anon_sym_boolean] = ACTIONS(2866), + [anon_sym_string] = ACTIONS(2866), + [anon_sym_symbol] = ACTIONS(2866), + [anon_sym_object] = ACTIONS(2866), + [anon_sym_abstract] = ACTIONS(2866), + [anon_sym_interface] = ACTIONS(2866), + [anon_sym_enum] = ACTIONS(2866), [sym_html_comment] = ACTIONS(5), }, [891] = { - [ts_builtin_sym_end] = ACTIONS(2879), - [sym_identifier] = ACTIONS(2881), - [anon_sym_export] = ACTIONS(2881), - [anon_sym_default] = ACTIONS(2881), - [anon_sym_type] = ACTIONS(2881), - [anon_sym_namespace] = ACTIONS(2881), - [anon_sym_LBRACE] = ACTIONS(2879), - [anon_sym_RBRACE] = ACTIONS(2879), - [anon_sym_typeof] = ACTIONS(2881), - [anon_sym_import] = ACTIONS(2881), - [anon_sym_with] = ACTIONS(2881), - [anon_sym_var] = ACTIONS(2881), - [anon_sym_let] = ACTIONS(2881), - [anon_sym_const] = ACTIONS(2881), - [anon_sym_BANG] = ACTIONS(2879), - [anon_sym_else] = ACTIONS(2881), - [anon_sym_if] = ACTIONS(2881), - [anon_sym_switch] = ACTIONS(2881), - [anon_sym_for] = ACTIONS(2881), - [anon_sym_LPAREN] = ACTIONS(2879), - [anon_sym_SEMI] = ACTIONS(2879), - [anon_sym_await] = ACTIONS(2881), - [anon_sym_while] = ACTIONS(2881), - [anon_sym_do] = ACTIONS(2881), - [anon_sym_try] = ACTIONS(2881), - [anon_sym_break] = ACTIONS(2881), - [anon_sym_continue] = ACTIONS(2881), - [anon_sym_debugger] = ACTIONS(2881), - [anon_sym_return] = ACTIONS(2881), - [anon_sym_throw] = ACTIONS(2881), - [anon_sym_case] = ACTIONS(2881), - [anon_sym_yield] = ACTIONS(2881), - [anon_sym_LBRACK] = ACTIONS(2879), - [sym_glimmer_opening_tag] = ACTIONS(2879), - [anon_sym_DQUOTE] = ACTIONS(2879), - [anon_sym_SQUOTE] = ACTIONS(2879), - [anon_sym_class] = ACTIONS(2881), - [anon_sym_async] = ACTIONS(2881), - [anon_sym_function] = ACTIONS(2881), - [anon_sym_new] = ACTIONS(2881), - [anon_sym_using] = ACTIONS(2881), - [anon_sym_PLUS] = ACTIONS(2881), - [anon_sym_DASH] = ACTIONS(2881), - [anon_sym_SLASH] = ACTIONS(2881), - [anon_sym_LT] = ACTIONS(2881), - [anon_sym_TILDE] = ACTIONS(2879), - [anon_sym_void] = ACTIONS(2881), - [anon_sym_delete] = ACTIONS(2881), - [anon_sym_PLUS_PLUS] = ACTIONS(2879), - [anon_sym_DASH_DASH] = ACTIONS(2879), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2879), - [sym_number] = ACTIONS(2879), - [sym_private_property_identifier] = ACTIONS(2879), - [sym_this] = ACTIONS(2881), - [sym_super] = ACTIONS(2881), - [sym_true] = ACTIONS(2881), - [sym_false] = ACTIONS(2881), - [sym_null] = ACTIONS(2881), - [sym_undefined] = ACTIONS(2881), - [anon_sym_AT] = ACTIONS(2879), - [anon_sym_static] = ACTIONS(2881), - [anon_sym_readonly] = ACTIONS(2881), - [anon_sym_get] = ACTIONS(2881), - [anon_sym_set] = ACTIONS(2881), - [anon_sym_declare] = ACTIONS(2881), - [anon_sym_public] = ACTIONS(2881), - [anon_sym_private] = ACTIONS(2881), - [anon_sym_protected] = ACTIONS(2881), - [anon_sym_override] = ACTIONS(2881), - [anon_sym_module] = ACTIONS(2881), - [anon_sym_any] = ACTIONS(2881), - [anon_sym_number] = ACTIONS(2881), - [anon_sym_boolean] = ACTIONS(2881), - [anon_sym_string] = ACTIONS(2881), - [anon_sym_symbol] = ACTIONS(2881), - [anon_sym_object] = ACTIONS(2881), - [anon_sym_abstract] = ACTIONS(2881), - [anon_sym_interface] = ACTIONS(2881), - [anon_sym_enum] = ACTIONS(2881), + [ts_builtin_sym_end] = ACTIONS(2868), + [sym_identifier] = ACTIONS(2870), + [anon_sym_export] = ACTIONS(2870), + [anon_sym_default] = ACTIONS(2870), + [anon_sym_type] = ACTIONS(2870), + [anon_sym_namespace] = ACTIONS(2870), + [anon_sym_LBRACE] = ACTIONS(2868), + [anon_sym_RBRACE] = ACTIONS(2868), + [anon_sym_typeof] = ACTIONS(2870), + [anon_sym_import] = ACTIONS(2870), + [anon_sym_with] = ACTIONS(2870), + [anon_sym_var] = ACTIONS(2870), + [anon_sym_let] = ACTIONS(2870), + [anon_sym_const] = ACTIONS(2870), + [anon_sym_BANG] = ACTIONS(2868), + [anon_sym_else] = ACTIONS(2870), + [anon_sym_if] = ACTIONS(2870), + [anon_sym_switch] = ACTIONS(2870), + [anon_sym_for] = ACTIONS(2870), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_SEMI] = ACTIONS(2868), + [anon_sym_await] = ACTIONS(2870), + [anon_sym_while] = ACTIONS(2870), + [anon_sym_do] = ACTIONS(2870), + [anon_sym_try] = ACTIONS(2870), + [anon_sym_break] = ACTIONS(2870), + [anon_sym_continue] = ACTIONS(2870), + [anon_sym_debugger] = ACTIONS(2870), + [anon_sym_return] = ACTIONS(2870), + [anon_sym_throw] = ACTIONS(2870), + [anon_sym_case] = ACTIONS(2870), + [anon_sym_yield] = ACTIONS(2870), + [anon_sym_LBRACK] = ACTIONS(2868), + [anon_sym_DQUOTE] = ACTIONS(2868), + [anon_sym_SQUOTE] = ACTIONS(2868), + [anon_sym_class] = ACTIONS(2870), + [anon_sym_async] = ACTIONS(2870), + [anon_sym_function] = ACTIONS(2870), + [anon_sym_new] = ACTIONS(2870), + [anon_sym_using] = ACTIONS(2870), + [anon_sym_PLUS] = ACTIONS(2870), + [anon_sym_DASH] = ACTIONS(2870), + [anon_sym_SLASH] = ACTIONS(2870), + [anon_sym_LT] = ACTIONS(2868), + [anon_sym_TILDE] = ACTIONS(2868), + [anon_sym_void] = ACTIONS(2870), + [anon_sym_delete] = ACTIONS(2870), + [anon_sym_PLUS_PLUS] = ACTIONS(2868), + [anon_sym_DASH_DASH] = ACTIONS(2868), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2868), + [sym_number] = ACTIONS(2868), + [sym_private_property_identifier] = ACTIONS(2868), + [sym_this] = ACTIONS(2870), + [sym_super] = ACTIONS(2870), + [sym_true] = ACTIONS(2870), + [sym_false] = ACTIONS(2870), + [sym_null] = ACTIONS(2870), + [sym_undefined] = ACTIONS(2870), + [anon_sym_AT] = ACTIONS(2868), + [anon_sym_static] = ACTIONS(2870), + [anon_sym_readonly] = ACTIONS(2870), + [anon_sym_get] = ACTIONS(2870), + [anon_sym_set] = ACTIONS(2870), + [anon_sym_declare] = ACTIONS(2870), + [anon_sym_public] = ACTIONS(2870), + [anon_sym_private] = ACTIONS(2870), + [anon_sym_protected] = ACTIONS(2870), + [anon_sym_override] = ACTIONS(2870), + [anon_sym_module] = ACTIONS(2870), + [anon_sym_any] = ACTIONS(2870), + [anon_sym_number] = ACTIONS(2870), + [anon_sym_boolean] = ACTIONS(2870), + [anon_sym_string] = ACTIONS(2870), + [anon_sym_symbol] = ACTIONS(2870), + [anon_sym_object] = ACTIONS(2870), + [anon_sym_abstract] = ACTIONS(2870), + [anon_sym_interface] = ACTIONS(2870), + [anon_sym_enum] = ACTIONS(2870), [sym_html_comment] = ACTIONS(5), }, [892] = { - [ts_builtin_sym_end] = ACTIONS(2883), - [sym_identifier] = ACTIONS(2885), - [anon_sym_export] = ACTIONS(2885), - [anon_sym_default] = ACTIONS(2885), - [anon_sym_type] = ACTIONS(2885), - [anon_sym_namespace] = ACTIONS(2885), - [anon_sym_LBRACE] = ACTIONS(2883), - [anon_sym_RBRACE] = ACTIONS(2883), - [anon_sym_typeof] = ACTIONS(2885), - [anon_sym_import] = ACTIONS(2885), - [anon_sym_with] = ACTIONS(2885), - [anon_sym_var] = ACTIONS(2885), - [anon_sym_let] = ACTIONS(2885), - [anon_sym_const] = ACTIONS(2885), - [anon_sym_BANG] = ACTIONS(2883), - [anon_sym_else] = ACTIONS(2885), - [anon_sym_if] = ACTIONS(2885), - [anon_sym_switch] = ACTIONS(2885), - [anon_sym_for] = ACTIONS(2885), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_SEMI] = ACTIONS(2883), - [anon_sym_await] = ACTIONS(2885), - [anon_sym_while] = ACTIONS(2885), - [anon_sym_do] = ACTIONS(2885), - [anon_sym_try] = ACTIONS(2885), - [anon_sym_break] = ACTIONS(2885), - [anon_sym_continue] = ACTIONS(2885), - [anon_sym_debugger] = ACTIONS(2885), - [anon_sym_return] = ACTIONS(2885), - [anon_sym_throw] = ACTIONS(2885), - [anon_sym_case] = ACTIONS(2885), - [anon_sym_yield] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2883), - [sym_glimmer_opening_tag] = ACTIONS(2883), - [anon_sym_DQUOTE] = ACTIONS(2883), - [anon_sym_SQUOTE] = ACTIONS(2883), - [anon_sym_class] = ACTIONS(2885), - [anon_sym_async] = ACTIONS(2885), - [anon_sym_function] = ACTIONS(2885), - [anon_sym_new] = ACTIONS(2885), - [anon_sym_using] = ACTIONS(2885), - [anon_sym_PLUS] = ACTIONS(2885), - [anon_sym_DASH] = ACTIONS(2885), - [anon_sym_SLASH] = ACTIONS(2885), - [anon_sym_LT] = ACTIONS(2885), - [anon_sym_TILDE] = ACTIONS(2883), - [anon_sym_void] = ACTIONS(2885), - [anon_sym_delete] = ACTIONS(2885), - [anon_sym_PLUS_PLUS] = ACTIONS(2883), - [anon_sym_DASH_DASH] = ACTIONS(2883), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2883), - [sym_number] = ACTIONS(2883), - [sym_private_property_identifier] = ACTIONS(2883), - [sym_this] = ACTIONS(2885), - [sym_super] = ACTIONS(2885), - [sym_true] = ACTIONS(2885), - [sym_false] = ACTIONS(2885), - [sym_null] = ACTIONS(2885), - [sym_undefined] = ACTIONS(2885), - [anon_sym_AT] = ACTIONS(2883), - [anon_sym_static] = ACTIONS(2885), - [anon_sym_readonly] = ACTIONS(2885), - [anon_sym_get] = ACTIONS(2885), - [anon_sym_set] = ACTIONS(2885), - [anon_sym_declare] = ACTIONS(2885), - [anon_sym_public] = ACTIONS(2885), - [anon_sym_private] = ACTIONS(2885), - [anon_sym_protected] = ACTIONS(2885), - [anon_sym_override] = ACTIONS(2885), - [anon_sym_module] = ACTIONS(2885), - [anon_sym_any] = ACTIONS(2885), - [anon_sym_number] = ACTIONS(2885), - [anon_sym_boolean] = ACTIONS(2885), - [anon_sym_string] = ACTIONS(2885), - [anon_sym_symbol] = ACTIONS(2885), - [anon_sym_object] = ACTIONS(2885), - [anon_sym_abstract] = ACTIONS(2885), - [anon_sym_interface] = ACTIONS(2885), - [anon_sym_enum] = ACTIONS(2885), + [ts_builtin_sym_end] = ACTIONS(2872), + [sym_identifier] = ACTIONS(2874), + [anon_sym_export] = ACTIONS(2874), + [anon_sym_default] = ACTIONS(2874), + [anon_sym_type] = ACTIONS(2874), + [anon_sym_namespace] = ACTIONS(2874), + [anon_sym_LBRACE] = ACTIONS(2872), + [anon_sym_RBRACE] = ACTIONS(2872), + [anon_sym_typeof] = ACTIONS(2874), + [anon_sym_import] = ACTIONS(2874), + [anon_sym_with] = ACTIONS(2874), + [anon_sym_var] = ACTIONS(2874), + [anon_sym_let] = ACTIONS(2874), + [anon_sym_const] = ACTIONS(2874), + [anon_sym_BANG] = ACTIONS(2872), + [anon_sym_else] = ACTIONS(2874), + [anon_sym_if] = ACTIONS(2874), + [anon_sym_switch] = ACTIONS(2874), + [anon_sym_for] = ACTIONS(2874), + [anon_sym_LPAREN] = ACTIONS(2872), + [anon_sym_SEMI] = ACTIONS(2872), + [anon_sym_await] = ACTIONS(2874), + [anon_sym_while] = ACTIONS(2874), + [anon_sym_do] = ACTIONS(2874), + [anon_sym_try] = ACTIONS(2874), + [anon_sym_break] = ACTIONS(2874), + [anon_sym_continue] = ACTIONS(2874), + [anon_sym_debugger] = ACTIONS(2874), + [anon_sym_return] = ACTIONS(2874), + [anon_sym_throw] = ACTIONS(2874), + [anon_sym_case] = ACTIONS(2874), + [anon_sym_yield] = ACTIONS(2874), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_DQUOTE] = ACTIONS(2872), + [anon_sym_SQUOTE] = ACTIONS(2872), + [anon_sym_class] = ACTIONS(2874), + [anon_sym_async] = ACTIONS(2874), + [anon_sym_function] = ACTIONS(2874), + [anon_sym_new] = ACTIONS(2874), + [anon_sym_using] = ACTIONS(2874), + [anon_sym_PLUS] = ACTIONS(2874), + [anon_sym_DASH] = ACTIONS(2874), + [anon_sym_SLASH] = ACTIONS(2874), + [anon_sym_LT] = ACTIONS(2872), + [anon_sym_TILDE] = ACTIONS(2872), + [anon_sym_void] = ACTIONS(2874), + [anon_sym_delete] = ACTIONS(2874), + [anon_sym_PLUS_PLUS] = ACTIONS(2872), + [anon_sym_DASH_DASH] = ACTIONS(2872), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2872), + [sym_number] = ACTIONS(2872), + [sym_private_property_identifier] = ACTIONS(2872), + [sym_this] = ACTIONS(2874), + [sym_super] = ACTIONS(2874), + [sym_true] = ACTIONS(2874), + [sym_false] = ACTIONS(2874), + [sym_null] = ACTIONS(2874), + [sym_undefined] = ACTIONS(2874), + [anon_sym_AT] = ACTIONS(2872), + [anon_sym_static] = ACTIONS(2874), + [anon_sym_readonly] = ACTIONS(2874), + [anon_sym_get] = ACTIONS(2874), + [anon_sym_set] = ACTIONS(2874), + [anon_sym_declare] = ACTIONS(2874), + [anon_sym_public] = ACTIONS(2874), + [anon_sym_private] = ACTIONS(2874), + [anon_sym_protected] = ACTIONS(2874), + [anon_sym_override] = ACTIONS(2874), + [anon_sym_module] = ACTIONS(2874), + [anon_sym_any] = ACTIONS(2874), + [anon_sym_number] = ACTIONS(2874), + [anon_sym_boolean] = ACTIONS(2874), + [anon_sym_string] = ACTIONS(2874), + [anon_sym_symbol] = ACTIONS(2874), + [anon_sym_object] = ACTIONS(2874), + [anon_sym_abstract] = ACTIONS(2874), + [anon_sym_interface] = ACTIONS(2874), + [anon_sym_enum] = ACTIONS(2874), [sym_html_comment] = ACTIONS(5), }, [893] = { - [ts_builtin_sym_end] = ACTIONS(2887), - [sym_identifier] = ACTIONS(2889), - [anon_sym_export] = ACTIONS(2889), - [anon_sym_default] = ACTIONS(2889), - [anon_sym_type] = ACTIONS(2889), - [anon_sym_namespace] = ACTIONS(2889), - [anon_sym_LBRACE] = ACTIONS(2887), - [anon_sym_RBRACE] = ACTIONS(2887), - [anon_sym_typeof] = ACTIONS(2889), - [anon_sym_import] = ACTIONS(2889), - [anon_sym_with] = ACTIONS(2889), - [anon_sym_var] = ACTIONS(2889), - [anon_sym_let] = ACTIONS(2889), - [anon_sym_const] = ACTIONS(2889), - [anon_sym_BANG] = ACTIONS(2887), - [anon_sym_else] = ACTIONS(2889), - [anon_sym_if] = ACTIONS(2889), - [anon_sym_switch] = ACTIONS(2889), - [anon_sym_for] = ACTIONS(2889), - [anon_sym_LPAREN] = ACTIONS(2887), - [anon_sym_SEMI] = ACTIONS(2887), - [anon_sym_await] = ACTIONS(2889), - [anon_sym_while] = ACTIONS(2889), - [anon_sym_do] = ACTIONS(2889), - [anon_sym_try] = ACTIONS(2889), - [anon_sym_break] = ACTIONS(2889), - [anon_sym_continue] = ACTIONS(2889), - [anon_sym_debugger] = ACTIONS(2889), - [anon_sym_return] = ACTIONS(2889), - [anon_sym_throw] = ACTIONS(2889), - [anon_sym_case] = ACTIONS(2889), - [anon_sym_yield] = ACTIONS(2889), - [anon_sym_LBRACK] = ACTIONS(2887), - [sym_glimmer_opening_tag] = ACTIONS(2887), - [anon_sym_DQUOTE] = ACTIONS(2887), - [anon_sym_SQUOTE] = ACTIONS(2887), - [anon_sym_class] = ACTIONS(2889), - [anon_sym_async] = ACTIONS(2889), - [anon_sym_function] = ACTIONS(2889), - [anon_sym_new] = ACTIONS(2889), - [anon_sym_using] = ACTIONS(2889), - [anon_sym_PLUS] = ACTIONS(2889), - [anon_sym_DASH] = ACTIONS(2889), - [anon_sym_SLASH] = ACTIONS(2889), - [anon_sym_LT] = ACTIONS(2889), - [anon_sym_TILDE] = ACTIONS(2887), - [anon_sym_void] = ACTIONS(2889), - [anon_sym_delete] = ACTIONS(2889), - [anon_sym_PLUS_PLUS] = ACTIONS(2887), - [anon_sym_DASH_DASH] = ACTIONS(2887), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2887), - [sym_number] = ACTIONS(2887), - [sym_private_property_identifier] = ACTIONS(2887), - [sym_this] = ACTIONS(2889), - [sym_super] = ACTIONS(2889), - [sym_true] = ACTIONS(2889), - [sym_false] = ACTIONS(2889), - [sym_null] = ACTIONS(2889), - [sym_undefined] = ACTIONS(2889), - [anon_sym_AT] = ACTIONS(2887), - [anon_sym_static] = ACTIONS(2889), - [anon_sym_readonly] = ACTIONS(2889), - [anon_sym_get] = ACTIONS(2889), - [anon_sym_set] = ACTIONS(2889), - [anon_sym_declare] = ACTIONS(2889), - [anon_sym_public] = ACTIONS(2889), - [anon_sym_private] = ACTIONS(2889), - [anon_sym_protected] = ACTIONS(2889), - [anon_sym_override] = ACTIONS(2889), - [anon_sym_module] = ACTIONS(2889), - [anon_sym_any] = ACTIONS(2889), - [anon_sym_number] = ACTIONS(2889), - [anon_sym_boolean] = ACTIONS(2889), - [anon_sym_string] = ACTIONS(2889), - [anon_sym_symbol] = ACTIONS(2889), - [anon_sym_object] = ACTIONS(2889), - [anon_sym_abstract] = ACTIONS(2889), - [anon_sym_interface] = ACTIONS(2889), - [anon_sym_enum] = ACTIONS(2889), + [ts_builtin_sym_end] = ACTIONS(2876), + [sym_identifier] = ACTIONS(2878), + [anon_sym_export] = ACTIONS(2878), + [anon_sym_default] = ACTIONS(2878), + [anon_sym_type] = ACTIONS(2878), + [anon_sym_namespace] = ACTIONS(2878), + [anon_sym_LBRACE] = ACTIONS(2876), + [anon_sym_RBRACE] = ACTIONS(2876), + [anon_sym_typeof] = ACTIONS(2878), + [anon_sym_import] = ACTIONS(2878), + [anon_sym_with] = ACTIONS(2878), + [anon_sym_var] = ACTIONS(2878), + [anon_sym_let] = ACTIONS(2878), + [anon_sym_const] = ACTIONS(2878), + [anon_sym_BANG] = ACTIONS(2876), + [anon_sym_else] = ACTIONS(2878), + [anon_sym_if] = ACTIONS(2878), + [anon_sym_switch] = ACTIONS(2878), + [anon_sym_for] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2876), + [anon_sym_SEMI] = ACTIONS(2876), + [anon_sym_await] = ACTIONS(2878), + [anon_sym_while] = ACTIONS(2878), + [anon_sym_do] = ACTIONS(2878), + [anon_sym_try] = ACTIONS(2878), + [anon_sym_break] = ACTIONS(2878), + [anon_sym_continue] = ACTIONS(2878), + [anon_sym_debugger] = ACTIONS(2878), + [anon_sym_return] = ACTIONS(2878), + [anon_sym_throw] = ACTIONS(2878), + [anon_sym_case] = ACTIONS(2878), + [anon_sym_yield] = ACTIONS(2878), + [anon_sym_LBRACK] = ACTIONS(2876), + [anon_sym_DQUOTE] = ACTIONS(2876), + [anon_sym_SQUOTE] = ACTIONS(2876), + [anon_sym_class] = ACTIONS(2878), + [anon_sym_async] = ACTIONS(2878), + [anon_sym_function] = ACTIONS(2878), + [anon_sym_new] = ACTIONS(2878), + [anon_sym_using] = ACTIONS(2878), + [anon_sym_PLUS] = ACTIONS(2878), + [anon_sym_DASH] = ACTIONS(2878), + [anon_sym_SLASH] = ACTIONS(2878), + [anon_sym_LT] = ACTIONS(2876), + [anon_sym_TILDE] = ACTIONS(2876), + [anon_sym_void] = ACTIONS(2878), + [anon_sym_delete] = ACTIONS(2878), + [anon_sym_PLUS_PLUS] = ACTIONS(2876), + [anon_sym_DASH_DASH] = ACTIONS(2876), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2876), + [sym_number] = ACTIONS(2876), + [sym_private_property_identifier] = ACTIONS(2876), + [sym_this] = ACTIONS(2878), + [sym_super] = ACTIONS(2878), + [sym_true] = ACTIONS(2878), + [sym_false] = ACTIONS(2878), + [sym_null] = ACTIONS(2878), + [sym_undefined] = ACTIONS(2878), + [anon_sym_AT] = ACTIONS(2876), + [anon_sym_static] = ACTIONS(2878), + [anon_sym_readonly] = ACTIONS(2878), + [anon_sym_get] = ACTIONS(2878), + [anon_sym_set] = ACTIONS(2878), + [anon_sym_declare] = ACTIONS(2878), + [anon_sym_public] = ACTIONS(2878), + [anon_sym_private] = ACTIONS(2878), + [anon_sym_protected] = ACTIONS(2878), + [anon_sym_override] = ACTIONS(2878), + [anon_sym_module] = ACTIONS(2878), + [anon_sym_any] = ACTIONS(2878), + [anon_sym_number] = ACTIONS(2878), + [anon_sym_boolean] = ACTIONS(2878), + [anon_sym_string] = ACTIONS(2878), + [anon_sym_symbol] = ACTIONS(2878), + [anon_sym_object] = ACTIONS(2878), + [anon_sym_abstract] = ACTIONS(2878), + [anon_sym_interface] = ACTIONS(2878), + [anon_sym_enum] = ACTIONS(2878), [sym_html_comment] = ACTIONS(5), }, [894] = { - [ts_builtin_sym_end] = ACTIONS(2887), - [sym_identifier] = ACTIONS(2889), - [anon_sym_export] = ACTIONS(2889), - [anon_sym_default] = ACTIONS(2889), - [anon_sym_type] = ACTIONS(2889), - [anon_sym_namespace] = ACTIONS(2889), - [anon_sym_LBRACE] = ACTIONS(2887), - [anon_sym_RBRACE] = ACTIONS(2887), - [anon_sym_typeof] = ACTIONS(2889), - [anon_sym_import] = ACTIONS(2889), - [anon_sym_with] = ACTIONS(2889), - [anon_sym_var] = ACTIONS(2889), - [anon_sym_let] = ACTIONS(2889), - [anon_sym_const] = ACTIONS(2889), - [anon_sym_BANG] = ACTIONS(2887), - [anon_sym_else] = ACTIONS(2889), - [anon_sym_if] = ACTIONS(2889), - [anon_sym_switch] = ACTIONS(2889), - [anon_sym_for] = ACTIONS(2889), - [anon_sym_LPAREN] = ACTIONS(2887), - [anon_sym_SEMI] = ACTIONS(2887), - [anon_sym_await] = ACTIONS(2889), - [anon_sym_while] = ACTIONS(2889), - [anon_sym_do] = ACTIONS(2889), - [anon_sym_try] = ACTIONS(2889), - [anon_sym_break] = ACTIONS(2889), - [anon_sym_continue] = ACTIONS(2889), - [anon_sym_debugger] = ACTIONS(2889), - [anon_sym_return] = ACTIONS(2889), - [anon_sym_throw] = ACTIONS(2889), - [anon_sym_case] = ACTIONS(2889), - [anon_sym_yield] = ACTIONS(2889), - [anon_sym_LBRACK] = ACTIONS(2887), - [sym_glimmer_opening_tag] = ACTIONS(2887), - [anon_sym_DQUOTE] = ACTIONS(2887), - [anon_sym_SQUOTE] = ACTIONS(2887), - [anon_sym_class] = ACTIONS(2889), - [anon_sym_async] = ACTIONS(2889), - [anon_sym_function] = ACTIONS(2889), - [anon_sym_new] = ACTIONS(2889), - [anon_sym_using] = ACTIONS(2889), - [anon_sym_PLUS] = ACTIONS(2889), - [anon_sym_DASH] = ACTIONS(2889), - [anon_sym_SLASH] = ACTIONS(2889), - [anon_sym_LT] = ACTIONS(2889), - [anon_sym_TILDE] = ACTIONS(2887), - [anon_sym_void] = ACTIONS(2889), - [anon_sym_delete] = ACTIONS(2889), - [anon_sym_PLUS_PLUS] = ACTIONS(2887), - [anon_sym_DASH_DASH] = ACTIONS(2887), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2887), - [sym_number] = ACTIONS(2887), - [sym_private_property_identifier] = ACTIONS(2887), - [sym_this] = ACTIONS(2889), - [sym_super] = ACTIONS(2889), - [sym_true] = ACTIONS(2889), - [sym_false] = ACTIONS(2889), - [sym_null] = ACTIONS(2889), - [sym_undefined] = ACTIONS(2889), - [anon_sym_AT] = ACTIONS(2887), - [anon_sym_static] = ACTIONS(2889), - [anon_sym_readonly] = ACTIONS(2889), - [anon_sym_get] = ACTIONS(2889), - [anon_sym_set] = ACTIONS(2889), - [anon_sym_declare] = ACTIONS(2889), - [anon_sym_public] = ACTIONS(2889), - [anon_sym_private] = ACTIONS(2889), - [anon_sym_protected] = ACTIONS(2889), - [anon_sym_override] = ACTIONS(2889), - [anon_sym_module] = ACTIONS(2889), - [anon_sym_any] = ACTIONS(2889), - [anon_sym_number] = ACTIONS(2889), - [anon_sym_boolean] = ACTIONS(2889), - [anon_sym_string] = ACTIONS(2889), - [anon_sym_symbol] = ACTIONS(2889), - [anon_sym_object] = ACTIONS(2889), - [anon_sym_abstract] = ACTIONS(2889), - [anon_sym_interface] = ACTIONS(2889), - [anon_sym_enum] = ACTIONS(2889), + [ts_builtin_sym_end] = ACTIONS(2880), + [sym_identifier] = ACTIONS(2882), + [anon_sym_export] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2882), + [anon_sym_type] = ACTIONS(2882), + [anon_sym_namespace] = ACTIONS(2882), + [anon_sym_LBRACE] = ACTIONS(2880), + [anon_sym_RBRACE] = ACTIONS(2880), + [anon_sym_typeof] = ACTIONS(2882), + [anon_sym_import] = ACTIONS(2882), + [anon_sym_with] = ACTIONS(2882), + [anon_sym_var] = ACTIONS(2882), + [anon_sym_let] = ACTIONS(2882), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_BANG] = ACTIONS(2880), + [anon_sym_else] = ACTIONS(2882), + [anon_sym_if] = ACTIONS(2882), + [anon_sym_switch] = ACTIONS(2882), + [anon_sym_for] = ACTIONS(2882), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_SEMI] = ACTIONS(2880), + [anon_sym_await] = ACTIONS(2882), + [anon_sym_while] = ACTIONS(2882), + [anon_sym_do] = ACTIONS(2882), + [anon_sym_try] = ACTIONS(2882), + [anon_sym_break] = ACTIONS(2882), + [anon_sym_continue] = ACTIONS(2882), + [anon_sym_debugger] = ACTIONS(2882), + [anon_sym_return] = ACTIONS(2882), + [anon_sym_throw] = ACTIONS(2882), + [anon_sym_case] = ACTIONS(2882), + [anon_sym_yield] = ACTIONS(2882), + [anon_sym_LBRACK] = ACTIONS(2880), + [anon_sym_DQUOTE] = ACTIONS(2880), + [anon_sym_SQUOTE] = ACTIONS(2880), + [anon_sym_class] = ACTIONS(2882), + [anon_sym_async] = ACTIONS(2882), + [anon_sym_function] = ACTIONS(2882), + [anon_sym_new] = ACTIONS(2882), + [anon_sym_using] = ACTIONS(2882), + [anon_sym_PLUS] = ACTIONS(2882), + [anon_sym_DASH] = ACTIONS(2882), + [anon_sym_SLASH] = ACTIONS(2882), + [anon_sym_LT] = ACTIONS(2880), + [anon_sym_TILDE] = ACTIONS(2880), + [anon_sym_void] = ACTIONS(2882), + [anon_sym_delete] = ACTIONS(2882), + [anon_sym_PLUS_PLUS] = ACTIONS(2880), + [anon_sym_DASH_DASH] = ACTIONS(2880), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2880), + [sym_number] = ACTIONS(2880), + [sym_private_property_identifier] = ACTIONS(2880), + [sym_this] = ACTIONS(2882), + [sym_super] = ACTIONS(2882), + [sym_true] = ACTIONS(2882), + [sym_false] = ACTIONS(2882), + [sym_null] = ACTIONS(2882), + [sym_undefined] = ACTIONS(2882), + [anon_sym_AT] = ACTIONS(2880), + [anon_sym_static] = ACTIONS(2882), + [anon_sym_readonly] = ACTIONS(2882), + [anon_sym_get] = ACTIONS(2882), + [anon_sym_set] = ACTIONS(2882), + [anon_sym_declare] = ACTIONS(2882), + [anon_sym_public] = ACTIONS(2882), + [anon_sym_private] = ACTIONS(2882), + [anon_sym_protected] = ACTIONS(2882), + [anon_sym_override] = ACTIONS(2882), + [anon_sym_module] = ACTIONS(2882), + [anon_sym_any] = ACTIONS(2882), + [anon_sym_number] = ACTIONS(2882), + [anon_sym_boolean] = ACTIONS(2882), + [anon_sym_string] = ACTIONS(2882), + [anon_sym_symbol] = ACTIONS(2882), + [anon_sym_object] = ACTIONS(2882), + [anon_sym_abstract] = ACTIONS(2882), + [anon_sym_interface] = ACTIONS(2882), + [anon_sym_enum] = ACTIONS(2882), [sym_html_comment] = ACTIONS(5), }, [895] = { - [ts_builtin_sym_end] = ACTIONS(2887), - [sym_identifier] = ACTIONS(2889), - [anon_sym_export] = ACTIONS(2889), - [anon_sym_default] = ACTIONS(2889), - [anon_sym_type] = ACTIONS(2889), - [anon_sym_namespace] = ACTIONS(2889), - [anon_sym_LBRACE] = ACTIONS(2887), - [anon_sym_RBRACE] = ACTIONS(2887), - [anon_sym_typeof] = ACTIONS(2889), - [anon_sym_import] = ACTIONS(2889), - [anon_sym_with] = ACTIONS(2889), - [anon_sym_var] = ACTIONS(2889), - [anon_sym_let] = ACTIONS(2889), - [anon_sym_const] = ACTIONS(2889), - [anon_sym_BANG] = ACTIONS(2887), - [anon_sym_else] = ACTIONS(2889), - [anon_sym_if] = ACTIONS(2889), - [anon_sym_switch] = ACTIONS(2889), - [anon_sym_for] = ACTIONS(2889), - [anon_sym_LPAREN] = ACTIONS(2887), - [anon_sym_SEMI] = ACTIONS(2887), - [anon_sym_await] = ACTIONS(2889), - [anon_sym_while] = ACTIONS(2889), - [anon_sym_do] = ACTIONS(2889), - [anon_sym_try] = ACTIONS(2889), - [anon_sym_break] = ACTIONS(2889), - [anon_sym_continue] = ACTIONS(2889), - [anon_sym_debugger] = ACTIONS(2889), - [anon_sym_return] = ACTIONS(2889), - [anon_sym_throw] = ACTIONS(2889), - [anon_sym_case] = ACTIONS(2889), - [anon_sym_yield] = ACTIONS(2889), - [anon_sym_LBRACK] = ACTIONS(2887), - [sym_glimmer_opening_tag] = ACTIONS(2887), - [anon_sym_DQUOTE] = ACTIONS(2887), - [anon_sym_SQUOTE] = ACTIONS(2887), - [anon_sym_class] = ACTIONS(2889), - [anon_sym_async] = ACTIONS(2889), - [anon_sym_function] = ACTIONS(2889), - [anon_sym_new] = ACTIONS(2889), - [anon_sym_using] = ACTIONS(2889), - [anon_sym_PLUS] = ACTIONS(2889), - [anon_sym_DASH] = ACTIONS(2889), - [anon_sym_SLASH] = ACTIONS(2889), - [anon_sym_LT] = ACTIONS(2889), - [anon_sym_TILDE] = ACTIONS(2887), - [anon_sym_void] = ACTIONS(2889), - [anon_sym_delete] = ACTIONS(2889), - [anon_sym_PLUS_PLUS] = ACTIONS(2887), - [anon_sym_DASH_DASH] = ACTIONS(2887), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2887), - [sym_number] = ACTIONS(2887), - [sym_private_property_identifier] = ACTIONS(2887), - [sym_this] = ACTIONS(2889), - [sym_super] = ACTIONS(2889), - [sym_true] = ACTIONS(2889), - [sym_false] = ACTIONS(2889), - [sym_null] = ACTIONS(2889), - [sym_undefined] = ACTIONS(2889), - [anon_sym_AT] = ACTIONS(2887), - [anon_sym_static] = ACTIONS(2889), - [anon_sym_readonly] = ACTIONS(2889), - [anon_sym_get] = ACTIONS(2889), - [anon_sym_set] = ACTIONS(2889), - [anon_sym_declare] = ACTIONS(2889), - [anon_sym_public] = ACTIONS(2889), - [anon_sym_private] = ACTIONS(2889), - [anon_sym_protected] = ACTIONS(2889), - [anon_sym_override] = ACTIONS(2889), - [anon_sym_module] = ACTIONS(2889), - [anon_sym_any] = ACTIONS(2889), - [anon_sym_number] = ACTIONS(2889), - [anon_sym_boolean] = ACTIONS(2889), - [anon_sym_string] = ACTIONS(2889), - [anon_sym_symbol] = ACTIONS(2889), - [anon_sym_object] = ACTIONS(2889), - [anon_sym_abstract] = ACTIONS(2889), - [anon_sym_interface] = ACTIONS(2889), - [anon_sym_enum] = ACTIONS(2889), + [ts_builtin_sym_end] = ACTIONS(2884), + [sym_identifier] = ACTIONS(2886), + [anon_sym_export] = ACTIONS(2886), + [anon_sym_default] = ACTIONS(2886), + [anon_sym_type] = ACTIONS(2886), + [anon_sym_namespace] = ACTIONS(2886), + [anon_sym_LBRACE] = ACTIONS(2884), + [anon_sym_RBRACE] = ACTIONS(2884), + [anon_sym_typeof] = ACTIONS(2886), + [anon_sym_import] = ACTIONS(2886), + [anon_sym_with] = ACTIONS(2886), + [anon_sym_var] = ACTIONS(2886), + [anon_sym_let] = ACTIONS(2886), + [anon_sym_const] = ACTIONS(2886), + [anon_sym_BANG] = ACTIONS(2884), + [anon_sym_else] = ACTIONS(2886), + [anon_sym_if] = ACTIONS(2886), + [anon_sym_switch] = ACTIONS(2886), + [anon_sym_for] = ACTIONS(2886), + [anon_sym_LPAREN] = ACTIONS(2884), + [anon_sym_SEMI] = ACTIONS(2884), + [anon_sym_await] = ACTIONS(2886), + [anon_sym_while] = ACTIONS(2886), + [anon_sym_do] = ACTIONS(2886), + [anon_sym_try] = ACTIONS(2886), + [anon_sym_break] = ACTIONS(2886), + [anon_sym_continue] = ACTIONS(2886), + [anon_sym_debugger] = ACTIONS(2886), + [anon_sym_return] = ACTIONS(2886), + [anon_sym_throw] = ACTIONS(2886), + [anon_sym_case] = ACTIONS(2886), + [anon_sym_yield] = ACTIONS(2886), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_DQUOTE] = ACTIONS(2884), + [anon_sym_SQUOTE] = ACTIONS(2884), + [anon_sym_class] = ACTIONS(2886), + [anon_sym_async] = ACTIONS(2886), + [anon_sym_function] = ACTIONS(2886), + [anon_sym_new] = ACTIONS(2886), + [anon_sym_using] = ACTIONS(2886), + [anon_sym_PLUS] = ACTIONS(2886), + [anon_sym_DASH] = ACTIONS(2886), + [anon_sym_SLASH] = ACTIONS(2886), + [anon_sym_LT] = ACTIONS(2884), + [anon_sym_TILDE] = ACTIONS(2884), + [anon_sym_void] = ACTIONS(2886), + [anon_sym_delete] = ACTIONS(2886), + [anon_sym_PLUS_PLUS] = ACTIONS(2884), + [anon_sym_DASH_DASH] = ACTIONS(2884), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2884), + [sym_number] = ACTIONS(2884), + [sym_private_property_identifier] = ACTIONS(2884), + [sym_this] = ACTIONS(2886), + [sym_super] = ACTIONS(2886), + [sym_true] = ACTIONS(2886), + [sym_false] = ACTIONS(2886), + [sym_null] = ACTIONS(2886), + [sym_undefined] = ACTIONS(2886), + [anon_sym_AT] = ACTIONS(2884), + [anon_sym_static] = ACTIONS(2886), + [anon_sym_readonly] = ACTIONS(2886), + [anon_sym_get] = ACTIONS(2886), + [anon_sym_set] = ACTIONS(2886), + [anon_sym_declare] = ACTIONS(2886), + [anon_sym_public] = ACTIONS(2886), + [anon_sym_private] = ACTIONS(2886), + [anon_sym_protected] = ACTIONS(2886), + [anon_sym_override] = ACTIONS(2886), + [anon_sym_module] = ACTIONS(2886), + [anon_sym_any] = ACTIONS(2886), + [anon_sym_number] = ACTIONS(2886), + [anon_sym_boolean] = ACTIONS(2886), + [anon_sym_string] = ACTIONS(2886), + [anon_sym_symbol] = ACTIONS(2886), + [anon_sym_object] = ACTIONS(2886), + [anon_sym_abstract] = ACTIONS(2886), + [anon_sym_interface] = ACTIONS(2886), + [anon_sym_enum] = ACTIONS(2886), [sym_html_comment] = ACTIONS(5), }, [896] = { - [ts_builtin_sym_end] = ACTIONS(2891), - [sym_identifier] = ACTIONS(2893), - [anon_sym_export] = ACTIONS(2893), - [anon_sym_default] = ACTIONS(2893), - [anon_sym_type] = ACTIONS(2893), - [anon_sym_namespace] = ACTIONS(2893), - [anon_sym_LBRACE] = ACTIONS(2891), - [anon_sym_RBRACE] = ACTIONS(2891), - [anon_sym_typeof] = ACTIONS(2893), - [anon_sym_import] = ACTIONS(2893), - [anon_sym_with] = ACTIONS(2893), - [anon_sym_var] = ACTIONS(2893), - [anon_sym_let] = ACTIONS(2893), - [anon_sym_const] = ACTIONS(2893), - [anon_sym_BANG] = ACTIONS(2891), - [anon_sym_else] = ACTIONS(2893), - [anon_sym_if] = ACTIONS(2893), - [anon_sym_switch] = ACTIONS(2893), - [anon_sym_for] = ACTIONS(2893), - [anon_sym_LPAREN] = ACTIONS(2891), - [anon_sym_SEMI] = ACTIONS(2891), - [anon_sym_await] = ACTIONS(2893), - [anon_sym_while] = ACTIONS(2893), - [anon_sym_do] = ACTIONS(2893), - [anon_sym_try] = ACTIONS(2893), - [anon_sym_break] = ACTIONS(2893), - [anon_sym_continue] = ACTIONS(2893), - [anon_sym_debugger] = ACTIONS(2893), - [anon_sym_return] = ACTIONS(2893), - [anon_sym_throw] = ACTIONS(2893), - [anon_sym_case] = ACTIONS(2893), - [anon_sym_yield] = ACTIONS(2893), - [anon_sym_LBRACK] = ACTIONS(2891), - [sym_glimmer_opening_tag] = ACTIONS(2891), - [anon_sym_DQUOTE] = ACTIONS(2891), - [anon_sym_SQUOTE] = ACTIONS(2891), - [anon_sym_class] = ACTIONS(2893), - [anon_sym_async] = ACTIONS(2893), - [anon_sym_function] = ACTIONS(2893), - [anon_sym_new] = ACTIONS(2893), - [anon_sym_using] = ACTIONS(2893), - [anon_sym_PLUS] = ACTIONS(2893), - [anon_sym_DASH] = ACTIONS(2893), - [anon_sym_SLASH] = ACTIONS(2893), - [anon_sym_LT] = ACTIONS(2893), - [anon_sym_TILDE] = ACTIONS(2891), - [anon_sym_void] = ACTIONS(2893), - [anon_sym_delete] = ACTIONS(2893), - [anon_sym_PLUS_PLUS] = ACTIONS(2891), - [anon_sym_DASH_DASH] = ACTIONS(2891), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2891), - [sym_number] = ACTIONS(2891), - [sym_private_property_identifier] = ACTIONS(2891), - [sym_this] = ACTIONS(2893), - [sym_super] = ACTIONS(2893), - [sym_true] = ACTIONS(2893), - [sym_false] = ACTIONS(2893), - [sym_null] = ACTIONS(2893), - [sym_undefined] = ACTIONS(2893), - [anon_sym_AT] = ACTIONS(2891), - [anon_sym_static] = ACTIONS(2893), - [anon_sym_readonly] = ACTIONS(2893), - [anon_sym_get] = ACTIONS(2893), - [anon_sym_set] = ACTIONS(2893), - [anon_sym_declare] = ACTIONS(2893), - [anon_sym_public] = ACTIONS(2893), - [anon_sym_private] = ACTIONS(2893), - [anon_sym_protected] = ACTIONS(2893), - [anon_sym_override] = ACTIONS(2893), - [anon_sym_module] = ACTIONS(2893), - [anon_sym_any] = ACTIONS(2893), - [anon_sym_number] = ACTIONS(2893), - [anon_sym_boolean] = ACTIONS(2893), - [anon_sym_string] = ACTIONS(2893), - [anon_sym_symbol] = ACTIONS(2893), - [anon_sym_object] = ACTIONS(2893), - [anon_sym_abstract] = ACTIONS(2893), - [anon_sym_interface] = ACTIONS(2893), - [anon_sym_enum] = ACTIONS(2893), + [ts_builtin_sym_end] = ACTIONS(2888), + [sym_identifier] = ACTIONS(2890), + [anon_sym_export] = ACTIONS(2890), + [anon_sym_default] = ACTIONS(2890), + [anon_sym_type] = ACTIONS(2890), + [anon_sym_namespace] = ACTIONS(2890), + [anon_sym_LBRACE] = ACTIONS(2888), + [anon_sym_RBRACE] = ACTIONS(2888), + [anon_sym_typeof] = ACTIONS(2890), + [anon_sym_import] = ACTIONS(2890), + [anon_sym_with] = ACTIONS(2890), + [anon_sym_var] = ACTIONS(2890), + [anon_sym_let] = ACTIONS(2890), + [anon_sym_const] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2888), + [anon_sym_else] = ACTIONS(2890), + [anon_sym_if] = ACTIONS(2890), + [anon_sym_switch] = ACTIONS(2890), + [anon_sym_for] = ACTIONS(2890), + [anon_sym_LPAREN] = ACTIONS(2888), + [anon_sym_SEMI] = ACTIONS(2888), + [anon_sym_await] = ACTIONS(2890), + [anon_sym_while] = ACTIONS(2890), + [anon_sym_do] = ACTIONS(2890), + [anon_sym_try] = ACTIONS(2890), + [anon_sym_break] = ACTIONS(2890), + [anon_sym_continue] = ACTIONS(2890), + [anon_sym_debugger] = ACTIONS(2890), + [anon_sym_return] = ACTIONS(2890), + [anon_sym_throw] = ACTIONS(2890), + [anon_sym_case] = ACTIONS(2890), + [anon_sym_yield] = ACTIONS(2890), + [anon_sym_LBRACK] = ACTIONS(2888), + [anon_sym_DQUOTE] = ACTIONS(2888), + [anon_sym_SQUOTE] = ACTIONS(2888), + [anon_sym_class] = ACTIONS(2890), + [anon_sym_async] = ACTIONS(2890), + [anon_sym_function] = ACTIONS(2890), + [anon_sym_new] = ACTIONS(2890), + [anon_sym_using] = ACTIONS(2890), + [anon_sym_PLUS] = ACTIONS(2890), + [anon_sym_DASH] = ACTIONS(2890), + [anon_sym_SLASH] = ACTIONS(2890), + [anon_sym_LT] = ACTIONS(2888), + [anon_sym_TILDE] = ACTIONS(2888), + [anon_sym_void] = ACTIONS(2890), + [anon_sym_delete] = ACTIONS(2890), + [anon_sym_PLUS_PLUS] = ACTIONS(2888), + [anon_sym_DASH_DASH] = ACTIONS(2888), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2888), + [sym_number] = ACTIONS(2888), + [sym_private_property_identifier] = ACTIONS(2888), + [sym_this] = ACTIONS(2890), + [sym_super] = ACTIONS(2890), + [sym_true] = ACTIONS(2890), + [sym_false] = ACTIONS(2890), + [sym_null] = ACTIONS(2890), + [sym_undefined] = ACTIONS(2890), + [anon_sym_AT] = ACTIONS(2888), + [anon_sym_static] = ACTIONS(2890), + [anon_sym_readonly] = ACTIONS(2890), + [anon_sym_get] = ACTIONS(2890), + [anon_sym_set] = ACTIONS(2890), + [anon_sym_declare] = ACTIONS(2890), + [anon_sym_public] = ACTIONS(2890), + [anon_sym_private] = ACTIONS(2890), + [anon_sym_protected] = ACTIONS(2890), + [anon_sym_override] = ACTIONS(2890), + [anon_sym_module] = ACTIONS(2890), + [anon_sym_any] = ACTIONS(2890), + [anon_sym_number] = ACTIONS(2890), + [anon_sym_boolean] = ACTIONS(2890), + [anon_sym_string] = ACTIONS(2890), + [anon_sym_symbol] = ACTIONS(2890), + [anon_sym_object] = ACTIONS(2890), + [anon_sym_abstract] = ACTIONS(2890), + [anon_sym_interface] = ACTIONS(2890), + [anon_sym_enum] = ACTIONS(2890), [sym_html_comment] = ACTIONS(5), }, [897] = { - [ts_builtin_sym_end] = ACTIONS(2895), - [sym_identifier] = ACTIONS(2897), - [anon_sym_export] = ACTIONS(2897), - [anon_sym_default] = ACTIONS(2897), - [anon_sym_type] = ACTIONS(2897), - [anon_sym_namespace] = ACTIONS(2897), - [anon_sym_LBRACE] = ACTIONS(2895), - [anon_sym_RBRACE] = ACTIONS(2895), - [anon_sym_typeof] = ACTIONS(2897), - [anon_sym_import] = ACTIONS(2897), - [anon_sym_with] = ACTIONS(2897), - [anon_sym_var] = ACTIONS(2897), - [anon_sym_let] = ACTIONS(2897), - [anon_sym_const] = ACTIONS(2897), - [anon_sym_BANG] = ACTIONS(2895), - [anon_sym_else] = ACTIONS(2897), - [anon_sym_if] = ACTIONS(2897), - [anon_sym_switch] = ACTIONS(2897), - [anon_sym_for] = ACTIONS(2897), - [anon_sym_LPAREN] = ACTIONS(2895), - [anon_sym_SEMI] = ACTIONS(2895), - [anon_sym_await] = ACTIONS(2897), - [anon_sym_while] = ACTIONS(2897), - [anon_sym_do] = ACTIONS(2897), - [anon_sym_try] = ACTIONS(2897), - [anon_sym_break] = ACTIONS(2897), - [anon_sym_continue] = ACTIONS(2897), - [anon_sym_debugger] = ACTIONS(2897), - [anon_sym_return] = ACTIONS(2897), - [anon_sym_throw] = ACTIONS(2897), - [anon_sym_case] = ACTIONS(2897), - [anon_sym_yield] = ACTIONS(2897), - [anon_sym_LBRACK] = ACTIONS(2895), - [sym_glimmer_opening_tag] = ACTIONS(2895), - [anon_sym_DQUOTE] = ACTIONS(2895), - [anon_sym_SQUOTE] = ACTIONS(2895), - [anon_sym_class] = ACTIONS(2897), - [anon_sym_async] = ACTIONS(2897), - [anon_sym_function] = ACTIONS(2897), - [anon_sym_new] = ACTIONS(2897), - [anon_sym_using] = ACTIONS(2897), - [anon_sym_PLUS] = ACTIONS(2897), - [anon_sym_DASH] = ACTIONS(2897), - [anon_sym_SLASH] = ACTIONS(2897), - [anon_sym_LT] = ACTIONS(2897), - [anon_sym_TILDE] = ACTIONS(2895), - [anon_sym_void] = ACTIONS(2897), - [anon_sym_delete] = ACTIONS(2897), - [anon_sym_PLUS_PLUS] = ACTIONS(2895), - [anon_sym_DASH_DASH] = ACTIONS(2895), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2895), - [sym_number] = ACTIONS(2895), - [sym_private_property_identifier] = ACTIONS(2895), - [sym_this] = ACTIONS(2897), - [sym_super] = ACTIONS(2897), - [sym_true] = ACTIONS(2897), - [sym_false] = ACTIONS(2897), - [sym_null] = ACTIONS(2897), - [sym_undefined] = ACTIONS(2897), - [anon_sym_AT] = ACTIONS(2895), - [anon_sym_static] = ACTIONS(2897), - [anon_sym_readonly] = ACTIONS(2897), - [anon_sym_get] = ACTIONS(2897), - [anon_sym_set] = ACTIONS(2897), - [anon_sym_declare] = ACTIONS(2897), - [anon_sym_public] = ACTIONS(2897), - [anon_sym_private] = ACTIONS(2897), - [anon_sym_protected] = ACTIONS(2897), - [anon_sym_override] = ACTIONS(2897), - [anon_sym_module] = ACTIONS(2897), - [anon_sym_any] = ACTIONS(2897), - [anon_sym_number] = ACTIONS(2897), - [anon_sym_boolean] = ACTIONS(2897), - [anon_sym_string] = ACTIONS(2897), - [anon_sym_symbol] = ACTIONS(2897), - [anon_sym_object] = ACTIONS(2897), - [anon_sym_abstract] = ACTIONS(2897), - [anon_sym_interface] = ACTIONS(2897), - [anon_sym_enum] = ACTIONS(2897), + [ts_builtin_sym_end] = ACTIONS(2892), + [sym_identifier] = ACTIONS(2894), + [anon_sym_export] = ACTIONS(2894), + [anon_sym_default] = ACTIONS(2894), + [anon_sym_type] = ACTIONS(2894), + [anon_sym_namespace] = ACTIONS(2894), + [anon_sym_LBRACE] = ACTIONS(2892), + [anon_sym_RBRACE] = ACTIONS(2892), + [anon_sym_typeof] = ACTIONS(2894), + [anon_sym_import] = ACTIONS(2894), + [anon_sym_with] = ACTIONS(2894), + [anon_sym_var] = ACTIONS(2894), + [anon_sym_let] = ACTIONS(2894), + [anon_sym_const] = ACTIONS(2894), + [anon_sym_BANG] = ACTIONS(2892), + [anon_sym_else] = ACTIONS(2894), + [anon_sym_if] = ACTIONS(2894), + [anon_sym_switch] = ACTIONS(2894), + [anon_sym_for] = ACTIONS(2894), + [anon_sym_LPAREN] = ACTIONS(2892), + [anon_sym_SEMI] = ACTIONS(2892), + [anon_sym_await] = ACTIONS(2894), + [anon_sym_while] = ACTIONS(2894), + [anon_sym_do] = ACTIONS(2894), + [anon_sym_try] = ACTIONS(2894), + [anon_sym_break] = ACTIONS(2894), + [anon_sym_continue] = ACTIONS(2894), + [anon_sym_debugger] = ACTIONS(2894), + [anon_sym_return] = ACTIONS(2894), + [anon_sym_throw] = ACTIONS(2894), + [anon_sym_case] = ACTIONS(2894), + [anon_sym_yield] = ACTIONS(2894), + [anon_sym_LBRACK] = ACTIONS(2892), + [anon_sym_DQUOTE] = ACTIONS(2892), + [anon_sym_SQUOTE] = ACTIONS(2892), + [anon_sym_class] = ACTIONS(2894), + [anon_sym_async] = ACTIONS(2894), + [anon_sym_function] = ACTIONS(2894), + [anon_sym_new] = ACTIONS(2894), + [anon_sym_using] = ACTIONS(2894), + [anon_sym_PLUS] = ACTIONS(2894), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_SLASH] = ACTIONS(2894), + [anon_sym_LT] = ACTIONS(2892), + [anon_sym_TILDE] = ACTIONS(2892), + [anon_sym_void] = ACTIONS(2894), + [anon_sym_delete] = ACTIONS(2894), + [anon_sym_PLUS_PLUS] = ACTIONS(2892), + [anon_sym_DASH_DASH] = ACTIONS(2892), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2892), + [sym_number] = ACTIONS(2892), + [sym_private_property_identifier] = ACTIONS(2892), + [sym_this] = ACTIONS(2894), + [sym_super] = ACTIONS(2894), + [sym_true] = ACTIONS(2894), + [sym_false] = ACTIONS(2894), + [sym_null] = ACTIONS(2894), + [sym_undefined] = ACTIONS(2894), + [anon_sym_AT] = ACTIONS(2892), + [anon_sym_static] = ACTIONS(2894), + [anon_sym_readonly] = ACTIONS(2894), + [anon_sym_get] = ACTIONS(2894), + [anon_sym_set] = ACTIONS(2894), + [anon_sym_declare] = ACTIONS(2894), + [anon_sym_public] = ACTIONS(2894), + [anon_sym_private] = ACTIONS(2894), + [anon_sym_protected] = ACTIONS(2894), + [anon_sym_override] = ACTIONS(2894), + [anon_sym_module] = ACTIONS(2894), + [anon_sym_any] = ACTIONS(2894), + [anon_sym_number] = ACTIONS(2894), + [anon_sym_boolean] = ACTIONS(2894), + [anon_sym_string] = ACTIONS(2894), + [anon_sym_symbol] = ACTIONS(2894), + [anon_sym_object] = ACTIONS(2894), + [anon_sym_abstract] = ACTIONS(2894), + [anon_sym_interface] = ACTIONS(2894), + [anon_sym_enum] = ACTIONS(2894), [sym_html_comment] = ACTIONS(5), }, [898] = { - [ts_builtin_sym_end] = ACTIONS(2899), - [sym_identifier] = ACTIONS(2901), - [anon_sym_export] = ACTIONS(2901), - [anon_sym_default] = ACTIONS(2901), - [anon_sym_type] = ACTIONS(2901), - [anon_sym_namespace] = ACTIONS(2901), - [anon_sym_LBRACE] = ACTIONS(2899), - [anon_sym_RBRACE] = ACTIONS(2899), - [anon_sym_typeof] = ACTIONS(2901), - [anon_sym_import] = ACTIONS(2901), - [anon_sym_with] = ACTIONS(2901), - [anon_sym_var] = ACTIONS(2901), - [anon_sym_let] = ACTIONS(2901), - [anon_sym_const] = ACTIONS(2901), - [anon_sym_BANG] = ACTIONS(2899), - [anon_sym_else] = ACTIONS(2901), - [anon_sym_if] = ACTIONS(2901), - [anon_sym_switch] = ACTIONS(2901), - [anon_sym_for] = ACTIONS(2901), - [anon_sym_LPAREN] = ACTIONS(2899), - [anon_sym_SEMI] = ACTIONS(2899), - [anon_sym_await] = ACTIONS(2901), - [anon_sym_while] = ACTIONS(2901), - [anon_sym_do] = ACTIONS(2901), - [anon_sym_try] = ACTIONS(2901), - [anon_sym_break] = ACTIONS(2901), - [anon_sym_continue] = ACTIONS(2901), - [anon_sym_debugger] = ACTIONS(2901), - [anon_sym_return] = ACTIONS(2901), - [anon_sym_throw] = ACTIONS(2901), - [anon_sym_case] = ACTIONS(2901), - [anon_sym_yield] = ACTIONS(2901), - [anon_sym_LBRACK] = ACTIONS(2899), - [sym_glimmer_opening_tag] = ACTIONS(2899), - [anon_sym_DQUOTE] = ACTIONS(2899), - [anon_sym_SQUOTE] = ACTIONS(2899), - [anon_sym_class] = ACTIONS(2901), - [anon_sym_async] = ACTIONS(2901), - [anon_sym_function] = ACTIONS(2901), - [anon_sym_new] = ACTIONS(2901), - [anon_sym_using] = ACTIONS(2901), - [anon_sym_PLUS] = ACTIONS(2901), - [anon_sym_DASH] = ACTIONS(2901), - [anon_sym_SLASH] = ACTIONS(2901), - [anon_sym_LT] = ACTIONS(2901), - [anon_sym_TILDE] = ACTIONS(2899), - [anon_sym_void] = ACTIONS(2901), - [anon_sym_delete] = ACTIONS(2901), - [anon_sym_PLUS_PLUS] = ACTIONS(2899), - [anon_sym_DASH_DASH] = ACTIONS(2899), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2899), - [sym_number] = ACTIONS(2899), - [sym_private_property_identifier] = ACTIONS(2899), - [sym_this] = ACTIONS(2901), - [sym_super] = ACTIONS(2901), - [sym_true] = ACTIONS(2901), - [sym_false] = ACTIONS(2901), - [sym_null] = ACTIONS(2901), - [sym_undefined] = ACTIONS(2901), - [anon_sym_AT] = ACTIONS(2899), - [anon_sym_static] = ACTIONS(2901), - [anon_sym_readonly] = ACTIONS(2901), - [anon_sym_get] = ACTIONS(2901), - [anon_sym_set] = ACTIONS(2901), - [anon_sym_declare] = ACTIONS(2901), - [anon_sym_public] = ACTIONS(2901), - [anon_sym_private] = ACTIONS(2901), - [anon_sym_protected] = ACTIONS(2901), - [anon_sym_override] = ACTIONS(2901), - [anon_sym_module] = ACTIONS(2901), - [anon_sym_any] = ACTIONS(2901), - [anon_sym_number] = ACTIONS(2901), - [anon_sym_boolean] = ACTIONS(2901), - [anon_sym_string] = ACTIONS(2901), - [anon_sym_symbol] = ACTIONS(2901), - [anon_sym_object] = ACTIONS(2901), - [anon_sym_abstract] = ACTIONS(2901), - [anon_sym_interface] = ACTIONS(2901), - [anon_sym_enum] = ACTIONS(2901), + [ts_builtin_sym_end] = ACTIONS(2896), + [sym_identifier] = ACTIONS(2898), + [anon_sym_export] = ACTIONS(2898), + [anon_sym_default] = ACTIONS(2898), + [anon_sym_type] = ACTIONS(2898), + [anon_sym_namespace] = ACTIONS(2898), + [anon_sym_LBRACE] = ACTIONS(2896), + [anon_sym_RBRACE] = ACTIONS(2896), + [anon_sym_typeof] = ACTIONS(2898), + [anon_sym_import] = ACTIONS(2898), + [anon_sym_with] = ACTIONS(2898), + [anon_sym_var] = ACTIONS(2898), + [anon_sym_let] = ACTIONS(2898), + [anon_sym_const] = ACTIONS(2898), + [anon_sym_BANG] = ACTIONS(2896), + [anon_sym_else] = ACTIONS(2898), + [anon_sym_if] = ACTIONS(2898), + [anon_sym_switch] = ACTIONS(2898), + [anon_sym_for] = ACTIONS(2898), + [anon_sym_LPAREN] = ACTIONS(2896), + [anon_sym_SEMI] = ACTIONS(2896), + [anon_sym_await] = ACTIONS(2898), + [anon_sym_while] = ACTIONS(2898), + [anon_sym_do] = ACTIONS(2898), + [anon_sym_try] = ACTIONS(2898), + [anon_sym_break] = ACTIONS(2898), + [anon_sym_continue] = ACTIONS(2898), + [anon_sym_debugger] = ACTIONS(2898), + [anon_sym_return] = ACTIONS(2898), + [anon_sym_throw] = ACTIONS(2898), + [anon_sym_case] = ACTIONS(2898), + [anon_sym_yield] = ACTIONS(2898), + [anon_sym_LBRACK] = ACTIONS(2896), + [anon_sym_DQUOTE] = ACTIONS(2896), + [anon_sym_SQUOTE] = ACTIONS(2896), + [anon_sym_class] = ACTIONS(2898), + [anon_sym_async] = ACTIONS(2898), + [anon_sym_function] = ACTIONS(2898), + [anon_sym_new] = ACTIONS(2898), + [anon_sym_using] = ACTIONS(2898), + [anon_sym_PLUS] = ACTIONS(2898), + [anon_sym_DASH] = ACTIONS(2898), + [anon_sym_SLASH] = ACTIONS(2898), + [anon_sym_LT] = ACTIONS(2896), + [anon_sym_TILDE] = ACTIONS(2896), + [anon_sym_void] = ACTIONS(2898), + [anon_sym_delete] = ACTIONS(2898), + [anon_sym_PLUS_PLUS] = ACTIONS(2896), + [anon_sym_DASH_DASH] = ACTIONS(2896), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2896), + [sym_number] = ACTIONS(2896), + [sym_private_property_identifier] = ACTIONS(2896), + [sym_this] = ACTIONS(2898), + [sym_super] = ACTIONS(2898), + [sym_true] = ACTIONS(2898), + [sym_false] = ACTIONS(2898), + [sym_null] = ACTIONS(2898), + [sym_undefined] = ACTIONS(2898), + [anon_sym_AT] = ACTIONS(2896), + [anon_sym_static] = ACTIONS(2898), + [anon_sym_readonly] = ACTIONS(2898), + [anon_sym_get] = ACTIONS(2898), + [anon_sym_set] = ACTIONS(2898), + [anon_sym_declare] = ACTIONS(2898), + [anon_sym_public] = ACTIONS(2898), + [anon_sym_private] = ACTIONS(2898), + [anon_sym_protected] = ACTIONS(2898), + [anon_sym_override] = ACTIONS(2898), + [anon_sym_module] = ACTIONS(2898), + [anon_sym_any] = ACTIONS(2898), + [anon_sym_number] = ACTIONS(2898), + [anon_sym_boolean] = ACTIONS(2898), + [anon_sym_string] = ACTIONS(2898), + [anon_sym_symbol] = ACTIONS(2898), + [anon_sym_object] = ACTIONS(2898), + [anon_sym_abstract] = ACTIONS(2898), + [anon_sym_interface] = ACTIONS(2898), + [anon_sym_enum] = ACTIONS(2898), [sym_html_comment] = ACTIONS(5), }, [899] = { - [ts_builtin_sym_end] = ACTIONS(2903), - [sym_identifier] = ACTIONS(2905), - [anon_sym_export] = ACTIONS(2905), - [anon_sym_default] = ACTIONS(2905), - [anon_sym_type] = ACTIONS(2905), - [anon_sym_namespace] = ACTIONS(2905), - [anon_sym_LBRACE] = ACTIONS(2903), - [anon_sym_RBRACE] = ACTIONS(2903), - [anon_sym_typeof] = ACTIONS(2905), - [anon_sym_import] = ACTIONS(2905), - [anon_sym_with] = ACTIONS(2905), - [anon_sym_var] = ACTIONS(2905), - [anon_sym_let] = ACTIONS(2905), - [anon_sym_const] = ACTIONS(2905), - [anon_sym_BANG] = ACTIONS(2903), - [anon_sym_else] = ACTIONS(2905), - [anon_sym_if] = ACTIONS(2905), - [anon_sym_switch] = ACTIONS(2905), - [anon_sym_for] = ACTIONS(2905), - [anon_sym_LPAREN] = ACTIONS(2903), - [anon_sym_SEMI] = ACTIONS(2903), - [anon_sym_await] = ACTIONS(2905), - [anon_sym_while] = ACTIONS(2905), - [anon_sym_do] = ACTIONS(2905), - [anon_sym_try] = ACTIONS(2905), - [anon_sym_break] = ACTIONS(2905), - [anon_sym_continue] = ACTIONS(2905), - [anon_sym_debugger] = ACTIONS(2905), - [anon_sym_return] = ACTIONS(2905), - [anon_sym_throw] = ACTIONS(2905), - [anon_sym_case] = ACTIONS(2905), - [anon_sym_yield] = ACTIONS(2905), - [anon_sym_LBRACK] = ACTIONS(2903), - [sym_glimmer_opening_tag] = ACTIONS(2903), - [anon_sym_DQUOTE] = ACTIONS(2903), - [anon_sym_SQUOTE] = ACTIONS(2903), - [anon_sym_class] = ACTIONS(2905), - [anon_sym_async] = ACTIONS(2905), - [anon_sym_function] = ACTIONS(2905), - [anon_sym_new] = ACTIONS(2905), - [anon_sym_using] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(2905), - [anon_sym_DASH] = ACTIONS(2905), - [anon_sym_SLASH] = ACTIONS(2905), - [anon_sym_LT] = ACTIONS(2905), - [anon_sym_TILDE] = ACTIONS(2903), - [anon_sym_void] = ACTIONS(2905), - [anon_sym_delete] = ACTIONS(2905), - [anon_sym_PLUS_PLUS] = ACTIONS(2903), - [anon_sym_DASH_DASH] = ACTIONS(2903), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2903), - [sym_number] = ACTIONS(2903), - [sym_private_property_identifier] = ACTIONS(2903), - [sym_this] = ACTIONS(2905), - [sym_super] = ACTIONS(2905), - [sym_true] = ACTIONS(2905), - [sym_false] = ACTIONS(2905), - [sym_null] = ACTIONS(2905), - [sym_undefined] = ACTIONS(2905), - [anon_sym_AT] = ACTIONS(2903), - [anon_sym_static] = ACTIONS(2905), - [anon_sym_readonly] = ACTIONS(2905), - [anon_sym_get] = ACTIONS(2905), - [anon_sym_set] = ACTIONS(2905), - [anon_sym_declare] = ACTIONS(2905), - [anon_sym_public] = ACTIONS(2905), - [anon_sym_private] = ACTIONS(2905), - [anon_sym_protected] = ACTIONS(2905), - [anon_sym_override] = ACTIONS(2905), - [anon_sym_module] = ACTIONS(2905), - [anon_sym_any] = ACTIONS(2905), - [anon_sym_number] = ACTIONS(2905), - [anon_sym_boolean] = ACTIONS(2905), - [anon_sym_string] = ACTIONS(2905), - [anon_sym_symbol] = ACTIONS(2905), - [anon_sym_object] = ACTIONS(2905), - [anon_sym_abstract] = ACTIONS(2905), - [anon_sym_interface] = ACTIONS(2905), - [anon_sym_enum] = ACTIONS(2905), + [ts_builtin_sym_end] = ACTIONS(2900), + [sym_identifier] = ACTIONS(2902), + [anon_sym_export] = ACTIONS(2902), + [anon_sym_default] = ACTIONS(2902), + [anon_sym_type] = ACTIONS(2902), + [anon_sym_namespace] = ACTIONS(2902), + [anon_sym_LBRACE] = ACTIONS(2900), + [anon_sym_RBRACE] = ACTIONS(2900), + [anon_sym_typeof] = ACTIONS(2902), + [anon_sym_import] = ACTIONS(2902), + [anon_sym_with] = ACTIONS(2902), + [anon_sym_var] = ACTIONS(2902), + [anon_sym_let] = ACTIONS(2902), + [anon_sym_const] = ACTIONS(2902), + [anon_sym_BANG] = ACTIONS(2900), + [anon_sym_else] = ACTIONS(2902), + [anon_sym_if] = ACTIONS(2902), + [anon_sym_switch] = ACTIONS(2902), + [anon_sym_for] = ACTIONS(2902), + [anon_sym_LPAREN] = ACTIONS(2900), + [anon_sym_SEMI] = ACTIONS(2900), + [anon_sym_await] = ACTIONS(2902), + [anon_sym_while] = ACTIONS(2902), + [anon_sym_do] = ACTIONS(2902), + [anon_sym_try] = ACTIONS(2902), + [anon_sym_break] = ACTIONS(2902), + [anon_sym_continue] = ACTIONS(2902), + [anon_sym_debugger] = ACTIONS(2902), + [anon_sym_return] = ACTIONS(2902), + [anon_sym_throw] = ACTIONS(2902), + [anon_sym_case] = ACTIONS(2902), + [anon_sym_yield] = ACTIONS(2902), + [anon_sym_LBRACK] = ACTIONS(2900), + [anon_sym_DQUOTE] = ACTIONS(2900), + [anon_sym_SQUOTE] = ACTIONS(2900), + [anon_sym_class] = ACTIONS(2902), + [anon_sym_async] = ACTIONS(2902), + [anon_sym_function] = ACTIONS(2902), + [anon_sym_new] = ACTIONS(2902), + [anon_sym_using] = ACTIONS(2902), + [anon_sym_PLUS] = ACTIONS(2902), + [anon_sym_DASH] = ACTIONS(2902), + [anon_sym_SLASH] = ACTIONS(2902), + [anon_sym_LT] = ACTIONS(2900), + [anon_sym_TILDE] = ACTIONS(2900), + [anon_sym_void] = ACTIONS(2902), + [anon_sym_delete] = ACTIONS(2902), + [anon_sym_PLUS_PLUS] = ACTIONS(2900), + [anon_sym_DASH_DASH] = ACTIONS(2900), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2900), + [sym_number] = ACTIONS(2900), + [sym_private_property_identifier] = ACTIONS(2900), + [sym_this] = ACTIONS(2902), + [sym_super] = ACTIONS(2902), + [sym_true] = ACTIONS(2902), + [sym_false] = ACTIONS(2902), + [sym_null] = ACTIONS(2902), + [sym_undefined] = ACTIONS(2902), + [anon_sym_AT] = ACTIONS(2900), + [anon_sym_static] = ACTIONS(2902), + [anon_sym_readonly] = ACTIONS(2902), + [anon_sym_get] = ACTIONS(2902), + [anon_sym_set] = ACTIONS(2902), + [anon_sym_declare] = ACTIONS(2902), + [anon_sym_public] = ACTIONS(2902), + [anon_sym_private] = ACTIONS(2902), + [anon_sym_protected] = ACTIONS(2902), + [anon_sym_override] = ACTIONS(2902), + [anon_sym_module] = ACTIONS(2902), + [anon_sym_any] = ACTIONS(2902), + [anon_sym_number] = ACTIONS(2902), + [anon_sym_boolean] = ACTIONS(2902), + [anon_sym_string] = ACTIONS(2902), + [anon_sym_symbol] = ACTIONS(2902), + [anon_sym_object] = ACTIONS(2902), + [anon_sym_abstract] = ACTIONS(2902), + [anon_sym_interface] = ACTIONS(2902), + [anon_sym_enum] = ACTIONS(2902), [sym_html_comment] = ACTIONS(5), }, [900] = { - [ts_builtin_sym_end] = ACTIONS(2907), - [sym_identifier] = ACTIONS(2909), - [anon_sym_export] = ACTIONS(2909), - [anon_sym_default] = ACTIONS(2909), - [anon_sym_type] = ACTIONS(2909), - [anon_sym_namespace] = ACTIONS(2909), - [anon_sym_LBRACE] = ACTIONS(2907), - [anon_sym_RBRACE] = ACTIONS(2907), - [anon_sym_typeof] = ACTIONS(2909), - [anon_sym_import] = ACTIONS(2909), - [anon_sym_with] = ACTIONS(2909), - [anon_sym_var] = ACTIONS(2909), - [anon_sym_let] = ACTIONS(2909), - [anon_sym_const] = ACTIONS(2909), - [anon_sym_BANG] = ACTIONS(2907), - [anon_sym_else] = ACTIONS(2909), - [anon_sym_if] = ACTIONS(2909), - [anon_sym_switch] = ACTIONS(2909), - [anon_sym_for] = ACTIONS(2909), - [anon_sym_LPAREN] = ACTIONS(2907), - [anon_sym_SEMI] = ACTIONS(2907), - [anon_sym_await] = ACTIONS(2909), - [anon_sym_while] = ACTIONS(2909), - [anon_sym_do] = ACTIONS(2909), - [anon_sym_try] = ACTIONS(2909), - [anon_sym_break] = ACTIONS(2909), - [anon_sym_continue] = ACTIONS(2909), - [anon_sym_debugger] = ACTIONS(2909), - [anon_sym_return] = ACTIONS(2909), - [anon_sym_throw] = ACTIONS(2909), - [anon_sym_case] = ACTIONS(2909), - [anon_sym_yield] = ACTIONS(2909), - [anon_sym_LBRACK] = ACTIONS(2907), - [sym_glimmer_opening_tag] = ACTIONS(2907), - [anon_sym_DQUOTE] = ACTIONS(2907), - [anon_sym_SQUOTE] = ACTIONS(2907), - [anon_sym_class] = ACTIONS(2909), - [anon_sym_async] = ACTIONS(2909), - [anon_sym_function] = ACTIONS(2909), - [anon_sym_new] = ACTIONS(2909), - [anon_sym_using] = ACTIONS(2909), - [anon_sym_PLUS] = ACTIONS(2909), - [anon_sym_DASH] = ACTIONS(2909), - [anon_sym_SLASH] = ACTIONS(2909), - [anon_sym_LT] = ACTIONS(2909), - [anon_sym_TILDE] = ACTIONS(2907), - [anon_sym_void] = ACTIONS(2909), - [anon_sym_delete] = ACTIONS(2909), - [anon_sym_PLUS_PLUS] = ACTIONS(2907), - [anon_sym_DASH_DASH] = ACTIONS(2907), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2907), - [sym_number] = ACTIONS(2907), - [sym_private_property_identifier] = ACTIONS(2907), - [sym_this] = ACTIONS(2909), - [sym_super] = ACTIONS(2909), - [sym_true] = ACTIONS(2909), - [sym_false] = ACTIONS(2909), - [sym_null] = ACTIONS(2909), - [sym_undefined] = ACTIONS(2909), - [anon_sym_AT] = ACTIONS(2907), - [anon_sym_static] = ACTIONS(2909), - [anon_sym_readonly] = ACTIONS(2909), - [anon_sym_get] = ACTIONS(2909), - [anon_sym_set] = ACTIONS(2909), - [anon_sym_declare] = ACTIONS(2909), - [anon_sym_public] = ACTIONS(2909), - [anon_sym_private] = ACTIONS(2909), - [anon_sym_protected] = ACTIONS(2909), - [anon_sym_override] = ACTIONS(2909), - [anon_sym_module] = ACTIONS(2909), - [anon_sym_any] = ACTIONS(2909), - [anon_sym_number] = ACTIONS(2909), - [anon_sym_boolean] = ACTIONS(2909), - [anon_sym_string] = ACTIONS(2909), - [anon_sym_symbol] = ACTIONS(2909), - [anon_sym_object] = ACTIONS(2909), - [anon_sym_abstract] = ACTIONS(2909), - [anon_sym_interface] = ACTIONS(2909), - [anon_sym_enum] = ACTIONS(2909), + [ts_builtin_sym_end] = ACTIONS(2904), + [sym_identifier] = ACTIONS(2906), + [anon_sym_export] = ACTIONS(2906), + [anon_sym_default] = ACTIONS(2906), + [anon_sym_type] = ACTIONS(2906), + [anon_sym_namespace] = ACTIONS(2906), + [anon_sym_LBRACE] = ACTIONS(2904), + [anon_sym_RBRACE] = ACTIONS(2904), + [anon_sym_typeof] = ACTIONS(2906), + [anon_sym_import] = ACTIONS(2906), + [anon_sym_with] = ACTIONS(2906), + [anon_sym_var] = ACTIONS(2906), + [anon_sym_let] = ACTIONS(2906), + [anon_sym_const] = ACTIONS(2906), + [anon_sym_BANG] = ACTIONS(2904), + [anon_sym_else] = ACTIONS(2906), + [anon_sym_if] = ACTIONS(2906), + [anon_sym_switch] = ACTIONS(2906), + [anon_sym_for] = ACTIONS(2906), + [anon_sym_LPAREN] = ACTIONS(2904), + [anon_sym_SEMI] = ACTIONS(2904), + [anon_sym_await] = ACTIONS(2906), + [anon_sym_while] = ACTIONS(2906), + [anon_sym_do] = ACTIONS(2906), + [anon_sym_try] = ACTIONS(2906), + [anon_sym_break] = ACTIONS(2906), + [anon_sym_continue] = ACTIONS(2906), + [anon_sym_debugger] = ACTIONS(2906), + [anon_sym_return] = ACTIONS(2906), + [anon_sym_throw] = ACTIONS(2906), + [anon_sym_case] = ACTIONS(2906), + [anon_sym_yield] = ACTIONS(2906), + [anon_sym_LBRACK] = ACTIONS(2904), + [anon_sym_DQUOTE] = ACTIONS(2904), + [anon_sym_SQUOTE] = ACTIONS(2904), + [anon_sym_class] = ACTIONS(2906), + [anon_sym_async] = ACTIONS(2906), + [anon_sym_function] = ACTIONS(2906), + [anon_sym_new] = ACTIONS(2906), + [anon_sym_using] = ACTIONS(2906), + [anon_sym_PLUS] = ACTIONS(2906), + [anon_sym_DASH] = ACTIONS(2906), + [anon_sym_SLASH] = ACTIONS(2906), + [anon_sym_LT] = ACTIONS(2904), + [anon_sym_TILDE] = ACTIONS(2904), + [anon_sym_void] = ACTIONS(2906), + [anon_sym_delete] = ACTIONS(2906), + [anon_sym_PLUS_PLUS] = ACTIONS(2904), + [anon_sym_DASH_DASH] = ACTIONS(2904), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2904), + [sym_number] = ACTIONS(2904), + [sym_private_property_identifier] = ACTIONS(2904), + [sym_this] = ACTIONS(2906), + [sym_super] = ACTIONS(2906), + [sym_true] = ACTIONS(2906), + [sym_false] = ACTIONS(2906), + [sym_null] = ACTIONS(2906), + [sym_undefined] = ACTIONS(2906), + [anon_sym_AT] = ACTIONS(2904), + [anon_sym_static] = ACTIONS(2906), + [anon_sym_readonly] = ACTIONS(2906), + [anon_sym_get] = ACTIONS(2906), + [anon_sym_set] = ACTIONS(2906), + [anon_sym_declare] = ACTIONS(2906), + [anon_sym_public] = ACTIONS(2906), + [anon_sym_private] = ACTIONS(2906), + [anon_sym_protected] = ACTIONS(2906), + [anon_sym_override] = ACTIONS(2906), + [anon_sym_module] = ACTIONS(2906), + [anon_sym_any] = ACTIONS(2906), + [anon_sym_number] = ACTIONS(2906), + [anon_sym_boolean] = ACTIONS(2906), + [anon_sym_string] = ACTIONS(2906), + [anon_sym_symbol] = ACTIONS(2906), + [anon_sym_object] = ACTIONS(2906), + [anon_sym_abstract] = ACTIONS(2906), + [anon_sym_interface] = ACTIONS(2906), + [anon_sym_enum] = ACTIONS(2906), [sym_html_comment] = ACTIONS(5), }, [901] = { - [ts_builtin_sym_end] = ACTIONS(2911), - [sym_identifier] = ACTIONS(2913), - [anon_sym_export] = ACTIONS(2913), - [anon_sym_default] = ACTIONS(2913), - [anon_sym_type] = ACTIONS(2913), - [anon_sym_namespace] = ACTIONS(2913), - [anon_sym_LBRACE] = ACTIONS(2911), - [anon_sym_RBRACE] = ACTIONS(2911), - [anon_sym_typeof] = ACTIONS(2913), - [anon_sym_import] = ACTIONS(2913), - [anon_sym_with] = ACTIONS(2913), - [anon_sym_var] = ACTIONS(2913), - [anon_sym_let] = ACTIONS(2913), - [anon_sym_const] = ACTIONS(2913), - [anon_sym_BANG] = ACTIONS(2911), - [anon_sym_else] = ACTIONS(2913), - [anon_sym_if] = ACTIONS(2913), - [anon_sym_switch] = ACTIONS(2913), - [anon_sym_for] = ACTIONS(2913), - [anon_sym_LPAREN] = ACTIONS(2911), - [anon_sym_SEMI] = ACTIONS(2911), - [anon_sym_await] = ACTIONS(2913), - [anon_sym_while] = ACTIONS(2913), - [anon_sym_do] = ACTIONS(2913), - [anon_sym_try] = ACTIONS(2913), - [anon_sym_break] = ACTIONS(2913), - [anon_sym_continue] = ACTIONS(2913), - [anon_sym_debugger] = ACTIONS(2913), - [anon_sym_return] = ACTIONS(2913), - [anon_sym_throw] = ACTIONS(2913), - [anon_sym_case] = ACTIONS(2913), - [anon_sym_yield] = ACTIONS(2913), - [anon_sym_LBRACK] = ACTIONS(2911), - [sym_glimmer_opening_tag] = ACTIONS(2911), - [anon_sym_DQUOTE] = ACTIONS(2911), - [anon_sym_SQUOTE] = ACTIONS(2911), - [anon_sym_class] = ACTIONS(2913), - [anon_sym_async] = ACTIONS(2913), - [anon_sym_function] = ACTIONS(2913), - [anon_sym_new] = ACTIONS(2913), - [anon_sym_using] = ACTIONS(2913), - [anon_sym_PLUS] = ACTIONS(2913), - [anon_sym_DASH] = ACTIONS(2913), - [anon_sym_SLASH] = ACTIONS(2913), - [anon_sym_LT] = ACTIONS(2913), - [anon_sym_TILDE] = ACTIONS(2911), - [anon_sym_void] = ACTIONS(2913), - [anon_sym_delete] = ACTIONS(2913), - [anon_sym_PLUS_PLUS] = ACTIONS(2911), - [anon_sym_DASH_DASH] = ACTIONS(2911), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2911), - [sym_number] = ACTIONS(2911), - [sym_private_property_identifier] = ACTIONS(2911), - [sym_this] = ACTIONS(2913), - [sym_super] = ACTIONS(2913), - [sym_true] = ACTIONS(2913), - [sym_false] = ACTIONS(2913), - [sym_null] = ACTIONS(2913), - [sym_undefined] = ACTIONS(2913), - [anon_sym_AT] = ACTIONS(2911), - [anon_sym_static] = ACTIONS(2913), - [anon_sym_readonly] = ACTIONS(2913), - [anon_sym_get] = ACTIONS(2913), - [anon_sym_set] = ACTIONS(2913), - [anon_sym_declare] = ACTIONS(2913), - [anon_sym_public] = ACTIONS(2913), - [anon_sym_private] = ACTIONS(2913), - [anon_sym_protected] = ACTIONS(2913), - [anon_sym_override] = ACTIONS(2913), - [anon_sym_module] = ACTIONS(2913), - [anon_sym_any] = ACTIONS(2913), - [anon_sym_number] = ACTIONS(2913), - [anon_sym_boolean] = ACTIONS(2913), - [anon_sym_string] = ACTIONS(2913), - [anon_sym_symbol] = ACTIONS(2913), - [anon_sym_object] = ACTIONS(2913), - [anon_sym_abstract] = ACTIONS(2913), - [anon_sym_interface] = ACTIONS(2913), - [anon_sym_enum] = ACTIONS(2913), + [ts_builtin_sym_end] = ACTIONS(2742), + [sym_identifier] = ACTIONS(2744), + [anon_sym_export] = ACTIONS(2744), + [anon_sym_default] = ACTIONS(2744), + [anon_sym_type] = ACTIONS(2744), + [anon_sym_namespace] = ACTIONS(2744), + [anon_sym_LBRACE] = ACTIONS(2742), + [anon_sym_RBRACE] = ACTIONS(2742), + [anon_sym_typeof] = ACTIONS(2744), + [anon_sym_import] = ACTIONS(2744), + [anon_sym_with] = ACTIONS(2744), + [anon_sym_var] = ACTIONS(2744), + [anon_sym_let] = ACTIONS(2744), + [anon_sym_const] = ACTIONS(2744), + [anon_sym_BANG] = ACTIONS(2742), + [anon_sym_else] = ACTIONS(2744), + [anon_sym_if] = ACTIONS(2744), + [anon_sym_switch] = ACTIONS(2744), + [anon_sym_for] = ACTIONS(2744), + [anon_sym_LPAREN] = ACTIONS(2742), + [anon_sym_SEMI] = ACTIONS(2742), + [anon_sym_await] = ACTIONS(2744), + [anon_sym_while] = ACTIONS(2744), + [anon_sym_do] = ACTIONS(2744), + [anon_sym_try] = ACTIONS(2744), + [anon_sym_break] = ACTIONS(2744), + [anon_sym_continue] = ACTIONS(2744), + [anon_sym_debugger] = ACTIONS(2744), + [anon_sym_return] = ACTIONS(2744), + [anon_sym_throw] = ACTIONS(2744), + [anon_sym_case] = ACTIONS(2744), + [anon_sym_yield] = ACTIONS(2744), + [anon_sym_LBRACK] = ACTIONS(2742), + [anon_sym_DQUOTE] = ACTIONS(2742), + [anon_sym_SQUOTE] = ACTIONS(2742), + [anon_sym_class] = ACTIONS(2744), + [anon_sym_async] = ACTIONS(2744), + [anon_sym_function] = ACTIONS(2744), + [anon_sym_new] = ACTIONS(2744), + [anon_sym_using] = ACTIONS(2744), + [anon_sym_PLUS] = ACTIONS(2744), + [anon_sym_DASH] = ACTIONS(2744), + [anon_sym_SLASH] = ACTIONS(2744), + [anon_sym_LT] = ACTIONS(2742), + [anon_sym_TILDE] = ACTIONS(2742), + [anon_sym_void] = ACTIONS(2744), + [anon_sym_delete] = ACTIONS(2744), + [anon_sym_PLUS_PLUS] = ACTIONS(2742), + [anon_sym_DASH_DASH] = ACTIONS(2742), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2742), + [sym_number] = ACTIONS(2742), + [sym_private_property_identifier] = ACTIONS(2742), + [sym_this] = ACTIONS(2744), + [sym_super] = ACTIONS(2744), + [sym_true] = ACTIONS(2744), + [sym_false] = ACTIONS(2744), + [sym_null] = ACTIONS(2744), + [sym_undefined] = ACTIONS(2744), + [anon_sym_AT] = ACTIONS(2742), + [anon_sym_static] = ACTIONS(2744), + [anon_sym_readonly] = ACTIONS(2744), + [anon_sym_get] = ACTIONS(2744), + [anon_sym_set] = ACTIONS(2744), + [anon_sym_declare] = ACTIONS(2744), + [anon_sym_public] = ACTIONS(2744), + [anon_sym_private] = ACTIONS(2744), + [anon_sym_protected] = ACTIONS(2744), + [anon_sym_override] = ACTIONS(2744), + [anon_sym_module] = ACTIONS(2744), + [anon_sym_any] = ACTIONS(2744), + [anon_sym_number] = ACTIONS(2744), + [anon_sym_boolean] = ACTIONS(2744), + [anon_sym_string] = ACTIONS(2744), + [anon_sym_symbol] = ACTIONS(2744), + [anon_sym_object] = ACTIONS(2744), + [anon_sym_abstract] = ACTIONS(2744), + [anon_sym_interface] = ACTIONS(2744), + [anon_sym_enum] = ACTIONS(2744), [sym_html_comment] = ACTIONS(5), }, [902] = { - [ts_builtin_sym_end] = ACTIONS(2915), - [sym_identifier] = ACTIONS(2917), - [anon_sym_export] = ACTIONS(2917), - [anon_sym_default] = ACTIONS(2917), - [anon_sym_type] = ACTIONS(2917), - [anon_sym_namespace] = ACTIONS(2917), - [anon_sym_LBRACE] = ACTIONS(2915), - [anon_sym_RBRACE] = ACTIONS(2915), - [anon_sym_typeof] = ACTIONS(2917), - [anon_sym_import] = ACTIONS(2917), - [anon_sym_with] = ACTIONS(2917), - [anon_sym_var] = ACTIONS(2917), - [anon_sym_let] = ACTIONS(2917), - [anon_sym_const] = ACTIONS(2917), - [anon_sym_BANG] = ACTIONS(2915), - [anon_sym_else] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_switch] = ACTIONS(2917), - [anon_sym_for] = ACTIONS(2917), - [anon_sym_LPAREN] = ACTIONS(2915), - [anon_sym_SEMI] = ACTIONS(2915), - [anon_sym_await] = ACTIONS(2917), - [anon_sym_while] = ACTIONS(2917), - [anon_sym_do] = ACTIONS(2917), - [anon_sym_try] = ACTIONS(2917), - [anon_sym_break] = ACTIONS(2917), - [anon_sym_continue] = ACTIONS(2917), - [anon_sym_debugger] = ACTIONS(2917), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_throw] = ACTIONS(2917), - [anon_sym_case] = ACTIONS(2917), - [anon_sym_yield] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2915), - [sym_glimmer_opening_tag] = ACTIONS(2915), - [anon_sym_DQUOTE] = ACTIONS(2915), - [anon_sym_SQUOTE] = ACTIONS(2915), - [anon_sym_class] = ACTIONS(2917), - [anon_sym_async] = ACTIONS(2917), - [anon_sym_function] = ACTIONS(2917), - [anon_sym_new] = ACTIONS(2917), - [anon_sym_using] = ACTIONS(2917), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_SLASH] = ACTIONS(2917), - [anon_sym_LT] = ACTIONS(2917), - [anon_sym_TILDE] = ACTIONS(2915), - [anon_sym_void] = ACTIONS(2917), - [anon_sym_delete] = ACTIONS(2917), - [anon_sym_PLUS_PLUS] = ACTIONS(2915), - [anon_sym_DASH_DASH] = ACTIONS(2915), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2915), - [sym_number] = ACTIONS(2915), - [sym_private_property_identifier] = ACTIONS(2915), - [sym_this] = ACTIONS(2917), - [sym_super] = ACTIONS(2917), - [sym_true] = ACTIONS(2917), - [sym_false] = ACTIONS(2917), - [sym_null] = ACTIONS(2917), - [sym_undefined] = ACTIONS(2917), - [anon_sym_AT] = ACTIONS(2915), - [anon_sym_static] = ACTIONS(2917), - [anon_sym_readonly] = ACTIONS(2917), - [anon_sym_get] = ACTIONS(2917), - [anon_sym_set] = ACTIONS(2917), - [anon_sym_declare] = ACTIONS(2917), - [anon_sym_public] = ACTIONS(2917), - [anon_sym_private] = ACTIONS(2917), - [anon_sym_protected] = ACTIONS(2917), - [anon_sym_override] = ACTIONS(2917), - [anon_sym_module] = ACTIONS(2917), - [anon_sym_any] = ACTIONS(2917), - [anon_sym_number] = ACTIONS(2917), - [anon_sym_boolean] = ACTIONS(2917), - [anon_sym_string] = ACTIONS(2917), - [anon_sym_symbol] = ACTIONS(2917), - [anon_sym_object] = ACTIONS(2917), - [anon_sym_abstract] = ACTIONS(2917), - [anon_sym_interface] = ACTIONS(2917), - [anon_sym_enum] = ACTIONS(2917), + [ts_builtin_sym_end] = ACTIONS(2908), + [sym_identifier] = ACTIONS(2910), + [anon_sym_export] = ACTIONS(2910), + [anon_sym_default] = ACTIONS(2910), + [anon_sym_type] = ACTIONS(2910), + [anon_sym_namespace] = ACTIONS(2910), + [anon_sym_LBRACE] = ACTIONS(2908), + [anon_sym_RBRACE] = ACTIONS(2908), + [anon_sym_typeof] = ACTIONS(2910), + [anon_sym_import] = ACTIONS(2910), + [anon_sym_with] = ACTIONS(2910), + [anon_sym_var] = ACTIONS(2910), + [anon_sym_let] = ACTIONS(2910), + [anon_sym_const] = ACTIONS(2910), + [anon_sym_BANG] = ACTIONS(2908), + [anon_sym_else] = ACTIONS(2910), + [anon_sym_if] = ACTIONS(2910), + [anon_sym_switch] = ACTIONS(2910), + [anon_sym_for] = ACTIONS(2910), + [anon_sym_LPAREN] = ACTIONS(2908), + [anon_sym_SEMI] = ACTIONS(2908), + [anon_sym_await] = ACTIONS(2910), + [anon_sym_while] = ACTIONS(2910), + [anon_sym_do] = ACTIONS(2910), + [anon_sym_try] = ACTIONS(2910), + [anon_sym_break] = ACTIONS(2910), + [anon_sym_continue] = ACTIONS(2910), + [anon_sym_debugger] = ACTIONS(2910), + [anon_sym_return] = ACTIONS(2910), + [anon_sym_throw] = ACTIONS(2910), + [anon_sym_case] = ACTIONS(2910), + [anon_sym_yield] = ACTIONS(2910), + [anon_sym_LBRACK] = ACTIONS(2908), + [anon_sym_DQUOTE] = ACTIONS(2908), + [anon_sym_SQUOTE] = ACTIONS(2908), + [anon_sym_class] = ACTIONS(2910), + [anon_sym_async] = ACTIONS(2910), + [anon_sym_function] = ACTIONS(2910), + [anon_sym_new] = ACTIONS(2910), + [anon_sym_using] = ACTIONS(2910), + [anon_sym_PLUS] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2910), + [anon_sym_SLASH] = ACTIONS(2910), + [anon_sym_LT] = ACTIONS(2908), + [anon_sym_TILDE] = ACTIONS(2908), + [anon_sym_void] = ACTIONS(2910), + [anon_sym_delete] = ACTIONS(2910), + [anon_sym_PLUS_PLUS] = ACTIONS(2908), + [anon_sym_DASH_DASH] = ACTIONS(2908), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2908), + [sym_number] = ACTIONS(2908), + [sym_private_property_identifier] = ACTIONS(2908), + [sym_this] = ACTIONS(2910), + [sym_super] = ACTIONS(2910), + [sym_true] = ACTIONS(2910), + [sym_false] = ACTIONS(2910), + [sym_null] = ACTIONS(2910), + [sym_undefined] = ACTIONS(2910), + [anon_sym_AT] = ACTIONS(2908), + [anon_sym_static] = ACTIONS(2910), + [anon_sym_readonly] = ACTIONS(2910), + [anon_sym_get] = ACTIONS(2910), + [anon_sym_set] = ACTIONS(2910), + [anon_sym_declare] = ACTIONS(2910), + [anon_sym_public] = ACTIONS(2910), + [anon_sym_private] = ACTIONS(2910), + [anon_sym_protected] = ACTIONS(2910), + [anon_sym_override] = ACTIONS(2910), + [anon_sym_module] = ACTIONS(2910), + [anon_sym_any] = ACTIONS(2910), + [anon_sym_number] = ACTIONS(2910), + [anon_sym_boolean] = ACTIONS(2910), + [anon_sym_string] = ACTIONS(2910), + [anon_sym_symbol] = ACTIONS(2910), + [anon_sym_object] = ACTIONS(2910), + [anon_sym_abstract] = ACTIONS(2910), + [anon_sym_interface] = ACTIONS(2910), + [anon_sym_enum] = ACTIONS(2910), [sym_html_comment] = ACTIONS(5), }, [903] = { - [ts_builtin_sym_end] = ACTIONS(2919), - [sym_identifier] = ACTIONS(2921), - [anon_sym_export] = ACTIONS(2921), - [anon_sym_default] = ACTIONS(2921), - [anon_sym_type] = ACTIONS(2921), - [anon_sym_namespace] = ACTIONS(2921), - [anon_sym_LBRACE] = ACTIONS(2919), - [anon_sym_RBRACE] = ACTIONS(2919), - [anon_sym_typeof] = ACTIONS(2921), - [anon_sym_import] = ACTIONS(2921), - [anon_sym_with] = ACTIONS(2921), - [anon_sym_var] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_const] = ACTIONS(2921), - [anon_sym_BANG] = ACTIONS(2919), - [anon_sym_else] = ACTIONS(2921), - [anon_sym_if] = ACTIONS(2921), - [anon_sym_switch] = ACTIONS(2921), - [anon_sym_for] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_SEMI] = ACTIONS(2919), - [anon_sym_await] = ACTIONS(2921), - [anon_sym_while] = ACTIONS(2921), - [anon_sym_do] = ACTIONS(2921), - [anon_sym_try] = ACTIONS(2921), - [anon_sym_break] = ACTIONS(2921), - [anon_sym_continue] = ACTIONS(2921), - [anon_sym_debugger] = ACTIONS(2921), - [anon_sym_return] = ACTIONS(2921), - [anon_sym_throw] = ACTIONS(2921), - [anon_sym_case] = ACTIONS(2921), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2919), - [sym_glimmer_opening_tag] = ACTIONS(2919), - [anon_sym_DQUOTE] = ACTIONS(2919), - [anon_sym_SQUOTE] = ACTIONS(2919), - [anon_sym_class] = ACTIONS(2921), - [anon_sym_async] = ACTIONS(2921), - [anon_sym_function] = ACTIONS(2921), - [anon_sym_new] = ACTIONS(2921), - [anon_sym_using] = ACTIONS(2921), - [anon_sym_PLUS] = ACTIONS(2921), - [anon_sym_DASH] = ACTIONS(2921), - [anon_sym_SLASH] = ACTIONS(2921), - [anon_sym_LT] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(2919), - [anon_sym_void] = ACTIONS(2921), - [anon_sym_delete] = ACTIONS(2921), - [anon_sym_PLUS_PLUS] = ACTIONS(2919), - [anon_sym_DASH_DASH] = ACTIONS(2919), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2919), - [sym_number] = ACTIONS(2919), - [sym_private_property_identifier] = ACTIONS(2919), - [sym_this] = ACTIONS(2921), - [sym_super] = ACTIONS(2921), - [sym_true] = ACTIONS(2921), - [sym_false] = ACTIONS(2921), - [sym_null] = ACTIONS(2921), - [sym_undefined] = ACTIONS(2921), - [anon_sym_AT] = ACTIONS(2919), - [anon_sym_static] = ACTIONS(2921), - [anon_sym_readonly] = ACTIONS(2921), - [anon_sym_get] = ACTIONS(2921), - [anon_sym_set] = ACTIONS(2921), - [anon_sym_declare] = ACTIONS(2921), - [anon_sym_public] = ACTIONS(2921), - [anon_sym_private] = ACTIONS(2921), - [anon_sym_protected] = ACTIONS(2921), - [anon_sym_override] = ACTIONS(2921), - [anon_sym_module] = ACTIONS(2921), - [anon_sym_any] = ACTIONS(2921), - [anon_sym_number] = ACTIONS(2921), - [anon_sym_boolean] = ACTIONS(2921), - [anon_sym_string] = ACTIONS(2921), - [anon_sym_symbol] = ACTIONS(2921), - [anon_sym_object] = ACTIONS(2921), - [anon_sym_abstract] = ACTIONS(2921), - [anon_sym_interface] = ACTIONS(2921), - [anon_sym_enum] = ACTIONS(2921), + [ts_builtin_sym_end] = ACTIONS(2912), + [sym_identifier] = ACTIONS(2914), + [anon_sym_export] = ACTIONS(2914), + [anon_sym_default] = ACTIONS(2914), + [anon_sym_type] = ACTIONS(2914), + [anon_sym_namespace] = ACTIONS(2914), + [anon_sym_LBRACE] = ACTIONS(2912), + [anon_sym_RBRACE] = ACTIONS(2912), + [anon_sym_typeof] = ACTIONS(2914), + [anon_sym_import] = ACTIONS(2914), + [anon_sym_with] = ACTIONS(2914), + [anon_sym_var] = ACTIONS(2914), + [anon_sym_let] = ACTIONS(2914), + [anon_sym_const] = ACTIONS(2914), + [anon_sym_BANG] = ACTIONS(2912), + [anon_sym_else] = ACTIONS(2914), + [anon_sym_if] = ACTIONS(2914), + [anon_sym_switch] = ACTIONS(2914), + [anon_sym_for] = ACTIONS(2914), + [anon_sym_LPAREN] = ACTIONS(2912), + [anon_sym_SEMI] = ACTIONS(2912), + [anon_sym_await] = ACTIONS(2914), + [anon_sym_while] = ACTIONS(2914), + [anon_sym_do] = ACTIONS(2914), + [anon_sym_try] = ACTIONS(2914), + [anon_sym_break] = ACTIONS(2914), + [anon_sym_continue] = ACTIONS(2914), + [anon_sym_debugger] = ACTIONS(2914), + [anon_sym_return] = ACTIONS(2914), + [anon_sym_throw] = ACTIONS(2914), + [anon_sym_case] = ACTIONS(2914), + [anon_sym_yield] = ACTIONS(2914), + [anon_sym_LBRACK] = ACTIONS(2912), + [anon_sym_DQUOTE] = ACTIONS(2912), + [anon_sym_SQUOTE] = ACTIONS(2912), + [anon_sym_class] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(2914), + [anon_sym_function] = ACTIONS(2914), + [anon_sym_new] = ACTIONS(2914), + [anon_sym_using] = ACTIONS(2914), + [anon_sym_PLUS] = ACTIONS(2914), + [anon_sym_DASH] = ACTIONS(2914), + [anon_sym_SLASH] = ACTIONS(2914), + [anon_sym_LT] = ACTIONS(2912), + [anon_sym_TILDE] = ACTIONS(2912), + [anon_sym_void] = ACTIONS(2914), + [anon_sym_delete] = ACTIONS(2914), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2912), + [sym_number] = ACTIONS(2912), + [sym_private_property_identifier] = ACTIONS(2912), + [sym_this] = ACTIONS(2914), + [sym_super] = ACTIONS(2914), + [sym_true] = ACTIONS(2914), + [sym_false] = ACTIONS(2914), + [sym_null] = ACTIONS(2914), + [sym_undefined] = ACTIONS(2914), + [anon_sym_AT] = ACTIONS(2912), + [anon_sym_static] = ACTIONS(2914), + [anon_sym_readonly] = ACTIONS(2914), + [anon_sym_get] = ACTIONS(2914), + [anon_sym_set] = ACTIONS(2914), + [anon_sym_declare] = ACTIONS(2914), + [anon_sym_public] = ACTIONS(2914), + [anon_sym_private] = ACTIONS(2914), + [anon_sym_protected] = ACTIONS(2914), + [anon_sym_override] = ACTIONS(2914), + [anon_sym_module] = ACTIONS(2914), + [anon_sym_any] = ACTIONS(2914), + [anon_sym_number] = ACTIONS(2914), + [anon_sym_boolean] = ACTIONS(2914), + [anon_sym_string] = ACTIONS(2914), + [anon_sym_symbol] = ACTIONS(2914), + [anon_sym_object] = ACTIONS(2914), + [anon_sym_abstract] = ACTIONS(2914), + [anon_sym_interface] = ACTIONS(2914), + [anon_sym_enum] = ACTIONS(2914), [sym_html_comment] = ACTIONS(5), }, [904] = { - [ts_builtin_sym_end] = ACTIONS(2923), - [sym_identifier] = ACTIONS(2925), - [anon_sym_export] = ACTIONS(2925), - [anon_sym_default] = ACTIONS(2925), - [anon_sym_type] = ACTIONS(2925), - [anon_sym_namespace] = ACTIONS(2925), - [anon_sym_LBRACE] = ACTIONS(2923), - [anon_sym_RBRACE] = ACTIONS(2923), - [anon_sym_typeof] = ACTIONS(2925), - [anon_sym_import] = ACTIONS(2925), - [anon_sym_with] = ACTIONS(2925), - [anon_sym_var] = ACTIONS(2925), - [anon_sym_let] = ACTIONS(2925), - [anon_sym_const] = ACTIONS(2925), - [anon_sym_BANG] = ACTIONS(2923), - [anon_sym_else] = ACTIONS(2925), - [anon_sym_if] = ACTIONS(2925), - [anon_sym_switch] = ACTIONS(2925), - [anon_sym_for] = ACTIONS(2925), - [anon_sym_LPAREN] = ACTIONS(2923), - [anon_sym_SEMI] = ACTIONS(2923), - [anon_sym_await] = ACTIONS(2925), - [anon_sym_while] = ACTIONS(2925), - [anon_sym_do] = ACTIONS(2925), - [anon_sym_try] = ACTIONS(2925), - [anon_sym_break] = ACTIONS(2925), - [anon_sym_continue] = ACTIONS(2925), - [anon_sym_debugger] = ACTIONS(2925), - [anon_sym_return] = ACTIONS(2925), - [anon_sym_throw] = ACTIONS(2925), - [anon_sym_case] = ACTIONS(2925), - [anon_sym_yield] = ACTIONS(2925), - [anon_sym_LBRACK] = ACTIONS(2923), - [sym_glimmer_opening_tag] = ACTIONS(2923), - [anon_sym_DQUOTE] = ACTIONS(2923), - [anon_sym_SQUOTE] = ACTIONS(2923), - [anon_sym_class] = ACTIONS(2925), - [anon_sym_async] = ACTIONS(2925), - [anon_sym_function] = ACTIONS(2925), - [anon_sym_new] = ACTIONS(2925), - [anon_sym_using] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(2925), - [anon_sym_DASH] = ACTIONS(2925), - [anon_sym_SLASH] = ACTIONS(2925), - [anon_sym_LT] = ACTIONS(2925), - [anon_sym_TILDE] = ACTIONS(2923), - [anon_sym_void] = ACTIONS(2925), - [anon_sym_delete] = ACTIONS(2925), - [anon_sym_PLUS_PLUS] = ACTIONS(2923), - [anon_sym_DASH_DASH] = ACTIONS(2923), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2923), - [sym_number] = ACTIONS(2923), - [sym_private_property_identifier] = ACTIONS(2923), - [sym_this] = ACTIONS(2925), - [sym_super] = ACTIONS(2925), - [sym_true] = ACTIONS(2925), - [sym_false] = ACTIONS(2925), - [sym_null] = ACTIONS(2925), - [sym_undefined] = ACTIONS(2925), - [anon_sym_AT] = ACTIONS(2923), - [anon_sym_static] = ACTIONS(2925), - [anon_sym_readonly] = ACTIONS(2925), - [anon_sym_get] = ACTIONS(2925), - [anon_sym_set] = ACTIONS(2925), - [anon_sym_declare] = ACTIONS(2925), - [anon_sym_public] = ACTIONS(2925), - [anon_sym_private] = ACTIONS(2925), - [anon_sym_protected] = ACTIONS(2925), - [anon_sym_override] = ACTIONS(2925), - [anon_sym_module] = ACTIONS(2925), - [anon_sym_any] = ACTIONS(2925), - [anon_sym_number] = ACTIONS(2925), - [anon_sym_boolean] = ACTIONS(2925), - [anon_sym_string] = ACTIONS(2925), - [anon_sym_symbol] = ACTIONS(2925), - [anon_sym_object] = ACTIONS(2925), - [anon_sym_abstract] = ACTIONS(2925), - [anon_sym_interface] = ACTIONS(2925), - [anon_sym_enum] = ACTIONS(2925), + [ts_builtin_sym_end] = ACTIONS(1833), + [sym_identifier] = ACTIONS(1835), + [anon_sym_export] = ACTIONS(1835), + [anon_sym_default] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_namespace] = ACTIONS(1835), + [anon_sym_LBRACE] = ACTIONS(1833), + [anon_sym_RBRACE] = ACTIONS(1833), + [anon_sym_typeof] = ACTIONS(1835), + [anon_sym_import] = ACTIONS(1835), + [anon_sym_with] = ACTIONS(1835), + [anon_sym_var] = ACTIONS(1835), + [anon_sym_let] = ACTIONS(1835), + [anon_sym_const] = ACTIONS(1835), + [anon_sym_BANG] = ACTIONS(1833), + [anon_sym_else] = ACTIONS(1835), + [anon_sym_if] = ACTIONS(1835), + [anon_sym_switch] = ACTIONS(1835), + [anon_sym_for] = ACTIONS(1835), + [anon_sym_LPAREN] = ACTIONS(1833), + [anon_sym_SEMI] = ACTIONS(1833), + [anon_sym_await] = ACTIONS(1835), + [anon_sym_while] = ACTIONS(1835), + [anon_sym_do] = ACTIONS(1835), + [anon_sym_try] = ACTIONS(1835), + [anon_sym_break] = ACTIONS(1835), + [anon_sym_continue] = ACTIONS(1835), + [anon_sym_debugger] = ACTIONS(1835), + [anon_sym_return] = ACTIONS(1835), + [anon_sym_throw] = ACTIONS(1835), + [anon_sym_case] = ACTIONS(1835), + [anon_sym_yield] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(1833), + [anon_sym_DQUOTE] = ACTIONS(1833), + [anon_sym_SQUOTE] = ACTIONS(1833), + [anon_sym_class] = ACTIONS(1835), + [anon_sym_async] = ACTIONS(1835), + [anon_sym_function] = ACTIONS(1835), + [anon_sym_new] = ACTIONS(1835), + [anon_sym_using] = ACTIONS(1835), + [anon_sym_PLUS] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1835), + [anon_sym_SLASH] = ACTIONS(1835), + [anon_sym_LT] = ACTIONS(1833), + [anon_sym_TILDE] = ACTIONS(1833), + [anon_sym_void] = ACTIONS(1835), + [anon_sym_delete] = ACTIONS(1835), + [anon_sym_PLUS_PLUS] = ACTIONS(1833), + [anon_sym_DASH_DASH] = ACTIONS(1833), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1833), + [sym_number] = ACTIONS(1833), + [sym_private_property_identifier] = ACTIONS(1833), + [sym_this] = ACTIONS(1835), + [sym_super] = ACTIONS(1835), + [sym_true] = ACTIONS(1835), + [sym_false] = ACTIONS(1835), + [sym_null] = ACTIONS(1835), + [sym_undefined] = ACTIONS(1835), + [anon_sym_AT] = ACTIONS(1833), + [anon_sym_static] = ACTIONS(1835), + [anon_sym_readonly] = ACTIONS(1835), + [anon_sym_get] = ACTIONS(1835), + [anon_sym_set] = ACTIONS(1835), + [anon_sym_declare] = ACTIONS(1835), + [anon_sym_public] = ACTIONS(1835), + [anon_sym_private] = ACTIONS(1835), + [anon_sym_protected] = ACTIONS(1835), + [anon_sym_override] = ACTIONS(1835), + [anon_sym_module] = ACTIONS(1835), + [anon_sym_any] = ACTIONS(1835), + [anon_sym_number] = ACTIONS(1835), + [anon_sym_boolean] = ACTIONS(1835), + [anon_sym_string] = ACTIONS(1835), + [anon_sym_symbol] = ACTIONS(1835), + [anon_sym_object] = ACTIONS(1835), + [anon_sym_abstract] = ACTIONS(1835), + [anon_sym_interface] = ACTIONS(1835), + [anon_sym_enum] = ACTIONS(1835), [sym_html_comment] = ACTIONS(5), }, [905] = { - [ts_builtin_sym_end] = ACTIONS(2927), - [sym_identifier] = ACTIONS(2929), - [anon_sym_export] = ACTIONS(2929), - [anon_sym_default] = ACTIONS(2929), - [anon_sym_type] = ACTIONS(2929), - [anon_sym_namespace] = ACTIONS(2929), - [anon_sym_LBRACE] = ACTIONS(2927), - [anon_sym_RBRACE] = ACTIONS(2927), - [anon_sym_typeof] = ACTIONS(2929), - [anon_sym_import] = ACTIONS(2929), - [anon_sym_with] = ACTIONS(2929), - [anon_sym_var] = ACTIONS(2929), - [anon_sym_let] = ACTIONS(2929), - [anon_sym_const] = ACTIONS(2929), - [anon_sym_BANG] = ACTIONS(2927), - [anon_sym_else] = ACTIONS(2929), - [anon_sym_if] = ACTIONS(2929), - [anon_sym_switch] = ACTIONS(2929), - [anon_sym_for] = ACTIONS(2929), - [anon_sym_LPAREN] = ACTIONS(2927), - [anon_sym_SEMI] = ACTIONS(2927), - [anon_sym_await] = ACTIONS(2929), - [anon_sym_while] = ACTIONS(2929), - [anon_sym_do] = ACTIONS(2929), - [anon_sym_try] = ACTIONS(2929), - [anon_sym_break] = ACTIONS(2929), - [anon_sym_continue] = ACTIONS(2929), - [anon_sym_debugger] = ACTIONS(2929), - [anon_sym_return] = ACTIONS(2929), - [anon_sym_throw] = ACTIONS(2929), - [anon_sym_case] = ACTIONS(2929), - [anon_sym_yield] = ACTIONS(2929), - [anon_sym_LBRACK] = ACTIONS(2927), - [sym_glimmer_opening_tag] = ACTIONS(2927), - [anon_sym_DQUOTE] = ACTIONS(2927), - [anon_sym_SQUOTE] = ACTIONS(2927), - [anon_sym_class] = ACTIONS(2929), - [anon_sym_async] = ACTIONS(2929), - [anon_sym_function] = ACTIONS(2929), - [anon_sym_new] = ACTIONS(2929), - [anon_sym_using] = ACTIONS(2929), - [anon_sym_PLUS] = ACTIONS(2929), - [anon_sym_DASH] = ACTIONS(2929), - [anon_sym_SLASH] = ACTIONS(2929), - [anon_sym_LT] = ACTIONS(2929), - [anon_sym_TILDE] = ACTIONS(2927), - [anon_sym_void] = ACTIONS(2929), - [anon_sym_delete] = ACTIONS(2929), - [anon_sym_PLUS_PLUS] = ACTIONS(2927), - [anon_sym_DASH_DASH] = ACTIONS(2927), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2927), - [sym_number] = ACTIONS(2927), - [sym_private_property_identifier] = ACTIONS(2927), - [sym_this] = ACTIONS(2929), - [sym_super] = ACTIONS(2929), - [sym_true] = ACTIONS(2929), - [sym_false] = ACTIONS(2929), - [sym_null] = ACTIONS(2929), - [sym_undefined] = ACTIONS(2929), - [anon_sym_AT] = ACTIONS(2927), - [anon_sym_static] = ACTIONS(2929), - [anon_sym_readonly] = ACTIONS(2929), - [anon_sym_get] = ACTIONS(2929), - [anon_sym_set] = ACTIONS(2929), - [anon_sym_declare] = ACTIONS(2929), - [anon_sym_public] = ACTIONS(2929), - [anon_sym_private] = ACTIONS(2929), - [anon_sym_protected] = ACTIONS(2929), - [anon_sym_override] = ACTIONS(2929), - [anon_sym_module] = ACTIONS(2929), - [anon_sym_any] = ACTIONS(2929), - [anon_sym_number] = ACTIONS(2929), - [anon_sym_boolean] = ACTIONS(2929), - [anon_sym_string] = ACTIONS(2929), - [anon_sym_symbol] = ACTIONS(2929), - [anon_sym_object] = ACTIONS(2929), - [anon_sym_abstract] = ACTIONS(2929), - [anon_sym_interface] = ACTIONS(2929), - [anon_sym_enum] = ACTIONS(2929), + [ts_builtin_sym_end] = ACTIONS(2916), + [sym_identifier] = ACTIONS(2918), + [anon_sym_export] = ACTIONS(2918), + [anon_sym_default] = ACTIONS(2918), + [anon_sym_type] = ACTIONS(2918), + [anon_sym_namespace] = ACTIONS(2918), + [anon_sym_LBRACE] = ACTIONS(2916), + [anon_sym_RBRACE] = ACTIONS(2916), + [anon_sym_typeof] = ACTIONS(2918), + [anon_sym_import] = ACTIONS(2918), + [anon_sym_with] = ACTIONS(2918), + [anon_sym_var] = ACTIONS(2918), + [anon_sym_let] = ACTIONS(2918), + [anon_sym_const] = ACTIONS(2918), + [anon_sym_BANG] = ACTIONS(2916), + [anon_sym_else] = ACTIONS(2918), + [anon_sym_if] = ACTIONS(2918), + [anon_sym_switch] = ACTIONS(2918), + [anon_sym_for] = ACTIONS(2918), + [anon_sym_LPAREN] = ACTIONS(2916), + [anon_sym_SEMI] = ACTIONS(2916), + [anon_sym_await] = ACTIONS(2918), + [anon_sym_while] = ACTIONS(2918), + [anon_sym_do] = ACTIONS(2918), + [anon_sym_try] = ACTIONS(2918), + [anon_sym_break] = ACTIONS(2918), + [anon_sym_continue] = ACTIONS(2918), + [anon_sym_debugger] = ACTIONS(2918), + [anon_sym_return] = ACTIONS(2918), + [anon_sym_throw] = ACTIONS(2918), + [anon_sym_case] = ACTIONS(2918), + [anon_sym_yield] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2916), + [anon_sym_DQUOTE] = ACTIONS(2916), + [anon_sym_SQUOTE] = ACTIONS(2916), + [anon_sym_class] = ACTIONS(2918), + [anon_sym_async] = ACTIONS(2918), + [anon_sym_function] = ACTIONS(2918), + [anon_sym_new] = ACTIONS(2918), + [anon_sym_using] = ACTIONS(2918), + [anon_sym_PLUS] = ACTIONS(2918), + [anon_sym_DASH] = ACTIONS(2918), + [anon_sym_SLASH] = ACTIONS(2918), + [anon_sym_LT] = ACTIONS(2916), + [anon_sym_TILDE] = ACTIONS(2916), + [anon_sym_void] = ACTIONS(2918), + [anon_sym_delete] = ACTIONS(2918), + [anon_sym_PLUS_PLUS] = ACTIONS(2916), + [anon_sym_DASH_DASH] = ACTIONS(2916), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2916), + [sym_number] = ACTIONS(2916), + [sym_private_property_identifier] = ACTIONS(2916), + [sym_this] = ACTIONS(2918), + [sym_super] = ACTIONS(2918), + [sym_true] = ACTIONS(2918), + [sym_false] = ACTIONS(2918), + [sym_null] = ACTIONS(2918), + [sym_undefined] = ACTIONS(2918), + [anon_sym_AT] = ACTIONS(2916), + [anon_sym_static] = ACTIONS(2918), + [anon_sym_readonly] = ACTIONS(2918), + [anon_sym_get] = ACTIONS(2918), + [anon_sym_set] = ACTIONS(2918), + [anon_sym_declare] = ACTIONS(2918), + [anon_sym_public] = ACTIONS(2918), + [anon_sym_private] = ACTIONS(2918), + [anon_sym_protected] = ACTIONS(2918), + [anon_sym_override] = ACTIONS(2918), + [anon_sym_module] = ACTIONS(2918), + [anon_sym_any] = ACTIONS(2918), + [anon_sym_number] = ACTIONS(2918), + [anon_sym_boolean] = ACTIONS(2918), + [anon_sym_string] = ACTIONS(2918), + [anon_sym_symbol] = ACTIONS(2918), + [anon_sym_object] = ACTIONS(2918), + [anon_sym_abstract] = ACTIONS(2918), + [anon_sym_interface] = ACTIONS(2918), + [anon_sym_enum] = ACTIONS(2918), [sym_html_comment] = ACTIONS(5), }, [906] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_rest_pattern] = STATE(5529), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3817), - [sym_tuple_parameter] = STATE(5551), - [sym_optional_tuple_parameter] = STATE(5551), - [sym_optional_type] = STATE(5551), - [sym_rest_type] = STATE(5551), - [sym__tuple_type_member] = STATE(5551), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(2527), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_RBRACK] = ACTIONS(2931), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(4786), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5658), + [sym_rest_pattern] = STATE(5415), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3263), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3806), + [sym_tuple_parameter] = STATE(5460), + [sym_optional_tuple_parameter] = STATE(5460), + [sym_optional_type] = STATE(5460), + [sym_rest_type] = STATE(5460), + [sym__tuple_type_member] = STATE(5460), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5559), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(2468), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(2920), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2474), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [907] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_rest_pattern] = STATE(5529), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3817), - [sym_tuple_parameter] = STATE(5551), - [sym_optional_tuple_parameter] = STATE(5551), - [sym_optional_type] = STATE(5551), - [sym_rest_type] = STATE(5551), - [sym__tuple_type_member] = STATE(5551), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(2527), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_RBRACK] = ACTIONS(2933), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [ts_builtin_sym_end] = ACTIONS(2922), + [sym_identifier] = ACTIONS(2924), + [anon_sym_export] = ACTIONS(2924), + [anon_sym_default] = ACTIONS(2924), + [anon_sym_type] = ACTIONS(2924), + [anon_sym_namespace] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(2922), + [anon_sym_RBRACE] = ACTIONS(2922), + [anon_sym_typeof] = ACTIONS(2924), + [anon_sym_import] = ACTIONS(2924), + [anon_sym_with] = ACTIONS(2924), + [anon_sym_var] = ACTIONS(2924), + [anon_sym_let] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(2924), + [anon_sym_BANG] = ACTIONS(2922), + [anon_sym_else] = ACTIONS(2924), + [anon_sym_if] = ACTIONS(2924), + [anon_sym_switch] = ACTIONS(2924), + [anon_sym_for] = ACTIONS(2924), + [anon_sym_LPAREN] = ACTIONS(2922), + [anon_sym_SEMI] = ACTIONS(2922), + [anon_sym_await] = ACTIONS(2924), + [anon_sym_while] = ACTIONS(2924), + [anon_sym_do] = ACTIONS(2924), + [anon_sym_try] = ACTIONS(2924), + [anon_sym_break] = ACTIONS(2924), + [anon_sym_continue] = ACTIONS(2924), + [anon_sym_debugger] = ACTIONS(2924), + [anon_sym_return] = ACTIONS(2924), + [anon_sym_throw] = ACTIONS(2924), + [anon_sym_case] = ACTIONS(2924), + [anon_sym_yield] = ACTIONS(2924), + [anon_sym_LBRACK] = ACTIONS(2922), + [anon_sym_DQUOTE] = ACTIONS(2922), + [anon_sym_SQUOTE] = ACTIONS(2922), + [anon_sym_class] = ACTIONS(2924), + [anon_sym_async] = ACTIONS(2924), + [anon_sym_function] = ACTIONS(2924), + [anon_sym_new] = ACTIONS(2924), + [anon_sym_using] = ACTIONS(2924), + [anon_sym_PLUS] = ACTIONS(2924), + [anon_sym_DASH] = ACTIONS(2924), + [anon_sym_SLASH] = ACTIONS(2924), + [anon_sym_LT] = ACTIONS(2922), + [anon_sym_TILDE] = ACTIONS(2922), + [anon_sym_void] = ACTIONS(2924), + [anon_sym_delete] = ACTIONS(2924), + [anon_sym_PLUS_PLUS] = ACTIONS(2922), + [anon_sym_DASH_DASH] = ACTIONS(2922), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2922), + [sym_number] = ACTIONS(2922), + [sym_private_property_identifier] = ACTIONS(2922), + [sym_this] = ACTIONS(2924), + [sym_super] = ACTIONS(2924), + [sym_true] = ACTIONS(2924), + [sym_false] = ACTIONS(2924), + [sym_null] = ACTIONS(2924), + [sym_undefined] = ACTIONS(2924), + [anon_sym_AT] = ACTIONS(2922), + [anon_sym_static] = ACTIONS(2924), + [anon_sym_readonly] = ACTIONS(2924), + [anon_sym_get] = ACTIONS(2924), + [anon_sym_set] = ACTIONS(2924), + [anon_sym_declare] = ACTIONS(2924), + [anon_sym_public] = ACTIONS(2924), + [anon_sym_private] = ACTIONS(2924), + [anon_sym_protected] = ACTIONS(2924), + [anon_sym_override] = ACTIONS(2924), + [anon_sym_module] = ACTIONS(2924), + [anon_sym_any] = ACTIONS(2924), + [anon_sym_number] = ACTIONS(2924), + [anon_sym_boolean] = ACTIONS(2924), + [anon_sym_string] = ACTIONS(2924), + [anon_sym_symbol] = ACTIONS(2924), + [anon_sym_object] = ACTIONS(2924), + [anon_sym_abstract] = ACTIONS(2924), + [anon_sym_interface] = ACTIONS(2924), + [anon_sym_enum] = ACTIONS(2924), [sym_html_comment] = ACTIONS(5), }, [908] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_rest_pattern] = STATE(5529), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3817), - [sym_tuple_parameter] = STATE(5551), - [sym_optional_tuple_parameter] = STATE(5551), - [sym_optional_type] = STATE(5551), - [sym_rest_type] = STATE(5551), - [sym__tuple_type_member] = STATE(5551), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(2527), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_RBRACK] = ACTIONS(2935), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [ts_builtin_sym_end] = ACTIONS(2926), + [sym_identifier] = ACTIONS(2928), + [anon_sym_export] = ACTIONS(2928), + [anon_sym_default] = ACTIONS(2928), + [anon_sym_type] = ACTIONS(2928), + [anon_sym_namespace] = ACTIONS(2928), + [anon_sym_LBRACE] = ACTIONS(2926), + [anon_sym_RBRACE] = ACTIONS(2926), + [anon_sym_typeof] = ACTIONS(2928), + [anon_sym_import] = ACTIONS(2928), + [anon_sym_with] = ACTIONS(2928), + [anon_sym_var] = ACTIONS(2928), + [anon_sym_let] = ACTIONS(2928), + [anon_sym_const] = ACTIONS(2928), + [anon_sym_BANG] = ACTIONS(2926), + [anon_sym_else] = ACTIONS(2928), + [anon_sym_if] = ACTIONS(2928), + [anon_sym_switch] = ACTIONS(2928), + [anon_sym_for] = ACTIONS(2928), + [anon_sym_LPAREN] = ACTIONS(2926), + [anon_sym_SEMI] = ACTIONS(2926), + [anon_sym_await] = ACTIONS(2928), + [anon_sym_while] = ACTIONS(2928), + [anon_sym_do] = ACTIONS(2928), + [anon_sym_try] = ACTIONS(2928), + [anon_sym_break] = ACTIONS(2928), + [anon_sym_continue] = ACTIONS(2928), + [anon_sym_debugger] = ACTIONS(2928), + [anon_sym_return] = ACTIONS(2928), + [anon_sym_throw] = ACTIONS(2928), + [anon_sym_case] = ACTIONS(2928), + [anon_sym_yield] = ACTIONS(2928), + [anon_sym_LBRACK] = ACTIONS(2926), + [anon_sym_DQUOTE] = ACTIONS(2926), + [anon_sym_SQUOTE] = ACTIONS(2926), + [anon_sym_class] = ACTIONS(2928), + [anon_sym_async] = ACTIONS(2928), + [anon_sym_function] = ACTIONS(2928), + [anon_sym_new] = ACTIONS(2928), + [anon_sym_using] = ACTIONS(2928), + [anon_sym_PLUS] = ACTIONS(2928), + [anon_sym_DASH] = ACTIONS(2928), + [anon_sym_SLASH] = ACTIONS(2928), + [anon_sym_LT] = ACTIONS(2926), + [anon_sym_TILDE] = ACTIONS(2926), + [anon_sym_void] = ACTIONS(2928), + [anon_sym_delete] = ACTIONS(2928), + [anon_sym_PLUS_PLUS] = ACTIONS(2926), + [anon_sym_DASH_DASH] = ACTIONS(2926), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2926), + [sym_number] = ACTIONS(2926), + [sym_private_property_identifier] = ACTIONS(2926), + [sym_this] = ACTIONS(2928), + [sym_super] = ACTIONS(2928), + [sym_true] = ACTIONS(2928), + [sym_false] = ACTIONS(2928), + [sym_null] = ACTIONS(2928), + [sym_undefined] = ACTIONS(2928), + [anon_sym_AT] = ACTIONS(2926), + [anon_sym_static] = ACTIONS(2928), + [anon_sym_readonly] = ACTIONS(2928), + [anon_sym_get] = ACTIONS(2928), + [anon_sym_set] = ACTIONS(2928), + [anon_sym_declare] = ACTIONS(2928), + [anon_sym_public] = ACTIONS(2928), + [anon_sym_private] = ACTIONS(2928), + [anon_sym_protected] = ACTIONS(2928), + [anon_sym_override] = ACTIONS(2928), + [anon_sym_module] = ACTIONS(2928), + [anon_sym_any] = ACTIONS(2928), + [anon_sym_number] = ACTIONS(2928), + [anon_sym_boolean] = ACTIONS(2928), + [anon_sym_string] = ACTIONS(2928), + [anon_sym_symbol] = ACTIONS(2928), + [anon_sym_object] = ACTIONS(2928), + [anon_sym_abstract] = ACTIONS(2928), + [anon_sym_interface] = ACTIONS(2928), + [anon_sym_enum] = ACTIONS(2928), [sym_html_comment] = ACTIONS(5), }, [909] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_rest_pattern] = STATE(5529), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3817), - [sym_tuple_parameter] = STATE(5551), - [sym_optional_tuple_parameter] = STATE(5551), - [sym_optional_type] = STATE(5551), - [sym_rest_type] = STATE(5551), - [sym__tuple_type_member] = STATE(5551), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(2527), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_RBRACK] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [ts_builtin_sym_end] = ACTIONS(2930), + [sym_identifier] = ACTIONS(2932), + [anon_sym_export] = ACTIONS(2932), + [anon_sym_default] = ACTIONS(2932), + [anon_sym_type] = ACTIONS(2932), + [anon_sym_namespace] = ACTIONS(2932), + [anon_sym_LBRACE] = ACTIONS(2930), + [anon_sym_RBRACE] = ACTIONS(2930), + [anon_sym_typeof] = ACTIONS(2932), + [anon_sym_import] = ACTIONS(2932), + [anon_sym_with] = ACTIONS(2932), + [anon_sym_var] = ACTIONS(2932), + [anon_sym_let] = ACTIONS(2932), + [anon_sym_const] = ACTIONS(2932), + [anon_sym_BANG] = ACTIONS(2930), + [anon_sym_else] = ACTIONS(2932), + [anon_sym_if] = ACTIONS(2932), + [anon_sym_switch] = ACTIONS(2932), + [anon_sym_for] = ACTIONS(2932), + [anon_sym_LPAREN] = ACTIONS(2930), + [anon_sym_SEMI] = ACTIONS(2930), + [anon_sym_await] = ACTIONS(2932), + [anon_sym_while] = ACTIONS(2932), + [anon_sym_do] = ACTIONS(2932), + [anon_sym_try] = ACTIONS(2932), + [anon_sym_break] = ACTIONS(2932), + [anon_sym_continue] = ACTIONS(2932), + [anon_sym_debugger] = ACTIONS(2932), + [anon_sym_return] = ACTIONS(2932), + [anon_sym_throw] = ACTIONS(2932), + [anon_sym_case] = ACTIONS(2932), + [anon_sym_yield] = ACTIONS(2932), + [anon_sym_LBRACK] = ACTIONS(2930), + [anon_sym_DQUOTE] = ACTIONS(2930), + [anon_sym_SQUOTE] = ACTIONS(2930), + [anon_sym_class] = ACTIONS(2932), + [anon_sym_async] = ACTIONS(2932), + [anon_sym_function] = ACTIONS(2932), + [anon_sym_new] = ACTIONS(2932), + [anon_sym_using] = ACTIONS(2932), + [anon_sym_PLUS] = ACTIONS(2932), + [anon_sym_DASH] = ACTIONS(2932), + [anon_sym_SLASH] = ACTIONS(2932), + [anon_sym_LT] = ACTIONS(2930), + [anon_sym_TILDE] = ACTIONS(2930), + [anon_sym_void] = ACTIONS(2932), + [anon_sym_delete] = ACTIONS(2932), + [anon_sym_PLUS_PLUS] = ACTIONS(2930), + [anon_sym_DASH_DASH] = ACTIONS(2930), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2930), + [sym_number] = ACTIONS(2930), + [sym_private_property_identifier] = ACTIONS(2930), + [sym_this] = ACTIONS(2932), + [sym_super] = ACTIONS(2932), + [sym_true] = ACTIONS(2932), + [sym_false] = ACTIONS(2932), + [sym_null] = ACTIONS(2932), + [sym_undefined] = ACTIONS(2932), + [anon_sym_AT] = ACTIONS(2930), + [anon_sym_static] = ACTIONS(2932), + [anon_sym_readonly] = ACTIONS(2932), + [anon_sym_get] = ACTIONS(2932), + [anon_sym_set] = ACTIONS(2932), + [anon_sym_declare] = ACTIONS(2932), + [anon_sym_public] = ACTIONS(2932), + [anon_sym_private] = ACTIONS(2932), + [anon_sym_protected] = ACTIONS(2932), + [anon_sym_override] = ACTIONS(2932), + [anon_sym_module] = ACTIONS(2932), + [anon_sym_any] = ACTIONS(2932), + [anon_sym_number] = ACTIONS(2932), + [anon_sym_boolean] = ACTIONS(2932), + [anon_sym_string] = ACTIONS(2932), + [anon_sym_symbol] = ACTIONS(2932), + [anon_sym_object] = ACTIONS(2932), + [anon_sym_abstract] = ACTIONS(2932), + [anon_sym_interface] = ACTIONS(2932), + [anon_sym_enum] = ACTIONS(2932), [sym_html_comment] = ACTIONS(5), }, [910] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_rest_pattern] = STATE(5529), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3817), - [sym_tuple_parameter] = STATE(5551), - [sym_optional_tuple_parameter] = STATE(5551), - [sym_optional_type] = STATE(5551), - [sym_rest_type] = STATE(5551), - [sym__tuple_type_member] = STATE(5551), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(2527), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_RBRACK] = ACTIONS(2939), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [ts_builtin_sym_end] = ACTIONS(2934), + [sym_identifier] = ACTIONS(2936), + [anon_sym_export] = ACTIONS(2936), + [anon_sym_default] = ACTIONS(2936), + [anon_sym_type] = ACTIONS(2936), + [anon_sym_namespace] = ACTIONS(2936), + [anon_sym_LBRACE] = ACTIONS(2934), + [anon_sym_RBRACE] = ACTIONS(2934), + [anon_sym_typeof] = ACTIONS(2936), + [anon_sym_import] = ACTIONS(2936), + [anon_sym_with] = ACTIONS(2936), + [anon_sym_var] = ACTIONS(2936), + [anon_sym_let] = ACTIONS(2936), + [anon_sym_const] = ACTIONS(2936), + [anon_sym_BANG] = ACTIONS(2934), + [anon_sym_else] = ACTIONS(2936), + [anon_sym_if] = ACTIONS(2936), + [anon_sym_switch] = ACTIONS(2936), + [anon_sym_for] = ACTIONS(2936), + [anon_sym_LPAREN] = ACTIONS(2934), + [anon_sym_SEMI] = ACTIONS(2934), + [anon_sym_await] = ACTIONS(2936), + [anon_sym_while] = ACTIONS(2936), + [anon_sym_do] = ACTIONS(2936), + [anon_sym_try] = ACTIONS(2936), + [anon_sym_break] = ACTIONS(2936), + [anon_sym_continue] = ACTIONS(2936), + [anon_sym_debugger] = ACTIONS(2936), + [anon_sym_return] = ACTIONS(2936), + [anon_sym_throw] = ACTIONS(2936), + [anon_sym_case] = ACTIONS(2936), + [anon_sym_yield] = ACTIONS(2936), + [anon_sym_LBRACK] = ACTIONS(2934), + [anon_sym_DQUOTE] = ACTIONS(2934), + [anon_sym_SQUOTE] = ACTIONS(2934), + [anon_sym_class] = ACTIONS(2936), + [anon_sym_async] = ACTIONS(2936), + [anon_sym_function] = ACTIONS(2936), + [anon_sym_new] = ACTIONS(2936), + [anon_sym_using] = ACTIONS(2936), + [anon_sym_PLUS] = ACTIONS(2936), + [anon_sym_DASH] = ACTIONS(2936), + [anon_sym_SLASH] = ACTIONS(2936), + [anon_sym_LT] = ACTIONS(2934), + [anon_sym_TILDE] = ACTIONS(2934), + [anon_sym_void] = ACTIONS(2936), + [anon_sym_delete] = ACTIONS(2936), + [anon_sym_PLUS_PLUS] = ACTIONS(2934), + [anon_sym_DASH_DASH] = ACTIONS(2934), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2934), + [sym_number] = ACTIONS(2934), + [sym_private_property_identifier] = ACTIONS(2934), + [sym_this] = ACTIONS(2936), + [sym_super] = ACTIONS(2936), + [sym_true] = ACTIONS(2936), + [sym_false] = ACTIONS(2936), + [sym_null] = ACTIONS(2936), + [sym_undefined] = ACTIONS(2936), + [anon_sym_AT] = ACTIONS(2934), + [anon_sym_static] = ACTIONS(2936), + [anon_sym_readonly] = ACTIONS(2936), + [anon_sym_get] = ACTIONS(2936), + [anon_sym_set] = ACTIONS(2936), + [anon_sym_declare] = ACTIONS(2936), + [anon_sym_public] = ACTIONS(2936), + [anon_sym_private] = ACTIONS(2936), + [anon_sym_protected] = ACTIONS(2936), + [anon_sym_override] = ACTIONS(2936), + [anon_sym_module] = ACTIONS(2936), + [anon_sym_any] = ACTIONS(2936), + [anon_sym_number] = ACTIONS(2936), + [anon_sym_boolean] = ACTIONS(2936), + [anon_sym_string] = ACTIONS(2936), + [anon_sym_symbol] = ACTIONS(2936), + [anon_sym_object] = ACTIONS(2936), + [anon_sym_abstract] = ACTIONS(2936), + [anon_sym_interface] = ACTIONS(2936), + [anon_sym_enum] = ACTIONS(2936), [sym_html_comment] = ACTIONS(5), }, [911] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_rest_pattern] = STATE(5529), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3817), - [sym_tuple_parameter] = STATE(5551), - [sym_optional_tuple_parameter] = STATE(5551), - [sym_optional_type] = STATE(5551), - [sym_rest_type] = STATE(5551), - [sym__tuple_type_member] = STATE(5551), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(2527), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_RBRACK] = ACTIONS(2941), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [ts_builtin_sym_end] = ACTIONS(1839), + [sym_identifier] = ACTIONS(1841), + [anon_sym_export] = ACTIONS(1841), + [anon_sym_default] = ACTIONS(1841), + [anon_sym_type] = ACTIONS(1841), + [anon_sym_namespace] = ACTIONS(1841), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_RBRACE] = ACTIONS(1839), + [anon_sym_typeof] = ACTIONS(1841), + [anon_sym_import] = ACTIONS(1841), + [anon_sym_with] = ACTIONS(1841), + [anon_sym_var] = ACTIONS(1841), + [anon_sym_let] = ACTIONS(1841), + [anon_sym_const] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1839), + [anon_sym_else] = ACTIONS(1841), + [anon_sym_if] = ACTIONS(1841), + [anon_sym_switch] = ACTIONS(1841), + [anon_sym_for] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1839), + [anon_sym_SEMI] = ACTIONS(1839), + [anon_sym_await] = ACTIONS(1841), + [anon_sym_while] = ACTIONS(1841), + [anon_sym_do] = ACTIONS(1841), + [anon_sym_try] = ACTIONS(1841), + [anon_sym_break] = ACTIONS(1841), + [anon_sym_continue] = ACTIONS(1841), + [anon_sym_debugger] = ACTIONS(1841), + [anon_sym_return] = ACTIONS(1841), + [anon_sym_throw] = ACTIONS(1841), + [anon_sym_case] = ACTIONS(1841), + [anon_sym_yield] = ACTIONS(1841), + [anon_sym_LBRACK] = ACTIONS(1839), + [anon_sym_DQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_class] = ACTIONS(1841), + [anon_sym_async] = ACTIONS(1841), + [anon_sym_function] = ACTIONS(1841), + [anon_sym_new] = ACTIONS(1841), + [anon_sym_using] = ACTIONS(1841), + [anon_sym_PLUS] = ACTIONS(1841), + [anon_sym_DASH] = ACTIONS(1841), + [anon_sym_SLASH] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1839), + [anon_sym_TILDE] = ACTIONS(1839), + [anon_sym_void] = ACTIONS(1841), + [anon_sym_delete] = ACTIONS(1841), + [anon_sym_PLUS_PLUS] = ACTIONS(1839), + [anon_sym_DASH_DASH] = ACTIONS(1839), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1839), + [sym_number] = ACTIONS(1839), + [sym_private_property_identifier] = ACTIONS(1839), + [sym_this] = ACTIONS(1841), + [sym_super] = ACTIONS(1841), + [sym_true] = ACTIONS(1841), + [sym_false] = ACTIONS(1841), + [sym_null] = ACTIONS(1841), + [sym_undefined] = ACTIONS(1841), + [anon_sym_AT] = ACTIONS(1839), + [anon_sym_static] = ACTIONS(1841), + [anon_sym_readonly] = ACTIONS(1841), + [anon_sym_get] = ACTIONS(1841), + [anon_sym_set] = ACTIONS(1841), + [anon_sym_declare] = ACTIONS(1841), + [anon_sym_public] = ACTIONS(1841), + [anon_sym_private] = ACTIONS(1841), + [anon_sym_protected] = ACTIONS(1841), + [anon_sym_override] = ACTIONS(1841), + [anon_sym_module] = ACTIONS(1841), + [anon_sym_any] = ACTIONS(1841), + [anon_sym_number] = ACTIONS(1841), + [anon_sym_boolean] = ACTIONS(1841), + [anon_sym_string] = ACTIONS(1841), + [anon_sym_symbol] = ACTIONS(1841), + [anon_sym_object] = ACTIONS(1841), + [anon_sym_abstract] = ACTIONS(1841), + [anon_sym_interface] = ACTIONS(1841), + [anon_sym_enum] = ACTIONS(1841), [sym_html_comment] = ACTIONS(5), }, [912] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_rest_pattern] = STATE(5529), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3817), - [sym_tuple_parameter] = STATE(5551), - [sym_optional_tuple_parameter] = STATE(5551), - [sym_optional_type] = STATE(5551), - [sym_rest_type] = STATE(5551), - [sym__tuple_type_member] = STATE(5551), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(2527), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_RBRACK] = ACTIONS(2943), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [ts_builtin_sym_end] = ACTIONS(2742), + [sym_identifier] = ACTIONS(2744), + [anon_sym_export] = ACTIONS(2744), + [anon_sym_default] = ACTIONS(2744), + [anon_sym_type] = ACTIONS(2744), + [anon_sym_namespace] = ACTIONS(2744), + [anon_sym_LBRACE] = ACTIONS(2742), + [anon_sym_RBRACE] = ACTIONS(2742), + [anon_sym_typeof] = ACTIONS(2744), + [anon_sym_import] = ACTIONS(2744), + [anon_sym_with] = ACTIONS(2744), + [anon_sym_var] = ACTIONS(2744), + [anon_sym_let] = ACTIONS(2744), + [anon_sym_const] = ACTIONS(2744), + [anon_sym_BANG] = ACTIONS(2742), + [anon_sym_else] = ACTIONS(2744), + [anon_sym_if] = ACTIONS(2744), + [anon_sym_switch] = ACTIONS(2744), + [anon_sym_for] = ACTIONS(2744), + [anon_sym_LPAREN] = ACTIONS(2742), + [anon_sym_SEMI] = ACTIONS(2742), + [anon_sym_await] = ACTIONS(2744), + [anon_sym_while] = ACTIONS(2744), + [anon_sym_do] = ACTIONS(2744), + [anon_sym_try] = ACTIONS(2744), + [anon_sym_break] = ACTIONS(2744), + [anon_sym_continue] = ACTIONS(2744), + [anon_sym_debugger] = ACTIONS(2744), + [anon_sym_return] = ACTIONS(2744), + [anon_sym_throw] = ACTIONS(2744), + [anon_sym_case] = ACTIONS(2744), + [anon_sym_yield] = ACTIONS(2744), + [anon_sym_LBRACK] = ACTIONS(2742), + [anon_sym_DQUOTE] = ACTIONS(2742), + [anon_sym_SQUOTE] = ACTIONS(2742), + [anon_sym_class] = ACTIONS(2744), + [anon_sym_async] = ACTIONS(2744), + [anon_sym_function] = ACTIONS(2744), + [anon_sym_new] = ACTIONS(2744), + [anon_sym_using] = ACTIONS(2744), + [anon_sym_PLUS] = ACTIONS(2744), + [anon_sym_DASH] = ACTIONS(2744), + [anon_sym_SLASH] = ACTIONS(2744), + [anon_sym_LT] = ACTIONS(2742), + [anon_sym_TILDE] = ACTIONS(2742), + [anon_sym_void] = ACTIONS(2744), + [anon_sym_delete] = ACTIONS(2744), + [anon_sym_PLUS_PLUS] = ACTIONS(2742), + [anon_sym_DASH_DASH] = ACTIONS(2742), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2742), + [sym_number] = ACTIONS(2742), + [sym_private_property_identifier] = ACTIONS(2742), + [sym_this] = ACTIONS(2744), + [sym_super] = ACTIONS(2744), + [sym_true] = ACTIONS(2744), + [sym_false] = ACTIONS(2744), + [sym_null] = ACTIONS(2744), + [sym_undefined] = ACTIONS(2744), + [anon_sym_AT] = ACTIONS(2742), + [anon_sym_static] = ACTIONS(2744), + [anon_sym_readonly] = ACTIONS(2744), + [anon_sym_get] = ACTIONS(2744), + [anon_sym_set] = ACTIONS(2744), + [anon_sym_declare] = ACTIONS(2744), + [anon_sym_public] = ACTIONS(2744), + [anon_sym_private] = ACTIONS(2744), + [anon_sym_protected] = ACTIONS(2744), + [anon_sym_override] = ACTIONS(2744), + [anon_sym_module] = ACTIONS(2744), + [anon_sym_any] = ACTIONS(2744), + [anon_sym_number] = ACTIONS(2744), + [anon_sym_boolean] = ACTIONS(2744), + [anon_sym_string] = ACTIONS(2744), + [anon_sym_symbol] = ACTIONS(2744), + [anon_sym_object] = ACTIONS(2744), + [anon_sym_abstract] = ACTIONS(2744), + [anon_sym_interface] = ACTIONS(2744), + [anon_sym_enum] = ACTIONS(2744), [sym_html_comment] = ACTIONS(5), }, [913] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_rest_pattern] = STATE(5529), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3817), - [sym_tuple_parameter] = STATE(5551), - [sym_optional_tuple_parameter] = STATE(5551), - [sym_optional_type] = STATE(5551), - [sym_rest_type] = STATE(5551), - [sym__tuple_type_member] = STATE(5551), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(2527), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_RBRACK] = ACTIONS(2945), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [ts_builtin_sym_end] = ACTIONS(2742), + [sym_identifier] = ACTIONS(2744), + [anon_sym_export] = ACTIONS(2744), + [anon_sym_default] = ACTIONS(2744), + [anon_sym_type] = ACTIONS(2744), + [anon_sym_namespace] = ACTIONS(2744), + [anon_sym_LBRACE] = ACTIONS(2742), + [anon_sym_RBRACE] = ACTIONS(2742), + [anon_sym_typeof] = ACTIONS(2744), + [anon_sym_import] = ACTIONS(2744), + [anon_sym_with] = ACTIONS(2744), + [anon_sym_var] = ACTIONS(2744), + [anon_sym_let] = ACTIONS(2744), + [anon_sym_const] = ACTIONS(2744), + [anon_sym_BANG] = ACTIONS(2742), + [anon_sym_else] = ACTIONS(2744), + [anon_sym_if] = ACTIONS(2744), + [anon_sym_switch] = ACTIONS(2744), + [anon_sym_for] = ACTIONS(2744), + [anon_sym_LPAREN] = ACTIONS(2742), + [anon_sym_SEMI] = ACTIONS(2742), + [anon_sym_await] = ACTIONS(2744), + [anon_sym_while] = ACTIONS(2744), + [anon_sym_do] = ACTIONS(2744), + [anon_sym_try] = ACTIONS(2744), + [anon_sym_break] = ACTIONS(2744), + [anon_sym_continue] = ACTIONS(2744), + [anon_sym_debugger] = ACTIONS(2744), + [anon_sym_return] = ACTIONS(2744), + [anon_sym_throw] = ACTIONS(2744), + [anon_sym_case] = ACTIONS(2744), + [anon_sym_yield] = ACTIONS(2744), + [anon_sym_LBRACK] = ACTIONS(2742), + [anon_sym_DQUOTE] = ACTIONS(2742), + [anon_sym_SQUOTE] = ACTIONS(2742), + [anon_sym_class] = ACTIONS(2744), + [anon_sym_async] = ACTIONS(2744), + [anon_sym_function] = ACTIONS(2744), + [anon_sym_new] = ACTIONS(2744), + [anon_sym_using] = ACTIONS(2744), + [anon_sym_PLUS] = ACTIONS(2744), + [anon_sym_DASH] = ACTIONS(2744), + [anon_sym_SLASH] = ACTIONS(2744), + [anon_sym_LT] = ACTIONS(2742), + [anon_sym_TILDE] = ACTIONS(2742), + [anon_sym_void] = ACTIONS(2744), + [anon_sym_delete] = ACTIONS(2744), + [anon_sym_PLUS_PLUS] = ACTIONS(2742), + [anon_sym_DASH_DASH] = ACTIONS(2742), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2742), + [sym_number] = ACTIONS(2742), + [sym_private_property_identifier] = ACTIONS(2742), + [sym_this] = ACTIONS(2744), + [sym_super] = ACTIONS(2744), + [sym_true] = ACTIONS(2744), + [sym_false] = ACTIONS(2744), + [sym_null] = ACTIONS(2744), + [sym_undefined] = ACTIONS(2744), + [anon_sym_AT] = ACTIONS(2742), + [anon_sym_static] = ACTIONS(2744), + [anon_sym_readonly] = ACTIONS(2744), + [anon_sym_get] = ACTIONS(2744), + [anon_sym_set] = ACTIONS(2744), + [anon_sym_declare] = ACTIONS(2744), + [anon_sym_public] = ACTIONS(2744), + [anon_sym_private] = ACTIONS(2744), + [anon_sym_protected] = ACTIONS(2744), + [anon_sym_override] = ACTIONS(2744), + [anon_sym_module] = ACTIONS(2744), + [anon_sym_any] = ACTIONS(2744), + [anon_sym_number] = ACTIONS(2744), + [anon_sym_boolean] = ACTIONS(2744), + [anon_sym_string] = ACTIONS(2744), + [anon_sym_symbol] = ACTIONS(2744), + [anon_sym_object] = ACTIONS(2744), + [anon_sym_abstract] = ACTIONS(2744), + [anon_sym_interface] = ACTIONS(2744), + [anon_sym_enum] = ACTIONS(2744), [sym_html_comment] = ACTIONS(5), }, [914] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_rest_pattern] = STATE(5529), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3817), - [sym_tuple_parameter] = STATE(5551), - [sym_optional_tuple_parameter] = STATE(5551), - [sym_optional_type] = STATE(5551), - [sym_rest_type] = STATE(5551), - [sym__tuple_type_member] = STATE(5551), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(2527), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_RBRACK] = ACTIONS(2947), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [ts_builtin_sym_end] = ACTIONS(2742), + [sym_identifier] = ACTIONS(2744), + [anon_sym_export] = ACTIONS(2744), + [anon_sym_default] = ACTIONS(2744), + [anon_sym_type] = ACTIONS(2744), + [anon_sym_namespace] = ACTIONS(2744), + [anon_sym_LBRACE] = ACTIONS(2742), + [anon_sym_RBRACE] = ACTIONS(2742), + [anon_sym_typeof] = ACTIONS(2744), + [anon_sym_import] = ACTIONS(2744), + [anon_sym_with] = ACTIONS(2744), + [anon_sym_var] = ACTIONS(2744), + [anon_sym_let] = ACTIONS(2744), + [anon_sym_const] = ACTIONS(2744), + [anon_sym_BANG] = ACTIONS(2742), + [anon_sym_else] = ACTIONS(2744), + [anon_sym_if] = ACTIONS(2744), + [anon_sym_switch] = ACTIONS(2744), + [anon_sym_for] = ACTIONS(2744), + [anon_sym_LPAREN] = ACTIONS(2742), + [anon_sym_SEMI] = ACTIONS(2742), + [anon_sym_await] = ACTIONS(2744), + [anon_sym_while] = ACTIONS(2744), + [anon_sym_do] = ACTIONS(2744), + [anon_sym_try] = ACTIONS(2744), + [anon_sym_break] = ACTIONS(2744), + [anon_sym_continue] = ACTIONS(2744), + [anon_sym_debugger] = ACTIONS(2744), + [anon_sym_return] = ACTIONS(2744), + [anon_sym_throw] = ACTIONS(2744), + [anon_sym_case] = ACTIONS(2744), + [anon_sym_yield] = ACTIONS(2744), + [anon_sym_LBRACK] = ACTIONS(2742), + [anon_sym_DQUOTE] = ACTIONS(2742), + [anon_sym_SQUOTE] = ACTIONS(2742), + [anon_sym_class] = ACTIONS(2744), + [anon_sym_async] = ACTIONS(2744), + [anon_sym_function] = ACTIONS(2744), + [anon_sym_new] = ACTIONS(2744), + [anon_sym_using] = ACTIONS(2744), + [anon_sym_PLUS] = ACTIONS(2744), + [anon_sym_DASH] = ACTIONS(2744), + [anon_sym_SLASH] = ACTIONS(2744), + [anon_sym_LT] = ACTIONS(2742), + [anon_sym_TILDE] = ACTIONS(2742), + [anon_sym_void] = ACTIONS(2744), + [anon_sym_delete] = ACTIONS(2744), + [anon_sym_PLUS_PLUS] = ACTIONS(2742), + [anon_sym_DASH_DASH] = ACTIONS(2742), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2742), + [sym_number] = ACTIONS(2742), + [sym_private_property_identifier] = ACTIONS(2742), + [sym_this] = ACTIONS(2744), + [sym_super] = ACTIONS(2744), + [sym_true] = ACTIONS(2744), + [sym_false] = ACTIONS(2744), + [sym_null] = ACTIONS(2744), + [sym_undefined] = ACTIONS(2744), + [anon_sym_AT] = ACTIONS(2742), + [anon_sym_static] = ACTIONS(2744), + [anon_sym_readonly] = ACTIONS(2744), + [anon_sym_get] = ACTIONS(2744), + [anon_sym_set] = ACTIONS(2744), + [anon_sym_declare] = ACTIONS(2744), + [anon_sym_public] = ACTIONS(2744), + [anon_sym_private] = ACTIONS(2744), + [anon_sym_protected] = ACTIONS(2744), + [anon_sym_override] = ACTIONS(2744), + [anon_sym_module] = ACTIONS(2744), + [anon_sym_any] = ACTIONS(2744), + [anon_sym_number] = ACTIONS(2744), + [anon_sym_boolean] = ACTIONS(2744), + [anon_sym_string] = ACTIONS(2744), + [anon_sym_symbol] = ACTIONS(2744), + [anon_sym_object] = ACTIONS(2744), + [anon_sym_abstract] = ACTIONS(2744), + [anon_sym_interface] = ACTIONS(2744), + [anon_sym_enum] = ACTIONS(2744), [sym_html_comment] = ACTIONS(5), }, [915] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_rest_pattern] = STATE(5529), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3817), - [sym_tuple_parameter] = STATE(5551), - [sym_optional_tuple_parameter] = STATE(5551), - [sym_optional_type] = STATE(5551), - [sym_rest_type] = STATE(5551), - [sym__tuple_type_member] = STATE(5551), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(2527), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_RBRACK] = ACTIONS(2949), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [ts_builtin_sym_end] = ACTIONS(2938), + [sym_identifier] = ACTIONS(2940), + [anon_sym_export] = ACTIONS(2940), + [anon_sym_default] = ACTIONS(2940), + [anon_sym_type] = ACTIONS(2940), + [anon_sym_namespace] = ACTIONS(2940), + [anon_sym_LBRACE] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(2938), + [anon_sym_typeof] = ACTIONS(2940), + [anon_sym_import] = ACTIONS(2940), + [anon_sym_with] = ACTIONS(2940), + [anon_sym_var] = ACTIONS(2940), + [anon_sym_let] = ACTIONS(2940), + [anon_sym_const] = ACTIONS(2940), + [anon_sym_BANG] = ACTIONS(2938), + [anon_sym_else] = ACTIONS(2940), + [anon_sym_if] = ACTIONS(2940), + [anon_sym_switch] = ACTIONS(2940), + [anon_sym_for] = ACTIONS(2940), + [anon_sym_LPAREN] = ACTIONS(2938), + [anon_sym_SEMI] = ACTIONS(2938), + [anon_sym_await] = ACTIONS(2940), + [anon_sym_while] = ACTIONS(2940), + [anon_sym_do] = ACTIONS(2940), + [anon_sym_try] = ACTIONS(2940), + [anon_sym_break] = ACTIONS(2940), + [anon_sym_continue] = ACTIONS(2940), + [anon_sym_debugger] = ACTIONS(2940), + [anon_sym_return] = ACTIONS(2940), + [anon_sym_throw] = ACTIONS(2940), + [anon_sym_case] = ACTIONS(2940), + [anon_sym_yield] = ACTIONS(2940), + [anon_sym_LBRACK] = ACTIONS(2938), + [anon_sym_DQUOTE] = ACTIONS(2938), + [anon_sym_SQUOTE] = ACTIONS(2938), + [anon_sym_class] = ACTIONS(2940), + [anon_sym_async] = ACTIONS(2940), + [anon_sym_function] = ACTIONS(2940), + [anon_sym_new] = ACTIONS(2940), + [anon_sym_using] = ACTIONS(2940), + [anon_sym_PLUS] = ACTIONS(2940), + [anon_sym_DASH] = ACTIONS(2940), + [anon_sym_SLASH] = ACTIONS(2940), + [anon_sym_LT] = ACTIONS(2938), + [anon_sym_TILDE] = ACTIONS(2938), + [anon_sym_void] = ACTIONS(2940), + [anon_sym_delete] = ACTIONS(2940), + [anon_sym_PLUS_PLUS] = ACTIONS(2938), + [anon_sym_DASH_DASH] = ACTIONS(2938), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2938), + [sym_number] = ACTIONS(2938), + [sym_private_property_identifier] = ACTIONS(2938), + [sym_this] = ACTIONS(2940), + [sym_super] = ACTIONS(2940), + [sym_true] = ACTIONS(2940), + [sym_false] = ACTIONS(2940), + [sym_null] = ACTIONS(2940), + [sym_undefined] = ACTIONS(2940), + [anon_sym_AT] = ACTIONS(2938), + [anon_sym_static] = ACTIONS(2940), + [anon_sym_readonly] = ACTIONS(2940), + [anon_sym_get] = ACTIONS(2940), + [anon_sym_set] = ACTIONS(2940), + [anon_sym_declare] = ACTIONS(2940), + [anon_sym_public] = ACTIONS(2940), + [anon_sym_private] = ACTIONS(2940), + [anon_sym_protected] = ACTIONS(2940), + [anon_sym_override] = ACTIONS(2940), + [anon_sym_module] = ACTIONS(2940), + [anon_sym_any] = ACTIONS(2940), + [anon_sym_number] = ACTIONS(2940), + [anon_sym_boolean] = ACTIONS(2940), + [anon_sym_string] = ACTIONS(2940), + [anon_sym_symbol] = ACTIONS(2940), + [anon_sym_object] = ACTIONS(2940), + [anon_sym_abstract] = ACTIONS(2940), + [anon_sym_interface] = ACTIONS(2940), + [anon_sym_enum] = ACTIONS(2940), [sym_html_comment] = ACTIONS(5), }, [916] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_rest_pattern] = STATE(5529), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3817), - [sym_tuple_parameter] = STATE(5551), - [sym_optional_tuple_parameter] = STATE(5551), - [sym_optional_type] = STATE(5551), - [sym_rest_type] = STATE(5551), - [sym__tuple_type_member] = STATE(5551), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(2527), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(4786), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5658), + [sym_rest_pattern] = STATE(5415), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3263), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3806), + [sym_tuple_parameter] = STATE(5460), + [sym_optional_tuple_parameter] = STATE(5460), + [sym_optional_type] = STATE(5460), + [sym_rest_type] = STATE(5460), + [sym__tuple_type_member] = STATE(5460), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5559), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(2468), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2474), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [917] = { - [sym_identifier] = ACTIONS(2951), - [anon_sym_export] = ACTIONS(2951), - [anon_sym_type] = ACTIONS(2951), - [anon_sym_namespace] = ACTIONS(2951), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_typeof] = ACTIONS(2951), - [anon_sym_import] = ACTIONS(2951), - [anon_sym_with] = ACTIONS(2951), - [anon_sym_var] = ACTIONS(2951), - [anon_sym_let] = ACTIONS(2951), - [anon_sym_const] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2951), - [anon_sym_switch] = ACTIONS(2951), - [anon_sym_for] = ACTIONS(2951), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_SEMI] = ACTIONS(2953), - [anon_sym_await] = ACTIONS(2951), - [anon_sym_while] = ACTIONS(2951), - [anon_sym_do] = ACTIONS(2951), - [anon_sym_try] = ACTIONS(2951), - [anon_sym_break] = ACTIONS(2951), - [anon_sym_continue] = ACTIONS(2951), - [anon_sym_debugger] = ACTIONS(2951), - [anon_sym_return] = ACTIONS(2951), - [anon_sym_throw] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2953), - [sym_glimmer_opening_tag] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [anon_sym_SQUOTE] = ACTIONS(2953), - [anon_sym_class] = ACTIONS(2951), - [anon_sym_async] = ACTIONS(2951), - [anon_sym_function] = ACTIONS(2951), - [anon_sym_new] = ACTIONS(2951), - [anon_sym_using] = ACTIONS(2951), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_SLASH] = ACTIONS(2951), - [anon_sym_LT] = ACTIONS(2951), - [anon_sym_TILDE] = ACTIONS(2953), - [anon_sym_void] = ACTIONS(2951), - [anon_sym_delete] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2953), - [anon_sym_DASH_DASH] = ACTIONS(2953), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2953), - [sym_number] = ACTIONS(2953), - [sym_private_property_identifier] = ACTIONS(2953), - [sym_this] = ACTIONS(2951), - [sym_super] = ACTIONS(2951), - [sym_true] = ACTIONS(2951), - [sym_false] = ACTIONS(2951), - [sym_null] = ACTIONS(2951), - [sym_undefined] = ACTIONS(2951), - [anon_sym_AT] = ACTIONS(2953), - [anon_sym_static] = ACTIONS(2951), - [anon_sym_readonly] = ACTIONS(2951), - [anon_sym_get] = ACTIONS(2951), - [anon_sym_set] = ACTIONS(2951), - [anon_sym_declare] = ACTIONS(2951), - [anon_sym_public] = ACTIONS(2951), - [anon_sym_private] = ACTIONS(2951), - [anon_sym_protected] = ACTIONS(2951), - [anon_sym_override] = ACTIONS(2951), - [anon_sym_module] = ACTIONS(2951), - [anon_sym_any] = ACTIONS(2951), - [anon_sym_number] = ACTIONS(2951), - [anon_sym_boolean] = ACTIONS(2951), - [anon_sym_string] = ACTIONS(2951), - [anon_sym_symbol] = ACTIONS(2951), - [anon_sym_object] = ACTIONS(2951), - [anon_sym_abstract] = ACTIONS(2951), - [anon_sym_interface] = ACTIONS(2951), - [anon_sym_enum] = ACTIONS(2951), + [sym_identifier] = ACTIONS(2942), + [anon_sym_export] = ACTIONS(2942), + [anon_sym_type] = ACTIONS(2942), + [anon_sym_namespace] = ACTIONS(2942), + [anon_sym_LBRACE] = ACTIONS(2944), + [anon_sym_typeof] = ACTIONS(2942), + [anon_sym_import] = ACTIONS(2942), + [anon_sym_with] = ACTIONS(2942), + [anon_sym_var] = ACTIONS(2942), + [anon_sym_let] = ACTIONS(2942), + [anon_sym_const] = ACTIONS(2942), + [anon_sym_BANG] = ACTIONS(2944), + [anon_sym_if] = ACTIONS(2942), + [anon_sym_switch] = ACTIONS(2942), + [anon_sym_for] = ACTIONS(2942), + [anon_sym_LPAREN] = ACTIONS(2944), + [anon_sym_SEMI] = ACTIONS(2944), + [anon_sym_await] = ACTIONS(2942), + [anon_sym_while] = ACTIONS(2942), + [anon_sym_do] = ACTIONS(2942), + [anon_sym_try] = ACTIONS(2942), + [anon_sym_break] = ACTIONS(2942), + [anon_sym_continue] = ACTIONS(2942), + [anon_sym_debugger] = ACTIONS(2942), + [anon_sym_return] = ACTIONS(2942), + [anon_sym_throw] = ACTIONS(2942), + [anon_sym_yield] = ACTIONS(2942), + [anon_sym_LBRACK] = ACTIONS(2944), + [anon_sym_DQUOTE] = ACTIONS(2944), + [anon_sym_SQUOTE] = ACTIONS(2944), + [anon_sym_class] = ACTIONS(2942), + [anon_sym_async] = ACTIONS(2942), + [anon_sym_function] = ACTIONS(2942), + [anon_sym_new] = ACTIONS(2942), + [anon_sym_using] = ACTIONS(2942), + [anon_sym_PLUS] = ACTIONS(2942), + [anon_sym_DASH] = ACTIONS(2942), + [anon_sym_SLASH] = ACTIONS(2942), + [anon_sym_LT] = ACTIONS(2944), + [anon_sym_TILDE] = ACTIONS(2944), + [anon_sym_void] = ACTIONS(2942), + [anon_sym_delete] = ACTIONS(2942), + [anon_sym_PLUS_PLUS] = ACTIONS(2944), + [anon_sym_DASH_DASH] = ACTIONS(2944), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2944), + [sym_number] = ACTIONS(2944), + [sym_private_property_identifier] = ACTIONS(2944), + [sym_this] = ACTIONS(2942), + [sym_super] = ACTIONS(2942), + [sym_true] = ACTIONS(2942), + [sym_false] = ACTIONS(2942), + [sym_null] = ACTIONS(2942), + [sym_undefined] = ACTIONS(2942), + [anon_sym_AT] = ACTIONS(2944), + [anon_sym_static] = ACTIONS(2942), + [anon_sym_readonly] = ACTIONS(2942), + [anon_sym_get] = ACTIONS(2942), + [anon_sym_set] = ACTIONS(2942), + [anon_sym_declare] = ACTIONS(2942), + [anon_sym_public] = ACTIONS(2942), + [anon_sym_private] = ACTIONS(2942), + [anon_sym_protected] = ACTIONS(2942), + [anon_sym_override] = ACTIONS(2942), + [anon_sym_module] = ACTIONS(2942), + [anon_sym_any] = ACTIONS(2942), + [anon_sym_number] = ACTIONS(2942), + [anon_sym_boolean] = ACTIONS(2942), + [anon_sym_string] = ACTIONS(2942), + [anon_sym_symbol] = ACTIONS(2942), + [anon_sym_object] = ACTIONS(2942), + [anon_sym_abstract] = ACTIONS(2942), + [anon_sym_interface] = ACTIONS(2942), + [anon_sym_enum] = ACTIONS(2942), [sym_html_comment] = ACTIONS(5), }, [918] = { - [sym_identifier] = ACTIONS(2955), - [anon_sym_export] = ACTIONS(2955), - [anon_sym_type] = ACTIONS(2955), - [anon_sym_namespace] = ACTIONS(2955), - [anon_sym_LBRACE] = ACTIONS(2957), - [anon_sym_typeof] = ACTIONS(2955), - [anon_sym_import] = ACTIONS(2955), - [anon_sym_with] = ACTIONS(2955), - [anon_sym_var] = ACTIONS(2955), - [anon_sym_let] = ACTIONS(2955), - [anon_sym_const] = ACTIONS(2955), - [anon_sym_BANG] = ACTIONS(2957), - [anon_sym_if] = ACTIONS(2955), - [anon_sym_switch] = ACTIONS(2955), - [anon_sym_for] = ACTIONS(2955), - [anon_sym_LPAREN] = ACTIONS(2957), - [anon_sym_SEMI] = ACTIONS(2957), - [anon_sym_await] = ACTIONS(2955), - [anon_sym_while] = ACTIONS(2955), - [anon_sym_do] = ACTIONS(2955), - [anon_sym_try] = ACTIONS(2955), - [anon_sym_break] = ACTIONS(2955), - [anon_sym_continue] = ACTIONS(2955), - [anon_sym_debugger] = ACTIONS(2955), - [anon_sym_return] = ACTIONS(2955), - [anon_sym_throw] = ACTIONS(2955), - [anon_sym_yield] = ACTIONS(2955), - [anon_sym_LBRACK] = ACTIONS(2957), - [sym_glimmer_opening_tag] = ACTIONS(2957), - [anon_sym_DQUOTE] = ACTIONS(2957), - [anon_sym_SQUOTE] = ACTIONS(2957), - [anon_sym_class] = ACTIONS(2955), - [anon_sym_async] = ACTIONS(2955), - [anon_sym_function] = ACTIONS(2955), - [anon_sym_new] = ACTIONS(2955), - [anon_sym_using] = ACTIONS(2955), - [anon_sym_PLUS] = ACTIONS(2955), - [anon_sym_DASH] = ACTIONS(2955), - [anon_sym_SLASH] = ACTIONS(2955), - [anon_sym_LT] = ACTIONS(2955), - [anon_sym_TILDE] = ACTIONS(2957), - [anon_sym_void] = ACTIONS(2955), - [anon_sym_delete] = ACTIONS(2955), - [anon_sym_PLUS_PLUS] = ACTIONS(2957), - [anon_sym_DASH_DASH] = ACTIONS(2957), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2957), - [sym_number] = ACTIONS(2957), - [sym_private_property_identifier] = ACTIONS(2957), - [sym_this] = ACTIONS(2955), - [sym_super] = ACTIONS(2955), - [sym_true] = ACTIONS(2955), - [sym_false] = ACTIONS(2955), - [sym_null] = ACTIONS(2955), - [sym_undefined] = ACTIONS(2955), - [anon_sym_AT] = ACTIONS(2957), - [anon_sym_static] = ACTIONS(2955), - [anon_sym_readonly] = ACTIONS(2955), - [anon_sym_get] = ACTIONS(2955), - [anon_sym_set] = ACTIONS(2955), - [anon_sym_declare] = ACTIONS(2955), - [anon_sym_public] = ACTIONS(2955), - [anon_sym_private] = ACTIONS(2955), - [anon_sym_protected] = ACTIONS(2955), - [anon_sym_override] = ACTIONS(2955), - [anon_sym_module] = ACTIONS(2955), - [anon_sym_any] = ACTIONS(2955), - [anon_sym_number] = ACTIONS(2955), - [anon_sym_boolean] = ACTIONS(2955), - [anon_sym_string] = ACTIONS(2955), - [anon_sym_symbol] = ACTIONS(2955), - [anon_sym_object] = ACTIONS(2955), - [anon_sym_abstract] = ACTIONS(2955), - [anon_sym_interface] = ACTIONS(2955), - [anon_sym_enum] = ACTIONS(2955), + [sym_import] = STATE(5153), + [sym_nested_identifier] = STATE(5834), + [sym_string] = STATE(3213), + [sym_formal_parameters] = STATE(5829), + [sym_nested_type_identifier] = STATE(3070), + [sym__type_query_member_expression_in_type_annotation] = STATE(3029), + [sym__type_query_call_expression_in_type_annotation] = STATE(3159), + [sym_asserts] = STATE(3818), + [sym_type] = STATE(3279), + [sym_constructor_type] = STATE(3218), + [sym_primary_type] = STATE(3257), + [sym_template_literal_type] = STATE(3211), + [sym_infer_type] = STATE(3218), + [sym_conditional_type] = STATE(3211), + [sym_generic_type] = STATE(3211), + [sym_type_predicate] = STATE(3832), + [sym_type_query] = STATE(3211), + [sym_index_type_query] = STATE(3211), + [sym_lookup_type] = STATE(3211), + [sym_literal_type] = STATE(3211), + [sym__number] = STATE(3219), + [sym_existential_type] = STATE(3211), + [sym_flow_maybe_type] = STATE(3211), + [sym_parenthesized_type] = STATE(3211), + [sym_predefined_type] = STATE(3163), + [sym_object_type] = STATE(3211), + [sym_type_parameters] = STATE(5268), + [sym_array_type] = STATE(3211), + [sym_tuple_type] = STATE(3211), + [sym_readonly_type] = STATE(3218), + [sym_union_type] = STATE(3211), + [sym_intersection_type] = STATE(3211), + [sym_function_type] = STATE(3218), + [sym_identifier] = ACTIONS(2946), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_new] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(2948), + [anon_sym_DASH] = ACTIONS(2948), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(1031), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1595), + [sym_number] = ACTIONS(1597), + [sym_this] = ACTIONS(2950), + [sym_true] = ACTIONS(1601), + [sym_false] = ACTIONS(1601), + [sym_null] = ACTIONS(1601), + [sym_undefined] = ACTIONS(1601), + [anon_sym_readonly] = ACTIONS(1603), + [anon_sym_QMARK] = ACTIONS(1019), + [anon_sym_any] = ACTIONS(1031), + [anon_sym_number] = ACTIONS(1031), + [anon_sym_boolean] = ACTIONS(1031), + [anon_sym_string] = ACTIONS(1031), + [anon_sym_symbol] = ACTIONS(1031), + [anon_sym_object] = ACTIONS(1031), + [anon_sym_abstract] = ACTIONS(1023), + [anon_sym_asserts] = ACTIONS(2952), + [anon_sym_infer] = ACTIONS(1025), + [anon_sym_keyof] = ACTIONS(1027), + [anon_sym_unique] = ACTIONS(1029), + [anon_sym_unknown] = ACTIONS(1031), + [anon_sym_never] = ACTIONS(1031), + [anon_sym_LBRACE_PIPE] = ACTIONS(1033), [sym_html_comment] = ACTIONS(5), }, [919] = { - [sym_identifier] = ACTIONS(2487), - [anon_sym_export] = ACTIONS(2487), - [anon_sym_type] = ACTIONS(2487), - [anon_sym_namespace] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2485), - [anon_sym_typeof] = ACTIONS(2487), - [anon_sym_import] = ACTIONS(2487), - [anon_sym_with] = ACTIONS(2487), - [anon_sym_var] = ACTIONS(2487), - [anon_sym_let] = ACTIONS(2487), - [anon_sym_const] = ACTIONS(2487), - [anon_sym_BANG] = ACTIONS(2485), - [anon_sym_if] = ACTIONS(2487), - [anon_sym_switch] = ACTIONS(2487), - [anon_sym_for] = ACTIONS(2487), - [anon_sym_LPAREN] = ACTIONS(2485), - [anon_sym_SEMI] = ACTIONS(2485), - [anon_sym_await] = ACTIONS(2487), - [anon_sym_while] = ACTIONS(2487), - [anon_sym_do] = ACTIONS(2487), - [anon_sym_try] = ACTIONS(2487), - [anon_sym_break] = ACTIONS(2487), - [anon_sym_continue] = ACTIONS(2487), - [anon_sym_debugger] = ACTIONS(2487), - [anon_sym_return] = ACTIONS(2487), - [anon_sym_throw] = ACTIONS(2487), - [anon_sym_yield] = ACTIONS(2487), - [anon_sym_LBRACK] = ACTIONS(2485), - [sym_glimmer_opening_tag] = ACTIONS(2485), - [anon_sym_DQUOTE] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_class] = ACTIONS(2487), - [anon_sym_async] = ACTIONS(2487), - [anon_sym_function] = ACTIONS(2487), - [anon_sym_new] = ACTIONS(2487), - [anon_sym_using] = ACTIONS(2487), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_SLASH] = ACTIONS(2487), - [anon_sym_LT] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2485), - [anon_sym_void] = ACTIONS(2487), - [anon_sym_delete] = ACTIONS(2487), - [anon_sym_PLUS_PLUS] = ACTIONS(2485), - [anon_sym_DASH_DASH] = ACTIONS(2485), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2485), - [sym_number] = ACTIONS(2485), - [sym_private_property_identifier] = ACTIONS(2485), - [sym_this] = ACTIONS(2487), - [sym_super] = ACTIONS(2487), - [sym_true] = ACTIONS(2487), - [sym_false] = ACTIONS(2487), - [sym_null] = ACTIONS(2487), - [sym_undefined] = ACTIONS(2487), - [anon_sym_AT] = ACTIONS(2485), - [anon_sym_static] = ACTIONS(2487), - [anon_sym_readonly] = ACTIONS(2487), - [anon_sym_get] = ACTIONS(2487), - [anon_sym_set] = ACTIONS(2487), - [anon_sym_declare] = ACTIONS(2487), - [anon_sym_public] = ACTIONS(2487), - [anon_sym_private] = ACTIONS(2487), - [anon_sym_protected] = ACTIONS(2487), - [anon_sym_override] = ACTIONS(2487), - [anon_sym_module] = ACTIONS(2487), - [anon_sym_any] = ACTIONS(2487), - [anon_sym_number] = ACTIONS(2487), - [anon_sym_boolean] = ACTIONS(2487), - [anon_sym_string] = ACTIONS(2487), - [anon_sym_symbol] = ACTIONS(2487), - [anon_sym_object] = ACTIONS(2487), - [anon_sym_abstract] = ACTIONS(2487), - [anon_sym_interface] = ACTIONS(2487), - [anon_sym_enum] = ACTIONS(2487), + [sym_import] = STATE(5153), + [sym_nested_identifier] = STATE(5834), + [sym_string] = STATE(3213), + [sym_formal_parameters] = STATE(5829), + [sym_nested_type_identifier] = STATE(3070), + [sym__type_query_member_expression_in_type_annotation] = STATE(3029), + [sym__type_query_call_expression_in_type_annotation] = STATE(3159), + [sym_asserts] = STATE(3250), + [sym_type] = STATE(3236), + [sym_constructor_type] = STATE(3218), + [sym_primary_type] = STATE(3257), + [sym_template_literal_type] = STATE(3211), + [sym_infer_type] = STATE(3218), + [sym_conditional_type] = STATE(3211), + [sym_generic_type] = STATE(3211), + [sym_type_predicate] = STATE(3250), + [sym_type_query] = STATE(3211), + [sym_index_type_query] = STATE(3211), + [sym_lookup_type] = STATE(3211), + [sym_literal_type] = STATE(3211), + [sym__number] = STATE(3219), + [sym_existential_type] = STATE(3211), + [sym_flow_maybe_type] = STATE(3211), + [sym_parenthesized_type] = STATE(3211), + [sym_predefined_type] = STATE(3163), + [sym_object_type] = STATE(3211), + [sym_type_parameters] = STATE(5268), + [sym_array_type] = STATE(3211), + [sym_tuple_type] = STATE(3211), + [sym_readonly_type] = STATE(3218), + [sym_union_type] = STATE(3211), + [sym_intersection_type] = STATE(3211), + [sym_function_type] = STATE(3218), + [sym_identifier] = ACTIONS(2946), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_new] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(2948), + [anon_sym_DASH] = ACTIONS(2948), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(1031), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1595), + [sym_number] = ACTIONS(1597), + [sym_this] = ACTIONS(2950), + [sym_true] = ACTIONS(1601), + [sym_false] = ACTIONS(1601), + [sym_null] = ACTIONS(1601), + [sym_undefined] = ACTIONS(1601), + [anon_sym_readonly] = ACTIONS(1603), + [anon_sym_QMARK] = ACTIONS(1019), + [anon_sym_any] = ACTIONS(1031), + [anon_sym_number] = ACTIONS(1031), + [anon_sym_boolean] = ACTIONS(1031), + [anon_sym_string] = ACTIONS(1031), + [anon_sym_symbol] = ACTIONS(1031), + [anon_sym_object] = ACTIONS(1031), + [anon_sym_abstract] = ACTIONS(1023), + [anon_sym_asserts] = ACTIONS(2952), + [anon_sym_infer] = ACTIONS(1025), + [anon_sym_keyof] = ACTIONS(1027), + [anon_sym_unique] = ACTIONS(1029), + [anon_sym_unknown] = ACTIONS(1031), + [anon_sym_never] = ACTIONS(1031), + [anon_sym_LBRACE_PIPE] = ACTIONS(1033), [sym_html_comment] = ACTIONS(5), }, [920] = { - [sym_identifier] = ACTIONS(2951), - [anon_sym_export] = ACTIONS(2951), - [anon_sym_type] = ACTIONS(2951), - [anon_sym_namespace] = ACTIONS(2951), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_typeof] = ACTIONS(2951), - [anon_sym_import] = ACTIONS(2951), - [anon_sym_with] = ACTIONS(2951), - [anon_sym_var] = ACTIONS(2951), - [anon_sym_let] = ACTIONS(2951), - [anon_sym_const] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2951), - [anon_sym_switch] = ACTIONS(2951), - [anon_sym_for] = ACTIONS(2951), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_SEMI] = ACTIONS(2953), - [anon_sym_await] = ACTIONS(2951), - [anon_sym_while] = ACTIONS(2951), - [anon_sym_do] = ACTIONS(2951), - [anon_sym_try] = ACTIONS(2951), - [anon_sym_break] = ACTIONS(2951), - [anon_sym_continue] = ACTIONS(2951), - [anon_sym_debugger] = ACTIONS(2951), - [anon_sym_return] = ACTIONS(2951), - [anon_sym_throw] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2953), - [sym_glimmer_opening_tag] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [anon_sym_SQUOTE] = ACTIONS(2953), - [anon_sym_class] = ACTIONS(2951), - [anon_sym_async] = ACTIONS(2951), - [anon_sym_function] = ACTIONS(2951), - [anon_sym_new] = ACTIONS(2951), - [anon_sym_using] = ACTIONS(2951), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_SLASH] = ACTIONS(2951), - [anon_sym_LT] = ACTIONS(2951), - [anon_sym_TILDE] = ACTIONS(2953), - [anon_sym_void] = ACTIONS(2951), - [anon_sym_delete] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2953), - [anon_sym_DASH_DASH] = ACTIONS(2953), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2953), - [sym_number] = ACTIONS(2953), - [sym_private_property_identifier] = ACTIONS(2953), - [sym_this] = ACTIONS(2951), - [sym_super] = ACTIONS(2951), - [sym_true] = ACTIONS(2951), - [sym_false] = ACTIONS(2951), - [sym_null] = ACTIONS(2951), - [sym_undefined] = ACTIONS(2951), - [anon_sym_AT] = ACTIONS(2953), - [anon_sym_static] = ACTIONS(2951), - [anon_sym_readonly] = ACTIONS(2951), - [anon_sym_get] = ACTIONS(2951), - [anon_sym_set] = ACTIONS(2951), - [anon_sym_declare] = ACTIONS(2951), - [anon_sym_public] = ACTIONS(2951), - [anon_sym_private] = ACTIONS(2951), - [anon_sym_protected] = ACTIONS(2951), - [anon_sym_override] = ACTIONS(2951), - [anon_sym_module] = ACTIONS(2951), - [anon_sym_any] = ACTIONS(2951), - [anon_sym_number] = ACTIONS(2951), - [anon_sym_boolean] = ACTIONS(2951), - [anon_sym_string] = ACTIONS(2951), - [anon_sym_symbol] = ACTIONS(2951), - [anon_sym_object] = ACTIONS(2951), - [anon_sym_abstract] = ACTIONS(2951), - [anon_sym_interface] = ACTIONS(2951), - [anon_sym_enum] = ACTIONS(2951), + [sym_identifier] = ACTIONS(2954), + [anon_sym_export] = ACTIONS(2954), + [anon_sym_type] = ACTIONS(2954), + [anon_sym_namespace] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_typeof] = ACTIONS(2954), + [anon_sym_import] = ACTIONS(2954), + [anon_sym_with] = ACTIONS(2954), + [anon_sym_var] = ACTIONS(2954), + [anon_sym_let] = ACTIONS(2954), + [anon_sym_const] = ACTIONS(2954), + [anon_sym_BANG] = ACTIONS(2956), + [anon_sym_if] = ACTIONS(2954), + [anon_sym_switch] = ACTIONS(2954), + [anon_sym_for] = ACTIONS(2954), + [anon_sym_LPAREN] = ACTIONS(2956), + [anon_sym_SEMI] = ACTIONS(2956), + [anon_sym_await] = ACTIONS(2954), + [anon_sym_while] = ACTIONS(2954), + [anon_sym_do] = ACTIONS(2954), + [anon_sym_try] = ACTIONS(2954), + [anon_sym_break] = ACTIONS(2954), + [anon_sym_continue] = ACTIONS(2954), + [anon_sym_debugger] = ACTIONS(2954), + [anon_sym_return] = ACTIONS(2954), + [anon_sym_throw] = ACTIONS(2954), + [anon_sym_yield] = ACTIONS(2954), + [anon_sym_LBRACK] = ACTIONS(2956), + [anon_sym_DQUOTE] = ACTIONS(2956), + [anon_sym_SQUOTE] = ACTIONS(2956), + [anon_sym_class] = ACTIONS(2954), + [anon_sym_async] = ACTIONS(2954), + [anon_sym_function] = ACTIONS(2954), + [anon_sym_new] = ACTIONS(2954), + [anon_sym_using] = ACTIONS(2954), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_SLASH] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2956), + [anon_sym_TILDE] = ACTIONS(2956), + [anon_sym_void] = ACTIONS(2954), + [anon_sym_delete] = ACTIONS(2954), + [anon_sym_PLUS_PLUS] = ACTIONS(2956), + [anon_sym_DASH_DASH] = ACTIONS(2956), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2956), + [sym_number] = ACTIONS(2956), + [sym_private_property_identifier] = ACTIONS(2956), + [sym_this] = ACTIONS(2954), + [sym_super] = ACTIONS(2954), + [sym_true] = ACTIONS(2954), + [sym_false] = ACTIONS(2954), + [sym_null] = ACTIONS(2954), + [sym_undefined] = ACTIONS(2954), + [anon_sym_AT] = ACTIONS(2956), + [anon_sym_static] = ACTIONS(2954), + [anon_sym_readonly] = ACTIONS(2954), + [anon_sym_get] = ACTIONS(2954), + [anon_sym_set] = ACTIONS(2954), + [anon_sym_declare] = ACTIONS(2954), + [anon_sym_public] = ACTIONS(2954), + [anon_sym_private] = ACTIONS(2954), + [anon_sym_protected] = ACTIONS(2954), + [anon_sym_override] = ACTIONS(2954), + [anon_sym_module] = ACTIONS(2954), + [anon_sym_any] = ACTIONS(2954), + [anon_sym_number] = ACTIONS(2954), + [anon_sym_boolean] = ACTIONS(2954), + [anon_sym_string] = ACTIONS(2954), + [anon_sym_symbol] = ACTIONS(2954), + [anon_sym_object] = ACTIONS(2954), + [anon_sym_abstract] = ACTIONS(2954), + [anon_sym_interface] = ACTIONS(2954), + [anon_sym_enum] = ACTIONS(2954), [sym_html_comment] = ACTIONS(5), }, [921] = { - [sym_identifier] = ACTIONS(2479), - [anon_sym_export] = ACTIONS(2479), - [anon_sym_type] = ACTIONS(2479), - [anon_sym_namespace] = ACTIONS(2479), - [anon_sym_LBRACE] = ACTIONS(2477), - [anon_sym_typeof] = ACTIONS(2479), - [anon_sym_import] = ACTIONS(2479), - [anon_sym_with] = ACTIONS(2479), - [anon_sym_var] = ACTIONS(2479), - [anon_sym_let] = ACTIONS(2479), - [anon_sym_const] = ACTIONS(2479), - [anon_sym_BANG] = ACTIONS(2477), - [anon_sym_if] = ACTIONS(2479), - [anon_sym_switch] = ACTIONS(2479), - [anon_sym_for] = ACTIONS(2479), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_SEMI] = ACTIONS(2477), - [anon_sym_await] = ACTIONS(2479), - [anon_sym_while] = ACTIONS(2479), - [anon_sym_do] = ACTIONS(2479), - [anon_sym_try] = ACTIONS(2479), - [anon_sym_break] = ACTIONS(2479), - [anon_sym_continue] = ACTIONS(2479), - [anon_sym_debugger] = ACTIONS(2479), - [anon_sym_return] = ACTIONS(2479), - [anon_sym_throw] = ACTIONS(2479), - [anon_sym_yield] = ACTIONS(2479), - [anon_sym_LBRACK] = ACTIONS(2477), - [sym_glimmer_opening_tag] = ACTIONS(2477), - [anon_sym_DQUOTE] = ACTIONS(2477), - [anon_sym_SQUOTE] = ACTIONS(2477), - [anon_sym_class] = ACTIONS(2479), - [anon_sym_async] = ACTIONS(2479), - [anon_sym_function] = ACTIONS(2479), - [anon_sym_new] = ACTIONS(2479), - [anon_sym_using] = ACTIONS(2479), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_SLASH] = ACTIONS(2479), - [anon_sym_LT] = ACTIONS(2479), - [anon_sym_TILDE] = ACTIONS(2477), - [anon_sym_void] = ACTIONS(2479), - [anon_sym_delete] = ACTIONS(2479), - [anon_sym_PLUS_PLUS] = ACTIONS(2477), - [anon_sym_DASH_DASH] = ACTIONS(2477), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2477), - [sym_number] = ACTIONS(2477), - [sym_private_property_identifier] = ACTIONS(2477), - [sym_this] = ACTIONS(2479), - [sym_super] = ACTIONS(2479), - [sym_true] = ACTIONS(2479), - [sym_false] = ACTIONS(2479), - [sym_null] = ACTIONS(2479), - [sym_undefined] = ACTIONS(2479), - [anon_sym_AT] = ACTIONS(2477), - [anon_sym_static] = ACTIONS(2479), - [anon_sym_readonly] = ACTIONS(2479), - [anon_sym_get] = ACTIONS(2479), - [anon_sym_set] = ACTIONS(2479), - [anon_sym_declare] = ACTIONS(2479), - [anon_sym_public] = ACTIONS(2479), - [anon_sym_private] = ACTIONS(2479), - [anon_sym_protected] = ACTIONS(2479), - [anon_sym_override] = ACTIONS(2479), - [anon_sym_module] = ACTIONS(2479), - [anon_sym_any] = ACTIONS(2479), - [anon_sym_number] = ACTIONS(2479), - [anon_sym_boolean] = ACTIONS(2479), - [anon_sym_string] = ACTIONS(2479), - [anon_sym_symbol] = ACTIONS(2479), - [anon_sym_object] = ACTIONS(2479), - [anon_sym_abstract] = ACTIONS(2479), - [anon_sym_interface] = ACTIONS(2479), - [anon_sym_enum] = ACTIONS(2479), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_asserts] = STATE(5475), + [sym_type] = STATE(3422), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_predicate] = STATE(5225), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(3036), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(2958), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(2960), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_asserts] = ACTIONS(2962), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [922] = { - [sym_identifier] = ACTIONS(2959), - [anon_sym_export] = ACTIONS(2959), - [anon_sym_type] = ACTIONS(2959), - [anon_sym_namespace] = ACTIONS(2959), - [anon_sym_LBRACE] = ACTIONS(2961), - [anon_sym_typeof] = ACTIONS(2959), - [anon_sym_import] = ACTIONS(2959), - [anon_sym_with] = ACTIONS(2959), - [anon_sym_var] = ACTIONS(2959), - [anon_sym_let] = ACTIONS(2959), - [anon_sym_const] = ACTIONS(2959), - [anon_sym_BANG] = ACTIONS(2961), - [anon_sym_if] = ACTIONS(2959), - [anon_sym_switch] = ACTIONS(2959), - [anon_sym_for] = ACTIONS(2959), - [anon_sym_LPAREN] = ACTIONS(2961), - [anon_sym_SEMI] = ACTIONS(2961), - [anon_sym_await] = ACTIONS(2959), - [anon_sym_while] = ACTIONS(2959), - [anon_sym_do] = ACTIONS(2959), - [anon_sym_try] = ACTIONS(2959), - [anon_sym_break] = ACTIONS(2959), - [anon_sym_continue] = ACTIONS(2959), - [anon_sym_debugger] = ACTIONS(2959), - [anon_sym_return] = ACTIONS(2959), - [anon_sym_throw] = ACTIONS(2959), - [anon_sym_yield] = ACTIONS(2959), - [anon_sym_LBRACK] = ACTIONS(2961), - [sym_glimmer_opening_tag] = ACTIONS(2961), - [anon_sym_DQUOTE] = ACTIONS(2961), - [anon_sym_SQUOTE] = ACTIONS(2961), - [anon_sym_class] = ACTIONS(2959), - [anon_sym_async] = ACTIONS(2959), - [anon_sym_function] = ACTIONS(2959), - [anon_sym_new] = ACTIONS(2959), - [anon_sym_using] = ACTIONS(2959), - [anon_sym_PLUS] = ACTIONS(2959), - [anon_sym_DASH] = ACTIONS(2959), - [anon_sym_SLASH] = ACTIONS(2959), - [anon_sym_LT] = ACTIONS(2959), - [anon_sym_TILDE] = ACTIONS(2961), - [anon_sym_void] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2959), - [anon_sym_PLUS_PLUS] = ACTIONS(2961), - [anon_sym_DASH_DASH] = ACTIONS(2961), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2961), - [sym_number] = ACTIONS(2961), - [sym_private_property_identifier] = ACTIONS(2961), - [sym_this] = ACTIONS(2959), - [sym_super] = ACTIONS(2959), - [sym_true] = ACTIONS(2959), - [sym_false] = ACTIONS(2959), - [sym_null] = ACTIONS(2959), - [sym_undefined] = ACTIONS(2959), - [anon_sym_AT] = ACTIONS(2961), - [anon_sym_static] = ACTIONS(2959), - [anon_sym_readonly] = ACTIONS(2959), - [anon_sym_get] = ACTIONS(2959), - [anon_sym_set] = ACTIONS(2959), - [anon_sym_declare] = ACTIONS(2959), - [anon_sym_public] = ACTIONS(2959), - [anon_sym_private] = ACTIONS(2959), - [anon_sym_protected] = ACTIONS(2959), - [anon_sym_override] = ACTIONS(2959), - [anon_sym_module] = ACTIONS(2959), - [anon_sym_any] = ACTIONS(2959), - [anon_sym_number] = ACTIONS(2959), - [anon_sym_boolean] = ACTIONS(2959), - [anon_sym_string] = ACTIONS(2959), - [anon_sym_symbol] = ACTIONS(2959), - [anon_sym_object] = ACTIONS(2959), - [anon_sym_abstract] = ACTIONS(2959), - [anon_sym_interface] = ACTIONS(2959), - [anon_sym_enum] = ACTIONS(2959), + [sym_import] = STATE(4924), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5904), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3376), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_asserts] = STATE(2903), + [sym_type] = STATE(3898), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_predicate] = STATE(2903), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(3725), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5433), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(2964), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(2966), + [anon_sym_typeof] = ACTIONS(2968), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(2970), + [anon_sym_SQUOTE] = ACTIONS(2972), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_AMP] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(2980), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(2982), + [anon_sym_QMARK] = ACTIONS(2984), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(2986), + [anon_sym_asserts] = ACTIONS(2988), + [anon_sym_infer] = ACTIONS(2990), + [anon_sym_keyof] = ACTIONS(2992), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(2994), [sym_html_comment] = ACTIONS(5), }, [923] = { - [sym_identifier] = ACTIONS(2951), - [anon_sym_export] = ACTIONS(2951), - [anon_sym_type] = ACTIONS(2951), - [anon_sym_namespace] = ACTIONS(2951), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_typeof] = ACTIONS(2951), - [anon_sym_import] = ACTIONS(2951), - [anon_sym_with] = ACTIONS(2951), - [anon_sym_var] = ACTIONS(2951), - [anon_sym_let] = ACTIONS(2951), - [anon_sym_const] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2951), - [anon_sym_switch] = ACTIONS(2951), - [anon_sym_for] = ACTIONS(2951), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_SEMI] = ACTIONS(2953), - [anon_sym_await] = ACTIONS(2951), - [anon_sym_while] = ACTIONS(2951), - [anon_sym_do] = ACTIONS(2951), - [anon_sym_try] = ACTIONS(2951), - [anon_sym_break] = ACTIONS(2951), - [anon_sym_continue] = ACTIONS(2951), - [anon_sym_debugger] = ACTIONS(2951), - [anon_sym_return] = ACTIONS(2951), - [anon_sym_throw] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2953), - [sym_glimmer_opening_tag] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [anon_sym_SQUOTE] = ACTIONS(2953), - [anon_sym_class] = ACTIONS(2951), - [anon_sym_async] = ACTIONS(2951), - [anon_sym_function] = ACTIONS(2951), - [anon_sym_new] = ACTIONS(2951), - [anon_sym_using] = ACTIONS(2951), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_SLASH] = ACTIONS(2951), - [anon_sym_LT] = ACTIONS(2951), - [anon_sym_TILDE] = ACTIONS(2953), - [anon_sym_void] = ACTIONS(2951), - [anon_sym_delete] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2953), - [anon_sym_DASH_DASH] = ACTIONS(2953), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2953), - [sym_number] = ACTIONS(2953), - [sym_private_property_identifier] = ACTIONS(2953), - [sym_this] = ACTIONS(2951), - [sym_super] = ACTIONS(2951), - [sym_true] = ACTIONS(2951), - [sym_false] = ACTIONS(2951), - [sym_null] = ACTIONS(2951), - [sym_undefined] = ACTIONS(2951), - [anon_sym_AT] = ACTIONS(2953), - [anon_sym_static] = ACTIONS(2951), - [anon_sym_readonly] = ACTIONS(2951), - [anon_sym_get] = ACTIONS(2951), - [anon_sym_set] = ACTIONS(2951), - [anon_sym_declare] = ACTIONS(2951), - [anon_sym_public] = ACTIONS(2951), - [anon_sym_private] = ACTIONS(2951), - [anon_sym_protected] = ACTIONS(2951), - [anon_sym_override] = ACTIONS(2951), - [anon_sym_module] = ACTIONS(2951), - [anon_sym_any] = ACTIONS(2951), - [anon_sym_number] = ACTIONS(2951), - [anon_sym_boolean] = ACTIONS(2951), - [anon_sym_string] = ACTIONS(2951), - [anon_sym_symbol] = ACTIONS(2951), - [anon_sym_object] = ACTIONS(2951), - [anon_sym_abstract] = ACTIONS(2951), - [anon_sym_interface] = ACTIONS(2951), - [anon_sym_enum] = ACTIONS(2951), + [sym_import] = STATE(4924), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5904), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3376), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_asserts] = STATE(2988), + [sym_type] = STATE(3829), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_predicate] = STATE(2988), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(3725), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5433), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(2964), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(2966), + [anon_sym_typeof] = ACTIONS(2968), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(2970), + [anon_sym_SQUOTE] = ACTIONS(2972), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_AMP] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(2980), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(2982), + [anon_sym_QMARK] = ACTIONS(2984), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(2986), + [anon_sym_asserts] = ACTIONS(2988), + [anon_sym_infer] = ACTIONS(2990), + [anon_sym_keyof] = ACTIONS(2992), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(2994), [sym_html_comment] = ACTIONS(5), }, [924] = { - [sym_identifier] = ACTIONS(2963), - [anon_sym_export] = ACTIONS(2963), - [anon_sym_type] = ACTIONS(2963), - [anon_sym_namespace] = ACTIONS(2963), - [anon_sym_LBRACE] = ACTIONS(2965), - [anon_sym_typeof] = ACTIONS(2963), - [anon_sym_import] = ACTIONS(2963), - [anon_sym_with] = ACTIONS(2963), - [anon_sym_var] = ACTIONS(2963), - [anon_sym_let] = ACTIONS(2963), - [anon_sym_const] = ACTIONS(2963), - [anon_sym_BANG] = ACTIONS(2965), - [anon_sym_if] = ACTIONS(2963), - [anon_sym_switch] = ACTIONS(2963), - [anon_sym_for] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2965), - [anon_sym_SEMI] = ACTIONS(2965), - [anon_sym_await] = ACTIONS(2963), - [anon_sym_while] = ACTIONS(2963), - [anon_sym_do] = ACTIONS(2963), - [anon_sym_try] = ACTIONS(2963), - [anon_sym_break] = ACTIONS(2963), - [anon_sym_continue] = ACTIONS(2963), - [anon_sym_debugger] = ACTIONS(2963), - [anon_sym_return] = ACTIONS(2963), - [anon_sym_throw] = ACTIONS(2963), - [anon_sym_yield] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2965), - [sym_glimmer_opening_tag] = ACTIONS(2965), - [anon_sym_DQUOTE] = ACTIONS(2965), - [anon_sym_SQUOTE] = ACTIONS(2965), - [anon_sym_class] = ACTIONS(2963), - [anon_sym_async] = ACTIONS(2963), - [anon_sym_function] = ACTIONS(2963), - [anon_sym_new] = ACTIONS(2963), - [anon_sym_using] = ACTIONS(2963), - [anon_sym_PLUS] = ACTIONS(2963), - [anon_sym_DASH] = ACTIONS(2963), - [anon_sym_SLASH] = ACTIONS(2963), - [anon_sym_LT] = ACTIONS(2963), - [anon_sym_TILDE] = ACTIONS(2965), - [anon_sym_void] = ACTIONS(2963), - [anon_sym_delete] = ACTIONS(2963), - [anon_sym_PLUS_PLUS] = ACTIONS(2965), - [anon_sym_DASH_DASH] = ACTIONS(2965), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2965), - [sym_number] = ACTIONS(2965), - [sym_private_property_identifier] = ACTIONS(2965), - [sym_this] = ACTIONS(2963), - [sym_super] = ACTIONS(2963), - [sym_true] = ACTIONS(2963), - [sym_false] = ACTIONS(2963), - [sym_null] = ACTIONS(2963), - [sym_undefined] = ACTIONS(2963), - [anon_sym_AT] = ACTIONS(2965), - [anon_sym_static] = ACTIONS(2963), - [anon_sym_readonly] = ACTIONS(2963), - [anon_sym_get] = ACTIONS(2963), - [anon_sym_set] = ACTIONS(2963), - [anon_sym_declare] = ACTIONS(2963), - [anon_sym_public] = ACTIONS(2963), - [anon_sym_private] = ACTIONS(2963), - [anon_sym_protected] = ACTIONS(2963), - [anon_sym_override] = ACTIONS(2963), - [anon_sym_module] = ACTIONS(2963), - [anon_sym_any] = ACTIONS(2963), - [anon_sym_number] = ACTIONS(2963), - [anon_sym_boolean] = ACTIONS(2963), - [anon_sym_string] = ACTIONS(2963), - [anon_sym_symbol] = ACTIONS(2963), - [anon_sym_object] = ACTIONS(2963), - [anon_sym_abstract] = ACTIONS(2963), - [anon_sym_interface] = ACTIONS(2963), - [anon_sym_enum] = ACTIONS(2963), + [sym_identifier] = ACTIONS(2942), + [anon_sym_export] = ACTIONS(2942), + [anon_sym_type] = ACTIONS(2942), + [anon_sym_namespace] = ACTIONS(2942), + [anon_sym_LBRACE] = ACTIONS(2944), + [anon_sym_typeof] = ACTIONS(2942), + [anon_sym_import] = ACTIONS(2942), + [anon_sym_with] = ACTIONS(2942), + [anon_sym_var] = ACTIONS(2942), + [anon_sym_let] = ACTIONS(2942), + [anon_sym_const] = ACTIONS(2942), + [anon_sym_BANG] = ACTIONS(2944), + [anon_sym_if] = ACTIONS(2942), + [anon_sym_switch] = ACTIONS(2942), + [anon_sym_for] = ACTIONS(2942), + [anon_sym_LPAREN] = ACTIONS(2944), + [anon_sym_SEMI] = ACTIONS(2944), + [anon_sym_await] = ACTIONS(2942), + [anon_sym_while] = ACTIONS(2942), + [anon_sym_do] = ACTIONS(2942), + [anon_sym_try] = ACTIONS(2942), + [anon_sym_break] = ACTIONS(2942), + [anon_sym_continue] = ACTIONS(2942), + [anon_sym_debugger] = ACTIONS(2942), + [anon_sym_return] = ACTIONS(2942), + [anon_sym_throw] = ACTIONS(2942), + [anon_sym_yield] = ACTIONS(2942), + [anon_sym_LBRACK] = ACTIONS(2944), + [anon_sym_DQUOTE] = ACTIONS(2944), + [anon_sym_SQUOTE] = ACTIONS(2944), + [anon_sym_class] = ACTIONS(2942), + [anon_sym_async] = ACTIONS(2942), + [anon_sym_function] = ACTIONS(2942), + [anon_sym_new] = ACTIONS(2942), + [anon_sym_using] = ACTIONS(2942), + [anon_sym_PLUS] = ACTIONS(2942), + [anon_sym_DASH] = ACTIONS(2942), + [anon_sym_SLASH] = ACTIONS(2942), + [anon_sym_LT] = ACTIONS(2944), + [anon_sym_TILDE] = ACTIONS(2944), + [anon_sym_void] = ACTIONS(2942), + [anon_sym_delete] = ACTIONS(2942), + [anon_sym_PLUS_PLUS] = ACTIONS(2944), + [anon_sym_DASH_DASH] = ACTIONS(2944), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2944), + [sym_number] = ACTIONS(2944), + [sym_private_property_identifier] = ACTIONS(2944), + [sym_this] = ACTIONS(2942), + [sym_super] = ACTIONS(2942), + [sym_true] = ACTIONS(2942), + [sym_false] = ACTIONS(2942), + [sym_null] = ACTIONS(2942), + [sym_undefined] = ACTIONS(2942), + [anon_sym_AT] = ACTIONS(2944), + [anon_sym_static] = ACTIONS(2942), + [anon_sym_readonly] = ACTIONS(2942), + [anon_sym_get] = ACTIONS(2942), + [anon_sym_set] = ACTIONS(2942), + [anon_sym_declare] = ACTIONS(2942), + [anon_sym_public] = ACTIONS(2942), + [anon_sym_private] = ACTIONS(2942), + [anon_sym_protected] = ACTIONS(2942), + [anon_sym_override] = ACTIONS(2942), + [anon_sym_module] = ACTIONS(2942), + [anon_sym_any] = ACTIONS(2942), + [anon_sym_number] = ACTIONS(2942), + [anon_sym_boolean] = ACTIONS(2942), + [anon_sym_string] = ACTIONS(2942), + [anon_sym_symbol] = ACTIONS(2942), + [anon_sym_object] = ACTIONS(2942), + [anon_sym_abstract] = ACTIONS(2942), + [anon_sym_interface] = ACTIONS(2942), + [anon_sym_enum] = ACTIONS(2942), [sym_html_comment] = ACTIONS(5), }, [925] = { - [sym_identifier] = ACTIONS(2951), - [anon_sym_export] = ACTIONS(2951), - [anon_sym_type] = ACTIONS(2951), - [anon_sym_namespace] = ACTIONS(2951), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_typeof] = ACTIONS(2951), - [anon_sym_import] = ACTIONS(2951), - [anon_sym_with] = ACTIONS(2951), - [anon_sym_var] = ACTIONS(2951), - [anon_sym_let] = ACTIONS(2951), - [anon_sym_const] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2951), - [anon_sym_switch] = ACTIONS(2951), - [anon_sym_for] = ACTIONS(2951), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_SEMI] = ACTIONS(2953), - [anon_sym_await] = ACTIONS(2951), - [anon_sym_while] = ACTIONS(2951), - [anon_sym_do] = ACTIONS(2951), - [anon_sym_try] = ACTIONS(2951), - [anon_sym_break] = ACTIONS(2951), - [anon_sym_continue] = ACTIONS(2951), - [anon_sym_debugger] = ACTIONS(2951), - [anon_sym_return] = ACTIONS(2951), - [anon_sym_throw] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2953), - [sym_glimmer_opening_tag] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [anon_sym_SQUOTE] = ACTIONS(2953), - [anon_sym_class] = ACTIONS(2951), - [anon_sym_async] = ACTIONS(2951), - [anon_sym_function] = ACTIONS(2951), - [anon_sym_new] = ACTIONS(2951), - [anon_sym_using] = ACTIONS(2951), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_SLASH] = ACTIONS(2951), - [anon_sym_LT] = ACTIONS(2951), - [anon_sym_TILDE] = ACTIONS(2953), - [anon_sym_void] = ACTIONS(2951), - [anon_sym_delete] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2953), - [anon_sym_DASH_DASH] = ACTIONS(2953), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2953), - [sym_number] = ACTIONS(2953), - [sym_private_property_identifier] = ACTIONS(2953), - [sym_this] = ACTIONS(2951), - [sym_super] = ACTIONS(2951), - [sym_true] = ACTIONS(2951), - [sym_false] = ACTIONS(2951), - [sym_null] = ACTIONS(2951), - [sym_undefined] = ACTIONS(2951), - [anon_sym_AT] = ACTIONS(2953), - [anon_sym_static] = ACTIONS(2951), - [anon_sym_readonly] = ACTIONS(2951), - [anon_sym_get] = ACTIONS(2951), - [anon_sym_set] = ACTIONS(2951), - [anon_sym_declare] = ACTIONS(2951), - [anon_sym_public] = ACTIONS(2951), - [anon_sym_private] = ACTIONS(2951), - [anon_sym_protected] = ACTIONS(2951), - [anon_sym_override] = ACTIONS(2951), - [anon_sym_module] = ACTIONS(2951), - [anon_sym_any] = ACTIONS(2951), - [anon_sym_number] = ACTIONS(2951), - [anon_sym_boolean] = ACTIONS(2951), - [anon_sym_string] = ACTIONS(2951), - [anon_sym_symbol] = ACTIONS(2951), - [anon_sym_object] = ACTIONS(2951), - [anon_sym_abstract] = ACTIONS(2951), - [anon_sym_interface] = ACTIONS(2951), - [anon_sym_enum] = ACTIONS(2951), + [sym_identifier] = ACTIONS(2942), + [anon_sym_export] = ACTIONS(2942), + [anon_sym_type] = ACTIONS(2942), + [anon_sym_namespace] = ACTIONS(2942), + [anon_sym_LBRACE] = ACTIONS(2944), + [anon_sym_typeof] = ACTIONS(2942), + [anon_sym_import] = ACTIONS(2942), + [anon_sym_with] = ACTIONS(2942), + [anon_sym_var] = ACTIONS(2942), + [anon_sym_let] = ACTIONS(2942), + [anon_sym_const] = ACTIONS(2942), + [anon_sym_BANG] = ACTIONS(2944), + [anon_sym_if] = ACTIONS(2942), + [anon_sym_switch] = ACTIONS(2942), + [anon_sym_for] = ACTIONS(2942), + [anon_sym_LPAREN] = ACTIONS(2944), + [anon_sym_SEMI] = ACTIONS(2944), + [anon_sym_await] = ACTIONS(2942), + [anon_sym_while] = ACTIONS(2942), + [anon_sym_do] = ACTIONS(2942), + [anon_sym_try] = ACTIONS(2942), + [anon_sym_break] = ACTIONS(2942), + [anon_sym_continue] = ACTIONS(2942), + [anon_sym_debugger] = ACTIONS(2942), + [anon_sym_return] = ACTIONS(2942), + [anon_sym_throw] = ACTIONS(2942), + [anon_sym_yield] = ACTIONS(2942), + [anon_sym_LBRACK] = ACTIONS(2944), + [anon_sym_DQUOTE] = ACTIONS(2944), + [anon_sym_SQUOTE] = ACTIONS(2944), + [anon_sym_class] = ACTIONS(2942), + [anon_sym_async] = ACTIONS(2942), + [anon_sym_function] = ACTIONS(2942), + [anon_sym_new] = ACTIONS(2942), + [anon_sym_using] = ACTIONS(2942), + [anon_sym_PLUS] = ACTIONS(2942), + [anon_sym_DASH] = ACTIONS(2942), + [anon_sym_SLASH] = ACTIONS(2942), + [anon_sym_LT] = ACTIONS(2944), + [anon_sym_TILDE] = ACTIONS(2944), + [anon_sym_void] = ACTIONS(2942), + [anon_sym_delete] = ACTIONS(2942), + [anon_sym_PLUS_PLUS] = ACTIONS(2944), + [anon_sym_DASH_DASH] = ACTIONS(2944), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2944), + [sym_number] = ACTIONS(2944), + [sym_private_property_identifier] = ACTIONS(2944), + [sym_this] = ACTIONS(2942), + [sym_super] = ACTIONS(2942), + [sym_true] = ACTIONS(2942), + [sym_false] = ACTIONS(2942), + [sym_null] = ACTIONS(2942), + [sym_undefined] = ACTIONS(2942), + [anon_sym_AT] = ACTIONS(2944), + [anon_sym_static] = ACTIONS(2942), + [anon_sym_readonly] = ACTIONS(2942), + [anon_sym_get] = ACTIONS(2942), + [anon_sym_set] = ACTIONS(2942), + [anon_sym_declare] = ACTIONS(2942), + [anon_sym_public] = ACTIONS(2942), + [anon_sym_private] = ACTIONS(2942), + [anon_sym_protected] = ACTIONS(2942), + [anon_sym_override] = ACTIONS(2942), + [anon_sym_module] = ACTIONS(2942), + [anon_sym_any] = ACTIONS(2942), + [anon_sym_number] = ACTIONS(2942), + [anon_sym_boolean] = ACTIONS(2942), + [anon_sym_string] = ACTIONS(2942), + [anon_sym_symbol] = ACTIONS(2942), + [anon_sym_object] = ACTIONS(2942), + [anon_sym_abstract] = ACTIONS(2942), + [anon_sym_interface] = ACTIONS(2942), + [anon_sym_enum] = ACTIONS(2942), [sym_html_comment] = ACTIONS(5), }, [926] = { - [sym_identifier] = ACTIONS(2951), - [anon_sym_export] = ACTIONS(2951), - [anon_sym_type] = ACTIONS(2951), - [anon_sym_namespace] = ACTIONS(2951), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_typeof] = ACTIONS(2951), - [anon_sym_import] = ACTIONS(2951), - [anon_sym_with] = ACTIONS(2951), - [anon_sym_var] = ACTIONS(2951), - [anon_sym_let] = ACTIONS(2951), - [anon_sym_const] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2951), - [anon_sym_switch] = ACTIONS(2951), - [anon_sym_for] = ACTIONS(2951), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_SEMI] = ACTIONS(2953), - [anon_sym_await] = ACTIONS(2951), - [anon_sym_while] = ACTIONS(2951), - [anon_sym_do] = ACTIONS(2951), - [anon_sym_try] = ACTIONS(2951), - [anon_sym_break] = ACTIONS(2951), - [anon_sym_continue] = ACTIONS(2951), - [anon_sym_debugger] = ACTIONS(2951), - [anon_sym_return] = ACTIONS(2951), - [anon_sym_throw] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2953), - [sym_glimmer_opening_tag] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [anon_sym_SQUOTE] = ACTIONS(2953), - [anon_sym_class] = ACTIONS(2951), - [anon_sym_async] = ACTIONS(2951), - [anon_sym_function] = ACTIONS(2951), - [anon_sym_new] = ACTIONS(2951), - [anon_sym_using] = ACTIONS(2951), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_SLASH] = ACTIONS(2951), - [anon_sym_LT] = ACTIONS(2951), - [anon_sym_TILDE] = ACTIONS(2953), - [anon_sym_void] = ACTIONS(2951), - [anon_sym_delete] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2953), - [anon_sym_DASH_DASH] = ACTIONS(2953), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2953), - [sym_number] = ACTIONS(2953), - [sym_private_property_identifier] = ACTIONS(2953), - [sym_this] = ACTIONS(2951), - [sym_super] = ACTIONS(2951), - [sym_true] = ACTIONS(2951), - [sym_false] = ACTIONS(2951), - [sym_null] = ACTIONS(2951), - [sym_undefined] = ACTIONS(2951), - [anon_sym_AT] = ACTIONS(2953), - [anon_sym_static] = ACTIONS(2951), - [anon_sym_readonly] = ACTIONS(2951), - [anon_sym_get] = ACTIONS(2951), - [anon_sym_set] = ACTIONS(2951), - [anon_sym_declare] = ACTIONS(2951), - [anon_sym_public] = ACTIONS(2951), - [anon_sym_private] = ACTIONS(2951), - [anon_sym_protected] = ACTIONS(2951), - [anon_sym_override] = ACTIONS(2951), - [anon_sym_module] = ACTIONS(2951), - [anon_sym_any] = ACTIONS(2951), - [anon_sym_number] = ACTIONS(2951), - [anon_sym_boolean] = ACTIONS(2951), - [anon_sym_string] = ACTIONS(2951), - [anon_sym_symbol] = ACTIONS(2951), - [anon_sym_object] = ACTIONS(2951), - [anon_sym_abstract] = ACTIONS(2951), - [anon_sym_interface] = ACTIONS(2951), - [anon_sym_enum] = ACTIONS(2951), + [sym_identifier] = ACTIONS(2942), + [anon_sym_export] = ACTIONS(2942), + [anon_sym_type] = ACTIONS(2942), + [anon_sym_namespace] = ACTIONS(2942), + [anon_sym_LBRACE] = ACTIONS(2944), + [anon_sym_typeof] = ACTIONS(2942), + [anon_sym_import] = ACTIONS(2942), + [anon_sym_with] = ACTIONS(2942), + [anon_sym_var] = ACTIONS(2942), + [anon_sym_let] = ACTIONS(2942), + [anon_sym_const] = ACTIONS(2942), + [anon_sym_BANG] = ACTIONS(2944), + [anon_sym_if] = ACTIONS(2942), + [anon_sym_switch] = ACTIONS(2942), + [anon_sym_for] = ACTIONS(2942), + [anon_sym_LPAREN] = ACTIONS(2944), + [anon_sym_SEMI] = ACTIONS(2944), + [anon_sym_await] = ACTIONS(2942), + [anon_sym_while] = ACTIONS(2942), + [anon_sym_do] = ACTIONS(2942), + [anon_sym_try] = ACTIONS(2942), + [anon_sym_break] = ACTIONS(2942), + [anon_sym_continue] = ACTIONS(2942), + [anon_sym_debugger] = ACTIONS(2942), + [anon_sym_return] = ACTIONS(2942), + [anon_sym_throw] = ACTIONS(2942), + [anon_sym_yield] = ACTIONS(2942), + [anon_sym_LBRACK] = ACTIONS(2944), + [anon_sym_DQUOTE] = ACTIONS(2944), + [anon_sym_SQUOTE] = ACTIONS(2944), + [anon_sym_class] = ACTIONS(2942), + [anon_sym_async] = ACTIONS(2942), + [anon_sym_function] = ACTIONS(2942), + [anon_sym_new] = ACTIONS(2942), + [anon_sym_using] = ACTIONS(2942), + [anon_sym_PLUS] = ACTIONS(2942), + [anon_sym_DASH] = ACTIONS(2942), + [anon_sym_SLASH] = ACTIONS(2942), + [anon_sym_LT] = ACTIONS(2944), + [anon_sym_TILDE] = ACTIONS(2944), + [anon_sym_void] = ACTIONS(2942), + [anon_sym_delete] = ACTIONS(2942), + [anon_sym_PLUS_PLUS] = ACTIONS(2944), + [anon_sym_DASH_DASH] = ACTIONS(2944), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2944), + [sym_number] = ACTIONS(2944), + [sym_private_property_identifier] = ACTIONS(2944), + [sym_this] = ACTIONS(2942), + [sym_super] = ACTIONS(2942), + [sym_true] = ACTIONS(2942), + [sym_false] = ACTIONS(2942), + [sym_null] = ACTIONS(2942), + [sym_undefined] = ACTIONS(2942), + [anon_sym_AT] = ACTIONS(2944), + [anon_sym_static] = ACTIONS(2942), + [anon_sym_readonly] = ACTIONS(2942), + [anon_sym_get] = ACTIONS(2942), + [anon_sym_set] = ACTIONS(2942), + [anon_sym_declare] = ACTIONS(2942), + [anon_sym_public] = ACTIONS(2942), + [anon_sym_private] = ACTIONS(2942), + [anon_sym_protected] = ACTIONS(2942), + [anon_sym_override] = ACTIONS(2942), + [anon_sym_module] = ACTIONS(2942), + [anon_sym_any] = ACTIONS(2942), + [anon_sym_number] = ACTIONS(2942), + [anon_sym_boolean] = ACTIONS(2942), + [anon_sym_string] = ACTIONS(2942), + [anon_sym_symbol] = ACTIONS(2942), + [anon_sym_object] = ACTIONS(2942), + [anon_sym_abstract] = ACTIONS(2942), + [anon_sym_interface] = ACTIONS(2942), + [anon_sym_enum] = ACTIONS(2942), [sym_html_comment] = ACTIONS(5), }, [927] = { - [sym_identifier] = ACTIONS(2951), - [anon_sym_export] = ACTIONS(2951), - [anon_sym_type] = ACTIONS(2951), - [anon_sym_namespace] = ACTIONS(2951), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_typeof] = ACTIONS(2951), - [anon_sym_import] = ACTIONS(2951), - [anon_sym_with] = ACTIONS(2951), - [anon_sym_var] = ACTIONS(2951), - [anon_sym_let] = ACTIONS(2951), - [anon_sym_const] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2951), - [anon_sym_switch] = ACTIONS(2951), - [anon_sym_for] = ACTIONS(2951), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_SEMI] = ACTIONS(2953), - [anon_sym_await] = ACTIONS(2951), - [anon_sym_while] = ACTIONS(2951), - [anon_sym_do] = ACTIONS(2951), - [anon_sym_try] = ACTIONS(2951), - [anon_sym_break] = ACTIONS(2951), - [anon_sym_continue] = ACTIONS(2951), - [anon_sym_debugger] = ACTIONS(2951), - [anon_sym_return] = ACTIONS(2951), - [anon_sym_throw] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2953), - [sym_glimmer_opening_tag] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [anon_sym_SQUOTE] = ACTIONS(2953), - [anon_sym_class] = ACTIONS(2951), - [anon_sym_async] = ACTIONS(2951), - [anon_sym_function] = ACTIONS(2951), - [anon_sym_new] = ACTIONS(2951), - [anon_sym_using] = ACTIONS(2951), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_SLASH] = ACTIONS(2951), - [anon_sym_LT] = ACTIONS(2951), - [anon_sym_TILDE] = ACTIONS(2953), - [anon_sym_void] = ACTIONS(2951), - [anon_sym_delete] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2953), - [anon_sym_DASH_DASH] = ACTIONS(2953), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2953), - [sym_number] = ACTIONS(2953), - [sym_private_property_identifier] = ACTIONS(2953), - [sym_this] = ACTIONS(2951), - [sym_super] = ACTIONS(2951), - [sym_true] = ACTIONS(2951), - [sym_false] = ACTIONS(2951), - [sym_null] = ACTIONS(2951), - [sym_undefined] = ACTIONS(2951), - [anon_sym_AT] = ACTIONS(2953), - [anon_sym_static] = ACTIONS(2951), - [anon_sym_readonly] = ACTIONS(2951), - [anon_sym_get] = ACTIONS(2951), - [anon_sym_set] = ACTIONS(2951), - [anon_sym_declare] = ACTIONS(2951), - [anon_sym_public] = ACTIONS(2951), - [anon_sym_private] = ACTIONS(2951), - [anon_sym_protected] = ACTIONS(2951), - [anon_sym_override] = ACTIONS(2951), - [anon_sym_module] = ACTIONS(2951), - [anon_sym_any] = ACTIONS(2951), - [anon_sym_number] = ACTIONS(2951), - [anon_sym_boolean] = ACTIONS(2951), - [anon_sym_string] = ACTIONS(2951), - [anon_sym_symbol] = ACTIONS(2951), - [anon_sym_object] = ACTIONS(2951), - [anon_sym_abstract] = ACTIONS(2951), - [anon_sym_interface] = ACTIONS(2951), - [anon_sym_enum] = ACTIONS(2951), + [sym_import] = STATE(4648), + [sym_nested_identifier] = STATE(5899), + [sym_string] = STATE(1864), + [sym_formal_parameters] = STATE(5723), + [sym_nested_type_identifier] = STATE(1843), + [sym__type_query_member_expression_in_type_annotation] = STATE(1844), + [sym__type_query_call_expression_in_type_annotation] = STATE(1866), + [sym_asserts] = STATE(1915), + [sym_type] = STATE(1916), + [sym_constructor_type] = STATE(1867), + [sym_primary_type] = STATE(1868), + [sym_template_literal_type] = STATE(1863), + [sym_infer_type] = STATE(1867), + [sym_conditional_type] = STATE(1863), + [sym_generic_type] = STATE(1863), + [sym_type_predicate] = STATE(1915), + [sym_type_query] = STATE(1863), + [sym_index_type_query] = STATE(1863), + [sym_lookup_type] = STATE(1863), + [sym_literal_type] = STATE(1863), + [sym__number] = STATE(1869), + [sym_existential_type] = STATE(1863), + [sym_flow_maybe_type] = STATE(1863), + [sym_parenthesized_type] = STATE(1863), + [sym_predefined_type] = STATE(1840), + [sym_object_type] = STATE(1863), + [sym_type_parameters] = STATE(5380), + [sym_array_type] = STATE(1863), + [sym_tuple_type] = STATE(1863), + [sym_readonly_type] = STATE(1867), + [sym_union_type] = STATE(1863), + [sym_intersection_type] = STATE(1863), + [sym_function_type] = STATE(1867), + [sym_identifier] = ACTIONS(2996), + [anon_sym_STAR] = ACTIONS(2998), + [anon_sym_LBRACE] = ACTIONS(3000), + [anon_sym_typeof] = ACTIONS(3002), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3004), + [anon_sym_LPAREN] = ACTIONS(3006), + [anon_sym_LBRACK] = ACTIONS(3008), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_PIPE] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3016), + [anon_sym_DASH] = ACTIONS(3016), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(3018), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3020), + [sym_number] = ACTIONS(3022), + [sym_this] = ACTIONS(3024), + [sym_true] = ACTIONS(3026), + [sym_false] = ACTIONS(3026), + [sym_null] = ACTIONS(3026), + [sym_undefined] = ACTIONS(3026), + [anon_sym_readonly] = ACTIONS(3028), + [anon_sym_QMARK] = ACTIONS(3030), + [anon_sym_any] = ACTIONS(3018), + [anon_sym_number] = ACTIONS(3018), + [anon_sym_boolean] = ACTIONS(3018), + [anon_sym_string] = ACTIONS(3018), + [anon_sym_symbol] = ACTIONS(3018), + [anon_sym_object] = ACTIONS(3018), + [anon_sym_abstract] = ACTIONS(3032), + [anon_sym_asserts] = ACTIONS(3034), + [anon_sym_infer] = ACTIONS(3036), + [anon_sym_keyof] = ACTIONS(3038), + [anon_sym_unique] = ACTIONS(3040), + [anon_sym_unknown] = ACTIONS(3018), + [anon_sym_never] = ACTIONS(3018), + [anon_sym_LBRACE_PIPE] = ACTIONS(3042), [sym_html_comment] = ACTIONS(5), }, [928] = { - [sym_identifier] = ACTIONS(2951), - [anon_sym_export] = ACTIONS(2951), - [anon_sym_type] = ACTIONS(2951), - [anon_sym_namespace] = ACTIONS(2951), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_typeof] = ACTIONS(2951), - [anon_sym_import] = ACTIONS(2951), - [anon_sym_with] = ACTIONS(2951), - [anon_sym_var] = ACTIONS(2951), - [anon_sym_let] = ACTIONS(2951), - [anon_sym_const] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2951), - [anon_sym_switch] = ACTIONS(2951), - [anon_sym_for] = ACTIONS(2951), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_SEMI] = ACTIONS(2953), - [anon_sym_await] = ACTIONS(2951), - [anon_sym_while] = ACTIONS(2951), - [anon_sym_do] = ACTIONS(2951), - [anon_sym_try] = ACTIONS(2951), - [anon_sym_break] = ACTIONS(2951), - [anon_sym_continue] = ACTIONS(2951), - [anon_sym_debugger] = ACTIONS(2951), - [anon_sym_return] = ACTIONS(2951), - [anon_sym_throw] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2953), - [sym_glimmer_opening_tag] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [anon_sym_SQUOTE] = ACTIONS(2953), - [anon_sym_class] = ACTIONS(2951), - [anon_sym_async] = ACTIONS(2951), - [anon_sym_function] = ACTIONS(2951), - [anon_sym_new] = ACTIONS(2951), - [anon_sym_using] = ACTIONS(2951), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_SLASH] = ACTIONS(2951), - [anon_sym_LT] = ACTIONS(2951), - [anon_sym_TILDE] = ACTIONS(2953), - [anon_sym_void] = ACTIONS(2951), - [anon_sym_delete] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2953), - [anon_sym_DASH_DASH] = ACTIONS(2953), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2953), - [sym_number] = ACTIONS(2953), - [sym_private_property_identifier] = ACTIONS(2953), - [sym_this] = ACTIONS(2951), - [sym_super] = ACTIONS(2951), - [sym_true] = ACTIONS(2951), - [sym_false] = ACTIONS(2951), - [sym_null] = ACTIONS(2951), - [sym_undefined] = ACTIONS(2951), - [anon_sym_AT] = ACTIONS(2953), - [anon_sym_static] = ACTIONS(2951), - [anon_sym_readonly] = ACTIONS(2951), - [anon_sym_get] = ACTIONS(2951), - [anon_sym_set] = ACTIONS(2951), - [anon_sym_declare] = ACTIONS(2951), - [anon_sym_public] = ACTIONS(2951), - [anon_sym_private] = ACTIONS(2951), - [anon_sym_protected] = ACTIONS(2951), - [anon_sym_override] = ACTIONS(2951), - [anon_sym_module] = ACTIONS(2951), - [anon_sym_any] = ACTIONS(2951), - [anon_sym_number] = ACTIONS(2951), - [anon_sym_boolean] = ACTIONS(2951), - [anon_sym_string] = ACTIONS(2951), - [anon_sym_symbol] = ACTIONS(2951), - [anon_sym_object] = ACTIONS(2951), - [anon_sym_abstract] = ACTIONS(2951), - [anon_sym_interface] = ACTIONS(2951), - [anon_sym_enum] = ACTIONS(2951), + [sym_identifier] = ACTIONS(2942), + [anon_sym_export] = ACTIONS(2942), + [anon_sym_type] = ACTIONS(2942), + [anon_sym_namespace] = ACTIONS(2942), + [anon_sym_LBRACE] = ACTIONS(2944), + [anon_sym_typeof] = ACTIONS(2942), + [anon_sym_import] = ACTIONS(2942), + [anon_sym_with] = ACTIONS(2942), + [anon_sym_var] = ACTIONS(2942), + [anon_sym_let] = ACTIONS(2942), + [anon_sym_const] = ACTIONS(2942), + [anon_sym_BANG] = ACTIONS(2944), + [anon_sym_if] = ACTIONS(2942), + [anon_sym_switch] = ACTIONS(2942), + [anon_sym_for] = ACTIONS(2942), + [anon_sym_LPAREN] = ACTIONS(2944), + [anon_sym_SEMI] = ACTIONS(2944), + [anon_sym_await] = ACTIONS(2942), + [anon_sym_while] = ACTIONS(2942), + [anon_sym_do] = ACTIONS(2942), + [anon_sym_try] = ACTIONS(2942), + [anon_sym_break] = ACTIONS(2942), + [anon_sym_continue] = ACTIONS(2942), + [anon_sym_debugger] = ACTIONS(2942), + [anon_sym_return] = ACTIONS(2942), + [anon_sym_throw] = ACTIONS(2942), + [anon_sym_yield] = ACTIONS(2942), + [anon_sym_LBRACK] = ACTIONS(2944), + [anon_sym_DQUOTE] = ACTIONS(2944), + [anon_sym_SQUOTE] = ACTIONS(2944), + [anon_sym_class] = ACTIONS(2942), + [anon_sym_async] = ACTIONS(2942), + [anon_sym_function] = ACTIONS(2942), + [anon_sym_new] = ACTIONS(2942), + [anon_sym_using] = ACTIONS(2942), + [anon_sym_PLUS] = ACTIONS(2942), + [anon_sym_DASH] = ACTIONS(2942), + [anon_sym_SLASH] = ACTIONS(2942), + [anon_sym_LT] = ACTIONS(2944), + [anon_sym_TILDE] = ACTIONS(2944), + [anon_sym_void] = ACTIONS(2942), + [anon_sym_delete] = ACTIONS(2942), + [anon_sym_PLUS_PLUS] = ACTIONS(2944), + [anon_sym_DASH_DASH] = ACTIONS(2944), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2944), + [sym_number] = ACTIONS(2944), + [sym_private_property_identifier] = ACTIONS(2944), + [sym_this] = ACTIONS(2942), + [sym_super] = ACTIONS(2942), + [sym_true] = ACTIONS(2942), + [sym_false] = ACTIONS(2942), + [sym_null] = ACTIONS(2942), + [sym_undefined] = ACTIONS(2942), + [anon_sym_AT] = ACTIONS(2944), + [anon_sym_static] = ACTIONS(2942), + [anon_sym_readonly] = ACTIONS(2942), + [anon_sym_get] = ACTIONS(2942), + [anon_sym_set] = ACTIONS(2942), + [anon_sym_declare] = ACTIONS(2942), + [anon_sym_public] = ACTIONS(2942), + [anon_sym_private] = ACTIONS(2942), + [anon_sym_protected] = ACTIONS(2942), + [anon_sym_override] = ACTIONS(2942), + [anon_sym_module] = ACTIONS(2942), + [anon_sym_any] = ACTIONS(2942), + [anon_sym_number] = ACTIONS(2942), + [anon_sym_boolean] = ACTIONS(2942), + [anon_sym_string] = ACTIONS(2942), + [anon_sym_symbol] = ACTIONS(2942), + [anon_sym_object] = ACTIONS(2942), + [anon_sym_abstract] = ACTIONS(2942), + [anon_sym_interface] = ACTIONS(2942), + [anon_sym_enum] = ACTIONS(2942), [sym_html_comment] = ACTIONS(5), }, [929] = { - [sym_identifier] = ACTIONS(2967), - [anon_sym_export] = ACTIONS(2967), - [anon_sym_type] = ACTIONS(2967), - [anon_sym_namespace] = ACTIONS(2967), - [anon_sym_LBRACE] = ACTIONS(2969), - [anon_sym_typeof] = ACTIONS(2967), - [anon_sym_import] = ACTIONS(2967), - [anon_sym_with] = ACTIONS(2967), - [anon_sym_var] = ACTIONS(2967), - [anon_sym_let] = ACTIONS(2967), - [anon_sym_const] = ACTIONS(2967), - [anon_sym_BANG] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2967), - [anon_sym_switch] = ACTIONS(2967), - [anon_sym_for] = ACTIONS(2967), - [anon_sym_LPAREN] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2969), - [anon_sym_await] = ACTIONS(2967), - [anon_sym_while] = ACTIONS(2967), - [anon_sym_do] = ACTIONS(2967), - [anon_sym_try] = ACTIONS(2967), - [anon_sym_break] = ACTIONS(2967), - [anon_sym_continue] = ACTIONS(2967), - [anon_sym_debugger] = ACTIONS(2967), - [anon_sym_return] = ACTIONS(2967), - [anon_sym_throw] = ACTIONS(2967), - [anon_sym_yield] = ACTIONS(2967), - [anon_sym_LBRACK] = ACTIONS(2969), - [sym_glimmer_opening_tag] = ACTIONS(2969), - [anon_sym_DQUOTE] = ACTIONS(2969), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2967), - [anon_sym_async] = ACTIONS(2967), - [anon_sym_function] = ACTIONS(2967), - [anon_sym_new] = ACTIONS(2967), - [anon_sym_using] = ACTIONS(2967), - [anon_sym_PLUS] = ACTIONS(2967), - [anon_sym_DASH] = ACTIONS(2967), - [anon_sym_SLASH] = ACTIONS(2967), - [anon_sym_LT] = ACTIONS(2967), - [anon_sym_TILDE] = ACTIONS(2969), - [anon_sym_void] = ACTIONS(2967), - [anon_sym_delete] = ACTIONS(2967), - [anon_sym_PLUS_PLUS] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2969), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2969), - [sym_number] = ACTIONS(2969), - [sym_private_property_identifier] = ACTIONS(2969), - [sym_this] = ACTIONS(2967), - [sym_super] = ACTIONS(2967), - [sym_true] = ACTIONS(2967), - [sym_false] = ACTIONS(2967), - [sym_null] = ACTIONS(2967), - [sym_undefined] = ACTIONS(2967), - [anon_sym_AT] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2967), - [anon_sym_readonly] = ACTIONS(2967), - [anon_sym_get] = ACTIONS(2967), - [anon_sym_set] = ACTIONS(2967), - [anon_sym_declare] = ACTIONS(2967), - [anon_sym_public] = ACTIONS(2967), - [anon_sym_private] = ACTIONS(2967), - [anon_sym_protected] = ACTIONS(2967), - [anon_sym_override] = ACTIONS(2967), - [anon_sym_module] = ACTIONS(2967), - [anon_sym_any] = ACTIONS(2967), - [anon_sym_number] = ACTIONS(2967), - [anon_sym_boolean] = ACTIONS(2967), - [anon_sym_string] = ACTIONS(2967), - [anon_sym_symbol] = ACTIONS(2967), - [anon_sym_object] = ACTIONS(2967), - [anon_sym_abstract] = ACTIONS(2967), - [anon_sym_interface] = ACTIONS(2967), - [anon_sym_enum] = ACTIONS(2967), + [sym_identifier] = ACTIONS(2942), + [anon_sym_export] = ACTIONS(2942), + [anon_sym_type] = ACTIONS(2942), + [anon_sym_namespace] = ACTIONS(2942), + [anon_sym_LBRACE] = ACTIONS(2944), + [anon_sym_typeof] = ACTIONS(2942), + [anon_sym_import] = ACTIONS(2942), + [anon_sym_with] = ACTIONS(2942), + [anon_sym_var] = ACTIONS(2942), + [anon_sym_let] = ACTIONS(2942), + [anon_sym_const] = ACTIONS(2942), + [anon_sym_BANG] = ACTIONS(2944), + [anon_sym_if] = ACTIONS(2942), + [anon_sym_switch] = ACTIONS(2942), + [anon_sym_for] = ACTIONS(2942), + [anon_sym_LPAREN] = ACTIONS(2944), + [anon_sym_SEMI] = ACTIONS(2944), + [anon_sym_await] = ACTIONS(2942), + [anon_sym_while] = ACTIONS(2942), + [anon_sym_do] = ACTIONS(2942), + [anon_sym_try] = ACTIONS(2942), + [anon_sym_break] = ACTIONS(2942), + [anon_sym_continue] = ACTIONS(2942), + [anon_sym_debugger] = ACTIONS(2942), + [anon_sym_return] = ACTIONS(2942), + [anon_sym_throw] = ACTIONS(2942), + [anon_sym_yield] = ACTIONS(2942), + [anon_sym_LBRACK] = ACTIONS(2944), + [anon_sym_DQUOTE] = ACTIONS(2944), + [anon_sym_SQUOTE] = ACTIONS(2944), + [anon_sym_class] = ACTIONS(2942), + [anon_sym_async] = ACTIONS(2942), + [anon_sym_function] = ACTIONS(2942), + [anon_sym_new] = ACTIONS(2942), + [anon_sym_using] = ACTIONS(2942), + [anon_sym_PLUS] = ACTIONS(2942), + [anon_sym_DASH] = ACTIONS(2942), + [anon_sym_SLASH] = ACTIONS(2942), + [anon_sym_LT] = ACTIONS(2944), + [anon_sym_TILDE] = ACTIONS(2944), + [anon_sym_void] = ACTIONS(2942), + [anon_sym_delete] = ACTIONS(2942), + [anon_sym_PLUS_PLUS] = ACTIONS(2944), + [anon_sym_DASH_DASH] = ACTIONS(2944), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2944), + [sym_number] = ACTIONS(2944), + [sym_private_property_identifier] = ACTIONS(2944), + [sym_this] = ACTIONS(2942), + [sym_super] = ACTIONS(2942), + [sym_true] = ACTIONS(2942), + [sym_false] = ACTIONS(2942), + [sym_null] = ACTIONS(2942), + [sym_undefined] = ACTIONS(2942), + [anon_sym_AT] = ACTIONS(2944), + [anon_sym_static] = ACTIONS(2942), + [anon_sym_readonly] = ACTIONS(2942), + [anon_sym_get] = ACTIONS(2942), + [anon_sym_set] = ACTIONS(2942), + [anon_sym_declare] = ACTIONS(2942), + [anon_sym_public] = ACTIONS(2942), + [anon_sym_private] = ACTIONS(2942), + [anon_sym_protected] = ACTIONS(2942), + [anon_sym_override] = ACTIONS(2942), + [anon_sym_module] = ACTIONS(2942), + [anon_sym_any] = ACTIONS(2942), + [anon_sym_number] = ACTIONS(2942), + [anon_sym_boolean] = ACTIONS(2942), + [anon_sym_string] = ACTIONS(2942), + [anon_sym_symbol] = ACTIONS(2942), + [anon_sym_object] = ACTIONS(2942), + [anon_sym_abstract] = ACTIONS(2942), + [anon_sym_interface] = ACTIONS(2942), + [anon_sym_enum] = ACTIONS(2942), [sym_html_comment] = ACTIONS(5), }, [930] = { - [sym_identifier] = ACTIONS(2951), - [anon_sym_export] = ACTIONS(2951), - [anon_sym_type] = ACTIONS(2951), - [anon_sym_namespace] = ACTIONS(2951), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_typeof] = ACTIONS(2951), - [anon_sym_import] = ACTIONS(2951), - [anon_sym_with] = ACTIONS(2951), - [anon_sym_var] = ACTIONS(2951), - [anon_sym_let] = ACTIONS(2951), - [anon_sym_const] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2951), - [anon_sym_switch] = ACTIONS(2951), - [anon_sym_for] = ACTIONS(2951), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_SEMI] = ACTIONS(2953), - [anon_sym_await] = ACTIONS(2951), - [anon_sym_while] = ACTIONS(2951), - [anon_sym_do] = ACTIONS(2951), - [anon_sym_try] = ACTIONS(2951), - [anon_sym_break] = ACTIONS(2951), - [anon_sym_continue] = ACTIONS(2951), - [anon_sym_debugger] = ACTIONS(2951), - [anon_sym_return] = ACTIONS(2951), - [anon_sym_throw] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2953), - [sym_glimmer_opening_tag] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [anon_sym_SQUOTE] = ACTIONS(2953), - [anon_sym_class] = ACTIONS(2951), - [anon_sym_async] = ACTIONS(2951), - [anon_sym_function] = ACTIONS(2951), - [anon_sym_new] = ACTIONS(2951), - [anon_sym_using] = ACTIONS(2951), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_SLASH] = ACTIONS(2951), - [anon_sym_LT] = ACTIONS(2951), - [anon_sym_TILDE] = ACTIONS(2953), - [anon_sym_void] = ACTIONS(2951), - [anon_sym_delete] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2953), - [anon_sym_DASH_DASH] = ACTIONS(2953), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2953), - [sym_number] = ACTIONS(2953), - [sym_private_property_identifier] = ACTIONS(2953), - [sym_this] = ACTIONS(2951), - [sym_super] = ACTIONS(2951), - [sym_true] = ACTIONS(2951), - [sym_false] = ACTIONS(2951), - [sym_null] = ACTIONS(2951), - [sym_undefined] = ACTIONS(2951), - [anon_sym_AT] = ACTIONS(2953), - [anon_sym_static] = ACTIONS(2951), - [anon_sym_readonly] = ACTIONS(2951), - [anon_sym_get] = ACTIONS(2951), - [anon_sym_set] = ACTIONS(2951), - [anon_sym_declare] = ACTIONS(2951), - [anon_sym_public] = ACTIONS(2951), - [anon_sym_private] = ACTIONS(2951), - [anon_sym_protected] = ACTIONS(2951), - [anon_sym_override] = ACTIONS(2951), - [anon_sym_module] = ACTIONS(2951), - [anon_sym_any] = ACTIONS(2951), - [anon_sym_number] = ACTIONS(2951), - [anon_sym_boolean] = ACTIONS(2951), - [anon_sym_string] = ACTIONS(2951), - [anon_sym_symbol] = ACTIONS(2951), - [anon_sym_object] = ACTIONS(2951), - [anon_sym_abstract] = ACTIONS(2951), - [anon_sym_interface] = ACTIONS(2951), - [anon_sym_enum] = ACTIONS(2951), + [sym_identifier] = ACTIONS(2942), + [anon_sym_export] = ACTIONS(2942), + [anon_sym_type] = ACTIONS(2942), + [anon_sym_namespace] = ACTIONS(2942), + [anon_sym_LBRACE] = ACTIONS(2944), + [anon_sym_typeof] = ACTIONS(2942), + [anon_sym_import] = ACTIONS(2942), + [anon_sym_with] = ACTIONS(2942), + [anon_sym_var] = ACTIONS(2942), + [anon_sym_let] = ACTIONS(2942), + [anon_sym_const] = ACTIONS(2942), + [anon_sym_BANG] = ACTIONS(2944), + [anon_sym_if] = ACTIONS(2942), + [anon_sym_switch] = ACTIONS(2942), + [anon_sym_for] = ACTIONS(2942), + [anon_sym_LPAREN] = ACTIONS(2944), + [anon_sym_SEMI] = ACTIONS(2944), + [anon_sym_await] = ACTIONS(2942), + [anon_sym_while] = ACTIONS(2942), + [anon_sym_do] = ACTIONS(2942), + [anon_sym_try] = ACTIONS(2942), + [anon_sym_break] = ACTIONS(2942), + [anon_sym_continue] = ACTIONS(2942), + [anon_sym_debugger] = ACTIONS(2942), + [anon_sym_return] = ACTIONS(2942), + [anon_sym_throw] = ACTIONS(2942), + [anon_sym_yield] = ACTIONS(2942), + [anon_sym_LBRACK] = ACTIONS(2944), + [anon_sym_DQUOTE] = ACTIONS(2944), + [anon_sym_SQUOTE] = ACTIONS(2944), + [anon_sym_class] = ACTIONS(2942), + [anon_sym_async] = ACTIONS(2942), + [anon_sym_function] = ACTIONS(2942), + [anon_sym_new] = ACTIONS(2942), + [anon_sym_using] = ACTIONS(2942), + [anon_sym_PLUS] = ACTIONS(2942), + [anon_sym_DASH] = ACTIONS(2942), + [anon_sym_SLASH] = ACTIONS(2942), + [anon_sym_LT] = ACTIONS(2944), + [anon_sym_TILDE] = ACTIONS(2944), + [anon_sym_void] = ACTIONS(2942), + [anon_sym_delete] = ACTIONS(2942), + [anon_sym_PLUS_PLUS] = ACTIONS(2944), + [anon_sym_DASH_DASH] = ACTIONS(2944), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2944), + [sym_number] = ACTIONS(2944), + [sym_private_property_identifier] = ACTIONS(2944), + [sym_this] = ACTIONS(2942), + [sym_super] = ACTIONS(2942), + [sym_true] = ACTIONS(2942), + [sym_false] = ACTIONS(2942), + [sym_null] = ACTIONS(2942), + [sym_undefined] = ACTIONS(2942), + [anon_sym_AT] = ACTIONS(2944), + [anon_sym_static] = ACTIONS(2942), + [anon_sym_readonly] = ACTIONS(2942), + [anon_sym_get] = ACTIONS(2942), + [anon_sym_set] = ACTIONS(2942), + [anon_sym_declare] = ACTIONS(2942), + [anon_sym_public] = ACTIONS(2942), + [anon_sym_private] = ACTIONS(2942), + [anon_sym_protected] = ACTIONS(2942), + [anon_sym_override] = ACTIONS(2942), + [anon_sym_module] = ACTIONS(2942), + [anon_sym_any] = ACTIONS(2942), + [anon_sym_number] = ACTIONS(2942), + [anon_sym_boolean] = ACTIONS(2942), + [anon_sym_string] = ACTIONS(2942), + [anon_sym_symbol] = ACTIONS(2942), + [anon_sym_object] = ACTIONS(2942), + [anon_sym_abstract] = ACTIONS(2942), + [anon_sym_interface] = ACTIONS(2942), + [anon_sym_enum] = ACTIONS(2942), [sym_html_comment] = ACTIONS(5), }, [931] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_asserts] = STATE(3002), - [sym_type] = STATE(3117), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_predicate] = STATE(3002), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(3014), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(2971), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(2973), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_asserts] = ACTIONS(2975), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_identifier] = ACTIONS(2942), + [anon_sym_export] = ACTIONS(2942), + [anon_sym_type] = ACTIONS(2942), + [anon_sym_namespace] = ACTIONS(2942), + [anon_sym_LBRACE] = ACTIONS(2944), + [anon_sym_typeof] = ACTIONS(2942), + [anon_sym_import] = ACTIONS(2942), + [anon_sym_with] = ACTIONS(2942), + [anon_sym_var] = ACTIONS(2942), + [anon_sym_let] = ACTIONS(2942), + [anon_sym_const] = ACTIONS(2942), + [anon_sym_BANG] = ACTIONS(2944), + [anon_sym_if] = ACTIONS(2942), + [anon_sym_switch] = ACTIONS(2942), + [anon_sym_for] = ACTIONS(2942), + [anon_sym_LPAREN] = ACTIONS(2944), + [anon_sym_SEMI] = ACTIONS(2944), + [anon_sym_await] = ACTIONS(2942), + [anon_sym_while] = ACTIONS(2942), + [anon_sym_do] = ACTIONS(2942), + [anon_sym_try] = ACTIONS(2942), + [anon_sym_break] = ACTIONS(2942), + [anon_sym_continue] = ACTIONS(2942), + [anon_sym_debugger] = ACTIONS(2942), + [anon_sym_return] = ACTIONS(2942), + [anon_sym_throw] = ACTIONS(2942), + [anon_sym_yield] = ACTIONS(2942), + [anon_sym_LBRACK] = ACTIONS(2944), + [anon_sym_DQUOTE] = ACTIONS(2944), + [anon_sym_SQUOTE] = ACTIONS(2944), + [anon_sym_class] = ACTIONS(2942), + [anon_sym_async] = ACTIONS(2942), + [anon_sym_function] = ACTIONS(2942), + [anon_sym_new] = ACTIONS(2942), + [anon_sym_using] = ACTIONS(2942), + [anon_sym_PLUS] = ACTIONS(2942), + [anon_sym_DASH] = ACTIONS(2942), + [anon_sym_SLASH] = ACTIONS(2942), + [anon_sym_LT] = ACTIONS(2944), + [anon_sym_TILDE] = ACTIONS(2944), + [anon_sym_void] = ACTIONS(2942), + [anon_sym_delete] = ACTIONS(2942), + [anon_sym_PLUS_PLUS] = ACTIONS(2944), + [anon_sym_DASH_DASH] = ACTIONS(2944), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2944), + [sym_number] = ACTIONS(2944), + [sym_private_property_identifier] = ACTIONS(2944), + [sym_this] = ACTIONS(2942), + [sym_super] = ACTIONS(2942), + [sym_true] = ACTIONS(2942), + [sym_false] = ACTIONS(2942), + [sym_null] = ACTIONS(2942), + [sym_undefined] = ACTIONS(2942), + [anon_sym_AT] = ACTIONS(2944), + [anon_sym_static] = ACTIONS(2942), + [anon_sym_readonly] = ACTIONS(2942), + [anon_sym_get] = ACTIONS(2942), + [anon_sym_set] = ACTIONS(2942), + [anon_sym_declare] = ACTIONS(2942), + [anon_sym_public] = ACTIONS(2942), + [anon_sym_private] = ACTIONS(2942), + [anon_sym_protected] = ACTIONS(2942), + [anon_sym_override] = ACTIONS(2942), + [anon_sym_module] = ACTIONS(2942), + [anon_sym_any] = ACTIONS(2942), + [anon_sym_number] = ACTIONS(2942), + [anon_sym_boolean] = ACTIONS(2942), + [anon_sym_string] = ACTIONS(2942), + [anon_sym_symbol] = ACTIONS(2942), + [anon_sym_object] = ACTIONS(2942), + [anon_sym_abstract] = ACTIONS(2942), + [anon_sym_interface] = ACTIONS(2942), + [anon_sym_enum] = ACTIONS(2942), [sym_html_comment] = ACTIONS(5), }, [932] = { - [sym_import] = STATE(4635), - [sym_nested_identifier] = STATE(5854), - [sym_string] = STATE(1922), - [sym_formal_parameters] = STATE(5981), - [sym_nested_type_identifier] = STATE(1768), - [sym__type_query_member_expression_in_type_annotation] = STATE(1769), - [sym__type_query_call_expression_in_type_annotation] = STATE(1973), - [sym_asserts] = STATE(1876), - [sym_type] = STATE(1877), - [sym_constructor_type] = STATE(1980), - [sym_primary_type] = STATE(1981), - [sym_template_literal_type] = STATE(1907), - [sym_infer_type] = STATE(1980), - [sym_conditional_type] = STATE(1907), - [sym_generic_type] = STATE(1907), - [sym_type_predicate] = STATE(1876), - [sym_type_query] = STATE(1907), - [sym_index_type_query] = STATE(1907), - [sym_lookup_type] = STATE(1907), - [sym_literal_type] = STATE(1907), - [sym__number] = STATE(1987), - [sym_existential_type] = STATE(1907), - [sym_flow_maybe_type] = STATE(1907), - [sym_parenthesized_type] = STATE(1907), - [sym_predefined_type] = STATE(1792), - [sym_object_type] = STATE(1907), - [sym_type_parameters] = STATE(5335), - [sym_array_type] = STATE(1907), - [sym_tuple_type] = STATE(1907), - [sym_readonly_type] = STATE(1980), - [sym_union_type] = STATE(1907), - [sym_intersection_type] = STATE(1907), - [sym_function_type] = STATE(1980), - [sym_identifier] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_LBRACE] = ACTIONS(2981), - [anon_sym_typeof] = ACTIONS(2983), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_PIPE] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(2999), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3001), - [sym_number] = ACTIONS(3003), - [sym_this] = ACTIONS(3005), - [sym_true] = ACTIONS(3007), - [sym_false] = ACTIONS(3007), - [sym_null] = ACTIONS(3007), - [sym_undefined] = ACTIONS(3007), - [anon_sym_readonly] = ACTIONS(3009), - [anon_sym_QMARK] = ACTIONS(3011), - [anon_sym_any] = ACTIONS(2999), - [anon_sym_number] = ACTIONS(2999), - [anon_sym_boolean] = ACTIONS(2999), - [anon_sym_string] = ACTIONS(2999), - [anon_sym_symbol] = ACTIONS(2999), - [anon_sym_object] = ACTIONS(2999), - [anon_sym_abstract] = ACTIONS(3013), - [anon_sym_asserts] = ACTIONS(3015), - [anon_sym_infer] = ACTIONS(3017), - [anon_sym_keyof] = ACTIONS(3019), - [anon_sym_unique] = ACTIONS(3021), - [anon_sym_unknown] = ACTIONS(2999), - [anon_sym_never] = ACTIONS(2999), - [anon_sym_LBRACE_PIPE] = ACTIONS(3023), + [sym_import] = STATE(4673), + [sym_nested_identifier] = STATE(5966), + [sym_string] = STATE(3463), + [sym_formal_parameters] = STATE(5586), + [sym_nested_type_identifier] = STATE(3191), + [sym__type_query_member_expression_in_type_annotation] = STATE(3128), + [sym__type_query_call_expression_in_type_annotation] = STATE(3287), + [sym_asserts] = STATE(3381), + [sym_type] = STATE(3382), + [sym_constructor_type] = STATE(3321), + [sym_primary_type] = STATE(3325), + [sym_template_literal_type] = STATE(3443), + [sym_infer_type] = STATE(3321), + [sym_conditional_type] = STATE(3443), + [sym_generic_type] = STATE(3443), + [sym_type_predicate] = STATE(3381), + [sym_type_query] = STATE(3443), + [sym_index_type_query] = STATE(3443), + [sym_lookup_type] = STATE(3443), + [sym_literal_type] = STATE(3443), + [sym__number] = STATE(3326), + [sym_existential_type] = STATE(3443), + [sym_flow_maybe_type] = STATE(3443), + [sym_parenthesized_type] = STATE(3443), + [sym_predefined_type] = STATE(3280), + [sym_object_type] = STATE(3443), + [sym_type_parameters] = STATE(5361), + [sym_array_type] = STATE(3443), + [sym_tuple_type] = STATE(3443), + [sym_readonly_type] = STATE(3321), + [sym_union_type] = STATE(3443), + [sym_intersection_type] = STATE(3443), + [sym_function_type] = STATE(3321), + [sym_identifier] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3046), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_typeof] = ACTIONS(3050), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(3054), + [anon_sym_LBRACK] = ACTIONS(3056), + [anon_sym_DQUOTE] = ACTIONS(3058), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3064), + [anon_sym_PIPE] = ACTIONS(3066), + [anon_sym_PLUS] = ACTIONS(3068), + [anon_sym_DASH] = ACTIONS(3068), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(3070), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3072), + [sym_number] = ACTIONS(3074), + [sym_this] = ACTIONS(3076), + [sym_true] = ACTIONS(3078), + [sym_false] = ACTIONS(3078), + [sym_null] = ACTIONS(3078), + [sym_undefined] = ACTIONS(3078), + [anon_sym_readonly] = ACTIONS(3080), + [anon_sym_QMARK] = ACTIONS(3082), + [anon_sym_any] = ACTIONS(3070), + [anon_sym_number] = ACTIONS(3070), + [anon_sym_boolean] = ACTIONS(3070), + [anon_sym_string] = ACTIONS(3070), + [anon_sym_symbol] = ACTIONS(3070), + [anon_sym_object] = ACTIONS(3070), + [anon_sym_abstract] = ACTIONS(3084), + [anon_sym_asserts] = ACTIONS(3086), + [anon_sym_infer] = ACTIONS(3088), + [anon_sym_keyof] = ACTIONS(3090), + [anon_sym_unique] = ACTIONS(3092), + [anon_sym_unknown] = ACTIONS(3070), + [anon_sym_never] = ACTIONS(3070), + [anon_sym_LBRACE_PIPE] = ACTIONS(3094), [sym_html_comment] = ACTIONS(5), }, [933] = { - [sym_import] = STATE(4633), - [sym_nested_identifier] = STATE(5769), - [sym_string] = STATE(1504), - [sym_formal_parameters] = STATE(5757), - [sym_nested_type_identifier] = STATE(1480), - [sym__type_query_member_expression_in_type_annotation] = STATE(1481), - [sym__type_query_call_expression_in_type_annotation] = STATE(1491), - [sym_asserts] = STATE(1569), - [sym_type] = STATE(1570), - [sym_constructor_type] = STATE(1492), - [sym_primary_type] = STATE(1493), - [sym_template_literal_type] = STATE(1490), - [sym_infer_type] = STATE(1492), - [sym_conditional_type] = STATE(1490), - [sym_generic_type] = STATE(1490), - [sym_type_predicate] = STATE(1569), - [sym_type_query] = STATE(1490), - [sym_index_type_query] = STATE(1490), - [sym_lookup_type] = STATE(1490), - [sym_literal_type] = STATE(1490), - [sym__number] = STATE(1494), - [sym_existential_type] = STATE(1490), - [sym_flow_maybe_type] = STATE(1490), - [sym_parenthesized_type] = STATE(1490), - [sym_predefined_type] = STATE(1472), - [sym_object_type] = STATE(1490), - [sym_type_parameters] = STATE(5510), - [sym_array_type] = STATE(1490), - [sym_tuple_type] = STATE(1490), - [sym_readonly_type] = STATE(1492), - [sym_union_type] = STATE(1490), - [sym_intersection_type] = STATE(1490), - [sym_function_type] = STATE(1492), - [sym_identifier] = ACTIONS(3025), - [anon_sym_STAR] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_typeof] = ACTIONS(3031), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_PIPE] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3047), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3049), - [sym_number] = ACTIONS(3051), - [sym_this] = ACTIONS(3053), - [sym_true] = ACTIONS(3055), - [sym_false] = ACTIONS(3055), - [sym_null] = ACTIONS(3055), - [sym_undefined] = ACTIONS(3055), - [anon_sym_readonly] = ACTIONS(3057), - [anon_sym_QMARK] = ACTIONS(3059), - [anon_sym_any] = ACTIONS(3047), - [anon_sym_number] = ACTIONS(3047), - [anon_sym_boolean] = ACTIONS(3047), - [anon_sym_string] = ACTIONS(3047), - [anon_sym_symbol] = ACTIONS(3047), - [anon_sym_object] = ACTIONS(3047), - [anon_sym_abstract] = ACTIONS(3061), - [anon_sym_asserts] = ACTIONS(3063), - [anon_sym_infer] = ACTIONS(3065), - [anon_sym_keyof] = ACTIONS(3067), - [anon_sym_unique] = ACTIONS(3069), - [anon_sym_unknown] = ACTIONS(3047), - [anon_sym_never] = ACTIONS(3047), - [anon_sym_LBRACE_PIPE] = ACTIONS(3071), + [sym_identifier] = ACTIONS(3096), + [anon_sym_export] = ACTIONS(3096), + [anon_sym_type] = ACTIONS(3096), + [anon_sym_namespace] = ACTIONS(3096), + [anon_sym_LBRACE] = ACTIONS(3098), + [anon_sym_typeof] = ACTIONS(3096), + [anon_sym_import] = ACTIONS(3096), + [anon_sym_with] = ACTIONS(3096), + [anon_sym_var] = ACTIONS(3096), + [anon_sym_let] = ACTIONS(3096), + [anon_sym_const] = ACTIONS(3096), + [anon_sym_BANG] = ACTIONS(3098), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_switch] = ACTIONS(3096), + [anon_sym_for] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(3098), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_await] = ACTIONS(3096), + [anon_sym_while] = ACTIONS(3096), + [anon_sym_do] = ACTIONS(3096), + [anon_sym_try] = ACTIONS(3096), + [anon_sym_break] = ACTIONS(3096), + [anon_sym_continue] = ACTIONS(3096), + [anon_sym_debugger] = ACTIONS(3096), + [anon_sym_return] = ACTIONS(3096), + [anon_sym_throw] = ACTIONS(3096), + [anon_sym_yield] = ACTIONS(3096), + [anon_sym_LBRACK] = ACTIONS(3098), + [anon_sym_DQUOTE] = ACTIONS(3098), + [anon_sym_SQUOTE] = ACTIONS(3098), + [anon_sym_class] = ACTIONS(3096), + [anon_sym_async] = ACTIONS(3096), + [anon_sym_function] = ACTIONS(3096), + [anon_sym_new] = ACTIONS(3096), + [anon_sym_using] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_SLASH] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_TILDE] = ACTIONS(3098), + [anon_sym_void] = ACTIONS(3096), + [anon_sym_delete] = ACTIONS(3096), + [anon_sym_PLUS_PLUS] = ACTIONS(3098), + [anon_sym_DASH_DASH] = ACTIONS(3098), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3098), + [sym_number] = ACTIONS(3098), + [sym_private_property_identifier] = ACTIONS(3098), + [sym_this] = ACTIONS(3096), + [sym_super] = ACTIONS(3096), + [sym_true] = ACTIONS(3096), + [sym_false] = ACTIONS(3096), + [sym_null] = ACTIONS(3096), + [sym_undefined] = ACTIONS(3096), + [anon_sym_AT] = ACTIONS(3098), + [anon_sym_static] = ACTIONS(3096), + [anon_sym_readonly] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3096), + [anon_sym_set] = ACTIONS(3096), + [anon_sym_declare] = ACTIONS(3096), + [anon_sym_public] = ACTIONS(3096), + [anon_sym_private] = ACTIONS(3096), + [anon_sym_protected] = ACTIONS(3096), + [anon_sym_override] = ACTIONS(3096), + [anon_sym_module] = ACTIONS(3096), + [anon_sym_any] = ACTIONS(3096), + [anon_sym_number] = ACTIONS(3096), + [anon_sym_boolean] = ACTIONS(3096), + [anon_sym_string] = ACTIONS(3096), + [anon_sym_symbol] = ACTIONS(3096), + [anon_sym_object] = ACTIONS(3096), + [anon_sym_abstract] = ACTIONS(3096), + [anon_sym_interface] = ACTIONS(3096), + [anon_sym_enum] = ACTIONS(3096), [sym_html_comment] = ACTIONS(5), }, [934] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_asserts] = STATE(2964), - [sym_type] = STATE(3051), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_predicate] = STATE(2964), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(3014), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(2971), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(2973), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_asserts] = ACTIONS(2975), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_identifier] = ACTIONS(3100), + [anon_sym_export] = ACTIONS(3100), + [anon_sym_type] = ACTIONS(3100), + [anon_sym_namespace] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(3102), + [anon_sym_typeof] = ACTIONS(3100), + [anon_sym_import] = ACTIONS(3100), + [anon_sym_with] = ACTIONS(3100), + [anon_sym_var] = ACTIONS(3100), + [anon_sym_let] = ACTIONS(3100), + [anon_sym_const] = ACTIONS(3100), + [anon_sym_BANG] = ACTIONS(3102), + [anon_sym_if] = ACTIONS(3100), + [anon_sym_switch] = ACTIONS(3100), + [anon_sym_for] = ACTIONS(3100), + [anon_sym_LPAREN] = ACTIONS(3102), + [anon_sym_SEMI] = ACTIONS(3102), + [anon_sym_await] = ACTIONS(3100), + [anon_sym_while] = ACTIONS(3100), + [anon_sym_do] = ACTIONS(3100), + [anon_sym_try] = ACTIONS(3100), + [anon_sym_break] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(3100), + [anon_sym_debugger] = ACTIONS(3100), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_throw] = ACTIONS(3100), + [anon_sym_yield] = ACTIONS(3100), + [anon_sym_LBRACK] = ACTIONS(3102), + [anon_sym_DQUOTE] = ACTIONS(3102), + [anon_sym_SQUOTE] = ACTIONS(3102), + [anon_sym_class] = ACTIONS(3100), + [anon_sym_async] = ACTIONS(3100), + [anon_sym_function] = ACTIONS(3100), + [anon_sym_new] = ACTIONS(3100), + [anon_sym_using] = ACTIONS(3100), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_SLASH] = ACTIONS(3100), + [anon_sym_LT] = ACTIONS(3102), + [anon_sym_TILDE] = ACTIONS(3102), + [anon_sym_void] = ACTIONS(3100), + [anon_sym_delete] = ACTIONS(3100), + [anon_sym_PLUS_PLUS] = ACTIONS(3102), + [anon_sym_DASH_DASH] = ACTIONS(3102), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3102), + [sym_number] = ACTIONS(3102), + [sym_private_property_identifier] = ACTIONS(3102), + [sym_this] = ACTIONS(3100), + [sym_super] = ACTIONS(3100), + [sym_true] = ACTIONS(3100), + [sym_false] = ACTIONS(3100), + [sym_null] = ACTIONS(3100), + [sym_undefined] = ACTIONS(3100), + [anon_sym_AT] = ACTIONS(3102), + [anon_sym_static] = ACTIONS(3100), + [anon_sym_readonly] = ACTIONS(3100), + [anon_sym_get] = ACTIONS(3100), + [anon_sym_set] = ACTIONS(3100), + [anon_sym_declare] = ACTIONS(3100), + [anon_sym_public] = ACTIONS(3100), + [anon_sym_private] = ACTIONS(3100), + [anon_sym_protected] = ACTIONS(3100), + [anon_sym_override] = ACTIONS(3100), + [anon_sym_module] = ACTIONS(3100), + [anon_sym_any] = ACTIONS(3100), + [anon_sym_number] = ACTIONS(3100), + [anon_sym_boolean] = ACTIONS(3100), + [anon_sym_string] = ACTIONS(3100), + [anon_sym_symbol] = ACTIONS(3100), + [anon_sym_object] = ACTIONS(3100), + [anon_sym_abstract] = ACTIONS(3100), + [anon_sym_interface] = ACTIONS(3100), + [anon_sym_enum] = ACTIONS(3100), [sym_html_comment] = ACTIONS(5), }, [935] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_asserts] = STATE(3002), - [sym_type] = STATE(3698), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_predicate] = STATE(3002), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(3510), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(3073), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(3075), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_asserts] = ACTIONS(3077), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(4673), + [sym_nested_identifier] = STATE(5966), + [sym_string] = STATE(3463), + [sym_formal_parameters] = STATE(5586), + [sym_nested_type_identifier] = STATE(3191), + [sym__type_query_member_expression_in_type_annotation] = STATE(3128), + [sym__type_query_call_expression_in_type_annotation] = STATE(3287), + [sym_asserts] = STATE(3958), + [sym_type] = STATE(3482), + [sym_constructor_type] = STATE(3321), + [sym_primary_type] = STATE(3325), + [sym_template_literal_type] = STATE(3443), + [sym_infer_type] = STATE(3321), + [sym_conditional_type] = STATE(3443), + [sym_generic_type] = STATE(3443), + [sym_type_predicate] = STATE(3959), + [sym_type_query] = STATE(3443), + [sym_index_type_query] = STATE(3443), + [sym_lookup_type] = STATE(3443), + [sym_literal_type] = STATE(3443), + [sym__number] = STATE(3326), + [sym_existential_type] = STATE(3443), + [sym_flow_maybe_type] = STATE(3443), + [sym_parenthesized_type] = STATE(3443), + [sym_predefined_type] = STATE(3280), + [sym_object_type] = STATE(3443), + [sym_type_parameters] = STATE(5361), + [sym_array_type] = STATE(3443), + [sym_tuple_type] = STATE(3443), + [sym_readonly_type] = STATE(3321), + [sym_union_type] = STATE(3443), + [sym_intersection_type] = STATE(3443), + [sym_function_type] = STATE(3321), + [sym_identifier] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3046), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_typeof] = ACTIONS(3050), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(3054), + [anon_sym_LBRACK] = ACTIONS(3056), + [anon_sym_DQUOTE] = ACTIONS(3058), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3064), + [anon_sym_PIPE] = ACTIONS(3066), + [anon_sym_PLUS] = ACTIONS(3068), + [anon_sym_DASH] = ACTIONS(3068), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(3070), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3072), + [sym_number] = ACTIONS(3074), + [sym_this] = ACTIONS(3076), + [sym_true] = ACTIONS(3078), + [sym_false] = ACTIONS(3078), + [sym_null] = ACTIONS(3078), + [sym_undefined] = ACTIONS(3078), + [anon_sym_readonly] = ACTIONS(3080), + [anon_sym_QMARK] = ACTIONS(3082), + [anon_sym_any] = ACTIONS(3070), + [anon_sym_number] = ACTIONS(3070), + [anon_sym_boolean] = ACTIONS(3070), + [anon_sym_string] = ACTIONS(3070), + [anon_sym_symbol] = ACTIONS(3070), + [anon_sym_object] = ACTIONS(3070), + [anon_sym_abstract] = ACTIONS(3084), + [anon_sym_asserts] = ACTIONS(3086), + [anon_sym_infer] = ACTIONS(3088), + [anon_sym_keyof] = ACTIONS(3090), + [anon_sym_unique] = ACTIONS(3092), + [anon_sym_unknown] = ACTIONS(3070), + [anon_sym_never] = ACTIONS(3070), + [anon_sym_LBRACE_PIPE] = ACTIONS(3094), [sym_html_comment] = ACTIONS(5), }, [936] = { - [sym_import] = STATE(4909), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5858), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3328), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_asserts] = STATE(2964), - [sym_type] = STATE(3832), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_predicate] = STATE(2964), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(3626), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5355), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(3079), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_typeof] = ACTIONS(3083), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_new] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(3091), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3095), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(3097), - [anon_sym_asserts] = ACTIONS(3099), - [anon_sym_infer] = ACTIONS(3101), - [anon_sym_keyof] = ACTIONS(3103), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(3105), + [sym_identifier] = ACTIONS(3104), + [anon_sym_export] = ACTIONS(3104), + [anon_sym_type] = ACTIONS(3104), + [anon_sym_namespace] = ACTIONS(3104), + [anon_sym_LBRACE] = ACTIONS(3106), + [anon_sym_typeof] = ACTIONS(3104), + [anon_sym_import] = ACTIONS(3104), + [anon_sym_with] = ACTIONS(3104), + [anon_sym_var] = ACTIONS(3104), + [anon_sym_let] = ACTIONS(3104), + [anon_sym_const] = ACTIONS(3104), + [anon_sym_BANG] = ACTIONS(3106), + [anon_sym_if] = ACTIONS(3104), + [anon_sym_switch] = ACTIONS(3104), + [anon_sym_for] = ACTIONS(3104), + [anon_sym_LPAREN] = ACTIONS(3106), + [anon_sym_SEMI] = ACTIONS(3106), + [anon_sym_await] = ACTIONS(3104), + [anon_sym_while] = ACTIONS(3104), + [anon_sym_do] = ACTIONS(3104), + [anon_sym_try] = ACTIONS(3104), + [anon_sym_break] = ACTIONS(3104), + [anon_sym_continue] = ACTIONS(3104), + [anon_sym_debugger] = ACTIONS(3104), + [anon_sym_return] = ACTIONS(3104), + [anon_sym_throw] = ACTIONS(3104), + [anon_sym_yield] = ACTIONS(3104), + [anon_sym_LBRACK] = ACTIONS(3106), + [anon_sym_DQUOTE] = ACTIONS(3106), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_class] = ACTIONS(3104), + [anon_sym_async] = ACTIONS(3104), + [anon_sym_function] = ACTIONS(3104), + [anon_sym_new] = ACTIONS(3104), + [anon_sym_using] = ACTIONS(3104), + [anon_sym_PLUS] = ACTIONS(3104), + [anon_sym_DASH] = ACTIONS(3104), + [anon_sym_SLASH] = ACTIONS(3104), + [anon_sym_LT] = ACTIONS(3106), + [anon_sym_TILDE] = ACTIONS(3106), + [anon_sym_void] = ACTIONS(3104), + [anon_sym_delete] = ACTIONS(3104), + [anon_sym_PLUS_PLUS] = ACTIONS(3106), + [anon_sym_DASH_DASH] = ACTIONS(3106), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3106), + [sym_number] = ACTIONS(3106), + [sym_private_property_identifier] = ACTIONS(3106), + [sym_this] = ACTIONS(3104), + [sym_super] = ACTIONS(3104), + [sym_true] = ACTIONS(3104), + [sym_false] = ACTIONS(3104), + [sym_null] = ACTIONS(3104), + [sym_undefined] = ACTIONS(3104), + [anon_sym_AT] = ACTIONS(3106), + [anon_sym_static] = ACTIONS(3104), + [anon_sym_readonly] = ACTIONS(3104), + [anon_sym_get] = ACTIONS(3104), + [anon_sym_set] = ACTIONS(3104), + [anon_sym_declare] = ACTIONS(3104), + [anon_sym_public] = ACTIONS(3104), + [anon_sym_private] = ACTIONS(3104), + [anon_sym_protected] = ACTIONS(3104), + [anon_sym_override] = ACTIONS(3104), + [anon_sym_module] = ACTIONS(3104), + [anon_sym_any] = ACTIONS(3104), + [anon_sym_number] = ACTIONS(3104), + [anon_sym_boolean] = ACTIONS(3104), + [anon_sym_string] = ACTIONS(3104), + [anon_sym_symbol] = ACTIONS(3104), + [anon_sym_object] = ACTIONS(3104), + [anon_sym_abstract] = ACTIONS(3104), + [anon_sym_interface] = ACTIONS(3104), + [anon_sym_enum] = ACTIONS(3104), [sym_html_comment] = ACTIONS(5), }, [937] = { - [sym_import] = STATE(5169), - [sym_nested_identifier] = STATE(5618), - [sym_string] = STATE(3256), - [sym_formal_parameters] = STATE(5839), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(3044), - [sym__type_query_call_expression_in_type_annotation] = STATE(3176), - [sym_asserts] = STATE(3865), - [sym_type] = STATE(3284), - [sym_constructor_type] = STATE(3261), - [sym_primary_type] = STATE(3262), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(3261), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_predicate] = STATE(3909), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3139), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5399), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(3261), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(3261), - [sym_identifier] = ACTIONS(3107), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_typeof] = ACTIONS(1582), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(1036), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1602), - [sym_this] = ACTIONS(3111), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), - [sym_null] = ACTIONS(1606), - [sym_undefined] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1036), - [anon_sym_number] = ACTIONS(1036), - [anon_sym_boolean] = ACTIONS(1036), - [anon_sym_string] = ACTIONS(1036), - [anon_sym_symbol] = ACTIONS(1036), - [anon_sym_object] = ACTIONS(1036), - [anon_sym_abstract] = ACTIONS(1028), - [anon_sym_asserts] = ACTIONS(3113), - [anon_sym_infer] = ACTIONS(1030), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(1038), + [sym_import] = STATE(4673), + [sym_nested_identifier] = STATE(5966), + [sym_string] = STATE(3463), + [sym_formal_parameters] = STATE(5586), + [sym_nested_type_identifier] = STATE(3191), + [sym__type_query_member_expression_in_type_annotation] = STATE(3128), + [sym__type_query_call_expression_in_type_annotation] = STATE(3287), + [sym_asserts] = STATE(3442), + [sym_type] = STATE(3446), + [sym_constructor_type] = STATE(3321), + [sym_primary_type] = STATE(3325), + [sym_template_literal_type] = STATE(3443), + [sym_infer_type] = STATE(3321), + [sym_conditional_type] = STATE(3443), + [sym_generic_type] = STATE(3443), + [sym_type_predicate] = STATE(3442), + [sym_type_query] = STATE(3443), + [sym_index_type_query] = STATE(3443), + [sym_lookup_type] = STATE(3443), + [sym_literal_type] = STATE(3443), + [sym__number] = STATE(3326), + [sym_existential_type] = STATE(3443), + [sym_flow_maybe_type] = STATE(3443), + [sym_parenthesized_type] = STATE(3443), + [sym_predefined_type] = STATE(3280), + [sym_object_type] = STATE(3443), + [sym_type_parameters] = STATE(5361), + [sym_array_type] = STATE(3443), + [sym_tuple_type] = STATE(3443), + [sym_readonly_type] = STATE(3321), + [sym_union_type] = STATE(3443), + [sym_intersection_type] = STATE(3443), + [sym_function_type] = STATE(3321), + [sym_identifier] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3046), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_typeof] = ACTIONS(3050), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(3054), + [anon_sym_LBRACK] = ACTIONS(3056), + [anon_sym_DQUOTE] = ACTIONS(3058), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3064), + [anon_sym_PIPE] = ACTIONS(3066), + [anon_sym_PLUS] = ACTIONS(3068), + [anon_sym_DASH] = ACTIONS(3068), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(3070), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3072), + [sym_number] = ACTIONS(3074), + [sym_this] = ACTIONS(3076), + [sym_true] = ACTIONS(3078), + [sym_false] = ACTIONS(3078), + [sym_null] = ACTIONS(3078), + [sym_undefined] = ACTIONS(3078), + [anon_sym_readonly] = ACTIONS(3080), + [anon_sym_QMARK] = ACTIONS(3082), + [anon_sym_any] = ACTIONS(3070), + [anon_sym_number] = ACTIONS(3070), + [anon_sym_boolean] = ACTIONS(3070), + [anon_sym_string] = ACTIONS(3070), + [anon_sym_symbol] = ACTIONS(3070), + [anon_sym_object] = ACTIONS(3070), + [anon_sym_abstract] = ACTIONS(3084), + [anon_sym_asserts] = ACTIONS(3086), + [anon_sym_infer] = ACTIONS(3088), + [anon_sym_keyof] = ACTIONS(3090), + [anon_sym_unique] = ACTIONS(3092), + [anon_sym_unknown] = ACTIONS(3070), + [anon_sym_never] = ACTIONS(3070), + [anon_sym_LBRACE_PIPE] = ACTIONS(3094), [sym_html_comment] = ACTIONS(5), }, [938] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_asserts] = STATE(2964), - [sym_type] = STATE(3664), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_predicate] = STATE(2964), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(3510), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(3073), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(3075), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_asserts] = ACTIONS(3077), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(5153), + [sym_nested_identifier] = STATE(5834), + [sym_string] = STATE(3213), + [sym_formal_parameters] = STATE(5829), + [sym_nested_type_identifier] = STATE(3070), + [sym__type_query_member_expression_in_type_annotation] = STATE(3029), + [sym__type_query_call_expression_in_type_annotation] = STATE(3159), + [sym_asserts] = STATE(3198), + [sym_type] = STATE(3204), + [sym_constructor_type] = STATE(3218), + [sym_primary_type] = STATE(3257), + [sym_template_literal_type] = STATE(3211), + [sym_infer_type] = STATE(3218), + [sym_conditional_type] = STATE(3211), + [sym_generic_type] = STATE(3211), + [sym_type_predicate] = STATE(3198), + [sym_type_query] = STATE(3211), + [sym_index_type_query] = STATE(3211), + [sym_lookup_type] = STATE(3211), + [sym_literal_type] = STATE(3211), + [sym__number] = STATE(3219), + [sym_existential_type] = STATE(3211), + [sym_flow_maybe_type] = STATE(3211), + [sym_parenthesized_type] = STATE(3211), + [sym_predefined_type] = STATE(3163), + [sym_object_type] = STATE(3211), + [sym_type_parameters] = STATE(5268), + [sym_array_type] = STATE(3211), + [sym_tuple_type] = STATE(3211), + [sym_readonly_type] = STATE(3218), + [sym_union_type] = STATE(3211), + [sym_intersection_type] = STATE(3211), + [sym_function_type] = STATE(3218), + [sym_identifier] = ACTIONS(2946), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_new] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(2948), + [anon_sym_DASH] = ACTIONS(2948), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(1031), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1595), + [sym_number] = ACTIONS(1597), + [sym_this] = ACTIONS(2950), + [sym_true] = ACTIONS(1601), + [sym_false] = ACTIONS(1601), + [sym_null] = ACTIONS(1601), + [sym_undefined] = ACTIONS(1601), + [anon_sym_readonly] = ACTIONS(1603), + [anon_sym_QMARK] = ACTIONS(1019), + [anon_sym_any] = ACTIONS(1031), + [anon_sym_number] = ACTIONS(1031), + [anon_sym_boolean] = ACTIONS(1031), + [anon_sym_string] = ACTIONS(1031), + [anon_sym_symbol] = ACTIONS(1031), + [anon_sym_object] = ACTIONS(1031), + [anon_sym_abstract] = ACTIONS(1023), + [anon_sym_asserts] = ACTIONS(2952), + [anon_sym_infer] = ACTIONS(1025), + [anon_sym_keyof] = ACTIONS(1027), + [anon_sym_unique] = ACTIONS(1029), + [anon_sym_unknown] = ACTIONS(1031), + [anon_sym_never] = ACTIONS(1031), + [anon_sym_LBRACE_PIPE] = ACTIONS(1033), [sym_html_comment] = ACTIONS(5), }, [939] = { - [sym_import] = STATE(4668), - [sym_nested_identifier] = STATE(5986), - [sym_string] = STATE(3335), - [sym_formal_parameters] = STATE(5649), - [sym_nested_type_identifier] = STATE(3222), - [sym__type_query_member_expression_in_type_annotation] = STATE(3169), - [sym__type_query_call_expression_in_type_annotation] = STATE(3271), - [sym_asserts] = STATE(3973), - [sym_type] = STATE(3507), - [sym_constructor_type] = STATE(3347), - [sym_primary_type] = STATE(3352), - [sym_template_literal_type] = STATE(3330), - [sym_infer_type] = STATE(3347), - [sym_conditional_type] = STATE(3330), - [sym_generic_type] = STATE(3330), - [sym_type_predicate] = STATE(3974), - [sym_type_query] = STATE(3330), - [sym_index_type_query] = STATE(3330), - [sym_lookup_type] = STATE(3330), - [sym_literal_type] = STATE(3330), - [sym__number] = STATE(3353), - [sym_existential_type] = STATE(3330), - [sym_flow_maybe_type] = STATE(3330), - [sym_parenthesized_type] = STATE(3330), - [sym_predefined_type] = STATE(3289), - [sym_object_type] = STATE(3330), - [sym_type_parameters] = STATE(5245), - [sym_array_type] = STATE(3330), - [sym_tuple_type] = STATE(3330), - [sym_readonly_type] = STATE(3347), - [sym_union_type] = STATE(3330), - [sym_intersection_type] = STATE(3330), - [sym_function_type] = STATE(3347), - [sym_identifier] = ACTIONS(3115), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3119), - [anon_sym_typeof] = ACTIONS(3121), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_DQUOTE] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3131), - [anon_sym_new] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3141), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3143), - [sym_number] = ACTIONS(3145), - [sym_this] = ACTIONS(3147), - [sym_true] = ACTIONS(3149), - [sym_false] = ACTIONS(3149), - [sym_null] = ACTIONS(3149), - [sym_undefined] = ACTIONS(3149), - [anon_sym_readonly] = ACTIONS(3151), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_any] = ACTIONS(3141), - [anon_sym_number] = ACTIONS(3141), - [anon_sym_boolean] = ACTIONS(3141), - [anon_sym_string] = ACTIONS(3141), - [anon_sym_symbol] = ACTIONS(3141), - [anon_sym_object] = ACTIONS(3141), - [anon_sym_abstract] = ACTIONS(3155), - [anon_sym_asserts] = ACTIONS(3157), - [anon_sym_infer] = ACTIONS(3159), - [anon_sym_keyof] = ACTIONS(3161), - [anon_sym_unique] = ACTIONS(3163), - [anon_sym_unknown] = ACTIONS(3141), - [anon_sym_never] = ACTIONS(3141), - [anon_sym_LBRACE_PIPE] = ACTIONS(3165), + [sym_import] = STATE(4633), + [sym_nested_identifier] = STATE(5639), + [sym_string] = STATE(1509), + [sym_formal_parameters] = STATE(5732), + [sym_nested_type_identifier] = STATE(1485), + [sym__type_query_member_expression_in_type_annotation] = STATE(1482), + [sym__type_query_call_expression_in_type_annotation] = STATE(1512), + [sym_asserts] = STATE(1547), + [sym_type] = STATE(1548), + [sym_constructor_type] = STATE(1513), + [sym_primary_type] = STATE(1514), + [sym_template_literal_type] = STATE(1508), + [sym_infer_type] = STATE(1513), + [sym_conditional_type] = STATE(1508), + [sym_generic_type] = STATE(1508), + [sym_type_predicate] = STATE(1547), + [sym_type_query] = STATE(1508), + [sym_index_type_query] = STATE(1508), + [sym_lookup_type] = STATE(1508), + [sym_literal_type] = STATE(1508), + [sym__number] = STATE(1515), + [sym_existential_type] = STATE(1508), + [sym_flow_maybe_type] = STATE(1508), + [sym_parenthesized_type] = STATE(1508), + [sym_predefined_type] = STATE(1477), + [sym_object_type] = STATE(1508), + [sym_type_parameters] = STATE(5328), + [sym_array_type] = STATE(1508), + [sym_tuple_type] = STATE(1508), + [sym_readonly_type] = STATE(1513), + [sym_union_type] = STATE(1508), + [sym_intersection_type] = STATE(1508), + [sym_function_type] = STATE(1513), + [sym_identifier] = ACTIONS(3108), + [anon_sym_STAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_typeof] = ACTIONS(3114), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_new] = ACTIONS(3122), + [anon_sym_AMP] = ACTIONS(3124), + [anon_sym_PIPE] = ACTIONS(3126), + [anon_sym_PLUS] = ACTIONS(3128), + [anon_sym_DASH] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(3130), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3132), + [sym_number] = ACTIONS(3134), + [sym_this] = ACTIONS(3136), + [sym_true] = ACTIONS(3138), + [sym_false] = ACTIONS(3138), + [sym_null] = ACTIONS(3138), + [sym_undefined] = ACTIONS(3138), + [anon_sym_readonly] = ACTIONS(3140), + [anon_sym_QMARK] = ACTIONS(3142), + [anon_sym_any] = ACTIONS(3130), + [anon_sym_number] = ACTIONS(3130), + [anon_sym_boolean] = ACTIONS(3130), + [anon_sym_string] = ACTIONS(3130), + [anon_sym_symbol] = ACTIONS(3130), + [anon_sym_object] = ACTIONS(3130), + [anon_sym_abstract] = ACTIONS(3144), + [anon_sym_asserts] = ACTIONS(3146), + [anon_sym_infer] = ACTIONS(3148), + [anon_sym_keyof] = ACTIONS(3150), + [anon_sym_unique] = ACTIONS(3152), + [anon_sym_unknown] = ACTIONS(3130), + [anon_sym_never] = ACTIONS(3130), + [anon_sym_LBRACE_PIPE] = ACTIONS(3154), [sym_html_comment] = ACTIONS(5), }, [940] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_asserts] = STATE(5296), - [sym_type] = STATE(3469), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_predicate] = STATE(5412), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(3014), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(2971), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(2973), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_asserts] = ACTIONS(2975), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(4633), + [sym_nested_identifier] = STATE(5639), + [sym_string] = STATE(1509), + [sym_formal_parameters] = STATE(5732), + [sym_nested_type_identifier] = STATE(1485), + [sym__type_query_member_expression_in_type_annotation] = STATE(1482), + [sym__type_query_call_expression_in_type_annotation] = STATE(1512), + [sym_asserts] = STATE(1581), + [sym_type] = STATE(1582), + [sym_constructor_type] = STATE(1513), + [sym_primary_type] = STATE(1514), + [sym_template_literal_type] = STATE(1508), + [sym_infer_type] = STATE(1513), + [sym_conditional_type] = STATE(1508), + [sym_generic_type] = STATE(1508), + [sym_type_predicate] = STATE(1581), + [sym_type_query] = STATE(1508), + [sym_index_type_query] = STATE(1508), + [sym_lookup_type] = STATE(1508), + [sym_literal_type] = STATE(1508), + [sym__number] = STATE(1515), + [sym_existential_type] = STATE(1508), + [sym_flow_maybe_type] = STATE(1508), + [sym_parenthesized_type] = STATE(1508), + [sym_predefined_type] = STATE(1477), + [sym_object_type] = STATE(1508), + [sym_type_parameters] = STATE(5328), + [sym_array_type] = STATE(1508), + [sym_tuple_type] = STATE(1508), + [sym_readonly_type] = STATE(1513), + [sym_union_type] = STATE(1508), + [sym_intersection_type] = STATE(1508), + [sym_function_type] = STATE(1513), + [sym_identifier] = ACTIONS(3108), + [anon_sym_STAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_typeof] = ACTIONS(3114), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_new] = ACTIONS(3122), + [anon_sym_AMP] = ACTIONS(3124), + [anon_sym_PIPE] = ACTIONS(3126), + [anon_sym_PLUS] = ACTIONS(3128), + [anon_sym_DASH] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(3130), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3132), + [sym_number] = ACTIONS(3134), + [sym_this] = ACTIONS(3136), + [sym_true] = ACTIONS(3138), + [sym_false] = ACTIONS(3138), + [sym_null] = ACTIONS(3138), + [sym_undefined] = ACTIONS(3138), + [anon_sym_readonly] = ACTIONS(3140), + [anon_sym_QMARK] = ACTIONS(3142), + [anon_sym_any] = ACTIONS(3130), + [anon_sym_number] = ACTIONS(3130), + [anon_sym_boolean] = ACTIONS(3130), + [anon_sym_string] = ACTIONS(3130), + [anon_sym_symbol] = ACTIONS(3130), + [anon_sym_object] = ACTIONS(3130), + [anon_sym_abstract] = ACTIONS(3144), + [anon_sym_asserts] = ACTIONS(3146), + [anon_sym_infer] = ACTIONS(3148), + [anon_sym_keyof] = ACTIONS(3150), + [anon_sym_unique] = ACTIONS(3152), + [anon_sym_unknown] = ACTIONS(3130), + [anon_sym_never] = ACTIONS(3130), + [anon_sym_LBRACE_PIPE] = ACTIONS(3154), [sym_html_comment] = ACTIONS(5), }, [941] = { - [sym_import] = STATE(4668), - [sym_nested_identifier] = STATE(5986), - [sym_string] = STATE(3335), - [sym_formal_parameters] = STATE(5649), - [sym_nested_type_identifier] = STATE(3222), - [sym__type_query_member_expression_in_type_annotation] = STATE(3169), - [sym__type_query_call_expression_in_type_annotation] = STATE(3271), - [sym_asserts] = STATE(3427), - [sym_type] = STATE(3428), - [sym_constructor_type] = STATE(3347), - [sym_primary_type] = STATE(3352), - [sym_template_literal_type] = STATE(3330), - [sym_infer_type] = STATE(3347), - [sym_conditional_type] = STATE(3330), - [sym_generic_type] = STATE(3330), - [sym_type_predicate] = STATE(3427), - [sym_type_query] = STATE(3330), - [sym_index_type_query] = STATE(3330), - [sym_lookup_type] = STATE(3330), - [sym_literal_type] = STATE(3330), - [sym__number] = STATE(3353), - [sym_existential_type] = STATE(3330), - [sym_flow_maybe_type] = STATE(3330), - [sym_parenthesized_type] = STATE(3330), - [sym_predefined_type] = STATE(3289), - [sym_object_type] = STATE(3330), - [sym_type_parameters] = STATE(5245), - [sym_array_type] = STATE(3330), - [sym_tuple_type] = STATE(3330), - [sym_readonly_type] = STATE(3347), - [sym_union_type] = STATE(3330), - [sym_intersection_type] = STATE(3330), - [sym_function_type] = STATE(3347), - [sym_identifier] = ACTIONS(3115), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3119), - [anon_sym_typeof] = ACTIONS(3121), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_DQUOTE] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3131), - [anon_sym_new] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3141), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3143), - [sym_number] = ACTIONS(3145), - [sym_this] = ACTIONS(3147), - [sym_true] = ACTIONS(3149), - [sym_false] = ACTIONS(3149), - [sym_null] = ACTIONS(3149), - [sym_undefined] = ACTIONS(3149), - [anon_sym_readonly] = ACTIONS(3151), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_any] = ACTIONS(3141), - [anon_sym_number] = ACTIONS(3141), - [anon_sym_boolean] = ACTIONS(3141), - [anon_sym_string] = ACTIONS(3141), - [anon_sym_symbol] = ACTIONS(3141), - [anon_sym_object] = ACTIONS(3141), - [anon_sym_abstract] = ACTIONS(3155), - [anon_sym_asserts] = ACTIONS(3157), - [anon_sym_infer] = ACTIONS(3159), - [anon_sym_keyof] = ACTIONS(3161), - [anon_sym_unique] = ACTIONS(3163), - [anon_sym_unknown] = ACTIONS(3141), - [anon_sym_never] = ACTIONS(3141), - [anon_sym_LBRACE_PIPE] = ACTIONS(3165), + [sym_import] = STATE(4786), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5658), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3263), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_asserts] = STATE(2903), + [sym_type] = STATE(3753), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_predicate] = STATE(2903), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(3505), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5559), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(3156), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(3158), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_asserts] = ACTIONS(3160), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [942] = { - [sym_import] = STATE(5169), - [sym_nested_identifier] = STATE(5618), - [sym_string] = STATE(3256), - [sym_formal_parameters] = STATE(5839), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(3044), - [sym__type_query_call_expression_in_type_annotation] = STATE(3176), - [sym_asserts] = STATE(3189), - [sym_type] = STATE(3191), - [sym_constructor_type] = STATE(3261), - [sym_primary_type] = STATE(3262), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(3261), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_predicate] = STATE(3189), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3139), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5399), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(3261), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(3261), - [sym_identifier] = ACTIONS(3107), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_typeof] = ACTIONS(1582), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(1036), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1602), - [sym_this] = ACTIONS(3111), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), - [sym_null] = ACTIONS(1606), - [sym_undefined] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1036), - [anon_sym_number] = ACTIONS(1036), - [anon_sym_boolean] = ACTIONS(1036), - [anon_sym_string] = ACTIONS(1036), - [anon_sym_symbol] = ACTIONS(1036), - [anon_sym_object] = ACTIONS(1036), - [anon_sym_abstract] = ACTIONS(1028), - [anon_sym_asserts] = ACTIONS(3113), - [anon_sym_infer] = ACTIONS(1030), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(1038), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_asserts] = STATE(2988), + [sym_type] = STATE(3068), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_predicate] = STATE(2988), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(3036), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(2958), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(2960), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_asserts] = ACTIONS(2962), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [943] = { - [sym_import] = STATE(4668), - [sym_nested_identifier] = STATE(5986), - [sym_string] = STATE(3335), - [sym_formal_parameters] = STATE(5649), - [sym_nested_type_identifier] = STATE(3222), - [sym__type_query_member_expression_in_type_annotation] = STATE(3169), - [sym__type_query_call_expression_in_type_annotation] = STATE(3271), - [sym_asserts] = STATE(3459), - [sym_type] = STATE(3460), - [sym_constructor_type] = STATE(3347), - [sym_primary_type] = STATE(3352), - [sym_template_literal_type] = STATE(3330), - [sym_infer_type] = STATE(3347), - [sym_conditional_type] = STATE(3330), - [sym_generic_type] = STATE(3330), - [sym_type_predicate] = STATE(3459), - [sym_type_query] = STATE(3330), - [sym_index_type_query] = STATE(3330), - [sym_lookup_type] = STATE(3330), - [sym_literal_type] = STATE(3330), - [sym__number] = STATE(3353), - [sym_existential_type] = STATE(3330), - [sym_flow_maybe_type] = STATE(3330), - [sym_parenthesized_type] = STATE(3330), - [sym_predefined_type] = STATE(3289), - [sym_object_type] = STATE(3330), - [sym_type_parameters] = STATE(5245), - [sym_array_type] = STATE(3330), - [sym_tuple_type] = STATE(3330), - [sym_readonly_type] = STATE(3347), - [sym_union_type] = STATE(3330), - [sym_intersection_type] = STATE(3330), - [sym_function_type] = STATE(3347), - [sym_identifier] = ACTIONS(3115), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3119), - [anon_sym_typeof] = ACTIONS(3121), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_DQUOTE] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3131), - [anon_sym_new] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3141), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3143), - [sym_number] = ACTIONS(3145), - [sym_this] = ACTIONS(3147), - [sym_true] = ACTIONS(3149), - [sym_false] = ACTIONS(3149), - [sym_null] = ACTIONS(3149), - [sym_undefined] = ACTIONS(3149), - [anon_sym_readonly] = ACTIONS(3151), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_any] = ACTIONS(3141), - [anon_sym_number] = ACTIONS(3141), - [anon_sym_boolean] = ACTIONS(3141), - [anon_sym_string] = ACTIONS(3141), - [anon_sym_symbol] = ACTIONS(3141), - [anon_sym_object] = ACTIONS(3141), - [anon_sym_abstract] = ACTIONS(3155), - [anon_sym_asserts] = ACTIONS(3157), - [anon_sym_infer] = ACTIONS(3159), - [anon_sym_keyof] = ACTIONS(3161), - [anon_sym_unique] = ACTIONS(3163), - [anon_sym_unknown] = ACTIONS(3141), - [anon_sym_never] = ACTIONS(3141), - [anon_sym_LBRACE_PIPE] = ACTIONS(3165), + [sym_import] = STATE(4786), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5658), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3263), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_asserts] = STATE(2988), + [sym_type] = STATE(3752), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_predicate] = STATE(2988), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(3505), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5559), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(3156), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(3158), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_asserts] = ACTIONS(3160), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [944] = { - [sym_import] = STATE(5169), - [sym_nested_identifier] = STATE(5618), - [sym_string] = STATE(3256), - [sym_formal_parameters] = STATE(5839), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(3044), - [sym__type_query_call_expression_in_type_annotation] = STATE(3176), - [sym_asserts] = STATE(3231), - [sym_type] = STATE(3234), - [sym_constructor_type] = STATE(3261), - [sym_primary_type] = STATE(3262), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(3261), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_predicate] = STATE(3231), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3139), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5399), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(3261), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(3261), - [sym_identifier] = ACTIONS(3107), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_typeof] = ACTIONS(1582), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(1036), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1602), - [sym_this] = ACTIONS(3111), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), - [sym_null] = ACTIONS(1606), - [sym_undefined] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1036), - [anon_sym_number] = ACTIONS(1036), - [anon_sym_boolean] = ACTIONS(1036), - [anon_sym_string] = ACTIONS(1036), - [anon_sym_symbol] = ACTIONS(1036), - [anon_sym_object] = ACTIONS(1036), - [anon_sym_abstract] = ACTIONS(1028), - [anon_sym_asserts] = ACTIONS(3113), - [anon_sym_infer] = ACTIONS(1030), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(1038), + [sym_identifier] = ACTIONS(2452), + [anon_sym_export] = ACTIONS(2452), + [anon_sym_type] = ACTIONS(2452), + [anon_sym_namespace] = ACTIONS(2452), + [anon_sym_LBRACE] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(2452), + [anon_sym_import] = ACTIONS(2452), + [anon_sym_with] = ACTIONS(2452), + [anon_sym_var] = ACTIONS(2452), + [anon_sym_let] = ACTIONS(2452), + [anon_sym_const] = ACTIONS(2452), + [anon_sym_BANG] = ACTIONS(2450), + [anon_sym_if] = ACTIONS(2452), + [anon_sym_switch] = ACTIONS(2452), + [anon_sym_for] = ACTIONS(2452), + [anon_sym_LPAREN] = ACTIONS(2450), + [anon_sym_SEMI] = ACTIONS(2450), + [anon_sym_await] = ACTIONS(2452), + [anon_sym_while] = ACTIONS(2452), + [anon_sym_do] = ACTIONS(2452), + [anon_sym_try] = ACTIONS(2452), + [anon_sym_break] = ACTIONS(2452), + [anon_sym_continue] = ACTIONS(2452), + [anon_sym_debugger] = ACTIONS(2452), + [anon_sym_return] = ACTIONS(2452), + [anon_sym_throw] = ACTIONS(2452), + [anon_sym_yield] = ACTIONS(2452), + [anon_sym_LBRACK] = ACTIONS(2450), + [anon_sym_DQUOTE] = ACTIONS(2450), + [anon_sym_SQUOTE] = ACTIONS(2450), + [anon_sym_class] = ACTIONS(2452), + [anon_sym_async] = ACTIONS(2452), + [anon_sym_function] = ACTIONS(2452), + [anon_sym_new] = ACTIONS(2452), + [anon_sym_using] = ACTIONS(2452), + [anon_sym_PLUS] = ACTIONS(2452), + [anon_sym_DASH] = ACTIONS(2452), + [anon_sym_SLASH] = ACTIONS(2452), + [anon_sym_LT] = ACTIONS(2450), + [anon_sym_TILDE] = ACTIONS(2450), + [anon_sym_void] = ACTIONS(2452), + [anon_sym_delete] = ACTIONS(2452), + [anon_sym_PLUS_PLUS] = ACTIONS(2450), + [anon_sym_DASH_DASH] = ACTIONS(2450), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2450), + [sym_number] = ACTIONS(2450), + [sym_private_property_identifier] = ACTIONS(2450), + [sym_this] = ACTIONS(2452), + [sym_super] = ACTIONS(2452), + [sym_true] = ACTIONS(2452), + [sym_false] = ACTIONS(2452), + [sym_null] = ACTIONS(2452), + [sym_undefined] = ACTIONS(2452), + [anon_sym_AT] = ACTIONS(2450), + [anon_sym_static] = ACTIONS(2452), + [anon_sym_readonly] = ACTIONS(2452), + [anon_sym_get] = ACTIONS(2452), + [anon_sym_set] = ACTIONS(2452), + [anon_sym_declare] = ACTIONS(2452), + [anon_sym_public] = ACTIONS(2452), + [anon_sym_private] = ACTIONS(2452), + [anon_sym_protected] = ACTIONS(2452), + [anon_sym_override] = ACTIONS(2452), + [anon_sym_module] = ACTIONS(2452), + [anon_sym_any] = ACTIONS(2452), + [anon_sym_number] = ACTIONS(2452), + [anon_sym_boolean] = ACTIONS(2452), + [anon_sym_string] = ACTIONS(2452), + [anon_sym_symbol] = ACTIONS(2452), + [anon_sym_object] = ACTIONS(2452), + [anon_sym_abstract] = ACTIONS(2452), + [anon_sym_interface] = ACTIONS(2452), + [anon_sym_enum] = ACTIONS(2452), [sym_html_comment] = ACTIONS(5), }, [945] = { - [sym_import] = STATE(4909), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5858), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3328), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_asserts] = STATE(3002), - [sym_type] = STATE(3861), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_predicate] = STATE(3002), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(3626), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5355), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(3079), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_typeof] = ACTIONS(3083), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_new] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(3091), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3095), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(3097), - [anon_sym_asserts] = ACTIONS(3099), - [anon_sym_infer] = ACTIONS(3101), - [anon_sym_keyof] = ACTIONS(3103), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(3105), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_asserts] = STATE(2903), + [sym_type] = STATE(3066), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_predicate] = STATE(2903), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(3036), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(2958), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(2960), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_asserts] = ACTIONS(2962), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [946] = { - [sym_import] = STATE(4633), - [sym_nested_identifier] = STATE(5769), - [sym_string] = STATE(1504), - [sym_formal_parameters] = STATE(5757), - [sym_nested_type_identifier] = STATE(1480), - [sym__type_query_member_expression_in_type_annotation] = STATE(1481), - [sym__type_query_call_expression_in_type_annotation] = STATE(1491), - [sym_asserts] = STATE(1536), - [sym_type] = STATE(1538), - [sym_constructor_type] = STATE(1492), - [sym_primary_type] = STATE(1493), - [sym_template_literal_type] = STATE(1490), - [sym_infer_type] = STATE(1492), - [sym_conditional_type] = STATE(1490), - [sym_generic_type] = STATE(1490), - [sym_type_predicate] = STATE(1536), - [sym_type_query] = STATE(1490), - [sym_index_type_query] = STATE(1490), - [sym_lookup_type] = STATE(1490), - [sym_literal_type] = STATE(1490), - [sym__number] = STATE(1494), - [sym_existential_type] = STATE(1490), - [sym_flow_maybe_type] = STATE(1490), - [sym_parenthesized_type] = STATE(1490), - [sym_predefined_type] = STATE(1472), - [sym_object_type] = STATE(1490), - [sym_type_parameters] = STATE(5510), - [sym_array_type] = STATE(1490), - [sym_tuple_type] = STATE(1490), - [sym_readonly_type] = STATE(1492), - [sym_union_type] = STATE(1490), - [sym_intersection_type] = STATE(1490), - [sym_function_type] = STATE(1492), - [sym_identifier] = ACTIONS(3025), - [anon_sym_STAR] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_typeof] = ACTIONS(3031), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_PIPE] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3047), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3049), - [sym_number] = ACTIONS(3051), - [sym_this] = ACTIONS(3053), - [sym_true] = ACTIONS(3055), - [sym_false] = ACTIONS(3055), - [sym_null] = ACTIONS(3055), - [sym_undefined] = ACTIONS(3055), - [anon_sym_readonly] = ACTIONS(3057), - [anon_sym_QMARK] = ACTIONS(3059), - [anon_sym_any] = ACTIONS(3047), - [anon_sym_number] = ACTIONS(3047), - [anon_sym_boolean] = ACTIONS(3047), - [anon_sym_string] = ACTIONS(3047), - [anon_sym_symbol] = ACTIONS(3047), - [anon_sym_object] = ACTIONS(3047), - [anon_sym_abstract] = ACTIONS(3061), - [anon_sym_asserts] = ACTIONS(3063), - [anon_sym_infer] = ACTIONS(3065), - [anon_sym_keyof] = ACTIONS(3067), - [anon_sym_unique] = ACTIONS(3069), - [anon_sym_unknown] = ACTIONS(3047), - [anon_sym_never] = ACTIONS(3047), - [anon_sym_LBRACE_PIPE] = ACTIONS(3071), + [sym_identifier] = ACTIONS(2456), + [anon_sym_export] = ACTIONS(2456), + [anon_sym_type] = ACTIONS(2456), + [anon_sym_namespace] = ACTIONS(2456), + [anon_sym_LBRACE] = ACTIONS(2454), + [anon_sym_typeof] = ACTIONS(2456), + [anon_sym_import] = ACTIONS(2456), + [anon_sym_with] = ACTIONS(2456), + [anon_sym_var] = ACTIONS(2456), + [anon_sym_let] = ACTIONS(2456), + [anon_sym_const] = ACTIONS(2456), + [anon_sym_BANG] = ACTIONS(2454), + [anon_sym_if] = ACTIONS(2456), + [anon_sym_switch] = ACTIONS(2456), + [anon_sym_for] = ACTIONS(2456), + [anon_sym_LPAREN] = ACTIONS(2454), + [anon_sym_SEMI] = ACTIONS(2454), + [anon_sym_await] = ACTIONS(2456), + [anon_sym_while] = ACTIONS(2456), + [anon_sym_do] = ACTIONS(2456), + [anon_sym_try] = ACTIONS(2456), + [anon_sym_break] = ACTIONS(2456), + [anon_sym_continue] = ACTIONS(2456), + [anon_sym_debugger] = ACTIONS(2456), + [anon_sym_return] = ACTIONS(2456), + [anon_sym_throw] = ACTIONS(2456), + [anon_sym_yield] = ACTIONS(2456), + [anon_sym_LBRACK] = ACTIONS(2454), + [anon_sym_DQUOTE] = ACTIONS(2454), + [anon_sym_SQUOTE] = ACTIONS(2454), + [anon_sym_class] = ACTIONS(2456), + [anon_sym_async] = ACTIONS(2456), + [anon_sym_function] = ACTIONS(2456), + [anon_sym_new] = ACTIONS(2456), + [anon_sym_using] = ACTIONS(2456), + [anon_sym_PLUS] = ACTIONS(2456), + [anon_sym_DASH] = ACTIONS(2456), + [anon_sym_SLASH] = ACTIONS(2456), + [anon_sym_LT] = ACTIONS(2454), + [anon_sym_TILDE] = ACTIONS(2454), + [anon_sym_void] = ACTIONS(2456), + [anon_sym_delete] = ACTIONS(2456), + [anon_sym_PLUS_PLUS] = ACTIONS(2454), + [anon_sym_DASH_DASH] = ACTIONS(2454), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2454), + [sym_number] = ACTIONS(2454), + [sym_private_property_identifier] = ACTIONS(2454), + [sym_this] = ACTIONS(2456), + [sym_super] = ACTIONS(2456), + [sym_true] = ACTIONS(2456), + [sym_false] = ACTIONS(2456), + [sym_null] = ACTIONS(2456), + [sym_undefined] = ACTIONS(2456), + [anon_sym_AT] = ACTIONS(2454), + [anon_sym_static] = ACTIONS(2456), + [anon_sym_readonly] = ACTIONS(2456), + [anon_sym_get] = ACTIONS(2456), + [anon_sym_set] = ACTIONS(2456), + [anon_sym_declare] = ACTIONS(2456), + [anon_sym_public] = ACTIONS(2456), + [anon_sym_private] = ACTIONS(2456), + [anon_sym_protected] = ACTIONS(2456), + [anon_sym_override] = ACTIONS(2456), + [anon_sym_module] = ACTIONS(2456), + [anon_sym_any] = ACTIONS(2456), + [anon_sym_number] = ACTIONS(2456), + [anon_sym_boolean] = ACTIONS(2456), + [anon_sym_string] = ACTIONS(2456), + [anon_sym_symbol] = ACTIONS(2456), + [anon_sym_object] = ACTIONS(2456), + [anon_sym_abstract] = ACTIONS(2456), + [anon_sym_interface] = ACTIONS(2456), + [anon_sym_enum] = ACTIONS(2456), [sym_html_comment] = ACTIONS(5), }, [947] = { - [sym_import] = STATE(4635), - [sym_nested_identifier] = STATE(5854), - [sym_string] = STATE(1922), - [sym_formal_parameters] = STATE(5981), - [sym_nested_type_identifier] = STATE(1768), - [sym__type_query_member_expression_in_type_annotation] = STATE(1769), - [sym__type_query_call_expression_in_type_annotation] = STATE(1973), - [sym_asserts] = STATE(2009), - [sym_type] = STATE(2010), - [sym_constructor_type] = STATE(1980), - [sym_primary_type] = STATE(1981), - [sym_template_literal_type] = STATE(1907), - [sym_infer_type] = STATE(1980), - [sym_conditional_type] = STATE(1907), - [sym_generic_type] = STATE(1907), - [sym_type_predicate] = STATE(2009), - [sym_type_query] = STATE(1907), - [sym_index_type_query] = STATE(1907), - [sym_lookup_type] = STATE(1907), - [sym_literal_type] = STATE(1907), - [sym__number] = STATE(1987), - [sym_existential_type] = STATE(1907), - [sym_flow_maybe_type] = STATE(1907), - [sym_parenthesized_type] = STATE(1907), - [sym_predefined_type] = STATE(1792), - [sym_object_type] = STATE(1907), - [sym_type_parameters] = STATE(5335), - [sym_array_type] = STATE(1907), - [sym_tuple_type] = STATE(1907), - [sym_readonly_type] = STATE(1980), - [sym_union_type] = STATE(1907), - [sym_intersection_type] = STATE(1907), - [sym_function_type] = STATE(1980), - [sym_identifier] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_LBRACE] = ACTIONS(2981), - [anon_sym_typeof] = ACTIONS(2983), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_PIPE] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(2999), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3001), - [sym_number] = ACTIONS(3003), - [sym_this] = ACTIONS(3005), - [sym_true] = ACTIONS(3007), - [sym_false] = ACTIONS(3007), - [sym_null] = ACTIONS(3007), - [sym_undefined] = ACTIONS(3007), - [anon_sym_readonly] = ACTIONS(3009), - [anon_sym_QMARK] = ACTIONS(3011), - [anon_sym_any] = ACTIONS(2999), - [anon_sym_number] = ACTIONS(2999), - [anon_sym_boolean] = ACTIONS(2999), - [anon_sym_string] = ACTIONS(2999), - [anon_sym_symbol] = ACTIONS(2999), - [anon_sym_object] = ACTIONS(2999), - [anon_sym_abstract] = ACTIONS(3013), - [anon_sym_asserts] = ACTIONS(3015), - [anon_sym_infer] = ACTIONS(3017), - [anon_sym_keyof] = ACTIONS(3019), - [anon_sym_unique] = ACTIONS(3021), - [anon_sym_unknown] = ACTIONS(2999), - [anon_sym_never] = ACTIONS(2999), - [anon_sym_LBRACE_PIPE] = ACTIONS(3023), + [sym_import] = STATE(4648), + [sym_nested_identifier] = STATE(5899), + [sym_string] = STATE(1864), + [sym_formal_parameters] = STATE(5723), + [sym_nested_type_identifier] = STATE(1843), + [sym__type_query_member_expression_in_type_annotation] = STATE(1844), + [sym__type_query_call_expression_in_type_annotation] = STATE(1866), + [sym_asserts] = STATE(1944), + [sym_type] = STATE(1945), + [sym_constructor_type] = STATE(1867), + [sym_primary_type] = STATE(1868), + [sym_template_literal_type] = STATE(1863), + [sym_infer_type] = STATE(1867), + [sym_conditional_type] = STATE(1863), + [sym_generic_type] = STATE(1863), + [sym_type_predicate] = STATE(1944), + [sym_type_query] = STATE(1863), + [sym_index_type_query] = STATE(1863), + [sym_lookup_type] = STATE(1863), + [sym_literal_type] = STATE(1863), + [sym__number] = STATE(1869), + [sym_existential_type] = STATE(1863), + [sym_flow_maybe_type] = STATE(1863), + [sym_parenthesized_type] = STATE(1863), + [sym_predefined_type] = STATE(1840), + [sym_object_type] = STATE(1863), + [sym_type_parameters] = STATE(5380), + [sym_array_type] = STATE(1863), + [sym_tuple_type] = STATE(1863), + [sym_readonly_type] = STATE(1867), + [sym_union_type] = STATE(1863), + [sym_intersection_type] = STATE(1863), + [sym_function_type] = STATE(1867), + [sym_identifier] = ACTIONS(2996), + [anon_sym_STAR] = ACTIONS(2998), + [anon_sym_LBRACE] = ACTIONS(3000), + [anon_sym_typeof] = ACTIONS(3002), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3004), + [anon_sym_LPAREN] = ACTIONS(3006), + [anon_sym_LBRACK] = ACTIONS(3008), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_PIPE] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3016), + [anon_sym_DASH] = ACTIONS(3016), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(3018), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3020), + [sym_number] = ACTIONS(3022), + [sym_this] = ACTIONS(3024), + [sym_true] = ACTIONS(3026), + [sym_false] = ACTIONS(3026), + [sym_null] = ACTIONS(3026), + [sym_undefined] = ACTIONS(3026), + [anon_sym_readonly] = ACTIONS(3028), + [anon_sym_QMARK] = ACTIONS(3030), + [anon_sym_any] = ACTIONS(3018), + [anon_sym_number] = ACTIONS(3018), + [anon_sym_boolean] = ACTIONS(3018), + [anon_sym_string] = ACTIONS(3018), + [anon_sym_symbol] = ACTIONS(3018), + [anon_sym_object] = ACTIONS(3018), + [anon_sym_abstract] = ACTIONS(3032), + [anon_sym_asserts] = ACTIONS(3034), + [anon_sym_infer] = ACTIONS(3036), + [anon_sym_keyof] = ACTIONS(3038), + [anon_sym_unique] = ACTIONS(3040), + [anon_sym_unknown] = ACTIONS(3018), + [anon_sym_never] = ACTIONS(3018), + [anon_sym_LBRACE_PIPE] = ACTIONS(3042), [sym_html_comment] = ACTIONS(5), }, [948] = { - [sym_identifier] = ACTIONS(3167), - [anon_sym_export] = ACTIONS(3167), - [anon_sym_type] = ACTIONS(3167), - [anon_sym_EQ] = ACTIONS(3167), - [anon_sym_namespace] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3169), - [anon_sym_COMMA] = ACTIONS(3169), - [anon_sym_RBRACE] = ACTIONS(3169), - [anon_sym_typeof] = ACTIONS(3167), - [anon_sym_import] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_BANG] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3169), - [anon_sym_RPAREN] = ACTIONS(3169), - [anon_sym_await] = ACTIONS(3167), - [anon_sym_COLON] = ACTIONS(3169), - [anon_sym_yield] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3169), - [anon_sym_RBRACK] = ACTIONS(3169), - [sym_glimmer_opening_tag] = ACTIONS(3169), - [anon_sym_GT] = ACTIONS(3169), - [anon_sym_DOT] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3169), - [anon_sym_SQUOTE] = ACTIONS(3169), - [anon_sym_class] = ACTIONS(3167), - [anon_sym_async] = ACTIONS(3167), - [anon_sym_function] = ACTIONS(3167), - [anon_sym_EQ_GT] = ACTIONS(3169), - [anon_sym_QMARK_DOT] = ACTIONS(3169), - [anon_sym_new] = ACTIONS(3167), - [anon_sym_using] = ACTIONS(3167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3169), - [anon_sym_AMP] = ACTIONS(3169), - [anon_sym_PIPE] = ACTIONS(3169), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_SLASH] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3169), - [anon_sym_void] = ACTIONS(3167), - [anon_sym_delete] = ACTIONS(3167), - [anon_sym_PLUS_PLUS] = ACTIONS(3169), - [anon_sym_DASH_DASH] = ACTIONS(3169), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3169), - [sym_number] = ACTIONS(3169), - [sym_private_property_identifier] = ACTIONS(3169), - [sym_this] = ACTIONS(3167), - [sym_super] = ACTIONS(3167), - [sym_true] = ACTIONS(3167), - [sym_false] = ACTIONS(3167), - [sym_null] = ACTIONS(3167), - [sym_undefined] = ACTIONS(3167), - [anon_sym_AT] = ACTIONS(3169), - [anon_sym_static] = ACTIONS(3167), - [anon_sym_readonly] = ACTIONS(3167), - [anon_sym_get] = ACTIONS(3167), - [anon_sym_set] = ACTIONS(3167), - [anon_sym_QMARK] = ACTIONS(3167), - [anon_sym_declare] = ACTIONS(3167), - [anon_sym_public] = ACTIONS(3167), - [anon_sym_private] = ACTIONS(3167), - [anon_sym_protected] = ACTIONS(3167), - [anon_sym_override] = ACTIONS(3167), - [anon_sym_module] = ACTIONS(3167), - [anon_sym_any] = ACTIONS(3167), - [anon_sym_number] = ACTIONS(3167), - [anon_sym_boolean] = ACTIONS(3167), - [anon_sym_string] = ACTIONS(3167), - [anon_sym_symbol] = ACTIONS(3167), - [anon_sym_object] = ACTIONS(3167), - [anon_sym_abstract] = ACTIONS(3167), - [anon_sym_extends] = ACTIONS(3167), + [sym_identifier] = ACTIONS(3162), + [anon_sym_export] = ACTIONS(3162), + [anon_sym_type] = ACTIONS(3162), + [anon_sym_EQ] = ACTIONS(3162), + [anon_sym_namespace] = ACTIONS(3162), + [anon_sym_LBRACE] = ACTIONS(3164), + [anon_sym_COMMA] = ACTIONS(3164), + [anon_sym_RBRACE] = ACTIONS(3164), + [anon_sym_typeof] = ACTIONS(3162), + [anon_sym_import] = ACTIONS(3162), + [anon_sym_let] = ACTIONS(3162), + [anon_sym_BANG] = ACTIONS(3164), + [anon_sym_LPAREN] = ACTIONS(3164), + [anon_sym_RPAREN] = ACTIONS(3164), + [anon_sym_await] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3164), + [anon_sym_yield] = ACTIONS(3162), + [anon_sym_LBRACK] = ACTIONS(3164), + [anon_sym_RBRACK] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3164), + [anon_sym_DOT] = ACTIONS(3162), + [anon_sym_DQUOTE] = ACTIONS(3164), + [anon_sym_SQUOTE] = ACTIONS(3164), + [anon_sym_class] = ACTIONS(3162), + [anon_sym_async] = ACTIONS(3162), + [anon_sym_function] = ACTIONS(3162), + [anon_sym_EQ_GT] = ACTIONS(3164), + [anon_sym_QMARK_DOT] = ACTIONS(3164), + [anon_sym_new] = ACTIONS(3162), + [anon_sym_using] = ACTIONS(3162), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3164), + [anon_sym_AMP] = ACTIONS(3164), + [anon_sym_PIPE] = ACTIONS(3164), + [anon_sym_PLUS] = ACTIONS(3162), + [anon_sym_DASH] = ACTIONS(3162), + [anon_sym_SLASH] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_TILDE] = ACTIONS(3164), + [anon_sym_void] = ACTIONS(3162), + [anon_sym_delete] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3164), + [anon_sym_DASH_DASH] = ACTIONS(3164), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3164), + [sym_number] = ACTIONS(3164), + [sym_private_property_identifier] = ACTIONS(3164), + [sym_this] = ACTIONS(3162), + [sym_super] = ACTIONS(3162), + [sym_true] = ACTIONS(3162), + [sym_false] = ACTIONS(3162), + [sym_null] = ACTIONS(3162), + [sym_undefined] = ACTIONS(3162), + [anon_sym_AT] = ACTIONS(3164), + [anon_sym_static] = ACTIONS(3162), + [anon_sym_readonly] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3162), + [anon_sym_set] = ACTIONS(3162), + [anon_sym_QMARK] = ACTIONS(3162), + [anon_sym_declare] = ACTIONS(3162), + [anon_sym_public] = ACTIONS(3162), + [anon_sym_private] = ACTIONS(3162), + [anon_sym_protected] = ACTIONS(3162), + [anon_sym_override] = ACTIONS(3162), + [anon_sym_module] = ACTIONS(3162), + [anon_sym_any] = ACTIONS(3162), + [anon_sym_number] = ACTIONS(3162), + [anon_sym_boolean] = ACTIONS(3162), + [anon_sym_string] = ACTIONS(3162), + [anon_sym_symbol] = ACTIONS(3162), + [anon_sym_object] = ACTIONS(3162), + [anon_sym_abstract] = ACTIONS(3162), + [anon_sym_extends] = ACTIONS(3162), [sym_html_comment] = ACTIONS(5), }, [949] = { - [sym_identifier] = ACTIONS(3171), - [anon_sym_export] = ACTIONS(3171), - [anon_sym_type] = ACTIONS(3171), - [anon_sym_EQ] = ACTIONS(3171), - [anon_sym_namespace] = ACTIONS(3171), - [anon_sym_LBRACE] = ACTIONS(3173), - [anon_sym_COMMA] = ACTIONS(3173), - [anon_sym_RBRACE] = ACTIONS(3173), - [anon_sym_typeof] = ACTIONS(3171), - [anon_sym_import] = ACTIONS(3171), - [anon_sym_let] = ACTIONS(3171), - [anon_sym_BANG] = ACTIONS(3173), - [anon_sym_LPAREN] = ACTIONS(3173), - [anon_sym_RPAREN] = ACTIONS(3173), - [anon_sym_await] = ACTIONS(3171), - [anon_sym_COLON] = ACTIONS(3173), - [anon_sym_yield] = ACTIONS(3171), - [anon_sym_LBRACK] = ACTIONS(3173), - [anon_sym_RBRACK] = ACTIONS(3173), - [sym_glimmer_opening_tag] = ACTIONS(3173), - [anon_sym_GT] = ACTIONS(3173), - [anon_sym_DOT] = ACTIONS(3171), - [anon_sym_DQUOTE] = ACTIONS(3173), - [anon_sym_SQUOTE] = ACTIONS(3173), - [anon_sym_class] = ACTIONS(3171), - [anon_sym_async] = ACTIONS(3171), - [anon_sym_function] = ACTIONS(3171), - [anon_sym_EQ_GT] = ACTIONS(3173), - [anon_sym_QMARK_DOT] = ACTIONS(3173), - [anon_sym_new] = ACTIONS(3171), - [anon_sym_using] = ACTIONS(3171), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3173), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_PIPE] = ACTIONS(3173), - [anon_sym_PLUS] = ACTIONS(3171), - [anon_sym_DASH] = ACTIONS(3171), - [anon_sym_SLASH] = ACTIONS(3171), - [anon_sym_LT] = ACTIONS(3171), - [anon_sym_TILDE] = ACTIONS(3173), - [anon_sym_void] = ACTIONS(3171), - [anon_sym_delete] = ACTIONS(3171), - [anon_sym_PLUS_PLUS] = ACTIONS(3173), - [anon_sym_DASH_DASH] = ACTIONS(3173), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3173), - [sym_number] = ACTIONS(3173), - [sym_private_property_identifier] = ACTIONS(3173), - [sym_this] = ACTIONS(3171), - [sym_super] = ACTIONS(3171), - [sym_true] = ACTIONS(3171), - [sym_false] = ACTIONS(3171), - [sym_null] = ACTIONS(3171), - [sym_undefined] = ACTIONS(3171), - [anon_sym_AT] = ACTIONS(3173), - [anon_sym_static] = ACTIONS(3171), - [anon_sym_readonly] = ACTIONS(3171), - [anon_sym_get] = ACTIONS(3171), - [anon_sym_set] = ACTIONS(3171), - [anon_sym_QMARK] = ACTIONS(3171), - [anon_sym_declare] = ACTIONS(3171), - [anon_sym_public] = ACTIONS(3171), - [anon_sym_private] = ACTIONS(3171), - [anon_sym_protected] = ACTIONS(3171), - [anon_sym_override] = ACTIONS(3171), - [anon_sym_module] = ACTIONS(3171), - [anon_sym_any] = ACTIONS(3171), - [anon_sym_number] = ACTIONS(3171), - [anon_sym_boolean] = ACTIONS(3171), - [anon_sym_string] = ACTIONS(3171), - [anon_sym_symbol] = ACTIONS(3171), - [anon_sym_object] = ACTIONS(3171), - [anon_sym_abstract] = ACTIONS(3171), - [anon_sym_extends] = ACTIONS(3171), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3909), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(3166), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [950] = { - [sym_identifier] = ACTIONS(3175), - [anon_sym_export] = ACTIONS(3175), - [anon_sym_type] = ACTIONS(3175), - [anon_sym_EQ] = ACTIONS(3175), - [anon_sym_namespace] = ACTIONS(3175), - [anon_sym_LBRACE] = ACTIONS(3177), - [anon_sym_COMMA] = ACTIONS(3177), - [anon_sym_RBRACE] = ACTIONS(3177), - [anon_sym_typeof] = ACTIONS(3175), - [anon_sym_import] = ACTIONS(3175), - [anon_sym_let] = ACTIONS(3175), - [anon_sym_BANG] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3177), - [anon_sym_RPAREN] = ACTIONS(3177), - [anon_sym_await] = ACTIONS(3175), - [anon_sym_COLON] = ACTIONS(3177), - [anon_sym_yield] = ACTIONS(3175), - [anon_sym_LBRACK] = ACTIONS(3177), - [anon_sym_RBRACK] = ACTIONS(3177), - [sym_glimmer_opening_tag] = ACTIONS(3177), - [anon_sym_GT] = ACTIONS(3177), - [anon_sym_DOT] = ACTIONS(3175), - [anon_sym_DQUOTE] = ACTIONS(3177), - [anon_sym_SQUOTE] = ACTIONS(3177), - [anon_sym_class] = ACTIONS(3175), - [anon_sym_async] = ACTIONS(3175), - [anon_sym_function] = ACTIONS(3175), - [anon_sym_EQ_GT] = ACTIONS(3177), - [anon_sym_QMARK_DOT] = ACTIONS(3177), - [anon_sym_new] = ACTIONS(3175), - [anon_sym_using] = ACTIONS(3175), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3177), - [anon_sym_AMP] = ACTIONS(3177), - [anon_sym_PIPE] = ACTIONS(3177), - [anon_sym_PLUS] = ACTIONS(3175), - [anon_sym_DASH] = ACTIONS(3175), - [anon_sym_SLASH] = ACTIONS(3175), - [anon_sym_LT] = ACTIONS(3175), - [anon_sym_TILDE] = ACTIONS(3177), - [anon_sym_void] = ACTIONS(3175), - [anon_sym_delete] = ACTIONS(3175), - [anon_sym_PLUS_PLUS] = ACTIONS(3177), - [anon_sym_DASH_DASH] = ACTIONS(3177), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3177), - [sym_number] = ACTIONS(3177), - [sym_private_property_identifier] = ACTIONS(3177), - [sym_this] = ACTIONS(3175), - [sym_super] = ACTIONS(3175), - [sym_true] = ACTIONS(3175), - [sym_false] = ACTIONS(3175), - [sym_null] = ACTIONS(3175), - [sym_undefined] = ACTIONS(3175), - [anon_sym_AT] = ACTIONS(3177), - [anon_sym_static] = ACTIONS(3175), - [anon_sym_readonly] = ACTIONS(3175), - [anon_sym_get] = ACTIONS(3175), - [anon_sym_set] = ACTIONS(3175), - [anon_sym_QMARK] = ACTIONS(3175), - [anon_sym_declare] = ACTIONS(3175), - [anon_sym_public] = ACTIONS(3175), - [anon_sym_private] = ACTIONS(3175), - [anon_sym_protected] = ACTIONS(3175), - [anon_sym_override] = ACTIONS(3175), - [anon_sym_module] = ACTIONS(3175), - [anon_sym_any] = ACTIONS(3175), - [anon_sym_number] = ACTIONS(3175), - [anon_sym_boolean] = ACTIONS(3175), - [anon_sym_string] = ACTIONS(3175), - [anon_sym_symbol] = ACTIONS(3175), - [anon_sym_object] = ACTIONS(3175), - [anon_sym_abstract] = ACTIONS(3175), - [anon_sym_extends] = ACTIONS(3175), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(4488), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [951] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3911), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_GT] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3909), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [952] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3911), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_GT] = ACTIONS(3181), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3909), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(3172), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [953] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3918), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(3183), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [sym_jsx_identifier] = ACTIONS(3185), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(4527), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(3174), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [954] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3911), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_GT] = ACTIONS(3187), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3909), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(3176), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [955] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4501), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_RBRACK] = ACTIONS(3189), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3909), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [956] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3911), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_GT] = ACTIONS(3191), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3909), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(3180), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [957] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3911), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_GT] = ACTIONS(3193), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_identifier] = ACTIONS(3182), + [anon_sym_export] = ACTIONS(3182), + [anon_sym_type] = ACTIONS(3182), + [anon_sym_EQ] = ACTIONS(3182), + [anon_sym_namespace] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(3184), + [anon_sym_COMMA] = ACTIONS(3184), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_typeof] = ACTIONS(3182), + [anon_sym_import] = ACTIONS(3182), + [anon_sym_let] = ACTIONS(3182), + [anon_sym_BANG] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(3184), + [anon_sym_RPAREN] = ACTIONS(3184), + [anon_sym_await] = ACTIONS(3182), + [anon_sym_COLON] = ACTIONS(3184), + [anon_sym_yield] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(3184), + [anon_sym_RBRACK] = ACTIONS(3184), + [anon_sym_GT] = ACTIONS(3184), + [anon_sym_DOT] = ACTIONS(3182), + [anon_sym_DQUOTE] = ACTIONS(3184), + [anon_sym_SQUOTE] = ACTIONS(3184), + [anon_sym_class] = ACTIONS(3182), + [anon_sym_async] = ACTIONS(3182), + [anon_sym_function] = ACTIONS(3182), + [anon_sym_EQ_GT] = ACTIONS(3184), + [anon_sym_QMARK_DOT] = ACTIONS(3184), + [anon_sym_new] = ACTIONS(3182), + [anon_sym_using] = ACTIONS(3182), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3184), + [anon_sym_AMP] = ACTIONS(3184), + [anon_sym_PIPE] = ACTIONS(3184), + [anon_sym_PLUS] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_SLASH] = ACTIONS(3182), + [anon_sym_LT] = ACTIONS(3184), + [anon_sym_TILDE] = ACTIONS(3184), + [anon_sym_void] = ACTIONS(3182), + [anon_sym_delete] = ACTIONS(3182), + [anon_sym_PLUS_PLUS] = ACTIONS(3184), + [anon_sym_DASH_DASH] = ACTIONS(3184), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3184), + [sym_number] = ACTIONS(3184), + [sym_private_property_identifier] = ACTIONS(3184), + [sym_this] = ACTIONS(3182), + [sym_super] = ACTIONS(3182), + [sym_true] = ACTIONS(3182), + [sym_false] = ACTIONS(3182), + [sym_null] = ACTIONS(3182), + [sym_undefined] = ACTIONS(3182), + [anon_sym_AT] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3182), + [anon_sym_readonly] = ACTIONS(3182), + [anon_sym_get] = ACTIONS(3182), + [anon_sym_set] = ACTIONS(3182), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_declare] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3182), + [anon_sym_private] = ACTIONS(3182), + [anon_sym_protected] = ACTIONS(3182), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_module] = ACTIONS(3182), + [anon_sym_any] = ACTIONS(3182), + [anon_sym_number] = ACTIONS(3182), + [anon_sym_boolean] = ACTIONS(3182), + [anon_sym_string] = ACTIONS(3182), + [anon_sym_symbol] = ACTIONS(3182), + [anon_sym_object] = ACTIONS(3182), + [anon_sym_abstract] = ACTIONS(3182), + [anon_sym_extends] = ACTIONS(3182), [sym_html_comment] = ACTIONS(5), }, [958] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3911), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_GT] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_identifier] = ACTIONS(3186), + [anon_sym_export] = ACTIONS(3186), + [anon_sym_type] = ACTIONS(3186), + [anon_sym_EQ] = ACTIONS(3186), + [anon_sym_namespace] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(3188), + [anon_sym_COMMA] = ACTIONS(3188), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_typeof] = ACTIONS(3186), + [anon_sym_import] = ACTIONS(3186), + [anon_sym_let] = ACTIONS(3186), + [anon_sym_BANG] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(3188), + [anon_sym_RPAREN] = ACTIONS(3188), + [anon_sym_await] = ACTIONS(3186), + [anon_sym_COLON] = ACTIONS(3188), + [anon_sym_yield] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_RBRACK] = ACTIONS(3188), + [anon_sym_GT] = ACTIONS(3188), + [anon_sym_DOT] = ACTIONS(3186), + [anon_sym_DQUOTE] = ACTIONS(3188), + [anon_sym_SQUOTE] = ACTIONS(3188), + [anon_sym_class] = ACTIONS(3186), + [anon_sym_async] = ACTIONS(3186), + [anon_sym_function] = ACTIONS(3186), + [anon_sym_EQ_GT] = ACTIONS(3188), + [anon_sym_QMARK_DOT] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3186), + [anon_sym_using] = ACTIONS(3186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3188), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_PIPE] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_LT] = ACTIONS(3188), + [anon_sym_TILDE] = ACTIONS(3188), + [anon_sym_void] = ACTIONS(3186), + [anon_sym_delete] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3188), + [anon_sym_DASH_DASH] = ACTIONS(3188), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3188), + [sym_number] = ACTIONS(3188), + [sym_private_property_identifier] = ACTIONS(3188), + [sym_this] = ACTIONS(3186), + [sym_super] = ACTIONS(3186), + [sym_true] = ACTIONS(3186), + [sym_false] = ACTIONS(3186), + [sym_null] = ACTIONS(3186), + [sym_undefined] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(3188), + [anon_sym_static] = ACTIONS(3186), + [anon_sym_readonly] = ACTIONS(3186), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_QMARK] = ACTIONS(3186), + [anon_sym_declare] = ACTIONS(3186), + [anon_sym_public] = ACTIONS(3186), + [anon_sym_private] = ACTIONS(3186), + [anon_sym_protected] = ACTIONS(3186), + [anon_sym_override] = ACTIONS(3186), + [anon_sym_module] = ACTIONS(3186), + [anon_sym_any] = ACTIONS(3186), + [anon_sym_number] = ACTIONS(3186), + [anon_sym_boolean] = ACTIONS(3186), + [anon_sym_string] = ACTIONS(3186), + [anon_sym_symbol] = ACTIONS(3186), + [anon_sym_object] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3186), + [anon_sym_extends] = ACTIONS(3186), [sym_html_comment] = ACTIONS(5), }, [959] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3911), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_GT] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3909), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [960] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3911), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_GT] = ACTIONS(3199), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3798), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [sym_jsx_identifier] = ACTIONS(3194), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [961] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3911), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_GT] = ACTIONS(3201), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3909), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(3196), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [962] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3911), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_GT] = ACTIONS(3203), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3909), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(3198), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [963] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3911), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_GT] = ACTIONS(3205), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3909), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(3200), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [964] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4508), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_RBRACK] = ACTIONS(3207), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3909), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(3202), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [965] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4479), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_RBRACK] = ACTIONS(3209), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3909), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [966] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3911), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_GT] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(4485), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(3206), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [967] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3911), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_GT] = ACTIONS(3213), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3909), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(3208), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [968] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4530), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_RBRACK] = ACTIONS(3215), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(4560), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [969] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3911), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3909), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(3212), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [970] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4578), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_RBRACK] = ACTIONS(3219), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(4525), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(3214), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [971] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4513), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(4633), + [sym_nested_identifier] = STATE(5639), + [sym_string] = STATE(1509), + [sym_formal_parameters] = STATE(5732), + [sym_nested_type_identifier] = STATE(1485), + [sym__type_query_member_expression_in_type_annotation] = STATE(1482), + [sym__type_query_call_expression_in_type_annotation] = STATE(1512), + [sym_type] = STATE(1526), + [sym_constructor_type] = STATE(1513), + [sym_primary_type] = STATE(1514), + [sym_template_literal_type] = STATE(1508), + [sym_infer_type] = STATE(1513), + [sym_conditional_type] = STATE(1508), + [sym_generic_type] = STATE(1508), + [sym_type_query] = STATE(1508), + [sym_index_type_query] = STATE(1508), + [sym_lookup_type] = STATE(1508), + [sym_literal_type] = STATE(1508), + [sym__number] = STATE(1515), + [sym_existential_type] = STATE(1508), + [sym_flow_maybe_type] = STATE(1508), + [sym_parenthesized_type] = STATE(1508), + [sym_predefined_type] = STATE(1508), + [sym_object_type] = STATE(1508), + [sym_type_parameters] = STATE(5328), + [sym_array_type] = STATE(1508), + [sym_tuple_type] = STATE(1508), + [sym_readonly_type] = STATE(1513), + [sym_union_type] = STATE(1508), + [sym_intersection_type] = STATE(1508), + [sym_function_type] = STATE(1513), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_typeof] = ACTIONS(3114), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_new] = ACTIONS(3122), + [anon_sym_AMP] = ACTIONS(3124), + [anon_sym_PIPE] = ACTIONS(3126), + [anon_sym_PLUS] = ACTIONS(3128), + [anon_sym_DASH] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(3130), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3132), + [sym_number] = ACTIONS(3134), + [sym_this] = ACTIONS(3218), + [sym_true] = ACTIONS(3138), + [sym_false] = ACTIONS(3138), + [sym_null] = ACTIONS(3138), + [sym_undefined] = ACTIONS(3138), + [anon_sym_readonly] = ACTIONS(3140), + [anon_sym_QMARK] = ACTIONS(3142), + [anon_sym_any] = ACTIONS(3130), + [anon_sym_number] = ACTIONS(3130), + [anon_sym_boolean] = ACTIONS(3130), + [anon_sym_string] = ACTIONS(3130), + [anon_sym_symbol] = ACTIONS(3130), + [anon_sym_object] = ACTIONS(3130), + [anon_sym_abstract] = ACTIONS(3144), + [anon_sym_infer] = ACTIONS(3148), + [anon_sym_keyof] = ACTIONS(3150), + [anon_sym_unique] = ACTIONS(3152), + [anon_sym_unknown] = ACTIONS(3130), + [anon_sym_never] = ACTIONS(3130), + [anon_sym_LBRACE_PIPE] = ACTIONS(3154), [sym_html_comment] = ACTIONS(5), }, [972] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4603), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(5153), + [sym_nested_identifier] = STATE(5834), + [sym_string] = STATE(3213), + [sym_formal_parameters] = STATE(5829), + [sym_nested_type_identifier] = STATE(3070), + [sym__type_query_member_expression_in_type_annotation] = STATE(3029), + [sym__type_query_call_expression_in_type_annotation] = STATE(3159), + [sym_type] = STATE(3193), + [sym_constructor_type] = STATE(3218), + [sym_primary_type] = STATE(3257), + [sym_template_literal_type] = STATE(3211), + [sym_infer_type] = STATE(3218), + [sym_conditional_type] = STATE(3211), + [sym_generic_type] = STATE(3211), + [sym_type_query] = STATE(3211), + [sym_index_type_query] = STATE(3211), + [sym_lookup_type] = STATE(3211), + [sym_literal_type] = STATE(3211), + [sym__number] = STATE(3219), + [sym_existential_type] = STATE(3211), + [sym_flow_maybe_type] = STATE(3211), + [sym_parenthesized_type] = STATE(3211), + [sym_predefined_type] = STATE(3211), + [sym_object_type] = STATE(3211), + [sym_type_parameters] = STATE(5268), + [sym_array_type] = STATE(3211), + [sym_tuple_type] = STATE(3211), + [sym_readonly_type] = STATE(3218), + [sym_union_type] = STATE(3211), + [sym_intersection_type] = STATE(3211), + [sym_function_type] = STATE(3218), + [sym_identifier] = ACTIONS(1571), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_new] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(2948), + [anon_sym_DASH] = ACTIONS(2948), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(1031), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1595), + [sym_number] = ACTIONS(1597), + [sym_this] = ACTIONS(1599), + [sym_true] = ACTIONS(1601), + [sym_false] = ACTIONS(1601), + [sym_null] = ACTIONS(1601), + [sym_undefined] = ACTIONS(1601), + [anon_sym_readonly] = ACTIONS(1603), + [anon_sym_QMARK] = ACTIONS(1019), + [anon_sym_any] = ACTIONS(1031), + [anon_sym_number] = ACTIONS(1031), + [anon_sym_boolean] = ACTIONS(1031), + [anon_sym_string] = ACTIONS(1031), + [anon_sym_symbol] = ACTIONS(1031), + [anon_sym_object] = ACTIONS(1031), + [anon_sym_abstract] = ACTIONS(1023), + [anon_sym_infer] = ACTIONS(1025), + [anon_sym_keyof] = ACTIONS(1027), + [anon_sym_unique] = ACTIONS(1029), + [anon_sym_unknown] = ACTIONS(1031), + [anon_sym_never] = ACTIONS(1031), + [anon_sym_LBRACE_PIPE] = ACTIONS(1033), [sym_html_comment] = ACTIONS(5), }, [973] = { - [sym_import] = STATE(4668), - [sym_nested_identifier] = STATE(5986), - [sym_string] = STATE(3335), - [sym_formal_parameters] = STATE(5649), - [sym_nested_type_identifier] = STATE(3222), - [sym__type_query_member_expression_in_type_annotation] = STATE(3169), - [sym__type_query_call_expression_in_type_annotation] = STATE(3271), - [sym_type] = STATE(3433), - [sym_constructor_type] = STATE(3347), - [sym_primary_type] = STATE(3352), - [sym_template_literal_type] = STATE(3330), - [sym_infer_type] = STATE(3347), - [sym_conditional_type] = STATE(3330), - [sym_generic_type] = STATE(3330), - [sym_type_query] = STATE(3330), - [sym_index_type_query] = STATE(3330), - [sym_lookup_type] = STATE(3330), - [sym_literal_type] = STATE(3330), - [sym__number] = STATE(3353), - [sym_existential_type] = STATE(3330), - [sym_flow_maybe_type] = STATE(3330), - [sym_parenthesized_type] = STATE(3330), - [sym_predefined_type] = STATE(3330), - [sym_object_type] = STATE(3330), - [sym_type_parameters] = STATE(5245), - [sym_array_type] = STATE(3330), - [sym_tuple_type] = STATE(3330), - [sym_readonly_type] = STATE(3347), - [sym_union_type] = STATE(3330), - [sym_intersection_type] = STATE(3330), - [sym_function_type] = STATE(3347), - [sym_identifier] = ACTIONS(3221), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3119), - [anon_sym_typeof] = ACTIONS(3121), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_DQUOTE] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3131), - [anon_sym_new] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3141), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3143), - [sym_number] = ACTIONS(3145), - [sym_this] = ACTIONS(3223), - [sym_true] = ACTIONS(3149), - [sym_false] = ACTIONS(3149), - [sym_null] = ACTIONS(3149), - [sym_undefined] = ACTIONS(3149), - [anon_sym_readonly] = ACTIONS(3151), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_any] = ACTIONS(3141), - [anon_sym_number] = ACTIONS(3141), - [anon_sym_boolean] = ACTIONS(3141), - [anon_sym_string] = ACTIONS(3141), - [anon_sym_symbol] = ACTIONS(3141), - [anon_sym_object] = ACTIONS(3141), - [anon_sym_abstract] = ACTIONS(3155), - [anon_sym_infer] = ACTIONS(3159), - [anon_sym_keyof] = ACTIONS(3161), - [anon_sym_unique] = ACTIONS(3163), - [anon_sym_unknown] = ACTIONS(3141), - [anon_sym_never] = ACTIONS(3141), - [anon_sym_LBRACE_PIPE] = ACTIONS(3165), + [sym_import] = STATE(5153), + [sym_nested_identifier] = STATE(5834), + [sym_string] = STATE(3213), + [sym_formal_parameters] = STATE(5829), + [sym_nested_type_identifier] = STATE(3070), + [sym__type_query_member_expression_in_type_annotation] = STATE(3029), + [sym__type_query_call_expression_in_type_annotation] = STATE(3159), + [sym_type] = STATE(3194), + [sym_constructor_type] = STATE(3218), + [sym_primary_type] = STATE(3257), + [sym_template_literal_type] = STATE(3211), + [sym_infer_type] = STATE(3218), + [sym_conditional_type] = STATE(3211), + [sym_generic_type] = STATE(3211), + [sym_type_query] = STATE(3211), + [sym_index_type_query] = STATE(3211), + [sym_lookup_type] = STATE(3211), + [sym_literal_type] = STATE(3211), + [sym__number] = STATE(3219), + [sym_existential_type] = STATE(3211), + [sym_flow_maybe_type] = STATE(3211), + [sym_parenthesized_type] = STATE(3211), + [sym_predefined_type] = STATE(3211), + [sym_object_type] = STATE(3211), + [sym_type_parameters] = STATE(5268), + [sym_array_type] = STATE(3211), + [sym_tuple_type] = STATE(3211), + [sym_readonly_type] = STATE(3218), + [sym_union_type] = STATE(3211), + [sym_intersection_type] = STATE(3211), + [sym_function_type] = STATE(3218), + [sym_identifier] = ACTIONS(1571), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_new] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(2948), + [anon_sym_DASH] = ACTIONS(2948), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(1031), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1595), + [sym_number] = ACTIONS(1597), + [sym_this] = ACTIONS(1599), + [sym_true] = ACTIONS(1601), + [sym_false] = ACTIONS(1601), + [sym_null] = ACTIONS(1601), + [sym_undefined] = ACTIONS(1601), + [anon_sym_readonly] = ACTIONS(1603), + [anon_sym_QMARK] = ACTIONS(1019), + [anon_sym_any] = ACTIONS(1031), + [anon_sym_number] = ACTIONS(1031), + [anon_sym_boolean] = ACTIONS(1031), + [anon_sym_string] = ACTIONS(1031), + [anon_sym_symbol] = ACTIONS(1031), + [anon_sym_object] = ACTIONS(1031), + [anon_sym_abstract] = ACTIONS(1023), + [anon_sym_infer] = ACTIONS(1025), + [anon_sym_keyof] = ACTIONS(1027), + [anon_sym_unique] = ACTIONS(1029), + [anon_sym_unknown] = ACTIONS(1031), + [anon_sym_never] = ACTIONS(1031), + [anon_sym_LBRACE_PIPE] = ACTIONS(1033), [sym_html_comment] = ACTIONS(5), }, [974] = { - [sym_import] = STATE(4668), - [sym_nested_identifier] = STATE(5986), - [sym_string] = STATE(3335), - [sym_formal_parameters] = STATE(5649), - [sym_nested_type_identifier] = STATE(3222), - [sym__type_query_member_expression_in_type_annotation] = STATE(3169), - [sym__type_query_call_expression_in_type_annotation] = STATE(3271), - [sym_type] = STATE(3434), - [sym_constructor_type] = STATE(3347), - [sym_primary_type] = STATE(3352), - [sym_template_literal_type] = STATE(3330), - [sym_infer_type] = STATE(3347), - [sym_conditional_type] = STATE(3330), - [sym_generic_type] = STATE(3330), - [sym_type_query] = STATE(3330), - [sym_index_type_query] = STATE(3330), - [sym_lookup_type] = STATE(3330), - [sym_literal_type] = STATE(3330), - [sym__number] = STATE(3353), - [sym_existential_type] = STATE(3330), - [sym_flow_maybe_type] = STATE(3330), - [sym_parenthesized_type] = STATE(3330), - [sym_predefined_type] = STATE(3330), - [sym_object_type] = STATE(3330), - [sym_type_parameters] = STATE(5245), - [sym_array_type] = STATE(3330), - [sym_tuple_type] = STATE(3330), - [sym_readonly_type] = STATE(3347), - [sym_union_type] = STATE(3330), - [sym_intersection_type] = STATE(3330), - [sym_function_type] = STATE(3347), - [sym_identifier] = ACTIONS(3221), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3119), - [anon_sym_typeof] = ACTIONS(3121), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_DQUOTE] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3131), - [anon_sym_new] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3141), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3143), - [sym_number] = ACTIONS(3145), - [sym_this] = ACTIONS(3223), - [sym_true] = ACTIONS(3149), - [sym_false] = ACTIONS(3149), - [sym_null] = ACTIONS(3149), - [sym_undefined] = ACTIONS(3149), - [anon_sym_readonly] = ACTIONS(3151), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_any] = ACTIONS(3141), - [anon_sym_number] = ACTIONS(3141), - [anon_sym_boolean] = ACTIONS(3141), - [anon_sym_string] = ACTIONS(3141), - [anon_sym_symbol] = ACTIONS(3141), - [anon_sym_object] = ACTIONS(3141), - [anon_sym_abstract] = ACTIONS(3155), - [anon_sym_infer] = ACTIONS(3159), - [anon_sym_keyof] = ACTIONS(3161), - [anon_sym_unique] = ACTIONS(3163), - [anon_sym_unknown] = ACTIONS(3141), - [anon_sym_never] = ACTIONS(3141), - [anon_sym_LBRACE_PIPE] = ACTIONS(3165), + [sym_import] = STATE(5153), + [sym_nested_identifier] = STATE(5834), + [sym_string] = STATE(3213), + [sym_formal_parameters] = STATE(5829), + [sym_nested_type_identifier] = STATE(3070), + [sym__type_query_member_expression_in_type_annotation] = STATE(3029), + [sym__type_query_call_expression_in_type_annotation] = STATE(3159), + [sym_type] = STATE(3201), + [sym_constructor_type] = STATE(3218), + [sym_primary_type] = STATE(3257), + [sym_template_literal_type] = STATE(3211), + [sym_infer_type] = STATE(3218), + [sym_conditional_type] = STATE(3211), + [sym_generic_type] = STATE(3211), + [sym_type_query] = STATE(3211), + [sym_index_type_query] = STATE(3211), + [sym_lookup_type] = STATE(3211), + [sym_literal_type] = STATE(3211), + [sym__number] = STATE(3219), + [sym_existential_type] = STATE(3211), + [sym_flow_maybe_type] = STATE(3211), + [sym_parenthesized_type] = STATE(3211), + [sym_predefined_type] = STATE(3211), + [sym_object_type] = STATE(3211), + [sym_type_parameters] = STATE(5268), + [sym_array_type] = STATE(3211), + [sym_tuple_type] = STATE(3211), + [sym_readonly_type] = STATE(3218), + [sym_union_type] = STATE(3211), + [sym_intersection_type] = STATE(3211), + [sym_function_type] = STATE(3218), + [sym_identifier] = ACTIONS(1571), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_new] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(2948), + [anon_sym_DASH] = ACTIONS(2948), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(1031), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1595), + [sym_number] = ACTIONS(1597), + [sym_this] = ACTIONS(1599), + [sym_true] = ACTIONS(1601), + [sym_false] = ACTIONS(1601), + [sym_null] = ACTIONS(1601), + [sym_undefined] = ACTIONS(1601), + [anon_sym_readonly] = ACTIONS(1603), + [anon_sym_QMARK] = ACTIONS(1019), + [anon_sym_any] = ACTIONS(1031), + [anon_sym_number] = ACTIONS(1031), + [anon_sym_boolean] = ACTIONS(1031), + [anon_sym_string] = ACTIONS(1031), + [anon_sym_symbol] = ACTIONS(1031), + [anon_sym_object] = ACTIONS(1031), + [anon_sym_abstract] = ACTIONS(1023), + [anon_sym_infer] = ACTIONS(1025), + [anon_sym_keyof] = ACTIONS(1027), + [anon_sym_unique] = ACTIONS(1029), + [anon_sym_unknown] = ACTIONS(1031), + [anon_sym_never] = ACTIONS(1031), + [anon_sym_LBRACE_PIPE] = ACTIONS(1033), [sym_html_comment] = ACTIONS(5), }, [975] = { - [sym_import] = STATE(4668), - [sym_nested_identifier] = STATE(5986), - [sym_string] = STATE(3335), - [sym_formal_parameters] = STATE(5649), - [sym_nested_type_identifier] = STATE(3222), - [sym__type_query_member_expression_in_type_annotation] = STATE(3169), - [sym__type_query_call_expression_in_type_annotation] = STATE(3271), - [sym_type] = STATE(3456), - [sym_constructor_type] = STATE(3347), - [sym_primary_type] = STATE(3352), - [sym_template_literal_type] = STATE(3330), - [sym_infer_type] = STATE(3347), - [sym_conditional_type] = STATE(3330), - [sym_generic_type] = STATE(3330), - [sym_type_query] = STATE(3330), - [sym_index_type_query] = STATE(3330), - [sym_lookup_type] = STATE(3330), - [sym_literal_type] = STATE(3330), - [sym__number] = STATE(3353), - [sym_existential_type] = STATE(3330), - [sym_flow_maybe_type] = STATE(3330), - [sym_parenthesized_type] = STATE(3330), - [sym_predefined_type] = STATE(3330), - [sym_object_type] = STATE(3330), - [sym_type_parameters] = STATE(5245), - [sym_array_type] = STATE(3330), - [sym_tuple_type] = STATE(3330), - [sym_readonly_type] = STATE(3347), - [sym_union_type] = STATE(3330), - [sym_intersection_type] = STATE(3330), - [sym_function_type] = STATE(3347), - [sym_identifier] = ACTIONS(3221), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3119), - [anon_sym_typeof] = ACTIONS(3121), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_DQUOTE] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3131), - [anon_sym_new] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3141), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3143), - [sym_number] = ACTIONS(3145), - [sym_this] = ACTIONS(3223), - [sym_true] = ACTIONS(3149), - [sym_false] = ACTIONS(3149), - [sym_null] = ACTIONS(3149), - [sym_undefined] = ACTIONS(3149), - [anon_sym_readonly] = ACTIONS(3151), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_any] = ACTIONS(3141), - [anon_sym_number] = ACTIONS(3141), - [anon_sym_boolean] = ACTIONS(3141), - [anon_sym_string] = ACTIONS(3141), - [anon_sym_symbol] = ACTIONS(3141), - [anon_sym_object] = ACTIONS(3141), - [anon_sym_abstract] = ACTIONS(3155), - [anon_sym_infer] = ACTIONS(3159), - [anon_sym_keyof] = ACTIONS(3161), - [anon_sym_unique] = ACTIONS(3163), - [anon_sym_unknown] = ACTIONS(3141), - [anon_sym_never] = ACTIONS(3141), - [anon_sym_LBRACE_PIPE] = ACTIONS(3165), + [sym_import] = STATE(5153), + [sym_nested_identifier] = STATE(5834), + [sym_string] = STATE(3213), + [sym_formal_parameters] = STATE(5829), + [sym_nested_type_identifier] = STATE(3070), + [sym__type_query_member_expression_in_type_annotation] = STATE(3029), + [sym__type_query_call_expression_in_type_annotation] = STATE(3159), + [sym_type] = STATE(3202), + [sym_constructor_type] = STATE(3218), + [sym_primary_type] = STATE(3257), + [sym_template_literal_type] = STATE(3211), + [sym_infer_type] = STATE(3218), + [sym_conditional_type] = STATE(3211), + [sym_generic_type] = STATE(3211), + [sym_type_query] = STATE(3211), + [sym_index_type_query] = STATE(3211), + [sym_lookup_type] = STATE(3211), + [sym_literal_type] = STATE(3211), + [sym__number] = STATE(3219), + [sym_existential_type] = STATE(3211), + [sym_flow_maybe_type] = STATE(3211), + [sym_parenthesized_type] = STATE(3211), + [sym_predefined_type] = STATE(3211), + [sym_object_type] = STATE(3211), + [sym_type_parameters] = STATE(5268), + [sym_array_type] = STATE(3211), + [sym_tuple_type] = STATE(3211), + [sym_readonly_type] = STATE(3218), + [sym_union_type] = STATE(3211), + [sym_intersection_type] = STATE(3211), + [sym_function_type] = STATE(3218), + [sym_identifier] = ACTIONS(1571), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_new] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(2948), + [anon_sym_DASH] = ACTIONS(2948), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(1031), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1595), + [sym_number] = ACTIONS(1597), + [sym_this] = ACTIONS(1599), + [sym_true] = ACTIONS(1601), + [sym_false] = ACTIONS(1601), + [sym_null] = ACTIONS(1601), + [sym_undefined] = ACTIONS(1601), + [anon_sym_readonly] = ACTIONS(1603), + [anon_sym_QMARK] = ACTIONS(1019), + [anon_sym_any] = ACTIONS(1031), + [anon_sym_number] = ACTIONS(1031), + [anon_sym_boolean] = ACTIONS(1031), + [anon_sym_string] = ACTIONS(1031), + [anon_sym_symbol] = ACTIONS(1031), + [anon_sym_object] = ACTIONS(1031), + [anon_sym_abstract] = ACTIONS(1023), + [anon_sym_infer] = ACTIONS(1025), + [anon_sym_keyof] = ACTIONS(1027), + [anon_sym_unique] = ACTIONS(1029), + [anon_sym_unknown] = ACTIONS(1031), + [anon_sym_never] = ACTIONS(1031), + [anon_sym_LBRACE_PIPE] = ACTIONS(1033), [sym_html_comment] = ACTIONS(5), }, [976] = { - [sym_import] = STATE(4668), - [sym_nested_identifier] = STATE(5986), - [sym_string] = STATE(3335), - [sym_formal_parameters] = STATE(5649), - [sym_nested_type_identifier] = STATE(3222), - [sym__type_query_member_expression_in_type_annotation] = STATE(3169), - [sym__type_query_call_expression_in_type_annotation] = STATE(3271), - [sym_type] = STATE(3457), - [sym_constructor_type] = STATE(3347), - [sym_primary_type] = STATE(3352), - [sym_template_literal_type] = STATE(3330), - [sym_infer_type] = STATE(3347), - [sym_conditional_type] = STATE(3330), - [sym_generic_type] = STATE(3330), - [sym_type_query] = STATE(3330), - [sym_index_type_query] = STATE(3330), - [sym_lookup_type] = STATE(3330), - [sym_literal_type] = STATE(3330), - [sym__number] = STATE(3353), - [sym_existential_type] = STATE(3330), - [sym_flow_maybe_type] = STATE(3330), - [sym_parenthesized_type] = STATE(3330), - [sym_predefined_type] = STATE(3330), - [sym_object_type] = STATE(3330), - [sym_type_parameters] = STATE(5245), - [sym_array_type] = STATE(3330), - [sym_tuple_type] = STATE(3330), - [sym_readonly_type] = STATE(3347), - [sym_union_type] = STATE(3330), - [sym_intersection_type] = STATE(3330), - [sym_function_type] = STATE(3347), - [sym_identifier] = ACTIONS(3221), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3119), - [anon_sym_typeof] = ACTIONS(3121), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_DQUOTE] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3131), - [anon_sym_new] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3141), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3143), - [sym_number] = ACTIONS(3145), - [sym_this] = ACTIONS(3223), - [sym_true] = ACTIONS(3149), - [sym_false] = ACTIONS(3149), - [sym_null] = ACTIONS(3149), - [sym_undefined] = ACTIONS(3149), - [anon_sym_readonly] = ACTIONS(3151), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_any] = ACTIONS(3141), - [anon_sym_number] = ACTIONS(3141), - [anon_sym_boolean] = ACTIONS(3141), - [anon_sym_string] = ACTIONS(3141), - [anon_sym_symbol] = ACTIONS(3141), - [anon_sym_object] = ACTIONS(3141), - [anon_sym_abstract] = ACTIONS(3155), - [anon_sym_infer] = ACTIONS(3159), - [anon_sym_keyof] = ACTIONS(3161), - [anon_sym_unique] = ACTIONS(3163), - [anon_sym_unknown] = ACTIONS(3141), - [anon_sym_never] = ACTIONS(3141), - [anon_sym_LBRACE_PIPE] = ACTIONS(3165), + [sym_import] = STATE(5153), + [sym_nested_identifier] = STATE(5834), + [sym_string] = STATE(3213), + [sym_formal_parameters] = STATE(5829), + [sym_nested_type_identifier] = STATE(3070), + [sym__type_query_member_expression_in_type_annotation] = STATE(3029), + [sym__type_query_call_expression_in_type_annotation] = STATE(3159), + [sym_type] = STATE(3231), + [sym_constructor_type] = STATE(3218), + [sym_primary_type] = STATE(3257), + [sym_template_literal_type] = STATE(3211), + [sym_infer_type] = STATE(3218), + [sym_conditional_type] = STATE(3211), + [sym_generic_type] = STATE(3211), + [sym_type_query] = STATE(3211), + [sym_index_type_query] = STATE(3211), + [sym_lookup_type] = STATE(3211), + [sym_literal_type] = STATE(3211), + [sym__number] = STATE(3219), + [sym_existential_type] = STATE(3211), + [sym_flow_maybe_type] = STATE(3211), + [sym_parenthesized_type] = STATE(3211), + [sym_predefined_type] = STATE(3211), + [sym_object_type] = STATE(3211), + [sym_type_parameters] = STATE(5268), + [sym_array_type] = STATE(3211), + [sym_tuple_type] = STATE(3211), + [sym_readonly_type] = STATE(3218), + [sym_union_type] = STATE(3211), + [sym_intersection_type] = STATE(3211), + [sym_function_type] = STATE(3218), + [sym_identifier] = ACTIONS(1571), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_new] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(2948), + [anon_sym_DASH] = ACTIONS(2948), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(1031), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1595), + [sym_number] = ACTIONS(1597), + [sym_this] = ACTIONS(1599), + [sym_true] = ACTIONS(1601), + [sym_false] = ACTIONS(1601), + [sym_null] = ACTIONS(1601), + [sym_undefined] = ACTIONS(1601), + [anon_sym_readonly] = ACTIONS(1603), + [anon_sym_QMARK] = ACTIONS(1019), + [anon_sym_any] = ACTIONS(1031), + [anon_sym_number] = ACTIONS(1031), + [anon_sym_boolean] = ACTIONS(1031), + [anon_sym_string] = ACTIONS(1031), + [anon_sym_symbol] = ACTIONS(1031), + [anon_sym_object] = ACTIONS(1031), + [anon_sym_abstract] = ACTIONS(1023), + [anon_sym_infer] = ACTIONS(1025), + [anon_sym_keyof] = ACTIONS(1027), + [anon_sym_unique] = ACTIONS(1029), + [anon_sym_unknown] = ACTIONS(1031), + [anon_sym_never] = ACTIONS(1031), + [anon_sym_LBRACE_PIPE] = ACTIONS(1033), [sym_html_comment] = ACTIONS(5), }, [977] = { - [sym_import] = STATE(4668), - [sym_nested_identifier] = STATE(5986), - [sym_string] = STATE(3335), - [sym_formal_parameters] = STATE(5649), - [sym_nested_type_identifier] = STATE(3222), - [sym__type_query_member_expression_in_type_annotation] = STATE(3169), - [sym__type_query_call_expression_in_type_annotation] = STATE(3271), - [sym_type] = STATE(3472), - [sym_constructor_type] = STATE(3347), - [sym_primary_type] = STATE(3352), - [sym_template_literal_type] = STATE(3330), - [sym_infer_type] = STATE(3347), - [sym_conditional_type] = STATE(3330), - [sym_generic_type] = STATE(3330), - [sym_type_query] = STATE(3330), - [sym_index_type_query] = STATE(3330), - [sym_lookup_type] = STATE(3330), - [sym_literal_type] = STATE(3330), - [sym__number] = STATE(3353), - [sym_existential_type] = STATE(3330), - [sym_flow_maybe_type] = STATE(3330), - [sym_parenthesized_type] = STATE(3330), - [sym_predefined_type] = STATE(3330), - [sym_object_type] = STATE(3330), - [sym_type_parameters] = STATE(5245), - [sym_array_type] = STATE(3330), - [sym_tuple_type] = STATE(3330), - [sym_readonly_type] = STATE(3347), - [sym_union_type] = STATE(3330), - [sym_intersection_type] = STATE(3330), - [sym_function_type] = STATE(3347), - [sym_identifier] = ACTIONS(3221), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3119), - [anon_sym_typeof] = ACTIONS(3121), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_DQUOTE] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3131), - [anon_sym_new] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3141), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3143), - [sym_number] = ACTIONS(3145), - [sym_this] = ACTIONS(3223), - [sym_true] = ACTIONS(3149), - [sym_false] = ACTIONS(3149), - [sym_null] = ACTIONS(3149), - [sym_undefined] = ACTIONS(3149), - [anon_sym_readonly] = ACTIONS(3151), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_any] = ACTIONS(3141), - [anon_sym_number] = ACTIONS(3141), - [anon_sym_boolean] = ACTIONS(3141), - [anon_sym_string] = ACTIONS(3141), - [anon_sym_symbol] = ACTIONS(3141), - [anon_sym_object] = ACTIONS(3141), - [anon_sym_abstract] = ACTIONS(3155), - [anon_sym_infer] = ACTIONS(3159), - [anon_sym_keyof] = ACTIONS(3161), - [anon_sym_unique] = ACTIONS(3163), - [anon_sym_unknown] = ACTIONS(3141), - [anon_sym_never] = ACTIONS(3141), - [anon_sym_LBRACE_PIPE] = ACTIONS(3165), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(5077), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(4221), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(4521), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [978] = { - [sym_import] = STATE(4668), - [sym_nested_identifier] = STATE(5986), - [sym_string] = STATE(3335), - [sym_formal_parameters] = STATE(5649), - [sym_nested_type_identifier] = STATE(3222), - [sym__type_query_member_expression_in_type_annotation] = STATE(3169), - [sym__type_query_call_expression_in_type_annotation] = STATE(3271), - [sym_type] = STATE(3473), - [sym_constructor_type] = STATE(3347), - [sym_primary_type] = STATE(3352), - [sym_template_literal_type] = STATE(3330), - [sym_infer_type] = STATE(3347), - [sym_conditional_type] = STATE(3330), - [sym_generic_type] = STATE(3330), - [sym_type_query] = STATE(3330), - [sym_index_type_query] = STATE(3330), - [sym_lookup_type] = STATE(3330), - [sym_literal_type] = STATE(3330), - [sym__number] = STATE(3353), - [sym_existential_type] = STATE(3330), - [sym_flow_maybe_type] = STATE(3330), - [sym_parenthesized_type] = STATE(3330), - [sym_predefined_type] = STATE(3330), - [sym_object_type] = STATE(3330), - [sym_type_parameters] = STATE(5245), - [sym_array_type] = STATE(3330), - [sym_tuple_type] = STATE(3330), - [sym_readonly_type] = STATE(3347), - [sym_union_type] = STATE(3330), - [sym_intersection_type] = STATE(3330), - [sym_function_type] = STATE(3347), - [sym_identifier] = ACTIONS(3221), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3119), - [anon_sym_typeof] = ACTIONS(3121), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_DQUOTE] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3131), - [anon_sym_new] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3141), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3143), - [sym_number] = ACTIONS(3145), - [sym_this] = ACTIONS(3223), - [sym_true] = ACTIONS(3149), - [sym_false] = ACTIONS(3149), - [sym_null] = ACTIONS(3149), - [sym_undefined] = ACTIONS(3149), - [anon_sym_readonly] = ACTIONS(3151), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_any] = ACTIONS(3141), - [anon_sym_number] = ACTIONS(3141), - [anon_sym_boolean] = ACTIONS(3141), - [anon_sym_string] = ACTIONS(3141), - [anon_sym_symbol] = ACTIONS(3141), - [anon_sym_object] = ACTIONS(3141), - [anon_sym_abstract] = ACTIONS(3155), - [anon_sym_infer] = ACTIONS(3159), - [anon_sym_keyof] = ACTIONS(3161), - [anon_sym_unique] = ACTIONS(3163), - [anon_sym_unknown] = ACTIONS(3141), - [anon_sym_never] = ACTIONS(3141), - [anon_sym_LBRACE_PIPE] = ACTIONS(3165), + [sym_import] = STATE(5153), + [sym_nested_identifier] = STATE(5834), + [sym_string] = STATE(3213), + [sym_formal_parameters] = STATE(5829), + [sym_nested_type_identifier] = STATE(3070), + [sym__type_query_member_expression_in_type_annotation] = STATE(3029), + [sym__type_query_call_expression_in_type_annotation] = STATE(3159), + [sym_type] = STATE(3228), + [sym_constructor_type] = STATE(3218), + [sym_primary_type] = STATE(3257), + [sym_template_literal_type] = STATE(3211), + [sym_infer_type] = STATE(3218), + [sym_conditional_type] = STATE(3211), + [sym_generic_type] = STATE(3211), + [sym_type_query] = STATE(3211), + [sym_index_type_query] = STATE(3211), + [sym_lookup_type] = STATE(3211), + [sym_literal_type] = STATE(3211), + [sym__number] = STATE(3219), + [sym_existential_type] = STATE(3211), + [sym_flow_maybe_type] = STATE(3211), + [sym_parenthesized_type] = STATE(3211), + [sym_predefined_type] = STATE(3211), + [sym_object_type] = STATE(3211), + [sym_type_parameters] = STATE(5268), + [sym_array_type] = STATE(3211), + [sym_tuple_type] = STATE(3211), + [sym_readonly_type] = STATE(3218), + [sym_union_type] = STATE(3211), + [sym_intersection_type] = STATE(3211), + [sym_function_type] = STATE(3218), + [sym_identifier] = ACTIONS(1571), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_new] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(2948), + [anon_sym_DASH] = ACTIONS(2948), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(1031), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1595), + [sym_number] = ACTIONS(1597), + [sym_this] = ACTIONS(1599), + [sym_true] = ACTIONS(1601), + [sym_false] = ACTIONS(1601), + [sym_null] = ACTIONS(1601), + [sym_undefined] = ACTIONS(1601), + [anon_sym_readonly] = ACTIONS(1603), + [anon_sym_QMARK] = ACTIONS(1019), + [anon_sym_any] = ACTIONS(1031), + [anon_sym_number] = ACTIONS(1031), + [anon_sym_boolean] = ACTIONS(1031), + [anon_sym_string] = ACTIONS(1031), + [anon_sym_symbol] = ACTIONS(1031), + [anon_sym_object] = ACTIONS(1031), + [anon_sym_abstract] = ACTIONS(1023), + [anon_sym_infer] = ACTIONS(1025), + [anon_sym_keyof] = ACTIONS(1027), + [anon_sym_unique] = ACTIONS(1029), + [anon_sym_unknown] = ACTIONS(1031), + [anon_sym_never] = ACTIONS(1031), + [anon_sym_LBRACE_PIPE] = ACTIONS(1033), [sym_html_comment] = ACTIONS(5), }, [979] = { - [sym_import] = STATE(4668), - [sym_nested_identifier] = STATE(5986), - [sym_string] = STATE(3335), - [sym_formal_parameters] = STATE(5649), - [sym_nested_type_identifier] = STATE(3222), - [sym__type_query_member_expression_in_type_annotation] = STATE(3169), - [sym__type_query_call_expression_in_type_annotation] = STATE(3271), - [sym_type] = STATE(3321), - [sym_constructor_type] = STATE(3347), - [sym_primary_type] = STATE(3352), - [sym_template_literal_type] = STATE(3330), - [sym_infer_type] = STATE(3347), - [sym_conditional_type] = STATE(3330), - [sym_generic_type] = STATE(3330), - [sym_type_query] = STATE(3330), - [sym_index_type_query] = STATE(3330), - [sym_lookup_type] = STATE(3330), - [sym_literal_type] = STATE(3330), - [sym__number] = STATE(3353), - [sym_existential_type] = STATE(3330), - [sym_flow_maybe_type] = STATE(3330), - [sym_parenthesized_type] = STATE(3330), - [sym_predefined_type] = STATE(3330), - [sym_object_type] = STATE(3330), - [sym_type_parameters] = STATE(5245), - [sym_array_type] = STATE(3330), - [sym_tuple_type] = STATE(3330), - [sym_readonly_type] = STATE(3347), - [sym_union_type] = STATE(3330), - [sym_intersection_type] = STATE(3330), - [sym_function_type] = STATE(3347), - [sym_identifier] = ACTIONS(3221), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3119), - [anon_sym_typeof] = ACTIONS(3121), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_DQUOTE] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3131), - [anon_sym_new] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3141), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3143), - [sym_number] = ACTIONS(3145), - [sym_this] = ACTIONS(3223), - [sym_true] = ACTIONS(3149), - [sym_false] = ACTIONS(3149), - [sym_null] = ACTIONS(3149), - [sym_undefined] = ACTIONS(3149), - [anon_sym_readonly] = ACTIONS(3151), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_any] = ACTIONS(3141), - [anon_sym_number] = ACTIONS(3141), - [anon_sym_boolean] = ACTIONS(3141), - [anon_sym_string] = ACTIONS(3141), - [anon_sym_symbol] = ACTIONS(3141), - [anon_sym_object] = ACTIONS(3141), - [anon_sym_abstract] = ACTIONS(3155), - [anon_sym_infer] = ACTIONS(3159), - [anon_sym_keyof] = ACTIONS(3161), - [anon_sym_unique] = ACTIONS(3163), - [anon_sym_unknown] = ACTIONS(3141), - [anon_sym_never] = ACTIONS(3141), - [anon_sym_LBRACE_PIPE] = ACTIONS(3165), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3909), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [980] = { - [sym_import] = STATE(4668), - [sym_nested_identifier] = STATE(5986), - [sym_string] = STATE(3335), - [sym_formal_parameters] = STATE(5649), - [sym_nested_type_identifier] = STATE(3222), - [sym__type_query_member_expression_in_type_annotation] = STATE(3169), - [sym__type_query_call_expression_in_type_annotation] = STATE(3271), - [sym_type] = STATE(3451), - [sym_constructor_type] = STATE(3347), - [sym_primary_type] = STATE(3352), - [sym_template_literal_type] = STATE(3330), - [sym_infer_type] = STATE(3347), - [sym_conditional_type] = STATE(3330), - [sym_generic_type] = STATE(3330), - [sym_type_query] = STATE(3330), - [sym_index_type_query] = STATE(3330), - [sym_lookup_type] = STATE(3330), - [sym_literal_type] = STATE(3330), - [sym__number] = STATE(3353), - [sym_existential_type] = STATE(3330), - [sym_flow_maybe_type] = STATE(3330), - [sym_parenthesized_type] = STATE(3330), - [sym_predefined_type] = STATE(3330), - [sym_object_type] = STATE(3330), - [sym_type_parameters] = STATE(5245), - [sym_array_type] = STATE(3330), - [sym_tuple_type] = STATE(3330), - [sym_readonly_type] = STATE(3347), - [sym_union_type] = STATE(3330), - [sym_intersection_type] = STATE(3330), - [sym_function_type] = STATE(3347), - [sym_identifier] = ACTIONS(3221), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3119), - [anon_sym_typeof] = ACTIONS(3121), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_DQUOTE] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3131), - [anon_sym_new] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3141), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3143), - [sym_number] = ACTIONS(3145), - [sym_this] = ACTIONS(3223), - [sym_true] = ACTIONS(3149), - [sym_false] = ACTIONS(3149), - [sym_null] = ACTIONS(3149), - [sym_undefined] = ACTIONS(3149), - [anon_sym_readonly] = ACTIONS(3151), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_any] = ACTIONS(3141), - [anon_sym_number] = ACTIONS(3141), - [anon_sym_boolean] = ACTIONS(3141), - [anon_sym_string] = ACTIONS(3141), - [anon_sym_symbol] = ACTIONS(3141), - [anon_sym_object] = ACTIONS(3141), - [anon_sym_abstract] = ACTIONS(3155), - [anon_sym_infer] = ACTIONS(3159), - [anon_sym_keyof] = ACTIONS(3161), - [anon_sym_unique] = ACTIONS(3163), - [anon_sym_unknown] = ACTIONS(3141), - [anon_sym_never] = ACTIONS(3141), - [anon_sym_LBRACE_PIPE] = ACTIONS(3165), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(2908), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [981] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4550), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3064), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [982] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3075), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(4786), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5658), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3263), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(4552), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5559), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [983] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4555), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(4633), + [sym_nested_identifier] = STATE(5639), + [sym_string] = STATE(1509), + [sym_formal_parameters] = STATE(5732), + [sym_nested_type_identifier] = STATE(1485), + [sym__type_query_member_expression_in_type_annotation] = STATE(1482), + [sym__type_query_call_expression_in_type_annotation] = STATE(1512), + [sym_type] = STATE(1521), + [sym_constructor_type] = STATE(1513), + [sym_primary_type] = STATE(1514), + [sym_template_literal_type] = STATE(1508), + [sym_infer_type] = STATE(1513), + [sym_conditional_type] = STATE(1508), + [sym_generic_type] = STATE(1508), + [sym_type_query] = STATE(1508), + [sym_index_type_query] = STATE(1508), + [sym_lookup_type] = STATE(1508), + [sym_literal_type] = STATE(1508), + [sym__number] = STATE(1515), + [sym_existential_type] = STATE(1508), + [sym_flow_maybe_type] = STATE(1508), + [sym_parenthesized_type] = STATE(1508), + [sym_predefined_type] = STATE(1508), + [sym_object_type] = STATE(1508), + [sym_type_parameters] = STATE(5328), + [sym_array_type] = STATE(1508), + [sym_tuple_type] = STATE(1508), + [sym_readonly_type] = STATE(1513), + [sym_union_type] = STATE(1508), + [sym_intersection_type] = STATE(1508), + [sym_function_type] = STATE(1513), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_typeof] = ACTIONS(3114), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_new] = ACTIONS(3122), + [anon_sym_AMP] = ACTIONS(3124), + [anon_sym_PIPE] = ACTIONS(3126), + [anon_sym_PLUS] = ACTIONS(3128), + [anon_sym_DASH] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(3130), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3132), + [sym_number] = ACTIONS(3134), + [sym_this] = ACTIONS(3218), + [sym_true] = ACTIONS(3138), + [sym_false] = ACTIONS(3138), + [sym_null] = ACTIONS(3138), + [sym_undefined] = ACTIONS(3138), + [anon_sym_readonly] = ACTIONS(3140), + [anon_sym_QMARK] = ACTIONS(3142), + [anon_sym_any] = ACTIONS(3130), + [anon_sym_number] = ACTIONS(3130), + [anon_sym_boolean] = ACTIONS(3130), + [anon_sym_string] = ACTIONS(3130), + [anon_sym_symbol] = ACTIONS(3130), + [anon_sym_object] = ACTIONS(3130), + [anon_sym_abstract] = ACTIONS(3144), + [anon_sym_infer] = ACTIONS(3148), + [anon_sym_keyof] = ACTIONS(3150), + [anon_sym_unique] = ACTIONS(3152), + [anon_sym_unknown] = ACTIONS(3130), + [anon_sym_never] = ACTIONS(3130), + [anon_sym_LBRACE_PIPE] = ACTIONS(3154), [sym_html_comment] = ACTIONS(5), }, [984] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4556), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(4633), + [sym_nested_identifier] = STATE(5639), + [sym_string] = STATE(1509), + [sym_formal_parameters] = STATE(5732), + [sym_nested_type_identifier] = STATE(1485), + [sym__type_query_member_expression_in_type_annotation] = STATE(1482), + [sym__type_query_call_expression_in_type_annotation] = STATE(1512), + [sym_type] = STATE(1522), + [sym_constructor_type] = STATE(1513), + [sym_primary_type] = STATE(1514), + [sym_template_literal_type] = STATE(1508), + [sym_infer_type] = STATE(1513), + [sym_conditional_type] = STATE(1508), + [sym_generic_type] = STATE(1508), + [sym_type_query] = STATE(1508), + [sym_index_type_query] = STATE(1508), + [sym_lookup_type] = STATE(1508), + [sym_literal_type] = STATE(1508), + [sym__number] = STATE(1515), + [sym_existential_type] = STATE(1508), + [sym_flow_maybe_type] = STATE(1508), + [sym_parenthesized_type] = STATE(1508), + [sym_predefined_type] = STATE(1508), + [sym_object_type] = STATE(1508), + [sym_type_parameters] = STATE(5328), + [sym_array_type] = STATE(1508), + [sym_tuple_type] = STATE(1508), + [sym_readonly_type] = STATE(1513), + [sym_union_type] = STATE(1508), + [sym_intersection_type] = STATE(1508), + [sym_function_type] = STATE(1513), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_typeof] = ACTIONS(3114), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_new] = ACTIONS(3122), + [anon_sym_AMP] = ACTIONS(3124), + [anon_sym_PIPE] = ACTIONS(3126), + [anon_sym_PLUS] = ACTIONS(3128), + [anon_sym_DASH] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(3130), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3132), + [sym_number] = ACTIONS(3134), + [sym_this] = ACTIONS(3218), + [sym_true] = ACTIONS(3138), + [sym_false] = ACTIONS(3138), + [sym_null] = ACTIONS(3138), + [sym_undefined] = ACTIONS(3138), + [anon_sym_readonly] = ACTIONS(3140), + [anon_sym_QMARK] = ACTIONS(3142), + [anon_sym_any] = ACTIONS(3130), + [anon_sym_number] = ACTIONS(3130), + [anon_sym_boolean] = ACTIONS(3130), + [anon_sym_string] = ACTIONS(3130), + [anon_sym_symbol] = ACTIONS(3130), + [anon_sym_object] = ACTIONS(3130), + [anon_sym_abstract] = ACTIONS(3144), + [anon_sym_infer] = ACTIONS(3148), + [anon_sym_keyof] = ACTIONS(3150), + [anon_sym_unique] = ACTIONS(3152), + [anon_sym_unknown] = ACTIONS(3130), + [anon_sym_never] = ACTIONS(3130), + [anon_sym_LBRACE_PIPE] = ACTIONS(3154), [sym_html_comment] = ACTIONS(5), }, [985] = { - [sym_import] = STATE(4633), - [sym_nested_identifier] = STATE(5769), - [sym_string] = STATE(1504), - [sym_formal_parameters] = STATE(5757), - [sym_nested_type_identifier] = STATE(1480), - [sym__type_query_member_expression_in_type_annotation] = STATE(1481), - [sym__type_query_call_expression_in_type_annotation] = STATE(1491), - [sym_type] = STATE(1532), - [sym_constructor_type] = STATE(1492), - [sym_primary_type] = STATE(1493), - [sym_template_literal_type] = STATE(1490), - [sym_infer_type] = STATE(1492), - [sym_conditional_type] = STATE(1490), - [sym_generic_type] = STATE(1490), - [sym_type_query] = STATE(1490), - [sym_index_type_query] = STATE(1490), - [sym_lookup_type] = STATE(1490), - [sym_literal_type] = STATE(1490), - [sym__number] = STATE(1494), - [sym_existential_type] = STATE(1490), - [sym_flow_maybe_type] = STATE(1490), - [sym_parenthesized_type] = STATE(1490), - [sym_predefined_type] = STATE(1490), - [sym_object_type] = STATE(1490), - [sym_type_parameters] = STATE(5510), - [sym_array_type] = STATE(1490), - [sym_tuple_type] = STATE(1490), - [sym_readonly_type] = STATE(1492), - [sym_union_type] = STATE(1490), - [sym_intersection_type] = STATE(1490), - [sym_function_type] = STATE(1492), - [sym_identifier] = ACTIONS(3225), - [anon_sym_STAR] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_typeof] = ACTIONS(3031), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3227), - [anon_sym_LPAREN] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_PIPE] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3047), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3049), - [sym_number] = ACTIONS(3051), - [sym_this] = ACTIONS(3229), - [sym_true] = ACTIONS(3055), - [sym_false] = ACTIONS(3055), - [sym_null] = ACTIONS(3055), - [sym_undefined] = ACTIONS(3055), - [anon_sym_readonly] = ACTIONS(3057), - [anon_sym_QMARK] = ACTIONS(3059), - [anon_sym_any] = ACTIONS(3047), - [anon_sym_number] = ACTIONS(3047), - [anon_sym_boolean] = ACTIONS(3047), - [anon_sym_string] = ACTIONS(3047), - [anon_sym_symbol] = ACTIONS(3047), - [anon_sym_object] = ACTIONS(3047), - [anon_sym_abstract] = ACTIONS(3061), - [anon_sym_infer] = ACTIONS(3065), - [anon_sym_keyof] = ACTIONS(3067), - [anon_sym_unique] = ACTIONS(3069), - [anon_sym_unknown] = ACTIONS(3047), - [anon_sym_never] = ACTIONS(3047), - [anon_sym_LBRACE_PIPE] = ACTIONS(3071), + [sym_import] = STATE(4786), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5658), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3263), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(4603), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5559), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [986] = { [sym_import] = STATE(4633), - [sym_nested_identifier] = STATE(5769), - [sym_string] = STATE(1504), - [sym_formal_parameters] = STATE(5757), - [sym_nested_type_identifier] = STATE(1480), - [sym__type_query_member_expression_in_type_annotation] = STATE(1481), - [sym__type_query_call_expression_in_type_annotation] = STATE(1491), - [sym_type] = STATE(1607), - [sym_constructor_type] = STATE(1492), - [sym_primary_type] = STATE(1493), - [sym_template_literal_type] = STATE(1490), - [sym_infer_type] = STATE(1492), - [sym_conditional_type] = STATE(1490), - [sym_generic_type] = STATE(1490), - [sym_type_query] = STATE(1490), - [sym_index_type_query] = STATE(1490), - [sym_lookup_type] = STATE(1490), - [sym_literal_type] = STATE(1490), - [sym__number] = STATE(1494), - [sym_existential_type] = STATE(1490), - [sym_flow_maybe_type] = STATE(1490), - [sym_parenthesized_type] = STATE(1490), - [sym_predefined_type] = STATE(1490), - [sym_object_type] = STATE(1490), - [sym_type_parameters] = STATE(5510), - [sym_array_type] = STATE(1490), - [sym_tuple_type] = STATE(1490), - [sym_readonly_type] = STATE(1492), - [sym_union_type] = STATE(1490), - [sym_intersection_type] = STATE(1490), - [sym_function_type] = STATE(1492), - [sym_identifier] = ACTIONS(3225), - [anon_sym_STAR] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_typeof] = ACTIONS(3031), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_PIPE] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3047), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3049), - [sym_number] = ACTIONS(3051), - [sym_this] = ACTIONS(3229), - [sym_true] = ACTIONS(3055), - [sym_false] = ACTIONS(3055), - [sym_null] = ACTIONS(3055), - [sym_undefined] = ACTIONS(3055), - [anon_sym_readonly] = ACTIONS(3057), - [anon_sym_QMARK] = ACTIONS(3059), - [anon_sym_any] = ACTIONS(3047), - [anon_sym_number] = ACTIONS(3047), - [anon_sym_boolean] = ACTIONS(3047), - [anon_sym_string] = ACTIONS(3047), - [anon_sym_symbol] = ACTIONS(3047), - [anon_sym_object] = ACTIONS(3047), - [anon_sym_abstract] = ACTIONS(3061), - [anon_sym_infer] = ACTIONS(3065), - [anon_sym_keyof] = ACTIONS(3067), - [anon_sym_unique] = ACTIONS(3069), - [anon_sym_unknown] = ACTIONS(3047), - [anon_sym_never] = ACTIONS(3047), - [anon_sym_LBRACE_PIPE] = ACTIONS(3071), + [sym_nested_identifier] = STATE(5639), + [sym_string] = STATE(1509), + [sym_formal_parameters] = STATE(5732), + [sym_nested_type_identifier] = STATE(1485), + [sym__type_query_member_expression_in_type_annotation] = STATE(1482), + [sym__type_query_call_expression_in_type_annotation] = STATE(1512), + [sym_type] = STATE(1493), + [sym_constructor_type] = STATE(1513), + [sym_primary_type] = STATE(1514), + [sym_template_literal_type] = STATE(1508), + [sym_infer_type] = STATE(1513), + [sym_conditional_type] = STATE(1508), + [sym_generic_type] = STATE(1508), + [sym_type_query] = STATE(1508), + [sym_index_type_query] = STATE(1508), + [sym_lookup_type] = STATE(1508), + [sym_literal_type] = STATE(1508), + [sym__number] = STATE(1515), + [sym_existential_type] = STATE(1508), + [sym_flow_maybe_type] = STATE(1508), + [sym_parenthesized_type] = STATE(1508), + [sym_predefined_type] = STATE(1508), + [sym_object_type] = STATE(1508), + [sym_type_parameters] = STATE(5328), + [sym_array_type] = STATE(1508), + [sym_tuple_type] = STATE(1508), + [sym_readonly_type] = STATE(1513), + [sym_union_type] = STATE(1508), + [sym_intersection_type] = STATE(1508), + [sym_function_type] = STATE(1513), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_typeof] = ACTIONS(3114), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_new] = ACTIONS(3122), + [anon_sym_AMP] = ACTIONS(3124), + [anon_sym_PIPE] = ACTIONS(3126), + [anon_sym_PLUS] = ACTIONS(3128), + [anon_sym_DASH] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(3130), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3132), + [sym_number] = ACTIONS(3134), + [sym_this] = ACTIONS(3218), + [sym_true] = ACTIONS(3138), + [sym_false] = ACTIONS(3138), + [sym_null] = ACTIONS(3138), + [sym_undefined] = ACTIONS(3138), + [anon_sym_readonly] = ACTIONS(3140), + [anon_sym_QMARK] = ACTIONS(3142), + [anon_sym_any] = ACTIONS(3130), + [anon_sym_number] = ACTIONS(3130), + [anon_sym_boolean] = ACTIONS(3130), + [anon_sym_string] = ACTIONS(3130), + [anon_sym_symbol] = ACTIONS(3130), + [anon_sym_object] = ACTIONS(3130), + [anon_sym_abstract] = ACTIONS(3144), + [anon_sym_infer] = ACTIONS(3148), + [anon_sym_keyof] = ACTIONS(3150), + [anon_sym_unique] = ACTIONS(3152), + [anon_sym_unknown] = ACTIONS(3130), + [anon_sym_never] = ACTIONS(3130), + [anon_sym_LBRACE_PIPE] = ACTIONS(3154), [sym_html_comment] = ACTIONS(5), }, [987] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3469), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(4633), + [sym_nested_identifier] = STATE(5639), + [sym_string] = STATE(1509), + [sym_formal_parameters] = STATE(5732), + [sym_nested_type_identifier] = STATE(1485), + [sym__type_query_member_expression_in_type_annotation] = STATE(1482), + [sym__type_query_call_expression_in_type_annotation] = STATE(1512), + [sym_type] = STATE(1494), + [sym_constructor_type] = STATE(1513), + [sym_primary_type] = STATE(1514), + [sym_template_literal_type] = STATE(1508), + [sym_infer_type] = STATE(1513), + [sym_conditional_type] = STATE(1508), + [sym_generic_type] = STATE(1508), + [sym_type_query] = STATE(1508), + [sym_index_type_query] = STATE(1508), + [sym_lookup_type] = STATE(1508), + [sym_literal_type] = STATE(1508), + [sym__number] = STATE(1515), + [sym_existential_type] = STATE(1508), + [sym_flow_maybe_type] = STATE(1508), + [sym_parenthesized_type] = STATE(1508), + [sym_predefined_type] = STATE(1508), + [sym_object_type] = STATE(1508), + [sym_type_parameters] = STATE(5328), + [sym_array_type] = STATE(1508), + [sym_tuple_type] = STATE(1508), + [sym_readonly_type] = STATE(1513), + [sym_union_type] = STATE(1508), + [sym_intersection_type] = STATE(1508), + [sym_function_type] = STATE(1513), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_typeof] = ACTIONS(3114), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_new] = ACTIONS(3122), + [anon_sym_AMP] = ACTIONS(3124), + [anon_sym_PIPE] = ACTIONS(3126), + [anon_sym_PLUS] = ACTIONS(3128), + [anon_sym_DASH] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(3130), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3132), + [sym_number] = ACTIONS(3134), + [sym_this] = ACTIONS(3218), + [sym_true] = ACTIONS(3138), + [sym_false] = ACTIONS(3138), + [sym_null] = ACTIONS(3138), + [sym_undefined] = ACTIONS(3138), + [anon_sym_readonly] = ACTIONS(3140), + [anon_sym_QMARK] = ACTIONS(3142), + [anon_sym_any] = ACTIONS(3130), + [anon_sym_number] = ACTIONS(3130), + [anon_sym_boolean] = ACTIONS(3130), + [anon_sym_string] = ACTIONS(3130), + [anon_sym_symbol] = ACTIONS(3130), + [anon_sym_object] = ACTIONS(3130), + [anon_sym_abstract] = ACTIONS(3144), + [anon_sym_infer] = ACTIONS(3148), + [anon_sym_keyof] = ACTIONS(3150), + [anon_sym_unique] = ACTIONS(3152), + [anon_sym_unknown] = ACTIONS(3130), + [anon_sym_never] = ACTIONS(3130), + [anon_sym_LBRACE_PIPE] = ACTIONS(3154), [sym_html_comment] = ACTIONS(5), }, [988] = { - [sym_import] = STATE(4909), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5858), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3328), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(2992), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5355), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_typeof] = ACTIONS(3083), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_new] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3095), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(3097), - [anon_sym_infer] = ACTIONS(3101), - [anon_sym_keyof] = ACTIONS(3103), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(3105), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5639), + [sym_string] = STATE(1509), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(1485), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(4650), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(1527), + [sym_template_literal_type] = STATE(1508), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(1508), + [sym_generic_type] = STATE(1508), + [sym_type_query] = STATE(1508), + [sym_index_type_query] = STATE(1508), + [sym_lookup_type] = STATE(1508), + [sym_literal_type] = STATE(1508), + [sym__number] = STATE(1515), + [sym_existential_type] = STATE(1508), + [sym_flow_maybe_type] = STATE(1508), + [sym_parenthesized_type] = STATE(1508), + [sym_predefined_type] = STATE(1508), + [sym_object_type] = STATE(1508), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(1508), + [sym_tuple_type] = STATE(1508), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(1508), + [sym_intersection_type] = STATE(1508), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_typeof] = ACTIONS(3114), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(3124), + [anon_sym_PIPE] = ACTIONS(3126), + [anon_sym_PLUS] = ACTIONS(3128), + [anon_sym_DASH] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(3130), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3132), + [sym_number] = ACTIONS(3134), + [sym_this] = ACTIONS(3218), + [sym_true] = ACTIONS(3138), + [sym_false] = ACTIONS(3138), + [sym_null] = ACTIONS(3138), + [sym_undefined] = ACTIONS(3138), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(3142), + [anon_sym_any] = ACTIONS(3130), + [anon_sym_number] = ACTIONS(3130), + [anon_sym_boolean] = ACTIONS(3130), + [anon_sym_string] = ACTIONS(3130), + [anon_sym_symbol] = ACTIONS(3130), + [anon_sym_object] = ACTIONS(3130), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(3150), + [anon_sym_unique] = ACTIONS(3152), + [anon_sym_unknown] = ACTIONS(3130), + [anon_sym_never] = ACTIONS(3130), + [anon_sym_LBRACE_PIPE] = ACTIONS(3154), [sym_html_comment] = ACTIONS(5), }, [989] = { - [sym_import] = STATE(4909), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5858), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3328), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3803), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5355), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_typeof] = ACTIONS(3083), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_new] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3095), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(3097), - [anon_sym_infer] = ACTIONS(3101), - [anon_sym_keyof] = ACTIONS(3103), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(3105), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5639), + [sym_string] = STATE(1509), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(1485), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(4650), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(1529), + [sym_template_literal_type] = STATE(1508), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(1508), + [sym_generic_type] = STATE(1508), + [sym_type_query] = STATE(1508), + [sym_index_type_query] = STATE(1508), + [sym_lookup_type] = STATE(1508), + [sym_literal_type] = STATE(1508), + [sym__number] = STATE(1515), + [sym_existential_type] = STATE(1508), + [sym_flow_maybe_type] = STATE(1508), + [sym_parenthesized_type] = STATE(1508), + [sym_predefined_type] = STATE(1508), + [sym_object_type] = STATE(1508), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(1508), + [sym_tuple_type] = STATE(1508), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(1508), + [sym_intersection_type] = STATE(1508), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_typeof] = ACTIONS(3114), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(3124), + [anon_sym_PIPE] = ACTIONS(3126), + [anon_sym_PLUS] = ACTIONS(3128), + [anon_sym_DASH] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(3130), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3132), + [sym_number] = ACTIONS(3134), + [sym_this] = ACTIONS(3218), + [sym_true] = ACTIONS(3138), + [sym_false] = ACTIONS(3138), + [sym_null] = ACTIONS(3138), + [sym_undefined] = ACTIONS(3138), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(3142), + [anon_sym_any] = ACTIONS(3130), + [anon_sym_number] = ACTIONS(3130), + [anon_sym_boolean] = ACTIONS(3130), + [anon_sym_string] = ACTIONS(3130), + [anon_sym_symbol] = ACTIONS(3130), + [anon_sym_object] = ACTIONS(3130), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(3150), + [anon_sym_unique] = ACTIONS(3152), + [anon_sym_unknown] = ACTIONS(3130), + [anon_sym_never] = ACTIONS(3130), + [anon_sym_LBRACE_PIPE] = ACTIONS(3154), [sym_html_comment] = ACTIONS(5), }, [990] = { - [sym_import] = STATE(4909), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5858), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3328), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3806), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5355), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_typeof] = ACTIONS(3083), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_new] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3095), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(3097), - [anon_sym_infer] = ACTIONS(3101), - [anon_sym_keyof] = ACTIONS(3103), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(3105), + [sym_import] = STATE(4648), + [sym_nested_identifier] = STATE(5899), + [sym_string] = STATE(1864), + [sym_formal_parameters] = STATE(5723), + [sym_nested_type_identifier] = STATE(1843), + [sym__type_query_member_expression_in_type_annotation] = STATE(1844), + [sym__type_query_call_expression_in_type_annotation] = STATE(1866), + [sym_type] = STATE(1959), + [sym_constructor_type] = STATE(1867), + [sym_primary_type] = STATE(1868), + [sym_template_literal_type] = STATE(1863), + [sym_infer_type] = STATE(1867), + [sym_conditional_type] = STATE(1863), + [sym_generic_type] = STATE(1863), + [sym_type_query] = STATE(1863), + [sym_index_type_query] = STATE(1863), + [sym_lookup_type] = STATE(1863), + [sym_literal_type] = STATE(1863), + [sym__number] = STATE(1869), + [sym_existential_type] = STATE(1863), + [sym_flow_maybe_type] = STATE(1863), + [sym_parenthesized_type] = STATE(1863), + [sym_predefined_type] = STATE(1863), + [sym_object_type] = STATE(1863), + [sym_type_parameters] = STATE(5380), + [sym_array_type] = STATE(1863), + [sym_tuple_type] = STATE(1863), + [sym_readonly_type] = STATE(1867), + [sym_union_type] = STATE(1863), + [sym_intersection_type] = STATE(1863), + [sym_function_type] = STATE(1867), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(2998), + [anon_sym_LBRACE] = ACTIONS(3000), + [anon_sym_typeof] = ACTIONS(3002), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3004), + [anon_sym_LPAREN] = ACTIONS(3006), + [anon_sym_LBRACK] = ACTIONS(3008), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_PIPE] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3016), + [anon_sym_DASH] = ACTIONS(3016), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(3018), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3020), + [sym_number] = ACTIONS(3022), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(3026), + [sym_false] = ACTIONS(3026), + [sym_null] = ACTIONS(3026), + [sym_undefined] = ACTIONS(3026), + [anon_sym_readonly] = ACTIONS(3028), + [anon_sym_QMARK] = ACTIONS(3030), + [anon_sym_any] = ACTIONS(3018), + [anon_sym_number] = ACTIONS(3018), + [anon_sym_boolean] = ACTIONS(3018), + [anon_sym_string] = ACTIONS(3018), + [anon_sym_symbol] = ACTIONS(3018), + [anon_sym_object] = ACTIONS(3018), + [anon_sym_abstract] = ACTIONS(3032), + [anon_sym_infer] = ACTIONS(3036), + [anon_sym_keyof] = ACTIONS(3038), + [anon_sym_unique] = ACTIONS(3040), + [anon_sym_unknown] = ACTIONS(3018), + [anon_sym_never] = ACTIONS(3018), + [anon_sym_LBRACE_PIPE] = ACTIONS(3042), [sym_html_comment] = ACTIONS(5), }, [991] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4802), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2920), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_typeof] = ACTIONS(3083), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(3095), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(3103), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(3105), + [sym_import] = STATE(4648), + [sym_nested_identifier] = STATE(5899), + [sym_string] = STATE(1864), + [sym_formal_parameters] = STATE(5723), + [sym_nested_type_identifier] = STATE(1843), + [sym__type_query_member_expression_in_type_annotation] = STATE(1844), + [sym__type_query_call_expression_in_type_annotation] = STATE(1866), + [sym_type] = STATE(1960), + [sym_constructor_type] = STATE(1867), + [sym_primary_type] = STATE(1868), + [sym_template_literal_type] = STATE(1863), + [sym_infer_type] = STATE(1867), + [sym_conditional_type] = STATE(1863), + [sym_generic_type] = STATE(1863), + [sym_type_query] = STATE(1863), + [sym_index_type_query] = STATE(1863), + [sym_lookup_type] = STATE(1863), + [sym_literal_type] = STATE(1863), + [sym__number] = STATE(1869), + [sym_existential_type] = STATE(1863), + [sym_flow_maybe_type] = STATE(1863), + [sym_parenthesized_type] = STATE(1863), + [sym_predefined_type] = STATE(1863), + [sym_object_type] = STATE(1863), + [sym_type_parameters] = STATE(5380), + [sym_array_type] = STATE(1863), + [sym_tuple_type] = STATE(1863), + [sym_readonly_type] = STATE(1867), + [sym_union_type] = STATE(1863), + [sym_intersection_type] = STATE(1863), + [sym_function_type] = STATE(1867), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(2998), + [anon_sym_LBRACE] = ACTIONS(3000), + [anon_sym_typeof] = ACTIONS(3002), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3004), + [anon_sym_LPAREN] = ACTIONS(3006), + [anon_sym_LBRACK] = ACTIONS(3008), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_PIPE] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3016), + [anon_sym_DASH] = ACTIONS(3016), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(3018), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3020), + [sym_number] = ACTIONS(3022), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(3026), + [sym_false] = ACTIONS(3026), + [sym_null] = ACTIONS(3026), + [sym_undefined] = ACTIONS(3026), + [anon_sym_readonly] = ACTIONS(3028), + [anon_sym_QMARK] = ACTIONS(3030), + [anon_sym_any] = ACTIONS(3018), + [anon_sym_number] = ACTIONS(3018), + [anon_sym_boolean] = ACTIONS(3018), + [anon_sym_string] = ACTIONS(3018), + [anon_sym_symbol] = ACTIONS(3018), + [anon_sym_object] = ACTIONS(3018), + [anon_sym_abstract] = ACTIONS(3032), + [anon_sym_infer] = ACTIONS(3036), + [anon_sym_keyof] = ACTIONS(3038), + [anon_sym_unique] = ACTIONS(3040), + [anon_sym_unknown] = ACTIONS(3018), + [anon_sym_never] = ACTIONS(3018), + [anon_sym_LBRACE_PIPE] = ACTIONS(3042), [sym_html_comment] = ACTIONS(5), }, [992] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4802), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2924), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_typeof] = ACTIONS(3083), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(3095), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(3103), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(3105), + [sym_import] = STATE(4633), + [sym_nested_identifier] = STATE(5639), + [sym_string] = STATE(1509), + [sym_formal_parameters] = STATE(5732), + [sym_nested_type_identifier] = STATE(1485), + [sym__type_query_member_expression_in_type_annotation] = STATE(1482), + [sym__type_query_call_expression_in_type_annotation] = STATE(1512), + [sym_type] = STATE(1553), + [sym_constructor_type] = STATE(1513), + [sym_primary_type] = STATE(1514), + [sym_template_literal_type] = STATE(1508), + [sym_infer_type] = STATE(1513), + [sym_conditional_type] = STATE(1508), + [sym_generic_type] = STATE(1508), + [sym_type_query] = STATE(1508), + [sym_index_type_query] = STATE(1508), + [sym_lookup_type] = STATE(1508), + [sym_literal_type] = STATE(1508), + [sym__number] = STATE(1515), + [sym_existential_type] = STATE(1508), + [sym_flow_maybe_type] = STATE(1508), + [sym_parenthesized_type] = STATE(1508), + [sym_predefined_type] = STATE(1508), + [sym_object_type] = STATE(1508), + [sym_type_parameters] = STATE(5328), + [sym_array_type] = STATE(1508), + [sym_tuple_type] = STATE(1508), + [sym_readonly_type] = STATE(1513), + [sym_union_type] = STATE(1508), + [sym_intersection_type] = STATE(1508), + [sym_function_type] = STATE(1513), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_typeof] = ACTIONS(3114), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_new] = ACTIONS(3122), + [anon_sym_AMP] = ACTIONS(3124), + [anon_sym_PIPE] = ACTIONS(3126), + [anon_sym_PLUS] = ACTIONS(3128), + [anon_sym_DASH] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(3130), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3132), + [sym_number] = ACTIONS(3134), + [sym_this] = ACTIONS(3218), + [sym_true] = ACTIONS(3138), + [sym_false] = ACTIONS(3138), + [sym_null] = ACTIONS(3138), + [sym_undefined] = ACTIONS(3138), + [anon_sym_readonly] = ACTIONS(3140), + [anon_sym_QMARK] = ACTIONS(3142), + [anon_sym_any] = ACTIONS(3130), + [anon_sym_number] = ACTIONS(3130), + [anon_sym_boolean] = ACTIONS(3130), + [anon_sym_string] = ACTIONS(3130), + [anon_sym_symbol] = ACTIONS(3130), + [anon_sym_object] = ACTIONS(3130), + [anon_sym_abstract] = ACTIONS(3144), + [anon_sym_infer] = ACTIONS(3148), + [anon_sym_keyof] = ACTIONS(3150), + [anon_sym_unique] = ACTIONS(3152), + [anon_sym_unknown] = ACTIONS(3130), + [anon_sym_never] = ACTIONS(3130), + [anon_sym_LBRACE_PIPE] = ACTIONS(3154), [sym_html_comment] = ACTIONS(5), }, [993] = { - [sym_import] = STATE(4909), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5858), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3328), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(2965), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5355), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_typeof] = ACTIONS(3083), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_new] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3095), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(3097), - [anon_sym_infer] = ACTIONS(3101), - [anon_sym_keyof] = ACTIONS(3103), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(3105), + [sym_import] = STATE(4633), + [sym_nested_identifier] = STATE(5639), + [sym_string] = STATE(1509), + [sym_formal_parameters] = STATE(5732), + [sym_nested_type_identifier] = STATE(1485), + [sym__type_query_member_expression_in_type_annotation] = STATE(1482), + [sym__type_query_call_expression_in_type_annotation] = STATE(1512), + [sym_type] = STATE(1554), + [sym_constructor_type] = STATE(1513), + [sym_primary_type] = STATE(1514), + [sym_template_literal_type] = STATE(1508), + [sym_infer_type] = STATE(1513), + [sym_conditional_type] = STATE(1508), + [sym_generic_type] = STATE(1508), + [sym_type_query] = STATE(1508), + [sym_index_type_query] = STATE(1508), + [sym_lookup_type] = STATE(1508), + [sym_literal_type] = STATE(1508), + [sym__number] = STATE(1515), + [sym_existential_type] = STATE(1508), + [sym_flow_maybe_type] = STATE(1508), + [sym_parenthesized_type] = STATE(1508), + [sym_predefined_type] = STATE(1508), + [sym_object_type] = STATE(1508), + [sym_type_parameters] = STATE(5328), + [sym_array_type] = STATE(1508), + [sym_tuple_type] = STATE(1508), + [sym_readonly_type] = STATE(1513), + [sym_union_type] = STATE(1508), + [sym_intersection_type] = STATE(1508), + [sym_function_type] = STATE(1513), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_typeof] = ACTIONS(3114), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_new] = ACTIONS(3122), + [anon_sym_AMP] = ACTIONS(3124), + [anon_sym_PIPE] = ACTIONS(3126), + [anon_sym_PLUS] = ACTIONS(3128), + [anon_sym_DASH] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(3130), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3132), + [sym_number] = ACTIONS(3134), + [sym_this] = ACTIONS(3218), + [sym_true] = ACTIONS(3138), + [sym_false] = ACTIONS(3138), + [sym_null] = ACTIONS(3138), + [sym_undefined] = ACTIONS(3138), + [anon_sym_readonly] = ACTIONS(3140), + [anon_sym_QMARK] = ACTIONS(3142), + [anon_sym_any] = ACTIONS(3130), + [anon_sym_number] = ACTIONS(3130), + [anon_sym_boolean] = ACTIONS(3130), + [anon_sym_string] = ACTIONS(3130), + [anon_sym_symbol] = ACTIONS(3130), + [anon_sym_object] = ACTIONS(3130), + [anon_sym_abstract] = ACTIONS(3144), + [anon_sym_infer] = ACTIONS(3148), + [anon_sym_keyof] = ACTIONS(3150), + [anon_sym_unique] = ACTIONS(3152), + [anon_sym_unknown] = ACTIONS(3130), + [anon_sym_never] = ACTIONS(3130), + [anon_sym_LBRACE_PIPE] = ACTIONS(3154), [sym_html_comment] = ACTIONS(5), }, [994] = { - [sym_import] = STATE(4909), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5858), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3328), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3833), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5355), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_typeof] = ACTIONS(3083), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_new] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3095), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(3097), - [anon_sym_infer] = ACTIONS(3101), - [anon_sym_keyof] = ACTIONS(3103), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(3105), + [sym_import] = STATE(4633), + [sym_nested_identifier] = STATE(5639), + [sym_string] = STATE(1509), + [sym_formal_parameters] = STATE(5732), + [sym_nested_type_identifier] = STATE(1485), + [sym__type_query_member_expression_in_type_annotation] = STATE(1482), + [sym__type_query_call_expression_in_type_annotation] = STATE(1512), + [sym_type] = STATE(1578), + [sym_constructor_type] = STATE(1513), + [sym_primary_type] = STATE(1514), + [sym_template_literal_type] = STATE(1508), + [sym_infer_type] = STATE(1513), + [sym_conditional_type] = STATE(1508), + [sym_generic_type] = STATE(1508), + [sym_type_query] = STATE(1508), + [sym_index_type_query] = STATE(1508), + [sym_lookup_type] = STATE(1508), + [sym_literal_type] = STATE(1508), + [sym__number] = STATE(1515), + [sym_existential_type] = STATE(1508), + [sym_flow_maybe_type] = STATE(1508), + [sym_parenthesized_type] = STATE(1508), + [sym_predefined_type] = STATE(1508), + [sym_object_type] = STATE(1508), + [sym_type_parameters] = STATE(5328), + [sym_array_type] = STATE(1508), + [sym_tuple_type] = STATE(1508), + [sym_readonly_type] = STATE(1513), + [sym_union_type] = STATE(1508), + [sym_intersection_type] = STATE(1508), + [sym_function_type] = STATE(1513), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_typeof] = ACTIONS(3114), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_new] = ACTIONS(3122), + [anon_sym_AMP] = ACTIONS(3124), + [anon_sym_PIPE] = ACTIONS(3126), + [anon_sym_PLUS] = ACTIONS(3128), + [anon_sym_DASH] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(3130), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3132), + [sym_number] = ACTIONS(3134), + [sym_this] = ACTIONS(3218), + [sym_true] = ACTIONS(3138), + [sym_false] = ACTIONS(3138), + [sym_null] = ACTIONS(3138), + [sym_undefined] = ACTIONS(3138), + [anon_sym_readonly] = ACTIONS(3140), + [anon_sym_QMARK] = ACTIONS(3142), + [anon_sym_any] = ACTIONS(3130), + [anon_sym_number] = ACTIONS(3130), + [anon_sym_boolean] = ACTIONS(3130), + [anon_sym_string] = ACTIONS(3130), + [anon_sym_symbol] = ACTIONS(3130), + [anon_sym_object] = ACTIONS(3130), + [anon_sym_abstract] = ACTIONS(3144), + [anon_sym_infer] = ACTIONS(3148), + [anon_sym_keyof] = ACTIONS(3150), + [anon_sym_unique] = ACTIONS(3152), + [anon_sym_unknown] = ACTIONS(3130), + [anon_sym_never] = ACTIONS(3130), + [anon_sym_LBRACE_PIPE] = ACTIONS(3154), [sym_html_comment] = ACTIONS(5), }, [995] = { - [sym_import] = STATE(4909), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5858), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3328), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3846), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5355), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_typeof] = ACTIONS(3083), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_new] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3095), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(3097), - [anon_sym_infer] = ACTIONS(3101), - [anon_sym_keyof] = ACTIONS(3103), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(3105), + [sym_import] = STATE(4633), + [sym_nested_identifier] = STATE(5639), + [sym_string] = STATE(1509), + [sym_formal_parameters] = STATE(5732), + [sym_nested_type_identifier] = STATE(1485), + [sym__type_query_member_expression_in_type_annotation] = STATE(1482), + [sym__type_query_call_expression_in_type_annotation] = STATE(1512), + [sym_type] = STATE(1579), + [sym_constructor_type] = STATE(1513), + [sym_primary_type] = STATE(1514), + [sym_template_literal_type] = STATE(1508), + [sym_infer_type] = STATE(1513), + [sym_conditional_type] = STATE(1508), + [sym_generic_type] = STATE(1508), + [sym_type_query] = STATE(1508), + [sym_index_type_query] = STATE(1508), + [sym_lookup_type] = STATE(1508), + [sym_literal_type] = STATE(1508), + [sym__number] = STATE(1515), + [sym_existential_type] = STATE(1508), + [sym_flow_maybe_type] = STATE(1508), + [sym_parenthesized_type] = STATE(1508), + [sym_predefined_type] = STATE(1508), + [sym_object_type] = STATE(1508), + [sym_type_parameters] = STATE(5328), + [sym_array_type] = STATE(1508), + [sym_tuple_type] = STATE(1508), + [sym_readonly_type] = STATE(1513), + [sym_union_type] = STATE(1508), + [sym_intersection_type] = STATE(1508), + [sym_function_type] = STATE(1513), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_typeof] = ACTIONS(3114), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_new] = ACTIONS(3122), + [anon_sym_AMP] = ACTIONS(3124), + [anon_sym_PIPE] = ACTIONS(3126), + [anon_sym_PLUS] = ACTIONS(3128), + [anon_sym_DASH] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(3130), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3132), + [sym_number] = ACTIONS(3134), + [sym_this] = ACTIONS(3218), + [sym_true] = ACTIONS(3138), + [sym_false] = ACTIONS(3138), + [sym_null] = ACTIONS(3138), + [sym_undefined] = ACTIONS(3138), + [anon_sym_readonly] = ACTIONS(3140), + [anon_sym_QMARK] = ACTIONS(3142), + [anon_sym_any] = ACTIONS(3130), + [anon_sym_number] = ACTIONS(3130), + [anon_sym_boolean] = ACTIONS(3130), + [anon_sym_string] = ACTIONS(3130), + [anon_sym_symbol] = ACTIONS(3130), + [anon_sym_object] = ACTIONS(3130), + [anon_sym_abstract] = ACTIONS(3144), + [anon_sym_infer] = ACTIONS(3148), + [anon_sym_keyof] = ACTIONS(3150), + [anon_sym_unique] = ACTIONS(3152), + [anon_sym_unknown] = ACTIONS(3130), + [anon_sym_never] = ACTIONS(3130), + [anon_sym_LBRACE_PIPE] = ACTIONS(3154), [sym_html_comment] = ACTIONS(5), }, [996] = { - [sym_import] = STATE(4909), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5858), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3328), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3847), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5355), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_typeof] = ACTIONS(3083), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_new] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3095), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(3097), - [anon_sym_infer] = ACTIONS(3101), - [anon_sym_keyof] = ACTIONS(3103), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(3105), + [sym_import] = STATE(4648), + [sym_nested_identifier] = STATE(5899), + [sym_string] = STATE(1864), + [sym_formal_parameters] = STATE(5723), + [sym_nested_type_identifier] = STATE(1843), + [sym__type_query_member_expression_in_type_annotation] = STATE(1844), + [sym__type_query_call_expression_in_type_annotation] = STATE(1866), + [sym_type] = STATE(1972), + [sym_constructor_type] = STATE(1867), + [sym_primary_type] = STATE(1868), + [sym_template_literal_type] = STATE(1863), + [sym_infer_type] = STATE(1867), + [sym_conditional_type] = STATE(1863), + [sym_generic_type] = STATE(1863), + [sym_type_query] = STATE(1863), + [sym_index_type_query] = STATE(1863), + [sym_lookup_type] = STATE(1863), + [sym_literal_type] = STATE(1863), + [sym__number] = STATE(1869), + [sym_existential_type] = STATE(1863), + [sym_flow_maybe_type] = STATE(1863), + [sym_parenthesized_type] = STATE(1863), + [sym_predefined_type] = STATE(1863), + [sym_object_type] = STATE(1863), + [sym_type_parameters] = STATE(5380), + [sym_array_type] = STATE(1863), + [sym_tuple_type] = STATE(1863), + [sym_readonly_type] = STATE(1867), + [sym_union_type] = STATE(1863), + [sym_intersection_type] = STATE(1863), + [sym_function_type] = STATE(1867), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(2998), + [anon_sym_LBRACE] = ACTIONS(3000), + [anon_sym_typeof] = ACTIONS(3002), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3004), + [anon_sym_LPAREN] = ACTIONS(3006), + [anon_sym_LBRACK] = ACTIONS(3008), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_PIPE] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3016), + [anon_sym_DASH] = ACTIONS(3016), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(3018), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3020), + [sym_number] = ACTIONS(3022), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(3026), + [sym_false] = ACTIONS(3026), + [sym_null] = ACTIONS(3026), + [sym_undefined] = ACTIONS(3026), + [anon_sym_readonly] = ACTIONS(3028), + [anon_sym_QMARK] = ACTIONS(3030), + [anon_sym_any] = ACTIONS(3018), + [anon_sym_number] = ACTIONS(3018), + [anon_sym_boolean] = ACTIONS(3018), + [anon_sym_string] = ACTIONS(3018), + [anon_sym_symbol] = ACTIONS(3018), + [anon_sym_object] = ACTIONS(3018), + [anon_sym_abstract] = ACTIONS(3032), + [anon_sym_infer] = ACTIONS(3036), + [anon_sym_keyof] = ACTIONS(3038), + [anon_sym_unique] = ACTIONS(3040), + [anon_sym_unknown] = ACTIONS(3018), + [anon_sym_never] = ACTIONS(3018), + [anon_sym_LBRACE_PIPE] = ACTIONS(3042), [sym_html_comment] = ACTIONS(5), }, [997] = { - [sym_import] = STATE(4909), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5858), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3328), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3000), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5355), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_typeof] = ACTIONS(3083), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_new] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3095), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(3097), - [anon_sym_infer] = ACTIONS(3101), - [anon_sym_keyof] = ACTIONS(3103), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(3105), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3082), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [998] = { - [sym_import] = STATE(4909), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5858), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3328), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3932), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5355), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_typeof] = ACTIONS(3083), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_new] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3095), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(3097), - [anon_sym_infer] = ACTIONS(3101), - [anon_sym_keyof] = ACTIONS(3103), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(3105), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3067), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [999] = { - [sym_import] = STATE(4635), - [sym_nested_identifier] = STATE(5854), - [sym_string] = STATE(1922), - [sym_formal_parameters] = STATE(5981), - [sym_nested_type_identifier] = STATE(1768), - [sym__type_query_member_expression_in_type_annotation] = STATE(1769), - [sym__type_query_call_expression_in_type_annotation] = STATE(1973), - [sym_type] = STATE(1953), - [sym_constructor_type] = STATE(1980), - [sym_primary_type] = STATE(1981), - [sym_template_literal_type] = STATE(1907), - [sym_infer_type] = STATE(1980), - [sym_conditional_type] = STATE(1907), - [sym_generic_type] = STATE(1907), - [sym_type_query] = STATE(1907), - [sym_index_type_query] = STATE(1907), - [sym_lookup_type] = STATE(1907), - [sym_literal_type] = STATE(1907), - [sym__number] = STATE(1987), - [sym_existential_type] = STATE(1907), - [sym_flow_maybe_type] = STATE(1907), - [sym_parenthesized_type] = STATE(1907), - [sym_predefined_type] = STATE(1907), - [sym_object_type] = STATE(1907), - [sym_type_parameters] = STATE(5335), - [sym_array_type] = STATE(1907), - [sym_tuple_type] = STATE(1907), - [sym_readonly_type] = STATE(1980), - [sym_union_type] = STATE(1907), - [sym_intersection_type] = STATE(1907), - [sym_function_type] = STATE(1980), - [sym_identifier] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_LBRACE] = ACTIONS(2981), - [anon_sym_typeof] = ACTIONS(2983), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_PIPE] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(2999), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3001), - [sym_number] = ACTIONS(3003), - [sym_this] = ACTIONS(3233), - [sym_true] = ACTIONS(3007), - [sym_false] = ACTIONS(3007), - [sym_null] = ACTIONS(3007), - [sym_undefined] = ACTIONS(3007), - [anon_sym_readonly] = ACTIONS(3009), - [anon_sym_QMARK] = ACTIONS(3011), - [anon_sym_any] = ACTIONS(2999), - [anon_sym_number] = ACTIONS(2999), - [anon_sym_boolean] = ACTIONS(2999), - [anon_sym_string] = ACTIONS(2999), - [anon_sym_symbol] = ACTIONS(2999), - [anon_sym_object] = ACTIONS(2999), - [anon_sym_abstract] = ACTIONS(3013), - [anon_sym_infer] = ACTIONS(3017), - [anon_sym_keyof] = ACTIONS(3019), - [anon_sym_unique] = ACTIONS(3021), - [anon_sym_unknown] = ACTIONS(2999), - [anon_sym_never] = ACTIONS(2999), - [anon_sym_LBRACE_PIPE] = ACTIONS(3023), + [sym_import] = STATE(4633), + [sym_nested_identifier] = STATE(5639), + [sym_string] = STATE(1509), + [sym_formal_parameters] = STATE(5732), + [sym_nested_type_identifier] = STATE(1485), + [sym__type_query_member_expression_in_type_annotation] = STATE(1482), + [sym__type_query_call_expression_in_type_annotation] = STATE(1512), + [sym_type] = STATE(1595), + [sym_constructor_type] = STATE(1513), + [sym_primary_type] = STATE(1514), + [sym_template_literal_type] = STATE(1508), + [sym_infer_type] = STATE(1513), + [sym_conditional_type] = STATE(1508), + [sym_generic_type] = STATE(1508), + [sym_type_query] = STATE(1508), + [sym_index_type_query] = STATE(1508), + [sym_lookup_type] = STATE(1508), + [sym_literal_type] = STATE(1508), + [sym__number] = STATE(1515), + [sym_existential_type] = STATE(1508), + [sym_flow_maybe_type] = STATE(1508), + [sym_parenthesized_type] = STATE(1508), + [sym_predefined_type] = STATE(1508), + [sym_object_type] = STATE(1508), + [sym_type_parameters] = STATE(5328), + [sym_array_type] = STATE(1508), + [sym_tuple_type] = STATE(1508), + [sym_readonly_type] = STATE(1513), + [sym_union_type] = STATE(1508), + [sym_intersection_type] = STATE(1508), + [sym_function_type] = STATE(1513), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_typeof] = ACTIONS(3114), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_new] = ACTIONS(3122), + [anon_sym_AMP] = ACTIONS(3124), + [anon_sym_PIPE] = ACTIONS(3126), + [anon_sym_PLUS] = ACTIONS(3128), + [anon_sym_DASH] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(3130), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3132), + [sym_number] = ACTIONS(3134), + [sym_this] = ACTIONS(3218), + [sym_true] = ACTIONS(3138), + [sym_false] = ACTIONS(3138), + [sym_null] = ACTIONS(3138), + [sym_undefined] = ACTIONS(3138), + [anon_sym_readonly] = ACTIONS(3140), + [anon_sym_QMARK] = ACTIONS(3142), + [anon_sym_any] = ACTIONS(3130), + [anon_sym_number] = ACTIONS(3130), + [anon_sym_boolean] = ACTIONS(3130), + [anon_sym_string] = ACTIONS(3130), + [anon_sym_symbol] = ACTIONS(3130), + [anon_sym_object] = ACTIONS(3130), + [anon_sym_abstract] = ACTIONS(3144), + [anon_sym_infer] = ACTIONS(3148), + [anon_sym_keyof] = ACTIONS(3150), + [anon_sym_unique] = ACTIONS(3152), + [anon_sym_unknown] = ACTIONS(3130), + [anon_sym_never] = ACTIONS(3130), + [anon_sym_LBRACE_PIPE] = ACTIONS(3154), [sym_html_comment] = ACTIONS(5), }, [1000] = { - [sym_import] = STATE(4635), - [sym_nested_identifier] = STATE(5854), - [sym_string] = STATE(1922), - [sym_formal_parameters] = STATE(5981), - [sym_nested_type_identifier] = STATE(1768), - [sym__type_query_member_expression_in_type_annotation] = STATE(1769), - [sym__type_query_call_expression_in_type_annotation] = STATE(1973), - [sym_type] = STATE(1961), - [sym_constructor_type] = STATE(1980), - [sym_primary_type] = STATE(1981), - [sym_template_literal_type] = STATE(1907), - [sym_infer_type] = STATE(1980), - [sym_conditional_type] = STATE(1907), - [sym_generic_type] = STATE(1907), - [sym_type_query] = STATE(1907), - [sym_index_type_query] = STATE(1907), - [sym_lookup_type] = STATE(1907), - [sym_literal_type] = STATE(1907), - [sym__number] = STATE(1987), - [sym_existential_type] = STATE(1907), - [sym_flow_maybe_type] = STATE(1907), - [sym_parenthesized_type] = STATE(1907), - [sym_predefined_type] = STATE(1907), - [sym_object_type] = STATE(1907), - [sym_type_parameters] = STATE(5335), - [sym_array_type] = STATE(1907), - [sym_tuple_type] = STATE(1907), - [sym_readonly_type] = STATE(1980), - [sym_union_type] = STATE(1907), - [sym_intersection_type] = STATE(1907), - [sym_function_type] = STATE(1980), - [sym_identifier] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_LBRACE] = ACTIONS(2981), - [anon_sym_typeof] = ACTIONS(2983), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_PIPE] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(2999), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3001), - [sym_number] = ACTIONS(3003), - [sym_this] = ACTIONS(3233), - [sym_true] = ACTIONS(3007), - [sym_false] = ACTIONS(3007), - [sym_null] = ACTIONS(3007), - [sym_undefined] = ACTIONS(3007), - [anon_sym_readonly] = ACTIONS(3009), - [anon_sym_QMARK] = ACTIONS(3011), - [anon_sym_any] = ACTIONS(2999), - [anon_sym_number] = ACTIONS(2999), - [anon_sym_boolean] = ACTIONS(2999), - [anon_sym_string] = ACTIONS(2999), - [anon_sym_symbol] = ACTIONS(2999), - [anon_sym_object] = ACTIONS(2999), - [anon_sym_abstract] = ACTIONS(3013), - [anon_sym_infer] = ACTIONS(3017), - [anon_sym_keyof] = ACTIONS(3019), - [anon_sym_unique] = ACTIONS(3021), - [anon_sym_unknown] = ACTIONS(2999), - [anon_sym_never] = ACTIONS(2999), - [anon_sym_LBRACE_PIPE] = ACTIONS(3023), + [sym_import] = STATE(4633), + [sym_nested_identifier] = STATE(5639), + [sym_string] = STATE(1509), + [sym_formal_parameters] = STATE(5732), + [sym_nested_type_identifier] = STATE(1485), + [sym__type_query_member_expression_in_type_annotation] = STATE(1482), + [sym__type_query_call_expression_in_type_annotation] = STATE(1512), + [sym_type] = STATE(1596), + [sym_constructor_type] = STATE(1513), + [sym_primary_type] = STATE(1514), + [sym_template_literal_type] = STATE(1508), + [sym_infer_type] = STATE(1513), + [sym_conditional_type] = STATE(1508), + [sym_generic_type] = STATE(1508), + [sym_type_query] = STATE(1508), + [sym_index_type_query] = STATE(1508), + [sym_lookup_type] = STATE(1508), + [sym_literal_type] = STATE(1508), + [sym__number] = STATE(1515), + [sym_existential_type] = STATE(1508), + [sym_flow_maybe_type] = STATE(1508), + [sym_parenthesized_type] = STATE(1508), + [sym_predefined_type] = STATE(1508), + [sym_object_type] = STATE(1508), + [sym_type_parameters] = STATE(5328), + [sym_array_type] = STATE(1508), + [sym_tuple_type] = STATE(1508), + [sym_readonly_type] = STATE(1513), + [sym_union_type] = STATE(1508), + [sym_intersection_type] = STATE(1508), + [sym_function_type] = STATE(1513), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_typeof] = ACTIONS(3114), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_new] = ACTIONS(3122), + [anon_sym_AMP] = ACTIONS(3124), + [anon_sym_PIPE] = ACTIONS(3126), + [anon_sym_PLUS] = ACTIONS(3128), + [anon_sym_DASH] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(3130), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3132), + [sym_number] = ACTIONS(3134), + [sym_this] = ACTIONS(3218), + [sym_true] = ACTIONS(3138), + [sym_false] = ACTIONS(3138), + [sym_null] = ACTIONS(3138), + [sym_undefined] = ACTIONS(3138), + [anon_sym_readonly] = ACTIONS(3140), + [anon_sym_QMARK] = ACTIONS(3142), + [anon_sym_any] = ACTIONS(3130), + [anon_sym_number] = ACTIONS(3130), + [anon_sym_boolean] = ACTIONS(3130), + [anon_sym_string] = ACTIONS(3130), + [anon_sym_symbol] = ACTIONS(3130), + [anon_sym_object] = ACTIONS(3130), + [anon_sym_abstract] = ACTIONS(3144), + [anon_sym_infer] = ACTIONS(3148), + [anon_sym_keyof] = ACTIONS(3150), + [anon_sym_unique] = ACTIONS(3152), + [anon_sym_unknown] = ACTIONS(3130), + [anon_sym_never] = ACTIONS(3130), + [anon_sym_LBRACE_PIPE] = ACTIONS(3154), [sym_html_comment] = ACTIONS(5), }, [1001] = { - [sym_import] = STATE(4909), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5858), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3328), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(2955), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5355), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_typeof] = ACTIONS(3083), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_new] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3095), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(3097), - [anon_sym_infer] = ACTIONS(3101), - [anon_sym_keyof] = ACTIONS(3103), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(3105), + [sym_import] = STATE(4633), + [sym_nested_identifier] = STATE(5639), + [sym_string] = STATE(1509), + [sym_formal_parameters] = STATE(5732), + [sym_nested_type_identifier] = STATE(1485), + [sym__type_query_member_expression_in_type_annotation] = STATE(1482), + [sym__type_query_call_expression_in_type_annotation] = STATE(1512), + [sym_type] = STATE(1608), + [sym_constructor_type] = STATE(1513), + [sym_primary_type] = STATE(1514), + [sym_template_literal_type] = STATE(1508), + [sym_infer_type] = STATE(1513), + [sym_conditional_type] = STATE(1508), + [sym_generic_type] = STATE(1508), + [sym_type_query] = STATE(1508), + [sym_index_type_query] = STATE(1508), + [sym_lookup_type] = STATE(1508), + [sym_literal_type] = STATE(1508), + [sym__number] = STATE(1515), + [sym_existential_type] = STATE(1508), + [sym_flow_maybe_type] = STATE(1508), + [sym_parenthesized_type] = STATE(1508), + [sym_predefined_type] = STATE(1508), + [sym_object_type] = STATE(1508), + [sym_type_parameters] = STATE(5328), + [sym_array_type] = STATE(1508), + [sym_tuple_type] = STATE(1508), + [sym_readonly_type] = STATE(1513), + [sym_union_type] = STATE(1508), + [sym_intersection_type] = STATE(1508), + [sym_function_type] = STATE(1513), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_typeof] = ACTIONS(3114), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_new] = ACTIONS(3122), + [anon_sym_AMP] = ACTIONS(3124), + [anon_sym_PIPE] = ACTIONS(3126), + [anon_sym_PLUS] = ACTIONS(3128), + [anon_sym_DASH] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(3130), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3132), + [sym_number] = ACTIONS(3134), + [sym_this] = ACTIONS(3218), + [sym_true] = ACTIONS(3138), + [sym_false] = ACTIONS(3138), + [sym_null] = ACTIONS(3138), + [sym_undefined] = ACTIONS(3138), + [anon_sym_readonly] = ACTIONS(3140), + [anon_sym_QMARK] = ACTIONS(3142), + [anon_sym_any] = ACTIONS(3130), + [anon_sym_number] = ACTIONS(3130), + [anon_sym_boolean] = ACTIONS(3130), + [anon_sym_string] = ACTIONS(3130), + [anon_sym_symbol] = ACTIONS(3130), + [anon_sym_object] = ACTIONS(3130), + [anon_sym_abstract] = ACTIONS(3144), + [anon_sym_infer] = ACTIONS(3148), + [anon_sym_keyof] = ACTIONS(3150), + [anon_sym_unique] = ACTIONS(3152), + [anon_sym_unknown] = ACTIONS(3130), + [anon_sym_never] = ACTIONS(3130), + [anon_sym_LBRACE_PIPE] = ACTIONS(3154), [sym_html_comment] = ACTIONS(5), }, [1002] = { - [sym_import] = STATE(4909), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5858), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3328), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(2956), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5355), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_typeof] = ACTIONS(3083), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_new] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3095), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(3097), - [anon_sym_infer] = ACTIONS(3101), - [anon_sym_keyof] = ACTIONS(3103), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(3105), + [sym_import] = STATE(4633), + [sym_nested_identifier] = STATE(5639), + [sym_string] = STATE(1509), + [sym_formal_parameters] = STATE(5732), + [sym_nested_type_identifier] = STATE(1485), + [sym__type_query_member_expression_in_type_annotation] = STATE(1482), + [sym__type_query_call_expression_in_type_annotation] = STATE(1512), + [sym_type] = STATE(1489), + [sym_constructor_type] = STATE(1513), + [sym_primary_type] = STATE(1514), + [sym_template_literal_type] = STATE(1508), + [sym_infer_type] = STATE(1513), + [sym_conditional_type] = STATE(1508), + [sym_generic_type] = STATE(1508), + [sym_type_query] = STATE(1508), + [sym_index_type_query] = STATE(1508), + [sym_lookup_type] = STATE(1508), + [sym_literal_type] = STATE(1508), + [sym__number] = STATE(1515), + [sym_existential_type] = STATE(1508), + [sym_flow_maybe_type] = STATE(1508), + [sym_parenthesized_type] = STATE(1508), + [sym_predefined_type] = STATE(1508), + [sym_object_type] = STATE(1508), + [sym_type_parameters] = STATE(5328), + [sym_array_type] = STATE(1508), + [sym_tuple_type] = STATE(1508), + [sym_readonly_type] = STATE(1513), + [sym_union_type] = STATE(1508), + [sym_intersection_type] = STATE(1508), + [sym_function_type] = STATE(1513), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_typeof] = ACTIONS(3114), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_new] = ACTIONS(3122), + [anon_sym_AMP] = ACTIONS(3124), + [anon_sym_PIPE] = ACTIONS(3126), + [anon_sym_PLUS] = ACTIONS(3128), + [anon_sym_DASH] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(3130), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3132), + [sym_number] = ACTIONS(3134), + [sym_this] = ACTIONS(3218), + [sym_true] = ACTIONS(3138), + [sym_false] = ACTIONS(3138), + [sym_null] = ACTIONS(3138), + [sym_undefined] = ACTIONS(3138), + [anon_sym_readonly] = ACTIONS(3140), + [anon_sym_QMARK] = ACTIONS(3142), + [anon_sym_any] = ACTIONS(3130), + [anon_sym_number] = ACTIONS(3130), + [anon_sym_boolean] = ACTIONS(3130), + [anon_sym_string] = ACTIONS(3130), + [anon_sym_symbol] = ACTIONS(3130), + [anon_sym_object] = ACTIONS(3130), + [anon_sym_abstract] = ACTIONS(3144), + [anon_sym_infer] = ACTIONS(3148), + [anon_sym_keyof] = ACTIONS(3150), + [anon_sym_unique] = ACTIONS(3152), + [anon_sym_unknown] = ACTIONS(3130), + [anon_sym_never] = ACTIONS(3130), + [anon_sym_LBRACE_PIPE] = ACTIONS(3154), [sym_html_comment] = ACTIONS(5), }, [1003] = { - [sym_import] = STATE(4909), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5858), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3328), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(2904), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5355), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_typeof] = ACTIONS(3083), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_new] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3095), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(3097), - [anon_sym_infer] = ACTIONS(3101), - [anon_sym_keyof] = ACTIONS(3103), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(3105), + [sym_import] = STATE(4648), + [sym_nested_identifier] = STATE(5899), + [sym_string] = STATE(1864), + [sym_formal_parameters] = STATE(5723), + [sym_nested_type_identifier] = STATE(1843), + [sym__type_query_member_expression_in_type_annotation] = STATE(1844), + [sym__type_query_call_expression_in_type_annotation] = STATE(1866), + [sym_type] = STATE(1973), + [sym_constructor_type] = STATE(1867), + [sym_primary_type] = STATE(1868), + [sym_template_literal_type] = STATE(1863), + [sym_infer_type] = STATE(1867), + [sym_conditional_type] = STATE(1863), + [sym_generic_type] = STATE(1863), + [sym_type_query] = STATE(1863), + [sym_index_type_query] = STATE(1863), + [sym_lookup_type] = STATE(1863), + [sym_literal_type] = STATE(1863), + [sym__number] = STATE(1869), + [sym_existential_type] = STATE(1863), + [sym_flow_maybe_type] = STATE(1863), + [sym_parenthesized_type] = STATE(1863), + [sym_predefined_type] = STATE(1863), + [sym_object_type] = STATE(1863), + [sym_type_parameters] = STATE(5380), + [sym_array_type] = STATE(1863), + [sym_tuple_type] = STATE(1863), + [sym_readonly_type] = STATE(1867), + [sym_union_type] = STATE(1863), + [sym_intersection_type] = STATE(1863), + [sym_function_type] = STATE(1867), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(2998), + [anon_sym_LBRACE] = ACTIONS(3000), + [anon_sym_typeof] = ACTIONS(3002), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3004), + [anon_sym_LPAREN] = ACTIONS(3006), + [anon_sym_LBRACK] = ACTIONS(3008), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_PIPE] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3016), + [anon_sym_DASH] = ACTIONS(3016), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(3018), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3020), + [sym_number] = ACTIONS(3022), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(3026), + [sym_false] = ACTIONS(3026), + [sym_null] = ACTIONS(3026), + [sym_undefined] = ACTIONS(3026), + [anon_sym_readonly] = ACTIONS(3028), + [anon_sym_QMARK] = ACTIONS(3030), + [anon_sym_any] = ACTIONS(3018), + [anon_sym_number] = ACTIONS(3018), + [anon_sym_boolean] = ACTIONS(3018), + [anon_sym_string] = ACTIONS(3018), + [anon_sym_symbol] = ACTIONS(3018), + [anon_sym_object] = ACTIONS(3018), + [anon_sym_abstract] = ACTIONS(3032), + [anon_sym_infer] = ACTIONS(3036), + [anon_sym_keyof] = ACTIONS(3038), + [anon_sym_unique] = ACTIONS(3040), + [anon_sym_unknown] = ACTIONS(3018), + [anon_sym_never] = ACTIONS(3018), + [anon_sym_LBRACE_PIPE] = ACTIONS(3042), [sym_html_comment] = ACTIONS(5), }, [1004] = { - [sym_import] = STATE(4635), - [sym_nested_identifier] = STATE(5854), - [sym_string] = STATE(1922), - [sym_formal_parameters] = STATE(5981), - [sym_nested_type_identifier] = STATE(1768), - [sym__type_query_member_expression_in_type_annotation] = STATE(1769), - [sym__type_query_call_expression_in_type_annotation] = STATE(1973), - [sym_type] = STATE(1967), - [sym_constructor_type] = STATE(1980), - [sym_primary_type] = STATE(1981), - [sym_template_literal_type] = STATE(1907), - [sym_infer_type] = STATE(1980), - [sym_conditional_type] = STATE(1907), - [sym_generic_type] = STATE(1907), - [sym_type_query] = STATE(1907), - [sym_index_type_query] = STATE(1907), - [sym_lookup_type] = STATE(1907), - [sym_literal_type] = STATE(1907), - [sym__number] = STATE(1987), - [sym_existential_type] = STATE(1907), - [sym_flow_maybe_type] = STATE(1907), - [sym_parenthesized_type] = STATE(1907), - [sym_predefined_type] = STATE(1907), - [sym_object_type] = STATE(1907), - [sym_type_parameters] = STATE(5335), - [sym_array_type] = STATE(1907), - [sym_tuple_type] = STATE(1907), - [sym_readonly_type] = STATE(1980), - [sym_union_type] = STATE(1907), - [sym_intersection_type] = STATE(1907), - [sym_function_type] = STATE(1980), - [sym_identifier] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_LBRACE] = ACTIONS(2981), - [anon_sym_typeof] = ACTIONS(2983), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_PIPE] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(2999), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3001), - [sym_number] = ACTIONS(3003), - [sym_this] = ACTIONS(3233), - [sym_true] = ACTIONS(3007), - [sym_false] = ACTIONS(3007), - [sym_null] = ACTIONS(3007), - [sym_undefined] = ACTIONS(3007), - [anon_sym_readonly] = ACTIONS(3009), - [anon_sym_QMARK] = ACTIONS(3011), - [anon_sym_any] = ACTIONS(2999), - [anon_sym_number] = ACTIONS(2999), - [anon_sym_boolean] = ACTIONS(2999), - [anon_sym_string] = ACTIONS(2999), - [anon_sym_symbol] = ACTIONS(2999), - [anon_sym_object] = ACTIONS(2999), - [anon_sym_abstract] = ACTIONS(3013), - [anon_sym_infer] = ACTIONS(3017), - [anon_sym_keyof] = ACTIONS(3019), - [anon_sym_unique] = ACTIONS(3021), - [anon_sym_unknown] = ACTIONS(2999), - [anon_sym_never] = ACTIONS(2999), - [anon_sym_LBRACE_PIPE] = ACTIONS(3023), + [sym_import] = STATE(4673), + [sym_nested_identifier] = STATE(5966), + [sym_string] = STATE(3463), + [sym_formal_parameters] = STATE(5586), + [sym_nested_type_identifier] = STATE(3191), + [sym__type_query_member_expression_in_type_annotation] = STATE(3128), + [sym__type_query_call_expression_in_type_annotation] = STATE(3287), + [sym_type] = STATE(3353), + [sym_constructor_type] = STATE(3321), + [sym_primary_type] = STATE(3325), + [sym_template_literal_type] = STATE(3443), + [sym_infer_type] = STATE(3321), + [sym_conditional_type] = STATE(3443), + [sym_generic_type] = STATE(3443), + [sym_type_query] = STATE(3443), + [sym_index_type_query] = STATE(3443), + [sym_lookup_type] = STATE(3443), + [sym_literal_type] = STATE(3443), + [sym__number] = STATE(3326), + [sym_existential_type] = STATE(3443), + [sym_flow_maybe_type] = STATE(3443), + [sym_parenthesized_type] = STATE(3443), + [sym_predefined_type] = STATE(3443), + [sym_object_type] = STATE(3443), + [sym_type_parameters] = STATE(5361), + [sym_array_type] = STATE(3443), + [sym_tuple_type] = STATE(3443), + [sym_readonly_type] = STATE(3321), + [sym_union_type] = STATE(3443), + [sym_intersection_type] = STATE(3443), + [sym_function_type] = STATE(3321), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3046), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_typeof] = ACTIONS(3050), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(3054), + [anon_sym_LBRACK] = ACTIONS(3056), + [anon_sym_DQUOTE] = ACTIONS(3058), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3064), + [anon_sym_PIPE] = ACTIONS(3066), + [anon_sym_PLUS] = ACTIONS(3068), + [anon_sym_DASH] = ACTIONS(3068), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(3070), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3072), + [sym_number] = ACTIONS(3074), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3078), + [sym_false] = ACTIONS(3078), + [sym_null] = ACTIONS(3078), + [sym_undefined] = ACTIONS(3078), + [anon_sym_readonly] = ACTIONS(3080), + [anon_sym_QMARK] = ACTIONS(3082), + [anon_sym_any] = ACTIONS(3070), + [anon_sym_number] = ACTIONS(3070), + [anon_sym_boolean] = ACTIONS(3070), + [anon_sym_string] = ACTIONS(3070), + [anon_sym_symbol] = ACTIONS(3070), + [anon_sym_object] = ACTIONS(3070), + [anon_sym_abstract] = ACTIONS(3084), + [anon_sym_infer] = ACTIONS(3088), + [anon_sym_keyof] = ACTIONS(3090), + [anon_sym_unique] = ACTIONS(3092), + [anon_sym_unknown] = ACTIONS(3070), + [anon_sym_never] = ACTIONS(3070), + [anon_sym_LBRACE_PIPE] = ACTIONS(3094), [sym_html_comment] = ACTIONS(5), }, [1005] = { - [sym_import] = STATE(4909), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5858), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3328), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3883), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5355), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_typeof] = ACTIONS(3083), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_new] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3095), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(3097), - [anon_sym_infer] = ACTIONS(3101), - [anon_sym_keyof] = ACTIONS(3103), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(3105), + [sym_import] = STATE(4673), + [sym_nested_identifier] = STATE(5966), + [sym_string] = STATE(3463), + [sym_formal_parameters] = STATE(5586), + [sym_nested_type_identifier] = STATE(3191), + [sym__type_query_member_expression_in_type_annotation] = STATE(3128), + [sym__type_query_call_expression_in_type_annotation] = STATE(3287), + [sym_type] = STATE(3355), + [sym_constructor_type] = STATE(3321), + [sym_primary_type] = STATE(3325), + [sym_template_literal_type] = STATE(3443), + [sym_infer_type] = STATE(3321), + [sym_conditional_type] = STATE(3443), + [sym_generic_type] = STATE(3443), + [sym_type_query] = STATE(3443), + [sym_index_type_query] = STATE(3443), + [sym_lookup_type] = STATE(3443), + [sym_literal_type] = STATE(3443), + [sym__number] = STATE(3326), + [sym_existential_type] = STATE(3443), + [sym_flow_maybe_type] = STATE(3443), + [sym_parenthesized_type] = STATE(3443), + [sym_predefined_type] = STATE(3443), + [sym_object_type] = STATE(3443), + [sym_type_parameters] = STATE(5361), + [sym_array_type] = STATE(3443), + [sym_tuple_type] = STATE(3443), + [sym_readonly_type] = STATE(3321), + [sym_union_type] = STATE(3443), + [sym_intersection_type] = STATE(3443), + [sym_function_type] = STATE(3321), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3046), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_typeof] = ACTIONS(3050), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(3054), + [anon_sym_LBRACK] = ACTIONS(3056), + [anon_sym_DQUOTE] = ACTIONS(3058), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3064), + [anon_sym_PIPE] = ACTIONS(3066), + [anon_sym_PLUS] = ACTIONS(3068), + [anon_sym_DASH] = ACTIONS(3068), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(3070), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3072), + [sym_number] = ACTIONS(3074), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3078), + [sym_false] = ACTIONS(3078), + [sym_null] = ACTIONS(3078), + [sym_undefined] = ACTIONS(3078), + [anon_sym_readonly] = ACTIONS(3080), + [anon_sym_QMARK] = ACTIONS(3082), + [anon_sym_any] = ACTIONS(3070), + [anon_sym_number] = ACTIONS(3070), + [anon_sym_boolean] = ACTIONS(3070), + [anon_sym_string] = ACTIONS(3070), + [anon_sym_symbol] = ACTIONS(3070), + [anon_sym_object] = ACTIONS(3070), + [anon_sym_abstract] = ACTIONS(3084), + [anon_sym_infer] = ACTIONS(3088), + [anon_sym_keyof] = ACTIONS(3090), + [anon_sym_unique] = ACTIONS(3092), + [anon_sym_unknown] = ACTIONS(3070), + [anon_sym_never] = ACTIONS(3070), + [anon_sym_LBRACE_PIPE] = ACTIONS(3094), [sym_html_comment] = ACTIONS(5), }, [1006] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5854), - [sym_string] = STATE(1922), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(1768), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4762), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(1968), - [sym_template_literal_type] = STATE(1907), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(1907), - [sym_generic_type] = STATE(1907), - [sym_type_query] = STATE(1907), - [sym_index_type_query] = STATE(1907), - [sym_lookup_type] = STATE(1907), - [sym_literal_type] = STATE(1907), - [sym__number] = STATE(1987), - [sym_existential_type] = STATE(1907), - [sym_flow_maybe_type] = STATE(1907), - [sym_parenthesized_type] = STATE(1907), - [sym_predefined_type] = STATE(1907), - [sym_object_type] = STATE(1907), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(1907), - [sym_tuple_type] = STATE(1907), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(1907), - [sym_intersection_type] = STATE(1907), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_LBRACE] = ACTIONS(2981), - [anon_sym_typeof] = ACTIONS(2983), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_PIPE] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(2999), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3001), - [sym_number] = ACTIONS(3003), - [sym_this] = ACTIONS(3233), - [sym_true] = ACTIONS(3007), - [sym_false] = ACTIONS(3007), - [sym_null] = ACTIONS(3007), - [sym_undefined] = ACTIONS(3007), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(3011), - [anon_sym_any] = ACTIONS(2999), - [anon_sym_number] = ACTIONS(2999), - [anon_sym_boolean] = ACTIONS(2999), - [anon_sym_string] = ACTIONS(2999), - [anon_sym_symbol] = ACTIONS(2999), - [anon_sym_object] = ACTIONS(2999), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(3019), - [anon_sym_unique] = ACTIONS(3021), - [anon_sym_unknown] = ACTIONS(2999), - [anon_sym_never] = ACTIONS(2999), - [anon_sym_LBRACE_PIPE] = ACTIONS(3023), + [sym_import] = STATE(4673), + [sym_nested_identifier] = STATE(5966), + [sym_string] = STATE(3463), + [sym_formal_parameters] = STATE(5586), + [sym_nested_type_identifier] = STATE(3191), + [sym__type_query_member_expression_in_type_annotation] = STATE(3128), + [sym__type_query_call_expression_in_type_annotation] = STATE(3287), + [sym_type] = STATE(3359), + [sym_constructor_type] = STATE(3321), + [sym_primary_type] = STATE(3325), + [sym_template_literal_type] = STATE(3443), + [sym_infer_type] = STATE(3321), + [sym_conditional_type] = STATE(3443), + [sym_generic_type] = STATE(3443), + [sym_type_query] = STATE(3443), + [sym_index_type_query] = STATE(3443), + [sym_lookup_type] = STATE(3443), + [sym_literal_type] = STATE(3443), + [sym__number] = STATE(3326), + [sym_existential_type] = STATE(3443), + [sym_flow_maybe_type] = STATE(3443), + [sym_parenthesized_type] = STATE(3443), + [sym_predefined_type] = STATE(3443), + [sym_object_type] = STATE(3443), + [sym_type_parameters] = STATE(5361), + [sym_array_type] = STATE(3443), + [sym_tuple_type] = STATE(3443), + [sym_readonly_type] = STATE(3321), + [sym_union_type] = STATE(3443), + [sym_intersection_type] = STATE(3443), + [sym_function_type] = STATE(3321), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3046), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_typeof] = ACTIONS(3050), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(3054), + [anon_sym_LBRACK] = ACTIONS(3056), + [anon_sym_DQUOTE] = ACTIONS(3058), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3064), + [anon_sym_PIPE] = ACTIONS(3066), + [anon_sym_PLUS] = ACTIONS(3068), + [anon_sym_DASH] = ACTIONS(3068), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(3070), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3072), + [sym_number] = ACTIONS(3074), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3078), + [sym_false] = ACTIONS(3078), + [sym_null] = ACTIONS(3078), + [sym_undefined] = ACTIONS(3078), + [anon_sym_readonly] = ACTIONS(3080), + [anon_sym_QMARK] = ACTIONS(3082), + [anon_sym_any] = ACTIONS(3070), + [anon_sym_number] = ACTIONS(3070), + [anon_sym_boolean] = ACTIONS(3070), + [anon_sym_string] = ACTIONS(3070), + [anon_sym_symbol] = ACTIONS(3070), + [anon_sym_object] = ACTIONS(3070), + [anon_sym_abstract] = ACTIONS(3084), + [anon_sym_infer] = ACTIONS(3088), + [anon_sym_keyof] = ACTIONS(3090), + [anon_sym_unique] = ACTIONS(3092), + [anon_sym_unknown] = ACTIONS(3070), + [anon_sym_never] = ACTIONS(3070), + [anon_sym_LBRACE_PIPE] = ACTIONS(3094), [sym_html_comment] = ACTIONS(5), }, [1007] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5854), - [sym_string] = STATE(1922), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(1768), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4762), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(1970), - [sym_template_literal_type] = STATE(1907), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(1907), - [sym_generic_type] = STATE(1907), - [sym_type_query] = STATE(1907), - [sym_index_type_query] = STATE(1907), - [sym_lookup_type] = STATE(1907), - [sym_literal_type] = STATE(1907), - [sym__number] = STATE(1987), - [sym_existential_type] = STATE(1907), - [sym_flow_maybe_type] = STATE(1907), - [sym_parenthesized_type] = STATE(1907), - [sym_predefined_type] = STATE(1907), - [sym_object_type] = STATE(1907), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(1907), - [sym_tuple_type] = STATE(1907), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(1907), - [sym_intersection_type] = STATE(1907), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_LBRACE] = ACTIONS(2981), - [anon_sym_typeof] = ACTIONS(2983), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_PIPE] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(2999), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3001), - [sym_number] = ACTIONS(3003), - [sym_this] = ACTIONS(3233), - [sym_true] = ACTIONS(3007), - [sym_false] = ACTIONS(3007), - [sym_null] = ACTIONS(3007), - [sym_undefined] = ACTIONS(3007), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(3011), - [anon_sym_any] = ACTIONS(2999), - [anon_sym_number] = ACTIONS(2999), - [anon_sym_boolean] = ACTIONS(2999), - [anon_sym_string] = ACTIONS(2999), - [anon_sym_symbol] = ACTIONS(2999), - [anon_sym_object] = ACTIONS(2999), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(3019), - [anon_sym_unique] = ACTIONS(3021), - [anon_sym_unknown] = ACTIONS(2999), - [anon_sym_never] = ACTIONS(2999), - [anon_sym_LBRACE_PIPE] = ACTIONS(3023), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5966), + [sym_string] = STATE(3463), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(3191), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(4683), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(3360), + [sym_template_literal_type] = STATE(3443), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(3443), + [sym_generic_type] = STATE(3443), + [sym_type_query] = STATE(3443), + [sym_index_type_query] = STATE(3443), + [sym_lookup_type] = STATE(3443), + [sym_literal_type] = STATE(3443), + [sym__number] = STATE(3326), + [sym_existential_type] = STATE(3443), + [sym_flow_maybe_type] = STATE(3443), + [sym_parenthesized_type] = STATE(3443), + [sym_predefined_type] = STATE(3443), + [sym_object_type] = STATE(3443), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(3443), + [sym_tuple_type] = STATE(3443), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(3443), + [sym_intersection_type] = STATE(3443), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3046), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_typeof] = ACTIONS(3050), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(3054), + [anon_sym_LBRACK] = ACTIONS(3056), + [anon_sym_DQUOTE] = ACTIONS(3058), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(3064), + [anon_sym_PIPE] = ACTIONS(3066), + [anon_sym_PLUS] = ACTIONS(3068), + [anon_sym_DASH] = ACTIONS(3068), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(3070), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3072), + [sym_number] = ACTIONS(3074), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3078), + [sym_false] = ACTIONS(3078), + [sym_null] = ACTIONS(3078), + [sym_undefined] = ACTIONS(3078), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(3082), + [anon_sym_any] = ACTIONS(3070), + [anon_sym_number] = ACTIONS(3070), + [anon_sym_boolean] = ACTIONS(3070), + [anon_sym_string] = ACTIONS(3070), + [anon_sym_symbol] = ACTIONS(3070), + [anon_sym_object] = ACTIONS(3070), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(3090), + [anon_sym_unique] = ACTIONS(3092), + [anon_sym_unknown] = ACTIONS(3070), + [anon_sym_never] = ACTIONS(3070), + [anon_sym_LBRACE_PIPE] = ACTIONS(3094), [sym_html_comment] = ACTIONS(5), }, [1008] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(2992), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5966), + [sym_string] = STATE(3463), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(3191), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(4683), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(3371), + [sym_template_literal_type] = STATE(3443), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(3443), + [sym_generic_type] = STATE(3443), + [sym_type_query] = STATE(3443), + [sym_index_type_query] = STATE(3443), + [sym_lookup_type] = STATE(3443), + [sym_literal_type] = STATE(3443), + [sym__number] = STATE(3326), + [sym_existential_type] = STATE(3443), + [sym_flow_maybe_type] = STATE(3443), + [sym_parenthesized_type] = STATE(3443), + [sym_predefined_type] = STATE(3443), + [sym_object_type] = STATE(3443), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(3443), + [sym_tuple_type] = STATE(3443), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(3443), + [sym_intersection_type] = STATE(3443), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3046), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_typeof] = ACTIONS(3050), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(3054), + [anon_sym_LBRACK] = ACTIONS(3056), + [anon_sym_DQUOTE] = ACTIONS(3058), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(3064), + [anon_sym_PIPE] = ACTIONS(3066), + [anon_sym_PLUS] = ACTIONS(3068), + [anon_sym_DASH] = ACTIONS(3068), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(3070), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3072), + [sym_number] = ACTIONS(3074), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3078), + [sym_false] = ACTIONS(3078), + [sym_null] = ACTIONS(3078), + [sym_undefined] = ACTIONS(3078), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(3082), + [anon_sym_any] = ACTIONS(3070), + [anon_sym_number] = ACTIONS(3070), + [anon_sym_boolean] = ACTIONS(3070), + [anon_sym_string] = ACTIONS(3070), + [anon_sym_symbol] = ACTIONS(3070), + [anon_sym_object] = ACTIONS(3070), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(3090), + [anon_sym_unique] = ACTIONS(3092), + [anon_sym_unknown] = ACTIONS(3070), + [anon_sym_never] = ACTIONS(3070), + [anon_sym_LBRACE_PIPE] = ACTIONS(3094), [sym_html_comment] = ACTIONS(5), }, [1009] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3092), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3877), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1010] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3053), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(4673), + [sym_nested_identifier] = STATE(5966), + [sym_string] = STATE(3463), + [sym_formal_parameters] = STATE(5586), + [sym_nested_type_identifier] = STATE(3191), + [sym__type_query_member_expression_in_type_annotation] = STATE(3128), + [sym__type_query_call_expression_in_type_annotation] = STATE(3287), + [sym_type] = STATE(3403), + [sym_constructor_type] = STATE(3321), + [sym_primary_type] = STATE(3325), + [sym_template_literal_type] = STATE(3443), + [sym_infer_type] = STATE(3321), + [sym_conditional_type] = STATE(3443), + [sym_generic_type] = STATE(3443), + [sym_type_query] = STATE(3443), + [sym_index_type_query] = STATE(3443), + [sym_lookup_type] = STATE(3443), + [sym_literal_type] = STATE(3443), + [sym__number] = STATE(3326), + [sym_existential_type] = STATE(3443), + [sym_flow_maybe_type] = STATE(3443), + [sym_parenthesized_type] = STATE(3443), + [sym_predefined_type] = STATE(3443), + [sym_object_type] = STATE(3443), + [sym_type_parameters] = STATE(5361), + [sym_array_type] = STATE(3443), + [sym_tuple_type] = STATE(3443), + [sym_readonly_type] = STATE(3321), + [sym_union_type] = STATE(3443), + [sym_intersection_type] = STATE(3443), + [sym_function_type] = STATE(3321), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3046), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_typeof] = ACTIONS(3050), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(3054), + [anon_sym_LBRACK] = ACTIONS(3056), + [anon_sym_DQUOTE] = ACTIONS(3058), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3064), + [anon_sym_PIPE] = ACTIONS(3066), + [anon_sym_PLUS] = ACTIONS(3068), + [anon_sym_DASH] = ACTIONS(3068), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(3070), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3072), + [sym_number] = ACTIONS(3074), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3078), + [sym_false] = ACTIONS(3078), + [sym_null] = ACTIONS(3078), + [sym_undefined] = ACTIONS(3078), + [anon_sym_readonly] = ACTIONS(3080), + [anon_sym_QMARK] = ACTIONS(3082), + [anon_sym_any] = ACTIONS(3070), + [anon_sym_number] = ACTIONS(3070), + [anon_sym_boolean] = ACTIONS(3070), + [anon_sym_string] = ACTIONS(3070), + [anon_sym_symbol] = ACTIONS(3070), + [anon_sym_object] = ACTIONS(3070), + [anon_sym_abstract] = ACTIONS(3084), + [anon_sym_infer] = ACTIONS(3088), + [anon_sym_keyof] = ACTIONS(3090), + [anon_sym_unique] = ACTIONS(3092), + [anon_sym_unknown] = ACTIONS(3070), + [anon_sym_never] = ACTIONS(3070), + [anon_sym_LBRACE_PIPE] = ACTIONS(3094), [sym_html_comment] = ACTIONS(5), }, [1011] = { - [sym_import] = STATE(5169), - [sym_nested_identifier] = STATE(5618), - [sym_string] = STATE(3256), - [sym_formal_parameters] = STATE(5839), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(3044), - [sym__type_query_call_expression_in_type_annotation] = STATE(3176), - [sym_type] = STATE(3210), - [sym_constructor_type] = STATE(3261), - [sym_primary_type] = STATE(3262), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(3261), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3255), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5399), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(3261), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(3261), - [sym_identifier] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_typeof] = ACTIONS(1582), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(1036), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1602), - [sym_this] = ACTIONS(1604), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), - [sym_null] = ACTIONS(1606), - [sym_undefined] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1036), - [anon_sym_number] = ACTIONS(1036), - [anon_sym_boolean] = ACTIONS(1036), - [anon_sym_string] = ACTIONS(1036), - [anon_sym_symbol] = ACTIONS(1036), - [anon_sym_object] = ACTIONS(1036), - [anon_sym_abstract] = ACTIONS(1028), - [anon_sym_infer] = ACTIONS(1030), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(1038), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3814), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1012] = { - [sym_import] = STATE(5169), - [sym_nested_identifier] = STATE(5618), - [sym_string] = STATE(3256), - [sym_formal_parameters] = STATE(5839), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(3044), - [sym__type_query_call_expression_in_type_annotation] = STATE(3176), - [sym_type] = STATE(3211), - [sym_constructor_type] = STATE(3261), - [sym_primary_type] = STATE(3262), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(3261), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3255), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5399), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(3261), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(3261), - [sym_identifier] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_typeof] = ACTIONS(1582), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(1036), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1602), - [sym_this] = ACTIONS(1604), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), - [sym_null] = ACTIONS(1606), - [sym_undefined] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1036), - [anon_sym_number] = ACTIONS(1036), - [anon_sym_boolean] = ACTIONS(1036), - [anon_sym_string] = ACTIONS(1036), - [anon_sym_symbol] = ACTIONS(1036), - [anon_sym_object] = ACTIONS(1036), - [anon_sym_abstract] = ACTIONS(1028), - [anon_sym_infer] = ACTIONS(1030), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(1038), + [sym_import] = STATE(5153), + [sym_nested_identifier] = STATE(5834), + [sym_string] = STATE(3213), + [sym_formal_parameters] = STATE(5829), + [sym_nested_type_identifier] = STATE(3070), + [sym__type_query_member_expression_in_type_annotation] = STATE(3029), + [sym__type_query_call_expression_in_type_annotation] = STATE(3159), + [sym_type] = STATE(3279), + [sym_constructor_type] = STATE(3218), + [sym_primary_type] = STATE(3257), + [sym_template_literal_type] = STATE(3211), + [sym_infer_type] = STATE(3218), + [sym_conditional_type] = STATE(3211), + [sym_generic_type] = STATE(3211), + [sym_type_query] = STATE(3211), + [sym_index_type_query] = STATE(3211), + [sym_lookup_type] = STATE(3211), + [sym_literal_type] = STATE(3211), + [sym__number] = STATE(3219), + [sym_existential_type] = STATE(3211), + [sym_flow_maybe_type] = STATE(3211), + [sym_parenthesized_type] = STATE(3211), + [sym_predefined_type] = STATE(3211), + [sym_object_type] = STATE(3211), + [sym_type_parameters] = STATE(5268), + [sym_array_type] = STATE(3211), + [sym_tuple_type] = STATE(3211), + [sym_readonly_type] = STATE(3218), + [sym_union_type] = STATE(3211), + [sym_intersection_type] = STATE(3211), + [sym_function_type] = STATE(3218), + [sym_identifier] = ACTIONS(1571), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_new] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(2948), + [anon_sym_DASH] = ACTIONS(2948), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(1031), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1595), + [sym_number] = ACTIONS(1597), + [sym_this] = ACTIONS(1599), + [sym_true] = ACTIONS(1601), + [sym_false] = ACTIONS(1601), + [sym_null] = ACTIONS(1601), + [sym_undefined] = ACTIONS(1601), + [anon_sym_readonly] = ACTIONS(1603), + [anon_sym_QMARK] = ACTIONS(1019), + [anon_sym_any] = ACTIONS(1031), + [anon_sym_number] = ACTIONS(1031), + [anon_sym_boolean] = ACTIONS(1031), + [anon_sym_string] = ACTIONS(1031), + [anon_sym_symbol] = ACTIONS(1031), + [anon_sym_object] = ACTIONS(1031), + [anon_sym_abstract] = ACTIONS(1023), + [anon_sym_infer] = ACTIONS(1025), + [anon_sym_keyof] = ACTIONS(1027), + [anon_sym_unique] = ACTIONS(1029), + [anon_sym_unknown] = ACTIONS(1031), + [anon_sym_never] = ACTIONS(1031), + [anon_sym_LBRACE_PIPE] = ACTIONS(1033), [sym_html_comment] = ACTIONS(5), }, [1013] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(5048), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2920), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(4673), + [sym_nested_identifier] = STATE(5966), + [sym_string] = STATE(3463), + [sym_formal_parameters] = STATE(5586), + [sym_nested_type_identifier] = STATE(3191), + [sym__type_query_member_expression_in_type_annotation] = STATE(3128), + [sym__type_query_call_expression_in_type_annotation] = STATE(3287), + [sym_type] = STATE(3404), + [sym_constructor_type] = STATE(3321), + [sym_primary_type] = STATE(3325), + [sym_template_literal_type] = STATE(3443), + [sym_infer_type] = STATE(3321), + [sym_conditional_type] = STATE(3443), + [sym_generic_type] = STATE(3443), + [sym_type_query] = STATE(3443), + [sym_index_type_query] = STATE(3443), + [sym_lookup_type] = STATE(3443), + [sym_literal_type] = STATE(3443), + [sym__number] = STATE(3326), + [sym_existential_type] = STATE(3443), + [sym_flow_maybe_type] = STATE(3443), + [sym_parenthesized_type] = STATE(3443), + [sym_predefined_type] = STATE(3443), + [sym_object_type] = STATE(3443), + [sym_type_parameters] = STATE(5361), + [sym_array_type] = STATE(3443), + [sym_tuple_type] = STATE(3443), + [sym_readonly_type] = STATE(3321), + [sym_union_type] = STATE(3443), + [sym_intersection_type] = STATE(3443), + [sym_function_type] = STATE(3321), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3046), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_typeof] = ACTIONS(3050), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(3054), + [anon_sym_LBRACK] = ACTIONS(3056), + [anon_sym_DQUOTE] = ACTIONS(3058), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3064), + [anon_sym_PIPE] = ACTIONS(3066), + [anon_sym_PLUS] = ACTIONS(3068), + [anon_sym_DASH] = ACTIONS(3068), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(3070), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3072), + [sym_number] = ACTIONS(3074), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3078), + [sym_false] = ACTIONS(3078), + [sym_null] = ACTIONS(3078), + [sym_undefined] = ACTIONS(3078), + [anon_sym_readonly] = ACTIONS(3080), + [anon_sym_QMARK] = ACTIONS(3082), + [anon_sym_any] = ACTIONS(3070), + [anon_sym_number] = ACTIONS(3070), + [anon_sym_boolean] = ACTIONS(3070), + [anon_sym_string] = ACTIONS(3070), + [anon_sym_symbol] = ACTIONS(3070), + [anon_sym_object] = ACTIONS(3070), + [anon_sym_abstract] = ACTIONS(3084), + [anon_sym_infer] = ACTIONS(3088), + [anon_sym_keyof] = ACTIONS(3090), + [anon_sym_unique] = ACTIONS(3092), + [anon_sym_unknown] = ACTIONS(3070), + [anon_sym_never] = ACTIONS(3070), + [anon_sym_LBRACE_PIPE] = ACTIONS(3094), [sym_html_comment] = ACTIONS(5), }, [1014] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(5048), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2924), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(4535), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1015] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(2904), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(4924), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5904), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3376), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(4310), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5433), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(2966), + [anon_sym_typeof] = ACTIONS(2968), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(2970), + [anon_sym_SQUOTE] = ACTIONS(2972), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_AMP] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(2982), + [anon_sym_QMARK] = ACTIONS(2984), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(2986), + [anon_sym_infer] = ACTIONS(2990), + [anon_sym_keyof] = ACTIONS(2992), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(2994), [sym_html_comment] = ACTIONS(5), }, [1016] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4006), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(4539), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1017] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3918), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(5153), + [sym_nested_identifier] = STATE(5834), + [sym_string] = STATE(3213), + [sym_formal_parameters] = STATE(5829), + [sym_nested_type_identifier] = STATE(3070), + [sym__type_query_member_expression_in_type_annotation] = STATE(3029), + [sym__type_query_call_expression_in_type_annotation] = STATE(3159), + [sym_type] = STATE(4023), + [sym_constructor_type] = STATE(3218), + [sym_primary_type] = STATE(3257), + [sym_template_literal_type] = STATE(3211), + [sym_infer_type] = STATE(3218), + [sym_conditional_type] = STATE(3211), + [sym_generic_type] = STATE(3211), + [sym_type_query] = STATE(3211), + [sym_index_type_query] = STATE(3211), + [sym_lookup_type] = STATE(3211), + [sym_literal_type] = STATE(3211), + [sym__number] = STATE(3219), + [sym_existential_type] = STATE(3211), + [sym_flow_maybe_type] = STATE(3211), + [sym_parenthesized_type] = STATE(3211), + [sym_predefined_type] = STATE(3211), + [sym_object_type] = STATE(3211), + [sym_type_parameters] = STATE(5268), + [sym_array_type] = STATE(3211), + [sym_tuple_type] = STATE(3211), + [sym_readonly_type] = STATE(3218), + [sym_union_type] = STATE(3211), + [sym_intersection_type] = STATE(3211), + [sym_function_type] = STATE(3218), + [sym_identifier] = ACTIONS(1571), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_new] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(2948), + [anon_sym_DASH] = ACTIONS(2948), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(1031), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1595), + [sym_number] = ACTIONS(1597), + [sym_this] = ACTIONS(1599), + [sym_true] = ACTIONS(1601), + [sym_false] = ACTIONS(1601), + [sym_null] = ACTIONS(1601), + [sym_undefined] = ACTIONS(1601), + [anon_sym_readonly] = ACTIONS(1603), + [anon_sym_QMARK] = ACTIONS(1019), + [anon_sym_any] = ACTIONS(1031), + [anon_sym_number] = ACTIONS(1031), + [anon_sym_boolean] = ACTIONS(1031), + [anon_sym_string] = ACTIONS(1031), + [anon_sym_symbol] = ACTIONS(1031), + [anon_sym_object] = ACTIONS(1031), + [anon_sym_abstract] = ACTIONS(1023), + [anon_sym_infer] = ACTIONS(1025), + [anon_sym_keyof] = ACTIONS(1027), + [anon_sym_unique] = ACTIONS(1029), + [anon_sym_unknown] = ACTIONS(1031), + [anon_sym_never] = ACTIONS(1031), + [anon_sym_LBRACE_PIPE] = ACTIONS(1033), [sym_html_comment] = ACTIONS(5), }, [1018] = { - [sym_import] = STATE(4633), - [sym_nested_identifier] = STATE(5769), - [sym_string] = STATE(1504), - [sym_formal_parameters] = STATE(5757), - [sym_nested_type_identifier] = STATE(1480), - [sym__type_query_member_expression_in_type_annotation] = STATE(1481), - [sym__type_query_call_expression_in_type_annotation] = STATE(1491), - [sym_type] = STATE(1561), - [sym_constructor_type] = STATE(1492), - [sym_primary_type] = STATE(1493), - [sym_template_literal_type] = STATE(1490), - [sym_infer_type] = STATE(1492), - [sym_conditional_type] = STATE(1490), - [sym_generic_type] = STATE(1490), - [sym_type_query] = STATE(1490), - [sym_index_type_query] = STATE(1490), - [sym_lookup_type] = STATE(1490), - [sym_literal_type] = STATE(1490), - [sym__number] = STATE(1494), - [sym_existential_type] = STATE(1490), - [sym_flow_maybe_type] = STATE(1490), - [sym_parenthesized_type] = STATE(1490), - [sym_predefined_type] = STATE(1490), - [sym_object_type] = STATE(1490), - [sym_type_parameters] = STATE(5510), - [sym_array_type] = STATE(1490), - [sym_tuple_type] = STATE(1490), - [sym_readonly_type] = STATE(1492), - [sym_union_type] = STATE(1490), - [sym_intersection_type] = STATE(1490), - [sym_function_type] = STATE(1492), - [sym_identifier] = ACTIONS(3225), - [anon_sym_STAR] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_typeof] = ACTIONS(3031), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_PIPE] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3047), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3049), - [sym_number] = ACTIONS(3051), - [sym_this] = ACTIONS(3229), - [sym_true] = ACTIONS(3055), - [sym_false] = ACTIONS(3055), - [sym_null] = ACTIONS(3055), - [sym_undefined] = ACTIONS(3055), - [anon_sym_readonly] = ACTIONS(3057), - [anon_sym_QMARK] = ACTIONS(3059), - [anon_sym_any] = ACTIONS(3047), - [anon_sym_number] = ACTIONS(3047), - [anon_sym_boolean] = ACTIONS(3047), - [anon_sym_string] = ACTIONS(3047), - [anon_sym_symbol] = ACTIONS(3047), - [anon_sym_object] = ACTIONS(3047), - [anon_sym_abstract] = ACTIONS(3061), - [anon_sym_infer] = ACTIONS(3065), - [anon_sym_keyof] = ACTIONS(3067), - [anon_sym_unique] = ACTIONS(3069), - [anon_sym_unknown] = ACTIONS(3047), - [anon_sym_never] = ACTIONS(3047), - [anon_sym_LBRACE_PIPE] = ACTIONS(3071), + [sym_import] = STATE(4673), + [sym_nested_identifier] = STATE(5966), + [sym_string] = STATE(3463), + [sym_formal_parameters] = STATE(5586), + [sym_nested_type_identifier] = STATE(3191), + [sym__type_query_member_expression_in_type_annotation] = STATE(3128), + [sym__type_query_call_expression_in_type_annotation] = STATE(3287), + [sym_type] = STATE(3427), + [sym_constructor_type] = STATE(3321), + [sym_primary_type] = STATE(3325), + [sym_template_literal_type] = STATE(3443), + [sym_infer_type] = STATE(3321), + [sym_conditional_type] = STATE(3443), + [sym_generic_type] = STATE(3443), + [sym_type_query] = STATE(3443), + [sym_index_type_query] = STATE(3443), + [sym_lookup_type] = STATE(3443), + [sym_literal_type] = STATE(3443), + [sym__number] = STATE(3326), + [sym_existential_type] = STATE(3443), + [sym_flow_maybe_type] = STATE(3443), + [sym_parenthesized_type] = STATE(3443), + [sym_predefined_type] = STATE(3443), + [sym_object_type] = STATE(3443), + [sym_type_parameters] = STATE(5361), + [sym_array_type] = STATE(3443), + [sym_tuple_type] = STATE(3443), + [sym_readonly_type] = STATE(3321), + [sym_union_type] = STATE(3443), + [sym_intersection_type] = STATE(3443), + [sym_function_type] = STATE(3321), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3046), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_typeof] = ACTIONS(3050), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(3054), + [anon_sym_LBRACK] = ACTIONS(3056), + [anon_sym_DQUOTE] = ACTIONS(3058), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3064), + [anon_sym_PIPE] = ACTIONS(3066), + [anon_sym_PLUS] = ACTIONS(3068), + [anon_sym_DASH] = ACTIONS(3068), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(3070), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3072), + [sym_number] = ACTIONS(3074), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3078), + [sym_false] = ACTIONS(3078), + [sym_null] = ACTIONS(3078), + [sym_undefined] = ACTIONS(3078), + [anon_sym_readonly] = ACTIONS(3080), + [anon_sym_QMARK] = ACTIONS(3082), + [anon_sym_any] = ACTIONS(3070), + [anon_sym_number] = ACTIONS(3070), + [anon_sym_boolean] = ACTIONS(3070), + [anon_sym_string] = ACTIONS(3070), + [anon_sym_symbol] = ACTIONS(3070), + [anon_sym_object] = ACTIONS(3070), + [anon_sym_abstract] = ACTIONS(3084), + [anon_sym_infer] = ACTIONS(3088), + [anon_sym_keyof] = ACTIONS(3090), + [anon_sym_unique] = ACTIONS(3092), + [anon_sym_unknown] = ACTIONS(3070), + [anon_sym_never] = ACTIONS(3070), + [anon_sym_LBRACE_PIPE] = ACTIONS(3094), [sym_html_comment] = ACTIONS(5), }, [1019] = { - [sym_import] = STATE(4633), - [sym_nested_identifier] = STATE(5769), - [sym_string] = STATE(1504), - [sym_formal_parameters] = STATE(5757), - [sym_nested_type_identifier] = STATE(1480), - [sym__type_query_member_expression_in_type_annotation] = STATE(1481), - [sym__type_query_call_expression_in_type_annotation] = STATE(1491), - [sym_type] = STATE(1574), - [sym_constructor_type] = STATE(1492), - [sym_primary_type] = STATE(1493), - [sym_template_literal_type] = STATE(1490), - [sym_infer_type] = STATE(1492), - [sym_conditional_type] = STATE(1490), - [sym_generic_type] = STATE(1490), - [sym_type_query] = STATE(1490), - [sym_index_type_query] = STATE(1490), - [sym_lookup_type] = STATE(1490), - [sym_literal_type] = STATE(1490), - [sym__number] = STATE(1494), - [sym_existential_type] = STATE(1490), - [sym_flow_maybe_type] = STATE(1490), - [sym_parenthesized_type] = STATE(1490), - [sym_predefined_type] = STATE(1490), - [sym_object_type] = STATE(1490), - [sym_type_parameters] = STATE(5510), - [sym_array_type] = STATE(1490), - [sym_tuple_type] = STATE(1490), - [sym_readonly_type] = STATE(1492), - [sym_union_type] = STATE(1490), - [sym_intersection_type] = STATE(1490), - [sym_function_type] = STATE(1492), - [sym_identifier] = ACTIONS(3225), - [anon_sym_STAR] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_typeof] = ACTIONS(3031), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_PIPE] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3047), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3049), - [sym_number] = ACTIONS(3051), - [sym_this] = ACTIONS(3229), - [sym_true] = ACTIONS(3055), - [sym_false] = ACTIONS(3055), - [sym_null] = ACTIONS(3055), - [sym_undefined] = ACTIONS(3055), - [anon_sym_readonly] = ACTIONS(3057), - [anon_sym_QMARK] = ACTIONS(3059), - [anon_sym_any] = ACTIONS(3047), - [anon_sym_number] = ACTIONS(3047), - [anon_sym_boolean] = ACTIONS(3047), - [anon_sym_string] = ACTIONS(3047), - [anon_sym_symbol] = ACTIONS(3047), - [anon_sym_object] = ACTIONS(3047), - [anon_sym_abstract] = ACTIONS(3061), - [anon_sym_infer] = ACTIONS(3065), - [anon_sym_keyof] = ACTIONS(3067), - [anon_sym_unique] = ACTIONS(3069), - [anon_sym_unknown] = ACTIONS(3047), - [anon_sym_never] = ACTIONS(3047), - [anon_sym_LBRACE_PIPE] = ACTIONS(3071), + [sym_import] = STATE(4673), + [sym_nested_identifier] = STATE(5966), + [sym_string] = STATE(3463), + [sym_formal_parameters] = STATE(5586), + [sym_nested_type_identifier] = STATE(3191), + [sym__type_query_member_expression_in_type_annotation] = STATE(3128), + [sym__type_query_call_expression_in_type_annotation] = STATE(3287), + [sym_type] = STATE(3440), + [sym_constructor_type] = STATE(3321), + [sym_primary_type] = STATE(3325), + [sym_template_literal_type] = STATE(3443), + [sym_infer_type] = STATE(3321), + [sym_conditional_type] = STATE(3443), + [sym_generic_type] = STATE(3443), + [sym_type_query] = STATE(3443), + [sym_index_type_query] = STATE(3443), + [sym_lookup_type] = STATE(3443), + [sym_literal_type] = STATE(3443), + [sym__number] = STATE(3326), + [sym_existential_type] = STATE(3443), + [sym_flow_maybe_type] = STATE(3443), + [sym_parenthesized_type] = STATE(3443), + [sym_predefined_type] = STATE(3443), + [sym_object_type] = STATE(3443), + [sym_type_parameters] = STATE(5361), + [sym_array_type] = STATE(3443), + [sym_tuple_type] = STATE(3443), + [sym_readonly_type] = STATE(3321), + [sym_union_type] = STATE(3443), + [sym_intersection_type] = STATE(3443), + [sym_function_type] = STATE(3321), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3046), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_typeof] = ACTIONS(3050), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(3054), + [anon_sym_LBRACK] = ACTIONS(3056), + [anon_sym_DQUOTE] = ACTIONS(3058), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3064), + [anon_sym_PIPE] = ACTIONS(3066), + [anon_sym_PLUS] = ACTIONS(3068), + [anon_sym_DASH] = ACTIONS(3068), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(3070), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3072), + [sym_number] = ACTIONS(3074), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3078), + [sym_false] = ACTIONS(3078), + [sym_null] = ACTIONS(3078), + [sym_undefined] = ACTIONS(3078), + [anon_sym_readonly] = ACTIONS(3080), + [anon_sym_QMARK] = ACTIONS(3082), + [anon_sym_any] = ACTIONS(3070), + [anon_sym_number] = ACTIONS(3070), + [anon_sym_boolean] = ACTIONS(3070), + [anon_sym_string] = ACTIONS(3070), + [anon_sym_symbol] = ACTIONS(3070), + [anon_sym_object] = ACTIONS(3070), + [anon_sym_abstract] = ACTIONS(3084), + [anon_sym_infer] = ACTIONS(3088), + [anon_sym_keyof] = ACTIONS(3090), + [anon_sym_unique] = ACTIONS(3092), + [anon_sym_unknown] = ACTIONS(3070), + [anon_sym_never] = ACTIONS(3070), + [anon_sym_LBRACE_PIPE] = ACTIONS(3094), [sym_html_comment] = ACTIONS(5), }, [1020] = { - [sym_import] = STATE(5169), - [sym_nested_identifier] = STATE(5618), - [sym_string] = STATE(3256), - [sym_formal_parameters] = STATE(5839), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(3044), - [sym__type_query_call_expression_in_type_annotation] = STATE(3176), - [sym_type] = STATE(4206), - [sym_constructor_type] = STATE(3261), - [sym_primary_type] = STATE(3262), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(3261), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3255), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5399), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(3261), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(3261), - [sym_identifier] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_typeof] = ACTIONS(1582), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(1036), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1602), - [sym_this] = ACTIONS(1604), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), - [sym_null] = ACTIONS(1606), - [sym_undefined] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1036), - [anon_sym_number] = ACTIONS(1036), - [anon_sym_boolean] = ACTIONS(1036), - [anon_sym_string] = ACTIONS(1036), - [anon_sym_symbol] = ACTIONS(1036), - [anon_sym_object] = ACTIONS(1036), - [anon_sym_abstract] = ACTIONS(1028), - [anon_sym_infer] = ACTIONS(1030), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(1038), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(2985), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1021] = { - [sym_import] = STATE(5169), - [sym_nested_identifier] = STATE(5618), - [sym_string] = STATE(3256), - [sym_formal_parameters] = STATE(5839), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(3044), - [sym__type_query_call_expression_in_type_annotation] = STATE(3176), - [sym_type] = STATE(4148), - [sym_constructor_type] = STATE(3261), - [sym_primary_type] = STATE(3262), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(3261), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3255), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5399), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(3261), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(3261), - [sym_identifier] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_typeof] = ACTIONS(1582), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(1036), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1602), - [sym_this] = ACTIONS(1604), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), - [sym_null] = ACTIONS(1606), - [sym_undefined] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1036), - [anon_sym_number] = ACTIONS(1036), - [anon_sym_boolean] = ACTIONS(1036), - [anon_sym_string] = ACTIONS(1036), - [anon_sym_symbol] = ACTIONS(1036), - [anon_sym_object] = ACTIONS(1036), - [anon_sym_abstract] = ACTIONS(1028), - [anon_sym_infer] = ACTIONS(1030), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(1038), + [sym_import] = STATE(5153), + [sym_nested_identifier] = STATE(5834), + [sym_string] = STATE(3213), + [sym_formal_parameters] = STATE(5829), + [sym_nested_type_identifier] = STATE(3070), + [sym__type_query_member_expression_in_type_annotation] = STATE(3029), + [sym__type_query_call_expression_in_type_annotation] = STATE(3159), + [sym_type] = STATE(4045), + [sym_constructor_type] = STATE(3218), + [sym_primary_type] = STATE(3257), + [sym_template_literal_type] = STATE(3211), + [sym_infer_type] = STATE(3218), + [sym_conditional_type] = STATE(3211), + [sym_generic_type] = STATE(3211), + [sym_type_query] = STATE(3211), + [sym_index_type_query] = STATE(3211), + [sym_lookup_type] = STATE(3211), + [sym_literal_type] = STATE(3211), + [sym__number] = STATE(3219), + [sym_existential_type] = STATE(3211), + [sym_flow_maybe_type] = STATE(3211), + [sym_parenthesized_type] = STATE(3211), + [sym_predefined_type] = STATE(3211), + [sym_object_type] = STATE(3211), + [sym_type_parameters] = STATE(5268), + [sym_array_type] = STATE(3211), + [sym_tuple_type] = STATE(3211), + [sym_readonly_type] = STATE(3218), + [sym_union_type] = STATE(3211), + [sym_intersection_type] = STATE(3211), + [sym_function_type] = STATE(3218), + [sym_identifier] = ACTIONS(1571), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_new] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(2948), + [anon_sym_DASH] = ACTIONS(2948), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(1031), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1595), + [sym_number] = ACTIONS(1597), + [sym_this] = ACTIONS(1599), + [sym_true] = ACTIONS(1601), + [sym_false] = ACTIONS(1601), + [sym_null] = ACTIONS(1601), + [sym_undefined] = ACTIONS(1601), + [anon_sym_readonly] = ACTIONS(1603), + [anon_sym_QMARK] = ACTIONS(1019), + [anon_sym_any] = ACTIONS(1031), + [anon_sym_number] = ACTIONS(1031), + [anon_sym_boolean] = ACTIONS(1031), + [anon_sym_string] = ACTIONS(1031), + [anon_sym_symbol] = ACTIONS(1031), + [anon_sym_object] = ACTIONS(1031), + [anon_sym_abstract] = ACTIONS(1023), + [anon_sym_infer] = ACTIONS(1025), + [anon_sym_keyof] = ACTIONS(1027), + [anon_sym_unique] = ACTIONS(1029), + [anon_sym_unknown] = ACTIONS(1031), + [anon_sym_never] = ACTIONS(1031), + [anon_sym_LBRACE_PIPE] = ACTIONS(1033), [sym_html_comment] = ACTIONS(5), }, [1022] = { - [sym_import] = STATE(5169), - [sym_nested_identifier] = STATE(5618), - [sym_string] = STATE(3256), - [sym_formal_parameters] = STATE(5839), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(3044), - [sym__type_query_call_expression_in_type_annotation] = STATE(3176), - [sym_type] = STATE(3494), - [sym_constructor_type] = STATE(3261), - [sym_primary_type] = STATE(3262), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(3261), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3255), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5399), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(3261), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(3261), - [sym_identifier] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_typeof] = ACTIONS(1582), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(1036), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1602), - [sym_this] = ACTIONS(1604), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), - [sym_null] = ACTIONS(1606), - [sym_undefined] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1036), - [anon_sym_number] = ACTIONS(1036), - [anon_sym_boolean] = ACTIONS(1036), - [anon_sym_string] = ACTIONS(1036), - [anon_sym_symbol] = ACTIONS(1036), - [anon_sym_object] = ACTIONS(1036), - [anon_sym_abstract] = ACTIONS(1028), - [anon_sym_infer] = ACTIONS(1030), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(1038), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3063), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1023] = { - [sym_import] = STATE(5169), - [sym_nested_identifier] = STATE(5618), - [sym_string] = STATE(3256), - [sym_formal_parameters] = STATE(5839), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(3044), - [sym__type_query_call_expression_in_type_annotation] = STATE(3176), - [sym_type] = STATE(3284), - [sym_constructor_type] = STATE(3261), - [sym_primary_type] = STATE(3262), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(3261), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3255), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5399), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(3261), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(3261), - [sym_identifier] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_typeof] = ACTIONS(1582), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(1036), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1602), - [sym_this] = ACTIONS(1604), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), - [sym_null] = ACTIONS(1606), - [sym_undefined] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1036), - [anon_sym_number] = ACTIONS(1036), - [anon_sym_boolean] = ACTIONS(1036), - [anon_sym_string] = ACTIONS(1036), - [anon_sym_symbol] = ACTIONS(1036), - [anon_sym_object] = ACTIONS(1036), - [anon_sym_abstract] = ACTIONS(1028), - [anon_sym_infer] = ACTIONS(1030), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(1038), + [sym_import] = STATE(4673), + [sym_nested_identifier] = STATE(5966), + [sym_string] = STATE(3463), + [sym_formal_parameters] = STATE(5586), + [sym_nested_type_identifier] = STATE(3191), + [sym__type_query_member_expression_in_type_annotation] = STATE(3128), + [sym__type_query_call_expression_in_type_annotation] = STATE(3287), + [sym_type] = STATE(3424), + [sym_constructor_type] = STATE(3321), + [sym_primary_type] = STATE(3325), + [sym_template_literal_type] = STATE(3443), + [sym_infer_type] = STATE(3321), + [sym_conditional_type] = STATE(3443), + [sym_generic_type] = STATE(3443), + [sym_type_query] = STATE(3443), + [sym_index_type_query] = STATE(3443), + [sym_lookup_type] = STATE(3443), + [sym_literal_type] = STATE(3443), + [sym__number] = STATE(3326), + [sym_existential_type] = STATE(3443), + [sym_flow_maybe_type] = STATE(3443), + [sym_parenthesized_type] = STATE(3443), + [sym_predefined_type] = STATE(3443), + [sym_object_type] = STATE(3443), + [sym_type_parameters] = STATE(5361), + [sym_array_type] = STATE(3443), + [sym_tuple_type] = STATE(3443), + [sym_readonly_type] = STATE(3321), + [sym_union_type] = STATE(3443), + [sym_intersection_type] = STATE(3443), + [sym_function_type] = STATE(3321), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3046), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_typeof] = ACTIONS(3050), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(3054), + [anon_sym_LBRACK] = ACTIONS(3056), + [anon_sym_DQUOTE] = ACTIONS(3058), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3064), + [anon_sym_PIPE] = ACTIONS(3066), + [anon_sym_PLUS] = ACTIONS(3068), + [anon_sym_DASH] = ACTIONS(3068), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(3070), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3072), + [sym_number] = ACTIONS(3074), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3078), + [sym_false] = ACTIONS(3078), + [sym_null] = ACTIONS(3078), + [sym_undefined] = ACTIONS(3078), + [anon_sym_readonly] = ACTIONS(3080), + [anon_sym_QMARK] = ACTIONS(3082), + [anon_sym_any] = ACTIONS(3070), + [anon_sym_number] = ACTIONS(3070), + [anon_sym_boolean] = ACTIONS(3070), + [anon_sym_string] = ACTIONS(3070), + [anon_sym_symbol] = ACTIONS(3070), + [anon_sym_object] = ACTIONS(3070), + [anon_sym_abstract] = ACTIONS(3084), + [anon_sym_infer] = ACTIONS(3088), + [anon_sym_keyof] = ACTIONS(3090), + [anon_sym_unique] = ACTIONS(3092), + [anon_sym_unknown] = ACTIONS(3070), + [anon_sym_never] = ACTIONS(3070), + [anon_sym_LBRACE_PIPE] = ACTIONS(3094), [sym_html_comment] = ACTIONS(5), }, [1024] = { - [sym_import] = STATE(5169), - [sym_nested_identifier] = STATE(5618), - [sym_string] = STATE(3256), - [sym_formal_parameters] = STATE(5839), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(3044), - [sym__type_query_call_expression_in_type_annotation] = STATE(3176), - [sym_type] = STATE(3519), - [sym_constructor_type] = STATE(3261), - [sym_primary_type] = STATE(3262), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(3261), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3255), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5399), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(3261), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(3261), - [sym_identifier] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_typeof] = ACTIONS(1582), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(1036), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1602), - [sym_this] = ACTIONS(1604), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), - [sym_null] = ACTIONS(1606), - [sym_undefined] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1036), - [anon_sym_number] = ACTIONS(1036), - [anon_sym_boolean] = ACTIONS(1036), - [anon_sym_string] = ACTIONS(1036), - [anon_sym_symbol] = ACTIONS(1036), - [anon_sym_object] = ACTIONS(1036), - [anon_sym_abstract] = ACTIONS(1028), - [anon_sym_infer] = ACTIONS(1030), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(1038), + [sym_import] = STATE(4786), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5658), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3263), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(2908), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5559), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1025] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3812), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(4786), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5658), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3263), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3754), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5559), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1026] = { - [sym_import] = STATE(4635), - [sym_nested_identifier] = STATE(5854), - [sym_string] = STATE(1922), - [sym_formal_parameters] = STATE(5981), - [sym_nested_type_identifier] = STATE(1768), - [sym__type_query_member_expression_in_type_annotation] = STATE(1769), - [sym__type_query_call_expression_in_type_annotation] = STATE(1973), - [sym_type] = STATE(2020), - [sym_constructor_type] = STATE(1980), - [sym_primary_type] = STATE(1981), - [sym_template_literal_type] = STATE(1907), - [sym_infer_type] = STATE(1980), - [sym_conditional_type] = STATE(1907), - [sym_generic_type] = STATE(1907), - [sym_type_query] = STATE(1907), - [sym_index_type_query] = STATE(1907), - [sym_lookup_type] = STATE(1907), - [sym_literal_type] = STATE(1907), - [sym__number] = STATE(1987), - [sym_existential_type] = STATE(1907), - [sym_flow_maybe_type] = STATE(1907), - [sym_parenthesized_type] = STATE(1907), - [sym_predefined_type] = STATE(1907), - [sym_object_type] = STATE(1907), - [sym_type_parameters] = STATE(5335), - [sym_array_type] = STATE(1907), - [sym_tuple_type] = STATE(1907), - [sym_readonly_type] = STATE(1980), - [sym_union_type] = STATE(1907), - [sym_intersection_type] = STATE(1907), - [sym_function_type] = STATE(1980), - [sym_identifier] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_LBRACE] = ACTIONS(2981), - [anon_sym_typeof] = ACTIONS(2983), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_PIPE] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(2999), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3001), - [sym_number] = ACTIONS(3003), - [sym_this] = ACTIONS(3233), - [sym_true] = ACTIONS(3007), - [sym_false] = ACTIONS(3007), - [sym_null] = ACTIONS(3007), - [sym_undefined] = ACTIONS(3007), - [anon_sym_readonly] = ACTIONS(3009), - [anon_sym_QMARK] = ACTIONS(3011), - [anon_sym_any] = ACTIONS(2999), - [anon_sym_number] = ACTIONS(2999), - [anon_sym_boolean] = ACTIONS(2999), - [anon_sym_string] = ACTIONS(2999), - [anon_sym_symbol] = ACTIONS(2999), - [anon_sym_object] = ACTIONS(2999), - [anon_sym_abstract] = ACTIONS(3013), - [anon_sym_infer] = ACTIONS(3017), - [anon_sym_keyof] = ACTIONS(3019), - [anon_sym_unique] = ACTIONS(3021), - [anon_sym_unknown] = ACTIONS(2999), - [anon_sym_never] = ACTIONS(2999), - [anon_sym_LBRACE_PIPE] = ACTIONS(3023), + [sym_import] = STATE(4673), + [sym_nested_identifier] = STATE(5966), + [sym_string] = STATE(3463), + [sym_formal_parameters] = STATE(5586), + [sym_nested_type_identifier] = STATE(3191), + [sym__type_query_member_expression_in_type_annotation] = STATE(3128), + [sym__type_query_call_expression_in_type_annotation] = STATE(3287), + [sym_type] = STATE(3330), + [sym_constructor_type] = STATE(3321), + [sym_primary_type] = STATE(3325), + [sym_template_literal_type] = STATE(3443), + [sym_infer_type] = STATE(3321), + [sym_conditional_type] = STATE(3443), + [sym_generic_type] = STATE(3443), + [sym_type_query] = STATE(3443), + [sym_index_type_query] = STATE(3443), + [sym_lookup_type] = STATE(3443), + [sym_literal_type] = STATE(3443), + [sym__number] = STATE(3326), + [sym_existential_type] = STATE(3443), + [sym_flow_maybe_type] = STATE(3443), + [sym_parenthesized_type] = STATE(3443), + [sym_predefined_type] = STATE(3443), + [sym_object_type] = STATE(3443), + [sym_type_parameters] = STATE(5361), + [sym_array_type] = STATE(3443), + [sym_tuple_type] = STATE(3443), + [sym_readonly_type] = STATE(3321), + [sym_union_type] = STATE(3443), + [sym_intersection_type] = STATE(3443), + [sym_function_type] = STATE(3321), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3046), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_typeof] = ACTIONS(3050), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(3054), + [anon_sym_LBRACK] = ACTIONS(3056), + [anon_sym_DQUOTE] = ACTIONS(3058), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3064), + [anon_sym_PIPE] = ACTIONS(3066), + [anon_sym_PLUS] = ACTIONS(3068), + [anon_sym_DASH] = ACTIONS(3068), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(3070), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3072), + [sym_number] = ACTIONS(3074), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3078), + [sym_false] = ACTIONS(3078), + [sym_null] = ACTIONS(3078), + [sym_undefined] = ACTIONS(3078), + [anon_sym_readonly] = ACTIONS(3080), + [anon_sym_QMARK] = ACTIONS(3082), + [anon_sym_any] = ACTIONS(3070), + [anon_sym_number] = ACTIONS(3070), + [anon_sym_boolean] = ACTIONS(3070), + [anon_sym_string] = ACTIONS(3070), + [anon_sym_symbol] = ACTIONS(3070), + [anon_sym_object] = ACTIONS(3070), + [anon_sym_abstract] = ACTIONS(3084), + [anon_sym_infer] = ACTIONS(3088), + [anon_sym_keyof] = ACTIONS(3090), + [anon_sym_unique] = ACTIONS(3092), + [anon_sym_unknown] = ACTIONS(3070), + [anon_sym_never] = ACTIONS(3070), + [anon_sym_LBRACE_PIPE] = ACTIONS(3094), [sym_html_comment] = ACTIONS(5), }, [1027] = { - [sym_import] = STATE(4635), - [sym_nested_identifier] = STATE(5854), - [sym_string] = STATE(1922), - [sym_formal_parameters] = STATE(5981), - [sym_nested_type_identifier] = STATE(1768), - [sym__type_query_member_expression_in_type_annotation] = STATE(1769), - [sym__type_query_call_expression_in_type_annotation] = STATE(1973), - [sym_type] = STATE(2022), - [sym_constructor_type] = STATE(1980), - [sym_primary_type] = STATE(1981), - [sym_template_literal_type] = STATE(1907), - [sym_infer_type] = STATE(1980), - [sym_conditional_type] = STATE(1907), - [sym_generic_type] = STATE(1907), - [sym_type_query] = STATE(1907), - [sym_index_type_query] = STATE(1907), - [sym_lookup_type] = STATE(1907), - [sym_literal_type] = STATE(1907), - [sym__number] = STATE(1987), - [sym_existential_type] = STATE(1907), - [sym_flow_maybe_type] = STATE(1907), - [sym_parenthesized_type] = STATE(1907), - [sym_predefined_type] = STATE(1907), - [sym_object_type] = STATE(1907), - [sym_type_parameters] = STATE(5335), - [sym_array_type] = STATE(1907), - [sym_tuple_type] = STATE(1907), - [sym_readonly_type] = STATE(1980), - [sym_union_type] = STATE(1907), - [sym_intersection_type] = STATE(1907), - [sym_function_type] = STATE(1980), - [sym_identifier] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_LBRACE] = ACTIONS(2981), - [anon_sym_typeof] = ACTIONS(2983), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_PIPE] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(2999), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3001), - [sym_number] = ACTIONS(3003), - [sym_this] = ACTIONS(3233), - [sym_true] = ACTIONS(3007), - [sym_false] = ACTIONS(3007), - [sym_null] = ACTIONS(3007), - [sym_undefined] = ACTIONS(3007), - [anon_sym_readonly] = ACTIONS(3009), - [anon_sym_QMARK] = ACTIONS(3011), - [anon_sym_any] = ACTIONS(2999), - [anon_sym_number] = ACTIONS(2999), - [anon_sym_boolean] = ACTIONS(2999), - [anon_sym_string] = ACTIONS(2999), - [anon_sym_symbol] = ACTIONS(2999), - [anon_sym_object] = ACTIONS(2999), - [anon_sym_abstract] = ACTIONS(3013), - [anon_sym_infer] = ACTIONS(3017), - [anon_sym_keyof] = ACTIONS(3019), - [anon_sym_unique] = ACTIONS(3021), - [anon_sym_unknown] = ACTIONS(2999), - [anon_sym_never] = ACTIONS(2999), - [anon_sym_LBRACE_PIPE] = ACTIONS(3023), + [sym_import] = STATE(4786), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5658), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3263), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3757), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5559), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1028] = { - [sym_import] = STATE(5169), - [sym_nested_identifier] = STATE(5618), - [sym_string] = STATE(3256), - [sym_formal_parameters] = STATE(5839), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(3044), - [sym__type_query_call_expression_in_type_annotation] = STATE(3176), - [sym_type] = STATE(4038), - [sym_constructor_type] = STATE(3261), - [sym_primary_type] = STATE(3262), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(3261), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3255), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5399), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(3261), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(3261), - [sym_identifier] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_typeof] = ACTIONS(1582), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(1036), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1602), - [sym_this] = ACTIONS(1604), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), - [sym_null] = ACTIONS(1606), - [sym_undefined] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1036), - [anon_sym_number] = ACTIONS(1036), - [anon_sym_boolean] = ACTIONS(1036), - [anon_sym_string] = ACTIONS(1036), - [anon_sym_symbol] = ACTIONS(1036), - [anon_sym_object] = ACTIONS(1036), - [anon_sym_abstract] = ACTIONS(1028), - [anon_sym_infer] = ACTIONS(1030), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(1038), + [sym_import] = STATE(4786), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5658), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3263), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3758), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5559), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1029] = { - [sym_import] = STATE(5169), - [sym_nested_identifier] = STATE(5618), - [sym_string] = STATE(3256), - [sym_formal_parameters] = STATE(5839), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(3044), - [sym__type_query_call_expression_in_type_annotation] = STATE(3176), - [sym_type] = STATE(4055), - [sym_constructor_type] = STATE(3261), - [sym_primary_type] = STATE(3262), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(3261), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3255), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5399), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(3261), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(3261), - [sym_identifier] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_typeof] = ACTIONS(1582), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(1036), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1602), - [sym_this] = ACTIONS(1604), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), - [sym_null] = ACTIONS(1606), - [sym_undefined] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1036), - [anon_sym_number] = ACTIONS(1036), - [anon_sym_boolean] = ACTIONS(1036), - [anon_sym_string] = ACTIONS(1036), - [anon_sym_symbol] = ACTIONS(1036), - [anon_sym_object] = ACTIONS(1036), - [anon_sym_abstract] = ACTIONS(1028), - [anon_sym_infer] = ACTIONS(1030), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(1038), + [sym_import] = STATE(4673), + [sym_nested_identifier] = STATE(5966), + [sym_string] = STATE(3463), + [sym_formal_parameters] = STATE(5586), + [sym_nested_type_identifier] = STATE(3191), + [sym__type_query_member_expression_in_type_annotation] = STATE(3128), + [sym__type_query_call_expression_in_type_annotation] = STATE(3287), + [sym_type] = STATE(3338), + [sym_constructor_type] = STATE(3321), + [sym_primary_type] = STATE(3325), + [sym_template_literal_type] = STATE(3443), + [sym_infer_type] = STATE(3321), + [sym_conditional_type] = STATE(3443), + [sym_generic_type] = STATE(3443), + [sym_type_query] = STATE(3443), + [sym_index_type_query] = STATE(3443), + [sym_lookup_type] = STATE(3443), + [sym_literal_type] = STATE(3443), + [sym__number] = STATE(3326), + [sym_existential_type] = STATE(3443), + [sym_flow_maybe_type] = STATE(3443), + [sym_parenthesized_type] = STATE(3443), + [sym_predefined_type] = STATE(3443), + [sym_object_type] = STATE(3443), + [sym_type_parameters] = STATE(5361), + [sym_array_type] = STATE(3443), + [sym_tuple_type] = STATE(3443), + [sym_readonly_type] = STATE(3321), + [sym_union_type] = STATE(3443), + [sym_intersection_type] = STATE(3443), + [sym_function_type] = STATE(3321), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3046), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_typeof] = ACTIONS(3050), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(3054), + [anon_sym_LBRACK] = ACTIONS(3056), + [anon_sym_DQUOTE] = ACTIONS(3058), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3064), + [anon_sym_PIPE] = ACTIONS(3066), + [anon_sym_PLUS] = ACTIONS(3068), + [anon_sym_DASH] = ACTIONS(3068), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(3070), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3072), + [sym_number] = ACTIONS(3074), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3078), + [sym_false] = ACTIONS(3078), + [sym_null] = ACTIONS(3078), + [sym_undefined] = ACTIONS(3078), + [anon_sym_readonly] = ACTIONS(3080), + [anon_sym_QMARK] = ACTIONS(3082), + [anon_sym_any] = ACTIONS(3070), + [anon_sym_number] = ACTIONS(3070), + [anon_sym_boolean] = ACTIONS(3070), + [anon_sym_string] = ACTIONS(3070), + [anon_sym_symbol] = ACTIONS(3070), + [anon_sym_object] = ACTIONS(3070), + [anon_sym_abstract] = ACTIONS(3084), + [anon_sym_infer] = ACTIONS(3088), + [anon_sym_keyof] = ACTIONS(3090), + [anon_sym_unique] = ACTIONS(3092), + [anon_sym_unknown] = ACTIONS(3070), + [anon_sym_never] = ACTIONS(3070), + [anon_sym_LBRACE_PIPE] = ACTIONS(3094), [sym_html_comment] = ACTIONS(5), }, [1030] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(2965), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(4673), + [sym_nested_identifier] = STATE(5966), + [sym_string] = STATE(3463), + [sym_formal_parameters] = STATE(5586), + [sym_nested_type_identifier] = STATE(3191), + [sym__type_query_member_expression_in_type_annotation] = STATE(3128), + [sym__type_query_call_expression_in_type_annotation] = STATE(3287), + [sym_type] = STATE(3389), + [sym_constructor_type] = STATE(3321), + [sym_primary_type] = STATE(3325), + [sym_template_literal_type] = STATE(3443), + [sym_infer_type] = STATE(3321), + [sym_conditional_type] = STATE(3443), + [sym_generic_type] = STATE(3443), + [sym_type_query] = STATE(3443), + [sym_index_type_query] = STATE(3443), + [sym_lookup_type] = STATE(3443), + [sym_literal_type] = STATE(3443), + [sym__number] = STATE(3326), + [sym_existential_type] = STATE(3443), + [sym_flow_maybe_type] = STATE(3443), + [sym_parenthesized_type] = STATE(3443), + [sym_predefined_type] = STATE(3443), + [sym_object_type] = STATE(3443), + [sym_type_parameters] = STATE(5361), + [sym_array_type] = STATE(3443), + [sym_tuple_type] = STATE(3443), + [sym_readonly_type] = STATE(3321), + [sym_union_type] = STATE(3443), + [sym_intersection_type] = STATE(3443), + [sym_function_type] = STATE(3321), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3046), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_typeof] = ACTIONS(3050), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(3054), + [anon_sym_LBRACK] = ACTIONS(3056), + [anon_sym_DQUOTE] = ACTIONS(3058), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3064), + [anon_sym_PIPE] = ACTIONS(3066), + [anon_sym_PLUS] = ACTIONS(3068), + [anon_sym_DASH] = ACTIONS(3068), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(3070), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3072), + [sym_number] = ACTIONS(3074), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3078), + [sym_false] = ACTIONS(3078), + [sym_null] = ACTIONS(3078), + [sym_undefined] = ACTIONS(3078), + [anon_sym_readonly] = ACTIONS(3080), + [anon_sym_QMARK] = ACTIONS(3082), + [anon_sym_any] = ACTIONS(3070), + [anon_sym_number] = ACTIONS(3070), + [anon_sym_boolean] = ACTIONS(3070), + [anon_sym_string] = ACTIONS(3070), + [anon_sym_symbol] = ACTIONS(3070), + [anon_sym_object] = ACTIONS(3070), + [anon_sym_abstract] = ACTIONS(3084), + [anon_sym_infer] = ACTIONS(3088), + [anon_sym_keyof] = ACTIONS(3090), + [anon_sym_unique] = ACTIONS(3092), + [anon_sym_unknown] = ACTIONS(3070), + [anon_sym_never] = ACTIONS(3070), + [anon_sym_LBRACE_PIPE] = ACTIONS(3094), [sym_html_comment] = ACTIONS(5), }, [1031] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3669), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(4786), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5658), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3263), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(2985), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5559), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1032] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3674), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(4786), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5658), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3263), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3749), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5559), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1033] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3675), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(5153), + [sym_nested_identifier] = STATE(5834), + [sym_string] = STATE(3213), + [sym_formal_parameters] = STATE(5829), + [sym_nested_type_identifier] = STATE(3070), + [sym__type_query_member_expression_in_type_annotation] = STATE(3029), + [sym__type_query_call_expression_in_type_annotation] = STATE(3159), + [sym_type] = STATE(4073), + [sym_constructor_type] = STATE(3218), + [sym_primary_type] = STATE(3257), + [sym_template_literal_type] = STATE(3211), + [sym_infer_type] = STATE(3218), + [sym_conditional_type] = STATE(3211), + [sym_generic_type] = STATE(3211), + [sym_type_query] = STATE(3211), + [sym_index_type_query] = STATE(3211), + [sym_lookup_type] = STATE(3211), + [sym_literal_type] = STATE(3211), + [sym__number] = STATE(3219), + [sym_existential_type] = STATE(3211), + [sym_flow_maybe_type] = STATE(3211), + [sym_parenthesized_type] = STATE(3211), + [sym_predefined_type] = STATE(3211), + [sym_object_type] = STATE(3211), + [sym_type_parameters] = STATE(5268), + [sym_array_type] = STATE(3211), + [sym_tuple_type] = STATE(3211), + [sym_readonly_type] = STATE(3218), + [sym_union_type] = STATE(3211), + [sym_intersection_type] = STATE(3211), + [sym_function_type] = STATE(3218), + [sym_identifier] = ACTIONS(1571), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_new] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(2948), + [anon_sym_DASH] = ACTIONS(2948), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(1031), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1595), + [sym_number] = ACTIONS(1597), + [sym_this] = ACTIONS(1599), + [sym_true] = ACTIONS(1601), + [sym_false] = ACTIONS(1601), + [sym_null] = ACTIONS(1601), + [sym_undefined] = ACTIONS(1601), + [anon_sym_readonly] = ACTIONS(1603), + [anon_sym_QMARK] = ACTIONS(1019), + [anon_sym_any] = ACTIONS(1031), + [anon_sym_number] = ACTIONS(1031), + [anon_sym_boolean] = ACTIONS(1031), + [anon_sym_string] = ACTIONS(1031), + [anon_sym_symbol] = ACTIONS(1031), + [anon_sym_object] = ACTIONS(1031), + [anon_sym_abstract] = ACTIONS(1023), + [anon_sym_infer] = ACTIONS(1025), + [anon_sym_keyof] = ACTIONS(1027), + [anon_sym_unique] = ACTIONS(1029), + [anon_sym_unknown] = ACTIONS(1031), + [anon_sym_never] = ACTIONS(1031), + [anon_sym_LBRACE_PIPE] = ACTIONS(1033), [sym_html_comment] = ACTIONS(5), }, [1034] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3000), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(5153), + [sym_nested_identifier] = STATE(5834), + [sym_string] = STATE(3213), + [sym_formal_parameters] = STATE(5829), + [sym_nested_type_identifier] = STATE(3070), + [sym__type_query_member_expression_in_type_annotation] = STATE(3029), + [sym__type_query_call_expression_in_type_annotation] = STATE(3159), + [sym_type] = STATE(4067), + [sym_constructor_type] = STATE(3218), + [sym_primary_type] = STATE(3257), + [sym_template_literal_type] = STATE(3211), + [sym_infer_type] = STATE(3218), + [sym_conditional_type] = STATE(3211), + [sym_generic_type] = STATE(3211), + [sym_type_query] = STATE(3211), + [sym_index_type_query] = STATE(3211), + [sym_lookup_type] = STATE(3211), + [sym_literal_type] = STATE(3211), + [sym__number] = STATE(3219), + [sym_existential_type] = STATE(3211), + [sym_flow_maybe_type] = STATE(3211), + [sym_parenthesized_type] = STATE(3211), + [sym_predefined_type] = STATE(3211), + [sym_object_type] = STATE(3211), + [sym_type_parameters] = STATE(5268), + [sym_array_type] = STATE(3211), + [sym_tuple_type] = STATE(3211), + [sym_readonly_type] = STATE(3218), + [sym_union_type] = STATE(3211), + [sym_intersection_type] = STATE(3211), + [sym_function_type] = STATE(3218), + [sym_identifier] = ACTIONS(1571), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_new] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(2948), + [anon_sym_DASH] = ACTIONS(2948), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(1031), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1595), + [sym_number] = ACTIONS(1597), + [sym_this] = ACTIONS(1599), + [sym_true] = ACTIONS(1601), + [sym_false] = ACTIONS(1601), + [sym_null] = ACTIONS(1601), + [sym_undefined] = ACTIONS(1601), + [anon_sym_readonly] = ACTIONS(1603), + [anon_sym_QMARK] = ACTIONS(1019), + [anon_sym_any] = ACTIONS(1031), + [anon_sym_number] = ACTIONS(1031), + [anon_sym_boolean] = ACTIONS(1031), + [anon_sym_string] = ACTIONS(1031), + [anon_sym_symbol] = ACTIONS(1031), + [anon_sym_object] = ACTIONS(1031), + [anon_sym_abstract] = ACTIONS(1023), + [anon_sym_infer] = ACTIONS(1025), + [anon_sym_keyof] = ACTIONS(1027), + [anon_sym_unique] = ACTIONS(1029), + [anon_sym_unknown] = ACTIONS(1031), + [anon_sym_never] = ACTIONS(1031), + [anon_sym_LBRACE_PIPE] = ACTIONS(1033), [sym_html_comment] = ACTIONS(5), }, [1035] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3690), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(4786), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5658), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3263), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(2955), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5559), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1036] = { - [sym_import] = STATE(5169), - [sym_nested_identifier] = STATE(5618), - [sym_string] = STATE(3256), - [sym_formal_parameters] = STATE(5839), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(3044), - [sym__type_query_call_expression_in_type_annotation] = STATE(3176), - [sym_type] = STATE(4075), - [sym_constructor_type] = STATE(3261), - [sym_primary_type] = STATE(3262), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(3261), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3255), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5399), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(3261), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(3261), - [sym_identifier] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_typeof] = ACTIONS(1582), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(1036), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1602), - [sym_this] = ACTIONS(1604), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), - [sym_null] = ACTIONS(1606), - [sym_undefined] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1036), - [anon_sym_number] = ACTIONS(1036), - [anon_sym_boolean] = ACTIONS(1036), - [anon_sym_string] = ACTIONS(1036), - [anon_sym_symbol] = ACTIONS(1036), - [anon_sym_object] = ACTIONS(1036), - [anon_sym_abstract] = ACTIONS(1028), - [anon_sym_infer] = ACTIONS(1030), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(1038), + [sym_import] = STATE(4786), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5658), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3263), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(2963), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5559), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1037] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(2955), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(4471), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1038] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(2956), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(4786), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5658), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3263), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(2977), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5559), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1039] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4540), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(4786), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5658), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3263), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3559), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5559), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1040] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(2904), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(5153), + [sym_nested_identifier] = STATE(5834), + [sym_string] = STATE(3213), + [sym_formal_parameters] = STATE(5829), + [sym_nested_type_identifier] = STATE(3070), + [sym__type_query_member_expression_in_type_annotation] = STATE(3029), + [sym__type_query_call_expression_in_type_annotation] = STATE(3159), + [sym_type] = STATE(4402), + [sym_constructor_type] = STATE(3218), + [sym_primary_type] = STATE(3257), + [sym_template_literal_type] = STATE(3211), + [sym_infer_type] = STATE(3218), + [sym_conditional_type] = STATE(3211), + [sym_generic_type] = STATE(3211), + [sym_type_query] = STATE(3211), + [sym_index_type_query] = STATE(3211), + [sym_lookup_type] = STATE(3211), + [sym_literal_type] = STATE(3211), + [sym__number] = STATE(3219), + [sym_existential_type] = STATE(3211), + [sym_flow_maybe_type] = STATE(3211), + [sym_parenthesized_type] = STATE(3211), + [sym_predefined_type] = STATE(3211), + [sym_object_type] = STATE(3211), + [sym_type_parameters] = STATE(5268), + [sym_array_type] = STATE(3211), + [sym_tuple_type] = STATE(3211), + [sym_readonly_type] = STATE(3218), + [sym_union_type] = STATE(3211), + [sym_intersection_type] = STATE(3211), + [sym_function_type] = STATE(3218), + [sym_identifier] = ACTIONS(1571), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_new] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(2948), + [anon_sym_DASH] = ACTIONS(2948), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(1031), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1595), + [sym_number] = ACTIONS(1597), + [sym_this] = ACTIONS(1599), + [sym_true] = ACTIONS(1601), + [sym_false] = ACTIONS(1601), + [sym_null] = ACTIONS(1601), + [sym_undefined] = ACTIONS(1601), + [anon_sym_readonly] = ACTIONS(1603), + [anon_sym_QMARK] = ACTIONS(1019), + [anon_sym_any] = ACTIONS(1031), + [anon_sym_number] = ACTIONS(1031), + [anon_sym_boolean] = ACTIONS(1031), + [anon_sym_string] = ACTIONS(1031), + [anon_sym_symbol] = ACTIONS(1031), + [anon_sym_object] = ACTIONS(1031), + [anon_sym_abstract] = ACTIONS(1023), + [anon_sym_infer] = ACTIONS(1025), + [anon_sym_keyof] = ACTIONS(1027), + [anon_sym_unique] = ACTIONS(1029), + [anon_sym_unknown] = ACTIONS(1031), + [anon_sym_never] = ACTIONS(1031), + [anon_sym_LBRACE_PIPE] = ACTIONS(1033), [sym_html_comment] = ACTIONS(5), }, [1041] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3711), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(4648), + [sym_nested_identifier] = STATE(5899), + [sym_string] = STATE(1864), + [sym_formal_parameters] = STATE(5723), + [sym_nested_type_identifier] = STATE(1843), + [sym__type_query_member_expression_in_type_annotation] = STATE(1844), + [sym__type_query_call_expression_in_type_annotation] = STATE(1866), + [sym_type] = STATE(1876), + [sym_constructor_type] = STATE(1867), + [sym_primary_type] = STATE(1868), + [sym_template_literal_type] = STATE(1863), + [sym_infer_type] = STATE(1867), + [sym_conditional_type] = STATE(1863), + [sym_generic_type] = STATE(1863), + [sym_type_query] = STATE(1863), + [sym_index_type_query] = STATE(1863), + [sym_lookup_type] = STATE(1863), + [sym_literal_type] = STATE(1863), + [sym__number] = STATE(1869), + [sym_existential_type] = STATE(1863), + [sym_flow_maybe_type] = STATE(1863), + [sym_parenthesized_type] = STATE(1863), + [sym_predefined_type] = STATE(1863), + [sym_object_type] = STATE(1863), + [sym_type_parameters] = STATE(5380), + [sym_array_type] = STATE(1863), + [sym_tuple_type] = STATE(1863), + [sym_readonly_type] = STATE(1867), + [sym_union_type] = STATE(1863), + [sym_intersection_type] = STATE(1863), + [sym_function_type] = STATE(1867), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(2998), + [anon_sym_LBRACE] = ACTIONS(3000), + [anon_sym_typeof] = ACTIONS(3002), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3004), + [anon_sym_LPAREN] = ACTIONS(3006), + [anon_sym_LBRACK] = ACTIONS(3008), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_PIPE] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3016), + [anon_sym_DASH] = ACTIONS(3016), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(3018), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3020), + [sym_number] = ACTIONS(3022), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(3026), + [sym_false] = ACTIONS(3026), + [sym_null] = ACTIONS(3026), + [sym_undefined] = ACTIONS(3026), + [anon_sym_readonly] = ACTIONS(3028), + [anon_sym_QMARK] = ACTIONS(3030), + [anon_sym_any] = ACTIONS(3018), + [anon_sym_number] = ACTIONS(3018), + [anon_sym_boolean] = ACTIONS(3018), + [anon_sym_string] = ACTIONS(3018), + [anon_sym_symbol] = ACTIONS(3018), + [anon_sym_object] = ACTIONS(3018), + [anon_sym_abstract] = ACTIONS(3032), + [anon_sym_infer] = ACTIONS(3036), + [anon_sym_keyof] = ACTIONS(3038), + [anon_sym_unique] = ACTIONS(3040), + [anon_sym_unknown] = ACTIONS(3018), + [anon_sym_never] = ACTIONS(3018), + [anon_sym_LBRACE_PIPE] = ACTIONS(3042), [sym_html_comment] = ACTIONS(5), }, [1042] = { - [sym_import] = STATE(4668), - [sym_nested_identifier] = STATE(5986), - [sym_string] = STATE(3335), - [sym_formal_parameters] = STATE(5649), - [sym_nested_type_identifier] = STATE(3222), - [sym__type_query_member_expression_in_type_annotation] = STATE(3169), - [sym__type_query_call_expression_in_type_annotation] = STATE(3271), - [sym_type] = STATE(3341), - [sym_constructor_type] = STATE(3347), - [sym_primary_type] = STATE(3352), - [sym_template_literal_type] = STATE(3330), - [sym_infer_type] = STATE(3347), - [sym_conditional_type] = STATE(3330), - [sym_generic_type] = STATE(3330), - [sym_type_query] = STATE(3330), - [sym_index_type_query] = STATE(3330), - [sym_lookup_type] = STATE(3330), - [sym_literal_type] = STATE(3330), - [sym__number] = STATE(3353), - [sym_existential_type] = STATE(3330), - [sym_flow_maybe_type] = STATE(3330), - [sym_parenthesized_type] = STATE(3330), - [sym_predefined_type] = STATE(3330), - [sym_object_type] = STATE(3330), - [sym_type_parameters] = STATE(5245), - [sym_array_type] = STATE(3330), - [sym_tuple_type] = STATE(3330), - [sym_readonly_type] = STATE(3347), - [sym_union_type] = STATE(3330), - [sym_intersection_type] = STATE(3330), - [sym_function_type] = STATE(3347), - [sym_identifier] = ACTIONS(3221), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3119), - [anon_sym_typeof] = ACTIONS(3121), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_DQUOTE] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3131), - [anon_sym_new] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3141), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3143), - [sym_number] = ACTIONS(3145), - [sym_this] = ACTIONS(3223), - [sym_true] = ACTIONS(3149), - [sym_false] = ACTIONS(3149), - [sym_null] = ACTIONS(3149), - [sym_undefined] = ACTIONS(3149), - [anon_sym_readonly] = ACTIONS(3151), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_any] = ACTIONS(3141), - [anon_sym_number] = ACTIONS(3141), - [anon_sym_boolean] = ACTIONS(3141), - [anon_sym_string] = ACTIONS(3141), - [anon_sym_symbol] = ACTIONS(3141), - [anon_sym_object] = ACTIONS(3141), - [anon_sym_abstract] = ACTIONS(3155), - [anon_sym_infer] = ACTIONS(3159), - [anon_sym_keyof] = ACTIONS(3161), - [anon_sym_unique] = ACTIONS(3163), - [anon_sym_unknown] = ACTIONS(3141), - [anon_sym_never] = ACTIONS(3141), - [anon_sym_LBRACE_PIPE] = ACTIONS(3165), + [sym_import] = STATE(5153), + [sym_nested_identifier] = STATE(5834), + [sym_string] = STATE(3213), + [sym_formal_parameters] = STATE(5829), + [sym_nested_type_identifier] = STATE(3070), + [sym__type_query_member_expression_in_type_annotation] = STATE(3029), + [sym__type_query_call_expression_in_type_annotation] = STATE(3159), + [sym_type] = STATE(3241), + [sym_constructor_type] = STATE(3218), + [sym_primary_type] = STATE(3257), + [sym_template_literal_type] = STATE(3211), + [sym_infer_type] = STATE(3218), + [sym_conditional_type] = STATE(3211), + [sym_generic_type] = STATE(3211), + [sym_type_query] = STATE(3211), + [sym_index_type_query] = STATE(3211), + [sym_lookup_type] = STATE(3211), + [sym_literal_type] = STATE(3211), + [sym__number] = STATE(3219), + [sym_existential_type] = STATE(3211), + [sym_flow_maybe_type] = STATE(3211), + [sym_parenthesized_type] = STATE(3211), + [sym_predefined_type] = STATE(3211), + [sym_object_type] = STATE(3211), + [sym_type_parameters] = STATE(5268), + [sym_array_type] = STATE(3211), + [sym_tuple_type] = STATE(3211), + [sym_readonly_type] = STATE(3218), + [sym_union_type] = STATE(3211), + [sym_intersection_type] = STATE(3211), + [sym_function_type] = STATE(3218), + [sym_identifier] = ACTIONS(1571), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_new] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(2948), + [anon_sym_DASH] = ACTIONS(2948), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(1031), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1595), + [sym_number] = ACTIONS(1597), + [sym_this] = ACTIONS(1599), + [sym_true] = ACTIONS(1601), + [sym_false] = ACTIONS(1601), + [sym_null] = ACTIONS(1601), + [sym_undefined] = ACTIONS(1601), + [anon_sym_readonly] = ACTIONS(1603), + [anon_sym_QMARK] = ACTIONS(1019), + [anon_sym_any] = ACTIONS(1031), + [anon_sym_number] = ACTIONS(1031), + [anon_sym_boolean] = ACTIONS(1031), + [anon_sym_string] = ACTIONS(1031), + [anon_sym_symbol] = ACTIONS(1031), + [anon_sym_object] = ACTIONS(1031), + [anon_sym_abstract] = ACTIONS(1023), + [anon_sym_infer] = ACTIONS(1025), + [anon_sym_keyof] = ACTIONS(1027), + [anon_sym_unique] = ACTIONS(1029), + [anon_sym_unknown] = ACTIONS(1031), + [anon_sym_never] = ACTIONS(1031), + [anon_sym_LBRACE_PIPE] = ACTIONS(1033), [sym_html_comment] = ACTIONS(5), }, [1043] = { - [sym_import] = STATE(4668), - [sym_nested_identifier] = STATE(5986), - [sym_string] = STATE(3335), - [sym_formal_parameters] = STATE(5649), - [sym_nested_type_identifier] = STATE(3222), - [sym__type_query_member_expression_in_type_annotation] = STATE(3169), - [sym__type_query_call_expression_in_type_annotation] = STATE(3271), - [sym_type] = STATE(3342), - [sym_constructor_type] = STATE(3347), - [sym_primary_type] = STATE(3352), - [sym_template_literal_type] = STATE(3330), - [sym_infer_type] = STATE(3347), - [sym_conditional_type] = STATE(3330), - [sym_generic_type] = STATE(3330), - [sym_type_query] = STATE(3330), - [sym_index_type_query] = STATE(3330), - [sym_lookup_type] = STATE(3330), - [sym_literal_type] = STATE(3330), - [sym__number] = STATE(3353), - [sym_existential_type] = STATE(3330), - [sym_flow_maybe_type] = STATE(3330), - [sym_parenthesized_type] = STATE(3330), - [sym_predefined_type] = STATE(3330), - [sym_object_type] = STATE(3330), - [sym_type_parameters] = STATE(5245), - [sym_array_type] = STATE(3330), - [sym_tuple_type] = STATE(3330), - [sym_readonly_type] = STATE(3347), - [sym_union_type] = STATE(3330), - [sym_intersection_type] = STATE(3330), - [sym_function_type] = STATE(3347), - [sym_identifier] = ACTIONS(3221), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3119), - [anon_sym_typeof] = ACTIONS(3121), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_DQUOTE] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3131), - [anon_sym_new] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3141), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3143), - [sym_number] = ACTIONS(3145), - [sym_this] = ACTIONS(3223), - [sym_true] = ACTIONS(3149), - [sym_false] = ACTIONS(3149), - [sym_null] = ACTIONS(3149), - [sym_undefined] = ACTIONS(3149), - [anon_sym_readonly] = ACTIONS(3151), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_any] = ACTIONS(3141), - [anon_sym_number] = ACTIONS(3141), - [anon_sym_boolean] = ACTIONS(3141), - [anon_sym_string] = ACTIONS(3141), - [anon_sym_symbol] = ACTIONS(3141), - [anon_sym_object] = ACTIONS(3141), - [anon_sym_abstract] = ACTIONS(3155), - [anon_sym_infer] = ACTIONS(3159), - [anon_sym_keyof] = ACTIONS(3161), - [anon_sym_unique] = ACTIONS(3163), - [anon_sym_unknown] = ACTIONS(3141), - [anon_sym_never] = ACTIONS(3141), - [anon_sym_LBRACE_PIPE] = ACTIONS(3165), + [sym_import] = STATE(5153), + [sym_nested_identifier] = STATE(5834), + [sym_string] = STATE(3213), + [sym_formal_parameters] = STATE(5829), + [sym_nested_type_identifier] = STATE(3070), + [sym__type_query_member_expression_in_type_annotation] = STATE(3029), + [sym__type_query_call_expression_in_type_annotation] = STATE(3159), + [sym_type] = STATE(3242), + [sym_constructor_type] = STATE(3218), + [sym_primary_type] = STATE(3257), + [sym_template_literal_type] = STATE(3211), + [sym_infer_type] = STATE(3218), + [sym_conditional_type] = STATE(3211), + [sym_generic_type] = STATE(3211), + [sym_type_query] = STATE(3211), + [sym_index_type_query] = STATE(3211), + [sym_lookup_type] = STATE(3211), + [sym_literal_type] = STATE(3211), + [sym__number] = STATE(3219), + [sym_existential_type] = STATE(3211), + [sym_flow_maybe_type] = STATE(3211), + [sym_parenthesized_type] = STATE(3211), + [sym_predefined_type] = STATE(3211), + [sym_object_type] = STATE(3211), + [sym_type_parameters] = STATE(5268), + [sym_array_type] = STATE(3211), + [sym_tuple_type] = STATE(3211), + [sym_readonly_type] = STATE(3218), + [sym_union_type] = STATE(3211), + [sym_intersection_type] = STATE(3211), + [sym_function_type] = STATE(3218), + [sym_identifier] = ACTIONS(1571), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_new] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(2948), + [anon_sym_DASH] = ACTIONS(2948), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(1031), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1595), + [sym_number] = ACTIONS(1597), + [sym_this] = ACTIONS(1599), + [sym_true] = ACTIONS(1601), + [sym_false] = ACTIONS(1601), + [sym_null] = ACTIONS(1601), + [sym_undefined] = ACTIONS(1601), + [anon_sym_readonly] = ACTIONS(1603), + [anon_sym_QMARK] = ACTIONS(1019), + [anon_sym_any] = ACTIONS(1031), + [anon_sym_number] = ACTIONS(1031), + [anon_sym_boolean] = ACTIONS(1031), + [anon_sym_string] = ACTIONS(1031), + [anon_sym_symbol] = ACTIONS(1031), + [anon_sym_object] = ACTIONS(1031), + [anon_sym_abstract] = ACTIONS(1023), + [anon_sym_infer] = ACTIONS(1025), + [anon_sym_keyof] = ACTIONS(1027), + [anon_sym_unique] = ACTIONS(1029), + [anon_sym_unknown] = ACTIONS(1031), + [anon_sym_never] = ACTIONS(1031), + [anon_sym_LBRACE_PIPE] = ACTIONS(1033), [sym_html_comment] = ACTIONS(5), }, [1044] = { - [sym_import] = STATE(4635), - [sym_nested_identifier] = STATE(5854), - [sym_string] = STATE(1922), - [sym_formal_parameters] = STATE(5981), - [sym_nested_type_identifier] = STATE(1768), - [sym__type_query_member_expression_in_type_annotation] = STATE(1769), - [sym__type_query_call_expression_in_type_annotation] = STATE(1973), - [sym_type] = STATE(1873), - [sym_constructor_type] = STATE(1980), - [sym_primary_type] = STATE(1981), - [sym_template_literal_type] = STATE(1907), - [sym_infer_type] = STATE(1980), - [sym_conditional_type] = STATE(1907), - [sym_generic_type] = STATE(1907), - [sym_type_query] = STATE(1907), - [sym_index_type_query] = STATE(1907), - [sym_lookup_type] = STATE(1907), - [sym_literal_type] = STATE(1907), - [sym__number] = STATE(1987), - [sym_existential_type] = STATE(1907), - [sym_flow_maybe_type] = STATE(1907), - [sym_parenthesized_type] = STATE(1907), - [sym_predefined_type] = STATE(1907), - [sym_object_type] = STATE(1907), - [sym_type_parameters] = STATE(5335), - [sym_array_type] = STATE(1907), - [sym_tuple_type] = STATE(1907), - [sym_readonly_type] = STATE(1980), - [sym_union_type] = STATE(1907), - [sym_intersection_type] = STATE(1907), - [sym_function_type] = STATE(1980), - [sym_identifier] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_LBRACE] = ACTIONS(2981), - [anon_sym_typeof] = ACTIONS(2983), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_PIPE] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(2999), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3001), - [sym_number] = ACTIONS(3003), - [sym_this] = ACTIONS(3233), - [sym_true] = ACTIONS(3007), - [sym_false] = ACTIONS(3007), - [sym_null] = ACTIONS(3007), - [sym_undefined] = ACTIONS(3007), - [anon_sym_readonly] = ACTIONS(3009), - [anon_sym_QMARK] = ACTIONS(3011), - [anon_sym_any] = ACTIONS(2999), - [anon_sym_number] = ACTIONS(2999), - [anon_sym_boolean] = ACTIONS(2999), - [anon_sym_string] = ACTIONS(2999), - [anon_sym_symbol] = ACTIONS(2999), - [anon_sym_object] = ACTIONS(2999), - [anon_sym_abstract] = ACTIONS(3013), - [anon_sym_infer] = ACTIONS(3017), - [anon_sym_keyof] = ACTIONS(3019), - [anon_sym_unique] = ACTIONS(3021), - [anon_sym_unknown] = ACTIONS(2999), - [anon_sym_never] = ACTIONS(2999), - [anon_sym_LBRACE_PIPE] = ACTIONS(3023), + [sym_import] = STATE(5153), + [sym_nested_identifier] = STATE(5834), + [sym_string] = STATE(3213), + [sym_formal_parameters] = STATE(5829), + [sym_nested_type_identifier] = STATE(3070), + [sym__type_query_member_expression_in_type_annotation] = STATE(3029), + [sym__type_query_call_expression_in_type_annotation] = STATE(3159), + [sym_type] = STATE(3246), + [sym_constructor_type] = STATE(3218), + [sym_primary_type] = STATE(3257), + [sym_template_literal_type] = STATE(3211), + [sym_infer_type] = STATE(3218), + [sym_conditional_type] = STATE(3211), + [sym_generic_type] = STATE(3211), + [sym_type_query] = STATE(3211), + [sym_index_type_query] = STATE(3211), + [sym_lookup_type] = STATE(3211), + [sym_literal_type] = STATE(3211), + [sym__number] = STATE(3219), + [sym_existential_type] = STATE(3211), + [sym_flow_maybe_type] = STATE(3211), + [sym_parenthesized_type] = STATE(3211), + [sym_predefined_type] = STATE(3211), + [sym_object_type] = STATE(3211), + [sym_type_parameters] = STATE(5268), + [sym_array_type] = STATE(3211), + [sym_tuple_type] = STATE(3211), + [sym_readonly_type] = STATE(3218), + [sym_union_type] = STATE(3211), + [sym_intersection_type] = STATE(3211), + [sym_function_type] = STATE(3218), + [sym_identifier] = ACTIONS(1571), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_new] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(2948), + [anon_sym_DASH] = ACTIONS(2948), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(1031), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1595), + [sym_number] = ACTIONS(1597), + [sym_this] = ACTIONS(1599), + [sym_true] = ACTIONS(1601), + [sym_false] = ACTIONS(1601), + [sym_null] = ACTIONS(1601), + [sym_undefined] = ACTIONS(1601), + [anon_sym_readonly] = ACTIONS(1603), + [anon_sym_QMARK] = ACTIONS(1019), + [anon_sym_any] = ACTIONS(1031), + [anon_sym_number] = ACTIONS(1031), + [anon_sym_boolean] = ACTIONS(1031), + [anon_sym_string] = ACTIONS(1031), + [anon_sym_symbol] = ACTIONS(1031), + [anon_sym_object] = ACTIONS(1031), + [anon_sym_abstract] = ACTIONS(1023), + [anon_sym_infer] = ACTIONS(1025), + [anon_sym_keyof] = ACTIONS(1027), + [anon_sym_unique] = ACTIONS(1029), + [anon_sym_unknown] = ACTIONS(1031), + [anon_sym_never] = ACTIONS(1031), + [anon_sym_LBRACE_PIPE] = ACTIONS(1033), [sym_html_comment] = ACTIONS(5), }, [1045] = { - [sym_import] = STATE(4635), - [sym_nested_identifier] = STATE(5854), - [sym_string] = STATE(1922), - [sym_formal_parameters] = STATE(5981), - [sym_nested_type_identifier] = STATE(1768), - [sym__type_query_member_expression_in_type_annotation] = STATE(1769), - [sym__type_query_call_expression_in_type_annotation] = STATE(1973), - [sym_type] = STATE(1874), - [sym_constructor_type] = STATE(1980), - [sym_primary_type] = STATE(1981), - [sym_template_literal_type] = STATE(1907), - [sym_infer_type] = STATE(1980), - [sym_conditional_type] = STATE(1907), - [sym_generic_type] = STATE(1907), - [sym_type_query] = STATE(1907), - [sym_index_type_query] = STATE(1907), - [sym_lookup_type] = STATE(1907), - [sym_literal_type] = STATE(1907), - [sym__number] = STATE(1987), - [sym_existential_type] = STATE(1907), - [sym_flow_maybe_type] = STATE(1907), - [sym_parenthesized_type] = STATE(1907), - [sym_predefined_type] = STATE(1907), - [sym_object_type] = STATE(1907), - [sym_type_parameters] = STATE(5335), - [sym_array_type] = STATE(1907), - [sym_tuple_type] = STATE(1907), - [sym_readonly_type] = STATE(1980), - [sym_union_type] = STATE(1907), - [sym_intersection_type] = STATE(1907), - [sym_function_type] = STATE(1980), - [sym_identifier] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_LBRACE] = ACTIONS(2981), - [anon_sym_typeof] = ACTIONS(2983), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_PIPE] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(2999), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3001), - [sym_number] = ACTIONS(3003), - [sym_this] = ACTIONS(3233), - [sym_true] = ACTIONS(3007), - [sym_false] = ACTIONS(3007), - [sym_null] = ACTIONS(3007), - [sym_undefined] = ACTIONS(3007), - [anon_sym_readonly] = ACTIONS(3009), - [anon_sym_QMARK] = ACTIONS(3011), - [anon_sym_any] = ACTIONS(2999), - [anon_sym_number] = ACTIONS(2999), - [anon_sym_boolean] = ACTIONS(2999), - [anon_sym_string] = ACTIONS(2999), - [anon_sym_symbol] = ACTIONS(2999), - [anon_sym_object] = ACTIONS(2999), - [anon_sym_abstract] = ACTIONS(3013), - [anon_sym_infer] = ACTIONS(3017), - [anon_sym_keyof] = ACTIONS(3019), - [anon_sym_unique] = ACTIONS(3021), - [anon_sym_unknown] = ACTIONS(2999), - [anon_sym_never] = ACTIONS(2999), - [anon_sym_LBRACE_PIPE] = ACTIONS(3023), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5834), + [sym_string] = STATE(3213), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(3070), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(5201), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(3178), + [sym_template_literal_type] = STATE(3211), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(3211), + [sym_generic_type] = STATE(3211), + [sym_type_query] = STATE(3211), + [sym_index_type_query] = STATE(3211), + [sym_lookup_type] = STATE(3211), + [sym_literal_type] = STATE(3211), + [sym__number] = STATE(3219), + [sym_existential_type] = STATE(3211), + [sym_flow_maybe_type] = STATE(3211), + [sym_parenthesized_type] = STATE(3211), + [sym_predefined_type] = STATE(3211), + [sym_object_type] = STATE(3211), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(3211), + [sym_tuple_type] = STATE(3211), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(3211), + [sym_intersection_type] = STATE(3211), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1571), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(2948), + [anon_sym_DASH] = ACTIONS(2948), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(1031), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1595), + [sym_number] = ACTIONS(1597), + [sym_this] = ACTIONS(1599), + [sym_true] = ACTIONS(1601), + [sym_false] = ACTIONS(1601), + [sym_null] = ACTIONS(1601), + [sym_undefined] = ACTIONS(1601), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(1019), + [anon_sym_any] = ACTIONS(1031), + [anon_sym_number] = ACTIONS(1031), + [anon_sym_boolean] = ACTIONS(1031), + [anon_sym_string] = ACTIONS(1031), + [anon_sym_symbol] = ACTIONS(1031), + [anon_sym_object] = ACTIONS(1031), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(1027), + [anon_sym_unique] = ACTIONS(1029), + [anon_sym_unknown] = ACTIONS(1031), + [anon_sym_never] = ACTIONS(1031), + [anon_sym_LBRACE_PIPE] = ACTIONS(1033), [sym_html_comment] = ACTIONS(5), }, [1046] = { - [sym_import] = STATE(5169), - [sym_nested_identifier] = STATE(5618), - [sym_string] = STATE(3256), - [sym_formal_parameters] = STATE(5839), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(3044), - [sym__type_query_call_expression_in_type_annotation] = STATE(3176), - [sym_type] = STATE(3489), - [sym_constructor_type] = STATE(3261), - [sym_primary_type] = STATE(3262), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(3261), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3255), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5399), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(3261), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(3261), - [sym_identifier] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_typeof] = ACTIONS(1582), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(1036), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1602), - [sym_this] = ACTIONS(1604), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), - [sym_null] = ACTIONS(1606), - [sym_undefined] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1036), - [anon_sym_number] = ACTIONS(1036), - [anon_sym_boolean] = ACTIONS(1036), - [anon_sym_string] = ACTIONS(1036), - [anon_sym_symbol] = ACTIONS(1036), - [anon_sym_object] = ACTIONS(1036), - [anon_sym_abstract] = ACTIONS(1028), - [anon_sym_infer] = ACTIONS(1030), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(1038), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5834), + [sym_string] = STATE(3213), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(3070), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(5201), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(3255), + [sym_template_literal_type] = STATE(3211), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(3211), + [sym_generic_type] = STATE(3211), + [sym_type_query] = STATE(3211), + [sym_index_type_query] = STATE(3211), + [sym_lookup_type] = STATE(3211), + [sym_literal_type] = STATE(3211), + [sym__number] = STATE(3219), + [sym_existential_type] = STATE(3211), + [sym_flow_maybe_type] = STATE(3211), + [sym_parenthesized_type] = STATE(3211), + [sym_predefined_type] = STATE(3211), + [sym_object_type] = STATE(3211), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(3211), + [sym_tuple_type] = STATE(3211), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(3211), + [sym_intersection_type] = STATE(3211), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1571), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(2948), + [anon_sym_DASH] = ACTIONS(2948), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(1031), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1595), + [sym_number] = ACTIONS(1597), + [sym_this] = ACTIONS(1599), + [sym_true] = ACTIONS(1601), + [sym_false] = ACTIONS(1601), + [sym_null] = ACTIONS(1601), + [sym_undefined] = ACTIONS(1601), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(1019), + [anon_sym_any] = ACTIONS(1031), + [anon_sym_number] = ACTIONS(1031), + [anon_sym_boolean] = ACTIONS(1031), + [anon_sym_string] = ACTIONS(1031), + [anon_sym_symbol] = ACTIONS(1031), + [anon_sym_object] = ACTIONS(1031), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(1027), + [anon_sym_unique] = ACTIONS(1029), + [anon_sym_unknown] = ACTIONS(1031), + [anon_sym_never] = ACTIONS(1031), + [anon_sym_LBRACE_PIPE] = ACTIONS(1033), [sym_html_comment] = ACTIONS(5), }, [1047] = { - [sym_import] = STATE(4635), - [sym_nested_identifier] = STATE(5854), - [sym_string] = STATE(1922), - [sym_formal_parameters] = STATE(5981), - [sym_nested_type_identifier] = STATE(1768), - [sym__type_query_member_expression_in_type_annotation] = STATE(1769), - [sym__type_query_call_expression_in_type_annotation] = STATE(1973), - [sym_type] = STATE(1891), - [sym_constructor_type] = STATE(1980), - [sym_primary_type] = STATE(1981), - [sym_template_literal_type] = STATE(1907), - [sym_infer_type] = STATE(1980), - [sym_conditional_type] = STATE(1907), - [sym_generic_type] = STATE(1907), - [sym_type_query] = STATE(1907), - [sym_index_type_query] = STATE(1907), - [sym_lookup_type] = STATE(1907), - [sym_literal_type] = STATE(1907), - [sym__number] = STATE(1987), - [sym_existential_type] = STATE(1907), - [sym_flow_maybe_type] = STATE(1907), - [sym_parenthesized_type] = STATE(1907), - [sym_predefined_type] = STATE(1907), - [sym_object_type] = STATE(1907), - [sym_type_parameters] = STATE(5335), - [sym_array_type] = STATE(1907), - [sym_tuple_type] = STATE(1907), - [sym_readonly_type] = STATE(1980), - [sym_union_type] = STATE(1907), - [sym_intersection_type] = STATE(1907), - [sym_function_type] = STATE(1980), - [sym_identifier] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_LBRACE] = ACTIONS(2981), - [anon_sym_typeof] = ACTIONS(2983), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_PIPE] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(2999), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3001), - [sym_number] = ACTIONS(3003), - [sym_this] = ACTIONS(3233), - [sym_true] = ACTIONS(3007), - [sym_false] = ACTIONS(3007), - [sym_null] = ACTIONS(3007), - [sym_undefined] = ACTIONS(3007), - [anon_sym_readonly] = ACTIONS(3009), - [anon_sym_QMARK] = ACTIONS(3011), - [anon_sym_any] = ACTIONS(2999), - [anon_sym_number] = ACTIONS(2999), - [anon_sym_boolean] = ACTIONS(2999), - [anon_sym_string] = ACTIONS(2999), - [anon_sym_symbol] = ACTIONS(2999), - [anon_sym_object] = ACTIONS(2999), - [anon_sym_abstract] = ACTIONS(3013), - [anon_sym_infer] = ACTIONS(3017), - [anon_sym_keyof] = ACTIONS(3019), - [anon_sym_unique] = ACTIONS(3021), - [anon_sym_unknown] = ACTIONS(2999), - [anon_sym_never] = ACTIONS(2999), - [anon_sym_LBRACE_PIPE] = ACTIONS(3023), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3863), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1048] = { - [sym_import] = STATE(4635), - [sym_nested_identifier] = STATE(5854), - [sym_string] = STATE(1922), - [sym_formal_parameters] = STATE(5981), - [sym_nested_type_identifier] = STATE(1768), - [sym__type_query_member_expression_in_type_annotation] = STATE(1769), - [sym__type_query_call_expression_in_type_annotation] = STATE(1973), - [sym_type] = STATE(1892), - [sym_constructor_type] = STATE(1980), - [sym_primary_type] = STATE(1981), - [sym_template_literal_type] = STATE(1907), - [sym_infer_type] = STATE(1980), - [sym_conditional_type] = STATE(1907), - [sym_generic_type] = STATE(1907), - [sym_type_query] = STATE(1907), - [sym_index_type_query] = STATE(1907), - [sym_lookup_type] = STATE(1907), - [sym_literal_type] = STATE(1907), - [sym__number] = STATE(1987), - [sym_existential_type] = STATE(1907), - [sym_flow_maybe_type] = STATE(1907), - [sym_parenthesized_type] = STATE(1907), - [sym_predefined_type] = STATE(1907), - [sym_object_type] = STATE(1907), - [sym_type_parameters] = STATE(5335), - [sym_array_type] = STATE(1907), - [sym_tuple_type] = STATE(1907), - [sym_readonly_type] = STATE(1980), - [sym_union_type] = STATE(1907), - [sym_intersection_type] = STATE(1907), - [sym_function_type] = STATE(1980), - [sym_identifier] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_LBRACE] = ACTIONS(2981), - [anon_sym_typeof] = ACTIONS(2983), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_PIPE] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(2999), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3001), - [sym_number] = ACTIONS(3003), - [sym_this] = ACTIONS(3233), - [sym_true] = ACTIONS(3007), - [sym_false] = ACTIONS(3007), - [sym_null] = ACTIONS(3007), - [sym_undefined] = ACTIONS(3007), - [anon_sym_readonly] = ACTIONS(3009), - [anon_sym_QMARK] = ACTIONS(3011), - [anon_sym_any] = ACTIONS(2999), - [anon_sym_number] = ACTIONS(2999), - [anon_sym_boolean] = ACTIONS(2999), - [anon_sym_string] = ACTIONS(2999), - [anon_sym_symbol] = ACTIONS(2999), - [anon_sym_object] = ACTIONS(2999), - [anon_sym_abstract] = ACTIONS(3013), - [anon_sym_infer] = ACTIONS(3017), - [anon_sym_keyof] = ACTIONS(3019), - [anon_sym_unique] = ACTIONS(3021), - [anon_sym_unknown] = ACTIONS(2999), - [anon_sym_never] = ACTIONS(2999), - [anon_sym_LBRACE_PIPE] = ACTIONS(3023), + [sym_import] = STATE(5153), + [sym_nested_identifier] = STATE(5834), + [sym_string] = STATE(3213), + [sym_formal_parameters] = STATE(5829), + [sym_nested_type_identifier] = STATE(3070), + [sym__type_query_member_expression_in_type_annotation] = STATE(3029), + [sym__type_query_call_expression_in_type_annotation] = STATE(3159), + [sym_type] = STATE(3516), + [sym_constructor_type] = STATE(3218), + [sym_primary_type] = STATE(3257), + [sym_template_literal_type] = STATE(3211), + [sym_infer_type] = STATE(3218), + [sym_conditional_type] = STATE(3211), + [sym_generic_type] = STATE(3211), + [sym_type_query] = STATE(3211), + [sym_index_type_query] = STATE(3211), + [sym_lookup_type] = STATE(3211), + [sym_literal_type] = STATE(3211), + [sym__number] = STATE(3219), + [sym_existential_type] = STATE(3211), + [sym_flow_maybe_type] = STATE(3211), + [sym_parenthesized_type] = STATE(3211), + [sym_predefined_type] = STATE(3211), + [sym_object_type] = STATE(3211), + [sym_type_parameters] = STATE(5268), + [sym_array_type] = STATE(3211), + [sym_tuple_type] = STATE(3211), + [sym_readonly_type] = STATE(3218), + [sym_union_type] = STATE(3211), + [sym_intersection_type] = STATE(3211), + [sym_function_type] = STATE(3218), + [sym_identifier] = ACTIONS(1571), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_new] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(2948), + [anon_sym_DASH] = ACTIONS(2948), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(1031), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1595), + [sym_number] = ACTIONS(1597), + [sym_this] = ACTIONS(1599), + [sym_true] = ACTIONS(1601), + [sym_false] = ACTIONS(1601), + [sym_null] = ACTIONS(1601), + [sym_undefined] = ACTIONS(1601), + [anon_sym_readonly] = ACTIONS(1603), + [anon_sym_QMARK] = ACTIONS(1019), + [anon_sym_any] = ACTIONS(1031), + [anon_sym_number] = ACTIONS(1031), + [anon_sym_boolean] = ACTIONS(1031), + [anon_sym_string] = ACTIONS(1031), + [anon_sym_symbol] = ACTIONS(1031), + [anon_sym_object] = ACTIONS(1031), + [anon_sym_abstract] = ACTIONS(1023), + [anon_sym_infer] = ACTIONS(1025), + [anon_sym_keyof] = ACTIONS(1027), + [anon_sym_unique] = ACTIONS(1029), + [anon_sym_unknown] = ACTIONS(1031), + [anon_sym_never] = ACTIONS(1031), + [anon_sym_LBRACE_PIPE] = ACTIONS(1033), [sym_html_comment] = ACTIONS(5), }, [1049] = { - [sym_import] = STATE(4635), - [sym_nested_identifier] = STATE(5854), - [sym_string] = STATE(1922), - [sym_formal_parameters] = STATE(5981), - [sym_nested_type_identifier] = STATE(1768), - [sym__type_query_member_expression_in_type_annotation] = STATE(1769), - [sym__type_query_call_expression_in_type_annotation] = STATE(1973), - [sym_type] = STATE(1904), - [sym_constructor_type] = STATE(1980), - [sym_primary_type] = STATE(1981), - [sym_template_literal_type] = STATE(1907), - [sym_infer_type] = STATE(1980), - [sym_conditional_type] = STATE(1907), - [sym_generic_type] = STATE(1907), - [sym_type_query] = STATE(1907), - [sym_index_type_query] = STATE(1907), - [sym_lookup_type] = STATE(1907), - [sym_literal_type] = STATE(1907), - [sym__number] = STATE(1987), - [sym_existential_type] = STATE(1907), - [sym_flow_maybe_type] = STATE(1907), - [sym_parenthesized_type] = STATE(1907), - [sym_predefined_type] = STATE(1907), - [sym_object_type] = STATE(1907), - [sym_type_parameters] = STATE(5335), - [sym_array_type] = STATE(1907), - [sym_tuple_type] = STATE(1907), - [sym_readonly_type] = STATE(1980), - [sym_union_type] = STATE(1907), - [sym_intersection_type] = STATE(1907), - [sym_function_type] = STATE(1980), - [sym_identifier] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_LBRACE] = ACTIONS(2981), - [anon_sym_typeof] = ACTIONS(2983), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_PIPE] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(2999), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3001), - [sym_number] = ACTIONS(3003), - [sym_this] = ACTIONS(3233), - [sym_true] = ACTIONS(3007), - [sym_false] = ACTIONS(3007), - [sym_null] = ACTIONS(3007), - [sym_undefined] = ACTIONS(3007), - [anon_sym_readonly] = ACTIONS(3009), - [anon_sym_QMARK] = ACTIONS(3011), - [anon_sym_any] = ACTIONS(2999), - [anon_sym_number] = ACTIONS(2999), - [anon_sym_boolean] = ACTIONS(2999), - [anon_sym_string] = ACTIONS(2999), - [anon_sym_symbol] = ACTIONS(2999), - [anon_sym_object] = ACTIONS(2999), - [anon_sym_abstract] = ACTIONS(3013), - [anon_sym_infer] = ACTIONS(3017), - [anon_sym_keyof] = ACTIONS(3019), - [anon_sym_unique] = ACTIONS(3021), - [anon_sym_unknown] = ACTIONS(2999), - [anon_sym_never] = ACTIONS(2999), - [anon_sym_LBRACE_PIPE] = ACTIONS(3023), + [sym_import] = STATE(5153), + [sym_nested_identifier] = STATE(5834), + [sym_string] = STATE(3213), + [sym_formal_parameters] = STATE(5829), + [sym_nested_type_identifier] = STATE(3070), + [sym__type_query_member_expression_in_type_annotation] = STATE(3029), + [sym__type_query_call_expression_in_type_annotation] = STATE(3159), + [sym_type] = STATE(3517), + [sym_constructor_type] = STATE(3218), + [sym_primary_type] = STATE(3257), + [sym_template_literal_type] = STATE(3211), + [sym_infer_type] = STATE(3218), + [sym_conditional_type] = STATE(3211), + [sym_generic_type] = STATE(3211), + [sym_type_query] = STATE(3211), + [sym_index_type_query] = STATE(3211), + [sym_lookup_type] = STATE(3211), + [sym_literal_type] = STATE(3211), + [sym__number] = STATE(3219), + [sym_existential_type] = STATE(3211), + [sym_flow_maybe_type] = STATE(3211), + [sym_parenthesized_type] = STATE(3211), + [sym_predefined_type] = STATE(3211), + [sym_object_type] = STATE(3211), + [sym_type_parameters] = STATE(5268), + [sym_array_type] = STATE(3211), + [sym_tuple_type] = STATE(3211), + [sym_readonly_type] = STATE(3218), + [sym_union_type] = STATE(3211), + [sym_intersection_type] = STATE(3211), + [sym_function_type] = STATE(3218), + [sym_identifier] = ACTIONS(1571), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_new] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(2948), + [anon_sym_DASH] = ACTIONS(2948), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(1031), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1595), + [sym_number] = ACTIONS(1597), + [sym_this] = ACTIONS(1599), + [sym_true] = ACTIONS(1601), + [sym_false] = ACTIONS(1601), + [sym_null] = ACTIONS(1601), + [sym_undefined] = ACTIONS(1601), + [anon_sym_readonly] = ACTIONS(1603), + [anon_sym_QMARK] = ACTIONS(1019), + [anon_sym_any] = ACTIONS(1031), + [anon_sym_number] = ACTIONS(1031), + [anon_sym_boolean] = ACTIONS(1031), + [anon_sym_string] = ACTIONS(1031), + [anon_sym_symbol] = ACTIONS(1031), + [anon_sym_object] = ACTIONS(1031), + [anon_sym_abstract] = ACTIONS(1023), + [anon_sym_infer] = ACTIONS(1025), + [anon_sym_keyof] = ACTIONS(1027), + [anon_sym_unique] = ACTIONS(1029), + [anon_sym_unknown] = ACTIONS(1031), + [anon_sym_never] = ACTIONS(1031), + [anon_sym_LBRACE_PIPE] = ACTIONS(1033), [sym_html_comment] = ACTIONS(5), }, [1050] = { - [sym_import] = STATE(4635), - [sym_nested_identifier] = STATE(5854), - [sym_string] = STATE(1922), - [sym_formal_parameters] = STATE(5981), - [sym_nested_type_identifier] = STATE(1768), - [sym__type_query_member_expression_in_type_annotation] = STATE(1769), - [sym__type_query_call_expression_in_type_annotation] = STATE(1973), - [sym_type] = STATE(1905), - [sym_constructor_type] = STATE(1980), - [sym_primary_type] = STATE(1981), - [sym_template_literal_type] = STATE(1907), - [sym_infer_type] = STATE(1980), - [sym_conditional_type] = STATE(1907), - [sym_generic_type] = STATE(1907), - [sym_type_query] = STATE(1907), - [sym_index_type_query] = STATE(1907), - [sym_lookup_type] = STATE(1907), - [sym_literal_type] = STATE(1907), - [sym__number] = STATE(1987), - [sym_existential_type] = STATE(1907), - [sym_flow_maybe_type] = STATE(1907), - [sym_parenthesized_type] = STATE(1907), - [sym_predefined_type] = STATE(1907), - [sym_object_type] = STATE(1907), - [sym_type_parameters] = STATE(5335), - [sym_array_type] = STATE(1907), - [sym_tuple_type] = STATE(1907), - [sym_readonly_type] = STATE(1980), - [sym_union_type] = STATE(1907), - [sym_intersection_type] = STATE(1907), - [sym_function_type] = STATE(1980), - [sym_identifier] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_LBRACE] = ACTIONS(2981), - [anon_sym_typeof] = ACTIONS(2983), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_PIPE] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(2999), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3001), - [sym_number] = ACTIONS(3003), - [sym_this] = ACTIONS(3233), - [sym_true] = ACTIONS(3007), - [sym_false] = ACTIONS(3007), - [sym_null] = ACTIONS(3007), - [sym_undefined] = ACTIONS(3007), - [anon_sym_readonly] = ACTIONS(3009), - [anon_sym_QMARK] = ACTIONS(3011), - [anon_sym_any] = ACTIONS(2999), - [anon_sym_number] = ACTIONS(2999), - [anon_sym_boolean] = ACTIONS(2999), - [anon_sym_string] = ACTIONS(2999), - [anon_sym_symbol] = ACTIONS(2999), - [anon_sym_object] = ACTIONS(2999), - [anon_sym_abstract] = ACTIONS(3013), - [anon_sym_infer] = ACTIONS(3017), - [anon_sym_keyof] = ACTIONS(3019), - [anon_sym_unique] = ACTIONS(3021), - [anon_sym_unknown] = ACTIONS(2999), - [anon_sym_never] = ACTIONS(2999), - [anon_sym_LBRACE_PIPE] = ACTIONS(3023), + [sym_import] = STATE(5153), + [sym_nested_identifier] = STATE(5834), + [sym_string] = STATE(3213), + [sym_formal_parameters] = STATE(5829), + [sym_nested_type_identifier] = STATE(3070), + [sym__type_query_member_expression_in_type_annotation] = STATE(3029), + [sym__type_query_call_expression_in_type_annotation] = STATE(3159), + [sym_type] = STATE(3518), + [sym_constructor_type] = STATE(3218), + [sym_primary_type] = STATE(3257), + [sym_template_literal_type] = STATE(3211), + [sym_infer_type] = STATE(3218), + [sym_conditional_type] = STATE(3211), + [sym_generic_type] = STATE(3211), + [sym_type_query] = STATE(3211), + [sym_index_type_query] = STATE(3211), + [sym_lookup_type] = STATE(3211), + [sym_literal_type] = STATE(3211), + [sym__number] = STATE(3219), + [sym_existential_type] = STATE(3211), + [sym_flow_maybe_type] = STATE(3211), + [sym_parenthesized_type] = STATE(3211), + [sym_predefined_type] = STATE(3211), + [sym_object_type] = STATE(3211), + [sym_type_parameters] = STATE(5268), + [sym_array_type] = STATE(3211), + [sym_tuple_type] = STATE(3211), + [sym_readonly_type] = STATE(3218), + [sym_union_type] = STATE(3211), + [sym_intersection_type] = STATE(3211), + [sym_function_type] = STATE(3218), + [sym_identifier] = ACTIONS(1571), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_new] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(2948), + [anon_sym_DASH] = ACTIONS(2948), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(1031), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1595), + [sym_number] = ACTIONS(1597), + [sym_this] = ACTIONS(1599), + [sym_true] = ACTIONS(1601), + [sym_false] = ACTIONS(1601), + [sym_null] = ACTIONS(1601), + [sym_undefined] = ACTIONS(1601), + [anon_sym_readonly] = ACTIONS(1603), + [anon_sym_QMARK] = ACTIONS(1019), + [anon_sym_any] = ACTIONS(1031), + [anon_sym_number] = ACTIONS(1031), + [anon_sym_boolean] = ACTIONS(1031), + [anon_sym_string] = ACTIONS(1031), + [anon_sym_symbol] = ACTIONS(1031), + [anon_sym_object] = ACTIONS(1031), + [anon_sym_abstract] = ACTIONS(1023), + [anon_sym_infer] = ACTIONS(1025), + [anon_sym_keyof] = ACTIONS(1027), + [anon_sym_unique] = ACTIONS(1029), + [anon_sym_unknown] = ACTIONS(1031), + [anon_sym_never] = ACTIONS(1031), + [anon_sym_LBRACE_PIPE] = ACTIONS(1033), [sym_html_comment] = ACTIONS(5), }, [1051] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4560), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(4589), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1052] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3799), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(4594), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1053] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4561), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(2955), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1054] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3892), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(2963), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1055] = { - [sym_import] = STATE(5169), - [sym_nested_identifier] = STATE(5618), - [sym_string] = STATE(3256), - [sym_formal_parameters] = STATE(5839), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(3044), - [sym__type_query_call_expression_in_type_annotation] = STATE(3176), - [sym_type] = STATE(3200), - [sym_constructor_type] = STATE(3261), - [sym_primary_type] = STATE(3262), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(3261), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3255), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5399), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(3261), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(3261), - [sym_identifier] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_typeof] = ACTIONS(1582), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(1036), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1602), - [sym_this] = ACTIONS(1604), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), - [sym_null] = ACTIONS(1606), - [sym_undefined] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1036), - [anon_sym_number] = ACTIONS(1036), - [anon_sym_boolean] = ACTIONS(1036), - [anon_sym_string] = ACTIONS(1036), - [anon_sym_symbol] = ACTIONS(1036), - [anon_sym_object] = ACTIONS(1036), - [anon_sym_abstract] = ACTIONS(1028), - [anon_sym_infer] = ACTIONS(1030), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(1038), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(4509), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1056] = { - [sym_import] = STATE(5169), - [sym_nested_identifier] = STATE(5618), - [sym_string] = STATE(3256), - [sym_formal_parameters] = STATE(5839), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(3044), - [sym__type_query_call_expression_in_type_annotation] = STATE(3176), - [sym_type] = STATE(3201), - [sym_constructor_type] = STATE(3261), - [sym_primary_type] = STATE(3262), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(3261), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3255), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5399), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(3261), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(3261), - [sym_identifier] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_typeof] = ACTIONS(1582), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(1036), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1602), - [sym_this] = ACTIONS(1604), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), - [sym_null] = ACTIONS(1606), - [sym_undefined] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1036), - [anon_sym_number] = ACTIONS(1036), - [anon_sym_boolean] = ACTIONS(1036), - [anon_sym_string] = ACTIONS(1036), - [anon_sym_symbol] = ACTIONS(1036), - [anon_sym_object] = ACTIONS(1036), - [anon_sym_abstract] = ACTIONS(1028), - [anon_sym_infer] = ACTIONS(1030), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(1038), + [sym_import] = STATE(4673), + [sym_nested_identifier] = STATE(5966), + [sym_string] = STATE(3463), + [sym_formal_parameters] = STATE(5586), + [sym_nested_type_identifier] = STATE(3191), + [sym__type_query_member_expression_in_type_annotation] = STATE(3128), + [sym__type_query_call_expression_in_type_annotation] = STATE(3287), + [sym_type] = STATE(3415), + [sym_constructor_type] = STATE(3321), + [sym_primary_type] = STATE(3325), + [sym_template_literal_type] = STATE(3443), + [sym_infer_type] = STATE(3321), + [sym_conditional_type] = STATE(3443), + [sym_generic_type] = STATE(3443), + [sym_type_query] = STATE(3443), + [sym_index_type_query] = STATE(3443), + [sym_lookup_type] = STATE(3443), + [sym_literal_type] = STATE(3443), + [sym__number] = STATE(3326), + [sym_existential_type] = STATE(3443), + [sym_flow_maybe_type] = STATE(3443), + [sym_parenthesized_type] = STATE(3443), + [sym_predefined_type] = STATE(3443), + [sym_object_type] = STATE(3443), + [sym_type_parameters] = STATE(5361), + [sym_array_type] = STATE(3443), + [sym_tuple_type] = STATE(3443), + [sym_readonly_type] = STATE(3321), + [sym_union_type] = STATE(3443), + [sym_intersection_type] = STATE(3443), + [sym_function_type] = STATE(3321), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3046), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_typeof] = ACTIONS(3050), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(3054), + [anon_sym_LBRACK] = ACTIONS(3056), + [anon_sym_DQUOTE] = ACTIONS(3058), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3064), + [anon_sym_PIPE] = ACTIONS(3066), + [anon_sym_PLUS] = ACTIONS(3068), + [anon_sym_DASH] = ACTIONS(3068), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(3070), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3072), + [sym_number] = ACTIONS(3074), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3078), + [sym_false] = ACTIONS(3078), + [sym_null] = ACTIONS(3078), + [sym_undefined] = ACTIONS(3078), + [anon_sym_readonly] = ACTIONS(3080), + [anon_sym_QMARK] = ACTIONS(3082), + [anon_sym_any] = ACTIONS(3070), + [anon_sym_number] = ACTIONS(3070), + [anon_sym_boolean] = ACTIONS(3070), + [anon_sym_string] = ACTIONS(3070), + [anon_sym_symbol] = ACTIONS(3070), + [anon_sym_object] = ACTIONS(3070), + [anon_sym_abstract] = ACTIONS(3084), + [anon_sym_infer] = ACTIONS(3088), + [anon_sym_keyof] = ACTIONS(3090), + [anon_sym_unique] = ACTIONS(3092), + [anon_sym_unknown] = ACTIONS(3070), + [anon_sym_never] = ACTIONS(3070), + [anon_sym_LBRACE_PIPE] = ACTIONS(3094), [sym_html_comment] = ACTIONS(5), }, [1057] = { - [sym_import] = STATE(5169), - [sym_nested_identifier] = STATE(5618), - [sym_string] = STATE(3256), - [sym_formal_parameters] = STATE(5839), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(3044), - [sym__type_query_call_expression_in_type_annotation] = STATE(3176), - [sym_type] = STATE(3206), - [sym_constructor_type] = STATE(3261), - [sym_primary_type] = STATE(3262), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(3261), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3255), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5399), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(3261), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(3261), - [sym_identifier] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_typeof] = ACTIONS(1582), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(1036), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1602), - [sym_this] = ACTIONS(1604), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), - [sym_null] = ACTIONS(1606), - [sym_undefined] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1036), - [anon_sym_number] = ACTIONS(1036), - [anon_sym_boolean] = ACTIONS(1036), - [anon_sym_string] = ACTIONS(1036), - [anon_sym_symbol] = ACTIONS(1036), - [anon_sym_object] = ACTIONS(1036), - [anon_sym_abstract] = ACTIONS(1028), - [anon_sym_infer] = ACTIONS(1030), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(1038), + [sym_import] = STATE(4673), + [sym_nested_identifier] = STATE(5966), + [sym_string] = STATE(3463), + [sym_formal_parameters] = STATE(5586), + [sym_nested_type_identifier] = STATE(3191), + [sym__type_query_member_expression_in_type_annotation] = STATE(3128), + [sym__type_query_call_expression_in_type_annotation] = STATE(3287), + [sym_type] = STATE(3425), + [sym_constructor_type] = STATE(3321), + [sym_primary_type] = STATE(3325), + [sym_template_literal_type] = STATE(3443), + [sym_infer_type] = STATE(3321), + [sym_conditional_type] = STATE(3443), + [sym_generic_type] = STATE(3443), + [sym_type_query] = STATE(3443), + [sym_index_type_query] = STATE(3443), + [sym_lookup_type] = STATE(3443), + [sym_literal_type] = STATE(3443), + [sym__number] = STATE(3326), + [sym_existential_type] = STATE(3443), + [sym_flow_maybe_type] = STATE(3443), + [sym_parenthesized_type] = STATE(3443), + [sym_predefined_type] = STATE(3443), + [sym_object_type] = STATE(3443), + [sym_type_parameters] = STATE(5361), + [sym_array_type] = STATE(3443), + [sym_tuple_type] = STATE(3443), + [sym_readonly_type] = STATE(3321), + [sym_union_type] = STATE(3443), + [sym_intersection_type] = STATE(3443), + [sym_function_type] = STATE(3321), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3046), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_typeof] = ACTIONS(3050), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(3054), + [anon_sym_LBRACK] = ACTIONS(3056), + [anon_sym_DQUOTE] = ACTIONS(3058), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3064), + [anon_sym_PIPE] = ACTIONS(3066), + [anon_sym_PLUS] = ACTIONS(3068), + [anon_sym_DASH] = ACTIONS(3068), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(3070), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3072), + [sym_number] = ACTIONS(3074), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3078), + [sym_false] = ACTIONS(3078), + [sym_null] = ACTIONS(3078), + [sym_undefined] = ACTIONS(3078), + [anon_sym_readonly] = ACTIONS(3080), + [anon_sym_QMARK] = ACTIONS(3082), + [anon_sym_any] = ACTIONS(3070), + [anon_sym_number] = ACTIONS(3070), + [anon_sym_boolean] = ACTIONS(3070), + [anon_sym_string] = ACTIONS(3070), + [anon_sym_symbol] = ACTIONS(3070), + [anon_sym_object] = ACTIONS(3070), + [anon_sym_abstract] = ACTIONS(3084), + [anon_sym_infer] = ACTIONS(3088), + [anon_sym_keyof] = ACTIONS(3090), + [anon_sym_unique] = ACTIONS(3092), + [anon_sym_unknown] = ACTIONS(3070), + [anon_sym_never] = ACTIONS(3070), + [anon_sym_LBRACE_PIPE] = ACTIONS(3094), [sym_html_comment] = ACTIONS(5), }, [1058] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5618), - [sym_string] = STATE(3256), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(5220), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(3207), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3255), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_typeof] = ACTIONS(1582), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(1036), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1602), - [sym_this] = ACTIONS(1604), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), - [sym_null] = ACTIONS(1606), - [sym_undefined] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1036), - [anon_sym_number] = ACTIONS(1036), - [anon_sym_boolean] = ACTIONS(1036), - [anon_sym_string] = ACTIONS(1036), - [anon_sym_symbol] = ACTIONS(1036), - [anon_sym_object] = ACTIONS(1036), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(1038), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(4542), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1059] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5986), - [sym_string] = STATE(3335), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(3222), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4678), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(3393), - [sym_template_literal_type] = STATE(3330), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(3330), - [sym_generic_type] = STATE(3330), - [sym_type_query] = STATE(3330), - [sym_index_type_query] = STATE(3330), - [sym_lookup_type] = STATE(3330), - [sym_literal_type] = STATE(3330), - [sym__number] = STATE(3353), - [sym_existential_type] = STATE(3330), - [sym_flow_maybe_type] = STATE(3330), - [sym_parenthesized_type] = STATE(3330), - [sym_predefined_type] = STATE(3330), - [sym_object_type] = STATE(3330), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(3330), - [sym_tuple_type] = STATE(3330), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(3330), - [sym_intersection_type] = STATE(3330), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(3221), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3119), - [anon_sym_typeof] = ACTIONS(3121), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_DQUOTE] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3131), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3141), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3143), - [sym_number] = ACTIONS(3145), - [sym_this] = ACTIONS(3223), - [sym_true] = ACTIONS(3149), - [sym_false] = ACTIONS(3149), - [sym_null] = ACTIONS(3149), - [sym_undefined] = ACTIONS(3149), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_any] = ACTIONS(3141), - [anon_sym_number] = ACTIONS(3141), - [anon_sym_boolean] = ACTIONS(3141), - [anon_sym_string] = ACTIONS(3141), - [anon_sym_symbol] = ACTIONS(3141), - [anon_sym_object] = ACTIONS(3141), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(3161), - [anon_sym_unique] = ACTIONS(3163), - [anon_sym_unknown] = ACTIONS(3141), - [anon_sym_never] = ACTIONS(3141), - [anon_sym_LBRACE_PIPE] = ACTIONS(3165), + [sym_import] = STATE(4633), + [sym_nested_identifier] = STATE(5639), + [sym_string] = STATE(1509), + [sym_formal_parameters] = STATE(5732), + [sym_nested_type_identifier] = STATE(1485), + [sym__type_query_member_expression_in_type_annotation] = STATE(1482), + [sym__type_query_call_expression_in_type_annotation] = STATE(1512), + [sym_type] = STATE(1562), + [sym_constructor_type] = STATE(1513), + [sym_primary_type] = STATE(1514), + [sym_template_literal_type] = STATE(1508), + [sym_infer_type] = STATE(1513), + [sym_conditional_type] = STATE(1508), + [sym_generic_type] = STATE(1508), + [sym_type_query] = STATE(1508), + [sym_index_type_query] = STATE(1508), + [sym_lookup_type] = STATE(1508), + [sym_literal_type] = STATE(1508), + [sym__number] = STATE(1515), + [sym_existential_type] = STATE(1508), + [sym_flow_maybe_type] = STATE(1508), + [sym_parenthesized_type] = STATE(1508), + [sym_predefined_type] = STATE(1508), + [sym_object_type] = STATE(1508), + [sym_type_parameters] = STATE(5328), + [sym_array_type] = STATE(1508), + [sym_tuple_type] = STATE(1508), + [sym_readonly_type] = STATE(1513), + [sym_union_type] = STATE(1508), + [sym_intersection_type] = STATE(1508), + [sym_function_type] = STATE(1513), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_typeof] = ACTIONS(3114), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3228), + [anon_sym_LPAREN] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_new] = ACTIONS(3122), + [anon_sym_AMP] = ACTIONS(3124), + [anon_sym_PIPE] = ACTIONS(3126), + [anon_sym_PLUS] = ACTIONS(3128), + [anon_sym_DASH] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(3130), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3132), + [sym_number] = ACTIONS(3134), + [sym_this] = ACTIONS(3218), + [sym_true] = ACTIONS(3138), + [sym_false] = ACTIONS(3138), + [sym_null] = ACTIONS(3138), + [sym_undefined] = ACTIONS(3138), + [anon_sym_readonly] = ACTIONS(3140), + [anon_sym_QMARK] = ACTIONS(3142), + [anon_sym_any] = ACTIONS(3130), + [anon_sym_number] = ACTIONS(3130), + [anon_sym_boolean] = ACTIONS(3130), + [anon_sym_string] = ACTIONS(3130), + [anon_sym_symbol] = ACTIONS(3130), + [anon_sym_object] = ACTIONS(3130), + [anon_sym_abstract] = ACTIONS(3144), + [anon_sym_infer] = ACTIONS(3148), + [anon_sym_keyof] = ACTIONS(3150), + [anon_sym_unique] = ACTIONS(3152), + [anon_sym_unknown] = ACTIONS(3130), + [anon_sym_never] = ACTIONS(3130), + [anon_sym_LBRACE_PIPE] = ACTIONS(3154), [sym_html_comment] = ACTIONS(5), }, [1060] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4512), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(4633), + [sym_nested_identifier] = STATE(5639), + [sym_string] = STATE(1509), + [sym_formal_parameters] = STATE(5732), + [sym_nested_type_identifier] = STATE(1485), + [sym__type_query_member_expression_in_type_annotation] = STATE(1482), + [sym__type_query_call_expression_in_type_annotation] = STATE(1512), + [sym_type] = STATE(1577), + [sym_constructor_type] = STATE(1513), + [sym_primary_type] = STATE(1514), + [sym_template_literal_type] = STATE(1508), + [sym_infer_type] = STATE(1513), + [sym_conditional_type] = STATE(1508), + [sym_generic_type] = STATE(1508), + [sym_type_query] = STATE(1508), + [sym_index_type_query] = STATE(1508), + [sym_lookup_type] = STATE(1508), + [sym_literal_type] = STATE(1508), + [sym__number] = STATE(1515), + [sym_existential_type] = STATE(1508), + [sym_flow_maybe_type] = STATE(1508), + [sym_parenthesized_type] = STATE(1508), + [sym_predefined_type] = STATE(1508), + [sym_object_type] = STATE(1508), + [sym_type_parameters] = STATE(5328), + [sym_array_type] = STATE(1508), + [sym_tuple_type] = STATE(1508), + [sym_readonly_type] = STATE(1513), + [sym_union_type] = STATE(1508), + [sym_intersection_type] = STATE(1508), + [sym_function_type] = STATE(1513), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_typeof] = ACTIONS(3114), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_new] = ACTIONS(3122), + [anon_sym_AMP] = ACTIONS(3124), + [anon_sym_PIPE] = ACTIONS(3126), + [anon_sym_PLUS] = ACTIONS(3128), + [anon_sym_DASH] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(3130), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3132), + [sym_number] = ACTIONS(3134), + [sym_this] = ACTIONS(3218), + [sym_true] = ACTIONS(3138), + [sym_false] = ACTIONS(3138), + [sym_null] = ACTIONS(3138), + [sym_undefined] = ACTIONS(3138), + [anon_sym_readonly] = ACTIONS(3140), + [anon_sym_QMARK] = ACTIONS(3142), + [anon_sym_any] = ACTIONS(3130), + [anon_sym_number] = ACTIONS(3130), + [anon_sym_boolean] = ACTIONS(3130), + [anon_sym_string] = ACTIONS(3130), + [anon_sym_symbol] = ACTIONS(3130), + [anon_sym_object] = ACTIONS(3130), + [anon_sym_abstract] = ACTIONS(3144), + [anon_sym_infer] = ACTIONS(3148), + [anon_sym_keyof] = ACTIONS(3150), + [anon_sym_unique] = ACTIONS(3152), + [anon_sym_unknown] = ACTIONS(3130), + [anon_sym_never] = ACTIONS(3130), + [anon_sym_LBRACE_PIPE] = ACTIONS(3154), [sym_html_comment] = ACTIONS(5), }, [1061] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5618), - [sym_string] = STATE(3256), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(5220), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(3209), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3255), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_typeof] = ACTIONS(1582), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(1036), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1602), - [sym_this] = ACTIONS(1604), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), - [sym_null] = ACTIONS(1606), - [sym_undefined] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1036), - [anon_sym_number] = ACTIONS(1036), - [anon_sym_boolean] = ACTIONS(1036), - [anon_sym_string] = ACTIONS(1036), - [anon_sym_symbol] = ACTIONS(1036), - [anon_sym_object] = ACTIONS(1036), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(1038), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(4505), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1062] = { - [sym_import] = STATE(5169), - [sym_nested_identifier] = STATE(5618), - [sym_string] = STATE(3256), - [sym_formal_parameters] = STATE(5839), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(3044), - [sym__type_query_call_expression_in_type_annotation] = STATE(3176), - [sym_type] = STATE(3192), - [sym_constructor_type] = STATE(3261), - [sym_primary_type] = STATE(3262), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(3261), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3255), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5399), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(3261), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(3261), - [sym_identifier] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_typeof] = ACTIONS(1582), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(1036), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1602), - [sym_this] = ACTIONS(1604), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), - [sym_null] = ACTIONS(1606), - [sym_undefined] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1036), - [anon_sym_number] = ACTIONS(1036), - [anon_sym_boolean] = ACTIONS(1036), - [anon_sym_string] = ACTIONS(1036), - [anon_sym_symbol] = ACTIONS(1036), - [anon_sym_object] = ACTIONS(1036), - [anon_sym_abstract] = ACTIONS(1028), - [anon_sym_infer] = ACTIONS(1030), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(1038), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(4514), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1063] = { - [sym_import] = STATE(5169), - [sym_nested_identifier] = STATE(5618), - [sym_string] = STATE(3256), - [sym_formal_parameters] = STATE(5839), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(3044), - [sym__type_query_call_expression_in_type_annotation] = STATE(3176), - [sym_type] = STATE(3249), - [sym_constructor_type] = STATE(3261), - [sym_primary_type] = STATE(3262), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(3261), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3255), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5399), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(3261), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(3261), - [sym_identifier] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_typeof] = ACTIONS(1582), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(1036), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1602), - [sym_this] = ACTIONS(1604), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), - [sym_null] = ACTIONS(1606), - [sym_undefined] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1036), - [anon_sym_number] = ACTIONS(1036), - [anon_sym_boolean] = ACTIONS(1036), - [anon_sym_string] = ACTIONS(1036), - [anon_sym_symbol] = ACTIONS(1036), - [anon_sym_object] = ACTIONS(1036), - [anon_sym_abstract] = ACTIONS(1028), - [anon_sym_infer] = ACTIONS(1030), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(1038), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(4543), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1064] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(5048), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(4309), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(4507), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3422), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1065] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3911), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(2977), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1066] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(2965), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(5153), + [sym_nested_identifier] = STATE(5834), + [sym_string] = STATE(3213), + [sym_formal_parameters] = STATE(5829), + [sym_nested_type_identifier] = STATE(3070), + [sym__type_query_member_expression_in_type_annotation] = STATE(3029), + [sym__type_query_call_expression_in_type_annotation] = STATE(3159), + [sym_type] = STATE(3188), + [sym_constructor_type] = STATE(3218), + [sym_primary_type] = STATE(3257), + [sym_template_literal_type] = STATE(3211), + [sym_infer_type] = STATE(3218), + [sym_conditional_type] = STATE(3211), + [sym_generic_type] = STATE(3211), + [sym_type_query] = STATE(3211), + [sym_index_type_query] = STATE(3211), + [sym_lookup_type] = STATE(3211), + [sym_literal_type] = STATE(3211), + [sym__number] = STATE(3219), + [sym_existential_type] = STATE(3211), + [sym_flow_maybe_type] = STATE(3211), + [sym_parenthesized_type] = STATE(3211), + [sym_predefined_type] = STATE(3211), + [sym_object_type] = STATE(3211), + [sym_type_parameters] = STATE(5268), + [sym_array_type] = STATE(3211), + [sym_tuple_type] = STATE(3211), + [sym_readonly_type] = STATE(3218), + [sym_union_type] = STATE(3211), + [sym_intersection_type] = STATE(3211), + [sym_function_type] = STATE(3218), + [sym_identifier] = ACTIONS(1571), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_new] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(2948), + [anon_sym_DASH] = ACTIONS(2948), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(1031), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1595), + [sym_number] = ACTIONS(1597), + [sym_this] = ACTIONS(1599), + [sym_true] = ACTIONS(1601), + [sym_false] = ACTIONS(1601), + [sym_null] = ACTIONS(1601), + [sym_undefined] = ACTIONS(1601), + [anon_sym_readonly] = ACTIONS(1603), + [anon_sym_QMARK] = ACTIONS(1019), + [anon_sym_any] = ACTIONS(1031), + [anon_sym_number] = ACTIONS(1031), + [anon_sym_boolean] = ACTIONS(1031), + [anon_sym_string] = ACTIONS(1031), + [anon_sym_symbol] = ACTIONS(1031), + [anon_sym_object] = ACTIONS(1031), + [anon_sym_abstract] = ACTIONS(1023), + [anon_sym_infer] = ACTIONS(1025), + [anon_sym_keyof] = ACTIONS(1027), + [anon_sym_unique] = ACTIONS(1029), + [anon_sym_unknown] = ACTIONS(1031), + [anon_sym_never] = ACTIONS(1031), + [anon_sym_LBRACE_PIPE] = ACTIONS(1033), [sym_html_comment] = ACTIONS(5), }, [1067] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3054), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(5153), + [sym_nested_identifier] = STATE(5834), + [sym_string] = STATE(3213), + [sym_formal_parameters] = STATE(5829), + [sym_nested_type_identifier] = STATE(3070), + [sym__type_query_member_expression_in_type_annotation] = STATE(3029), + [sym__type_query_call_expression_in_type_annotation] = STATE(3159), + [sym_type] = STATE(3192), + [sym_constructor_type] = STATE(3218), + [sym_primary_type] = STATE(3257), + [sym_template_literal_type] = STATE(3211), + [sym_infer_type] = STATE(3218), + [sym_conditional_type] = STATE(3211), + [sym_generic_type] = STATE(3211), + [sym_type_query] = STATE(3211), + [sym_index_type_query] = STATE(3211), + [sym_lookup_type] = STATE(3211), + [sym_literal_type] = STATE(3211), + [sym__number] = STATE(3219), + [sym_existential_type] = STATE(3211), + [sym_flow_maybe_type] = STATE(3211), + [sym_parenthesized_type] = STATE(3211), + [sym_predefined_type] = STATE(3211), + [sym_object_type] = STATE(3211), + [sym_type_parameters] = STATE(5268), + [sym_array_type] = STATE(3211), + [sym_tuple_type] = STATE(3211), + [sym_readonly_type] = STATE(3218), + [sym_union_type] = STATE(3211), + [sym_intersection_type] = STATE(3211), + [sym_function_type] = STATE(3218), + [sym_identifier] = ACTIONS(1571), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_new] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(2948), + [anon_sym_DASH] = ACTIONS(2948), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(1031), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1595), + [sym_number] = ACTIONS(1597), + [sym_this] = ACTIONS(1599), + [sym_true] = ACTIONS(1601), + [sym_false] = ACTIONS(1601), + [sym_null] = ACTIONS(1601), + [sym_undefined] = ACTIONS(1601), + [anon_sym_readonly] = ACTIONS(1603), + [anon_sym_QMARK] = ACTIONS(1019), + [anon_sym_any] = ACTIONS(1031), + [anon_sym_number] = ACTIONS(1031), + [anon_sym_boolean] = ACTIONS(1031), + [anon_sym_string] = ACTIONS(1031), + [anon_sym_symbol] = ACTIONS(1031), + [anon_sym_object] = ACTIONS(1031), + [anon_sym_abstract] = ACTIONS(1023), + [anon_sym_infer] = ACTIONS(1025), + [anon_sym_keyof] = ACTIONS(1027), + [anon_sym_unique] = ACTIONS(1029), + [anon_sym_unknown] = ACTIONS(1031), + [anon_sym_never] = ACTIONS(1031), + [anon_sym_LBRACE_PIPE] = ACTIONS(1033), [sym_html_comment] = ACTIONS(5), }, [1068] = { - [sym_import] = STATE(4635), - [sym_nested_identifier] = STATE(5854), - [sym_string] = STATE(1922), - [sym_formal_parameters] = STATE(5981), - [sym_nested_type_identifier] = STATE(1768), - [sym__type_query_member_expression_in_type_annotation] = STATE(1769), - [sym__type_query_call_expression_in_type_annotation] = STATE(1973), - [sym_type] = STATE(1924), - [sym_constructor_type] = STATE(1980), - [sym_primary_type] = STATE(1981), - [sym_template_literal_type] = STATE(1907), - [sym_infer_type] = STATE(1980), - [sym_conditional_type] = STATE(1907), - [sym_generic_type] = STATE(1907), - [sym_type_query] = STATE(1907), - [sym_index_type_query] = STATE(1907), - [sym_lookup_type] = STATE(1907), - [sym_literal_type] = STATE(1907), - [sym__number] = STATE(1987), - [sym_existential_type] = STATE(1907), - [sym_flow_maybe_type] = STATE(1907), - [sym_parenthesized_type] = STATE(1907), - [sym_predefined_type] = STATE(1907), - [sym_object_type] = STATE(1907), - [sym_type_parameters] = STATE(5335), - [sym_array_type] = STATE(1907), - [sym_tuple_type] = STATE(1907), - [sym_readonly_type] = STATE(1980), - [sym_union_type] = STATE(1907), - [sym_intersection_type] = STATE(1907), - [sym_function_type] = STATE(1980), - [sym_identifier] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_LBRACE] = ACTIONS(2981), - [anon_sym_typeof] = ACTIONS(2983), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_PIPE] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(2999), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3001), - [sym_number] = ACTIONS(3003), - [sym_this] = ACTIONS(3233), - [sym_true] = ACTIONS(3007), - [sym_false] = ACTIONS(3007), - [sym_null] = ACTIONS(3007), - [sym_undefined] = ACTIONS(3007), - [anon_sym_readonly] = ACTIONS(3009), - [anon_sym_QMARK] = ACTIONS(3011), - [anon_sym_any] = ACTIONS(2999), - [anon_sym_number] = ACTIONS(2999), - [anon_sym_boolean] = ACTIONS(2999), - [anon_sym_string] = ACTIONS(2999), - [anon_sym_symbol] = ACTIONS(2999), - [anon_sym_object] = ACTIONS(2999), - [anon_sym_abstract] = ACTIONS(3013), - [anon_sym_infer] = ACTIONS(3017), - [anon_sym_keyof] = ACTIONS(3019), - [anon_sym_unique] = ACTIONS(3021), - [anon_sym_unknown] = ACTIONS(2999), - [anon_sym_never] = ACTIONS(2999), - [anon_sym_LBRACE_PIPE] = ACTIONS(3023), + [sym_import] = STATE(4924), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5904), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3376), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(2993), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5433), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(2966), + [anon_sym_typeof] = ACTIONS(2968), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(2970), + [anon_sym_SQUOTE] = ACTIONS(2972), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_AMP] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(2982), + [anon_sym_QMARK] = ACTIONS(2984), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(2986), + [anon_sym_infer] = ACTIONS(2990), + [anon_sym_keyof] = ACTIONS(2992), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(2994), [sym_html_comment] = ACTIONS(5), }, [1069] = { - [sym_import] = STATE(4635), - [sym_nested_identifier] = STATE(5854), - [sym_string] = STATE(1922), - [sym_formal_parameters] = STATE(5981), - [sym_nested_type_identifier] = STATE(1768), - [sym__type_query_member_expression_in_type_annotation] = STATE(1769), - [sym__type_query_call_expression_in_type_annotation] = STATE(1973), - [sym_type] = STATE(1925), - [sym_constructor_type] = STATE(1980), - [sym_primary_type] = STATE(1981), - [sym_template_literal_type] = STATE(1907), - [sym_infer_type] = STATE(1980), - [sym_conditional_type] = STATE(1907), - [sym_generic_type] = STATE(1907), - [sym_type_query] = STATE(1907), - [sym_index_type_query] = STATE(1907), - [sym_lookup_type] = STATE(1907), - [sym_literal_type] = STATE(1907), - [sym__number] = STATE(1987), - [sym_existential_type] = STATE(1907), - [sym_flow_maybe_type] = STATE(1907), - [sym_parenthesized_type] = STATE(1907), - [sym_predefined_type] = STATE(1907), - [sym_object_type] = STATE(1907), - [sym_type_parameters] = STATE(5335), - [sym_array_type] = STATE(1907), - [sym_tuple_type] = STATE(1907), - [sym_readonly_type] = STATE(1980), - [sym_union_type] = STATE(1907), - [sym_intersection_type] = STATE(1907), - [sym_function_type] = STATE(1980), - [sym_identifier] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_LBRACE] = ACTIONS(2981), - [anon_sym_typeof] = ACTIONS(2983), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_PIPE] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(2999), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3001), - [sym_number] = ACTIONS(3003), - [sym_this] = ACTIONS(3233), - [sym_true] = ACTIONS(3007), - [sym_false] = ACTIONS(3007), - [sym_null] = ACTIONS(3007), - [sym_undefined] = ACTIONS(3007), - [anon_sym_readonly] = ACTIONS(3009), - [anon_sym_QMARK] = ACTIONS(3011), - [anon_sym_any] = ACTIONS(2999), - [anon_sym_number] = ACTIONS(2999), - [anon_sym_boolean] = ACTIONS(2999), - [anon_sym_string] = ACTIONS(2999), - [anon_sym_symbol] = ACTIONS(2999), - [anon_sym_object] = ACTIONS(2999), - [anon_sym_abstract] = ACTIONS(3013), - [anon_sym_infer] = ACTIONS(3017), - [anon_sym_keyof] = ACTIONS(3019), - [anon_sym_unique] = ACTIONS(3021), - [anon_sym_unknown] = ACTIONS(2999), - [anon_sym_never] = ACTIONS(2999), - [anon_sym_LBRACE_PIPE] = ACTIONS(3023), + [sym_import] = STATE(4924), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5904), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3376), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3873), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5433), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(2966), + [anon_sym_typeof] = ACTIONS(2968), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(2970), + [anon_sym_SQUOTE] = ACTIONS(2972), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_AMP] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(2982), + [anon_sym_QMARK] = ACTIONS(2984), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(2986), + [anon_sym_infer] = ACTIONS(2990), + [anon_sym_keyof] = ACTIONS(2992), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(2994), [sym_html_comment] = ACTIONS(5), }, [1070] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4527), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(4924), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5904), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3376), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3874), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5433), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(2966), + [anon_sym_typeof] = ACTIONS(2968), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(2970), + [anon_sym_SQUOTE] = ACTIONS(2972), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_AMP] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(2982), + [anon_sym_QMARK] = ACTIONS(2984), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(2986), + [anon_sym_infer] = ACTIONS(2990), + [anon_sym_keyof] = ACTIONS(2992), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(2994), [sym_html_comment] = ACTIONS(5), }, [1071] = { - [sym_import] = STATE(5169), - [sym_nested_identifier] = STATE(5618), - [sym_string] = STATE(3256), - [sym_formal_parameters] = STATE(5839), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(3044), - [sym__type_query_call_expression_in_type_annotation] = STATE(3176), - [sym_type] = STATE(3252), - [sym_constructor_type] = STATE(3261), - [sym_primary_type] = STATE(3262), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(3261), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3255), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5399), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(3261), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(3261), - [sym_identifier] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_typeof] = ACTIONS(1582), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(1036), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1602), - [sym_this] = ACTIONS(1604), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), - [sym_null] = ACTIONS(1606), - [sym_undefined] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1036), - [anon_sym_number] = ACTIONS(1036), - [anon_sym_boolean] = ACTIONS(1036), - [anon_sym_string] = ACTIONS(1036), - [anon_sym_symbol] = ACTIONS(1036), - [anon_sym_object] = ACTIONS(1036), - [anon_sym_abstract] = ACTIONS(1028), - [anon_sym_infer] = ACTIONS(1030), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(1038), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(4817), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2917), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(2966), + [anon_sym_typeof] = ACTIONS(2968), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(2970), + [anon_sym_SQUOTE] = ACTIONS(2972), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(2984), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(2992), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(2994), [sym_html_comment] = ACTIONS(5), }, [1072] = { - [sym_import] = STATE(5169), - [sym_nested_identifier] = STATE(5618), - [sym_string] = STATE(3256), - [sym_formal_parameters] = STATE(5839), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(3044), - [sym__type_query_call_expression_in_type_annotation] = STATE(3176), - [sym_type] = STATE(3185), - [sym_constructor_type] = STATE(3261), - [sym_primary_type] = STATE(3262), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(3261), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3255), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5399), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(3261), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(3261), - [sym_identifier] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_typeof] = ACTIONS(1582), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(1036), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1602), - [sym_this] = ACTIONS(1604), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), - [sym_null] = ACTIONS(1606), - [sym_undefined] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1036), - [anon_sym_number] = ACTIONS(1036), - [anon_sym_boolean] = ACTIONS(1036), - [anon_sym_string] = ACTIONS(1036), - [anon_sym_symbol] = ACTIONS(1036), - [anon_sym_object] = ACTIONS(1036), - [anon_sym_abstract] = ACTIONS(1028), - [anon_sym_infer] = ACTIONS(1030), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(1038), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(4817), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2919), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(2966), + [anon_sym_typeof] = ACTIONS(2968), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(2970), + [anon_sym_SQUOTE] = ACTIONS(2972), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(2984), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(2992), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(2994), [sym_html_comment] = ACTIONS(5), }, [1073] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3858), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(4648), + [sym_nested_identifier] = STATE(5899), + [sym_string] = STATE(1864), + [sym_formal_parameters] = STATE(5723), + [sym_nested_type_identifier] = STATE(1843), + [sym__type_query_member_expression_in_type_annotation] = STATE(1844), + [sym__type_query_call_expression_in_type_annotation] = STATE(1866), + [sym_type] = STATE(1941), + [sym_constructor_type] = STATE(1867), + [sym_primary_type] = STATE(1868), + [sym_template_literal_type] = STATE(1863), + [sym_infer_type] = STATE(1867), + [sym_conditional_type] = STATE(1863), + [sym_generic_type] = STATE(1863), + [sym_type_query] = STATE(1863), + [sym_index_type_query] = STATE(1863), + [sym_lookup_type] = STATE(1863), + [sym_literal_type] = STATE(1863), + [sym__number] = STATE(1869), + [sym_existential_type] = STATE(1863), + [sym_flow_maybe_type] = STATE(1863), + [sym_parenthesized_type] = STATE(1863), + [sym_predefined_type] = STATE(1863), + [sym_object_type] = STATE(1863), + [sym_type_parameters] = STATE(5380), + [sym_array_type] = STATE(1863), + [sym_tuple_type] = STATE(1863), + [sym_readonly_type] = STATE(1867), + [sym_union_type] = STATE(1863), + [sym_intersection_type] = STATE(1863), + [sym_function_type] = STATE(1867), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(2998), + [anon_sym_LBRACE] = ACTIONS(3000), + [anon_sym_typeof] = ACTIONS(3002), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3004), + [anon_sym_LPAREN] = ACTIONS(3006), + [anon_sym_LBRACK] = ACTIONS(3008), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_PIPE] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3016), + [anon_sym_DASH] = ACTIONS(3016), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(3018), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3020), + [sym_number] = ACTIONS(3022), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(3026), + [sym_false] = ACTIONS(3026), + [sym_null] = ACTIONS(3026), + [sym_undefined] = ACTIONS(3026), + [anon_sym_readonly] = ACTIONS(3028), + [anon_sym_QMARK] = ACTIONS(3030), + [anon_sym_any] = ACTIONS(3018), + [anon_sym_number] = ACTIONS(3018), + [anon_sym_boolean] = ACTIONS(3018), + [anon_sym_string] = ACTIONS(3018), + [anon_sym_symbol] = ACTIONS(3018), + [anon_sym_object] = ACTIONS(3018), + [anon_sym_abstract] = ACTIONS(3032), + [anon_sym_infer] = ACTIONS(3036), + [anon_sym_keyof] = ACTIONS(3038), + [anon_sym_unique] = ACTIONS(3040), + [anon_sym_unknown] = ACTIONS(3018), + [anon_sym_never] = ACTIONS(3018), + [anon_sym_LBRACE_PIPE] = ACTIONS(3042), [sym_html_comment] = ACTIONS(5), }, [1074] = { - [sym_import] = STATE(5169), - [sym_nested_identifier] = STATE(5618), - [sym_string] = STATE(3256), - [sym_formal_parameters] = STATE(5839), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(3044), - [sym__type_query_call_expression_in_type_annotation] = STATE(3176), - [sym_type] = STATE(3224), - [sym_constructor_type] = STATE(3261), - [sym_primary_type] = STATE(3262), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(3261), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3255), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5399), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(3261), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(3261), - [sym_identifier] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_typeof] = ACTIONS(1582), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(1036), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1602), - [sym_this] = ACTIONS(1604), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), - [sym_null] = ACTIONS(1606), - [sym_undefined] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1036), - [anon_sym_number] = ACTIONS(1036), - [anon_sym_boolean] = ACTIONS(1036), - [anon_sym_string] = ACTIONS(1036), - [anon_sym_symbol] = ACTIONS(1036), - [anon_sym_object] = ACTIONS(1036), - [anon_sym_abstract] = ACTIONS(1028), - [anon_sym_infer] = ACTIONS(1030), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(1038), + [sym_import] = STATE(4924), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5904), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3376), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(2908), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5433), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(2966), + [anon_sym_typeof] = ACTIONS(2968), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(2970), + [anon_sym_SQUOTE] = ACTIONS(2972), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_AMP] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(2982), + [anon_sym_QMARK] = ACTIONS(2984), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(2986), + [anon_sym_infer] = ACTIONS(2990), + [anon_sym_keyof] = ACTIONS(2992), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(2994), [sym_html_comment] = ACTIONS(5), }, [1075] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4482), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(4924), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5904), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3376), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3922), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5433), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(2966), + [anon_sym_typeof] = ACTIONS(2968), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(2970), + [anon_sym_SQUOTE] = ACTIONS(2972), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_AMP] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(2982), + [anon_sym_QMARK] = ACTIONS(2984), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(2986), + [anon_sym_infer] = ACTIONS(2990), + [anon_sym_keyof] = ACTIONS(2992), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(2994), [sym_html_comment] = ACTIONS(5), }, [1076] = { - [sym_import] = STATE(5169), - [sym_nested_identifier] = STATE(5618), - [sym_string] = STATE(3256), - [sym_formal_parameters] = STATE(5839), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(3044), - [sym__type_query_call_expression_in_type_annotation] = STATE(3176), - [sym_type] = STATE(3226), - [sym_constructor_type] = STATE(3261), - [sym_primary_type] = STATE(3262), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(3261), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3255), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5399), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(3261), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(3261), - [sym_identifier] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_typeof] = ACTIONS(1582), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(1036), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1602), - [sym_this] = ACTIONS(1604), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), - [sym_null] = ACTIONS(1606), - [sym_undefined] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1036), - [anon_sym_number] = ACTIONS(1036), - [anon_sym_boolean] = ACTIONS(1036), - [anon_sym_string] = ACTIONS(1036), - [anon_sym_symbol] = ACTIONS(1036), - [anon_sym_object] = ACTIONS(1036), - [anon_sym_abstract] = ACTIONS(1028), - [anon_sym_infer] = ACTIONS(1030), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(1038), + [sym_import] = STATE(4648), + [sym_nested_identifier] = STATE(5899), + [sym_string] = STATE(1864), + [sym_formal_parameters] = STATE(5723), + [sym_nested_type_identifier] = STATE(1843), + [sym__type_query_member_expression_in_type_annotation] = STATE(1844), + [sym__type_query_call_expression_in_type_annotation] = STATE(1866), + [sym_type] = STATE(1942), + [sym_constructor_type] = STATE(1867), + [sym_primary_type] = STATE(1868), + [sym_template_literal_type] = STATE(1863), + [sym_infer_type] = STATE(1867), + [sym_conditional_type] = STATE(1863), + [sym_generic_type] = STATE(1863), + [sym_type_query] = STATE(1863), + [sym_index_type_query] = STATE(1863), + [sym_lookup_type] = STATE(1863), + [sym_literal_type] = STATE(1863), + [sym__number] = STATE(1869), + [sym_existential_type] = STATE(1863), + [sym_flow_maybe_type] = STATE(1863), + [sym_parenthesized_type] = STATE(1863), + [sym_predefined_type] = STATE(1863), + [sym_object_type] = STATE(1863), + [sym_type_parameters] = STATE(5380), + [sym_array_type] = STATE(1863), + [sym_tuple_type] = STATE(1863), + [sym_readonly_type] = STATE(1867), + [sym_union_type] = STATE(1863), + [sym_intersection_type] = STATE(1863), + [sym_function_type] = STATE(1867), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(2998), + [anon_sym_LBRACE] = ACTIONS(3000), + [anon_sym_typeof] = ACTIONS(3002), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3004), + [anon_sym_LPAREN] = ACTIONS(3006), + [anon_sym_LBRACK] = ACTIONS(3008), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_PIPE] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3016), + [anon_sym_DASH] = ACTIONS(3016), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(3018), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3020), + [sym_number] = ACTIONS(3022), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(3026), + [sym_false] = ACTIONS(3026), + [sym_null] = ACTIONS(3026), + [sym_undefined] = ACTIONS(3026), + [anon_sym_readonly] = ACTIONS(3028), + [anon_sym_QMARK] = ACTIONS(3030), + [anon_sym_any] = ACTIONS(3018), + [anon_sym_number] = ACTIONS(3018), + [anon_sym_boolean] = ACTIONS(3018), + [anon_sym_string] = ACTIONS(3018), + [anon_sym_symbol] = ACTIONS(3018), + [anon_sym_object] = ACTIONS(3018), + [anon_sym_abstract] = ACTIONS(3032), + [anon_sym_infer] = ACTIONS(3036), + [anon_sym_keyof] = ACTIONS(3038), + [anon_sym_unique] = ACTIONS(3040), + [anon_sym_unknown] = ACTIONS(3018), + [anon_sym_never] = ACTIONS(3018), + [anon_sym_LBRACE_PIPE] = ACTIONS(3042), [sym_html_comment] = ACTIONS(5), }, [1077] = { - [sym_import] = STATE(5169), - [sym_nested_identifier] = STATE(5618), - [sym_string] = STATE(3256), - [sym_formal_parameters] = STATE(5839), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(3044), - [sym__type_query_call_expression_in_type_annotation] = STATE(3176), - [sym_type] = STATE(3257), - [sym_constructor_type] = STATE(3261), - [sym_primary_type] = STATE(3262), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(3261), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3255), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5399), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(3261), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(3261), - [sym_identifier] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_typeof] = ACTIONS(1582), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(1036), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1602), - [sym_this] = ACTIONS(1604), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), - [sym_null] = ACTIONS(1606), - [sym_undefined] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1036), - [anon_sym_number] = ACTIONS(1036), - [anon_sym_boolean] = ACTIONS(1036), - [anon_sym_string] = ACTIONS(1036), - [anon_sym_symbol] = ACTIONS(1036), - [anon_sym_object] = ACTIONS(1036), - [anon_sym_abstract] = ACTIONS(1028), - [anon_sym_infer] = ACTIONS(1030), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(1038), + [sym_import] = STATE(4648), + [sym_nested_identifier] = STATE(5899), + [sym_string] = STATE(1864), + [sym_formal_parameters] = STATE(5723), + [sym_nested_type_identifier] = STATE(1843), + [sym__type_query_member_expression_in_type_annotation] = STATE(1844), + [sym__type_query_call_expression_in_type_annotation] = STATE(1866), + [sym_type] = STATE(1982), + [sym_constructor_type] = STATE(1867), + [sym_primary_type] = STATE(1868), + [sym_template_literal_type] = STATE(1863), + [sym_infer_type] = STATE(1867), + [sym_conditional_type] = STATE(1863), + [sym_generic_type] = STATE(1863), + [sym_type_query] = STATE(1863), + [sym_index_type_query] = STATE(1863), + [sym_lookup_type] = STATE(1863), + [sym_literal_type] = STATE(1863), + [sym__number] = STATE(1869), + [sym_existential_type] = STATE(1863), + [sym_flow_maybe_type] = STATE(1863), + [sym_parenthesized_type] = STATE(1863), + [sym_predefined_type] = STATE(1863), + [sym_object_type] = STATE(1863), + [sym_type_parameters] = STATE(5380), + [sym_array_type] = STATE(1863), + [sym_tuple_type] = STATE(1863), + [sym_readonly_type] = STATE(1867), + [sym_union_type] = STATE(1863), + [sym_intersection_type] = STATE(1863), + [sym_function_type] = STATE(1867), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(2998), + [anon_sym_LBRACE] = ACTIONS(3000), + [anon_sym_typeof] = ACTIONS(3002), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3004), + [anon_sym_LPAREN] = ACTIONS(3006), + [anon_sym_LBRACK] = ACTIONS(3008), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_PIPE] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3016), + [anon_sym_DASH] = ACTIONS(3016), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(3018), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3020), + [sym_number] = ACTIONS(3022), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(3026), + [sym_false] = ACTIONS(3026), + [sym_null] = ACTIONS(3026), + [sym_undefined] = ACTIONS(3026), + [anon_sym_readonly] = ACTIONS(3028), + [anon_sym_QMARK] = ACTIONS(3030), + [anon_sym_any] = ACTIONS(3018), + [anon_sym_number] = ACTIONS(3018), + [anon_sym_boolean] = ACTIONS(3018), + [anon_sym_string] = ACTIONS(3018), + [anon_sym_symbol] = ACTIONS(3018), + [anon_sym_object] = ACTIONS(3018), + [anon_sym_abstract] = ACTIONS(3032), + [anon_sym_infer] = ACTIONS(3036), + [anon_sym_keyof] = ACTIONS(3038), + [anon_sym_unique] = ACTIONS(3040), + [anon_sym_unknown] = ACTIONS(3018), + [anon_sym_never] = ACTIONS(3018), + [anon_sym_LBRACE_PIPE] = ACTIONS(3042), [sym_html_comment] = ACTIONS(5), }, [1078] = { - [sym_import] = STATE(5169), - [sym_nested_identifier] = STATE(5618), - [sym_string] = STATE(3256), - [sym_formal_parameters] = STATE(5839), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(3044), - [sym__type_query_call_expression_in_type_annotation] = STATE(3176), - [sym_type] = STATE(3258), - [sym_constructor_type] = STATE(3261), - [sym_primary_type] = STATE(3262), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(3261), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3255), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5399), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(3261), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(3261), - [sym_identifier] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_typeof] = ACTIONS(1582), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(1036), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1602), - [sym_this] = ACTIONS(1604), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), - [sym_null] = ACTIONS(1606), - [sym_undefined] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1036), - [anon_sym_number] = ACTIONS(1036), - [anon_sym_boolean] = ACTIONS(1036), - [anon_sym_string] = ACTIONS(1036), - [anon_sym_symbol] = ACTIONS(1036), - [anon_sym_object] = ACTIONS(1036), - [anon_sym_abstract] = ACTIONS(1028), - [anon_sym_infer] = ACTIONS(1030), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(1038), + [sym_import] = STATE(4924), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5904), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3376), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3799), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5433), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(2966), + [anon_sym_typeof] = ACTIONS(2968), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(2970), + [anon_sym_SQUOTE] = ACTIONS(2972), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_AMP] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(2982), + [anon_sym_QMARK] = ACTIONS(2984), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(2986), + [anon_sym_infer] = ACTIONS(2990), + [anon_sym_keyof] = ACTIONS(2992), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(2994), [sym_html_comment] = ACTIONS(5), }, [1079] = { - [sym_import] = STATE(4633), - [sym_nested_identifier] = STATE(5769), - [sym_string] = STATE(1504), - [sym_formal_parameters] = STATE(5757), - [sym_nested_type_identifier] = STATE(1480), - [sym__type_query_member_expression_in_type_annotation] = STATE(1481), - [sym__type_query_call_expression_in_type_annotation] = STATE(1491), - [sym_type] = STATE(1501), - [sym_constructor_type] = STATE(1492), - [sym_primary_type] = STATE(1493), - [sym_template_literal_type] = STATE(1490), - [sym_infer_type] = STATE(1492), - [sym_conditional_type] = STATE(1490), - [sym_generic_type] = STATE(1490), - [sym_type_query] = STATE(1490), - [sym_index_type_query] = STATE(1490), - [sym_lookup_type] = STATE(1490), - [sym_literal_type] = STATE(1490), - [sym__number] = STATE(1494), - [sym_existential_type] = STATE(1490), - [sym_flow_maybe_type] = STATE(1490), - [sym_parenthesized_type] = STATE(1490), - [sym_predefined_type] = STATE(1490), - [sym_object_type] = STATE(1490), - [sym_type_parameters] = STATE(5510), - [sym_array_type] = STATE(1490), - [sym_tuple_type] = STATE(1490), - [sym_readonly_type] = STATE(1492), - [sym_union_type] = STATE(1490), - [sym_intersection_type] = STATE(1490), - [sym_function_type] = STATE(1492), - [sym_identifier] = ACTIONS(3225), - [anon_sym_STAR] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_typeof] = ACTIONS(3031), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_PIPE] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3047), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3049), - [sym_number] = ACTIONS(3051), - [sym_this] = ACTIONS(3229), - [sym_true] = ACTIONS(3055), - [sym_false] = ACTIONS(3055), - [sym_null] = ACTIONS(3055), - [sym_undefined] = ACTIONS(3055), - [anon_sym_readonly] = ACTIONS(3057), - [anon_sym_QMARK] = ACTIONS(3059), - [anon_sym_any] = ACTIONS(3047), - [anon_sym_number] = ACTIONS(3047), - [anon_sym_boolean] = ACTIONS(3047), - [anon_sym_string] = ACTIONS(3047), - [anon_sym_symbol] = ACTIONS(3047), - [anon_sym_object] = ACTIONS(3047), - [anon_sym_abstract] = ACTIONS(3061), - [anon_sym_infer] = ACTIONS(3065), - [anon_sym_keyof] = ACTIONS(3067), - [anon_sym_unique] = ACTIONS(3069), - [anon_sym_unknown] = ACTIONS(3047), - [anon_sym_never] = ACTIONS(3047), - [anon_sym_LBRACE_PIPE] = ACTIONS(3071), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3809), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1080] = { - [sym_import] = STATE(4633), - [sym_nested_identifier] = STATE(5769), - [sym_string] = STATE(1504), - [sym_formal_parameters] = STATE(5757), - [sym_nested_type_identifier] = STATE(1480), - [sym__type_query_member_expression_in_type_annotation] = STATE(1481), - [sym__type_query_call_expression_in_type_annotation] = STATE(1491), - [sym_type] = STATE(1502), - [sym_constructor_type] = STATE(1492), - [sym_primary_type] = STATE(1493), - [sym_template_literal_type] = STATE(1490), - [sym_infer_type] = STATE(1492), - [sym_conditional_type] = STATE(1490), - [sym_generic_type] = STATE(1490), - [sym_type_query] = STATE(1490), - [sym_index_type_query] = STATE(1490), - [sym_lookup_type] = STATE(1490), - [sym_literal_type] = STATE(1490), - [sym__number] = STATE(1494), - [sym_existential_type] = STATE(1490), - [sym_flow_maybe_type] = STATE(1490), - [sym_parenthesized_type] = STATE(1490), - [sym_predefined_type] = STATE(1490), - [sym_object_type] = STATE(1490), - [sym_type_parameters] = STATE(5510), - [sym_array_type] = STATE(1490), - [sym_tuple_type] = STATE(1490), - [sym_readonly_type] = STATE(1492), - [sym_union_type] = STATE(1490), - [sym_intersection_type] = STATE(1490), - [sym_function_type] = STATE(1492), - [sym_identifier] = ACTIONS(3225), - [anon_sym_STAR] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_typeof] = ACTIONS(3031), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_PIPE] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3047), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3049), - [sym_number] = ACTIONS(3051), - [sym_this] = ACTIONS(3229), - [sym_true] = ACTIONS(3055), - [sym_false] = ACTIONS(3055), - [sym_null] = ACTIONS(3055), - [sym_undefined] = ACTIONS(3055), - [anon_sym_readonly] = ACTIONS(3057), - [anon_sym_QMARK] = ACTIONS(3059), - [anon_sym_any] = ACTIONS(3047), - [anon_sym_number] = ACTIONS(3047), - [anon_sym_boolean] = ACTIONS(3047), - [anon_sym_string] = ACTIONS(3047), - [anon_sym_symbol] = ACTIONS(3047), - [anon_sym_object] = ACTIONS(3047), - [anon_sym_abstract] = ACTIONS(3061), - [anon_sym_infer] = ACTIONS(3065), - [anon_sym_keyof] = ACTIONS(3067), - [anon_sym_unique] = ACTIONS(3069), - [anon_sym_unknown] = ACTIONS(3047), - [anon_sym_never] = ACTIONS(3047), - [anon_sym_LBRACE_PIPE] = ACTIONS(3071), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3112), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1081] = { - [sym_import] = STATE(4633), - [sym_nested_identifier] = STATE(5769), - [sym_string] = STATE(1504), - [sym_formal_parameters] = STATE(5757), - [sym_nested_type_identifier] = STATE(1480), - [sym__type_query_member_expression_in_type_annotation] = STATE(1481), - [sym__type_query_call_expression_in_type_annotation] = STATE(1491), - [sym_type] = STATE(1508), - [sym_constructor_type] = STATE(1492), - [sym_primary_type] = STATE(1493), - [sym_template_literal_type] = STATE(1490), - [sym_infer_type] = STATE(1492), - [sym_conditional_type] = STATE(1490), - [sym_generic_type] = STATE(1490), - [sym_type_query] = STATE(1490), - [sym_index_type_query] = STATE(1490), - [sym_lookup_type] = STATE(1490), - [sym_literal_type] = STATE(1490), - [sym__number] = STATE(1494), - [sym_existential_type] = STATE(1490), - [sym_flow_maybe_type] = STATE(1490), - [sym_parenthesized_type] = STATE(1490), - [sym_predefined_type] = STATE(1490), - [sym_object_type] = STATE(1490), - [sym_type_parameters] = STATE(5510), - [sym_array_type] = STATE(1490), - [sym_tuple_type] = STATE(1490), - [sym_readonly_type] = STATE(1492), - [sym_union_type] = STATE(1490), - [sym_intersection_type] = STATE(1490), - [sym_function_type] = STATE(1492), - [sym_identifier] = ACTIONS(3225), - [anon_sym_STAR] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_typeof] = ACTIONS(3031), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_PIPE] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3047), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3049), - [sym_number] = ACTIONS(3051), - [sym_this] = ACTIONS(3229), - [sym_true] = ACTIONS(3055), - [sym_false] = ACTIONS(3055), - [sym_null] = ACTIONS(3055), - [sym_undefined] = ACTIONS(3055), - [anon_sym_readonly] = ACTIONS(3057), - [anon_sym_QMARK] = ACTIONS(3059), - [anon_sym_any] = ACTIONS(3047), - [anon_sym_number] = ACTIONS(3047), - [anon_sym_boolean] = ACTIONS(3047), - [anon_sym_string] = ACTIONS(3047), - [anon_sym_symbol] = ACTIONS(3047), - [anon_sym_object] = ACTIONS(3047), - [anon_sym_abstract] = ACTIONS(3061), - [anon_sym_infer] = ACTIONS(3065), - [anon_sym_keyof] = ACTIONS(3067), - [anon_sym_unique] = ACTIONS(3069), - [anon_sym_unknown] = ACTIONS(3047), - [anon_sym_never] = ACTIONS(3047), - [anon_sym_LBRACE_PIPE] = ACTIONS(3071), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(4490), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1082] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5769), - [sym_string] = STATE(1504), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(1480), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4646), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(1509), - [sym_template_literal_type] = STATE(1490), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(1490), - [sym_generic_type] = STATE(1490), - [sym_type_query] = STATE(1490), - [sym_index_type_query] = STATE(1490), - [sym_lookup_type] = STATE(1490), - [sym_literal_type] = STATE(1490), - [sym__number] = STATE(1494), - [sym_existential_type] = STATE(1490), - [sym_flow_maybe_type] = STATE(1490), - [sym_parenthesized_type] = STATE(1490), - [sym_predefined_type] = STATE(1490), - [sym_object_type] = STATE(1490), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(1490), - [sym_tuple_type] = STATE(1490), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(1490), - [sym_intersection_type] = STATE(1490), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(3225), - [anon_sym_STAR] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_typeof] = ACTIONS(3031), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_PIPE] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3047), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3049), - [sym_number] = ACTIONS(3051), - [sym_this] = ACTIONS(3229), - [sym_true] = ACTIONS(3055), - [sym_false] = ACTIONS(3055), - [sym_null] = ACTIONS(3055), - [sym_undefined] = ACTIONS(3055), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(3059), - [anon_sym_any] = ACTIONS(3047), - [anon_sym_number] = ACTIONS(3047), - [anon_sym_boolean] = ACTIONS(3047), - [anon_sym_string] = ACTIONS(3047), - [anon_sym_symbol] = ACTIONS(3047), - [anon_sym_object] = ACTIONS(3047), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(3067), - [anon_sym_unique] = ACTIONS(3069), - [anon_sym_unknown] = ACTIONS(3047), - [anon_sym_never] = ACTIONS(3047), - [anon_sym_LBRACE_PIPE] = ACTIONS(3071), + [sym_import] = STATE(4924), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5904), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3376), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3801), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5433), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(2966), + [anon_sym_typeof] = ACTIONS(2968), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(2970), + [anon_sym_SQUOTE] = ACTIONS(2972), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_AMP] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(2982), + [anon_sym_QMARK] = ACTIONS(2984), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(2986), + [anon_sym_infer] = ACTIONS(2990), + [anon_sym_keyof] = ACTIONS(2992), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(2994), [sym_html_comment] = ACTIONS(5), }, [1083] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5769), - [sym_string] = STATE(1504), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(1480), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4646), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(1513), - [sym_template_literal_type] = STATE(1490), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(1490), - [sym_generic_type] = STATE(1490), - [sym_type_query] = STATE(1490), - [sym_index_type_query] = STATE(1490), - [sym_lookup_type] = STATE(1490), - [sym_literal_type] = STATE(1490), - [sym__number] = STATE(1494), - [sym_existential_type] = STATE(1490), - [sym_flow_maybe_type] = STATE(1490), - [sym_parenthesized_type] = STATE(1490), - [sym_predefined_type] = STATE(1490), - [sym_object_type] = STATE(1490), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(1490), - [sym_tuple_type] = STATE(1490), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(1490), - [sym_intersection_type] = STATE(1490), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(3225), - [anon_sym_STAR] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_typeof] = ACTIONS(3031), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_PIPE] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3047), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3049), - [sym_number] = ACTIONS(3051), - [sym_this] = ACTIONS(3229), - [sym_true] = ACTIONS(3055), - [sym_false] = ACTIONS(3055), - [sym_null] = ACTIONS(3055), - [sym_undefined] = ACTIONS(3055), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(3059), - [anon_sym_any] = ACTIONS(3047), - [anon_sym_number] = ACTIONS(3047), - [anon_sym_boolean] = ACTIONS(3047), - [anon_sym_string] = ACTIONS(3047), - [anon_sym_symbol] = ACTIONS(3047), - [anon_sym_object] = ACTIONS(3047), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(3067), - [anon_sym_unique] = ACTIONS(3069), - [anon_sym_unknown] = ACTIONS(3047), - [anon_sym_never] = ACTIONS(3047), - [anon_sym_LBRACE_PIPE] = ACTIONS(3071), + [sym_import] = STATE(4648), + [sym_nested_identifier] = STATE(5899), + [sym_string] = STATE(1864), + [sym_formal_parameters] = STATE(5723), + [sym_nested_type_identifier] = STATE(1843), + [sym__type_query_member_expression_in_type_annotation] = STATE(1844), + [sym__type_query_call_expression_in_type_annotation] = STATE(1866), + [sym_type] = STATE(1983), + [sym_constructor_type] = STATE(1867), + [sym_primary_type] = STATE(1868), + [sym_template_literal_type] = STATE(1863), + [sym_infer_type] = STATE(1867), + [sym_conditional_type] = STATE(1863), + [sym_generic_type] = STATE(1863), + [sym_type_query] = STATE(1863), + [sym_index_type_query] = STATE(1863), + [sym_lookup_type] = STATE(1863), + [sym_literal_type] = STATE(1863), + [sym__number] = STATE(1869), + [sym_existential_type] = STATE(1863), + [sym_flow_maybe_type] = STATE(1863), + [sym_parenthesized_type] = STATE(1863), + [sym_predefined_type] = STATE(1863), + [sym_object_type] = STATE(1863), + [sym_type_parameters] = STATE(5380), + [sym_array_type] = STATE(1863), + [sym_tuple_type] = STATE(1863), + [sym_readonly_type] = STATE(1867), + [sym_union_type] = STATE(1863), + [sym_intersection_type] = STATE(1863), + [sym_function_type] = STATE(1867), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(2998), + [anon_sym_LBRACE] = ACTIONS(3000), + [anon_sym_typeof] = ACTIONS(3002), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3004), + [anon_sym_LPAREN] = ACTIONS(3006), + [anon_sym_LBRACK] = ACTIONS(3008), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_PIPE] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3016), + [anon_sym_DASH] = ACTIONS(3016), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(3018), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3020), + [sym_number] = ACTIONS(3022), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(3026), + [sym_false] = ACTIONS(3026), + [sym_null] = ACTIONS(3026), + [sym_undefined] = ACTIONS(3026), + [anon_sym_readonly] = ACTIONS(3028), + [anon_sym_QMARK] = ACTIONS(3030), + [anon_sym_any] = ACTIONS(3018), + [anon_sym_number] = ACTIONS(3018), + [anon_sym_boolean] = ACTIONS(3018), + [anon_sym_string] = ACTIONS(3018), + [anon_sym_symbol] = ACTIONS(3018), + [anon_sym_object] = ACTIONS(3018), + [anon_sym_abstract] = ACTIONS(3032), + [anon_sym_infer] = ACTIONS(3036), + [anon_sym_keyof] = ACTIONS(3038), + [anon_sym_unique] = ACTIONS(3040), + [anon_sym_unknown] = ACTIONS(3018), + [anon_sym_never] = ACTIONS(3018), + [anon_sym_LBRACE_PIPE] = ACTIONS(3042), [sym_html_comment] = ACTIONS(5), }, [1084] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3813), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(5153), + [sym_nested_identifier] = STATE(5834), + [sym_string] = STATE(3213), + [sym_formal_parameters] = STATE(5829), + [sym_nested_type_identifier] = STATE(3070), + [sym__type_query_member_expression_in_type_annotation] = STATE(3029), + [sym__type_query_call_expression_in_type_annotation] = STATE(3159), + [sym_type] = STATE(3189), + [sym_constructor_type] = STATE(3218), + [sym_primary_type] = STATE(3257), + [sym_template_literal_type] = STATE(3211), + [sym_infer_type] = STATE(3218), + [sym_conditional_type] = STATE(3211), + [sym_generic_type] = STATE(3211), + [sym_type_query] = STATE(3211), + [sym_index_type_query] = STATE(3211), + [sym_lookup_type] = STATE(3211), + [sym_literal_type] = STATE(3211), + [sym__number] = STATE(3219), + [sym_existential_type] = STATE(3211), + [sym_flow_maybe_type] = STATE(3211), + [sym_parenthesized_type] = STATE(3211), + [sym_predefined_type] = STATE(3211), + [sym_object_type] = STATE(3211), + [sym_type_parameters] = STATE(5268), + [sym_array_type] = STATE(3211), + [sym_tuple_type] = STATE(3211), + [sym_readonly_type] = STATE(3218), + [sym_union_type] = STATE(3211), + [sym_intersection_type] = STATE(3211), + [sym_function_type] = STATE(3218), + [sym_identifier] = ACTIONS(1571), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_new] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(2948), + [anon_sym_DASH] = ACTIONS(2948), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(1031), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1595), + [sym_number] = ACTIONS(1597), + [sym_this] = ACTIONS(1599), + [sym_true] = ACTIONS(1601), + [sym_false] = ACTIONS(1601), + [sym_null] = ACTIONS(1601), + [sym_undefined] = ACTIONS(1601), + [anon_sym_readonly] = ACTIONS(1603), + [anon_sym_QMARK] = ACTIONS(1019), + [anon_sym_any] = ACTIONS(1031), + [anon_sym_number] = ACTIONS(1031), + [anon_sym_boolean] = ACTIONS(1031), + [anon_sym_string] = ACTIONS(1031), + [anon_sym_symbol] = ACTIONS(1031), + [anon_sym_object] = ACTIONS(1031), + [anon_sym_abstract] = ACTIONS(1023), + [anon_sym_infer] = ACTIONS(1025), + [anon_sym_keyof] = ACTIONS(1027), + [anon_sym_unique] = ACTIONS(1029), + [anon_sym_unknown] = ACTIONS(1031), + [anon_sym_never] = ACTIONS(1031), + [anon_sym_LBRACE_PIPE] = ACTIONS(1033), [sym_html_comment] = ACTIONS(5), }, [1085] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4510), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(4924), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5904), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3376), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(2985), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5433), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(2966), + [anon_sym_typeof] = ACTIONS(2968), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(2970), + [anon_sym_SQUOTE] = ACTIONS(2972), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_AMP] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(2982), + [anon_sym_QMARK] = ACTIONS(2984), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(2986), + [anon_sym_infer] = ACTIONS(2990), + [anon_sym_keyof] = ACTIONS(2992), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(2994), [sym_html_comment] = ACTIONS(5), }, [1086] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3063), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(4924), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5904), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3376), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3822), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5433), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(2966), + [anon_sym_typeof] = ACTIONS(2968), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(2970), + [anon_sym_SQUOTE] = ACTIONS(2972), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_AMP] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(2982), + [anon_sym_QMARK] = ACTIONS(2984), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(2986), + [anon_sym_infer] = ACTIONS(2990), + [anon_sym_keyof] = ACTIONS(2992), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(2994), [sym_html_comment] = ACTIONS(5), }, [1087] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3064), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3790), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1088] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3793), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(5153), + [sym_nested_identifier] = STATE(5834), + [sym_string] = STATE(3213), + [sym_formal_parameters] = STATE(5829), + [sym_nested_type_identifier] = STATE(3070), + [sym__type_query_member_expression_in_type_annotation] = STATE(3029), + [sym__type_query_call_expression_in_type_annotation] = STATE(3159), + [sym_type] = STATE(3179), + [sym_constructor_type] = STATE(3218), + [sym_primary_type] = STATE(3257), + [sym_template_literal_type] = STATE(3211), + [sym_infer_type] = STATE(3218), + [sym_conditional_type] = STATE(3211), + [sym_generic_type] = STATE(3211), + [sym_type_query] = STATE(3211), + [sym_index_type_query] = STATE(3211), + [sym_lookup_type] = STATE(3211), + [sym_literal_type] = STATE(3211), + [sym__number] = STATE(3219), + [sym_existential_type] = STATE(3211), + [sym_flow_maybe_type] = STATE(3211), + [sym_parenthesized_type] = STATE(3211), + [sym_predefined_type] = STATE(3211), + [sym_object_type] = STATE(3211), + [sym_type_parameters] = STATE(5268), + [sym_array_type] = STATE(3211), + [sym_tuple_type] = STATE(3211), + [sym_readonly_type] = STATE(3218), + [sym_union_type] = STATE(3211), + [sym_intersection_type] = STATE(3211), + [sym_function_type] = STATE(3218), + [sym_identifier] = ACTIONS(1571), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_new] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(2948), + [anon_sym_DASH] = ACTIONS(2948), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(1031), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1595), + [sym_number] = ACTIONS(1597), + [sym_this] = ACTIONS(1599), + [sym_true] = ACTIONS(1601), + [sym_false] = ACTIONS(1601), + [sym_null] = ACTIONS(1601), + [sym_undefined] = ACTIONS(1601), + [anon_sym_readonly] = ACTIONS(1603), + [anon_sym_QMARK] = ACTIONS(1019), + [anon_sym_any] = ACTIONS(1031), + [anon_sym_number] = ACTIONS(1031), + [anon_sym_boolean] = ACTIONS(1031), + [anon_sym_string] = ACTIONS(1031), + [anon_sym_symbol] = ACTIONS(1031), + [anon_sym_object] = ACTIONS(1031), + [anon_sym_abstract] = ACTIONS(1023), + [anon_sym_infer] = ACTIONS(1025), + [anon_sym_keyof] = ACTIONS(1027), + [anon_sym_unique] = ACTIONS(1029), + [anon_sym_unknown] = ACTIONS(1031), + [anon_sym_never] = ACTIONS(1031), + [anon_sym_LBRACE_PIPE] = ACTIONS(1033), [sym_html_comment] = ACTIONS(5), }, [1089] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3895), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(2993), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1090] = { - [sym_import] = STATE(4633), - [sym_nested_identifier] = STATE(5769), - [sym_string] = STATE(1504), - [sym_formal_parameters] = STATE(5757), - [sym_nested_type_identifier] = STATE(1480), - [sym__type_query_member_expression_in_type_annotation] = STATE(1481), - [sym__type_query_call_expression_in_type_annotation] = STATE(1491), - [sym_type] = STATE(1543), - [sym_constructor_type] = STATE(1492), - [sym_primary_type] = STATE(1493), - [sym_template_literal_type] = STATE(1490), - [sym_infer_type] = STATE(1492), - [sym_conditional_type] = STATE(1490), - [sym_generic_type] = STATE(1490), - [sym_type_query] = STATE(1490), - [sym_index_type_query] = STATE(1490), - [sym_lookup_type] = STATE(1490), - [sym_literal_type] = STATE(1490), - [sym__number] = STATE(1494), - [sym_existential_type] = STATE(1490), - [sym_flow_maybe_type] = STATE(1490), - [sym_parenthesized_type] = STATE(1490), - [sym_predefined_type] = STATE(1490), - [sym_object_type] = STATE(1490), - [sym_type_parameters] = STATE(5510), - [sym_array_type] = STATE(1490), - [sym_tuple_type] = STATE(1490), - [sym_readonly_type] = STATE(1492), - [sym_union_type] = STATE(1490), - [sym_intersection_type] = STATE(1490), - [sym_function_type] = STATE(1492), - [sym_identifier] = ACTIONS(3225), - [anon_sym_STAR] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_typeof] = ACTIONS(3031), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_PIPE] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3047), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3049), - [sym_number] = ACTIONS(3051), - [sym_this] = ACTIONS(3229), - [sym_true] = ACTIONS(3055), - [sym_false] = ACTIONS(3055), - [sym_null] = ACTIONS(3055), - [sym_undefined] = ACTIONS(3055), - [anon_sym_readonly] = ACTIONS(3057), - [anon_sym_QMARK] = ACTIONS(3059), - [anon_sym_any] = ACTIONS(3047), - [anon_sym_number] = ACTIONS(3047), - [anon_sym_boolean] = ACTIONS(3047), - [anon_sym_string] = ACTIONS(3047), - [anon_sym_symbol] = ACTIONS(3047), - [anon_sym_object] = ACTIONS(3047), - [anon_sym_abstract] = ACTIONS(3061), - [anon_sym_infer] = ACTIONS(3065), - [anon_sym_keyof] = ACTIONS(3067), - [anon_sym_unique] = ACTIONS(3069), - [anon_sym_unknown] = ACTIONS(3047), - [anon_sym_never] = ACTIONS(3047), - [anon_sym_LBRACE_PIPE] = ACTIONS(3071), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3115), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1091] = { - [sym_import] = STATE(4633), - [sym_nested_identifier] = STATE(5769), - [sym_string] = STATE(1504), - [sym_formal_parameters] = STATE(5757), - [sym_nested_type_identifier] = STATE(1480), - [sym__type_query_member_expression_in_type_annotation] = STATE(1481), - [sym__type_query_call_expression_in_type_annotation] = STATE(1491), - [sym_type] = STATE(1544), - [sym_constructor_type] = STATE(1492), - [sym_primary_type] = STATE(1493), - [sym_template_literal_type] = STATE(1490), - [sym_infer_type] = STATE(1492), - [sym_conditional_type] = STATE(1490), - [sym_generic_type] = STATE(1490), - [sym_type_query] = STATE(1490), - [sym_index_type_query] = STATE(1490), - [sym_lookup_type] = STATE(1490), - [sym_literal_type] = STATE(1490), - [sym__number] = STATE(1494), - [sym_existential_type] = STATE(1490), - [sym_flow_maybe_type] = STATE(1490), - [sym_parenthesized_type] = STATE(1490), - [sym_predefined_type] = STATE(1490), - [sym_object_type] = STATE(1490), - [sym_type_parameters] = STATE(5510), - [sym_array_type] = STATE(1490), - [sym_tuple_type] = STATE(1490), - [sym_readonly_type] = STATE(1492), - [sym_union_type] = STATE(1490), - [sym_intersection_type] = STATE(1490), - [sym_function_type] = STATE(1492), - [sym_identifier] = ACTIONS(3225), - [anon_sym_STAR] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_typeof] = ACTIONS(3031), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_PIPE] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3047), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3049), - [sym_number] = ACTIONS(3051), - [sym_this] = ACTIONS(3229), - [sym_true] = ACTIONS(3055), - [sym_false] = ACTIONS(3055), - [sym_null] = ACTIONS(3055), - [sym_undefined] = ACTIONS(3055), - [anon_sym_readonly] = ACTIONS(3057), - [anon_sym_QMARK] = ACTIONS(3059), - [anon_sym_any] = ACTIONS(3047), - [anon_sym_number] = ACTIONS(3047), - [anon_sym_boolean] = ACTIONS(3047), - [anon_sym_string] = ACTIONS(3047), - [anon_sym_symbol] = ACTIONS(3047), - [anon_sym_object] = ACTIONS(3047), - [anon_sym_abstract] = ACTIONS(3061), - [anon_sym_infer] = ACTIONS(3065), - [anon_sym_keyof] = ACTIONS(3067), - [anon_sym_unique] = ACTIONS(3069), - [anon_sym_unknown] = ACTIONS(3047), - [anon_sym_never] = ACTIONS(3047), - [anon_sym_LBRACE_PIPE] = ACTIONS(3071), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3058), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1092] = { - [sym_import] = STATE(4633), - [sym_nested_identifier] = STATE(5769), - [sym_string] = STATE(1504), - [sym_formal_parameters] = STATE(5757), - [sym_nested_type_identifier] = STATE(1480), - [sym__type_query_member_expression_in_type_annotation] = STATE(1481), - [sym__type_query_call_expression_in_type_annotation] = STATE(1491), - [sym_type] = STATE(1563), - [sym_constructor_type] = STATE(1492), - [sym_primary_type] = STATE(1493), - [sym_template_literal_type] = STATE(1490), - [sym_infer_type] = STATE(1492), - [sym_conditional_type] = STATE(1490), - [sym_generic_type] = STATE(1490), - [sym_type_query] = STATE(1490), - [sym_index_type_query] = STATE(1490), - [sym_lookup_type] = STATE(1490), - [sym_literal_type] = STATE(1490), - [sym__number] = STATE(1494), - [sym_existential_type] = STATE(1490), - [sym_flow_maybe_type] = STATE(1490), - [sym_parenthesized_type] = STATE(1490), - [sym_predefined_type] = STATE(1490), - [sym_object_type] = STATE(1490), - [sym_type_parameters] = STATE(5510), - [sym_array_type] = STATE(1490), - [sym_tuple_type] = STATE(1490), - [sym_readonly_type] = STATE(1492), - [sym_union_type] = STATE(1490), - [sym_intersection_type] = STATE(1490), - [sym_function_type] = STATE(1492), - [sym_identifier] = ACTIONS(3225), - [anon_sym_STAR] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_typeof] = ACTIONS(3031), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_PIPE] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3047), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3049), - [sym_number] = ACTIONS(3051), - [sym_this] = ACTIONS(3229), - [sym_true] = ACTIONS(3055), - [sym_false] = ACTIONS(3055), - [sym_null] = ACTIONS(3055), - [sym_undefined] = ACTIONS(3055), - [anon_sym_readonly] = ACTIONS(3057), - [anon_sym_QMARK] = ACTIONS(3059), - [anon_sym_any] = ACTIONS(3047), - [anon_sym_number] = ACTIONS(3047), - [anon_sym_boolean] = ACTIONS(3047), - [anon_sym_string] = ACTIONS(3047), - [anon_sym_symbol] = ACTIONS(3047), - [anon_sym_object] = ACTIONS(3047), - [anon_sym_abstract] = ACTIONS(3061), - [anon_sym_infer] = ACTIONS(3065), - [anon_sym_keyof] = ACTIONS(3067), - [anon_sym_unique] = ACTIONS(3069), - [anon_sym_unknown] = ACTIONS(3047), - [anon_sym_never] = ACTIONS(3047), - [anon_sym_LBRACE_PIPE] = ACTIONS(3071), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(5077), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2917), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1093] = { - [sym_import] = STATE(4633), - [sym_nested_identifier] = STATE(5769), - [sym_string] = STATE(1504), - [sym_formal_parameters] = STATE(5757), - [sym_nested_type_identifier] = STATE(1480), - [sym__type_query_member_expression_in_type_annotation] = STATE(1481), - [sym__type_query_call_expression_in_type_annotation] = STATE(1491), - [sym_type] = STATE(1565), - [sym_constructor_type] = STATE(1492), - [sym_primary_type] = STATE(1493), - [sym_template_literal_type] = STATE(1490), - [sym_infer_type] = STATE(1492), - [sym_conditional_type] = STATE(1490), - [sym_generic_type] = STATE(1490), - [sym_type_query] = STATE(1490), - [sym_index_type_query] = STATE(1490), - [sym_lookup_type] = STATE(1490), - [sym_literal_type] = STATE(1490), - [sym__number] = STATE(1494), - [sym_existential_type] = STATE(1490), - [sym_flow_maybe_type] = STATE(1490), - [sym_parenthesized_type] = STATE(1490), - [sym_predefined_type] = STATE(1490), - [sym_object_type] = STATE(1490), - [sym_type_parameters] = STATE(5510), - [sym_array_type] = STATE(1490), - [sym_tuple_type] = STATE(1490), - [sym_readonly_type] = STATE(1492), - [sym_union_type] = STATE(1490), - [sym_intersection_type] = STATE(1490), - [sym_function_type] = STATE(1492), - [sym_identifier] = ACTIONS(3225), - [anon_sym_STAR] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_typeof] = ACTIONS(3031), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_PIPE] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3047), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3049), - [sym_number] = ACTIONS(3051), - [sym_this] = ACTIONS(3229), - [sym_true] = ACTIONS(3055), - [sym_false] = ACTIONS(3055), - [sym_null] = ACTIONS(3055), - [sym_undefined] = ACTIONS(3055), - [anon_sym_readonly] = ACTIONS(3057), - [anon_sym_QMARK] = ACTIONS(3059), - [anon_sym_any] = ACTIONS(3047), - [anon_sym_number] = ACTIONS(3047), - [anon_sym_boolean] = ACTIONS(3047), - [anon_sym_string] = ACTIONS(3047), - [anon_sym_symbol] = ACTIONS(3047), - [anon_sym_object] = ACTIONS(3047), - [anon_sym_abstract] = ACTIONS(3061), - [anon_sym_infer] = ACTIONS(3065), - [anon_sym_keyof] = ACTIONS(3067), - [anon_sym_unique] = ACTIONS(3069), - [anon_sym_unknown] = ACTIONS(3047), - [anon_sym_never] = ACTIONS(3047), - [anon_sym_LBRACE_PIPE] = ACTIONS(3071), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(5077), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2919), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1094] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(2992), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3858), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1095] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3666), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(4532), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1096] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3667), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(4648), + [sym_nested_identifier] = STATE(5899), + [sym_string] = STATE(1864), + [sym_formal_parameters] = STATE(5723), + [sym_nested_type_identifier] = STATE(1843), + [sym__type_query_member_expression_in_type_annotation] = STATE(1844), + [sym__type_query_call_expression_in_type_annotation] = STATE(1866), + [sym_type] = STATE(1871), + [sym_constructor_type] = STATE(1867), + [sym_primary_type] = STATE(1868), + [sym_template_literal_type] = STATE(1863), + [sym_infer_type] = STATE(1867), + [sym_conditional_type] = STATE(1863), + [sym_generic_type] = STATE(1863), + [sym_type_query] = STATE(1863), + [sym_index_type_query] = STATE(1863), + [sym_lookup_type] = STATE(1863), + [sym_literal_type] = STATE(1863), + [sym__number] = STATE(1869), + [sym_existential_type] = STATE(1863), + [sym_flow_maybe_type] = STATE(1863), + [sym_parenthesized_type] = STATE(1863), + [sym_predefined_type] = STATE(1863), + [sym_object_type] = STATE(1863), + [sym_type_parameters] = STATE(5380), + [sym_array_type] = STATE(1863), + [sym_tuple_type] = STATE(1863), + [sym_readonly_type] = STATE(1867), + [sym_union_type] = STATE(1863), + [sym_intersection_type] = STATE(1863), + [sym_function_type] = STATE(1867), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(2998), + [anon_sym_LBRACE] = ACTIONS(3000), + [anon_sym_typeof] = ACTIONS(3002), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(3006), + [anon_sym_LBRACK] = ACTIONS(3008), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_PIPE] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3016), + [anon_sym_DASH] = ACTIONS(3016), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(3018), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3020), + [sym_number] = ACTIONS(3022), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(3026), + [sym_false] = ACTIONS(3026), + [sym_null] = ACTIONS(3026), + [sym_undefined] = ACTIONS(3026), + [anon_sym_readonly] = ACTIONS(3028), + [anon_sym_QMARK] = ACTIONS(3030), + [anon_sym_any] = ACTIONS(3018), + [anon_sym_number] = ACTIONS(3018), + [anon_sym_boolean] = ACTIONS(3018), + [anon_sym_string] = ACTIONS(3018), + [anon_sym_symbol] = ACTIONS(3018), + [anon_sym_object] = ACTIONS(3018), + [anon_sym_abstract] = ACTIONS(3032), + [anon_sym_infer] = ACTIONS(3036), + [anon_sym_keyof] = ACTIONS(3038), + [anon_sym_unique] = ACTIONS(3040), + [anon_sym_unknown] = ACTIONS(3018), + [anon_sym_never] = ACTIONS(3018), + [anon_sym_LBRACE_PIPE] = ACTIONS(3042), [sym_html_comment] = ACTIONS(5), }, [1097] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(5088), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2920), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(4424), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1098] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(5088), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2924), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3798), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1099] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4575), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(4924), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5904), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3376), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(2955), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5433), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(2966), + [anon_sym_typeof] = ACTIONS(2968), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(2970), + [anon_sym_SQUOTE] = ACTIONS(2972), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_AMP] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(2982), + [anon_sym_QMARK] = ACTIONS(2984), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(2986), + [anon_sym_infer] = ACTIONS(2990), + [anon_sym_keyof] = ACTIONS(2992), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(2994), [sym_html_comment] = ACTIONS(5), }, [1100] = { - [sym_import] = STATE(4635), - [sym_nested_identifier] = STATE(5854), - [sym_string] = STATE(1922), - [sym_formal_parameters] = STATE(5981), - [sym_nested_type_identifier] = STATE(1768), - [sym__type_query_member_expression_in_type_annotation] = STATE(1769), - [sym__type_query_call_expression_in_type_annotation] = STATE(1973), - [sym_type] = STATE(1989), - [sym_constructor_type] = STATE(1980), - [sym_primary_type] = STATE(1981), - [sym_template_literal_type] = STATE(1907), - [sym_infer_type] = STATE(1980), - [sym_conditional_type] = STATE(1907), - [sym_generic_type] = STATE(1907), - [sym_type_query] = STATE(1907), - [sym_index_type_query] = STATE(1907), - [sym_lookup_type] = STATE(1907), - [sym_literal_type] = STATE(1907), - [sym__number] = STATE(1987), - [sym_existential_type] = STATE(1907), - [sym_flow_maybe_type] = STATE(1907), - [sym_parenthesized_type] = STATE(1907), - [sym_predefined_type] = STATE(1907), - [sym_object_type] = STATE(1907), - [sym_type_parameters] = STATE(5335), - [sym_array_type] = STATE(1907), - [sym_tuple_type] = STATE(1907), - [sym_readonly_type] = STATE(1980), - [sym_union_type] = STATE(1907), - [sym_intersection_type] = STATE(1907), - [sym_function_type] = STATE(1980), - [sym_identifier] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_LBRACE] = ACTIONS(2981), - [anon_sym_typeof] = ACTIONS(2983), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_PIPE] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(2999), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3001), - [sym_number] = ACTIONS(3003), - [sym_this] = ACTIONS(3233), - [sym_true] = ACTIONS(3007), - [sym_false] = ACTIONS(3007), - [sym_null] = ACTIONS(3007), - [sym_undefined] = ACTIONS(3007), - [anon_sym_readonly] = ACTIONS(3009), - [anon_sym_QMARK] = ACTIONS(3011), - [anon_sym_any] = ACTIONS(2999), - [anon_sym_number] = ACTIONS(2999), - [anon_sym_boolean] = ACTIONS(2999), - [anon_sym_string] = ACTIONS(2999), - [anon_sym_symbol] = ACTIONS(2999), - [anon_sym_object] = ACTIONS(2999), - [anon_sym_abstract] = ACTIONS(3013), - [anon_sym_infer] = ACTIONS(3017), - [anon_sym_keyof] = ACTIONS(3019), - [anon_sym_unique] = ACTIONS(3021), - [anon_sym_unknown] = ACTIONS(2999), - [anon_sym_never] = ACTIONS(2999), - [anon_sym_LBRACE_PIPE] = ACTIONS(3023), + [sym_import] = STATE(4924), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5904), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3376), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(2963), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5433), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(2966), + [anon_sym_typeof] = ACTIONS(2968), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(2970), + [anon_sym_SQUOTE] = ACTIONS(2972), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_AMP] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(2982), + [anon_sym_QMARK] = ACTIONS(2984), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(2986), + [anon_sym_infer] = ACTIONS(2990), + [anon_sym_keyof] = ACTIONS(2992), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(2994), [sym_html_comment] = ACTIONS(5), }, [1101] = { - [sym_import] = STATE(4633), - [sym_nested_identifier] = STATE(5769), - [sym_string] = STATE(1504), - [sym_formal_parameters] = STATE(5757), - [sym_nested_type_identifier] = STATE(1480), - [sym__type_query_member_expression_in_type_annotation] = STATE(1481), - [sym__type_query_call_expression_in_type_annotation] = STATE(1491), - [sym_type] = STATE(1586), - [sym_constructor_type] = STATE(1492), - [sym_primary_type] = STATE(1493), - [sym_template_literal_type] = STATE(1490), - [sym_infer_type] = STATE(1492), - [sym_conditional_type] = STATE(1490), - [sym_generic_type] = STATE(1490), - [sym_type_query] = STATE(1490), - [sym_index_type_query] = STATE(1490), - [sym_lookup_type] = STATE(1490), - [sym_literal_type] = STATE(1490), - [sym__number] = STATE(1494), - [sym_existential_type] = STATE(1490), - [sym_flow_maybe_type] = STATE(1490), - [sym_parenthesized_type] = STATE(1490), - [sym_predefined_type] = STATE(1490), - [sym_object_type] = STATE(1490), - [sym_type_parameters] = STATE(5510), - [sym_array_type] = STATE(1490), - [sym_tuple_type] = STATE(1490), - [sym_readonly_type] = STATE(1492), - [sym_union_type] = STATE(1490), - [sym_intersection_type] = STATE(1490), - [sym_function_type] = STATE(1492), - [sym_identifier] = ACTIONS(3225), - [anon_sym_STAR] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_typeof] = ACTIONS(3031), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_PIPE] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3047), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3049), - [sym_number] = ACTIONS(3051), - [sym_this] = ACTIONS(3229), - [sym_true] = ACTIONS(3055), - [sym_false] = ACTIONS(3055), - [sym_null] = ACTIONS(3055), - [sym_undefined] = ACTIONS(3055), - [anon_sym_readonly] = ACTIONS(3057), - [anon_sym_QMARK] = ACTIONS(3059), - [anon_sym_any] = ACTIONS(3047), - [anon_sym_number] = ACTIONS(3047), - [anon_sym_boolean] = ACTIONS(3047), - [anon_sym_string] = ACTIONS(3047), - [anon_sym_symbol] = ACTIONS(3047), - [anon_sym_object] = ACTIONS(3047), - [anon_sym_abstract] = ACTIONS(3061), - [anon_sym_infer] = ACTIONS(3065), - [anon_sym_keyof] = ACTIONS(3067), - [anon_sym_unique] = ACTIONS(3069), - [anon_sym_unknown] = ACTIONS(3047), - [anon_sym_never] = ACTIONS(3047), - [anon_sym_LBRACE_PIPE] = ACTIONS(3071), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3910), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1102] = { - [sym_import] = STATE(4633), - [sym_nested_identifier] = STATE(5769), - [sym_string] = STATE(1504), - [sym_formal_parameters] = STATE(5757), - [sym_nested_type_identifier] = STATE(1480), - [sym__type_query_member_expression_in_type_annotation] = STATE(1481), - [sym__type_query_call_expression_in_type_annotation] = STATE(1491), - [sym_type] = STATE(1587), - [sym_constructor_type] = STATE(1492), - [sym_primary_type] = STATE(1493), - [sym_template_literal_type] = STATE(1490), - [sym_infer_type] = STATE(1492), - [sym_conditional_type] = STATE(1490), - [sym_generic_type] = STATE(1490), - [sym_type_query] = STATE(1490), - [sym_index_type_query] = STATE(1490), - [sym_lookup_type] = STATE(1490), - [sym_literal_type] = STATE(1490), - [sym__number] = STATE(1494), - [sym_existential_type] = STATE(1490), - [sym_flow_maybe_type] = STATE(1490), - [sym_parenthesized_type] = STATE(1490), - [sym_predefined_type] = STATE(1490), - [sym_object_type] = STATE(1490), - [sym_type_parameters] = STATE(5510), - [sym_array_type] = STATE(1490), - [sym_tuple_type] = STATE(1490), - [sym_readonly_type] = STATE(1492), - [sym_union_type] = STATE(1490), - [sym_intersection_type] = STATE(1490), - [sym_function_type] = STATE(1492), - [sym_identifier] = ACTIONS(3225), - [anon_sym_STAR] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_typeof] = ACTIONS(3031), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_PIPE] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3047), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3049), - [sym_number] = ACTIONS(3051), - [sym_this] = ACTIONS(3229), - [sym_true] = ACTIONS(3055), - [sym_false] = ACTIONS(3055), - [sym_null] = ACTIONS(3055), - [sym_undefined] = ACTIONS(3055), - [anon_sym_readonly] = ACTIONS(3057), - [anon_sym_QMARK] = ACTIONS(3059), - [anon_sym_any] = ACTIONS(3047), - [anon_sym_number] = ACTIONS(3047), - [anon_sym_boolean] = ACTIONS(3047), - [anon_sym_string] = ACTIONS(3047), - [anon_sym_symbol] = ACTIONS(3047), - [anon_sym_object] = ACTIONS(3047), - [anon_sym_abstract] = ACTIONS(3061), - [anon_sym_infer] = ACTIONS(3065), - [anon_sym_keyof] = ACTIONS(3067), - [anon_sym_unique] = ACTIONS(3069), - [anon_sym_unknown] = ACTIONS(3047), - [anon_sym_never] = ACTIONS(3047), - [anon_sym_LBRACE_PIPE] = ACTIONS(3071), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3778), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1103] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3879), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(4924), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5904), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3376), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(2977), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5433), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(2966), + [anon_sym_typeof] = ACTIONS(2968), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(2970), + [anon_sym_SQUOTE] = ACTIONS(2972), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_AMP] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(2982), + [anon_sym_QMARK] = ACTIONS(2984), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(2986), + [anon_sym_infer] = ACTIONS(2990), + [anon_sym_keyof] = ACTIONS(2992), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(2994), [sym_html_comment] = ACTIONS(5), }, [1104] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4472), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(5153), + [sym_nested_identifier] = STATE(5834), + [sym_string] = STATE(3213), + [sym_formal_parameters] = STATE(5829), + [sym_nested_type_identifier] = STATE(3070), + [sym__type_query_member_expression_in_type_annotation] = STATE(3029), + [sym__type_query_call_expression_in_type_annotation] = STATE(3159), + [sym_type] = STATE(4017), + [sym_constructor_type] = STATE(3218), + [sym_primary_type] = STATE(3257), + [sym_template_literal_type] = STATE(3211), + [sym_infer_type] = STATE(3218), + [sym_conditional_type] = STATE(3211), + [sym_generic_type] = STATE(3211), + [sym_type_query] = STATE(3211), + [sym_index_type_query] = STATE(3211), + [sym_lookup_type] = STATE(3211), + [sym_literal_type] = STATE(3211), + [sym__number] = STATE(3219), + [sym_existential_type] = STATE(3211), + [sym_flow_maybe_type] = STATE(3211), + [sym_parenthesized_type] = STATE(3211), + [sym_predefined_type] = STATE(3211), + [sym_object_type] = STATE(3211), + [sym_type_parameters] = STATE(5268), + [sym_array_type] = STATE(3211), + [sym_tuple_type] = STATE(3211), + [sym_readonly_type] = STATE(3218), + [sym_union_type] = STATE(3211), + [sym_intersection_type] = STATE(3211), + [sym_function_type] = STATE(3218), + [sym_identifier] = ACTIONS(1571), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(1577), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_new] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(2948), + [anon_sym_DASH] = ACTIONS(2948), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(1031), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1595), + [sym_number] = ACTIONS(1597), + [sym_this] = ACTIONS(1599), + [sym_true] = ACTIONS(1601), + [sym_false] = ACTIONS(1601), + [sym_null] = ACTIONS(1601), + [sym_undefined] = ACTIONS(1601), + [anon_sym_readonly] = ACTIONS(1603), + [anon_sym_QMARK] = ACTIONS(1019), + [anon_sym_any] = ACTIONS(1031), + [anon_sym_number] = ACTIONS(1031), + [anon_sym_boolean] = ACTIONS(1031), + [anon_sym_string] = ACTIONS(1031), + [anon_sym_symbol] = ACTIONS(1031), + [anon_sym_object] = ACTIONS(1031), + [anon_sym_abstract] = ACTIONS(1023), + [anon_sym_infer] = ACTIONS(1025), + [anon_sym_keyof] = ACTIONS(1027), + [anon_sym_unique] = ACTIONS(1029), + [anon_sym_unknown] = ACTIONS(1031), + [anon_sym_never] = ACTIONS(1031), + [anon_sym_LBRACE_PIPE] = ACTIONS(1033), [sym_html_comment] = ACTIONS(5), }, [1105] = { - [sym_import] = STATE(4909), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5858), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3328), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4367), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5355), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_typeof] = ACTIONS(3083), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_new] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3095), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(3097), - [anon_sym_infer] = ACTIONS(3101), - [anon_sym_keyof] = ACTIONS(3103), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(3105), + [sym_import] = STATE(4648), + [sym_nested_identifier] = STATE(5899), + [sym_string] = STATE(1864), + [sym_formal_parameters] = STATE(5723), + [sym_nested_type_identifier] = STATE(1843), + [sym__type_query_member_expression_in_type_annotation] = STATE(1844), + [sym__type_query_call_expression_in_type_annotation] = STATE(1866), + [sym_type] = STATE(1884), + [sym_constructor_type] = STATE(1867), + [sym_primary_type] = STATE(1868), + [sym_template_literal_type] = STATE(1863), + [sym_infer_type] = STATE(1867), + [sym_conditional_type] = STATE(1863), + [sym_generic_type] = STATE(1863), + [sym_type_query] = STATE(1863), + [sym_index_type_query] = STATE(1863), + [sym_lookup_type] = STATE(1863), + [sym_literal_type] = STATE(1863), + [sym__number] = STATE(1869), + [sym_existential_type] = STATE(1863), + [sym_flow_maybe_type] = STATE(1863), + [sym_parenthesized_type] = STATE(1863), + [sym_predefined_type] = STATE(1863), + [sym_object_type] = STATE(1863), + [sym_type_parameters] = STATE(5380), + [sym_array_type] = STATE(1863), + [sym_tuple_type] = STATE(1863), + [sym_readonly_type] = STATE(1867), + [sym_union_type] = STATE(1863), + [sym_intersection_type] = STATE(1863), + [sym_function_type] = STATE(1867), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(2998), + [anon_sym_LBRACE] = ACTIONS(3000), + [anon_sym_typeof] = ACTIONS(3002), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3004), + [anon_sym_LPAREN] = ACTIONS(3006), + [anon_sym_LBRACK] = ACTIONS(3008), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_PIPE] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3016), + [anon_sym_DASH] = ACTIONS(3016), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(3018), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3020), + [sym_number] = ACTIONS(3022), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(3026), + [sym_false] = ACTIONS(3026), + [sym_null] = ACTIONS(3026), + [sym_undefined] = ACTIONS(3026), + [anon_sym_readonly] = ACTIONS(3028), + [anon_sym_QMARK] = ACTIONS(3030), + [anon_sym_any] = ACTIONS(3018), + [anon_sym_number] = ACTIONS(3018), + [anon_sym_boolean] = ACTIONS(3018), + [anon_sym_string] = ACTIONS(3018), + [anon_sym_symbol] = ACTIONS(3018), + [anon_sym_object] = ACTIONS(3018), + [anon_sym_abstract] = ACTIONS(3032), + [anon_sym_infer] = ACTIONS(3036), + [anon_sym_keyof] = ACTIONS(3038), + [anon_sym_unique] = ACTIONS(3040), + [anon_sym_unknown] = ACTIONS(3018), + [anon_sym_never] = ACTIONS(3018), + [anon_sym_LBRACE_PIPE] = ACTIONS(3042), [sym_html_comment] = ACTIONS(5), }, [1106] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4475), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(4648), + [sym_nested_identifier] = STATE(5899), + [sym_string] = STATE(1864), + [sym_formal_parameters] = STATE(5723), + [sym_nested_type_identifier] = STATE(1843), + [sym__type_query_member_expression_in_type_annotation] = STATE(1844), + [sym__type_query_call_expression_in_type_annotation] = STATE(1866), + [sym_type] = STATE(1885), + [sym_constructor_type] = STATE(1867), + [sym_primary_type] = STATE(1868), + [sym_template_literal_type] = STATE(1863), + [sym_infer_type] = STATE(1867), + [sym_conditional_type] = STATE(1863), + [sym_generic_type] = STATE(1863), + [sym_type_query] = STATE(1863), + [sym_index_type_query] = STATE(1863), + [sym_lookup_type] = STATE(1863), + [sym_literal_type] = STATE(1863), + [sym__number] = STATE(1869), + [sym_existential_type] = STATE(1863), + [sym_flow_maybe_type] = STATE(1863), + [sym_parenthesized_type] = STATE(1863), + [sym_predefined_type] = STATE(1863), + [sym_object_type] = STATE(1863), + [sym_type_parameters] = STATE(5380), + [sym_array_type] = STATE(1863), + [sym_tuple_type] = STATE(1863), + [sym_readonly_type] = STATE(1867), + [sym_union_type] = STATE(1863), + [sym_intersection_type] = STATE(1863), + [sym_function_type] = STATE(1867), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(2998), + [anon_sym_LBRACE] = ACTIONS(3000), + [anon_sym_typeof] = ACTIONS(3002), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3004), + [anon_sym_LPAREN] = ACTIONS(3006), + [anon_sym_LBRACK] = ACTIONS(3008), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_PIPE] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3016), + [anon_sym_DASH] = ACTIONS(3016), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(3018), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3020), + [sym_number] = ACTIONS(3022), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(3026), + [sym_false] = ACTIONS(3026), + [sym_null] = ACTIONS(3026), + [sym_undefined] = ACTIONS(3026), + [anon_sym_readonly] = ACTIONS(3028), + [anon_sym_QMARK] = ACTIONS(3030), + [anon_sym_any] = ACTIONS(3018), + [anon_sym_number] = ACTIONS(3018), + [anon_sym_boolean] = ACTIONS(3018), + [anon_sym_string] = ACTIONS(3018), + [anon_sym_symbol] = ACTIONS(3018), + [anon_sym_object] = ACTIONS(3018), + [anon_sym_abstract] = ACTIONS(3032), + [anon_sym_infer] = ACTIONS(3036), + [anon_sym_keyof] = ACTIONS(3038), + [anon_sym_unique] = ACTIONS(3040), + [anon_sym_unknown] = ACTIONS(3018), + [anon_sym_never] = ACTIONS(3018), + [anon_sym_LBRACE_PIPE] = ACTIONS(3042), [sym_html_comment] = ACTIONS(5), }, [1107] = { - [sym_import] = STATE(4635), - [sym_nested_identifier] = STATE(5854), - [sym_string] = STATE(1922), - [sym_formal_parameters] = STATE(5981), - [sym_nested_type_identifier] = STATE(1768), - [sym__type_query_member_expression_in_type_annotation] = STATE(1769), - [sym__type_query_call_expression_in_type_annotation] = STATE(1973), - [sym_type] = STATE(1918), - [sym_constructor_type] = STATE(1980), - [sym_primary_type] = STATE(1981), - [sym_template_literal_type] = STATE(1907), - [sym_infer_type] = STATE(1980), - [sym_conditional_type] = STATE(1907), - [sym_generic_type] = STATE(1907), - [sym_type_query] = STATE(1907), - [sym_index_type_query] = STATE(1907), - [sym_lookup_type] = STATE(1907), - [sym_literal_type] = STATE(1907), - [sym__number] = STATE(1987), - [sym_existential_type] = STATE(1907), - [sym_flow_maybe_type] = STATE(1907), - [sym_parenthesized_type] = STATE(1907), - [sym_predefined_type] = STATE(1907), - [sym_object_type] = STATE(1907), - [sym_type_parameters] = STATE(5335), - [sym_array_type] = STATE(1907), - [sym_tuple_type] = STATE(1907), - [sym_readonly_type] = STATE(1980), - [sym_union_type] = STATE(1907), - [sym_intersection_type] = STATE(1907), - [sym_function_type] = STATE(1980), - [sym_identifier] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_LBRACE] = ACTIONS(2981), - [anon_sym_typeof] = ACTIONS(2983), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3235), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_PIPE] = ACTIONS(2995), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(2999), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3001), - [sym_number] = ACTIONS(3003), - [sym_this] = ACTIONS(3233), - [sym_true] = ACTIONS(3007), - [sym_false] = ACTIONS(3007), - [sym_null] = ACTIONS(3007), - [sym_undefined] = ACTIONS(3007), - [anon_sym_readonly] = ACTIONS(3009), - [anon_sym_QMARK] = ACTIONS(3011), - [anon_sym_any] = ACTIONS(2999), - [anon_sym_number] = ACTIONS(2999), - [anon_sym_boolean] = ACTIONS(2999), - [anon_sym_string] = ACTIONS(2999), - [anon_sym_symbol] = ACTIONS(2999), - [anon_sym_object] = ACTIONS(2999), - [anon_sym_abstract] = ACTIONS(3013), - [anon_sym_infer] = ACTIONS(3017), - [anon_sym_keyof] = ACTIONS(3019), - [anon_sym_unique] = ACTIONS(3021), - [anon_sym_unknown] = ACTIONS(2999), - [anon_sym_never] = ACTIONS(2999), - [anon_sym_LBRACE_PIPE] = ACTIONS(3023), + [sym_import] = STATE(4786), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5658), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3263), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(2993), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5559), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1108] = { - [sym_import] = STATE(4633), - [sym_nested_identifier] = STATE(5769), - [sym_string] = STATE(1504), - [sym_formal_parameters] = STATE(5757), - [sym_nested_type_identifier] = STATE(1480), - [sym__type_query_member_expression_in_type_annotation] = STATE(1481), - [sym__type_query_call_expression_in_type_annotation] = STATE(1491), - [sym_type] = STATE(1602), - [sym_constructor_type] = STATE(1492), - [sym_primary_type] = STATE(1493), - [sym_template_literal_type] = STATE(1490), - [sym_infer_type] = STATE(1492), - [sym_conditional_type] = STATE(1490), - [sym_generic_type] = STATE(1490), - [sym_type_query] = STATE(1490), - [sym_index_type_query] = STATE(1490), - [sym_lookup_type] = STATE(1490), - [sym_literal_type] = STATE(1490), - [sym__number] = STATE(1494), - [sym_existential_type] = STATE(1490), - [sym_flow_maybe_type] = STATE(1490), - [sym_parenthesized_type] = STATE(1490), - [sym_predefined_type] = STATE(1490), - [sym_object_type] = STATE(1490), - [sym_type_parameters] = STATE(5510), - [sym_array_type] = STATE(1490), - [sym_tuple_type] = STATE(1490), - [sym_readonly_type] = STATE(1492), - [sym_union_type] = STATE(1490), - [sym_intersection_type] = STATE(1490), - [sym_function_type] = STATE(1492), - [sym_identifier] = ACTIONS(3225), - [anon_sym_STAR] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_typeof] = ACTIONS(3031), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_PIPE] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3047), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3049), - [sym_number] = ACTIONS(3051), - [sym_this] = ACTIONS(3229), - [sym_true] = ACTIONS(3055), - [sym_false] = ACTIONS(3055), - [sym_null] = ACTIONS(3055), - [sym_undefined] = ACTIONS(3055), - [anon_sym_readonly] = ACTIONS(3057), - [anon_sym_QMARK] = ACTIONS(3059), - [anon_sym_any] = ACTIONS(3047), - [anon_sym_number] = ACTIONS(3047), - [anon_sym_boolean] = ACTIONS(3047), - [anon_sym_string] = ACTIONS(3047), - [anon_sym_symbol] = ACTIONS(3047), - [anon_sym_object] = ACTIONS(3047), - [anon_sym_abstract] = ACTIONS(3061), - [anon_sym_infer] = ACTIONS(3065), - [anon_sym_keyof] = ACTIONS(3067), - [anon_sym_unique] = ACTIONS(3069), - [anon_sym_unknown] = ACTIONS(3047), - [anon_sym_never] = ACTIONS(3047), - [anon_sym_LBRACE_PIPE] = ACTIONS(3071), + [sym_import] = STATE(4786), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5658), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3263), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3652), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5559), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1109] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3000), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(4786), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5658), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3263), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3766), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5559), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1110] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(3116), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(5089), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2917), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1111] = { - [sym_import] = STATE(4633), - [sym_nested_identifier] = STATE(5769), - [sym_string] = STATE(1504), - [sym_formal_parameters] = STATE(5757), - [sym_nested_type_identifier] = STATE(1480), - [sym__type_query_member_expression_in_type_annotation] = STATE(1481), - [sym__type_query_call_expression_in_type_annotation] = STATE(1491), - [sym_type] = STATE(1605), - [sym_constructor_type] = STATE(1492), - [sym_primary_type] = STATE(1493), - [sym_template_literal_type] = STATE(1490), - [sym_infer_type] = STATE(1492), - [sym_conditional_type] = STATE(1490), - [sym_generic_type] = STATE(1490), - [sym_type_query] = STATE(1490), - [sym_index_type_query] = STATE(1490), - [sym_lookup_type] = STATE(1490), - [sym_literal_type] = STATE(1490), - [sym__number] = STATE(1494), - [sym_existential_type] = STATE(1490), - [sym_flow_maybe_type] = STATE(1490), - [sym_parenthesized_type] = STATE(1490), - [sym_predefined_type] = STATE(1490), - [sym_object_type] = STATE(1490), - [sym_type_parameters] = STATE(5510), - [sym_array_type] = STATE(1490), - [sym_tuple_type] = STATE(1490), - [sym_readonly_type] = STATE(1492), - [sym_union_type] = STATE(1490), - [sym_intersection_type] = STATE(1490), - [sym_function_type] = STATE(1492), - [sym_identifier] = ACTIONS(3225), - [anon_sym_STAR] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_typeof] = ACTIONS(3031), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_PIPE] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3047), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3049), - [sym_number] = ACTIONS(3051), - [sym_this] = ACTIONS(3229), - [sym_true] = ACTIONS(3055), - [sym_false] = ACTIONS(3055), - [sym_null] = ACTIONS(3055), - [sym_undefined] = ACTIONS(3055), - [anon_sym_readonly] = ACTIONS(3057), - [anon_sym_QMARK] = ACTIONS(3059), - [anon_sym_any] = ACTIONS(3047), - [anon_sym_number] = ACTIONS(3047), - [anon_sym_boolean] = ACTIONS(3047), - [anon_sym_string] = ACTIONS(3047), - [anon_sym_symbol] = ACTIONS(3047), - [anon_sym_object] = ACTIONS(3047), - [anon_sym_abstract] = ACTIONS(3061), - [anon_sym_infer] = ACTIONS(3065), - [anon_sym_keyof] = ACTIONS(3067), - [anon_sym_unique] = ACTIONS(3069), - [anon_sym_unknown] = ACTIONS(3047), - [anon_sym_never] = ACTIONS(3047), - [anon_sym_LBRACE_PIPE] = ACTIONS(3071), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(5089), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2919), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1112] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(2955), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(4648), + [sym_nested_identifier] = STATE(5899), + [sym_string] = STATE(1864), + [sym_formal_parameters] = STATE(5723), + [sym_nested_type_identifier] = STATE(1843), + [sym__type_query_member_expression_in_type_annotation] = STATE(1844), + [sym__type_query_call_expression_in_type_annotation] = STATE(1866), + [sym_type] = STATE(1889), + [sym_constructor_type] = STATE(1867), + [sym_primary_type] = STATE(1868), + [sym_template_literal_type] = STATE(1863), + [sym_infer_type] = STATE(1867), + [sym_conditional_type] = STATE(1863), + [sym_generic_type] = STATE(1863), + [sym_type_query] = STATE(1863), + [sym_index_type_query] = STATE(1863), + [sym_lookup_type] = STATE(1863), + [sym_literal_type] = STATE(1863), + [sym__number] = STATE(1869), + [sym_existential_type] = STATE(1863), + [sym_flow_maybe_type] = STATE(1863), + [sym_parenthesized_type] = STATE(1863), + [sym_predefined_type] = STATE(1863), + [sym_object_type] = STATE(1863), + [sym_type_parameters] = STATE(5380), + [sym_array_type] = STATE(1863), + [sym_tuple_type] = STATE(1863), + [sym_readonly_type] = STATE(1867), + [sym_union_type] = STATE(1863), + [sym_intersection_type] = STATE(1863), + [sym_function_type] = STATE(1867), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(2998), + [anon_sym_LBRACE] = ACTIONS(3000), + [anon_sym_typeof] = ACTIONS(3002), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3004), + [anon_sym_LPAREN] = ACTIONS(3006), + [anon_sym_LBRACK] = ACTIONS(3008), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_PIPE] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3016), + [anon_sym_DASH] = ACTIONS(3016), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(3018), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3020), + [sym_number] = ACTIONS(3022), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(3026), + [sym_false] = ACTIONS(3026), + [sym_null] = ACTIONS(3026), + [sym_undefined] = ACTIONS(3026), + [anon_sym_readonly] = ACTIONS(3028), + [anon_sym_QMARK] = ACTIONS(3030), + [anon_sym_any] = ACTIONS(3018), + [anon_sym_number] = ACTIONS(3018), + [anon_sym_boolean] = ACTIONS(3018), + [anon_sym_string] = ACTIONS(3018), + [anon_sym_symbol] = ACTIONS(3018), + [anon_sym_object] = ACTIONS(3018), + [anon_sym_abstract] = ACTIONS(3032), + [anon_sym_infer] = ACTIONS(3036), + [anon_sym_keyof] = ACTIONS(3038), + [anon_sym_unique] = ACTIONS(3040), + [anon_sym_unknown] = ACTIONS(3018), + [anon_sym_never] = ACTIONS(3018), + [anon_sym_LBRACE_PIPE] = ACTIONS(3042), [sym_html_comment] = ACTIONS(5), }, [1113] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(2956), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(4564), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1114] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4517), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(793), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(215), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5899), + [sym_string] = STATE(1864), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(1843), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(4787), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(1890), + [sym_template_literal_type] = STATE(1863), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(1863), + [sym_generic_type] = STATE(1863), + [sym_type_query] = STATE(1863), + [sym_index_type_query] = STATE(1863), + [sym_lookup_type] = STATE(1863), + [sym_literal_type] = STATE(1863), + [sym__number] = STATE(1869), + [sym_existential_type] = STATE(1863), + [sym_flow_maybe_type] = STATE(1863), + [sym_parenthesized_type] = STATE(1863), + [sym_predefined_type] = STATE(1863), + [sym_object_type] = STATE(1863), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(1863), + [sym_tuple_type] = STATE(1863), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(1863), + [sym_intersection_type] = STATE(1863), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(2998), + [anon_sym_LBRACE] = ACTIONS(3000), + [anon_sym_typeof] = ACTIONS(3002), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3004), + [anon_sym_LPAREN] = ACTIONS(3006), + [anon_sym_LBRACK] = ACTIONS(3008), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_PIPE] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3016), + [anon_sym_DASH] = ACTIONS(3016), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(3018), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3020), + [sym_number] = ACTIONS(3022), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(3026), + [sym_false] = ACTIONS(3026), + [sym_null] = ACTIONS(3026), + [sym_undefined] = ACTIONS(3026), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(3030), + [anon_sym_any] = ACTIONS(3018), + [anon_sym_number] = ACTIONS(3018), + [anon_sym_boolean] = ACTIONS(3018), + [anon_sym_string] = ACTIONS(3018), + [anon_sym_symbol] = ACTIONS(3018), + [anon_sym_object] = ACTIONS(3018), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(3038), + [anon_sym_unique] = ACTIONS(3040), + [anon_sym_unknown] = ACTIONS(3018), + [anon_sym_never] = ACTIONS(3018), + [anon_sym_LBRACE_PIPE] = ACTIONS(3042), [sym_html_comment] = ACTIONS(5), }, [1115] = { - [sym_import] = STATE(4668), - [sym_nested_identifier] = STATE(5986), - [sym_string] = STATE(3335), - [sym_formal_parameters] = STATE(5649), - [sym_nested_type_identifier] = STATE(3222), - [sym__type_query_member_expression_in_type_annotation] = STATE(3169), - [sym__type_query_call_expression_in_type_annotation] = STATE(3271), - [sym_type] = STATE(3387), - [sym_constructor_type] = STATE(3347), - [sym_primary_type] = STATE(3352), - [sym_template_literal_type] = STATE(3330), - [sym_infer_type] = STATE(3347), - [sym_conditional_type] = STATE(3330), - [sym_generic_type] = STATE(3330), - [sym_type_query] = STATE(3330), - [sym_index_type_query] = STATE(3330), - [sym_lookup_type] = STATE(3330), - [sym_literal_type] = STATE(3330), - [sym__number] = STATE(3353), - [sym_existential_type] = STATE(3330), - [sym_flow_maybe_type] = STATE(3330), - [sym_parenthesized_type] = STATE(3330), - [sym_predefined_type] = STATE(3330), - [sym_object_type] = STATE(3330), - [sym_type_parameters] = STATE(5245), - [sym_array_type] = STATE(3330), - [sym_tuple_type] = STATE(3330), - [sym_readonly_type] = STATE(3347), - [sym_union_type] = STATE(3330), - [sym_intersection_type] = STATE(3330), - [sym_function_type] = STATE(3347), - [sym_identifier] = ACTIONS(3221), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3119), - [anon_sym_typeof] = ACTIONS(3121), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_DQUOTE] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3131), - [anon_sym_new] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3141), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3143), - [sym_number] = ACTIONS(3145), - [sym_this] = ACTIONS(3223), - [sym_true] = ACTIONS(3149), - [sym_false] = ACTIONS(3149), - [sym_null] = ACTIONS(3149), - [sym_undefined] = ACTIONS(3149), - [anon_sym_readonly] = ACTIONS(3151), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_any] = ACTIONS(3141), - [anon_sym_number] = ACTIONS(3141), - [anon_sym_boolean] = ACTIONS(3141), - [anon_sym_string] = ACTIONS(3141), - [anon_sym_symbol] = ACTIONS(3141), - [anon_sym_object] = ACTIONS(3141), - [anon_sym_abstract] = ACTIONS(3155), - [anon_sym_infer] = ACTIONS(3159), - [anon_sym_keyof] = ACTIONS(3161), - [anon_sym_unique] = ACTIONS(3163), - [anon_sym_unknown] = ACTIONS(3141), - [anon_sym_never] = ACTIONS(3141), - [anon_sym_LBRACE_PIPE] = ACTIONS(3165), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5899), + [sym_string] = STATE(1864), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(1843), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(4787), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(1892), + [sym_template_literal_type] = STATE(1863), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(1863), + [sym_generic_type] = STATE(1863), + [sym_type_query] = STATE(1863), + [sym_index_type_query] = STATE(1863), + [sym_lookup_type] = STATE(1863), + [sym_literal_type] = STATE(1863), + [sym__number] = STATE(1869), + [sym_existential_type] = STATE(1863), + [sym_flow_maybe_type] = STATE(1863), + [sym_parenthesized_type] = STATE(1863), + [sym_predefined_type] = STATE(1863), + [sym_object_type] = STATE(1863), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(1863), + [sym_tuple_type] = STATE(1863), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(1863), + [sym_intersection_type] = STATE(1863), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(2998), + [anon_sym_LBRACE] = ACTIONS(3000), + [anon_sym_typeof] = ACTIONS(3002), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3004), + [anon_sym_LPAREN] = ACTIONS(3006), + [anon_sym_LBRACK] = ACTIONS(3008), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_PIPE] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3016), + [anon_sym_DASH] = ACTIONS(3016), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(3018), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3020), + [sym_number] = ACTIONS(3022), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(3026), + [sym_false] = ACTIONS(3026), + [sym_null] = ACTIONS(3026), + [sym_undefined] = ACTIONS(3026), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(3030), + [anon_sym_any] = ACTIONS(3018), + [anon_sym_number] = ACTIONS(3018), + [anon_sym_boolean] = ACTIONS(3018), + [anon_sym_string] = ACTIONS(3018), + [anon_sym_symbol] = ACTIONS(3018), + [anon_sym_object] = ACTIONS(3018), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(3038), + [anon_sym_unique] = ACTIONS(3040), + [anon_sym_unknown] = ACTIONS(3018), + [anon_sym_never] = ACTIONS(3018), + [anon_sym_LBRACE_PIPE] = ACTIONS(3042), [sym_html_comment] = ACTIONS(5), }, [1116] = { - [sym_import] = STATE(4668), - [sym_nested_identifier] = STATE(5986), - [sym_string] = STATE(3335), - [sym_formal_parameters] = STATE(5649), - [sym_nested_type_identifier] = STATE(3222), - [sym__type_query_member_expression_in_type_annotation] = STATE(3169), - [sym__type_query_call_expression_in_type_annotation] = STATE(3271), - [sym_type] = STATE(3389), - [sym_constructor_type] = STATE(3347), - [sym_primary_type] = STATE(3352), - [sym_template_literal_type] = STATE(3330), - [sym_infer_type] = STATE(3347), - [sym_conditional_type] = STATE(3330), - [sym_generic_type] = STATE(3330), - [sym_type_query] = STATE(3330), - [sym_index_type_query] = STATE(3330), - [sym_lookup_type] = STATE(3330), - [sym_literal_type] = STATE(3330), - [sym__number] = STATE(3353), - [sym_existential_type] = STATE(3330), - [sym_flow_maybe_type] = STATE(3330), - [sym_parenthesized_type] = STATE(3330), - [sym_predefined_type] = STATE(3330), - [sym_object_type] = STATE(3330), - [sym_type_parameters] = STATE(5245), - [sym_array_type] = STATE(3330), - [sym_tuple_type] = STATE(3330), - [sym_readonly_type] = STATE(3347), - [sym_union_type] = STATE(3330), - [sym_intersection_type] = STATE(3330), - [sym_function_type] = STATE(3347), - [sym_identifier] = ACTIONS(3221), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3119), - [anon_sym_typeof] = ACTIONS(3121), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_DQUOTE] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3131), - [anon_sym_new] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3141), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3143), - [sym_number] = ACTIONS(3145), - [sym_this] = ACTIONS(3223), - [sym_true] = ACTIONS(3149), - [sym_false] = ACTIONS(3149), - [sym_null] = ACTIONS(3149), - [sym_undefined] = ACTIONS(3149), - [anon_sym_readonly] = ACTIONS(3151), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_any] = ACTIONS(3141), - [anon_sym_number] = ACTIONS(3141), - [anon_sym_boolean] = ACTIONS(3141), - [anon_sym_string] = ACTIONS(3141), - [anon_sym_symbol] = ACTIONS(3141), - [anon_sym_object] = ACTIONS(3141), - [anon_sym_abstract] = ACTIONS(3155), - [anon_sym_infer] = ACTIONS(3159), - [anon_sym_keyof] = ACTIONS(3161), - [anon_sym_unique] = ACTIONS(3163), - [anon_sym_unknown] = ACTIONS(3141), - [anon_sym_never] = ACTIONS(3141), - [anon_sym_LBRACE_PIPE] = ACTIONS(3165), + [sym_import] = STATE(4924), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5904), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3376), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(3800), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5433), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(2966), + [anon_sym_typeof] = ACTIONS(2968), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(2970), + [anon_sym_SQUOTE] = ACTIONS(2972), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_AMP] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(2982), + [anon_sym_QMARK] = ACTIONS(2984), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(2986), + [anon_sym_infer] = ACTIONS(2990), + [anon_sym_keyof] = ACTIONS(2992), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(2994), [sym_html_comment] = ACTIONS(5), }, [1117] = { - [sym_import] = STATE(5169), - [sym_nested_identifier] = STATE(5618), - [sym_string] = STATE(3256), - [sym_formal_parameters] = STATE(5839), - [sym_nested_type_identifier] = STATE(3108), - [sym__type_query_member_expression_in_type_annotation] = STATE(3044), - [sym__type_query_call_expression_in_type_annotation] = STATE(3176), - [sym_type] = STATE(4465), - [sym_constructor_type] = STATE(3261), - [sym_primary_type] = STATE(3262), - [sym_template_literal_type] = STATE(3255), - [sym_infer_type] = STATE(3261), - [sym_conditional_type] = STATE(3255), - [sym_generic_type] = STATE(3255), - [sym_type_query] = STATE(3255), - [sym_index_type_query] = STATE(3255), - [sym_lookup_type] = STATE(3255), - [sym_literal_type] = STATE(3255), - [sym__number] = STATE(3188), - [sym_existential_type] = STATE(3255), - [sym_flow_maybe_type] = STATE(3255), - [sym_parenthesized_type] = STATE(3255), - [sym_predefined_type] = STATE(3255), - [sym_object_type] = STATE(3255), - [sym_type_parameters] = STATE(5399), - [sym_array_type] = STATE(3255), - [sym_tuple_type] = STATE(3255), - [sym_readonly_type] = STATE(3261), - [sym_union_type] = STATE(3255), - [sym_intersection_type] = STATE(3255), - [sym_function_type] = STATE(3261), - [sym_identifier] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_typeof] = ACTIONS(1582), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(1036), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1600), - [sym_number] = ACTIONS(1602), - [sym_this] = ACTIONS(1604), - [sym_true] = ACTIONS(1606), - [sym_false] = ACTIONS(1606), - [sym_null] = ACTIONS(1606), - [sym_undefined] = ACTIONS(1606), - [anon_sym_readonly] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1024), - [anon_sym_any] = ACTIONS(1036), - [anon_sym_number] = ACTIONS(1036), - [anon_sym_boolean] = ACTIONS(1036), - [anon_sym_string] = ACTIONS(1036), - [anon_sym_symbol] = ACTIONS(1036), - [anon_sym_object] = ACTIONS(1036), - [anon_sym_abstract] = ACTIONS(1028), - [anon_sym_infer] = ACTIONS(1030), - [anon_sym_keyof] = ACTIONS(1032), - [anon_sym_unique] = ACTIONS(1034), - [anon_sym_unknown] = ACTIONS(1036), - [anon_sym_never] = ACTIONS(1036), - [anon_sym_LBRACE_PIPE] = ACTIONS(1038), + [sym_import] = STATE(4648), + [sym_nested_identifier] = STATE(5899), + [sym_string] = STATE(1864), + [sym_formal_parameters] = STATE(5723), + [sym_nested_type_identifier] = STATE(1843), + [sym__type_query_member_expression_in_type_annotation] = STATE(1844), + [sym__type_query_call_expression_in_type_annotation] = STATE(1866), + [sym_type] = STATE(1921), + [sym_constructor_type] = STATE(1867), + [sym_primary_type] = STATE(1868), + [sym_template_literal_type] = STATE(1863), + [sym_infer_type] = STATE(1867), + [sym_conditional_type] = STATE(1863), + [sym_generic_type] = STATE(1863), + [sym_type_query] = STATE(1863), + [sym_index_type_query] = STATE(1863), + [sym_lookup_type] = STATE(1863), + [sym_literal_type] = STATE(1863), + [sym__number] = STATE(1869), + [sym_existential_type] = STATE(1863), + [sym_flow_maybe_type] = STATE(1863), + [sym_parenthesized_type] = STATE(1863), + [sym_predefined_type] = STATE(1863), + [sym_object_type] = STATE(1863), + [sym_type_parameters] = STATE(5380), + [sym_array_type] = STATE(1863), + [sym_tuple_type] = STATE(1863), + [sym_readonly_type] = STATE(1867), + [sym_union_type] = STATE(1863), + [sym_intersection_type] = STATE(1863), + [sym_function_type] = STATE(1867), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(2998), + [anon_sym_LBRACE] = ACTIONS(3000), + [anon_sym_typeof] = ACTIONS(3002), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3004), + [anon_sym_LPAREN] = ACTIONS(3006), + [anon_sym_LBRACK] = ACTIONS(3008), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_PIPE] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3016), + [anon_sym_DASH] = ACTIONS(3016), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(3018), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3020), + [sym_number] = ACTIONS(3022), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(3026), + [sym_false] = ACTIONS(3026), + [sym_null] = ACTIONS(3026), + [sym_undefined] = ACTIONS(3026), + [anon_sym_readonly] = ACTIONS(3028), + [anon_sym_QMARK] = ACTIONS(3030), + [anon_sym_any] = ACTIONS(3018), + [anon_sym_number] = ACTIONS(3018), + [anon_sym_boolean] = ACTIONS(3018), + [anon_sym_string] = ACTIONS(3018), + [anon_sym_symbol] = ACTIONS(3018), + [anon_sym_object] = ACTIONS(3018), + [anon_sym_abstract] = ACTIONS(3032), + [anon_sym_infer] = ACTIONS(3036), + [anon_sym_keyof] = ACTIONS(3038), + [anon_sym_unique] = ACTIONS(3040), + [anon_sym_unknown] = ACTIONS(3018), + [anon_sym_never] = ACTIONS(3018), + [anon_sym_LBRACE_PIPE] = ACTIONS(3042), [sym_html_comment] = ACTIONS(5), }, [1118] = { - [sym_import] = STATE(4668), - [sym_nested_identifier] = STATE(5986), - [sym_string] = STATE(3335), - [sym_formal_parameters] = STATE(5649), - [sym_nested_type_identifier] = STATE(3222), - [sym__type_query_member_expression_in_type_annotation] = STATE(3169), - [sym__type_query_call_expression_in_type_annotation] = STATE(3271), - [sym_type] = STATE(3392), - [sym_constructor_type] = STATE(3347), - [sym_primary_type] = STATE(3352), - [sym_template_literal_type] = STATE(3330), - [sym_infer_type] = STATE(3347), - [sym_conditional_type] = STATE(3330), - [sym_generic_type] = STATE(3330), - [sym_type_query] = STATE(3330), - [sym_index_type_query] = STATE(3330), - [sym_lookup_type] = STATE(3330), - [sym_literal_type] = STATE(3330), - [sym__number] = STATE(3353), - [sym_existential_type] = STATE(3330), - [sym_flow_maybe_type] = STATE(3330), - [sym_parenthesized_type] = STATE(3330), - [sym_predefined_type] = STATE(3330), - [sym_object_type] = STATE(3330), - [sym_type_parameters] = STATE(5245), - [sym_array_type] = STATE(3330), - [sym_tuple_type] = STATE(3330), - [sym_readonly_type] = STATE(3347), - [sym_union_type] = STATE(3330), - [sym_intersection_type] = STATE(3330), - [sym_function_type] = STATE(3347), - [sym_identifier] = ACTIONS(3221), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3119), - [anon_sym_typeof] = ACTIONS(3121), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_DQUOTE] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3131), - [anon_sym_new] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3141), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3143), - [sym_number] = ACTIONS(3145), - [sym_this] = ACTIONS(3223), - [sym_true] = ACTIONS(3149), - [sym_false] = ACTIONS(3149), - [sym_null] = ACTIONS(3149), - [sym_undefined] = ACTIONS(3149), - [anon_sym_readonly] = ACTIONS(3151), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_any] = ACTIONS(3141), - [anon_sym_number] = ACTIONS(3141), - [anon_sym_boolean] = ACTIONS(3141), - [anon_sym_string] = ACTIONS(3141), - [anon_sym_symbol] = ACTIONS(3141), - [anon_sym_object] = ACTIONS(3141), - [anon_sym_abstract] = ACTIONS(3155), - [anon_sym_infer] = ACTIONS(3159), - [anon_sym_keyof] = ACTIONS(3161), - [anon_sym_unique] = ACTIONS(3163), - [anon_sym_unknown] = ACTIONS(3141), - [anon_sym_never] = ACTIONS(3141), - [anon_sym_LBRACE_PIPE] = ACTIONS(3165), + [sym_import] = STATE(4648), + [sym_nested_identifier] = STATE(5899), + [sym_string] = STATE(1864), + [sym_formal_parameters] = STATE(5723), + [sym_nested_type_identifier] = STATE(1843), + [sym__type_query_member_expression_in_type_annotation] = STATE(1844), + [sym__type_query_call_expression_in_type_annotation] = STATE(1866), + [sym_type] = STATE(1922), + [sym_constructor_type] = STATE(1867), + [sym_primary_type] = STATE(1868), + [sym_template_literal_type] = STATE(1863), + [sym_infer_type] = STATE(1867), + [sym_conditional_type] = STATE(1863), + [sym_generic_type] = STATE(1863), + [sym_type_query] = STATE(1863), + [sym_index_type_query] = STATE(1863), + [sym_lookup_type] = STATE(1863), + [sym_literal_type] = STATE(1863), + [sym__number] = STATE(1869), + [sym_existential_type] = STATE(1863), + [sym_flow_maybe_type] = STATE(1863), + [sym_parenthesized_type] = STATE(1863), + [sym_predefined_type] = STATE(1863), + [sym_object_type] = STATE(1863), + [sym_type_parameters] = STATE(5380), + [sym_array_type] = STATE(1863), + [sym_tuple_type] = STATE(1863), + [sym_readonly_type] = STATE(1867), + [sym_union_type] = STATE(1863), + [sym_intersection_type] = STATE(1863), + [sym_function_type] = STATE(1867), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(2998), + [anon_sym_LBRACE] = ACTIONS(3000), + [anon_sym_typeof] = ACTIONS(3002), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3004), + [anon_sym_LPAREN] = ACTIONS(3006), + [anon_sym_LBRACK] = ACTIONS(3008), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_PIPE] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3016), + [anon_sym_DASH] = ACTIONS(3016), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(3018), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3020), + [sym_number] = ACTIONS(3022), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(3026), + [sym_false] = ACTIONS(3026), + [sym_null] = ACTIONS(3026), + [sym_undefined] = ACTIONS(3026), + [anon_sym_readonly] = ACTIONS(3028), + [anon_sym_QMARK] = ACTIONS(3030), + [anon_sym_any] = ACTIONS(3018), + [anon_sym_number] = ACTIONS(3018), + [anon_sym_boolean] = ACTIONS(3018), + [anon_sym_string] = ACTIONS(3018), + [anon_sym_symbol] = ACTIONS(3018), + [anon_sym_object] = ACTIONS(3018), + [anon_sym_abstract] = ACTIONS(3032), + [anon_sym_infer] = ACTIONS(3036), + [anon_sym_keyof] = ACTIONS(3038), + [anon_sym_unique] = ACTIONS(3040), + [anon_sym_unknown] = ACTIONS(3018), + [anon_sym_never] = ACTIONS(3018), + [anon_sym_LBRACE_PIPE] = ACTIONS(3042), [sym_html_comment] = ACTIONS(5), }, [1119] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4587), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(4786), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5658), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3263), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(4504), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5559), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1120] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4590), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(5115), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5754), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(2896), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(4508), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5487), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(764), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1121] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4593), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(4786), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5658), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3263), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(4576), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5559), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1122] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4599), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(4786), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5658), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3263), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(4580), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5559), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1123] = { - [sym_import] = STATE(4764), - [sym_nested_identifier] = STATE(5937), - [sym_string] = STATE(2990), - [sym_formal_parameters] = STATE(5670), - [sym_nested_type_identifier] = STATE(2884), - [sym__type_query_member_expression_in_type_annotation] = STATE(3275), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4610), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(2921), - [sym_template_literal_type] = STATE(2988), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(2988), - [sym_generic_type] = STATE(2988), - [sym_type_query] = STATE(2988), - [sym_index_type_query] = STATE(2988), - [sym_lookup_type] = STATE(2988), - [sym_literal_type] = STATE(2988), - [sym__number] = STATE(2922), - [sym_existential_type] = STATE(2988), - [sym_flow_maybe_type] = STATE(2988), - [sym_parenthesized_type] = STATE(2988), - [sym_predefined_type] = STATE(2988), - [sym_object_type] = STATE(2988), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2988), - [sym_tuple_type] = STATE(2988), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(2988), - [sym_intersection_type] = STATE(2988), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_typeof] = ACTIONS(1502), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1612), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(642), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(219), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1520), - [sym_number] = ACTIONS(1522), - [sym_this] = ACTIONS(1524), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_null] = ACTIONS(1526), - [sym_undefined] = ACTIONS(1526), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_any] = ACTIONS(219), - [anon_sym_number] = ACTIONS(219), - [anon_sym_boolean] = ACTIONS(219), - [anon_sym_string] = ACTIONS(219), - [anon_sym_symbol] = ACTIONS(219), - [anon_sym_object] = ACTIONS(219), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_infer] = ACTIONS(668), - [anon_sym_keyof] = ACTIONS(670), - [anon_sym_unique] = ACTIONS(217), - [anon_sym_unknown] = ACTIONS(219), - [anon_sym_never] = ACTIONS(219), - [anon_sym_LBRACE_PIPE] = ACTIONS(221), + [sym_import] = STATE(4786), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5658), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3263), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(4583), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5559), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1124] = { - [sym_import] = STATE(5212), - [sym_nested_identifier] = STATE(5986), - [sym_string] = STATE(3335), - [sym_formal_parameters] = STATE(5939), - [sym_nested_type_identifier] = STATE(3222), - [sym__type_query_member_expression_in_type_annotation] = STATE(2898), - [sym__type_query_call_expression_in_type_annotation] = STATE(2901), - [sym_type] = STATE(4678), - [sym_constructor_type] = STATE(2919), - [sym_primary_type] = STATE(3395), - [sym_template_literal_type] = STATE(3330), - [sym_infer_type] = STATE(2919), - [sym_conditional_type] = STATE(3330), - [sym_generic_type] = STATE(3330), - [sym_type_query] = STATE(3330), - [sym_index_type_query] = STATE(3330), - [sym_lookup_type] = STATE(3330), - [sym_literal_type] = STATE(3330), - [sym__number] = STATE(3353), - [sym_existential_type] = STATE(3330), - [sym_flow_maybe_type] = STATE(3330), - [sym_parenthesized_type] = STATE(3330), - [sym_predefined_type] = STATE(3330), - [sym_object_type] = STATE(3330), - [sym_type_parameters] = STATE(5572), - [sym_array_type] = STATE(3330), - [sym_tuple_type] = STATE(3330), - [sym_readonly_type] = STATE(2919), - [sym_union_type] = STATE(3330), - [sym_intersection_type] = STATE(3330), - [sym_function_type] = STATE(2919), - [sym_identifier] = ACTIONS(3221), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3119), - [anon_sym_typeof] = ACTIONS(3121), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_DQUOTE] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3131), - [anon_sym_new] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(3141), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3143), - [sym_number] = ACTIONS(3145), - [sym_this] = ACTIONS(3223), - [sym_true] = ACTIONS(3149), - [sym_false] = ACTIONS(3149), - [sym_null] = ACTIONS(3149), - [sym_undefined] = ACTIONS(3149), - [anon_sym_readonly] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_any] = ACTIONS(3141), - [anon_sym_number] = ACTIONS(3141), - [anon_sym_boolean] = ACTIONS(3141), - [anon_sym_string] = ACTIONS(3141), - [anon_sym_symbol] = ACTIONS(3141), - [anon_sym_object] = ACTIONS(3141), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_infer] = ACTIONS(213), - [anon_sym_keyof] = ACTIONS(3161), - [anon_sym_unique] = ACTIONS(3163), - [anon_sym_unknown] = ACTIONS(3141), - [anon_sym_never] = ACTIONS(3141), - [anon_sym_LBRACE_PIPE] = ACTIONS(3165), + [sym_import] = STATE(4786), + [sym_nested_identifier] = STATE(5753), + [sym_string] = STATE(2926), + [sym_formal_parameters] = STATE(5658), + [sym_nested_type_identifier] = STATE(2885), + [sym__type_query_member_expression_in_type_annotation] = STATE(3263), + [sym__type_query_call_expression_in_type_annotation] = STATE(2895), + [sym_type] = STATE(4595), + [sym_constructor_type] = STATE(2931), + [sym_primary_type] = STATE(2932), + [sym_template_literal_type] = STATE(2981), + [sym_infer_type] = STATE(2931), + [sym_conditional_type] = STATE(2981), + [sym_generic_type] = STATE(2981), + [sym_type_query] = STATE(2981), + [sym_index_type_query] = STATE(2981), + [sym_lookup_type] = STATE(2981), + [sym_literal_type] = STATE(2981), + [sym__number] = STATE(2935), + [sym_existential_type] = STATE(2981), + [sym_flow_maybe_type] = STATE(2981), + [sym_parenthesized_type] = STATE(2981), + [sym_predefined_type] = STATE(2981), + [sym_object_type] = STATE(2981), + [sym_type_parameters] = STATE(5559), + [sym_array_type] = STATE(2981), + [sym_tuple_type] = STATE(2981), + [sym_readonly_type] = STATE(2931), + [sym_union_type] = STATE(2981), + [sym_intersection_type] = STATE(2981), + [sym_function_type] = STATE(2931), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1607), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(216), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(657), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(661), + [anon_sym_infer] = ACTIONS(663), + [anon_sym_keyof] = ACTIONS(665), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1125] = { - [sym_export_statement] = STATE(3902), - [sym_object_pattern] = STATE(5780), - [sym_object_assignment_pattern] = STATE(4986), - [sym_array_pattern] = STATE(5780), - [sym__call_signature] = STATE(4416), - [sym__destructuring_pattern] = STATE(5780), - [sym_spread_element] = STATE(4829), - [sym_string] = STATE(3056), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3276), - [sym_rest_pattern] = STATE(4986), - [sym_method_definition] = STATE(4829), - [sym_pair] = STATE(4829), - [sym_pair_pattern] = STATE(4986), - [sym__property_name] = STATE(3056), - [sym_computed_property_name] = STATE(3056), - [sym_method_signature] = STATE(3902), - [sym_accessibility_modifier] = STATE(2727), - [sym_override_modifier] = STATE(2757), - [sym_call_signature] = STATE(3902), - [sym_property_signature] = STATE(3902), - [sym_type_parameters] = STATE(5374), - [sym_construct_signature] = STATE(3902), - [sym_index_signature] = STATE(3902), - [aux_sym_export_statement_repeat1] = STATE(4535), - [aux_sym_object_repeat1] = STATE(4830), - [aux_sym_object_pattern_repeat1] = STATE(5037), - [sym_identifier] = ACTIONS(3237), - [anon_sym_export] = ACTIONS(3239), - [anon_sym_STAR] = ACTIONS(3241), - [anon_sym_type] = ACTIONS(3237), - [anon_sym_namespace] = ACTIONS(3237), - [anon_sym_LBRACE] = ACTIONS(3243), - [anon_sym_COMMA] = ACTIONS(3245), - [anon_sym_RBRACE] = ACTIONS(3247), - [anon_sym_let] = ACTIONS(3237), - [anon_sym_LPAREN] = ACTIONS(3249), - [anon_sym_SEMI] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_async] = ACTIONS(3255), - [anon_sym_new] = ACTIONS(3257), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(3259), - [anon_sym_DASH] = ACTIONS(3259), - [anon_sym_LT] = ACTIONS(2537), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3261), - [sym_private_property_identifier] = ACTIONS(3261), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3263), - [anon_sym_readonly] = ACTIONS(3265), - [anon_sym_get] = ACTIONS(3267), - [anon_sym_set] = ACTIONS(3267), - [anon_sym_declare] = ACTIONS(3237), - [anon_sym_public] = ACTIONS(3269), - [anon_sym_private] = ACTIONS(3269), - [anon_sym_protected] = ACTIONS(3269), - [anon_sym_override] = ACTIONS(3271), - [anon_sym_module] = ACTIONS(3237), - [anon_sym_any] = ACTIONS(3237), - [anon_sym_number] = ACTIONS(3237), - [anon_sym_boolean] = ACTIONS(3237), - [anon_sym_string] = ACTIONS(3237), - [anon_sym_symbol] = ACTIONS(3237), - [anon_sym_object] = ACTIONS(3237), - [anon_sym_abstract] = ACTIONS(3273), - [anon_sym_PIPE_RBRACE] = ACTIONS(3275), + [sym_export_statement] = STATE(3906), + [sym_object_pattern] = STATE(5891), + [sym_object_assignment_pattern] = STATE(4665), + [sym_array_pattern] = STATE(5891), + [sym__call_signature] = STATE(4357), + [sym__destructuring_pattern] = STATE(5891), + [sym_spread_element] = STATE(4841), + [sym_string] = STATE(3054), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3267), + [sym_rest_pattern] = STATE(4665), + [sym_method_definition] = STATE(4841), + [sym_pair] = STATE(4841), + [sym_pair_pattern] = STATE(4665), + [sym__property_name] = STATE(3054), + [sym_computed_property_name] = STATE(3054), + [sym_method_signature] = STATE(3906), + [sym_accessibility_modifier] = STATE(2728), + [sym_override_modifier] = STATE(2744), + [sym_call_signature] = STATE(3906), + [sym_property_signature] = STATE(3906), + [sym_type_parameters] = STATE(5435), + [sym_construct_signature] = STATE(3906), + [sym_index_signature] = STATE(3906), + [aux_sym_export_statement_repeat1] = STATE(4467), + [aux_sym_object_repeat1] = STATE(4848), + [aux_sym_object_pattern_repeat1] = STATE(4622), + [sym_identifier] = ACTIONS(3232), + [anon_sym_export] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3236), + [anon_sym_type] = ACTIONS(3232), + [anon_sym_namespace] = ACTIONS(3232), + [anon_sym_LBRACE] = ACTIONS(3238), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3242), + [anon_sym_let] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_async] = ACTIONS(3250), + [anon_sym_new] = ACTIONS(3252), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(2478), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3256), + [sym_private_property_identifier] = ACTIONS(3256), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3258), + [anon_sym_readonly] = ACTIONS(3260), + [anon_sym_get] = ACTIONS(3262), + [anon_sym_set] = ACTIONS(3262), + [anon_sym_declare] = ACTIONS(3232), + [anon_sym_public] = ACTIONS(3264), + [anon_sym_private] = ACTIONS(3264), + [anon_sym_protected] = ACTIONS(3264), + [anon_sym_override] = ACTIONS(3266), + [anon_sym_module] = ACTIONS(3232), + [anon_sym_any] = ACTIONS(3232), + [anon_sym_number] = ACTIONS(3232), + [anon_sym_boolean] = ACTIONS(3232), + [anon_sym_string] = ACTIONS(3232), + [anon_sym_symbol] = ACTIONS(3232), + [anon_sym_object] = ACTIONS(3232), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_PIPE_RBRACE] = ACTIONS(3270), [sym_html_comment] = ACTIONS(5), }, [1126] = { - [sym_export_statement] = STATE(3902), - [sym_object_pattern] = STATE(5780), - [sym_object_assignment_pattern] = STATE(4986), - [sym_array_pattern] = STATE(5780), - [sym__call_signature] = STATE(4416), - [sym__destructuring_pattern] = STATE(5780), - [sym_spread_element] = STATE(4829), - [sym_string] = STATE(3056), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3276), - [sym_rest_pattern] = STATE(4986), - [sym_method_definition] = STATE(4829), - [sym_pair] = STATE(4829), - [sym_pair_pattern] = STATE(4986), - [sym__property_name] = STATE(3056), - [sym_computed_property_name] = STATE(3056), - [sym_method_signature] = STATE(3902), - [sym_accessibility_modifier] = STATE(2727), - [sym_override_modifier] = STATE(2757), - [sym_call_signature] = STATE(3902), - [sym_property_signature] = STATE(3902), - [sym_type_parameters] = STATE(5374), - [sym_construct_signature] = STATE(3902), - [sym_index_signature] = STATE(3902), - [aux_sym_export_statement_repeat1] = STATE(4535), - [aux_sym_object_repeat1] = STATE(4830), - [aux_sym_object_pattern_repeat1] = STATE(5037), - [sym_identifier] = ACTIONS(3277), - [anon_sym_export] = ACTIONS(3279), - [anon_sym_STAR] = ACTIONS(3241), - [anon_sym_type] = ACTIONS(3277), - [anon_sym_namespace] = ACTIONS(3277), - [anon_sym_LBRACE] = ACTIONS(3243), - [anon_sym_COMMA] = ACTIONS(3245), - [anon_sym_RBRACE] = ACTIONS(3281), - [anon_sym_let] = ACTIONS(3277), - [anon_sym_LPAREN] = ACTIONS(3249), - [anon_sym_SEMI] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_async] = ACTIONS(3283), - [anon_sym_new] = ACTIONS(3285), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(3259), - [anon_sym_DASH] = ACTIONS(3259), - [anon_sym_LT] = ACTIONS(2537), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3261), - [sym_private_property_identifier] = ACTIONS(3261), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3287), - [anon_sym_readonly] = ACTIONS(3289), - [anon_sym_get] = ACTIONS(3291), - [anon_sym_set] = ACTIONS(3291), - [anon_sym_declare] = ACTIONS(3277), - [anon_sym_public] = ACTIONS(3293), - [anon_sym_private] = ACTIONS(3293), - [anon_sym_protected] = ACTIONS(3293), - [anon_sym_override] = ACTIONS(3295), - [anon_sym_module] = ACTIONS(3277), - [anon_sym_any] = ACTIONS(3277), - [anon_sym_number] = ACTIONS(3277), - [anon_sym_boolean] = ACTIONS(3277), - [anon_sym_string] = ACTIONS(3277), - [anon_sym_symbol] = ACTIONS(3277), - [anon_sym_object] = ACTIONS(3277), - [anon_sym_abstract] = ACTIONS(3273), - [anon_sym_PIPE_RBRACE] = ACTIONS(3275), + [sym_export_statement] = STATE(3906), + [sym_object_pattern] = STATE(5891), + [sym_object_assignment_pattern] = STATE(4665), + [sym_array_pattern] = STATE(5891), + [sym__call_signature] = STATE(4357), + [sym__destructuring_pattern] = STATE(5891), + [sym_spread_element] = STATE(4841), + [sym_string] = STATE(3054), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3267), + [sym_rest_pattern] = STATE(4665), + [sym_method_definition] = STATE(4841), + [sym_pair] = STATE(4841), + [sym_pair_pattern] = STATE(4665), + [sym__property_name] = STATE(3054), + [sym_computed_property_name] = STATE(3054), + [sym_method_signature] = STATE(3906), + [sym_accessibility_modifier] = STATE(2728), + [sym_override_modifier] = STATE(2744), + [sym_call_signature] = STATE(3906), + [sym_property_signature] = STATE(3906), + [sym_type_parameters] = STATE(5435), + [sym_construct_signature] = STATE(3906), + [sym_index_signature] = STATE(3906), + [aux_sym_export_statement_repeat1] = STATE(4467), + [aux_sym_object_repeat1] = STATE(4848), + [aux_sym_object_pattern_repeat1] = STATE(4622), + [sym_identifier] = ACTIONS(3272), + [anon_sym_export] = ACTIONS(3274), + [anon_sym_STAR] = ACTIONS(3236), + [anon_sym_type] = ACTIONS(3272), + [anon_sym_namespace] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3238), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_let] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_async] = ACTIONS(3278), + [anon_sym_new] = ACTIONS(3280), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(2478), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3256), + [sym_private_property_identifier] = ACTIONS(3256), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3282), + [anon_sym_readonly] = ACTIONS(3284), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_declare] = ACTIONS(3272), + [anon_sym_public] = ACTIONS(3288), + [anon_sym_private] = ACTIONS(3288), + [anon_sym_protected] = ACTIONS(3288), + [anon_sym_override] = ACTIONS(3290), + [anon_sym_module] = ACTIONS(3272), + [anon_sym_any] = ACTIONS(3272), + [anon_sym_number] = ACTIONS(3272), + [anon_sym_boolean] = ACTIONS(3272), + [anon_sym_string] = ACTIONS(3272), + [anon_sym_symbol] = ACTIONS(3272), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_PIPE_RBRACE] = ACTIONS(3270), [sym_html_comment] = ACTIONS(5), }, [1127] = { - [sym_export_statement] = STATE(3902), - [sym_object_pattern] = STATE(5780), - [sym_object_assignment_pattern] = STATE(4986), - [sym_array_pattern] = STATE(5780), - [sym__call_signature] = STATE(4416), - [sym__destructuring_pattern] = STATE(5780), - [sym_spread_element] = STATE(4829), - [sym_string] = STATE(3056), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3276), - [sym_rest_pattern] = STATE(4986), - [sym_method_definition] = STATE(4829), - [sym_pair] = STATE(4829), - [sym_pair_pattern] = STATE(4986), - [sym__property_name] = STATE(3056), - [sym_computed_property_name] = STATE(3056), - [sym_method_signature] = STATE(3902), - [sym_accessibility_modifier] = STATE(2727), - [sym_override_modifier] = STATE(2757), - [sym_call_signature] = STATE(3902), - [sym_property_signature] = STATE(3902), - [sym_type_parameters] = STATE(5374), - [sym_construct_signature] = STATE(3902), - [sym_index_signature] = STATE(3902), - [aux_sym_export_statement_repeat1] = STATE(4535), - [aux_sym_object_repeat1] = STATE(4830), - [aux_sym_object_pattern_repeat1] = STATE(5037), - [sym_identifier] = ACTIONS(3237), - [anon_sym_export] = ACTIONS(3239), - [anon_sym_STAR] = ACTIONS(3241), - [anon_sym_type] = ACTIONS(3237), - [anon_sym_namespace] = ACTIONS(3237), - [anon_sym_LBRACE] = ACTIONS(3243), - [anon_sym_COMMA] = ACTIONS(3245), - [anon_sym_RBRACE] = ACTIONS(3297), - [anon_sym_let] = ACTIONS(3237), - [anon_sym_LPAREN] = ACTIONS(3249), - [anon_sym_SEMI] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_async] = ACTIONS(3255), - [anon_sym_new] = ACTIONS(3257), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(3259), - [anon_sym_DASH] = ACTIONS(3259), - [anon_sym_LT] = ACTIONS(2537), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3261), - [sym_private_property_identifier] = ACTIONS(3261), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3263), - [anon_sym_readonly] = ACTIONS(3265), - [anon_sym_get] = ACTIONS(3267), - [anon_sym_set] = ACTIONS(3267), - [anon_sym_declare] = ACTIONS(3237), - [anon_sym_public] = ACTIONS(3269), - [anon_sym_private] = ACTIONS(3269), - [anon_sym_protected] = ACTIONS(3269), - [anon_sym_override] = ACTIONS(3271), - [anon_sym_module] = ACTIONS(3237), - [anon_sym_any] = ACTIONS(3237), - [anon_sym_number] = ACTIONS(3237), - [anon_sym_boolean] = ACTIONS(3237), - [anon_sym_string] = ACTIONS(3237), - [anon_sym_symbol] = ACTIONS(3237), - [anon_sym_object] = ACTIONS(3237), - [anon_sym_abstract] = ACTIONS(3273), - [anon_sym_PIPE_RBRACE] = ACTIONS(3275), + [sym_export_statement] = STATE(3906), + [sym_object_pattern] = STATE(5891), + [sym_object_assignment_pattern] = STATE(4665), + [sym_array_pattern] = STATE(5891), + [sym__call_signature] = STATE(4357), + [sym__destructuring_pattern] = STATE(5891), + [sym_spread_element] = STATE(4841), + [sym_string] = STATE(3054), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3267), + [sym_rest_pattern] = STATE(4665), + [sym_method_definition] = STATE(4841), + [sym_pair] = STATE(4841), + [sym_pair_pattern] = STATE(4665), + [sym__property_name] = STATE(3054), + [sym_computed_property_name] = STATE(3054), + [sym_method_signature] = STATE(3906), + [sym_accessibility_modifier] = STATE(2728), + [sym_override_modifier] = STATE(2744), + [sym_call_signature] = STATE(3906), + [sym_property_signature] = STATE(3906), + [sym_type_parameters] = STATE(5435), + [sym_construct_signature] = STATE(3906), + [sym_index_signature] = STATE(3906), + [aux_sym_export_statement_repeat1] = STATE(4467), + [aux_sym_object_repeat1] = STATE(4848), + [aux_sym_object_pattern_repeat1] = STATE(4622), + [sym_identifier] = ACTIONS(3292), + [anon_sym_export] = ACTIONS(3294), + [anon_sym_STAR] = ACTIONS(3236), + [anon_sym_type] = ACTIONS(3292), + [anon_sym_namespace] = ACTIONS(3292), + [anon_sym_LBRACE] = ACTIONS(3238), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_let] = ACTIONS(3292), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_async] = ACTIONS(3298), + [anon_sym_new] = ACTIONS(3300), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(2478), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3256), + [sym_private_property_identifier] = ACTIONS(3256), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3302), + [anon_sym_readonly] = ACTIONS(3304), + [anon_sym_get] = ACTIONS(3306), + [anon_sym_set] = ACTIONS(3306), + [anon_sym_declare] = ACTIONS(3292), + [anon_sym_public] = ACTIONS(3308), + [anon_sym_private] = ACTIONS(3308), + [anon_sym_protected] = ACTIONS(3308), + [anon_sym_override] = ACTIONS(3310), + [anon_sym_module] = ACTIONS(3292), + [anon_sym_any] = ACTIONS(3292), + [anon_sym_number] = ACTIONS(3292), + [anon_sym_boolean] = ACTIONS(3292), + [anon_sym_string] = ACTIONS(3292), + [anon_sym_symbol] = ACTIONS(3292), + [anon_sym_object] = ACTIONS(3292), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_PIPE_RBRACE] = ACTIONS(3270), [sym_html_comment] = ACTIONS(5), }, [1128] = { - [sym_export_statement] = STATE(3907), - [sym_object_pattern] = STATE(5780), - [sym_object_assignment_pattern] = STATE(4986), - [sym_array_pattern] = STATE(5780), - [sym__call_signature] = STATE(4416), - [sym__destructuring_pattern] = STATE(5780), - [sym_spread_element] = STATE(4829), - [sym_string] = STATE(3056), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3276), - [sym_rest_pattern] = STATE(4986), - [sym_method_definition] = STATE(4829), - [sym_pair] = STATE(4829), - [sym_pair_pattern] = STATE(4986), - [sym__property_name] = STATE(3056), - [sym_computed_property_name] = STATE(3056), - [sym_method_signature] = STATE(3907), - [sym_accessibility_modifier] = STATE(2727), - [sym_override_modifier] = STATE(2757), - [sym_call_signature] = STATE(3907), - [sym_property_signature] = STATE(3907), - [sym_type_parameters] = STATE(5374), - [sym_construct_signature] = STATE(3907), - [sym_index_signature] = STATE(3907), - [aux_sym_export_statement_repeat1] = STATE(4535), - [aux_sym_object_repeat1] = STATE(4830), - [aux_sym_object_pattern_repeat1] = STATE(5037), - [sym_identifier] = ACTIONS(3299), - [anon_sym_export] = ACTIONS(3301), - [anon_sym_STAR] = ACTIONS(3241), - [anon_sym_type] = ACTIONS(3299), - [anon_sym_namespace] = ACTIONS(3299), - [anon_sym_LBRACE] = ACTIONS(3243), - [anon_sym_COMMA] = ACTIONS(3303), - [anon_sym_RBRACE] = ACTIONS(3305), - [anon_sym_let] = ACTIONS(3299), - [anon_sym_LPAREN] = ACTIONS(3249), - [anon_sym_SEMI] = ACTIONS(3307), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_async] = ACTIONS(3309), - [anon_sym_new] = ACTIONS(3311), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(3259), - [anon_sym_DASH] = ACTIONS(3259), - [anon_sym_LT] = ACTIONS(2537), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3261), - [sym_private_property_identifier] = ACTIONS(3261), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3313), - [anon_sym_readonly] = ACTIONS(3315), - [anon_sym_get] = ACTIONS(3317), - [anon_sym_set] = ACTIONS(3317), - [anon_sym_declare] = ACTIONS(3299), - [anon_sym_public] = ACTIONS(3319), - [anon_sym_private] = ACTIONS(3319), - [anon_sym_protected] = ACTIONS(3319), - [anon_sym_override] = ACTIONS(3321), - [anon_sym_module] = ACTIONS(3299), - [anon_sym_any] = ACTIONS(3299), - [anon_sym_number] = ACTIONS(3299), - [anon_sym_boolean] = ACTIONS(3299), - [anon_sym_string] = ACTIONS(3299), - [anon_sym_symbol] = ACTIONS(3299), - [anon_sym_object] = ACTIONS(3299), - [anon_sym_abstract] = ACTIONS(3273), - [anon_sym_PIPE_RBRACE] = ACTIONS(3323), + [sym_export_statement] = STATE(3906), + [sym_object_pattern] = STATE(5891), + [sym_object_assignment_pattern] = STATE(4665), + [sym_array_pattern] = STATE(5891), + [sym__call_signature] = STATE(4357), + [sym__destructuring_pattern] = STATE(5891), + [sym_spread_element] = STATE(4841), + [sym_string] = STATE(3054), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3267), + [sym_rest_pattern] = STATE(4665), + [sym_method_definition] = STATE(4841), + [sym_pair] = STATE(4841), + [sym_pair_pattern] = STATE(4665), + [sym__property_name] = STATE(3054), + [sym_computed_property_name] = STATE(3054), + [sym_method_signature] = STATE(3906), + [sym_accessibility_modifier] = STATE(2728), + [sym_override_modifier] = STATE(2744), + [sym_call_signature] = STATE(3906), + [sym_property_signature] = STATE(3906), + [sym_type_parameters] = STATE(5435), + [sym_construct_signature] = STATE(3906), + [sym_index_signature] = STATE(3906), + [aux_sym_export_statement_repeat1] = STATE(4467), + [aux_sym_object_repeat1] = STATE(4848), + [aux_sym_object_pattern_repeat1] = STATE(4622), + [sym_identifier] = ACTIONS(3272), + [anon_sym_export] = ACTIONS(3274), + [anon_sym_STAR] = ACTIONS(3236), + [anon_sym_type] = ACTIONS(3272), + [anon_sym_namespace] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3238), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3312), + [anon_sym_let] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_async] = ACTIONS(3278), + [anon_sym_new] = ACTIONS(3280), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(2478), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3256), + [sym_private_property_identifier] = ACTIONS(3256), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3282), + [anon_sym_readonly] = ACTIONS(3284), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_declare] = ACTIONS(3272), + [anon_sym_public] = ACTIONS(3288), + [anon_sym_private] = ACTIONS(3288), + [anon_sym_protected] = ACTIONS(3288), + [anon_sym_override] = ACTIONS(3290), + [anon_sym_module] = ACTIONS(3272), + [anon_sym_any] = ACTIONS(3272), + [anon_sym_number] = ACTIONS(3272), + [anon_sym_boolean] = ACTIONS(3272), + [anon_sym_string] = ACTIONS(3272), + [anon_sym_symbol] = ACTIONS(3272), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_PIPE_RBRACE] = ACTIONS(3270), [sym_html_comment] = ACTIONS(5), }, [1129] = { - [sym_export_statement] = STATE(3902), - [sym_object_pattern] = STATE(5780), - [sym_object_assignment_pattern] = STATE(4986), - [sym_array_pattern] = STATE(5780), - [sym__call_signature] = STATE(4416), - [sym__destructuring_pattern] = STATE(5780), - [sym_spread_element] = STATE(4829), - [sym_string] = STATE(3056), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3276), - [sym_rest_pattern] = STATE(4986), - [sym_method_definition] = STATE(4829), - [sym_pair] = STATE(4829), - [sym_pair_pattern] = STATE(4986), - [sym__property_name] = STATE(3056), - [sym_computed_property_name] = STATE(3056), - [sym_method_signature] = STATE(3902), - [sym_accessibility_modifier] = STATE(2727), - [sym_override_modifier] = STATE(2757), - [sym_call_signature] = STATE(3902), - [sym_property_signature] = STATE(3902), - [sym_type_parameters] = STATE(5374), - [sym_construct_signature] = STATE(3902), - [sym_index_signature] = STATE(3902), - [aux_sym_export_statement_repeat1] = STATE(4535), - [aux_sym_object_repeat1] = STATE(4830), - [aux_sym_object_pattern_repeat1] = STATE(5037), - [sym_identifier] = ACTIONS(3237), - [anon_sym_export] = ACTIONS(3239), - [anon_sym_STAR] = ACTIONS(3241), - [anon_sym_type] = ACTIONS(3237), - [anon_sym_namespace] = ACTIONS(3237), - [anon_sym_LBRACE] = ACTIONS(3243), - [anon_sym_COMMA] = ACTIONS(3245), - [anon_sym_RBRACE] = ACTIONS(3325), - [anon_sym_let] = ACTIONS(3237), - [anon_sym_LPAREN] = ACTIONS(3249), - [anon_sym_SEMI] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_async] = ACTIONS(3255), - [anon_sym_new] = ACTIONS(3257), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(3259), - [anon_sym_DASH] = ACTIONS(3259), - [anon_sym_LT] = ACTIONS(2537), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3261), - [sym_private_property_identifier] = ACTIONS(3261), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3263), - [anon_sym_readonly] = ACTIONS(3265), - [anon_sym_get] = ACTIONS(3267), - [anon_sym_set] = ACTIONS(3267), - [anon_sym_declare] = ACTIONS(3237), - [anon_sym_public] = ACTIONS(3269), - [anon_sym_private] = ACTIONS(3269), - [anon_sym_protected] = ACTIONS(3269), - [anon_sym_override] = ACTIONS(3271), - [anon_sym_module] = ACTIONS(3237), - [anon_sym_any] = ACTIONS(3237), - [anon_sym_number] = ACTIONS(3237), - [anon_sym_boolean] = ACTIONS(3237), - [anon_sym_string] = ACTIONS(3237), - [anon_sym_symbol] = ACTIONS(3237), - [anon_sym_object] = ACTIONS(3237), - [anon_sym_abstract] = ACTIONS(3273), - [anon_sym_PIPE_RBRACE] = ACTIONS(3275), + [sym_export_statement] = STATE(3903), + [sym_object_pattern] = STATE(5891), + [sym_object_assignment_pattern] = STATE(4665), + [sym_array_pattern] = STATE(5891), + [sym__call_signature] = STATE(4357), + [sym__destructuring_pattern] = STATE(5891), + [sym_spread_element] = STATE(4841), + [sym_string] = STATE(3054), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3267), + [sym_rest_pattern] = STATE(4665), + [sym_method_definition] = STATE(4841), + [sym_pair] = STATE(4841), + [sym_pair_pattern] = STATE(4665), + [sym__property_name] = STATE(3054), + [sym_computed_property_name] = STATE(3054), + [sym_method_signature] = STATE(3903), + [sym_accessibility_modifier] = STATE(2728), + [sym_override_modifier] = STATE(2744), + [sym_call_signature] = STATE(3903), + [sym_property_signature] = STATE(3903), + [sym_type_parameters] = STATE(5435), + [sym_construct_signature] = STATE(3903), + [sym_index_signature] = STATE(3903), + [aux_sym_export_statement_repeat1] = STATE(4467), + [aux_sym_object_repeat1] = STATE(4848), + [aux_sym_object_pattern_repeat1] = STATE(4622), + [sym_identifier] = ACTIONS(3314), + [anon_sym_export] = ACTIONS(3316), + [anon_sym_STAR] = ACTIONS(3236), + [anon_sym_type] = ACTIONS(3314), + [anon_sym_namespace] = ACTIONS(3314), + [anon_sym_LBRACE] = ACTIONS(3238), + [anon_sym_COMMA] = ACTIONS(3318), + [anon_sym_RBRACE] = ACTIONS(3320), + [anon_sym_let] = ACTIONS(3314), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_async] = ACTIONS(3324), + [anon_sym_new] = ACTIONS(3326), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(2478), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3256), + [sym_private_property_identifier] = ACTIONS(3256), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3328), + [anon_sym_readonly] = ACTIONS(3330), + [anon_sym_get] = ACTIONS(3332), + [anon_sym_set] = ACTIONS(3332), + [anon_sym_declare] = ACTIONS(3314), + [anon_sym_public] = ACTIONS(3334), + [anon_sym_private] = ACTIONS(3334), + [anon_sym_protected] = ACTIONS(3334), + [anon_sym_override] = ACTIONS(3336), + [anon_sym_module] = ACTIONS(3314), + [anon_sym_any] = ACTIONS(3314), + [anon_sym_number] = ACTIONS(3314), + [anon_sym_boolean] = ACTIONS(3314), + [anon_sym_string] = ACTIONS(3314), + [anon_sym_symbol] = ACTIONS(3314), + [anon_sym_object] = ACTIONS(3314), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_PIPE_RBRACE] = ACTIONS(3338), [sym_html_comment] = ACTIONS(5), }, [1130] = { - [sym_export_statement] = STATE(3902), - [sym_object_pattern] = STATE(5780), - [sym_object_assignment_pattern] = STATE(4986), - [sym_array_pattern] = STATE(5780), - [sym__call_signature] = STATE(4416), - [sym__destructuring_pattern] = STATE(5780), - [sym_spread_element] = STATE(4829), - [sym_string] = STATE(3056), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3276), - [sym_rest_pattern] = STATE(4986), - [sym_method_definition] = STATE(4829), - [sym_pair] = STATE(4829), - [sym_pair_pattern] = STATE(4986), - [sym__property_name] = STATE(3056), - [sym_computed_property_name] = STATE(3056), - [sym_method_signature] = STATE(3902), - [sym_accessibility_modifier] = STATE(2727), - [sym_override_modifier] = STATE(2757), - [sym_call_signature] = STATE(3902), - [sym_property_signature] = STATE(3902), - [sym_type_parameters] = STATE(5374), - [sym_construct_signature] = STATE(3902), - [sym_index_signature] = STATE(3902), - [aux_sym_export_statement_repeat1] = STATE(4535), - [aux_sym_object_repeat1] = STATE(4830), - [aux_sym_object_pattern_repeat1] = STATE(5037), - [sym_identifier] = ACTIONS(3299), - [anon_sym_export] = ACTIONS(3301), - [anon_sym_STAR] = ACTIONS(3241), - [anon_sym_type] = ACTIONS(3299), - [anon_sym_namespace] = ACTIONS(3299), - [anon_sym_LBRACE] = ACTIONS(3243), - [anon_sym_COMMA] = ACTIONS(3245), - [anon_sym_RBRACE] = ACTIONS(3281), - [anon_sym_let] = ACTIONS(3299), - [anon_sym_LPAREN] = ACTIONS(3249), - [anon_sym_SEMI] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_async] = ACTIONS(3309), - [anon_sym_new] = ACTIONS(3311), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(3259), - [anon_sym_DASH] = ACTIONS(3259), - [anon_sym_LT] = ACTIONS(2537), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3261), - [sym_private_property_identifier] = ACTIONS(3261), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3313), - [anon_sym_readonly] = ACTIONS(3315), - [anon_sym_get] = ACTIONS(3317), - [anon_sym_set] = ACTIONS(3317), - [anon_sym_declare] = ACTIONS(3299), - [anon_sym_public] = ACTIONS(3319), - [anon_sym_private] = ACTIONS(3319), - [anon_sym_protected] = ACTIONS(3319), - [anon_sym_override] = ACTIONS(3321), - [anon_sym_module] = ACTIONS(3299), - [anon_sym_any] = ACTIONS(3299), - [anon_sym_number] = ACTIONS(3299), - [anon_sym_boolean] = ACTIONS(3299), - [anon_sym_string] = ACTIONS(3299), - [anon_sym_symbol] = ACTIONS(3299), - [anon_sym_object] = ACTIONS(3299), - [anon_sym_abstract] = ACTIONS(3273), - [anon_sym_PIPE_RBRACE] = ACTIONS(3275), + [sym_export_statement] = STATE(3906), + [sym_object_pattern] = STATE(5891), + [sym_object_assignment_pattern] = STATE(4665), + [sym_array_pattern] = STATE(5891), + [sym__call_signature] = STATE(4357), + [sym__destructuring_pattern] = STATE(5891), + [sym_spread_element] = STATE(4841), + [sym_string] = STATE(3054), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3267), + [sym_rest_pattern] = STATE(4665), + [sym_method_definition] = STATE(4841), + [sym_pair] = STATE(4841), + [sym_pair_pattern] = STATE(4665), + [sym__property_name] = STATE(3054), + [sym_computed_property_name] = STATE(3054), + [sym_method_signature] = STATE(3906), + [sym_accessibility_modifier] = STATE(2728), + [sym_override_modifier] = STATE(2744), + [sym_call_signature] = STATE(3906), + [sym_property_signature] = STATE(3906), + [sym_type_parameters] = STATE(5435), + [sym_construct_signature] = STATE(3906), + [sym_index_signature] = STATE(3906), + [aux_sym_export_statement_repeat1] = STATE(4467), + [aux_sym_object_repeat1] = STATE(4848), + [aux_sym_object_pattern_repeat1] = STATE(4622), + [sym_identifier] = ACTIONS(3272), + [anon_sym_export] = ACTIONS(3274), + [anon_sym_STAR] = ACTIONS(3236), + [anon_sym_type] = ACTIONS(3272), + [anon_sym_namespace] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3238), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_let] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_async] = ACTIONS(3278), + [anon_sym_new] = ACTIONS(3280), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(2478), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3256), + [sym_private_property_identifier] = ACTIONS(3256), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3282), + [anon_sym_readonly] = ACTIONS(3284), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_declare] = ACTIONS(3272), + [anon_sym_public] = ACTIONS(3288), + [anon_sym_private] = ACTIONS(3288), + [anon_sym_protected] = ACTIONS(3288), + [anon_sym_override] = ACTIONS(3290), + [anon_sym_module] = ACTIONS(3272), + [anon_sym_any] = ACTIONS(3272), + [anon_sym_number] = ACTIONS(3272), + [anon_sym_boolean] = ACTIONS(3272), + [anon_sym_string] = ACTIONS(3272), + [anon_sym_symbol] = ACTIONS(3272), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_PIPE_RBRACE] = ACTIONS(3270), [sym_html_comment] = ACTIONS(5), }, [1131] = { - [sym_export_statement] = STATE(3902), - [sym_object_pattern] = STATE(5780), - [sym_object_assignment_pattern] = STATE(4986), - [sym_array_pattern] = STATE(5780), - [sym__call_signature] = STATE(4416), - [sym__destructuring_pattern] = STATE(5780), - [sym_spread_element] = STATE(4829), - [sym_string] = STATE(3056), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3276), - [sym_rest_pattern] = STATE(4986), - [sym_method_definition] = STATE(4829), - [sym_pair] = STATE(4829), - [sym_pair_pattern] = STATE(4986), - [sym__property_name] = STATE(3056), - [sym_computed_property_name] = STATE(3056), - [sym_method_signature] = STATE(3902), - [sym_accessibility_modifier] = STATE(2727), - [sym_override_modifier] = STATE(2757), - [sym_call_signature] = STATE(3902), - [sym_property_signature] = STATE(3902), - [sym_type_parameters] = STATE(5374), - [sym_construct_signature] = STATE(3902), - [sym_index_signature] = STATE(3902), - [aux_sym_export_statement_repeat1] = STATE(4535), - [aux_sym_object_repeat1] = STATE(4830), - [aux_sym_object_pattern_repeat1] = STATE(5037), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3329), - [anon_sym_STAR] = ACTIONS(3241), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3243), - [anon_sym_COMMA] = ACTIONS(3245), - [anon_sym_RBRACE] = ACTIONS(3331), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3249), - [anon_sym_SEMI] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_async] = ACTIONS(3333), - [anon_sym_new] = ACTIONS(3335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(3259), - [anon_sym_DASH] = ACTIONS(3259), - [anon_sym_LT] = ACTIONS(2537), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3261), - [sym_private_property_identifier] = ACTIONS(3261), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3337), - [anon_sym_readonly] = ACTIONS(3339), - [anon_sym_get] = ACTIONS(3341), - [anon_sym_set] = ACTIONS(3341), - [anon_sym_declare] = ACTIONS(3327), - [anon_sym_public] = ACTIONS(3343), - [anon_sym_private] = ACTIONS(3343), - [anon_sym_protected] = ACTIONS(3343), - [anon_sym_override] = ACTIONS(3345), - [anon_sym_module] = ACTIONS(3327), - [anon_sym_any] = ACTIONS(3327), - [anon_sym_number] = ACTIONS(3327), - [anon_sym_boolean] = ACTIONS(3327), - [anon_sym_string] = ACTIONS(3327), - [anon_sym_symbol] = ACTIONS(3327), - [anon_sym_object] = ACTIONS(3327), - [anon_sym_abstract] = ACTIONS(3273), - [anon_sym_PIPE_RBRACE] = ACTIONS(3275), + [sym_export_statement] = STATE(3906), + [sym_object_pattern] = STATE(5891), + [sym_object_assignment_pattern] = STATE(4665), + [sym_array_pattern] = STATE(5891), + [sym__call_signature] = STATE(4357), + [sym__destructuring_pattern] = STATE(5891), + [sym_spread_element] = STATE(4841), + [sym_string] = STATE(3054), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3267), + [sym_rest_pattern] = STATE(4665), + [sym_method_definition] = STATE(4841), + [sym_pair] = STATE(4841), + [sym_pair_pattern] = STATE(4665), + [sym__property_name] = STATE(3054), + [sym_computed_property_name] = STATE(3054), + [sym_method_signature] = STATE(3906), + [sym_accessibility_modifier] = STATE(2728), + [sym_override_modifier] = STATE(2744), + [sym_call_signature] = STATE(3906), + [sym_property_signature] = STATE(3906), + [sym_type_parameters] = STATE(5435), + [sym_construct_signature] = STATE(3906), + [sym_index_signature] = STATE(3906), + [aux_sym_export_statement_repeat1] = STATE(4467), + [aux_sym_object_repeat1] = STATE(4848), + [aux_sym_object_pattern_repeat1] = STATE(4622), + [sym_identifier] = ACTIONS(3314), + [anon_sym_export] = ACTIONS(3316), + [anon_sym_STAR] = ACTIONS(3236), + [anon_sym_type] = ACTIONS(3314), + [anon_sym_namespace] = ACTIONS(3314), + [anon_sym_LBRACE] = ACTIONS(3238), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_let] = ACTIONS(3314), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_async] = ACTIONS(3324), + [anon_sym_new] = ACTIONS(3326), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(2478), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3256), + [sym_private_property_identifier] = ACTIONS(3256), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3328), + [anon_sym_readonly] = ACTIONS(3330), + [anon_sym_get] = ACTIONS(3332), + [anon_sym_set] = ACTIONS(3332), + [anon_sym_declare] = ACTIONS(3314), + [anon_sym_public] = ACTIONS(3334), + [anon_sym_private] = ACTIONS(3334), + [anon_sym_protected] = ACTIONS(3334), + [anon_sym_override] = ACTIONS(3336), + [anon_sym_module] = ACTIONS(3314), + [anon_sym_any] = ACTIONS(3314), + [anon_sym_number] = ACTIONS(3314), + [anon_sym_boolean] = ACTIONS(3314), + [anon_sym_string] = ACTIONS(3314), + [anon_sym_symbol] = ACTIONS(3314), + [anon_sym_object] = ACTIONS(3314), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_PIPE_RBRACE] = ACTIONS(3270), [sym_html_comment] = ACTIONS(5), }, [1132] = { - [sym_export_statement] = STATE(3902), - [sym_object_pattern] = STATE(5780), - [sym_object_assignment_pattern] = STATE(4986), - [sym_array_pattern] = STATE(5780), - [sym__call_signature] = STATE(4416), - [sym__destructuring_pattern] = STATE(5780), - [sym_spread_element] = STATE(4829), - [sym_string] = STATE(3056), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3276), - [sym_rest_pattern] = STATE(4986), - [sym_method_definition] = STATE(4829), - [sym_pair] = STATE(4829), - [sym_pair_pattern] = STATE(4986), - [sym__property_name] = STATE(3056), - [sym_computed_property_name] = STATE(3056), - [sym_method_signature] = STATE(3902), - [sym_accessibility_modifier] = STATE(2727), - [sym_override_modifier] = STATE(2757), - [sym_call_signature] = STATE(3902), - [sym_property_signature] = STATE(3902), - [sym_type_parameters] = STATE(5374), - [sym_construct_signature] = STATE(3902), - [sym_index_signature] = STATE(3902), - [aux_sym_export_statement_repeat1] = STATE(4535), - [aux_sym_object_repeat1] = STATE(4830), - [aux_sym_object_pattern_repeat1] = STATE(5037), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3329), - [anon_sym_STAR] = ACTIONS(3241), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3243), - [anon_sym_COMMA] = ACTIONS(3245), - [anon_sym_RBRACE] = ACTIONS(3347), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3249), - [anon_sym_SEMI] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_async] = ACTIONS(3333), - [anon_sym_new] = ACTIONS(3335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(3259), - [anon_sym_DASH] = ACTIONS(3259), - [anon_sym_LT] = ACTIONS(2537), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3261), - [sym_private_property_identifier] = ACTIONS(3261), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3337), - [anon_sym_readonly] = ACTIONS(3339), - [anon_sym_get] = ACTIONS(3341), - [anon_sym_set] = ACTIONS(3341), - [anon_sym_declare] = ACTIONS(3327), - [anon_sym_public] = ACTIONS(3343), - [anon_sym_private] = ACTIONS(3343), - [anon_sym_protected] = ACTIONS(3343), - [anon_sym_override] = ACTIONS(3345), - [anon_sym_module] = ACTIONS(3327), - [anon_sym_any] = ACTIONS(3327), - [anon_sym_number] = ACTIONS(3327), - [anon_sym_boolean] = ACTIONS(3327), - [anon_sym_string] = ACTIONS(3327), - [anon_sym_symbol] = ACTIONS(3327), - [anon_sym_object] = ACTIONS(3327), - [anon_sym_abstract] = ACTIONS(3273), - [anon_sym_PIPE_RBRACE] = ACTIONS(3275), + [sym_export_statement] = STATE(3906), + [sym_object_pattern] = STATE(5891), + [sym_object_assignment_pattern] = STATE(4665), + [sym_array_pattern] = STATE(5891), + [sym__call_signature] = STATE(4357), + [sym__destructuring_pattern] = STATE(5891), + [sym_spread_element] = STATE(4841), + [sym_string] = STATE(3054), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3267), + [sym_rest_pattern] = STATE(4665), + [sym_method_definition] = STATE(4841), + [sym_pair] = STATE(4841), + [sym_pair_pattern] = STATE(4665), + [sym__property_name] = STATE(3054), + [sym_computed_property_name] = STATE(3054), + [sym_method_signature] = STATE(3906), + [sym_accessibility_modifier] = STATE(2728), + [sym_override_modifier] = STATE(2744), + [sym_call_signature] = STATE(3906), + [sym_property_signature] = STATE(3906), + [sym_type_parameters] = STATE(5435), + [sym_construct_signature] = STATE(3906), + [sym_index_signature] = STATE(3906), + [aux_sym_export_statement_repeat1] = STATE(4467), + [aux_sym_object_repeat1] = STATE(4848), + [aux_sym_object_pattern_repeat1] = STATE(4622), + [sym_identifier] = ACTIONS(3314), + [anon_sym_export] = ACTIONS(3316), + [anon_sym_STAR] = ACTIONS(3236), + [anon_sym_type] = ACTIONS(3314), + [anon_sym_namespace] = ACTIONS(3314), + [anon_sym_LBRACE] = ACTIONS(3238), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3342), + [anon_sym_let] = ACTIONS(3314), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_async] = ACTIONS(3324), + [anon_sym_new] = ACTIONS(3326), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(2478), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3256), + [sym_private_property_identifier] = ACTIONS(3256), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3328), + [anon_sym_readonly] = ACTIONS(3330), + [anon_sym_get] = ACTIONS(3332), + [anon_sym_set] = ACTIONS(3332), + [anon_sym_declare] = ACTIONS(3314), + [anon_sym_public] = ACTIONS(3334), + [anon_sym_private] = ACTIONS(3334), + [anon_sym_protected] = ACTIONS(3334), + [anon_sym_override] = ACTIONS(3336), + [anon_sym_module] = ACTIONS(3314), + [anon_sym_any] = ACTIONS(3314), + [anon_sym_number] = ACTIONS(3314), + [anon_sym_boolean] = ACTIONS(3314), + [anon_sym_string] = ACTIONS(3314), + [anon_sym_symbol] = ACTIONS(3314), + [anon_sym_object] = ACTIONS(3314), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_PIPE_RBRACE] = ACTIONS(3270), [sym_html_comment] = ACTIONS(5), }, [1133] = { - [sym_export_statement] = STATE(3902), - [sym_object_pattern] = STATE(5780), - [sym_object_assignment_pattern] = STATE(4986), - [sym_array_pattern] = STATE(5780), - [sym__call_signature] = STATE(4416), - [sym__destructuring_pattern] = STATE(5780), - [sym_spread_element] = STATE(4829), - [sym_string] = STATE(3056), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3276), - [sym_rest_pattern] = STATE(4986), - [sym_method_definition] = STATE(4829), - [sym_pair] = STATE(4829), - [sym_pair_pattern] = STATE(4986), - [sym__property_name] = STATE(3056), - [sym_computed_property_name] = STATE(3056), - [sym_method_signature] = STATE(3902), - [sym_accessibility_modifier] = STATE(2727), - [sym_override_modifier] = STATE(2757), - [sym_call_signature] = STATE(3902), - [sym_property_signature] = STATE(3902), - [sym_type_parameters] = STATE(5374), - [sym_construct_signature] = STATE(3902), - [sym_index_signature] = STATE(3902), - [aux_sym_export_statement_repeat1] = STATE(4535), - [aux_sym_object_repeat1] = STATE(4830), - [aux_sym_object_pattern_repeat1] = STATE(5037), - [sym_identifier] = ACTIONS(3299), - [anon_sym_export] = ACTIONS(3301), - [anon_sym_STAR] = ACTIONS(3241), - [anon_sym_type] = ACTIONS(3299), - [anon_sym_namespace] = ACTIONS(3299), - [anon_sym_LBRACE] = ACTIONS(3243), - [anon_sym_COMMA] = ACTIONS(3245), - [anon_sym_RBRACE] = ACTIONS(3247), - [anon_sym_let] = ACTIONS(3299), - [anon_sym_LPAREN] = ACTIONS(3249), - [anon_sym_SEMI] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_async] = ACTIONS(3309), - [anon_sym_new] = ACTIONS(3311), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(3259), - [anon_sym_DASH] = ACTIONS(3259), - [anon_sym_LT] = ACTIONS(2537), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3261), - [sym_private_property_identifier] = ACTIONS(3261), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3313), - [anon_sym_readonly] = ACTIONS(3315), - [anon_sym_get] = ACTIONS(3317), - [anon_sym_set] = ACTIONS(3317), - [anon_sym_declare] = ACTIONS(3299), - [anon_sym_public] = ACTIONS(3319), - [anon_sym_private] = ACTIONS(3319), - [anon_sym_protected] = ACTIONS(3319), - [anon_sym_override] = ACTIONS(3321), - [anon_sym_module] = ACTIONS(3299), - [anon_sym_any] = ACTIONS(3299), - [anon_sym_number] = ACTIONS(3299), - [anon_sym_boolean] = ACTIONS(3299), - [anon_sym_string] = ACTIONS(3299), - [anon_sym_symbol] = ACTIONS(3299), - [anon_sym_object] = ACTIONS(3299), - [anon_sym_abstract] = ACTIONS(3273), - [anon_sym_PIPE_RBRACE] = ACTIONS(3275), + [sym_export_statement] = STATE(3906), + [sym_object_pattern] = STATE(5891), + [sym_object_assignment_pattern] = STATE(4665), + [sym_array_pattern] = STATE(5891), + [sym__call_signature] = STATE(4357), + [sym__destructuring_pattern] = STATE(5891), + [sym_spread_element] = STATE(4841), + [sym_string] = STATE(3054), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3267), + [sym_rest_pattern] = STATE(4665), + [sym_method_definition] = STATE(4841), + [sym_pair] = STATE(4841), + [sym_pair_pattern] = STATE(4665), + [sym__property_name] = STATE(3054), + [sym_computed_property_name] = STATE(3054), + [sym_method_signature] = STATE(3906), + [sym_accessibility_modifier] = STATE(2728), + [sym_override_modifier] = STATE(2744), + [sym_call_signature] = STATE(3906), + [sym_property_signature] = STATE(3906), + [sym_type_parameters] = STATE(5435), + [sym_construct_signature] = STATE(3906), + [sym_index_signature] = STATE(3906), + [aux_sym_export_statement_repeat1] = STATE(4467), + [aux_sym_object_repeat1] = STATE(4848), + [aux_sym_object_pattern_repeat1] = STATE(4622), + [sym_identifier] = ACTIONS(3232), + [anon_sym_export] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3236), + [anon_sym_type] = ACTIONS(3232), + [anon_sym_namespace] = ACTIONS(3232), + [anon_sym_LBRACE] = ACTIONS(3238), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3344), + [anon_sym_let] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_async] = ACTIONS(3250), + [anon_sym_new] = ACTIONS(3252), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(2478), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3256), + [sym_private_property_identifier] = ACTIONS(3256), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3258), + [anon_sym_readonly] = ACTIONS(3260), + [anon_sym_get] = ACTIONS(3262), + [anon_sym_set] = ACTIONS(3262), + [anon_sym_declare] = ACTIONS(3232), + [anon_sym_public] = ACTIONS(3264), + [anon_sym_private] = ACTIONS(3264), + [anon_sym_protected] = ACTIONS(3264), + [anon_sym_override] = ACTIONS(3266), + [anon_sym_module] = ACTIONS(3232), + [anon_sym_any] = ACTIONS(3232), + [anon_sym_number] = ACTIONS(3232), + [anon_sym_boolean] = ACTIONS(3232), + [anon_sym_string] = ACTIONS(3232), + [anon_sym_symbol] = ACTIONS(3232), + [anon_sym_object] = ACTIONS(3232), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_PIPE_RBRACE] = ACTIONS(3270), [sym_html_comment] = ACTIONS(5), }, [1134] = { - [sym_export_statement] = STATE(3902), - [sym_object_pattern] = STATE(5780), - [sym_object_assignment_pattern] = STATE(4986), - [sym_array_pattern] = STATE(5780), - [sym__call_signature] = STATE(4416), - [sym__destructuring_pattern] = STATE(5780), - [sym_spread_element] = STATE(5019), - [sym_string] = STATE(3056), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3276), - [sym_rest_pattern] = STATE(4986), - [sym_method_definition] = STATE(5019), - [sym_pair] = STATE(5019), - [sym_pair_pattern] = STATE(4986), - [sym__property_name] = STATE(3056), - [sym_computed_property_name] = STATE(3056), - [sym_method_signature] = STATE(3902), - [sym_accessibility_modifier] = STATE(2727), - [sym_override_modifier] = STATE(2757), - [sym_call_signature] = STATE(3902), - [sym_property_signature] = STATE(3902), - [sym_type_parameters] = STATE(5374), - [sym_construct_signature] = STATE(3902), - [sym_index_signature] = STATE(3902), - [aux_sym_export_statement_repeat1] = STATE(4535), - [aux_sym_object_repeat1] = STATE(5031), - [aux_sym_object_pattern_repeat1] = STATE(5037), - [sym_identifier] = ACTIONS(3349), - [anon_sym_export] = ACTIONS(3351), - [anon_sym_STAR] = ACTIONS(3241), - [anon_sym_type] = ACTIONS(3349), - [anon_sym_namespace] = ACTIONS(3349), - [anon_sym_LBRACE] = ACTIONS(3243), - [anon_sym_COMMA] = ACTIONS(3245), - [anon_sym_RBRACE] = ACTIONS(3353), - [anon_sym_let] = ACTIONS(3349), - [anon_sym_LPAREN] = ACTIONS(3249), - [anon_sym_SEMI] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_async] = ACTIONS(3355), - [anon_sym_new] = ACTIONS(3357), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(3259), - [anon_sym_DASH] = ACTIONS(3259), - [anon_sym_LT] = ACTIONS(2537), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3261), - [sym_private_property_identifier] = ACTIONS(3261), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3359), - [anon_sym_readonly] = ACTIONS(3361), - [anon_sym_get] = ACTIONS(3363), - [anon_sym_set] = ACTIONS(3363), - [anon_sym_declare] = ACTIONS(3349), - [anon_sym_public] = ACTIONS(3365), - [anon_sym_private] = ACTIONS(3365), - [anon_sym_protected] = ACTIONS(3365), - [anon_sym_override] = ACTIONS(3367), - [anon_sym_module] = ACTIONS(3349), - [anon_sym_any] = ACTIONS(3349), - [anon_sym_number] = ACTIONS(3349), - [anon_sym_boolean] = ACTIONS(3349), - [anon_sym_string] = ACTIONS(3349), - [anon_sym_symbol] = ACTIONS(3349), - [anon_sym_object] = ACTIONS(3349), - [anon_sym_abstract] = ACTIONS(3273), - [anon_sym_PIPE_RBRACE] = ACTIONS(3275), + [sym_export_statement] = STATE(3906), + [sym_object_pattern] = STATE(5891), + [sym_object_assignment_pattern] = STATE(4665), + [sym_array_pattern] = STATE(5891), + [sym__call_signature] = STATE(4357), + [sym__destructuring_pattern] = STATE(5891), + [sym_spread_element] = STATE(4687), + [sym_string] = STATE(3054), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3267), + [sym_rest_pattern] = STATE(4665), + [sym_method_definition] = STATE(4687), + [sym_pair] = STATE(4687), + [sym_pair_pattern] = STATE(4665), + [sym__property_name] = STATE(3054), + [sym_computed_property_name] = STATE(3054), + [sym_method_signature] = STATE(3906), + [sym_accessibility_modifier] = STATE(2728), + [sym_override_modifier] = STATE(2744), + [sym_call_signature] = STATE(3906), + [sym_property_signature] = STATE(3906), + [sym_type_parameters] = STATE(5435), + [sym_construct_signature] = STATE(3906), + [sym_index_signature] = STATE(3906), + [aux_sym_export_statement_repeat1] = STATE(4467), + [aux_sym_object_repeat1] = STATE(4618), + [aux_sym_object_pattern_repeat1] = STATE(4622), + [sym_identifier] = ACTIONS(3346), + [anon_sym_export] = ACTIONS(3348), + [anon_sym_STAR] = ACTIONS(3236), + [anon_sym_type] = ACTIONS(3346), + [anon_sym_namespace] = ACTIONS(3346), + [anon_sym_LBRACE] = ACTIONS(3238), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3350), + [anon_sym_let] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_async] = ACTIONS(3352), + [anon_sym_new] = ACTIONS(3354), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(2478), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3256), + [sym_private_property_identifier] = ACTIONS(3256), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3356), + [anon_sym_readonly] = ACTIONS(3358), + [anon_sym_get] = ACTIONS(3360), + [anon_sym_set] = ACTIONS(3360), + [anon_sym_declare] = ACTIONS(3346), + [anon_sym_public] = ACTIONS(3362), + [anon_sym_private] = ACTIONS(3362), + [anon_sym_protected] = ACTIONS(3362), + [anon_sym_override] = ACTIONS(3364), + [anon_sym_module] = ACTIONS(3346), + [anon_sym_any] = ACTIONS(3346), + [anon_sym_number] = ACTIONS(3346), + [anon_sym_boolean] = ACTIONS(3346), + [anon_sym_string] = ACTIONS(3346), + [anon_sym_symbol] = ACTIONS(3346), + [anon_sym_object] = ACTIONS(3346), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_PIPE_RBRACE] = ACTIONS(3270), [sym_html_comment] = ACTIONS(5), }, [1135] = { - [sym_export_statement] = STATE(3902), - [sym_object_pattern] = STATE(5780), - [sym_object_assignment_pattern] = STATE(4986), - [sym_array_pattern] = STATE(5780), - [sym__call_signature] = STATE(4416), - [sym__destructuring_pattern] = STATE(5780), - [sym_spread_element] = STATE(4829), - [sym_string] = STATE(3056), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3276), - [sym_rest_pattern] = STATE(4986), - [sym_method_definition] = STATE(4829), - [sym_pair] = STATE(4829), - [sym_pair_pattern] = STATE(4986), - [sym__property_name] = STATE(3056), - [sym_computed_property_name] = STATE(3056), - [sym_method_signature] = STATE(3902), - [sym_accessibility_modifier] = STATE(2727), - [sym_override_modifier] = STATE(2757), - [sym_call_signature] = STATE(3902), - [sym_property_signature] = STATE(3902), - [sym_type_parameters] = STATE(5374), - [sym_construct_signature] = STATE(3902), - [sym_index_signature] = STATE(3902), - [aux_sym_export_statement_repeat1] = STATE(4535), - [aux_sym_object_repeat1] = STATE(4830), - [aux_sym_object_pattern_repeat1] = STATE(5037), - [sym_identifier] = ACTIONS(3299), - [anon_sym_export] = ACTIONS(3301), - [anon_sym_STAR] = ACTIONS(3241), - [anon_sym_type] = ACTIONS(3299), - [anon_sym_namespace] = ACTIONS(3299), - [anon_sym_LBRACE] = ACTIONS(3243), - [anon_sym_COMMA] = ACTIONS(3245), - [anon_sym_RBRACE] = ACTIONS(3369), - [anon_sym_let] = ACTIONS(3299), - [anon_sym_LPAREN] = ACTIONS(3249), - [anon_sym_SEMI] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_async] = ACTIONS(3309), - [anon_sym_new] = ACTIONS(3311), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(3259), - [anon_sym_DASH] = ACTIONS(3259), - [anon_sym_LT] = ACTIONS(2537), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3261), - [sym_private_property_identifier] = ACTIONS(3261), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3313), - [anon_sym_readonly] = ACTIONS(3315), - [anon_sym_get] = ACTIONS(3317), - [anon_sym_set] = ACTIONS(3317), - [anon_sym_declare] = ACTIONS(3299), - [anon_sym_public] = ACTIONS(3319), - [anon_sym_private] = ACTIONS(3319), - [anon_sym_protected] = ACTIONS(3319), - [anon_sym_override] = ACTIONS(3321), - [anon_sym_module] = ACTIONS(3299), - [anon_sym_any] = ACTIONS(3299), - [anon_sym_number] = ACTIONS(3299), - [anon_sym_boolean] = ACTIONS(3299), - [anon_sym_string] = ACTIONS(3299), - [anon_sym_symbol] = ACTIONS(3299), - [anon_sym_object] = ACTIONS(3299), - [anon_sym_abstract] = ACTIONS(3273), - [anon_sym_PIPE_RBRACE] = ACTIONS(3275), + [sym_export_statement] = STATE(3906), + [sym_object_pattern] = STATE(5891), + [sym_object_assignment_pattern] = STATE(4665), + [sym_array_pattern] = STATE(5891), + [sym__call_signature] = STATE(4357), + [sym__destructuring_pattern] = STATE(5891), + [sym_spread_element] = STATE(4841), + [sym_string] = STATE(3054), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3267), + [sym_rest_pattern] = STATE(4665), + [sym_method_definition] = STATE(4841), + [sym_pair] = STATE(4841), + [sym_pair_pattern] = STATE(4665), + [sym__property_name] = STATE(3054), + [sym_computed_property_name] = STATE(3054), + [sym_method_signature] = STATE(3906), + [sym_accessibility_modifier] = STATE(2728), + [sym_override_modifier] = STATE(2744), + [sym_call_signature] = STATE(3906), + [sym_property_signature] = STATE(3906), + [sym_type_parameters] = STATE(5435), + [sym_construct_signature] = STATE(3906), + [sym_index_signature] = STATE(3906), + [aux_sym_export_statement_repeat1] = STATE(4467), + [aux_sym_object_repeat1] = STATE(4848), + [aux_sym_object_pattern_repeat1] = STATE(4622), + [sym_identifier] = ACTIONS(3314), + [anon_sym_export] = ACTIONS(3316), + [anon_sym_STAR] = ACTIONS(3236), + [anon_sym_type] = ACTIONS(3314), + [anon_sym_namespace] = ACTIONS(3314), + [anon_sym_LBRACE] = ACTIONS(3238), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_let] = ACTIONS(3314), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_async] = ACTIONS(3324), + [anon_sym_new] = ACTIONS(3326), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(2478), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3256), + [sym_private_property_identifier] = ACTIONS(3256), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3328), + [anon_sym_readonly] = ACTIONS(3330), + [anon_sym_get] = ACTIONS(3332), + [anon_sym_set] = ACTIONS(3332), + [anon_sym_declare] = ACTIONS(3314), + [anon_sym_public] = ACTIONS(3334), + [anon_sym_private] = ACTIONS(3334), + [anon_sym_protected] = ACTIONS(3334), + [anon_sym_override] = ACTIONS(3336), + [anon_sym_module] = ACTIONS(3314), + [anon_sym_any] = ACTIONS(3314), + [anon_sym_number] = ACTIONS(3314), + [anon_sym_boolean] = ACTIONS(3314), + [anon_sym_string] = ACTIONS(3314), + [anon_sym_symbol] = ACTIONS(3314), + [anon_sym_object] = ACTIONS(3314), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_PIPE_RBRACE] = ACTIONS(3270), [sym_html_comment] = ACTIONS(5), }, [1136] = { - [sym_export_statement] = STATE(3902), - [sym_object_pattern] = STATE(5780), - [sym_object_assignment_pattern] = STATE(4986), - [sym_array_pattern] = STATE(5780), - [sym__call_signature] = STATE(4416), - [sym__destructuring_pattern] = STATE(5780), - [sym_spread_element] = STATE(5019), - [sym_string] = STATE(3056), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3276), - [sym_rest_pattern] = STATE(4986), - [sym_method_definition] = STATE(5019), - [sym_pair] = STATE(5019), - [sym_pair_pattern] = STATE(4986), - [sym__property_name] = STATE(3056), - [sym_computed_property_name] = STATE(3056), - [sym_method_signature] = STATE(3902), - [sym_accessibility_modifier] = STATE(2727), - [sym_override_modifier] = STATE(2757), - [sym_call_signature] = STATE(3902), - [sym_property_signature] = STATE(3902), - [sym_type_parameters] = STATE(5374), - [sym_construct_signature] = STATE(3902), - [sym_index_signature] = STATE(3902), - [aux_sym_export_statement_repeat1] = STATE(4535), - [aux_sym_object_repeat1] = STATE(5031), - [aux_sym_object_pattern_repeat1] = STATE(5037), - [sym_identifier] = ACTIONS(3349), - [anon_sym_export] = ACTIONS(3351), - [anon_sym_STAR] = ACTIONS(3241), - [anon_sym_type] = ACTIONS(3349), - [anon_sym_namespace] = ACTIONS(3349), - [anon_sym_LBRACE] = ACTIONS(3243), - [anon_sym_COMMA] = ACTIONS(3245), - [anon_sym_RBRACE] = ACTIONS(3371), - [anon_sym_let] = ACTIONS(3349), - [anon_sym_LPAREN] = ACTIONS(3249), - [anon_sym_SEMI] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_async] = ACTIONS(3355), - [anon_sym_new] = ACTIONS(3357), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(3259), - [anon_sym_DASH] = ACTIONS(3259), - [anon_sym_LT] = ACTIONS(2537), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3261), - [sym_private_property_identifier] = ACTIONS(3261), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3359), - [anon_sym_readonly] = ACTIONS(3361), - [anon_sym_get] = ACTIONS(3363), - [anon_sym_set] = ACTIONS(3363), - [anon_sym_declare] = ACTIONS(3349), - [anon_sym_public] = ACTIONS(3365), - [anon_sym_private] = ACTIONS(3365), - [anon_sym_protected] = ACTIONS(3365), - [anon_sym_override] = ACTIONS(3367), - [anon_sym_module] = ACTIONS(3349), - [anon_sym_any] = ACTIONS(3349), - [anon_sym_number] = ACTIONS(3349), - [anon_sym_boolean] = ACTIONS(3349), - [anon_sym_string] = ACTIONS(3349), - [anon_sym_symbol] = ACTIONS(3349), - [anon_sym_object] = ACTIONS(3349), - [anon_sym_abstract] = ACTIONS(3273), - [anon_sym_PIPE_RBRACE] = ACTIONS(3275), + [sym_export_statement] = STATE(3906), + [sym_object_pattern] = STATE(5891), + [sym_object_assignment_pattern] = STATE(4665), + [sym_array_pattern] = STATE(5891), + [sym__call_signature] = STATE(4357), + [sym__destructuring_pattern] = STATE(5891), + [sym_spread_element] = STATE(4687), + [sym_string] = STATE(3054), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3267), + [sym_rest_pattern] = STATE(4665), + [sym_method_definition] = STATE(4687), + [sym_pair] = STATE(4687), + [sym_pair_pattern] = STATE(4665), + [sym__property_name] = STATE(3054), + [sym_computed_property_name] = STATE(3054), + [sym_method_signature] = STATE(3906), + [sym_accessibility_modifier] = STATE(2728), + [sym_override_modifier] = STATE(2744), + [sym_call_signature] = STATE(3906), + [sym_property_signature] = STATE(3906), + [sym_type_parameters] = STATE(5435), + [sym_construct_signature] = STATE(3906), + [sym_index_signature] = STATE(3906), + [aux_sym_export_statement_repeat1] = STATE(4467), + [aux_sym_object_repeat1] = STATE(4618), + [aux_sym_object_pattern_repeat1] = STATE(4622), + [sym_identifier] = ACTIONS(3346), + [anon_sym_export] = ACTIONS(3348), + [anon_sym_STAR] = ACTIONS(3236), + [anon_sym_type] = ACTIONS(3346), + [anon_sym_namespace] = ACTIONS(3346), + [anon_sym_LBRACE] = ACTIONS(3238), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3366), + [anon_sym_let] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_async] = ACTIONS(3352), + [anon_sym_new] = ACTIONS(3354), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(2478), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3256), + [sym_private_property_identifier] = ACTIONS(3256), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3356), + [anon_sym_readonly] = ACTIONS(3358), + [anon_sym_get] = ACTIONS(3360), + [anon_sym_set] = ACTIONS(3360), + [anon_sym_declare] = ACTIONS(3346), + [anon_sym_public] = ACTIONS(3362), + [anon_sym_private] = ACTIONS(3362), + [anon_sym_protected] = ACTIONS(3362), + [anon_sym_override] = ACTIONS(3364), + [anon_sym_module] = ACTIONS(3346), + [anon_sym_any] = ACTIONS(3346), + [anon_sym_number] = ACTIONS(3346), + [anon_sym_boolean] = ACTIONS(3346), + [anon_sym_string] = ACTIONS(3346), + [anon_sym_symbol] = ACTIONS(3346), + [anon_sym_object] = ACTIONS(3346), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_PIPE_RBRACE] = ACTIONS(3270), [sym_html_comment] = ACTIONS(5), }, [1137] = { - [sym_nested_identifier] = STATE(739), - [sym_string] = STATE(747), - [sym__module] = STATE(875), - [aux_sym_object_repeat1] = STATE(5173), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(3373), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(727), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_identifier] = STATE(751), + [sym_string] = STATE(781), + [sym__module] = STATE(900), + [aux_sym_object_repeat1] = STATE(5191), + [aux_sym_object_pattern_repeat1] = STATE(5131), + [sym_identifier] = ACTIONS(3368), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [1138] = { - [sym_nested_identifier] = STATE(227), - [sym_string] = STATE(225), - [sym__module] = STATE(256), - [aux_sym_object_repeat1] = STATE(5173), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(3375), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(727), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(3377), - [anon_sym_SQUOTE] = ACTIONS(3379), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_identifier] = STATE(223), + [sym_string] = STATE(216), + [sym__module] = STATE(245), + [aux_sym_object_repeat1] = STATE(5129), + [aux_sym_object_pattern_repeat1] = STATE(5131), + [sym_identifier] = ACTIONS(3370), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DQUOTE] = ACTIONS(3372), + [anon_sym_SQUOTE] = ACTIONS(3374), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [1139] = { - [sym_nested_identifier] = STATE(739), - [sym_string] = STATE(747), - [sym__module] = STATE(875), - [aux_sym_object_repeat1] = STATE(4673), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(3373), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(702), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_identifier] = STATE(223), + [sym_string] = STATE(216), + [sym__module] = STATE(245), + [aux_sym_object_repeat1] = STATE(5191), + [aux_sym_object_pattern_repeat1] = STATE(5131), + [sym_identifier] = ACTIONS(3370), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DQUOTE] = ACTIONS(3372), + [anon_sym_SQUOTE] = ACTIONS(3374), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [1140] = { - [sym_variable_declarator] = STATE(4470), - [sym_object_pattern] = STATE(3735), - [sym_array_pattern] = STATE(3735), - [sym__destructuring_pattern] = STATE(3735), - [aux_sym_object_repeat1] = STATE(5173), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(3381), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(727), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(3385), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_variable_declarator] = STATE(4496), + [sym_object_pattern] = STATE(3624), + [sym_array_pattern] = STATE(3624), + [sym__destructuring_pattern] = STATE(3624), + [aux_sym_object_repeat1] = STATE(5191), + [aux_sym_object_pattern_repeat1] = STATE(5131), + [sym_identifier] = ACTIONS(3376), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(3378), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [1141] = { - [sym_nested_identifier] = STATE(227), - [sym_string] = STATE(225), - [sym__module] = STATE(256), - [aux_sym_object_repeat1] = STATE(5173), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(3375), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(3377), - [anon_sym_SQUOTE] = ACTIONS(3379), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_variable_declarator] = STATE(4496), + [sym_object_pattern] = STATE(3624), + [sym_array_pattern] = STATE(3624), + [sym__destructuring_pattern] = STATE(3624), + [aux_sym_object_repeat1] = STATE(5129), + [aux_sym_object_pattern_repeat1] = STATE(5131), + [sym_identifier] = ACTIONS(3376), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(3378), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [1142] = { - [sym_nested_identifier] = STATE(227), - [sym_string] = STATE(225), - [sym__module] = STATE(256), - [aux_sym_object_repeat1] = STATE(4673), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(3375), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(702), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(3377), - [anon_sym_SQUOTE] = ACTIONS(3379), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_identifier] = STATE(223), + [sym_string] = STATE(216), + [sym__module] = STATE(245), + [aux_sym_object_repeat1] = STATE(5191), + [aux_sym_object_pattern_repeat1] = STATE(5131), + [sym_identifier] = ACTIONS(3370), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DQUOTE] = ACTIONS(3372), + [anon_sym_SQUOTE] = ACTIONS(3374), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [1143] = { - [sym_nested_identifier] = STATE(739), - [sym_string] = STATE(747), - [sym__module] = STATE(875), - [aux_sym_object_repeat1] = STATE(5173), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(3373), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_variable_declarator] = STATE(4496), + [sym_object_pattern] = STATE(3624), + [sym_array_pattern] = STATE(3624), + [sym__destructuring_pattern] = STATE(3624), + [aux_sym_object_repeat1] = STATE(5191), + [aux_sym_object_pattern_repeat1] = STATE(5131), + [sym_identifier] = ACTIONS(3376), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(3378), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [1144] = { - [sym_variable_declarator] = STATE(4470), - [sym_object_pattern] = STATE(3735), - [sym_array_pattern] = STATE(3735), - [sym__destructuring_pattern] = STATE(3735), - [aux_sym_object_repeat1] = STATE(4673), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(3381), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(702), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(3385), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_identifier] = STATE(751), + [sym_string] = STATE(781), + [sym__module] = STATE(900), + [aux_sym_object_repeat1] = STATE(5191), + [aux_sym_object_pattern_repeat1] = STATE(5131), + [sym_identifier] = ACTIONS(3368), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [1145] = { - [sym_variable_declarator] = STATE(4470), - [sym_object_pattern] = STATE(3735), - [sym_array_pattern] = STATE(3735), - [sym__destructuring_pattern] = STATE(3735), - [aux_sym_object_repeat1] = STATE(5173), - [aux_sym_object_pattern_repeat1] = STATE(4679), - [sym_identifier] = ACTIONS(3381), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(696), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(3385), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_identifier] = STATE(751), + [sym_string] = STATE(781), + [sym__module] = STATE(900), + [aux_sym_object_repeat1] = STATE(5129), + [aux_sym_object_pattern_repeat1] = STATE(5131), + [sym_identifier] = ACTIONS(3368), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [1146] = { - [sym_nested_identifier] = STATE(1514), - [sym_string] = STATE(1488), - [sym__module] = STATE(1695), - [sym_identifier] = ACTIONS(3387), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_RBRACE] = ACTIONS(128), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(128), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_QMARK] = ACTIONS(755), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_identifier] = STATE(1502), + [sym_string] = STATE(1503), + [sym__module] = STATE(1628), + [sym_identifier] = ACTIONS(3382), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(220), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_RBRACE] = ACTIONS(223), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_RPAREN] = ACTIONS(223), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(223), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_RBRACK] = ACTIONS(223), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_QMARK] = ACTIONS(750), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [1147] = { - [sym_nested_identifier] = STATE(1514), - [sym_string] = STATE(1488), - [sym__module] = STATE(1695), - [sym_identifier] = ACTIONS(3387), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(859), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_identifier] = STATE(1502), + [sym_string] = STATE(1503), + [sym__module] = STATE(1628), + [sym_identifier] = ACTIONS(3382), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(842), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(158), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_RPAREN] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_RBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_EQ_GT] = ACTIONS(156), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [1148] = { - [sym_nested_identifier] = STATE(1514), - [sym_string] = STATE(1488), - [sym__module] = STATE(1695), - [sym_identifier] = ACTIONS(3387), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(223), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(226), - [anon_sym_RBRACE] = ACTIONS(226), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(226), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(226), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(226), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_QMARK] = ACTIONS(755), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_identifier] = STATE(1502), + [sym_string] = STATE(1503), + [sym__module] = STATE(1628), + [sym_identifier] = ACTIONS(3382), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(814), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(158), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_RPAREN] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_RBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_EQ_GT] = ACTIONS(156), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [1149] = { - [sym_nested_identifier] = STATE(1514), - [sym_string] = STATE(1488), - [sym__module] = STATE(1695), - [sym_identifier] = ACTIONS(3387), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(855), - [anon_sym_RBRACE] = ACTIONS(855), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(855), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(855), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(855), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_QMARK] = ACTIONS(857), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_identifier] = STATE(1502), + [sym_string] = STATE(1503), + [sym__module] = STATE(1628), + [sym_identifier] = ACTIONS(3382), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(814), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(834), + [anon_sym_RBRACE] = ACTIONS(834), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_RPAREN] = ACTIONS(834), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(834), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_RBRACK] = ACTIONS(834), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_QMARK] = ACTIONS(836), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [1150] = { - [sym_nested_identifier] = STATE(1514), - [sym_string] = STATE(1488), - [sym__module] = STATE(1695), - [sym_identifier] = ACTIONS(3387), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_identifier] = STATE(1502), + [sym_string] = STATE(1503), + [sym__module] = STATE(1628), + [sym_identifier] = ACTIONS(3382), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_RBRACE] = ACTIONS(126), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_RBRACK] = ACTIONS(126), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_EQ_GT] = ACTIONS(156), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_QMARK] = ACTIONS(750), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [1151] = { - [sym_export_statement] = STATE(3915), - [sym_object_pattern] = STATE(5780), - [sym_object_assignment_pattern] = STATE(5287), - [sym_array_pattern] = STATE(5780), - [sym__call_signature] = STATE(4416), - [sym__destructuring_pattern] = STATE(5780), - [sym_spread_element] = STATE(5294), - [sym_string] = STATE(3056), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3276), - [sym_rest_pattern] = STATE(5287), - [sym_method_definition] = STATE(5294), - [sym_pair] = STATE(5294), - [sym_pair_pattern] = STATE(5287), - [sym__property_name] = STATE(3056), - [sym_computed_property_name] = STATE(3056), - [sym_method_signature] = STATE(3915), - [sym_accessibility_modifier] = STATE(2727), - [sym_override_modifier] = STATE(2757), - [sym_call_signature] = STATE(3915), - [sym_property_signature] = STATE(3915), - [sym_type_parameters] = STATE(5374), - [sym_construct_signature] = STATE(3915), - [sym_index_signature] = STATE(3915), - [aux_sym_export_statement_repeat1] = STATE(4535), - [sym_identifier] = ACTIONS(3389), - [anon_sym_export] = ACTIONS(3391), - [anon_sym_STAR] = ACTIONS(3241), - [anon_sym_type] = ACTIONS(3389), - [anon_sym_namespace] = ACTIONS(3389), - [anon_sym_LBRACE] = ACTIONS(3243), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_RBRACE] = ACTIONS(3393), - [anon_sym_let] = ACTIONS(3389), - [anon_sym_LPAREN] = ACTIONS(3249), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_async] = ACTIONS(3396), - [anon_sym_new] = ACTIONS(3398), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(3259), - [anon_sym_DASH] = ACTIONS(3259), - [anon_sym_LT] = ACTIONS(2537), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3261), - [sym_private_property_identifier] = ACTIONS(3261), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3400), - [anon_sym_readonly] = ACTIONS(3402), - [anon_sym_get] = ACTIONS(3404), - [anon_sym_set] = ACTIONS(3404), - [anon_sym_declare] = ACTIONS(3389), - [anon_sym_public] = ACTIONS(3406), - [anon_sym_private] = ACTIONS(3406), - [anon_sym_protected] = ACTIONS(3406), - [anon_sym_override] = ACTIONS(3408), - [anon_sym_module] = ACTIONS(3389), - [anon_sym_any] = ACTIONS(3389), - [anon_sym_number] = ACTIONS(3389), - [anon_sym_boolean] = ACTIONS(3389), - [anon_sym_string] = ACTIONS(3389), - [anon_sym_symbol] = ACTIONS(3389), - [anon_sym_object] = ACTIONS(3389), - [anon_sym_abstract] = ACTIONS(3273), + [sym_export_statement] = STATE(3828), + [sym_object_pattern] = STATE(5891), + [sym_object_assignment_pattern] = STATE(5520), + [sym_array_pattern] = STATE(5891), + [sym__call_signature] = STATE(4357), + [sym__destructuring_pattern] = STATE(5891), + [sym_spread_element] = STATE(5541), + [sym_string] = STATE(3054), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3267), + [sym_rest_pattern] = STATE(5520), + [sym_method_definition] = STATE(5541), + [sym_pair] = STATE(5541), + [sym_pair_pattern] = STATE(5520), + [sym__property_name] = STATE(3054), + [sym_computed_property_name] = STATE(3054), + [sym_method_signature] = STATE(3828), + [sym_accessibility_modifier] = STATE(2728), + [sym_override_modifier] = STATE(2744), + [sym_call_signature] = STATE(3828), + [sym_property_signature] = STATE(3828), + [sym_type_parameters] = STATE(5435), + [sym_construct_signature] = STATE(3828), + [sym_index_signature] = STATE(3828), + [aux_sym_export_statement_repeat1] = STATE(4467), + [sym_identifier] = ACTIONS(3384), + [anon_sym_export] = ACTIONS(3386), + [anon_sym_STAR] = ACTIONS(3236), + [anon_sym_type] = ACTIONS(3384), + [anon_sym_namespace] = ACTIONS(3384), + [anon_sym_LBRACE] = ACTIONS(3238), + [anon_sym_COMMA] = ACTIONS(3388), + [anon_sym_RBRACE] = ACTIONS(3388), + [anon_sym_let] = ACTIONS(3384), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_async] = ACTIONS(3391), + [anon_sym_new] = ACTIONS(3393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(2478), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3256), + [sym_private_property_identifier] = ACTIONS(3256), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3395), + [anon_sym_readonly] = ACTIONS(3397), + [anon_sym_get] = ACTIONS(3399), + [anon_sym_set] = ACTIONS(3399), + [anon_sym_declare] = ACTIONS(3384), + [anon_sym_public] = ACTIONS(3401), + [anon_sym_private] = ACTIONS(3401), + [anon_sym_protected] = ACTIONS(3401), + [anon_sym_override] = ACTIONS(3403), + [anon_sym_module] = ACTIONS(3384), + [anon_sym_any] = ACTIONS(3384), + [anon_sym_number] = ACTIONS(3384), + [anon_sym_boolean] = ACTIONS(3384), + [anon_sym_string] = ACTIONS(3384), + [anon_sym_symbol] = ACTIONS(3384), + [anon_sym_object] = ACTIONS(3384), + [anon_sym_abstract] = ACTIONS(3268), [sym_html_comment] = ACTIONS(5), }, [1152] = { - [sym_export_statement] = STATE(3867), - [sym_object_pattern] = STATE(5780), - [sym_object_assignment_pattern] = STATE(5287), - [sym_array_pattern] = STATE(5780), - [sym__call_signature] = STATE(4416), - [sym__destructuring_pattern] = STATE(5780), - [sym_spread_element] = STATE(5294), - [sym_string] = STATE(3056), - [sym_decorator] = STATE(1267), - [sym_formal_parameters] = STATE(3276), - [sym_rest_pattern] = STATE(5287), - [sym_method_definition] = STATE(5294), - [sym_pair] = STATE(5294), - [sym_pair_pattern] = STATE(5287), - [sym__property_name] = STATE(3056), - [sym_computed_property_name] = STATE(3056), - [sym_method_signature] = STATE(3867), - [sym_accessibility_modifier] = STATE(2727), - [sym_override_modifier] = STATE(2757), - [sym_call_signature] = STATE(3867), - [sym_property_signature] = STATE(3867), - [sym_type_parameters] = STATE(5374), - [sym_construct_signature] = STATE(3867), - [sym_index_signature] = STATE(3867), - [aux_sym_export_statement_repeat1] = STATE(4535), - [sym_identifier] = ACTIONS(3389), - [anon_sym_export] = ACTIONS(3391), - [anon_sym_STAR] = ACTIONS(3241), - [anon_sym_type] = ACTIONS(3389), - [anon_sym_namespace] = ACTIONS(3389), - [anon_sym_LBRACE] = ACTIONS(3243), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_RBRACE] = ACTIONS(3393), - [anon_sym_let] = ACTIONS(3389), - [anon_sym_LPAREN] = ACTIONS(3249), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_DQUOTE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_async] = ACTIONS(3396), - [anon_sym_new] = ACTIONS(3398), - [anon_sym_DOT_DOT_DOT] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(3259), - [anon_sym_DASH] = ACTIONS(3259), - [anon_sym_LT] = ACTIONS(2537), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3261), - [sym_private_property_identifier] = ACTIONS(3261), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3400), - [anon_sym_readonly] = ACTIONS(3402), - [anon_sym_get] = ACTIONS(3404), - [anon_sym_set] = ACTIONS(3404), - [anon_sym_declare] = ACTIONS(3389), - [anon_sym_public] = ACTIONS(3406), - [anon_sym_private] = ACTIONS(3406), - [anon_sym_protected] = ACTIONS(3406), - [anon_sym_override] = ACTIONS(3408), - [anon_sym_module] = ACTIONS(3389), - [anon_sym_any] = ACTIONS(3389), - [anon_sym_number] = ACTIONS(3389), - [anon_sym_boolean] = ACTIONS(3389), - [anon_sym_string] = ACTIONS(3389), - [anon_sym_symbol] = ACTIONS(3389), - [anon_sym_object] = ACTIONS(3389), - [anon_sym_abstract] = ACTIONS(3273), + [sym_export_statement] = STATE(3920), + [sym_object_pattern] = STATE(5891), + [sym_object_assignment_pattern] = STATE(5520), + [sym_array_pattern] = STATE(5891), + [sym__call_signature] = STATE(4357), + [sym__destructuring_pattern] = STATE(5891), + [sym_spread_element] = STATE(5541), + [sym_string] = STATE(3054), + [sym_decorator] = STATE(1290), + [sym_formal_parameters] = STATE(3267), + [sym_rest_pattern] = STATE(5520), + [sym_method_definition] = STATE(5541), + [sym_pair] = STATE(5541), + [sym_pair_pattern] = STATE(5520), + [sym__property_name] = STATE(3054), + [sym_computed_property_name] = STATE(3054), + [sym_method_signature] = STATE(3920), + [sym_accessibility_modifier] = STATE(2728), + [sym_override_modifier] = STATE(2744), + [sym_call_signature] = STATE(3920), + [sym_property_signature] = STATE(3920), + [sym_type_parameters] = STATE(5435), + [sym_construct_signature] = STATE(3920), + [sym_index_signature] = STATE(3920), + [aux_sym_export_statement_repeat1] = STATE(4467), + [sym_identifier] = ACTIONS(3384), + [anon_sym_export] = ACTIONS(3386), + [anon_sym_STAR] = ACTIONS(3236), + [anon_sym_type] = ACTIONS(3384), + [anon_sym_namespace] = ACTIONS(3384), + [anon_sym_LBRACE] = ACTIONS(3238), + [anon_sym_COMMA] = ACTIONS(3388), + [anon_sym_RBRACE] = ACTIONS(3388), + [anon_sym_let] = ACTIONS(3384), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_async] = ACTIONS(3391), + [anon_sym_new] = ACTIONS(3393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(2478), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3256), + [sym_private_property_identifier] = ACTIONS(3256), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3395), + [anon_sym_readonly] = ACTIONS(3397), + [anon_sym_get] = ACTIONS(3399), + [anon_sym_set] = ACTIONS(3399), + [anon_sym_declare] = ACTIONS(3384), + [anon_sym_public] = ACTIONS(3401), + [anon_sym_private] = ACTIONS(3401), + [anon_sym_protected] = ACTIONS(3401), + [anon_sym_override] = ACTIONS(3403), + [anon_sym_module] = ACTIONS(3384), + [anon_sym_any] = ACTIONS(3384), + [anon_sym_number] = ACTIONS(3384), + [anon_sym_boolean] = ACTIONS(3384), + [anon_sym_string] = ACTIONS(3384), + [anon_sym_symbol] = ACTIONS(3384), + [anon_sym_object] = ACTIONS(3384), + [anon_sym_abstract] = ACTIONS(3268), [sym_html_comment] = ACTIONS(5), }, [1153] = { - [sym_nested_identifier] = STATE(1514), - [sym_string] = STATE(1488), - [sym__module] = STATE(1695), - [sym_identifier] = ACTIONS(3387), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_identifier] = STATE(1498), + [sym_string] = STATE(1500), + [sym__module] = STATE(1740), + [sym_identifier] = ACTIONS(3405), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(158), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [1154] = { - [sym_nested_identifier] = STATE(1510), - [sym_string] = STATE(1512), - [sym__module] = STATE(1731), - [sym_identifier] = ACTIONS(3410), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(877), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_variable_declarator] = STATE(4496), + [sym_object_pattern] = STATE(3624), + [sym_array_pattern] = STATE(3624), + [sym__destructuring_pattern] = STATE(3624), + [sym_identifier] = ACTIONS(3376), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(3378), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [1155] = { - [sym_nested_identifier] = STATE(739), - [sym_string] = STATE(747), - [sym__module] = STATE(875), - [sym_identifier] = ACTIONS(3373), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(877), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(881), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_identifier] = STATE(223), + [sym_string] = STATE(216), + [sym__module] = STATE(245), + [sym_identifier] = ACTIONS(3370), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(856), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DQUOTE] = ACTIONS(3372), + [anon_sym_SQUOTE] = ACTIONS(3374), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [1156] = { - [sym_variable_declarator] = STATE(4470), - [sym_object_pattern] = STATE(3735), - [sym_array_pattern] = STATE(3735), - [sym__destructuring_pattern] = STATE(3735), - [sym_identifier] = ACTIONS(3381), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(877), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(879), - [anon_sym_LBRACK] = ACTIONS(3385), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_identifier] = STATE(1502), + [sym_string] = STATE(1503), + [sym__module] = STATE(1628), + [sym_identifier] = ACTIONS(3382), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(842), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(883), + [anon_sym_RBRACE] = ACTIONS(883), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(834), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_RBRACK] = ACTIONS(883), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_EQ_GT] = ACTIONS(156), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [1157] = { - [sym_nested_identifier] = STATE(1510), - [sym_string] = STATE(1512), - [sym__module] = STATE(1731), - [sym_identifier] = ACTIONS(3410), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(877), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(879), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_identifier] = STATE(4574), + [sym_string] = STATE(781), + [sym__module] = STATE(900), + [sym_identifier] = ACTIONS(3407), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [1158] = { - [sym_nested_identifier] = STATE(1514), - [sym_string] = STATE(1488), - [sym__module] = STATE(1695), - [sym_identifier] = ACTIONS(3387), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(871), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_identifier] = STATE(751), + [sym_string] = STATE(781), + [sym__module] = STATE(900), + [sym_identifier] = ACTIONS(3368), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [1159] = { - [sym_variable_declarator] = STATE(4470), - [sym_object_pattern] = STATE(3735), - [sym_array_pattern] = STATE(3735), - [sym__destructuring_pattern] = STATE(3735), - [sym_identifier] = ACTIONS(3381), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(877), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(883), - [anon_sym_LBRACK] = ACTIONS(3385), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_identifier] = STATE(1498), + [sym_string] = STATE(1500), + [sym__module] = STATE(1740), + [sym_identifier] = ACTIONS(3405), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(864), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_EQ_GT] = ACTIONS(870), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [1160] = { - [sym_nested_identifier] = STATE(739), - [sym_string] = STATE(747), - [sym__module] = STATE(875), - [sym_identifier] = ACTIONS(3373), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(877), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(883), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_identifier] = STATE(1498), + [sym_string] = STATE(1500), + [sym__module] = STATE(1740), + [sym_identifier] = ACTIONS(3405), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [1161] = { - [sym_nested_identifier] = STATE(1510), - [sym_string] = STATE(1512), - [sym__module] = STATE(1731), - [sym_identifier] = ACTIONS(3410), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(865), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_EQ_GT] = ACTIONS(871), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_identifier] = STATE(1502), + [sym_string] = STATE(1503), + [sym__module] = STATE(1628), + [sym_identifier] = ACTIONS(3382), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(814), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_RBRACE] = ACTIONS(158), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [1162] = { - [sym_nested_identifier] = STATE(4585), - [sym_string] = STATE(747), - [sym__module] = STATE(875), - [sym_identifier] = ACTIONS(3412), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(877), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(879), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_identifier] = STATE(751), + [sym_string] = STATE(781), + [sym__module] = STATE(900), + [sym_identifier] = ACTIONS(3368), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(856), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [1163] = { - [sym_nested_identifier] = STATE(227), - [sym_string] = STATE(225), - [sym__module] = STATE(256), - [sym_identifier] = ACTIONS(3375), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(877), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(881), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(3377), - [anon_sym_SQUOTE] = ACTIONS(3379), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_identifier] = STATE(1502), + [sym_string] = STATE(1503), + [sym__module] = STATE(1628), + [sym_identifier] = ACTIONS(3382), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(814), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_EQ_GT] = ACTIONS(870), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [1164] = { - [sym_nested_identifier] = STATE(1510), - [sym_string] = STATE(1512), - [sym__module] = STATE(1731), - [sym_identifier] = ACTIONS(3410), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(877), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(883), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_variable_declarator] = STATE(4496), + [sym_object_pattern] = STATE(3624), + [sym_array_pattern] = STATE(3624), + [sym__destructuring_pattern] = STATE(3624), + [sym_identifier] = ACTIONS(3376), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(3378), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(856), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [1165] = { - [sym_nested_identifier] = STATE(1514), - [sym_string] = STATE(1488), - [sym__module] = STATE(1695), - [sym_identifier] = ACTIONS(3387), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(859), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(885), - [anon_sym_RBRACE] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(855), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(229), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym_variable_declarator] = STATE(4496), + [sym_object_pattern] = STATE(3624), + [sym_array_pattern] = STATE(3624), + [sym__destructuring_pattern] = STATE(3624), + [sym_identifier] = ACTIONS(3376), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(3378), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, [1166] = { - [sym_variable_declarator] = STATE(4470), - [sym_object_pattern] = STATE(3735), - [sym_array_pattern] = STATE(3735), - [sym__destructuring_pattern] = STATE(3735), - [sym_identifier] = ACTIONS(3381), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(877), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(881), - [anon_sym_LBRACK] = ACTIONS(3385), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_EQ_GT] = ACTIONS(717), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym_nested_identifier] = STATE(1498), + [sym_string] = STATE(1500), + [sym__module] = STATE(1740), + [sym_identifier] = ACTIONS(3405), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_SLASH_EQ] = ACTIONS(164), + [anon_sym_PERCENT_EQ] = ACTIONS(164), + [anon_sym_CARET_EQ] = ACTIONS(164), + [anon_sym_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_EQ] = ACTIONS(164), + [anon_sym_GT_GT_EQ] = ACTIONS(164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), + [anon_sym_LT_LT_EQ] = ACTIONS(164), + [anon_sym_STAR_STAR_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP_EQ] = ACTIONS(164), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(158), + [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(158), + [anon_sym_DASH_DASH] = ACTIONS(158), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(158), [sym_html_comment] = ACTIONS(5), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 3, + [0] = 14, + ACTIONS(691), 1, + anon_sym_EQ, + ACTIONS(701), 1, + anon_sym_COLON, + ACTIONS(712), 1, + anon_sym_EQ_GT, + ACTIONS(720), 1, + anon_sym_QMARK, + ACTIONS(722), 1, + anon_sym_RBRACE, + ACTIONS(2250), 1, + anon_sym_LPAREN, + ACTIONS(2259), 1, + anon_sym_LT, + ACTIONS(3409), 1, + sym_identifier, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3414), 23, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - ACTIONS(3416), 39, + ACTIONS(158), 14, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139301,44 +137538,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(120), 23, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [71] = 14, - ACTIONS(696), 1, - anon_sym_EQ, - ACTIONS(706), 1, - anon_sym_COLON, - ACTIONS(717), 1, + [93] = 14, + ACTIONS(146), 1, + anon_sym_DQUOTE, + ACTIONS(148), 1, + anon_sym_SQUOTE, + ACTIONS(156), 1, anon_sym_EQ_GT, - ACTIONS(725), 1, - anon_sym_QMARK, - ACTIONS(727), 1, - anon_sym_RBRACE, - ACTIONS(2255), 1, - anon_sym_LPAREN, - ACTIONS(2264), 1, - anon_sym_LT, - ACTIONS(3418), 1, + ACTIONS(842), 1, + anon_sym_EQ, + ACTIONS(878), 1, + anon_sym_in, + ACTIONS(881), 1, + anon_sym_of, + ACTIONS(3382), 1, sym_identifier, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, + STATE(1502), 1, + sym_nested_identifier, + STATE(1503), 1, + sym_string, + STATE(1628), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, - sym__automatic_semicolon, + ACTIONS(158), 14, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -139350,7 +137601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139366,11 +137617,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 23, + ACTIONS(120), 23, anon_sym_STAR, anon_sym_as, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -139385,16 +137635,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [164] = 3, + [186] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3420), 23, + ACTIONS(3411), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -139418,7 +137669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3422), 39, + ACTIONS(3413), 39, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -139458,49 +137709,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [235] = 3, + [257] = 14, + ACTIONS(691), 1, + anon_sym_EQ, + ACTIONS(697), 1, + anon_sym_RBRACE, + ACTIONS(701), 1, + anon_sym_COLON, + ACTIONS(712), 1, + anon_sym_EQ_GT, + ACTIONS(720), 1, + anon_sym_QMARK, + ACTIONS(2250), 1, + anon_sym_LPAREN, + ACTIONS(2259), 1, + anon_sym_LT, + ACTIONS(3409), 1, + sym_identifier, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3424), 23, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - ACTIONS(3426), 39, + ACTIONS(158), 14, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139516,21 +137764,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(120), 23, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [306] = 3, + [350] = 4, + ACTIONS(3419), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3428), 23, + ACTIONS(3415), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -139554,7 +137818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3430), 39, + ACTIONS(3417), 38, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -139563,7 +137827,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -139594,11 +137857,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [377] = 3, + [423] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3432), 23, + ACTIONS(3421), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -139622,7 +137885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3434), 39, + ACTIONS(3423), 39, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -139662,13 +137925,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [448] = 4, - ACTIONS(3436), 1, + [494] = 4, + ACTIONS(3429), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3420), 23, + ACTIONS(3425), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -139692,7 +137955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3422), 38, + ACTIONS(3427), 38, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -139731,13 +137994,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [521] = 4, - ACTIONS(3438), 1, - anon_sym_extends, + [567] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3424), 23, + ACTIONS(3431), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -139761,7 +138022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3426), 38, + ACTIONS(3433), 39, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -139770,6 +138031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -139800,49 +138062,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [594] = 3, + [638] = 14, + ACTIONS(3437), 1, + anon_sym_EQ, + ACTIONS(3443), 1, + anon_sym_LPAREN, + ACTIONS(3447), 1, + anon_sym_DOT, + ACTIONS(3449), 1, + anon_sym_EQ_GT, + ACTIONS(3451), 1, + anon_sym_QMARK_DOT, + ACTIONS(3455), 1, + anon_sym_LT, + STATE(2880), 1, + sym_arguments, + STATE(2987), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3440), 23, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, + ACTIONS(3441), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3445), 3, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - ACTIONS(3442), 39, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139858,6 +138106,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(3439), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -139867,32 +138123,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [665] = 12, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(916), 1, + ACTIONS(3435), 17, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + 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_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [731] = 14, + ACTIONS(691), 1, anon_sym_EQ, - ACTIONS(922), 1, + ACTIONS(701), 1, + anon_sym_COLON, + ACTIONS(712), 1, anon_sym_EQ_GT, - ACTIONS(3387), 1, + ACTIONS(720), 1, + anon_sym_QMARK, + ACTIONS(724), 1, + anon_sym_RBRACE, + ACTIONS(2250), 1, + anon_sym_LPAREN, + ACTIONS(2259), 1, + anon_sym_LT, + ACTIONS(3409), 1, sym_identifier, - STATE(1488), 1, - sym_string, - STATE(1514), 1, - sym_nested_identifier, - STATE(1695), 1, - sym__module, + STATE(5129), 1, + aux_sym_object_repeat1, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, + ACTIONS(158), 14, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -139903,7 +138180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139919,7 +138196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 25, + ACTIONS(120), 23, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -139938,18 +138215,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - anon_sym_implements, - [754] = 3, + [824] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3444), 23, + ACTIONS(3415), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -139973,7 +138248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3446), 39, + ACTIONS(3417), 39, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -140013,35 +138288,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [825] = 14, - ACTIONS(3450), 1, - anon_sym_EQ, - ACTIONS(3456), 1, - anon_sym_LPAREN, - ACTIONS(3460), 1, - anon_sym_DOT, - ACTIONS(3462), 1, - anon_sym_EQ_GT, - ACTIONS(3464), 1, - anon_sym_QMARK_DOT, - ACTIONS(3468), 1, - anon_sym_LT, - STATE(2886), 1, - sym_arguments, - STATE(2958), 1, - sym_type_arguments, + [895] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3454), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3458), 3, + ACTIONS(3425), 23, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(3466), 15, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + ACTIONS(3427), 39, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140057,14 +138346,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3452), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -140074,64 +138355,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3448), 17, + anon_sym_implements, + [966] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3457), 23, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [918] = 14, - ACTIONS(696), 1, - anon_sym_EQ, - ACTIONS(702), 1, - anon_sym_RBRACE, - ACTIONS(706), 1, - anon_sym_COLON, - ACTIONS(717), 1, - anon_sym_EQ_GT, - ACTIONS(725), 1, anon_sym_QMARK, - ACTIONS(2255), 1, - anon_sym_LPAREN, - ACTIONS(2264), 1, - anon_sym_LT, - ACTIONS(3418), 1, - sym_identifier, - STATE(4673), 1, - aux_sym_object_repeat1, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(161), 14, - sym__automatic_semicolon, + ACTIONS(3459), 39, sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(167), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140147,9 +138414,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 23, + 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_satisfies, + anon_sym_implements, + [1037] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3461), 23, anon_sym_STAR, - anon_sym_as, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -140166,32 +138447,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, + anon_sym_QMARK, + ACTIONS(3463), 39, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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_satisfies, - [1011] = 12, - ACTIONS(149), 1, + anon_sym_implements, + [1108] = 12, + ACTIONS(146), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(148), 1, anon_sym_SQUOTE, - ACTIONS(853), 1, + ACTIONS(939), 1, anon_sym_EQ, - ACTIONS(922), 1, + ACTIONS(945), 1, anon_sym_EQ_GT, - ACTIONS(3387), 1, + ACTIONS(3382), 1, sym_identifier, - STATE(1488), 1, - sym_string, - STATE(1514), 1, + STATE(1502), 1, sym_nested_identifier, - STATE(1695), 1, + STATE(1503), 1, + sym_string, + STATE(1628), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, + ACTIONS(158), 14, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -140206,7 +138527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140222,7 +138543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 25, + ACTIONS(120), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -140248,35 +138569,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_satisfies, anon_sym_implements, - [1100] = 14, - ACTIONS(149), 1, + [1197] = 15, + ACTIONS(126), 1, + anon_sym_RBRACK, + ACTIONS(146), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(148), 1, anon_sym_SQUOTE, - ACTIONS(229), 1, - anon_sym_EQ_GT, - ACTIONS(859), 1, + ACTIONS(223), 1, + anon_sym_COMMA, + ACTIONS(890), 1, anon_sym_EQ, - ACTIONS(905), 1, - anon_sym_in, - ACTIONS(908), 1, - anon_sym_of, - ACTIONS(3387), 1, + ACTIONS(895), 1, + anon_sym_COLON, + ACTIONS(899), 1, + anon_sym_EQ_GT, + ACTIONS(3382), 1, sym_identifier, - STATE(1488), 1, - sym_string, - STATE(1514), 1, + STATE(1502), 1, sym_nested_identifier, - STATE(1695), 1, + STATE(1503), 1, + sym_string, + STATE(1628), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, + ACTIONS(158), 12, sym__ternary_qmark, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -140287,7 +138608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140303,10 +138624,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 23, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -140327,34 +138649,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [1193] = 15, - ACTIONS(128), 1, - anon_sym_COMMA, - ACTIONS(149), 1, + [1292] = 12, + ACTIONS(146), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(148), 1, anon_sym_SQUOTE, - ACTIONS(226), 1, - anon_sym_RBRACK, - ACTIONS(892), 1, + ACTIONS(814), 1, anon_sym_EQ, - ACTIONS(897), 1, - anon_sym_COLON, - ACTIONS(901), 1, + ACTIONS(945), 1, anon_sym_EQ_GT, - ACTIONS(3387), 1, + ACTIONS(3382), 1, sym_identifier, - STATE(1488), 1, - sym_string, - STATE(1514), 1, + STATE(1502), 1, sym_nested_identifier, - STATE(1695), 1, + STATE(1503), 1, + sym_string, + STATE(1628), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(158), 14, sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -140366,7 +138684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140382,7 +138700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(120), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -140407,31 +138725,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [1288] = 13, - ACTIONS(229), 1, + anon_sym_implements, + [1381] = 13, + ACTIONS(156), 1, anon_sym_EQ_GT, - ACTIONS(859), 1, + ACTIONS(842), 1, anon_sym_EQ, - ACTIONS(905), 1, + ACTIONS(878), 1, anon_sym_in, - ACTIONS(908), 1, + ACTIONS(881), 1, anon_sym_of, - ACTIONS(3383), 1, + ACTIONS(3378), 1, anon_sym_LBRACE, - ACTIONS(3385), 1, + ACTIONS(3380), 1, anon_sym_LBRACK, - ACTIONS(3470), 1, + ACTIONS(3465), 1, sym_identifier, - STATE(4470), 1, + STATE(4496), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3320), 3, + STATE(3467), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(161), 13, + ACTIONS(158), 13, sym__ternary_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -140445,7 +138764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140461,7 +138780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 23, + ACTIONS(120), 23, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -140485,46 +138804,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [1379] = 14, - ACTIONS(696), 1, - anon_sym_EQ, - ACTIONS(706), 1, - anon_sym_COLON, - ACTIONS(717), 1, - anon_sym_EQ_GT, - ACTIONS(725), 1, - anon_sym_QMARK, - ACTIONS(729), 1, - anon_sym_RBRACE, - ACTIONS(2255), 1, - anon_sym_LPAREN, - ACTIONS(2264), 1, - anon_sym_LT, - ACTIONS(3418), 1, - sym_identifier, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, + [1472] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, - sym__automatic_semicolon, + ACTIONS(2456), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(2454), 39, sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(167), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140540,55 +138861,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 23, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [1472] = 12, - ACTIONS(948), 1, - anon_sym_EQ, - ACTIONS(954), 1, - anon_sym_EQ_GT, - ACTIONS(1510), 1, + anon_sym_implements, + [1542] = 14, + ACTIONS(126), 1, + anon_sym_RBRACK, + ACTIONS(146), 1, anon_sym_DQUOTE, - ACTIONS(1512), 1, + ACTIONS(148), 1, anon_sym_SQUOTE, - ACTIONS(3412), 1, + ACTIONS(223), 1, + anon_sym_COMMA, + ACTIONS(890), 1, + anon_sym_EQ, + ACTIONS(899), 1, + anon_sym_EQ_GT, + ACTIONS(3382), 1, sym_identifier, - STATE(747), 1, + STATE(1502), 1, + sym_nested_identifier, + STATE(1503), 1, sym_string, - STATE(875), 1, + STATE(1628), 1, sym__module, - STATE(4585), 1, - sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, - sym__automatic_semicolon, + ACTIONS(158), 12, sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -140599,7 +138908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140615,7 +138924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -140640,43 +138949,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [1560] = 13, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(901), 1, - anon_sym_EQ_GT, - ACTIONS(928), 1, + [1634] = 14, + ACTIONS(3437), 1, anon_sym_EQ, - ACTIONS(930), 1, - anon_sym_COLON, - ACTIONS(3387), 1, - sym_identifier, - STATE(1488), 1, - sym_string, - STATE(1514), 1, - sym_nested_identifier, - STATE(1695), 1, - sym__module, + ACTIONS(3449), 1, + anon_sym_EQ_GT, + ACTIONS(3467), 1, + anon_sym_LPAREN, + ACTIONS(3469), 1, + anon_sym_DOT, + ACTIONS(3471), 1, + anon_sym_QMARK_DOT, + ACTIONS(3473), 1, + anon_sym_LT, + STATE(3046), 1, + sym_arguments, + STATE(3197), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 13, - sym__ternary_qmark, - anon_sym_LPAREN, + ACTIONS(3445), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3441), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3439), 11, + sym__ternary_qmark, + anon_sym_as, 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(167), 15, + anon_sym_satisfies, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140692,9 +139008,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(3435), 18, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -140703,47 +139018,41 @@ static const 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_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [1650] = 13, - ACTIONS(149), 1, + [1726] = 12, + ACTIONS(909), 1, + anon_sym_EQ, + ACTIONS(915), 1, + anon_sym_EQ_GT, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(897), 1, - anon_sym_COLON, - ACTIONS(901), 1, - anon_sym_EQ_GT, - ACTIONS(928), 1, - anon_sym_EQ, - ACTIONS(3387), 1, + ACTIONS(3407), 1, sym_identifier, - STATE(1488), 1, + STATE(781), 1, sym_string, - STATE(1514), 1, - sym_nested_identifier, - STATE(1695), 1, + STATE(900), 1, sym__module, + STATE(4574), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 13, + ACTIONS(158), 14, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -140753,7 +139062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140769,7 +139078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -140794,32 +139103,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [1740] = 12, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(910), 1, - anon_sym_EQ_GT, - ACTIONS(936), 1, + [1814] = 11, + ACTIONS(909), 1, anon_sym_EQ, - ACTIONS(3387), 1, + ACTIONS(915), 1, + anon_sym_EQ_GT, + ACTIONS(3376), 1, sym_identifier, - STATE(1488), 1, - sym_string, - STATE(1514), 1, - sym_nested_identifier, - STATE(1695), 1, - sym__module, + ACTIONS(3378), 1, + anon_sym_LBRACE, + ACTIONS(3380), 1, + anon_sym_LBRACK, + STATE(4487), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, + STATE(3624), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(158), 13, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -140829,7 +139137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140845,7 +139153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -140870,30 +139178,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [1828] = 12, - ACTIONS(948), 1, + [1900] = 13, + ACTIONS(701), 1, + anon_sym_COLON, + ACTIONS(720), 1, + anon_sym_QMARK, + ACTIONS(724), 1, + anon_sym_RBRACE, + ACTIONS(3475), 1, anon_sym_EQ, - ACTIONS(954), 1, + ACTIONS(3477), 1, + anon_sym_LPAREN, + ACTIONS(3480), 1, anon_sym_EQ_GT, - ACTIONS(1510), 1, - anon_sym_DQUOTE, - ACTIONS(1512), 1, - anon_sym_SQUOTE, - ACTIONS(3373), 1, - sym_identifier, - STATE(739), 1, - sym_nested_identifier, - STATE(747), 1, - sym_string, - STATE(875), 1, - sym__module, + ACTIONS(3482), 1, + anon_sym_LT, + STATE(5129), 1, + aux_sym_object_repeat1, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, + ACTIONS(3453), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(3439), 17, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LPAREN, + anon_sym_as, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -140902,10 +139229,55 @@ static const 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, - ACTIONS(167), 15, + anon_sym_satisfies, + ACTIONS(3435), 20, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [1990] = 13, + ACTIONS(691), 1, + anon_sym_EQ, + ACTIONS(697), 1, + anon_sym_RBRACE, + ACTIONS(701), 1, + anon_sym_COLON, + ACTIONS(712), 1, + anon_sym_EQ_GT, + ACTIONS(720), 1, + anon_sym_QMARK, + ACTIONS(2250), 1, + anon_sym_LPAREN, + ACTIONS(2259), 1, + anon_sym_LT, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140921,9 +139293,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, - anon_sym_STAR, + ACTIONS(158), 17, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(120), 20, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -140940,35 +139329,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [1916] = 13, - ACTIONS(706), 1, + [2080] = 13, + ACTIONS(691), 1, + anon_sym_EQ, + ACTIONS(701), 1, anon_sym_COLON, - ACTIONS(725), 1, + ACTIONS(712), 1, + anon_sym_EQ_GT, + ACTIONS(720), 1, anon_sym_QMARK, - ACTIONS(729), 1, + ACTIONS(722), 1, anon_sym_RBRACE, - ACTIONS(3472), 1, - anon_sym_EQ, - ACTIONS(3474), 1, + ACTIONS(2250), 1, anon_sym_LPAREN, - ACTIONS(3477), 1, - anon_sym_EQ_GT, - ACTIONS(3479), 1, + ACTIONS(2259), 1, anon_sym_LT, - STATE(4679), 1, + STATE(5131), 1, aux_sym_object_pattern_repeat1, - STATE(5173), 1, + STATE(5191), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140984,7 +139370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3452), 17, + ACTIONS(158), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -141002,7 +139388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3448), 20, + ACTIONS(120), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141023,27 +139409,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [2006] = 12, - ACTIONS(948), 1, + [2170] = 12, + ACTIONS(909), 1, anon_sym_EQ, - ACTIONS(954), 1, + ACTIONS(915), 1, anon_sym_EQ_GT, - ACTIONS(1588), 1, + ACTIONS(3370), 1, + sym_identifier, + ACTIONS(3372), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(3374), 1, anon_sym_SQUOTE, - ACTIONS(3482), 1, - sym_identifier, - STATE(3505), 1, - sym_nested_identifier, - STATE(3750), 1, + STATE(216), 1, sym_string, - STATE(4447), 1, + STATE(223), 1, + sym_nested_identifier, + STATE(245), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, + ACTIONS(158), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_LPAREN, @@ -141058,7 +139444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141074,7 +139460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -141099,32 +139485,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [2094] = 12, - ACTIONS(948), 1, + [2258] = 11, + ACTIONS(909), 1, anon_sym_EQ, - ACTIONS(954), 1, + ACTIONS(915), 1, anon_sym_EQ_GT, - ACTIONS(3375), 1, + ACTIONS(3376), 1, sym_identifier, - ACTIONS(3377), 1, - anon_sym_DQUOTE, - ACTIONS(3379), 1, - anon_sym_SQUOTE, - STATE(225), 1, - sym_string, - STATE(227), 1, - sym_nested_identifier, - STATE(256), 1, - sym__module, + ACTIONS(3378), 1, + anon_sym_LBRACE, + ACTIONS(3380), 1, + anon_sym_LBRACK, + STATE(4496), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, + STATE(3624), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(158), 13, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -141134,7 +139519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141150,7 +139535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -141175,42 +139560,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [2182] = 12, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(853), 1, + [2344] = 5, + ACTIONS(3485), 1, anon_sym_EQ, - ACTIONS(910), 1, - anon_sym_EQ_GT, - ACTIONS(3387), 1, - sym_identifier, - STATE(1488), 1, - sym_string, - STATE(1514), 1, - sym_nested_identifier, - STATE(1695), 1, - sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, - sym__ternary_qmark, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141226,9 +139582,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(3435), 21, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -141249,33 +139604,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, + ACTIONS(3439), 24, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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_satisfies, - [2270] = 11, - ACTIONS(948), 1, + anon_sym_implements, + [2418] = 12, + ACTIONS(909), 1, anon_sym_EQ, - ACTIONS(954), 1, + ACTIONS(915), 1, anon_sym_EQ_GT, - ACTIONS(3381), 1, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(3368), 1, sym_identifier, - ACTIONS(3383), 1, - anon_sym_LBRACE, - ACTIONS(3385), 1, - anon_sym_LBRACK, - STATE(4470), 1, - sym_variable_declarator, + STATE(751), 1, + sym_nested_identifier, + STATE(781), 1, + sym_string, + STATE(900), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3735), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(161), 13, + ACTIONS(158), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -141285,7 +139664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141301,7 +139680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -141326,29 +139705,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [2356] = 13, - ACTIONS(696), 1, + [2506] = 12, + ACTIONS(909), 1, anon_sym_EQ, - ACTIONS(702), 1, - anon_sym_RBRACE, - ACTIONS(706), 1, - anon_sym_COLON, - ACTIONS(717), 1, + ACTIONS(915), 1, anon_sym_EQ_GT, - ACTIONS(725), 1, - anon_sym_QMARK, - ACTIONS(2255), 1, - anon_sym_LPAREN, - ACTIONS(2264), 1, - anon_sym_LT, - STATE(4673), 1, - aux_sym_object_repeat1, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 1, + anon_sym_SQUOTE, + ACTIONS(3487), 1, + sym_identifier, + STATE(3504), 1, + sym_nested_identifier, + STATE(3657), 1, + sym_string, + STATE(4416), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(158), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141364,52 +139756,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(122), 20, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [2446] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2479), 22, + ACTIONS(120), 24, anon_sym_STAR, - anon_sym_EQ, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -141430,73 +139779,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2477), 39, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - 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_satisfies, - anon_sym_implements, - [2516] = 14, - ACTIONS(128), 1, - anon_sym_COMMA, - ACTIONS(149), 1, + [2594] = 12, + ACTIONS(146), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(148), 1, anon_sym_SQUOTE, - ACTIONS(226), 1, - anon_sym_RBRACK, - ACTIONS(892), 1, + ACTIONS(925), 1, anon_sym_EQ, - ACTIONS(901), 1, + ACTIONS(931), 1, anon_sym_EQ_GT, - ACTIONS(3387), 1, + ACTIONS(3382), 1, sym_identifier, - STATE(1488), 1, - sym_string, - STATE(1514), 1, + STATE(1502), 1, sym_nested_identifier, - STATE(1695), 1, + STATE(1503), 1, + sym_string, + STATE(1628), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(158), 14, sym__ternary_qmark, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -141507,7 +139816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141523,7 +139832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -141548,29 +139857,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [2608] = 13, - ACTIONS(696), 1, - anon_sym_EQ, - ACTIONS(706), 1, + [2682] = 13, + ACTIONS(697), 1, + anon_sym_RBRACE, + ACTIONS(701), 1, anon_sym_COLON, - ACTIONS(717), 1, - anon_sym_EQ_GT, - ACTIONS(725), 1, + ACTIONS(720), 1, anon_sym_QMARK, - ACTIONS(727), 1, - anon_sym_RBRACE, - ACTIONS(2255), 1, + ACTIONS(3475), 1, + anon_sym_EQ, + ACTIONS(3477), 1, anon_sym_LPAREN, - ACTIONS(2264), 1, + ACTIONS(3480), 1, + anon_sym_EQ_GT, + ACTIONS(3482), 1, anon_sym_LT, - STATE(4679), 1, + STATE(5131), 1, aux_sym_object_pattern_repeat1, - STATE(5173), 1, + STATE(5191), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141586,7 +139895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 17, + ACTIONS(3439), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -141604,7 +139913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 20, + ACTIONS(3435), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141625,29 +139934,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [2698] = 13, - ACTIONS(696), 1, + [2772] = 12, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + ACTIONS(909), 1, anon_sym_EQ, - ACTIONS(706), 1, - anon_sym_COLON, - ACTIONS(717), 1, + ACTIONS(915), 1, anon_sym_EQ_GT, - ACTIONS(725), 1, - anon_sym_QMARK, - ACTIONS(729), 1, - anon_sym_RBRACE, - ACTIONS(2255), 1, - anon_sym_LPAREN, - ACTIONS(2264), 1, - anon_sym_LT, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, + ACTIONS(3405), 1, + sym_identifier, + STATE(1498), 1, + sym_nested_identifier, + STATE(1500), 1, + sym_string, + STATE(1740), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(158), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141663,26 +139985,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(122), 20, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -141699,16 +140004,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [2788] = 5, - ACTIONS(3484), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [2860] = 13, + ACTIONS(146), 1, + anon_sym_DQUOTE, + ACTIONS(148), 1, + anon_sym_SQUOTE, + ACTIONS(899), 1, + anon_sym_EQ_GT, + ACTIONS(903), 1, anon_sym_EQ, + ACTIONS(919), 1, + anon_sym_COLON, + ACTIONS(3382), 1, + sym_identifier, + STATE(1502), 1, + sym_nested_identifier, + STATE(1503), 1, + sym_string, + STATE(1628), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 15, + ACTIONS(158), 13, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141724,8 +140062,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 21, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -141746,88 +140085,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3452), 24, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - 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_satisfies, - anon_sym_implements, - [2862] = 3, + [2950] = 12, + ACTIONS(3437), 1, + anon_sym_EQ, + ACTIONS(3449), 1, + anon_sym_EQ_GT, + ACTIONS(3495), 1, + anon_sym_DOT, + ACTIONS(3498), 1, + anon_sym_LT, + ACTIONS(3501), 1, + anon_sym_extends, + STATE(2909), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2487), 22, + ACTIONS(3489), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3492), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3453), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(3435), 17, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2485), 39, + ACTIONS(3439), 18, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, 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, @@ -141837,30 +140163,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [2932] = 13, - ACTIONS(706), 1, + [3038] = 13, + ACTIONS(701), 1, anon_sym_COLON, - ACTIONS(725), 1, + ACTIONS(720), 1, anon_sym_QMARK, - ACTIONS(727), 1, + ACTIONS(722), 1, anon_sym_RBRACE, - ACTIONS(3472), 1, + ACTIONS(3475), 1, anon_sym_EQ, - ACTIONS(3474), 1, - anon_sym_LPAREN, ACTIONS(3477), 1, + anon_sym_LPAREN, + ACTIONS(3480), 1, anon_sym_EQ_GT, - ACTIONS(3479), 1, + ACTIONS(3482), 1, anon_sym_LT, - STATE(4679), 1, + STATE(5131), 1, aux_sym_object_pattern_repeat1, - STATE(5173), 1, + STATE(5191), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141876,7 +140201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3452), 17, + ACTIONS(3439), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -141894,7 +140219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3448), 20, + ACTIONS(3435), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141915,32 +140240,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3022] = 12, - ACTIONS(149), 1, + [3128] = 13, + ACTIONS(146), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(148), 1, anon_sym_SQUOTE, - ACTIONS(853), 1, - anon_sym_EQ, - ACTIONS(954), 1, + ACTIONS(895), 1, + anon_sym_COLON, + ACTIONS(899), 1, anon_sym_EQ_GT, - ACTIONS(3387), 1, + ACTIONS(903), 1, + anon_sym_EQ, + ACTIONS(3382), 1, sym_identifier, - STATE(1488), 1, - sym_string, - STATE(1514), 1, + STATE(1502), 1, sym_nested_identifier, - STATE(1695), 1, + STATE(1503), 1, + sym_string, + STATE(1628), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, - sym__automatic_semicolon, + ACTIONS(158), 13, sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -141950,7 +140276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141966,7 +140292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -141991,29 +140317,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [3110] = 13, - ACTIONS(702), 1, - anon_sym_RBRACE, - ACTIONS(706), 1, + [3218] = 13, + ACTIONS(691), 1, + anon_sym_EQ, + ACTIONS(701), 1, anon_sym_COLON, - ACTIONS(725), 1, + ACTIONS(712), 1, + anon_sym_EQ_GT, + ACTIONS(720), 1, anon_sym_QMARK, - ACTIONS(3472), 1, - anon_sym_EQ, - ACTIONS(3474), 1, + ACTIONS(724), 1, + anon_sym_RBRACE, + ACTIONS(2250), 1, anon_sym_LPAREN, - ACTIONS(3477), 1, - anon_sym_EQ_GT, - ACTIONS(3479), 1, + ACTIONS(2259), 1, anon_sym_LT, - STATE(4673), 1, + STATE(5129), 1, aux_sym_object_repeat1, - STATE(4679), 1, + STATE(5131), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142029,7 +140355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3452), 17, + ACTIONS(158), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -142047,7 +140373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3448), 20, + ACTIONS(120), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142068,30 +140394,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3200] = 12, - ACTIONS(3450), 1, + [3308] = 12, + ACTIONS(146), 1, + anon_sym_DQUOTE, + ACTIONS(148), 1, + anon_sym_SQUOTE, + ACTIONS(814), 1, anon_sym_EQ, - ACTIONS(3462), 1, + ACTIONS(915), 1, anon_sym_EQ_GT, - ACTIONS(3492), 1, - anon_sym_DOT, - ACTIONS(3495), 1, - anon_sym_LT, - ACTIONS(3498), 1, - anon_sym_extends, - STATE(2908), 1, - sym_type_arguments, + ACTIONS(3382), 1, + sym_identifier, + STATE(1502), 1, + sym_nested_identifier, + STATE(1503), 1, + sym_string, + STATE(1628), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3486), 2, - anon_sym_COMMA, + ACTIONS(158), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3489), 3, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(164), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(120), 24, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(3466), 15, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [3396] = 12, + ACTIONS(146), 1, + anon_sym_DQUOTE, + ACTIONS(148), 1, + anon_sym_SQUOTE, + ACTIONS(814), 1, + anon_sym_EQ, + ACTIONS(931), 1, + anon_sym_EQ_GT, + ACTIONS(3382), 1, + sym_identifier, + STATE(1502), 1, + sym_nested_identifier, + STATE(1503), 1, + sym_string, + STATE(1628), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(158), 14, + sym__ternary_qmark, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142107,34 +140521,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 17, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3452), 18, + anon_sym_instanceof, + anon_sym_satisfies, + [3484] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2452), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(2450), 39, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, 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, @@ -142144,50 +140612,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [3288] = 14, - ACTIONS(3450), 1, + anon_sym_implements, + [3554] = 12, + ACTIONS(146), 1, + anon_sym_DQUOTE, + ACTIONS(148), 1, + anon_sym_SQUOTE, + ACTIONS(814), 1, anon_sym_EQ, - ACTIONS(3462), 1, + ACTIONS(899), 1, anon_sym_EQ_GT, - ACTIONS(3500), 1, + ACTIONS(3382), 1, + sym_identifier, + STATE(1502), 1, + sym_nested_identifier, + STATE(1503), 1, + sym_string, + STATE(1628), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(158), 13, + sym__ternary_qmark, anon_sym_LPAREN, - ACTIONS(3502), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(3504), 1, anon_sym_QMARK_DOT, - ACTIONS(3506), 1, + 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(164), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(120), 24, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, - STATE(3048), 1, - sym_arguments, - STATE(3217), 1, - sym_type_arguments, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [3641] = 12, + ACTIONS(146), 1, + anon_sym_DQUOTE, + ACTIONS(148), 1, + anon_sym_SQUOTE, + ACTIONS(899), 1, + anon_sym_EQ_GT, + ACTIONS(903), 1, + anon_sym_EQ, + ACTIONS(3382), 1, + sym_identifier, + STATE(1502), 1, + sym_nested_identifier, + STATE(1503), 1, + sym_string, + STATE(1628), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3458), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3454), 7, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3452), 11, + ACTIONS(158), 13, sym__ternary_qmark, - anon_sym_as, + anon_sym_LPAREN, + 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, - anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142203,8 +140738,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 18, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -142213,40 +140749,44 @@ static const 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_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3380] = 11, - ACTIONS(948), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [3728] = 12, + ACTIONS(146), 1, + anon_sym_DQUOTE, + ACTIONS(148), 1, + anon_sym_SQUOTE, + ACTIONS(814), 1, anon_sym_EQ, - ACTIONS(954), 1, + ACTIONS(961), 1, anon_sym_EQ_GT, - ACTIONS(3381), 1, + ACTIONS(3382), 1, sym_identifier, - ACTIONS(3383), 1, - anon_sym_LBRACE, - ACTIONS(3385), 1, - anon_sym_LBRACK, - STATE(4495), 1, - sym_variable_declarator, + STATE(1502), 1, + sym_nested_identifier, + STATE(1503), 1, + sym_string, + STATE(1628), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3735), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(161), 13, - sym__automatic_semicolon, + ACTIONS(158), 12, sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -142256,7 +140796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142272,11 +140812,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(120), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_in, + anon_sym_of, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -142297,31 +140838,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [3466] = 12, - ACTIONS(69), 1, + [3815] = 13, + ACTIONS(146), 1, anon_sym_DQUOTE, - ACTIONS(71), 1, + ACTIONS(148), 1, anon_sym_SQUOTE, - ACTIONS(948), 1, - anon_sym_EQ, - ACTIONS(954), 1, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(3410), 1, + ACTIONS(814), 1, + anon_sym_EQ, + ACTIONS(834), 1, + anon_sym_COLON, + ACTIONS(3382), 1, sym_identifier, - STATE(1510), 1, + STATE(1502), 1, sym_nested_identifier, - STATE(1512), 1, + STATE(1503), 1, sym_string, - STATE(1731), 1, + STATE(1628), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, - sym__automatic_semicolon, + ACTIONS(158), 12, sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -142332,7 +140873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142348,7 +140889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -142373,40 +140914,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [3554] = 14, - ACTIONS(3456), 1, + [3904] = 14, + ACTIONS(3443), 1, anon_sym_LPAREN, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_DOT, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_QMARK_DOT, - ACTIONS(3468), 1, + ACTIONS(3455), 1, anon_sym_LT, - ACTIONS(3508), 1, - anon_sym_EQ, - ACTIONS(3510), 1, + ACTIONS(3480), 1, anon_sym_EQ_GT, - STATE(2886), 1, + ACTIONS(3503), 1, + anon_sym_EQ, + STATE(2880), 1, sym_arguments, - STATE(2958), 1, + STATE(2987), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3454), 3, + ACTIONS(3441), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3458), 3, + ACTIONS(3445), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3452), 14, + ACTIONS(3439), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_of, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -142416,7 +140957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142432,7 +140973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 17, + ACTIONS(3435), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142450,24 +140991,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3645] = 9, - ACTIONS(229), 1, + [3995] = 9, + ACTIONS(156), 1, anon_sym_EQ_GT, - ACTIONS(859), 1, + ACTIONS(842), 1, anon_sym_EQ, - ACTIONS(1668), 1, + ACTIONS(1683), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3512), 2, + ACTIONS(3505), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3515), 3, + ACTIONS(3508), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142483,7 +141024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 18, + ACTIONS(120), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142502,7 +141043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(161), 19, + ACTIONS(158), 19, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -142522,39 +141063,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [3726] = 14, - ACTIONS(3450), 1, - anon_sym_EQ, - ACTIONS(3456), 1, + [4076] = 14, + ACTIONS(3443), 1, anon_sym_LPAREN, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_DOT, - ACTIONS(3462), 1, - anon_sym_EQ_GT, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_QMARK_DOT, - ACTIONS(3468), 1, + ACTIONS(3455), 1, anon_sym_LT, - STATE(2886), 1, + ACTIONS(3511), 1, + anon_sym_EQ, + ACTIONS(3513), 1, + anon_sym_EQ_GT, + STATE(2880), 1, sym_arguments, - STATE(2958), 1, + STATE(2987), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3458), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3454), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(3441), 3, + anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3452), 13, + ACTIONS(3445), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3439), 14, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON, + anon_sym_SEMI, + anon_sym_of, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -142564,7 +141106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142580,11 +141122,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 18, + ACTIONS(3435), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -142599,48 +141140,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3817] = 13, - ACTIONS(3462), 1, - anon_sym_EQ_GT, - ACTIONS(3486), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, + [4167] = 12, + ACTIONS(146), 1, + anon_sym_DQUOTE, + ACTIONS(148), 1, + anon_sym_SQUOTE, + ACTIONS(955), 1, anon_sym_EQ, - ACTIONS(3525), 1, - anon_sym_DOT, - ACTIONS(3528), 1, - anon_sym_LT, - STATE(3205), 1, - sym_type_arguments, + ACTIONS(961), 1, + anon_sym_EQ_GT, + ACTIONS(3382), 1, + sym_identifier, + STATE(1502), 1, + sym_nested_identifier, + STATE(1503), 1, + sym_string, + STATE(1628), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3489), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3521), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3498), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3452), 13, + ACTIONS(158), 12, sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142656,44 +141189,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 18, + ACTIONS(120), 25, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, + anon_sym_of, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3906] = 8, - ACTIONS(3456), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [4254] = 8, + ACTIONS(3443), 1, anon_sym_LPAREN, - ACTIONS(3535), 1, + ACTIONS(3519), 1, anon_sym_DOT, - ACTIONS(3537), 1, + ACTIONS(3521), 1, anon_sym_LT, - STATE(1231), 1, + STATE(1270), 1, sym_arguments, - STATE(5549), 1, + STATE(5556), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3533), 14, + ACTIONS(3517), 13, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LBRACK, - sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_DOT_DOT_DOT, @@ -142704,7 +141243,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3531), 41, + ACTIONS(3515), 42, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -142746,40 +141285,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [3985] = 14, - ACTIONS(3456), 1, - anon_sym_LPAREN, - ACTIONS(3460), 1, + anon_sym_abstract, + [4333] = 16, + ACTIONS(3449), 1, + anon_sym_EQ_GT, + ACTIONS(3489), 1, + anon_sym_LBRACK, + ACTIONS(3495), 1, anon_sym_DOT, - ACTIONS(3464), 1, - anon_sym_QMARK_DOT, - ACTIONS(3468), 1, + ACTIONS(3498), 1, anon_sym_LT, - ACTIONS(3477), 1, - anon_sym_EQ_GT, - ACTIONS(3539), 1, + ACTIONS(3501), 1, + anon_sym_extends, + ACTIONS(3523), 1, anon_sym_EQ, - STATE(2886), 1, - sym_arguments, - STATE(2958), 1, + ACTIONS(3530), 1, + anon_sym_COLON, + ACTIONS(3532), 1, + anon_sym_QMARK, + STATE(2909), 1, sym_type_arguments, + STATE(5414), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3454), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3458), 3, - anon_sym_GT, + ACTIONS(3492), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3452), 14, - sym__automatic_semicolon, + ACTIONS(3526), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3439), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -142789,7 +141330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142805,10 +141346,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 17, + ACTIONS(3435), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -142823,37 +141365,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4076] = 16, - ACTIONS(3462), 1, + [4428] = 13, + ACTIONS(3449), 1, anon_sym_EQ_GT, - ACTIONS(3486), 1, + ACTIONS(3489), 1, anon_sym_LBRACK, - ACTIONS(3492), 1, + ACTIONS(3523), 1, + anon_sym_EQ, + ACTIONS(3535), 1, anon_sym_DOT, - ACTIONS(3495), 1, + ACTIONS(3538), 1, anon_sym_LT, - ACTIONS(3498), 1, - anon_sym_extends, - ACTIONS(3518), 1, - anon_sym_EQ, - ACTIONS(3541), 1, - anon_sym_COLON, - ACTIONS(3543), 1, - anon_sym_QMARK, - STATE(2908), 1, + STATE(3245), 1, sym_type_arguments, - STATE(5384), 1, - sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3489), 2, + ACTIONS(3492), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3521), 2, + ACTIONS(3526), 2, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3452), 13, + anon_sym_RBRACE, + ACTIONS(3501), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3439), 13, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -142867,7 +141406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142883,7 +141422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 18, + ACTIONS(3435), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142902,41 +141441,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4171] = 12, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(901), 1, - anon_sym_EQ_GT, - ACTIONS(928), 1, + [4517] = 14, + ACTIONS(3437), 1, anon_sym_EQ, - ACTIONS(3387), 1, - sym_identifier, - STATE(1488), 1, - sym_string, - STATE(1514), 1, - sym_nested_identifier, - STATE(1695), 1, - sym__module, + ACTIONS(3443), 1, + anon_sym_LPAREN, + ACTIONS(3447), 1, + anon_sym_DOT, + ACTIONS(3449), 1, + anon_sym_EQ_GT, + ACTIONS(3451), 1, + anon_sym_QMARK_DOT, + ACTIONS(3455), 1, + anon_sym_LT, + STATE(2880), 1, + sym_arguments, + STATE(2987), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 13, - sym__ternary_qmark, - anon_sym_LPAREN, + ACTIONS(3445), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3441), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_extends, + ACTIONS(3439), 13, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + 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(167), 15, + anon_sym_satisfies, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142952,9 +141499,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(3435), 18, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -142963,45 +141509,43 @@ static const 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_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [4258] = 12, - ACTIONS(149), 1, + [4608] = 14, + ACTIONS(146), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(148), 1, anon_sym_SQUOTE, - ACTIONS(853), 1, - anon_sym_EQ, - ACTIONS(901), 1, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(3387), 1, + ACTIONS(814), 1, + anon_sym_EQ, + ACTIONS(878), 1, + anon_sym_in, + ACTIONS(881), 1, + anon_sym_of, + ACTIONS(3382), 1, sym_identifier, - STATE(1488), 1, - sym_string, - STATE(1514), 1, + STATE(1502), 1, sym_nested_identifier, - STATE(1695), 1, + STATE(1503), 1, + sym_string, + STATE(1628), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 13, + ACTIONS(158), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -143011,7 +141555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143027,11 +141571,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(120), 23, anon_sym_STAR, anon_sym_as, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -143052,40 +141595,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [4345] = 12, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(962), 1, - anon_sym_EQ, - ACTIONS(968), 1, + [4699] = 6, + ACTIONS(156), 1, anon_sym_EQ_GT, - ACTIONS(3387), 1, - sym_identifier, - STATE(1488), 1, - sym_string, - STATE(1514), 1, - sym_nested_identifier, - STATE(1695), 1, - sym__module, + ACTIONS(842), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143101,12 +141619,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 25, + ACTIONS(120), 21, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_of, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -143125,30 +141641,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, + ACTIONS(158), 21, + sym__ternary_qmark, + 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_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, anon_sym_satisfies, - [4432] = 12, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(853), 1, + [4773] = 8, + ACTIONS(3541), 1, anon_sym_EQ, - ACTIONS(968), 1, + ACTIONS(3546), 1, anon_sym_EQ_GT, - ACTIONS(3387), 1, - sym_identifier, - STATE(1488), 1, - sym_string, - STATE(1514), 1, - sym_nested_identifier, - STATE(1695), 1, - sym__module, + ACTIONS(3548), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(3544), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3439), 15, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -143157,10 +141690,12 @@ static const 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, - ACTIONS(167), 15, + anon_sym_satisfies, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143176,12 +141711,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 25, + ACTIONS(3435), 21, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_of, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -143200,31 +141733,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [4519] = 13, - ACTIONS(149), 1, + [4851] = 12, + ACTIONS(146), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(148), 1, anon_sym_SQUOTE, - ACTIONS(159), 1, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(853), 1, + ACTIONS(1035), 1, anon_sym_EQ, - ACTIONS(855), 1, - anon_sym_COLON, - ACTIONS(3387), 1, + ACTIONS(3382), 1, sym_identifier, - STATE(1488), 1, - sym_string, - STATE(1514), 1, + STATE(1502), 1, sym_nested_identifier, - STATE(1695), 1, + STATE(1503), 1, + sym_string, + STATE(1628), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(158), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -143237,7 +141766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143253,7 +141782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -143278,44 +141807,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [4608] = 14, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(159), 1, + [4937] = 6, + ACTIONS(3449), 1, anon_sym_EQ_GT, - ACTIONS(853), 1, + ACTIONS(3485), 1, anon_sym_EQ, - ACTIONS(905), 1, - anon_sym_in, - ACTIONS(908), 1, - anon_sym_of, - ACTIONS(3387), 1, - sym_identifier, - STATE(1488), 1, - sym_string, - STATE(1514), 1, - sym_nested_identifier, - STATE(1695), 1, - sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143331,10 +141831,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 23, + ACTIONS(3435), 21, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -143353,42 +141853,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [4699] = 12, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(853), 1, - anon_sym_EQ, - ACTIONS(3387), 1, - sym_identifier, - STATE(1488), 1, - sym_string, - STATE(1514), 1, - sym_nested_identifier, - STATE(1695), 1, - sym__module, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(161), 12, + ACTIONS(3439), 21, sym__ternary_qmark, + 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_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(167), 15, + anon_sym_satisfies, + [5011] = 6, + ACTIONS(3437), 1, + anon_sym_EQ, + ACTIONS(3449), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143404,9 +141899,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(3435), 21, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -143427,40 +141921,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [4785] = 15, - ACTIONS(3486), 1, - anon_sym_LBRACK, - ACTIONS(3492), 1, - anon_sym_DOT, - ACTIONS(3495), 1, - anon_sym_LT, - ACTIONS(3498), 1, - anon_sym_extends, - ACTIONS(3546), 1, - anon_sym_EQ, - ACTIONS(3551), 1, - anon_sym_RPAREN, - ACTIONS(3554), 1, - anon_sym_EQ_GT, - ACTIONS(3556), 1, - anon_sym_QMARK, - STATE(2908), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3489), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3549), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3452), 13, + ACTIONS(3439), 21, sym__ternary_qmark, 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_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -143471,73 +141943,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(3448), 18, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [4877] = 15, - ACTIONS(3462), 1, - anon_sym_EQ_GT, - ACTIONS(3486), 1, - anon_sym_LBRACK, - ACTIONS(3492), 1, - anon_sym_DOT, - ACTIONS(3495), 1, - anon_sym_LT, - ACTIONS(3498), 1, - anon_sym_extends, - ACTIONS(3518), 1, + [5085] = 8, + ACTIONS(220), 1, anon_sym_EQ, - ACTIONS(3521), 1, - anon_sym_RPAREN, - ACTIONS(3556), 1, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(750), 1, anon_sym_QMARK, - STATE(2908), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3489), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3558), 2, + ACTIONS(223), 5, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(3452), 13, + anon_sym_RBRACK, + ACTIONS(158), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -143548,7 +141975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143564,7 +141991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 18, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143574,36 +142001,39 @@ static const 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_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4969] = 12, - ACTIONS(149), 1, + [5163] = 12, + ACTIONS(146), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(148), 1, anon_sym_SQUOTE, - ACTIONS(159), 1, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(978), 1, + ACTIONS(973), 1, anon_sym_EQ, - ACTIONS(3387), 1, + ACTIONS(3382), 1, sym_identifier, - STATE(1488), 1, - sym_string, - STATE(1514), 1, + STATE(1502), 1, sym_nested_identifier, - STATE(1695), 1, + STATE(1503), 1, + sym_string, + STATE(1628), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(158), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -143616,7 +142046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143632,7 +142062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -143657,27 +142087,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [5055] = 12, - ACTIONS(149), 1, + [5249] = 12, + ACTIONS(146), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(148), 1, anon_sym_SQUOTE, - ACTIONS(159), 1, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(974), 1, + ACTIONS(971), 1, anon_sym_EQ, - ACTIONS(3387), 1, + ACTIONS(3382), 1, sym_identifier, - STATE(1488), 1, - sym_string, - STATE(1514), 1, + STATE(1502), 1, sym_nested_identifier, - STATE(1695), 1, + STATE(1503), 1, + sym_string, + STATE(1628), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(158), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -143690,7 +142120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143706,7 +142136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -143731,109 +142161,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [5141] = 8, - ACTIONS(223), 1, - anon_sym_EQ, - ACTIONS(229), 1, - anon_sym_EQ_GT, - ACTIONS(755), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(226), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(161), 15, - sym__ternary_qmark, - anon_sym_as, + [5335] = 14, + ACTIONS(3443), 1, anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3447), 1, anon_sym_DOT, + ACTIONS(3451), 1, 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_satisfies, - ACTIONS(167), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(122), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3455), 1, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [5219] = 14, - ACTIONS(3456), 1, - anon_sym_LPAREN, - ACTIONS(3460), 1, - anon_sym_DOT, - ACTIONS(3464), 1, - anon_sym_QMARK_DOT, - ACTIONS(3468), 1, - anon_sym_LT, - ACTIONS(3561), 1, + ACTIONS(3550), 1, anon_sym_EQ, - ACTIONS(3563), 1, + ACTIONS(3552), 1, anon_sym_EQ_GT, - STATE(2886), 1, + STATE(2880), 1, sym_arguments, - STATE(2958), 1, + STATE(2987), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3454), 3, + ACTIONS(3441), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3458), 3, + ACTIONS(3445), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3452), 13, + ACTIONS(3439), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LBRACE, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -143843,7 +142202,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + anon_sym_implements, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143859,7 +142219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 17, + ACTIONS(3435), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143877,39 +142237,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5309] = 8, - ACTIONS(3462), 1, + [5425] = 6, + ACTIONS(156), 1, anon_sym_EQ_GT, - ACTIONS(3518), 1, + ACTIONS(814), 1, anon_sym_EQ, - ACTIONS(3556), 1, - anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3558), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3452), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143925,7 +142261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143947,40 +142283,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5387] = 12, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(982), 1, - anon_sym_EQ, - ACTIONS(3387), 1, - sym_identifier, - STATE(1488), 1, - sym_string, - STATE(1514), 1, - sym_nested_identifier, - STATE(1695), 1, - sym__module, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(161), 12, + ACTIONS(158), 21, sym__ternary_qmark, + 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_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, + anon_sym_satisfies, + [5499] = 14, + ACTIONS(3443), 1, + anon_sym_LPAREN, + ACTIONS(3447), 1, anon_sym_DOT, + ACTIONS(3451), 1, anon_sym_QMARK_DOT, + ACTIONS(3455), 1, + anon_sym_LT, + ACTIONS(3554), 1, + anon_sym_EQ, + ACTIONS(3556), 1, + anon_sym_EQ_GT, + STATE(2880), 1, + sym_arguments, + STATE(2987), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3441), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3445), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3439), 13, + sym__automatic_semicolon, + sym__ternary_qmark, + 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(167), 15, + anon_sym_satisfies, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143996,203 +142363,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(3435), 17, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [5473] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3567), 16, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - sym_glimmer_opening_tag, + [5589] = 12, + ACTIONS(146), 1, anon_sym_DQUOTE, + ACTIONS(148), 1, anon_sym_SQUOTE, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3565), 43, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_await, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_void, - anon_sym_delete, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(981), 1, + anon_sym_EQ, + ACTIONS(3382), 1, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - [5541] = 3, + STATE(1502), 1, + sym_nested_identifier, + STATE(1503), 1, + sym_string, + STATE(1628), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3571), 16, - anon_sym_LBRACE, - anon_sym_BANG, + ACTIONS(158), 12, + sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3569), 43, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_await, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - [5609] = 14, - ACTIONS(3450), 1, - anon_sym_EQ, - ACTIONS(3456), 1, - anon_sym_LPAREN, - ACTIONS(3460), 1, anon_sym_DOT, - ACTIONS(3462), 1, - anon_sym_EQ_GT, - ACTIONS(3464), 1, anon_sym_QMARK_DOT, - ACTIONS(3468), 1, - anon_sym_LT, - STATE(2886), 1, - sym_arguments, - STATE(2958), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3458), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(3454), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3452), 11, - sym__ternary_qmark, - anon_sym_as, 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_satisfies, - ACTIONS(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144208,8 +142430,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 18, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -144218,32 +142441,37 @@ static const 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_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5699] = 8, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(853), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [5675] = 8, + ACTIONS(117), 1, anon_sym_EQ, - ACTIONS(857), 1, + ACTIONS(156), 1, + anon_sym_EQ_GT, + ACTIONS(750), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(855), 5, + ACTIONS(126), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(161), 15, + ACTIONS(158), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -144259,7 +142487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144275,7 +142503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144297,27 +142525,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5777] = 12, - ACTIONS(149), 1, + [5753] = 12, + ACTIONS(146), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(148), 1, anon_sym_SQUOTE, - ACTIONS(159), 1, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(986), 1, + ACTIONS(977), 1, anon_sym_EQ, - ACTIONS(3387), 1, + ACTIONS(3382), 1, sym_identifier, - STATE(1488), 1, - sym_string, - STATE(1514), 1, + STATE(1502), 1, sym_nested_identifier, - STATE(1695), 1, + STATE(1503), 1, + sym_string, + STATE(1628), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(158), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -144330,7 +142558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144346,7 +142574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -144371,30 +142599,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [5863] = 12, - ACTIONS(3477), 1, - anon_sym_EQ_GT, - ACTIONS(3492), 1, + [5839] = 14, + ACTIONS(3443), 1, + anon_sym_LPAREN, + ACTIONS(3447), 1, anon_sym_DOT, - ACTIONS(3495), 1, + ACTIONS(3451), 1, + anon_sym_QMARK_DOT, + ACTIONS(3455), 1, anon_sym_LT, - ACTIONS(3498), 1, - anon_sym_extends, - ACTIONS(3539), 1, + ACTIONS(3558), 1, anon_sym_EQ, - STATE(2908), 1, + ACTIONS(3560), 1, + anon_sym_EQ_GT, + STATE(2880), 1, + sym_arguments, + STATE(2987), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3486), 2, + ACTIONS(3441), 3, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3489), 3, + anon_sym_extends, + ACTIONS(3445), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3466), 15, + ACTIONS(3439), 13, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + 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, + anon_sym_satisfies, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144410,24 +142657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3452), 16, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - 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_satisfies, - ACTIONS(3448), 17, + ACTIONS(3435), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144445,42 +142675,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5949] = 9, - ACTIONS(223), 1, - anon_sym_EQ, - ACTIONS(229), 1, + [5929] = 12, + ACTIONS(146), 1, + anon_sym_DQUOTE, + ACTIONS(148), 1, + anon_sym_SQUOTE, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(3512), 1, - anon_sym_LBRACK, + ACTIONS(969), 1, + anon_sym_EQ, + ACTIONS(3382), 1, + sym_identifier, + STATE(1502), 1, + sym_nested_identifier, + STATE(1503), 1, + sym_string, + STATE(1628), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1668), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(161), 14, + ACTIONS(158), 12, sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144496,8 +142724,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 19, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -144506,7 +142735,9 @@ static const 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_SLASH, @@ -144516,99 +142747,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6029] = 7, - ACTIONS(3577), 1, - anon_sym_class, - ACTIONS(3580), 1, - anon_sym_AT, - STATE(1248), 1, - aux_sym_export_statement_repeat1, - STATE(1267), 1, - sym_decorator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3575), 14, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3573), 41, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_await, - anon_sym_yield, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [6105] = 12, - ACTIONS(3492), 1, - anon_sym_DOT, + anon_sym_instanceof, + anon_sym_satisfies, + [6015] = 12, + ACTIONS(3480), 1, + anon_sym_EQ_GT, ACTIONS(3495), 1, - anon_sym_LT, + anon_sym_DOT, ACTIONS(3498), 1, + anon_sym_LT, + ACTIONS(3501), 1, anon_sym_extends, - ACTIONS(3508), 1, + ACTIONS(3503), 1, anon_sym_EQ, - ACTIONS(3510), 1, - anon_sym_EQ_GT, - STATE(2908), 1, + STATE(2909), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3486), 2, + ACTIONS(3489), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3489), 3, + ACTIONS(3492), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144624,13 +142788,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3452), 16, + ACTIONS(3439), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -144641,7 +142805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3448), 17, + ACTIONS(3435), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144659,49 +142823,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6191] = 14, - ACTIONS(3456), 1, - anon_sym_LPAREN, - ACTIONS(3460), 1, - anon_sym_DOT, - ACTIONS(3464), 1, - anon_sym_QMARK_DOT, - ACTIONS(3468), 1, - anon_sym_LT, - ACTIONS(3583), 1, - anon_sym_EQ, - ACTIONS(3585), 1, + [6101] = 12, + ACTIONS(225), 1, anon_sym_EQ_GT, - STATE(2886), 1, - sym_arguments, - STATE(2958), 1, - sym_type_arguments, + ACTIONS(814), 1, + anon_sym_EQ, + ACTIONS(878), 1, + anon_sym_in, + ACTIONS(881), 1, + anon_sym_of, + ACTIONS(3378), 1, + anon_sym_LBRACE, + ACTIONS(3562), 1, + sym_identifier, + ACTIONS(3564), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3454), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3458), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3452), 13, - sym__automatic_semicolon, + STATE(4623), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(158), 11, sym__ternary_qmark, - anon_sym_as, - anon_sym_SEMI, + anon_sym_LPAREN, + 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, - anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144717,45 +142873,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 17, + ACTIONS(120), 23, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, - anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6281] = 12, - ACTIONS(149), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [6187] = 12, + ACTIONS(146), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(148), 1, anon_sym_SQUOTE, - ACTIONS(159), 1, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(984), 1, + ACTIONS(967), 1, anon_sym_EQ, - ACTIONS(3387), 1, + ACTIONS(3382), 1, sym_identifier, - STATE(1488), 1, - sym_string, - STATE(1514), 1, + STATE(1502), 1, sym_nested_identifier, - STATE(1695), 1, + STATE(1503), 1, + sym_string, + STATE(1628), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(158), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -144768,7 +142930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144784,7 +142946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -144809,31 +142971,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [6367] = 12, - ACTIONS(159), 1, + [6273] = 12, + ACTIONS(146), 1, + anon_sym_DQUOTE, + ACTIONS(148), 1, + anon_sym_SQUOTE, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(853), 1, + ACTIONS(975), 1, anon_sym_EQ, - ACTIONS(905), 1, - anon_sym_in, - ACTIONS(908), 1, - anon_sym_of, - ACTIONS(3383), 1, - anon_sym_LBRACE, - ACTIONS(3587), 1, + ACTIONS(3382), 1, sym_identifier, - ACTIONS(3589), 1, - anon_sym_LBRACK, + STATE(1502), 1, + sym_nested_identifier, + STATE(1503), 1, + sym_string, + STATE(1628), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4731), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(161), 11, + ACTIONS(158), 12, sym__ternary_qmark, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -144843,7 +143004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144859,10 +143020,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 23, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -144883,15 +143045,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [6453] = 6, - ACTIONS(229), 1, + [6359] = 12, + ACTIONS(146), 1, + anon_sym_DQUOTE, + ACTIONS(148), 1, + anon_sym_SQUOTE, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(853), 1, + ACTIONS(979), 1, anon_sym_EQ, + ACTIONS(3382), 1, + sym_identifier, + STATE(1502), 1, + sym_nested_identifier, + STATE(1503), 1, + sym_string, + STATE(1628), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(158), 12, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144907,8 +143094,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -144929,49 +143117,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(161), 21, - sym__ternary_qmark, - 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_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, anon_sym_satisfies, - [6527] = 8, - ACTIONS(119), 1, + [6445] = 9, + ACTIONS(117), 1, anon_sym_EQ, - ACTIONS(159), 1, + ACTIONS(156), 1, anon_sym_EQ_GT, - ACTIONS(755), 1, - anon_sym_QMARK, + ACTIONS(3505), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(128), 5, + ACTIONS(3508), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1683), 6, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(161), 15, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(158), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -144983,7 +143154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144999,7 +143170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, + ACTIONS(120), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145009,9 +143180,7 @@ static const 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_SLASH, @@ -145021,40 +143190,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6605] = 12, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(159), 1, + [6525] = 15, + ACTIONS(3449), 1, anon_sym_EQ_GT, - ACTIONS(1040), 1, + ACTIONS(3489), 1, + anon_sym_LBRACK, + ACTIONS(3495), 1, + anon_sym_DOT, + ACTIONS(3498), 1, + anon_sym_LT, + ACTIONS(3501), 1, + anon_sym_extends, + ACTIONS(3523), 1, anon_sym_EQ, - ACTIONS(3387), 1, - sym_identifier, - STATE(1488), 1, - sym_string, - STATE(1514), 1, - sym_nested_identifier, - STATE(1695), 1, - sym__module, + ACTIONS(3526), 1, + anon_sym_RPAREN, + ACTIONS(3548), 1, + anon_sym_QMARK, + STATE(2909), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(3492), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3567), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3439), 13, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + anon_sym_satisfies, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145070,9 +143248,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(3435), 18, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -145081,42 +143258,34 @@ static const 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_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [6691] = 12, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(159), 1, + [6617] = 8, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(980), 1, + ACTIONS(814), 1, anon_sym_EQ, - ACTIONS(3387), 1, - sym_identifier, - STATE(1488), 1, - sym_string, - STATE(1514), 1, - sym_nested_identifier, - STATE(1695), 1, - sym__module, + ACTIONS(836), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(834), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(158), 15, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -145125,10 +143294,12 @@ static const 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, - ACTIONS(167), 15, + anon_sym_satisfies, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145144,9 +143315,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(120), 21, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -145167,17 +143337,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [6777] = 6, - ACTIONS(229), 1, - anon_sym_EQ_GT, - ACTIONS(859), 1, + [6695] = 14, + ACTIONS(3437), 1, anon_sym_EQ, + ACTIONS(3443), 1, + anon_sym_LPAREN, + ACTIONS(3447), 1, + anon_sym_DOT, + ACTIONS(3449), 1, + anon_sym_EQ_GT, + ACTIONS(3451), 1, + anon_sym_QMARK_DOT, + ACTIONS(3455), 1, + anon_sym_LT, + STATE(2880), 1, + sym_arguments, + STATE(2987), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3445), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(3441), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3439), 11, + sym__ternary_qmark, + anon_sym_as, + 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_satisfies, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145193,7 +143394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, + ACTIONS(3435), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145203,66 +143404,37 @@ static const 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_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(161), 21, - sym__ternary_qmark, - 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_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, - anon_sym_satisfies, - [6851] = 6, - ACTIONS(3580), 1, - anon_sym_AT, - STATE(1248), 1, - aux_sym_export_statement_repeat1, - STATE(1267), 1, - sym_decorator, + [6785] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3575), 14, + ACTIONS(3572), 16, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_DOT_DOT_DOT, + anon_sym_LT, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3573), 42, + anon_sym_AT, + ACTIONS(3570), 43, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -145271,6 +143443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_await, anon_sym_yield, + anon_sym_DOT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -145279,7 +143452,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_void, anon_sym_delete, sym_identifier, @@ -145305,15 +143477,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [6925] = 6, - ACTIONS(3462), 1, + anon_sym_abstract, + [6853] = 12, + ACTIONS(146), 1, + anon_sym_DQUOTE, + ACTIONS(148), 1, + anon_sym_SQUOTE, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(3484), 1, + ACTIONS(814), 1, anon_sym_EQ, + ACTIONS(3382), 1, + sym_identifier, + STATE(1502), 1, + sym_nested_identifier, + STATE(1503), 1, + sym_string, + STATE(1628), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 15, + ACTIONS(158), 12, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145329,8 +143527,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 21, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -145351,138 +143550,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3452), 21, - sym__ternary_qmark, - 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_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, anon_sym_satisfies, - [6999] = 14, - ACTIONS(3456), 1, - anon_sym_LPAREN, - ACTIONS(3460), 1, + [6939] = 15, + ACTIONS(3489), 1, + anon_sym_LBRACK, + ACTIONS(3495), 1, anon_sym_DOT, - ACTIONS(3464), 1, - anon_sym_QMARK_DOT, - ACTIONS(3468), 1, + ACTIONS(3498), 1, anon_sym_LT, - ACTIONS(3592), 1, + ACTIONS(3501), 1, + anon_sym_extends, + ACTIONS(3541), 1, anon_sym_EQ, - ACTIONS(3594), 1, + ACTIONS(3546), 1, anon_sym_EQ_GT, - STATE(2886), 1, - sym_arguments, - STATE(2958), 1, + ACTIONS(3548), 1, + anon_sym_QMARK, + ACTIONS(3574), 1, + anon_sym_RPAREN, + STATE(2909), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3454), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3458), 3, - anon_sym_GT, + ACTIONS(3492), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3452), 13, + ACTIONS(3544), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3439), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - 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_satisfies, - anon_sym_implements, - ACTIONS(3466), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(3448), 17, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - 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_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [7089] = 12, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(1042), 1, - anon_sym_EQ, - ACTIONS(3387), 1, - sym_identifier, - STATE(1488), 1, - sym_string, - STATE(1514), 1, - sym_nested_identifier, - STATE(1695), 1, - sym__module, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(161), 12, - sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + anon_sym_satisfies, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145498,9 +143610,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(3435), 18, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -145509,42 +143620,34 @@ static const 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_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [7175] = 12, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(976), 1, + [7031] = 8, + ACTIONS(3485), 1, anon_sym_EQ, - ACTIONS(3387), 1, - sym_identifier, - STATE(1488), 1, - sym_string, - STATE(1514), 1, - sym_nested_identifier, - STATE(1695), 1, - sym__module, + ACTIONS(3546), 1, + anon_sym_EQ_GT, + ACTIONS(3579), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(3577), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3439), 15, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -145553,10 +143656,12 @@ static const 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, - ACTIONS(167), 15, + anon_sym_satisfies, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145572,9 +143677,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(3435), 21, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -145595,25 +143699,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [7261] = 8, - ACTIONS(3484), 1, - anon_sym_EQ, - ACTIONS(3554), 1, + [7109] = 8, + ACTIONS(3449), 1, anon_sym_EQ_GT, - ACTIONS(3598), 1, + ACTIONS(3523), 1, + anon_sym_EQ, + ACTIONS(3548), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3596), 5, + ACTIONS(3567), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(3452), 15, + ACTIONS(3439), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -145629,7 +143731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145645,7 +143747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 21, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145667,15 +143769,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7339] = 6, - ACTIONS(3450), 1, + [7187] = 12, + ACTIONS(3495), 1, + anon_sym_DOT, + ACTIONS(3498), 1, + anon_sym_LT, + ACTIONS(3501), 1, + anon_sym_extends, + ACTIONS(3511), 1, anon_sym_EQ, - ACTIONS(3462), 1, + ACTIONS(3513), 1, anon_sym_EQ_GT, + STATE(2909), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 15, + ACTIONS(3489), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3492), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145691,72 +143808,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(3452), 21, + ACTIONS(3439), 16, + sym__automatic_semicolon, sym__ternary_qmark, 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_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, - anon_sym_satisfies, - [7413] = 8, - ACTIONS(3546), 1, - anon_sym_EQ, - ACTIONS(3554), 1, - anon_sym_EQ_GT, - ACTIONS(3556), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3549), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3452), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, + anon_sym_of, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -145767,65 +143825,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(3448), 21, + ACTIONS(3435), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7491] = 3, + [7273] = 6, + ACTIONS(3585), 1, + anon_sym_AT, + STATE(1253), 1, + aux_sym_export_statement_repeat1, + STATE(1290), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3602), 15, + ACTIONS(3583), 14, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACK, - sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_DOT_DOT_DOT, + anon_sym_LT, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3600), 43, + ACTIONS(3581), 42, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -145834,7 +143877,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_await, anon_sym_yield, - anon_sym_DOT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -145843,7 +143885,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_void, anon_sym_delete, sym_identifier, @@ -145869,130 +143910,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [7558] = 7, - ACTIONS(3484), 1, - anon_sym_EQ, - ACTIONS(3598), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3596), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3452), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, + anon_sym_abstract, + [7347] = 12, + ACTIONS(3489), 1, anon_sym_LBRACK, + ACTIONS(3495), 1, 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, - anon_sym_satisfies, - ACTIONS(3466), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(3448), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3498), 1, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [7633] = 4, - ACTIONS(3436), 1, - anon_sym_extends, + ACTIONS(3558), 1, + anon_sym_EQ, + ACTIONS(3560), 1, + anon_sym_EQ_GT, + STATE(2909), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3420), 22, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, + ACTIONS(3501), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3492), 3, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(3422), 35, - sym__automatic_semicolon, + ACTIONS(3439), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, + anon_sym_COLON, 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, @@ -146002,24 +143950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [7702] = 9, - ACTIONS(865), 1, - anon_sym_EQ, - ACTIONS(871), 1, - anon_sym_EQ_GT, - ACTIONS(1668), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3512), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3515), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(167), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146035,25 +143966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - 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, - anon_sym_satisfies, - ACTIONS(122), 18, + ACTIONS(3435), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146068,36 +143981,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7781] = 11, - ACTIONS(119), 1, + [7432] = 13, + ACTIONS(3485), 1, anon_sym_EQ, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(755), 1, - anon_sym_QMARK, - ACTIONS(3512), 1, + ACTIONS(3489), 1, anon_sym_LBRACK, + ACTIONS(3495), 1, + anon_sym_DOT, + ACTIONS(3498), 1, + anon_sym_LT, + ACTIONS(3546), 1, + anon_sym_EQ_GT, + ACTIONS(3577), 1, + anon_sym_COLON, + STATE(2909), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(128), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1668), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(3515), 2, + ACTIONS(3492), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(161), 14, + ACTIONS(3501), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3439), 13, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -146108,7 +144023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146124,7 +144039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 19, + ACTIONS(3435), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146140,30 +144055,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7864] = 7, - ACTIONS(3518), 1, + [7519] = 14, + ACTIONS(3437), 1, anon_sym_EQ, - ACTIONS(3556), 1, - anon_sym_QMARK, + ACTIONS(3449), 1, + anon_sym_EQ_GT, + ACTIONS(3489), 1, + anon_sym_LBRACK, + ACTIONS(3495), 1, + anon_sym_DOT, + ACTIONS(3498), 1, + anon_sym_LT, + ACTIONS(3501), 1, + anon_sym_extends, + ACTIONS(3577), 1, + anon_sym_COLON, + STATE(2909), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3558), 5, + ACTIONS(3492), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3588), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(3452), 15, + ACTIONS(3439), 13, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -146174,7 +144098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146190,7 +144114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 21, + ACTIONS(3435), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146200,27 +144124,25 @@ static const 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_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7939] = 4, + [7608] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3436), 3, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(3429), 4, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_extends, - ACTIONS(3420), 22, + anon_sym_PIPE_RBRACE, + ACTIONS(3425), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -146243,13 +144165,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3422), 33, + ACTIONS(3427), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -146277,89 +144198,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [8008] = 4, + [7677] = 9, + ACTIONS(864), 1, + anon_sym_EQ, + ACTIONS(870), 1, + anon_sym_EQ_GT, + ACTIONS(1683), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3438), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3424), 22, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(3426), 33, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, - 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_satisfies, - [8077] = 9, - ACTIONS(717), 1, - anon_sym_EQ_GT, - ACTIONS(877), 1, - anon_sym_EQ, - ACTIONS(1668), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3512), 2, + ACTIONS(3505), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3515), 3, + ACTIONS(3508), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146375,13 +144231,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 17, + ACTIONS(158), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -146393,7 +144249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 18, + ACTIONS(120), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146412,158 +144268,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8156] = 3, + [7756] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3606), 15, + ACTIONS(3594), 16, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3604), 43, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_await, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - [8223] = 14, - ACTIONS(3456), 1, - anon_sym_LPAREN, - ACTIONS(3460), 1, - anon_sym_DOT, - ACTIONS(3464), 1, - anon_sym_QMARK_DOT, - ACTIONS(3468), 1, anon_sym_LT, - ACTIONS(3608), 1, - anon_sym_EQ, - ACTIONS(3610), 1, - anon_sym_EQ_GT, - STATE(2886), 1, - sym_arguments, - STATE(2958), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3454), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3458), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3452), 12, - sym__ternary_qmark, - anon_sym_as, - 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_satisfies, - ACTIONS(3466), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(3448), 17, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - 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_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [8312] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3614), 15, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_DOT_DOT_DOT, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -146571,7 +144289,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3612), 43, + ACTIONS(3592), 42, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -146588,7 +144306,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_void, anon_sym_delete, sym_identifier, @@ -146615,86 +144332,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [8379] = 12, - ACTIONS(3486), 1, - anon_sym_LBRACK, - ACTIONS(3492), 1, - anon_sym_DOT, - ACTIONS(3495), 1, - anon_sym_LT, - ACTIONS(3583), 1, - anon_sym_EQ, - ACTIONS(3585), 1, - anon_sym_EQ_GT, - STATE(2908), 1, - sym_type_arguments, + [7823] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3498), 2, + ACTIONS(3429), 3, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_extends, - ACTIONS(3489), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3452), 15, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - 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_satisfies, - ACTIONS(3466), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(3448), 17, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - 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_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [8464] = 4, - ACTIONS(3438), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3424), 22, + ACTIONS(3425), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -146717,15 +144363,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3426), 35, - sym__automatic_semicolon, + ACTIONS(3427), 33, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -146753,47 +144397,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [8533] = 14, - ACTIONS(3450), 1, - anon_sym_EQ, - ACTIONS(3462), 1, + [7892] = 8, + ACTIONS(712), 1, anon_sym_EQ_GT, - ACTIONS(3486), 1, - anon_sym_LBRACK, - ACTIONS(3492), 1, - anon_sym_DOT, - ACTIONS(3495), 1, - anon_sym_LT, - ACTIONS(3498), 1, - anon_sym_extends, - ACTIONS(3596), 1, + ACTIONS(854), 1, + anon_sym_EQ, + ACTIONS(858), 1, anon_sym_COLON, - STATE(2908), 1, - sym_type_arguments, + ACTIONS(3409), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3489), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3616), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3452), 13, + ACTIONS(158), 15, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146809,8 +144441,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 18, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -146819,22 +144452,27 @@ static const 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_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8622] = 5, - ACTIONS(3450), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [7969] = 5, + ACTIONS(3437), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146850,7 +144488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 21, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146872,7 +144510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3452), 21, + ACTIONS(3439), 21, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -146894,38 +144532,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [8693] = 14, - ACTIONS(3456), 1, - anon_sym_LPAREN, - ACTIONS(3460), 1, + [8040] = 12, + ACTIONS(3489), 1, + anon_sym_LBRACK, + ACTIONS(3495), 1, anon_sym_DOT, - ACTIONS(3464), 1, - anon_sym_QMARK_DOT, - ACTIONS(3468), 1, + ACTIONS(3498), 1, anon_sym_LT, - ACTIONS(3620), 1, + ACTIONS(3554), 1, anon_sym_EQ, - ACTIONS(3622), 1, + ACTIONS(3556), 1, anon_sym_EQ_GT, - STATE(2886), 1, - sym_arguments, - STATE(2958), 1, + STATE(2909), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3454), 3, + ACTIONS(3501), 2, anon_sym_COMMA, - anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3458), 3, + ACTIONS(3492), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3452), 12, + ACTIONS(3439), 15, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -146935,7 +144571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146951,7 +144587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 17, + ACTIONS(3435), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146969,102 +144605,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8782] = 8, - ACTIONS(717), 1, - anon_sym_EQ_GT, - ACTIONS(877), 1, - anon_sym_EQ, - ACTIONS(879), 1, - anon_sym_COLON, - ACTIONS(3418), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(161), 15, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, + [8125] = 14, + ACTIONS(3443), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(3447), 1, anon_sym_DOT, + ACTIONS(3451), 1, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(167), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(122), 24, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3455), 1, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [8859] = 11, - ACTIONS(223), 1, + ACTIONS(3596), 1, anon_sym_EQ, - ACTIONS(229), 1, + ACTIONS(3598), 1, anon_sym_EQ_GT, - ACTIONS(755), 1, - anon_sym_QMARK, - ACTIONS(3512), 1, - anon_sym_LBRACK, + STATE(2880), 1, + sym_arguments, + STATE(2987), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(226), 2, + ACTIONS(3441), 3, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1668), 2, - anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3515), 2, + ACTIONS(3445), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(161), 14, + ACTIONS(3439), 12, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -147074,7 +144646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147090,11 +144662,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 19, + ACTIONS(3435), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -147106,41 +144677,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8942] = 14, - ACTIONS(3456), 1, - anon_sym_LPAREN, - ACTIONS(3460), 1, - anon_sym_DOT, - ACTIONS(3464), 1, - anon_sym_QMARK_DOT, - ACTIONS(3468), 1, - anon_sym_LT, - ACTIONS(3484), 1, + [8214] = 7, + ACTIONS(3541), 1, anon_sym_EQ, - ACTIONS(3554), 1, - anon_sym_EQ_GT, - STATE(2886), 1, - sym_arguments, - STATE(2958), 1, - sym_type_arguments, + ACTIONS(3548), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3458), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3454), 4, + ACTIONS(3544), 5, anon_sym_COMMA, - anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3452), 11, + ACTIONS(3439), 15, sym__ternary_qmark, anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -147150,7 +144710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147166,7 +144726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 18, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147176,25 +144736,25 @@ static const 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_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9031] = 4, + [8289] = 4, + ACTIONS(3419), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3436), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3420), 22, + ACTIONS(3415), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -147217,12 +144777,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3422), 32, + ACTIONS(3417), 35, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -147250,85 +144813,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [9100] = 8, - ACTIONS(717), 1, - anon_sym_EQ_GT, - ACTIONS(877), 1, - anon_sym_EQ, - ACTIONS(881), 1, - anon_sym_COLON, - ACTIONS(3418), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(161), 15, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(167), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(122), 24, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [9177] = 4, + [8358] = 4, + ACTIONS(3429), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3438), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3424), 22, + ACTIONS(3425), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -147351,12 +144842,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3426), 32, + ACTIONS(3427), 35, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -147384,21 +144878,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [9246] = 7, - ACTIONS(3546), 1, + [8427] = 7, + ACTIONS(3523), 1, anon_sym_EQ, - ACTIONS(3556), 1, + ACTIONS(3548), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3549), 5, + ACTIONS(3567), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(3452), 15, + ACTIONS(3439), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -147414,7 +144908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147430,7 +144924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 21, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147452,44 +144946,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9321] = 3, + [8502] = 11, + ACTIONS(220), 1, + anon_sym_EQ, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(750), 1, + anon_sym_QMARK, + ACTIONS(3505), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3533), 15, - anon_sym_LBRACE, - anon_sym_BANG, + ACTIONS(223), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1683), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(3508), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(158), 14, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3531), 43, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_await, - anon_sym_yield, - anon_sym_class, - anon_sym_async, + anon_sym_satisfies, + ACTIONS(164), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(120), 19, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [8585] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3602), 16, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_DOT_DOT_DOT, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3600), 42, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_class, + anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_using, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_void, anon_sym_delete, sym_identifier, @@ -147516,35 +145082,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [9388] = 12, - ACTIONS(3492), 1, + [8652] = 14, + ACTIONS(3443), 1, + anon_sym_LPAREN, + ACTIONS(3447), 1, anon_sym_DOT, - ACTIONS(3495), 1, + ACTIONS(3451), 1, + anon_sym_QMARK_DOT, + ACTIONS(3455), 1, anon_sym_LT, - ACTIONS(3498), 1, - anon_sym_extends, - ACTIONS(3592), 1, + ACTIONS(3604), 1, anon_sym_EQ, - ACTIONS(3594), 1, + ACTIONS(3606), 1, anon_sym_EQ_GT, - STATE(2908), 1, + STATE(2880), 1, + sym_arguments, + STATE(2987), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3486), 2, + ACTIONS(3441), 3, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3489), 3, + anon_sym_extends, + ACTIONS(3445), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3452), 15, + ACTIONS(3439), 12, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, + anon_sym_of, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -147554,8 +145123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147571,7 +145139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 17, + ACTIONS(3435), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147589,36 +145157,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9473] = 12, - ACTIONS(3486), 1, - anon_sym_LBRACK, - ACTIONS(3492), 1, + [8741] = 14, + ACTIONS(3443), 1, + anon_sym_LPAREN, + ACTIONS(3447), 1, anon_sym_DOT, - ACTIONS(3495), 1, + ACTIONS(3451), 1, + anon_sym_QMARK_DOT, + ACTIONS(3455), 1, anon_sym_LT, - ACTIONS(3561), 1, + ACTIONS(3485), 1, anon_sym_EQ, - ACTIONS(3563), 1, + ACTIONS(3546), 1, anon_sym_EQ_GT, - STATE(2908), 1, + STATE(2880), 1, + sym_arguments, + STATE(2987), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3498), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3489), 3, - anon_sym_GT, + ACTIONS(3445), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3452), 15, + ACTIONS(3441), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3439), 11, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -147628,7 +145197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147644,10 +145213,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 17, + ACTIONS(3435), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -147662,24 +145232,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9558] = 8, - ACTIONS(717), 1, - anon_sym_EQ_GT, - ACTIONS(877), 1, + [8830] = 7, + ACTIONS(3485), 1, anon_sym_EQ, - ACTIONS(883), 1, - anon_sym_COLON, - ACTIONS(3418), 1, - sym_identifier, + ACTIONS(3579), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(3577), 5, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3439), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -147687,10 +145257,12 @@ static const 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, - ACTIONS(167), 15, + anon_sym_satisfies, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147706,9 +145278,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(3435), 21, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -147729,36 +145300,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [9635] = 13, - ACTIONS(3484), 1, + [8905] = 7, + ACTIONS(3585), 1, + anon_sym_AT, + ACTIONS(3608), 1, + anon_sym_class, + STATE(1253), 1, + aux_sym_export_statement_repeat1, + STATE(1290), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3583), 14, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_DOT_DOT_DOT, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3581), 40, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [8980] = 9, + ACTIONS(712), 1, + anon_sym_EQ_GT, + ACTIONS(854), 1, anon_sym_EQ, - ACTIONS(3486), 1, + ACTIONS(1683), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3505), 2, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3492), 1, + ACTIONS(3508), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(164), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(158), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, 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, + anon_sym_satisfies, + ACTIONS(120), 18, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + 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_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [9059] = 12, ACTIONS(3495), 1, + anon_sym_DOT, + ACTIONS(3498), 1, anon_sym_LT, - ACTIONS(3554), 1, + ACTIONS(3501), 1, + anon_sym_extends, + ACTIONS(3550), 1, + anon_sym_EQ, + ACTIONS(3552), 1, anon_sym_EQ_GT, - ACTIONS(3596), 1, - anon_sym_COLON, - STATE(2908), 1, + STATE(2909), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(3489), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3492), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3498), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3452), 13, + ACTIONS(3439), 15, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -147770,7 +145476,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + anon_sym_implements, + ACTIONS(3453), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(3435), 17, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + 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_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [9144] = 8, + ACTIONS(712), 1, + anon_sym_EQ_GT, + ACTIONS(854), 1, + anon_sym_EQ, + ACTIONS(876), 1, + anon_sym_COLON, + ACTIONS(3409), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(158), 15, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147786,8 +145555,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 18, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -147796,20 +145566,29 @@ static const 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_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9722] = 3, + anon_sym_instanceof, + anon_sym_satisfies, + [9221] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3424), 22, + ACTIONS(3419), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3415), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -147832,15 +145611,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3426), 35, - sym__automatic_semicolon, + ACTIONS(3417), 33, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -147868,46 +145645,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [9788] = 14, - ACTIONS(3456), 1, - anon_sym_LPAREN, - ACTIONS(3460), 1, - anon_sym_DOT, - ACTIONS(3464), 1, - anon_sym_QMARK_DOT, - ACTIONS(3468), 1, - anon_sym_LT, - ACTIONS(3484), 1, - anon_sym_EQ, - ACTIONS(3554), 1, + [9290] = 8, + ACTIONS(712), 1, anon_sym_EQ_GT, - STATE(2886), 1, - sym_arguments, - STATE(2958), 1, - sym_type_arguments, + ACTIONS(854), 1, + anon_sym_EQ, + ACTIONS(856), 1, + anon_sym_COLON, + ACTIONS(3409), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3458), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3454), 3, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3452), 11, + ACTIONS(158), 15, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147923,8 +145689,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 18, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -147933,33 +145700,57 @@ static const 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_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9876] = 9, - ACTIONS(948), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [9367] = 11, + ACTIONS(117), 1, anon_sym_EQ, - ACTIONS(954), 1, + ACTIONS(156), 1, anon_sym_EQ_GT, - ACTIONS(3512), 1, + ACTIONS(750), 1, + anon_sym_QMARK, + ACTIONS(3505), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1668), 2, + ACTIONS(126), 2, anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1683), 2, + anon_sym_RPAREN, anon_sym_extends, - ACTIONS(3515), 3, - anon_sym_GT, + ACTIONS(3508), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(167), 15, + ACTIONS(158), 14, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + 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, + anon_sym_satisfies, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147975,27 +145766,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 16, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - 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, - anon_sym_satisfies, - ACTIONS(122), 18, + ACTIONS(120), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -148011,11 +145786,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9954] = 3, + [9450] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2479), 22, + ACTIONS(3419), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3415), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -148038,15 +145818,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2477), 35, - sym__automatic_semicolon, + ACTIONS(3417), 32, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -148074,27 +145851,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [10020] = 11, - ACTIONS(229), 1, + [9519] = 11, + ACTIONS(156), 1, anon_sym_EQ_GT, - ACTIONS(855), 1, + ACTIONS(834), 1, anon_sym_COLON, - ACTIONS(859), 1, + ACTIONS(842), 1, anon_sym_EQ, - ACTIONS(1668), 1, + ACTIONS(1683), 1, anon_sym_extends, - ACTIONS(3512), 1, + ACTIONS(3505), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 2, + ACTIONS(3508), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3624), 2, + ACTIONS(3611), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(161), 14, + ACTIONS(158), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -148109,7 +145886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148125,7 +145902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 19, + ACTIONS(120), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148145,15 +145922,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10102] = 6, - ACTIONS(3484), 1, - anon_sym_EQ, - ACTIONS(3510), 1, + [9601] = 6, + ACTIONS(712), 1, anon_sym_EQ_GT, + ACTIONS(814), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148169,14 +145946,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3452), 19, + ACTIONS(158), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -148189,7 +145966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3448), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148211,47 +145988,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10174] = 14, - ACTIONS(3456), 1, + [9673] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3517), 15, + anon_sym_LBRACE, + anon_sym_BANG, anon_sym_LPAREN, - ACTIONS(3460), 1, - anon_sym_DOT, - ACTIONS(3464), 1, - anon_sym_QMARK_DOT, - ACTIONS(3468), 1, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_DOT_DOT_DOT, anon_sym_LT, - ACTIONS(3484), 1, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3515), 42, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + [9739] = 9, + ACTIONS(909), 1, anon_sym_EQ, - ACTIONS(3554), 1, + ACTIONS(915), 1, anon_sym_EQ_GT, - STATE(2886), 1, - sym_arguments, - STATE(2958), 1, - sym_type_arguments, + ACTIONS(3505), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3454), 3, + ACTIONS(1683), 2, anon_sym_COMMA, - anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3458), 3, + ACTIONS(3508), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3452), 11, - sym__ternary_qmark, - anon_sym_as, - 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_satisfies, - ACTIONS(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148267,7 +146084,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 17, + ACTIONS(158), 16, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + 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, + anon_sym_satisfies, + ACTIONS(120), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148282,36 +146116,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10262] = 12, - ACTIONS(3450), 1, + [9817] = 10, + ACTIONS(117), 1, anon_sym_EQ, - ACTIONS(3462), 1, + ACTIONS(156), 1, anon_sym_EQ_GT, - ACTIONS(3492), 1, - anon_sym_DOT, - ACTIONS(3495), 1, - anon_sym_LT, - ACTIONS(3498), 1, - anon_sym_extends, - STATE(2908), 1, - sym_type_arguments, + ACTIONS(1685), 1, + anon_sym_QMARK, + ACTIONS(3505), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3486), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(3489), 2, + ACTIONS(3508), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3452), 14, + ACTIONS(1683), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(158), 14, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -148322,7 +146154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148338,7 +146170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 18, + ACTIONS(120), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148354,81 +146186,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10346] = 7, - ACTIONS(717), 1, - anon_sym_EQ_GT, - ACTIONS(877), 1, - anon_sym_EQ, - ACTIONS(881), 1, - anon_sym_COLON, + [9897] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(161), 18, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(122), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [10420] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3420), 22, + ACTIONS(3431), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -148451,7 +146217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3422), 35, + ACTIONS(3433), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -148487,58 +146253,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [10486] = 10, - ACTIONS(223), 1, - anon_sym_EQ, - ACTIONS(229), 1, - anon_sym_EQ_GT, - ACTIONS(1670), 1, - anon_sym_QMARK, - ACTIONS(3512), 1, - anon_sym_LBRACK, + [9963] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1668), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(161), 14, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - 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, - anon_sym_satisfies, - ACTIONS(167), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(122), 19, + ACTIONS(2456), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -148547,7 +146268,9 @@ static const 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_SLASH, @@ -148557,15 +146280,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10566] = 6, - ACTIONS(717), 1, - anon_sym_EQ_GT, - ACTIONS(877), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(167), 15, + ACTIONS(2454), 35, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148581,17 +146307,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 19, - sym__automatic_semicolon, - sym__ternary_qmark, - 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_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -148601,37 +146316,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [10638] = 6, - ACTIONS(717), 1, - anon_sym_EQ_GT, - ACTIONS(853), 1, + [10029] = 5, + ACTIONS(3485), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148647,7 +146338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 19, + ACTIONS(3439), 20, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -148655,6 +146346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -148667,7 +146359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148689,15 +146381,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10710] = 6, - ACTIONS(865), 1, - anon_sym_EQ, - ACTIONS(871), 1, + [10099] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3617), 15, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_DOT_DOT_DOT, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3615), 42, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + [10165] = 7, + ACTIONS(858), 1, + anon_sym_COLON, + ACTIONS(3480), 1, anon_sym_EQ_GT, + ACTIONS(3503), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148713,14 +146470,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 19, + ACTIONS(3439), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -148733,7 +146489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148755,17 +146511,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10782] = 7, - ACTIONS(717), 1, + [10239] = 7, + ACTIONS(712), 1, anon_sym_EQ_GT, - ACTIONS(877), 1, + ACTIONS(854), 1, anon_sym_EQ, - ACTIONS(879), 1, + ACTIONS(858), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148781,7 +146537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 18, + ACTIONS(158), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -148800,75 +146556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [10856] = 8, - ACTIONS(229), 1, - anon_sym_EQ_GT, - ACTIONS(855), 1, - anon_sym_COLON, - ACTIONS(859), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(885), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(161), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(167), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(122), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148890,11 +146578,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10932] = 3, + [10313] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3428), 22, + ACTIONS(3421), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -148917,7 +146605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3430), 35, + ACTIONS(3423), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -148953,15 +146641,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [10998] = 6, - ACTIONS(3477), 1, - anon_sym_EQ_GT, - ACTIONS(3484), 1, - anon_sym_EQ, + [10379] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 15, + ACTIONS(3415), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3417), 35, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148977,17 +146695,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3452), 19, - sym__automatic_semicolon, - sym__ternary_qmark, - 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_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -148997,33 +146704,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3448), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [11070] = 3, + [10445] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2487), 22, + ACTIONS(3425), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -149046,7 +146731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2485), 35, + ACTIONS(3427), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -149082,17 +146767,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [11136] = 7, - ACTIONS(881), 1, - anon_sym_COLON, - ACTIONS(3477), 1, - anon_sym_EQ_GT, - ACTIONS(3539), 1, + [10511] = 14, + ACTIONS(3443), 1, + anon_sym_LPAREN, + ACTIONS(3447), 1, + anon_sym_DOT, + ACTIONS(3451), 1, + anon_sym_QMARK_DOT, + ACTIONS(3455), 1, + anon_sym_LT, + ACTIONS(3485), 1, anon_sym_EQ, + ACTIONS(3546), 1, + anon_sym_EQ_GT, + STATE(2880), 1, + sym_arguments, + STATE(2987), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 15, + ACTIONS(3441), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3445), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3439), 11, + sym__ternary_qmark, + anon_sym_as, + 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_satisfies, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149108,101 +146823,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3452), 18, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3448), 21, + ACTIONS(3435), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11210] = 3, + [10599] = 8, + ACTIONS(156), 1, + anon_sym_EQ_GT, + ACTIONS(834), 1, + anon_sym_COLON, + ACTIONS(842), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3440), 22, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(3442), 35, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(883), 3, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(158), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, 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, @@ -149212,17 +146871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [11276] = 7, - ACTIONS(879), 1, - anon_sym_COLON, - ACTIONS(3477), 1, - anon_sym_EQ_GT, - ACTIONS(3539), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149238,26 +146887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3452), 18, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3448), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149279,24 +146909,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11350] = 9, - ACTIONS(910), 1, - anon_sym_EQ_GT, - ACTIONS(936), 1, + [10675] = 6, + ACTIONS(3485), 1, anon_sym_EQ, - ACTIONS(3512), 1, - anon_sym_LBRACK, + ACTIONS(3513), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1668), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3515), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(167), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149312,12 +146933,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 16, + ACTIONS(3439), 19, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -149329,16 +146953,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 18, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -149348,11 +146975,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11428] = 3, + [10747] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3432), 22, + ACTIONS(3457), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -149375,7 +147002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3434), 35, + ACTIONS(3459), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -149411,53 +147038,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [11494] = 7, - ACTIONS(883), 1, - anon_sym_COLON, - ACTIONS(3477), 1, - anon_sym_EQ_GT, - ACTIONS(3539), 1, - anon_sym_EQ, + [10813] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(3452), 18, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3448), 21, + ACTIONS(3461), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -149478,17 +147065,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11568] = 7, - ACTIONS(717), 1, - anon_sym_EQ_GT, - ACTIONS(877), 1, - anon_sym_EQ, - ACTIONS(883), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(167), 15, + ACTIONS(3463), 35, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149504,15 +147092,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 18, - sym__automatic_semicolon, + 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_satisfies, + [10879] = 12, + ACTIONS(3437), 1, + anon_sym_EQ, + ACTIONS(3449), 1, + anon_sym_EQ_GT, + ACTIONS(3495), 1, + anon_sym_DOT, + ACTIONS(3498), 1, + anon_sym_LT, + ACTIONS(3501), 1, + anon_sym_extends, + STATE(2909), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3489), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(3492), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3439), 14, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -149523,7 +147138,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3453), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(3435), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149533,23 +147164,83 @@ static const 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_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11642] = 3, + [10963] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3621), 15, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_DOT_DOT_DOT, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3619), 42, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + [11029] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3444), 22, + ACTIONS(2452), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -149572,7 +147263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3446), 35, + ACTIONS(2450), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -149608,13 +147299,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [11708] = 3, + [11095] = 6, + ACTIONS(864), 1, + anon_sym_EQ, + ACTIONS(870), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3414), 22, + ACTIONS(164), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(158), 19, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(120), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -149635,18 +147365,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3416), 35, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + [11167] = 6, + ACTIONS(3480), 1, + anon_sym_EQ_GT, + ACTIONS(3503), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149662,38 +147389,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [11774] = 10, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(853), 1, - anon_sym_EQ, - ACTIONS(855), 1, - anon_sym_COLON, - ACTIONS(3512), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3515), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1668), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(161), 14, + ACTIONS(3439), 19, + sym__automatic_semicolon, sym__ternary_qmark, 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_LT_EQ, @@ -149705,23 +147409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(122), 19, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149731,7 +147419,9 @@ static const 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_SLASH, @@ -149741,15 +147431,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11854] = 6, - ACTIONS(3508), 1, - anon_sym_EQ, - ACTIONS(3510), 1, + [11239] = 6, + ACTIONS(712), 1, anon_sym_EQ_GT, + ACTIONS(854), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149765,14 +147455,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3452), 19, + ACTIONS(158), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -149785,7 +147475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3448), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149807,15 +147497,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11926] = 6, - ACTIONS(3477), 1, - anon_sym_EQ_GT, - ACTIONS(3539), 1, + [11311] = 6, + ACTIONS(814), 1, anon_sym_EQ, + ACTIONS(870), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149831,14 +147521,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3452), 19, + ACTIONS(158), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -149851,7 +147541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3448), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149873,45 +147563,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11998] = 12, - ACTIONS(3486), 1, - anon_sym_LBRACK, - ACTIONS(3492), 1, - anon_sym_DOT, - ACTIONS(3495), 1, - anon_sym_LT, - ACTIONS(3608), 1, + [11383] = 9, + ACTIONS(939), 1, anon_sym_EQ, - ACTIONS(3610), 1, + ACTIONS(945), 1, anon_sym_EQ_GT, - STATE(2908), 1, - sym_type_arguments, + ACTIONS(1683), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3498), 2, + ACTIONS(3505), 2, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3489), 3, + anon_sym_LBRACK, + ACTIONS(3508), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3452), 14, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - 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_satisfies, - ACTIONS(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149927,7 +147596,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 17, + ACTIONS(158), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_LPAREN, + 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, + anon_sym_satisfies, + anon_sym_implements, + ACTIONS(120), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149942,16 +147628,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12082] = 5, - ACTIONS(3484), 1, + [11461] = 9, + ACTIONS(925), 1, anon_sym_EQ, + ACTIONS(931), 1, + anon_sym_EQ_GT, + ACTIONS(3505), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 15, + ACTIONS(1683), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3508), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149967,16 +147665,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3452), 20, - sym__automatic_semicolon, + ACTIONS(158), 16, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -149988,19 +147682,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3448), 21, + ACTIONS(120), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -150010,45 +147701,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12152] = 12, - ACTIONS(3486), 1, - anon_sym_LBRACK, - ACTIONS(3492), 1, - anon_sym_DOT, - ACTIONS(3495), 1, - anon_sym_LT, - ACTIONS(3620), 1, - anon_sym_EQ, - ACTIONS(3622), 1, + [11539] = 6, + ACTIONS(3480), 1, anon_sym_EQ_GT, - STATE(2908), 1, - sym_type_arguments, + ACTIONS(3485), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3498), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3489), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3452), 14, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_of, - 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_satisfies, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150064,33 +147725,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 17, + ACTIONS(3439), 19, + sym__automatic_semicolon, + sym__ternary_qmark, + 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_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_satisfies, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12236] = 6, - ACTIONS(853), 1, - anon_sym_EQ, - ACTIONS(871), 1, + [11611] = 7, + ACTIONS(856), 1, + anon_sym_COLON, + ACTIONS(3480), 1, anon_sym_EQ_GT, + ACTIONS(3503), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150106,14 +147793,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 19, + ACTIONS(3439), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -150126,7 +147812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150148,24 +147834,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12308] = 9, - ACTIONS(916), 1, - anon_sym_EQ, - ACTIONS(922), 1, + [11685] = 7, + ACTIONS(876), 1, + anon_sym_COLON, + ACTIONS(3480), 1, anon_sym_EQ_GT, - ACTIONS(1668), 1, - anon_sym_extends, + ACTIONS(3503), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3512), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3515), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(167), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150181,11 +147860,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 16, + ACTIONS(3439), 18, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -150197,17 +147879,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(122), 18, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -150217,17 +147901,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12386] = 5, - ACTIONS(3438), 1, - anon_sym_extends, - ACTIONS(3628), 1, - anon_sym_QMARK, + [11759] = 7, + ACTIONS(712), 1, + anon_sym_EQ_GT, + ACTIONS(854), 1, + anon_sym_EQ, + ACTIONS(876), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3424), 22, + ACTIONS(164), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(158), 18, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(120), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -150248,15 +147968,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3426), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + [11833] = 6, + ACTIONS(3511), 1, + anon_sym_EQ, + ACTIONS(3513), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150272,6 +147992,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(3439), 19, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -150281,19 +148012,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [12455] = 8, - ACTIONS(229), 1, + ACTIONS(3435), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [11905] = 7, + ACTIONS(712), 1, anon_sym_EQ_GT, - ACTIONS(859), 1, + ACTIONS(854), 1, anon_sym_EQ, - ACTIONS(905), 1, - anon_sym_in, - ACTIONS(3630), 1, - anon_sym_of, + ACTIONS(856), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150309,7 +148060,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 17, + ACTIONS(158), 18, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -150327,9 +148079,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 20, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -150348,24 +148101,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12530] = 7, - ACTIONS(3450), 1, + [11979] = 12, + ACTIONS(3489), 1, + anon_sym_LBRACK, + ACTIONS(3495), 1, + anon_sym_DOT, + ACTIONS(3498), 1, + anon_sym_LT, + ACTIONS(3596), 1, anon_sym_EQ, - ACTIONS(3462), 1, + ACTIONS(3598), 1, anon_sym_EQ_GT, + STATE(2909), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3632), 3, + ACTIONS(3501), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(3452), 15, + anon_sym_extends, + ACTIONS(3492), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3439), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, + anon_sym_RBRACK, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -150376,7 +148139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150392,67 +148155,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 21, + ACTIONS(3435), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12603] = 4, + [12063] = 10, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(814), 1, + anon_sym_EQ, + ACTIONS(834), 1, + anon_sym_COLON, + ACTIONS(3505), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3436), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3420), 22, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3508), 2, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(3422), 32, - sym__automatic_semicolon, + ACTIONS(1683), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(158), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150468,25 +148223,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [12670] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3438), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3424), 22, + ACTIONS(120), 19, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -150495,9 +148233,7 @@ static const 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_SLASH, @@ -150507,65 +148243,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3426), 32, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, + [12143] = 12, + ACTIONS(3489), 1, anon_sym_LBRACK, + ACTIONS(3495), 1, 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_satisfies, - [12737] = 7, - ACTIONS(948), 1, + ACTIONS(3498), 1, + anon_sym_LT, + ACTIONS(3604), 1, anon_sym_EQ, - ACTIONS(954), 1, + ACTIONS(3606), 1, anon_sym_EQ_GT, - ACTIONS(3418), 1, - sym_identifier, + STATE(2909), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, - sym__automatic_semicolon, + ACTIONS(3501), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3492), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3439), 14, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, + anon_sym_of, 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(167), 15, + anon_sym_satisfies, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150581,54 +148297,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(3435), 17, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [12810] = 9, - ACTIONS(229), 1, - anon_sym_EQ_GT, - ACTIONS(859), 1, + [12227] = 14, + ACTIONS(3443), 1, + anon_sym_LPAREN, + ACTIONS(3447), 1, + anon_sym_DOT, + ACTIONS(3451), 1, + anon_sym_QMARK_DOT, + ACTIONS(3455), 1, + anon_sym_LT, + ACTIONS(3485), 1, anon_sym_EQ, - ACTIONS(1668), 1, - anon_sym_extends, + ACTIONS(3546), 1, + anon_sym_EQ_GT, + STATE(2880), 1, + sym_arguments, + STATE(2987), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3512), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(3515), 2, + ACTIONS(3445), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(161), 15, + ACTIONS(3441), 3, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3439), 11, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -150638,7 +148354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150654,7 +148370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 19, + ACTIONS(3435), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150670,37 +148386,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12887] = 12, - ACTIONS(3484), 1, + [12315] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3411), 22, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(3486), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3413), 35, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(3492), 1, anon_sym_DOT, - ACTIONS(3495), 1, - anon_sym_LT, - ACTIONS(3554), 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_satisfies, + [12381] = 9, + ACTIONS(899), 1, anon_sym_EQ_GT, - STATE(2908), 1, - sym_type_arguments, + ACTIONS(903), 1, + anon_sym_EQ, + ACTIONS(3505), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3498), 2, + ACTIONS(1683), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(3489), 3, + ACTIONS(3508), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3452), 13, + ACTIONS(158), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -150711,7 +148485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150727,7 +148501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 17, + ACTIONS(120), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150742,54 +148516,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12970] = 6, - ACTIONS(853), 1, - anon_sym_EQ, - ACTIONS(922), 1, - anon_sym_EQ_GT, + [12458] = 5, + ACTIONS(3419), 1, + anon_sym_extends, + ACTIONS(3623), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(161), 18, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - ACTIONS(122), 21, + ACTIONS(3415), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -150810,13 +148551,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13041] = 5, - ACTIONS(3508), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3466), 15, + ACTIONS(3417), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + 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, @@ -150832,17 +148575,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3452), 19, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -150852,37 +148584,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3448), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [13110] = 5, - ACTIONS(3436), 1, + [12527] = 5, + ACTIONS(3429), 1, anon_sym_extends, - ACTIONS(3635), 1, + ACTIONS(3625), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3420), 22, + ACTIONS(3425), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -150905,7 +148615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3422), 32, + ACTIONS(3427), 32, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -150938,23 +148648,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [13179] = 7, - ACTIONS(3450), 1, + [12596] = 9, + ACTIONS(156), 1, + anon_sym_EQ_GT, + ACTIONS(842), 1, anon_sym_EQ, - ACTIONS(3596), 1, - anon_sym_COLON, + ACTIONS(1683), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3632), 3, - anon_sym_COMMA, + ACTIONS(3505), 2, anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(3452), 15, + anon_sym_LBRACK, + ACTIONS(3508), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(158), 15, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -150966,7 +148680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150982,7 +148696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 21, + ACTIONS(120), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150992,9 +148706,7 @@ static const 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_SLASH, @@ -151004,15 +148716,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13252] = 6, - ACTIONS(916), 1, + [12673] = 7, + ACTIONS(909), 1, anon_sym_EQ, - ACTIONS(922), 1, + ACTIONS(915), 1, anon_sym_EQ_GT, + ACTIONS(3627), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(158), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151028,27 +148757,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 18, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - ACTIONS(122), 21, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -151069,65 +148780,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13323] = 9, - ACTIONS(901), 1, - anon_sym_EQ_GT, - ACTIONS(928), 1, - anon_sym_EQ, - ACTIONS(3512), 1, - anon_sym_LBRACK, + anon_sym_instanceof, + anon_sym_satisfies, + [12746] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1668), 2, + ACTIONS(3429), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(3515), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(161), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - 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, - anon_sym_satisfies, - ACTIONS(167), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(122), 18, + ACTIONS(3425), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -151137,19 +148812,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13400] = 8, - ACTIONS(3450), 1, - anon_sym_EQ, - ACTIONS(3462), 1, - anon_sym_EQ_GT, - ACTIONS(3637), 1, - anon_sym_in, - ACTIONS(3640), 1, - anon_sym_of, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3466), 15, + ACTIONS(3427), 32, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + 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, @@ -151165,15 +148836,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3452), 17, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -151183,34 +148845,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3448), 20, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [13475] = 5, - ACTIONS(3539), 1, + [12813] = 12, + ACTIONS(3485), 1, anon_sym_EQ, + ACTIONS(3489), 1, + anon_sym_LBRACK, + ACTIONS(3495), 1, + anon_sym_DOT, + ACTIONS(3498), 1, + anon_sym_LT, + ACTIONS(3546), 1, + anon_sym_EQ_GT, + STATE(2909), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 15, + ACTIONS(3501), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3492), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3439), 13, + sym__ternary_qmark, + 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, + anon_sym_satisfies, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151226,70 +148898,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3452), 19, - sym__automatic_semicolon, - sym__ternary_qmark, - 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_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_satisfies, - ACTIONS(3448), 21, + ACTIONS(3435), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13544] = 9, - ACTIONS(962), 1, + [12896] = 7, + ACTIONS(3437), 1, anon_sym_EQ, - ACTIONS(968), 1, - anon_sym_EQ_GT, - ACTIONS(3512), 1, - anon_sym_LBRACK, + ACTIONS(3577), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1668), 2, + ACTIONS(3629), 3, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3515), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(161), 15, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(3439), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -151301,7 +148944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151317,16 +148960,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 18, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -151336,15 +148982,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13621] = 6, - ACTIONS(3484), 1, + [12969] = 6, + ACTIONS(939), 1, anon_sym_EQ, - ACTIONS(3594), 1, + ACTIONS(945), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151360,7 +149006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3452), 18, + ACTIONS(158), 18, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -151379,7 +149025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - ACTIONS(3448), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151401,29 +149047,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13692] = 10, - ACTIONS(3549), 1, - anon_sym_COMMA, - ACTIONS(3558), 1, - anon_sym_RBRACK, - ACTIONS(3610), 1, - anon_sym_EQ_GT, - ACTIONS(3642), 1, - anon_sym_EQ, - ACTIONS(3645), 1, - anon_sym_in, - ACTIONS(3647), 1, - anon_sym_COLON, + [13040] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3452), 15, + ACTIONS(3419), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3415), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3417), 32, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, 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, @@ -151433,7 +149110,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + [13107] = 8, + ACTIONS(3437), 1, + anon_sym_EQ, + ACTIONS(3449), 1, + anon_sym_EQ_GT, + ACTIONS(3632), 1, + anon_sym_in, + ACTIONS(3635), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151449,7 +149138,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 20, + ACTIONS(3439), 17, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3435), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_GT, @@ -151470,21 +149177,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13771] = 9, - ACTIONS(128), 1, - anon_sym_COMMA, - ACTIONS(226), 1, + [13182] = 9, + ACTIONS(126), 1, anon_sym_RBRACK, - ACTIONS(892), 1, + ACTIONS(223), 1, + anon_sym_COMMA, + ACTIONS(890), 1, anon_sym_EQ, - ACTIONS(897), 1, + ACTIONS(895), 1, anon_sym_COLON, - ACTIONS(901), 1, + ACTIONS(899), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(158), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -151500,7 +149207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151516,7 +149223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151538,15 +149245,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13848] = 6, - ACTIONS(3592), 1, + [13259] = 6, + ACTIONS(814), 1, anon_sym_EQ, - ACTIONS(3594), 1, + ACTIONS(945), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151562,7 +149269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3452), 18, + ACTIONS(158), 18, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -151581,7 +149288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - ACTIONS(3448), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151603,17 +149310,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13919] = 7, - ACTIONS(948), 1, + [13330] = 7, + ACTIONS(909), 1, anon_sym_EQ, - ACTIONS(954), 1, + ACTIONS(915), 1, anon_sym_EQ_GT, - ACTIONS(3649), 1, + ACTIONS(3409), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, + ACTIONS(158), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_LPAREN, @@ -151628,7 +149335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151644,7 +149351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -151669,44 +149376,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [13992] = 4, + [13403] = 5, + ACTIONS(3511), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3438), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3424), 22, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(3426), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151722,6 +149398,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(3439), 19, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -151731,19 +149418,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [14058] = 8, - ACTIONS(3549), 1, + ACTIONS(3435), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [13472] = 10, + ACTIONS(3544), 1, anon_sym_COMMA, - ACTIONS(3558), 1, + ACTIONS(3567), 1, anon_sym_RBRACK, - ACTIONS(3610), 1, + ACTIONS(3598), 1, anon_sym_EQ_GT, - ACTIONS(3642), 1, + ACTIONS(3637), 1, anon_sym_EQ, + ACTIONS(3640), 1, + anon_sym_in, + ACTIONS(3642), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3452), 15, + ACTIONS(3439), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -151759,7 +149472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151775,10 +149488,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 21, + ACTIONS(3435), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -151797,15 +149509,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14132] = 6, - ACTIONS(853), 1, + [13551] = 5, + ACTIONS(3503), 1, anon_sym_EQ, - ACTIONS(954), 1, - anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151821,10 +149531,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 17, + ACTIONS(3439), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -151839,7 +149551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151861,106 +149573,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14202] = 31, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(3273), 1, - anon_sym_abstract, - ACTIONS(3653), 1, - anon_sym_export, - ACTIONS(3655), 1, - anon_sym_STAR, - ACTIONS(3657), 1, + [13620] = 9, + ACTIONS(955), 1, + anon_sym_EQ, + ACTIONS(961), 1, + anon_sym_EQ_GT, + ACTIONS(3505), 1, anon_sym_LBRACK, - ACTIONS(3659), 1, - anon_sym_async, - ACTIONS(3661), 1, - anon_sym_new, - ACTIONS(3665), 1, - anon_sym_static, - ACTIONS(3667), 1, - anon_sym_readonly, - ACTIONS(3673), 1, - anon_sym_override, - STATE(1267), 1, - sym_decorator, - STATE(2738), 1, - sym_accessibility_modifier, - STATE(2756), 1, - sym_override_modifier, - STATE(3276), 1, - sym_formal_parameters, - STATE(4416), 1, - sym__call_signature, - STATE(4535), 1, - aux_sym_export_statement_repeat1, - STATE(5374), 1, - sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3251), 2, + ACTIONS(1683), 2, anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3259), 2, + anon_sym_extends, + ACTIONS(3508), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(158), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + 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, + anon_sym_satisfies, + ACTIONS(164), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(120), 18, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + 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, - ACTIONS(3275), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3663), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3669), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3671), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3050), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3902), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3651), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [14322] = 7, - ACTIONS(3450), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [13697] = 6, + ACTIONS(3485), 1, anon_sym_EQ, - ACTIONS(3637), 1, - anon_sym_in, - ACTIONS(3640), 1, - anon_sym_of, + ACTIONS(3552), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151976,12 +149665,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3452), 17, + ACTIONS(3439), 18, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -151994,9 +149683,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3448), 20, + anon_sym_implements, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -152015,15 +149706,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14394] = 6, - ACTIONS(853), 1, + [13768] = 6, + ACTIONS(3550), 1, anon_sym_EQ, - ACTIONS(910), 1, + ACTIONS(3552), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152039,12 +149730,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 17, + ACTIONS(3439), 18, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -152057,7 +149748,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + anon_sym_implements, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152079,39 +149771,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14464] = 9, - ACTIONS(159), 1, + [13839] = 8, + ACTIONS(156), 1, anon_sym_EQ_GT, - ACTIONS(853), 1, + ACTIONS(842), 1, anon_sym_EQ, - ACTIONS(3512), 1, - anon_sym_LBRACK, + ACTIONS(878), 1, + anon_sym_in, + ACTIONS(3644), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1668), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3515), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(161), 14, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - 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, - anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152127,16 +149799,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 18, + ACTIONS(158), 17, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(120), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -152146,36 +149838,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14540] = 6, - ACTIONS(3583), 1, + [13914] = 7, + ACTIONS(3437), 1, anon_sym_EQ, - ACTIONS(3585), 1, + ACTIONS(3449), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(3452), 17, - sym__automatic_semicolon, + ACTIONS(3629), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(3439), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -152188,7 +149866,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3448), 21, + ACTIONS(3453), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152210,193 +149904,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14610] = 31, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(3273), 1, - anon_sym_abstract, - ACTIONS(3653), 1, - anon_sym_export, - ACTIONS(3655), 1, - anon_sym_STAR, - ACTIONS(3657), 1, - anon_sym_LBRACK, - ACTIONS(3659), 1, - anon_sym_async, - ACTIONS(3661), 1, - anon_sym_new, - ACTIONS(3665), 1, - anon_sym_static, - ACTIONS(3667), 1, - anon_sym_readonly, - ACTIONS(3673), 1, - anon_sym_override, - STATE(1267), 1, - sym_decorator, - STATE(2738), 1, - sym_accessibility_modifier, - STATE(2756), 1, - sym_override_modifier, - STATE(3276), 1, - sym_formal_parameters, - STATE(4416), 1, - sym__call_signature, - STATE(4535), 1, - aux_sym_export_statement_repeat1, - STATE(5374), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3259), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3663), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3669), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3675), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3677), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3671), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3050), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3872), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3651), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [14730] = 31, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(3273), 1, - anon_sym_abstract, - ACTIONS(3653), 1, - anon_sym_export, - ACTIONS(3655), 1, - anon_sym_STAR, - ACTIONS(3657), 1, - anon_sym_LBRACK, - ACTIONS(3659), 1, - anon_sym_async, - ACTIONS(3661), 1, - anon_sym_new, - ACTIONS(3665), 1, - anon_sym_static, - ACTIONS(3667), 1, - anon_sym_readonly, - ACTIONS(3673), 1, - anon_sym_override, - STATE(1267), 1, - sym_decorator, - STATE(2738), 1, - sym_accessibility_modifier, - STATE(2756), 1, - sym_override_modifier, - STATE(3276), 1, - sym_formal_parameters, - STATE(4416), 1, - sym__call_signature, - STATE(4535), 1, - aux_sym_export_statement_repeat1, - STATE(5374), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3259), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3663), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3669), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3679), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3681), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3671), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3050), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3791), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3651), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [14850] = 6, - ACTIONS(3484), 1, - anon_sym_EQ, - ACTIONS(3585), 1, + [13987] = 7, + ACTIONS(899), 1, anon_sym_EQ_GT, + ACTIONS(903), 1, + anon_sym_EQ, + ACTIONS(919), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152412,13 +149930,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3452), 17, - sym__automatic_semicolon, + ACTIONS(158), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -152430,7 +149947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3448), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152452,17 +149969,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14920] = 7, - ACTIONS(897), 1, - anon_sym_COLON, - ACTIONS(901), 1, - anon_sym_EQ_GT, - ACTIONS(928), 1, + [14059] = 8, + ACTIONS(3596), 1, anon_sym_EQ, + ACTIONS(3598), 1, + anon_sym_EQ_GT, + ACTIONS(3640), 1, + anon_sym_in, + ACTIONS(3642), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152478,7 +149997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 16, + ACTIONS(3439), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -152495,10 +150014,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3435), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -152517,83 +150035,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14992] = 31, - ACTIONS(99), 1, + [14133] = 31, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1588), 1, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(2537), 1, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(3273), 1, + ACTIONS(3268), 1, anon_sym_abstract, - ACTIONS(3653), 1, + ACTIONS(3648), 1, anon_sym_export, - ACTIONS(3655), 1, + ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3659), 1, + ACTIONS(3658), 1, anon_sym_async, - ACTIONS(3661), 1, + ACTIONS(3660), 1, anon_sym_new, - ACTIONS(3665), 1, + ACTIONS(3664), 1, anon_sym_static, - ACTIONS(3667), 1, + ACTIONS(3666), 1, anon_sym_readonly, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - STATE(1267), 1, + STATE(1290), 1, sym_decorator, - STATE(2738), 1, + STATE(2726), 1, sym_accessibility_modifier, - STATE(2756), 1, + STATE(2750), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4416), 1, + STATE(4357), 1, sym__call_signature, - STATE(4535), 1, + STATE(4467), 1, aux_sym_export_statement_repeat1, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3307), 2, + ACTIONS(3652), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(3323), 2, + ACTIONS(3654), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3663), 2, + ACTIONS(3662), 2, sym_number, sym_private_property_identifier, - ACTIONS(3669), 2, + ACTIONS(3668), 2, anon_sym_get, anon_sym_set, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3050), 3, + STATE(3081), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3907), 6, + STATE(3820), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3651), 12, + ACTIONS(3646), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -152606,17 +150124,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [15112] = 7, - ACTIONS(901), 1, - anon_sym_EQ_GT, - ACTIONS(928), 1, + [14253] = 6, + ACTIONS(3554), 1, anon_sym_EQ, - ACTIONS(930), 1, - anon_sym_COLON, + ACTIONS(3556), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152632,12 +150148,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 16, + ACTIONS(3439), 17, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -152649,7 +150166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152671,19 +150188,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15184] = 8, - ACTIONS(3608), 1, + [14323] = 6, + ACTIONS(3485), 1, anon_sym_EQ, - ACTIONS(3610), 1, + ACTIONS(3556), 1, anon_sym_EQ_GT, - ACTIONS(3645), 1, - anon_sym_in, - ACTIONS(3683), 1, - anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152699,12 +150212,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3452), 16, + ACTIONS(3439), 17, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -152716,9 +150230,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3448), 20, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -152737,15 +150252,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15258] = 6, - ACTIONS(948), 1, - anon_sym_EQ, - ACTIONS(954), 1, + [14393] = 7, + ACTIONS(895), 1, + anon_sym_COLON, + ACTIONS(899), 1, anon_sym_EQ_GT, + ACTIONS(903), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152761,13 +150278,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 17, - sym__automatic_semicolon, + ACTIONS(158), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -152779,7 +150295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152801,103 +150317,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15328] = 31, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(3273), 1, - anon_sym_abstract, - ACTIONS(3653), 1, - anon_sym_export, - ACTIONS(3655), 1, - anon_sym_STAR, - ACTIONS(3657), 1, - anon_sym_LBRACK, - ACTIONS(3659), 1, - anon_sym_async, - ACTIONS(3661), 1, - anon_sym_new, - ACTIONS(3665), 1, - anon_sym_static, - ACTIONS(3667), 1, - anon_sym_readonly, - ACTIONS(3673), 1, - anon_sym_override, - STATE(1267), 1, - sym_decorator, - STATE(2738), 1, - sym_accessibility_modifier, - STATE(2756), 1, - sym_override_modifier, - STATE(3276), 1, - sym_formal_parameters, - STATE(4416), 1, - sym__call_signature, - STATE(4535), 1, - aux_sym_export_statement_repeat1, - STATE(5374), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3259), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3663), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3669), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3685), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3687), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3671), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3050), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3842), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3651), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [15448] = 4, + [14465] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3436), 2, + ACTIONS(3419), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(3420), 22, + ACTIONS(3415), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -152920,7 +150347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3422), 31, + ACTIONS(3417), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -152952,23 +150379,267 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [15514] = 8, - ACTIONS(3608), 1, + [14531] = 8, + ACTIONS(126), 1, + anon_sym_RBRACK, + ACTIONS(223), 1, + anon_sym_COMMA, + ACTIONS(890), 1, anon_sym_EQ, - ACTIONS(3610), 1, + ACTIONS(899), 1, anon_sym_EQ_GT, - ACTIONS(3645), 1, - anon_sym_in, - ACTIONS(3647), 1, - anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, + ACTIONS(158), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(164), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [14605] = 31, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 1, + anon_sym_SQUOTE, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3268), 1, + anon_sym_abstract, + ACTIONS(3648), 1, + anon_sym_export, + ACTIONS(3650), 1, + anon_sym_STAR, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3658), 1, + anon_sym_async, + ACTIONS(3660), 1, + anon_sym_new, + ACTIONS(3664), 1, + anon_sym_static, + ACTIONS(3666), 1, + anon_sym_readonly, + ACTIONS(3672), 1, + anon_sym_override, + STATE(1290), 1, + sym_decorator, + STATE(2726), 1, + sym_accessibility_modifier, + STATE(2750), 1, + sym_override_modifier, + STATE(3267), 1, + sym_formal_parameters, + STATE(4357), 1, + sym__call_signature, + STATE(4467), 1, + aux_sym_export_statement_repeat1, + STATE(5435), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3662), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3668), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3674), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3676), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3081), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3878), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3646), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [14725] = 31, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 1, + anon_sym_SQUOTE, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3268), 1, + anon_sym_abstract, + ACTIONS(3648), 1, + anon_sym_export, + ACTIONS(3650), 1, + anon_sym_STAR, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3658), 1, + anon_sym_async, + ACTIONS(3660), 1, + anon_sym_new, + ACTIONS(3664), 1, + anon_sym_static, + ACTIONS(3666), 1, + anon_sym_readonly, + ACTIONS(3672), 1, + anon_sym_override, + STATE(1290), 1, + sym_decorator, + STATE(2726), 1, + sym_accessibility_modifier, + STATE(2750), 1, + sym_override_modifier, + STATE(3267), 1, + sym_formal_parameters, + STATE(4357), 1, + sym__call_signature, + STATE(4467), 1, + aux_sym_export_statement_repeat1, + STATE(5435), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3662), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3668), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3678), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3680), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3081), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3925), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3646), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [14845] = 8, + ACTIONS(3596), 1, + anon_sym_EQ, + ACTIONS(3598), 1, + anon_sym_EQ_GT, + ACTIONS(3640), 1, + anon_sym_in, + ACTIONS(3682), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3453), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, anon_sym_AMP_EQ, @@ -152980,7 +150651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3452), 16, + ACTIONS(3439), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -152997,7 +150668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3448), 20, + ACTIONS(3435), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_GT, @@ -153018,15 +150689,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15588] = 6, - ACTIONS(3561), 1, + [14919] = 7, + ACTIONS(3437), 1, anon_sym_EQ, - ACTIONS(3563), 1, - anon_sym_EQ_GT, + ACTIONS(3632), 1, + anon_sym_in, + ACTIONS(3635), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153042,12 +150715,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3452), 17, + ACTIONS(3439), 17, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -153060,10 +150733,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3448), 21, + ACTIONS(3435), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -153082,19 +150754,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15658] = 8, - ACTIONS(128), 1, + [14991] = 8, + ACTIONS(3544), 1, anon_sym_COMMA, - ACTIONS(226), 1, + ACTIONS(3567), 1, anon_sym_RBRACK, - ACTIONS(892), 1, - anon_sym_EQ, - ACTIONS(901), 1, + ACTIONS(3598), 1, anon_sym_EQ_GT, + ACTIONS(3637), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(3439), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -153110,7 +150782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153126,8 +150798,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, + ACTIONS(3435), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [15065] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3429), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3425), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -153148,15 +150850,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15732] = 6, - ACTIONS(3484), 1, + ACTIONS(3427), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + 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, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [15131] = 31, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 1, + anon_sym_SQUOTE, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3268), 1, + anon_sym_abstract, + ACTIONS(3648), 1, + anon_sym_export, + ACTIONS(3650), 1, + anon_sym_STAR, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3658), 1, + anon_sym_async, + ACTIONS(3660), 1, + anon_sym_new, + ACTIONS(3664), 1, + anon_sym_static, + ACTIONS(3666), 1, + anon_sym_readonly, + ACTIONS(3672), 1, + anon_sym_override, + STATE(1290), 1, + sym_decorator, + STATE(2726), 1, + sym_accessibility_modifier, + STATE(2750), 1, + sym_override_modifier, + STATE(3267), 1, + sym_formal_parameters, + STATE(4357), 1, + sym__call_signature, + STATE(4467), 1, + aux_sym_export_statement_repeat1, + STATE(5435), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3246), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3270), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3662), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3668), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3081), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3906), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3646), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [15251] = 6, + ACTIONS(3558), 1, anon_sym_EQ, - ACTIONS(3563), 1, + ACTIONS(3560), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153172,7 +150995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3452), 17, + ACTIONS(3439), 17, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -153190,7 +151013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3448), 21, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153212,13 +151035,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15802] = 5, - ACTIONS(3592), 1, + [15321] = 6, + ACTIONS(814), 1, anon_sym_EQ, + ACTIONS(931), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153234,12 +151059,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3452), 18, + ACTIONS(158), 17, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -153252,8 +151077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(3448), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153275,15 +151099,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15870] = 6, - ACTIONS(910), 1, - anon_sym_EQ_GT, - ACTIONS(936), 1, + [15391] = 6, + ACTIONS(814), 1, anon_sym_EQ, + ACTIONS(915), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153299,12 +151123,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 17, + ACTIONS(158), 17, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -153317,7 +151141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153339,83 +151163,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15940] = 31, - ACTIONS(99), 1, + [15461] = 31, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1588), 1, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(2537), 1, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(3273), 1, + ACTIONS(3268), 1, anon_sym_abstract, - ACTIONS(3653), 1, + ACTIONS(3648), 1, anon_sym_export, - ACTIONS(3655), 1, + ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3659), 1, + ACTIONS(3658), 1, anon_sym_async, - ACTIONS(3661), 1, + ACTIONS(3660), 1, anon_sym_new, - ACTIONS(3665), 1, + ACTIONS(3664), 1, anon_sym_static, - ACTIONS(3667), 1, + ACTIONS(3666), 1, anon_sym_readonly, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - STATE(1267), 1, + STATE(1290), 1, sym_decorator, - STATE(2738), 1, + STATE(2726), 1, sym_accessibility_modifier, - STATE(2756), 1, + STATE(2750), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4416), 1, + STATE(4357), 1, sym__call_signature, - STATE(4535), 1, + STATE(4467), 1, aux_sym_export_statement_repeat1, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3663), 2, + ACTIONS(3662), 2, sym_number, sym_private_property_identifier, - ACTIONS(3669), 2, + ACTIONS(3668), 2, anon_sym_get, anon_sym_set, - ACTIONS(3689), 2, + ACTIONS(3684), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(3691), 2, + ACTIONS(3686), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3050), 3, + STATE(3081), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3818), 6, + STATE(3780), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3651), 12, + ACTIONS(3646), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -153428,15 +151252,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [16060] = 6, - ACTIONS(901), 1, - anon_sym_EQ_GT, - ACTIONS(928), 1, + [15581] = 6, + ACTIONS(3485), 1, anon_sym_EQ, + ACTIONS(3560), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153452,12 +151276,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 16, + ACTIONS(3439), 17, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -153469,7 +151294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153491,33 +151316,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16129] = 7, - ACTIONS(3549), 1, + [15651] = 31, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 1, + anon_sym_SQUOTE, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3268), 1, + anon_sym_abstract, + ACTIONS(3648), 1, + anon_sym_export, + ACTIONS(3650), 1, + anon_sym_STAR, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3658), 1, + anon_sym_async, + ACTIONS(3660), 1, + anon_sym_new, + ACTIONS(3664), 1, + anon_sym_static, + ACTIONS(3666), 1, + anon_sym_readonly, + ACTIONS(3672), 1, + anon_sym_override, + STATE(1290), 1, + sym_decorator, + STATE(2726), 1, + sym_accessibility_modifier, + STATE(2750), 1, + sym_override_modifier, + STATE(3267), 1, + sym_formal_parameters, + STATE(4357), 1, + sym__call_signature, + STATE(4467), 1, + aux_sym_export_statement_repeat1, + STATE(5435), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3322), 2, anon_sym_COMMA, - ACTIONS(3558), 1, - anon_sym_RBRACK, - ACTIONS(3642), 1, + anon_sym_SEMI, + ACTIONS(3338), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3662), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3668), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3081), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3903), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3646), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [15771] = 6, + ACTIONS(925), 1, anon_sym_EQ, + ACTIONS(931), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3452), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153533,7 +151429,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 21, + ACTIONS(158), 17, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153555,15 +151469,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16200] = 6, - ACTIONS(853), 1, + [15841] = 5, + ACTIONS(3550), 1, anon_sym_EQ, - ACTIONS(901), 1, - anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153579,12 +151491,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 16, + ACTIONS(3439), 18, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -153596,7 +151509,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + anon_sym_implements, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153618,15 +151532,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16269] = 6, - ACTIONS(962), 1, - anon_sym_EQ, - ACTIONS(968), 1, + [15909] = 9, + ACTIONS(225), 1, anon_sym_EQ_GT, + ACTIONS(814), 1, + anon_sym_EQ, + ACTIONS(3505), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(1683), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3508), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(158), 14, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + 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, + anon_sym_satisfies, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153642,36 +151580,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(120), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -153681,15 +151599,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16338] = 6, - ACTIONS(853), 1, + [15985] = 6, + ACTIONS(909), 1, anon_sym_EQ, - ACTIONS(968), 1, + ACTIONS(915), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153705,11 +151623,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 16, + ACTIONS(158), 17, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -153722,7 +151641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153744,13 +151663,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16407] = 5, - ACTIONS(3583), 1, + [16055] = 6, + ACTIONS(3604), 1, anon_sym_EQ, + ACTIONS(3606), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153766,12 +151687,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3452), 17, - sym__automatic_semicolon, + ACTIONS(3439), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -153784,7 +151704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3448), 21, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153806,33 +151726,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16474] = 7, - ACTIONS(159), 1, + [16124] = 6, + ACTIONS(899), 1, anon_sym_EQ_GT, - ACTIONS(853), 1, + ACTIONS(903), 1, anon_sym_EQ, - ACTIONS(855), 1, - anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153848,45 +151750,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [16545] = 8, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(853), 1, - anon_sym_EQ, - ACTIONS(905), 1, - anon_sym_in, - ACTIONS(3630), 1, - anon_sym_of, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(161), 15, + ACTIONS(158), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -153898,25 +151767,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(122), 20, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -153935,19 +151789,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16618] = 8, - ACTIONS(3484), 1, - anon_sym_EQ, - ACTIONS(3554), 1, - anon_sym_EQ_GT, + [16193] = 7, + ACTIONS(3544), 1, + anon_sym_COMMA, + ACTIONS(3567), 1, + anon_sym_RBRACK, ACTIONS(3637), 1, - anon_sym_in, - ACTIONS(3640), 1, - anon_sym_of, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3452), 15, + ACTIONS(3439), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -153963,7 +151815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153979,9 +151831,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 20, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -154000,13 +151853,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16691] = 5, - ACTIONS(3561), 1, + [16264] = 6, + ACTIONS(814), 1, anon_sym_EQ, + ACTIONS(899), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154022,13 +151877,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3452), 17, + ACTIONS(158), 16, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -154040,7 +151894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3448), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154062,15 +151916,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16758] = 6, - ACTIONS(3608), 1, + [16333] = 6, + ACTIONS(955), 1, anon_sym_EQ, - ACTIONS(3610), 1, + ACTIONS(961), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154086,12 +151940,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3452), 16, + ACTIONS(158), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -154103,7 +151957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3448), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154125,15 +151979,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16827] = 6, - ACTIONS(3484), 1, + [16402] = 6, + ACTIONS(814), 1, anon_sym_EQ, - ACTIONS(3610), 1, + ACTIONS(961), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154149,12 +152003,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3452), 16, + ACTIONS(158), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -154166,7 +152020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3448), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154188,15 +152042,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16896] = 6, - ACTIONS(3620), 1, + [16471] = 5, + ACTIONS(3554), 1, anon_sym_EQ, - ACTIONS(3622), 1, - anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154212,11 +152064,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3452), 16, + ACTIONS(3439), 17, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -154229,7 +152082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3448), 21, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154251,15 +152104,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16965] = 6, - ACTIONS(3484), 1, + [16538] = 5, + ACTIONS(3558), 1, anon_sym_EQ, - ACTIONS(3622), 1, - anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154275,11 +152126,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3452), 16, + ACTIONS(3439), 17, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -154292,7 +152144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3448), 21, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154314,15 +152166,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17034] = 6, - ACTIONS(3554), 1, + [16605] = 7, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(3693), 1, + ACTIONS(814), 1, anon_sym_EQ, + ACTIONS(834), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3452), 15, + ACTIONS(158), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -154338,7 +152192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154354,7 +152208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154376,31 +152230,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17102] = 6, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(1040), 1, + [16676] = 6, + ACTIONS(3596), 1, anon_sym_EQ, + ACTIONS(3598), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154416,41 +152254,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [17170] = 6, - ACTIONS(3554), 1, - anon_sym_EQ_GT, - ACTIONS(3695), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3452), 15, + ACTIONS(3439), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -154462,23 +152271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(3448), 21, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154500,187 +152293,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17238] = 30, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(3273), 1, - anon_sym_abstract, - ACTIONS(3653), 1, - anon_sym_export, - ACTIONS(3655), 1, - anon_sym_STAR, - ACTIONS(3657), 1, - anon_sym_LBRACK, - ACTIONS(3659), 1, - anon_sym_async, - ACTIONS(3661), 1, - anon_sym_new, - ACTIONS(3665), 1, - anon_sym_static, - ACTIONS(3667), 1, - anon_sym_readonly, - ACTIONS(3673), 1, - anon_sym_override, - STATE(1267), 1, - sym_decorator, - STATE(2738), 1, - sym_accessibility_modifier, - STATE(2756), 1, - sym_override_modifier, - STATE(3276), 1, - sym_formal_parameters, - STATE(4416), 1, - sym__call_signature, - STATE(4535), 1, - aux_sym_export_statement_repeat1, - STATE(5374), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3259), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3663), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3669), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3697), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3671), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3050), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4441), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3651), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [17354] = 30, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(3273), 1, - anon_sym_abstract, - ACTIONS(3653), 1, - anon_sym_export, - ACTIONS(3655), 1, - anon_sym_STAR, - ACTIONS(3657), 1, - anon_sym_LBRACK, - ACTIONS(3659), 1, - anon_sym_async, - ACTIONS(3661), 1, - anon_sym_new, - ACTIONS(3665), 1, - anon_sym_static, - ACTIONS(3667), 1, - anon_sym_readonly, - ACTIONS(3673), 1, - anon_sym_override, - STATE(1267), 1, - sym_decorator, - STATE(2738), 1, - sym_accessibility_modifier, - STATE(2756), 1, - sym_override_modifier, - STATE(3276), 1, - sym_formal_parameters, - STATE(4416), 1, - sym__call_signature, - STATE(4535), 1, - aux_sym_export_statement_repeat1, - STATE(5374), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3259), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3663), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3669), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3699), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3671), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3050), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4441), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3651), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [17470] = 6, - ACTIONS(3484), 1, + [16745] = 8, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(814), 1, anon_sym_EQ, - ACTIONS(3596), 1, - anon_sym_COLON, + ACTIONS(878), 1, + anon_sym_in, + ACTIONS(3644), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3452), 15, + ACTIONS(158), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -154696,7 +152321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154712,10 +152337,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 21, + ACTIONS(120), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -154734,192 +152358,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17538] = 30, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(3273), 1, - anon_sym_abstract, - ACTIONS(3653), 1, - anon_sym_export, - ACTIONS(3655), 1, - anon_sym_STAR, - ACTIONS(3657), 1, - anon_sym_LBRACK, - ACTIONS(3659), 1, - anon_sym_async, - ACTIONS(3661), 1, - anon_sym_new, - ACTIONS(3665), 1, - anon_sym_static, - ACTIONS(3667), 1, - anon_sym_readonly, - ACTIONS(3673), 1, - anon_sym_override, - STATE(1267), 1, - sym_decorator, - STATE(2738), 1, - sym_accessibility_modifier, - STATE(2756), 1, - sym_override_modifier, - STATE(3276), 1, - sym_formal_parameters, - STATE(4416), 1, - sym__call_signature, - STATE(4535), 1, - aux_sym_export_statement_repeat1, - STATE(5374), 1, - sym_type_parameters, + [16818] = 8, + ACTIONS(3485), 1, + anon_sym_EQ, + ACTIONS(3546), 1, + anon_sym_EQ_GT, + ACTIONS(3632), 1, + anon_sym_in, + ACTIONS(3635), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3439), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3453), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(3435), 20, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3663), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3669), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3701), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3671), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3050), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4441), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3651), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [17654] = 30, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(2537), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(3273), 1, - anon_sym_abstract, - ACTIONS(3653), 1, - anon_sym_export, - ACTIONS(3655), 1, - anon_sym_STAR, - ACTIONS(3657), 1, - anon_sym_LBRACK, - ACTIONS(3659), 1, - anon_sym_async, - ACTIONS(3661), 1, - anon_sym_new, - ACTIONS(3665), 1, - anon_sym_static, - ACTIONS(3667), 1, - anon_sym_readonly, - ACTIONS(3673), 1, - anon_sym_override, - STATE(1267), 1, - sym_decorator, - STATE(2738), 1, - sym_accessibility_modifier, - STATE(2756), 1, - sym_override_modifier, - STATE(3276), 1, - sym_formal_parameters, - STATE(4416), 1, - sym__call_signature, - STATE(4535), 1, - aux_sym_export_statement_repeat1, - STATE(5374), 1, - sym_type_parameters, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [16891] = 6, + ACTIONS(3485), 1, + anon_sym_EQ, + ACTIONS(3598), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3453), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(3439), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + 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, + anon_sym_satisfies, + ACTIONS(3435), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3663), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3669), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3703), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3671), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3050), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4441), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3651), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [17770] = 7, - ACTIONS(3484), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [16960] = 6, + ACTIONS(3485), 1, anon_sym_EQ, - ACTIONS(3637), 1, - anon_sym_in, - ACTIONS(3640), 1, - anon_sym_of, + ACTIONS(3606), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3452), 15, + ACTIONS(3453), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(3439), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -154932,7 +152527,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(3435), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [17029] = 5, + ACTIONS(3604), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154948,9 +152571,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 20, + ACTIONS(3439), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -154969,80 +152610,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17840] = 30, - ACTIONS(99), 1, + [17095] = 30, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1588), 1, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(2537), 1, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(3273), 1, + ACTIONS(3268), 1, anon_sym_abstract, - ACTIONS(3653), 1, + ACTIONS(3648), 1, anon_sym_export, - ACTIONS(3655), 1, + ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3659), 1, + ACTIONS(3658), 1, anon_sym_async, - ACTIONS(3661), 1, + ACTIONS(3660), 1, anon_sym_new, - ACTIONS(3665), 1, + ACTIONS(3664), 1, anon_sym_static, - ACTIONS(3667), 1, + ACTIONS(3666), 1, anon_sym_readonly, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - STATE(1267), 1, + STATE(1290), 1, sym_decorator, - STATE(2738), 1, + STATE(2726), 1, sym_accessibility_modifier, - STATE(2756), 1, + STATE(2750), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4416), 1, + STATE(4357), 1, sym__call_signature, - STATE(4535), 1, + STATE(4467), 1, aux_sym_export_statement_repeat1, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3663), 2, + ACTIONS(3662), 2, sym_number, sym_private_property_identifier, - ACTIONS(3669), 2, + ACTIONS(3668), 2, anon_sym_get, anon_sym_set, - ACTIONS(3705), 2, + ACTIONS(3688), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3050), 3, + STATE(3081), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4441), 6, + STATE(4375), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3651), 12, + ACTIONS(3646), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -155055,80 +152696,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [17956] = 30, - ACTIONS(99), 1, + [17211] = 30, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1588), 1, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(2537), 1, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(3273), 1, + ACTIONS(3268), 1, anon_sym_abstract, - ACTIONS(3653), 1, + ACTIONS(3648), 1, anon_sym_export, - ACTIONS(3655), 1, + ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3659), 1, + ACTIONS(3658), 1, anon_sym_async, - ACTIONS(3661), 1, + ACTIONS(3660), 1, anon_sym_new, - ACTIONS(3665), 1, + ACTIONS(3664), 1, anon_sym_static, - ACTIONS(3667), 1, + ACTIONS(3666), 1, anon_sym_readonly, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - STATE(1267), 1, + STATE(1290), 1, sym_decorator, - STATE(2738), 1, + STATE(2726), 1, sym_accessibility_modifier, - STATE(2756), 1, + STATE(2750), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4416), 1, + STATE(4357), 1, sym__call_signature, - STATE(4535), 1, + STATE(4467), 1, aux_sym_export_statement_repeat1, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3663), 2, + ACTIONS(3662), 2, sym_number, sym_private_property_identifier, - ACTIONS(3669), 2, + ACTIONS(3668), 2, anon_sym_get, anon_sym_set, - ACTIONS(3707), 2, + ACTIONS(3690), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3050), 3, + STATE(3081), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4441), 6, + STATE(4375), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3651), 12, + ACTIONS(3646), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -155141,204 +152782,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [18072] = 6, - ACTIONS(3554), 1, - anon_sym_EQ_GT, - ACTIONS(3709), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3452), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3466), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(3448), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [18140] = 6, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(980), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(161), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(167), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(122), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [18208] = 30, - ACTIONS(99), 1, + [17327] = 30, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1588), 1, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(2537), 1, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(3273), 1, + ACTIONS(3268), 1, anon_sym_abstract, - ACTIONS(3653), 1, + ACTIONS(3648), 1, anon_sym_export, - ACTIONS(3655), 1, + ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3659), 1, + ACTIONS(3658), 1, anon_sym_async, - ACTIONS(3661), 1, + ACTIONS(3660), 1, anon_sym_new, - ACTIONS(3665), 1, + ACTIONS(3664), 1, anon_sym_static, - ACTIONS(3667), 1, + ACTIONS(3666), 1, anon_sym_readonly, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - STATE(1267), 1, + STATE(1290), 1, sym_decorator, - STATE(2738), 1, + STATE(2726), 1, sym_accessibility_modifier, - STATE(2756), 1, + STATE(2750), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4416), 1, + STATE(4357), 1, sym__call_signature, - STATE(4535), 1, + STATE(4467), 1, aux_sym_export_statement_repeat1, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3663), 2, + ACTIONS(3662), 2, sym_number, sym_private_property_identifier, - ACTIONS(3669), 2, + ACTIONS(3668), 2, anon_sym_get, anon_sym_set, - ACTIONS(3711), 2, + ACTIONS(3692), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3050), 3, + STATE(3081), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4441), 6, + STATE(4375), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3651), 12, + ACTIONS(3646), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -155351,80 +152868,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [18324] = 30, - ACTIONS(99), 1, + [17443] = 30, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1588), 1, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(2537), 1, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(3273), 1, + ACTIONS(3268), 1, anon_sym_abstract, - ACTIONS(3653), 1, + ACTIONS(3648), 1, anon_sym_export, - ACTIONS(3655), 1, + ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3659), 1, + ACTIONS(3658), 1, anon_sym_async, - ACTIONS(3661), 1, + ACTIONS(3660), 1, anon_sym_new, - ACTIONS(3665), 1, + ACTIONS(3664), 1, anon_sym_static, - ACTIONS(3667), 1, + ACTIONS(3666), 1, anon_sym_readonly, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - STATE(1267), 1, + STATE(1290), 1, sym_decorator, - STATE(2738), 1, + STATE(2726), 1, sym_accessibility_modifier, - STATE(2756), 1, + STATE(2750), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4416), 1, + STATE(4357), 1, sym__call_signature, - STATE(4535), 1, + STATE(4467), 1, aux_sym_export_statement_repeat1, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3663), 2, + ACTIONS(3662), 2, sym_number, sym_private_property_identifier, - ACTIONS(3669), 2, + ACTIONS(3668), 2, anon_sym_get, anon_sym_set, - ACTIONS(3713), 2, + ACTIONS(3694), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3050), 3, + STATE(3081), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4441), 6, + STATE(4375), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3651), 12, + ACTIONS(3646), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -155437,80 +152954,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [18440] = 30, - ACTIONS(99), 1, + [17559] = 6, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(981), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(158), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(164), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [17627] = 30, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1588), 1, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(2537), 1, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(3273), 1, + ACTIONS(3268), 1, anon_sym_abstract, - ACTIONS(3653), 1, + ACTIONS(3648), 1, anon_sym_export, - ACTIONS(3655), 1, + ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3659), 1, + ACTIONS(3658), 1, anon_sym_async, - ACTIONS(3661), 1, + ACTIONS(3660), 1, anon_sym_new, - ACTIONS(3665), 1, + ACTIONS(3664), 1, anon_sym_static, - ACTIONS(3667), 1, + ACTIONS(3666), 1, anon_sym_readonly, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - STATE(1267), 1, + STATE(1290), 1, sym_decorator, - STATE(2738), 1, + STATE(2726), 1, sym_accessibility_modifier, - STATE(2756), 1, + STATE(2750), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4416), 1, + STATE(4357), 1, sym__call_signature, - STATE(4535), 1, + STATE(4467), 1, aux_sym_export_statement_repeat1, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3663), 2, + ACTIONS(3662), 2, sym_number, sym_private_property_identifier, - ACTIONS(3669), 2, + ACTIONS(3668), 2, anon_sym_get, anon_sym_set, - ACTIONS(3715), 2, + ACTIONS(3696), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3050), 3, + STATE(3081), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4441), 6, + STATE(4375), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3651), 12, + ACTIONS(3646), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -155523,15 +153102,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [18556] = 6, - ACTIONS(3554), 1, + [17743] = 6, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(3717), 1, + ACTIONS(967), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3452), 15, + ACTIONS(158), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155547,7 +153126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155563,7 +153142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155585,15 +153164,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18624] = 6, - ACTIONS(159), 1, + [17811] = 6, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(853), 1, + ACTIONS(973), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(158), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155609,7 +153188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155625,7 +153204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155647,15 +153226,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18692] = 6, - ACTIONS(159), 1, + [17879] = 6, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(1042), 1, + ACTIONS(969), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(158), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155671,7 +153250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155687,7 +153266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155709,15 +153288,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18760] = 6, - ACTIONS(159), 1, + [17947] = 6, + ACTIONS(3546), 1, anon_sym_EQ_GT, - ACTIONS(986), 1, + ACTIONS(3698), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(3439), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155733,7 +153312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155749,7 +153328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155771,166 +153350,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18828] = 30, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(3273), 1, - anon_sym_abstract, - ACTIONS(3653), 1, - anon_sym_export, - ACTIONS(3655), 1, - anon_sym_STAR, - ACTIONS(3657), 1, - anon_sym_LBRACK, - ACTIONS(3659), 1, - anon_sym_async, - ACTIONS(3661), 1, - anon_sym_new, - ACTIONS(3665), 1, - anon_sym_static, - ACTIONS(3667), 1, - anon_sym_readonly, - ACTIONS(3673), 1, - anon_sym_override, - STATE(1267), 1, - sym_decorator, - STATE(2738), 1, - sym_accessibility_modifier, - STATE(2756), 1, - sym_override_modifier, - STATE(3276), 1, - sym_formal_parameters, - STATE(4416), 1, - sym__call_signature, - STATE(4535), 1, - aux_sym_export_statement_repeat1, - STATE(5374), 1, - sym_type_parameters, + [18015] = 6, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(979), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3663), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3669), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3719), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3671), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3050), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4441), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3651), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [18944] = 30, - ACTIONS(99), 1, + ACTIONS(158), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(164), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [18083] = 30, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1588), 1, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(2537), 1, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(3273), 1, + ACTIONS(3268), 1, anon_sym_abstract, - ACTIONS(3653), 1, + ACTIONS(3648), 1, anon_sym_export, - ACTIONS(3655), 1, + ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3659), 1, + ACTIONS(3658), 1, anon_sym_async, - ACTIONS(3661), 1, + ACTIONS(3660), 1, anon_sym_new, - ACTIONS(3665), 1, + ACTIONS(3664), 1, anon_sym_static, - ACTIONS(3667), 1, + ACTIONS(3666), 1, anon_sym_readonly, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - STATE(1267), 1, + STATE(1290), 1, sym_decorator, - STATE(2738), 1, + STATE(2726), 1, sym_accessibility_modifier, - STATE(2756), 1, + STATE(2750), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4416), 1, + STATE(4357), 1, sym__call_signature, - STATE(4535), 1, + STATE(4467), 1, aux_sym_export_statement_repeat1, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3663), 2, + ACTIONS(3662), 2, sym_number, sym_private_property_identifier, - ACTIONS(3669), 2, + ACTIONS(3668), 2, anon_sym_get, anon_sym_set, - ACTIONS(3721), 2, + ACTIONS(3700), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3050), 3, + STATE(3081), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4441), 6, + STATE(4375), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3651), 12, + ACTIONS(3646), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -155943,142 +153498,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [19060] = 6, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(982), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(161), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(167), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(122), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [19128] = 30, - ACTIONS(99), 1, + [18199] = 30, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1588), 1, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(2537), 1, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(3273), 1, + ACTIONS(3268), 1, anon_sym_abstract, - ACTIONS(3653), 1, + ACTIONS(3648), 1, anon_sym_export, - ACTIONS(3655), 1, + ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3659), 1, + ACTIONS(3658), 1, anon_sym_async, - ACTIONS(3661), 1, + ACTIONS(3660), 1, anon_sym_new, - ACTIONS(3665), 1, + ACTIONS(3664), 1, anon_sym_static, - ACTIONS(3667), 1, + ACTIONS(3666), 1, anon_sym_readonly, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - STATE(1267), 1, + STATE(1290), 1, sym_decorator, - STATE(2738), 1, + STATE(2726), 1, sym_accessibility_modifier, - STATE(2756), 1, + STATE(2750), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4416), 1, + STATE(4357), 1, sym__call_signature, - STATE(4535), 1, + STATE(4467), 1, aux_sym_export_statement_repeat1, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3663), 2, + ACTIONS(3662), 2, sym_number, sym_private_property_identifier, - ACTIONS(3669), 2, + ACTIONS(3668), 2, anon_sym_get, anon_sym_set, - ACTIONS(3723), 2, + ACTIONS(3702), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3050), 3, + STATE(3081), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4441), 6, + STATE(4375), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3651), 12, + ACTIONS(3646), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -156091,15 +153584,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [19244] = 6, - ACTIONS(3554), 1, + [18315] = 6, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(3725), 1, + ACTIONS(971), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3452), 15, + ACTIONS(158), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -156115,7 +153608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156131,7 +153624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156153,15 +153646,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19312] = 6, - ACTIONS(3554), 1, + [18383] = 6, + ACTIONS(3546), 1, anon_sym_EQ_GT, - ACTIONS(3727), 1, + ACTIONS(3704), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3452), 15, + ACTIONS(3439), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -156177,7 +153670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156193,7 +153686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 21, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156215,15 +153708,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19380] = 6, - ACTIONS(159), 1, + [18451] = 6, + ACTIONS(3546), 1, anon_sym_EQ_GT, - ACTIONS(976), 1, + ACTIONS(3706), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(3439), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -156239,7 +153732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156255,7 +153748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156277,15 +153770,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19448] = 6, - ACTIONS(3554), 1, + [18519] = 6, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(3729), 1, + ACTIONS(814), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3452), 15, + ACTIONS(158), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -156301,7 +153794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156317,7 +153810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156339,15 +153832,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19516] = 6, - ACTIONS(159), 1, + [18587] = 6, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(984), 1, + ACTIONS(1035), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(158), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -156363,7 +153856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156379,7 +153872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156401,15 +153894,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19584] = 6, - ACTIONS(3484), 1, - anon_sym_EQ, - ACTIONS(3554), 1, + [18655] = 6, + ACTIONS(3546), 1, anon_sym_EQ_GT, + ACTIONS(3708), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3452), 15, + ACTIONS(3439), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -156425,7 +153918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156441,7 +153934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 21, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156463,80 +153956,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19652] = 30, - ACTIONS(99), 1, + [18723] = 30, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1588), 1, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(2537), 1, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(3273), 1, + ACTIONS(3268), 1, anon_sym_abstract, - ACTIONS(3653), 1, + ACTIONS(3648), 1, anon_sym_export, - ACTIONS(3655), 1, + ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3659), 1, + ACTIONS(3658), 1, anon_sym_async, - ACTIONS(3661), 1, + ACTIONS(3660), 1, anon_sym_new, - ACTIONS(3665), 1, + ACTIONS(3664), 1, anon_sym_static, - ACTIONS(3667), 1, + ACTIONS(3666), 1, anon_sym_readonly, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - STATE(1267), 1, + STATE(1290), 1, sym_decorator, - STATE(2738), 1, + STATE(2726), 1, sym_accessibility_modifier, - STATE(2756), 1, + STATE(2750), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4416), 1, + STATE(4357), 1, sym__call_signature, - STATE(4535), 1, + STATE(4467), 1, aux_sym_export_statement_repeat1, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3663), 2, + ACTIONS(3662), 2, sym_number, sym_private_property_identifier, - ACTIONS(3669), 2, + ACTIONS(3668), 2, anon_sym_get, anon_sym_set, - ACTIONS(3731), 2, + ACTIONS(3710), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3050), 3, + STATE(3081), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4441), 6, + STATE(4375), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3651), 12, + ACTIONS(3646), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -156549,137 +154042,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [19768] = 5, - ACTIONS(3608), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3466), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(3452), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - 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, - anon_sym_satisfies, - ACTIONS(3448), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [19834] = 5, - ACTIONS(3620), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3466), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(3452), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3448), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [19900] = 6, - ACTIONS(159), 1, + [18839] = 6, + ACTIONS(3546), 1, anon_sym_EQ_GT, - ACTIONS(974), 1, + ACTIONS(3712), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(3439), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -156695,7 +154066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156711,7 +154082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156733,142 +154104,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19968] = 6, - ACTIONS(3554), 1, - anon_sym_EQ_GT, - ACTIONS(3733), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3452), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3466), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(3448), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [20036] = 30, - ACTIONS(99), 1, + [18907] = 30, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1588), 1, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(2537), 1, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(3273), 1, + ACTIONS(3268), 1, anon_sym_abstract, - ACTIONS(3653), 1, + ACTIONS(3648), 1, anon_sym_export, - ACTIONS(3655), 1, + ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3659), 1, + ACTIONS(3658), 1, anon_sym_async, - ACTIONS(3661), 1, + ACTIONS(3660), 1, anon_sym_new, - ACTIONS(3665), 1, + ACTIONS(3664), 1, anon_sym_static, - ACTIONS(3667), 1, + ACTIONS(3666), 1, anon_sym_readonly, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - STATE(1267), 1, + STATE(1290), 1, sym_decorator, - STATE(2738), 1, + STATE(2726), 1, sym_accessibility_modifier, - STATE(2756), 1, + STATE(2750), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4416), 1, + STATE(4357), 1, sym__call_signature, - STATE(4535), 1, + STATE(4467), 1, aux_sym_export_statement_repeat1, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3663), 2, + ACTIONS(3662), 2, sym_number, sym_private_property_identifier, - ACTIONS(3669), 2, + ACTIONS(3668), 2, anon_sym_get, anon_sym_set, - ACTIONS(3735), 2, + ACTIONS(3714), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3050), 3, + STATE(3081), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4441), 6, + STATE(4375), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3651), 12, + ACTIONS(3646), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -156881,80 +154190,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [20152] = 30, - ACTIONS(99), 1, + [19023] = 30, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1588), 1, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(2537), 1, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(3273), 1, + ACTIONS(3268), 1, anon_sym_abstract, - ACTIONS(3653), 1, + ACTIONS(3648), 1, anon_sym_export, - ACTIONS(3655), 1, + ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3659), 1, + ACTIONS(3658), 1, anon_sym_async, - ACTIONS(3661), 1, + ACTIONS(3660), 1, anon_sym_new, - ACTIONS(3665), 1, + ACTIONS(3664), 1, anon_sym_static, - ACTIONS(3667), 1, + ACTIONS(3666), 1, anon_sym_readonly, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - STATE(1267), 1, + STATE(1290), 1, sym_decorator, - STATE(2738), 1, + STATE(2726), 1, sym_accessibility_modifier, - STATE(2756), 1, + STATE(2750), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4416), 1, + STATE(4357), 1, sym__call_signature, - STATE(4535), 1, + STATE(4467), 1, aux_sym_export_statement_repeat1, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3663), 2, + ACTIONS(3662), 2, sym_number, sym_private_property_identifier, - ACTIONS(3669), 2, + ACTIONS(3668), 2, anon_sym_get, anon_sym_set, - ACTIONS(3737), 2, + ACTIONS(3716), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3050), 3, + STATE(3081), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4441), 6, + STATE(4375), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3651), 12, + ACTIONS(3646), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -156967,15 +154276,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [20268] = 6, - ACTIONS(159), 1, + [19139] = 5, + ACTIONS(3596), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3453), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(3439), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + 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, + anon_sym_satisfies, + ACTIONS(3435), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [19205] = 6, + ACTIONS(3546), 1, anon_sym_EQ_GT, - ACTIONS(978), 1, + ACTIONS(3718), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(3439), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -156991,7 +154361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157007,7 +154377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157029,80 +154399,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20336] = 30, - ACTIONS(99), 1, + [19273] = 30, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1588), 1, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(2537), 1, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(3273), 1, + ACTIONS(3268), 1, anon_sym_abstract, - ACTIONS(3653), 1, + ACTIONS(3648), 1, anon_sym_export, - ACTIONS(3655), 1, + ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3659), 1, + ACTIONS(3658), 1, anon_sym_async, - ACTIONS(3661), 1, + ACTIONS(3660), 1, anon_sym_new, - ACTIONS(3665), 1, + ACTIONS(3664), 1, anon_sym_static, - ACTIONS(3667), 1, + ACTIONS(3666), 1, anon_sym_readonly, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - STATE(1267), 1, + STATE(1290), 1, sym_decorator, - STATE(2738), 1, + STATE(2726), 1, sym_accessibility_modifier, - STATE(2756), 1, + STATE(2750), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4416), 1, + STATE(4357), 1, sym__call_signature, - STATE(4535), 1, + STATE(4467), 1, aux_sym_export_statement_repeat1, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3663), 2, + ACTIONS(3662), 2, sym_number, sym_private_property_identifier, - ACTIONS(3669), 2, + ACTIONS(3668), 2, anon_sym_get, anon_sym_set, - ACTIONS(3739), 2, + ACTIONS(3720), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3050), 3, + STATE(3081), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4441), 6, + STATE(4375), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3651), 12, + ACTIONS(3646), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -157115,80 +154485,204 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [20452] = 30, - ACTIONS(99), 1, + [19389] = 6, + ACTIONS(3485), 1, + anon_sym_EQ, + ACTIONS(3577), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3439), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3453), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(3435), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [19457] = 6, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(975), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(158), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(164), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [19525] = 30, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1588), 1, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(2537), 1, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(3273), 1, + ACTIONS(3268), 1, anon_sym_abstract, - ACTIONS(3653), 1, + ACTIONS(3648), 1, anon_sym_export, - ACTIONS(3655), 1, + ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3659), 1, + ACTIONS(3658), 1, anon_sym_async, - ACTIONS(3661), 1, + ACTIONS(3660), 1, anon_sym_new, - ACTIONS(3665), 1, + ACTIONS(3664), 1, anon_sym_static, - ACTIONS(3667), 1, + ACTIONS(3666), 1, anon_sym_readonly, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - STATE(1267), 1, + STATE(1290), 1, sym_decorator, - STATE(2738), 1, + STATE(2726), 1, sym_accessibility_modifier, - STATE(2756), 1, + STATE(2750), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4416), 1, + STATE(4357), 1, sym__call_signature, - STATE(4535), 1, + STATE(4467), 1, aux_sym_export_statement_repeat1, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3663), 2, + ACTIONS(3662), 2, sym_number, sym_private_property_identifier, - ACTIONS(3669), 2, + ACTIONS(3668), 2, anon_sym_get, anon_sym_set, - ACTIONS(3741), 2, + ACTIONS(3722), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3050), 3, + STATE(3081), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4441), 6, + STATE(4375), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3651), 12, + ACTIONS(3646), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -157201,80 +154695,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [20568] = 30, - ACTIONS(99), 1, + [19641] = 30, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1588), 1, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(2537), 1, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(3273), 1, + ACTIONS(3268), 1, anon_sym_abstract, - ACTIONS(3653), 1, + ACTIONS(3648), 1, anon_sym_export, - ACTIONS(3655), 1, + ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3659), 1, + ACTIONS(3658), 1, anon_sym_async, - ACTIONS(3661), 1, + ACTIONS(3660), 1, anon_sym_new, - ACTIONS(3665), 1, + ACTIONS(3664), 1, anon_sym_static, - ACTIONS(3667), 1, + ACTIONS(3666), 1, anon_sym_readonly, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - STATE(1267), 1, + STATE(1290), 1, sym_decorator, - STATE(2738), 1, + STATE(2726), 1, sym_accessibility_modifier, - STATE(2756), 1, + STATE(2750), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4416), 1, + STATE(4357), 1, sym__call_signature, - STATE(4535), 1, + STATE(4467), 1, aux_sym_export_statement_repeat1, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3663), 2, + ACTIONS(3662), 2, sym_number, sym_private_property_identifier, - ACTIONS(3669), 2, + ACTIONS(3668), 2, anon_sym_get, anon_sym_set, - ACTIONS(3743), 2, + ACTIONS(3724), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3050), 3, + STATE(3081), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4441), 6, + STATE(4375), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3651), 12, + ACTIONS(3646), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -157287,15 +154781,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [20684] = 6, - ACTIONS(3554), 1, + [19757] = 6, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(3745), 1, + ACTIONS(977), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3452), 15, + ACTIONS(158), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -157311,7 +154805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157327,7 +154821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157349,13 +154843,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20752] = 5, - ACTIONS(3695), 1, + [19825] = 30, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 1, + anon_sym_SQUOTE, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3268), 1, + anon_sym_abstract, + ACTIONS(3648), 1, + anon_sym_export, + ACTIONS(3650), 1, + anon_sym_STAR, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3658), 1, + anon_sym_async, + ACTIONS(3660), 1, + anon_sym_new, + ACTIONS(3664), 1, + anon_sym_static, + ACTIONS(3666), 1, + anon_sym_readonly, + ACTIONS(3672), 1, + anon_sym_override, + STATE(1290), 1, + sym_decorator, + STATE(2726), 1, + sym_accessibility_modifier, + STATE(2750), 1, + sym_override_modifier, + STATE(3267), 1, + sym_formal_parameters, + STATE(4357), 1, + sym__call_signature, + STATE(4467), 1, + aux_sym_export_statement_repeat1, + STATE(5435), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3662), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3668), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3726), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3081), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4375), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3646), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [19941] = 7, + ACTIONS(3485), 1, anon_sym_EQ, + ACTIONS(3632), 1, + anon_sym_in, + ACTIONS(3635), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3452), 15, + ACTIONS(3439), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -157371,7 +154955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157387,10 +154971,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 21, + ACTIONS(3435), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -157409,13 +154992,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20817] = 5, - ACTIONS(3727), 1, + [20011] = 6, + ACTIONS(3546), 1, + anon_sym_EQ_GT, + ACTIONS(3728), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3452), 15, + ACTIONS(3439), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -157431,7 +155016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157447,7 +155032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 21, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157469,13 +155054,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20882] = 5, - ACTIONS(3733), 1, + [20079] = 6, + ACTIONS(3546), 1, + anon_sym_EQ_GT, + ACTIONS(3730), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3452), 15, + ACTIONS(3439), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -157491,7 +155078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157507,7 +155094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 21, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157529,73 +155116,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20947] = 5, - ACTIONS(3725), 1, - anon_sym_EQ, + [20147] = 30, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 1, + anon_sym_SQUOTE, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3268), 1, + anon_sym_abstract, + ACTIONS(3648), 1, + anon_sym_export, + ACTIONS(3650), 1, + anon_sym_STAR, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3658), 1, + anon_sym_async, + ACTIONS(3660), 1, + anon_sym_new, + ACTIONS(3664), 1, + anon_sym_static, + ACTIONS(3666), 1, + anon_sym_readonly, + ACTIONS(3672), 1, + anon_sym_override, + STATE(1290), 1, + sym_decorator, + STATE(2726), 1, + sym_accessibility_modifier, + STATE(2750), 1, + sym_override_modifier, + STATE(3267), 1, + sym_formal_parameters, + STATE(4357), 1, + sym__call_signature, + STATE(4467), 1, + aux_sym_export_statement_repeat1, + STATE(5435), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3452), 15, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3662), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3668), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3732), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3081), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4375), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3646), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [20263] = 30, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 1, + anon_sym_SQUOTE, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(3244), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3466), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(3448), 21, + ACTIONS(3268), 1, + anon_sym_abstract, + ACTIONS(3648), 1, + anon_sym_export, + ACTIONS(3650), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3658), 1, + anon_sym_async, + ACTIONS(3660), 1, + anon_sym_new, + ACTIONS(3664), 1, + anon_sym_static, + ACTIONS(3666), 1, + anon_sym_readonly, + ACTIONS(3672), 1, + anon_sym_override, + STATE(1290), 1, + sym_decorator, + STATE(2726), 1, + sym_accessibility_modifier, + STATE(2750), 1, + sym_override_modifier, + STATE(3267), 1, + sym_formal_parameters, + STATE(4357), 1, + sym__call_signature, + STATE(4467), 1, + aux_sym_export_statement_repeat1, + STATE(5435), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [21012] = 5, - ACTIONS(3729), 1, + ACTIONS(3662), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3668), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3734), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3081), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4375), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3646), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [20379] = 6, + ACTIONS(3546), 1, + anon_sym_EQ_GT, + ACTIONS(3736), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3452), 15, + ACTIONS(3439), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -157611,7 +155312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157627,7 +155328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 21, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157649,13 +155350,547 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21077] = 5, - ACTIONS(3709), 1, - anon_sym_EQ, + [20447] = 30, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 1, + anon_sym_SQUOTE, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3268), 1, + anon_sym_abstract, + ACTIONS(3648), 1, + anon_sym_export, + ACTIONS(3650), 1, + anon_sym_STAR, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3658), 1, + anon_sym_async, + ACTIONS(3660), 1, + anon_sym_new, + ACTIONS(3664), 1, + anon_sym_static, + ACTIONS(3666), 1, + anon_sym_readonly, + ACTIONS(3672), 1, + anon_sym_override, + STATE(1290), 1, + sym_decorator, + STATE(2726), 1, + sym_accessibility_modifier, + STATE(2750), 1, + sym_override_modifier, + STATE(3267), 1, + sym_formal_parameters, + STATE(4357), 1, + sym__call_signature, + STATE(4467), 1, + aux_sym_export_statement_repeat1, + STATE(5435), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3452), 15, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3662), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3668), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3738), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3081), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4375), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3646), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [20563] = 30, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 1, + anon_sym_SQUOTE, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3268), 1, + anon_sym_abstract, + ACTIONS(3648), 1, + anon_sym_export, + ACTIONS(3650), 1, + anon_sym_STAR, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3658), 1, + anon_sym_async, + ACTIONS(3660), 1, + anon_sym_new, + ACTIONS(3664), 1, + anon_sym_static, + ACTIONS(3666), 1, + anon_sym_readonly, + ACTIONS(3672), 1, + anon_sym_override, + STATE(1290), 1, + sym_decorator, + STATE(2726), 1, + sym_accessibility_modifier, + STATE(2750), 1, + sym_override_modifier, + STATE(3267), 1, + sym_formal_parameters, + STATE(4357), 1, + sym__call_signature, + STATE(4467), 1, + aux_sym_export_statement_repeat1, + STATE(5435), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3662), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3668), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3740), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3081), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4375), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3646), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [20679] = 6, + ACTIONS(3485), 1, + anon_sym_EQ, + ACTIONS(3546), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3439), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3453), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(3435), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [20747] = 5, + ACTIONS(3698), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3439), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3453), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(3435), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [20812] = 5, + ACTIONS(3736), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3439), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3453), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(3435), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [20877] = 5, + ACTIONS(3712), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3439), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3453), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(3435), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [20942] = 5, + ACTIONS(3728), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3439), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3453), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(3435), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [21007] = 5, + ACTIONS(3718), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3439), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3453), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(3435), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [21072] = 5, + ACTIONS(3708), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3439), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -157671,7 +155906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157687,7 +155922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 21, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157709,13 +155944,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21142] = 5, - ACTIONS(3693), 1, + [21137] = 5, + ACTIONS(3704), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3452), 15, + ACTIONS(3439), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -157731,7 +155966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157747,7 +155982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 21, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157769,13 +156004,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21207] = 5, - ACTIONS(3717), 1, + [21202] = 5, + ACTIONS(3706), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3452), 15, + ACTIONS(3439), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -157791,7 +156026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157807,7 +156042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 21, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157829,13 +156064,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21272] = 5, - ACTIONS(3745), 1, + [21267] = 5, + ACTIONS(3730), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3452), 15, + ACTIONS(3439), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -157851,7 +156086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3466), 15, + ACTIONS(3453), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157867,7 +156102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3448), 21, + ACTIONS(3435), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157889,77 +156124,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21337] = 29, - ACTIONS(99), 1, + [21332] = 29, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1588), 1, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(2537), 1, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(3273), 1, + ACTIONS(3268), 1, anon_sym_abstract, - ACTIONS(3653), 1, + ACTIONS(3648), 1, anon_sym_export, - ACTIONS(3655), 1, + ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3659), 1, + ACTIONS(3658), 1, anon_sym_async, - ACTIONS(3661), 1, + ACTIONS(3660), 1, anon_sym_new, - ACTIONS(3665), 1, + ACTIONS(3664), 1, anon_sym_static, - ACTIONS(3667), 1, + ACTIONS(3666), 1, anon_sym_readonly, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - STATE(1267), 1, + STATE(1290), 1, sym_decorator, - STATE(2738), 1, + STATE(2726), 1, sym_accessibility_modifier, - STATE(2756), 1, + STATE(2750), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4416), 1, + STATE(4357), 1, sym__call_signature, - STATE(4535), 1, + STATE(4467), 1, aux_sym_export_statement_repeat1, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3663), 2, + ACTIONS(3662), 2, sym_number, sym_private_property_identifier, - ACTIONS(3669), 2, + ACTIONS(3668), 2, anon_sym_get, anon_sym_set, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3050), 3, + STATE(3081), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3887), 6, + STATE(3828), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3651), 12, + ACTIONS(3646), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -157972,77 +156207,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21449] = 29, - ACTIONS(99), 1, + [21444] = 29, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1588), 1, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(2537), 1, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(3273), 1, + ACTIONS(3268), 1, anon_sym_abstract, - ACTIONS(3653), 1, + ACTIONS(3648), 1, anon_sym_export, - ACTIONS(3655), 1, + ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3659), 1, + ACTIONS(3658), 1, anon_sym_async, - ACTIONS(3661), 1, + ACTIONS(3660), 1, anon_sym_new, - ACTIONS(3665), 1, + ACTIONS(3664), 1, anon_sym_static, - ACTIONS(3667), 1, + ACTIONS(3666), 1, anon_sym_readonly, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - STATE(1267), 1, + STATE(1290), 1, sym_decorator, - STATE(2738), 1, + STATE(2726), 1, sym_accessibility_modifier, - STATE(2756), 1, + STATE(2750), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4416), 1, + STATE(4357), 1, sym__call_signature, - STATE(4535), 1, + STATE(4467), 1, aux_sym_export_statement_repeat1, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3663), 2, + ACTIONS(3662), 2, sym_number, sym_private_property_identifier, - ACTIONS(3669), 2, + ACTIONS(3668), 2, anon_sym_get, anon_sym_set, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3050), 3, + STATE(3081), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3867), 6, + STATE(3830), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3651), 12, + ACTIONS(3646), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -158055,77 +156290,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21561] = 29, - ACTIONS(99), 1, + [21556] = 29, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1588), 1, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(2537), 1, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(3273), 1, + ACTIONS(3268), 1, anon_sym_abstract, - ACTIONS(3653), 1, + ACTIONS(3648), 1, anon_sym_export, - ACTIONS(3655), 1, + ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3659), 1, + ACTIONS(3658), 1, anon_sym_async, - ACTIONS(3661), 1, + ACTIONS(3660), 1, anon_sym_new, - ACTIONS(3665), 1, + ACTIONS(3664), 1, anon_sym_static, - ACTIONS(3667), 1, + ACTIONS(3666), 1, anon_sym_readonly, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - STATE(1267), 1, + STATE(1290), 1, sym_decorator, - STATE(2738), 1, + STATE(2726), 1, sym_accessibility_modifier, - STATE(2756), 1, + STATE(2750), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4416), 1, + STATE(4357), 1, sym__call_signature, - STATE(4535), 1, + STATE(4467), 1, aux_sym_export_statement_repeat1, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3663), 2, + ACTIONS(3662), 2, sym_number, sym_private_property_identifier, - ACTIONS(3669), 2, + ACTIONS(3668), 2, anon_sym_get, anon_sym_set, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3050), 3, + STATE(3081), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3796), 6, + STATE(3886), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3651), 12, + ACTIONS(3646), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -158138,77 +156373,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21673] = 29, - ACTIONS(99), 1, + [21668] = 29, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1588), 1, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(2537), 1, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(3273), 1, + ACTIONS(3268), 1, anon_sym_abstract, - ACTIONS(3653), 1, + ACTIONS(3648), 1, anon_sym_export, - ACTIONS(3655), 1, + ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3659), 1, + ACTIONS(3658), 1, anon_sym_async, - ACTIONS(3661), 1, + ACTIONS(3660), 1, anon_sym_new, - ACTIONS(3665), 1, + ACTIONS(3664), 1, anon_sym_static, - ACTIONS(3667), 1, + ACTIONS(3666), 1, anon_sym_readonly, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - STATE(1267), 1, + STATE(1290), 1, sym_decorator, - STATE(2738), 1, + STATE(2726), 1, sym_accessibility_modifier, - STATE(2756), 1, + STATE(2750), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4416), 1, + STATE(4357), 1, sym__call_signature, - STATE(4535), 1, + STATE(4467), 1, aux_sym_export_statement_repeat1, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3663), 2, + ACTIONS(3662), 2, sym_number, sym_private_property_identifier, - ACTIONS(3669), 2, + ACTIONS(3668), 2, anon_sym_get, anon_sym_set, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3050), 3, + STATE(3081), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3826), 6, + STATE(3920), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3651), 12, + ACTIONS(3646), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -158221,77 +156456,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21785] = 29, - ACTIONS(99), 1, + [21780] = 29, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1588), 1, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(2537), 1, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(3273), 1, + ACTIONS(3268), 1, anon_sym_abstract, - ACTIONS(3653), 1, + ACTIONS(3648), 1, anon_sym_export, - ACTIONS(3655), 1, + ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3659), 1, + ACTIONS(3658), 1, anon_sym_async, - ACTIONS(3661), 1, + ACTIONS(3660), 1, anon_sym_new, - ACTIONS(3665), 1, + ACTIONS(3664), 1, anon_sym_static, - ACTIONS(3667), 1, + ACTIONS(3666), 1, anon_sym_readonly, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - STATE(1267), 1, + STATE(1290), 1, sym_decorator, - STATE(2738), 1, + STATE(2726), 1, sym_accessibility_modifier, - STATE(2756), 1, + STATE(2750), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4416), 1, + STATE(4357), 1, sym__call_signature, - STATE(4535), 1, + STATE(4467), 1, aux_sym_export_statement_repeat1, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3663), 2, + ACTIONS(3662), 2, sym_number, sym_private_property_identifier, - ACTIONS(3669), 2, + ACTIONS(3668), 2, anon_sym_get, anon_sym_set, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3050), 3, + STATE(3081), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4441), 6, + STATE(3871), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3651), 12, + ACTIONS(3646), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -158304,77 +156539,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21897] = 29, - ACTIONS(99), 1, + [21892] = 29, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1588), 1, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(2537), 1, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(3273), 1, + ACTIONS(3268), 1, anon_sym_abstract, - ACTIONS(3653), 1, + ACTIONS(3648), 1, anon_sym_export, - ACTIONS(3655), 1, + ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3659), 1, + ACTIONS(3658), 1, anon_sym_async, - ACTIONS(3661), 1, + ACTIONS(3660), 1, anon_sym_new, - ACTIONS(3665), 1, + ACTIONS(3664), 1, anon_sym_static, - ACTIONS(3667), 1, + ACTIONS(3666), 1, anon_sym_readonly, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - STATE(1267), 1, + STATE(1290), 1, sym_decorator, - STATE(2738), 1, + STATE(2726), 1, sym_accessibility_modifier, - STATE(2756), 1, + STATE(2750), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4416), 1, + STATE(4357), 1, sym__call_signature, - STATE(4535), 1, + STATE(4467), 1, aux_sym_export_statement_repeat1, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3663), 2, + ACTIONS(3662), 2, sym_number, sym_private_property_identifier, - ACTIONS(3669), 2, + ACTIONS(3668), 2, anon_sym_get, anon_sym_set, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3050), 3, + STATE(3081), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3915), 6, + STATE(4375), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3651), 12, + ACTIONS(3646), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -158387,77 +156622,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22009] = 29, - ACTIONS(99), 1, + [22004] = 29, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1588), 1, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(2537), 1, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(3273), 1, + ACTIONS(3268), 1, anon_sym_abstract, - ACTIONS(3653), 1, + ACTIONS(3648), 1, anon_sym_export, - ACTIONS(3655), 1, + ACTIONS(3650), 1, anon_sym_STAR, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3659), 1, + ACTIONS(3658), 1, anon_sym_async, - ACTIONS(3661), 1, + ACTIONS(3660), 1, anon_sym_new, - ACTIONS(3665), 1, + ACTIONS(3664), 1, anon_sym_static, - ACTIONS(3667), 1, + ACTIONS(3666), 1, anon_sym_readonly, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - STATE(1267), 1, + STATE(1290), 1, sym_decorator, - STATE(2738), 1, + STATE(2726), 1, sym_accessibility_modifier, - STATE(2756), 1, + STATE(2750), 1, sym_override_modifier, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4416), 1, + STATE(4357), 1, sym__call_signature, - STATE(4535), 1, + STATE(4467), 1, aux_sym_export_statement_repeat1, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3663), 2, + ACTIONS(3662), 2, sym_number, sym_private_property_identifier, - ACTIONS(3669), 2, + ACTIONS(3668), 2, anon_sym_get, anon_sym_set, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3050), 3, + STATE(3081), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3837), 6, + STATE(3769), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3651), 12, + ACTIONS(3646), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -158470,157 +156705,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22121] = 29, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(3657), 1, - anon_sym_LBRACK, - ACTIONS(3673), 1, - anon_sym_override, - ACTIONS(3747), 1, - anon_sym_STAR, - ACTIONS(3749), 1, - anon_sym_RBRACE, - ACTIONS(3751), 1, - anon_sym_SEMI, - ACTIONS(3753), 1, - anon_sym_async, - ACTIONS(3757), 1, + [22116] = 33, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(3759), 1, - anon_sym_static, - ACTIONS(3761), 1, - anon_sym_readonly, - ACTIONS(3765), 1, + ACTIONS(2240), 1, + anon_sym_LBRACE, + ACTIONS(2348), 1, + anon_sym_namespace, + ACTIONS(2350), 1, + anon_sym_import, + ACTIONS(2352), 1, + anon_sym_var, + ACTIONS(2354), 1, + anon_sym_let, + ACTIONS(2356), 1, + anon_sym_const, + ACTIONS(2358), 1, + anon_sym_class, + ACTIONS(2360), 1, + anon_sym_async, + ACTIONS(2362), 1, + anon_sym_function, + ACTIONS(2364), 1, anon_sym_declare, - ACTIONS(3767), 1, + ACTIONS(2368), 1, anon_sym_abstract, - ACTIONS(3769), 1, - anon_sym_accessor, - STATE(2396), 1, - aux_sym_export_statement_repeat1, - STATE(2657), 1, - sym_method_definition, - STATE(2682), 1, - sym_accessibility_modifier, - STATE(2748), 1, + ACTIONS(2372), 1, + anon_sym_interface, + ACTIONS(2374), 1, + anon_sym_enum, + ACTIONS(3742), 1, + anon_sym_STAR, + ACTIONS(3744), 1, + anon_sym_default, + ACTIONS(3746), 1, + anon_sym_type, + ACTIONS(3748), 1, + anon_sym_EQ, + ACTIONS(3750), 1, + anon_sym_as, + ACTIONS(3752), 1, + anon_sym_COMMA, + ACTIONS(3755), 1, + anon_sym_RBRACE, + ACTIONS(3760), 1, + anon_sym_module, + STATE(1290), 1, sym_decorator, - STATE(2770), 1, - sym_override_modifier, - STATE(4566), 1, - sym_method_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3259), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3755), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3763), 2, - anon_sym_get, - anon_sym_set, - STATE(1441), 2, - sym_class_static_block, - aux_sym_class_body_repeat1, - ACTIONS(3671), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3022), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5176), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3651), 13, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [22232] = 29, - ACTIONS(1588), 1, + STATE(4367), 1, + aux_sym_export_statement_repeat1, + STATE(4398), 1, + sym_declaration, + STATE(4399), 1, + sym_internal_module, + STATE(4587), 1, + sym_export_clause, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, + STATE(5325), 1, + sym_namespace_export, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3758), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(4393), 13, + 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_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [22235] = 29, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - ACTIONS(3747), 1, + ACTIONS(3762), 1, anon_sym_STAR, - ACTIONS(3753), 1, + ACTIONS(3764), 1, + anon_sym_RBRACE, + ACTIONS(3766), 1, + anon_sym_SEMI, + ACTIONS(3768), 1, anon_sym_async, - ACTIONS(3757), 1, + ACTIONS(3772), 1, anon_sym_AT, - ACTIONS(3759), 1, + ACTIONS(3774), 1, anon_sym_static, - ACTIONS(3761), 1, + ACTIONS(3776), 1, anon_sym_readonly, - ACTIONS(3765), 1, + ACTIONS(3780), 1, anon_sym_declare, - ACTIONS(3767), 1, + ACTIONS(3782), 1, anon_sym_abstract, - ACTIONS(3769), 1, + ACTIONS(3784), 1, anon_sym_accessor, - ACTIONS(3771), 1, - anon_sym_RBRACE, - ACTIONS(3773), 1, - anon_sym_SEMI, - STATE(2396), 1, + STATE(2382), 1, aux_sym_export_statement_repeat1, - STATE(2657), 1, + STATE(2617), 1, sym_method_definition, - STATE(2682), 1, + STATE(2685), 1, sym_accessibility_modifier, - STATE(2748), 1, + STATE(2749), 1, sym_decorator, - STATE(2770), 1, + STATE(2757), 1, sym_override_modifier, - STATE(4566), 1, + STATE(4526), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3755), 2, + ACTIONS(3770), 2, sym_number, sym_private_property_identifier, - ACTIONS(3763), 2, + ACTIONS(3778), 2, anon_sym_get, anon_sym_set, - STATE(1446), 2, + STATE(1449), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3022), 3, + STATE(3003), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5176), 3, + STATE(5020), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3651), 13, + ACTIONS(3646), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -158634,161 +156873,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22343] = 33, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(2245), 1, - anon_sym_LBRACE, - ACTIONS(2357), 1, - anon_sym_namespace, - ACTIONS(2359), 1, - anon_sym_import, - ACTIONS(2361), 1, - anon_sym_var, - ACTIONS(2363), 1, - anon_sym_let, - ACTIONS(2365), 1, - anon_sym_const, - ACTIONS(2367), 1, - anon_sym_class, - ACTIONS(2369), 1, - anon_sym_async, - ACTIONS(2371), 1, - anon_sym_function, - ACTIONS(2373), 1, - anon_sym_declare, - ACTIONS(2377), 1, - anon_sym_abstract, - ACTIONS(2381), 1, - anon_sym_interface, - ACTIONS(2383), 1, - anon_sym_enum, - ACTIONS(3775), 1, - anon_sym_STAR, - ACTIONS(3777), 1, - anon_sym_default, - ACTIONS(3779), 1, - anon_sym_type, - ACTIONS(3781), 1, - anon_sym_EQ, - ACTIONS(3783), 1, - anon_sym_as, - ACTIONS(3785), 1, - anon_sym_COMMA, - ACTIONS(3788), 1, - anon_sym_RBRACE, - ACTIONS(3793), 1, - anon_sym_module, - STATE(1267), 1, - sym_decorator, - STATE(4377), 1, - aux_sym_export_statement_repeat1, - STATE(4424), 1, - sym_declaration, - STATE(4425), 1, - sym_internal_module, - STATE(4558), 1, - sym_export_clause, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, - STATE(5235), 1, - sym_namespace_export, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(4422), 13, - 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_import_alias, - sym_interface_declaration, - sym_enum_declaration, - sym_type_alias_declaration, - [22462] = 29, - ACTIONS(1588), 1, + [22346] = 29, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - ACTIONS(3747), 1, + ACTIONS(3762), 1, anon_sym_STAR, - ACTIONS(3753), 1, + ACTIONS(3768), 1, anon_sym_async, - ACTIONS(3757), 1, + ACTIONS(3772), 1, anon_sym_AT, - ACTIONS(3759), 1, + ACTIONS(3774), 1, anon_sym_static, - ACTIONS(3761), 1, + ACTIONS(3776), 1, anon_sym_readonly, - ACTIONS(3765), 1, + ACTIONS(3780), 1, anon_sym_declare, - ACTIONS(3767), 1, + ACTIONS(3782), 1, anon_sym_abstract, - ACTIONS(3769), 1, + ACTIONS(3784), 1, anon_sym_accessor, - ACTIONS(3795), 1, + ACTIONS(3786), 1, anon_sym_RBRACE, - ACTIONS(3797), 1, + ACTIONS(3788), 1, anon_sym_SEMI, - STATE(2396), 1, + STATE(2382), 1, aux_sym_export_statement_repeat1, - STATE(2657), 1, + STATE(2617), 1, sym_method_definition, - STATE(2682), 1, + STATE(2685), 1, sym_accessibility_modifier, - STATE(2748), 1, + STATE(2749), 1, sym_decorator, - STATE(2770), 1, + STATE(2757), 1, sym_override_modifier, - STATE(4566), 1, + STATE(4526), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3755), 2, + ACTIONS(3770), 2, sym_number, sym_private_property_identifier, - ACTIONS(3763), 2, + ACTIONS(3778), 2, anon_sym_get, anon_sym_set, - STATE(1450), 2, + STATE(1448), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3022), 3, + STATE(3003), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5176), 3, + STATE(5020), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3651), 13, + ACTIONS(3646), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -158802,161 +156955,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22573] = 33, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(2245), 1, - anon_sym_LBRACE, - ACTIONS(2357), 1, - anon_sym_namespace, - ACTIONS(2359), 1, - anon_sym_import, - ACTIONS(2361), 1, - anon_sym_var, - ACTIONS(2363), 1, - anon_sym_let, - ACTIONS(2365), 1, - anon_sym_const, - ACTIONS(2367), 1, - anon_sym_class, - ACTIONS(2369), 1, - anon_sym_async, - ACTIONS(2371), 1, - anon_sym_function, - ACTIONS(2373), 1, - anon_sym_declare, - ACTIONS(2377), 1, - anon_sym_abstract, - ACTIONS(2381), 1, - anon_sym_interface, - ACTIONS(2383), 1, - anon_sym_enum, - ACTIONS(3775), 1, - anon_sym_STAR, - ACTIONS(3777), 1, - anon_sym_default, - ACTIONS(3779), 1, - anon_sym_type, - ACTIONS(3781), 1, - anon_sym_EQ, - ACTIONS(3783), 1, - anon_sym_as, - ACTIONS(3785), 1, - anon_sym_COMMA, - ACTIONS(3793), 1, - anon_sym_module, - ACTIONS(3799), 1, - anon_sym_RBRACE, - STATE(1267), 1, - sym_decorator, - STATE(4377), 1, - aux_sym_export_statement_repeat1, - STATE(4424), 1, - sym_declaration, - STATE(4425), 1, - sym_internal_module, - STATE(4558), 1, - sym_export_clause, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, - STATE(5235), 1, - sym_namespace_export, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(4422), 13, - 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_import_alias, - sym_interface_declaration, - sym_enum_declaration, - sym_type_alias_declaration, - [22692] = 29, - ACTIONS(1588), 1, + [22457] = 29, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - ACTIONS(3747), 1, + ACTIONS(3762), 1, anon_sym_STAR, - ACTIONS(3753), 1, + ACTIONS(3768), 1, anon_sym_async, - ACTIONS(3757), 1, + ACTIONS(3772), 1, anon_sym_AT, - ACTIONS(3759), 1, + ACTIONS(3774), 1, anon_sym_static, - ACTIONS(3761), 1, + ACTIONS(3776), 1, anon_sym_readonly, - ACTIONS(3765), 1, + ACTIONS(3780), 1, anon_sym_declare, - ACTIONS(3767), 1, + ACTIONS(3782), 1, anon_sym_abstract, - ACTIONS(3769), 1, + ACTIONS(3784), 1, anon_sym_accessor, - ACTIONS(3802), 1, - anon_sym_RBRACE, - ACTIONS(3804), 1, + ACTIONS(3788), 1, anon_sym_SEMI, - STATE(2396), 1, + ACTIONS(3790), 1, + anon_sym_RBRACE, + STATE(2382), 1, aux_sym_export_statement_repeat1, - STATE(2657), 1, + STATE(2617), 1, sym_method_definition, - STATE(2682), 1, + STATE(2685), 1, sym_accessibility_modifier, - STATE(2748), 1, + STATE(2749), 1, sym_decorator, - STATE(2770), 1, + STATE(2757), 1, sym_override_modifier, - STATE(4566), 1, + STATE(4526), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3755), 2, + ACTIONS(3770), 2, sym_number, sym_private_property_identifier, - ACTIONS(3763), 2, + ACTIONS(3778), 2, anon_sym_get, anon_sym_set, - STATE(1453), 2, + STATE(1448), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3022), 3, + STATE(3003), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5176), 3, + STATE(5020), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3651), 13, + ACTIONS(3646), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -158970,75 +157037,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22803] = 29, - ACTIONS(3809), 1, - anon_sym_STAR, - ACTIONS(3812), 1, - anon_sym_RBRACE, - ACTIONS(3814), 1, - anon_sym_SEMI, - ACTIONS(3817), 1, - anon_sym_LBRACK, - ACTIONS(3820), 1, + [22568] = 29, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(3823), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(3826), 1, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(3762), 1, + anon_sym_STAR, + ACTIONS(3768), 1, anon_sym_async, - ACTIONS(3835), 1, + ACTIONS(3772), 1, anon_sym_AT, - ACTIONS(3838), 1, + ACTIONS(3774), 1, anon_sym_static, - ACTIONS(3841), 1, + ACTIONS(3776), 1, anon_sym_readonly, - ACTIONS(3847), 1, + ACTIONS(3780), 1, anon_sym_declare, - ACTIONS(3853), 1, - anon_sym_override, - ACTIONS(3856), 1, + ACTIONS(3782), 1, anon_sym_abstract, - ACTIONS(3859), 1, + ACTIONS(3784), 1, anon_sym_accessor, - STATE(2396), 1, + ACTIONS(3792), 1, + anon_sym_RBRACE, + ACTIONS(3794), 1, + anon_sym_SEMI, + STATE(2382), 1, aux_sym_export_statement_repeat1, - STATE(2657), 1, + STATE(2617), 1, sym_method_definition, - STATE(2682), 1, + STATE(2685), 1, sym_accessibility_modifier, - STATE(2748), 1, + STATE(2749), 1, sym_decorator, - STATE(2770), 1, + STATE(2757), 1, sym_override_modifier, - STATE(4566), 1, + STATE(4526), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3829), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3832), 2, + ACTIONS(3770), 2, sym_number, sym_private_property_identifier, - ACTIONS(3844), 2, + ACTIONS(3778), 2, anon_sym_get, anon_sym_set, - STATE(1446), 2, + STATE(1455), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3850), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3022), 3, + STATE(3003), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5176), 3, + STATE(5020), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3806), 13, + ACTIONS(3646), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -159052,75 +157119,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22914] = 29, - ACTIONS(1588), 1, + [22679] = 29, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - ACTIONS(3747), 1, + ACTIONS(3762), 1, anon_sym_STAR, - ACTIONS(3753), 1, + ACTIONS(3768), 1, anon_sym_async, - ACTIONS(3757), 1, + ACTIONS(3772), 1, anon_sym_AT, - ACTIONS(3759), 1, + ACTIONS(3774), 1, anon_sym_static, - ACTIONS(3761), 1, + ACTIONS(3776), 1, anon_sym_readonly, - ACTIONS(3765), 1, + ACTIONS(3780), 1, anon_sym_declare, - ACTIONS(3767), 1, + ACTIONS(3782), 1, anon_sym_abstract, - ACTIONS(3769), 1, + ACTIONS(3784), 1, anon_sym_accessor, - ACTIONS(3862), 1, + ACTIONS(3796), 1, anon_sym_RBRACE, - ACTIONS(3864), 1, + ACTIONS(3798), 1, anon_sym_SEMI, - STATE(2396), 1, + STATE(2382), 1, aux_sym_export_statement_repeat1, - STATE(2657), 1, + STATE(2617), 1, sym_method_definition, - STATE(2682), 1, + STATE(2685), 1, sym_accessibility_modifier, - STATE(2748), 1, + STATE(2749), 1, sym_decorator, - STATE(2770), 1, + STATE(2757), 1, sym_override_modifier, - STATE(4566), 1, + STATE(4526), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3755), 2, + ACTIONS(3770), 2, sym_number, sym_private_property_identifier, - ACTIONS(3763), 2, + ACTIONS(3778), 2, anon_sym_get, anon_sym_set, - STATE(1455), 2, + STATE(1442), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3022), 3, + STATE(3003), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5176), 3, + STATE(5020), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3651), 13, + ACTIONS(3646), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -159134,71 +157201,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23025] = 33, - ACTIONS(99), 1, + [22790] = 33, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(2245), 1, + ACTIONS(2240), 1, anon_sym_LBRACE, - ACTIONS(2357), 1, + ACTIONS(2348), 1, anon_sym_namespace, - ACTIONS(2359), 1, + ACTIONS(2350), 1, anon_sym_import, - ACTIONS(2361), 1, + ACTIONS(2352), 1, anon_sym_var, - ACTIONS(2363), 1, + ACTIONS(2354), 1, anon_sym_let, - ACTIONS(2365), 1, + ACTIONS(2356), 1, anon_sym_const, - ACTIONS(2367), 1, + ACTIONS(2358), 1, anon_sym_class, - ACTIONS(2369), 1, + ACTIONS(2360), 1, anon_sym_async, - ACTIONS(2371), 1, + ACTIONS(2362), 1, anon_sym_function, - ACTIONS(2373), 1, + ACTIONS(2364), 1, anon_sym_declare, - ACTIONS(2377), 1, + ACTIONS(2368), 1, anon_sym_abstract, - ACTIONS(2381), 1, + ACTIONS(2372), 1, anon_sym_interface, - ACTIONS(2383), 1, + ACTIONS(2374), 1, anon_sym_enum, - ACTIONS(3775), 1, + ACTIONS(3742), 1, anon_sym_STAR, - ACTIONS(3777), 1, + ACTIONS(3744), 1, anon_sym_default, - ACTIONS(3779), 1, + ACTIONS(3746), 1, anon_sym_type, - ACTIONS(3781), 1, + ACTIONS(3748), 1, anon_sym_EQ, - ACTIONS(3783), 1, + ACTIONS(3750), 1, anon_sym_as, - ACTIONS(3785), 1, + ACTIONS(3752), 1, anon_sym_COMMA, - ACTIONS(3793), 1, + ACTIONS(3760), 1, anon_sym_module, - ACTIONS(3866), 1, + ACTIONS(3800), 1, anon_sym_RBRACE, - STATE(1267), 1, + STATE(1290), 1, sym_decorator, - STATE(4377), 1, + STATE(4367), 1, aux_sym_export_statement_repeat1, - STATE(4424), 1, + STATE(4398), 1, sym_declaration, - STATE(4425), 1, + STATE(4399), 1, sym_internal_module, - STATE(4558), 1, + STATE(4587), 1, sym_export_clause, - STATE(4679), 1, + STATE(5129), 1, + aux_sym_object_repeat1, + STATE(5131), 1, aux_sym_object_pattern_repeat1, - STATE(5173), 1, + STATE(5325), 1, + sym_namespace_export, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3758), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(4393), 13, + 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_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [22909] = 33, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(2240), 1, + anon_sym_LBRACE, + ACTIONS(2348), 1, + anon_sym_namespace, + ACTIONS(2350), 1, + anon_sym_import, + ACTIONS(2352), 1, + anon_sym_var, + ACTIONS(2354), 1, + anon_sym_let, + ACTIONS(2356), 1, + anon_sym_const, + ACTIONS(2358), 1, + anon_sym_class, + ACTIONS(2360), 1, + anon_sym_async, + ACTIONS(2362), 1, + anon_sym_function, + ACTIONS(2364), 1, + anon_sym_declare, + ACTIONS(2368), 1, + anon_sym_abstract, + ACTIONS(2372), 1, + anon_sym_interface, + ACTIONS(2374), 1, + anon_sym_enum, + ACTIONS(3742), 1, + anon_sym_STAR, + ACTIONS(3744), 1, + anon_sym_default, + ACTIONS(3746), 1, + anon_sym_type, + ACTIONS(3748), 1, + anon_sym_EQ, + ACTIONS(3750), 1, + anon_sym_as, + ACTIONS(3752), 1, + anon_sym_COMMA, + ACTIONS(3760), 1, + anon_sym_module, + ACTIONS(3803), 1, + anon_sym_RBRACE, + STATE(1290), 1, + sym_decorator, + STATE(4367), 1, + aux_sym_export_statement_repeat1, + STATE(4398), 1, + sym_declaration, + STATE(4399), 1, + sym_internal_module, + STATE(4587), 1, + sym_export_clause, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, aux_sym_object_repeat1, - STATE(5235), 1, + STATE(5325), 1, sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 7, + ACTIONS(3758), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -159206,7 +157359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4422), 13, + STATE(4393), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -159220,75 +157373,75 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [23144] = 29, - ACTIONS(1588), 1, + [23028] = 29, + ACTIONS(3809), 1, + anon_sym_STAR, + ACTIONS(3812), 1, + anon_sym_RBRACE, + ACTIONS(3814), 1, + anon_sym_SEMI, + ACTIONS(3817), 1, + anon_sym_LBRACK, + ACTIONS(3820), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(3823), 1, anon_sym_SQUOTE, - ACTIONS(3657), 1, - anon_sym_LBRACK, - ACTIONS(3673), 1, - anon_sym_override, - ACTIONS(3747), 1, - anon_sym_STAR, - ACTIONS(3753), 1, + ACTIONS(3826), 1, anon_sym_async, - ACTIONS(3757), 1, + ACTIONS(3835), 1, anon_sym_AT, - ACTIONS(3759), 1, + ACTIONS(3838), 1, anon_sym_static, - ACTIONS(3761), 1, + ACTIONS(3841), 1, anon_sym_readonly, - ACTIONS(3765), 1, + ACTIONS(3847), 1, anon_sym_declare, - ACTIONS(3767), 1, + ACTIONS(3853), 1, + anon_sym_override, + ACTIONS(3856), 1, anon_sym_abstract, - ACTIONS(3769), 1, + ACTIONS(3859), 1, anon_sym_accessor, - ACTIONS(3869), 1, - anon_sym_RBRACE, - ACTIONS(3871), 1, - anon_sym_SEMI, - STATE(2396), 1, + STATE(2382), 1, aux_sym_export_statement_repeat1, - STATE(2657), 1, + STATE(2617), 1, sym_method_definition, - STATE(2682), 1, + STATE(2685), 1, sym_accessibility_modifier, - STATE(2748), 1, + STATE(2749), 1, sym_decorator, - STATE(2770), 1, + STATE(2757), 1, sym_override_modifier, - STATE(4566), 1, + STATE(4526), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3829), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3755), 2, + ACTIONS(3832), 2, sym_number, sym_private_property_identifier, - ACTIONS(3763), 2, + ACTIONS(3844), 2, anon_sym_get, anon_sym_set, - STATE(1451), 2, + STATE(1448), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3671), 3, + ACTIONS(3850), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3022), 3, + STATE(3003), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5176), 3, + STATE(5020), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3651), 13, + ACTIONS(3806), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -159302,75 +157455,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23255] = 29, - ACTIONS(1588), 1, + [23139] = 29, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - ACTIONS(3747), 1, + ACTIONS(3762), 1, anon_sym_STAR, - ACTIONS(3753), 1, + ACTIONS(3768), 1, anon_sym_async, - ACTIONS(3757), 1, + ACTIONS(3772), 1, anon_sym_AT, - ACTIONS(3759), 1, + ACTIONS(3774), 1, anon_sym_static, - ACTIONS(3761), 1, + ACTIONS(3776), 1, anon_sym_readonly, - ACTIONS(3765), 1, + ACTIONS(3780), 1, anon_sym_declare, - ACTIONS(3767), 1, + ACTIONS(3782), 1, anon_sym_abstract, - ACTIONS(3769), 1, + ACTIONS(3784), 1, anon_sym_accessor, - ACTIONS(3773), 1, + ACTIONS(3788), 1, anon_sym_SEMI, - ACTIONS(3873), 1, + ACTIONS(3862), 1, anon_sym_RBRACE, - STATE(2396), 1, + STATE(2382), 1, aux_sym_export_statement_repeat1, - STATE(2657), 1, + STATE(2617), 1, sym_method_definition, - STATE(2682), 1, + STATE(2685), 1, sym_accessibility_modifier, - STATE(2748), 1, + STATE(2749), 1, sym_decorator, - STATE(2770), 1, + STATE(2757), 1, sym_override_modifier, - STATE(4566), 1, + STATE(4526), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3755), 2, + ACTIONS(3770), 2, sym_number, sym_private_property_identifier, - ACTIONS(3763), 2, + ACTIONS(3778), 2, anon_sym_get, anon_sym_set, - STATE(1446), 2, + STATE(1448), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3022), 3, + STATE(3003), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5176), 3, + STATE(5020), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3651), 13, + ACTIONS(3646), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -159384,75 +157537,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23366] = 29, - ACTIONS(1588), 1, + [23250] = 29, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - ACTIONS(3747), 1, + ACTIONS(3762), 1, anon_sym_STAR, - ACTIONS(3753), 1, + ACTIONS(3768), 1, anon_sym_async, - ACTIONS(3757), 1, + ACTIONS(3772), 1, anon_sym_AT, - ACTIONS(3759), 1, + ACTIONS(3774), 1, anon_sym_static, - ACTIONS(3761), 1, + ACTIONS(3776), 1, anon_sym_readonly, - ACTIONS(3765), 1, + ACTIONS(3780), 1, anon_sym_declare, - ACTIONS(3767), 1, + ACTIONS(3782), 1, anon_sym_abstract, - ACTIONS(3769), 1, + ACTIONS(3784), 1, anon_sym_accessor, - ACTIONS(3773), 1, - anon_sym_SEMI, - ACTIONS(3875), 1, + ACTIONS(3864), 1, anon_sym_RBRACE, - STATE(2396), 1, + ACTIONS(3866), 1, + anon_sym_SEMI, + STATE(2382), 1, aux_sym_export_statement_repeat1, - STATE(2657), 1, + STATE(2617), 1, sym_method_definition, - STATE(2682), 1, + STATE(2685), 1, sym_accessibility_modifier, - STATE(2748), 1, + STATE(2749), 1, sym_decorator, - STATE(2770), 1, + STATE(2757), 1, sym_override_modifier, - STATE(4566), 1, + STATE(4526), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3755), 2, + ACTIONS(3770), 2, sym_number, sym_private_property_identifier, - ACTIONS(3763), 2, + ACTIONS(3778), 2, anon_sym_get, anon_sym_set, - STATE(1446), 2, + STATE(1452), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3022), 3, + STATE(3003), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5176), 3, + STATE(5020), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3651), 13, + ACTIONS(3646), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -159466,71 +157619,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23477] = 33, - ACTIONS(99), 1, + [23361] = 33, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(2245), 1, + ACTIONS(2240), 1, anon_sym_LBRACE, - ACTIONS(2357), 1, + ACTIONS(2348), 1, anon_sym_namespace, - ACTIONS(2359), 1, + ACTIONS(2350), 1, anon_sym_import, - ACTIONS(2361), 1, + ACTIONS(2352), 1, anon_sym_var, - ACTIONS(2363), 1, + ACTIONS(2354), 1, anon_sym_let, - ACTIONS(2365), 1, + ACTIONS(2356), 1, anon_sym_const, - ACTIONS(2367), 1, + ACTIONS(2358), 1, anon_sym_class, - ACTIONS(2369), 1, + ACTIONS(2360), 1, anon_sym_async, - ACTIONS(2371), 1, + ACTIONS(2362), 1, anon_sym_function, - ACTIONS(2373), 1, + ACTIONS(2364), 1, anon_sym_declare, - ACTIONS(2377), 1, + ACTIONS(2368), 1, anon_sym_abstract, - ACTIONS(2381), 1, + ACTIONS(2372), 1, anon_sym_interface, - ACTIONS(2383), 1, + ACTIONS(2374), 1, anon_sym_enum, - ACTIONS(3775), 1, + ACTIONS(3742), 1, anon_sym_STAR, - ACTIONS(3777), 1, + ACTIONS(3744), 1, anon_sym_default, - ACTIONS(3779), 1, + ACTIONS(3746), 1, anon_sym_type, - ACTIONS(3781), 1, + ACTIONS(3748), 1, anon_sym_EQ, - ACTIONS(3783), 1, + ACTIONS(3750), 1, anon_sym_as, - ACTIONS(3785), 1, + ACTIONS(3752), 1, anon_sym_COMMA, - ACTIONS(3793), 1, + ACTIONS(3760), 1, anon_sym_module, - ACTIONS(3877), 1, + ACTIONS(3868), 1, anon_sym_RBRACE, - STATE(1267), 1, + STATE(1290), 1, sym_decorator, - STATE(4377), 1, + STATE(4367), 1, aux_sym_export_statement_repeat1, - STATE(4424), 1, + STATE(4398), 1, sym_declaration, - STATE(4425), 1, + STATE(4399), 1, sym_internal_module, - STATE(4558), 1, + STATE(4587), 1, sym_export_clause, - STATE(4679), 1, + STATE(5131), 1, aux_sym_object_pattern_repeat1, - STATE(5173), 1, + STATE(5191), 1, aux_sym_object_repeat1, - STATE(5235), 1, + STATE(5325), 1, sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 7, + ACTIONS(3758), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -159538,7 +157691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4422), 13, + STATE(4393), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -159552,75 +157705,75 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [23596] = 29, - ACTIONS(1588), 1, + [23480] = 29, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - ACTIONS(3747), 1, + ACTIONS(3762), 1, anon_sym_STAR, - ACTIONS(3753), 1, + ACTIONS(3768), 1, anon_sym_async, - ACTIONS(3757), 1, + ACTIONS(3772), 1, anon_sym_AT, - ACTIONS(3759), 1, + ACTIONS(3774), 1, anon_sym_static, - ACTIONS(3761), 1, + ACTIONS(3776), 1, anon_sym_readonly, - ACTIONS(3765), 1, + ACTIONS(3780), 1, anon_sym_declare, - ACTIONS(3767), 1, + ACTIONS(3782), 1, anon_sym_abstract, - ACTIONS(3769), 1, + ACTIONS(3784), 1, anon_sym_accessor, - ACTIONS(3773), 1, + ACTIONS(3788), 1, anon_sym_SEMI, - ACTIONS(3880), 1, + ACTIONS(3871), 1, anon_sym_RBRACE, - STATE(2396), 1, + STATE(2382), 1, aux_sym_export_statement_repeat1, - STATE(2657), 1, + STATE(2617), 1, sym_method_definition, - STATE(2682), 1, + STATE(2685), 1, sym_accessibility_modifier, - STATE(2748), 1, + STATE(2749), 1, sym_decorator, - STATE(2770), 1, + STATE(2757), 1, sym_override_modifier, - STATE(4566), 1, + STATE(4526), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3755), 2, + ACTIONS(3770), 2, sym_number, sym_private_property_identifier, - ACTIONS(3763), 2, + ACTIONS(3778), 2, anon_sym_get, anon_sym_set, - STATE(1446), 2, + STATE(1448), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3022), 3, + STATE(3003), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5176), 3, + STATE(5020), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3651), 13, + ACTIONS(3646), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -159634,71 +157787,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23707] = 33, - ACTIONS(99), 1, + [23591] = 29, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 1, + anon_sym_SQUOTE, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(3762), 1, + anon_sym_STAR, + ACTIONS(3768), 1, + anon_sym_async, + ACTIONS(3772), 1, anon_sym_AT, - ACTIONS(2245), 1, + ACTIONS(3774), 1, + anon_sym_static, + ACTIONS(3776), 1, + anon_sym_readonly, + ACTIONS(3780), 1, + anon_sym_declare, + ACTIONS(3782), 1, + anon_sym_abstract, + ACTIONS(3784), 1, + anon_sym_accessor, + ACTIONS(3873), 1, + anon_sym_RBRACE, + ACTIONS(3875), 1, + anon_sym_SEMI, + STATE(2382), 1, + aux_sym_export_statement_repeat1, + STATE(2617), 1, + sym_method_definition, + STATE(2685), 1, + sym_accessibility_modifier, + STATE(2749), 1, + sym_decorator, + STATE(2757), 1, + sym_override_modifier, + STATE(4526), 1, + sym_method_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3770), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3778), 2, + anon_sym_get, + anon_sym_set, + STATE(1443), 2, + sym_class_static_block, + aux_sym_class_body_repeat1, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3003), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5020), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3646), 13, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [23702] = 33, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(2240), 1, anon_sym_LBRACE, - ACTIONS(2357), 1, + ACTIONS(2348), 1, anon_sym_namespace, - ACTIONS(2359), 1, + ACTIONS(2350), 1, anon_sym_import, - ACTIONS(2361), 1, + ACTIONS(2352), 1, anon_sym_var, - ACTIONS(2363), 1, + ACTIONS(2354), 1, anon_sym_let, - ACTIONS(2365), 1, + ACTIONS(2356), 1, anon_sym_const, - ACTIONS(2367), 1, + ACTIONS(2358), 1, anon_sym_class, - ACTIONS(2369), 1, + ACTIONS(2360), 1, anon_sym_async, - ACTIONS(2371), 1, + ACTIONS(2362), 1, anon_sym_function, - ACTIONS(2373), 1, + ACTIONS(2364), 1, anon_sym_declare, - ACTIONS(2377), 1, + ACTIONS(2368), 1, anon_sym_abstract, - ACTIONS(2381), 1, + ACTIONS(2372), 1, anon_sym_interface, - ACTIONS(2383), 1, + ACTIONS(2374), 1, anon_sym_enum, - ACTIONS(3775), 1, + ACTIONS(3742), 1, anon_sym_STAR, - ACTIONS(3777), 1, + ACTIONS(3744), 1, anon_sym_default, - ACTIONS(3779), 1, + ACTIONS(3746), 1, anon_sym_type, - ACTIONS(3781), 1, + ACTIONS(3748), 1, anon_sym_EQ, - ACTIONS(3783), 1, + ACTIONS(3750), 1, anon_sym_as, - ACTIONS(3785), 1, + ACTIONS(3752), 1, anon_sym_COMMA, - ACTIONS(3793), 1, + ACTIONS(3760), 1, anon_sym_module, - ACTIONS(3882), 1, + ACTIONS(3877), 1, anon_sym_RBRACE, - STATE(1267), 1, + STATE(1290), 1, sym_decorator, - STATE(4377), 1, + STATE(4367), 1, aux_sym_export_statement_repeat1, - STATE(4424), 1, + STATE(4398), 1, sym_declaration, - STATE(4425), 1, + STATE(4399), 1, sym_internal_module, - STATE(4558), 1, + STATE(4587), 1, sym_export_clause, - STATE(4673), 1, - aux_sym_object_repeat1, - STATE(4679), 1, + STATE(5131), 1, aux_sym_object_pattern_repeat1, - STATE(5235), 1, + STATE(5191), 1, + aux_sym_object_repeat1, + STATE(5325), 1, sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 7, + ACTIONS(3758), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -159706,7 +157941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4422), 13, + STATE(4393), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -159720,75 +157955,75 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [23826] = 29, - ACTIONS(1588), 1, + [23821] = 29, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(3657), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - ACTIONS(3747), 1, + ACTIONS(3762), 1, anon_sym_STAR, - ACTIONS(3753), 1, + ACTIONS(3768), 1, anon_sym_async, - ACTIONS(3757), 1, + ACTIONS(3772), 1, anon_sym_AT, - ACTIONS(3759), 1, + ACTIONS(3774), 1, anon_sym_static, - ACTIONS(3761), 1, + ACTIONS(3776), 1, anon_sym_readonly, - ACTIONS(3765), 1, + ACTIONS(3780), 1, anon_sym_declare, - ACTIONS(3767), 1, + ACTIONS(3782), 1, anon_sym_abstract, - ACTIONS(3769), 1, + ACTIONS(3784), 1, anon_sym_accessor, - ACTIONS(3773), 1, + ACTIONS(3788), 1, anon_sym_SEMI, - ACTIONS(3885), 1, + ACTIONS(3880), 1, anon_sym_RBRACE, - STATE(2396), 1, + STATE(2382), 1, aux_sym_export_statement_repeat1, - STATE(2657), 1, + STATE(2617), 1, sym_method_definition, - STATE(2682), 1, + STATE(2685), 1, sym_accessibility_modifier, - STATE(2748), 1, + STATE(2749), 1, sym_decorator, - STATE(2770), 1, + STATE(2757), 1, sym_override_modifier, - STATE(4566), 1, + STATE(4526), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3755), 2, + ACTIONS(3770), 2, sym_number, sym_private_property_identifier, - ACTIONS(3763), 2, + ACTIONS(3778), 2, anon_sym_get, anon_sym_set, - STATE(1446), 2, + STATE(1448), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3671), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3022), 3, + STATE(3003), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5176), 3, + STATE(5020), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3651), 13, + ACTIONS(3646), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -159802,69 +158037,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23937] = 25, - ACTIONS(235), 1, + [23932] = 25, + ACTIONS(231), 1, anon_sym_STAR, - ACTIONS(241), 1, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(253), 1, + ACTIONS(249), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2291), 1, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(3243), 1, + ACTIONS(3238), 1, anon_sym_LBRACE, - ACTIONS(3889), 1, + ACTIONS(3884), 1, anon_sym_RBRACE, - ACTIONS(3891), 1, + ACTIONS(3886), 1, anon_sym_LBRACK, - ACTIONS(3893), 1, + ACTIONS(3888), 1, anon_sym_async, - ACTIONS(3897), 1, + ACTIONS(3892), 1, anon_sym_static, - ACTIONS(3899), 1, + ACTIONS(3894), 1, anon_sym_readonly, - ACTIONS(3905), 1, + ACTIONS(3900), 1, anon_sym_override, - STATE(2724), 1, + STATE(2732), 1, sym_accessibility_modifier, - STATE(2755), 1, + STATE(2743), 1, sym_override_modifier, - STATE(4830), 1, - aux_sym_object_repeat1, - STATE(5037), 1, + STATE(4622), 1, aux_sym_object_pattern_repeat1, + STATE(4848), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3895), 2, + ACTIONS(3890), 2, sym_number, sym_private_property_identifier, - ACTIONS(3901), 2, + ACTIONS(3896), 2, anon_sym_get, anon_sym_set, - ACTIONS(3903), 3, + ACTIONS(3898), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3559), 3, + STATE(3705), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4829), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(4986), 3, + STATE(4665), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5780), 3, + STATE(4841), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5891), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(3887), 14, + ACTIONS(3882), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -159879,69 +158114,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24039] = 25, - ACTIONS(235), 1, + [24034] = 25, + ACTIONS(231), 1, anon_sym_STAR, - ACTIONS(241), 1, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(253), 1, + ACTIONS(249), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2291), 1, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(3243), 1, + ACTIONS(3238), 1, anon_sym_LBRACE, - ACTIONS(3891), 1, + ACTIONS(3886), 1, anon_sym_LBRACK, - ACTIONS(3909), 1, + ACTIONS(3904), 1, anon_sym_RBRACE, - ACTIONS(3911), 1, + ACTIONS(3906), 1, anon_sym_async, - ACTIONS(3913), 1, + ACTIONS(3908), 1, anon_sym_static, - ACTIONS(3915), 1, + ACTIONS(3910), 1, anon_sym_readonly, - ACTIONS(3921), 1, + ACTIONS(3916), 1, anon_sym_override, - STATE(2724), 1, + STATE(2732), 1, sym_accessibility_modifier, - STATE(2755), 1, + STATE(2743), 1, sym_override_modifier, - STATE(4830), 1, - aux_sym_object_repeat1, - STATE(5037), 1, + STATE(4622), 1, aux_sym_object_pattern_repeat1, + STATE(4848), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3895), 2, + ACTIONS(3890), 2, sym_number, sym_private_property_identifier, - ACTIONS(3917), 2, + ACTIONS(3912), 2, anon_sym_get, anon_sym_set, - ACTIONS(3919), 3, + ACTIONS(3914), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3559), 3, + STATE(3705), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4829), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(4986), 3, + STATE(4665), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5780), 3, + STATE(4841), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5891), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(3907), 14, + ACTIONS(3902), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -159956,146 +158191,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24141] = 25, - ACTIONS(235), 1, + [24136] = 25, + ACTIONS(231), 1, anon_sym_STAR, - ACTIONS(241), 1, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(253), 1, + ACTIONS(249), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2291), 1, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(3243), 1, + ACTIONS(3238), 1, anon_sym_LBRACE, - ACTIONS(3891), 1, + ACTIONS(3886), 1, anon_sym_LBRACK, - ACTIONS(3925), 1, + ACTIONS(3920), 1, anon_sym_RBRACE, - ACTIONS(3927), 1, + ACTIONS(3922), 1, anon_sym_async, - ACTIONS(3929), 1, + ACTIONS(3924), 1, anon_sym_static, - ACTIONS(3931), 1, + ACTIONS(3926), 1, anon_sym_readonly, - ACTIONS(3937), 1, + ACTIONS(3932), 1, anon_sym_override, - STATE(2724), 1, + STATE(2732), 1, sym_accessibility_modifier, - STATE(2755), 1, + STATE(2743), 1, sym_override_modifier, - STATE(4830), 1, - aux_sym_object_repeat1, - STATE(5037), 1, + STATE(4622), 1, aux_sym_object_pattern_repeat1, + STATE(4848), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3895), 2, + ACTIONS(3890), 2, sym_number, sym_private_property_identifier, - ACTIONS(3933), 2, + ACTIONS(3928), 2, anon_sym_get, anon_sym_set, - ACTIONS(3935), 3, + ACTIONS(3930), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3559), 3, + STATE(3705), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4829), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(4986), 3, + STATE(4665), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5780), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(3923), 14, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [24243] = 25, - ACTIONS(235), 1, - anon_sym_STAR, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(253), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(3243), 1, - anon_sym_LBRACE, - ACTIONS(3891), 1, - anon_sym_LBRACK, - ACTIONS(3941), 1, - anon_sym_RBRACE, - ACTIONS(3943), 1, - anon_sym_async, - ACTIONS(3945), 1, - anon_sym_static, - ACTIONS(3947), 1, - anon_sym_readonly, - ACTIONS(3953), 1, - anon_sym_override, - STATE(2724), 1, - sym_accessibility_modifier, - STATE(2755), 1, - sym_override_modifier, - STATE(4830), 1, - aux_sym_object_repeat1, - STATE(5037), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3895), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3949), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3951), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3559), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4829), 3, + STATE(4841), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(4986), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5780), 3, + STATE(5891), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(3939), 14, + ACTIONS(3918), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -160110,31 +158268,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24345] = 13, - ACTIONS(835), 1, + [24238] = 13, + ACTIONS(830), 1, anon_sym_BQUOTE, - ACTIONS(3959), 1, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(3965), 1, + ACTIONS(3944), 1, anon_sym_QMARK_DOT, - ACTIONS(3967), 1, + ACTIONS(3946), 1, anon_sym_LT, - STATE(1568), 1, + STATE(1558), 1, sym_type_arguments, - STATE(1649), 1, - sym_arguments, - STATE(1676), 1, + STATE(1620), 1, sym_template_string, - STATE(5091), 1, + STATE(1650), 1, + sym_arguments, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3955), 12, + ACTIONS(3934), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160147,7 +158305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3957), 27, + ACTIONS(3936), 27, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160175,69 +158333,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_satisfies, anon_sym_implements, - [24423] = 25, - ACTIONS(235), 1, + [24316] = 25, + ACTIONS(231), 1, anon_sym_STAR, - ACTIONS(241), 1, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(253), 1, + ACTIONS(249), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2291), 1, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(3243), 1, + ACTIONS(3238), 1, anon_sym_LBRACE, - ACTIONS(3891), 1, + ACTIONS(3886), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(3950), 1, anon_sym_RBRACE, - ACTIONS(3973), 1, + ACTIONS(3952), 1, anon_sym_async, - ACTIONS(3975), 1, + ACTIONS(3954), 1, anon_sym_static, - ACTIONS(3977), 1, + ACTIONS(3956), 1, anon_sym_readonly, - ACTIONS(3983), 1, + ACTIONS(3962), 1, anon_sym_override, - STATE(2724), 1, + STATE(2732), 1, sym_accessibility_modifier, - STATE(2755), 1, + STATE(2743), 1, sym_override_modifier, - STATE(4830), 1, - aux_sym_object_repeat1, - STATE(5037), 1, + STATE(4622), 1, aux_sym_object_pattern_repeat1, + STATE(4848), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3895), 2, + ACTIONS(3890), 2, sym_number, sym_private_property_identifier, - ACTIONS(3979), 2, + ACTIONS(3958), 2, anon_sym_get, anon_sym_set, - ACTIONS(3981), 3, + ACTIONS(3960), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3559), 3, + STATE(3705), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4829), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(4986), 3, + STATE(4665), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5780), 3, + STATE(4841), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5891), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(3969), 14, + ACTIONS(3948), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -160252,69 +158410,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24525] = 25, - ACTIONS(235), 1, + [24418] = 25, + ACTIONS(231), 1, anon_sym_STAR, - ACTIONS(241), 1, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(253), 1, + ACTIONS(249), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2291), 1, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(3243), 1, + ACTIONS(3238), 1, anon_sym_LBRACE, - ACTIONS(3891), 1, + ACTIONS(3886), 1, anon_sym_LBRACK, - ACTIONS(3987), 1, + ACTIONS(3966), 1, anon_sym_RBRACE, - ACTIONS(3989), 1, + ACTIONS(3968), 1, anon_sym_async, - ACTIONS(3991), 1, + ACTIONS(3970), 1, anon_sym_static, - ACTIONS(3993), 1, + ACTIONS(3972), 1, anon_sym_readonly, - ACTIONS(3999), 1, + ACTIONS(3978), 1, anon_sym_override, - STATE(2724), 1, + STATE(2732), 1, sym_accessibility_modifier, - STATE(2755), 1, + STATE(2743), 1, sym_override_modifier, - STATE(5031), 1, + STATE(4618), 1, aux_sym_object_repeat1, - STATE(5037), 1, + STATE(4622), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3895), 2, + ACTIONS(3890), 2, sym_number, sym_private_property_identifier, - ACTIONS(3995), 2, + ACTIONS(3974), 2, anon_sym_get, anon_sym_set, - ACTIONS(3997), 3, + ACTIONS(3976), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3559), 3, + STATE(3705), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4986), 3, + STATE(4665), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5019), 3, + STATE(4687), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5780), 3, + STATE(5891), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(3985), 14, + ACTIONS(3964), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -160329,91 +158487,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24627] = 29, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(2245), 1, + [24520] = 25, + ACTIONS(231), 1, + anon_sym_STAR, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(249), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(3238), 1, anon_sym_LBRACE, - ACTIONS(2357), 1, - anon_sym_namespace, - ACTIONS(2359), 1, - anon_sym_import, - ACTIONS(2361), 1, - anon_sym_var, - ACTIONS(2363), 1, - anon_sym_let, - ACTIONS(2365), 1, - anon_sym_const, - ACTIONS(2367), 1, - anon_sym_class, - ACTIONS(2369), 1, + ACTIONS(3886), 1, + anon_sym_LBRACK, + ACTIONS(3982), 1, + anon_sym_RBRACE, + ACTIONS(3984), 1, anon_sym_async, - ACTIONS(2371), 1, - anon_sym_function, - ACTIONS(2373), 1, - anon_sym_declare, - ACTIONS(2377), 1, - anon_sym_abstract, - ACTIONS(2381), 1, - anon_sym_interface, - ACTIONS(2383), 1, - anon_sym_enum, - ACTIONS(3775), 1, - anon_sym_STAR, - ACTIONS(3777), 1, - anon_sym_default, - ACTIONS(3779), 1, - anon_sym_type, - ACTIONS(3783), 1, - anon_sym_as, - ACTIONS(3793), 1, - anon_sym_module, - ACTIONS(4001), 1, - anon_sym_EQ, - STATE(1267), 1, - sym_decorator, - STATE(4377), 1, - aux_sym_export_statement_repeat1, - STATE(4424), 1, - sym_declaration, - STATE(4425), 1, - sym_internal_module, - STATE(4558), 1, - sym_export_clause, - STATE(5235), 1, - sym_namespace_export, + ACTIONS(3986), 1, + anon_sym_static, + ACTIONS(3988), 1, + anon_sym_readonly, + ACTIONS(3994), 1, + anon_sym_override, + STATE(2732), 1, + sym_accessibility_modifier, + STATE(2743), 1, + sym_override_modifier, + STATE(4622), 1, + aux_sym_object_pattern_repeat1, + STATE(4848), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3890), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3990), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3992), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3705), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4665), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(4841), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5891), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(3980), 14, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [24622] = 8, + ACTIONS(3938), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(3946), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(4422), 13, - 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_import_alias, - sym_interface_declaration, - sym_enum_declaration, - sym_type_alias_declaration, - [24736] = 3, + ACTIONS(4000), 1, + anon_sym_DOT, + STATE(1537), 1, + sym_arguments, + STATE(1538), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1929), 14, + ACTIONS(3996), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160424,25 +158589,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(1927), 34, - sym__automatic_semicolon, + ACTIONS(3998), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, + anon_sym_RBRACK, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -160462,67 +158622,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [24793] = 30, - ACTIONS(99), 1, + anon_sym_implements, + [24689] = 30, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(2245), 1, + ACTIONS(2240), 1, anon_sym_LBRACE, - ACTIONS(2357), 1, + ACTIONS(2348), 1, anon_sym_namespace, - ACTIONS(2359), 1, + ACTIONS(2350), 1, anon_sym_import, - ACTIONS(2361), 1, + ACTIONS(2352), 1, anon_sym_var, - ACTIONS(2363), 1, + ACTIONS(2354), 1, anon_sym_let, - ACTIONS(2365), 1, + ACTIONS(2356), 1, anon_sym_const, - ACTIONS(2367), 1, + ACTIONS(2358), 1, anon_sym_class, - ACTIONS(2369), 1, + ACTIONS(2360), 1, anon_sym_async, - ACTIONS(2371), 1, + ACTIONS(2362), 1, anon_sym_function, - ACTIONS(2373), 1, + ACTIONS(2364), 1, anon_sym_declare, - ACTIONS(2377), 1, + ACTIONS(2368), 1, anon_sym_abstract, - ACTIONS(2381), 1, + ACTIONS(2372), 1, anon_sym_interface, - ACTIONS(2383), 1, + ACTIONS(2374), 1, anon_sym_enum, - ACTIONS(3775), 1, + ACTIONS(3742), 1, anon_sym_STAR, - ACTIONS(3777), 1, + ACTIONS(3744), 1, anon_sym_default, - ACTIONS(3779), 1, + ACTIONS(3746), 1, anon_sym_type, - ACTIONS(3781), 1, + ACTIONS(3748), 1, anon_sym_EQ, - ACTIONS(3783), 1, + ACTIONS(3750), 1, anon_sym_as, - ACTIONS(3793), 1, + ACTIONS(3760), 1, anon_sym_module, - STATE(1267), 1, + STATE(1290), 1, sym_decorator, - STATE(4377), 1, + STATE(4367), 1, aux_sym_export_statement_repeat1, - STATE(4424), 1, + STATE(4398), 1, sym_declaration, - STATE(4425), 1, + STATE(4399), 1, sym_internal_module, - STATE(4558), 1, + STATE(4587), 1, sym_export_clause, - STATE(5235), 1, + STATE(5325), 1, sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4003), 2, + ACTIONS(4002), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3791), 7, + ACTIONS(3758), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -160530,7 +158690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4422), 13, + STATE(4393), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -160544,21 +158704,19 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [24904] = 8, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3967), 1, + [24800] = 7, + ACTIONS(3946), 1, anon_sym_LT, - ACTIONS(4007), 1, + ACTIONS(4008), 1, anon_sym_DOT, - STATE(1520), 1, - sym_arguments, - STATE(1521), 1, + ACTIONS(4010), 1, + anon_sym_is, + STATE(1525), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3458), 12, + ACTIONS(4006), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160571,12 +158729,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3454), 31, + ACTIONS(3501), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, @@ -160603,19 +158762,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [24971] = 7, - ACTIONS(3967), 1, + [24865] = 8, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3946), 1, anon_sym_LT, - ACTIONS(4011), 1, + ACTIONS(4012), 1, anon_sym_DOT, - ACTIONS(4013), 1, - anon_sym_is, - STATE(1507), 1, + STATE(1535), 1, + sym_arguments, + STATE(1536), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4009), 12, + ACTIONS(3445), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160628,13 +158789,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3498), 32, + ACTIONS(3441), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, @@ -160661,11 +158821,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25036] = 3, + [24932] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1733), 14, + ACTIONS(1807), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160680,7 +158840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK, - ACTIONS(1731), 34, + ACTIONS(1805), 34, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -160715,80 +158875,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_PIPE_RBRACE, - [25093] = 8, - ACTIONS(3959), 1, + [24989] = 8, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3967), 1, + ACTIONS(3946), 1, anon_sym_LT, - ACTIONS(4019), 1, + ACTIONS(4018), 1, anon_sym_DOT, - STATE(1522), 1, - sym_arguments, - STATE(1523), 1, + STATE(1539), 1, sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4015), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4017), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_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_satisfies, - anon_sym_extends, - anon_sym_implements, - [25160] = 8, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3967), 1, - anon_sym_LT, - ACTIONS(4025), 1, - anon_sym_DOT, - STATE(1525), 1, + STATE(1609), 1, sym_arguments, - STATE(1526), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4021), 12, + ACTIONS(4014), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160801,7 +158902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4023), 31, + ACTIONS(4016), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160833,66 +158934,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25227] = 3, + [25056] = 29, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(2240), 1, + anon_sym_LBRACE, + ACTIONS(2348), 1, + anon_sym_namespace, + ACTIONS(2350), 1, + anon_sym_import, + ACTIONS(2352), 1, + anon_sym_var, + ACTIONS(2354), 1, + anon_sym_let, + ACTIONS(2356), 1, + anon_sym_const, + ACTIONS(2358), 1, + anon_sym_class, + ACTIONS(2360), 1, + anon_sym_async, + ACTIONS(2362), 1, + anon_sym_function, + ACTIONS(2364), 1, + anon_sym_declare, + ACTIONS(2368), 1, + anon_sym_abstract, + ACTIONS(2372), 1, + anon_sym_interface, + ACTIONS(2374), 1, + anon_sym_enum, + ACTIONS(3742), 1, + anon_sym_STAR, + ACTIONS(3744), 1, + anon_sym_default, + ACTIONS(3746), 1, + anon_sym_type, + ACTIONS(3750), 1, + anon_sym_as, + ACTIONS(3760), 1, + anon_sym_module, + ACTIONS(4020), 1, + anon_sym_EQ, + STATE(1290), 1, + sym_decorator, + STATE(4367), 1, + aux_sym_export_statement_repeat1, + STATE(4398), 1, + sym_declaration, + STATE(4399), 1, + sym_internal_module, + STATE(4587), 1, + sym_export_clause, + STATE(5325), 1, + sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1929), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(1927), 33, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(3758), 9, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_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_satisfies, - anon_sym_extends, - anon_sym_implements, - [25283] = 4, - ACTIONS(4031), 1, - anon_sym_is, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(4393), 13, + 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_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [25165] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4027), 13, + ACTIONS(1845), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160906,19 +159032,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4029), 33, + anon_sym_QMARK, + ACTIONS(1843), 34, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_of, + anon_sym_while, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -160939,16 +159067,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - anon_sym_implements, - [25341] = 5, - ACTIONS(1708), 1, - anon_sym_EQ, - ACTIONS(4033), 1, - sym__automatic_semicolon, + anon_sym_PIPE_RBRACE, + [25222] = 9, + ACTIONS(830), 1, + anon_sym_BQUOTE, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(3944), 1, + anon_sym_QMARK_DOT, + STATE(1620), 1, + sym_template_string, + STATE(5072), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1704), 13, + ACTIONS(1877), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -160962,7 +159098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1702), 32, + ACTIONS(1879), 28, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160973,10 +159109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -160992,14 +159125,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [25401] = 3, + [25290] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3175), 14, + ACTIONS(1845), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161014,7 +159146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK, - ACTIONS(3177), 33, + ACTIONS(1843), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161048,11 +159180,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25457] = 3, + [25346] = 4, + ACTIONS(4010), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1733), 14, + ACTIONS(4022), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161066,8 +159200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(1731), 33, + ACTIONS(4024), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161101,11 +159234,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25513] = 3, + [25404] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3167), 14, + ACTIONS(3162), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161120,7 +159253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK, - ACTIONS(3169), 33, + ACTIONS(3164), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161154,11 +159287,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25569] = 3, + [25460] = 4, + ACTIONS(4010), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1670), 13, + ACTIONS(4026), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161172,7 +159307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1668), 34, + ACTIONS(4028), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161206,18 +159341,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - anon_sym_is, - [25625] = 6, - ACTIONS(3967), 1, - anon_sym_LT, - ACTIONS(4011), 1, - anon_sym_DOT, - STATE(1507), 1, - sym_type_arguments, + [25518] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4009), 12, + ACTIONS(1807), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161228,9 +159356,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3498), 32, + anon_sym_QMARK, + ACTIONS(1805), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161243,6 +159373,7 @@ static const 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, @@ -161263,13 +159394,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25687] = 4, - ACTIONS(4013), 1, + [25574] = 4, + ACTIONS(4034), 1, anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4035), 13, + ACTIONS(4030), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161283,7 +159414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4037), 33, + ACTIONS(4032), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161317,15 +159448,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25745] = 5, - ACTIONS(3967), 1, - anon_sym_LT, - STATE(1517), 1, - sym_type_arguments, + [25632] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4027), 12, + ACTIONS(1685), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161336,9 +159463,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4029), 33, + ACTIONS(1683), 34, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161372,17 +159500,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25805] = 6, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(4043), 1, - anon_sym_DOT, - STATE(1518), 1, - sym_arguments, + anon_sym_is, + [25688] = 22, + ACTIONS(231), 1, + anon_sym_STAR, + ACTIONS(249), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(3238), 1, + anon_sym_LBRACE, + ACTIONS(3886), 1, + anon_sym_LBRACK, + ACTIONS(4038), 1, + anon_sym_async, + ACTIONS(4040), 1, + anon_sym_static, + ACTIONS(4042), 1, + anon_sym_readonly, + ACTIONS(4048), 1, + anon_sym_override, + STATE(2732), 1, + sym_accessibility_modifier, + STATE(2743), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3388), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3890), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4044), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4046), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3705), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5520), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5541), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5891), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(4036), 14, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [25782] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4039), 13, + ACTIONS(3182), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161396,18 +159591,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4041), 31, + anon_sym_QMARK, + ACTIONS(3184), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -161428,13 +159626,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25867] = 4, - ACTIONS(4013), 1, - anon_sym_is, + [25838] = 5, + ACTIONS(1665), 1, + anon_sym_EQ, + ACTIONS(4050), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4045), 13, + ACTIONS(1661), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161448,7 +159648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4047), 33, + ACTIONS(1659), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161480,85 +159680,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [25925] = 22, - ACTIONS(235), 1, - anon_sym_STAR, - ACTIONS(253), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(3243), 1, - anon_sym_LBRACE, - ACTIONS(3891), 1, - anon_sym_LBRACK, - ACTIONS(4051), 1, - anon_sym_async, - ACTIONS(4053), 1, - anon_sym_static, - ACTIONS(4055), 1, - anon_sym_readonly, - ACTIONS(4061), 1, - anon_sym_override, - STATE(2724), 1, - sym_accessibility_modifier, - STATE(2755), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3393), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3895), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4057), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4059), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3559), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5287), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5294), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(5780), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(4049), 14, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [26019] = 3, + [25898] = 6, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(4056), 1, + anon_sym_DOT, + STATE(1532), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4063), 13, + ACTIONS(4052), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161572,20 +159705,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4065), 34, + ACTIONS(4054), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -161606,12 +159737,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - anon_sym_is, - [26075] = 3, + [25960] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3171), 14, + ACTIONS(3186), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161626,7 +159756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK, - ACTIONS(3173), 33, + ACTIONS(3188), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161660,23 +159790,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26131] = 9, - ACTIONS(835), 1, - anon_sym_BQUOTE, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, + [26016] = 6, + ACTIONS(3946), 1, + anon_sym_LT, + ACTIONS(4008), 1, anon_sym_DOT, - ACTIONS(3965), 1, - anon_sym_QMARK_DOT, - STATE(1676), 1, - sym_template_string, - STATE(5091), 1, - sym_optional_chain, + STATE(1525), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1905), 13, + ACTIONS(4006), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161687,10 +159811,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1907), 28, + ACTIONS(3501), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161701,7 +159824,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -161717,13 +159842,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [26199] = 3, + [26078] = 5, + ACTIONS(3946), 1, + anon_sym_LT, + STATE(1531), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4067), 13, + ACTIONS(4030), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161734,10 +159865,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4069), 33, + ACTIONS(4032), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161771,15 +159901,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26254] = 5, - ACTIONS(4071), 1, - anon_sym_LBRACE, - STATE(1630), 1, - sym_statement_block, + [26138] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1674), 13, + ACTIONS(4058), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161793,9 +159919,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1672), 31, + ACTIONS(4060), 34, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -161824,12 +159951,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [26313] = 3, + anon_sym_is, + [26194] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4073), 13, + ACTIONS(4062), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -161843,7 +159972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4075), 33, + ACTIONS(4064), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161877,36 +160006,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26368] = 3, + [26249] = 7, + ACTIONS(1665), 1, + anon_sym_EQ, + ACTIONS(2326), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4027), 13, + ACTIONS(4066), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4069), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1663), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4029), 33, + ACTIONS(1667), 29, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -161927,80 +160061,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [26423] = 4, - ACTIONS(4081), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4077), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, + [26312] = 6, + ACTIONS(4076), 1, anon_sym_AMP, + ACTIONS(4078), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4079), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_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_satisfies, + ACTIONS(4080), 1, anon_sym_extends, - anon_sym_implements, - [26480] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4083), 13, + ACTIONS(4072), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4085), 33, + ACTIONS(4074), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162032,15 +160116,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [26535] = 4, - ACTIONS(4087), 1, - anon_sym_LBRACK, + [26373] = 5, + ACTIONS(4086), 1, + anon_sym_QMARK, + ACTIONS(4088), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4083), 13, + ACTIONS(4082), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162054,7 +160139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4085), 32, + ACTIONS(4084), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162063,8 +160148,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -162085,13 +160170,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [26592] = 3, + [26432] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4089), 13, + ACTIONS(4090), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162105,7 +160189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4091), 33, + ACTIONS(4092), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162139,11 +160223,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26647] = 3, + [26487] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2335), 13, + ACTIONS(4026), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162157,7 +160241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2333), 33, + ACTIONS(4028), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162191,27 +160275,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26702] = 4, - ACTIONS(4007), 1, - anon_sym_DOT, + [26542] = 6, + ACTIONS(4076), 1, + anon_sym_AMP, + ACTIONS(4078), 1, + anon_sym_PIPE, + ACTIONS(4080), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3458), 13, + ACTIONS(4094), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3454), 32, + ACTIONS(4096), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162224,6 +160310,7 @@ static const 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, @@ -162242,29 +160329,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [26759] = 4, - ACTIONS(4033), 1, - sym__automatic_semicolon, + [26603] = 6, + ACTIONS(4076), 1, + anon_sym_AMP, + ACTIONS(4078), 1, + anon_sym_PIPE, + ACTIONS(4080), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1704), 13, + ACTIONS(4098), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1702), 32, + ACTIONS(4100), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162297,40 +160385,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [26816] = 4, - ACTIONS(4097), 1, + [26664] = 7, + ACTIONS(3447), 1, anon_sym_DOT, + ACTIONS(3451), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4093), 13, + ACTIONS(3441), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3445), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3435), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4095), 32, + ACTIONS(3439), 28, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -162348,38 +160440,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [26873] = 3, + [26727] = 7, + ACTIONS(4104), 1, + anon_sym_EQ, + ACTIONS(4114), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4099), 13, + ACTIONS(4108), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4111), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4102), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4101), 33, + ACTIONS(4106), 29, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -162400,13 +160496,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [26928] = 3, + [26790] = 6, + ACTIONS(4116), 1, + anon_sym_LBRACE, + ACTIONS(4118), 1, + anon_sym_DOT, + STATE(1736), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4103), 13, + ACTIONS(1655), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162420,20 +160521,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4105), 33, + ACTIONS(1653), 30, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -162452,13 +160551,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [26983] = 3, + anon_sym_PIPE_RBRACE, + [26851] = 6, + ACTIONS(4116), 1, + anon_sym_LBRACE, + ACTIONS(4120), 1, + anon_sym_DOT, + STATE(1736), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4107), 13, + ACTIONS(1655), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162472,20 +160576,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4109), 33, + ACTIONS(1653), 30, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -162504,20 +160606,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [27038] = 4, - ACTIONS(4115), 1, - anon_sym_AMP, + anon_sym_PIPE_RBRACE, + [26912] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4111), 12, + ACTIONS(4122), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -162525,7 +160625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4113), 33, + ACTIONS(4124), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162559,11 +160659,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27095] = 3, + [26967] = 5, + ACTIONS(4116), 1, + anon_sym_LBRACE, + STATE(1736), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4117), 13, + ACTIONS(1655), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162577,19 +160681,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4119), 33, + ACTIONS(1653), 31, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -162609,13 +160712,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [27150] = 3, + anon_sym_PIPE_RBRACE, + [27026] = 6, + ACTIONS(4126), 1, + anon_sym_LBRACE, + ACTIONS(4128), 1, + anon_sym_DOT, + STATE(1639), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4121), 13, + ACTIONS(1655), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162629,10 +160737,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4123), 33, + ACTIONS(1653), 30, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -162642,7 +160749,6 @@ static const 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, @@ -162661,13 +160767,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [27205] = 3, + [27087] = 6, + ACTIONS(4126), 1, + anon_sym_LBRACE, + ACTIONS(4130), 1, + anon_sym_DOT, + STATE(1639), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4125), 13, + ACTIONS(1655), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162681,10 +160792,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4127), 33, + ACTIONS(1653), 30, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -162694,7 +160804,6 @@ static const 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, @@ -162713,19 +160822,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [27260] = 6, - ACTIONS(4129), 1, + [27148] = 5, + ACTIONS(4126), 1, anon_sym_LBRACE, - ACTIONS(4131), 1, - anon_sym_DOT, - STATE(1742), 1, + STATE(1639), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1674), 13, + ACTIONS(1655), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162739,18 +160845,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1672), 30, - sym__automatic_semicolon, + ACTIONS(1653), 31, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -162769,37 +160876,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [27321] = 3, + anon_sym_implements, + [27207] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4133), 13, + ACTIONS(4132), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4134), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3435), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4135), 33, + ACTIONS(3439), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -162820,31 +160930,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [27376] = 6, - ACTIONS(4115), 1, - anon_sym_AMP, - ACTIONS(4141), 1, - anon_sym_PIPE, - ACTIONS(4143), 1, - anon_sym_extends, + [27266] = 4, + ACTIONS(4050), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4137), 11, + ACTIONS(1661), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 32, + ACTIONS(1659), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162877,30 +160984,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [27437] = 6, - ACTIONS(4085), 1, + [27323] = 5, + ACTIONS(4136), 1, + anon_sym_QMARK, + ACTIONS(4138), 1, anon_sym_extends, - ACTIONS(4087), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4083), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4145), 11, + ACTIONS(4082), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4147), 31, + ACTIONS(4084), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162909,8 +161015,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -162932,17 +161038,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [27498] = 6, - ACTIONS(4129), 1, - anon_sym_LBRACE, - ACTIONS(4149), 1, - anon_sym_DOT, - STATE(1742), 1, - sym_statement_block, + [27382] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1674), 13, + ACTIONS(4140), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162956,18 +161056,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1672), 30, - sym__automatic_semicolon, + ACTIONS(4142), 33, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -162986,14 +161088,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [27559] = 4, - ACTIONS(4155), 1, anon_sym_extends, + anon_sym_implements, + [27437] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4151), 13, + ACTIONS(4030), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163007,7 +161108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4153), 32, + ACTIONS(4032), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163039,16 +161140,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [27616] = 5, - ACTIONS(4129), 1, - anon_sym_LBRACE, - STATE(1742), 1, - sym_statement_block, + [27492] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1674), 13, + ACTIONS(4144), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163062,18 +161160,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1672), 31, - sym__automatic_semicolon, + ACTIONS(4146), 33, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -163093,14 +161192,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [27675] = 4, - ACTIONS(4087), 1, - anon_sym_LBRACK, + anon_sym_extends, + anon_sym_implements, + [27547] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4157), 13, + ACTIONS(4022), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163114,7 +161212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4159), 32, + ACTIONS(4024), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163125,6 +161223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -163147,17 +161246,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27732] = 6, - ACTIONS(4071), 1, - anon_sym_LBRACE, - ACTIONS(4161), 1, - anon_sym_DOT, - STATE(1630), 1, - sym_statement_block, + [27602] = 5, + ACTIONS(830), 1, + anon_sym_BQUOTE, + STATE(1620), 1, + sym_template_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1674), 13, + ACTIONS(1877), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163171,9 +161268,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1672), 30, + ACTIONS(1879), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -163183,6 +161281,7 @@ static const 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, @@ -163199,14 +161298,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [27793] = 3, + [27661] = 4, + ACTIONS(4152), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4163), 13, + ACTIONS(4148), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163220,7 +161320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4165), 33, + ACTIONS(4150), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163233,7 +161333,6 @@ static const 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, @@ -163254,13 +161353,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27848] = 4, - ACTIONS(4029), 1, - anon_sym_extends, + [27718] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 13, + ACTIONS(4154), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163274,7 +161371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4169), 32, + ACTIONS(4156), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163306,12 +161403,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [27905] = 3, + [27773] = 4, + ACTIONS(4158), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4171), 13, + ACTIONS(4154), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163325,7 +161425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4173), 33, + ACTIONS(4156), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163336,7 +161436,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -163359,11 +161458,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27960] = 3, + [27830] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4175), 13, + ACTIONS(4160), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163377,7 +161476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4177), 33, + ACTIONS(4162), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163411,11 +161510,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28015] = 3, + [27885] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2339), 13, + ACTIONS(2328), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163429,7 +161528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2337), 33, + ACTIONS(2326), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163463,11 +161562,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28070] = 3, + [27940] = 4, + ACTIONS(4012), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4179), 13, + ACTIONS(3445), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163481,7 +161582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4181), 33, + ACTIONS(3441), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163494,7 +161595,6 @@ static const 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, @@ -163515,11 +161615,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28125] = 3, + [27997] = 4, + ACTIONS(4168), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4183), 13, + ACTIONS(4164), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163533,7 +161635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4185), 33, + ACTIONS(4166), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163546,7 +161648,6 @@ static const 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, @@ -163567,11 +161668,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28180] = 3, + [28054] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4187), 13, + ACTIONS(4170), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163585,7 +161686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4189), 33, + ACTIONS(4172), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163619,11 +161720,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28235] = 3, + [28109] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4191), 13, + ACTIONS(4174), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163637,7 +161738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4193), 33, + ACTIONS(4114), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163671,11 +161772,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28290] = 3, + [28164] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4045), 13, + ACTIONS(4176), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163689,7 +161790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4047), 33, + ACTIONS(4178), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163723,17 +161824,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28345] = 3, + [28219] = 4, + ACTIONS(4076), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4195), 13, + ACTIONS(4180), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -163741,7 +161843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4197), 33, + ACTIONS(4182), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163775,11 +161877,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28400] = 3, + [28276] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4199), 13, + ACTIONS(4134), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163793,7 +161895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4201), 33, + ACTIONS(4132), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163827,11 +161929,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28455] = 3, + [28331] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4203), 13, + ACTIONS(4184), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163845,7 +161947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4205), 33, + ACTIONS(4186), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163879,11 +161981,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28510] = 3, + [28386] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4207), 13, + ACTIONS(4188), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163897,7 +161999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4209), 33, + ACTIONS(4190), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163931,81 +162033,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28565] = 7, - ACTIONS(1708), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4211), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4214), 3, - anon_sym_GT, + [28441] = 6, + ACTIONS(4076), 1, anon_sym_AMP, + ACTIONS(4078), 1, anon_sym_PIPE, - ACTIONS(1706), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1710), 29, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - 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, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_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_satisfies, - anon_sym_implements, - [28628] = 3, + ACTIONS(4080), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4217), 13, + ACTIONS(4192), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4219), 33, + ACTIONS(4194), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164037,72 +162087,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [28683] = 4, - ACTIONS(4225), 1, - anon_sym_DOT, + [28502] = 6, + ACTIONS(4156), 1, + anon_sym_extends, + ACTIONS(4158), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4221), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(4154), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4223), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_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_satisfies, - anon_sym_extends, - anon_sym_implements, - [28740] = 6, - ACTIONS(4115), 1, - anon_sym_AMP, - ACTIONS(4141), 1, - anon_sym_PIPE, - ACTIONS(4143), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4167), 11, + ACTIONS(4196), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164114,7 +162111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4169), 32, + ACTIONS(4198), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164125,7 +162122,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -164147,63 +162143,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [28801] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3635), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3436), 33, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - 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_satisfies, + [28563] = 4, + ACTIONS(4204), 1, anon_sym_extends, - anon_sym_implements, - [28856] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3628), 13, + ACTIONS(4200), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164217,7 +162163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3438), 33, + ACTIONS(4202), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164249,66 +162195,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [28911] = 4, - ACTIONS(4228), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4221), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4223), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + [28620] = 4, + ACTIONS(4158), 1, 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, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_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_satisfies, - anon_sym_extends, - anon_sym_implements, - [28968] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4231), 13, + ACTIONS(4206), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164322,7 +162216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4233), 33, + ACTIONS(4208), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164333,7 +162227,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -164356,13 +162249,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29023] = 4, - ACTIONS(3484), 1, - anon_sym_EQ, + [28677] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3448), 13, + ACTIONS(4136), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164376,7 +162267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 32, + ACTIONS(4138), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164408,67 +162299,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [29080] = 6, - ACTIONS(4115), 1, - anon_sym_AMP, - ACTIONS(4141), 1, - anon_sym_PIPE, - ACTIONS(4143), 1, anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4231), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4233), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - 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_satisfies, anon_sym_implements, - [29141] = 3, + [28732] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4235), 13, + ACTIONS(4210), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164482,7 +162319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4237), 33, + ACTIONS(4212), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164516,11 +162353,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29196] = 3, + [28787] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 13, + ACTIONS(4214), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164534,7 +162371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4241), 33, + ACTIONS(4216), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164568,11 +162405,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29251] = 3, + [28842] = 5, + ACTIONS(3938), 1, + anon_sym_LPAREN, + STATE(1660), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4243), 13, + ACTIONS(4218), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164586,13 +162427,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4245), 33, + ACTIONS(4220), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, @@ -164618,13 +162458,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [29306] = 3, + [28901] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4247), 13, + ACTIONS(2336), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164638,7 +162477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4249), 33, + ACTIONS(2334), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164672,11 +162511,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29361] = 3, + [28956] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4251), 13, + ACTIONS(4086), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164690,7 +162529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4253), 33, + ACTIONS(4088), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164724,18 +162563,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29416] = 4, - ACTIONS(4115), 1, - anon_sym_AMP, + [29011] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4255), 12, + ACTIONS(4222), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -164743,7 +162581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4257), 33, + ACTIONS(4224), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164777,11 +162615,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29473] = 3, + [29066] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4259), 13, + ACTIONS(4226), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164795,7 +162633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4261), 33, + ACTIONS(4228), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164829,11 +162667,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29528] = 3, + [29121] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2349), 13, + ACTIONS(4230), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164847,7 +162685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2347), 33, + ACTIONS(4232), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164881,11 +162719,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29583] = 3, + [29176] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4263), 13, + ACTIONS(4234), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164899,7 +162737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4265), 33, + ACTIONS(4236), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164933,11 +162771,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29638] = 3, + [29231] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4267), 13, + ACTIONS(4238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164951,7 +162789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4269), 33, + ACTIONS(4240), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164985,11 +162823,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29693] = 3, + [29286] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4271), 13, + ACTIONS(4242), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165003,7 +162841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4273), 33, + ACTIONS(4244), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165037,11 +162875,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29748] = 3, + [29341] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4275), 13, + ACTIONS(4246), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165055,7 +162893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4277), 33, + ACTIONS(4248), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165089,17 +162927,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29803] = 6, - ACTIONS(4071), 1, - anon_sym_LBRACE, - ACTIONS(4279), 1, + [29396] = 4, + ACTIONS(4254), 1, anon_sym_DOT, - STATE(1630), 1, - sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1674), 13, + ACTIONS(4250), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165113,9 +162947,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1672), 30, + ACTIONS(4252), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -165143,12 +162978,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [29864] = 3, + [29453] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4275), 13, + ACTIONS(3623), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165162,7 +162998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4277), 33, + ACTIONS(3419), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165196,11 +163032,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29919] = 3, + [29508] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4281), 13, + ACTIONS(3625), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165214,7 +163050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4283), 33, + ACTIONS(3429), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165248,11 +163084,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29974] = 3, + [29563] = 4, + ACTIONS(4257), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4285), 13, + ACTIONS(4250), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165266,7 +163104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4287), 33, + ACTIONS(4252), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165279,7 +163117,6 @@ static const 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, @@ -165300,11 +163137,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30029] = 3, + [29620] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4281), 13, + ACTIONS(4260), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165318,7 +163155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4283), 33, + ACTIONS(4262), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165352,25 +163189,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30084] = 3, + [29675] = 6, + ACTIONS(4076), 1, + anon_sym_AMP, + ACTIONS(4078), 1, + anon_sym_PIPE, + ACTIONS(4080), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4285), 13, + ACTIONS(4260), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4287), 33, + ACTIONS(4262), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165402,13 +163243,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [30139] = 3, + [29736] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4289), 13, + ACTIONS(4264), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165422,7 +163262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4291), 33, + ACTIONS(4266), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165456,11 +163296,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30194] = 3, + [29791] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4293), 13, + ACTIONS(4268), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165474,7 +163314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4295), 33, + ACTIONS(4270), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165508,11 +163348,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30249] = 3, + [29846] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4289), 13, + ACTIONS(4272), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165526,7 +163366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4291), 33, + ACTIONS(4274), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165560,11 +163400,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30304] = 3, + [29901] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4293), 13, + ACTIONS(4276), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165578,7 +163418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4295), 33, + ACTIONS(4278), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165612,29 +163452,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30359] = 6, - ACTIONS(4115), 1, - anon_sym_AMP, - ACTIONS(4141), 1, - anon_sym_PIPE, - ACTIONS(4143), 1, - anon_sym_extends, + [29956] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4297), 11, + ACTIONS(4280), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4299), 32, + ACTIONS(4282), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165666,18 +163502,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [30420] = 3, + [30011] = 4, + ACTIONS(4076), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4301), 13, + ACTIONS(4284), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -165685,7 +163523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4303), 33, + ACTIONS(4286), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165719,11 +163557,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30475] = 3, + [30068] = 4, + ACTIONS(4288), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4305), 13, + ACTIONS(1811), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165737,7 +163577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4307), 33, + ACTIONS(1809), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165769,87 +163609,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [30530] = 7, - ACTIONS(3460), 1, - anon_sym_DOT, - ACTIONS(3464), 1, - anon_sym_QMARK_DOT, + [30125] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3454), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3458), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3448), 10, + ACTIONS(4290), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3452), 28, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [30593] = 6, - ACTIONS(4115), 1, anon_sym_AMP, - ACTIONS(4141), 1, anon_sym_PIPE, - ACTIONS(4143), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4309), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4311), 32, + ACTIONS(4292), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165881,68 +163660,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [30654] = 7, - ACTIONS(4105), 1, anon_sym_extends, - ACTIONS(4315), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4319), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4322), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4313), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4317), 29, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - 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, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_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_satisfies, anon_sym_implements, - [30717] = 3, + [30180] = 4, + ACTIONS(3485), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4325), 13, + ACTIONS(3435), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165956,7 +163682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4327), 33, + ACTIONS(3439), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165988,17 +163714,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [30772] = 5, - ACTIONS(3959), 1, + [30237] = 5, + ACTIONS(3938), 1, anon_sym_LPAREN, - STATE(1632), 1, + STATE(1629), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4329), 13, + ACTIONS(4294), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166012,7 +163737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4331), 31, + ACTIONS(4296), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166044,11 +163769,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [30831] = 3, + [30296] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4333), 13, + ACTIONS(2340), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166062,7 +163787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4335), 33, + ACTIONS(2338), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166096,29 +163821,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30886] = 6, - ACTIONS(4115), 1, - anon_sym_AMP, - ACTIONS(4141), 1, - anon_sym_PIPE, - ACTIONS(4143), 1, - anon_sym_extends, + [30351] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4333), 11, + ACTIONS(4298), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4335), 32, + ACTIONS(4300), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166150,12 +163871,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [30947] = 3, + [30406] = 4, + ACTIONS(4032), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2343), 13, + ACTIONS(4302), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166169,7 +163893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2341), 33, + ACTIONS(4304), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166201,27 +163925,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [31002] = 3, + [30463] = 6, + ACTIONS(4076), 1, + anon_sym_AMP, + ACTIONS(4078), 1, + anon_sym_PIPE, + ACTIONS(4080), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4337), 13, + ACTIONS(4302), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4339), 33, + ACTIONS(4304), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166253,13 +163980,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [31057] = 3, + [30524] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4341), 13, + ACTIONS(4306), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166273,7 +163999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4343), 33, + ACTIONS(4308), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166307,29 +164033,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31112] = 6, - ACTIONS(4115), 1, - anon_sym_AMP, - ACTIONS(4141), 1, - anon_sym_PIPE, - ACTIONS(4143), 1, - anon_sym_extends, + [30579] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4345), 11, + ACTIONS(4310), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4347), 32, + ACTIONS(4312), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166361,12 +164083,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [31173] = 3, + [30634] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4341), 13, + ACTIONS(4314), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166380,7 +164103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4343), 33, + ACTIONS(4316), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166414,15 +164137,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31228] = 5, - ACTIONS(835), 1, - anon_sym_BQUOTE, - STATE(1676), 1, - sym_template_string, + [30689] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1905), 13, + ACTIONS(4310), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166436,7 +164155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1907), 31, + ACTIONS(4312), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166466,13 +164185,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [31287] = 3, + [30744] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4341), 13, + ACTIONS(4314), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166486,7 +164207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4343), 33, + ACTIONS(4316), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166520,11 +164241,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31342] = 3, + [30799] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4349), 13, + ACTIONS(4318), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166538,7 +164259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4351), 33, + ACTIONS(4320), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166572,11 +164293,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31397] = 3, + [30854] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4349), 13, + ACTIONS(4322), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166590,7 +164311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4351), 33, + ACTIONS(4324), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166624,11 +164345,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31452] = 3, + [30909] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4349), 13, + ACTIONS(4318), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166642,7 +164363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4351), 33, + ACTIONS(4320), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166676,11 +164397,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31507] = 3, + [30964] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4353), 13, + ACTIONS(4322), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166694,7 +164415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4355), 33, + ACTIONS(4324), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166728,65 +164449,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31562] = 5, + [31019] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4117), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4119), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3448), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3452), 30, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - 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, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_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_satisfies, - anon_sym_implements, - [31621] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4353), 13, + ACTIONS(4326), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166800,7 +164467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4355), 33, + ACTIONS(4328), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166834,11 +164501,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31676] = 3, + [31074] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4353), 13, + ACTIONS(4330), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166852,7 +164519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4355), 33, + ACTIONS(4332), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166886,11 +164553,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31731] = 3, + [31129] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4357), 13, + ACTIONS(4326), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166904,7 +164571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4359), 33, + ACTIONS(4328), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166938,11 +164605,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31786] = 3, + [31184] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4361), 13, + ACTIONS(4330), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166956,7 +164623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4363), 33, + ACTIONS(4332), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166990,11 +164657,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31841] = 3, + [31239] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4365), 13, + ACTIONS(4334), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167008,7 +164675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4367), 33, + ACTIONS(4336), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167042,29 +164709,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31896] = 5, - ACTIONS(4163), 1, - anon_sym_QMARK, - ACTIONS(4165), 1, + [31294] = 6, + ACTIONS(4076), 1, + anon_sym_AMP, + ACTIONS(4078), 1, + anon_sym_PIPE, + ACTIONS(4080), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4369), 13, + ACTIONS(4338), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4371), 31, + ACTIONS(4340), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167073,6 +164740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -167096,11 +164764,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [31955] = 3, + [31355] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2353), 13, + ACTIONS(4342), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167114,7 +164782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2351), 33, + ACTIONS(4344), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167148,77 +164816,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32010] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4373), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, + [31410] = 6, + ACTIONS(4076), 1, anon_sym_AMP, + ACTIONS(4078), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4375), 33, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - 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_satisfies, + ACTIONS(4080), 1, anon_sym_extends, - anon_sym_implements, - [32065] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4377), 13, + ACTIONS(4346), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4379), 33, + ACTIONS(4348), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167250,13 +164870,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [32120] = 3, + [31471] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4381), 13, + ACTIONS(4350), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167270,7 +164889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4383), 33, + ACTIONS(4352), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167304,11 +164923,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32175] = 3, + [31526] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4381), 13, + ACTIONS(4354), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167322,7 +164941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4383), 33, + ACTIONS(4356), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167356,25 +164975,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32230] = 3, + [31581] = 6, + ACTIONS(4076), 1, + anon_sym_AMP, + ACTIONS(4078), 1, + anon_sym_PIPE, + ACTIONS(4080), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4381), 13, + ACTIONS(4354), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4383), 33, + ACTIONS(4356), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167406,17 +165029,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [32285] = 5, - ACTIONS(4179), 1, - anon_sym_QMARK, - ACTIONS(4181), 1, - anon_sym_extends, + [31642] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4369), 13, + ACTIONS(2332), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167430,57 +165048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4371), 31, - sym__ternary_qmark, - 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, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_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_satisfies, - anon_sym_implements, - [32344] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4385), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4387), 33, + ACTIONS(2330), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167514,11 +165082,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32399] = 3, + [31697] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4385), 13, + ACTIONS(4358), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167532,7 +165100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4387), 33, + ACTIONS(4360), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167566,11 +165134,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32454] = 3, + [31752] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4385), 13, + ACTIONS(4362), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167584,7 +165152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4387), 33, + ACTIONS(4364), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167618,11 +165186,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32509] = 3, + [31807] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4389), 13, + ACTIONS(4362), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167636,7 +165204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4391), 33, + ACTIONS(4364), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167670,11 +165238,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32564] = 3, + [31862] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4389), 13, + ACTIONS(4362), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167688,7 +165256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4391), 33, + ACTIONS(4364), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167722,11 +165290,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32619] = 3, + [31917] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4389), 13, + ACTIONS(4366), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167740,7 +165308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4391), 33, + ACTIONS(4368), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167774,11 +165342,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32674] = 3, + [31972] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4393), 13, + ACTIONS(4366), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167792,7 +165360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4395), 33, + ACTIONS(4368), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167826,15 +165394,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32729] = 5, - ACTIONS(3959), 1, - anon_sym_LPAREN, - STATE(1643), 1, - sym_arguments, + [32027] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4397), 13, + ACTIONS(4366), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167848,57 +165412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4399), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - 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_satisfies, - anon_sym_implements, - [32788] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4035), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4037), 33, + ACTIONS(4368), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167932,66 +165446,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32843] = 6, - ACTIONS(4115), 1, - anon_sym_AMP, - ACTIONS(4141), 1, - anon_sym_PIPE, - ACTIONS(4143), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4401), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4403), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - 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_satisfies, - anon_sym_implements, - [32904] = 3, + [32082] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4405), 13, + ACTIONS(4370), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168005,7 +165464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4407), 33, + ACTIONS(4372), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168039,68 +165498,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32959] = 6, - ACTIONS(4115), 1, - anon_sym_AMP, - ACTIONS(4141), 1, - anon_sym_PIPE, - ACTIONS(4143), 1, - anon_sym_extends, + [32137] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4409), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4411), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - 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_satisfies, - anon_sym_implements, - [33020] = 4, - ACTIONS(4413), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1855), 13, + ACTIONS(4370), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168114,7 +165516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1853), 32, + ACTIONS(4372), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168146,12 +165548,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [33077] = 3, + [32192] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4271), 13, + ACTIONS(4370), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168165,7 +165568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4273), 33, + ACTIONS(4372), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168199,90 +165602,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33132] = 31, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4419), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [33242] = 3, + [32247] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4463), 13, + ACTIONS(4374), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168296,7 +165620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4465), 32, + ACTIONS(4376), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168328,152 +165652,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [33296] = 19, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(3673), 1, - anon_sym_override, - ACTIONS(3785), 1, - anon_sym_COMMA, - ACTIONS(3877), 1, - anon_sym_RBRACE, - ACTIONS(4467), 1, - anon_sym_STAR, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(4473), 1, - anon_sym_async, - ACTIONS(4477), 1, - anon_sym_readonly, - STATE(2769), 1, - sym_override_modifier, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4475), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4479), 2, - anon_sym_get, - anon_sym_set, - STATE(3058), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3651), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - 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, - anon_sym_object, - [33382] = 25, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4483), 1, - anon_sym_BANG, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4481), 13, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [33480] = 3, + [32302] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3448), 13, + ACTIONS(4378), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168487,7 +165672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 32, + ACTIONS(4380), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168519,12 +165704,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [33534] = 3, + [32357] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4485), 13, + ACTIONS(4382), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168538,7 +165724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4487), 32, + ACTIONS(4384), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168570,232 +165756,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [33588] = 19, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(3673), 1, - anon_sym_override, - ACTIONS(3785), 1, - anon_sym_COMMA, - ACTIONS(3882), 1, - anon_sym_RBRACE, - ACTIONS(4467), 1, - anon_sym_STAR, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(4473), 1, - anon_sym_async, - ACTIONS(4477), 1, - anon_sym_readonly, - STATE(2769), 1, - sym_override_modifier, - STATE(4673), 1, - aux_sym_object_repeat1, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, + [32412] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4475), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4479), 2, - anon_sym_get, - anon_sym_set, - STATE(3058), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3651), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - 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, - anon_sym_object, - [33674] = 31, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(2344), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(4435), 1, anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4489), 7, + ACTIONS(2342), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [33784] = 26, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4425), 1, anon_sym_QMARK_DOT, - ACTIONS(4427), 1, anon_sym_AMP_AMP, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4483), 1, - anon_sym_BANG, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4481), 12, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [33884] = 3, + anon_sym_extends, + anon_sym_implements, + [32467] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4491), 13, + ACTIONS(4386), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168809,7 +165828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4493), 32, + ACTIONS(4388), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168841,91 +165860,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [33938] = 31, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4493), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [34048] = 3, + [32522] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 13, + ACTIONS(4390), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168939,7 +165880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4497), 32, + ACTIONS(4392), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168971,12 +165912,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [34102] = 3, + [32577] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4499), 13, + ACTIONS(4390), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168990,7 +165932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4501), 32, + ACTIONS(4392), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169022,12 +165964,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [34156] = 3, + [32632] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4503), 13, + ACTIONS(4390), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169041,7 +165984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4505), 32, + ACTIONS(4392), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169073,12 +166016,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [34210] = 3, + [32687] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1751), 13, + ACTIONS(4394), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169092,7 +166036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1753), 32, + ACTIONS(4396), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169124,12 +166068,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [34264] = 3, + [32742] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4507), 13, + ACTIONS(4394), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169143,7 +166088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4509), 32, + ACTIONS(4396), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169175,76 +166120,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [34318] = 16, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4511), 1, - anon_sym_LT, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + [32797] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4394), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4483), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 21, + ACTIONS(4396), 33, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + 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_satisfies, - [34398] = 3, + anon_sym_extends, + anon_sym_implements, + [32852] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1917), 13, + ACTIONS(4398), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169258,7 +166192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1919), 32, + ACTIONS(4400), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169290,32 +166224,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [34452] = 13, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4520), 1, - anon_sym_QMARK_DOT, - ACTIONS(4522), 1, - anon_sym_LT, - STATE(1934), 1, - sym_type_arguments, - STATE(2081), 1, - sym_template_string, - STATE(2127), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, + [32907] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3955), 12, + ACTIONS(4398), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169326,16 +166241,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3957), 23, - sym__automatic_semicolon, + ACTIONS(4400), 33, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -169351,12 +166274,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [34526] = 3, + anon_sym_extends, + anon_sym_implements, + [32962] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4524), 13, + ACTIONS(4398), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169370,7 +166296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4526), 32, + ACTIONS(4400), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169402,12 +166328,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [34580] = 3, + [33017] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1911), 13, + ACTIONS(4402), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169421,7 +166348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1909), 32, + ACTIONS(4404), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169453,12 +166380,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [34634] = 3, + [33072] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1781), 13, + ACTIONS(4406), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169472,7 +166400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1783), 32, + ACTIONS(4408), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169504,12 +166432,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [34688] = 3, + [33127] = 4, + ACTIONS(4104), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4528), 13, + ACTIONS(4102), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169523,7 +166454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4530), 32, + ACTIONS(4106), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169532,7 +166463,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -169556,11 +166486,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34742] = 3, + [33183] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4532), 13, + ACTIONS(4410), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169574,7 +166504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4534), 32, + ACTIONS(4412), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169607,169 +166537,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34796] = 31, - ACTIONS(3959), 1, + [33237] = 11, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4420), 1, anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4536), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [34906] = 31, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4538), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [35016] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1791), 13, + ACTIONS(4414), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169780,24 +166568,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1793), 32, + ACTIONS(4416), 25, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -169815,12 +166596,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [35070] = 3, + [33307] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4540), 13, + ACTIONS(4423), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169834,7 +166614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4542), 32, + ACTIONS(4425), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169867,11 +166647,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35124] = 3, + [33361] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1835), 13, + ACTIONS(4082), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169885,7 +166665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1837), 32, + ACTIONS(4084), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169918,11 +166698,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35178] = 3, + [33415] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1845), 13, + ACTIONS(1765), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169936,7 +166716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 32, + ACTIONS(1767), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169969,11 +166749,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35232] = 3, + [33469] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1905), 13, + ACTIONS(1693), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169987,7 +166767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1907), 32, + ACTIONS(1695), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170020,90 +166800,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35286] = 31, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, + [33523] = 19, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(3752), 1, + anon_sym_COMMA, + ACTIONS(3877), 1, + anon_sym_RBRACE, ACTIONS(4427), 1, - anon_sym_AMP_AMP, + anon_sym_STAR, ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, + anon_sym_EQ, ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, + anon_sym_LBRACK, + ACTIONS(4433), 1, + anon_sym_async, ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + anon_sym_readonly, + STATE(2748), 1, + sym_override_modifier, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4544), 7, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4435), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4439), 2, + anon_sym_get, + anon_sym_set, + STATE(3080), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [35396] = 3, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3646), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + 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, + anon_sym_object, + [33609] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4546), 13, + ACTIONS(4441), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170117,7 +166885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4548), 32, + ACTIONS(4443), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170150,11 +166918,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35450] = 3, + [33663] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4550), 13, + ACTIONS(4445), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170168,7 +166936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4552), 32, + ACTIONS(4447), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170201,11 +166969,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35504] = 3, + [33717] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1855), 13, + ACTIONS(4082), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170219,7 +166987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1853), 32, + ACTIONS(4084), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170252,11 +167020,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35558] = 3, + [33771] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4554), 13, + ACTIONS(4449), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170270,7 +167038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4556), 32, + ACTIONS(4451), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170303,81 +167071,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35612] = 22, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4483), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4481), 14, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [35704] = 3, + [33825] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4558), 13, + ACTIONS(4453), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170391,7 +167089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4560), 32, + ACTIONS(4455), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170424,215 +167122,327 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35758] = 3, + [33879] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4465), 1, + anon_sym_AMP_AMP, + ACTIONS(4467), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4469), 1, + anon_sym_GT_GT, + ACTIONS(4473), 1, + anon_sym_AMP, + ACTIONS(4475), 1, + anon_sym_CARET, + ACTIONS(4477), 1, + anon_sym_PIPE, + ACTIONS(4481), 1, + anon_sym_PERCENT, + ACTIONS(4483), 1, + anon_sym_STAR_STAR, + ACTIONS(4485), 1, + anon_sym_LT, + ACTIONS(4493), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(4499), 1, + sym__ternary_qmark, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4562), 13, + ACTIONS(4457), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4471), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4564), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(4491), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4487), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4455), 7, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_BQUOTE, + [33989] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, anon_sym_DOT, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4465), 1, anon_sym_AMP_AMP, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4469), 1, + anon_sym_GT_GT, + ACTIONS(4473), 1, + anon_sym_AMP, + ACTIONS(4475), 1, anon_sym_CARET, + ACTIONS(4477), 1, + anon_sym_PIPE, + ACTIONS(4481), 1, anon_sym_PERCENT, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4485), 1, + anon_sym_LT, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4497), 1, anon_sym_satisfies, - anon_sym_implements, - [35812] = 3, + ACTIONS(4499), 1, + sym__ternary_qmark, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4566), 13, + ACTIONS(4457), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4471), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4568), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(4491), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4487), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4501), 7, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_BQUOTE, + [34099] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, anon_sym_DOT, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4465), 1, anon_sym_AMP_AMP, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4469), 1, + anon_sym_GT_GT, + ACTIONS(4473), 1, + anon_sym_AMP, + ACTIONS(4475), 1, anon_sym_CARET, + ACTIONS(4477), 1, + anon_sym_PIPE, + ACTIONS(4481), 1, anon_sym_PERCENT, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4485), 1, + anon_sym_LT, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4497), 1, anon_sym_satisfies, - anon_sym_implements, - [35866] = 3, + ACTIONS(4499), 1, + sym__ternary_qmark, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4369), 13, + ACTIONS(4457), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4471), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4371), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(4491), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4487), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4503), 7, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_BQUOTE, + [34209] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, anon_sym_DOT, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4465), 1, anon_sym_AMP_AMP, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4469), 1, + anon_sym_GT_GT, + ACTIONS(4473), 1, + anon_sym_AMP, + ACTIONS(4475), 1, anon_sym_CARET, + ACTIONS(4477), 1, + anon_sym_PIPE, + ACTIONS(4481), 1, anon_sym_PERCENT, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4485), 1, + anon_sym_LT, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4497), 1, anon_sym_satisfies, - anon_sym_implements, - [35920] = 3, + ACTIONS(4499), 1, + sym__ternary_qmark, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4570), 13, + ACTIONS(4457), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4471), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4572), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(4491), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4487), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4505), 7, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - 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_satisfies, - anon_sym_implements, - [35974] = 3, + [34319] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4574), 13, + ACTIONS(1817), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170646,7 +167456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4576), 32, + ACTIONS(1819), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170679,32 +167489,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36028] = 13, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4511), 1, - anon_sym_LT, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + [34373] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4483), 12, + ACTIONS(1835), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170715,36 +167504,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 22, + ACTIONS(1833), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + 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_satisfies, - [36102] = 3, + anon_sym_implements, + [34427] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4578), 13, + ACTIONS(4507), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170758,7 +167558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4580), 32, + ACTIONS(4509), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170791,145 +167591,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36156] = 19, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(3673), 1, - anon_sym_override, - ACTIONS(3785), 1, - anon_sym_COMMA, - ACTIONS(3788), 1, - anon_sym_RBRACE, - ACTIONS(4467), 1, - anon_sym_STAR, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(4473), 1, - anon_sym_async, - ACTIONS(4477), 1, - anon_sym_readonly, - STATE(2769), 1, - sym_override_modifier, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4475), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4479), 2, - anon_sym_get, - anon_sym_set, - STATE(3058), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3651), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - 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, - anon_sym_object, - [36242] = 19, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(3673), 1, - anon_sym_override, - ACTIONS(3785), 1, - anon_sym_COMMA, - ACTIONS(3866), 1, - anon_sym_RBRACE, - ACTIONS(4467), 1, - anon_sym_STAR, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(4473), 1, - anon_sym_async, - ACTIONS(4477), 1, - anon_sym_readonly, - STATE(2769), 1, - sym_override_modifier, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4475), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4479), 2, - anon_sym_get, - anon_sym_set, - STATE(3058), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3651), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - 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, - anon_sym_object, - [36328] = 3, + [34481] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4582), 13, + ACTIONS(4511), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170943,7 +167609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4584), 32, + ACTIONS(4513), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170976,11 +167642,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36382] = 3, + [34535] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1871), 13, + ACTIONS(4515), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170994,7 +167660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1869), 32, + ACTIONS(4517), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171027,150 +167693,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36436] = 23, - ACTIONS(3959), 1, + [34589] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4431), 1, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4465), 1, + anon_sym_AMP_AMP, + ACTIONS(4467), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4443), 1, + ACTIONS(4475), 1, + anon_sym_CARET, + ACTIONS(4477), 1, + anon_sym_PIPE, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4485), 1, anon_sym_LT, - STATE(1603), 1, + ACTIONS(4493), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(4499), 1, + sym__ternary_qmark, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4483), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4449), 3, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 14, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4519), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - anon_sym_satisfies, - [36530] = 20, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + [34699] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4521), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4483), 5, - anon_sym_BANG, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 16, + ACTIONS(4523), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + 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_satisfies, - [36618] = 3, + anon_sym_implements, + [34753] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4586), 13, + ACTIONS(4441), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171184,7 +167841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4588), 32, + ACTIONS(4443), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171217,11 +167874,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36672] = 3, + [34807] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4590), 13, + ACTIONS(4525), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171235,7 +167892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4592), 32, + ACTIONS(4527), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171268,11 +167925,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36726] = 3, + [34861] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4562), 13, + ACTIONS(1701), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171286,7 +167943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4564), 32, + ACTIONS(1699), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171319,11 +167976,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36780] = 3, + [34915] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1741), 13, + ACTIONS(1871), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171337,7 +167994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1739), 32, + ACTIONS(1869), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171370,36 +168027,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36834] = 3, + [34969] = 6, + ACTIONS(4186), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4594), 13, + ACTIONS(4529), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4532), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4423), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4596), 32, + ACTIONS(4425), 29, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -171421,83 +168081,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36888] = 24, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + [35029] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(1841), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4483), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4481), 13, + ACTIONS(1839), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + 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_satisfies, - [36984] = 3, + anon_sym_implements, + [35083] = 13, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, + anon_sym_LBRACK, + ACTIONS(4539), 1, + anon_sym_DOT, + ACTIONS(4541), 1, + anon_sym_QMARK_DOT, + ACTIONS(4543), 1, + anon_sym_LT, + STATE(1859), 1, + sym_type_arguments, + STATE(2090), 1, + sym_arguments, + STATE(2315), 1, + sym_template_string, + STATE(4753), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4598), 13, + ACTIONS(3934), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171508,24 +168167,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4600), 32, + ACTIONS(3936), 23, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -171541,14 +168192,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [37038] = 3, + [35157] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4602), 13, + ACTIONS(1811), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171562,7 +168211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4604), 32, + ACTIONS(1809), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171595,11 +168244,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37092] = 3, + [35211] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4606), 13, + ACTIONS(1793), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171613,7 +168262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4608), 32, + ACTIONS(1791), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171646,11 +168295,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37146] = 3, + [35265] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4562), 13, + ACTIONS(1827), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171664,7 +168313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4564), 32, + ACTIONS(1829), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171697,11 +168346,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37200] = 3, + [35319] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1925), 13, + ACTIONS(4545), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171715,7 +168364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1923), 32, + ACTIONS(4547), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171748,90 +168397,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37254] = 31, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + [35373] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4610), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [37364] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4612), 13, + ACTIONS(1853), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171845,7 +168415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4614), 32, + ACTIONS(1855), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171878,90 +168448,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37418] = 31, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + [35427] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4441), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4584), 7, + ACTIONS(4443), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + 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, - [37528] = 3, + anon_sym_satisfies, + anon_sym_implements, + [35481] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1881), 13, + ACTIONS(4549), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171975,7 +168517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1883), 32, + ACTIONS(4551), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172008,11 +168550,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37582] = 3, + [35535] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4369), 13, + ACTIONS(4553), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172026,7 +168568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4371), 32, + ACTIONS(4555), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172059,37 +168601,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37636] = 15, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4511), 1, - anon_sym_LT, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + [35589] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4557), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4483), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -172098,35 +168615,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 21, + ACTIONS(4559), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + 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_satisfies, - [37714] = 3, + anon_sym_implements, + [35643] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1871), 13, + ACTIONS(4561), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172140,19 +168670,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1869), 32, - sym__automatic_semicolon, + ACTIONS(4563), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -172172,12 +168702,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [37768] = 3, + anon_sym_implements, + [35697] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1875), 13, + ACTIONS(4565), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172191,19 +168721,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1873), 32, - sym__automatic_semicolon, + ACTIONS(4567), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -172223,38 +168753,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [37822] = 15, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4620), 1, - anon_sym_LT, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + anon_sym_implements, + [35751] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4616), 11, + ACTIONS(4569), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -172263,16 +168769,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4618), 21, + ACTIONS(4571), 32, sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -172286,12 +168800,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [37900] = 3, + anon_sym_satisfies, + anon_sym_implements, + [35805] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1737), 13, + ACTIONS(4573), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172305,7 +168823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1735), 32, + ACTIONS(4575), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172338,11 +168856,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37954] = 3, + [35859] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4465), 1, + anon_sym_AMP_AMP, + ACTIONS(4467), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4469), 1, + anon_sym_GT_GT, + ACTIONS(4473), 1, + anon_sym_AMP, + ACTIONS(4475), 1, + anon_sym_CARET, + ACTIONS(4477), 1, + anon_sym_PIPE, + ACTIONS(4481), 1, + anon_sym_PERCENT, + ACTIONS(4483), 1, + anon_sym_STAR_STAR, + ACTIONS(4485), 1, + anon_sym_LT, + ACTIONS(4493), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(4499), 1, + sym__ternary_qmark, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4457), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4463), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4471), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4479), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4489), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4491), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4487), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4577), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [35969] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4623), 13, + ACTIONS(4579), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172356,7 +168953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4625), 32, + ACTIONS(4581), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172389,62 +168986,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38008] = 3, + [36023] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4465), 1, + anon_sym_AMP_AMP, + ACTIONS(4467), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4469), 1, + anon_sym_GT_GT, + ACTIONS(4473), 1, + anon_sym_AMP, + ACTIONS(4475), 1, + anon_sym_CARET, + ACTIONS(4477), 1, + anon_sym_PIPE, + ACTIONS(4481), 1, + anon_sym_PERCENT, + ACTIONS(4483), 1, + anon_sym_STAR_STAR, + ACTIONS(4485), 1, + anon_sym_LT, + ACTIONS(4493), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(4499), 1, + sym__ternary_qmark, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4627), 13, + ACTIONS(4457), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4471), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4489), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4491), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4487), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4581), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [36133] = 18, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4469), 1, + anon_sym_GT_GT, + ACTIONS(4481), 1, + anon_sym_PERCENT, + ACTIONS(4483), 1, + anon_sym_STAR_STAR, + ACTIONS(4485), 1, anon_sym_LT, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4457), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4471), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4479), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4585), 7, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4629), 32, + ACTIONS(4583), 19, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - 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_satisfies, - anon_sym_implements, - [38062] = 3, + [36217] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4631), 13, + ACTIONS(4587), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172458,7 +169149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4633), 32, + ACTIONS(4589), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172491,11 +169182,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38116] = 3, + [36271] = 19, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(3752), 1, + anon_sym_COMMA, + ACTIONS(3868), 1, + anon_sym_RBRACE, + ACTIONS(4427), 1, + anon_sym_STAR, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(4431), 1, + anon_sym_LBRACK, + ACTIONS(4433), 1, + anon_sym_async, + ACTIONS(4437), 1, + anon_sym_readonly, + STATE(2748), 1, + sym_override_modifier, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4435), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4439), 2, + anon_sym_get, + anon_sym_set, + STATE(3080), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3646), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + 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, + anon_sym_object, + [36357] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4635), 13, + ACTIONS(4591), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172509,7 +169267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4637), 32, + ACTIONS(4593), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172542,11 +169300,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38170] = 3, + [36411] = 13, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4483), 1, + anon_sym_STAR_STAR, + ACTIONS(4595), 1, + anon_sym_LT, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1875), 13, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4585), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172557,47 +169336,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1873), 32, + ACTIONS(4583), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - 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_satisfies, - anon_sym_implements, - [38224] = 3, + [36485] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1891), 13, + ACTIONS(4598), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172611,7 +169379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1893), 32, + ACTIONS(4600), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172644,102 +169412,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38278] = 3, + [36539] = 25, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4469), 1, + anon_sym_GT_GT, + ACTIONS(4473), 1, + anon_sym_AMP, + ACTIONS(4475), 1, + anon_sym_CARET, + ACTIONS(4477), 1, + anon_sym_PIPE, + ACTIONS(4481), 1, + anon_sym_PERCENT, + ACTIONS(4483), 1, + anon_sym_STAR_STAR, + ACTIONS(4485), 1, + anon_sym_LT, + ACTIONS(4585), 1, + anon_sym_BANG, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4639), 13, + ACTIONS(4457), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4471), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4641), 32, + ACTIONS(4491), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4487), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4583), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [36637] = 26, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, anon_sym_DOT, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4469), 1, + anon_sym_GT_GT, + ACTIONS(4473), 1, + anon_sym_AMP, + ACTIONS(4475), 1, anon_sym_CARET, + ACTIONS(4477), 1, + anon_sym_PIPE, + ACTIONS(4481), 1, anon_sym_PERCENT, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4485), 1, + anon_sym_LT, + ACTIONS(4585), 1, + anon_sym_BANG, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4457), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4463), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4471), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4479), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4489), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(4487), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4583), 12, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [38332] = 16, - ACTIONS(3959), 1, + [36737] = 16, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4445), 1, + ACTIONS(4481), 1, + anon_sym_PERCENT, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4511), 1, + ACTIONS(4595), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(4457), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4479), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4483), 11, - anon_sym_STAR, + ACTIONS(4585), 8, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 20, + ACTIONS(4583), 21, sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, @@ -172751,7 +169615,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -172759,62 +169622,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [38412] = 3, + anon_sym_satisfies, + [36817] = 22, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4469), 1, + anon_sym_GT_GT, + ACTIONS(4481), 1, + anon_sym_PERCENT, + ACTIONS(4483), 1, + anon_sym_STAR_STAR, + ACTIONS(4485), 1, + anon_sym_LT, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4643), 13, + ACTIONS(4457), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4471), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4645), 32, + ACTIONS(4491), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4487), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4585), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4583), 14, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - 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_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [36909] = 23, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4469), 1, + anon_sym_GT_GT, + ACTIONS(4473), 1, + anon_sym_AMP, + ACTIONS(4481), 1, anon_sym_PERCENT, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4485), 1, + anon_sym_LT, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4457), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4463), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4471), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4479), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4489), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(4585), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4487), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4583), 14, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [38466] = 3, + [37003] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4647), 13, + ACTIONS(1863), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172828,7 +169782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4649), 32, + ACTIONS(1865), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172861,13 +169815,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38520] = 4, - ACTIONS(4315), 1, - anon_sym_EQ, + [37057] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4313), 13, + ACTIONS(4602), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172881,7 +169833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4317), 31, + ACTIONS(4604), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172890,6 +169842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -172913,126 +169866,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38576] = 31, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, + [37111] = 19, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(3752), 1, + anon_sym_COMMA, + ACTIONS(3800), 1, + anon_sym_RBRACE, ACTIONS(4427), 1, - anon_sym_AMP_AMP, + anon_sym_STAR, ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, + anon_sym_EQ, ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, + anon_sym_LBRACK, + ACTIONS(4433), 1, + anon_sym_async, ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + anon_sym_readonly, + STATE(2748), 1, + sym_override_modifier, + STATE(5129), 1, + aux_sym_object_repeat1, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4651), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [38686] = 19, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(3673), 1, - anon_sym_override, - ACTIONS(3785), 1, - anon_sym_COMMA, - ACTIONS(3799), 1, - anon_sym_RBRACE, - ACTIONS(4467), 1, - anon_sym_STAR, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(4473), 1, - anon_sym_async, - ACTIONS(4477), 1, - anon_sym_readonly, - STATE(2769), 1, - sym_override_modifier, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4475), 2, + ACTIONS(4435), 2, sym_number, sym_private_property_identifier, - ACTIONS(4479), 2, + ACTIONS(4439), 2, anon_sym_get, anon_sym_set, - STATE(3058), 3, + STATE(3080), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 7, + ACTIONS(3758), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -173040,7 +169914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3651), 18, + ACTIONS(3646), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -173059,12 +169933,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [38772] = 3, + [37197] = 15, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4481), 1, + anon_sym_PERCENT, + ACTIONS(4483), 1, + anon_sym_STAR_STAR, + ACTIONS(4595), 1, + anon_sym_LT, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1899), 13, + ACTIONS(4457), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4585), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -173073,50 +169972,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1897), 32, + ACTIONS(4583), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - 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_satisfies, - anon_sym_implements, - [38826] = 3, + [37275] = 16, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4483), 1, + anon_sym_STAR_STAR, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(4595), 1, + anon_sym_LT, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4653), 13, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4585), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -173125,49 +170037,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4655), 32, + ACTIONS(4583), 20, sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - 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_satisfies, - anon_sym_implements, - [38880] = 4, - ACTIONS(4659), 1, - anon_sym_EQ, + [37355] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4657), 13, + ACTIONS(3435), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -173181,7 +170078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4661), 31, + ACTIONS(3439), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -173190,6 +170087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -173213,11 +170111,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38936] = 3, + [37409] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4663), 13, + ACTIONS(1877), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -173231,7 +170129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4665), 32, + ACTIONS(1879), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -173264,158 +170162,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38990] = 31, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, + [37463] = 6, + ACTIONS(4146), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4606), 2, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4609), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3435), 10, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4425), 1, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3439), 29, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4427), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + anon_sym_implements, + [37523] = 4, + ACTIONS(4614), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4612), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4548), 7, + ACTIONS(4616), 31, + sym__ternary_qmark, + 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_RBRACK, - anon_sym_BQUOTE, - [39100] = 18, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4425), 1, anon_sym_QMARK_DOT, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4443), 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(4445), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [37579] = 6, + ACTIONS(4024), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4483), 7, - anon_sym_BANG, - anon_sym_in, + ACTIONS(4618), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4621), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(3435), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 19, + ACTIONS(3439), 29, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, 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, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_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_satisfies, - [39184] = 4, - ACTIONS(1708), 1, - anon_sym_EQ, + anon_sym_implements, + [37639] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1706), 13, + ACTIONS(4624), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -173429,7 +170340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1710), 31, + ACTIONS(4626), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -173438,6 +170349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -173461,90 +170373,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39240] = 31, - ACTIONS(3959), 1, + [37693] = 20, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4469), 1, + anon_sym_GT_GT, + ACTIONS(4481), 1, + anon_sym_PERCENT, + ACTIONS(4483), 1, + anon_sym_STAR_STAR, + ACTIONS(4485), 1, + anon_sym_LT, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4457), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4463), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4471), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4479), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4487), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4585), 5, anon_sym_BANG, - ACTIONS(4425), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4583), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [37781] = 27, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - STATE(1603), 1, + ACTIONS(4585), 1, + anon_sym_BANG, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4655), 7, + ACTIONS(4583), 11, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [39350] = 3, + anon_sym_satisfies, + [37883] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4667), 13, + ACTIONS(1717), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -173558,7 +170534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4669), 32, + ACTIONS(1719), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -173591,11 +170567,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39404] = 3, + [37937] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4671), 13, + ACTIONS(4628), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -173609,7 +170585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4673), 32, + ACTIONS(4630), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -173642,11 +170618,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39458] = 3, + [37991] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4675), 13, + ACTIONS(4632), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -173660,7 +170636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4677), 32, + ACTIONS(4634), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -173693,11 +170669,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39512] = 3, + [38045] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4679), 13, + ACTIONS(4636), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -173711,7 +170687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4681), 32, + ACTIONS(4638), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -173744,11 +170720,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39566] = 3, + [38099] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4683), 13, + ACTIONS(4640), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -173762,7 +170738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4685), 32, + ACTIONS(4642), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -173795,86 +170771,220 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39620] = 27, - ACTIONS(3959), 1, + [38153] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4644), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4646), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3961), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3963), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4425), 1, anon_sym_QMARK_DOT, - ACTIONS(4427), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [38207] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4465), 1, + anon_sym_AMP_AMP, + ACTIONS(4467), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(4483), 1, - anon_sym_BANG, - STATE(1603), 1, + ACTIONS(4493), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(4499), 1, + sym__ternary_qmark, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 11, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4642), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_QMARK_QMARK, anon_sym_BQUOTE, + [38317] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4465), 1, + anon_sym_AMP_AMP, + ACTIONS(4467), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4469), 1, + anon_sym_GT_GT, + ACTIONS(4473), 1, + anon_sym_AMP, + ACTIONS(4475), 1, + anon_sym_CARET, + ACTIONS(4477), 1, + anon_sym_PIPE, + ACTIONS(4481), 1, + anon_sym_PERCENT, + ACTIONS(4483), 1, + anon_sym_STAR_STAR, + ACTIONS(4485), 1, + anon_sym_LT, + ACTIONS(4493), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4497), 1, anon_sym_satisfies, - [39722] = 3, + ACTIONS(4499), 1, + sym__ternary_qmark, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4457), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4463), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4471), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4479), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4489), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4491), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4487), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4648), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [38427] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4687), 13, + ACTIONS(4650), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -173888,7 +170998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4689), 32, + ACTIONS(4652), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -173921,11 +171031,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39776] = 3, + [38481] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4691), 13, + ACTIONS(4654), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -173939,7 +171049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4693), 32, + ACTIONS(4656), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -173972,11 +171082,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39830] = 3, + [38535] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1761), 13, + ACTIONS(4658), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -173990,7 +171100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1763), 32, + ACTIONS(4660), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -174023,27 +171133,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39884] = 11, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4699), 1, - anon_sym_LT, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + [38589] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4695), 12, + ACTIONS(4662), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -174054,17 +171148,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4697), 25, + ACTIONS(4664), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -174082,11 +171183,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [39954] = 3, + anon_sym_implements, + [38643] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4702), 13, + ACTIONS(4666), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -174100,7 +171202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4704), 32, + ACTIONS(4668), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -174133,11 +171235,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [40008] = 3, + [38697] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4706), 13, + ACTIONS(1755), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -174151,7 +171253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4489), 32, + ACTIONS(1757), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -174184,11 +171286,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [40062] = 3, + [38751] = 4, + ACTIONS(1665), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1771), 13, + ACTIONS(1663), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -174202,7 +171306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1773), 32, + ACTIONS(1667), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -174211,7 +171315,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -174235,90 +171338,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [40116] = 31, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4708), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [40226] = 3, + [38807] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1803), 13, + ACTIONS(4670), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -174332,7 +171356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1805), 32, + ACTIONS(4672), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -174365,90 +171389,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [40280] = 31, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4710), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [40390] = 3, + [38861] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1863), 13, + ACTIONS(1739), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -174462,7 +171407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1865), 32, + ACTIONS(1737), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -174495,40 +171440,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [40444] = 6, - ACTIONS(4123), 1, - anon_sym_extends, + [38915] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4712), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4715), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3448), 10, + ACTIONS(1701), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 29, + ACTIONS(1699), 32, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_of, + anon_sym_while, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -174548,12 +171490,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [40504] = 3, + anon_sym_PIPE_RBRACE, + [38969] = 12, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4678), 1, + anon_sym_LT, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4718), 13, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4674), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -174564,24 +171525,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4720), 32, + ACTIONS(4676), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -174595,45 +171549,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [40558] = 6, - ACTIONS(4047), 1, - anon_sym_extends, + [39041] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4722), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4725), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3448), 10, + ACTIONS(1793), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 29, + ACTIONS(1791), 32, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_of, + anon_sym_while, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -174653,12 +171601,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [40618] = 3, + anon_sym_PIPE_RBRACE, + [39095] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4728), 13, + ACTIONS(1725), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -174672,7 +171620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4730), 32, + ACTIONS(1723), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -174705,11 +171653,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [40672] = 3, + [39149] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4732), 13, + ACTIONS(4681), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -174723,7 +171671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4610), 32, + ACTIONS(4683), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -174756,109 +171704,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [40726] = 31, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4734), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [40836] = 12, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4740), 1, - anon_sym_LT, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + [39203] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4736), 12, + ACTIONS(1731), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -174869,17 +171719,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4738), 23, + ACTIONS(1733), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -174893,41 +171750,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [40908] = 6, - ACTIONS(4127), 1, - anon_sym_extends, + anon_sym_implements, + [39257] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4743), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4746), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4702), 10, + ACTIONS(4685), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4704), 29, + ACTIONS(4687), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -174949,13 +171806,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [40968] = 4, - ACTIONS(4749), 1, - sym__automatic_semicolon, + [39311] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1704), 13, + ACTIONS(4689), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -174969,17 +171824,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1702), 30, + ACTIONS(4691), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -174999,21 +171856,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [41023] = 5, + anon_sym_implements, + [39365] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1708), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4751), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(1706), 13, + ACTIONS(1707), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -175027,12 +171875,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1710), 24, + ACTIONS(1709), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -175052,21 +171907,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [41080] = 8, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - anon_sym_LT, - ACTIONS(4754), 1, - anon_sym_DOT, - STATE(1999), 1, - sym_arguments, - STATE(2000), 1, - sym_type_arguments, + anon_sym_implements, + [39419] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4021), 12, + ACTIONS(4693), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -175077,17 +171923,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4023), 27, - sym__automatic_semicolon, + ACTIONS(4695), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -175106,14 +171958,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [41143] = 3, + anon_sym_implements, + [39473] = 15, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(4701), 1, + anon_sym_LT, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1899), 13, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4697), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -175122,23 +171998,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1897), 31, - sym__automatic_semicolon, + ACTIONS(4699), 21, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - anon_sym_while, - anon_sym_LBRACK, - anon_sym_DOT, - 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, @@ -175152,25 +172021,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [41196] = 5, + [39551] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4659), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4756), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4657), 13, + ACTIONS(4704), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -175184,12 +172040,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4661), 24, + ACTIONS(4706), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -175209,13 +172072,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [41253] = 4, - ACTIONS(4759), 1, - sym__automatic_semicolon, + anon_sym_implements, + [39605] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4465), 1, + anon_sym_AMP_AMP, + ACTIONS(4467), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4469), 1, + anon_sym_GT_GT, + ACTIONS(4473), 1, + anon_sym_AMP, + ACTIONS(4475), 1, + anon_sym_CARET, + ACTIONS(4477), 1, + anon_sym_PIPE, + ACTIONS(4481), 1, + anon_sym_PERCENT, + ACTIONS(4483), 1, + anon_sym_STAR_STAR, + ACTIONS(4485), 1, + anon_sym_LT, + ACTIONS(4493), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(4499), 1, + sym__ternary_qmark, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4457), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4463), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4471), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4479), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4489), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4491), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4487), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4708), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [39715] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1855), 13, + ACTIONS(1745), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -175229,17 +172170,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1853), 30, + ACTIONS(1747), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -175259,105 +172202,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [41308] = 16, - ACTIONS(1588), 1, + anon_sym_implements, + [39769] = 19, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(4763), 1, - anon_sym_static, - ACTIONS(4765), 1, - anon_sym_readonly, - ACTIONS(4767), 1, - anon_sym_abstract, - ACTIONS(4769), 1, - anon_sym_accessor, - STATE(2694), 1, - sym_accessibility_modifier, - STATE(2783), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4761), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3671), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3301), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 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(3651), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - 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, - anon_sym_object, - [41387] = 16, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(3785), 1, + ACTIONS(3752), 1, anon_sym_COMMA, - ACTIONS(3877), 1, + ACTIONS(3755), 1, anon_sym_RBRACE, - ACTIONS(4467), 1, + ACTIONS(4427), 1, anon_sym_STAR, - ACTIONS(4469), 1, + ACTIONS(4429), 1, anon_sym_EQ, - ACTIONS(4473), 1, - anon_sym_async, - ACTIONS(4771), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - STATE(4679), 1, + ACTIONS(4433), 1, + anon_sym_async, + ACTIONS(4437), 1, + anon_sym_readonly, + STATE(2748), 1, + sym_override_modifier, + STATE(5131), 1, aux_sym_object_pattern_repeat1, - STATE(5173), 1, + STATE(5191), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4475), 2, + ACTIONS(4435), 2, sym_number, sym_private_property_identifier, - ACTIONS(4479), 2, + ACTIONS(4439), 2, anon_sym_get, anon_sym_set, - STATE(3058), 3, + STATE(3080), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 7, + ACTIONS(3758), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -175365,7 +172251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3651), 20, + ACTIONS(3646), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -175373,12 +172259,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -175386,84 +172270,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [41466] = 16, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(3673), 1, - anon_sym_override, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(4775), 1, - anon_sym_static, - ACTIONS(4777), 1, - anon_sym_readonly, - ACTIONS(4779), 1, - anon_sym_abstract, - ACTIONS(4781), 1, - anon_sym_accessor, - STATE(2702), 1, - sym_accessibility_modifier, - STATE(2787), 1, - sym_override_modifier, + [39855] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4773), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3671), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3447), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(4710), 13, + anon_sym_STAR, anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4712), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3651), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - 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, - anon_sym_object, - [41545] = 8, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - anon_sym_LT, - ACTIONS(4783), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, - STATE(1997), 1, - sym_arguments, - STATE(1998), 1, - sym_type_arguments, + 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_satisfies, + anon_sym_implements, + [39909] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4015), 12, + ACTIONS(4714), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -175474,17 +172336,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4017), 27, - sym__automatic_semicolon, + ACTIONS(4716), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -175503,40 +172371,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [41608] = 15, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(3785), 1, - anon_sym_COMMA, - ACTIONS(3799), 1, - anon_sym_RBRACE, + anon_sym_implements, + [39963] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4465), 1, + anon_sym_AMP_AMP, ACTIONS(4467), 1, - anon_sym_STAR, + anon_sym_PIPE_PIPE, ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, - anon_sym_LBRACK, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, + anon_sym_GT_GT, + ACTIONS(4473), 1, + anon_sym_AMP, + ACTIONS(4475), 1, + anon_sym_CARET, + ACTIONS(4477), 1, + anon_sym_PIPE, + ACTIONS(4481), 1, + anon_sym_PERCENT, + ACTIONS(4483), 1, + anon_sym_STAR_STAR, + ACTIONS(4485), 1, + anon_sym_LT, + ACTIONS(4493), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(4499), 1, + sym__ternary_qmark, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4787), 2, + ACTIONS(4457), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4463), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4471), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4479), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4489), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4491), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4487), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4716), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [40073] = 19, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(3752), 1, + anon_sym_COMMA, + ACTIONS(3803), 1, + anon_sym_RBRACE, + ACTIONS(4427), 1, + anon_sym_STAR, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(4431), 1, + anon_sym_LBRACK, + ACTIONS(4433), 1, + anon_sym_async, + ACTIONS(4437), 1, + anon_sym_readonly, + STATE(2748), 1, + sym_override_modifier, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4435), 2, sym_number, sym_private_property_identifier, - ACTIONS(4789), 2, + ACTIONS(4439), 2, anon_sym_get, anon_sym_set, - STATE(3784), 3, + STATE(3080), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 7, + ACTIONS(3758), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -175544,21 +172499,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2323), 21, + ACTIONS(3646), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -175566,151 +172518,243 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [41685] = 31, - ACTIONS(3959), 1, + [40159] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4718), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4720), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3961), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3963), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4417), 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_satisfies, + anon_sym_implements, + [40213] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4722), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4724), 32, + sym__ternary_qmark, anon_sym_as, - ACTIONS(4421), 1, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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_satisfies, + anon_sym_implements, + [40267] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4726), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4425), 1, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4728), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4427), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [40321] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4465), 1, + anon_sym_AMP_AMP, + ACTIONS(4467), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4461), 1, + ACTIONS(4499), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4791), 6, + ACTIONS(4728), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [41794] = 15, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(3785), 1, - anon_sym_COMMA, - ACTIONS(3788), 1, - anon_sym_RBRACE, - ACTIONS(4467), 1, - anon_sym_STAR, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, - anon_sym_LBRACK, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4787), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4789), 2, - anon_sym_get, - anon_sym_set, - STATE(3784), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2323), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [41871] = 3, + anon_sym_BQUOTE, + [40431] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1855), 13, + ACTIONS(4730), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -175724,18 +172768,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1853), 31, - sym__automatic_semicolon, + ACTIONS(4732), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -175755,12 +172800,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [41924] = 3, + anon_sym_implements, + [40485] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4465), 1, + anon_sym_AMP_AMP, + ACTIONS(4467), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4469), 1, + anon_sym_GT_GT, + ACTIONS(4473), 1, + anon_sym_AMP, + ACTIONS(4475), 1, + anon_sym_CARET, + ACTIONS(4477), 1, + anon_sym_PIPE, + ACTIONS(4481), 1, + anon_sym_PERCENT, + ACTIONS(4483), 1, + anon_sym_STAR_STAR, + ACTIONS(4485), 1, + anon_sym_LT, + ACTIONS(4493), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(4499), 1, + sym__ternary_qmark, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4457), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4463), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4471), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4479), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4489), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4491), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4487), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4732), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [40595] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4465), 1, + anon_sym_AMP_AMP, + ACTIONS(4467), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4469), 1, + anon_sym_GT_GT, + ACTIONS(4473), 1, + anon_sym_AMP, + ACTIONS(4475), 1, + anon_sym_CARET, + ACTIONS(4477), 1, + anon_sym_PIPE, + ACTIONS(4481), 1, + anon_sym_PERCENT, + ACTIONS(4483), 1, + anon_sym_STAR_STAR, + ACTIONS(4485), 1, + anon_sym_LT, + ACTIONS(4493), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(4499), 1, + sym__ternary_qmark, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4457), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4463), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4471), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4479), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4489), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4491), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4487), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4734), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [40705] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1911), 13, + ACTIONS(1799), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -175774,18 +172977,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1909), 31, - sym__automatic_semicolon, + ACTIONS(1801), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -175805,42 +173009,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [41977] = 16, - ACTIONS(1588), 1, + anon_sym_implements, + [40759] = 24, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4469), 1, + anon_sym_GT_GT, + ACTIONS(4473), 1, + anon_sym_AMP, + ACTIONS(4475), 1, + anon_sym_CARET, + ACTIONS(4481), 1, + anon_sym_PERCENT, + ACTIONS(4483), 1, + anon_sym_STAR_STAR, + ACTIONS(4485), 1, + anon_sym_LT, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4457), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4463), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4471), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4479), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4489), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4491), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4585), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4487), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4583), 13, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [40855] = 15, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(3785), 1, + ACTIONS(3752), 1, anon_sym_COMMA, - ACTIONS(3799), 1, + ACTIONS(3868), 1, anon_sym_RBRACE, - ACTIONS(4467), 1, + ACTIONS(4427), 1, anon_sym_STAR, - ACTIONS(4469), 1, + ACTIONS(4429), 1, anon_sym_EQ, - ACTIONS(4473), 1, - anon_sym_async, - ACTIONS(4771), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - STATE(4679), 1, + STATE(5131), 1, aux_sym_object_pattern_repeat1, - STATE(5173), 1, + STATE(5191), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4475), 2, + ACTIONS(4738), 2, sym_number, sym_private_property_identifier, - ACTIONS(4479), 2, + ACTIONS(4740), 2, anon_sym_get, anon_sym_set, - STATE(3058), 3, + STATE(3890), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 7, + ACTIONS(3758), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -175848,11 +173122,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3651), 20, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -175869,11 +173144,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [42056] = 3, + [40932] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1741), 13, + ACTIONS(1811), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -175887,7 +173162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1739), 31, + ACTIONS(1809), 31, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -175919,39 +173194,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_PIPE_RBRACE, - [42109] = 15, - ACTIONS(2291), 1, + [40985] = 16, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(3785), 1, + ACTIONS(3752), 1, anon_sym_COMMA, - ACTIONS(3866), 1, + ACTIONS(3877), 1, anon_sym_RBRACE, - ACTIONS(4467), 1, + ACTIONS(4427), 1, anon_sym_STAR, - ACTIONS(4469), 1, + ACTIONS(4429), 1, anon_sym_EQ, - ACTIONS(4785), 1, + ACTIONS(4433), 1, + anon_sym_async, + ACTIONS(4742), 1, anon_sym_LBRACK, - STATE(4679), 1, + STATE(5131), 1, aux_sym_object_pattern_repeat1, - STATE(5173), 1, + STATE(5191), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4787), 2, + ACTIONS(4435), 2, sym_number, sym_private_property_identifier, - ACTIONS(4789), 2, + ACTIONS(4439), 2, anon_sym_get, anon_sym_set, - STATE(3784), 3, + STATE(3080), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 7, + ACTIONS(3758), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -175959,12 +173236,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2323), 21, + ACTIONS(3646), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -175981,21 +173257,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [42186] = 8, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4522), 1, - anon_sym_LT, - ACTIONS(4793), 1, - anon_sym_DOT, - STATE(1995), 1, - sym_arguments, - STATE(1996), 1, - sym_type_arguments, + [41064] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3458), 12, + ACTIONS(1871), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -176006,17 +173272,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3454), 27, + ACTIONS(1869), 31, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, + anon_sym_while, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -176035,92 +173306,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [42249] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1737), 13, + anon_sym_PIPE_RBRACE, + [41117] = 15, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(3752), 1, + anon_sym_COMMA, + ACTIONS(3800), 1, + anon_sym_RBRACE, + ACTIONS(4427), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1735), 31, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(4736), 1, + anon_sym_LBRACK, + STATE(5129), 1, + aux_sym_object_repeat1, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4738), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4740), 2, + anon_sym_get, + anon_sym_set, + STATE(3890), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 7, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - anon_sym_while, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [41194] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, anon_sym_LBRACK, + ACTIONS(3942), 1, anon_sym_DOT, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4465), 1, anon_sym_AMP_AMP, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4469), 1, + anon_sym_GT_GT, + ACTIONS(4473), 1, + anon_sym_AMP, + ACTIONS(4475), 1, anon_sym_CARET, + ACTIONS(4477), 1, + anon_sym_PIPE, + ACTIONS(4481), 1, anon_sym_PERCENT, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4485), 1, + anon_sym_LT, + ACTIONS(4493), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(4499), 1, + sym__ternary_qmark, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4457), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4463), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4471), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4479), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4489), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [42302] = 16, - ACTIONS(1588), 1, + ACTIONS(4487), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4744), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [41303] = 16, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(3785), 1, + ACTIONS(3752), 1, anon_sym_COMMA, - ACTIONS(3866), 1, + ACTIONS(3868), 1, anon_sym_RBRACE, - ACTIONS(4467), 1, + ACTIONS(4427), 1, anon_sym_STAR, - ACTIONS(4469), 1, + ACTIONS(4429), 1, anon_sym_EQ, - ACTIONS(4473), 1, + ACTIONS(4433), 1, anon_sym_async, - ACTIONS(4771), 1, + ACTIONS(4742), 1, anon_sym_LBRACK, - STATE(4679), 1, + STATE(5131), 1, aux_sym_object_pattern_repeat1, - STATE(5173), 1, + STATE(5191), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4475), 2, + ACTIONS(4435), 2, sym_number, sym_private_property_identifier, - ACTIONS(4479), 2, + ACTIONS(4439), 2, anon_sym_get, anon_sym_set, - STATE(3058), 3, + STATE(3080), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 7, + ACTIONS(3758), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -176128,7 +173489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3651), 20, + ACTIONS(3646), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -176149,43 +173510,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [42381] = 17, - ACTIONS(1588), 1, + [41382] = 4, + ACTIONS(4746), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1811), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1809), 30, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_while, + anon_sym_LBRACK, + anon_sym_DOT, + 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_satisfies, + anon_sym_PIPE_RBRACE, + [41437] = 17, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(4795), 1, + ACTIONS(4748), 1, anon_sym_STAR, - ACTIONS(4797), 1, + ACTIONS(4750), 1, anon_sym_LBRACE, - ACTIONS(4799), 1, + ACTIONS(4752), 1, anon_sym_async, - ACTIONS(4803), 1, + ACTIONS(4756), 1, anon_sym_readonly, - ACTIONS(4807), 1, + ACTIONS(4760), 1, sym__automatic_semicolon, - STATE(2672), 1, + STATE(2674), 1, sym_statement_block, - STATE(2750), 1, + STATE(2746), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4801), 2, + ACTIONS(4754), 2, sym_number, sym_private_property_identifier, - ACTIONS(4805), 2, + ACTIONS(4758), 2, anon_sym_get, anon_sym_set, - STATE(3005), 3, + STATE(3017), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 8, + ACTIONS(3758), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -176194,7 +173606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3651), 18, + ACTIONS(3646), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -176213,47 +173625,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [42462] = 15, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(3785), 1, + [41518] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1665), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4763), 5, anon_sym_COMMA, - ACTIONS(3877), 1, anon_sym_RBRACE, - ACTIONS(4467), 1, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(1663), 13, anon_sym_STAR, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1667), 24, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, + 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_satisfies, + [41575] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1841), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1839), 31, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_while, + anon_sym_LBRACK, + anon_sym_DOT, + 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_satisfies, + anon_sym_PIPE_RBRACE, + [41628] = 16, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4431), 1, + anon_sym_LBRACK, + ACTIONS(4768), 1, + anon_sym_static, + ACTIONS(4770), 1, + anon_sym_readonly, + ACTIONS(4772), 1, + anon_sym_abstract, + ACTIONS(4774), 1, + anon_sym_accessor, + STATE(2698), 1, + sym_accessibility_modifier, + STATE(2799), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4787), 2, + ACTIONS(4766), 2, sym_number, sym_private_property_identifier, - ACTIONS(4789), 2, - anon_sym_get, - anon_sym_set, - STATE(3784), 3, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3394), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 7, + ACTIONS(3758), 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(2323), 21, + ACTIONS(3646), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -176261,13 +173780,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, - anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -176275,39 +173790,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [42539] = 5, + [41707] = 7, + ACTIONS(3437), 1, + anon_sym_EQ, + ACTIONS(4146), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4315), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4810), 5, + ACTIONS(4606), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4313), 13, + anon_sym_LBRACK, + ACTIONS(4609), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3435), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4317), 24, + ACTIONS(3439), 27, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -176327,41 +173844,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [42596] = 16, - ACTIONS(1588), 1, + [41768] = 15, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(3785), 1, + ACTIONS(3752), 1, anon_sym_COMMA, - ACTIONS(3882), 1, + ACTIONS(3803), 1, anon_sym_RBRACE, - ACTIONS(4467), 1, + ACTIONS(4427), 1, anon_sym_STAR, - ACTIONS(4469), 1, + ACTIONS(4429), 1, anon_sym_EQ, - ACTIONS(4473), 1, - anon_sym_async, - ACTIONS(4771), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - STATE(4673), 1, - aux_sym_object_repeat1, - STATE(4679), 1, + STATE(5131), 1, aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4475), 2, + ACTIONS(4738), 2, sym_number, sym_private_property_identifier, - ACTIONS(4479), 2, + ACTIONS(4740), 2, anon_sym_get, anon_sym_set, - STATE(3058), 3, + STATE(3890), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 7, + ACTIONS(3758), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -176369,11 +173884,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3651), 20, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -176390,41 +173906,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [42675] = 16, - ACTIONS(1588), 1, + [41845] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1835), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1833), 31, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_while, + anon_sym_LBRACK, + anon_sym_DOT, + 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_satisfies, + anon_sym_PIPE_RBRACE, + [41898] = 16, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(3785), 1, + ACTIONS(3752), 1, anon_sym_COMMA, - ACTIONS(3788), 1, + ACTIONS(3800), 1, anon_sym_RBRACE, - ACTIONS(4467), 1, + ACTIONS(4427), 1, anon_sym_STAR, - ACTIONS(4469), 1, + ACTIONS(4429), 1, anon_sym_EQ, - ACTIONS(4473), 1, + ACTIONS(4433), 1, anon_sym_async, - ACTIONS(4771), 1, + ACTIONS(4742), 1, anon_sym_LBRACK, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, + STATE(5129), 1, aux_sym_object_repeat1, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4475), 2, + ACTIONS(4435), 2, sym_number, sym_private_property_identifier, - ACTIONS(4479), 2, + ACTIONS(4439), 2, anon_sym_get, anon_sym_set, - STATE(3058), 3, + STATE(3080), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 7, + ACTIONS(3758), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -176432,7 +173998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3651), 20, + ACTIONS(3646), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -176453,42 +174019,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [42754] = 7, - ACTIONS(3450), 1, - anon_sym_EQ, - ACTIONS(4123), 1, - anon_sym_extends, + [41977] = 7, + ACTIONS(4543), 1, + anon_sym_LT, + ACTIONS(4776), 1, + anon_sym_DOT, + ACTIONS(4778), 1, + anon_sym_is, + STATE(1888), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4712), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4715), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3448), 10, + ACTIONS(4006), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 27, + ACTIONS(3501), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_DOT, + anon_sym_of, + anon_sym_LBRACK, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -176507,11 +174072,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [42815] = 3, + anon_sym_extends, + [42038] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1925), 13, + ACTIONS(1725), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -176525,7 +174091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1923), 31, + ACTIONS(1723), 31, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -176557,39 +174123,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_PIPE_RBRACE, - [42868] = 15, - ACTIONS(2291), 1, + [42091] = 15, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(3785), 1, + ACTIONS(3752), 1, anon_sym_COMMA, - ACTIONS(3882), 1, + ACTIONS(3877), 1, anon_sym_RBRACE, - ACTIONS(4467), 1, + ACTIONS(4427), 1, anon_sym_STAR, - ACTIONS(4469), 1, + ACTIONS(4429), 1, anon_sym_EQ, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - STATE(4673), 1, - aux_sym_object_repeat1, - STATE(4679), 1, + STATE(5131), 1, aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4787), 2, + ACTIONS(4738), 2, sym_number, sym_private_property_identifier, - ACTIONS(4789), 2, + ACTIONS(4740), 2, anon_sym_get, anon_sym_set, - STATE(3784), 3, + STATE(3890), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 7, + ACTIONS(3758), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -176597,7 +174163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2323), 21, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -176619,19 +174185,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [42945] = 7, - ACTIONS(4522), 1, + [42168] = 8, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4543), 1, anon_sym_LT, - ACTIONS(4813), 1, + ACTIONS(4780), 1, anon_sym_DOT, - ACTIONS(4815), 1, - anon_sym_is, - STATE(1966), 1, + STATE(1901), 1, + sym_arguments, + STATE(1902), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4009), 12, + ACTIONS(3445), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -176644,13 +174212,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3498), 28, + ACTIONS(3441), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, @@ -176673,30 +174240,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [43006] = 12, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + [42231] = 8, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4817), 1, + ACTIONS(4543), 1, anon_sym_LT, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, + ACTIONS(4782), 1, + anon_sym_DOT, + STATE(1903), 1, sym_arguments, - STATE(5093), 1, - sym_optional_chain, + STATE(1904), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4736), 12, + ACTIONS(3996), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -176709,13 +174267,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4738), 21, + ACTIONS(3998), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_of, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -176729,136 +174290,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [43076] = 35, - ACTIONS(3541), 1, - anon_sym_COLON, - ACTIONS(3959), 1, + anon_sym_extends, + [42294] = 8, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4543), 1, anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - ACTIONS(4822), 1, - anon_sym_COMMA, - ACTIONS(4824), 1, - anon_sym_RPAREN, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, + ACTIONS(4784), 1, + anon_sym_DOT, + STATE(1905), 1, sym_arguments, - STATE(3625), 1, - aux_sym_sequence_expression_repeat1, - STATE(5091), 1, - sym_optional_chain, - STATE(5620), 1, - sym_type_annotation, + STATE(1906), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4014), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [43192] = 15, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4830), 1, - anon_sym_LT, - ACTIONS(4833), 1, - anon_sym_satisfies, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4616), 11, - anon_sym_STAR, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4618), 19, + ACTIONS(4016), 27, sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -176872,91 +174345,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [43268] = 31, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 1, anon_sym_satisfies, - ACTIONS(4839), 1, - anon_sym_AMP_AMP, - ACTIONS(4841), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4843), 1, - anon_sym_GT_GT, - ACTIONS(4847), 1, - anon_sym_AMP, - ACTIONS(4849), 1, - anon_sym_CARET, - ACTIONS(4851), 1, - anon_sym_PIPE, - ACTIONS(4855), 1, - anon_sym_PERCENT, - ACTIONS(4857), 1, - anon_sym_STAR_STAR, - ACTIONS(4859), 1, - anon_sym_LT, - ACTIONS(4867), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4869), 1, - sym__ternary_qmark, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, + anon_sym_extends, + [42357] = 16, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4431), 1, + anon_sym_LBRACK, + ACTIONS(4788), 1, + anon_sym_static, + ACTIONS(4790), 1, + anon_sym_readonly, + ACTIONS(4792), 1, + anon_sym_abstract, + ACTIONS(4794), 1, + anon_sym_accessor, + STATE(2690), 1, + sym_accessibility_modifier, + STATE(2817), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4835), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4837), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4845), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4853), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4863), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4865), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4861), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4708), 5, + ACTIONS(4786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3312), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 9, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_BQUOTE, - [43376] = 4, - ACTIONS(3450), 1, - anon_sym_EQ, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3646), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + 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, + anon_sym_object, + [42436] = 4, + ACTIONS(4796), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3448), 13, + ACTIONS(1661), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -176970,17 +174433,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 29, + ACTIONS(1659), 30, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_of, + anon_sym_while, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -177000,98 +174463,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [43430] = 31, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(4839), 1, - anon_sym_AMP_AMP, - ACTIONS(4841), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4843), 1, - anon_sym_GT_GT, - ACTIONS(4847), 1, - anon_sym_AMP, - ACTIONS(4849), 1, - anon_sym_CARET, - ACTIONS(4851), 1, - anon_sym_PIPE, - ACTIONS(4855), 1, - anon_sym_PERCENT, - ACTIONS(4857), 1, - anon_sym_STAR_STAR, - ACTIONS(4859), 1, - anon_sym_LT, - ACTIONS(4867), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4869), 1, - sym__ternary_qmark, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4835), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4837), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4845), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4853), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4863), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4865), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4861), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4651), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BQUOTE, - [43538] = 6, - ACTIONS(3546), 1, - anon_sym_EQ, - ACTIONS(3556), 1, - anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [42491] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3549), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3448), 13, + ACTIONS(1739), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -177105,10 +174482,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 23, + ACTIONS(1737), 31, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_while, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -177129,21 +174513,209 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [43596] = 6, - ACTIONS(3484), 1, + anon_sym_PIPE_RBRACE, + [42544] = 15, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(3752), 1, + anon_sym_COMMA, + ACTIONS(3755), 1, + anon_sym_RBRACE, + ACTIONS(4427), 1, + anon_sym_STAR, + ACTIONS(4429), 1, anon_sym_EQ, - ACTIONS(3598), 1, + ACTIONS(4736), 1, + anon_sym_LBRACK, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4738), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4740), 2, + anon_sym_get, + anon_sym_set, + STATE(3890), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [42621] = 16, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 1, + anon_sym_SQUOTE, + ACTIONS(3752), 1, + anon_sym_COMMA, + ACTIONS(3755), 1, + anon_sym_RBRACE, + ACTIONS(4427), 1, + anon_sym_STAR, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(4433), 1, + anon_sym_async, + ACTIONS(4742), 1, + anon_sym_LBRACK, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4435), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4439), 2, + anon_sym_get, + anon_sym_set, + STATE(3080), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [42700] = 16, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 1, + anon_sym_SQUOTE, + ACTIONS(3752), 1, + anon_sym_COMMA, + ACTIONS(3803), 1, + anon_sym_RBRACE, + ACTIONS(4427), 1, + anon_sym_STAR, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(4433), 1, + anon_sym_async, + ACTIONS(4742), 1, + anon_sym_LBRACK, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4435), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4439), 2, + anon_sym_get, + anon_sym_set, + STATE(3080), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [42779] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3596), 5, + ACTIONS(4104), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4798), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(3448), 13, + ACTIONS(4102), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -177157,10 +174729,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 23, + ACTIONS(4106), 24, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -177181,11 +174754,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [43654] = 3, + [42836] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1670), 13, + ACTIONS(4614), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4801), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4612), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -177199,14 +174781,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1668), 30, - sym__automatic_semicolon, + ACTIONS(4616), 24, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, @@ -177228,19 +174806,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_is, - [43706] = 6, - ACTIONS(4522), 1, - anon_sym_LT, - ACTIONS(4813), 1, + [42893] = 9, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(4537), 1, + anon_sym_LBRACK, + ACTIONS(4539), 1, anon_sym_DOT, - STATE(1966), 1, - sym_type_arguments, + ACTIONS(4541), 1, + anon_sym_QMARK_DOT, + STATE(2315), 1, + sym_template_string, + STATE(4753), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4009), 12, + ACTIONS(1877), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -177251,9 +174833,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3498), 28, + ACTIONS(1879), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -177262,8 +174845,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -177279,40 +174860,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [43764] = 5, - ACTIONS(4522), 1, - anon_sym_LT, - STATE(1975), 1, - sym_type_arguments, + [42957] = 8, + ACTIONS(1665), 1, + anon_sym_EQ, + ACTIONS(4066), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4027), 12, + ACTIONS(4069), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4804), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2326), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(1663), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4029), 29, - sym__automatic_semicolon, + ACTIONS(1667), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -177332,91 +174915,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [43820] = 6, - ACTIONS(4514), 1, + [43019] = 18, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4871), 1, + ACTIONS(4537), 1, + anon_sym_LBRACK, + ACTIONS(4539), 1, anon_sym_DOT, + ACTIONS(4810), 1, + anon_sym_GT_GT, + ACTIONS(4816), 1, + anon_sym_PERCENT, + ACTIONS(4818), 1, + anon_sym_STAR_STAR, + ACTIONS(4820), 1, + anon_sym_LT, STATE(1976), 1, + sym_type_arguments, + STATE(2240), 1, sym_arguments, + STATE(4753), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4039), 13, + ACTIONS(4808), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4812), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4814), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4585), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4041), 27, + ACTIONS(4583), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_of, - 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_satisfies, - anon_sym_extends, - [43878] = 4, - ACTIONS(4877), 1, - sym_regex_flags, + [43101] = 7, + ACTIONS(1665), 1, + anon_sym_EQ, + ACTIONS(4066), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4873), 16, + ACTIONS(2326), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4069), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1663), 10, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_satisfies, - ACTIONS(4875), 26, + ACTIONS(1667), 26, sym__ternary_qmark, - anon_sym_COMMA, + anon_sym_as, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -177432,255 +175027,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [43932] = 31, - ACTIONS(4425), 1, + anon_sym_satisfies, + [43161] = 18, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(4839), 1, - anon_sym_AMP_AMP, - ACTIONS(4841), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4843), 1, anon_sym_GT_GT, - ACTIONS(4847), 1, - anon_sym_AMP, - ACTIONS(4849), 1, - anon_sym_CARET, - ACTIONS(4851), 1, - anon_sym_PIPE, - ACTIONS(4855), 1, + ACTIONS(4832), 1, anon_sym_PERCENT, - ACTIONS(4857), 1, + ACTIONS(4834), 1, anon_sym_STAR_STAR, - ACTIONS(4859), 1, + ACTIONS(4836), 1, anon_sym_LT, - ACTIONS(4867), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4869), 1, - sym__ternary_qmark, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4835), 2, + ACTIONS(4824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4837), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4845), 2, + ACTIONS(4828), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4853), 2, + ACTIONS(4830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4863), 2, + ACTIONS(4585), 7, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4865), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4861), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4710), 5, + ACTIONS(4583), 17, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_BQUOTE, - [44040] = 31, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(4839), 1, anon_sym_AMP_AMP, - ACTIONS(4841), 1, anon_sym_PIPE_PIPE, - ACTIONS(4843), 1, - anon_sym_GT_GT, - ACTIONS(4847), 1, - anon_sym_AMP, - ACTIONS(4849), 1, anon_sym_CARET, - ACTIONS(4851), 1, - anon_sym_PIPE, - ACTIONS(4855), 1, - anon_sym_PERCENT, - ACTIONS(4857), 1, - anon_sym_STAR_STAR, - ACTIONS(4859), 1, - anon_sym_LT, - ACTIONS(4867), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4869), 1, - sym__ternary_qmark, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4835), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4837), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4845), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4853), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4863), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4865), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4861), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4610), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_BQUOTE, - [44148] = 18, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4843), 1, - anon_sym_GT_GT, - ACTIONS(4855), 1, - anon_sym_PERCENT, - ACTIONS(4857), 1, - anon_sym_STAR_STAR, - ACTIONS(4859), 1, - anon_sym_LT, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, + anon_sym_satisfies, + [43243] = 7, + ACTIONS(4104), 1, + anon_sym_EQ, + ACTIONS(4114), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4835), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4845), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4853), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4483), 7, - anon_sym_BANG, - anon_sym_in, + ACTIONS(4108), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4111), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(4102), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 17, + ACTIONS(4106), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, + 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_satisfies, - [44230] = 3, + [43303] = 8, + ACTIONS(4104), 1, + anon_sym_EQ, + ACTIONS(4108), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3175), 13, + ACTIONS(4111), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4838), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4114), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4102), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3177), 30, - sym__automatic_semicolon, + ACTIONS(4106), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -177700,559 +175203,537 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [44282] = 13, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, + [43365] = 7, + ACTIONS(4104), 1, + anon_sym_EQ, + ACTIONS(4108), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4857), 1, - anon_sym_STAR_STAR, - ACTIONS(4879), 1, - anon_sym_LT, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4483), 12, + ACTIONS(4114), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4111), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4102), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 20, - sym__automatic_semicolon, + ACTIONS(4106), 26, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_of, + 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, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_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_satisfies, - [44354] = 25, - ACTIONS(4425), 1, + [43425] = 16, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4483), 1, - anon_sym_BANG, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4843), 1, - anon_sym_GT_GT, - ACTIONS(4847), 1, - anon_sym_AMP, - ACTIONS(4849), 1, - anon_sym_CARET, - ACTIONS(4851), 1, - anon_sym_PIPE, - ACTIONS(4855), 1, - anon_sym_PERCENT, - ACTIONS(4857), 1, + ACTIONS(4834), 1, anon_sym_STAR_STAR, - ACTIONS(4859), 1, + ACTIONS(4842), 1, + anon_sym_as, + ACTIONS(4844), 1, + anon_sym_BANG, + ACTIONS(4846), 1, anon_sym_LT, - STATE(1945), 1, + ACTIONS(4849), 1, + anon_sym_satisfies, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4835), 2, + ACTIONS(4585), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4837), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4845), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4853), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4863), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4865), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4861), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4481), 11, + ACTIONS(4583), 18, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [44450] = 26, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4483), 1, - anon_sym_BANG, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4839), 1, - anon_sym_AMP_AMP, - ACTIONS(4843), 1, - anon_sym_GT_GT, - ACTIONS(4847), 1, - anon_sym_AMP, - ACTIONS(4849), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4851), 1, - anon_sym_PIPE, - ACTIONS(4855), 1, anon_sym_PERCENT, - ACTIONS(4857), 1, - anon_sym_STAR_STAR, - ACTIONS(4859), 1, - anon_sym_LT, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [43503] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4835), 2, + ACTIONS(3186), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4837), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4845), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4853), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4863), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4865), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4861), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4481), 10, + ACTIONS(3188), 30, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [44548] = 16, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(4518), 1, anon_sym_DOT, - ACTIONS(4855), 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, - ACTIONS(4857), 1, anon_sym_STAR_STAR, - ACTIONS(4879), 1, - anon_sym_LT, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [43555] = 4, + ACTIONS(3437), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4835), 2, + ACTIONS(3435), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4853), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4483), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 19, - sym__automatic_semicolon, + ACTIONS(3439), 29, sym__ternary_qmark, 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_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_satisfies, - [44626] = 22, - ACTIONS(4425), 1, + [43609] = 31, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4843), 1, + ACTIONS(4826), 1, anon_sym_GT_GT, - ACTIONS(4855), 1, + ACTIONS(4832), 1, anon_sym_PERCENT, - ACTIONS(4857), 1, + ACTIONS(4834), 1, anon_sym_STAR_STAR, - ACTIONS(4859), 1, + ACTIONS(4836), 1, anon_sym_LT, - STATE(1945), 1, + ACTIONS(4842), 1, + anon_sym_as, + ACTIONS(4844), 1, + anon_sym_BANG, + ACTIONS(4849), 1, + anon_sym_satisfies, + ACTIONS(4853), 1, + anon_sym_AMP_AMP, + ACTIONS(4855), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4857), 1, + anon_sym_AMP, + ACTIONS(4859), 1, + anon_sym_CARET, + ACTIONS(4861), 1, + anon_sym_PIPE, + ACTIONS(4869), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4871), 1, + sym__ternary_qmark, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4835), 2, + ACTIONS(4824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4837), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4845), 2, + ACTIONS(4828), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4853), 2, + ACTIONS(4830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4863), 2, + ACTIONS(4851), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4865), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4865), 2, + ACTIONS(4867), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4483), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4861), 3, + ACTIONS(4863), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 12, + ACTIONS(4642), 5, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - anon_sym_satisfies, - [44716] = 23, - ACTIONS(4425), 1, + [43717] = 31, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4843), 1, + ACTIONS(4826), 1, anon_sym_GT_GT, - ACTIONS(4847), 1, - anon_sym_AMP, - ACTIONS(4855), 1, + ACTIONS(4832), 1, anon_sym_PERCENT, - ACTIONS(4857), 1, + ACTIONS(4834), 1, anon_sym_STAR_STAR, - ACTIONS(4859), 1, + ACTIONS(4836), 1, anon_sym_LT, - STATE(1945), 1, + ACTIONS(4842), 1, + anon_sym_as, + ACTIONS(4844), 1, + anon_sym_BANG, + ACTIONS(4849), 1, + anon_sym_satisfies, + ACTIONS(4853), 1, + anon_sym_AMP_AMP, + ACTIONS(4855), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4857), 1, + anon_sym_AMP, + ACTIONS(4859), 1, + anon_sym_CARET, + ACTIONS(4861), 1, + anon_sym_PIPE, + ACTIONS(4869), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4871), 1, + sym__ternary_qmark, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4483), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4835), 2, + ACTIONS(4824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4837), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4845), 2, + ACTIONS(4828), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4853), 2, + ACTIONS(4830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4863), 2, + ACTIONS(4851), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4865), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4865), 2, + ACTIONS(4867), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4861), 3, + ACTIONS(4863), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 12, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [44808] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4063), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4065), 30, + ACTIONS(4708), 5, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - 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_satisfies, - anon_sym_extends, - anon_sym_is, - [44860] = 24, - ACTIONS(4425), 1, + [43825] = 31, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4843), 1, + ACTIONS(4810), 1, anon_sym_GT_GT, - ACTIONS(4847), 1, - anon_sym_AMP, - ACTIONS(4849), 1, - anon_sym_CARET, - ACTIONS(4855), 1, + ACTIONS(4816), 1, anon_sym_PERCENT, - ACTIONS(4857), 1, + ACTIONS(4818), 1, anon_sym_STAR_STAR, - ACTIONS(4859), 1, + ACTIONS(4820), 1, anon_sym_LT, - STATE(1945), 1, + ACTIONS(4842), 1, + anon_sym_as, + ACTIONS(4844), 1, + anon_sym_BANG, + ACTIONS(4849), 1, + anon_sym_satisfies, + ACTIONS(4875), 1, + anon_sym_AMP_AMP, + ACTIONS(4877), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4879), 1, + anon_sym_AMP, + ACTIONS(4881), 1, + anon_sym_CARET, + ACTIONS(4883), 1, + anon_sym_PIPE, + ACTIONS(4891), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4893), 1, + sym__ternary_qmark, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4483), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4835), 2, + ACTIONS(4808), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4837), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4845), 2, + ACTIONS(4812), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4853), 2, + ACTIONS(4814), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4863), 2, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4873), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4887), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4865), 2, + ACTIONS(4889), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4861), 3, + ACTIONS(4885), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 11, + ACTIONS(4716), 5, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, + anon_sym_of, anon_sym_BQUOTE, - anon_sym_satisfies, - [44954] = 15, - ACTIONS(4425), 1, + [43933] = 13, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(3752), 1, + anon_sym_COMMA, + ACTIONS(3803), 1, + anon_sym_RBRACE, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(4736), 1, + anon_sym_LBRACK, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4738), 2, + sym_number, + sym_private_property_identifier, + STATE(3890), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [44005] = 13, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4855), 1, - anon_sym_PERCENT, - ACTIONS(4857), 1, + ACTIONS(4834), 1, anon_sym_STAR_STAR, - ACTIONS(4879), 1, + ACTIONS(4846), 1, anon_sym_LT, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4835), 2, + ACTIONS(4585), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4483), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -178261,9 +175742,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 19, + ACTIONS(4583), 20, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -178275,6 +175757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -178283,441 +175766,667 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [45030] = 16, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, + [44077] = 13, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(3752), 1, + anon_sym_COMMA, + ACTIONS(3877), 1, + anon_sym_RBRACE, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(4857), 1, - anon_sym_STAR_STAR, - ACTIONS(4879), 1, - anon_sym_LT, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, - ACTIONS(5), 2, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4483), 11, - anon_sym_STAR, - anon_sym_in, - anon_sym_GT, + ACTIONS(4738), 2, + sym_number, + sym_private_property_identifier, + STATE(3890), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [44149] = 31, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, + anon_sym_LBRACK, + ACTIONS(4539), 1, + anon_sym_DOT, + ACTIONS(4810), 1, anon_sym_GT_GT, + ACTIONS(4816), 1, + anon_sym_PERCENT, + ACTIONS(4818), 1, + anon_sym_STAR_STAR, + ACTIONS(4820), 1, + anon_sym_LT, + ACTIONS(4842), 1, + anon_sym_as, + ACTIONS(4844), 1, + anon_sym_BANG, + ACTIONS(4849), 1, + anon_sym_satisfies, + ACTIONS(4875), 1, + anon_sym_AMP_AMP, + ACTIONS(4877), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4879), 1, anon_sym_AMP, + ACTIONS(4881), 1, + anon_sym_CARET, + ACTIONS(4883), 1, anon_sym_PIPE, + ACTIONS(4891), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4893), 1, + sym__ternary_qmark, + STATE(1976), 1, + sym_type_arguments, + STATE(2240), 1, + sym_arguments, + STATE(4753), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4808), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4812), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4814), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4873), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4887), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 18, + ACTIONS(4889), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4885), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4728), 5, sym__automatic_semicolon, - sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_of, + anon_sym_BQUOTE, + [44257] = 31, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, + anon_sym_LBRACK, + ACTIONS(4539), 1, + anon_sym_DOT, + ACTIONS(4826), 1, + anon_sym_GT_GT, + ACTIONS(4832), 1, + anon_sym_PERCENT, + ACTIONS(4834), 1, + anon_sym_STAR_STAR, + ACTIONS(4836), 1, + anon_sym_LT, + ACTIONS(4842), 1, + anon_sym_as, + ACTIONS(4844), 1, + anon_sym_BANG, + ACTIONS(4849), 1, + anon_sym_satisfies, + ACTIONS(4853), 1, anon_sym_AMP_AMP, + ACTIONS(4855), 1, anon_sym_PIPE_PIPE, + ACTIONS(4857), 1, + anon_sym_AMP, + ACTIONS(4859), 1, + anon_sym_CARET, + ACTIONS(4861), 1, + anon_sym_PIPE, + ACTIONS(4869), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4871), 1, + sym__ternary_qmark, + STATE(1976), 1, + sym_type_arguments, + STATE(2240), 1, + sym_arguments, + STATE(4753), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4824), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4828), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, + ACTIONS(4830), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4851), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4865), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4867), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4863), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, + ACTIONS(4648), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_BQUOTE, - [45108] = 20, - ACTIONS(4425), 1, + [44365] = 25, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4843), 1, + ACTIONS(4585), 1, + anon_sym_BANG, + ACTIONS(4826), 1, anon_sym_GT_GT, - ACTIONS(4855), 1, + ACTIONS(4832), 1, anon_sym_PERCENT, - ACTIONS(4857), 1, + ACTIONS(4834), 1, anon_sym_STAR_STAR, - ACTIONS(4859), 1, + ACTIONS(4836), 1, anon_sym_LT, - STATE(1945), 1, + ACTIONS(4857), 1, + anon_sym_AMP, + ACTIONS(4859), 1, + anon_sym_CARET, + ACTIONS(4861), 1, + anon_sym_PIPE, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4835), 2, + ACTIONS(4824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4837), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4845), 2, + ACTIONS(4828), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4853), 2, + ACTIONS(4830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4861), 3, + ACTIONS(4851), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4865), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4867), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4863), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4483), 5, + ACTIONS(4583), 11, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [44461] = 6, + ACTIONS(3523), 1, + anon_sym_EQ, + ACTIONS(3548), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3567), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3435), 13, + anon_sym_STAR, anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 14, - sym__automatic_semicolon, + ACTIONS(3439), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + 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_satisfies, - [45194] = 27, - ACTIONS(4425), 1, + [44519] = 24, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4483), 1, - anon_sym_BANG, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4839), 1, - anon_sym_AMP_AMP, - ACTIONS(4841), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4843), 1, + ACTIONS(4826), 1, anon_sym_GT_GT, - ACTIONS(4847), 1, - anon_sym_AMP, - ACTIONS(4849), 1, - anon_sym_CARET, - ACTIONS(4851), 1, - anon_sym_PIPE, - ACTIONS(4855), 1, + ACTIONS(4832), 1, anon_sym_PERCENT, - ACTIONS(4857), 1, + ACTIONS(4834), 1, anon_sym_STAR_STAR, - ACTIONS(4859), 1, + ACTIONS(4836), 1, anon_sym_LT, - STATE(1945), 1, + ACTIONS(4857), 1, + anon_sym_AMP, + ACTIONS(4859), 1, + anon_sym_CARET, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4585), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4835), 2, + ACTIONS(4824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4837), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4845), 2, + ACTIONS(4828), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4853), 2, + ACTIONS(4830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4863), 2, + ACTIONS(4851), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4865), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4865), 2, + ACTIONS(4867), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4861), 3, + ACTIONS(4863), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 9, + ACTIONS(4583), 11, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [45294] = 13, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(3785), 1, - anon_sym_COMMA, - ACTIONS(3877), 1, - anon_sym_RBRACE, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, + [44613] = 31, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, anon_sym_LBRACK, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, + ACTIONS(4539), 1, + anon_sym_DOT, + ACTIONS(4810), 1, + anon_sym_GT_GT, + ACTIONS(4816), 1, + anon_sym_PERCENT, + ACTIONS(4818), 1, + anon_sym_STAR_STAR, + ACTIONS(4820), 1, + anon_sym_LT, + ACTIONS(4842), 1, + anon_sym_as, + ACTIONS(4844), 1, + anon_sym_BANG, + ACTIONS(4849), 1, + anon_sym_satisfies, + ACTIONS(4875), 1, + anon_sym_AMP_AMP, + ACTIONS(4877), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4879), 1, + anon_sym_AMP, + ACTIONS(4881), 1, + anon_sym_CARET, + ACTIONS(4883), 1, + anon_sym_PIPE, + ACTIONS(4891), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4893), 1, + sym__ternary_qmark, + STATE(1976), 1, + sym_type_arguments, + STATE(2240), 1, + sym_arguments, + STATE(4753), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4787), 2, - sym_number, - sym_private_property_identifier, - STATE(3784), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 7, + ACTIONS(4808), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4812), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4814), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4873), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4887), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4889), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4885), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4501), 5, sym__automatic_semicolon, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2323), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [45366] = 31, - ACTIONS(4425), 1, + anon_sym_of, + anon_sym_BQUOTE, + [44721] = 31, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4826), 1, + ACTIONS(4810), 1, + anon_sym_GT_GT, + ACTIONS(4816), 1, + anon_sym_PERCENT, + ACTIONS(4818), 1, + anon_sym_STAR_STAR, + ACTIONS(4820), 1, + anon_sym_LT, + ACTIONS(4842), 1, anon_sym_as, - ACTIONS(4828), 1, + ACTIONS(4844), 1, anon_sym_BANG, - ACTIONS(4833), 1, + ACTIONS(4849), 1, anon_sym_satisfies, - ACTIONS(4839), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4841), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4843), 1, - anon_sym_GT_GT, - ACTIONS(4847), 1, + ACTIONS(4879), 1, anon_sym_AMP, - ACTIONS(4849), 1, + ACTIONS(4881), 1, anon_sym_CARET, - ACTIONS(4851), 1, + ACTIONS(4883), 1, anon_sym_PIPE, - ACTIONS(4855), 1, - anon_sym_PERCENT, - ACTIONS(4857), 1, - anon_sym_STAR_STAR, - ACTIONS(4859), 1, - anon_sym_LT, - ACTIONS(4867), 1, + ACTIONS(4891), 1, anon_sym_QMARK_QMARK, - ACTIONS(4869), 1, + ACTIONS(4893), 1, sym__ternary_qmark, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4835), 2, + ACTIONS(4808), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4837), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4845), 2, + ACTIONS(4812), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4853), 2, + ACTIONS(4814), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4863), 2, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4873), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4887), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4865), 2, + ACTIONS(4889), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4861), 3, + ACTIONS(4885), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4655), 5, + ACTIONS(4732), 5, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_of, anon_sym_BQUOTE, - [45474] = 31, - ACTIONS(4425), 1, + [44829] = 31, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4826), 1, + ACTIONS(4810), 1, + anon_sym_GT_GT, + ACTIONS(4816), 1, + anon_sym_PERCENT, + ACTIONS(4818), 1, + anon_sym_STAR_STAR, + ACTIONS(4820), 1, + anon_sym_LT, + ACTIONS(4842), 1, anon_sym_as, - ACTIONS(4828), 1, + ACTIONS(4844), 1, anon_sym_BANG, - ACTIONS(4833), 1, + ACTIONS(4849), 1, anon_sym_satisfies, - ACTIONS(4839), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4841), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4843), 1, - anon_sym_GT_GT, - ACTIONS(4847), 1, + ACTIONS(4879), 1, anon_sym_AMP, - ACTIONS(4849), 1, + ACTIONS(4881), 1, anon_sym_CARET, - ACTIONS(4851), 1, + ACTIONS(4883), 1, anon_sym_PIPE, - ACTIONS(4855), 1, - anon_sym_PERCENT, - ACTIONS(4857), 1, - anon_sym_STAR_STAR, - ACTIONS(4859), 1, - anon_sym_LT, - ACTIONS(4867), 1, + ACTIONS(4891), 1, anon_sym_QMARK_QMARK, - ACTIONS(4869), 1, + ACTIONS(4893), 1, sym__ternary_qmark, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4835), 2, + ACTIONS(4808), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4837), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4845), 2, + ACTIONS(4812), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4853), 2, + ACTIONS(4814), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4863), 2, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4873), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4887), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4865), 2, + ACTIONS(4889), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4861), 3, + ACTIONS(4885), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4419), 5, + ACTIONS(4503), 5, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_of, anon_sym_BQUOTE, - [45582] = 11, - ACTIONS(4425), 1, + [44937] = 12, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4882), 1, + ACTIONS(4895), 1, anon_sym_LT, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4695), 12, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4674), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -178730,13 +176439,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4697), 23, + ACTIONS(4676), 21, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -178750,19 +176459,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [45650] = 4, - ACTIONS(4815), 1, - anon_sym_is, + [45007] = 15, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, + anon_sym_LBRACK, + ACTIONS(4539), 1, + anon_sym_DOT, + ACTIONS(4842), 1, + anon_sym_as, + ACTIONS(4844), 1, + anon_sym_BANG, + ACTIONS(4849), 1, + anon_sym_satisfies, + ACTIONS(4898), 1, + anon_sym_LT, + STATE(1976), 1, + sym_type_arguments, + STATE(2240), 1, + sym_arguments, + STATE(4753), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4045), 13, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4697), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -178771,21 +176500,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4047), 29, + ACTIONS(4699), 19, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -178799,97 +176521,201 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, + [45083] = 31, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, + anon_sym_LBRACK, + ACTIONS(4539), 1, + anon_sym_DOT, + ACTIONS(4810), 1, + anon_sym_GT_GT, + ACTIONS(4816), 1, + anon_sym_PERCENT, + ACTIONS(4818), 1, + anon_sym_STAR_STAR, + ACTIONS(4820), 1, + anon_sym_LT, + ACTIONS(4842), 1, + anon_sym_as, + ACTIONS(4844), 1, + anon_sym_BANG, + ACTIONS(4849), 1, anon_sym_satisfies, - anon_sym_extends, - [45704] = 4, - ACTIONS(4885), 1, - anon_sym_is, + ACTIONS(4875), 1, + anon_sym_AMP_AMP, + ACTIONS(4877), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4879), 1, + anon_sym_AMP, + ACTIONS(4881), 1, + anon_sym_CARET, + ACTIONS(4883), 1, + anon_sym_PIPE, + ACTIONS(4891), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4893), 1, + sym__ternary_qmark, + STATE(1976), 1, + sym_type_arguments, + STATE(2240), 1, + sym_arguments, + STATE(4753), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4027), 13, + ACTIONS(4808), 2, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(4812), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4814), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4873), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4887), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4029), 29, + ACTIONS(4889), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4885), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4708), 5, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, + anon_sym_BQUOTE, + [45191] = 31, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, anon_sym_LBRACK, + ACTIONS(4539), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4810), 1, + anon_sym_GT_GT, + ACTIONS(4816), 1, + anon_sym_PERCENT, + ACTIONS(4818), 1, + anon_sym_STAR_STAR, + ACTIONS(4820), 1, + anon_sym_LT, + ACTIONS(4842), 1, + anon_sym_as, + ACTIONS(4844), 1, + anon_sym_BANG, + ACTIONS(4849), 1, + anon_sym_satisfies, + ACTIONS(4875), 1, anon_sym_AMP_AMP, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4879), 1, + anon_sym_AMP, + ACTIONS(4881), 1, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4883), 1, + anon_sym_PIPE, + ACTIONS(4891), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4893), 1, + sym__ternary_qmark, + STATE(1976), 1, + sym_type_arguments, + STATE(2240), 1, + sym_arguments, + STATE(4753), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4808), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4812), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4814), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(4873), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4887), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4889), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4885), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4505), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [45758] = 13, - ACTIONS(2291), 1, + [45299] = 14, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(3785), 1, - anon_sym_COMMA, - ACTIONS(3799), 1, - anon_sym_RBRACE, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4431), 1, anon_sym_LBRACK, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, + ACTIONS(4903), 1, + anon_sym_static, + ACTIONS(4905), 1, + anon_sym_readonly, + ACTIONS(4907), 1, + anon_sym_abstract, + ACTIONS(4909), 1, + anon_sym_accessor, + STATE(2800), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4787), 2, + ACTIONS(4901), 2, sym_number, sym_private_property_identifier, - STATE(3784), 3, + STATE(3473), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 7, + ACTIONS(3758), 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(2323), 23, + ACTIONS(3646), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -178897,15 +176723,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -178913,37 +176736,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [45830] = 4, + [45373] = 7, + ACTIONS(1665), 1, + anon_sym_EQ, + ACTIONS(2326), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4165), 4, + ACTIONS(4066), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4369), 13, + anon_sym_LBRACK, + ACTIONS(4069), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1663), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4371), 26, + ACTIONS(1667), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -178963,119 +176789,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [45884] = 4, - ACTIONS(4815), 1, - anon_sym_is, + [45433] = 20, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, + anon_sym_LBRACK, + ACTIONS(4539), 1, + anon_sym_DOT, + ACTIONS(4810), 1, + anon_sym_GT_GT, + ACTIONS(4816), 1, + anon_sym_PERCENT, + ACTIONS(4818), 1, + anon_sym_STAR_STAR, + ACTIONS(4820), 1, + anon_sym_LT, + STATE(1976), 1, + sym_type_arguments, + STATE(2240), 1, + sym_arguments, + STATE(4753), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4035), 13, + ACTIONS(4808), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4812), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4814), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(4885), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4585), 5, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4037), 29, + ACTIONS(4583), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, - 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_satisfies, - anon_sym_extends, - [45938] = 6, - ACTIONS(3518), 1, - anon_sym_EQ, - ACTIONS(3556), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3558), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3448), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3452), 23, - sym__ternary_qmark, - anon_sym_as, + [45519] = 15, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, anon_sym_LPAREN, + ACTIONS(4537), 1, anon_sym_LBRACK, + ACTIONS(4539), 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, + ACTIONS(4832), 1, anon_sym_PERCENT, + ACTIONS(4834), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [45996] = 4, + ACTIONS(4846), 1, + anon_sym_LT, + STATE(1976), 1, + sym_type_arguments, + STATE(2240), 1, + sym_arguments, + STATE(4753), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4181), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4369), 13, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4824), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4585), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -179084,51 +176894,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4371), 26, + ACTIONS(4583), 19, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, - 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, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_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_satisfies, - [46050] = 5, + [45595] = 13, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(3752), 1, + anon_sym_COMMA, + ACTIONS(3800), 1, + anon_sym_RBRACE, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(4736), 1, + anon_sym_LBRACK, + STATE(5129), 1, + aux_sym_object_repeat1, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4315), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4887), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(4738), 2, + sym_number, + sym_private_property_identifier, + STATE(3890), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4313), 13, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [45667] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3162), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -179142,10 +176993,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4317), 23, + ACTIONS(3164), 30, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -179166,125 +177022,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [46106] = 5, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4659), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4889), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [45719] = 35, + ACTIONS(3530), 1, anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4657), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4661), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(3938), 1, anon_sym_LPAREN, + ACTIONS(3940), 1, anon_sym_LBRACK, + ACTIONS(3942), 1, anon_sym_DOT, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4465), 1, anon_sym_AMP_AMP, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4469), 1, + anon_sym_GT_GT, + ACTIONS(4473), 1, + anon_sym_AMP, + ACTIONS(4475), 1, anon_sym_CARET, + ACTIONS(4477), 1, + anon_sym_PIPE, + ACTIONS(4481), 1, anon_sym_PERCENT, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4485), 1, + anon_sym_LT, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4497), 1, anon_sym_satisfies, - [46162] = 5, + ACTIONS(4499), 1, + sym__ternary_qmark, + ACTIONS(4911), 1, + anon_sym_COMMA, + ACTIONS(4913), 1, + anon_sym_RPAREN, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(3558), 1, + aux_sym_sequence_expression_repeat1, + STATE(5072), 1, + sym_optional_chain, + STATE(5910), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1708), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4891), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(1706), 13, + ACTIONS(4457), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4471), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1710), 23, - sym__ternary_qmark, - anon_sym_as, - 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, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [46218] = 9, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4516), 1, + ACTIONS(4487), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [45835] = 11, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4520), 1, - anon_sym_QMARK_DOT, - STATE(2081), 1, - sym_template_string, - STATE(5093), 1, + ACTIONS(4915), 1, + anon_sym_LT, + STATE(1976), 1, + sym_type_arguments, + STATE(2240), 1, + sym_arguments, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1905), 13, + ACTIONS(4414), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -179295,16 +177136,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1907), 24, + ACTIONS(4416), 23, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, anon_sym_AMP_AMP, @@ -179322,196 +177160,400 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [46282] = 7, - ACTIONS(3518), 1, - anon_sym_EQ, - ACTIONS(4712), 1, + [45903] = 35, + ACTIONS(3530), 1, + anon_sym_COLON, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4715), 2, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4465), 1, + anon_sym_AMP_AMP, + ACTIONS(4467), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4469), 1, + anon_sym_GT_GT, + ACTIONS(4473), 1, anon_sym_AMP, + ACTIONS(4475), 1, + anon_sym_CARET, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4123), 6, - sym__automatic_semicolon, + ACTIONS(4481), 1, + anon_sym_PERCENT, + ACTIONS(4483), 1, + anon_sym_STAR_STAR, + ACTIONS(4485), 1, + anon_sym_LT, + ACTIONS(4493), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(4499), 1, + sym__ternary_qmark, + ACTIONS(4911), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3448), 11, + ACTIONS(4918), 1, + anon_sym_RPAREN, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(3558), 1, + aux_sym_sequence_expression_repeat1, + STATE(5072), 1, + sym_optional_chain, + STATE(5804), 1, + sym_type_annotation, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4457), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(4471), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 22, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4491), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4487), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [46019] = 26, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, anon_sym_LPAREN, + ACTIONS(4537), 1, + anon_sym_LBRACK, + ACTIONS(4539), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4585), 1, + anon_sym_BANG, + ACTIONS(4826), 1, + anon_sym_GT_GT, + ACTIONS(4832), 1, + anon_sym_PERCENT, + ACTIONS(4834), 1, + anon_sym_STAR_STAR, + ACTIONS(4836), 1, + anon_sym_LT, + ACTIONS(4853), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4857), 1, + anon_sym_AMP, + ACTIONS(4859), 1, + anon_sym_CARET, + ACTIONS(4861), 1, + anon_sym_PIPE, + STATE(1976), 1, + sym_type_arguments, + STATE(2240), 1, + sym_arguments, + STATE(4753), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4824), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4828), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4830), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4851), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4865), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4867), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4863), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4583), 10, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [46342] = 7, - ACTIONS(1708), 1, - anon_sym_EQ, - ACTIONS(4211), 1, + [46117] = 13, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, anon_sym_LBRACK, + ACTIONS(4539), 1, + anon_sym_DOT, + ACTIONS(4818), 1, + anon_sym_STAR_STAR, + ACTIONS(4920), 1, + anon_sym_LT, + STATE(1976), 1, + sym_type_arguments, + STATE(2240), 1, + sym_arguments, + STATE(4753), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2333), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4214), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1706), 10, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4585), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1710), 26, + ACTIONS(4583), 20, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_of, - 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, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_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_satisfies, - [46402] = 7, - ACTIONS(4315), 1, - anon_sym_EQ, - ACTIONS(4319), 1, + [46189] = 27, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, anon_sym_LBRACK, + ACTIONS(4539), 1, + anon_sym_DOT, + ACTIONS(4585), 1, + anon_sym_BANG, + ACTIONS(4810), 1, + anon_sym_GT_GT, + ACTIONS(4816), 1, + anon_sym_PERCENT, + ACTIONS(4818), 1, + anon_sym_STAR_STAR, + ACTIONS(4820), 1, + anon_sym_LT, + ACTIONS(4875), 1, + anon_sym_AMP_AMP, + ACTIONS(4877), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4879), 1, + anon_sym_AMP, + ACTIONS(4881), 1, + anon_sym_CARET, + ACTIONS(4883), 1, + anon_sym_PIPE, + STATE(1976), 1, + sym_type_arguments, + STATE(2240), 1, + sym_arguments, + STATE(4753), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4105), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4322), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4313), 10, + ACTIONS(4808), 2, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, + anon_sym_SLASH, + ACTIONS(4812), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4814), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4873), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4887), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4317), 26, + ACTIONS(4889), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4885), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4583), 9, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_DOT, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [46289] = 31, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, + anon_sym_LBRACK, + ACTIONS(4539), 1, + anon_sym_DOT, + ACTIONS(4826), 1, + anon_sym_GT_GT, + ACTIONS(4832), 1, + anon_sym_PERCENT, + ACTIONS(4834), 1, + anon_sym_STAR_STAR, + ACTIONS(4836), 1, + anon_sym_LT, + ACTIONS(4842), 1, + anon_sym_as, + ACTIONS(4844), 1, + anon_sym_BANG, + ACTIONS(4849), 1, + anon_sym_satisfies, + ACTIONS(4853), 1, anon_sym_AMP_AMP, + ACTIONS(4855), 1, anon_sym_PIPE_PIPE, + ACTIONS(4857), 1, + anon_sym_AMP, + ACTIONS(4859), 1, + anon_sym_CARET, + ACTIONS(4861), 1, + anon_sym_PIPE, + ACTIONS(4869), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4871), 1, + sym__ternary_qmark, + STATE(1976), 1, + sym_type_arguments, + STATE(2240), 1, + sym_arguments, + STATE(4753), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4824), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4828), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4830), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4851), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4865), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4867), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4863), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4501), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_BQUOTE, - anon_sym_satisfies, - [46462] = 14, - ACTIONS(1588), 1, + [46397] = 14, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(4895), 1, + ACTIONS(4925), 1, anon_sym_static, - ACTIONS(4897), 1, + ACTIONS(4927), 1, anon_sym_readonly, - ACTIONS(4899), 1, + ACTIONS(4929), 1, anon_sym_abstract, - ACTIONS(4901), 1, + ACTIONS(4931), 1, anon_sym_accessor, - STATE(2814), 1, + STATE(2782), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4893), 2, + ACTIONS(4923), 2, sym_number, sym_private_property_identifier, - STATE(3420), 3, + STATE(3437), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -179521,7 +177563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3651), 20, + ACTIONS(3646), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -179542,99 +177584,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [46536] = 12, - ACTIONS(4425), 1, + [46471] = 31, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4903), 1, + ACTIONS(4826), 1, + anon_sym_GT_GT, + ACTIONS(4832), 1, + anon_sym_PERCENT, + ACTIONS(4834), 1, + anon_sym_STAR_STAR, + ACTIONS(4836), 1, anon_sym_LT, - STATE(1945), 1, + ACTIONS(4842), 1, + anon_sym_as, + ACTIONS(4844), 1, + anon_sym_BANG, + ACTIONS(4849), 1, + anon_sym_satisfies, + ACTIONS(4853), 1, + anon_sym_AMP_AMP, + ACTIONS(4855), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4857), 1, + anon_sym_AMP, + ACTIONS(4859), 1, + anon_sym_CARET, + ACTIONS(4861), 1, + anon_sym_PIPE, + ACTIONS(4869), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4871), 1, + sym__ternary_qmark, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4736), 12, + ACTIONS(4824), 2, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(4828), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4830), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4851), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4865), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4738), 21, - sym__automatic_semicolon, - sym__ternary_qmark, - 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, - anon_sym_LT_EQ, + ACTIONS(4867), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4863), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, + ACTIONS(4716), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_BQUOTE, - anon_sym_satisfies, - [46606] = 8, - ACTIONS(1708), 1, - anon_sym_EQ, - ACTIONS(4211), 1, - anon_sym_LBRACK, + [46579] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4214), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4906), 2, + ACTIONS(4104), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4933), 5, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(2333), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(1706), 11, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4102), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1710), 22, + ACTIONS(4106), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -179654,41 +177712,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [46668] = 8, - ACTIONS(4315), 1, - anon_sym_EQ, - ACTIONS(4319), 1, + [46635] = 25, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, anon_sym_LBRACK, + ACTIONS(4539), 1, + anon_sym_DOT, + ACTIONS(4585), 1, + anon_sym_BANG, + ACTIONS(4810), 1, + anon_sym_GT_GT, + ACTIONS(4816), 1, + anon_sym_PERCENT, + ACTIONS(4818), 1, + anon_sym_STAR_STAR, + ACTIONS(4820), 1, + anon_sym_LT, + ACTIONS(4879), 1, + anon_sym_AMP, + ACTIONS(4881), 1, + anon_sym_CARET, + ACTIONS(4883), 1, + anon_sym_PIPE, + STATE(1976), 1, + sym_type_arguments, + STATE(2240), 1, + sym_arguments, + STATE(4753), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4322), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4910), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4105), 4, + ACTIONS(4808), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4812), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4814), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4873), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4887), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4889), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4885), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4583), 11, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4313), 11, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [46731] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3182), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4317), 22, + ACTIONS(3184), 30, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -179708,104 +177830,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [46730] = 31, - ACTIONS(4425), 1, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [46783] = 31, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4826), 1, + ACTIONS(4810), 1, + anon_sym_GT_GT, + ACTIONS(4816), 1, + anon_sym_PERCENT, + ACTIONS(4818), 1, + anon_sym_STAR_STAR, + ACTIONS(4820), 1, + anon_sym_LT, + ACTIONS(4842), 1, anon_sym_as, - ACTIONS(4828), 1, + ACTIONS(4844), 1, anon_sym_BANG, - ACTIONS(4833), 1, + ACTIONS(4849), 1, anon_sym_satisfies, - ACTIONS(4839), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4841), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4843), 1, - anon_sym_GT_GT, - ACTIONS(4847), 1, + ACTIONS(4879), 1, anon_sym_AMP, - ACTIONS(4849), 1, + ACTIONS(4881), 1, anon_sym_CARET, - ACTIONS(4851), 1, + ACTIONS(4883), 1, anon_sym_PIPE, - ACTIONS(4855), 1, - anon_sym_PERCENT, - ACTIONS(4857), 1, - anon_sym_STAR_STAR, - ACTIONS(4859), 1, - anon_sym_LT, - ACTIONS(4867), 1, + ACTIONS(4891), 1, anon_sym_QMARK_QMARK, - ACTIONS(4869), 1, + ACTIONS(4893), 1, sym__ternary_qmark, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4835), 2, + ACTIONS(4808), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4837), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4845), 2, + ACTIONS(4812), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4853), 2, + ACTIONS(4814), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4863), 2, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4873), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4887), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4865), 2, + ACTIONS(4889), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4861), 3, + ACTIONS(4885), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4584), 5, + ACTIONS(4642), 5, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_of, anon_sym_BQUOTE, - [46838] = 11, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4914), 1, - anon_sym_LT, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, + [46891] = 4, + ACTIONS(4778), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4695), 12, + ACTIONS(4026), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -179816,15 +177926,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4697), 23, + ACTIONS(4028), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -179842,325 +177958,275 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [46906] = 31, - ACTIONS(4425), 1, + anon_sym_extends, + [46945] = 31, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4826), 1, + ACTIONS(4810), 1, + anon_sym_GT_GT, + ACTIONS(4816), 1, + anon_sym_PERCENT, + ACTIONS(4818), 1, + anon_sym_STAR_STAR, + ACTIONS(4820), 1, + anon_sym_LT, + ACTIONS(4842), 1, anon_sym_as, - ACTIONS(4828), 1, + ACTIONS(4844), 1, anon_sym_BANG, - ACTIONS(4833), 1, + ACTIONS(4849), 1, anon_sym_satisfies, - ACTIONS(4839), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4841), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4843), 1, - anon_sym_GT_GT, - ACTIONS(4847), 1, + ACTIONS(4879), 1, anon_sym_AMP, - ACTIONS(4849), 1, + ACTIONS(4881), 1, anon_sym_CARET, - ACTIONS(4851), 1, + ACTIONS(4883), 1, anon_sym_PIPE, - ACTIONS(4855), 1, - anon_sym_PERCENT, - ACTIONS(4857), 1, - anon_sym_STAR_STAR, - ACTIONS(4859), 1, - anon_sym_LT, - ACTIONS(4867), 1, + ACTIONS(4891), 1, anon_sym_QMARK_QMARK, - ACTIONS(4869), 1, + ACTIONS(4893), 1, sym__ternary_qmark, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4835), 2, + ACTIONS(4808), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4837), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4845), 2, + ACTIONS(4812), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4853), 2, + ACTIONS(4814), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4863), 2, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4873), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4887), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4865), 2, + ACTIONS(4889), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4861), 3, + ACTIONS(4885), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4493), 5, + ACTIONS(4648), 5, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_of, anon_sym_BQUOTE, - [47014] = 35, - ACTIONS(3541), 1, + [47053] = 35, + ACTIONS(3530), 1, anon_sym_COLON, - ACTIONS(3959), 1, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4461), 1, + ACTIONS(4499), 1, sym__ternary_qmark, - ACTIONS(4822), 1, + ACTIONS(4911), 1, anon_sym_COMMA, - ACTIONS(4917), 1, + ACTIONS(4935), 1, anon_sym_RPAREN, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(3625), 1, + STATE(3558), 1, aux_sym_sequence_expression_repeat1, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, - STATE(5648), 1, + STATE(5791), 1, sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [47130] = 31, - ACTIONS(4425), 1, + [47169] = 31, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, ACTIONS(4826), 1, + anon_sym_GT_GT, + ACTIONS(4832), 1, + anon_sym_PERCENT, + ACTIONS(4834), 1, + anon_sym_STAR_STAR, + ACTIONS(4836), 1, + anon_sym_LT, + ACTIONS(4842), 1, anon_sym_as, - ACTIONS(4828), 1, + ACTIONS(4844), 1, anon_sym_BANG, - ACTIONS(4833), 1, + ACTIONS(4849), 1, anon_sym_satisfies, - ACTIONS(4839), 1, + ACTIONS(4853), 1, anon_sym_AMP_AMP, - ACTIONS(4841), 1, + ACTIONS(4855), 1, anon_sym_PIPE_PIPE, - ACTIONS(4843), 1, - anon_sym_GT_GT, - ACTIONS(4847), 1, + ACTIONS(4857), 1, anon_sym_AMP, - ACTIONS(4849), 1, + ACTIONS(4859), 1, anon_sym_CARET, - ACTIONS(4851), 1, + ACTIONS(4861), 1, anon_sym_PIPE, - ACTIONS(4855), 1, - anon_sym_PERCENT, - ACTIONS(4857), 1, - anon_sym_STAR_STAR, - ACTIONS(4859), 1, - anon_sym_LT, - ACTIONS(4867), 1, - anon_sym_QMARK_QMARK, ACTIONS(4869), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4871), 1, sym__ternary_qmark, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4835), 2, + ACTIONS(4824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4837), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4845), 2, + ACTIONS(4828), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4853), 2, + ACTIONS(4830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4863), 2, + ACTIONS(4851), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4865), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4865), 2, + ACTIONS(4867), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4861), 3, + ACTIONS(4863), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4536), 5, + ACTIONS(4728), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_BQUOTE, - [47238] = 31, - ACTIONS(4425), 1, + [47277] = 16, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4826), 1, + ACTIONS(4818), 1, + anon_sym_STAR_STAR, + ACTIONS(4842), 1, anon_sym_as, - ACTIONS(4828), 1, + ACTIONS(4844), 1, anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(4839), 1, - anon_sym_AMP_AMP, - ACTIONS(4841), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4843), 1, - anon_sym_GT_GT, - ACTIONS(4847), 1, - anon_sym_AMP, ACTIONS(4849), 1, - anon_sym_CARET, - ACTIONS(4851), 1, - anon_sym_PIPE, - ACTIONS(4855), 1, - anon_sym_PERCENT, - ACTIONS(4857), 1, - anon_sym_STAR_STAR, - ACTIONS(4859), 1, + anon_sym_satisfies, + ACTIONS(4920), 1, anon_sym_LT, - ACTIONS(4867), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4869), 1, - sym__ternary_qmark, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4835), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4837), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4845), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4853), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4863), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4865), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4861), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4538), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BQUOTE, - [47346] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3171), 13, + ACTIONS(4585), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -180169,1080 +178235,815 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3173), 30, + ACTIONS(4583), 18, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, - 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, + [47355] = 31, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, + anon_sym_LBRACK, + ACTIONS(4539), 1, + anon_sym_DOT, + ACTIONS(4826), 1, + anon_sym_GT_GT, + ACTIONS(4832), 1, + anon_sym_PERCENT, + ACTIONS(4834), 1, + anon_sym_STAR_STAR, + ACTIONS(4836), 1, + anon_sym_LT, + ACTIONS(4842), 1, + anon_sym_as, + ACTIONS(4844), 1, + anon_sym_BANG, + ACTIONS(4849), 1, anon_sym_satisfies, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [47398] = 7, - ACTIONS(1708), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_extends, + ACTIONS(4853), 1, + anon_sym_AMP_AMP, + ACTIONS(4855), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4857), 1, + anon_sym_AMP, + ACTIONS(4859), 1, + anon_sym_CARET, + ACTIONS(4861), 1, + anon_sym_PIPE, + ACTIONS(4869), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4871), 1, + sym__ternary_qmark, + STATE(1976), 1, + sym_type_arguments, + STATE(2240), 1, + sym_arguments, + STATE(4753), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4211), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4214), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1706), 10, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4824), 2, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, + anon_sym_SLASH, + ACTIONS(4828), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4830), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4851), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4865), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1710), 26, + ACTIONS(4867), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4863), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4732), 5, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - anon_sym_DOT, + anon_sym_BQUOTE, + [47463] = 31, + ACTIONS(4418), 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_satisfies, - [47458] = 13, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(3785), 1, - anon_sym_COMMA, - ACTIONS(3882), 1, - anon_sym_RBRACE, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, - anon_sym_LBRACK, - STATE(4673), 1, - aux_sym_object_repeat1, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4787), 2, - sym_number, - sym_private_property_identifier, - STATE(3784), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2323), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [47530] = 13, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(3785), 1, - anon_sym_COMMA, - ACTIONS(3788), 1, - anon_sym_RBRACE, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, - anon_sym_LBRACK, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4787), 2, - sym_number, - sym_private_property_identifier, - STATE(3784), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 7, - sym__automatic_semicolon, + ACTIONS(4535), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2323), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [47602] = 7, - ACTIONS(4105), 1, - anon_sym_extends, - ACTIONS(4315), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4319), 2, - anon_sym_COMMA, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4322), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4313), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4317), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(4539), 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, + ACTIONS(4826), 1, + anon_sym_GT_GT, + ACTIONS(4832), 1, anon_sym_PERCENT, + ACTIONS(4834), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [47662] = 35, - ACTIONS(3541), 1, - anon_sym_COLON, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, + ACTIONS(4836), 1, + anon_sym_LT, + ACTIONS(4842), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4844), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + ACTIONS(4849), 1, + anon_sym_satisfies, + ACTIONS(4853), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, + ACTIONS(4855), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(4857), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(4859), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(4861), 1, anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4869), 1, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, + ACTIONS(4871), 1, sym__ternary_qmark, - ACTIONS(4822), 1, - anon_sym_COMMA, - ACTIONS(4919), 1, - anon_sym_RPAREN, - STATE(1603), 1, + STATE(1976), 1, sym_type_arguments, - STATE(1650), 1, + STATE(2240), 1, sym_arguments, - STATE(3625), 1, - aux_sym_sequence_expression_repeat1, - STATE(5091), 1, + STATE(4753), 1, sym_optional_chain, - STATE(5816), 1, - sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4828), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4851), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4865), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4867), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(4863), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [47778] = 31, - ACTIONS(4425), 1, + ACTIONS(4734), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BQUOTE, + [47571] = 31, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4826), 1, + ACTIONS(4810), 1, + anon_sym_GT_GT, + ACTIONS(4816), 1, + anon_sym_PERCENT, + ACTIONS(4818), 1, + anon_sym_STAR_STAR, + ACTIONS(4820), 1, + anon_sym_LT, + ACTIONS(4842), 1, anon_sym_as, - ACTIONS(4828), 1, + ACTIONS(4844), 1, anon_sym_BANG, - ACTIONS(4833), 1, + ACTIONS(4849), 1, anon_sym_satisfies, - ACTIONS(4839), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4841), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4843), 1, - anon_sym_GT_GT, - ACTIONS(4847), 1, + ACTIONS(4879), 1, anon_sym_AMP, - ACTIONS(4849), 1, + ACTIONS(4881), 1, anon_sym_CARET, - ACTIONS(4851), 1, + ACTIONS(4883), 1, anon_sym_PIPE, - ACTIONS(4855), 1, - anon_sym_PERCENT, - ACTIONS(4857), 1, - anon_sym_STAR_STAR, - ACTIONS(4859), 1, - anon_sym_LT, - ACTIONS(4867), 1, + ACTIONS(4891), 1, anon_sym_QMARK_QMARK, - ACTIONS(4869), 1, + ACTIONS(4893), 1, sym__ternary_qmark, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4835), 2, + ACTIONS(4808), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4837), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4845), 2, + ACTIONS(4812), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4853), 2, + ACTIONS(4814), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4863), 2, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4873), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4887), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4865), 2, + ACTIONS(4889), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4861), 3, + ACTIONS(4885), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4548), 5, + ACTIONS(4734), 5, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_of, anon_sym_BQUOTE, - [47886] = 31, - ACTIONS(4425), 1, + [47679] = 31, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4826), 1, + ACTIONS(4810), 1, + anon_sym_GT_GT, + ACTIONS(4816), 1, + anon_sym_PERCENT, + ACTIONS(4818), 1, + anon_sym_STAR_STAR, + ACTIONS(4820), 1, + anon_sym_LT, + ACTIONS(4842), 1, anon_sym_as, - ACTIONS(4828), 1, + ACTIONS(4844), 1, anon_sym_BANG, - ACTIONS(4833), 1, + ACTIONS(4849), 1, anon_sym_satisfies, - ACTIONS(4839), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4841), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4843), 1, - anon_sym_GT_GT, - ACTIONS(4847), 1, + ACTIONS(4879), 1, anon_sym_AMP, - ACTIONS(4849), 1, + ACTIONS(4881), 1, anon_sym_CARET, - ACTIONS(4851), 1, + ACTIONS(4883), 1, anon_sym_PIPE, - ACTIONS(4855), 1, - anon_sym_PERCENT, - ACTIONS(4857), 1, - anon_sym_STAR_STAR, - ACTIONS(4859), 1, - anon_sym_LT, - ACTIONS(4867), 1, + ACTIONS(4891), 1, anon_sym_QMARK_QMARK, - ACTIONS(4869), 1, + ACTIONS(4893), 1, sym__ternary_qmark, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4835), 2, + ACTIONS(4808), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4837), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4845), 2, + ACTIONS(4812), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4853), 2, + ACTIONS(4814), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4863), 2, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4873), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4887), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4865), 2, + ACTIONS(4889), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4861), 3, + ACTIONS(4885), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4734), 5, + ACTIONS(4519), 5, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_of, anon_sym_BQUOTE, - [47994] = 13, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(3785), 1, - anon_sym_COMMA, - ACTIONS(3866), 1, - anon_sym_RBRACE, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, - anon_sym_LBRACK, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, + [47787] = 4, + ACTIONS(4941), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4787), 2, - sym_number, - sym_private_property_identifier, - STATE(3784), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 7, - sym__automatic_semicolon, + ACTIONS(4937), 16, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(4939), 26, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2323), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [48066] = 35, - ACTIONS(3541), 1, - anon_sym_COLON, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, anon_sym_QMARK_DOT, - ACTIONS(4427), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - ACTIONS(4822), 1, - anon_sym_COMMA, - ACTIONS(4921), 1, - anon_sym_RPAREN, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(3625), 1, - aux_sym_sequence_expression_repeat1, - STATE(5091), 1, - sym_optional_chain, - STATE(5728), 1, - sym_type_annotation, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [47841] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(1685), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [48182] = 31, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(1683), 30, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4516), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(4518), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(4927), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(4929), 1, anon_sym_PIPE_PIPE, - ACTIONS(4931), 1, - anon_sym_GT_GT, - ACTIONS(4935), 1, - anon_sym_AMP, - ACTIONS(4937), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4939), 1, - anon_sym_PIPE, - ACTIONS(4943), 1, anon_sym_PERCENT, - ACTIONS(4945), 1, anon_sym_STAR_STAR, - ACTIONS(4947), 1, - anon_sym_LT, - ACTIONS(4955), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4957), 1, - sym__ternary_qmark, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_is, + [47893] = 6, + ACTIONS(3541), 1, + anon_sym_EQ, + ACTIONS(3548), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4923), 2, + ACTIONS(3544), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3435), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4925), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4933), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4941), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4951), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4953), 2, + ACTIONS(3439), 23, + sym__ternary_qmark, + anon_sym_as, + 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, - ACTIONS(4949), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4548), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [48290] = 31, - ACTIONS(4425), 1, + anon_sym_satisfies, + [47951] = 31, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, ACTIONS(4826), 1, + anon_sym_GT_GT, + ACTIONS(4832), 1, + anon_sym_PERCENT, + ACTIONS(4834), 1, + anon_sym_STAR_STAR, + ACTIONS(4836), 1, + anon_sym_LT, + ACTIONS(4842), 1, anon_sym_as, - ACTIONS(4828), 1, + ACTIONS(4844), 1, anon_sym_BANG, - ACTIONS(4833), 1, + ACTIONS(4849), 1, anon_sym_satisfies, - ACTIONS(4927), 1, + ACTIONS(4853), 1, anon_sym_AMP_AMP, - ACTIONS(4929), 1, + ACTIONS(4855), 1, anon_sym_PIPE_PIPE, - ACTIONS(4931), 1, - anon_sym_GT_GT, - ACTIONS(4935), 1, + ACTIONS(4857), 1, anon_sym_AMP, - ACTIONS(4937), 1, + ACTIONS(4859), 1, anon_sym_CARET, - ACTIONS(4939), 1, + ACTIONS(4861), 1, anon_sym_PIPE, - ACTIONS(4943), 1, - anon_sym_PERCENT, - ACTIONS(4945), 1, - anon_sym_STAR_STAR, - ACTIONS(4947), 1, - anon_sym_LT, - ACTIONS(4955), 1, + ACTIONS(4869), 1, anon_sym_QMARK_QMARK, - ACTIONS(4957), 1, + ACTIONS(4871), 1, sym__ternary_qmark, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4923), 2, + ACTIONS(4824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4925), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4933), 2, + ACTIONS(4828), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4941), 2, + ACTIONS(4830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4951), 2, + ACTIONS(4851), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4865), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4953), 2, + ACTIONS(4867), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4949), 3, + ACTIONS(4863), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4734), 5, + ACTIONS(4581), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_of, anon_sym_BQUOTE, - [48398] = 31, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(4927), 1, - anon_sym_AMP_AMP, - ACTIONS(4929), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4931), 1, - anon_sym_GT_GT, - ACTIONS(4935), 1, - anon_sym_AMP, - ACTIONS(4937), 1, - anon_sym_CARET, - ACTIONS(4939), 1, - anon_sym_PIPE, - ACTIONS(4943), 1, - anon_sym_PERCENT, - ACTIONS(4945), 1, - anon_sym_STAR_STAR, - ACTIONS(4947), 1, - anon_sym_LT, - ACTIONS(4955), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4957), 1, - sym__ternary_qmark, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, + [48059] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4923), 2, + ACTIONS(4058), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4925), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4933), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4941), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4951), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4953), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4949), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4708), 5, + ACTIONS(4060), 30, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, + 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, - [48506] = 31, - ACTIONS(4425), 1, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_is, + [48111] = 31, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, ACTIONS(4826), 1, + anon_sym_GT_GT, + ACTIONS(4832), 1, + anon_sym_PERCENT, + ACTIONS(4834), 1, + anon_sym_STAR_STAR, + ACTIONS(4836), 1, + anon_sym_LT, + ACTIONS(4842), 1, anon_sym_as, - ACTIONS(4828), 1, + ACTIONS(4844), 1, anon_sym_BANG, - ACTIONS(4833), 1, + ACTIONS(4849), 1, anon_sym_satisfies, - ACTIONS(4927), 1, + ACTIONS(4853), 1, anon_sym_AMP_AMP, - ACTIONS(4929), 1, + ACTIONS(4855), 1, anon_sym_PIPE_PIPE, - ACTIONS(4931), 1, - anon_sym_GT_GT, - ACTIONS(4935), 1, + ACTIONS(4857), 1, anon_sym_AMP, - ACTIONS(4937), 1, + ACTIONS(4859), 1, anon_sym_CARET, - ACTIONS(4939), 1, + ACTIONS(4861), 1, anon_sym_PIPE, - ACTIONS(4943), 1, - anon_sym_PERCENT, - ACTIONS(4945), 1, - anon_sym_STAR_STAR, - ACTIONS(4947), 1, - anon_sym_LT, - ACTIONS(4955), 1, + ACTIONS(4869), 1, anon_sym_QMARK_QMARK, - ACTIONS(4957), 1, + ACTIONS(4871), 1, sym__ternary_qmark, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4923), 2, + ACTIONS(4824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4925), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4933), 2, + ACTIONS(4828), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4941), 2, + ACTIONS(4830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4951), 2, + ACTIONS(4851), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4865), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4953), 2, + ACTIONS(4867), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4949), 3, + ACTIONS(4863), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4710), 5, + ACTIONS(4519), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_of, anon_sym_BQUOTE, - [48614] = 31, - ACTIONS(4425), 1, + [48219] = 26, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, + ACTIONS(4585), 1, anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(4927), 1, - anon_sym_AMP_AMP, - ACTIONS(4929), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4931), 1, + ACTIONS(4810), 1, anon_sym_GT_GT, - ACTIONS(4935), 1, - anon_sym_AMP, - ACTIONS(4937), 1, - anon_sym_CARET, - ACTIONS(4939), 1, - anon_sym_PIPE, - ACTIONS(4943), 1, + ACTIONS(4816), 1, anon_sym_PERCENT, - ACTIONS(4945), 1, + ACTIONS(4818), 1, anon_sym_STAR_STAR, - ACTIONS(4947), 1, + ACTIONS(4820), 1, anon_sym_LT, - ACTIONS(4955), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4957), 1, - sym__ternary_qmark, - STATE(1945), 1, + ACTIONS(4875), 1, + anon_sym_AMP_AMP, + ACTIONS(4879), 1, + anon_sym_AMP, + ACTIONS(4881), 1, + anon_sym_CARET, + ACTIONS(4883), 1, + anon_sym_PIPE, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4923), 2, + ACTIONS(4808), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4925), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4933), 2, + ACTIONS(4812), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4941), 2, + ACTIONS(4814), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4951), 2, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4873), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4887), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4953), 2, + ACTIONS(4889), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4949), 3, + ACTIONS(4885), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4610), 5, + ACTIONS(4583), 10, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [48722] = 18, - ACTIONS(4425), 1, + anon_sym_satisfies, + [48317] = 15, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4931), 1, - anon_sym_GT_GT, + ACTIONS(4842), 1, + anon_sym_as, + ACTIONS(4844), 1, + anon_sym_BANG, + ACTIONS(4849), 1, + anon_sym_satisfies, ACTIONS(4943), 1, - anon_sym_PERCENT, - ACTIONS(4945), 1, - anon_sym_STAR_STAR, - ACTIONS(4947), 1, anon_sym_LT, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4923), 2, + ACTIONS(4697), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4933), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4941), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4483), 7, - anon_sym_BANG, anon_sym_in, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 17, + ACTIONS(4699), 19, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -181250,33 +179051,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - anon_sym_satisfies, - [48804] = 13, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4945), 1, - anon_sym_STAR_STAR, - ACTIONS(4959), 1, - anon_sym_LT, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, + [48393] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4483), 12, + ACTIONS(1665), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4946), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(1663), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -181287,472 +179075,410 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 20, - sym__automatic_semicolon, + ACTIONS(1667), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, + 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_satisfies, - [48876] = 25, - ACTIONS(4425), 1, + [48449] = 20, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4483), 1, - anon_sym_BANG, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4931), 1, + ACTIONS(4826), 1, anon_sym_GT_GT, - ACTIONS(4935), 1, - anon_sym_AMP, - ACTIONS(4937), 1, - anon_sym_CARET, - ACTIONS(4939), 1, - anon_sym_PIPE, - ACTIONS(4943), 1, + ACTIONS(4832), 1, anon_sym_PERCENT, - ACTIONS(4945), 1, + ACTIONS(4834), 1, anon_sym_STAR_STAR, - ACTIONS(4947), 1, + ACTIONS(4836), 1, anon_sym_LT, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4923), 2, + ACTIONS(4824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4925), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4933), 2, + ACTIONS(4828), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4941), 2, + ACTIONS(4830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4951), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4953), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4949), 3, + ACTIONS(4851), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4863), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 11, + ACTIONS(4585), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4583), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [48972] = 26, - ACTIONS(4425), 1, + [48535] = 16, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4483), 1, - anon_sym_BANG, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_AMP_AMP, - ACTIONS(4931), 1, - anon_sym_GT_GT, - ACTIONS(4935), 1, - anon_sym_AMP, - ACTIONS(4937), 1, - anon_sym_CARET, - ACTIONS(4939), 1, - anon_sym_PIPE, - ACTIONS(4943), 1, + ACTIONS(4816), 1, anon_sym_PERCENT, - ACTIONS(4945), 1, + ACTIONS(4818), 1, anon_sym_STAR_STAR, - ACTIONS(4947), 1, + ACTIONS(4920), 1, anon_sym_LT, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4923), 2, + ACTIONS(4808), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4925), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4933), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4941), 2, + ACTIONS(4814), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4951), 2, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4585), 8, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4953), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4949), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4481), 10, + ACTIONS(4583), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [49070] = 16, - ACTIONS(4425), 1, + [48613] = 11, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4943), 1, - anon_sym_PERCENT, - ACTIONS(4945), 1, - anon_sym_STAR_STAR, - ACTIONS(4959), 1, + ACTIONS(4948), 1, anon_sym_LT, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4923), 2, + ACTIONS(4414), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4941), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4483), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 19, + ACTIONS(4416), 23, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [49148] = 22, - ACTIONS(4425), 1, + [48681] = 31, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4931), 1, + ACTIONS(4826), 1, anon_sym_GT_GT, - ACTIONS(4943), 1, + ACTIONS(4832), 1, anon_sym_PERCENT, - ACTIONS(4945), 1, + ACTIONS(4834), 1, anon_sym_STAR_STAR, - ACTIONS(4947), 1, + ACTIONS(4836), 1, anon_sym_LT, - STATE(1945), 1, + ACTIONS(4842), 1, + anon_sym_as, + ACTIONS(4844), 1, + anon_sym_BANG, + ACTIONS(4849), 1, + anon_sym_satisfies, + ACTIONS(4853), 1, + anon_sym_AMP_AMP, + ACTIONS(4855), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4857), 1, + anon_sym_AMP, + ACTIONS(4859), 1, + anon_sym_CARET, + ACTIONS(4861), 1, + anon_sym_PIPE, + ACTIONS(4869), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4871), 1, + sym__ternary_qmark, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4923), 2, + ACTIONS(4824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4925), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4933), 2, + ACTIONS(4828), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4941), 2, + ACTIONS(4830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4951), 2, + ACTIONS(4851), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4865), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4953), 2, + ACTIONS(4867), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4483), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4949), 3, + ACTIONS(4863), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 12, + ACTIONS(4577), 5, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - anon_sym_satisfies, - [49238] = 23, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4931), 1, - anon_sym_GT_GT, - ACTIONS(4935), 1, - anon_sym_AMP, - ACTIONS(4943), 1, - anon_sym_PERCENT, - ACTIONS(4945), 1, - anon_sym_STAR_STAR, - ACTIONS(4947), 1, - anon_sym_LT, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, + [48789] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4483), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4923), 2, + ACTIONS(4088), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4082), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4925), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4933), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4941), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4951), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4953), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4949), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4481), 12, - sym__automatic_semicolon, + ACTIONS(4084), 26, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_of, + 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, anon_sym_satisfies, - [49330] = 24, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, + [48843] = 7, + ACTIONS(3523), 1, + anon_sym_EQ, + ACTIONS(4606), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4931), 1, - anon_sym_GT_GT, - ACTIONS(4935), 1, - anon_sym_AMP, - ACTIONS(4937), 1, - anon_sym_CARET, - ACTIONS(4943), 1, - anon_sym_PERCENT, - ACTIONS(4945), 1, - anon_sym_STAR_STAR, - ACTIONS(4947), 1, - anon_sym_LT, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4483), 2, - anon_sym_BANG, + ACTIONS(4609), 2, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4923), 2, + ACTIONS(4146), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3435), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4925), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4933), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4941), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4951), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4953), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4949), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4481), 11, - sym__automatic_semicolon, + ACTIONS(3439), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, + anon_sym_LPAREN, + 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_satisfies, - [49424] = 15, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4943), 1, - anon_sym_PERCENT, - ACTIONS(4945), 1, - anon_sym_STAR_STAR, - ACTIONS(4959), 1, + [48903] = 6, + ACTIONS(4543), 1, anon_sym_LT, - STATE(1945), 1, + ACTIONS(4776), 1, + anon_sym_DOT, + STATE(1888), 1, sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4923), 2, + ACTIONS(4006), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4483), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -181761,61 +179487,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 19, + ACTIONS(3501), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, + 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_satisfies, - [49500] = 16, - ACTIONS(4425), 1, + anon_sym_extends, + [48961] = 12, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(4945), 1, - anon_sym_STAR_STAR, - ACTIONS(4959), 1, + ACTIONS(4951), 1, anon_sym_LT, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4483), 11, + ACTIONS(4674), 12, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -181826,18 +179555,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 18, + ACTIONS(4676), 21, sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -181845,801 +179576,636 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [49578] = 20, - ACTIONS(4425), 1, + anon_sym_satisfies, + [49031] = 31, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4931), 1, + ACTIONS(4826), 1, anon_sym_GT_GT, - ACTIONS(4943), 1, + ACTIONS(4832), 1, anon_sym_PERCENT, - ACTIONS(4945), 1, + ACTIONS(4834), 1, anon_sym_STAR_STAR, - ACTIONS(4947), 1, + ACTIONS(4836), 1, anon_sym_LT, - STATE(1945), 1, + ACTIONS(4842), 1, + anon_sym_as, + ACTIONS(4844), 1, + anon_sym_BANG, + ACTIONS(4849), 1, + anon_sym_satisfies, + ACTIONS(4853), 1, + anon_sym_AMP_AMP, + ACTIONS(4855), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4857), 1, + anon_sym_AMP, + ACTIONS(4859), 1, + anon_sym_CARET, + ACTIONS(4861), 1, + anon_sym_PIPE, + ACTIONS(4869), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4871), 1, + sym__ternary_qmark, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4923), 2, + ACTIONS(4824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4925), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4933), 2, + ACTIONS(4828), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4941), 2, + ACTIONS(4830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4949), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4483), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4481), 14, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [49664] = 27, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4483), 1, - anon_sym_BANG, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_AMP_AMP, - ACTIONS(4929), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4931), 1, - anon_sym_GT_GT, - ACTIONS(4935), 1, - anon_sym_AMP, - ACTIONS(4937), 1, - anon_sym_CARET, - ACTIONS(4939), 1, - anon_sym_PIPE, - ACTIONS(4943), 1, - anon_sym_PERCENT, - ACTIONS(4945), 1, - anon_sym_STAR_STAR, - ACTIONS(4947), 1, - anon_sym_LT, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4923), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4925), 2, + ACTIONS(4851), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4933), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4941), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4951), 2, + ACTIONS(4865), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4953), 2, + ACTIONS(4867), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4949), 3, + ACTIONS(4863), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 9, + ACTIONS(4503), 5, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_of, - anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - anon_sym_satisfies, - [49764] = 31, - ACTIONS(4425), 1, + [49139] = 31, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, ACTIONS(4826), 1, + anon_sym_GT_GT, + ACTIONS(4832), 1, + anon_sym_PERCENT, + ACTIONS(4834), 1, + anon_sym_STAR_STAR, + ACTIONS(4836), 1, + anon_sym_LT, + ACTIONS(4842), 1, anon_sym_as, - ACTIONS(4828), 1, + ACTIONS(4844), 1, anon_sym_BANG, - ACTIONS(4833), 1, + ACTIONS(4849), 1, anon_sym_satisfies, - ACTIONS(4927), 1, + ACTIONS(4853), 1, anon_sym_AMP_AMP, - ACTIONS(4929), 1, + ACTIONS(4855), 1, anon_sym_PIPE_PIPE, - ACTIONS(4931), 1, - anon_sym_GT_GT, - ACTIONS(4935), 1, + ACTIONS(4857), 1, anon_sym_AMP, - ACTIONS(4937), 1, + ACTIONS(4859), 1, anon_sym_CARET, - ACTIONS(4939), 1, + ACTIONS(4861), 1, anon_sym_PIPE, - ACTIONS(4943), 1, - anon_sym_PERCENT, - ACTIONS(4945), 1, - anon_sym_STAR_STAR, - ACTIONS(4947), 1, - anon_sym_LT, - ACTIONS(4955), 1, + ACTIONS(4869), 1, anon_sym_QMARK_QMARK, - ACTIONS(4957), 1, + ACTIONS(4871), 1, sym__ternary_qmark, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4923), 2, + ACTIONS(4824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4925), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4933), 2, + ACTIONS(4828), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4941), 2, + ACTIONS(4830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4951), 2, + ACTIONS(4851), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4865), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4953), 2, + ACTIONS(4867), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4949), 3, + ACTIONS(4863), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4655), 5, + ACTIONS(4505), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_of, anon_sym_BQUOTE, - [49872] = 31, - ACTIONS(4425), 1, + [49247] = 22, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(4927), 1, - anon_sym_AMP_AMP, - ACTIONS(4929), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4931), 1, + ACTIONS(4810), 1, anon_sym_GT_GT, - ACTIONS(4935), 1, - anon_sym_AMP, - ACTIONS(4937), 1, - anon_sym_CARET, - ACTIONS(4939), 1, - anon_sym_PIPE, - ACTIONS(4943), 1, + ACTIONS(4816), 1, anon_sym_PERCENT, - ACTIONS(4945), 1, + ACTIONS(4818), 1, anon_sym_STAR_STAR, - ACTIONS(4947), 1, + ACTIONS(4820), 1, anon_sym_LT, - ACTIONS(4955), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4957), 1, - sym__ternary_qmark, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4923), 2, + ACTIONS(4808), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4925), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4933), 2, + ACTIONS(4812), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4941), 2, + ACTIONS(4814), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4951), 2, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4873), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4887), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4953), 2, + ACTIONS(4889), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4949), 3, + ACTIONS(4585), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4885), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4419), 5, + ACTIONS(4583), 12, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [49980] = 31, - ACTIONS(4425), 1, + anon_sym_satisfies, + [49337] = 31, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, ACTIONS(4826), 1, + anon_sym_GT_GT, + ACTIONS(4832), 1, + anon_sym_PERCENT, + ACTIONS(4834), 1, + anon_sym_STAR_STAR, + ACTIONS(4836), 1, + anon_sym_LT, + ACTIONS(4842), 1, anon_sym_as, - ACTIONS(4828), 1, + ACTIONS(4844), 1, anon_sym_BANG, - ACTIONS(4833), 1, + ACTIONS(4849), 1, anon_sym_satisfies, - ACTIONS(4927), 1, + ACTIONS(4853), 1, anon_sym_AMP_AMP, - ACTIONS(4929), 1, + ACTIONS(4855), 1, anon_sym_PIPE_PIPE, - ACTIONS(4931), 1, - anon_sym_GT_GT, - ACTIONS(4935), 1, + ACTIONS(4857), 1, anon_sym_AMP, - ACTIONS(4937), 1, + ACTIONS(4859), 1, anon_sym_CARET, - ACTIONS(4939), 1, + ACTIONS(4861), 1, anon_sym_PIPE, - ACTIONS(4943), 1, - anon_sym_PERCENT, - ACTIONS(4945), 1, - anon_sym_STAR_STAR, - ACTIONS(4947), 1, - anon_sym_LT, - ACTIONS(4955), 1, + ACTIONS(4869), 1, anon_sym_QMARK_QMARK, - ACTIONS(4957), 1, + ACTIONS(4871), 1, sym__ternary_qmark, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4923), 2, + ACTIONS(4824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4925), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4933), 2, + ACTIONS(4828), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4941), 2, + ACTIONS(4830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4951), 2, + ACTIONS(4851), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4865), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4953), 2, + ACTIONS(4867), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4949), 3, + ACTIONS(4863), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4584), 5, + ACTIONS(4455), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_of, anon_sym_BQUOTE, - [50088] = 31, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + [49445] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4138), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4082), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4084), 26, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4516), 1, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4518), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(4927), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(4929), 1, anon_sym_PIPE_PIPE, - ACTIONS(4931), 1, - anon_sym_GT_GT, - ACTIONS(4935), 1, - anon_sym_AMP, - ACTIONS(4937), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4939), 1, - anon_sym_PIPE, - ACTIONS(4943), 1, anon_sym_PERCENT, - ACTIONS(4945), 1, anon_sym_STAR_STAR, - ACTIONS(4947), 1, - anon_sym_LT, - ACTIONS(4955), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4957), 1, - sym__ternary_qmark, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [49499] = 6, + ACTIONS(3485), 1, + anon_sym_EQ, + ACTIONS(3579), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4923), 2, + ACTIONS(3577), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3435), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4925), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4933), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4941), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4951), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4953), 2, + ACTIONS(3439), 23, + sym__ternary_qmark, + anon_sym_as, + 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, - ACTIONS(4949), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4489), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [50196] = 31, - ACTIONS(4425), 1, + anon_sym_satisfies, + [49557] = 23, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(4927), 1, - anon_sym_AMP_AMP, - ACTIONS(4929), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4931), 1, + ACTIONS(4810), 1, anon_sym_GT_GT, - ACTIONS(4935), 1, - anon_sym_AMP, - ACTIONS(4937), 1, - anon_sym_CARET, - ACTIONS(4939), 1, - anon_sym_PIPE, - ACTIONS(4943), 1, + ACTIONS(4816), 1, anon_sym_PERCENT, - ACTIONS(4945), 1, + ACTIONS(4818), 1, anon_sym_STAR_STAR, - ACTIONS(4947), 1, + ACTIONS(4820), 1, anon_sym_LT, - ACTIONS(4955), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4957), 1, - sym__ternary_qmark, - STATE(1945), 1, + ACTIONS(4879), 1, + anon_sym_AMP, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4923), 2, + ACTIONS(4585), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4808), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4925), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4933), 2, + ACTIONS(4812), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4941), 2, + ACTIONS(4814), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4951), 2, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4873), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4887), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4953), 2, + ACTIONS(4889), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4949), 3, + ACTIONS(4885), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4493), 5, + ACTIONS(4583), 12, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, - anon_sym_BQUOTE, - [50304] = 31, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(4927), 1, anon_sym_AMP_AMP, - ACTIONS(4929), 1, anon_sym_PIPE_PIPE, - ACTIONS(4931), 1, - anon_sym_GT_GT, - ACTIONS(4935), 1, - anon_sym_AMP, - ACTIONS(4937), 1, anon_sym_CARET, - ACTIONS(4939), 1, - anon_sym_PIPE, - ACTIONS(4943), 1, - anon_sym_PERCENT, - ACTIONS(4945), 1, - anon_sym_STAR_STAR, - ACTIONS(4947), 1, - anon_sym_LT, - ACTIONS(4955), 1, anon_sym_QMARK_QMARK, - ACTIONS(4957), 1, - sym__ternary_qmark, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, + anon_sym_BQUOTE, + anon_sym_satisfies, + [49649] = 4, + ACTIONS(4778), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4923), 2, + ACTIONS(4022), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4925), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4933), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4941), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4951), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4953), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4949), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4536), 5, + ACTIONS(4024), 29, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, - anon_sym_BQUOTE, - [50412] = 31, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(4927), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(4929), 1, anon_sym_PIPE_PIPE, - ACTIONS(4931), 1, - anon_sym_GT_GT, - ACTIONS(4935), 1, - anon_sym_AMP, - ACTIONS(4937), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4939), 1, - anon_sym_PIPE, - ACTIONS(4943), 1, anon_sym_PERCENT, - ACTIONS(4945), 1, anon_sym_STAR_STAR, - ACTIONS(4947), 1, - anon_sym_LT, - ACTIONS(4955), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4957), 1, - sym__ternary_qmark, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4923), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4925), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4933), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4941), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4951), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4953), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4949), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4538), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [50520] = 31, - ACTIONS(4425), 1, + anon_sym_satisfies, + anon_sym_extends, + [49703] = 27, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, + ACTIONS(4585), 1, anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(4927), 1, + ACTIONS(4826), 1, + anon_sym_GT_GT, + ACTIONS(4832), 1, + anon_sym_PERCENT, + ACTIONS(4834), 1, + anon_sym_STAR_STAR, + ACTIONS(4836), 1, + anon_sym_LT, + ACTIONS(4853), 1, anon_sym_AMP_AMP, - ACTIONS(4929), 1, + ACTIONS(4855), 1, anon_sym_PIPE_PIPE, - ACTIONS(4931), 1, - anon_sym_GT_GT, - ACTIONS(4935), 1, + ACTIONS(4857), 1, anon_sym_AMP, - ACTIONS(4937), 1, + ACTIONS(4859), 1, anon_sym_CARET, - ACTIONS(4939), 1, + ACTIONS(4861), 1, anon_sym_PIPE, - ACTIONS(4943), 1, - anon_sym_PERCENT, - ACTIONS(4945), 1, - anon_sym_STAR_STAR, - ACTIONS(4947), 1, - anon_sym_LT, - ACTIONS(4955), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4957), 1, - sym__ternary_qmark, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4923), 2, + ACTIONS(4824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4925), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4933), 2, + ACTIONS(4828), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4941), 2, + ACTIONS(4830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4951), 2, + ACTIONS(4851), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4865), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4953), 2, + ACTIONS(4867), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4949), 3, + ACTIONS(4863), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4544), 5, + ACTIONS(4583), 9, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_of, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [50628] = 14, - ACTIONS(1588), 1, + anon_sym_satisfies, + [49803] = 13, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(3673), 1, - anon_sym_override, - ACTIONS(4471), 1, + ACTIONS(3752), 1, + anon_sym_COMMA, + ACTIONS(3755), 1, + anon_sym_RBRACE, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(4964), 1, - anon_sym_static, - ACTIONS(4966), 1, - anon_sym_readonly, - ACTIONS(4968), 1, - anon_sym_abstract, - ACTIONS(4970), 1, - anon_sym_accessor, - STATE(2818), 1, - sym_override_modifier, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4962), 2, + ACTIONS(4738), 2, sym_number, sym_private_property_identifier, - STATE(3439), 3, + STATE(3890), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 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(3651), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -182647,12 +180213,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -182660,11 +180229,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [50702] = 3, + [49875] = 4, + ACTIONS(4954), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3167), 13, + ACTIONS(4030), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -182678,7 +180249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3169), 30, + ACTIONS(4032), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -182708,120 +180279,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [50754] = 31, - ACTIONS(4425), 1, + [49929] = 31, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4826), 1, + ACTIONS(4810), 1, + anon_sym_GT_GT, + ACTIONS(4816), 1, + anon_sym_PERCENT, + ACTIONS(4818), 1, + anon_sym_STAR_STAR, + ACTIONS(4820), 1, + anon_sym_LT, + ACTIONS(4842), 1, anon_sym_as, - ACTIONS(4828), 1, + ACTIONS(4844), 1, anon_sym_BANG, - ACTIONS(4833), 1, + ACTIONS(4849), 1, anon_sym_satisfies, - ACTIONS(4839), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4841), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4843), 1, - anon_sym_GT_GT, - ACTIONS(4847), 1, + ACTIONS(4879), 1, anon_sym_AMP, - ACTIONS(4849), 1, + ACTIONS(4881), 1, anon_sym_CARET, - ACTIONS(4851), 1, + ACTIONS(4883), 1, anon_sym_PIPE, - ACTIONS(4855), 1, - anon_sym_PERCENT, - ACTIONS(4857), 1, - anon_sym_STAR_STAR, - ACTIONS(4859), 1, - anon_sym_LT, - ACTIONS(4867), 1, + ACTIONS(4891), 1, anon_sym_QMARK_QMARK, - ACTIONS(4869), 1, + ACTIONS(4893), 1, sym__ternary_qmark, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4835), 2, + ACTIONS(4808), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4837), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4845), 2, + ACTIONS(4812), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4853), 2, + ACTIONS(4814), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4863), 2, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4873), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4887), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4865), 2, + ACTIONS(4889), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4861), 3, + ACTIONS(4885), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4544), 5, + ACTIONS(4577), 5, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_of, anon_sym_BQUOTE, - [50862] = 16, - ACTIONS(1588), 1, + [50037] = 13, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(3673), 1, - anon_sym_override, - ACTIONS(4467), 1, - anon_sym_STAR, - ACTIONS(4469), 1, + ACTIONS(3752), 1, + anon_sym_COMMA, + ACTIONS(3868), 1, + anon_sym_RBRACE, + ACTIONS(4429), 1, anon_sym_EQ, - ACTIONS(4471), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(4473), 1, - anon_sym_async, - ACTIONS(4477), 1, - anon_sym_readonly, - STATE(2769), 1, - sym_override_modifier, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4003), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4475), 2, + ACTIONS(4738), 2, sym_number, sym_private_property_identifier, - ACTIONS(4479), 2, - anon_sym_get, - anon_sym_set, - STATE(3058), 3, + STATE(3890), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 7, + ACTIONS(3758), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -182829,18 +180391,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3651), 18, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -182848,37 +180415,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [50940] = 15, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + [50109] = 5, + ACTIONS(4543), 1, + anon_sym_LT, + STATE(1894), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4030), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4032), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4516), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(4518), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 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_satisfies, - ACTIONS(4972), 1, - anon_sym_LT, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, + anon_sym_extends, + [50165] = 6, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4956), 1, + anon_sym_DOT, + STATE(1895), 1, sym_arguments, - STATE(5093), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4616), 11, + ACTIONS(4052), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -182887,14 +180487,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4618), 19, + ACTIONS(4054), 27, sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_of, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -182908,359 +180513,608 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [51016] = 31, - ACTIONS(4425), 1, + anon_sym_satisfies, + anon_sym_extends, + [50223] = 16, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4427), 1, + anon_sym_STAR, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(4431), 1, + anon_sym_LBRACK, + ACTIONS(4433), 1, + anon_sym_async, + ACTIONS(4437), 1, + anon_sym_readonly, + STATE(2748), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4002), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4435), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4439), 2, + anon_sym_get, + anon_sym_set, + STATE(3080), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3646), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + 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, + anon_sym_object, + [50301] = 31, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4826), 1, + ACTIONS(4810), 1, + anon_sym_GT_GT, + ACTIONS(4816), 1, + anon_sym_PERCENT, + ACTIONS(4818), 1, + anon_sym_STAR_STAR, + ACTIONS(4820), 1, + anon_sym_LT, + ACTIONS(4842), 1, anon_sym_as, - ACTIONS(4828), 1, + ACTIONS(4844), 1, anon_sym_BANG, - ACTIONS(4833), 1, + ACTIONS(4849), 1, anon_sym_satisfies, - ACTIONS(4927), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4929), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4931), 1, - anon_sym_GT_GT, - ACTIONS(4935), 1, + ACTIONS(4879), 1, anon_sym_AMP, - ACTIONS(4937), 1, + ACTIONS(4881), 1, anon_sym_CARET, - ACTIONS(4939), 1, + ACTIONS(4883), 1, anon_sym_PIPE, - ACTIONS(4943), 1, - anon_sym_PERCENT, - ACTIONS(4945), 1, - anon_sym_STAR_STAR, - ACTIONS(4947), 1, - anon_sym_LT, - ACTIONS(4955), 1, + ACTIONS(4891), 1, anon_sym_QMARK_QMARK, - ACTIONS(4957), 1, + ACTIONS(4893), 1, sym__ternary_qmark, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4923), 2, + ACTIONS(4808), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4925), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4933), 2, + ACTIONS(4812), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4941), 2, + ACTIONS(4814), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4951), 2, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4873), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4887), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4953), 2, + ACTIONS(4889), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4949), 3, + ACTIONS(4885), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4651), 5, + ACTIONS(4581), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, anon_sym_BQUOTE, - [51124] = 31, - ACTIONS(4425), 1, + [50409] = 24, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(4839), 1, - anon_sym_AMP_AMP, - ACTIONS(4841), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4843), 1, + ACTIONS(4810), 1, anon_sym_GT_GT, - ACTIONS(4847), 1, - anon_sym_AMP, - ACTIONS(4849), 1, - anon_sym_CARET, - ACTIONS(4851), 1, - anon_sym_PIPE, - ACTIONS(4855), 1, + ACTIONS(4816), 1, anon_sym_PERCENT, - ACTIONS(4857), 1, + ACTIONS(4818), 1, anon_sym_STAR_STAR, - ACTIONS(4859), 1, + ACTIONS(4820), 1, anon_sym_LT, - ACTIONS(4867), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4869), 1, - sym__ternary_qmark, - STATE(1945), 1, + ACTIONS(4879), 1, + anon_sym_AMP, + ACTIONS(4881), 1, + anon_sym_CARET, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4835), 2, + ACTIONS(4585), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4808), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4837), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4845), 2, + ACTIONS(4812), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4853), 2, + ACTIONS(4814), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4863), 2, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4873), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4887), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4865), 2, + ACTIONS(4889), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4861), 3, + ACTIONS(4885), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4489), 5, + ACTIONS(4583), 11, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [51232] = 3, + anon_sym_satisfies, + [50503] = 16, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, + anon_sym_LBRACK, + ACTIONS(4539), 1, + anon_sym_DOT, + ACTIONS(4832), 1, + anon_sym_PERCENT, + ACTIONS(4834), 1, + anon_sym_STAR_STAR, + ACTIONS(4846), 1, + anon_sym_LT, + STATE(1976), 1, + sym_type_arguments, + STATE(2240), 1, + sym_arguments, + STATE(4753), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4035), 13, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4824), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4830), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4585), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4037), 29, + ACTIONS(4583), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - 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_satisfies, - anon_sym_extends, - [51283] = 3, + [50581] = 22, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, + anon_sym_LBRACK, + ACTIONS(4539), 1, + anon_sym_DOT, + ACTIONS(4826), 1, + anon_sym_GT_GT, + ACTIONS(4832), 1, + anon_sym_PERCENT, + ACTIONS(4834), 1, + anon_sym_STAR_STAR, + ACTIONS(4836), 1, + anon_sym_LT, + STATE(1976), 1, + sym_type_arguments, + STATE(2240), 1, + sym_arguments, + STATE(4753), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4067), 13, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4824), 2, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(4828), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4830), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4851), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4865), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4069), 29, + ACTIONS(4867), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4585), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4863), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4583), 12, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - 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_satisfies, - anon_sym_extends, - [51334] = 3, + [50671] = 23, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, + anon_sym_LBRACK, + ACTIONS(4539), 1, + anon_sym_DOT, + ACTIONS(4826), 1, + anon_sym_GT_GT, + ACTIONS(4832), 1, + anon_sym_PERCENT, + ACTIONS(4834), 1, + anon_sym_STAR_STAR, + ACTIONS(4836), 1, + anon_sym_LT, + ACTIONS(4857), 1, + anon_sym_AMP, + STATE(1976), 1, + sym_type_arguments, + STATE(2240), 1, + sym_arguments, + STATE(4753), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4267), 13, - anon_sym_STAR, + ACTIONS(4585), 2, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, anon_sym_PIPE, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4824), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4828), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4830), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4851), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4865), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4269), 29, + ACTIONS(4867), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4863), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4583), 12, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [50763] = 35, + ACTIONS(3530), 1, + anon_sym_COLON, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, anon_sym_LBRACK, + ACTIONS(3942), 1, anon_sym_DOT, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4465), 1, anon_sym_AMP_AMP, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4469), 1, + anon_sym_GT_GT, + ACTIONS(4473), 1, + anon_sym_AMP, + ACTIONS(4475), 1, anon_sym_CARET, + ACTIONS(4477), 1, + anon_sym_PIPE, + ACTIONS(4481), 1, anon_sym_PERCENT, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4485), 1, + anon_sym_LT, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4497), 1, anon_sym_satisfies, - anon_sym_extends, - [51385] = 3, + ACTIONS(4499), 1, + sym__ternary_qmark, + ACTIONS(4911), 1, + anon_sym_COMMA, + ACTIONS(4958), 1, + anon_sym_RPAREN, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(3558), 1, + aux_sym_sequence_expression_repeat1, + STATE(5072), 1, + sym_optional_chain, + STATE(5616), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4271), 13, + ACTIONS(4457), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4471), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4273), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4491), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4487), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [50879] = 31, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(4537), 1, anon_sym_LBRACK, + ACTIONS(4539), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4810), 1, + anon_sym_GT_GT, + ACTIONS(4816), 1, + anon_sym_PERCENT, + ACTIONS(4818), 1, + anon_sym_STAR_STAR, + ACTIONS(4820), 1, + anon_sym_LT, + ACTIONS(4842), 1, + anon_sym_as, + ACTIONS(4844), 1, + anon_sym_BANG, + ACTIONS(4849), 1, + anon_sym_satisfies, + ACTIONS(4875), 1, anon_sym_AMP_AMP, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, + ACTIONS(4879), 1, + anon_sym_AMP, + ACTIONS(4881), 1, + anon_sym_CARET, + ACTIONS(4883), 1, + anon_sym_PIPE, + ACTIONS(4891), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4893), 1, + sym__ternary_qmark, + STATE(1976), 1, + sym_type_arguments, + STATE(2240), 1, + sym_arguments, + STATE(4753), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4808), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4812), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4814), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4873), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4887), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4889), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4885), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4455), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [51436] = 3, + [50987] = 15, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, + anon_sym_LBRACK, + ACTIONS(4539), 1, + anon_sym_DOT, + ACTIONS(4816), 1, + anon_sym_PERCENT, + ACTIONS(4818), 1, + anon_sym_STAR_STAR, + ACTIONS(4920), 1, + anon_sym_LT, + STATE(1976), 1, + sym_type_arguments, + STATE(2240), 1, + sym_arguments, + STATE(4753), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4275), 13, + ACTIONS(4808), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4585), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -183269,45 +181123,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4277), 29, + ACTIONS(4583), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, - 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_satisfies, - anon_sym_extends, - [51487] = 3, + [51063] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4271), 13, + ACTIONS(4614), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4960), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4612), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -183321,15 +181172,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4273), 29, - sym__automatic_semicolon, + ACTIONS(4616), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -183350,14 +181196,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [51538] = 3, + [51119] = 15, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(4962), 1, + anon_sym_LT, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4275), 13, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4697), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -183366,21 +181235,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4277), 29, - sym__automatic_semicolon, + ACTIONS(4699), 18, sym__ternary_qmark, - anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -183394,16 +181254,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [51589] = 3, + anon_sym_implements, + [51194] = 12, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 1, + anon_sym_SQUOTE, + ACTIONS(4742), 1, + anon_sym_LBRACK, + ACTIONS(4748), 1, + anon_sym_STAR, + ACTIONS(4752), 1, + anon_sym_async, + ACTIONS(4774), 1, + anon_sym_abstract, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4754), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4758), 2, + anon_sym_get, + anon_sym_set, + STATE(3017), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 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(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [51263] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1938), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3758), 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(1936), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [51316] = 6, + ACTIONS(1665), 1, + anon_sym_EQ, + ACTIONS(1669), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4281), 13, + ACTIONS(1659), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1663), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -183417,15 +181387,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4283), 29, - sym__automatic_semicolon, + ACTIONS(1667), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -183446,12 +181413,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [51640] = 3, + [51373] = 5, + ACTIONS(4535), 1, + anon_sym_LPAREN, + STATE(2108), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4285), 13, + ACTIONS(4294), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -183465,13 +181435,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4287), 29, + ACTIONS(4296), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, @@ -183494,60 +181463,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [51691] = 3, + [51428] = 19, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(722), 1, + anon_sym_RBRACE, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(2318), 1, + anon_sym_readonly, + ACTIONS(2322), 1, + anon_sym_override, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(4736), 1, + anon_sym_LBRACK, + ACTIONS(4965), 1, + anon_sym_STAR, + STATE(2756), 1, + sym_override_modifier, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4281), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3887), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 4, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4283), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_QMARK, + ACTIONS(2314), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + 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, + anon_sym_object, + [51511] = 33, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(4537), 1, anon_sym_LBRACK, + ACTIONS(4539), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4826), 1, + anon_sym_GT_GT, + ACTIONS(4832), 1, + anon_sym_PERCENT, + ACTIONS(4834), 1, + anon_sym_STAR_STAR, + ACTIONS(4836), 1, + anon_sym_LT, + ACTIONS(4842), 1, + anon_sym_as, + ACTIONS(4844), 1, + anon_sym_BANG, + ACTIONS(4849), 1, + anon_sym_satisfies, + ACTIONS(4853), 1, anon_sym_AMP_AMP, + ACTIONS(4855), 1, anon_sym_PIPE_PIPE, + ACTIONS(4857), 1, + anon_sym_AMP, + ACTIONS(4859), 1, + anon_sym_CARET, + ACTIONS(4861), 1, + anon_sym_PIPE, + ACTIONS(4869), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4871), 1, + sym__ternary_qmark, + ACTIONS(4967), 1, + anon_sym_COMMA, + STATE(1976), 1, + sym_type_arguments, + STATE(2240), 1, + sym_arguments, + STATE(4478), 1, + aux_sym_sequence_expression_repeat1, + STATE(4753), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4824), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4828), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4830), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4851), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4865), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4867), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4969), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4863), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [51742] = 3, + [51622] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4285), 13, + ACTIONS(4140), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -183561,7 +181623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4287), 29, + ACTIONS(4142), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183591,11 +181653,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [51793] = 3, + [51673] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4289), 13, + ACTIONS(4030), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -183609,7 +181671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4291), 29, + ACTIONS(4032), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183639,11 +181701,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [51844] = 3, + [51724] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4293), 13, + ACTIONS(4144), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -183657,7 +181719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4295), 29, + ACTIONS(4146), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183687,11 +181749,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [51895] = 3, + [51775] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4289), 13, + ACTIONS(4022), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -183705,7 +181767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4291), 29, + ACTIONS(4024), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183735,11 +181797,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [51946] = 3, + [51826] = 4, + ACTIONS(4971), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4293), 13, + ACTIONS(4148), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -183753,7 +181817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4295), 29, + ACTIONS(4150), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183763,7 +181827,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -183783,11 +181846,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [51997] = 3, + [51879] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4301), 13, + ACTIONS(4154), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -183801,7 +181864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4303), 29, + ACTIONS(4156), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183831,11 +181894,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [52048] = 3, + [51930] = 4, + ACTIONS(4973), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4305), 13, + ACTIONS(4154), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -183849,7 +181914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4307), 29, + ACTIONS(4156), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183858,7 +181923,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -183879,29 +181943,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [52099] = 6, - ACTIONS(4975), 1, - anon_sym_AMP, - ACTIONS(4977), 1, - anon_sym_PIPE, - ACTIONS(4979), 1, - anon_sym_extends, + [51983] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4309), 11, + ACTIONS(4160), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4311), 28, + ACTIONS(4162), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183930,11 +181990,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [52156] = 3, + anon_sym_extends, + [52034] = 4, + ACTIONS(4032), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4325), 13, + ACTIONS(4302), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -183948,7 +182011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4327), 29, + ACTIONS(4304), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183977,26 +182040,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + [52087] = 6, + ACTIONS(4975), 1, + anon_sym_AMP, + ACTIONS(4977), 1, + anon_sym_PIPE, + ACTIONS(4979), 1, anon_sym_extends, - [52207] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4333), 13, + ACTIONS(4302), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4335), 29, + ACTIONS(4304), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184025,30 +182091,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [52258] = 6, - ACTIONS(4975), 1, - anon_sym_AMP, - ACTIONS(4977), 1, - anon_sym_PIPE, - ACTIONS(4979), 1, - anon_sym_extends, + [52144] = 5, + ACTIONS(87), 1, + anon_sym_BQUOTE, + STATE(2315), 1, + sym_template_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4333), 11, + ACTIONS(1877), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4335), 28, + ACTIONS(1879), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184075,84 +182140,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [52315] = 3, + [52199] = 6, + ACTIONS(4146), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4263), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(4606), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4609), 3, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4265), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - 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_satisfies, - anon_sym_extends, - [52366] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2343), 13, + ACTIONS(3435), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2341), 29, + ACTIONS(3439), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -184172,83 +182192,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + [52256] = 6, + ACTIONS(4024), 1, anon_sym_extends, - [52417] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4337), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(4618), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4621), 3, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4339), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - 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_satisfies, - anon_sym_extends, - [52468] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4341), 13, + ACTIONS(3435), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4343), 29, + ACTIONS(3439), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -184268,83 +182243,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + [52313] = 7, + ACTIONS(3503), 1, + anon_sym_EQ, + ACTIONS(4146), 1, anon_sym_extends, - [52519] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4341), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(4606), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4609), 3, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4343), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - 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_satisfies, - anon_sym_extends, - [52570] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4341), 13, + ACTIONS(3435), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4343), 29, + ACTIONS(3439), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -184364,26 +182295,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + [52372] = 6, + ACTIONS(4975), 1, + anon_sym_AMP, + ACTIONS(4977), 1, + anon_sym_PIPE, + ACTIONS(4979), 1, anon_sym_extends, - [52621] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4349), 13, + ACTIONS(4338), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4351), 29, + ACTIONS(4340), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184412,12 +182346,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [52672] = 3, + [52429] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4349), 13, + ACTIONS(2328), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184431,7 +182364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4351), 29, + ACTIONS(2326), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184461,11 +182394,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [52723] = 3, + [52480] = 4, + ACTIONS(4780), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4349), 13, + ACTIONS(3445), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184479,7 +182414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4351), 29, + ACTIONS(3441), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184489,7 +182424,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -184509,11 +182443,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [52774] = 3, + [52533] = 4, + ACTIONS(4981), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4353), 13, + ACTIONS(4164), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184527,7 +182463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4355), 29, + ACTIONS(4166), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184537,7 +182473,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -184557,11 +182492,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [52825] = 3, + [52586] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4353), 13, + ACTIONS(4170), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184575,7 +182510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4355), 29, + ACTIONS(4172), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184605,82 +182540,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [52876] = 3, + [52637] = 9, + ACTIONS(4024), 1, + anon_sym_extends, + ACTIONS(4618), 1, + anon_sym_LBRACK, + ACTIONS(4988), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4353), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(4621), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4355), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4983), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4985), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - 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_satisfies, - anon_sym_extends, - [52927] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4357), 13, + anon_sym_COLON, + ACTIONS(3435), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4359), 29, - sym__automatic_semicolon, + ACTIONS(3439), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -184700,35 +182594,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [52978] = 3, + [52700] = 9, + ACTIONS(3523), 1, + anon_sym_EQ, + ACTIONS(3548), 1, + anon_sym_QMARK, + ACTIONS(4606), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4361), 13, + ACTIONS(3567), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4146), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4609), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3435), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4363), 29, - sym__automatic_semicolon, + ACTIONS(3439), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -184748,12 +182648,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [53029] = 3, + [52763] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4365), 13, + ACTIONS(4174), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184767,7 +182666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4367), 29, + ACTIONS(4114), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184797,11 +182696,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [53080] = 3, + [52814] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2353), 13, + ACTIONS(4176), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184815,7 +182714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2351), 29, + ACTIONS(4178), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184845,17 +182744,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [53131] = 3, + [52865] = 4, + ACTIONS(4975), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4373), 13, + ACTIONS(4180), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -184863,7 +182763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4375), 29, + ACTIONS(4182), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184893,11 +182793,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [53182] = 3, + [52918] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4381), 13, + ACTIONS(4134), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184911,7 +182811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4383), 29, + ACTIONS(4132), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184941,11 +182841,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [53233] = 3, + [52969] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4381), 13, + ACTIONS(4184), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184959,7 +182859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4383), 29, + ACTIONS(4186), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184989,11 +182889,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [53284] = 3, + [53020] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4381), 13, + ACTIONS(4188), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -185007,7 +182907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4383), 29, + ACTIONS(4190), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185037,25 +182937,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [53335] = 3, + [53071] = 6, + ACTIONS(4975), 1, + anon_sym_AMP, + ACTIONS(4977), 1, + anon_sym_PIPE, + ACTIONS(4979), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4385), 13, + ACTIONS(4192), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4387), 29, + ACTIONS(4194), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185084,26 +182988,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + [53128] = 6, + ACTIONS(4156), 1, anon_sym_extends, - [53386] = 3, + ACTIONS(4973), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4385), 13, + ACTIONS(4154), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4196), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4387), 29, + ACTIONS(4198), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185112,7 +183020,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -185132,12 +183039,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + [53185] = 4, + ACTIONS(4992), 1, anon_sym_extends, - [53437] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4385), 13, + ACTIONS(4200), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -185151,7 +183059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4387), 29, + ACTIONS(4202), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185180,12 +183088,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [53488] = 3, + [53238] = 4, + ACTIONS(4973), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4389), 13, + ACTIONS(4206), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -185199,7 +183108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4391), 29, + ACTIONS(4208), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185208,7 +183117,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -185229,11 +183137,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [53539] = 3, + [53291] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4389), 13, + ACTIONS(4136), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -185247,7 +183155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4391), 29, + ACTIONS(4138), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185277,11 +183185,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [53590] = 3, + [53342] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4389), 13, + ACTIONS(4210), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -185295,7 +183203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4391), 29, + ACTIONS(4212), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185325,11 +183233,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [53641] = 3, + [53393] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4393), 13, + ACTIONS(4214), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -185343,7 +183251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4395), 29, + ACTIONS(4216), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185373,112 +183281,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [53692] = 6, - ACTIONS(4975), 1, - anon_sym_AMP, - ACTIONS(4977), 1, - anon_sym_PIPE, - ACTIONS(4979), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4401), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4403), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - 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_satisfies, - [53749] = 5, - ACTIONS(1708), 1, - anon_sym_EQ, - ACTIONS(4749), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1704), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1702), 27, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - 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_satisfies, - [53804] = 3, + [53444] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4027), 13, + ACTIONS(4090), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -185492,7 +183299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4029), 29, + ACTIONS(4092), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185522,414 +183329,268 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [53855] = 33, - ACTIONS(4425), 1, + [53495] = 33, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, ACTIONS(4826), 1, + anon_sym_GT_GT, + ACTIONS(4832), 1, + anon_sym_PERCENT, + ACTIONS(4834), 1, + anon_sym_STAR_STAR, + ACTIONS(4836), 1, + anon_sym_LT, + ACTIONS(4842), 1, anon_sym_as, - ACTIONS(4828), 1, + ACTIONS(4844), 1, anon_sym_BANG, - ACTIONS(4833), 1, + ACTIONS(4849), 1, anon_sym_satisfies, - ACTIONS(4839), 1, + ACTIONS(4853), 1, anon_sym_AMP_AMP, - ACTIONS(4841), 1, + ACTIONS(4855), 1, anon_sym_PIPE_PIPE, - ACTIONS(4843), 1, - anon_sym_GT_GT, - ACTIONS(4847), 1, + ACTIONS(4857), 1, anon_sym_AMP, - ACTIONS(4849), 1, + ACTIONS(4859), 1, anon_sym_CARET, - ACTIONS(4851), 1, + ACTIONS(4861), 1, anon_sym_PIPE, - ACTIONS(4855), 1, - anon_sym_PERCENT, - ACTIONS(4857), 1, - anon_sym_STAR_STAR, - ACTIONS(4859), 1, - anon_sym_LT, - ACTIONS(4867), 1, - anon_sym_QMARK_QMARK, ACTIONS(4869), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4871), 1, sym__ternary_qmark, - ACTIONS(4981), 1, + ACTIONS(4994), 1, anon_sym_COMMA, - ACTIONS(4984), 1, + ACTIONS(4997), 1, anon_sym_RBRACE, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4835), 2, + ACTIONS(4824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4837), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4845), 2, + ACTIONS(4828), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4853), 2, + ACTIONS(4830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4863), 2, + ACTIONS(4851), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4865), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4865), 2, + ACTIONS(4867), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4986), 2, + ACTIONS(4999), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(4861), 3, + ACTIONS(4863), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [53966] = 33, - ACTIONS(4425), 1, + [53606] = 33, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, ACTIONS(4826), 1, + anon_sym_GT_GT, + ACTIONS(4832), 1, + anon_sym_PERCENT, + ACTIONS(4834), 1, + anon_sym_STAR_STAR, + ACTIONS(4836), 1, + anon_sym_LT, + ACTIONS(4842), 1, anon_sym_as, - ACTIONS(4828), 1, + ACTIONS(4844), 1, anon_sym_BANG, - ACTIONS(4833), 1, + ACTIONS(4849), 1, anon_sym_satisfies, - ACTIONS(4839), 1, + ACTIONS(4853), 1, anon_sym_AMP_AMP, - ACTIONS(4841), 1, + ACTIONS(4855), 1, anon_sym_PIPE_PIPE, - ACTIONS(4843), 1, - anon_sym_GT_GT, - ACTIONS(4847), 1, + ACTIONS(4857), 1, anon_sym_AMP, - ACTIONS(4849), 1, + ACTIONS(4859), 1, anon_sym_CARET, - ACTIONS(4851), 1, + ACTIONS(4861), 1, anon_sym_PIPE, - ACTIONS(4855), 1, - anon_sym_PERCENT, - ACTIONS(4857), 1, - anon_sym_STAR_STAR, - ACTIONS(4859), 1, - anon_sym_LT, - ACTIONS(4867), 1, - anon_sym_QMARK_QMARK, ACTIONS(4869), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4871), 1, sym__ternary_qmark, - ACTIONS(4981), 1, + ACTIONS(4994), 1, anon_sym_COMMA, - ACTIONS(4984), 1, + ACTIONS(4997), 1, anon_sym_RBRACE, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4734), 2, + ACTIONS(4501), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4835), 2, + ACTIONS(4824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4837), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4845), 2, + ACTIONS(4828), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4853), 2, + ACTIONS(4830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4863), 2, + ACTIONS(4851), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4865), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4865), 2, + ACTIONS(4867), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4861), 3, + ACTIONS(4863), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [54077] = 19, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(727), 1, - anon_sym_RBRACE, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(2325), 1, - anon_sym_async, - ACTIONS(2327), 1, - anon_sym_readonly, - ACTIONS(2331), 1, - anon_sym_override, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4988), 1, - anon_sym_STAR, - STATE(2768), 1, - sym_override_modifier, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2301), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2329), 2, - anon_sym_get, - anon_sym_set, - STATE(3922), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2323), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - 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, - anon_sym_object, - [54160] = 33, - ACTIONS(4425), 1, + [53717] = 33, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(4839), 1, - anon_sym_AMP_AMP, - ACTIONS(4841), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4843), 1, anon_sym_GT_GT, - ACTIONS(4847), 1, - anon_sym_AMP, - ACTIONS(4849), 1, - anon_sym_CARET, - ACTIONS(4851), 1, - anon_sym_PIPE, - ACTIONS(4855), 1, + ACTIONS(4832), 1, anon_sym_PERCENT, - ACTIONS(4857), 1, + ACTIONS(4834), 1, anon_sym_STAR_STAR, - ACTIONS(4859), 1, + ACTIONS(4836), 1, anon_sym_LT, - ACTIONS(4867), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4869), 1, - sym__ternary_qmark, - ACTIONS(4984), 1, - anon_sym_RBRACE, - ACTIONS(4990), 1, - anon_sym_COMMA, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4710), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4835), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4837), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4845), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4853), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4863), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4865), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4861), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [54271] = 33, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4826), 1, + ACTIONS(4842), 1, anon_sym_as, - ACTIONS(4828), 1, + ACTIONS(4844), 1, anon_sym_BANG, - ACTIONS(4833), 1, + ACTIONS(4849), 1, anon_sym_satisfies, - ACTIONS(4839), 1, + ACTIONS(4853), 1, anon_sym_AMP_AMP, - ACTIONS(4841), 1, + ACTIONS(4855), 1, anon_sym_PIPE_PIPE, - ACTIONS(4843), 1, - anon_sym_GT_GT, - ACTIONS(4847), 1, + ACTIONS(4857), 1, anon_sym_AMP, - ACTIONS(4849), 1, + ACTIONS(4859), 1, anon_sym_CARET, - ACTIONS(4851), 1, + ACTIONS(4861), 1, anon_sym_PIPE, - ACTIONS(4855), 1, - anon_sym_PERCENT, - ACTIONS(4857), 1, - anon_sym_STAR_STAR, - ACTIONS(4859), 1, - anon_sym_LT, - ACTIONS(4867), 1, - anon_sym_QMARK_QMARK, ACTIONS(4869), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4871), 1, sym__ternary_qmark, - ACTIONS(4993), 1, - anon_sym_COMMA, - ACTIONS(4996), 1, + ACTIONS(4997), 1, anon_sym_RBRACE, - STATE(1945), 1, + ACTIONS(5001), 1, + anon_sym_COMMA, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4710), 2, + ACTIONS(4577), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4835), 2, + ACTIONS(4824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4837), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4845), 2, + ACTIONS(4828), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4853), 2, + ACTIONS(4830), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4863), 2, + ACTIONS(4851), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4865), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4865), 2, + ACTIONS(4867), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4861), 3, + ACTIONS(4863), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [54382] = 6, - ACTIONS(4722), 1, - anon_sym_LBRACK, + [53828] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4047), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4725), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3448), 10, + ACTIONS(2336), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 26, + ACTIONS(2334), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -185949,91 +183610,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [54439] = 33, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(4839), 1, - anon_sym_AMP_AMP, - ACTIONS(4841), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4843), 1, - anon_sym_GT_GT, - ACTIONS(4847), 1, - anon_sym_AMP, - ACTIONS(4849), 1, - anon_sym_CARET, - ACTIONS(4851), 1, - anon_sym_PIPE, - ACTIONS(4855), 1, - anon_sym_PERCENT, - ACTIONS(4857), 1, - anon_sym_STAR_STAR, - ACTIONS(4859), 1, - anon_sym_LT, - ACTIONS(4867), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4869), 1, - sym__ternary_qmark, - ACTIONS(4998), 1, - anon_sym_COMMA, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(4518), 1, - aux_sym_sequence_expression_repeat1, - STATE(5093), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4835), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4837), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4845), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4853), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4863), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4865), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5000), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4861), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [54550] = 4, - ACTIONS(4029), 1, anon_sym_extends, + [53879] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 13, + ACTIONS(4086), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186047,7 +183629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4169), 28, + ACTIONS(4088), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186076,118 +183658,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [54603] = 32, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(4925), 1, - anon_sym_GT, - ACTIONS(4927), 1, - anon_sym_AMP_AMP, - ACTIONS(4929), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4931), 1, - anon_sym_GT_GT, - ACTIONS(4935), 1, - anon_sym_AMP, - ACTIONS(4937), 1, - anon_sym_CARET, - ACTIONS(4939), 1, - anon_sym_PIPE, - ACTIONS(4943), 1, - anon_sym_PERCENT, - ACTIONS(4945), 1, - anon_sym_STAR_STAR, - ACTIONS(4947), 1, - anon_sym_LT, - ACTIONS(4955), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4957), 1, - sym__ternary_qmark, - ACTIONS(5004), 1, - anon_sym_in, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4923), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4933), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4941), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4951), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4953), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4949), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5002), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - [54712] = 9, - ACTIONS(2333), 1, anon_sym_extends, - ACTIONS(4211), 1, - anon_sym_LBRACK, - ACTIONS(5007), 1, - anon_sym_RPAREN, + [53930] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1708), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4214), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4891), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1706), 11, + ACTIONS(4222), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1710), 22, + ACTIONS(4224), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -186207,29 +183706,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [54775] = 6, - ACTIONS(4975), 1, - anon_sym_AMP, - ACTIONS(4977), 1, - anon_sym_PIPE, - ACTIONS(4979), 1, anon_sym_extends, + [53981] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 11, + ACTIONS(4226), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4169), 28, + ACTIONS(4228), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186258,41 +183754,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [54832] = 9, - ACTIONS(4105), 1, anon_sym_extends, - ACTIONS(4319), 1, - anon_sym_LBRACK, - ACTIONS(5010), 1, - anon_sym_RPAREN, + [54032] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4315), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4322), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4887), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4313), 11, + ACTIONS(4230), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4317), 22, + ACTIONS(4232), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -186312,11 +183802,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [54895] = 3, + anon_sym_extends, + [54083] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2335), 13, + ACTIONS(4406), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186330,7 +183821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2333), 29, + ACTIONS(4408), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186360,13 +183851,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [54946] = 4, - ACTIONS(4793), 1, - anon_sym_DOT, + [54134] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3458), 13, + ACTIONS(4234), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186380,7 +183869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3454), 28, + ACTIONS(4236), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186390,6 +183879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -186409,11 +183899,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [54999] = 3, + [54185] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4121), 13, + ACTIONS(4238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186427,7 +183917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4123), 29, + ACTIONS(4240), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186457,13 +183947,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55050] = 4, - ACTIONS(5013), 1, - anon_sym_DOT, + [54236] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4093), 13, + ACTIONS(4242), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186477,7 +183965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4095), 28, + ACTIONS(4244), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186487,6 +183975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -186506,29 +183995,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55103] = 6, - ACTIONS(4975), 1, + [54287] = 33, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, + anon_sym_LBRACK, + ACTIONS(4539), 1, + anon_sym_DOT, + ACTIONS(4826), 1, + anon_sym_GT_GT, + ACTIONS(4832), 1, + anon_sym_PERCENT, + ACTIONS(4834), 1, + anon_sym_STAR_STAR, + ACTIONS(4836), 1, + anon_sym_LT, + ACTIONS(4842), 1, + anon_sym_as, + ACTIONS(4844), 1, + anon_sym_BANG, + ACTIONS(4849), 1, + anon_sym_satisfies, + ACTIONS(4853), 1, + anon_sym_AMP_AMP, + ACTIONS(4855), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4857), 1, anon_sym_AMP, - ACTIONS(4977), 1, + ACTIONS(4859), 1, + anon_sym_CARET, + ACTIONS(4861), 1, anon_sym_PIPE, - ACTIONS(4979), 1, - anon_sym_extends, + ACTIONS(4869), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4871), 1, + sym__ternary_qmark, + ACTIONS(5004), 1, + anon_sym_COMMA, + ACTIONS(5007), 1, + anon_sym_RBRACE, + STATE(1976), 1, + sym_type_arguments, + STATE(2240), 1, + sym_arguments, + STATE(4753), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4577), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4824), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4828), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4830), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4851), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4865), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4867), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4863), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [54398] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4297), 11, + ACTIONS(4246), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4299), 28, + ACTIONS(4248), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186557,29 +184120,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [55160] = 6, - ACTIONS(4975), 1, - anon_sym_AMP, - ACTIONS(4977), 1, - anon_sym_PIPE, - ACTIONS(4979), 1, anon_sym_extends, + [54449] = 4, + ACTIONS(4254), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4345), 11, + ACTIONS(4250), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4347), 28, + ACTIONS(4252), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186589,7 +184151,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -186608,11 +184169,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [55217] = 3, + anon_sym_extends, + [54502] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4099), 13, + ACTIONS(3623), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186626,7 +184188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4101), 29, + ACTIONS(3419), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186656,13 +184218,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55268] = 4, - ACTIONS(4315), 1, - anon_sym_EQ, + [54553] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4313), 13, + ACTIONS(3625), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186676,7 +184236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4317), 28, + ACTIONS(3429), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186705,11 +184265,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [55321] = 3, + anon_sym_extends, + [54604] = 4, + ACTIONS(4257), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4045), 13, + ACTIONS(4250), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186723,7 +184286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4047), 29, + ACTIONS(4252), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186733,7 +184296,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -186753,165 +184315,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55372] = 19, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(2325), 1, - anon_sym_async, - ACTIONS(2327), 1, - anon_sym_readonly, - ACTIONS(2331), 1, - anon_sym_override, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4988), 1, - anon_sym_STAR, - ACTIONS(5015), 1, - anon_sym_RBRACE, - STATE(2768), 1, - sym_override_modifier, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, + [54657] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2301), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2329), 2, - anon_sym_get, - anon_sym_set, - STATE(3922), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2323), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - 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, - anon_sym_object, - [55455] = 33, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, + ACTIONS(4260), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(4839), 1, - anon_sym_AMP_AMP, - ACTIONS(4841), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4843), 1, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(4847), 1, anon_sym_AMP, - ACTIONS(4849), 1, - anon_sym_CARET, - ACTIONS(4851), 1, anon_sym_PIPE, - ACTIONS(4855), 1, - anon_sym_PERCENT, - ACTIONS(4857), 1, - anon_sym_STAR_STAR, - ACTIONS(4859), 1, - anon_sym_LT, - ACTIONS(4867), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4869), 1, - sym__ternary_qmark, - ACTIONS(4998), 1, - anon_sym_COMMA, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(4518), 1, - aux_sym_sequence_expression_repeat1, - STATE(5093), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4835), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4837), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4845), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4853), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4863), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4865), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5017), 2, + ACTIONS(4262), 29, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - ACTIONS(4861), 3, + anon_sym_of, + 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, - [55566] = 6, - ACTIONS(4712), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4123), 2, - anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, anon_sym_extends, - ACTIONS(4715), 3, - anon_sym_GT, + [54708] = 6, + ACTIONS(4975), 1, anon_sym_AMP, + ACTIONS(4977), 1, anon_sym_PIPE, - ACTIONS(3448), 10, + ACTIONS(4979), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4260), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -186919,14 +184385,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 26, + ACTIONS(4262), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -186946,41 +184414,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [55623] = 9, - ACTIONS(4047), 1, - anon_sym_extends, - ACTIONS(4722), 1, - anon_sym_LBRACK, - ACTIONS(5024), 1, - anon_sym_RPAREN, + [54765] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4725), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5019), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5021), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3448), 11, + ACTIONS(4264), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 22, + ACTIONS(4266), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -187000,41 +184461,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [55686] = 9, - ACTIONS(3518), 1, - anon_sym_EQ, - ACTIONS(3556), 1, - anon_sym_QMARK, - ACTIONS(4712), 1, - anon_sym_LBRACK, + anon_sym_extends, + [54816] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3558), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4123), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4715), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3448), 11, + ACTIONS(4268), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 22, + ACTIONS(4270), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -187054,15 +184509,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [55749] = 5, - ACTIONS(4514), 1, - anon_sym_LPAREN, - STATE(2130), 1, - sym_arguments, + anon_sym_extends, + [54867] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4329), 13, + ACTIONS(4272), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187076,12 +184528,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4331), 27, + ACTIONS(4274), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, @@ -187104,41 +184557,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [55804] = 7, - ACTIONS(3502), 1, - anon_sym_DOT, - ACTIONS(3504), 1, - anon_sym_QMARK_DOT, + anon_sym_extends, + [54918] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3458), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3454), 7, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3448), 11, + ACTIONS(4276), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 20, + ACTIONS(4278), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -187156,115 +184605,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [55863] = 33, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(4839), 1, - anon_sym_AMP_AMP, - ACTIONS(4841), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4843), 1, - anon_sym_GT_GT, - ACTIONS(4847), 1, - anon_sym_AMP, - ACTIONS(4849), 1, - anon_sym_CARET, - ACTIONS(4851), 1, - anon_sym_PIPE, - ACTIONS(4855), 1, - anon_sym_PERCENT, - ACTIONS(4857), 1, - anon_sym_STAR_STAR, - ACTIONS(4859), 1, - anon_sym_LT, - ACTIONS(4867), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4869), 1, - sym__ternary_qmark, - ACTIONS(4998), 1, - anon_sym_COMMA, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(4518), 1, - aux_sym_sequence_expression_repeat1, - STATE(5093), 1, - sym_optional_chain, + anon_sym_extends, + [54969] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4835), 2, + ACTIONS(4280), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4837), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4845), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4853), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4863), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4865), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5028), 2, + ACTIONS(4282), 29, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - ACTIONS(4861), 3, + anon_sym_of, + 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, - [55974] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [55020] = 4, + ACTIONS(4975), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4117), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4119), 7, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3448), 11, + ACTIONS(4284), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 22, + ACTIONS(4286), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -187284,38 +184702,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [56029] = 6, - ACTIONS(4743), 1, - anon_sym_LBRACK, + anon_sym_extends, + [55073] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4127), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4746), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4702), 10, + ACTIONS(4290), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4704), 26, + ACTIONS(4292), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -187335,15 +184750,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [56086] = 5, - ACTIONS(89), 1, - anon_sym_BQUOTE, - STATE(2081), 1, - sym_template_string, + anon_sym_extends, + [55124] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1905), 13, + ACTIONS(4062), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187357,7 +184769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1907), 27, + ACTIONS(4064), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -187384,128 +184796,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [56141] = 14, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(3673), 1, - anon_sym_override, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(5030), 1, - anon_sym_STAR, - ACTIONS(5032), 1, - anon_sym_async, - ACTIONS(5036), 1, - anon_sym_readonly, - STATE(2761), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5034), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5038), 2, - anon_sym_get, - anon_sym_set, - STATE(3023), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 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(3651), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - 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, - anon_sym_object, - [56214] = 12, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(4901), 1, - anon_sym_abstract, - ACTIONS(5030), 1, - anon_sym_STAR, - ACTIONS(5032), 1, - anon_sym_async, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5034), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5038), 2, - anon_sym_get, - anon_sym_set, - STATE(3023), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 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(3651), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [56283] = 3, + anon_sym_extends, + [55175] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4103), 13, + ACTIONS(2340), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187519,7 +184817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4105), 29, + ACTIONS(2338), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -187549,131 +184847,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [56334] = 14, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(3673), 1, - anon_sym_override, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(5040), 1, - anon_sym_STAR, - ACTIONS(5042), 1, - anon_sym_async, - ACTIONS(5046), 1, - anon_sym_readonly, - STATE(2751), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5044), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5048), 2, - anon_sym_get, - anon_sym_set, - STATE(3012), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 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(3651), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - 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, - anon_sym_object, - [56407] = 12, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(5040), 1, - anon_sym_STAR, - ACTIONS(5042), 1, - anon_sym_async, - ACTIONS(5052), 1, - anon_sym_abstract, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5048), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5050), 2, - sym_number, - sym_private_property_identifier, - STATE(3013), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 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(3651), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [56476] = 5, - ACTIONS(4514), 1, - anon_sym_LPAREN, - STATE(2293), 1, - sym_arguments, + [55226] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4397), 13, + ACTIONS(4298), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187687,12 +184865,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4399), 27, + ACTIONS(4300), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, @@ -187715,164 +184894,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [56531] = 14, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(3673), 1, - anon_sym_override, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(5054), 1, - anon_sym_STAR, - ACTIONS(5056), 1, - anon_sym_async, - ACTIONS(5060), 1, - anon_sym_readonly, - STATE(2746), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5058), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5062), 2, - anon_sym_get, - anon_sym_set, - STATE(3077), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 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(3651), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - 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, - anon_sym_object, - [56604] = 19, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(2325), 1, - anon_sym_async, - ACTIONS(2327), 1, - anon_sym_readonly, - ACTIONS(2331), 1, - anon_sym_override, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4988), 1, - anon_sym_STAR, - ACTIONS(5064), 1, - anon_sym_RBRACE, - STATE(2768), 1, - sym_override_modifier, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2301), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2329), 2, - anon_sym_get, - anon_sym_set, - STATE(3922), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2323), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - 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, - anon_sym_object, - [56687] = 9, - ACTIONS(4047), 1, anon_sym_extends, - ACTIONS(4722), 1, - anon_sym_LBRACK, - ACTIONS(5068), 1, - anon_sym_RPAREN, + [55277] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4725), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5019), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5066), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3448), 11, + ACTIONS(4306), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 22, + ACTIONS(4308), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -187892,41 +184942,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [56750] = 9, - ACTIONS(3546), 1, - anon_sym_EQ, - ACTIONS(3556), 1, - anon_sym_QMARK, - ACTIONS(4712), 1, - anon_sym_LBRACK, + anon_sym_extends, + [55328] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3549), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4123), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4715), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3448), 11, + ACTIONS(4310), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 22, + ACTIONS(4312), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -187946,41 +184990,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [56813] = 9, - ACTIONS(2333), 1, anon_sym_extends, - ACTIONS(4211), 1, - anon_sym_LBRACK, - ACTIONS(4906), 1, - anon_sym_RPAREN, + [55379] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1708), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4214), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4751), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1706), 11, + ACTIONS(4314), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1710), 22, + ACTIONS(4316), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -188000,41 +185038,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [56876] = 9, - ACTIONS(4105), 1, anon_sym_extends, - ACTIONS(4319), 1, - anon_sym_LBRACK, - ACTIONS(4910), 1, - anon_sym_RPAREN, + [55430] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4315), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4322), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4810), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4313), 11, + ACTIONS(4310), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4317), 22, + ACTIONS(4312), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -188054,16 +185086,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [56939] = 4, + anon_sym_extends, + [55481] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4165), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4369), 13, + ACTIONS(4314), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188077,12 +185105,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4371), 25, + ACTIONS(4316), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -188103,11 +185134,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [56992] = 3, + anon_sym_extends, + [55532] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4107), 13, + ACTIONS(4318), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188121,7 +185153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4109), 29, + ACTIONS(4320), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188151,16 +185183,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [57043] = 4, + [55583] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4181), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4369), 13, + ACTIONS(4322), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188174,12 +185201,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4371), 25, + ACTIONS(4324), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -188200,106 +185230,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [57096] = 19, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(2325), 1, - anon_sym_async, - ACTIONS(2327), 1, - anon_sym_readonly, - ACTIONS(2331), 1, - anon_sym_override, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4988), 1, - anon_sym_STAR, - ACTIONS(5071), 1, - anon_sym_RBRACE, - STATE(2768), 1, - sym_override_modifier, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2301), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2329), 2, - anon_sym_get, - anon_sym_set, - STATE(3922), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2323), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - 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, - anon_sym_object, - [57179] = 10, - ACTIONS(1708), 1, - anon_sym_EQ, - ACTIONS(2333), 1, anon_sym_extends, - ACTIONS(2335), 1, - anon_sym_QMARK, - ACTIONS(4211), 1, - anon_sym_LBRACK, - ACTIONS(4891), 1, - anon_sym_COLON, + [55634] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4214), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4906), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1706), 11, + ACTIONS(4318), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1710), 22, + ACTIONS(4320), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -188319,42 +185278,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [57244] = 10, - ACTIONS(4103), 1, - anon_sym_QMARK, - ACTIONS(4105), 1, anon_sym_extends, - ACTIONS(4315), 1, - anon_sym_EQ, - ACTIONS(4319), 1, - anon_sym_LBRACK, - ACTIONS(4887), 1, - anon_sym_COLON, + [55685] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4322), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4910), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(4313), 11, + ACTIONS(4322), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4317), 22, + ACTIONS(4324), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -188374,38 +185326,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [57309] = 6, + anon_sym_extends, + [55736] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4715), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4712), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4123), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3448), 11, + ACTIONS(4326), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 22, + ACTIONS(4328), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -188425,38 +185374,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [57366] = 6, + anon_sym_extends, + [55787] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4746), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4743), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4127), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4702), 11, + ACTIONS(4330), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4704), 22, + ACTIONS(4332), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -188476,38 +185422,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [57423] = 6, + anon_sym_extends, + [55838] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4725), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4722), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4047), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3448), 11, + ACTIONS(4326), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 22, + ACTIONS(4328), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -188527,18 +185470,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [57480] = 4, - ACTIONS(4975), 1, - anon_sym_AMP, + anon_sym_extends, + [55889] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4111), 12, + ACTIONS(4330), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -188546,7 +185489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4113), 29, + ACTIONS(4332), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188576,11 +185519,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [57533] = 3, + [55940] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4117), 13, + ACTIONS(4334), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188594,7 +185537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4119), 29, + ACTIONS(4336), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188624,13 +185567,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [57584] = 4, - ACTIONS(3484), 1, - anon_sym_EQ, + [55991] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3448), 13, + ACTIONS(4342), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188644,7 +185585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 28, + ACTIONS(4344), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188673,25 +185614,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [57637] = 3, - ACTIONS(5), 2, - sym_html_comment, + anon_sym_extends, + [56042] = 6, + ACTIONS(4975), 1, + anon_sym_AMP, + ACTIONS(4977), 1, + anon_sym_PIPE, + ACTIONS(4979), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(4125), 13, + ACTIONS(4346), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4127), 29, + ACTIONS(4348), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188720,71 +185666,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [57688] = 14, - ACTIONS(169), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1510), 1, - anon_sym_DQUOTE, - ACTIONS(1512), 1, - anon_sym_SQUOTE, - ACTIONS(3243), 1, - anon_sym_LBRACE, - ACTIONS(3891), 1, - anon_sym_LBRACK, - ACTIONS(5075), 1, - anon_sym_COMMA, - ACTIONS(5077), 1, - anon_sym_RBRACE, - STATE(5037), 1, - aux_sym_object_pattern_repeat1, + [56099] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5079), 2, - sym_number, - sym_private_property_identifier, - STATE(4986), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5780), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(5975), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(5073), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [57761] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4133), 13, + ACTIONS(4350), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188798,7 +185684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4135), 29, + ACTIONS(4352), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188828,29 +185714,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [57812] = 6, - ACTIONS(4975), 1, - anon_sym_AMP, - ACTIONS(4977), 1, - anon_sym_PIPE, - ACTIONS(4979), 1, - anon_sym_extends, + [56150] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4137), 11, + ACTIONS(4354), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4139), 28, + ACTIONS(4356), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188879,18 +185761,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [57869] = 6, - ACTIONS(4085), 1, anon_sym_extends, - ACTIONS(5081), 1, - anon_sym_LBRACK, + [56201] = 6, + ACTIONS(4975), 1, + anon_sym_AMP, + ACTIONS(4977), 1, + anon_sym_PIPE, + ACTIONS(4979), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4083), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4145), 11, + ACTIONS(4354), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188902,7 +185784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4147), 27, + ACTIONS(4356), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188911,6 +185793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -188930,90 +185813,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [57926] = 32, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + [56258] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4122), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4124), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4516), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(4518), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(4839), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(4841), 1, anon_sym_PIPE_PIPE, - ACTIONS(4843), 1, - anon_sym_GT_GT, - ACTIONS(4847), 1, - anon_sym_AMP, - ACTIONS(4849), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4851), 1, - anon_sym_PIPE, - ACTIONS(4855), 1, anon_sym_PERCENT, - ACTIONS(4857), 1, anon_sym_STAR_STAR, - ACTIONS(4859), 1, - anon_sym_LT, - ACTIONS(4867), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4869), 1, - sym__ternary_qmark, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [56309] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4835), 2, + ACTIONS(2332), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4837), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4845), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4853), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4863), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4865), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4984), 2, + ACTIONS(2330), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(5083), 2, - sym__automatic_semicolon, + anon_sym_LPAREN, anon_sym_SEMI, - ACTIONS(4861), 3, + anon_sym_of, + 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, - [58035] = 4, - ACTIONS(5081), 1, - anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [56360] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4157), 13, + ACTIONS(4358), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189027,7 +185927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4159), 28, + ACTIONS(4360), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189036,6 +185936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -189056,68 +185957,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [58088] = 12, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(4771), 1, - anon_sym_LBRACK, - ACTIONS(4781), 1, - anon_sym_abstract, - ACTIONS(4795), 1, - anon_sym_STAR, - ACTIONS(4799), 1, - anon_sym_async, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4801), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4805), 2, - anon_sym_get, - anon_sym_set, - STATE(3005), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 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(3651), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [58157] = 3, + [56411] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4163), 13, + ACTIONS(4362), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189131,7 +185975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4165), 29, + ACTIONS(4364), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189161,13 +186005,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [58208] = 4, - ACTIONS(5085), 1, - anon_sym_DOT, + [56462] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4077), 13, + ACTIONS(4362), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189181,7 +186023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4079), 28, + ACTIONS(4364), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189191,6 +186033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -189210,41 +186053,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [58261] = 7, - ACTIONS(3460), 1, - anon_sym_DOT, - ACTIONS(3464), 1, - anon_sym_QMARK_DOT, + [56513] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3454), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3458), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3448), 10, + ACTIONS(4362), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 24, + ACTIONS(4364), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -189262,11 +186100,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [58320] = 3, + anon_sym_extends, + [56564] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4171), 13, + ACTIONS(4366), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189280,7 +186119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4173), 29, + ACTIONS(4368), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189310,11 +186149,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [58371] = 3, + [56615] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4175), 13, + ACTIONS(4366), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189328,7 +186167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4177), 29, + ACTIONS(4368), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189358,37 +186197,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [58422] = 5, + [56666] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4117), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4119), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3448), 10, + ACTIONS(4366), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 26, + ACTIONS(4368), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -189408,38 +186244,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [58477] = 6, - ACTIONS(4127), 1, anon_sym_extends, + [56717] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4743), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4746), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4702), 10, + ACTIONS(4370), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4704), 26, + ACTIONS(4372), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -189459,13 +186292,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [58534] = 4, - ACTIONS(4165), 1, anon_sym_extends, + [56768] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4369), 13, + ACTIONS(4370), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189479,7 +186311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4371), 28, + ACTIONS(4372), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189508,11 +186340,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [58587] = 3, + anon_sym_extends, + [56819] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4083), 13, + ACTIONS(4370), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189526,7 +186359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4085), 29, + ACTIONS(4372), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189556,13 +186389,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [58638] = 4, - ACTIONS(5081), 1, - anon_sym_LBRACK, + [56870] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4083), 13, + ACTIONS(4374), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189576,7 +186407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4085), 28, + ACTIONS(4376), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189585,6 +186416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -189605,89 +186437,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [58691] = 6, - ACTIONS(4123), 1, - anon_sym_extends, + [56921] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4712), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4715), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3448), 10, + ACTIONS(4378), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3452), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - 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_satisfies, - [58748] = 6, - ACTIONS(4047), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4722), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4725), 3, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3448), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 26, + ACTIONS(4380), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -189707,39 +186484,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [58805] = 7, - ACTIONS(3539), 1, - anon_sym_EQ, - ACTIONS(4123), 1, anon_sym_extends, + [56972] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4712), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4715), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3448), 10, + ACTIONS(4382), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 25, + ACTIONS(4384), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -189759,13 +186532,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [58864] = 4, - ACTIONS(4659), 1, - anon_sym_EQ, + anon_sym_extends, + [57023] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4657), 13, + ACTIONS(2344), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189779,7 +186551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4661), 28, + ACTIONS(2342), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189808,70 +186580,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [58917] = 14, - ACTIONS(169), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1510), 1, - anon_sym_DQUOTE, - ACTIONS(1512), 1, - anon_sym_SQUOTE, - ACTIONS(3243), 1, - anon_sym_LBRACE, - ACTIONS(3891), 1, - anon_sym_LBRACK, - ACTIONS(5075), 1, - anon_sym_COMMA, - ACTIONS(5089), 1, - anon_sym_RBRACE, - STATE(4831), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5079), 2, - sym_number, - sym_private_property_identifier, - STATE(4816), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5780), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(5975), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(5087), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [58990] = 3, + anon_sym_extends, + [57074] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4089), 13, + ACTIONS(4386), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189885,7 +186599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4091), 29, + ACTIONS(4388), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189915,78 +186629,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59041] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2007), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3791), 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(2005), 25, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [59094] = 6, - ACTIONS(4975), 1, - anon_sym_AMP, - ACTIONS(4977), 1, - anon_sym_PIPE, - ACTIONS(4979), 1, - anon_sym_extends, + [57125] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4409), 11, + ACTIONS(4390), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4411), 28, + ACTIONS(4392), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190015,11 +186676,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [59151] = 3, + anon_sym_extends, + [57176] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4377), 13, + ACTIONS(4390), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190033,7 +186695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4379), 29, + ACTIONS(4392), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190063,18 +186725,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59202] = 6, - ACTIONS(1708), 1, - anon_sym_EQ, - ACTIONS(1712), 1, - sym__automatic_semicolon, + [57227] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1702), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1706), 13, + ACTIONS(4390), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190088,12 +186743,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1710), 25, + ACTIONS(4392), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -190114,75 +186772,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [59259] = 19, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(729), 1, - anon_sym_RBRACE, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(2325), 1, - anon_sym_async, - ACTIONS(2327), 1, - anon_sym_readonly, - ACTIONS(2331), 1, - anon_sym_override, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4988), 1, - anon_sym_STAR, - STATE(2768), 1, - sym_override_modifier, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2301), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2329), 2, - anon_sym_get, - anon_sym_set, - STATE(3922), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2323), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - 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, - anon_sym_object, - [59342] = 3, + anon_sym_extends, + [57278] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4073), 13, + ACTIONS(4394), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190196,7 +186791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4075), 29, + ACTIONS(4396), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190226,11 +186821,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59393] = 3, + [57329] = 11, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(5009), 1, + anon_sym_LT, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2339), 13, + ACTIONS(4414), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190241,21 +186852,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2337), 29, - sym__automatic_semicolon, + ACTIONS(4416), 22, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -190273,12 +186876,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [59444] = 3, + anon_sym_implements, + [57396] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4179), 13, + ACTIONS(4394), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190292,7 +186895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4181), 29, + ACTIONS(4396), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190322,11 +186925,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59495] = 3, + [57447] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4183), 13, + ACTIONS(4398), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190340,7 +186943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4185), 29, + ACTIONS(4400), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190370,11 +186973,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59546] = 3, + [57498] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4187), 13, + ACTIONS(4398), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190388,7 +186991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4189), 29, + ACTIONS(4400), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190418,11 +187021,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59597] = 3, + [57549] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4191), 13, + ACTIONS(4398), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190436,7 +187039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4193), 29, + ACTIONS(4400), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190466,11 +187069,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59648] = 3, + [57600] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4195), 13, + ACTIONS(4402), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190484,7 +187087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4197), 29, + ACTIONS(4404), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190514,25 +187117,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59699] = 3, + [57651] = 6, + ACTIONS(4975), 1, + anon_sym_AMP, + ACTIONS(4977), 1, + anon_sym_PIPE, + ACTIONS(4979), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4199), 13, + ACTIONS(4072), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4201), 29, + ACTIONS(4074), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190561,12 +187168,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [59750] = 3, + [57708] = 5, + ACTIONS(1665), 1, + anon_sym_EQ, + ACTIONS(4796), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4203), 13, + ACTIONS(1661), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190580,8 +187190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4205), 29, - sym__automatic_semicolon, + ACTIONS(1659), 27, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -190609,64 +187218,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [59801] = 7, - ACTIONS(3508), 1, + [57763] = 19, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(697), 1, + anon_sym_RBRACE, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(2318), 1, + anon_sym_readonly, + ACTIONS(2322), 1, + anon_sym_override, + ACTIONS(4429), 1, anon_sym_EQ, - ACTIONS(4123), 1, - anon_sym_extends, + ACTIONS(4736), 1, + anon_sym_LBRACK, + ACTIONS(4965), 1, + anon_sym_STAR, + STATE(2756), 1, + sym_override_modifier, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4712), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4715), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3448), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3887), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 4, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3452), 25, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + anon_sym_QMARK, + ACTIONS(2314), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + 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, + anon_sym_object, + [57846] = 5, + ACTIONS(4535), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - 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_satisfies, - [59860] = 3, + STATE(2088), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4207), 13, + ACTIONS(4218), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190680,13 +187304,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4209), 29, + ACTIONS(4220), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, @@ -190709,35 +187332,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [59911] = 3, + [57901] = 6, + ACTIONS(4618), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4217), 13, + ACTIONS(4024), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4621), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3435), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4219), 29, - sym__automatic_semicolon, + ACTIONS(3439), 26, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_of, - anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -190757,132 +187383,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [59962] = 4, - ACTIONS(4225), 1, + [57958] = 32, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, + anon_sym_LBRACK, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4221), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(4810), 1, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4816), 1, + anon_sym_PERCENT, + ACTIONS(4818), 1, + anon_sym_STAR_STAR, + ACTIONS(4820), 1, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4223), 28, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(4842), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, + ACTIONS(4844), 1, + anon_sym_BANG, + ACTIONS(4849), 1, + anon_sym_satisfies, + ACTIONS(4873), 1, + anon_sym_GT, + ACTIONS(4875), 1, anon_sym_AMP_AMP, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4879), 1, + anon_sym_AMP, + ACTIONS(4881), 1, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4883), 1, + anon_sym_PIPE, + ACTIONS(4891), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [60015] = 3, + ACTIONS(4893), 1, + sym__ternary_qmark, + ACTIONS(5014), 1, + anon_sym_in, + STATE(1976), 1, + sym_type_arguments, + STATE(2240), 1, + sym_arguments, + STATE(4753), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3635), 13, + ACTIONS(4808), 2, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(4812), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4814), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4887), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3436), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - 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, + ACTIONS(4889), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4885), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, + ACTIONS(5012), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + [58067] = 9, + ACTIONS(2326), 1, anon_sym_extends, - [60066] = 3, + ACTIONS(4066), 1, + anon_sym_LBRACK, + ACTIONS(5017), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3628), 13, + ACTIONS(1665), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4069), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4946), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1663), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3438), 29, - sym__automatic_semicolon, + ACTIONS(1667), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -190902,37 +187514,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + [58130] = 9, + ACTIONS(4108), 1, + anon_sym_LBRACK, + ACTIONS(4114), 1, anon_sym_extends, - [60117] = 4, - ACTIONS(4228), 1, - anon_sym_DOT, + ACTIONS(5020), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4221), 13, + ACTIONS(4104), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4111), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4933), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4102), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4223), 28, - sym__automatic_semicolon, + ACTIONS(4106), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -190951,12 +187568,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [60170] = 3, + [58193] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4231), 13, + ACTIONS(4026), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190970,7 +187586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4233), 29, + ACTIONS(4028), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191000,7 +187616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [60221] = 6, + [58244] = 6, ACTIONS(4975), 1, anon_sym_AMP, ACTIONS(4977), 1, @@ -191010,7 +187626,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4231), 11, + ACTIONS(4094), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -191022,7 +187638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4233), 28, + ACTIONS(4096), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191051,25 +187667,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [60278] = 3, + [58301] = 6, + ACTIONS(4975), 1, + anon_sym_AMP, + ACTIONS(4977), 1, + anon_sym_PIPE, + ACTIONS(4979), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4235), 13, + ACTIONS(4098), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4237), 29, + ACTIONS(4100), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191098,35 +187718,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [60329] = 3, + [58358] = 19, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(2318), 1, + anon_sym_readonly, + ACTIONS(2322), 1, + anon_sym_override, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(4736), 1, + anon_sym_LBRACK, + ACTIONS(4965), 1, + anon_sym_STAR, + ACTIONS(5023), 1, + anon_sym_RBRACE, + STATE(2756), 1, + sym_override_modifier, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3887), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + 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, + anon_sym_object, + [58441] = 14, + ACTIONS(166), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(3238), 1, + anon_sym_LBRACE, + ACTIONS(3886), 1, + anon_sym_LBRACK, + ACTIONS(5027), 1, + anon_sym_COMMA, + ACTIONS(5029), 1, + anon_sym_RBRACE, + STATE(4849), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5031), 2, + sym_number, + sym_private_property_identifier, + STATE(4834), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5891), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + STATE(5957), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(5025), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [58514] = 6, + ACTIONS(4606), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 13, + ACTIONS(4146), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4609), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3435), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4241), 29, - sym__automatic_semicolon, + ACTIONS(3439), 26, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_of, - anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -191146,38 +187892,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [60380] = 14, - ACTIONS(1588), 1, + [58571] = 14, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(5091), 1, + ACTIONS(5033), 1, anon_sym_STAR, - ACTIONS(5093), 1, + ACTIONS(5035), 1, anon_sym_async, - ACTIONS(5097), 1, + ACTIONS(5039), 1, anon_sym_readonly, - STATE(2754), 1, + STATE(2755), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5095), 2, + ACTIONS(5037), 2, sym_number, sym_private_property_identifier, - ACTIONS(5099), 2, + ACTIONS(5041), 2, anon_sym_get, anon_sym_set, - STATE(3037), 3, + STATE(3031), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -191187,7 +187932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3651), 18, + ACTIONS(3646), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -191206,33 +187951,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [60453] = 12, - ACTIONS(1588), 1, + [58644] = 12, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(5091), 1, + ACTIONS(4931), 1, + anon_sym_abstract, + ACTIONS(5033), 1, anon_sym_STAR, - ACTIONS(5093), 1, + ACTIONS(5035), 1, anon_sym_async, - ACTIONS(5103), 1, - anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5099), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5101), 2, + ACTIONS(5037), 2, sym_number, sym_private_property_identifier, - STATE(3038), 3, + ACTIONS(5041), 2, + anon_sym_get, + anon_sym_set, + STATE(3031), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -191242,7 +187987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3651), 20, + ACTIONS(3646), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -191263,95 +188008,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [60522] = 3, + [58713] = 14, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4431), 1, + anon_sym_LBRACK, + ACTIONS(5043), 1, + anon_sym_STAR, + ACTIONS(5045), 1, + anon_sym_async, + ACTIONS(5049), 1, + anon_sym_readonly, + STATE(2760), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4243), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4245), 29, + ACTIONS(5047), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5051), 2, + anon_sym_get, + anon_sym_set, + STATE(3012), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 9, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - 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_satisfies, - anon_sym_extends, - [60573] = 14, - ACTIONS(1588), 1, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3646), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + 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, + anon_sym_object, + [58786] = 12, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(3673), 1, - anon_sym_override, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(5105), 1, + ACTIONS(5043), 1, anon_sym_STAR, - ACTIONS(5107), 1, + ACTIONS(5045), 1, anon_sym_async, - ACTIONS(5111), 1, - anon_sym_readonly, - STATE(2767), 1, - sym_override_modifier, + ACTIONS(5055), 1, + anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5109), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5113), 2, + ACTIONS(5051), 2, anon_sym_get, anon_sym_set, - STATE(3093), 3, + ACTIONS(5053), 2, + sym_number, + sym_private_property_identifier, + STATE(3015), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 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(3651), 18, + ACTIONS(3646), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -191359,10 +188111,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -191370,26 +188124,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [60646] = 9, - ACTIONS(4047), 1, - anon_sym_extends, - ACTIONS(4722), 1, - anon_sym_LBRACK, - ACTIONS(5119), 1, - anon_sym_RPAREN, + [58855] = 7, + ACTIONS(3469), 1, + anon_sym_DOT, + ACTIONS(3471), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4725), 2, + ACTIONS(3445), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5115), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5117), 2, + ACTIONS(3441), 7, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3448), 11, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3435), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -191401,12 +188155,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 22, + ACTIONS(3439), 20, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -191424,110 +188176,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [60709] = 31, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, + [58914] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4134), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4132), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3435), 11, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5122), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [60816] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4247), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4249), 29, - sym__automatic_semicolon, + ACTIONS(3439), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -191547,35 +188226,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [60867] = 3, + [58969] = 6, + ACTIONS(4529), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4251), 13, + ACTIONS(4186), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4532), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4423), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4253), 29, - sym__automatic_semicolon, + ACTIONS(4425), 26, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_of, - anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -191595,57 +188277,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [60918] = 12, - ACTIONS(2291), 1, + [59026] = 14, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4467), 1, - anon_sym_STAR, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4431), 1, anon_sym_LBRACK, + ACTIONS(5057), 1, + anon_sym_STAR, + ACTIONS(5059), 1, + anon_sym_async, + ACTIONS(5063), 1, + anon_sym_readonly, + STATE(2766), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4003), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4787), 2, + ACTIONS(5061), 2, sym_number, sym_private_property_identifier, - ACTIONS(4789), 2, + ACTIONS(5065), 2, anon_sym_get, anon_sym_set, - STATE(3784), 3, + STATE(3055), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 7, + ACTIONS(3758), 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(2323), 21, + ACTIONS(3646), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -191653,35 +188336,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [60987] = 4, - ACTIONS(4975), 1, - anon_sym_AMP, + [59099] = 9, + ACTIONS(4024), 1, + anon_sym_extends, + ACTIONS(4618), 1, + anon_sym_LBRACK, + ACTIONS(5069), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4255), 12, + ACTIONS(4621), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4983), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5067), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3435), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4257), 29, - sym__automatic_semicolon, + ACTIONS(3439), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -191701,95 +188390,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [61040] = 13, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(4467), 1, - anon_sym_STAR, - ACTIONS(4469), 1, + [59162] = 9, + ACTIONS(3541), 1, anon_sym_EQ, - ACTIONS(4473), 1, - anon_sym_async, - ACTIONS(4771), 1, + ACTIONS(3548), 1, + anon_sym_QMARK, + ACTIONS(4606), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4003), 2, + ACTIONS(3544), 2, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4475), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4479), 2, - anon_sym_get, - anon_sym_set, - STATE(3058), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3651), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [61111] = 4, - ACTIONS(1708), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1706), 13, + ACTIONS(4146), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4609), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3435), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1710), 28, - sym__automatic_semicolon, + ACTIONS(3439), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -191809,111 +188444,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [61164] = 19, - ACTIONS(241), 1, + [59225] = 19, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(702), 1, - anon_sym_RBRACE, - ACTIONS(2291), 1, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(2325), 1, + ACTIONS(2316), 1, anon_sym_async, - ACTIONS(2327), 1, + ACTIONS(2318), 1, anon_sym_readonly, - ACTIONS(2331), 1, + ACTIONS(2322), 1, anon_sym_override, - ACTIONS(4469), 1, + ACTIONS(4429), 1, anon_sym_EQ, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(4988), 1, + ACTIONS(4965), 1, anon_sym_STAR, - STATE(2768), 1, + ACTIONS(5072), 1, + anon_sym_RBRACE, + STATE(2756), 1, sym_override_modifier, - STATE(4673), 1, - aux_sym_object_repeat1, - STATE(4679), 1, + STATE(5131), 1, aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2301), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2329), 2, - anon_sym_get, - anon_sym_set, - STATE(3922), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2323), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - 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, - anon_sym_object, - [61247] = 14, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(3673), 1, - anon_sym_override, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(5124), 1, - anon_sym_STAR, - ACTIONS(5126), 1, - anon_sym_async, - ACTIONS(5130), 1, - anon_sym_readonly, - STATE(2762), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5128), 2, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - ACTIONS(5132), 2, + ACTIONS(2320), 2, anon_sym_get, anon_sym_set, - STATE(3047), 3, + STATE(3887), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3758), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3651), 18, + ACTIONS(2314), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -191932,13 +188508,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [61320] = 4, - ACTIONS(4181), 1, - anon_sym_extends, + [59308] = 4, + ACTIONS(4614), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4369), 13, + ACTIONS(4612), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -191952,7 +188528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4371), 28, + ACTIONS(4616), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191981,34 +188557,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [61373] = 3, + [59361] = 9, + ACTIONS(2326), 1, + anon_sym_extends, + ACTIONS(4066), 1, + anon_sym_LBRACK, + ACTIONS(4804), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4259), 13, + ACTIONS(1665), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4069), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4763), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1663), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4261), 29, - sym__automatic_semicolon, + ACTIONS(1667), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -192028,35 +188611,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + [59424] = 9, + ACTIONS(4108), 1, + anon_sym_LBRACK, + ACTIONS(4114), 1, anon_sym_extends, - [61424] = 3, + ACTIONS(4838), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4405), 13, + ACTIONS(4104), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4111), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4798), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4102), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4407), 29, - sym__automatic_semicolon, + ACTIONS(4106), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -192076,12 +188665,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [61475] = 3, + [59487] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2349), 13, + ACTIONS(4138), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4082), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -192095,15 +188688,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2347), 29, - sym__automatic_semicolon, + ACTIONS(4084), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -192124,476 +188714,389 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [61526] = 31, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5138), 1, - anon_sym_AMP_AMP, - ACTIONS(5140), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5142), 1, - anon_sym_GT_GT, - ACTIONS(5146), 1, - anon_sym_AMP, - ACTIONS(5148), 1, - anon_sym_CARET, - ACTIONS(5150), 1, - anon_sym_PIPE, - ACTIONS(5154), 1, - anon_sym_PERCENT, - ACTIONS(5156), 1, - anon_sym_STAR_STAR, - ACTIONS(5158), 1, - anon_sym_LT, - ACTIONS(5166), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5168), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + [59540] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5134), 2, + ACTIONS(4088), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4082), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5136), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5144), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5152), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5162), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5164), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5160), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4548), 4, - anon_sym_LBRACE, + ACTIONS(4084), 25, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_BQUOTE, - anon_sym_implements, - [61633] = 31, - ACTIONS(3959), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3961), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5138), 1, anon_sym_AMP_AMP, - ACTIONS(5140), 1, anon_sym_PIPE_PIPE, - ACTIONS(5142), 1, - anon_sym_GT_GT, - ACTIONS(5146), 1, - anon_sym_AMP, - ACTIONS(5148), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5150), 1, - anon_sym_PIPE, - ACTIONS(5154), 1, anon_sym_PERCENT, - ACTIONS(5156), 1, anon_sym_STAR_STAR, - ACTIONS(5158), 1, - anon_sym_LT, - ACTIONS(5166), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5168), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [59593] = 19, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(2318), 1, + anon_sym_readonly, + ACTIONS(2322), 1, + anon_sym_override, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(4736), 1, + anon_sym_LBRACK, + ACTIONS(4965), 1, + anon_sym_STAR, + ACTIONS(5074), 1, + anon_sym_RBRACE, + STATE(2756), 1, + sym_override_modifier, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5134), 2, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3887), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + 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, + anon_sym_object, + [59676] = 10, + ACTIONS(1665), 1, + anon_sym_EQ, + ACTIONS(2326), 1, + anon_sym_extends, + ACTIONS(2328), 1, + anon_sym_QMARK, + ACTIONS(4066), 1, + anon_sym_LBRACK, + ACTIONS(4946), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4069), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4804), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1663), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5136), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5144), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5152), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5162), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5164), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5160), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4734), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_BQUOTE, - anon_sym_implements, - [61740] = 31, - ACTIONS(3959), 1, + ACTIONS(1667), 22, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5138), 1, anon_sym_AMP_AMP, - ACTIONS(5140), 1, anon_sym_PIPE_PIPE, - ACTIONS(5142), 1, - anon_sym_GT_GT, - ACTIONS(5146), 1, - anon_sym_AMP, - ACTIONS(5148), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5150), 1, - anon_sym_PIPE, - ACTIONS(5154), 1, anon_sym_PERCENT, - ACTIONS(5156), 1, anon_sym_STAR_STAR, - ACTIONS(5158), 1, - anon_sym_LT, - ACTIONS(5166), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5168), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [59741] = 10, + ACTIONS(4104), 1, + anon_sym_EQ, + ACTIONS(4108), 1, + anon_sym_LBRACK, + ACTIONS(4114), 1, + anon_sym_extends, + ACTIONS(4174), 1, + anon_sym_QMARK, + ACTIONS(4933), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5134), 2, + ACTIONS(4111), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4838), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4102), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5136), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5144), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5152), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5162), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5164), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5160), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4708), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_BQUOTE, - anon_sym_implements, - [61847] = 31, - ACTIONS(3959), 1, + ACTIONS(4106), 22, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5138), 1, anon_sym_AMP_AMP, - ACTIONS(5140), 1, anon_sym_PIPE_PIPE, - ACTIONS(5142), 1, - anon_sym_GT_GT, - ACTIONS(5146), 1, - anon_sym_AMP, - ACTIONS(5148), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5150), 1, - anon_sym_PIPE, - ACTIONS(5154), 1, anon_sym_PERCENT, - ACTIONS(5156), 1, anon_sym_STAR_STAR, - ACTIONS(5158), 1, - anon_sym_LT, - ACTIONS(5166), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5168), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4457), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5134), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + [59806] = 6, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4609), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4606), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4146), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3435), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5136), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5144), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5152), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5162), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5164), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5160), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4710), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_BQUOTE, - anon_sym_implements, - [61954] = 31, - ACTIONS(3959), 1, + ACTIONS(3439), 22, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5138), 1, anon_sym_AMP_AMP, - ACTIONS(5140), 1, anon_sym_PIPE_PIPE, - ACTIONS(5142), 1, - anon_sym_GT_GT, - ACTIONS(5146), 1, - anon_sym_AMP, - ACTIONS(5148), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5150), 1, - anon_sym_PIPE, - ACTIONS(5154), 1, anon_sym_PERCENT, - ACTIONS(5156), 1, anon_sym_STAR_STAR, - ACTIONS(5158), 1, - anon_sym_LT, - ACTIONS(5166), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5168), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [59863] = 6, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5134), 2, + ACTIONS(4532), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4529), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4186), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4423), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5136), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5144), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5152), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5162), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5164), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5160), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4610), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_BQUOTE, - anon_sym_implements, - [62061] = 18, - ACTIONS(3959), 1, + ACTIONS(4425), 22, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, anon_sym_DOT, - ACTIONS(4425), 1, anon_sym_QMARK_DOT, - ACTIONS(5142), 1, - anon_sym_GT_GT, - ACTIONS(5154), 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(5156), 1, anon_sym_STAR_STAR, - ACTIONS(5158), 1, - anon_sym_LT, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [59920] = 6, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5134), 2, + ACTIONS(4621), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4618), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4024), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3435), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5144), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5152), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4483), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 16, + ACTIONS(3439), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_LPAREN, + 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_satisfies, - anon_sym_implements, - [62142] = 13, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(5156), 1, - anon_sym_STAR_STAR, - ACTIONS(5170), 1, - anon_sym_LT, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + [59977] = 4, + ACTIONS(3485), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4483), 12, + ACTIONS(3435), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -192604,424 +189107,1758 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 19, + ACTIONS(3439), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + 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_satisfies, - anon_sym_implements, - [62213] = 25, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, + [60030] = 14, + ACTIONS(166), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(3238), 1, + anon_sym_LBRACE, + ACTIONS(3886), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(5027), 1, + anon_sym_COMMA, + ACTIONS(5078), 1, + anon_sym_RBRACE, + STATE(4622), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5031), 2, + sym_number, + sym_private_property_identifier, + STATE(4665), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5891), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + STATE(5957), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(5076), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [60103] = 7, + ACTIONS(3447), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(3451), 1, anon_sym_QMARK_DOT, - ACTIONS(4483), 1, - anon_sym_BANG, - ACTIONS(5142), 1, - anon_sym_GT_GT, - ACTIONS(5146), 1, - anon_sym_AMP, - ACTIONS(5148), 1, - anon_sym_CARET, - ACTIONS(5150), 1, - anon_sym_PIPE, - ACTIONS(5154), 1, - anon_sym_PERCENT, - ACTIONS(5156), 1, - anon_sym_STAR_STAR, - ACTIONS(5158), 1, - anon_sym_LT, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5134), 2, + ACTIONS(3441), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3445), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3435), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5136), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5144), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5152), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5162), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5164), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5160), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4481), 10, + ACTIONS(3439), 24, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [62308] = 26, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, + [60162] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4132), 3, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3963), 1, + anon_sym_extends, + ACTIONS(4134), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3435), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3439), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_DOT, - ACTIONS(4425), 1, anon_sym_QMARK_DOT, - ACTIONS(4483), 1, - anon_sym_BANG, - ACTIONS(5138), 1, anon_sym_AMP_AMP, - ACTIONS(5142), 1, - anon_sym_GT_GT, - ACTIONS(5146), 1, - anon_sym_AMP, - ACTIONS(5148), 1, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5150), 1, - anon_sym_PIPE, - ACTIONS(5154), 1, anon_sym_PERCENT, - ACTIONS(5156), 1, anon_sym_STAR_STAR, - ACTIONS(5158), 1, - anon_sym_LT, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [60217] = 6, + ACTIONS(4186), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5134), 2, + ACTIONS(4529), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4532), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4423), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5136), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5144), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5152), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5162), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5164), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5160), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4481), 9, + ACTIONS(4425), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [62405] = 16, - ACTIONS(3959), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_DOT, - ACTIONS(4425), 1, anon_sym_QMARK_DOT, - ACTIONS(5154), 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(5156), 1, anon_sym_STAR_STAR, - ACTIONS(5170), 1, - anon_sym_LT, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [60274] = 4, + ACTIONS(4138), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5134), 2, + ACTIONS(4082), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5152), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4483), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 18, + ACTIONS(4084), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + 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_satisfies, - anon_sym_implements, - [62482] = 22, - ACTIONS(3959), 1, + [60327] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5142), 1, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4465), 1, + anon_sym_AMP_AMP, + ACTIONS(4467), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(5154), 1, + ACTIONS(4473), 1, + anon_sym_AMP, + ACTIONS(4475), 1, + anon_sym_CARET, + ACTIONS(4477), 1, + anon_sym_PIPE, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(5156), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(5158), 1, + ACTIONS(4485), 1, anon_sym_LT, - STATE(1603), 1, + ACTIONS(4493), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(4499), 1, + sym__ternary_qmark, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5134), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5136), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5144), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5152), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5162), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5164), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4483), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5160), 3, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 11, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5080), 4, anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [62571] = 23, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(5142), 1, - anon_sym_GT_GT, - ACTIONS(5146), 1, - anon_sym_AMP, - ACTIONS(5154), 1, - anon_sym_PERCENT, - ACTIONS(5156), 1, - anon_sym_STAR_STAR, - ACTIONS(5158), 1, - anon_sym_LT, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + [60434] = 4, + ACTIONS(1665), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4483), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5134), 2, + ACTIONS(1663), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5136), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5144), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5152), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5162), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5164), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5160), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4481), 11, + ACTIONS(1667), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [62662] = 24, - ACTIONS(3959), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3961), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(3963), 1, anon_sym_DOT, - ACTIONS(4425), 1, anon_sym_QMARK_DOT, - ACTIONS(5142), 1, - anon_sym_GT_GT, - ACTIONS(5146), 1, - anon_sym_AMP, - ACTIONS(5148), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5154), 1, anon_sym_PERCENT, - ACTIONS(5156), 1, anon_sym_STAR_STAR, - ACTIONS(5158), 1, - anon_sym_LT, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 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, + anon_sym_BQUOTE, + anon_sym_satisfies, + [60487] = 19, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(724), 1, + anon_sym_RBRACE, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(2318), 1, + anon_sym_readonly, + ACTIONS(2322), 1, + anon_sym_override, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(4736), 1, + anon_sym_LBRACK, + ACTIONS(4965), 1, + anon_sym_STAR, + STATE(2756), 1, + sym_override_modifier, + STATE(5129), 1, + aux_sym_object_repeat1, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3887), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + 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, + anon_sym_object, + [60570] = 14, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4431), 1, + anon_sym_LBRACK, + ACTIONS(5082), 1, + anon_sym_STAR, + ACTIONS(5084), 1, + anon_sym_async, + ACTIONS(5088), 1, + anon_sym_readonly, + STATE(2754), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5086), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5090), 2, + anon_sym_get, + anon_sym_set, + STATE(3004), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 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(3646), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + 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, + anon_sym_object, + [60643] = 12, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 1, + anon_sym_SQUOTE, + ACTIONS(4431), 1, + anon_sym_LBRACK, + ACTIONS(5082), 1, + anon_sym_STAR, + ACTIONS(5084), 1, + anon_sym_async, + ACTIONS(5094), 1, + anon_sym_abstract, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5090), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5092), 2, + sym_number, + sym_private_property_identifier, + STATE(3006), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 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(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [60712] = 14, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4431), 1, + anon_sym_LBRACK, + ACTIONS(5096), 1, + anon_sym_STAR, + ACTIONS(5098), 1, + anon_sym_async, + ACTIONS(5102), 1, + anon_sym_readonly, + STATE(2742), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5100), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5104), 2, + anon_sym_get, + anon_sym_set, + STATE(3069), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 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(3646), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + 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, + anon_sym_object, + [60785] = 9, + ACTIONS(4024), 1, + anon_sym_extends, + ACTIONS(4618), 1, + anon_sym_LBRACK, + ACTIONS(5110), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4621), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5106), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5108), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3435), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3439), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + 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_satisfies, + [60848] = 7, + ACTIONS(3511), 1, + anon_sym_EQ, + ACTIONS(4146), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4606), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4609), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3435), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3439), 25, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + 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_satisfies, + [60907] = 12, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4427), 1, + anon_sym_STAR, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(4736), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4002), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4738), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4740), 2, + anon_sym_get, + anon_sym_set, + STATE(3890), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [60976] = 13, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 1, + anon_sym_SQUOTE, + ACTIONS(4427), 1, + anon_sym_STAR, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(4433), 1, + anon_sym_async, + ACTIONS(4742), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4002), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4435), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4439), 2, + anon_sym_get, + anon_sym_set, + STATE(3080), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [61047] = 14, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4431), 1, + anon_sym_LBRACK, + ACTIONS(5113), 1, + anon_sym_STAR, + ACTIONS(5115), 1, + anon_sym_async, + ACTIONS(5119), 1, + anon_sym_readonly, + STATE(2764), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5117), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5121), 2, + anon_sym_get, + anon_sym_set, + STATE(3075), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 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(3646), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + 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, + anon_sym_object, + [61120] = 4, + ACTIONS(4088), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4082), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4084), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + 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_satisfies, + [61173] = 33, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, + anon_sym_LBRACK, + ACTIONS(4539), 1, + anon_sym_DOT, + ACTIONS(4826), 1, + anon_sym_GT_GT, + ACTIONS(4832), 1, + anon_sym_PERCENT, + ACTIONS(4834), 1, + anon_sym_STAR_STAR, + ACTIONS(4836), 1, + anon_sym_LT, + ACTIONS(4842), 1, + anon_sym_as, + ACTIONS(4844), 1, + anon_sym_BANG, + ACTIONS(4849), 1, + anon_sym_satisfies, + ACTIONS(4853), 1, + anon_sym_AMP_AMP, + ACTIONS(4855), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4857), 1, + anon_sym_AMP, + ACTIONS(4859), 1, + anon_sym_CARET, + ACTIONS(4861), 1, + anon_sym_PIPE, + ACTIONS(4869), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4871), 1, + sym__ternary_qmark, + ACTIONS(4967), 1, + anon_sym_COMMA, + STATE(1976), 1, + sym_type_arguments, + STATE(2240), 1, + sym_arguments, + STATE(4478), 1, + aux_sym_sequence_expression_repeat1, + STATE(4753), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4824), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4828), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4830), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4851), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4865), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4867), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5123), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4863), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [61284] = 33, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, + anon_sym_LBRACK, + ACTIONS(4539), 1, + anon_sym_DOT, + ACTIONS(4826), 1, + anon_sym_GT_GT, + ACTIONS(4832), 1, + anon_sym_PERCENT, + ACTIONS(4834), 1, + anon_sym_STAR_STAR, + ACTIONS(4836), 1, + anon_sym_LT, + ACTIONS(4842), 1, + anon_sym_as, + ACTIONS(4844), 1, + anon_sym_BANG, + ACTIONS(4849), 1, + anon_sym_satisfies, + ACTIONS(4853), 1, + anon_sym_AMP_AMP, + ACTIONS(4855), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4857), 1, + anon_sym_AMP, + ACTIONS(4859), 1, + anon_sym_CARET, + ACTIONS(4861), 1, + anon_sym_PIPE, + ACTIONS(4869), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4871), 1, + sym__ternary_qmark, + ACTIONS(4967), 1, + anon_sym_COMMA, + STATE(1976), 1, + sym_type_arguments, + STATE(2240), 1, + sym_arguments, + STATE(4478), 1, + aux_sym_sequence_expression_repeat1, + STATE(4753), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4824), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4828), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4830), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4851), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4865), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4867), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5125), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4863), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [61395] = 4, + ACTIONS(4104), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4102), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4106), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + 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_satisfies, + [61448] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(5131), 1, + anon_sym_AMP_AMP, + ACTIONS(5133), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5135), 1, + anon_sym_GT_GT, + ACTIONS(5139), 1, + anon_sym_AMP, + ACTIONS(5141), 1, + anon_sym_CARET, + ACTIONS(5143), 1, + anon_sym_PIPE, + ACTIONS(5147), 1, + anon_sym_PERCENT, + ACTIONS(5149), 1, + anon_sym_STAR_STAR, + ACTIONS(5151), 1, + anon_sym_LT, + ACTIONS(5159), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5161), 1, + sym__ternary_qmark, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5127), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5129), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5137), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5157), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5153), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4455), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_BQUOTE, + anon_sym_implements, + [61555] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(5131), 1, + anon_sym_AMP_AMP, + ACTIONS(5133), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5135), 1, + anon_sym_GT_GT, + ACTIONS(5139), 1, + anon_sym_AMP, + ACTIONS(5141), 1, + anon_sym_CARET, + ACTIONS(5143), 1, + anon_sym_PIPE, + ACTIONS(5147), 1, + anon_sym_PERCENT, + ACTIONS(5149), 1, + anon_sym_STAR_STAR, + ACTIONS(5151), 1, + anon_sym_LT, + ACTIONS(5159), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5161), 1, + sym__ternary_qmark, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5127), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5129), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5137), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5157), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5153), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4501), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_BQUOTE, + anon_sym_implements, + [61662] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(5131), 1, + anon_sym_AMP_AMP, + ACTIONS(5133), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5135), 1, + anon_sym_GT_GT, + ACTIONS(5139), 1, + anon_sym_AMP, + ACTIONS(5141), 1, + anon_sym_CARET, + ACTIONS(5143), 1, + anon_sym_PIPE, + ACTIONS(5147), 1, + anon_sym_PERCENT, + ACTIONS(5149), 1, + anon_sym_STAR_STAR, + ACTIONS(5151), 1, + anon_sym_LT, + ACTIONS(5159), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5161), 1, + sym__ternary_qmark, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5127), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5129), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5137), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5157), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5153), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4519), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_BQUOTE, + anon_sym_implements, + [61769] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(5131), 1, + anon_sym_AMP_AMP, + ACTIONS(5133), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5135), 1, + anon_sym_GT_GT, + ACTIONS(5139), 1, + anon_sym_AMP, + ACTIONS(5141), 1, + anon_sym_CARET, + ACTIONS(5143), 1, + anon_sym_PIPE, + ACTIONS(5147), 1, + anon_sym_PERCENT, + ACTIONS(5149), 1, + anon_sym_STAR_STAR, + ACTIONS(5151), 1, + anon_sym_LT, + ACTIONS(5159), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5161), 1, + sym__ternary_qmark, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5127), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5129), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5137), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5157), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5153), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4577), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_BQUOTE, + anon_sym_implements, + [61876] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(5131), 1, + anon_sym_AMP_AMP, + ACTIONS(5133), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5135), 1, + anon_sym_GT_GT, + ACTIONS(5139), 1, + anon_sym_AMP, + ACTIONS(5141), 1, + anon_sym_CARET, + ACTIONS(5143), 1, + anon_sym_PIPE, + ACTIONS(5147), 1, + anon_sym_PERCENT, + ACTIONS(5149), 1, + anon_sym_STAR_STAR, + ACTIONS(5151), 1, + anon_sym_LT, + ACTIONS(5159), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5161), 1, + sym__ternary_qmark, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5127), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5129), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5137), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5157), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5153), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4581), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_BQUOTE, + anon_sym_implements, + [61983] = 18, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(5135), 1, + anon_sym_GT_GT, + ACTIONS(5147), 1, + anon_sym_PERCENT, + ACTIONS(5149), 1, + anon_sym_STAR_STAR, + ACTIONS(5151), 1, + anon_sym_LT, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5127), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5137), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4585), 7, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4583), 16, + sym__ternary_qmark, + anon_sym_as, + 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, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [62064] = 13, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(5149), 1, + anon_sym_STAR_STAR, + ACTIONS(5163), 1, + anon_sym_LT, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, + ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4483), 2, + ACTIONS(4585), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4583), 19, + sym__ternary_qmark, + anon_sym_as, + 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, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [62135] = 25, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4585), 1, anon_sym_BANG, + ACTIONS(5135), 1, + anon_sym_GT_GT, + ACTIONS(5139), 1, + anon_sym_AMP, + ACTIONS(5141), 1, + anon_sym_CARET, + ACTIONS(5143), 1, anon_sym_PIPE, - ACTIONS(5134), 2, + ACTIONS(5147), 1, + anon_sym_PERCENT, + ACTIONS(5149), 1, + anon_sym_STAR_STAR, + ACTIONS(5151), 1, + anon_sym_LT, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5127), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5136), 2, + ACTIONS(5129), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5144), 2, + ACTIONS(5137), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5152), 2, + ACTIONS(5145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5162), 2, + ACTIONS(5155), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5164), 2, + ACTIONS(5157), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5160), 3, + ACTIONS(5153), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 10, + ACTIONS(4583), 10, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -193032,48 +190869,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [62755] = 15, - ACTIONS(3959), 1, + [62230] = 26, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5154), 1, + ACTIONS(4585), 1, + anon_sym_BANG, + ACTIONS(5131), 1, + anon_sym_AMP_AMP, + ACTIONS(5135), 1, + anon_sym_GT_GT, + ACTIONS(5139), 1, + anon_sym_AMP, + ACTIONS(5141), 1, + anon_sym_CARET, + ACTIONS(5143), 1, + anon_sym_PIPE, + ACTIONS(5147), 1, anon_sym_PERCENT, - ACTIONS(5156), 1, + ACTIONS(5149), 1, anon_sym_STAR_STAR, - ACTIONS(5170), 1, + ACTIONS(5151), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5127), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5129), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5137), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5157), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5153), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4583), 9, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [62327] = 16, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(5147), 1, + anon_sym_PERCENT, + ACTIONS(5149), 1, + anon_sym_STAR_STAR, + ACTIONS(5163), 1, + anon_sym_LT, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5134), 2, + ACTIONS(5127), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4483), 10, + ACTIONS(5145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4585), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 18, + ACTIONS(4583), 18, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -193092,38 +191001,302 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [62830] = 16, - ACTIONS(3959), 1, + [62404] = 22, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(5135), 1, + anon_sym_GT_GT, + ACTIONS(5147), 1, + anon_sym_PERCENT, + ACTIONS(5149), 1, + anon_sym_STAR_STAR, + ACTIONS(5151), 1, + anon_sym_LT, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5127), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5129), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5137), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5157), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4585), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5153), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4583), 11, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [62493] = 23, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(5135), 1, + anon_sym_GT_GT, + ACTIONS(5139), 1, + anon_sym_AMP, + ACTIONS(5147), 1, + anon_sym_PERCENT, + ACTIONS(5149), 1, + anon_sym_STAR_STAR, + ACTIONS(5151), 1, + anon_sym_LT, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4585), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5127), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5129), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5137), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5157), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5153), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4583), 11, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [62584] = 24, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(5135), 1, + anon_sym_GT_GT, + ACTIONS(5139), 1, + anon_sym_AMP, + ACTIONS(5141), 1, + anon_sym_CARET, + ACTIONS(5147), 1, + anon_sym_PERCENT, + ACTIONS(5149), 1, + anon_sym_STAR_STAR, + ACTIONS(5151), 1, + anon_sym_LT, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4585), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5127), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5129), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5137), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5157), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5153), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4583), 10, + sym__ternary_qmark, anon_sym_as, - ACTIONS(4421), 1, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [62677] = 15, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(5147), 1, + anon_sym_PERCENT, + ACTIONS(5149), 1, + anon_sym_STAR_STAR, + ACTIONS(5163), 1, + anon_sym_LT, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5127), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4585), 10, anon_sym_BANG, - ACTIONS(4425), 1, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4583), 18, + sym__ternary_qmark, + anon_sym_as, + 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_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [62752] = 16, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(5156), 1, + ACTIONS(5149), 1, anon_sym_STAR_STAR, - ACTIONS(5170), 1, + ACTIONS(5163), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4483), 11, + ACTIONS(4585), 11, anon_sym_STAR, anon_sym_in, anon_sym_GT, @@ -193135,7 +191308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 17, + ACTIONS(4583), 17, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -193153,58 +191326,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_implements, - [62907] = 20, - ACTIONS(3959), 1, + [62829] = 20, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5142), 1, + ACTIONS(5135), 1, anon_sym_GT_GT, - ACTIONS(5154), 1, + ACTIONS(5147), 1, anon_sym_PERCENT, - ACTIONS(5156), 1, + ACTIONS(5149), 1, anon_sym_STAR_STAR, - ACTIONS(5158), 1, + ACTIONS(5151), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5134), 2, + ACTIONS(5127), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5136), 2, + ACTIONS(5129), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5144), 2, + ACTIONS(5137), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5152), 2, + ACTIONS(5145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5160), 3, + ACTIONS(5153), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4483), 5, + ACTIONS(4585), 5, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 13, + ACTIONS(4583), 13, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -193218,70 +191391,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [62992] = 27, - ACTIONS(3959), 1, + [62914] = 27, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4483), 1, + ACTIONS(4585), 1, anon_sym_BANG, - ACTIONS(5138), 1, + ACTIONS(5131), 1, anon_sym_AMP_AMP, - ACTIONS(5140), 1, + ACTIONS(5133), 1, anon_sym_PIPE_PIPE, - ACTIONS(5142), 1, + ACTIONS(5135), 1, anon_sym_GT_GT, - ACTIONS(5146), 1, + ACTIONS(5139), 1, anon_sym_AMP, - ACTIONS(5148), 1, + ACTIONS(5141), 1, anon_sym_CARET, - ACTIONS(5150), 1, + ACTIONS(5143), 1, anon_sym_PIPE, - ACTIONS(5154), 1, + ACTIONS(5147), 1, anon_sym_PERCENT, - ACTIONS(5156), 1, + ACTIONS(5149), 1, anon_sym_STAR_STAR, - ACTIONS(5158), 1, + ACTIONS(5151), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5134), 2, + ACTIONS(5127), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5136), 2, + ACTIONS(5129), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5144), 2, + ACTIONS(5137), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5152), 2, + ACTIONS(5145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5162), 2, + ACTIONS(5155), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5164), 2, + ACTIONS(5157), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5160), 3, + ACTIONS(5153), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 8, + ACTIONS(4583), 8, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -193290,638 +191463,715 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [63091] = 31, - ACTIONS(3959), 1, + [63013] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(5138), 1, + ACTIONS(5131), 1, anon_sym_AMP_AMP, - ACTIONS(5140), 1, + ACTIONS(5133), 1, anon_sym_PIPE_PIPE, - ACTIONS(5142), 1, + ACTIONS(5135), 1, anon_sym_GT_GT, - ACTIONS(5146), 1, + ACTIONS(5139), 1, anon_sym_AMP, - ACTIONS(5148), 1, + ACTIONS(5141), 1, anon_sym_CARET, - ACTIONS(5150), 1, + ACTIONS(5143), 1, anon_sym_PIPE, - ACTIONS(5154), 1, + ACTIONS(5147), 1, anon_sym_PERCENT, - ACTIONS(5156), 1, + ACTIONS(5149), 1, anon_sym_STAR_STAR, - ACTIONS(5158), 1, + ACTIONS(5151), 1, anon_sym_LT, - ACTIONS(5166), 1, + ACTIONS(5159), 1, anon_sym_QMARK_QMARK, - ACTIONS(5168), 1, + ACTIONS(5161), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5134), 2, + ACTIONS(5127), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5136), 2, + ACTIONS(5129), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5144), 2, + ACTIONS(5137), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5152), 2, + ACTIONS(5145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5162), 2, + ACTIONS(5155), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5164), 2, + ACTIONS(5157), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5160), 3, + ACTIONS(5153), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4655), 4, + ACTIONS(4642), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_BQUOTE, anon_sym_implements, - [63198] = 31, - ACTIONS(3959), 1, + [63120] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(5138), 1, + ACTIONS(5131), 1, anon_sym_AMP_AMP, - ACTIONS(5140), 1, + ACTIONS(5133), 1, anon_sym_PIPE_PIPE, - ACTIONS(5142), 1, + ACTIONS(5135), 1, anon_sym_GT_GT, - ACTIONS(5146), 1, + ACTIONS(5139), 1, anon_sym_AMP, - ACTIONS(5148), 1, + ACTIONS(5141), 1, anon_sym_CARET, - ACTIONS(5150), 1, + ACTIONS(5143), 1, anon_sym_PIPE, - ACTIONS(5154), 1, + ACTIONS(5147), 1, anon_sym_PERCENT, - ACTIONS(5156), 1, + ACTIONS(5149), 1, anon_sym_STAR_STAR, - ACTIONS(5158), 1, + ACTIONS(5151), 1, anon_sym_LT, - ACTIONS(5166), 1, + ACTIONS(5159), 1, anon_sym_QMARK_QMARK, - ACTIONS(5168), 1, + ACTIONS(5161), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5134), 2, + ACTIONS(5127), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5136), 2, + ACTIONS(5129), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5144), 2, + ACTIONS(5137), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5152), 2, + ACTIONS(5145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5162), 2, + ACTIONS(5155), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5164), 2, + ACTIONS(5157), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5160), 3, + ACTIONS(5153), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4419), 4, + ACTIONS(4648), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_BQUOTE, anon_sym_implements, - [63305] = 31, - ACTIONS(3959), 1, + [63227] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(5138), 1, + ACTIONS(5131), 1, anon_sym_AMP_AMP, - ACTIONS(5140), 1, + ACTIONS(5133), 1, anon_sym_PIPE_PIPE, - ACTIONS(5142), 1, + ACTIONS(5135), 1, anon_sym_GT_GT, - ACTIONS(5146), 1, + ACTIONS(5139), 1, anon_sym_AMP, - ACTIONS(5148), 1, + ACTIONS(5141), 1, anon_sym_CARET, - ACTIONS(5150), 1, + ACTIONS(5143), 1, anon_sym_PIPE, - ACTIONS(5154), 1, + ACTIONS(5147), 1, anon_sym_PERCENT, - ACTIONS(5156), 1, + ACTIONS(5149), 1, anon_sym_STAR_STAR, - ACTIONS(5158), 1, + ACTIONS(5151), 1, anon_sym_LT, - ACTIONS(5166), 1, + ACTIONS(5159), 1, anon_sym_QMARK_QMARK, - ACTIONS(5168), 1, + ACTIONS(5161), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5134), 2, + ACTIONS(5127), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5136), 2, + ACTIONS(5129), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5144), 2, + ACTIONS(5137), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5152), 2, + ACTIONS(5145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5162), 2, + ACTIONS(5155), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5164), 2, + ACTIONS(5157), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5160), 3, + ACTIONS(5153), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4584), 4, + ACTIONS(4716), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_BQUOTE, anon_sym_implements, - [63412] = 31, - ACTIONS(3959), 1, + [63334] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(5138), 1, + ACTIONS(5131), 1, anon_sym_AMP_AMP, - ACTIONS(5140), 1, + ACTIONS(5133), 1, anon_sym_PIPE_PIPE, - ACTIONS(5142), 1, + ACTIONS(5135), 1, anon_sym_GT_GT, - ACTIONS(5146), 1, + ACTIONS(5139), 1, anon_sym_AMP, - ACTIONS(5148), 1, + ACTIONS(5141), 1, anon_sym_CARET, - ACTIONS(5150), 1, + ACTIONS(5143), 1, anon_sym_PIPE, - ACTIONS(5154), 1, + ACTIONS(5147), 1, anon_sym_PERCENT, - ACTIONS(5156), 1, + ACTIONS(5149), 1, anon_sym_STAR_STAR, - ACTIONS(5158), 1, + ACTIONS(5151), 1, anon_sym_LT, - ACTIONS(5166), 1, + ACTIONS(5159), 1, anon_sym_QMARK_QMARK, - ACTIONS(5168), 1, + ACTIONS(5161), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5134), 2, + ACTIONS(5127), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5136), 2, + ACTIONS(5129), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5144), 2, + ACTIONS(5137), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5152), 2, + ACTIONS(5145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5162), 2, + ACTIONS(5155), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5164), 2, + ACTIONS(5157), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5160), 3, + ACTIONS(5153), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4489), 4, + ACTIONS(4728), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_BQUOTE, anon_sym_implements, - [63519] = 31, - ACTIONS(3959), 1, + [63441] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(5138), 1, + ACTIONS(5131), 1, anon_sym_AMP_AMP, - ACTIONS(5140), 1, + ACTIONS(5133), 1, anon_sym_PIPE_PIPE, - ACTIONS(5142), 1, + ACTIONS(5135), 1, anon_sym_GT_GT, - ACTIONS(5146), 1, + ACTIONS(5139), 1, anon_sym_AMP, - ACTIONS(5148), 1, + ACTIONS(5141), 1, anon_sym_CARET, - ACTIONS(5150), 1, + ACTIONS(5143), 1, anon_sym_PIPE, - ACTIONS(5154), 1, + ACTIONS(5147), 1, anon_sym_PERCENT, - ACTIONS(5156), 1, + ACTIONS(5149), 1, anon_sym_STAR_STAR, - ACTIONS(5158), 1, + ACTIONS(5151), 1, anon_sym_LT, - ACTIONS(5166), 1, + ACTIONS(5159), 1, anon_sym_QMARK_QMARK, - ACTIONS(5168), 1, + ACTIONS(5161), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5134), 2, + ACTIONS(5127), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5136), 2, + ACTIONS(5129), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5144), 2, + ACTIONS(5137), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5152), 2, + ACTIONS(5145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5162), 2, + ACTIONS(5155), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5164), 2, + ACTIONS(5157), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5160), 3, + ACTIONS(5153), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4493), 4, + ACTIONS(4732), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_BQUOTE, anon_sym_implements, - [63626] = 31, - ACTIONS(3959), 1, + [63548] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(5138), 1, + ACTIONS(5131), 1, anon_sym_AMP_AMP, - ACTIONS(5140), 1, + ACTIONS(5133), 1, anon_sym_PIPE_PIPE, - ACTIONS(5142), 1, + ACTIONS(5135), 1, anon_sym_GT_GT, - ACTIONS(5146), 1, + ACTIONS(5139), 1, anon_sym_AMP, - ACTIONS(5148), 1, + ACTIONS(5141), 1, anon_sym_CARET, - ACTIONS(5150), 1, + ACTIONS(5143), 1, anon_sym_PIPE, - ACTIONS(5154), 1, + ACTIONS(5147), 1, anon_sym_PERCENT, - ACTIONS(5156), 1, + ACTIONS(5149), 1, anon_sym_STAR_STAR, - ACTIONS(5158), 1, + ACTIONS(5151), 1, anon_sym_LT, - ACTIONS(5166), 1, + ACTIONS(5159), 1, anon_sym_QMARK_QMARK, - ACTIONS(5168), 1, + ACTIONS(5161), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5134), 2, + ACTIONS(5127), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5136), 2, + ACTIONS(5129), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5144), 2, + ACTIONS(5137), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5152), 2, + ACTIONS(5145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5162), 2, + ACTIONS(5155), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5164), 2, + ACTIONS(5157), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5160), 3, + ACTIONS(5153), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4536), 4, + ACTIONS(4503), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_BQUOTE, anon_sym_implements, - [63733] = 31, - ACTIONS(3959), 1, + [63655] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(5138), 1, + ACTIONS(5131), 1, anon_sym_AMP_AMP, - ACTIONS(5140), 1, + ACTIONS(5133), 1, anon_sym_PIPE_PIPE, - ACTIONS(5142), 1, + ACTIONS(5135), 1, anon_sym_GT_GT, - ACTIONS(5146), 1, + ACTIONS(5139), 1, anon_sym_AMP, - ACTIONS(5148), 1, + ACTIONS(5141), 1, anon_sym_CARET, - ACTIONS(5150), 1, + ACTIONS(5143), 1, anon_sym_PIPE, - ACTIONS(5154), 1, + ACTIONS(5147), 1, anon_sym_PERCENT, - ACTIONS(5156), 1, + ACTIONS(5149), 1, anon_sym_STAR_STAR, - ACTIONS(5158), 1, + ACTIONS(5151), 1, anon_sym_LT, - ACTIONS(5166), 1, + ACTIONS(5159), 1, anon_sym_QMARK_QMARK, - ACTIONS(5168), 1, + ACTIONS(5161), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5134), 2, + ACTIONS(5127), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5136), 2, + ACTIONS(5129), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5144), 2, + ACTIONS(5137), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5152), 2, + ACTIONS(5145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5162), 2, + ACTIONS(5155), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5164), 2, + ACTIONS(5157), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5160), 3, + ACTIONS(5153), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4538), 4, + ACTIONS(4505), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_BQUOTE, anon_sym_implements, - [63840] = 31, - ACTIONS(3959), 1, + [63762] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(5138), 1, + ACTIONS(5131), 1, anon_sym_AMP_AMP, - ACTIONS(5140), 1, + ACTIONS(5133), 1, anon_sym_PIPE_PIPE, - ACTIONS(5142), 1, + ACTIONS(5135), 1, anon_sym_GT_GT, - ACTIONS(5146), 1, + ACTIONS(5139), 1, anon_sym_AMP, - ACTIONS(5148), 1, + ACTIONS(5141), 1, anon_sym_CARET, - ACTIONS(5150), 1, + ACTIONS(5143), 1, anon_sym_PIPE, - ACTIONS(5154), 1, + ACTIONS(5147), 1, anon_sym_PERCENT, - ACTIONS(5156), 1, + ACTIONS(5149), 1, anon_sym_STAR_STAR, - ACTIONS(5158), 1, + ACTIONS(5151), 1, anon_sym_LT, - ACTIONS(5166), 1, + ACTIONS(5159), 1, anon_sym_QMARK_QMARK, - ACTIONS(5168), 1, + ACTIONS(5161), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5134), 2, + ACTIONS(5127), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5136), 2, + ACTIONS(5129), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5144), 2, + ACTIONS(5137), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5152), 2, + ACTIONS(5145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5162), 2, + ACTIONS(5155), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5164), 2, + ACTIONS(5157), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5160), 3, + ACTIONS(5153), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4544), 4, + ACTIONS(4734), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_BQUOTE, anon_sym_implements, - [63947] = 12, - ACTIONS(3959), 1, + [63869] = 32, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, + anon_sym_LBRACK, + ACTIONS(4539), 1, + anon_sym_DOT, + ACTIONS(4826), 1, + anon_sym_GT_GT, + ACTIONS(4832), 1, + anon_sym_PERCENT, + ACTIONS(4834), 1, + anon_sym_STAR_STAR, + ACTIONS(4836), 1, + anon_sym_LT, + ACTIONS(4842), 1, + anon_sym_as, + ACTIONS(4844), 1, + anon_sym_BANG, + ACTIONS(4849), 1, + anon_sym_satisfies, + ACTIONS(4853), 1, + anon_sym_AMP_AMP, + ACTIONS(4855), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4857), 1, + anon_sym_AMP, + ACTIONS(4859), 1, + anon_sym_CARET, + ACTIONS(4861), 1, + anon_sym_PIPE, + ACTIONS(4869), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4871), 1, + sym__ternary_qmark, + STATE(1976), 1, + sym_type_arguments, + STATE(2240), 1, + sym_arguments, + STATE(4753), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4824), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4828), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4830), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4851), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4865), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4867), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4997), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5166), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4863), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [63978] = 12, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5173), 1, + ACTIONS(5168), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4736), 12, + ACTIONS(4674), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -193934,7 +192184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4738), 20, + ACTIONS(4676), 20, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -193955,37 +192205,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [64016] = 15, - ACTIONS(3959), 1, + [64047] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(5176), 1, + ACTIONS(5131), 1, + anon_sym_AMP_AMP, + ACTIONS(5133), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5135), 1, + anon_sym_GT_GT, + ACTIONS(5139), 1, + anon_sym_AMP, + ACTIONS(5141), 1, + anon_sym_CARET, + ACTIONS(5143), 1, + anon_sym_PIPE, + ACTIONS(5147), 1, + anon_sym_PERCENT, + ACTIONS(5149), 1, + anon_sym_STAR_STAR, + ACTIONS(5151), 1, anon_sym_LT, - STATE(1603), 1, + ACTIONS(5159), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5161), 1, + sym__ternary_qmark, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4616), 11, + ACTIONS(5127), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5129), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5137), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5157), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5153), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4708), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_BQUOTE, + anon_sym_implements, + [64154] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4394), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -193994,12 +192296,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4618), 18, + ACTIONS(4396), 29, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -194013,105 +192324,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [64091] = 31, - ACTIONS(3959), 1, + anon_sym_satisfies, + anon_sym_extends, + [64205] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5138), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(5140), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(5142), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(5146), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(5148), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(5150), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(5154), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(5156), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(5158), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(5166), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(5168), 1, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(4499), 1, sym__ternary_qmark, - STATE(1603), 1, + ACTIONS(4911), 1, + anon_sym_COMMA, + ACTIONS(5171), 1, + anon_sym_RPAREN, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(3558), 1, + aux_sym_sequence_expression_repeat1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5134), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5136), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5144), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5152), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5162), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5164), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5160), 3, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4651), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_BQUOTE, - anon_sym_implements, - [64198] = 11, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(5179), 1, - anon_sym_LT, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + [64315] = 5, + ACTIONS(5173), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4695), 12, + ACTIONS(1813), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1817), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194122,13 +192428,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4697), 22, + ACTIONS(1819), 23, sym__ternary_qmark, anon_sym_as, - 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, @@ -194146,14 +192455,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [64265] = 4, - ACTIONS(5182), 1, - anon_sym_extends, + [64369] = 5, + ACTIONS(5175), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4151), 13, + ACTIONS(1823), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1827), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194167,15 +192480,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4153), 28, - sym__automatic_semicolon, + ACTIONS(1829), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -194196,11 +192504,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [64318] = 3, + [64423] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(5131), 1, + anon_sym_AMP_AMP, + ACTIONS(5133), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5135), 1, + anon_sym_GT_GT, + ACTIONS(5139), 1, + anon_sym_AMP, + ACTIONS(5141), 1, + anon_sym_CARET, + ACTIONS(5143), 1, + anon_sym_PIPE, + ACTIONS(5147), 1, + anon_sym_PERCENT, + ACTIONS(5149), 1, + anon_sym_STAR_STAR, + ACTIONS(5151), 1, + anon_sym_LT, + ACTIONS(5159), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5161), 1, + sym__ternary_qmark, + STATE(1614), 1, + sym_arguments, + STATE(2561), 1, + sym_type_arguments, + STATE(5072), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5127), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5129), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5137), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5157), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5153), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5177), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + [64529] = 10, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4736), 1, + anon_sym_LBRACK, + ACTIONS(5179), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5181), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5183), 2, + anon_sym_get, + anon_sym_set, + STATE(3893), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 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(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [64593] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4570), 13, + ACTIONS(1849), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1853), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194214,15 +192657,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4572), 28, - sym__automatic_semicolon, + ACTIONS(1855), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -194243,11 +192681,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [64368] = 3, + [64645] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1905), 13, + ACTIONS(1859), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1863), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194261,15 +192705,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1907), 28, - sym__automatic_semicolon, + ACTIONS(1865), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -194290,18 +192729,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [64418] = 5, + [64697] = 5, + ACTIONS(5185), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5184), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5186), 3, + ACTIONS(1713), 4, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3448), 13, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1717), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194315,7 +192754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 23, + ACTIONS(1719), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -194339,18 +192778,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [64472] = 5, + [64751] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5188), 2, + ACTIONS(5187), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5190), 3, + ACTIONS(5189), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(3448), 13, + ACTIONS(3435), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194364,7 +192803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 23, + ACTIONS(3439), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -194388,18 +192827,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [64526] = 5, + [64805] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5188), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5190), 3, + ACTIONS(1727), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3448), 13, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1731), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194413,7 +192851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 23, + ACTIONS(1733), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -194437,11 +192875,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [64580] = 3, + [64857] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4635), 13, + ACTIONS(5187), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5189), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3435), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194455,15 +192900,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4637), 28, - sym__automatic_semicolon, + ACTIONS(3439), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -194484,16 +192924,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [64630] = 5, - ACTIONS(1839), 1, - sym__automatic_semicolon, + [64911] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1831), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1835), 13, + ACTIONS(5187), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5189), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3435), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194507,12 +192949,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1837), 25, + ACTIONS(3439), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -194533,16 +192973,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [64684] = 5, - ACTIONS(1849), 1, - sym__automatic_semicolon, + [64965] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1841), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1845), 13, + ACTIONS(4670), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194556,12 +192991,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 25, + ACTIONS(4672), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -194582,39 +193020,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [64738] = 10, - ACTIONS(2291), 1, + [65015] = 15, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(5192), 1, + ACTIONS(4965), 1, anon_sym_STAR, + ACTIONS(5023), 1, + anon_sym_RBRACE, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5194), 2, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - ACTIONS(5196), 2, + ACTIONS(2320), 2, anon_sym_get, anon_sym_set, - STATE(3795), 3, + STATE(3887), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3758), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2323), 21, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -194636,215 +193079,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [64802] = 5, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5188), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5190), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3448), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3452), 23, - sym__ternary_qmark, - anon_sym_as, - 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_satisfies, - [64856] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4574), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4576), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - 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_satisfies, - [64906] = 31, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5198), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - [65012] = 10, - ACTIONS(2291), 1, + [65089] = 11, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(5030), 1, + ACTIONS(5191), 1, anon_sym_STAR, + ACTIONS(5193), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5200), 2, + ACTIONS(5195), 2, sym_number, sym_private_property_identifier, - ACTIONS(5202), 2, + ACTIONS(5197), 2, anon_sym_get, anon_sym_set, - STATE(3815), 3, + STATE(3111), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 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(2323), 21, + anon_sym_PIPE_RBRACE, + ACTIONS(3646), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -194861,41 +193134,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [65076] = 11, - ACTIONS(1588), 1, + [65155] = 16, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(5030), 1, + ACTIONS(4965), 1, anon_sym_STAR, - ACTIONS(5032), 1, - anon_sym_async, + ACTIONS(5023), 1, + anon_sym_RBRACE, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5034), 2, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - ACTIONS(5038), 2, + ACTIONS(2320), 2, anon_sym_get, anon_sym_set, - STATE(3023), 3, + STATE(3887), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3758), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3651), 20, + ACTIONS(2314), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -194916,292 +193194,279 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [65142] = 33, - ACTIONS(3959), 1, + [65231] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - ACTIONS(4822), 1, - anon_sym_COMMA, - ACTIONS(5204), 1, - anon_sym_RPAREN, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(3625), 1, - aux_sym_sequence_expression_repeat1, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [65252] = 5, - ACTIONS(1795), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1787), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1791), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1793), 25, - sym__ternary_qmark, - 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, - anon_sym_satisfies, - [65306] = 31, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5138), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(5140), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(5142), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(5146), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(5148), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(5150), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(5154), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(5156), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(5158), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(5166), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(5168), 1, - sym__ternary_qmark, - STATE(1650), 1, - sym_arguments, - STATE(2489), 1, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(4499), 1, + sym__ternary_qmark, + STATE(1533), 1, sym_type_arguments, - STATE(5091), 1, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5134), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5136), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5144), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5152), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5162), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5164), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5160), 3, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5206), 3, - anon_sym_LBRACE, + ACTIONS(5199), 3, anon_sym_COMMA, - anon_sym_implements, - [65412] = 33, - ACTIONS(3959), 1, + anon_sym_RBRACE, + anon_sym_RBRACK, + [65337] = 33, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4461), 1, + ACTIONS(4499), 1, sym__ternary_qmark, - ACTIONS(4822), 1, - anon_sym_COMMA, - ACTIONS(5208), 1, - anon_sym_SEMI, - STATE(1603), 1, + ACTIONS(5201), 1, + anon_sym_RPAREN, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(3625), 1, - aux_sym_sequence_expression_repeat1, - STATE(5091), 1, + STATE(4819), 1, + aux_sym_array_repeat1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [65522] = 3, + [65447] = 10, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4736), 1, + anon_sym_LBRACK, + ACTIONS(5033), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5203), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5205), 2, + anon_sym_get, + anon_sym_set, + STATE(3853), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 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(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [65511] = 11, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 1, + anon_sym_SQUOTE, + ACTIONS(4431), 1, + anon_sym_LBRACK, + ACTIONS(5033), 1, + anon_sym_STAR, + ACTIONS(5035), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5037), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5041), 2, + anon_sym_get, + anon_sym_set, + STATE(3031), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 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(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [65577] = 4, + ACTIONS(5207), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4623), 13, + ACTIONS(4937), 17, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, + anon_sym_of, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -195212,15 +193477,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4625), 28, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(4939), 23, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -195236,16 +193500,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - [65572] = 3, + [65629] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3448), 13, + ACTIONS(4410), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -195259,7 +193521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 28, + ACTIONS(4412), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -195288,34 +193550,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [65622] = 3, + [65679] = 7, + ACTIONS(3554), 1, + anon_sym_EQ, + ACTIONS(4606), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4369), 13, + ACTIONS(4146), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4609), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3435), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4371), 28, + ACTIONS(3439), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -195335,72 +193601,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [65672] = 10, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(5054), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5210), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5212), 2, - anon_sym_get, - anon_sym_set, - STATE(3866), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 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(2323), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [65736] = 5, + [65737] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5115), 2, + ACTIONS(4983), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5117), 3, + ACTIONS(5067), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(3448), 13, + ACTIONS(3435), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -195414,7 +193626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 23, + ACTIONS(3439), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -195438,143 +193650,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [65790] = 11, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(4771), 1, - anon_sym_LBRACK, - ACTIONS(5054), 1, - anon_sym_STAR, - ACTIONS(5056), 1, - anon_sym_async, + [65791] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5058), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5062), 2, - anon_sym_get, - anon_sym_set, - STATE(3077), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(4549), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4551), 28, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, 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(3651), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [65856] = 15, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(4988), 1, - anon_sym_STAR, - ACTIONS(5064), 1, - anon_sym_RBRACE, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2301), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2329), 2, - anon_sym_get, - anon_sym_set, - STATE(3922), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2323), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [65930] = 10, - ACTIONS(2291), 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_satisfies, + [65841] = 10, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(5091), 1, + ACTIONS(5043), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5214), 2, + ACTIONS(5209), 2, sym_number, sym_private_property_identifier, - ACTIONS(5216), 2, + ACTIONS(5211), 2, anon_sym_get, anon_sym_set, - STATE(3775), 3, + STATE(3838), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -195584,7 +193729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2323), 21, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -195606,97 +193751,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [65994] = 16, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(2325), 1, - anon_sym_async, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4988), 1, - anon_sym_STAR, - ACTIONS(5064), 1, - anon_sym_RBRACE, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2301), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2329), 2, - anon_sym_get, - anon_sym_set, - STATE(3922), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2323), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [66070] = 6, - ACTIONS(4123), 1, - anon_sym_extends, + [65905] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4715), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4712), 3, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(3448), 11, + ACTIONS(4553), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 24, + ACTIONS(4555), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -195716,11 +193798,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [66126] = 3, + [65955] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4507), 13, + ACTIONS(4557), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -195734,7 +193816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4509), 28, + ACTIONS(4559), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -195763,11 +193845,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [66176] = 3, + [66005] = 32, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4501), 1, + anon_sym_COMMA, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, + anon_sym_LBRACK, + ACTIONS(4539), 1, + anon_sym_DOT, + ACTIONS(4826), 1, + anon_sym_GT_GT, + ACTIONS(4832), 1, + anon_sym_PERCENT, + ACTIONS(4834), 1, + anon_sym_STAR_STAR, + ACTIONS(4836), 1, + anon_sym_LT, + ACTIONS(4842), 1, + anon_sym_as, + ACTIONS(4844), 1, + anon_sym_BANG, + ACTIONS(4849), 1, + anon_sym_satisfies, + ACTIONS(4853), 1, + anon_sym_AMP_AMP, + ACTIONS(4855), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4857), 1, + anon_sym_AMP, + ACTIONS(4859), 1, + anon_sym_CARET, + ACTIONS(4861), 1, + anon_sym_PIPE, + ACTIONS(4869), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4871), 1, + sym__ternary_qmark, + STATE(1976), 1, + sym_type_arguments, + STATE(2240), 1, + sym_arguments, + STATE(4753), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4824), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4828), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4830), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4851), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4865), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4867), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4999), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4863), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [66113] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4663), 13, + ACTIONS(4591), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -195781,7 +193939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4665), 28, + ACTIONS(4593), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -195810,96 +193968,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [66226] = 15, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(729), 1, - anon_sym_RBRACE, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4988), 1, - anon_sym_STAR, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, + [66163] = 5, + ACTIONS(1769), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2301), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2329), 2, - anon_sym_get, - anon_sym_set, - STATE(3922), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 4, - anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(1761), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1765), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2323), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [66300] = 6, - ACTIONS(4127), 1, - anon_sym_extends, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1767), 25, + sym__ternary_qmark, + 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, + anon_sym_satisfies, + [66217] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4746), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4743), 3, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(4702), 11, + ACTIONS(4561), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4704), 24, + ACTIONS(4563), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -195919,39 +194064,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [66356] = 10, - ACTIONS(2291), 1, + [66267] = 10, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(5218), 1, + ACTIONS(5057), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5220), 2, + ACTIONS(5213), 2, sym_number, sym_private_property_identifier, - ACTIONS(5222), 2, + ACTIONS(5215), 2, anon_sym_get, anon_sym_set, - STATE(3901), 3, + STATE(3827), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 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(2323), 21, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -195973,50 +194118,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [66420] = 16, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(729), 1, - anon_sym_RBRACE, - ACTIONS(2291), 1, + [66331] = 10, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(2325), 1, - anon_sym_async, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(4988), 1, + ACTIONS(4748), 1, anon_sym_STAR, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2301), 2, + ACTIONS(5217), 2, sym_number, sym_private_property_identifier, - ACTIONS(2329), 2, + ACTIONS(5219), 2, anon_sym_get, anon_sym_set, - STATE(3922), 3, + STATE(3834), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 4, + ACTIONS(3758), 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(2323), 20, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -196033,49 +194172,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [66496] = 15, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(2291), 1, + [66395] = 11, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, + ACTIONS(4742), 1, anon_sym_LBRACK, - ACTIONS(4988), 1, + ACTIONS(5057), 1, anon_sym_STAR, - ACTIONS(5071), 1, - anon_sym_RBRACE, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, + ACTIONS(5059), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2301), 2, + ACTIONS(5061), 2, sym_number, sym_private_property_identifier, - ACTIONS(2329), 2, + ACTIONS(5065), 2, anon_sym_get, anon_sym_set, - STATE(3922), 3, + STATE(3055), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 4, + ACTIONS(3758), 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(2323), 21, + anon_sym_PIPE_RBRACE, + ACTIONS(3646), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -196092,11 +194227,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [66570] = 3, + [66461] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4667), 13, + ACTIONS(4662), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -196110,7 +194245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4669), 28, + ACTIONS(4664), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -196139,182 +194274,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [66620] = 16, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(2325), 1, - anon_sym_async, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4988), 1, - anon_sym_STAR, - ACTIONS(5071), 1, - anon_sym_RBRACE, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2301), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2329), 2, - anon_sym_get, - anon_sym_set, - STATE(3922), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 4, + [66511] = 31, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2323), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [66696] = 9, - ACTIONS(3785), 1, - anon_sym_COMMA, - ACTIONS(3882), 1, - anon_sym_RBRACE, - ACTIONS(4469), 1, - anon_sym_EQ, - STATE(4673), 1, - aux_sym_object_repeat1, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2007), 6, - anon_sym_STAR, + ACTIONS(4537), 1, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4539), 1, + anon_sym_DOT, + ACTIONS(4826), 1, + anon_sym_GT_GT, + ACTIONS(4832), 1, + anon_sym_PERCENT, + ACTIONS(4834), 1, + anon_sym_STAR_STAR, + ACTIONS(4836), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2005), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [66758] = 9, - ACTIONS(3785), 1, - anon_sym_COMMA, - ACTIONS(3882), 1, - anon_sym_RBRACE, - ACTIONS(4469), 1, - anon_sym_EQ, - STATE(4673), 1, - aux_sym_object_repeat1, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(4842), 1, + anon_sym_as, + ACTIONS(4844), 1, + anon_sym_BANG, + ACTIONS(4849), 1, + anon_sym_satisfies, + ACTIONS(4853), 1, + anon_sym_AMP_AMP, + ACTIONS(4855), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4857), 1, + anon_sym_AMP, + ACTIONS(4859), 1, + anon_sym_CARET, + ACTIONS(4861), 1, + anon_sym_PIPE, + ACTIONS(4869), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4871), 1, + sym__ternary_qmark, + STATE(1976), 1, + sym_type_arguments, + STATE(2240), 1, + sym_arguments, + STATE(4753), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1973), 6, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4824), 2, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3791), 7, + anon_sym_SLASH, + ACTIONS(4828), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4830), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4851), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4865), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4867), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4744), 3, sym__automatic_semicolon, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1971), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [66820] = 5, - ACTIONS(1921), 1, - sym__automatic_semicolon, + ACTIONS(4863), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [66617] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1913), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1917), 13, + ACTIONS(4453), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -196328,12 +194367,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1919), 25, + ACTIONS(4455), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -196354,147 +194396,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [66874] = 11, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(5224), 1, - anon_sym_STAR, - ACTIONS(5226), 1, - anon_sym_async, + [66667] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5228), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5230), 2, - anon_sym_get, - anon_sym_set, - STATE(3045), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(4710), 13, + anon_sym_STAR, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3651), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [66940] = 10, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(5232), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5234), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5236), 2, - anon_sym_get, - anon_sym_set, - STATE(3816), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 9, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4712), 28, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, 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(2323), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [67004] = 7, - ACTIONS(1708), 1, - anon_sym_EQ, - ACTIONS(4211), 1, + anon_sym_of, 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_satisfies, + [66717] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2333), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4214), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1706), 10, + ACTIONS(4714), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1710), 24, + ACTIONS(4716), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -196514,38 +194490,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67062] = 7, - ACTIONS(4315), 1, - anon_sym_EQ, - ACTIONS(4319), 1, - anon_sym_LBRACK, + [66767] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4105), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4322), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4313), 10, + ACTIONS(4718), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4317), 24, + ACTIONS(4720), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -196565,11 +194537,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67120] = 3, + [66817] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4558), 13, + ACTIONS(4726), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -196583,7 +194555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4560), 28, + ACTIONS(4728), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -196612,36 +194584,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67170] = 9, - ACTIONS(3785), 1, + [66867] = 15, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(3877), 1, - anon_sym_RBRACE, - ACTIONS(4469), 1, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4429), 1, anon_sym_EQ, - STATE(4679), 1, + ACTIONS(4736), 1, + anon_sym_LBRACK, + ACTIONS(4965), 1, + anon_sym_STAR, + ACTIONS(5072), 1, + anon_sym_RBRACE, + STATE(5131), 1, aux_sym_object_pattern_repeat1, - STATE(5173), 1, + STATE(5191), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2007), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - ACTIONS(3791), 7, - sym__automatic_semicolon, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3887), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2005), 23, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -196651,8 +194631,6 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -196665,94 +194643,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [67232] = 9, - ACTIONS(3785), 1, - anon_sym_COMMA, - ACTIONS(3877), 1, - anon_sym_RBRACE, - ACTIONS(4469), 1, - anon_sym_EQ, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, + [66941] = 7, + ACTIONS(5221), 1, + anon_sym_LPAREN, + ACTIONS(5224), 1, + anon_sym_COLON, + ACTIONS(5226), 1, + anon_sym_LT, + ACTIONS(5229), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1973), 6, + ACTIONS(4525), 12, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3791), 7, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4527), 25, sym__automatic_semicolon, - anon_sym_LPAREN, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1971), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [67294] = 11, - ACTIONS(1588), 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_satisfies, + [66999] = 16, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(5232), 1, + ACTIONS(4965), 1, anon_sym_STAR, - ACTIONS(5238), 1, - anon_sym_async, + ACTIONS(5072), 1, + anon_sym_RBRACE, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5240), 2, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - ACTIONS(5242), 2, + ACTIONS(2320), 2, anon_sym_get, anon_sym_set, - STATE(3084), 3, + STATE(3887), 3, sym_string, sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + sym_computed_property_name, + ACTIONS(3758), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3651), 20, + ACTIONS(2314), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -196773,39 +194754,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [67360] = 8, - ACTIONS(1708), 1, - anon_sym_EQ, - ACTIONS(4211), 1, - anon_sym_LBRACK, - ACTIONS(4891), 1, - anon_sym_COLON, + [67075] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4214), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2333), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(1706), 11, + ACTIONS(4730), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1710), 22, + ACTIONS(4732), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -196825,39 +194801,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67420] = 8, - ACTIONS(4315), 1, - anon_sym_EQ, - ACTIONS(4319), 1, - anon_sym_LBRACK, - ACTIONS(4887), 1, - anon_sym_COLON, + [67125] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4322), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4105), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4313), 11, + ACTIONS(4693), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4317), 22, + ACTIONS(4695), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -196877,283 +194848,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67480] = 9, - ACTIONS(3785), 1, - anon_sym_COMMA, - ACTIONS(3788), 1, - anon_sym_RBRACE, - ACTIONS(4469), 1, - anon_sym_EQ, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, + [67175] = 6, + ACTIONS(4146), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2007), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2005), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [67542] = 9, - ACTIONS(3785), 1, - anon_sym_COMMA, - ACTIONS(3788), 1, + ACTIONS(4609), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4606), 3, anon_sym_RBRACE, - ACTIONS(4469), 1, - anon_sym_EQ, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1973), 6, - anon_sym_STAR, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(3435), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1971), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [67604] = 9, - ACTIONS(3785), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3439), 24, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - ACTIONS(3799), 1, - anon_sym_RBRACE, - ACTIONS(4469), 1, - anon_sym_EQ, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2007), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3791), 7, - sym__automatic_semicolon, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, + 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_satisfies, + [67231] = 33, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4465), 1, + anon_sym_AMP_AMP, + ACTIONS(4467), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4469), 1, + anon_sym_GT_GT, + ACTIONS(4473), 1, + anon_sym_AMP, + ACTIONS(4475), 1, + anon_sym_CARET, + ACTIONS(4477), 1, + anon_sym_PIPE, + ACTIONS(4481), 1, + anon_sym_PERCENT, + ACTIONS(4483), 1, + anon_sym_STAR_STAR, + ACTIONS(4485), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2005), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [67666] = 9, - ACTIONS(3785), 1, + ACTIONS(4493), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(4499), 1, + sym__ternary_qmark, + ACTIONS(4911), 1, anon_sym_COMMA, - ACTIONS(3799), 1, - anon_sym_RBRACE, - ACTIONS(4469), 1, - anon_sym_EQ, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, + ACTIONS(5231), 1, + anon_sym_RBRACK, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(3558), 1, + aux_sym_sequence_expression_repeat1, + STATE(5072), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1973), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1971), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [67728] = 11, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(5244), 1, + ACTIONS(4457), 2, anon_sym_STAR, - ACTIONS(5246), 1, - anon_sym_async, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5248), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5250), 2, - anon_sym_get, - anon_sym_set, - STATE(3115), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 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(3651), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [67794] = 5, - ACTIONS(1885), 1, - sym__automatic_semicolon, + anon_sym_SLASH, + ACTIONS(4463), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4471), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4479), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4489), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4491), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4487), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [67341] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1877), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1881), 13, + ACTIONS(4507), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197167,12 +194993,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1883), 25, + ACTIONS(4509), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -197193,172 +195022,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67848] = 9, - ACTIONS(3785), 1, - anon_sym_COMMA, - ACTIONS(3866), 1, - anon_sym_RBRACE, - ACTIONS(4469), 1, - anon_sym_EQ, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, + [67391] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2007), 6, + ACTIONS(4521), 13, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2005), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [67910] = 9, - ACTIONS(3785), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4523), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - ACTIONS(3866), 1, anon_sym_RBRACE, - ACTIONS(4469), 1, - anon_sym_EQ, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1973), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3791), 7, - sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1971), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [67972] = 11, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(4471), 1, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(5252), 1, - anon_sym_STAR, - ACTIONS(5254), 1, - anon_sym_async, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5256), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5258), 2, - anon_sym_get, - anon_sym_set, - STATE(3070), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 9, + 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_satisfies, + [67441] = 5, + ACTIONS(1697), 1, 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(3651), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [68038] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4578), 13, + ACTIONS(1689), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1693), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197372,15 +195092,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4580), 28, - sym__automatic_semicolon, + ACTIONS(1695), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -197401,11 +195118,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68088] = 3, + [67495] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4582), 13, + ACTIONS(4441), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197419,7 +195136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4584), 28, + ACTIONS(4443), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -197448,36 +195165,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68138] = 5, - ACTIONS(1895), 1, + [67545] = 10, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4736), 1, + anon_sym_LBRACK, + ACTIONS(5233), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5235), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5237), 2, + anon_sym_get, + anon_sym_set, + STATE(3916), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 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(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [67609] = 6, + ACTIONS(4186), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1887), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1891), 13, + ACTIONS(4532), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4529), 3, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(4423), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1893), 25, + ACTIONS(4425), 24, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -197497,11 +195269,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68192] = 3, + [67665] = 5, + ACTIONS(1721), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4639), 13, + ACTIONS(1713), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1717), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197515,15 +195292,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4641), 28, - sym__automatic_semicolon, + ACTIONS(1719), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -197544,11 +195318,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68242] = 3, + [67719] = 5, + ACTIONS(1803), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4706), 13, + ACTIONS(1795), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1799), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197562,15 +195341,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4489), 28, - sym__automatic_semicolon, + ACTIONS(1801), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -197591,18 +195367,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68292] = 5, + [67773] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5260), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5262), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3448), 13, + ACTIONS(4624), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197616,10 +195385,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 23, + ACTIONS(4626), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -197640,11 +195414,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68346] = 3, + [67823] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4491), 13, + ACTIONS(4441), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197658,7 +195432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4493), 28, + ACTIONS(4443), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -197687,11 +195461,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68396] = 3, + [67873] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4566), 13, + ACTIONS(4654), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197705,7 +195479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4568), 28, + ACTIONS(4656), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -197734,11 +195508,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68446] = 3, + [67923] = 15, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(4736), 1, + anon_sym_LBRACK, + ACTIONS(4965), 1, + anon_sym_STAR, + ACTIONS(5074), 1, + anon_sym_RBRACE, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3887), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [67997] = 5, + ACTIONS(1735), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4503), 13, + ACTIONS(1727), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1731), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197752,15 +195590,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4505), 28, - sym__automatic_semicolon, + ACTIONS(1733), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -197781,88 +195616,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68496] = 33, - ACTIONS(1939), 1, + [68051] = 16, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, + ACTIONS(4965), 1, + anon_sym_STAR, + ACTIONS(5074), 1, + anon_sym_RBRACE, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3887), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [68127] = 9, + ACTIONS(3752), 1, + anon_sym_COMMA, + ACTIONS(3800), 1, + anon_sym_RBRACE, ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, + anon_sym_EQ, + STATE(5129), 1, + aux_sym_object_repeat1, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1938), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3758), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - ACTIONS(5264), 1, - anon_sym_RBRACK, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(4624), 1, - aux_sym_array_repeat1, - STATE(5091), 1, - sym_optional_chain, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1936), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [68189] = 9, + ACTIONS(3752), 1, + anon_sym_COMMA, + ACTIONS(3800), 1, + anon_sym_RBRACE, + ACTIONS(4429), 1, + anon_sym_EQ, + STATE(5129), 1, + aux_sym_object_repeat1, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(1942), 6, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [68606] = 3, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3758), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1940), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [68251] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4528), 13, + ACTIONS(4681), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197876,7 +195800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4530), 28, + ACTIONS(4683), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -197905,11 +195829,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68656] = 3, + [68301] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1881), 13, + ACTIONS(4423), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197923,7 +195847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1883), 28, + ACTIONS(4425), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -197952,13 +195876,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68706] = 4, - ACTIONS(3539), 1, - anon_sym_EQ, + [68351] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3448), 13, + ACTIONS(1877), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197972,7 +195894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 27, + ACTIONS(1879), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -197980,6 +195902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -198000,11 +195923,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68758] = 3, + [68401] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4540), 13, + ACTIONS(4441), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198018,7 +195941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4542), 28, + ACTIONS(4443), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -198047,12 +195970,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68808] = 3, + [68451] = 4, + ACTIONS(5207), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4562), 13, + ACTIONS(4937), 16, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -198065,15 +195991,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4564), 28, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(4939), 24, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -198089,166 +196015,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - [68858] = 31, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, + [68503] = 7, + ACTIONS(1665), 1, + anon_sym_EQ, + ACTIONS(4066), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(5270), 1, - anon_sym_AMP_AMP, - ACTIONS(5272), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5274), 1, - anon_sym_GT_GT, - ACTIONS(5278), 1, - anon_sym_AMP, - ACTIONS(5280), 1, - anon_sym_CARET, - ACTIONS(5282), 1, - anon_sym_PIPE, - ACTIONS(5286), 1, - anon_sym_PERCENT, - ACTIONS(5288), 1, - anon_sym_STAR_STAR, - ACTIONS(5290), 1, - anon_sym_LT, - ACTIONS(5298), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5300), 1, - sym__ternary_qmark, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5266), 2, + ACTIONS(2326), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4069), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1663), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5268), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5276), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5284), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5294), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5296), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4548), 3, + ACTIONS(1667), 24, sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5292), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [68964] = 31, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(5270), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(5272), 1, anon_sym_PIPE_PIPE, - ACTIONS(5274), 1, - anon_sym_GT_GT, - ACTIONS(5278), 1, - anon_sym_AMP, - ACTIONS(5280), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5282), 1, - anon_sym_PIPE, - ACTIONS(5286), 1, anon_sym_PERCENT, - ACTIONS(5288), 1, anon_sym_STAR_STAR, - ACTIONS(5290), 1, - anon_sym_LT, - ACTIONS(5298), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5300), 1, - sym__ternary_qmark, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [68561] = 7, + ACTIONS(4104), 1, + anon_sym_EQ, + ACTIONS(4108), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5266), 2, + ACTIONS(4114), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4111), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4102), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5268), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5276), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5284), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5294), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5296), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4734), 3, + ACTIONS(4106), 24, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5292), 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, - [69070] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [68619] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4590), 13, + ACTIONS(4565), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198262,7 +196138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4592), 28, + ACTIONS(4567), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -198291,86 +196167,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [69120] = 31, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, + [68669] = 9, + ACTIONS(3752), 1, + anon_sym_COMMA, + ACTIONS(3803), 1, + anon_sym_RBRACE, + ACTIONS(4429), 1, + anon_sym_EQ, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1938), 6, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(5270), 1, - anon_sym_AMP_AMP, - ACTIONS(5272), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5274), 1, - anon_sym_GT_GT, - ACTIONS(5278), 1, - anon_sym_AMP, - ACTIONS(5280), 1, - anon_sym_CARET, - ACTIONS(5282), 1, - anon_sym_PIPE, - ACTIONS(5286), 1, - anon_sym_PERCENT, - ACTIONS(5288), 1, - anon_sym_STAR_STAR, - ACTIONS(5290), 1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3758), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(5298), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5300), 1, - sym__ternary_qmark, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1936), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [68731] = 9, + ACTIONS(3752), 1, + anon_sym_COMMA, + ACTIONS(3803), 1, + anon_sym_RBRACE, + ACTIONS(4429), 1, + anon_sym_EQ, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5266), 2, + ACTIONS(1942), 6, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5268), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5276), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5284), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5294), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5296), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4708), 3, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3758), 7, sym__automatic_semicolon, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5292), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [69226] = 3, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1940), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [68793] = 7, + ACTIONS(5239), 1, + anon_sym_LPAREN, + ACTIONS(5242), 1, + anon_sym_COLON, + ACTIONS(5244), 1, + anon_sym_LT, + ACTIONS(5247), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4562), 13, + ACTIONS(3435), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198381,18 +196296,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4564), 28, + ACTIONS(3439), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -198413,34 +196324,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [69276] = 3, + [68851] = 8, + ACTIONS(1665), 1, + anon_sym_EQ, + ACTIONS(4066), 1, + anon_sym_LBRACK, + ACTIONS(4946), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4598), 13, + ACTIONS(4069), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2326), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(1663), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4600), 28, - sym__automatic_semicolon, + ACTIONS(1667), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -198460,34 +196376,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [69326] = 3, + [68911] = 8, + ACTIONS(4104), 1, + anon_sym_EQ, + ACTIONS(4108), 1, + anon_sym_LBRACK, + ACTIONS(4933), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4602), 13, + ACTIONS(4111), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4114), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4102), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4604), 28, - sym__automatic_semicolon, + ACTIONS(4106), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -198507,321 +196428,329 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [69376] = 31, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, + [68971] = 9, + ACTIONS(3752), 1, + anon_sym_COMMA, + ACTIONS(3868), 1, + anon_sym_RBRACE, + ACTIONS(4429), 1, + anon_sym_EQ, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1938), 6, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(5270), 1, - anon_sym_AMP_AMP, - ACTIONS(5272), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5274), 1, - anon_sym_GT_GT, - ACTIONS(5278), 1, - anon_sym_AMP, - ACTIONS(5280), 1, - anon_sym_CARET, - ACTIONS(5282), 1, - anon_sym_PIPE, - ACTIONS(5286), 1, - anon_sym_PERCENT, - ACTIONS(5288), 1, - anon_sym_STAR_STAR, - ACTIONS(5290), 1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3758), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(5298), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5300), 1, - sym__ternary_qmark, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1936), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [69033] = 9, + ACTIONS(3752), 1, + anon_sym_COMMA, + ACTIONS(3868), 1, + anon_sym_RBRACE, + ACTIONS(4429), 1, + anon_sym_EQ, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5266), 2, + ACTIONS(1942), 6, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5268), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5276), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5284), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5294), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5296), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4710), 3, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3758), 7, sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5292), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [69482] = 31, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(5270), 1, - anon_sym_AMP_AMP, - ACTIONS(5272), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5274), 1, - anon_sym_GT_GT, - ACTIONS(5278), 1, - anon_sym_AMP, - ACTIONS(5280), 1, - anon_sym_CARET, - ACTIONS(5282), 1, - anon_sym_PIPE, - ACTIONS(5286), 1, - anon_sym_PERCENT, - ACTIONS(5288), 1, - anon_sym_STAR_STAR, - ACTIONS(5290), 1, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(5298), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5300), 1, - sym__ternary_qmark, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1940), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [69095] = 9, + ACTIONS(3752), 1, + anon_sym_COMMA, + ACTIONS(3877), 1, + anon_sym_RBRACE, + ACTIONS(4429), 1, + anon_sym_EQ, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5266), 2, + ACTIONS(1938), 6, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5268), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5276), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5284), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5294), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5296), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4610), 3, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3758), 7, sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5292), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [69588] = 18, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(5274), 1, - anon_sym_GT_GT, - ACTIONS(5286), 1, - anon_sym_PERCENT, - ACTIONS(5288), 1, - anon_sym_STAR_STAR, - ACTIONS(5290), 1, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1936), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [69157] = 9, + ACTIONS(3752), 1, + anon_sym_COMMA, + ACTIONS(3877), 1, + anon_sym_RBRACE, + ACTIONS(4429), 1, + anon_sym_EQ, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5266), 2, + ACTIONS(1942), 6, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5276), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5284), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4483), 7, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4481), 15, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3758), 7, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_BQUOTE, - anon_sym_satisfies, - [69668] = 33, - ACTIONS(1939), 1, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1940), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [69219] = 9, + ACTIONS(3752), 1, anon_sym_COMMA, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, + ACTIONS(3755), 1, + anon_sym_RBRACE, ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - ACTIONS(5302), 1, - anon_sym_RPAREN, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(4797), 1, - aux_sym_array_repeat1, - STATE(5091), 1, - sym_optional_chain, + anon_sym_EQ, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(1938), 6, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [69778] = 13, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3758), 7, + sym__automatic_semicolon, anon_sym_LPAREN, - ACTIONS(4516), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1936), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [69281] = 9, + ACTIONS(3752), 1, + anon_sym_COMMA, + ACTIONS(3755), 1, + anon_sym_RBRACE, + ACTIONS(4429), 1, + anon_sym_EQ, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1942), 6, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(5288), 1, - anon_sym_STAR_STAR, - ACTIONS(5304), 1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3758), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1940), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [69343] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4483), 12, + ACTIONS(4569), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198832,628 +196761,800 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 18, + ACTIONS(4571), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, + 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_satisfies, - [69848] = 33, - ACTIONS(3959), 1, + [69393] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4461), 1, + ACTIONS(4499), 1, sym__ternary_qmark, - ACTIONS(4822), 1, + ACTIONS(4911), 1, anon_sym_COMMA, - ACTIONS(5307), 1, - anon_sym_RBRACK, - STATE(1603), 1, + ACTIONS(5249), 1, + anon_sym_RBRACE, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(3625), 1, + STATE(3558), 1, aux_sym_sequence_expression_repeat1, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69958] = 25, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4483), 1, - anon_sym_BANG, - ACTIONS(4514), 1, + [69503] = 33, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(5274), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4465), 1, + anon_sym_AMP_AMP, + ACTIONS(4467), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(5278), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(5280), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(5282), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(5286), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(5288), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(5290), 1, + ACTIONS(4485), 1, anon_sym_LT, - STATE(1945), 1, + ACTIONS(4493), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(4499), 1, + sym__ternary_qmark, + ACTIONS(5251), 1, + anon_sym_RBRACK, + STATE(1533), 1, sym_type_arguments, - STATE(2355), 1, + STATE(1614), 1, sym_arguments, - STATE(5093), 1, + STATE(5072), 1, sym_optional_chain, + STATE(5161), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5266), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5268), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5276), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5284), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5294), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5296), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5292), 3, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 9, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [70052] = 26, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4483), 1, - anon_sym_BANG, - ACTIONS(4514), 1, + [69613] = 33, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(5270), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(5274), 1, + ACTIONS(4467), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(5278), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(5280), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(5282), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(5286), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(5288), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(5290), 1, + ACTIONS(4485), 1, anon_sym_LT, - STATE(1945), 1, + ACTIONS(4493), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(4499), 1, + sym__ternary_qmark, + ACTIONS(5253), 1, + anon_sym_RBRACK, + STATE(1533), 1, sym_type_arguments, - STATE(2355), 1, + STATE(1614), 1, sym_arguments, - STATE(5093), 1, + STATE(4619), 1, + aux_sym_array_repeat1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5266), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5268), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5276), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5284), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5294), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5296), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5292), 3, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 8, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [70148] = 16, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(5286), 1, - anon_sym_PERCENT, - ACTIONS(5288), 1, - anon_sym_STAR_STAR, - ACTIONS(5304), 1, - anon_sym_LT, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, + [69723] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5266), 2, + ACTIONS(4628), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5284), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4483), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 17, + ACTIONS(4630), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, + 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_satisfies, - [70224] = 22, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + [69773] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(5274), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4465), 1, + anon_sym_AMP_AMP, + ACTIONS(4467), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(5286), 1, + ACTIONS(4473), 1, + anon_sym_AMP, + ACTIONS(4475), 1, + anon_sym_CARET, + ACTIONS(4477), 1, + anon_sym_PIPE, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(5288), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(5290), 1, + ACTIONS(4485), 1, anon_sym_LT, - STATE(1945), 1, + ACTIONS(4493), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(4499), 1, + sym__ternary_qmark, + ACTIONS(4911), 1, + anon_sym_COMMA, + ACTIONS(5255), 1, + anon_sym_RBRACE, + STATE(1533), 1, sym_type_arguments, - STATE(2355), 1, + STATE(1614), 1, sym_arguments, - STATE(5093), 1, + STATE(3558), 1, + aux_sym_sequence_expression_repeat1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5266), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5268), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5276), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5284), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5294), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5296), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4483), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5292), 3, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 10, + [69883] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4632), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4634), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, + 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_satisfies, - [70312] = 23, - ACTIONS(4425), 1, + [69933] = 31, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(5274), 1, + ACTIONS(4842), 1, + anon_sym_as, + ACTIONS(4844), 1, + anon_sym_BANG, + ACTIONS(4849), 1, + anon_sym_satisfies, + ACTIONS(5261), 1, + anon_sym_AMP_AMP, + ACTIONS(5263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5265), 1, anon_sym_GT_GT, - ACTIONS(5278), 1, + ACTIONS(5269), 1, anon_sym_AMP, - ACTIONS(5286), 1, + ACTIONS(5271), 1, + anon_sym_CARET, + ACTIONS(5273), 1, + anon_sym_PIPE, + ACTIONS(5277), 1, anon_sym_PERCENT, - ACTIONS(5288), 1, + ACTIONS(5279), 1, anon_sym_STAR_STAR, - ACTIONS(5290), 1, + ACTIONS(5281), 1, anon_sym_LT, - STATE(1945), 1, + ACTIONS(5289), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5291), 1, + sym__ternary_qmark, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4483), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5266), 2, + ACTIONS(5257), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5268), 2, + ACTIONS(5259), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5276), 2, + ACTIONS(5267), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5284), 2, + ACTIONS(5275), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5294), 2, + ACTIONS(5285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5296), 2, + ACTIONS(5287), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5292), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4481), 10, + ACTIONS(4455), 3, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - anon_sym_satisfies, - [70402] = 24, - ACTIONS(4425), 1, + ACTIONS(5283), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [70039] = 31, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(5274), 1, + ACTIONS(4842), 1, + anon_sym_as, + ACTIONS(4844), 1, + anon_sym_BANG, + ACTIONS(4849), 1, + anon_sym_satisfies, + ACTIONS(5261), 1, + anon_sym_AMP_AMP, + ACTIONS(5263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5265), 1, anon_sym_GT_GT, - ACTIONS(5278), 1, + ACTIONS(5269), 1, anon_sym_AMP, - ACTIONS(5280), 1, + ACTIONS(5271), 1, anon_sym_CARET, - ACTIONS(5286), 1, + ACTIONS(5273), 1, + anon_sym_PIPE, + ACTIONS(5277), 1, anon_sym_PERCENT, - ACTIONS(5288), 1, + ACTIONS(5279), 1, anon_sym_STAR_STAR, - ACTIONS(5290), 1, + ACTIONS(5281), 1, anon_sym_LT, - STATE(1945), 1, + ACTIONS(5289), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5291), 1, + sym__ternary_qmark, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4483), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5266), 2, + ACTIONS(5257), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5268), 2, + ACTIONS(5259), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5276), 2, + ACTIONS(5267), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5284), 2, + ACTIONS(5275), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5294), 2, + ACTIONS(5285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5296), 2, + ACTIONS(5287), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5292), 3, + ACTIONS(4501), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_BQUOTE, + ACTIONS(5283), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 9, - sym__automatic_semicolon, + [70145] = 9, + ACTIONS(3437), 1, + anon_sym_EQ, + ACTIONS(3577), 1, + anon_sym_COLON, + ACTIONS(4146), 1, + anon_sym_extends, + ACTIONS(4606), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4609), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5293), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3435), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3439), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, + anon_sym_LPAREN, + 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_satisfies, - [70494] = 15, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + [70207] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(5286), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4465), 1, + anon_sym_AMP_AMP, + ACTIONS(4467), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4469), 1, + anon_sym_GT_GT, + ACTIONS(4473), 1, + anon_sym_AMP, + ACTIONS(4475), 1, + anon_sym_CARET, + ACTIONS(4477), 1, + anon_sym_PIPE, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(5288), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(5304), 1, + ACTIONS(4485), 1, anon_sym_LT, - STATE(1945), 1, + ACTIONS(4493), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(4499), 1, + sym__ternary_qmark, + ACTIONS(4911), 1, + anon_sym_COMMA, + ACTIONS(5297), 1, + anon_sym_RBRACK, + STATE(1533), 1, sym_type_arguments, - STATE(2355), 1, + STATE(1614), 1, sym_arguments, - STATE(5093), 1, + STATE(3558), 1, + aux_sym_sequence_expression_repeat1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5266), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4483), 10, - anon_sym_BANG, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4471), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4487), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - anon_sym_satisfies, - [70568] = 16, - ACTIONS(4425), 1, + [70317] = 31, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4826), 1, + ACTIONS(4842), 1, anon_sym_as, - ACTIONS(4828), 1, + ACTIONS(4844), 1, anon_sym_BANG, - ACTIONS(4833), 1, + ACTIONS(4849), 1, anon_sym_satisfies, - ACTIONS(5288), 1, + ACTIONS(5261), 1, + anon_sym_AMP_AMP, + ACTIONS(5263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5265), 1, + anon_sym_GT_GT, + ACTIONS(5269), 1, + anon_sym_AMP, + ACTIONS(5271), 1, + anon_sym_CARET, + ACTIONS(5273), 1, + anon_sym_PIPE, + ACTIONS(5277), 1, + anon_sym_PERCENT, + ACTIONS(5279), 1, anon_sym_STAR_STAR, - ACTIONS(5304), 1, + ACTIONS(5281), 1, anon_sym_LT, - STATE(1945), 1, + ACTIONS(5289), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5291), 1, + sym__ternary_qmark, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4483), 11, + ACTIONS(5257), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5259), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5267), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5275), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 16, + ACTIONS(5287), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4519), 3, sym__automatic_semicolon, - sym__ternary_qmark, 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_BQUOTE, + ACTIONS(5283), 3, anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - [70644] = 3, + [70423] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4562), 13, + ACTIONS(4545), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -199467,7 +197568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4564), 28, + ACTIONS(4547), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -199496,1280 +197597,1015 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [70694] = 20, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(5274), 1, - anon_sym_GT_GT, - ACTIONS(5286), 1, - anon_sym_PERCENT, - ACTIONS(5288), 1, - anon_sym_STAR_STAR, - ACTIONS(5290), 1, - anon_sym_LT, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, + [70473] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5266), 2, + ACTIONS(4587), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5268), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5276), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5284), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5292), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4483), 5, - anon_sym_BANG, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 12, + ACTIONS(4589), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, + 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_satisfies, - [70778] = 27, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4483), 1, - anon_sym_BANG, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(5270), 1, - anon_sym_AMP_AMP, - ACTIONS(5272), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5274), 1, - anon_sym_GT_GT, - ACTIONS(5278), 1, - anon_sym_AMP, - ACTIONS(5280), 1, - anon_sym_CARET, - ACTIONS(5282), 1, - anon_sym_PIPE, - ACTIONS(5286), 1, - anon_sym_PERCENT, - ACTIONS(5288), 1, - anon_sym_STAR_STAR, - ACTIONS(5290), 1, - anon_sym_LT, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, + [70523] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5266), 2, + ACTIONS(4598), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5268), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5276), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5284), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5294), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5296), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5292), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4481), 7, + ACTIONS(4600), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [70876] = 33, - ACTIONS(3959), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3961), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(3963), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - ACTIONS(4822), 1, - anon_sym_COMMA, - ACTIONS(5309), 1, - anon_sym_RBRACE, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(3625), 1, - aux_sym_sequence_expression_repeat1, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [70986] = 31, - ACTIONS(4425), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [70573] = 31, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4826), 1, + ACTIONS(4842), 1, anon_sym_as, - ACTIONS(4828), 1, + ACTIONS(4844), 1, anon_sym_BANG, - ACTIONS(4833), 1, + ACTIONS(4849), 1, anon_sym_satisfies, - ACTIONS(5270), 1, + ACTIONS(5261), 1, anon_sym_AMP_AMP, - ACTIONS(5272), 1, + ACTIONS(5263), 1, anon_sym_PIPE_PIPE, - ACTIONS(5274), 1, + ACTIONS(5265), 1, anon_sym_GT_GT, - ACTIONS(5278), 1, + ACTIONS(5269), 1, anon_sym_AMP, - ACTIONS(5280), 1, + ACTIONS(5271), 1, anon_sym_CARET, - ACTIONS(5282), 1, + ACTIONS(5273), 1, anon_sym_PIPE, - ACTIONS(5286), 1, + ACTIONS(5277), 1, anon_sym_PERCENT, - ACTIONS(5288), 1, + ACTIONS(5279), 1, anon_sym_STAR_STAR, - ACTIONS(5290), 1, + ACTIONS(5281), 1, anon_sym_LT, - ACTIONS(5298), 1, + ACTIONS(5289), 1, anon_sym_QMARK_QMARK, - ACTIONS(5300), 1, + ACTIONS(5291), 1, sym__ternary_qmark, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5266), 2, + ACTIONS(5257), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5268), 2, + ACTIONS(5259), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5276), 2, + ACTIONS(5267), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5284), 2, + ACTIONS(5275), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5294), 2, + ACTIONS(5285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5296), 2, + ACTIONS(5287), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4655), 3, + ACTIONS(4577), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_BQUOTE, - ACTIONS(5292), 3, + ACTIONS(5283), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [71092] = 31, - ACTIONS(4425), 1, + [70679] = 31, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4826), 1, + ACTIONS(4842), 1, anon_sym_as, - ACTIONS(4828), 1, + ACTIONS(4844), 1, anon_sym_BANG, - ACTIONS(4833), 1, + ACTIONS(4849), 1, anon_sym_satisfies, - ACTIONS(5270), 1, + ACTIONS(5261), 1, anon_sym_AMP_AMP, - ACTIONS(5272), 1, + ACTIONS(5263), 1, anon_sym_PIPE_PIPE, - ACTIONS(5274), 1, + ACTIONS(5265), 1, anon_sym_GT_GT, - ACTIONS(5278), 1, + ACTIONS(5269), 1, anon_sym_AMP, - ACTIONS(5280), 1, + ACTIONS(5271), 1, anon_sym_CARET, - ACTIONS(5282), 1, + ACTIONS(5273), 1, anon_sym_PIPE, - ACTIONS(5286), 1, + ACTIONS(5277), 1, anon_sym_PERCENT, - ACTIONS(5288), 1, + ACTIONS(5279), 1, anon_sym_STAR_STAR, - ACTIONS(5290), 1, + ACTIONS(5281), 1, anon_sym_LT, - ACTIONS(5298), 1, + ACTIONS(5289), 1, anon_sym_QMARK_QMARK, - ACTIONS(5300), 1, + ACTIONS(5291), 1, sym__ternary_qmark, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5266), 2, + ACTIONS(5257), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5268), 2, + ACTIONS(5259), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5276), 2, + ACTIONS(5267), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5284), 2, + ACTIONS(5275), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5294), 2, + ACTIONS(5285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5296), 2, + ACTIONS(5287), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4419), 3, + ACTIONS(4581), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_BQUOTE, - ACTIONS(5292), 3, + ACTIONS(5283), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [71198] = 31, - ACTIONS(4425), 1, + [70785] = 18, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(5270), 1, - anon_sym_AMP_AMP, - ACTIONS(5272), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5274), 1, + ACTIONS(5265), 1, anon_sym_GT_GT, - ACTIONS(5278), 1, - anon_sym_AMP, - ACTIONS(5280), 1, - anon_sym_CARET, - ACTIONS(5282), 1, - anon_sym_PIPE, - ACTIONS(5286), 1, + ACTIONS(5277), 1, anon_sym_PERCENT, - ACTIONS(5288), 1, + ACTIONS(5279), 1, anon_sym_STAR_STAR, - ACTIONS(5290), 1, + ACTIONS(5281), 1, anon_sym_LT, - ACTIONS(5298), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5300), 1, - sym__ternary_qmark, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5266), 2, + ACTIONS(5257), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5268), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5276), 2, + ACTIONS(5267), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5284), 2, + ACTIONS(5275), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5294), 2, + ACTIONS(4585), 7, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5296), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4584), 3, + ACTIONS(4583), 15, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5292), 3, + 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, - [71304] = 31, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + anon_sym_BQUOTE, + anon_sym_satisfies, + [70865] = 33, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4826), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, anon_sym_as, - ACTIONS(4828), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(5270), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(5272), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(5274), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(5278), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(5280), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(5282), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(5286), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(5288), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(5290), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(5298), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(5300), 1, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(4499), 1, sym__ternary_qmark, - STATE(1945), 1, + ACTIONS(5299), 1, + anon_sym_RPAREN, + STATE(1533), 1, sym_type_arguments, - STATE(2355), 1, + STATE(1614), 1, sym_arguments, - STATE(5093), 1, + STATE(4826), 1, + aux_sym_array_repeat1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5266), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5268), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5276), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5284), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5294), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5296), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4489), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5292), 3, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [71410] = 31, - ACTIONS(4425), 1, + [70975] = 13, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(5270), 1, - anon_sym_AMP_AMP, - ACTIONS(5272), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5274), 1, - anon_sym_GT_GT, - ACTIONS(5278), 1, - anon_sym_AMP, - ACTIONS(5280), 1, - anon_sym_CARET, - ACTIONS(5282), 1, - anon_sym_PIPE, - ACTIONS(5286), 1, - anon_sym_PERCENT, - ACTIONS(5288), 1, + ACTIONS(5279), 1, anon_sym_STAR_STAR, - ACTIONS(5290), 1, + ACTIONS(5301), 1, anon_sym_LT, - ACTIONS(5298), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5300), 1, - sym__ternary_qmark, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5266), 2, + ACTIONS(4585), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5268), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5276), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5284), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5294), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5296), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4493), 3, + ACTIONS(4583), 18, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5292), 3, + anon_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, - [71516] = 31, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + anon_sym_BQUOTE, + anon_sym_satisfies, + [71045] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4826), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, anon_sym_as, - ACTIONS(4828), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(5270), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(5272), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(5274), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(5278), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(5280), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(5282), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(5286), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(5288), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(5290), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(5298), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(5300), 1, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(4499), 1, sym__ternary_qmark, - STATE(1945), 1, + ACTIONS(4911), 1, + anon_sym_COMMA, + ACTIONS(5304), 1, + anon_sym_RBRACK, + STATE(1533), 1, sym_type_arguments, - STATE(2355), 1, + STATE(1614), 1, sym_arguments, - STATE(5093), 1, + STATE(3558), 1, + aux_sym_sequence_expression_repeat1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5266), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5268), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5276), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5284), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5294), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5296), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4536), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5292), 3, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [71622] = 31, - ACTIONS(4425), 1, + [71155] = 25, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, + ACTIONS(4585), 1, anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(5270), 1, - anon_sym_AMP_AMP, - ACTIONS(5272), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5274), 1, + ACTIONS(5265), 1, anon_sym_GT_GT, - ACTIONS(5278), 1, + ACTIONS(5269), 1, anon_sym_AMP, - ACTIONS(5280), 1, + ACTIONS(5271), 1, anon_sym_CARET, - ACTIONS(5282), 1, + ACTIONS(5273), 1, anon_sym_PIPE, - ACTIONS(5286), 1, + ACTIONS(5277), 1, anon_sym_PERCENT, - ACTIONS(5288), 1, + ACTIONS(5279), 1, anon_sym_STAR_STAR, - ACTIONS(5290), 1, + ACTIONS(5281), 1, anon_sym_LT, - ACTIONS(5298), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5300), 1, - sym__ternary_qmark, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5266), 2, + ACTIONS(5257), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5268), 2, + ACTIONS(5259), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5276), 2, + ACTIONS(5267), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5284), 2, + ACTIONS(5275), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5294), 2, + ACTIONS(5285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5296), 2, + ACTIONS(5287), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4538), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5292), 3, + ACTIONS(5283), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [71728] = 33, - ACTIONS(3959), 1, + ACTIONS(4583), 9, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [71249] = 26, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4585), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + ACTIONS(5261), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(5265), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(5269), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(5271), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(5273), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(5277), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(5279), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(5281), 1, anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - ACTIONS(4822), 1, - anon_sym_COMMA, - ACTIONS(5311), 1, - anon_sym_RBRACK, - STATE(1603), 1, + STATE(1976), 1, sym_type_arguments, - STATE(1650), 1, + STATE(2240), 1, sym_arguments, - STATE(3625), 1, - aux_sym_sequence_expression_repeat1, - STATE(5091), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5257), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(5259), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(5267), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(5275), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(5285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(5287), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(5283), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [71838] = 31, - ACTIONS(4425), 1, + ACTIONS(4583), 8, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [71345] = 16, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(5270), 1, - anon_sym_AMP_AMP, - ACTIONS(5272), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5274), 1, - anon_sym_GT_GT, - ACTIONS(5278), 1, - anon_sym_AMP, - ACTIONS(5280), 1, - anon_sym_CARET, - ACTIONS(5282), 1, - anon_sym_PIPE, - ACTIONS(5286), 1, + ACTIONS(5277), 1, anon_sym_PERCENT, - ACTIONS(5288), 1, + ACTIONS(5279), 1, anon_sym_STAR_STAR, - ACTIONS(5290), 1, + ACTIONS(5301), 1, anon_sym_LT, - ACTIONS(5298), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5300), 1, - sym__ternary_qmark, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5266), 2, + ACTIONS(5257), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5268), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5276), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5284), 2, + ACTIONS(5275), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5294), 2, + ACTIONS(4585), 8, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5296), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4544), 3, + ACTIONS(4583), 17, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5292), 3, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [71944] = 10, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(5313), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5315), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5317), 2, - anon_sym_get, - anon_sym_set, - STATE(3800), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 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(2323), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [72008] = 32, - ACTIONS(4425), 1, + anon_sym_BQUOTE, + anon_sym_satisfies, + [71421] = 22, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4734), 1, - anon_sym_COMMA, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(4839), 1, - anon_sym_AMP_AMP, - ACTIONS(4841), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4843), 1, + ACTIONS(5265), 1, anon_sym_GT_GT, - ACTIONS(4847), 1, - anon_sym_AMP, - ACTIONS(4849), 1, - anon_sym_CARET, - ACTIONS(4851), 1, - anon_sym_PIPE, - ACTIONS(4855), 1, + ACTIONS(5277), 1, anon_sym_PERCENT, - ACTIONS(4857), 1, + ACTIONS(5279), 1, anon_sym_STAR_STAR, - ACTIONS(4859), 1, + ACTIONS(5281), 1, anon_sym_LT, - ACTIONS(4867), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4869), 1, - sym__ternary_qmark, - STATE(1945), 1, + STATE(1976), 1, sym_type_arguments, - STATE(2355), 1, + STATE(2240), 1, sym_arguments, - STATE(5093), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4835), 2, + ACTIONS(5257), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4837), 2, + ACTIONS(5259), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4845), 2, + ACTIONS(5267), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4853), 2, + ACTIONS(5275), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4863), 2, + ACTIONS(5285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4865), 2, + ACTIONS(5287), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4986), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4861), 3, + ACTIONS(4585), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5283), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [72116] = 5, - ACTIONS(1807), 1, + ACTIONS(4583), 10, sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1799), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1803), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1805), 25, sym__ternary_qmark, 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, anon_sym_satisfies, - [72170] = 3, + [71509] = 23, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, + anon_sym_LBRACK, + ACTIONS(4539), 1, + anon_sym_DOT, + ACTIONS(5265), 1, + anon_sym_GT_GT, + ACTIONS(5269), 1, + anon_sym_AMP, + ACTIONS(5277), 1, + anon_sym_PERCENT, + ACTIONS(5279), 1, + anon_sym_STAR_STAR, + ACTIONS(5281), 1, + anon_sym_LT, + STATE(1976), 1, + sym_type_arguments, + STATE(2240), 1, + sym_arguments, + STATE(4753), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1891), 13, - anon_sym_STAR, + ACTIONS(4585), 2, anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5257), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5259), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5267), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5275), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1893), 28, + ACTIONS(5287), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5283), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4583), 10, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - 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_satisfies, - [72220] = 31, - ACTIONS(3959), 1, + [71599] = 24, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(5265), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(5269), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(5271), 1, anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(5277), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(5279), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(5281), 1, anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - STATE(1603), 1, + STATE(1976), 1, sym_type_arguments, - STATE(1650), 1, + STATE(2240), 1, sym_arguments, - STATE(5091), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4585), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5257), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(5259), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(5267), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(5275), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(5285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(5287), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(5283), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5319), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [72326] = 33, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, + ACTIONS(4583), 9, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + anon_sym_SEMI, anon_sym_AMP_AMP, - ACTIONS(4429), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [71691] = 15, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, + anon_sym_LBRACK, + ACTIONS(4539), 1, + anon_sym_DOT, + ACTIONS(5277), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(5279), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(5301), 1, anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - ACTIONS(4822), 1, - anon_sym_COMMA, - ACTIONS(5321), 1, - anon_sym_RPAREN, - STATE(1603), 1, + STATE(1976), 1, sym_type_arguments, - STATE(1650), 1, + STATE(2240), 1, sym_arguments, - STATE(3625), 1, - aux_sym_sequence_expression_repeat1, - STATE(5091), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5257), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4585), 10, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4583), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [72436] = 3, + anon_sym_BQUOTE, + anon_sym_satisfies, + [71765] = 16, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, + anon_sym_LBRACK, + ACTIONS(4539), 1, + anon_sym_DOT, + ACTIONS(4842), 1, + anon_sym_as, + ACTIONS(4844), 1, + anon_sym_BANG, + ACTIONS(4849), 1, + anon_sym_satisfies, + ACTIONS(5279), 1, + anon_sym_STAR_STAR, + ACTIONS(5301), 1, + anon_sym_LT, + STATE(1976), 1, + sym_type_arguments, + STATE(2240), 1, + sym_arguments, + STATE(4753), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4485), 13, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4585), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -200778,47 +198614,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4487), 28, + ACTIONS(4583), 16, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - 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_satisfies, - [72486] = 4, - ACTIONS(5323), 1, - sym_regex_flags, + [71841] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4873), 16, + ACTIONS(4636), 13, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -200831,15 +198651,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_satisfies, - ACTIONS(4875), 24, + ACTIONS(4638), 28, sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -200855,14 +198675,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [72538] = 3, + anon_sym_satisfies, + [71891] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4627), 13, + ACTIONS(4983), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4985), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3435), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -200876,15 +198705,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4629), 28, - sym__automatic_semicolon, + ACTIONS(3439), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -200905,353 +198729,373 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [72588] = 33, - ACTIONS(3959), 1, + [71945] = 20, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(5265), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(5277), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(5279), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(5281), 1, anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - ACTIONS(4822), 1, - anon_sym_COMMA, - ACTIONS(5325), 1, - anon_sym_RBRACK, - STATE(1603), 1, + STATE(1976), 1, sym_type_arguments, - STATE(1650), 1, + STATE(2240), 1, sym_arguments, - STATE(3625), 1, - aux_sym_sequence_expression_repeat1, - STATE(5091), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5257), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(5259), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(5267), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(5275), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(5283), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [72698] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4631), 13, - anon_sym_STAR, + ACTIONS(4585), 5, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4633), 28, + ACTIONS(4583), 12, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - 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_satisfies, - [72748] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4643), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4645), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + [72029] = 27, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(4537), 1, anon_sym_LBRACK, + ACTIONS(4539), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4585), 1, + anon_sym_BANG, + ACTIONS(5261), 1, anon_sym_AMP_AMP, + ACTIONS(5263), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5265), 1, + anon_sym_GT_GT, + ACTIONS(5269), 1, + anon_sym_AMP, + ACTIONS(5271), 1, anon_sym_CARET, + ACTIONS(5273), 1, + anon_sym_PIPE, + ACTIONS(5277), 1, anon_sym_PERCENT, + ACTIONS(5279), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [72798] = 3, + ACTIONS(5281), 1, + anon_sym_LT, + STATE(1976), 1, + sym_type_arguments, + STATE(2240), 1, + sym_arguments, + STATE(4753), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4675), 13, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5257), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5259), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5267), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5275), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4677), 28, + ACTIONS(5287), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5283), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4583), 7, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - 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_satisfies, - [72848] = 33, - ACTIONS(3959), 1, + [72127] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4461), 1, + ACTIONS(4499), 1, sym__ternary_qmark, - ACTIONS(4822), 1, + ACTIONS(4911), 1, anon_sym_COMMA, - ACTIONS(5327), 1, + ACTIONS(5306), 1, anon_sym_RBRACE, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(3625), 1, + STATE(3558), 1, aux_sym_sequence_expression_repeat1, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [72958] = 3, + [72237] = 31, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, + anon_sym_LBRACK, + ACTIONS(4539), 1, + anon_sym_DOT, + ACTIONS(4842), 1, + anon_sym_as, + ACTIONS(4844), 1, + anon_sym_BANG, + ACTIONS(4849), 1, + anon_sym_satisfies, + ACTIONS(5261), 1, + anon_sym_AMP_AMP, + ACTIONS(5263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5265), 1, + anon_sym_GT_GT, + ACTIONS(5269), 1, + anon_sym_AMP, + ACTIONS(5271), 1, + anon_sym_CARET, + ACTIONS(5273), 1, + anon_sym_PIPE, + ACTIONS(5277), 1, + anon_sym_PERCENT, + ACTIONS(5279), 1, + anon_sym_STAR_STAR, + ACTIONS(5281), 1, + anon_sym_LT, + ACTIONS(5289), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5291), 1, + sym__ternary_qmark, + STATE(1976), 1, + sym_type_arguments, + STATE(2240), 1, + sym_arguments, + STATE(4753), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4546), 13, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5257), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5259), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5267), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5275), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4548), 28, + ACTIONS(5287), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4642), 3, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(5283), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [72343] = 31, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, anon_sym_LBRACK, + ACTIONS(4539), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4842), 1, + anon_sym_as, + ACTIONS(4844), 1, + anon_sym_BANG, + ACTIONS(4849), 1, + anon_sym_satisfies, + ACTIONS(5261), 1, anon_sym_AMP_AMP, + ACTIONS(5263), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5265), 1, + anon_sym_GT_GT, + ACTIONS(5269), 1, + anon_sym_AMP, + ACTIONS(5271), 1, anon_sym_CARET, + ACTIONS(5273), 1, + anon_sym_PIPE, + ACTIONS(5277), 1, anon_sym_PERCENT, + ACTIONS(5279), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5281), 1, + anon_sym_LT, + ACTIONS(5289), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5291), 1, + sym__ternary_qmark, + STATE(1976), 1, + sym_type_arguments, + STATE(2240), 1, + sym_arguments, + STATE(4753), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(5257), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5259), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5267), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5275), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5285), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5287), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4648), 3, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_BQUOTE, - anon_sym_satisfies, - [73008] = 3, + ACTIONS(5283), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [72449] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4554), 13, + ACTIONS(4685), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201265,7 +199109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4556), 28, + ACTIONS(4687), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -201294,229 +199138,386 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [73058] = 33, - ACTIONS(1939), 1, - anon_sym_COMMA, - ACTIONS(3959), 1, + [72499] = 31, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4417), 1, + ACTIONS(4842), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4844), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + ACTIONS(4849), 1, + anon_sym_satisfies, + ACTIONS(5261), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, + ACTIONS(5263), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(5265), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(5269), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(5271), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(5273), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(5277), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(5279), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(5281), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(5289), 1, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, + ACTIONS(5291), 1, sym__ternary_qmark, - ACTIONS(5329), 1, - anon_sym_RPAREN, - STATE(1603), 1, + STATE(1976), 1, sym_type_arguments, - STATE(1650), 1, + STATE(2240), 1, sym_arguments, - STATE(5091), 1, + STATE(4753), 1, sym_optional_chain, - STATE(5227), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5257), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(5259), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(5267), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(5275), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(5285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(5287), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(4716), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_BQUOTE, + ACTIONS(5283), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [73168] = 3, + [72605] = 31, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, + anon_sym_LBRACK, + ACTIONS(4539), 1, + anon_sym_DOT, + ACTIONS(4842), 1, + anon_sym_as, + ACTIONS(4844), 1, + anon_sym_BANG, + ACTIONS(4849), 1, + anon_sym_satisfies, + ACTIONS(5261), 1, + anon_sym_AMP_AMP, + ACTIONS(5263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5265), 1, + anon_sym_GT_GT, + ACTIONS(5269), 1, + anon_sym_AMP, + ACTIONS(5271), 1, + anon_sym_CARET, + ACTIONS(5273), 1, + anon_sym_PIPE, + ACTIONS(5277), 1, + anon_sym_PERCENT, + ACTIONS(5279), 1, + anon_sym_STAR_STAR, + ACTIONS(5281), 1, + anon_sym_LT, + ACTIONS(5289), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5291), 1, + sym__ternary_qmark, + STATE(1976), 1, + sym_type_arguments, + STATE(2240), 1, + sym_arguments, + STATE(4753), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4687), 13, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5257), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5259), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5267), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5275), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4689), 28, + ACTIONS(5287), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4728), 3, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(5283), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [72711] = 31, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, anon_sym_LBRACK, + ACTIONS(4539), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4842), 1, + anon_sym_as, + ACTIONS(4844), 1, + anon_sym_BANG, + ACTIONS(4849), 1, + anon_sym_satisfies, + ACTIONS(5261), 1, anon_sym_AMP_AMP, + ACTIONS(5263), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5265), 1, + anon_sym_GT_GT, + ACTIONS(5269), 1, + anon_sym_AMP, + ACTIONS(5271), 1, anon_sym_CARET, + ACTIONS(5273), 1, + anon_sym_PIPE, + ACTIONS(5277), 1, anon_sym_PERCENT, + ACTIONS(5279), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5281), 1, + anon_sym_LT, + ACTIONS(5289), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [73218] = 3, + ACTIONS(5291), 1, + sym__ternary_qmark, + STATE(1976), 1, + sym_type_arguments, + STATE(2240), 1, + sym_arguments, + STATE(4753), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4691), 13, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5257), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5259), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5267), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5275), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4693), 28, + ACTIONS(5287), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4732), 3, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(5283), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [72817] = 31, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, anon_sym_LBRACK, + ACTIONS(4539), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4842), 1, + anon_sym_as, + ACTIONS(4844), 1, + anon_sym_BANG, + ACTIONS(4849), 1, + anon_sym_satisfies, + ACTIONS(5261), 1, anon_sym_AMP_AMP, + ACTIONS(5263), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5265), 1, + anon_sym_GT_GT, + ACTIONS(5269), 1, + anon_sym_AMP, + ACTIONS(5271), 1, anon_sym_CARET, + ACTIONS(5273), 1, + anon_sym_PIPE, + ACTIONS(5277), 1, anon_sym_PERCENT, + ACTIONS(5279), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5281), 1, + anon_sym_LT, + ACTIONS(5289), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [73268] = 3, + ACTIONS(5291), 1, + sym__ternary_qmark, + STATE(1976), 1, + sym_type_arguments, + STATE(2240), 1, + sym_arguments, + STATE(4753), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4671), 13, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5257), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5259), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5267), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5275), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4673), 28, + ACTIONS(5287), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4503), 3, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(5283), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [72923] = 31, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, anon_sym_LBRACK, + ACTIONS(4539), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4842), 1, + anon_sym_as, + ACTIONS(4844), 1, + anon_sym_BANG, + ACTIONS(4849), 1, + anon_sym_satisfies, + ACTIONS(5261), 1, anon_sym_AMP_AMP, + ACTIONS(5263), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5265), 1, + anon_sym_GT_GT, + ACTIONS(5269), 1, + anon_sym_AMP, + ACTIONS(5271), 1, anon_sym_CARET, + ACTIONS(5273), 1, + anon_sym_PIPE, + ACTIONS(5277), 1, anon_sym_PERCENT, + ACTIONS(5279), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5281), 1, + anon_sym_LT, + ACTIONS(5289), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5291), 1, + sym__ternary_qmark, + STATE(1976), 1, + sym_type_arguments, + STATE(2240), 1, + sym_arguments, + STATE(4753), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(5257), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5259), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5267), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5275), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5285), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5287), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4505), 3, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_BQUOTE, - anon_sym_satisfies, - [73318] = 3, + ACTIONS(5283), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [73029] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4586), 13, + ACTIONS(4689), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201530,7 +199531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4588), 28, + ACTIONS(4691), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -201559,88 +199560,219 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [73368] = 33, - ACTIONS(1939), 1, - anon_sym_COMMA, - ACTIONS(3959), 1, + [73079] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4461), 1, + ACTIONS(4499), 1, sym__ternary_qmark, - ACTIONS(5331), 1, - anon_sym_RPAREN, - STATE(1603), 1, + ACTIONS(4911), 1, + anon_sym_COMMA, + ACTIONS(5308), 1, + anon_sym_RBRACK, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(4648), 1, - aux_sym_array_repeat1, - STATE(5091), 1, + STATE(3558), 1, + aux_sym_sequence_expression_repeat1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4487), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [73189] = 31, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, + anon_sym_LBRACK, + ACTIONS(4539), 1, + anon_sym_DOT, + ACTIONS(4842), 1, + anon_sym_as, + ACTIONS(4844), 1, + anon_sym_BANG, + ACTIONS(4849), 1, + anon_sym_satisfies, + ACTIONS(5261), 1, + anon_sym_AMP_AMP, + ACTIONS(5263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5265), 1, + anon_sym_GT_GT, + ACTIONS(5269), 1, + anon_sym_AMP, + ACTIONS(5271), 1, + anon_sym_CARET, + ACTIONS(5273), 1, + anon_sym_PIPE, + ACTIONS(5277), 1, + anon_sym_PERCENT, + ACTIONS(5279), 1, + anon_sym_STAR_STAR, + ACTIONS(5281), 1, + anon_sym_LT, + ACTIONS(5289), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5291), 1, + sym__ternary_qmark, + STATE(1976), 1, + sym_type_arguments, + STATE(2240), 1, + sym_arguments, + STATE(4753), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(5257), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5259), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5267), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5275), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5285), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5287), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4734), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_BQUOTE, + ACTIONS(5283), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [73478] = 3, + [73295] = 12, + ACTIONS(166), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(3238), 1, + anon_sym_LBRACE, + ACTIONS(3886), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5031), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5312), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(5520), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5891), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + STATE(5957), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(5310), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [73363] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1761), 13, + ACTIONS(1707), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201654,7 +199786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1763), 28, + ACTIONS(1709), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -201683,11 +199815,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [73528] = 3, + [73413] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1771), 13, + ACTIONS(1745), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201701,7 +199833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1773), 28, + ACTIONS(1747), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -201730,11 +199862,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [73578] = 3, + [73463] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1803), 13, + ACTIONS(1765), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201748,7 +199880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1805), 28, + ACTIONS(1767), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -201777,11 +199909,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [73628] = 3, + [73513] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1863), 13, + ACTIONS(1693), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201795,7 +199927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1865), 28, + ACTIONS(1695), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -201824,11 +199956,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [73678] = 3, + [73563] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4653), 13, + ACTIONS(4511), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201842,7 +199974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4655), 28, + ACTIONS(4513), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -201871,634 +200003,396 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [73728] = 33, - ACTIONS(1939), 1, + [73613] = 33, + ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(3959), 1, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - ACTIONS(5333), 1, - anon_sym_RPAREN, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(4680), 1, - aux_sym_array_repeat1, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [73838] = 33, - ACTIONS(1939), 1, - anon_sym_COMMA, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4461), 1, + ACTIONS(4499), 1, sym__ternary_qmark, - ACTIONS(5335), 1, + ACTIONS(5314), 1, anon_sym_RPAREN, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(4705), 1, - aux_sym_array_repeat1, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, + STATE(5209), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [73948] = 33, - ACTIONS(3959), 1, + [73723] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4461), 1, + ACTIONS(4499), 1, sym__ternary_qmark, - ACTIONS(4822), 1, + ACTIONS(4911), 1, anon_sym_COMMA, - ACTIONS(5337), 1, + ACTIONS(5316), 1, anon_sym_COLON, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(3625), 1, + STATE(3558), 1, aux_sym_sequence_expression_repeat1, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [74058] = 33, - ACTIONS(1939), 1, - anon_sym_COMMA, - ACTIONS(3959), 1, + [73833] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - ACTIONS(5339), 1, - anon_sym_RPAREN, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(4721), 1, - aux_sym_array_repeat1, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [74168] = 33, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4461), 1, + ACTIONS(4499), 1, sym__ternary_qmark, - ACTIONS(4822), 1, + ACTIONS(4911), 1, anon_sym_COMMA, - ACTIONS(5341), 1, + ACTIONS(5318), 1, anon_sym_RPAREN, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(3625), 1, + STATE(3558), 1, aux_sym_sequence_expression_repeat1, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [74278] = 33, - ACTIONS(3959), 1, + [73943] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - ACTIONS(4822), 1, - anon_sym_COMMA, - ACTIONS(5343), 1, - anon_sym_RPAREN, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(3625), 1, - aux_sym_sequence_expression_repeat1, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [74388] = 33, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4461), 1, + ACTIONS(4499), 1, sym__ternary_qmark, - ACTIONS(4822), 1, + ACTIONS(4911), 1, anon_sym_COMMA, - ACTIONS(5345), 1, + ACTIONS(5320), 1, anon_sym_RPAREN, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(3625), 1, + STATE(3558), 1, aux_sym_sequence_expression_repeat1, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [74498] = 33, - ACTIONS(3959), 1, + [74053] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4461), 1, + ACTIONS(4499), 1, sym__ternary_qmark, - ACTIONS(4822), 1, + ACTIONS(4911), 1, anon_sym_COMMA, - ACTIONS(5347), 1, - anon_sym_SEMI, - STATE(1603), 1, + ACTIONS(5322), 1, + anon_sym_RPAREN, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(3625), 1, + STATE(3558), 1, aux_sym_sequence_expression_repeat1, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [74608] = 5, + [74163] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5349), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5351), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3448), 13, + ACTIONS(4640), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202512,10 +200406,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 23, + ACTIONS(4642), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -202536,191 +200435,210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [74662] = 5, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5353), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5355), 3, + [74213] = 15, + ACTIONS(237), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3448), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3452), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, + ACTIONS(724), 1, + anon_sym_RBRACE, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(4736), 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_satisfies, - [74716] = 5, + ACTIONS(4965), 1, + anon_sym_STAR, + STATE(5129), 1, + aux_sym_object_repeat1, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5353), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5355), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3887), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 4, + anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(3448), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3452), 23, - sym__ternary_qmark, - anon_sym_as, + anon_sym_QMARK, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [74287] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, + ACTIONS(3940), 1, anon_sym_LBRACK, + ACTIONS(3942), 1, anon_sym_DOT, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4465), 1, anon_sym_AMP_AMP, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4469), 1, + anon_sym_GT_GT, + ACTIONS(4473), 1, + anon_sym_AMP, + ACTIONS(4475), 1, anon_sym_CARET, + ACTIONS(4477), 1, + anon_sym_PIPE, + ACTIONS(4481), 1, anon_sym_PERCENT, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4485), 1, + anon_sym_LT, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4497), 1, anon_sym_satisfies, - [74770] = 12, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(5357), 1, - anon_sym_LT, - STATE(1945), 1, + ACTIONS(4499), 1, + sym__ternary_qmark, + ACTIONS(4911), 1, + anon_sym_COMMA, + ACTIONS(5324), 1, + anon_sym_SEMI, + STATE(1533), 1, sym_type_arguments, - STATE(2355), 1, + STATE(1614), 1, sym_arguments, - STATE(5093), 1, + STATE(3558), 1, + aux_sym_sequence_expression_repeat1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4736), 12, + ACTIONS(4457), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4471), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4738), 19, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - 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, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4487), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - anon_sym_satisfies, - [74838] = 15, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, + [74397] = 10, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, + ACTIONS(5326), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5328), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5330), 2, + anon_sym_get, + anon_sym_set, + STATE(3888), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(5360), 1, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [74461] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4616), 11, + ACTIONS(5332), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5334), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3435), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -202729,12 +200647,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4618), 17, - sym__automatic_semicolon, + ACTIONS(3439), 23, sym__ternary_qmark, - anon_sym_SEMI, + anon_sym_as, + 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, @@ -202748,103 +200670,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [74912] = 31, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + anon_sym_satisfies, + [74515] = 33, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4826), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, anon_sym_as, - ACTIONS(4828), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(5270), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(5272), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(5274), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(5278), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(5280), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(5282), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(5286), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(5288), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(5290), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(5298), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(5300), 1, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(4499), 1, sym__ternary_qmark, - STATE(1945), 1, + ACTIONS(5336), 1, + anon_sym_RPAREN, + STATE(1533), 1, sym_type_arguments, - STATE(2355), 1, + STATE(1614), 1, sym_arguments, - STATE(5093), 1, + STATE(4652), 1, + aux_sym_array_repeat1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5266), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5268), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5276), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5284), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5294), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5296), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4651), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5292), 3, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [75018] = 11, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(5363), 1, - anon_sym_LT, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, + [74625] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4695), 12, + ACTIONS(5338), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5340), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3435), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202855,13 +200773,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4697), 21, - sym__automatic_semicolon, + ACTIONS(3439), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, + 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, @@ -202879,18 +200800,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75084] = 5, + [74679] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5353), 2, + ACTIONS(5338), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5355), 3, + ACTIONS(5340), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(3448), 13, + ACTIONS(3435), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202904,7 +200825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 23, + ACTIONS(3439), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -202928,44 +200849,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75138] = 10, - ACTIONS(2291), 1, + [74733] = 16, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(724), 1, + anon_sym_RBRACE, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(5366), 1, + ACTIONS(4965), 1, anon_sym_STAR, + STATE(5129), 1, + aux_sym_object_repeat1, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5368), 2, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - ACTIONS(5370), 2, + ACTIONS(2320), 2, anon_sym_get, anon_sym_set, - STATE(3786), 3, + STATE(3887), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3758), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2323), 21, + ACTIONS(2314), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -202982,11 +200909,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [75202] = 3, + [74809] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4606), 13, + ACTIONS(5338), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5340), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3435), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -203000,15 +200934,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4608), 28, - sym__automatic_semicolon, + ACTIONS(3439), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -203029,80 +200958,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75252] = 5, - ACTIONS(1867), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1859), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1863), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1865), 25, - sym__ternary_qmark, - anon_sym_as, + [74863] = 33, + ACTIONS(1928), 1, anon_sym_COMMA, + ACTIONS(3938), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(3940), 1, anon_sym_LBRACK, + ACTIONS(3942), 1, anon_sym_DOT, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4465), 1, anon_sym_AMP_AMP, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4469), 1, + anon_sym_GT_GT, + ACTIONS(4473), 1, + anon_sym_AMP, + ACTIONS(4475), 1, anon_sym_CARET, + ACTIONS(4477), 1, + anon_sym_PIPE, + ACTIONS(4481), 1, anon_sym_PERCENT, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4485), 1, + anon_sym_LT, + ACTIONS(4493), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(4499), 1, + sym__ternary_qmark, + ACTIONS(5342), 1, + anon_sym_RPAREN, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(4684), 1, + aux_sym_array_repeat1, + STATE(5072), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4457), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4463), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4471), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4479), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4489), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [75306] = 11, - ACTIONS(1588), 1, + ACTIONS(4487), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [74973] = 10, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(5366), 1, + ACTIONS(5344), 1, anon_sym_STAR, - ACTIONS(5372), 1, - anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5374), 2, + ACTIONS(5346), 2, sym_number, sym_private_property_identifier, - ACTIONS(5376), 2, + ACTIONS(5348), 2, anon_sym_get, anon_sym_set, - STATE(3031), 3, + STATE(3926), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -203112,11 +201067,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3651), 20, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -203133,106 +201089,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [75372] = 33, - ACTIONS(1939), 1, - anon_sym_COMMA, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - ACTIONS(5378), 1, - anon_sym_RBRACK, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - STATE(5153), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [75482] = 10, - ACTIONS(2291), 1, + [75037] = 11, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(5224), 1, + ACTIONS(5344), 1, anon_sym_STAR, + ACTIONS(5350), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5380), 2, + ACTIONS(5352), 2, sym_number, sym_private_property_identifier, - ACTIONS(5382), 2, + ACTIONS(5354), 2, anon_sym_get, anon_sym_set, - STATE(3919), 3, + STATE(3026), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -203242,12 +201123,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2323), 21, + ACTIONS(3646), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -203264,278 +201144,239 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [75546] = 5, - ACTIONS(1755), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1747), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1751), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1753), 25, - sym__ternary_qmark, - 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, - anon_sym_satisfies, - [75600] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4679), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4681), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + [75103] = 33, + ACTIONS(1928), 1, anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3938), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(3940), 1, anon_sym_LBRACK, + ACTIONS(3942), 1, anon_sym_DOT, + ACTIONS(4418), 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_satisfies, - [75650] = 33, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, + ACTIONS(4459), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4461), 1, + ACTIONS(4499), 1, sym__ternary_qmark, - ACTIONS(4822), 1, - anon_sym_COMMA, - ACTIONS(5384), 1, - anon_sym_RBRACE, - STATE(1603), 1, + ACTIONS(5356), 1, + anon_sym_RPAREN, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(3625), 1, - aux_sym_sequence_expression_repeat1, - STATE(5091), 1, + STATE(4711), 1, + aux_sym_array_repeat1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [75760] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4702), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4704), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + [75213] = 33, + ACTIONS(1928), 1, anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3938), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(3940), 1, anon_sym_LBRACK, + ACTIONS(3942), 1, anon_sym_DOT, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4465), 1, anon_sym_AMP_AMP, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4469), 1, + anon_sym_GT_GT, + ACTIONS(4473), 1, + anon_sym_AMP, + ACTIONS(4475), 1, anon_sym_CARET, + ACTIONS(4477), 1, + anon_sym_PIPE, + ACTIONS(4481), 1, anon_sym_PERCENT, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4485), 1, + anon_sym_LT, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4497), 1, anon_sym_satisfies, - [75810] = 3, + ACTIONS(4499), 1, + sym__ternary_qmark, + ACTIONS(5358), 1, + anon_sym_RPAREN, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(4729), 1, + aux_sym_array_repeat1, + STATE(5072), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4683), 13, + ACTIONS(4457), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4471), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4685), 28, + ACTIONS(4491), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4487), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [75323] = 11, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 1, + anon_sym_SQUOTE, + ACTIONS(4431), 1, + anon_sym_LBRACK, + ACTIONS(5082), 1, + anon_sym_STAR, + ACTIONS(5084), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5090), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5360), 2, + sym_number, + sym_private_property_identifier, + STATE(3032), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 9, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [75389] = 12, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, anon_sym_LBRACK, + ACTIONS(4539), 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_satisfies, - [75860] = 3, + ACTIONS(5362), 1, + anon_sym_LT, + STATE(1976), 1, + sym_type_arguments, + STATE(2240), 1, + sym_arguments, + STATE(4753), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4612), 13, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4674), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -203546,21 +201387,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4614), 28, + ACTIONS(4676), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -203574,102 +201407,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75910] = 33, - ACTIONS(3959), 1, + [75457] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4461), 1, + ACTIONS(4499), 1, sym__ternary_qmark, - ACTIONS(4822), 1, - anon_sym_COMMA, - ACTIONS(5386), 1, - anon_sym_RPAREN, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(3625), 1, - aux_sym_sequence_expression_repeat1, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [76020] = 7, - ACTIONS(5388), 1, + ACTIONS(5012), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + [75563] = 15, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(5391), 1, - anon_sym_COLON, - ACTIONS(5393), 1, + ACTIONS(4537), 1, + anon_sym_LBRACK, + ACTIONS(4539), 1, + anon_sym_DOT, + ACTIONS(4842), 1, + anon_sym_as, + ACTIONS(4844), 1, + anon_sym_BANG, + ACTIONS(4849), 1, + anon_sym_satisfies, + ACTIONS(5365), 1, anon_sym_LT, - ACTIONS(5396), 1, - anon_sym_QMARK, + STATE(1976), 1, + sym_type_arguments, + STATE(2240), 1, + sym_arguments, + STATE(4753), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3448), 12, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4697), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -203680,15 +201525,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 25, + ACTIONS(4699), 17, sym__automatic_semicolon, sym__ternary_qmark, - 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, @@ -203702,23 +201542,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - [76078] = 7, - ACTIONS(5398), 1, - anon_sym_LPAREN, - ACTIONS(5401), 1, - anon_sym_COLON, - ACTIONS(5403), 1, - anon_sym_LT, - ACTIONS(5406), 1, - anon_sym_QMARK, + [75637] = 5, + ACTIONS(1711), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4485), 12, + ACTIONS(1703), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1707), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -203729,13 +201563,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4487), 25, - sym__automatic_semicolon, + ACTIONS(1709), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -203757,49 +201592,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76136] = 15, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(727), 1, - anon_sym_RBRACE, - ACTIONS(2291), 1, + [75691] = 11, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(4988), 1, + ACTIONS(5233), 1, anon_sym_STAR, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, + ACTIONS(5368), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2301), 2, + ACTIONS(5370), 2, sym_number, sym_private_property_identifier, - ACTIONS(2329), 2, + ACTIONS(5372), 2, anon_sym_get, anon_sym_set, - STATE(3922), 3, + STATE(3027), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 4, + ACTIONS(3758), 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(2323), 21, + ACTIONS(3646), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -203816,11 +201647,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [76210] = 3, + [75757] = 11, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, + anon_sym_LBRACK, + ACTIONS(4539), 1, + anon_sym_DOT, + ACTIONS(5374), 1, + anon_sym_LT, + STATE(1976), 1, + sym_type_arguments, + STATE(2240), 1, + sym_arguments, + STATE(4753), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4732), 13, + ACTIONS(4414), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -203831,21 +201678,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4610), 28, + ACTIONS(4416), 21, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -203863,50 +201702,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76260] = 16, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(727), 1, - anon_sym_RBRACE, - ACTIONS(2291), 1, + [75823] = 11, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(2325), 1, + ACTIONS(4431), 1, + anon_sym_LBRACK, + ACTIONS(5082), 1, + anon_sym_STAR, + ACTIONS(5084), 1, anon_sym_async, - ACTIONS(4469), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5090), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5377), 2, + sym_number, + sym_private_property_identifier, + STATE(3009), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 9, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(4785), 1, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [75889] = 10, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(4988), 1, + ACTIONS(5096), 1, anon_sym_STAR, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2301), 2, + ACTIONS(5379), 2, sym_number, sym_private_property_identifier, - ACTIONS(2329), 2, + ACTIONS(5381), 2, anon_sym_get, anon_sym_set, - STATE(3922), 3, + STATE(3857), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 4, + ACTIONS(3758), 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(2323), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -203923,29 +201811,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [76336] = 10, - ACTIONS(2291), 1, + [75953] = 11, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(5124), 1, + ACTIONS(5096), 1, anon_sym_STAR, + ACTIONS(5098), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5408), 2, + ACTIONS(5100), 2, sym_number, sym_private_property_identifier, - ACTIONS(5410), 2, + ACTIONS(5104), 2, anon_sym_get, anon_sym_set, - STATE(3825), 3, + STATE(3069), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -203955,12 +201845,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2323), 21, + ACTIONS(3646), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -203977,11 +201866,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [76400] = 3, + [76019] = 5, + ACTIONS(1749), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4532), 13, + ACTIONS(1741), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1745), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -203995,15 +201889,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4534), 28, - sym__automatic_semicolon, + ACTIONS(1747), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -204024,17 +201915,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76450] = 4, + [76073] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1913), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1917), 13, + ACTIONS(4573), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -204048,10 +201933,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1919), 23, + ACTIONS(4575), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -204072,199 +201962,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76502] = 33, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - ACTIONS(4822), 1, - anon_sym_COMMA, - ACTIONS(5412), 1, - anon_sym_RPAREN, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(3625), 1, - aux_sym_sequence_expression_repeat1, - STATE(5091), 1, - sym_optional_chain, + [76123] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4579), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [76612] = 33, - ACTIONS(3959), 1, + ACTIONS(4581), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3961), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(3963), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, anon_sym_QMARK_DOT, - ACTIONS(4427), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - ACTIONS(4822), 1, - anon_sym_COMMA, - ACTIONS(5414), 1, - anon_sym_RPAREN, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(3625), 1, - aux_sym_sequence_expression_repeat1, - STATE(5091), 1, - sym_optional_chain, + [76173] = 8, + ACTIONS(3485), 1, + anon_sym_EQ, + ACTIONS(3577), 1, + anon_sym_COLON, + ACTIONS(4606), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4609), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4146), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3435), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(3439), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + 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, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [76722] = 11, - ACTIONS(1588), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [76233] = 10, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(5091), 1, + ACTIONS(5113), 1, anon_sym_STAR, - ACTIONS(5093), 1, - anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5099), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5416), 2, + ACTIONS(5383), 2, sym_number, sym_private_property_identifier, - STATE(3033), 3, + ACTIONS(5385), 2, + anon_sym_get, + anon_sym_set, + STATE(3868), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 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(3651), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -204281,29 +202115,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [76788] = 10, - ACTIONS(2291), 1, + [76297] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4515), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4517), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + 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_satisfies, + [76347] = 33, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4465), 1, + anon_sym_AMP_AMP, + ACTIONS(4467), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4469), 1, + anon_sym_GT_GT, + ACTIONS(4473), 1, + anon_sym_AMP, + ACTIONS(4475), 1, + anon_sym_CARET, + ACTIONS(4477), 1, + anon_sym_PIPE, + ACTIONS(4481), 1, + anon_sym_PERCENT, + ACTIONS(4483), 1, + anon_sym_STAR_STAR, + ACTIONS(4485), 1, + anon_sym_LT, + ACTIONS(4493), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(4499), 1, + sym__ternary_qmark, + ACTIONS(4911), 1, + anon_sym_COMMA, + ACTIONS(5387), 1, + anon_sym_RPAREN, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(3558), 1, + aux_sym_sequence_expression_repeat1, + STATE(5072), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4457), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4463), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4471), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4479), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4489), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4491), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4487), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [76457] = 10, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(5244), 1, + ACTIONS(5389), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5418), 2, + ACTIONS(5391), 2, sym_number, sym_private_property_identifier, - ACTIONS(5420), 2, + ACTIONS(5393), 2, anon_sym_get, anon_sym_set, - STATE(3850), 3, + STATE(3813), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -204313,7 +202271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2323), 21, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -204335,234 +202293,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [76852] = 7, - ACTIONS(4121), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4123), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4715), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4712), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(3448), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3452), 22, - sym__ternary_qmark, - anon_sym_as, + [76521] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - 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_satisfies, - [76910] = 33, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4461), 1, + ACTIONS(4499), 1, sym__ternary_qmark, - ACTIONS(4822), 1, + ACTIONS(4911), 1, anon_sym_COMMA, - ACTIONS(5422), 1, + ACTIONS(5395), 1, anon_sym_RPAREN, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(3625), 1, + STATE(3558), 1, aux_sym_sequence_expression_repeat1, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [77020] = 33, - ACTIONS(3959), 1, + [76631] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4461), 1, + ACTIONS(4499), 1, sym__ternary_qmark, - ACTIONS(4822), 1, + ACTIONS(4911), 1, anon_sym_COMMA, - ACTIONS(5424), 1, + ACTIONS(5397), 1, anon_sym_RPAREN, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(3625), 1, + STATE(3558), 1, aux_sym_sequence_expression_repeat1, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [77130] = 10, - ACTIONS(2291), 1, + [76741] = 10, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(5252), 1, + ACTIONS(5399), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5426), 2, + ACTIONS(5401), 2, sym_number, sym_private_property_identifier, - ACTIONS(5428), 2, + ACTIONS(5403), 2, anon_sym_get, anon_sym_set, - STATE(3875), 3, + STATE(3869), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -204572,7 +202479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2323), 21, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -204594,106 +202501,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [77194] = 33, - ACTIONS(3959), 1, + [76805] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4461), 1, + ACTIONS(4499), 1, sym__ternary_qmark, - ACTIONS(4822), 1, + ACTIONS(4911), 1, anon_sym_COMMA, - ACTIONS(5430), 1, + ACTIONS(5405), 1, anon_sym_RPAREN, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(3625), 1, + STATE(3558), 1, aux_sym_sequence_expression_repeat1, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [77304] = 10, - ACTIONS(2291), 1, + [76915] = 10, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5407), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5434), 2, + ACTIONS(5409), 2, sym_number, sym_private_property_identifier, - ACTIONS(5436), 2, + ACTIONS(5411), 2, anon_sym_get, anon_sym_set, - STATE(3880), 3, + STATE(3908), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -204703,7 +202610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2323), 21, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -204725,194 +202632,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [77368] = 33, - ACTIONS(3959), 1, + [76979] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4644), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4646), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3961), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(3963), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, anon_sym_QMARK_DOT, - ACTIONS(4427), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - ACTIONS(4822), 1, - anon_sym_COMMA, - ACTIONS(5438), 1, - anon_sym_RPAREN, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(3625), 1, - aux_sym_sequence_expression_repeat1, - STATE(5091), 1, - sym_optional_chain, + [77029] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4650), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [77478] = 33, - ACTIONS(1939), 1, + ACTIONS(4652), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - ACTIONS(3959), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3961), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(3963), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, anon_sym_QMARK_DOT, - ACTIONS(4427), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - ACTIONS(5440), 1, - anon_sym_RPAREN, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(4912), 1, - aux_sym_array_repeat1, - STATE(5091), 1, - sym_optional_chain, + [77079] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4704), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4706), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + 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, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [77588] = 9, - ACTIONS(3450), 1, - anon_sym_EQ, - ACTIONS(3596), 1, - anon_sym_COLON, - ACTIONS(4123), 1, - anon_sym_extends, - ACTIONS(4712), 1, - anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [77129] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4715), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5442), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3448), 11, + ACTIONS(4082), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 22, + ACTIONS(4084), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -204932,31 +202820,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77650] = 11, - ACTIONS(1588), 1, + [77179] = 10, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(5091), 1, + ACTIONS(5082), 1, anon_sym_STAR, - ACTIONS(5093), 1, - anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5099), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5446), 2, + ACTIONS(5413), 2, sym_number, sym_private_property_identifier, - STATE(3040), 3, + ACTIONS(5415), 2, + anon_sym_get, + anon_sym_set, + STATE(3864), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -204966,11 +202852,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3651), 20, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -204987,39 +202874,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [77716] = 10, - ACTIONS(2291), 1, + [77243] = 10, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(5105), 1, - anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5448), 2, + ACTIONS(4002), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4738), 2, sym_number, sym_private_property_identifier, - ACTIONS(5450), 2, - anon_sym_get, - anon_sym_set, - STATE(3839), 3, + STATE(3890), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 7, 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(2323), 21, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -205029,6 +202914,8 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -205041,31 +202928,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [77780] = 11, - ACTIONS(1588), 1, + [77307] = 11, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(5105), 1, + ACTIONS(5113), 1, anon_sym_STAR, - ACTIONS(5107), 1, + ACTIONS(5115), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5109), 2, + ACTIONS(5117), 2, sym_number, sym_private_property_identifier, - ACTIONS(5113), 2, + ACTIONS(5121), 2, anon_sym_get, anon_sym_set, - STATE(3093), 3, + STATE(3075), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -205075,7 +202962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3651), 20, + ACTIONS(3646), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -205096,420 +202983,420 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [77846] = 31, - ACTIONS(3959), 1, + [77373] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(5456), 1, + ACTIONS(5421), 1, anon_sym_AMP_AMP, - ACTIONS(5458), 1, + ACTIONS(5423), 1, anon_sym_PIPE_PIPE, - ACTIONS(5460), 1, + ACTIONS(5425), 1, anon_sym_GT_GT, - ACTIONS(5464), 1, + ACTIONS(5429), 1, anon_sym_AMP, - ACTIONS(5466), 1, + ACTIONS(5431), 1, anon_sym_CARET, - ACTIONS(5468), 1, + ACTIONS(5433), 1, anon_sym_PIPE, - ACTIONS(5472), 1, + ACTIONS(5437), 1, anon_sym_PERCENT, - ACTIONS(5474), 1, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5476), 1, + ACTIONS(5441), 1, anon_sym_LT, - ACTIONS(5484), 1, + ACTIONS(5449), 1, anon_sym_QMARK_QMARK, - ACTIONS(5486), 1, + ACTIONS(5451), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5454), 2, + ACTIONS(5419), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5462), 2, + ACTIONS(5427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5470), 2, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5480), 2, + ACTIONS(5445), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5482), 2, + ACTIONS(5447), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4548), 3, + ACTIONS(4455), 3, anon_sym_RBRACE, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(5478), 3, + ACTIONS(5443), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [77952] = 31, - ACTIONS(3959), 1, + [77479] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(5456), 1, + ACTIONS(5421), 1, anon_sym_AMP_AMP, - ACTIONS(5458), 1, + ACTIONS(5423), 1, anon_sym_PIPE_PIPE, - ACTIONS(5460), 1, + ACTIONS(5425), 1, anon_sym_GT_GT, - ACTIONS(5464), 1, + ACTIONS(5429), 1, anon_sym_AMP, - ACTIONS(5466), 1, + ACTIONS(5431), 1, anon_sym_CARET, - ACTIONS(5468), 1, + ACTIONS(5433), 1, anon_sym_PIPE, - ACTIONS(5472), 1, + ACTIONS(5437), 1, anon_sym_PERCENT, - ACTIONS(5474), 1, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5476), 1, + ACTIONS(5441), 1, anon_sym_LT, - ACTIONS(5484), 1, + ACTIONS(5449), 1, anon_sym_QMARK_QMARK, - ACTIONS(5486), 1, + ACTIONS(5451), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5454), 2, + ACTIONS(5419), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5462), 2, + ACTIONS(5427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5470), 2, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5480), 2, + ACTIONS(5445), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5482), 2, + ACTIONS(5447), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4734), 3, + ACTIONS(4501), 3, anon_sym_RBRACE, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(5478), 3, + ACTIONS(5443), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [78058] = 31, - ACTIONS(3959), 1, + [77585] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(5456), 1, + ACTIONS(5421), 1, anon_sym_AMP_AMP, - ACTIONS(5458), 1, + ACTIONS(5423), 1, anon_sym_PIPE_PIPE, - ACTIONS(5460), 1, + ACTIONS(5425), 1, anon_sym_GT_GT, - ACTIONS(5464), 1, + ACTIONS(5429), 1, anon_sym_AMP, - ACTIONS(5466), 1, + ACTIONS(5431), 1, anon_sym_CARET, - ACTIONS(5468), 1, + ACTIONS(5433), 1, anon_sym_PIPE, - ACTIONS(5472), 1, + ACTIONS(5437), 1, anon_sym_PERCENT, - ACTIONS(5474), 1, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5476), 1, + ACTIONS(5441), 1, anon_sym_LT, - ACTIONS(5484), 1, + ACTIONS(5449), 1, anon_sym_QMARK_QMARK, - ACTIONS(5486), 1, + ACTIONS(5451), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5454), 2, + ACTIONS(5419), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5462), 2, + ACTIONS(5427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5470), 2, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5480), 2, + ACTIONS(5445), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5482), 2, + ACTIONS(5447), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4708), 3, + ACTIONS(4519), 3, anon_sym_RBRACE, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(5478), 3, + ACTIONS(5443), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [78164] = 31, - ACTIONS(3959), 1, + [77691] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(5456), 1, + ACTIONS(5421), 1, anon_sym_AMP_AMP, - ACTIONS(5458), 1, + ACTIONS(5423), 1, anon_sym_PIPE_PIPE, - ACTIONS(5460), 1, + ACTIONS(5425), 1, anon_sym_GT_GT, - ACTIONS(5464), 1, + ACTIONS(5429), 1, anon_sym_AMP, - ACTIONS(5466), 1, + ACTIONS(5431), 1, anon_sym_CARET, - ACTIONS(5468), 1, + ACTIONS(5433), 1, anon_sym_PIPE, - ACTIONS(5472), 1, + ACTIONS(5437), 1, anon_sym_PERCENT, - ACTIONS(5474), 1, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5476), 1, + ACTIONS(5441), 1, anon_sym_LT, - ACTIONS(5484), 1, + ACTIONS(5449), 1, anon_sym_QMARK_QMARK, - ACTIONS(5486), 1, + ACTIONS(5451), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5454), 2, + ACTIONS(5419), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5462), 2, + ACTIONS(5427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5470), 2, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5480), 2, + ACTIONS(5445), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5482), 2, + ACTIONS(5447), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4710), 3, + ACTIONS(4577), 3, anon_sym_RBRACE, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(5478), 3, + ACTIONS(5443), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [78270] = 31, - ACTIONS(3959), 1, + [77797] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(5456), 1, + ACTIONS(5421), 1, anon_sym_AMP_AMP, - ACTIONS(5458), 1, + ACTIONS(5423), 1, anon_sym_PIPE_PIPE, - ACTIONS(5460), 1, + ACTIONS(5425), 1, anon_sym_GT_GT, - ACTIONS(5464), 1, + ACTIONS(5429), 1, anon_sym_AMP, - ACTIONS(5466), 1, + ACTIONS(5431), 1, anon_sym_CARET, - ACTIONS(5468), 1, + ACTIONS(5433), 1, anon_sym_PIPE, - ACTIONS(5472), 1, + ACTIONS(5437), 1, anon_sym_PERCENT, - ACTIONS(5474), 1, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5476), 1, + ACTIONS(5441), 1, anon_sym_LT, - ACTIONS(5484), 1, + ACTIONS(5449), 1, anon_sym_QMARK_QMARK, - ACTIONS(5486), 1, + ACTIONS(5451), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5454), 2, + ACTIONS(5419), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5462), 2, + ACTIONS(5427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5470), 2, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5480), 2, + ACTIONS(5445), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5482), 2, + ACTIONS(5447), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4610), 3, + ACTIONS(4581), 3, anon_sym_RBRACE, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(5478), 3, + ACTIONS(5443), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [78376] = 18, - ACTIONS(3959), 1, + [77903] = 18, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5460), 1, + ACTIONS(5425), 1, anon_sym_GT_GT, - ACTIONS(5472), 1, + ACTIONS(5437), 1, anon_sym_PERCENT, - ACTIONS(5474), 1, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5476), 1, + ACTIONS(5441), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5462), 2, + ACTIONS(5427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5470), 2, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4483), 7, + ACTIONS(4585), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -205517,7 +203404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 15, + ACTIONS(4583), 15, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -205533,32 +203420,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [78456] = 13, - ACTIONS(3959), 1, + [77983] = 13, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5474), 1, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5488), 1, + ACTIONS(5453), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4483), 12, + ACTIONS(4585), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -205571,7 +203458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 18, + ACTIONS(4583), 18, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -205590,66 +203477,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [78526] = 25, - ACTIONS(3959), 1, + [78053] = 25, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4483), 1, + ACTIONS(4585), 1, anon_sym_BANG, - ACTIONS(5460), 1, + ACTIONS(5425), 1, anon_sym_GT_GT, - ACTIONS(5464), 1, + ACTIONS(5429), 1, anon_sym_AMP, - ACTIONS(5466), 1, + ACTIONS(5431), 1, anon_sym_CARET, - ACTIONS(5468), 1, + ACTIONS(5433), 1, anon_sym_PIPE, - ACTIONS(5472), 1, + ACTIONS(5437), 1, anon_sym_PERCENT, - ACTIONS(5474), 1, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5476), 1, + ACTIONS(5441), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5454), 2, + ACTIONS(5419), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5462), 2, + ACTIONS(5427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5470), 2, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5480), 2, + ACTIONS(5445), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5482), 2, + ACTIONS(5447), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5478), 3, + ACTIONS(5443), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 9, + ACTIONS(4583), 9, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -205659,68 +203546,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [78620] = 26, - ACTIONS(3959), 1, + [78147] = 26, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4483), 1, + ACTIONS(4585), 1, anon_sym_BANG, - ACTIONS(5456), 1, + ACTIONS(5421), 1, anon_sym_AMP_AMP, - ACTIONS(5460), 1, + ACTIONS(5425), 1, anon_sym_GT_GT, - ACTIONS(5464), 1, + ACTIONS(5429), 1, anon_sym_AMP, - ACTIONS(5466), 1, + ACTIONS(5431), 1, anon_sym_CARET, - ACTIONS(5468), 1, + ACTIONS(5433), 1, anon_sym_PIPE, - ACTIONS(5472), 1, + ACTIONS(5437), 1, anon_sym_PERCENT, - ACTIONS(5474), 1, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5476), 1, + ACTIONS(5441), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5454), 2, + ACTIONS(5419), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5462), 2, + ACTIONS(5427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5470), 2, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5480), 2, + ACTIONS(5445), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5482), 2, + ACTIONS(5447), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5478), 3, + ACTIONS(5443), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 8, + ACTIONS(4583), 8, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -205729,40 +203616,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [78716] = 16, - ACTIONS(3959), 1, + [78243] = 16, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5472), 1, + ACTIONS(5437), 1, anon_sym_PERCENT, - ACTIONS(5474), 1, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5488), 1, + ACTIONS(5453), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5470), 2, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4483), 8, + ACTIONS(4585), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -205771,7 +203658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 17, + ACTIONS(4583), 17, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -205789,62 +203676,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [78792] = 22, - ACTIONS(3959), 1, + [78319] = 22, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5460), 1, + ACTIONS(5425), 1, anon_sym_GT_GT, - ACTIONS(5472), 1, + ACTIONS(5437), 1, anon_sym_PERCENT, - ACTIONS(5474), 1, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5476), 1, + ACTIONS(5441), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5454), 2, + ACTIONS(5419), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5462), 2, + ACTIONS(5427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5470), 2, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5480), 2, + ACTIONS(5445), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5482), 2, + ACTIONS(5447), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4483), 3, + ACTIONS(4585), 3, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5478), 3, + ACTIONS(5443), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 10, + ACTIONS(4583), 10, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -205855,63 +203742,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [78880] = 23, - ACTIONS(3959), 1, + [78407] = 23, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5460), 1, + ACTIONS(5425), 1, anon_sym_GT_GT, - ACTIONS(5464), 1, + ACTIONS(5429), 1, anon_sym_AMP, - ACTIONS(5472), 1, + ACTIONS(5437), 1, anon_sym_PERCENT, - ACTIONS(5474), 1, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5476), 1, + ACTIONS(5441), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4483), 2, + ACTIONS(4585), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(5452), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5454), 2, + ACTIONS(5419), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5462), 2, + ACTIONS(5427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5470), 2, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5480), 2, + ACTIONS(5445), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5482), 2, + ACTIONS(5447), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5478), 3, + ACTIONS(5443), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 10, + ACTIONS(4583), 10, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -205922,65 +203809,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [78970] = 24, - ACTIONS(3959), 1, + [78497] = 24, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5460), 1, + ACTIONS(5425), 1, anon_sym_GT_GT, - ACTIONS(5464), 1, + ACTIONS(5429), 1, anon_sym_AMP, - ACTIONS(5466), 1, + ACTIONS(5431), 1, anon_sym_CARET, - ACTIONS(5472), 1, + ACTIONS(5437), 1, anon_sym_PERCENT, - ACTIONS(5474), 1, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5476), 1, + ACTIONS(5441), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4483), 2, + ACTIONS(4585), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(5452), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5454), 2, + ACTIONS(5419), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5462), 2, + ACTIONS(5427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5470), 2, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5480), 2, + ACTIONS(5445), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5482), 2, + ACTIONS(5447), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5478), 3, + ACTIONS(5443), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 9, + ACTIONS(4583), 9, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -205990,37 +203877,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [79062] = 15, - ACTIONS(3959), 1, + [78589] = 15, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5472), 1, + ACTIONS(5437), 1, anon_sym_PERCENT, - ACTIONS(5474), 1, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5488), 1, + ACTIONS(5453), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4483), 10, + ACTIONS(4585), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -206031,7 +203918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 17, + ACTIONS(4583), 17, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -206049,38 +203936,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [79136] = 16, - ACTIONS(3959), 1, + [78663] = 16, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(5474), 1, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5488), 1, + ACTIONS(5453), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4483), 11, + ACTIONS(4585), 11, anon_sym_STAR, anon_sym_in, anon_sym_GT, @@ -206092,7 +203979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 16, + ACTIONS(4583), 16, sym__ternary_qmark, anon_sym_RBRACE, anon_sym_COLON, @@ -206109,58 +203996,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [79212] = 20, - ACTIONS(3959), 1, + [78739] = 20, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5460), 1, + ACTIONS(5425), 1, anon_sym_GT_GT, - ACTIONS(5472), 1, + ACTIONS(5437), 1, anon_sym_PERCENT, - ACTIONS(5474), 1, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5476), 1, + ACTIONS(5441), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5454), 2, + ACTIONS(5419), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5462), 2, + ACTIONS(5427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5470), 2, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5478), 3, + ACTIONS(5443), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4483), 5, + ACTIONS(4585), 5, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 12, + ACTIONS(4583), 12, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -206173,70 +204060,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [79296] = 27, - ACTIONS(3959), 1, + [78823] = 27, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4483), 1, + ACTIONS(4585), 1, anon_sym_BANG, - ACTIONS(5456), 1, + ACTIONS(5421), 1, anon_sym_AMP_AMP, - ACTIONS(5458), 1, + ACTIONS(5423), 1, anon_sym_PIPE_PIPE, - ACTIONS(5460), 1, + ACTIONS(5425), 1, anon_sym_GT_GT, - ACTIONS(5464), 1, + ACTIONS(5429), 1, anon_sym_AMP, - ACTIONS(5466), 1, + ACTIONS(5431), 1, anon_sym_CARET, - ACTIONS(5468), 1, + ACTIONS(5433), 1, anon_sym_PIPE, - ACTIONS(5472), 1, + ACTIONS(5437), 1, anon_sym_PERCENT, - ACTIONS(5474), 1, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5476), 1, + ACTIONS(5441), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5454), 2, + ACTIONS(5419), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5462), 2, + ACTIONS(5427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5470), 2, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5480), 2, + ACTIONS(5445), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5482), 2, + ACTIONS(5447), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5478), 3, + ACTIONS(5443), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 7, + ACTIONS(4583), 7, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -206244,833 +204131,644 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [79394] = 31, - ACTIONS(3959), 1, + [78921] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(5456), 1, + ACTIONS(5421), 1, anon_sym_AMP_AMP, - ACTIONS(5458), 1, + ACTIONS(5423), 1, anon_sym_PIPE_PIPE, - ACTIONS(5460), 1, + ACTIONS(5425), 1, anon_sym_GT_GT, - ACTIONS(5464), 1, + ACTIONS(5429), 1, anon_sym_AMP, - ACTIONS(5466), 1, + ACTIONS(5431), 1, anon_sym_CARET, - ACTIONS(5468), 1, + ACTIONS(5433), 1, anon_sym_PIPE, - ACTIONS(5472), 1, + ACTIONS(5437), 1, anon_sym_PERCENT, - ACTIONS(5474), 1, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5476), 1, + ACTIONS(5441), 1, anon_sym_LT, - ACTIONS(5484), 1, + ACTIONS(5449), 1, anon_sym_QMARK_QMARK, - ACTIONS(5486), 1, + ACTIONS(5451), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5454), 2, + ACTIONS(5419), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5462), 2, + ACTIONS(5427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5470), 2, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5480), 2, + ACTIONS(5445), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5482), 2, + ACTIONS(5447), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4655), 3, + ACTIONS(4642), 3, anon_sym_RBRACE, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(5478), 3, + ACTIONS(5443), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [79500] = 31, - ACTIONS(3959), 1, + [79027] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(5456), 1, + ACTIONS(5421), 1, anon_sym_AMP_AMP, - ACTIONS(5458), 1, + ACTIONS(5423), 1, anon_sym_PIPE_PIPE, - ACTIONS(5460), 1, + ACTIONS(5425), 1, anon_sym_GT_GT, - ACTIONS(5464), 1, + ACTIONS(5429), 1, anon_sym_AMP, - ACTIONS(5466), 1, + ACTIONS(5431), 1, anon_sym_CARET, - ACTIONS(5468), 1, + ACTIONS(5433), 1, anon_sym_PIPE, - ACTIONS(5472), 1, + ACTIONS(5437), 1, anon_sym_PERCENT, - ACTIONS(5474), 1, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5476), 1, + ACTIONS(5441), 1, anon_sym_LT, - ACTIONS(5484), 1, + ACTIONS(5449), 1, anon_sym_QMARK_QMARK, - ACTIONS(5486), 1, + ACTIONS(5451), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5454), 2, + ACTIONS(5419), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5462), 2, + ACTIONS(5427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5470), 2, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5480), 2, + ACTIONS(5445), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5482), 2, + ACTIONS(5447), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4419), 3, + ACTIONS(4648), 3, anon_sym_RBRACE, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(5478), 3, + ACTIONS(5443), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [79606] = 31, - ACTIONS(3959), 1, + [79133] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(5456), 1, + ACTIONS(5421), 1, anon_sym_AMP_AMP, - ACTIONS(5458), 1, + ACTIONS(5423), 1, anon_sym_PIPE_PIPE, - ACTIONS(5460), 1, + ACTIONS(5425), 1, anon_sym_GT_GT, - ACTIONS(5464), 1, + ACTIONS(5429), 1, anon_sym_AMP, - ACTIONS(5466), 1, + ACTIONS(5431), 1, anon_sym_CARET, - ACTIONS(5468), 1, + ACTIONS(5433), 1, anon_sym_PIPE, - ACTIONS(5472), 1, + ACTIONS(5437), 1, anon_sym_PERCENT, - ACTIONS(5474), 1, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5476), 1, + ACTIONS(5441), 1, anon_sym_LT, - ACTIONS(5484), 1, + ACTIONS(5449), 1, anon_sym_QMARK_QMARK, - ACTIONS(5486), 1, + ACTIONS(5451), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5454), 2, + ACTIONS(5419), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5462), 2, + ACTIONS(5427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5470), 2, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5480), 2, + ACTIONS(5445), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5482), 2, + ACTIONS(5447), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4584), 3, + ACTIONS(4716), 3, anon_sym_RBRACE, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(5478), 3, + ACTIONS(5443), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [79712] = 31, - ACTIONS(3959), 1, + [79239] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(5456), 1, + ACTIONS(5421), 1, anon_sym_AMP_AMP, - ACTIONS(5458), 1, + ACTIONS(5423), 1, anon_sym_PIPE_PIPE, - ACTIONS(5460), 1, + ACTIONS(5425), 1, anon_sym_GT_GT, - ACTIONS(5464), 1, + ACTIONS(5429), 1, anon_sym_AMP, - ACTIONS(5466), 1, + ACTIONS(5431), 1, anon_sym_CARET, - ACTIONS(5468), 1, + ACTIONS(5433), 1, anon_sym_PIPE, - ACTIONS(5472), 1, + ACTIONS(5437), 1, anon_sym_PERCENT, - ACTIONS(5474), 1, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5476), 1, + ACTIONS(5441), 1, anon_sym_LT, - ACTIONS(5484), 1, + ACTIONS(5449), 1, anon_sym_QMARK_QMARK, - ACTIONS(5486), 1, + ACTIONS(5451), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5454), 2, + ACTIONS(5419), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5462), 2, + ACTIONS(5427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5470), 2, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5480), 2, + ACTIONS(5445), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5482), 2, + ACTIONS(5447), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4489), 3, + ACTIONS(4728), 3, anon_sym_RBRACE, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(5478), 3, + ACTIONS(5443), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [79818] = 31, - ACTIONS(3959), 1, + [79345] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(5456), 1, + ACTIONS(5421), 1, anon_sym_AMP_AMP, - ACTIONS(5458), 1, + ACTIONS(5423), 1, anon_sym_PIPE_PIPE, - ACTIONS(5460), 1, + ACTIONS(5425), 1, anon_sym_GT_GT, - ACTIONS(5464), 1, + ACTIONS(5429), 1, anon_sym_AMP, - ACTIONS(5466), 1, + ACTIONS(5431), 1, anon_sym_CARET, - ACTIONS(5468), 1, + ACTIONS(5433), 1, anon_sym_PIPE, - ACTIONS(5472), 1, + ACTIONS(5437), 1, anon_sym_PERCENT, - ACTIONS(5474), 1, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5476), 1, + ACTIONS(5441), 1, anon_sym_LT, - ACTIONS(5484), 1, + ACTIONS(5449), 1, anon_sym_QMARK_QMARK, - ACTIONS(5486), 1, + ACTIONS(5451), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5454), 2, + ACTIONS(5419), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5462), 2, + ACTIONS(5427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5470), 2, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5480), 2, + ACTIONS(5445), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5482), 2, + ACTIONS(5447), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4493), 3, + ACTIONS(4732), 3, anon_sym_RBRACE, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(5478), 3, + ACTIONS(5443), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [79924] = 31, - ACTIONS(3959), 1, + [79451] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(5456), 1, + ACTIONS(5421), 1, anon_sym_AMP_AMP, - ACTIONS(5458), 1, + ACTIONS(5423), 1, anon_sym_PIPE_PIPE, - ACTIONS(5460), 1, + ACTIONS(5425), 1, anon_sym_GT_GT, - ACTIONS(5464), 1, + ACTIONS(5429), 1, anon_sym_AMP, - ACTIONS(5466), 1, + ACTIONS(5431), 1, anon_sym_CARET, - ACTIONS(5468), 1, + ACTIONS(5433), 1, anon_sym_PIPE, - ACTIONS(5472), 1, + ACTIONS(5437), 1, anon_sym_PERCENT, - ACTIONS(5474), 1, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5476), 1, + ACTIONS(5441), 1, anon_sym_LT, - ACTIONS(5484), 1, + ACTIONS(5449), 1, anon_sym_QMARK_QMARK, - ACTIONS(5486), 1, + ACTIONS(5451), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5454), 2, + ACTIONS(5419), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5462), 2, + ACTIONS(5427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5470), 2, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5480), 2, + ACTIONS(5445), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5482), 2, + ACTIONS(5447), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4536), 3, + ACTIONS(4503), 3, anon_sym_RBRACE, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(5478), 3, + ACTIONS(5443), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [80030] = 31, - ACTIONS(3959), 1, + [79557] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(5456), 1, + ACTIONS(5421), 1, anon_sym_AMP_AMP, - ACTIONS(5458), 1, + ACTIONS(5423), 1, anon_sym_PIPE_PIPE, - ACTIONS(5460), 1, + ACTIONS(5425), 1, anon_sym_GT_GT, - ACTIONS(5464), 1, + ACTIONS(5429), 1, anon_sym_AMP, - ACTIONS(5466), 1, + ACTIONS(5431), 1, anon_sym_CARET, - ACTIONS(5468), 1, + ACTIONS(5433), 1, anon_sym_PIPE, - ACTIONS(5472), 1, + ACTIONS(5437), 1, anon_sym_PERCENT, - ACTIONS(5474), 1, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5476), 1, + ACTIONS(5441), 1, anon_sym_LT, - ACTIONS(5484), 1, + ACTIONS(5449), 1, anon_sym_QMARK_QMARK, - ACTIONS(5486), 1, + ACTIONS(5451), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5454), 2, + ACTIONS(5419), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5462), 2, + ACTIONS(5427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5470), 2, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5480), 2, + ACTIONS(5445), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5482), 2, + ACTIONS(5447), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4538), 3, + ACTIONS(4505), 3, anon_sym_RBRACE, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(5478), 3, + ACTIONS(5443), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [80136] = 31, - ACTIONS(3959), 1, + [79663] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(5456), 1, + ACTIONS(5421), 1, anon_sym_AMP_AMP, - ACTIONS(5458), 1, + ACTIONS(5423), 1, anon_sym_PIPE_PIPE, - ACTIONS(5460), 1, + ACTIONS(5425), 1, anon_sym_GT_GT, - ACTIONS(5464), 1, + ACTIONS(5429), 1, anon_sym_AMP, - ACTIONS(5466), 1, + ACTIONS(5431), 1, anon_sym_CARET, - ACTIONS(5468), 1, + ACTIONS(5433), 1, anon_sym_PIPE, - ACTIONS(5472), 1, + ACTIONS(5437), 1, anon_sym_PERCENT, - ACTIONS(5474), 1, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5476), 1, + ACTIONS(5441), 1, anon_sym_LT, - ACTIONS(5484), 1, + ACTIONS(5449), 1, anon_sym_QMARK_QMARK, - ACTIONS(5486), 1, + ACTIONS(5451), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5454), 2, + ACTIONS(5419), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5462), 2, + ACTIONS(5427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5470), 2, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5480), 2, + ACTIONS(5445), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5482), 2, + ACTIONS(5447), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4544), 3, + ACTIONS(4734), 3, anon_sym_RBRACE, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(5478), 3, + ACTIONS(5443), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [80242] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4647), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4649), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + [79769] = 15, + ACTIONS(237), 1, anon_sym_COMMA, + ACTIONS(722), 1, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - 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_satisfies, - [80292] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1757), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1761), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1763), 23, - sym__ternary_qmark, - anon_sym_as, - 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_satisfies, - [80344] = 8, - ACTIONS(3484), 1, - anon_sym_EQ, - ACTIONS(3596), 1, - anon_sym_COLON, - ACTIONS(4712), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4715), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4123), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3448), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3452), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - 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_satisfies, - [80404] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4524), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4526), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - 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_satisfies, - [80454] = 12, - ACTIONS(169), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1510), 1, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1512), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(3243), 1, - anon_sym_LBRACE, - ACTIONS(3891), 1, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(4736), 1, anon_sym_LBRACK, + ACTIONS(4965), 1, + anon_sym_STAR, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5079), 2, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - ACTIONS(5493), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(5287), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5780), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(5975), 3, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3887), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(5491), 23, + ACTIONS(3758), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -207080,8 +204778,6 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -207094,217 +204790,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [80522] = 12, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(5495), 1, - anon_sym_LT, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4736), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4738), 19, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_BQUOTE, - anon_sym_satisfies, - [80590] = 15, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, + [79843] = 10, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5498), 1, - anon_sym_LT, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4616), 11, + ACTIONS(5191), 1, anon_sym_STAR, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4618), 17, - sym__ternary_qmark, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_BQUOTE, - [80664] = 31, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5456), 1, - anon_sym_AMP_AMP, - ACTIONS(5458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5460), 1, - anon_sym_GT_GT, - ACTIONS(5464), 1, - anon_sym_AMP, - ACTIONS(5466), 1, - anon_sym_CARET, - ACTIONS(5468), 1, - anon_sym_PIPE, - ACTIONS(5472), 1, - anon_sym_PERCENT, - ACTIONS(5474), 1, - anon_sym_STAR_STAR, - ACTIONS(5476), 1, - anon_sym_LT, - ACTIONS(5484), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5486), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5452), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5454), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5462), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5470), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5480), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5482), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4651), 3, + ACTIONS(5456), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5458), 2, + anon_sym_get, + anon_sym_set, + STATE(3911), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 9, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(5478), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [80770] = 11, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(5501), 1, - anon_sym_LT, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [79907] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4695), 12, + ACTIONS(4722), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -207315,13 +204859,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4697), 21, + ACTIONS(4724), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -207339,11 +204891,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80836] = 3, + [79957] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4463), 13, + ACTIONS(3435), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -207357,7 +204909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4465), 28, + ACTIONS(3439), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -207386,11 +204938,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80886] = 3, + [80007] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 13, + ACTIONS(1799), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -207404,7 +204956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4497), 28, + ACTIONS(1801), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -207433,11 +204985,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80936] = 3, + [80057] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4718), 13, + ACTIONS(1817), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -207451,7 +205003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4720), 28, + ACTIONS(1819), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -207480,17 +205032,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80986] = 4, + [80107] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1767), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1771), 13, + ACTIONS(1827), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -207504,10 +205050,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1773), 23, + ACTIONS(1829), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -207528,39 +205079,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81038] = 8, - ACTIONS(3518), 1, - anon_sym_EQ, - ACTIONS(4121), 1, - anon_sym_QMARK, - ACTIONS(4712), 1, - anon_sym_LBRACK, + [80157] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4715), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4123), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3448), 11, + ACTIONS(1853), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 22, + ACTIONS(1855), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -207580,18 +205126,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81098] = 5, - ACTIONS(5504), 1, - sym__automatic_semicolon, + [80207] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1799), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1803), 13, + ACTIONS(1863), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -207605,10 +205144,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1805), 23, + ACTIONS(1865), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -207629,225 +205173,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81152] = 10, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(4785), 1, + [80257] = 33, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(5506), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5508), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5510), 2, - anon_sym_get, - anon_sym_set, - STATE(3772), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2323), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [81216] = 10, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, + ACTIONS(4465), 1, + anon_sym_AMP_AMP, + ACTIONS(4467), 1, + anon_sym_PIPE_PIPE, ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4003), 2, + anon_sym_GT_GT, + ACTIONS(4473), 1, + anon_sym_AMP, + ACTIONS(4475), 1, + anon_sym_CARET, + ACTIONS(4477), 1, + anon_sym_PIPE, + ACTIONS(4481), 1, + anon_sym_PERCENT, + ACTIONS(4483), 1, + anon_sym_STAR_STAR, + ACTIONS(4485), 1, + anon_sym_LT, + ACTIONS(4493), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(4499), 1, + sym__ternary_qmark, + ACTIONS(4911), 1, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4787), 2, - sym_number, - sym_private_property_identifier, - STATE(3784), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, + ACTIONS(5460), 1, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2323), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [81280] = 3, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(3558), 1, + aux_sym_sequence_expression_repeat1, + STATE(5072), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1917), 13, + ACTIONS(4457), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4471), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1919), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - 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, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [81330] = 15, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(702), 1, - anon_sym_RBRACE, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4988), 1, - anon_sym_STAR, - STATE(4673), 1, - aux_sym_object_repeat1, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2301), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2329), 2, - anon_sym_get, - anon_sym_set, - STATE(3922), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 4, + ACTIONS(4487), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [80367] = 12, + ACTIONS(3938), 1, anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(5462), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2323), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [81404] = 3, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4550), 13, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4674), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -207858,21 +205284,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4552), 28, - sym__automatic_semicolon, + ACTIONS(4676), 19, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - 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, @@ -207886,158 +205304,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81454] = 16, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(702), 1, - anon_sym_RBRACE, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(2325), 1, - anon_sym_async, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4988), 1, - anon_sym_STAR, - STATE(4673), 1, - aux_sym_object_repeat1, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2301), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2329), 2, - anon_sym_get, - anon_sym_set, - STATE(3922), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 4, + [80435] = 15, + ACTIONS(3938), 1, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2323), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [81530] = 11, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(5124), 1, - anon_sym_STAR, - ACTIONS(5126), 1, - anon_sym_async, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5128), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5132), 2, - anon_sym_get, - anon_sym_set, - STATE(3047), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 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(3651), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [81596] = 7, - ACTIONS(3460), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(3464), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(5465), 1, + anon_sym_LT, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3458), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3454), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3448), 11, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4697), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 22, + ACTIONS(4699), 17, sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -208052,116 +205364,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - [81654] = 10, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(4785), 1, + [80509] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(4795), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5512), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5514), 2, - anon_sym_get, - anon_sym_set, - STATE(3823), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(5421), 1, + anon_sym_AMP_AMP, + ACTIONS(5423), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5425), 1, + anon_sym_GT_GT, + ACTIONS(5429), 1, + anon_sym_AMP, + ACTIONS(5431), 1, + anon_sym_CARET, + ACTIONS(5433), 1, + anon_sym_PIPE, + ACTIONS(5437), 1, + anon_sym_PERCENT, + ACTIONS(5439), 1, + anon_sym_STAR_STAR, + ACTIONS(5441), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2323), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [81718] = 3, + ACTIONS(5449), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5451), 1, + sym__ternary_qmark, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4499), 13, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5417), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5419), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5427), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5445), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4501), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - 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, + ACTIONS(5447), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4708), 3, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_BQUOTE, - anon_sym_satisfies, - [81768] = 3, + ACTIONS(5443), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [80615] = 11, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(5468), 1, + anon_sym_LT, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1751), 13, + ACTIONS(4414), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -208172,21 +205471,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1753), 28, - sym__automatic_semicolon, + ACTIONS(4416), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - 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, @@ -208204,105 +205495,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81818] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1781), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1783), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + [80681] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(3940), 1, anon_sym_LBRACK, + ACTIONS(3942), 1, anon_sym_DOT, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4465), 1, anon_sym_AMP_AMP, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4469), 1, + anon_sym_GT_GT, + ACTIONS(4473), 1, + anon_sym_AMP, + ACTIONS(4475), 1, anon_sym_CARET, + ACTIONS(4477), 1, + anon_sym_PIPE, + ACTIONS(4481), 1, anon_sym_PERCENT, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4485), 1, + anon_sym_LT, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4497), 1, anon_sym_satisfies, - [81868] = 3, + ACTIONS(4499), 1, + sym__ternary_qmark, + ACTIONS(4911), 1, + anon_sym_COMMA, + ACTIONS(5471), 1, + anon_sym_RPAREN, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(3558), 1, + aux_sym_sequence_expression_repeat1, + STATE(5072), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1791), 13, + ACTIONS(4457), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4471), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1793), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - 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, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [81918] = 3, + ACTIONS(4487), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [80791] = 4, + ACTIONS(3503), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1835), 13, + ACTIONS(3435), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -208316,7 +205592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1837), 28, + ACTIONS(3439), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -208324,7 +205600,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -208345,11 +205620,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81968] = 3, + [80843] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1845), 13, + ACTIONS(5106), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5108), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3435), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -208363,15 +205645,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 28, - sym__automatic_semicolon, + ACTIONS(3439), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -208392,88 +205669,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82018] = 33, - ACTIONS(3959), 1, + [80897] = 16, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(722), 1, + anon_sym_RBRACE, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(4736), 1, + anon_sym_LBRACK, + ACTIONS(4965), 1, + anon_sym_STAR, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3887), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [80973] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4461), 1, + ACTIONS(4499), 1, sym__ternary_qmark, - ACTIONS(4822), 1, + ACTIONS(4911), 1, anon_sym_COMMA, - ACTIONS(5516), 1, + ACTIONS(5473), 1, anon_sym_RPAREN, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(3625), 1, + STATE(3558), 1, aux_sym_sequence_expression_repeat1, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [82128] = 3, + [81083] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4594), 13, + ACTIONS(4658), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -208487,7 +205824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4596), 28, + ACTIONS(4660), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -208516,172 +205853,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82178] = 33, - ACTIONS(3959), 1, + [81133] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - ACTIONS(4822), 1, - anon_sym_COMMA, - ACTIONS(5518), 1, - anon_sym_RPAREN, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(3625), 1, - aux_sym_sequence_expression_repeat1, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [82288] = 33, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4461), 1, + ACTIONS(4499), 1, sym__ternary_qmark, - ACTIONS(4822), 1, + ACTIONS(4911), 1, anon_sym_COMMA, - ACTIONS(5520), 1, + ACTIONS(5475), 1, anon_sym_RPAREN, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(3625), 1, + STATE(3558), 1, aux_sym_sequence_expression_repeat1, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [82398] = 5, + [81243] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5522), 2, + ACTIONS(5477), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5524), 3, + ACTIONS(5479), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(3448), 13, + ACTIONS(3435), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -208695,7 +205955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 23, + ACTIONS(3439), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -208719,29 +205979,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82452] = 10, - ACTIONS(2291), 1, + [81297] = 10, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(5526), 1, + ACTIONS(5481), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5528), 2, + ACTIONS(5483), 2, sym_number, sym_private_property_identifier, - ACTIONS(5530), 2, + ACTIONS(5485), 2, anon_sym_get, anon_sym_set, - STATE(3840), 3, + STATE(3902), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -208751,7 +206011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2323), 21, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -208773,36 +206033,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [82516] = 5, + [81361] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4117), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4119), 4, - anon_sym_RBRACE, + ACTIONS(5487), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5489), 3, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3448), 11, + anon_sym_COLON, + ACTIONS(3435), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 24, + ACTIONS(3439), 23, sym__ternary_qmark, 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, @@ -208822,171 +206082,264 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82570] = 7, - ACTIONS(4125), 1, - anon_sym_QMARK, + [81415] = 11, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 1, + anon_sym_SQUOTE, + ACTIONS(4431), 1, + anon_sym_LBRACK, + ACTIONS(5481), 1, + anon_sym_STAR, + ACTIONS(5491), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4127), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4746), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4743), 3, + ACTIONS(5493), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5495), 2, + anon_sym_get, + anon_sym_set, + STATE(3020), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 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(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [81481] = 11, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 1, + anon_sym_SQUOTE, + ACTIONS(4431), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(4702), 11, + ACTIONS(5326), 1, anon_sym_STAR, + ACTIONS(5497), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5499), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5501), 2, + anon_sym_get, + anon_sym_set, + STATE(3040), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4704), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - 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_satisfies, - [82628] = 31, - ACTIONS(3959), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [81547] = 11, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 1, + anon_sym_SQUOTE, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(5326), 1, + anon_sym_STAR, + ACTIONS(5497), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5501), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5503), 2, + sym_number, + sym_private_property_identifier, + STATE(3011), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [81613] = 11, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 1, + anon_sym_SQUOTE, + ACTIONS(4431), 1, + anon_sym_LBRACK, + ACTIONS(5326), 1, + anon_sym_STAR, + ACTIONS(5497), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5002), 3, + ACTIONS(5501), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5505), 2, + sym_number, + sym_private_property_identifier, + STATE(3005), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 9, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - [82734] = 11, - ACTIONS(1588), 1, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [81679] = 10, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(5526), 1, + ACTIONS(5507), 1, anon_sym_STAR, - ACTIONS(5532), 1, - anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5534), 2, + ACTIONS(5509), 2, sym_number, sym_private_property_identifier, - ACTIONS(5536), 2, + ACTIONS(5511), 2, anon_sym_get, anon_sym_set, - STATE(3027), 3, + STATE(3826), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 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(3651), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -209003,41 +206356,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [82800] = 11, - ACTIONS(1588), 1, + [81743] = 11, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(5506), 1, + ACTIONS(5507), 1, anon_sym_STAR, - ACTIONS(5538), 1, + ACTIONS(5513), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5540), 2, + ACTIONS(5515), 2, sym_number, sym_private_property_identifier, - ACTIONS(5542), 2, + ACTIONS(5517), 2, anon_sym_get, anon_sym_set, - STATE(3020), 3, + STATE(3044), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 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(3651), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(3646), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -209058,249 +206411,296 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [82866] = 33, - ACTIONS(3959), 1, + [81809] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4461), 1, + ACTIONS(4499), 1, sym__ternary_qmark, - ACTIONS(4822), 1, + ACTIONS(4911), 1, anon_sym_COMMA, - ACTIONS(5544), 1, + ACTIONS(5519), 1, anon_sym_SEMI, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(3625), 1, + STATE(3558), 1, aux_sym_sequence_expression_repeat1, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [82976] = 33, - ACTIONS(3959), 1, + [81919] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4461), 1, + ACTIONS(4499), 1, sym__ternary_qmark, - ACTIONS(4822), 1, + ACTIONS(4911), 1, anon_sym_COMMA, - ACTIONS(5546), 1, + ACTIONS(5521), 1, anon_sym_SEMI, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(3625), 1, + STATE(3558), 1, aux_sym_sequence_expression_repeat1, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(4487), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [82029] = 5, + ACTIONS(1821), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1813), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1817), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1819), 25, + sym__ternary_qmark, + 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, - [83086] = 33, - ACTIONS(1939), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [82083] = 33, + ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(3959), 1, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4461), 1, + ACTIONS(4499), 1, sym__ternary_qmark, - ACTIONS(5548), 1, + ACTIONS(5523), 1, anon_sym_RBRACK, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, - STATE(5153), 1, + STATE(5161), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [83196] = 5, + [82193] = 5, + ACTIONS(1831), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5019), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5066), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3448), 13, + ACTIONS(1823), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1827), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -209314,10 +206714,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 23, + ACTIONS(1829), 25, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -209338,17 +206740,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83250] = 4, + [82247] = 11, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 1, + anon_sym_SQUOTE, + ACTIONS(4431), 1, + anon_sym_LBRACK, + ACTIONS(5399), 1, + anon_sym_STAR, + ACTIONS(5525), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1859), 5, + ACTIONS(5527), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5529), 2, + anon_sym_get, + anon_sym_set, + STATE(3048), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 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(1863), 13, + ACTIONS(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [82313] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4445), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -209362,10 +206813,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1865), 23, + ACTIONS(4447), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -209386,17 +206842,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83302] = 4, + [82363] = 21, + ACTIONS(231), 1, + anon_sym_STAR, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(1932), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4736), 1, + anon_sym_LBRACK, + ACTIONS(5533), 1, + anon_sym_COMMA, + ACTIONS(5535), 1, + anon_sym_RBRACE, + ACTIONS(5537), 1, + anon_sym_async, + ACTIONS(5541), 1, + anon_sym_static, + ACTIONS(5543), 1, + anon_sym_readonly, + ACTIONS(5549), 1, + anon_sym_override, + STATE(2732), 1, + sym_accessibility_modifier, + STATE(2743), 1, + sym_override_modifier, + STATE(5101), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1747), 5, - sym__automatic_semicolon, + ACTIONS(5539), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5545), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5547), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3663), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5100), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(5531), 14, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [82449] = 15, + ACTIONS(237), 1, anon_sym_COMMA, + ACTIONS(697), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1751), 13, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(4736), 1, + anon_sym_LBRACK, + ACTIONS(4965), 1, + anon_sym_STAR, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3887), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [82523] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4666), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -209410,10 +206984,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1753), 23, + ACTIONS(4668), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -209434,18 +207013,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83354] = 5, - ACTIONS(5550), 1, - sym__automatic_semicolon, + [82573] = 16, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(697), 1, + anon_sym_RBRACE, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(4736), 1, + anon_sym_LBRACK, + ACTIONS(4965), 1, + anon_sym_STAR, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1777), 4, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3887), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [82649] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1751), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - ACTIONS(1781), 13, + ACTIONS(1755), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -209459,7 +207097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1783), 23, + ACTIONS(1757), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -209483,18 +207121,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83408] = 5, - ACTIONS(5552), 1, - sym__automatic_semicolon, + [82701] = 31, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, + anon_sym_LBRACK, + ACTIONS(4539), 1, + anon_sym_DOT, + ACTIONS(4826), 1, + anon_sym_GT_GT, + ACTIONS(4832), 1, + anon_sym_PERCENT, + ACTIONS(4834), 1, + anon_sym_STAR_STAR, + ACTIONS(4836), 1, + anon_sym_LT, + ACTIONS(4842), 1, + anon_sym_as, + ACTIONS(4844), 1, + anon_sym_BANG, + ACTIONS(4849), 1, + anon_sym_satisfies, + ACTIONS(4853), 1, + anon_sym_AMP_AMP, + ACTIONS(4855), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4857), 1, + anon_sym_AMP, + ACTIONS(4859), 1, + anon_sym_CARET, + ACTIONS(4861), 1, + anon_sym_PIPE, + ACTIONS(4869), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4871), 1, + sym__ternary_qmark, + STATE(1976), 1, + sym_type_arguments, + STATE(2240), 1, + sym_arguments, + STATE(4753), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1787), 4, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4824), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4828), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4830), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4851), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4865), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4867), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4863), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5012), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1791), 13, + [82807] = 5, + ACTIONS(1857), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1849), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1853), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -209508,10 +207219,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1793), 23, + ACTIONS(1855), 25, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -209532,91 +207245,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83462] = 31, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, + [82861] = 7, + ACTIONS(4144), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4146), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4609), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4606), 3, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, + anon_sym_RBRACK, + ACTIONS(3435), 11, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(4839), 1, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3439), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(4841), 1, anon_sym_PIPE_PIPE, - ACTIONS(4843), 1, - anon_sym_GT_GT, - ACTIONS(4847), 1, - anon_sym_AMP, - ACTIONS(4849), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4851), 1, - anon_sym_PIPE, - ACTIONS(4855), 1, anon_sym_PERCENT, - ACTIONS(4857), 1, anon_sym_STAR_STAR, - ACTIONS(4859), 1, - anon_sym_LT, - ACTIONS(4867), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4869), 1, - sym__ternary_qmark, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [82919] = 5, + ACTIONS(1867), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4835), 2, + ACTIONS(1859), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1863), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4837), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4845), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4853), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4863), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4865), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4791), 3, - sym__automatic_semicolon, + ACTIONS(1865), 25, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, - ACTIONS(4861), 3, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [83568] = 5, - ACTIONS(1765), 1, - sym__automatic_semicolon, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [82973] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1757), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1761), 13, + ACTIONS(4082), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -209630,12 +207363,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1763), 25, + ACTIONS(4084), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -209656,17 +207392,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83622] = 4, + [83023] = 10, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4736), 1, + anon_sym_LBRACK, + ACTIONS(5551), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1831), 5, + ACTIONS(5553), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5555), 2, + anon_sym_get, + anon_sym_set, + STATE(3816), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 9, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1835), 13, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [83087] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4449), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -209680,10 +207464,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1837), 23, + ACTIONS(4451), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -209704,35 +207493,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83674] = 4, + [83137] = 7, + ACTIONS(3550), 1, + anon_sym_EQ, + ACTIONS(4146), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1841), 5, - sym__automatic_semicolon, + ACTIONS(4606), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1845), 13, + anon_sym_LBRACK, + ACTIONS(4609), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3435), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 23, + ACTIONS(3439), 24, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -209752,18 +207543,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83726] = 5, - ACTIONS(5554), 1, - sym__automatic_semicolon, + anon_sym_implements, + [83195] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1877), 4, + ACTIONS(1703), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - ACTIONS(1881), 13, + ACTIONS(1707), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -209777,7 +207568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1883), 23, + ACTIONS(1709), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -209801,17 +207592,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83780] = 4, + [83247] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1887), 5, + ACTIONS(1741), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - ACTIONS(1891), 13, + ACTIONS(1745), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -209825,7 +207616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1893), 23, + ACTIONS(1747), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -209849,36 +207640,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83832] = 5, - ACTIONS(1775), 1, - sym__automatic_semicolon, + [83299] = 8, + ACTIONS(3523), 1, + anon_sym_EQ, + ACTIONS(4144), 1, + anon_sym_QMARK, + ACTIONS(4606), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1767), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1771), 13, + ACTIONS(4609), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4146), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3435), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1773), 25, + ACTIONS(3439), 22, sym__ternary_qmark, 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, @@ -209898,169 +207692,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83886] = 33, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - ACTIONS(4822), 1, - anon_sym_COMMA, - ACTIONS(5556), 1, - anon_sym_RPAREN, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(3625), 1, - aux_sym_sequence_expression_repeat1, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [83996] = 11, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(5506), 1, - anon_sym_STAR, - ACTIONS(5538), 1, - anon_sym_async, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5542), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5558), 2, - sym_number, - sym_private_property_identifier, - STATE(3028), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 9, + [83359] = 5, + ACTIONS(5557), 1, 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(3651), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [84062] = 7, - ACTIONS(3592), 1, - anon_sym_EQ, - ACTIONS(4123), 1, - anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4712), 2, + ACTIONS(1761), 4, anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4715), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3448), 10, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1765), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 24, + ACTIONS(1767), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -210080,425 +207741,191 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [84120] = 33, - ACTIONS(3959), 1, + [83413] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4461), 1, + ACTIONS(4499), 1, sym__ternary_qmark, - ACTIONS(4822), 1, + ACTIONS(4911), 1, anon_sym_COMMA, - ACTIONS(5560), 1, - anon_sym_RBRACK, - STATE(1603), 1, + ACTIONS(5559), 1, + anon_sym_SEMI, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(3625), 1, + STATE(3558), 1, aux_sym_sequence_expression_repeat1, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [84230] = 15, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4988), 1, - anon_sym_STAR, - ACTIONS(5015), 1, - anon_sym_RBRACE, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, + [83523] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2301), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2329), 2, - anon_sym_get, - anon_sym_set, - STATE(3922), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 4, - anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(1755), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2323), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [84304] = 33, - ACTIONS(3959), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1757), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3961), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(3963), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, anon_sym_QMARK_DOT, - ACTIONS(4427), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - ACTIONS(4822), 1, - anon_sym_COMMA, - ACTIONS(5562), 1, - anon_sym_SEMI, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(3625), 1, - aux_sym_sequence_expression_repeat1, - STATE(5091), 1, - sym_optional_chain, + [83573] = 7, + ACTIONS(3447), 1, + anon_sym_DOT, + ACTIONS(3451), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(3445), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3441), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3435), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [84414] = 16, - ACTIONS(241), 1, + ACTIONS(3439), 22, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(2325), 1, - anon_sym_async, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4988), 1, - anon_sym_STAR, - ACTIONS(5015), 1, - anon_sym_RBRACE, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2301), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2329), 2, - anon_sym_get, - anon_sym_set, - STATE(3922), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 4, anon_sym_LPAREN, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2323), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [84490] = 21, - ACTIONS(235), 1, - anon_sym_STAR, - ACTIONS(1943), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(5566), 1, - anon_sym_COMMA, - ACTIONS(5568), 1, - anon_sym_RBRACE, - ACTIONS(5570), 1, - anon_sym_async, - ACTIONS(5574), 1, - anon_sym_static, - ACTIONS(5576), 1, - anon_sym_readonly, - ACTIONS(5582), 1, - anon_sym_override, - STATE(2724), 1, - sym_accessibility_modifier, - STATE(2755), 1, - sym_override_modifier, - STATE(5113), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5572), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5578), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5580), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3640), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5105), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(5564), 14, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [84576] = 31, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, - anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(4839), 1, anon_sym_AMP_AMP, - ACTIONS(4841), 1, anon_sym_PIPE_PIPE, - ACTIONS(4843), 1, - anon_sym_GT_GT, - ACTIONS(4847), 1, - anon_sym_AMP, - ACTIONS(4849), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4851), 1, - anon_sym_PIPE, - ACTIONS(4855), 1, anon_sym_PERCENT, - ACTIONS(4857), 1, anon_sym_STAR_STAR, - ACTIONS(4859), 1, - anon_sym_LT, - ACTIONS(4867), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4869), 1, - sym__ternary_qmark, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4835), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4837), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4845), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4853), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4863), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4865), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4861), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(5002), 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [83631] = 5, + ACTIONS(1759), 1, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [84682] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4728), 13, + ACTIONS(1751), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1755), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -210512,15 +207939,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4730), 28, - sym__automatic_semicolon, + ACTIONS(1757), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -210541,37 +207965,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [84732] = 4, - ACTIONS(5323), 1, - sym_regex_flags, + [83685] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4873), 17, + ACTIONS(4134), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4132), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3435), 11, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_of, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_satisfies, - ACTIONS(4875), 23, - sym__automatic_semicolon, + ACTIONS(3439), 24, sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -210586,39 +208009,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [84784] = 5, - ACTIONS(1785), 1, - sym__automatic_semicolon, + anon_sym_satisfies, + [83739] = 7, + ACTIONS(4184), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1777), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1781), 13, + ACTIONS(4186), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4532), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4529), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(4423), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1783), 25, + ACTIONS(4425), 22, sym__ternary_qmark, 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, @@ -210638,22 +208065,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [84838] = 7, - ACTIONS(3561), 1, + [83797] = 7, + ACTIONS(3558), 1, anon_sym_EQ, - ACTIONS(4712), 1, + ACTIONS(4606), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 2, + ACTIONS(4146), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(4715), 3, + ACTIONS(4609), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3448), 10, + ACTIONS(3435), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -210664,7 +208091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 24, + ACTIONS(3439), 24, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -210689,140 +208116,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [84896] = 11, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(5506), 1, - anon_sym_STAR, - ACTIONS(5538), 1, - anon_sym_async, + [83855] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5542), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5584), 2, - sym_number, - sym_private_property_identifier, - STATE(3043), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(4602), 13, + anon_sym_STAR, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3651), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [84962] = 10, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(5586), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5588), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5590), 2, - anon_sym_get, - anon_sym_set, - STATE(3894), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 9, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4604), 28, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, 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(2323), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [85026] = 11, - ACTIONS(1588), 1, + anon_sym_of, + 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_satisfies, + [83905] = 11, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(5586), 1, + ACTIONS(5389), 1, anon_sym_STAR, - ACTIONS(5592), 1, + ACTIONS(5561), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5594), 2, + ACTIONS(5563), 2, sym_number, sym_private_property_identifier, - ACTIONS(5596), 2, + ACTIONS(5565), 2, anon_sym_get, anon_sym_set, - STATE(3076), 3, + STATE(3110), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -210832,7 +208197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3651), 20, + ACTIONS(3646), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -210853,321 +208218,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [85092] = 33, - ACTIONS(3959), 1, + [83971] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4461), 1, + ACTIONS(4499), 1, sym__ternary_qmark, - ACTIONS(4822), 1, - anon_sym_COMMA, - ACTIONS(5598), 1, - anon_sym_RPAREN, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(3625), 1, - aux_sym_sequence_expression_repeat1, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [85202] = 33, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - ACTIONS(4822), 1, + ACTIONS(5567), 3, anon_sym_COMMA, - ACTIONS(5600), 1, anon_sym_RPAREN, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(3625), 1, - aux_sym_sequence_expression_repeat1, - STATE(5091), 1, - sym_optional_chain, + anon_sym_RBRACK, + [84077] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4525), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [85312] = 33, - ACTIONS(3959), 1, + ACTIONS(4527), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3961), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(3963), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, anon_sym_QMARK_DOT, - ACTIONS(4427), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - ACTIONS(4822), 1, - anon_sym_COMMA, - ACTIONS(5602), 1, - anon_sym_RPAREN, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(3625), 1, - aux_sym_sequence_expression_repeat1, - STATE(5091), 1, - sym_optional_chain, + [84127] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(1717), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [85422] = 33, - ACTIONS(3959), 1, + ACTIONS(1719), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3961), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(3963), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, anon_sym_QMARK_DOT, - ACTIONS(4427), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - ACTIONS(4822), 1, - anon_sym_COMMA, - ACTIONS(5604), 1, - anon_sym_RPAREN, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(3625), 1, - aux_sym_sequence_expression_repeat1, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [85532] = 4, - ACTIONS(3508), 1, - anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [84177] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3448), 13, + ACTIONS(1731), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -211181,11 +208405,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 27, + ACTIONS(1733), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, @@ -211209,1657 +208434,1528 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [85584] = 33, - ACTIONS(3959), 1, + [84227] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - ACTIONS(4822), 1, - anon_sym_COMMA, - ACTIONS(5606), 1, - anon_sym_SEMI, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(3625), 1, - aux_sym_sequence_expression_repeat1, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [85694] = 33, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4461), 1, + ACTIONS(4499), 1, sym__ternary_qmark, - ACTIONS(4822), 1, + ACTIONS(4911), 1, anon_sym_COMMA, - ACTIONS(5608), 1, - anon_sym_SEMI, - STATE(1603), 1, + ACTIONS(5569), 1, + anon_sym_RPAREN, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(3625), 1, + STATE(3558), 1, aux_sym_sequence_expression_repeat1, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [85804] = 33, - ACTIONS(3959), 1, + [84337] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4461), 1, + ACTIONS(4499), 1, sym__ternary_qmark, - ACTIONS(4822), 1, + ACTIONS(4911), 1, anon_sym_COMMA, - ACTIONS(5610), 1, - anon_sym_SEMI, - STATE(1603), 1, + ACTIONS(5571), 1, + anon_sym_RPAREN, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(3625), 1, + STATE(3558), 1, aux_sym_sequence_expression_repeat1, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [85914] = 7, - ACTIONS(3583), 1, - anon_sym_EQ, - ACTIONS(4712), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4123), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4715), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3448), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3452), 24, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - 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, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4487), 3, anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [85972] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4369), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4371), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + [84447] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(3940), 1, anon_sym_LBRACK, + ACTIONS(3942), 1, anon_sym_DOT, + ACTIONS(4418), 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_satisfies, - [86022] = 33, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, + ACTIONS(4459), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4429), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(4435), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(4437), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(4439), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4443), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4445), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4447), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4461), 1, + ACTIONS(4499), 1, sym__ternary_qmark, - ACTIONS(4822), 1, + ACTIONS(4911), 1, anon_sym_COMMA, - ACTIONS(5612), 1, + ACTIONS(5573), 1, anon_sym_SEMI, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(3625), 1, + STATE(3558), 1, aux_sym_sequence_expression_repeat1, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4423), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4433), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4441), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4451), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4453), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4449), 3, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [86132] = 5, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5019), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5021), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3448), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3452), 23, - sym__ternary_qmark, - anon_sym_as, + [84557] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, + ACTIONS(3940), 1, anon_sym_LBRACK, + ACTIONS(3942), 1, anon_sym_DOT, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4465), 1, anon_sym_AMP_AMP, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4469), 1, + anon_sym_GT_GT, + ACTIONS(4473), 1, + anon_sym_AMP, + ACTIONS(4475), 1, anon_sym_CARET, + ACTIONS(4477), 1, + anon_sym_PIPE, + ACTIONS(4481), 1, anon_sym_PERCENT, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4485), 1, + anon_sym_LT, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4497), 1, anon_sym_satisfies, - [86186] = 10, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(5040), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5614), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5616), 2, - anon_sym_get, - anon_sym_set, - STATE(3926), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 9, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4499), 1, + sym__ternary_qmark, + ACTIONS(4911), 1, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2323), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [86250] = 6, - ACTIONS(4659), 1, - anon_sym_EQ, - ACTIONS(4889), 1, - anon_sym_COLON, + ACTIONS(5575), 1, + anon_sym_RPAREN, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(3558), 1, + aux_sym_sequence_expression_repeat1, + STATE(5072), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4756), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(4657), 13, + ACTIONS(4457), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4471), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4661), 23, - sym__ternary_qmark, - anon_sym_as, - 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, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [86305] = 22, - ACTIONS(3959), 1, + ACTIONS(4487), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [84667] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5622), 1, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4465), 1, + anon_sym_AMP_AMP, + ACTIONS(4467), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(5628), 1, + ACTIONS(4473), 1, + anon_sym_AMP, + ACTIONS(4475), 1, + anon_sym_CARET, + ACTIONS(4477), 1, + anon_sym_PIPE, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(5630), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(5632), 1, + ACTIONS(4485), 1, anon_sym_LT, - STATE(1603), 1, + ACTIONS(4493), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(4499), 1, + sym__ternary_qmark, + ACTIONS(4911), 1, + anon_sym_COMMA, + ACTIONS(5577), 1, + anon_sym_RPAREN, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(3558), 1, + aux_sym_sequence_expression_repeat1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5618), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5620), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5624), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5626), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5636), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5638), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4483), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5634), 3, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 9, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [86392] = 23, - ACTIONS(3959), 1, + [84777] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5622), 1, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4465), 1, + anon_sym_AMP_AMP, + ACTIONS(4467), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(5628), 1, + ACTIONS(4473), 1, + anon_sym_AMP, + ACTIONS(4475), 1, + anon_sym_CARET, + ACTIONS(4477), 1, + anon_sym_PIPE, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(5630), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(5632), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(5640), 1, - anon_sym_AMP, - STATE(1603), 1, + ACTIONS(4493), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(4499), 1, + sym__ternary_qmark, + ACTIONS(4911), 1, + anon_sym_COMMA, + ACTIONS(5579), 1, + anon_sym_RPAREN, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(3558), 1, + aux_sym_sequence_expression_repeat1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4483), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5618), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5620), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5624), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5626), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5636), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5638), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5634), 3, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 9, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [86481] = 24, - ACTIONS(3959), 1, + [84887] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5622), 1, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4465), 1, + anon_sym_AMP_AMP, + ACTIONS(4467), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(5628), 1, + ACTIONS(4473), 1, + anon_sym_AMP, + ACTIONS(4475), 1, + anon_sym_CARET, + ACTIONS(4477), 1, + anon_sym_PIPE, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(5630), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(5632), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(5640), 1, - anon_sym_AMP, - ACTIONS(5642), 1, - anon_sym_CARET, - STATE(1603), 1, + ACTIONS(4493), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(4499), 1, + sym__ternary_qmark, + ACTIONS(4911), 1, + anon_sym_COMMA, + ACTIONS(5581), 1, + anon_sym_RPAREN, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(3558), 1, + aux_sym_sequence_expression_repeat1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4483), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5618), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5620), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5624), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5626), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5636), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5638), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5634), 3, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 8, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [86572] = 15, - ACTIONS(3959), 1, + [84997] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5628), 1, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4465), 1, + anon_sym_AMP_AMP, + ACTIONS(4467), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4469), 1, + anon_sym_GT_GT, + ACTIONS(4473), 1, + anon_sym_AMP, + ACTIONS(4475), 1, + anon_sym_CARET, + ACTIONS(4477), 1, + anon_sym_PIPE, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(5630), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(5644), 1, + ACTIONS(4485), 1, anon_sym_LT, - STATE(1603), 1, + ACTIONS(4493), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(4499), 1, + sym__ternary_qmark, + ACTIONS(4911), 1, + anon_sym_COMMA, + ACTIONS(5583), 1, + anon_sym_RPAREN, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(3558), 1, + aux_sym_sequence_expression_repeat1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5618), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4483), 10, - anon_sym_BANG, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4471), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4487), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - anon_sym_satisfies, - [86645] = 16, - ACTIONS(3959), 1, + [85107] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5630), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4465), 1, + anon_sym_AMP_AMP, + ACTIONS(4467), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4469), 1, + anon_sym_GT_GT, + ACTIONS(4473), 1, + anon_sym_AMP, + ACTIONS(4475), 1, + anon_sym_CARET, + ACTIONS(4477), 1, + anon_sym_PIPE, + ACTIONS(4481), 1, + anon_sym_PERCENT, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(5644), 1, + ACTIONS(4485), 1, anon_sym_LT, - STATE(1603), 1, + ACTIONS(4493), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(4499), 1, + sym__ternary_qmark, + ACTIONS(4911), 1, + anon_sym_COMMA, + ACTIONS(5585), 1, + anon_sym_RPAREN, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(3558), 1, + aux_sym_sequence_expression_repeat1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4483), 11, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4471), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 15, - sym__ternary_qmark, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4487), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - [86720] = 20, - ACTIONS(3959), 1, + [85217] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5622), 1, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4465), 1, + anon_sym_AMP_AMP, + ACTIONS(4467), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(5628), 1, + ACTIONS(4473), 1, + anon_sym_AMP, + ACTIONS(4475), 1, + anon_sym_CARET, + ACTIONS(4477), 1, + anon_sym_PIPE, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(5630), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(5632), 1, + ACTIONS(4485), 1, anon_sym_LT, - STATE(1603), 1, + ACTIONS(4493), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(4499), 1, + sym__ternary_qmark, + ACTIONS(4911), 1, + anon_sym_COMMA, + ACTIONS(5587), 1, + anon_sym_RPAREN, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(3558), 1, + aux_sym_sequence_expression_repeat1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5618), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5620), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5624), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5626), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5634), 3, + ACTIONS(4489), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4491), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4483), 5, + [85327] = 4, + ACTIONS(3511), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3435), 13, + anon_sym_STAR, anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 11, + ACTIONS(3439), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [86803] = 27, - ACTIONS(3959), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3961), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(3963), 1, anon_sym_DOT, - ACTIONS(4425), 1, anon_sym_QMARK_DOT, - ACTIONS(4483), 1, - anon_sym_BANG, - ACTIONS(5622), 1, - anon_sym_GT_GT, - ACTIONS(5628), 1, - anon_sym_PERCENT, - ACTIONS(5630), 1, - anon_sym_STAR_STAR, - ACTIONS(5632), 1, - anon_sym_LT, - ACTIONS(5640), 1, - anon_sym_AMP, - ACTIONS(5642), 1, - anon_sym_CARET, - ACTIONS(5647), 1, anon_sym_AMP_AMP, - ACTIONS(5649), 1, anon_sym_PIPE_PIPE, - ACTIONS(5651), 1, - anon_sym_PIPE, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5618), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5620), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5624), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5626), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5636), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5638), 2, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5634), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4481), 6, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACK, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [86900] = 31, - ACTIONS(3959), 1, + [85379] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5622), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4465), 1, + anon_sym_AMP_AMP, + ACTIONS(4467), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(5628), 1, - anon_sym_PERCENT, - ACTIONS(5630), 1, - anon_sym_STAR_STAR, - ACTIONS(5632), 1, - anon_sym_LT, - ACTIONS(5640), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(5642), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(5647), 1, - anon_sym_AMP_AMP, - ACTIONS(5649), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5651), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(5653), 1, + ACTIONS(4481), 1, + anon_sym_PERCENT, + ACTIONS(4483), 1, + anon_sym_STAR_STAR, + ACTIONS(4485), 1, + anon_sym_LT, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(5655), 1, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(4499), 1, sym__ternary_qmark, - STATE(1603), 1, + ACTIONS(4911), 1, + anon_sym_COMMA, + ACTIONS(5589), 1, + anon_sym_SEMI, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(3558), 1, + aux_sym_sequence_expression_repeat1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4655), 2, - anon_sym_RBRACK, - anon_sym_BQUOTE, - ACTIONS(5618), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5620), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5624), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5626), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5636), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5638), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5634), 3, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [87005] = 31, - ACTIONS(3959), 1, + [85489] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5622), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4465), 1, + anon_sym_AMP_AMP, + ACTIONS(4467), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(5628), 1, - anon_sym_PERCENT, - ACTIONS(5630), 1, - anon_sym_STAR_STAR, - ACTIONS(5632), 1, - anon_sym_LT, - ACTIONS(5640), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(5642), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(5647), 1, - anon_sym_AMP_AMP, - ACTIONS(5649), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5651), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(5653), 1, + ACTIONS(4481), 1, + anon_sym_PERCENT, + ACTIONS(4483), 1, + anon_sym_STAR_STAR, + ACTIONS(4485), 1, + anon_sym_LT, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(5655), 1, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(4499), 1, sym__ternary_qmark, - STATE(1603), 1, + ACTIONS(4911), 1, + anon_sym_COMMA, + ACTIONS(5591), 1, + anon_sym_SEMI, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(3558), 1, + aux_sym_sequence_expression_repeat1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4419), 2, - anon_sym_RBRACK, - anon_sym_BQUOTE, ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5618), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5620), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5624), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5626), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5636), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5638), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5634), 3, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [87110] = 31, - ACTIONS(3959), 1, + [85599] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5622), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4465), 1, + anon_sym_AMP_AMP, + ACTIONS(4467), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(5628), 1, - anon_sym_PERCENT, - ACTIONS(5630), 1, - anon_sym_STAR_STAR, - ACTIONS(5632), 1, - anon_sym_LT, - ACTIONS(5640), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(5642), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(5647), 1, - anon_sym_AMP_AMP, - ACTIONS(5649), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5651), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(5653), 1, + ACTIONS(4481), 1, + anon_sym_PERCENT, + ACTIONS(4483), 1, + anon_sym_STAR_STAR, + ACTIONS(4485), 1, + anon_sym_LT, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(5655), 1, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(4499), 1, sym__ternary_qmark, - STATE(1603), 1, + ACTIONS(4911), 1, + anon_sym_COMMA, + ACTIONS(5593), 1, + anon_sym_SEMI, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(3558), 1, + aux_sym_sequence_expression_repeat1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4584), 2, - anon_sym_RBRACK, - anon_sym_BQUOTE, - ACTIONS(5618), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5620), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5624), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5626), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5636), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5638), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5634), 3, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [87215] = 31, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5622), 1, - anon_sym_GT_GT, - ACTIONS(5628), 1, - anon_sym_PERCENT, - ACTIONS(5630), 1, - anon_sym_STAR_STAR, - ACTIONS(5632), 1, - anon_sym_LT, - ACTIONS(5640), 1, - anon_sym_AMP, - ACTIONS(5642), 1, - anon_sym_CARET, - ACTIONS(5647), 1, - anon_sym_AMP_AMP, - ACTIONS(5649), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5651), 1, - anon_sym_PIPE, - ACTIONS(5653), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5655), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + [85709] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4489), 2, - anon_sym_RBRACK, - anon_sym_BQUOTE, - ACTIONS(5618), 2, + ACTIONS(1689), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1693), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5620), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5624), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5626), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5636), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5638), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5634), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [87320] = 31, - ACTIONS(3959), 1, + ACTIONS(1695), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3961), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5622), 1, - anon_sym_GT_GT, - ACTIONS(5628), 1, - anon_sym_PERCENT, - ACTIONS(5630), 1, - anon_sym_STAR_STAR, - ACTIONS(5632), 1, - anon_sym_LT, - ACTIONS(5640), 1, - anon_sym_AMP, - ACTIONS(5642), 1, - anon_sym_CARET, - ACTIONS(5647), 1, anon_sym_AMP_AMP, - ACTIONS(5649), 1, anon_sym_PIPE_PIPE, - ACTIONS(5651), 1, - anon_sym_PIPE, - ACTIONS(5653), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5655), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4457), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4493), 2, - anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(5618), 2, + anon_sym_satisfies, + [85761] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1795), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1799), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5620), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5624), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5626), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5636), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5638), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5634), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [87425] = 31, - ACTIONS(3959), 1, + ACTIONS(1801), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3961), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5622), 1, - anon_sym_GT_GT, - ACTIONS(5628), 1, - anon_sym_PERCENT, - ACTIONS(5630), 1, - anon_sym_STAR_STAR, - ACTIONS(5632), 1, - anon_sym_LT, - ACTIONS(5640), 1, - anon_sym_AMP, - ACTIONS(5642), 1, - anon_sym_CARET, - ACTIONS(5647), 1, anon_sym_AMP_AMP, - ACTIONS(5649), 1, anon_sym_PIPE_PIPE, - ACTIONS(5651), 1, - anon_sym_PIPE, - ACTIONS(5653), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5655), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4457), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4536), 2, - anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(5618), 2, + anon_sym_satisfies, + [85813] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5595), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5597), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3435), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5620), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5624), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5626), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5636), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5638), 2, + ACTIONS(3439), 23, + sym__ternary_qmark, + anon_sym_as, + 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, - ACTIONS(5634), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [87530] = 31, - ACTIONS(3959), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [85867] = 10, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4736), 1, + anon_sym_LBRACK, + ACTIONS(5599), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5601), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5603), 2, + anon_sym_get, + anon_sym_set, + STATE(3785), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 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(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [85931] = 31, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4417), 1, + ACTIONS(4842), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4844), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4849), 1, anon_sym_satisfies, - ACTIONS(5622), 1, + ACTIONS(5261), 1, + anon_sym_AMP_AMP, + ACTIONS(5263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5265), 1, anon_sym_GT_GT, - ACTIONS(5628), 1, - anon_sym_PERCENT, - ACTIONS(5630), 1, - anon_sym_STAR_STAR, - ACTIONS(5632), 1, - anon_sym_LT, - ACTIONS(5640), 1, + ACTIONS(5269), 1, anon_sym_AMP, - ACTIONS(5642), 1, + ACTIONS(5271), 1, anon_sym_CARET, - ACTIONS(5647), 1, - anon_sym_AMP_AMP, - ACTIONS(5649), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5651), 1, + ACTIONS(5273), 1, anon_sym_PIPE, - ACTIONS(5653), 1, + ACTIONS(5277), 1, + anon_sym_PERCENT, + ACTIONS(5279), 1, + anon_sym_STAR_STAR, + ACTIONS(5281), 1, + anon_sym_LT, + ACTIONS(5289), 1, anon_sym_QMARK_QMARK, - ACTIONS(5655), 1, + ACTIONS(5291), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1976), 1, sym_type_arguments, - STATE(1650), 1, + STATE(2240), 1, sym_arguments, - STATE(5091), 1, + STATE(4753), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4538), 2, - anon_sym_RBRACK, - anon_sym_BQUOTE, - ACTIONS(5618), 2, + ACTIONS(5257), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5620), 2, + ACTIONS(5259), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5624), 2, + ACTIONS(5267), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5626), 2, + ACTIONS(5275), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5636), 2, + ACTIONS(5285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5638), 2, + ACTIONS(5287), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5634), 3, + ACTIONS(4708), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_BQUOTE, + ACTIONS(5283), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [87635] = 31, - ACTIONS(3959), 1, + [86037] = 4, + ACTIONS(3550), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3435), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3439), 26, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3961), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5622), 1, - anon_sym_GT_GT, - ACTIONS(5628), 1, - anon_sym_PERCENT, - ACTIONS(5630), 1, - anon_sym_STAR_STAR, - ACTIONS(5632), 1, - anon_sym_LT, - ACTIONS(5640), 1, - anon_sym_AMP, - ACTIONS(5642), 1, - anon_sym_CARET, - ACTIONS(5647), 1, anon_sym_AMP_AMP, - ACTIONS(5649), 1, anon_sym_PIPE_PIPE, - ACTIONS(5651), 1, - anon_sym_PIPE, - ACTIONS(5653), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5655), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [86088] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1942), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3758), 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(1940), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [86139] = 13, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(722), 1, + anon_sym_RBRACE, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(4736), 1, + anon_sym_LBRACK, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4544), 2, - anon_sym_RBRACK, - anon_sym_BQUOTE, - ACTIONS(5618), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5620), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5624), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5626), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5636), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5638), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5634), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [87740] = 17, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(2325), 1, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + STATE(3887), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, anon_sym_async, - ACTIONS(2327), 1, + anon_sym_new, + sym_identifier, + anon_sym_static, anon_sym_readonly, - ACTIONS(2331), 1, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, anon_sym_override, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4988), 1, - anon_sym_STAR, - ACTIONS(5566), 1, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [86208] = 13, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(5657), 1, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(4736), 1, + anon_sym_LBRACK, + ACTIONS(5023), 1, anon_sym_RBRACE, - STATE(2768), 1, - sym_override_modifier, - STATE(5157), 1, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2301), 2, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - ACTIONS(2329), 2, - anon_sym_get, - anon_sym_set, - STATE(3922), 3, + STATE(3887), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 4, + ACTIONS(3758), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2323), 18, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -212867,24 +209963,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [87817] = 7, - ACTIONS(3460), 1, - anon_sym_DOT, - ACTIONS(3464), 1, - anon_sym_QMARK_DOT, + [86277] = 7, + ACTIONS(4022), 1, + anon_sym_QMARK, + ACTIONS(4024), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3458), 3, + ACTIONS(4621), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(3454), 4, + ACTIONS(4618), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3448), 11, + ACTIONS(3435), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -212896,10 +209990,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 20, + ACTIONS(3439), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -212917,86 +210013,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [87874] = 4, + [86334] = 8, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 1, + anon_sym_SQUOTE, + ACTIONS(4431), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1901), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1905), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1907), 25, + ACTIONS(4923), 2, + sym_number, + sym_private_property_identifier, + STATE(3437), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 9, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_BANG, 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_satisfies, - [87925] = 13, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(702), 1, - anon_sym_RBRACE, - ACTIONS(2291), 1, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3646), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [86393] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - STATE(4673), 1, - aux_sym_object_repeat1, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2301), 2, + ACTIONS(5605), 2, sym_number, sym_private_property_identifier, - STATE(3922), 3, + STATE(3775), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 4, + ACTIONS(3758), 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(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -213020,105 +210115,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [87994] = 32, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, + [86452] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5413), 2, + sym_number, + sym_private_property_identifier, + STATE(3864), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(5270), 1, - anon_sym_AMP_AMP, - ACTIONS(5272), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5274), 1, - anon_sym_GT_GT, - ACTIONS(5278), 1, - anon_sym_AMP, - ACTIONS(5280), 1, - anon_sym_CARET, - ACTIONS(5282), 1, - anon_sym_PIPE, - ACTIONS(5286), 1, - anon_sym_PERCENT, - ACTIONS(5288), 1, - anon_sym_STAR_STAR, - ACTIONS(5290), 1, - anon_sym_LT, - ACTIONS(5298), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5300), 1, - sym__ternary_qmark, - ACTIONS(5659), 1, + anon_sym_LPAREN, anon_sym_SEMI, - ACTIONS(5661), 1, - sym__automatic_semicolon, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [86511] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4736), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5266), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5268), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5276), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5284), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5294), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5296), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5292), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [88101] = 12, - ACTIONS(3959), 1, + ACTIONS(5209), 2, + sym_number, + sym_private_property_identifier, + STATE(3838), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(5663), 1, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [86570] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4736), 12, + ACTIONS(4138), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4082), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -213129,71 +210235,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4738), 18, + ACTIONS(4084), 25, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_BQUOTE, - anon_sym_satisfies, - [88168] = 15, - ACTIONS(3959), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3963), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5666), 1, - anon_sym_LT, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4616), 11, - anon_sym_STAR, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4618), 16, - sym__ternary_qmark, - anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -213207,35 +210260,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [88241] = 8, - ACTIONS(2291), 1, + anon_sym_satisfies, + [86621] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5669), 2, + ACTIONS(5213), 2, sym_number, sym_private_property_identifier, - STATE(3876), 3, + STATE(3827), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 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(2323), 23, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -213259,104 +210315,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [88300] = 31, - ACTIONS(3959), 1, + [86680] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4088), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4082), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4084), 25, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3961), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3963), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5622), 1, - anon_sym_GT_GT, - ACTIONS(5628), 1, - anon_sym_PERCENT, - ACTIONS(5630), 1, - anon_sym_STAR_STAR, - ACTIONS(5632), 1, - anon_sym_LT, - ACTIONS(5640), 1, - anon_sym_AMP, - ACTIONS(5642), 1, - anon_sym_CARET, - ACTIONS(5647), 1, anon_sym_AMP_AMP, - ACTIONS(5649), 1, anon_sym_PIPE_PIPE, - ACTIONS(5651), 1, - anon_sym_PIPE, - ACTIONS(5653), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5655), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4457), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4651), 2, - anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(5618), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5620), 2, + anon_sym_satisfies, + [86731] = 6, + ACTIONS(4104), 1, + anon_sym_EQ, + ACTIONS(4933), 1, + anon_sym_of, + ACTIONS(5607), 1, anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4102), 12, + anon_sym_STAR, + anon_sym_BANG, anon_sym_GT, - ACTIONS(5624), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5626), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5636), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5638), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5634), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [88405] = 11, - ACTIONS(3959), 1, + ACTIONS(4106), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3961), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3963), 1, anon_sym_DOT, - ACTIONS(4425), 1, anon_sym_QMARK_DOT, - ACTIONS(5671), 1, - anon_sym_LT, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [86786] = 6, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4960), 1, + anon_sym_of, + ACTIONS(5610), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4695), 12, + ACTIONS(4612), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -213364,12 +210431,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4697), 20, + ACTIONS(4616), 25, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + 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, @@ -213387,35 +210460,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [88470] = 5, + [86841] = 6, + ACTIONS(1665), 1, + anon_sym_EQ, + ACTIONS(4946), 1, + anon_sym_of, + ACTIONS(5613), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4117), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(4119), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3448), 11, + ACTIONS(1663), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 22, + ACTIONS(1667), 25, sym__ternary_qmark, 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, @@ -213435,58 +210509,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [88523] = 16, - ACTIONS(2291), 1, + [86896] = 13, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(2325), 1, - anon_sym_async, - ACTIONS(2327), 1, - anon_sym_readonly, - ACTIONS(2331), 1, - anon_sym_override, - ACTIONS(4469), 1, + ACTIONS(4429), 1, anon_sym_EQ, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(4988), 1, - anon_sym_STAR, - STATE(2768), 1, - sym_override_modifier, + ACTIONS(5072), 1, + anon_sym_RBRACE, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2301), 2, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - ACTIONS(2329), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5674), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3922), 3, + STATE(3887), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 4, + ACTIONS(3758), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2323), 18, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -213494,95 +210565,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [88598] = 31, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, + [86965] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_as, - ACTIONS(4828), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5328), 2, + sym_number, + sym_private_property_identifier, + STATE(3888), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(5270), 1, - anon_sym_AMP_AMP, - ACTIONS(5272), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5274), 1, - anon_sym_GT_GT, - ACTIONS(5278), 1, - anon_sym_AMP, - ACTIONS(5280), 1, - anon_sym_CARET, - ACTIONS(5282), 1, - anon_sym_PIPE, - ACTIONS(5286), 1, - anon_sym_PERCENT, - ACTIONS(5288), 1, - anon_sym_STAR_STAR, - ACTIONS(5290), 1, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(5298), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5300), 1, - sym__ternary_qmark, - STATE(1945), 1, - sym_type_arguments, - STATE(2355), 1, - sym_arguments, - STATE(5093), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [87024] = 6, + ACTIONS(4618), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5266), 2, + ACTIONS(4024), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4621), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3435), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5268), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5276), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5284), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5294), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5296), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5677), 2, + ACTIONS(3439), 24, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_SEMI, - ACTIONS(5292), 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, - [88703] = 7, - ACTIONS(1708), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [87079] = 7, + ACTIONS(3437), 1, anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(4146), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4211), 2, + ACTIONS(4606), 2, anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(4214), 2, + ACTIONS(4609), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1706), 11, + ACTIONS(3435), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -213594,7 +210691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1710), 23, + ACTIONS(3439), 23, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -213618,37 +210715,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [88760] = 5, - ACTIONS(3450), 1, - anon_sym_EQ, + [87136] = 7, + ACTIONS(3447), 1, + anon_sym_DOT, + ACTIONS(3451), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3632), 3, + ACTIONS(3445), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(3441), 4, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, - ACTIONS(3448), 13, + anon_sym_extends, + ACTIONS(3435), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 23, + ACTIONS(3439), 20, sym__ternary_qmark, anon_sym_as, 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, @@ -213666,24 +210765,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [88813] = 8, - ACTIONS(2291), 1, + [87193] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5508), 2, + ACTIONS(5203), 2, sym_number, sym_private_property_identifier, - STATE(3772), 3, + STATE(3853), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -213693,7 +210792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -213717,21 +210816,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [88872] = 7, - ACTIONS(4105), 1, - anon_sym_extends, - ACTIONS(4315), 1, - anon_sym_EQ, + [87252] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4319), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4322), 2, + ACTIONS(4134), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4313), 11, + anon_sym_QMARK, + ACTIONS(4132), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3435), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -213743,10 +210841,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4317), 23, + ACTIONS(3439), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -213767,24 +210864,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [88929] = 8, - ACTIONS(2291), 1, + [87305] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5512), 2, + ACTIONS(5217), 2, sym_number, sym_private_property_identifier, - STATE(3823), 3, + STATE(3834), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -213794,7 +210891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -213818,34 +210915,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [88988] = 8, - ACTIONS(2291), 1, + [87364] = 13, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(4736), 1, anon_sym_LBRACK, + ACTIONS(5074), 1, + anon_sym_RBRACE, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5408), 2, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - STATE(3825), 3, + STATE(3887), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3758), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -213869,36 +210971,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [89047] = 6, - ACTIONS(3450), 1, - anon_sym_EQ, - ACTIONS(3637), 1, - anon_sym_in, - ACTIONS(3640), 1, - anon_sym_of, + [87433] = 6, + ACTIONS(4606), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3448), 12, - anon_sym_STAR, - anon_sym_BANG, + ACTIONS(4146), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4609), 3, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(3435), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 25, + ACTIONS(3439), 24, + sym__automatic_semicolon, sym__ternary_qmark, 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, @@ -213918,376 +211020,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [89102] = 8, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(4785), 1, + [87488] = 6, + ACTIONS(4529), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5588), 2, - sym_number, - sym_private_property_identifier, - STATE(3894), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 9, - sym__automatic_semicolon, + ACTIONS(4186), 2, 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(2323), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [89161] = 23, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(3673), 1, - anon_sym_override, - ACTIONS(3757), 1, - anon_sym_AT, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(5679), 1, + anon_sym_extends, + ACTIONS(4532), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4423), 10, anon_sym_STAR, - ACTIONS(5681), 1, - anon_sym_async, - ACTIONS(5685), 1, - anon_sym_static, - ACTIONS(5687), 1, - anon_sym_readonly, - ACTIONS(5691), 1, - anon_sym_declare, - ACTIONS(5693), 1, - anon_sym_abstract, - ACTIONS(5695), 1, - anon_sym_accessor, - STATE(2639), 1, - sym_method_definition, - STATE(2684), 1, - sym_accessibility_modifier, - STATE(2705), 1, - aux_sym_export_statement_repeat1, - STATE(2748), 1, - sym_decorator, - STATE(2753), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5683), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5689), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3671), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3016), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3651), 13, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [89250] = 8, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5418), 2, - sym_number, - sym_private_property_identifier, - STATE(3850), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2323), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [89309] = 8, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5426), 2, - sym_number, - sym_private_property_identifier, - STATE(3875), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 9, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4425), 24, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + sym__ternary_qmark, + anon_sym_as, 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, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_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_satisfies, + [87543] = 6, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4960), 1, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2323), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [89368] = 8, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(4785), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5434), 2, - sym_number, - sym_private_property_identifier, - STATE(3880), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 9, - sym__automatic_semicolon, + ACTIONS(4801), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4612), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2323), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [89427] = 13, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(729), 1, - anon_sym_RBRACE, - ACTIONS(2291), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4616), 23, + sym__ternary_qmark, + anon_sym_as, + 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_satisfies, + [87598] = 23, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(3772), 1, + anon_sym_AT, + ACTIONS(4431), 1, anon_sym_LBRACK, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2301), 2, - sym_number, - sym_private_property_identifier, - STATE(3922), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2323), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, + ACTIONS(5616), 1, + anon_sym_STAR, + ACTIONS(5618), 1, anon_sym_async, - anon_sym_new, - sym_identifier, + ACTIONS(5622), 1, anon_sym_static, + ACTIONS(5624), 1, anon_sym_readonly, - anon_sym_get, - anon_sym_set, + ACTIONS(5628), 1, anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [89496] = 8, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(4785), 1, - anon_sym_LBRACK, + ACTIONS(5630), 1, + anon_sym_abstract, + ACTIONS(5632), 1, + anon_sym_accessor, + STATE(2642), 1, + sym_method_definition, + STATE(2686), 1, + sym_accessibility_modifier, + STATE(2717), 1, + aux_sym_export_statement_repeat1, + STATE(2749), 1, + sym_decorator, + STATE(2765), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5210), 2, + ACTIONS(5620), 2, sym_number, sym_private_property_identifier, - STATE(3866), 3, + ACTIONS(5626), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3000), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 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(2323), 23, + ACTIONS(3646), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -214295,36 +211184,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [89555] = 6, - ACTIONS(4315), 1, + [87687] = 7, + ACTIONS(1665), 1, anon_sym_EQ, - ACTIONS(4887), 1, - anon_sym_of, - ACTIONS(5697), 1, - anon_sym_in, + ACTIONS(2326), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4313), 12, + ACTIONS(4066), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4069), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1663), 11, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1667), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + 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_satisfies, + [87744] = 7, + ACTIONS(4104), 1, + anon_sym_EQ, + ACTIONS(4114), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4108), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4111), 2, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(4102), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4317), 25, + ACTIONS(4106), 23, sym__ternary_qmark, 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, @@ -214344,50 +211284,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [89610] = 8, - ACTIONS(2291), 1, + [87801] = 16, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(2318), 1, + anon_sym_readonly, + ACTIONS(2322), 1, + anon_sym_override, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(4736), 1, anon_sym_LBRACK, + ACTIONS(4965), 1, + anon_sym_STAR, + STATE(2756), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5380), 2, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - STATE(3919), 3, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5634), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3887), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3758), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2323), 23, + ACTIONS(2314), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -214395,19 +211343,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [89669] = 6, - ACTIONS(4659), 1, - anon_sym_EQ, - ACTIONS(4889), 1, - anon_sym_of, - ACTIONS(5700), 1, + [87876] = 31, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, + anon_sym_LBRACK, + ACTIONS(4539), 1, + anon_sym_DOT, + ACTIONS(4842), 1, + anon_sym_as, + ACTIONS(4844), 1, + anon_sym_BANG, + ACTIONS(4849), 1, + anon_sym_satisfies, + ACTIONS(5261), 1, + anon_sym_AMP_AMP, + ACTIONS(5263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5265), 1, + anon_sym_GT_GT, + ACTIONS(5269), 1, + anon_sym_AMP, + ACTIONS(5271), 1, + anon_sym_CARET, + ACTIONS(5273), 1, + anon_sym_PIPE, + ACTIONS(5277), 1, + anon_sym_PERCENT, + ACTIONS(5279), 1, + anon_sym_STAR_STAR, + ACTIONS(5281), 1, + anon_sym_LT, + ACTIONS(5289), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5291), 1, + sym__ternary_qmark, + STATE(1976), 1, + sym_type_arguments, + STATE(2240), 1, + sym_arguments, + STATE(4753), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5257), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5259), 2, anon_sym_in, + anon_sym_GT, + ACTIONS(5267), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5275), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5285), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5287), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5637), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5283), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [87981] = 5, + ACTIONS(3437), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4657), 12, + ACTIONS(3629), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(3435), 13, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -214418,12 +211441,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4661), 25, + ACTIONS(3439), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -214444,39 +211465,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [89724] = 13, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(2291), 1, + [88034] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(5071), 1, - anon_sym_RBRACE, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2301), 2, + ACTIONS(5235), 2, sym_number, sym_private_property_identifier, - STATE(3922), 3, + STATE(3916), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 4, + ACTIONS(3758), 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(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -214500,24 +211516,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [89793] = 8, - ACTIONS(2291), 1, + [88093] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5368), 2, + ACTIONS(5346), 2, sym_number, sym_private_property_identifier, - STATE(3786), 3, + STATE(3926), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -214527,7 +211543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -214551,24 +211567,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [89852] = 8, - ACTIONS(2291), 1, + [88152] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5703), 2, + ACTIONS(5639), 2, sym_number, sym_private_property_identifier, - STATE(3824), 3, + STATE(3914), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -214578,7 +211594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -214602,73 +211618,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [89911] = 6, - ACTIONS(1708), 1, - anon_sym_EQ, - ACTIONS(4891), 1, - anon_sym_of, - ACTIONS(5705), 1, - anon_sym_in, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1706), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1710), 25, - sym__ternary_qmark, - 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, - anon_sym_satisfies, - [89966] = 8, - ACTIONS(2291), 1, + [88211] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5448), 2, + ACTIONS(5379), 2, sym_number, sym_private_property_identifier, - STATE(3839), 3, + STATE(3857), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -214678,7 +211645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -214702,228 +211669,434 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [90025] = 8, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(4785), 1, + [88270] = 32, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5200), 2, - sym_number, - sym_private_property_identifier, - STATE(3815), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(4539), 1, + anon_sym_DOT, + ACTIONS(4842), 1, + anon_sym_as, + ACTIONS(4844), 1, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4849), 1, + anon_sym_satisfies, + ACTIONS(5261), 1, + anon_sym_AMP_AMP, + ACTIONS(5263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5265), 1, + anon_sym_GT_GT, + ACTIONS(5269), 1, + anon_sym_AMP, + ACTIONS(5271), 1, + anon_sym_CARET, + ACTIONS(5273), 1, + anon_sym_PIPE, + ACTIONS(5277), 1, + anon_sym_PERCENT, + ACTIONS(5279), 1, + anon_sym_STAR_STAR, + ACTIONS(5281), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2323), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [90084] = 4, + ACTIONS(5289), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5291), 1, + sym__ternary_qmark, + ACTIONS(5641), 1, + anon_sym_SEMI, + ACTIONS(5643), 1, + sym__automatic_semicolon, + STATE(1976), 1, + sym_type_arguments, + STATE(2240), 1, + sym_arguments, + STATE(4753), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1901), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1905), 13, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5257), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5259), 2, anon_sym_in, anon_sym_GT, + ACTIONS(5267), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5275), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5285), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5287), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5283), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [88377] = 32, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, + anon_sym_LBRACK, + ACTIONS(4539), 1, + anon_sym_DOT, + ACTIONS(4842), 1, + anon_sym_as, + ACTIONS(4844), 1, + anon_sym_BANG, + ACTIONS(4849), 1, + anon_sym_satisfies, + ACTIONS(5261), 1, + anon_sym_AMP_AMP, + ACTIONS(5263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5265), 1, anon_sym_GT_GT, + ACTIONS(5269), 1, anon_sym_AMP, + ACTIONS(5271), 1, + anon_sym_CARET, + ACTIONS(5273), 1, anon_sym_PIPE, + ACTIONS(5277), 1, + anon_sym_PERCENT, + ACTIONS(5279), 1, + anon_sym_STAR_STAR, + ACTIONS(5281), 1, + anon_sym_LT, + ACTIONS(5289), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5291), 1, + sym__ternary_qmark, + ACTIONS(5645), 1, + anon_sym_SEMI, + ACTIONS(5647), 1, + sym__automatic_semicolon, + STATE(1976), 1, + sym_type_arguments, + STATE(2240), 1, + sym_arguments, + STATE(4753), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5257), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5259), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5267), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5275), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1907), 22, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5287), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5283), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [88484] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, + ACTIONS(3940), 1, anon_sym_LBRACK, + ACTIONS(3942), 1, anon_sym_DOT, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4465), 1, anon_sym_AMP_AMP, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4469), 1, + anon_sym_GT_GT, + ACTIONS(4473), 1, + anon_sym_AMP, + ACTIONS(4475), 1, anon_sym_CARET, + ACTIONS(4477), 1, + anon_sym_PIPE, + ACTIONS(4481), 1, anon_sym_PERCENT, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4485), 1, + anon_sym_LT, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4497), 1, anon_sym_satisfies, - [90135] = 4, + ACTIONS(4499), 1, + sym__ternary_qmark, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4165), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4369), 13, + ACTIONS(4457), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4471), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4371), 25, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4491), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4997), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4487), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [88589] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(3940), 1, anon_sym_LBRACK, + ACTIONS(3942), 1, anon_sym_DOT, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4465), 1, anon_sym_AMP_AMP, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4469), 1, + anon_sym_GT_GT, + ACTIONS(4473), 1, + anon_sym_AMP, + ACTIONS(4475), 1, anon_sym_CARET, + ACTIONS(4477), 1, + anon_sym_PIPE, + ACTIONS(4481), 1, anon_sym_PERCENT, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4485), 1, + anon_sym_LT, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4497), 1, anon_sym_satisfies, - [90186] = 6, - ACTIONS(4712), 1, - anon_sym_LBRACK, + ACTIONS(4499), 1, + sym__ternary_qmark, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4715), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3448), 10, + ACTIONS(4457), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4463), 2, anon_sym_in, - anon_sym_GT_GT, + anon_sym_GT, + ACTIONS(4471), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 24, + ACTIONS(4491), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5007), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4487), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [88694] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4736), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5383), 2, + sym_number, + sym_private_property_identifier, + STATE(3868), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 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(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [88753] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4736), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5391), 2, + sym_number, + sym_private_property_identifier, + STATE(3813), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 9, sym__automatic_semicolon, - sym__ternary_qmark, - 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, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_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_satisfies, - [90241] = 8, - ACTIONS(2291), 1, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [88812] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5194), 2, + ACTIONS(5401), 2, sym_number, sym_private_property_identifier, - STATE(3795), 3, + STATE(3869), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 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(2323), 23, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -214947,34 +212120,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [90300] = 8, - ACTIONS(2291), 1, + [88871] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5220), 2, + ACTIONS(5409), 2, sym_number, sym_private_property_identifier, - STATE(3901), 3, + STATE(3908), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 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(2323), 23, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -214998,109 +212171,235 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [90359] = 32, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + [88930] = 19, + ACTIONS(231), 1, + anon_sym_STAR, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(1932), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4736), 1, + anon_sym_LBRACK, + ACTIONS(5653), 1, + anon_sym_async, + ACTIONS(5655), 1, + anon_sym_static, + ACTIONS(5657), 1, + anon_sym_readonly, + ACTIONS(5663), 1, + anon_sym_override, + STATE(2732), 1, + sym_accessibility_modifier, + STATE(2743), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5539), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5651), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5659), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5661), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3663), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5541), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(5649), 14, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [89011] = 17, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(2318), 1, + anon_sym_readonly, + ACTIONS(2322), 1, + anon_sym_override, + ACTIONS(4736), 1, + anon_sym_LBRACK, + ACTIONS(4965), 1, + anon_sym_STAR, + ACTIONS(5533), 1, + anon_sym_COMMA, + ACTIONS(5665), 1, + anon_sym_RBRACE, + STATE(2756), 1, + sym_override_modifier, + STATE(5136), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3887), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + 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, + anon_sym_object, + [89088] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4826), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, anon_sym_as, - ACTIONS(4828), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4833), 1, - anon_sym_satisfies, - ACTIONS(5270), 1, + ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(5272), 1, + ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(5274), 1, + ACTIONS(4469), 1, anon_sym_GT_GT, - ACTIONS(5278), 1, + ACTIONS(4473), 1, anon_sym_AMP, - ACTIONS(5280), 1, + ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(5282), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(5286), 1, + ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(5288), 1, + ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(5290), 1, + ACTIONS(4485), 1, anon_sym_LT, - ACTIONS(5298), 1, + ACTIONS(4493), 1, anon_sym_QMARK_QMARK, - ACTIONS(5300), 1, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(4499), 1, sym__ternary_qmark, - ACTIONS(5708), 1, - anon_sym_SEMI, - ACTIONS(5710), 1, - sym__automatic_semicolon, - STATE(1945), 1, + STATE(1533), 1, sym_type_arguments, - STATE(2355), 1, + STATE(1614), 1, sym_arguments, - STATE(5093), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5266), 2, + ACTIONS(4457), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5268), 2, + ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5276), 2, + ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5284), 2, + ACTIONS(4479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5294), 2, + ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5296), 2, + ACTIONS(4491), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5292), 3, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5667), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4487), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [90466] = 8, - ACTIONS(2291), 1, + [89193] = 13, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(724), 1, + anon_sym_RBRACE, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(4736), 1, anon_sym_LBRACK, + STATE(5129), 1, + aux_sym_object_repeat1, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5528), 2, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - STATE(3840), 3, + STATE(3887), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3758), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -215124,24 +212423,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [90525] = 8, - ACTIONS(1588), 1, + [89262] = 8, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5712), 2, + ACTIONS(5669), 2, sym_number, sym_private_property_identifier, - STATE(3388), 3, + STATE(3380), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -215151,7 +212450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3651), 23, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -215175,83 +212474,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [90584] = 6, - ACTIONS(4743), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4127), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4746), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4702), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4704), 24, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - 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, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_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_satisfies, - [90639] = 8, - ACTIONS(2291), 1, + [89321] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5234), 2, + ACTIONS(5553), 2, sym_number, sym_private_property_identifier, STATE(3816), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 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(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -215275,34 +212525,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [90698] = 8, - ACTIONS(2291), 1, + [89380] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5315), 2, + ACTIONS(5483), 2, sym_number, sym_private_property_identifier, - STATE(3800), 3, + STATE(3902), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 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(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -215326,241 +212576,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [90757] = 26, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4483), 1, - anon_sym_BANG, - ACTIONS(5622), 1, - anon_sym_GT_GT, - ACTIONS(5628), 1, - anon_sym_PERCENT, - ACTIONS(5630), 1, - anon_sym_STAR_STAR, - ACTIONS(5632), 1, - anon_sym_LT, - ACTIONS(5640), 1, - anon_sym_AMP, - ACTIONS(5642), 1, - anon_sym_CARET, - ACTIONS(5647), 1, - anon_sym_AMP_AMP, - ACTIONS(5651), 1, - anon_sym_PIPE, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5618), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5620), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5624), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5626), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5636), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5638), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5634), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4481), 7, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [90852] = 16, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(5628), 1, - anon_sym_PERCENT, - ACTIONS(5630), 1, - anon_sym_STAR_STAR, - ACTIONS(5644), 1, - anon_sym_LT, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5618), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5626), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4483), 8, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4481), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_BQUOTE, - anon_sym_satisfies, - [90927] = 31, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4984), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [91032] = 13, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(2291), 1, + [89439] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(5015), 1, - anon_sym_RBRACE, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2301), 2, + ACTIONS(5509), 2, sym_number, sym_private_property_identifier, - STATE(3922), 3, + STATE(3826), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 4, + ACTIONS(3758), 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(2323), 23, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -215584,39 +212627,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [91101] = 13, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(727), 1, - anon_sym_RBRACE, - ACTIONS(2291), 1, + [89498] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2301), 2, + ACTIONS(5601), 2, sym_number, sym_private_property_identifier, - STATE(3922), 3, + STATE(3785), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 4, + ACTIONS(3758), 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(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -215640,61 +212678,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [91170] = 19, - ACTIONS(235), 1, - anon_sym_STAR, - ACTIONS(1943), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2291), 1, + [89557] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(5718), 1, - anon_sym_async, - ACTIONS(5720), 1, - anon_sym_static, - ACTIONS(5722), 1, - anon_sym_readonly, - ACTIONS(5728), 1, - anon_sym_override, - STATE(2724), 1, - sym_accessibility_modifier, - STATE(2755), 1, - sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5572), 2, + ACTIONS(5456), 2, sym_number, sym_private_property_identifier, - ACTIONS(5716), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(5724), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5726), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3640), 3, + STATE(3911), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5294), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(5714), 14, + ACTIONS(3758), 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(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -215702,34 +212729,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [91251] = 8, - ACTIONS(2291), 1, + [89616] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1873), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1877), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1879), 25, + sym__automatic_semicolon, + sym__ternary_qmark, + 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_satisfies, + [89667] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5614), 2, + ACTIONS(5181), 2, sym_number, sym_private_property_identifier, - STATE(3926), 3, + STATE(3893), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, + ACTIONS(3758), 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(2323), 23, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -215753,91 +212827,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [91310] = 31, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, + [89726] = 6, + ACTIONS(3437), 1, + anon_sym_EQ, + ACTIONS(3632), 1, anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4996), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [91415] = 4, - ACTIONS(4877), 1, - sym_regex_flags, + ACTIONS(3635), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4873), 17, + ACTIONS(3435), 12, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -215848,14 +212850,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_satisfies, - anon_sym_implements, - ACTIONS(4875), 22, + ACTIONS(3439), 25, sym__ternary_qmark, - anon_sym_LBRACE, + anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -215871,39 +212871,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [91466] = 6, - ACTIONS(4722), 1, - anon_sym_LBRACK, + anon_sym_satisfies, + [89781] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4047), 2, + ACTIONS(1873), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4725), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3448), 10, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1877), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 24, - sym__automatic_semicolon, + ACTIONS(1879), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -215921,565 +212922,416 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [91521] = 31, - ACTIONS(3959), 1, + [89832] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4427), 1, - anon_sym_AMP_AMP, - ACTIONS(4429), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_GT_GT, - ACTIONS(4435), 1, - anon_sym_AMP, - ACTIONS(4437), 1, - anon_sym_CARET, - ACTIONS(4439), 1, - anon_sym_PIPE, - ACTIONS(4443), 1, - anon_sym_PERCENT, - ACTIONS(4445), 1, - anon_sym_STAR_STAR, - ACTIONS(4447), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_QMARK_QMARK, ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4461), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4415), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4423), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4433), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4441), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4451), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4453), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5730), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4449), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [91626] = 31, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(4826), 1, anon_sym_as, - ACTIONS(4828), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4833), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(5270), 1, + ACTIONS(5675), 1, anon_sym_AMP_AMP, - ACTIONS(5272), 1, + ACTIONS(5677), 1, anon_sym_PIPE_PIPE, - ACTIONS(5274), 1, + ACTIONS(5679), 1, anon_sym_GT_GT, - ACTIONS(5278), 1, + ACTIONS(5683), 1, anon_sym_AMP, - ACTIONS(5280), 1, + ACTIONS(5685), 1, anon_sym_CARET, - ACTIONS(5282), 1, + ACTIONS(5687), 1, anon_sym_PIPE, - ACTIONS(5286), 1, + ACTIONS(5691), 1, anon_sym_PERCENT, - ACTIONS(5288), 1, + ACTIONS(5693), 1, anon_sym_STAR_STAR, - ACTIONS(5290), 1, + ACTIONS(5695), 1, anon_sym_LT, - ACTIONS(5298), 1, + ACTIONS(5703), 1, anon_sym_QMARK_QMARK, - ACTIONS(5300), 1, + ACTIONS(5705), 1, sym__ternary_qmark, - STATE(1945), 1, + STATE(1533), 1, sym_type_arguments, - STATE(2355), 1, + STATE(1614), 1, sym_arguments, - STATE(5093), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4455), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5083), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5266), 2, + ACTIONS(5671), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5268), 2, + ACTIONS(5673), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5276), 2, + ACTIONS(5681), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5284), 2, + ACTIONS(5689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5294), 2, + ACTIONS(5699), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5296), 2, + ACTIONS(5701), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5292), 3, + ACTIONS(5697), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [91731] = 31, - ACTIONS(3959), 1, + [89937] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5736), 1, - anon_sym_AMP_AMP, - ACTIONS(5738), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5740), 1, - anon_sym_GT_GT, - ACTIONS(5744), 1, - anon_sym_AMP, - ACTIONS(5746), 1, - anon_sym_CARET, - ACTIONS(5748), 1, - anon_sym_PIPE, - ACTIONS(5752), 1, - anon_sym_PERCENT, - ACTIONS(5754), 1, - anon_sym_STAR_STAR, - ACTIONS(5756), 1, - anon_sym_LT, - ACTIONS(5764), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5766), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4548), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(5732), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5734), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5742), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5762), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5758), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [91836] = 31, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(5736), 1, + ACTIONS(5675), 1, anon_sym_AMP_AMP, - ACTIONS(5738), 1, + ACTIONS(5677), 1, anon_sym_PIPE_PIPE, - ACTIONS(5740), 1, + ACTIONS(5679), 1, anon_sym_GT_GT, - ACTIONS(5744), 1, + ACTIONS(5683), 1, anon_sym_AMP, - ACTIONS(5746), 1, + ACTIONS(5685), 1, anon_sym_CARET, - ACTIONS(5748), 1, + ACTIONS(5687), 1, anon_sym_PIPE, - ACTIONS(5752), 1, + ACTIONS(5691), 1, anon_sym_PERCENT, - ACTIONS(5754), 1, + ACTIONS(5693), 1, anon_sym_STAR_STAR, - ACTIONS(5756), 1, + ACTIONS(5695), 1, anon_sym_LT, - ACTIONS(5764), 1, + ACTIONS(5703), 1, anon_sym_QMARK_QMARK, - ACTIONS(5766), 1, + ACTIONS(5705), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4734), 2, - anon_sym_of, + ACTIONS(4501), 2, + anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(5732), 2, + ACTIONS(5671), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5734), 2, + ACTIONS(5673), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5742), 2, + ACTIONS(5681), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5750), 2, + ACTIONS(5689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5760), 2, + ACTIONS(5699), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5762), 2, + ACTIONS(5701), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5758), 3, + ACTIONS(5697), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [91941] = 31, - ACTIONS(3959), 1, + [90042] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(5736), 1, + ACTIONS(5675), 1, anon_sym_AMP_AMP, - ACTIONS(5738), 1, + ACTIONS(5677), 1, anon_sym_PIPE_PIPE, - ACTIONS(5740), 1, + ACTIONS(5679), 1, anon_sym_GT_GT, - ACTIONS(5744), 1, + ACTIONS(5683), 1, anon_sym_AMP, - ACTIONS(5746), 1, + ACTIONS(5685), 1, anon_sym_CARET, - ACTIONS(5748), 1, + ACTIONS(5687), 1, anon_sym_PIPE, - ACTIONS(5752), 1, + ACTIONS(5691), 1, anon_sym_PERCENT, - ACTIONS(5754), 1, + ACTIONS(5693), 1, anon_sym_STAR_STAR, - ACTIONS(5756), 1, + ACTIONS(5695), 1, anon_sym_LT, - ACTIONS(5764), 1, + ACTIONS(5703), 1, anon_sym_QMARK_QMARK, - ACTIONS(5766), 1, + ACTIONS(5705), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4708), 2, - anon_sym_of, + ACTIONS(4519), 2, + anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(5732), 2, + ACTIONS(5671), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5734), 2, + ACTIONS(5673), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5742), 2, + ACTIONS(5681), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5750), 2, + ACTIONS(5689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5760), 2, + ACTIONS(5699), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5762), 2, + ACTIONS(5701), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5758), 3, + ACTIONS(5697), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [92046] = 31, - ACTIONS(3959), 1, + [90147] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(5736), 1, + ACTIONS(5675), 1, anon_sym_AMP_AMP, - ACTIONS(5738), 1, + ACTIONS(5677), 1, anon_sym_PIPE_PIPE, - ACTIONS(5740), 1, + ACTIONS(5679), 1, anon_sym_GT_GT, - ACTIONS(5744), 1, + ACTIONS(5683), 1, anon_sym_AMP, - ACTIONS(5746), 1, + ACTIONS(5685), 1, anon_sym_CARET, - ACTIONS(5748), 1, + ACTIONS(5687), 1, anon_sym_PIPE, - ACTIONS(5752), 1, + ACTIONS(5691), 1, anon_sym_PERCENT, - ACTIONS(5754), 1, + ACTIONS(5693), 1, anon_sym_STAR_STAR, - ACTIONS(5756), 1, + ACTIONS(5695), 1, anon_sym_LT, - ACTIONS(5764), 1, + ACTIONS(5703), 1, anon_sym_QMARK_QMARK, - ACTIONS(5766), 1, + ACTIONS(5705), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4710), 2, - anon_sym_of, + ACTIONS(4577), 2, + anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(5732), 2, + ACTIONS(5671), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5734), 2, + ACTIONS(5673), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5742), 2, + ACTIONS(5681), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5750), 2, + ACTIONS(5689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5760), 2, + ACTIONS(5699), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5762), 2, + ACTIONS(5701), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5758), 3, + ACTIONS(5697), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [92151] = 31, - ACTIONS(3959), 1, + [90252] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(5736), 1, + ACTIONS(5675), 1, anon_sym_AMP_AMP, - ACTIONS(5738), 1, + ACTIONS(5677), 1, anon_sym_PIPE_PIPE, - ACTIONS(5740), 1, + ACTIONS(5679), 1, anon_sym_GT_GT, - ACTIONS(5744), 1, + ACTIONS(5683), 1, anon_sym_AMP, - ACTIONS(5746), 1, + ACTIONS(5685), 1, anon_sym_CARET, - ACTIONS(5748), 1, + ACTIONS(5687), 1, anon_sym_PIPE, - ACTIONS(5752), 1, + ACTIONS(5691), 1, anon_sym_PERCENT, - ACTIONS(5754), 1, + ACTIONS(5693), 1, anon_sym_STAR_STAR, - ACTIONS(5756), 1, + ACTIONS(5695), 1, anon_sym_LT, - ACTIONS(5764), 1, + ACTIONS(5703), 1, anon_sym_QMARK_QMARK, - ACTIONS(5766), 1, + ACTIONS(5705), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4610), 2, - anon_sym_of, + ACTIONS(4581), 2, + anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(5732), 2, + ACTIONS(5671), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5734), 2, + ACTIONS(5673), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5742), 2, + ACTIONS(5681), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5750), 2, + ACTIONS(5689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5760), 2, + ACTIONS(5699), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5762), 2, + ACTIONS(5701), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5758), 3, + ACTIONS(5697), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [92256] = 18, - ACTIONS(3959), 1, + [90357] = 18, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5740), 1, + ACTIONS(5679), 1, anon_sym_GT_GT, - ACTIONS(5752), 1, + ACTIONS(5691), 1, anon_sym_PERCENT, - ACTIONS(5754), 1, + ACTIONS(5693), 1, anon_sym_STAR_STAR, - ACTIONS(5756), 1, + ACTIONS(5695), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5732), 2, + ACTIONS(5671), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5742), 2, + ACTIONS(5681), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5750), 2, + ACTIONS(5689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4483), 7, + ACTIONS(4585), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -216487,10 +213339,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 14, + ACTIONS(4583), 14, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, @@ -216502,32 +213354,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [92335] = 13, - ACTIONS(3959), 1, + [90436] = 13, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5754), 1, + ACTIONS(5693), 1, anon_sym_STAR_STAR, - ACTIONS(5768), 1, + ACTIONS(5707), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4483), 12, + ACTIONS(4585), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -216540,10 +213392,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 17, + ACTIONS(4583), 17, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -216558,177 +213410,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [92404] = 25, - ACTIONS(3959), 1, + [90505] = 25, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4483), 1, + ACTIONS(4585), 1, anon_sym_BANG, - ACTIONS(5740), 1, + ACTIONS(5679), 1, anon_sym_GT_GT, - ACTIONS(5744), 1, + ACTIONS(5683), 1, anon_sym_AMP, - ACTIONS(5746), 1, + ACTIONS(5685), 1, anon_sym_CARET, - ACTIONS(5748), 1, + ACTIONS(5687), 1, anon_sym_PIPE, - ACTIONS(5752), 1, + ACTIONS(5691), 1, anon_sym_PERCENT, - ACTIONS(5754), 1, + ACTIONS(5693), 1, anon_sym_STAR_STAR, - ACTIONS(5756), 1, + ACTIONS(5695), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5732), 2, + ACTIONS(5671), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5734), 2, + ACTIONS(5673), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5742), 2, + ACTIONS(5681), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5750), 2, + ACTIONS(5689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5760), 2, + ACTIONS(5699), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5762), 2, + ACTIONS(5701), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5758), 3, + ACTIONS(5697), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 8, + ACTIONS(4583), 8, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [92497] = 26, - ACTIONS(3959), 1, + [90598] = 26, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4483), 1, + ACTIONS(4585), 1, anon_sym_BANG, - ACTIONS(5736), 1, + ACTIONS(5675), 1, anon_sym_AMP_AMP, - ACTIONS(5740), 1, + ACTIONS(5679), 1, anon_sym_GT_GT, - ACTIONS(5744), 1, + ACTIONS(5683), 1, anon_sym_AMP, - ACTIONS(5746), 1, + ACTIONS(5685), 1, anon_sym_CARET, - ACTIONS(5748), 1, + ACTIONS(5687), 1, anon_sym_PIPE, - ACTIONS(5752), 1, + ACTIONS(5691), 1, anon_sym_PERCENT, - ACTIONS(5754), 1, + ACTIONS(5693), 1, anon_sym_STAR_STAR, - ACTIONS(5756), 1, + ACTIONS(5695), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5732), 2, + ACTIONS(5671), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5734), 2, + ACTIONS(5673), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5742), 2, + ACTIONS(5681), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5750), 2, + ACTIONS(5689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5760), 2, + ACTIONS(5699), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5762), 2, + ACTIONS(5701), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5758), 3, + ACTIONS(5697), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 7, + ACTIONS(4583), 7, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + anon_sym_RBRACK, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [92592] = 16, - ACTIONS(3959), 1, + [90693] = 16, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5752), 1, + ACTIONS(5691), 1, anon_sym_PERCENT, - ACTIONS(5754), 1, + ACTIONS(5693), 1, anon_sym_STAR_STAR, - ACTIONS(5768), 1, + ACTIONS(5707), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5732), 2, + ACTIONS(5671), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5750), 2, + ACTIONS(5689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4483), 8, + ACTIONS(4585), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -216737,10 +213589,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 16, + ACTIONS(4583), 16, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -216754,235 +213606,235 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [92667] = 22, - ACTIONS(3959), 1, + [90768] = 22, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5740), 1, + ACTIONS(5679), 1, anon_sym_GT_GT, - ACTIONS(5752), 1, + ACTIONS(5691), 1, anon_sym_PERCENT, - ACTIONS(5754), 1, + ACTIONS(5693), 1, anon_sym_STAR_STAR, - ACTIONS(5756), 1, + ACTIONS(5695), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5732), 2, + ACTIONS(5671), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5734), 2, + ACTIONS(5673), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5742), 2, + ACTIONS(5681), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5750), 2, + ACTIONS(5689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5760), 2, + ACTIONS(5699), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5762), 2, + ACTIONS(5701), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4483), 3, + ACTIONS(4585), 3, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5758), 3, + ACTIONS(5697), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 9, + ACTIONS(4583), 9, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [92754] = 23, - ACTIONS(3959), 1, + [90855] = 23, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5740), 1, + ACTIONS(5679), 1, anon_sym_GT_GT, - ACTIONS(5744), 1, + ACTIONS(5683), 1, anon_sym_AMP, - ACTIONS(5752), 1, + ACTIONS(5691), 1, anon_sym_PERCENT, - ACTIONS(5754), 1, + ACTIONS(5693), 1, anon_sym_STAR_STAR, - ACTIONS(5756), 1, + ACTIONS(5695), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4483), 2, + ACTIONS(4585), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(5732), 2, + ACTIONS(5671), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5734), 2, + ACTIONS(5673), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5742), 2, + ACTIONS(5681), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5750), 2, + ACTIONS(5689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5760), 2, + ACTIONS(5699), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5762), 2, + ACTIONS(5701), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5758), 3, + ACTIONS(5697), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 9, + ACTIONS(4583), 9, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [92843] = 24, - ACTIONS(3959), 1, + [90944] = 24, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5740), 1, + ACTIONS(5679), 1, anon_sym_GT_GT, - ACTIONS(5744), 1, + ACTIONS(5683), 1, anon_sym_AMP, - ACTIONS(5746), 1, + ACTIONS(5685), 1, anon_sym_CARET, - ACTIONS(5752), 1, + ACTIONS(5691), 1, anon_sym_PERCENT, - ACTIONS(5754), 1, + ACTIONS(5693), 1, anon_sym_STAR_STAR, - ACTIONS(5756), 1, + ACTIONS(5695), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4483), 2, + ACTIONS(4585), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(5732), 2, + ACTIONS(5671), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5734), 2, + ACTIONS(5673), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5742), 2, + ACTIONS(5681), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5750), 2, + ACTIONS(5689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5760), 2, + ACTIONS(5699), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5762), 2, + ACTIONS(5701), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5758), 3, + ACTIONS(5697), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 8, + ACTIONS(4583), 8, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [92934] = 15, - ACTIONS(3959), 1, + [91035] = 15, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5752), 1, + ACTIONS(5691), 1, anon_sym_PERCENT, - ACTIONS(5754), 1, + ACTIONS(5693), 1, anon_sym_STAR_STAR, - ACTIONS(5768), 1, + ACTIONS(5707), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5732), 2, + ACTIONS(5671), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4483), 10, + ACTIONS(4585), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -216993,10 +213845,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 16, + ACTIONS(4583), 16, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -217010,38 +213862,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [93007] = 16, - ACTIONS(3959), 1, + [91108] = 16, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(5754), 1, + ACTIONS(5693), 1, anon_sym_STAR_STAR, - ACTIONS(5768), 1, + ACTIONS(5707), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4483), 11, + ACTIONS(4585), 11, anon_sym_STAR, anon_sym_in, anon_sym_GT, @@ -217053,9 +213905,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 15, + ACTIONS(4583), 15, sym__ternary_qmark, - anon_sym_of, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -217069,61 +213921,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [93082] = 20, - ACTIONS(3959), 1, + [91183] = 20, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5740), 1, + ACTIONS(5679), 1, anon_sym_GT_GT, - ACTIONS(5752), 1, + ACTIONS(5691), 1, anon_sym_PERCENT, - ACTIONS(5754), 1, + ACTIONS(5693), 1, anon_sym_STAR_STAR, - ACTIONS(5756), 1, + ACTIONS(5695), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5732), 2, + ACTIONS(5671), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5734), 2, + ACTIONS(5673), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5742), 2, + ACTIONS(5681), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5750), 2, + ACTIONS(5689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5758), 3, + ACTIONS(5697), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4483), 5, + ACTIONS(4585), 5, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 11, + ACTIONS(4583), 11, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, @@ -217132,701 +213984,892 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [93165] = 27, - ACTIONS(3959), 1, + [91266] = 27, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4483), 1, + ACTIONS(4585), 1, + anon_sym_BANG, + ACTIONS(5675), 1, + anon_sym_AMP_AMP, + ACTIONS(5677), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5679), 1, + anon_sym_GT_GT, + ACTIONS(5683), 1, + anon_sym_AMP, + ACTIONS(5685), 1, + anon_sym_CARET, + ACTIONS(5687), 1, + anon_sym_PIPE, + ACTIONS(5691), 1, + anon_sym_PERCENT, + ACTIONS(5693), 1, + anon_sym_STAR_STAR, + ACTIONS(5695), 1, + anon_sym_LT, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5671), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5673), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5681), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5689), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5699), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5701), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5697), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4583), 6, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [91363] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(5736), 1, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(5675), 1, + anon_sym_AMP_AMP, + ACTIONS(5677), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5679), 1, + anon_sym_GT_GT, + ACTIONS(5683), 1, + anon_sym_AMP, + ACTIONS(5685), 1, + anon_sym_CARET, + ACTIONS(5687), 1, + anon_sym_PIPE, + ACTIONS(5691), 1, + anon_sym_PERCENT, + ACTIONS(5693), 1, + anon_sym_STAR_STAR, + ACTIONS(5695), 1, + anon_sym_LT, + ACTIONS(5703), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5705), 1, + sym__ternary_qmark, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4642), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(5671), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5673), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5681), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5689), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5699), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5701), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5697), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [91468] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(5675), 1, anon_sym_AMP_AMP, - ACTIONS(5738), 1, + ACTIONS(5677), 1, anon_sym_PIPE_PIPE, - ACTIONS(5740), 1, + ACTIONS(5679), 1, anon_sym_GT_GT, - ACTIONS(5744), 1, + ACTIONS(5683), 1, anon_sym_AMP, - ACTIONS(5746), 1, + ACTIONS(5685), 1, anon_sym_CARET, - ACTIONS(5748), 1, + ACTIONS(5687), 1, anon_sym_PIPE, - ACTIONS(5752), 1, + ACTIONS(5691), 1, anon_sym_PERCENT, - ACTIONS(5754), 1, + ACTIONS(5693), 1, anon_sym_STAR_STAR, - ACTIONS(5756), 1, + ACTIONS(5695), 1, anon_sym_LT, - STATE(1603), 1, + ACTIONS(5703), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5705), 1, + sym__ternary_qmark, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5732), 2, + ACTIONS(4648), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(5671), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5734), 2, + ACTIONS(5673), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5742), 2, + ACTIONS(5681), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5750), 2, + ACTIONS(5689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5760), 2, + ACTIONS(5699), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5762), 2, + ACTIONS(5701), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5758), 3, + ACTIONS(5697), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 6, - sym__ternary_qmark, - anon_sym_as, - anon_sym_of, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [93262] = 31, - ACTIONS(3959), 1, + [91573] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(5736), 1, + ACTIONS(5675), 1, anon_sym_AMP_AMP, - ACTIONS(5738), 1, + ACTIONS(5677), 1, anon_sym_PIPE_PIPE, - ACTIONS(5740), 1, + ACTIONS(5679), 1, anon_sym_GT_GT, - ACTIONS(5744), 1, + ACTIONS(5683), 1, anon_sym_AMP, - ACTIONS(5746), 1, + ACTIONS(5685), 1, anon_sym_CARET, - ACTIONS(5748), 1, + ACTIONS(5687), 1, anon_sym_PIPE, - ACTIONS(5752), 1, + ACTIONS(5691), 1, anon_sym_PERCENT, - ACTIONS(5754), 1, + ACTIONS(5693), 1, anon_sym_STAR_STAR, - ACTIONS(5756), 1, + ACTIONS(5695), 1, anon_sym_LT, - ACTIONS(5764), 1, + ACTIONS(5703), 1, anon_sym_QMARK_QMARK, - ACTIONS(5766), 1, + ACTIONS(5705), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4655), 2, - anon_sym_of, + ACTIONS(4716), 2, + anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(5732), 2, + ACTIONS(5671), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5734), 2, + ACTIONS(5673), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5742), 2, + ACTIONS(5681), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5750), 2, + ACTIONS(5689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5760), 2, + ACTIONS(5699), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5762), 2, + ACTIONS(5701), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5758), 3, + ACTIONS(5697), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [93367] = 31, - ACTIONS(3959), 1, + [91678] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(5736), 1, + ACTIONS(5675), 1, anon_sym_AMP_AMP, - ACTIONS(5738), 1, + ACTIONS(5677), 1, anon_sym_PIPE_PIPE, - ACTIONS(5740), 1, + ACTIONS(5679), 1, anon_sym_GT_GT, - ACTIONS(5744), 1, + ACTIONS(5683), 1, anon_sym_AMP, - ACTIONS(5746), 1, + ACTIONS(5685), 1, anon_sym_CARET, - ACTIONS(5748), 1, + ACTIONS(5687), 1, anon_sym_PIPE, - ACTIONS(5752), 1, + ACTIONS(5691), 1, anon_sym_PERCENT, - ACTIONS(5754), 1, + ACTIONS(5693), 1, anon_sym_STAR_STAR, - ACTIONS(5756), 1, + ACTIONS(5695), 1, anon_sym_LT, - ACTIONS(5764), 1, + ACTIONS(5703), 1, anon_sym_QMARK_QMARK, - ACTIONS(5766), 1, + ACTIONS(5705), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4419), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5732), 2, + ACTIONS(4728), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(5671), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5734), 2, + ACTIONS(5673), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5742), 2, + ACTIONS(5681), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5750), 2, + ACTIONS(5689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5760), 2, + ACTIONS(5699), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5762), 2, + ACTIONS(5701), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5758), 3, + ACTIONS(5697), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [93472] = 31, - ACTIONS(3959), 1, + [91783] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(5736), 1, + ACTIONS(5675), 1, anon_sym_AMP_AMP, - ACTIONS(5738), 1, + ACTIONS(5677), 1, anon_sym_PIPE_PIPE, - ACTIONS(5740), 1, + ACTIONS(5679), 1, anon_sym_GT_GT, - ACTIONS(5744), 1, + ACTIONS(5683), 1, anon_sym_AMP, - ACTIONS(5746), 1, + ACTIONS(5685), 1, anon_sym_CARET, - ACTIONS(5748), 1, + ACTIONS(5687), 1, anon_sym_PIPE, - ACTIONS(5752), 1, + ACTIONS(5691), 1, anon_sym_PERCENT, - ACTIONS(5754), 1, + ACTIONS(5693), 1, anon_sym_STAR_STAR, - ACTIONS(5756), 1, + ACTIONS(5695), 1, anon_sym_LT, - ACTIONS(5764), 1, + ACTIONS(5703), 1, anon_sym_QMARK_QMARK, - ACTIONS(5766), 1, + ACTIONS(5705), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4584), 2, - anon_sym_of, + ACTIONS(4732), 2, + anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(5732), 2, + ACTIONS(5671), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5734), 2, + ACTIONS(5673), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5742), 2, + ACTIONS(5681), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5750), 2, + ACTIONS(5689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5760), 2, + ACTIONS(5699), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5762), 2, + ACTIONS(5701), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5758), 3, + ACTIONS(5697), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [93577] = 31, - ACTIONS(3959), 1, + [91888] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(5736), 1, + ACTIONS(5675), 1, anon_sym_AMP_AMP, - ACTIONS(5738), 1, + ACTIONS(5677), 1, anon_sym_PIPE_PIPE, - ACTIONS(5740), 1, + ACTIONS(5679), 1, anon_sym_GT_GT, - ACTIONS(5744), 1, + ACTIONS(5683), 1, anon_sym_AMP, - ACTIONS(5746), 1, + ACTIONS(5685), 1, anon_sym_CARET, - ACTIONS(5748), 1, + ACTIONS(5687), 1, anon_sym_PIPE, - ACTIONS(5752), 1, + ACTIONS(5691), 1, anon_sym_PERCENT, - ACTIONS(5754), 1, + ACTIONS(5693), 1, anon_sym_STAR_STAR, - ACTIONS(5756), 1, + ACTIONS(5695), 1, anon_sym_LT, - ACTIONS(5764), 1, + ACTIONS(5703), 1, anon_sym_QMARK_QMARK, - ACTIONS(5766), 1, + ACTIONS(5705), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4489), 2, - anon_sym_of, + ACTIONS(4503), 2, + anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(5732), 2, + ACTIONS(5671), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5734), 2, + ACTIONS(5673), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5742), 2, + ACTIONS(5681), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5750), 2, + ACTIONS(5689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5760), 2, + ACTIONS(5699), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5762), 2, + ACTIONS(5701), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5758), 3, + ACTIONS(5697), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [93682] = 31, - ACTIONS(3959), 1, + [91993] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(5736), 1, + ACTIONS(5675), 1, anon_sym_AMP_AMP, - ACTIONS(5738), 1, + ACTIONS(5677), 1, anon_sym_PIPE_PIPE, - ACTIONS(5740), 1, + ACTIONS(5679), 1, anon_sym_GT_GT, - ACTIONS(5744), 1, + ACTIONS(5683), 1, anon_sym_AMP, - ACTIONS(5746), 1, + ACTIONS(5685), 1, anon_sym_CARET, - ACTIONS(5748), 1, + ACTIONS(5687), 1, anon_sym_PIPE, - ACTIONS(5752), 1, + ACTIONS(5691), 1, anon_sym_PERCENT, - ACTIONS(5754), 1, + ACTIONS(5693), 1, anon_sym_STAR_STAR, - ACTIONS(5756), 1, + ACTIONS(5695), 1, anon_sym_LT, - ACTIONS(5764), 1, + ACTIONS(5703), 1, anon_sym_QMARK_QMARK, - ACTIONS(5766), 1, + ACTIONS(5705), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4493), 2, - anon_sym_of, + ACTIONS(4505), 2, + anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(5732), 2, + ACTIONS(5671), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5734), 2, + ACTIONS(5673), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5742), 2, + ACTIONS(5681), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5750), 2, + ACTIONS(5689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5760), 2, + ACTIONS(5699), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5762), 2, + ACTIONS(5701), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5758), 3, + ACTIONS(5697), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [93787] = 31, - ACTIONS(3959), 1, + [92098] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(5736), 1, + ACTIONS(5675), 1, anon_sym_AMP_AMP, - ACTIONS(5738), 1, + ACTIONS(5677), 1, anon_sym_PIPE_PIPE, - ACTIONS(5740), 1, + ACTIONS(5679), 1, anon_sym_GT_GT, - ACTIONS(5744), 1, + ACTIONS(5683), 1, anon_sym_AMP, - ACTIONS(5746), 1, + ACTIONS(5685), 1, anon_sym_CARET, - ACTIONS(5748), 1, + ACTIONS(5687), 1, anon_sym_PIPE, - ACTIONS(5752), 1, + ACTIONS(5691), 1, anon_sym_PERCENT, - ACTIONS(5754), 1, + ACTIONS(5693), 1, anon_sym_STAR_STAR, - ACTIONS(5756), 1, + ACTIONS(5695), 1, anon_sym_LT, - ACTIONS(5764), 1, + ACTIONS(5703), 1, anon_sym_QMARK_QMARK, - ACTIONS(5766), 1, + ACTIONS(5705), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4536), 2, - anon_sym_of, + ACTIONS(4734), 2, + anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(5732), 2, + ACTIONS(5671), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5734), 2, + ACTIONS(5673), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5742), 2, + ACTIONS(5681), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5750), 2, + ACTIONS(5689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5760), 2, + ACTIONS(5699), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5762), 2, + ACTIONS(5701), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5758), 3, + ACTIONS(5697), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [93892] = 31, - ACTIONS(3959), 1, + [92203] = 12, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5736), 1, - anon_sym_AMP_AMP, - ACTIONS(5738), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5740), 1, + ACTIONS(5710), 1, + anon_sym_LT, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4674), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(5744), 1, anon_sym_AMP, - ACTIONS(5746), 1, - anon_sym_CARET, - ACTIONS(5748), 1, anon_sym_PIPE, - ACTIONS(5752), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4676), 18, + sym__ternary_qmark, + anon_sym_as, + 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(5754), 1, anon_sym_STAR_STAR, - ACTIONS(5756), 1, - anon_sym_LT, - ACTIONS(5764), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5766), 1, - sym__ternary_qmark, - STATE(1603), 1, + anon_sym_instanceof, + anon_sym_BQUOTE, + anon_sym_satisfies, + [92270] = 15, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(5713), 1, + anon_sym_LT, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4538), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(5732), 2, + ACTIONS(4697), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5734), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5742), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5750), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5760), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5762), 2, + ACTIONS(4699), 16, + sym__ternary_qmark, + 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, - ACTIONS(5758), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [93997] = 31, - ACTIONS(3959), 1, + anon_sym_BQUOTE, + [92343] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(5736), 1, + ACTIONS(5675), 1, anon_sym_AMP_AMP, - ACTIONS(5738), 1, + ACTIONS(5677), 1, anon_sym_PIPE_PIPE, - ACTIONS(5740), 1, + ACTIONS(5679), 1, anon_sym_GT_GT, - ACTIONS(5744), 1, + ACTIONS(5683), 1, anon_sym_AMP, - ACTIONS(5746), 1, + ACTIONS(5685), 1, anon_sym_CARET, - ACTIONS(5748), 1, + ACTIONS(5687), 1, anon_sym_PIPE, - ACTIONS(5752), 1, + ACTIONS(5691), 1, anon_sym_PERCENT, - ACTIONS(5754), 1, + ACTIONS(5693), 1, anon_sym_STAR_STAR, - ACTIONS(5756), 1, + ACTIONS(5695), 1, anon_sym_LT, - ACTIONS(5764), 1, + ACTIONS(5703), 1, anon_sym_QMARK_QMARK, - ACTIONS(5766), 1, + ACTIONS(5705), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4544), 2, - anon_sym_of, + ACTIONS(4708), 2, + anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(5732), 2, + ACTIONS(5671), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5734), 2, + ACTIONS(5673), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5742), 2, + ACTIONS(5681), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5750), 2, + ACTIONS(5689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5760), 2, + ACTIONS(5699), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5762), 2, + ACTIONS(5701), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5758), 3, + ACTIONS(5697), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [94102] = 7, - ACTIONS(3450), 1, - anon_sym_EQ, - ACTIONS(4123), 1, - anon_sym_extends, + [92448] = 11, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(5716), 1, + anon_sym_LT, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4712), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4715), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3448), 11, + ACTIONS(4414), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 23, + ACTIONS(4416), 20, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -217844,81 +214887,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [94159] = 4, + [92513] = 31, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, + anon_sym_LBRACK, + ACTIONS(4539), 1, + anon_sym_DOT, + ACTIONS(4842), 1, + anon_sym_as, + ACTIONS(4844), 1, + anon_sym_BANG, + ACTIONS(4849), 1, + anon_sym_satisfies, + ACTIONS(5261), 1, + anon_sym_AMP_AMP, + ACTIONS(5263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5265), 1, + anon_sym_GT_GT, + ACTIONS(5269), 1, + anon_sym_AMP, + ACTIONS(5271), 1, + anon_sym_CARET, + ACTIONS(5273), 1, + anon_sym_PIPE, + ACTIONS(5277), 1, + anon_sym_PERCENT, + ACTIONS(5279), 1, + anon_sym_STAR_STAR, + ACTIONS(5281), 1, + anon_sym_LT, + ACTIONS(5289), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5291), 1, + sym__ternary_qmark, + STATE(1976), 1, + sym_type_arguments, + STATE(2240), 1, + sym_arguments, + STATE(4753), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4181), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4369), 13, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5166), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5257), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5259), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5267), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5275), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4371), 25, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - 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, + ACTIONS(5287), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5283), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [94210] = 8, - ACTIONS(2291), 1, + [92618] = 13, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(697), 1, + anon_sym_RBRACE, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(4736), 1, anon_sym_LBRACK, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5214), 2, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - STATE(3775), 3, + STATE(3887), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3758), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -217942,225 +215017,476 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [94269] = 4, + [92687] = 4, + ACTIONS(4941), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1973), 6, + ACTIONS(4937), 17, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3791), 11, - sym__automatic_semicolon, - anon_sym_EQ, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_instanceof, + anon_sym_satisfies, + anon_sym_implements, + ACTIONS(4939), 22, + sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + 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_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [92738] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, anon_sym_BANG, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(5723), 1, + anon_sym_AMP_AMP, + ACTIONS(5725), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5727), 1, + anon_sym_GT_GT, + ACTIONS(5731), 1, + anon_sym_AMP, + ACTIONS(5733), 1, + anon_sym_CARET, + ACTIONS(5735), 1, + anon_sym_PIPE, + ACTIONS(5739), 1, + anon_sym_PERCENT, + ACTIONS(5741), 1, + anon_sym_STAR_STAR, + ACTIONS(5743), 1, + anon_sym_LT, + ACTIONS(5751), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5753), 1, + sym__ternary_qmark, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4455), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5719), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5721), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5729), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5737), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5747), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5749), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5745), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [92843] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(5723), 1, + anon_sym_AMP_AMP, + ACTIONS(5725), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5727), 1, + anon_sym_GT_GT, + ACTIONS(5731), 1, + anon_sym_AMP, + ACTIONS(5733), 1, + anon_sym_CARET, + ACTIONS(5735), 1, + anon_sym_PIPE, + ACTIONS(5739), 1, + anon_sym_PERCENT, + ACTIONS(5741), 1, + anon_sym_STAR_STAR, + ACTIONS(5743), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1971), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [94320] = 31, - ACTIONS(4425), 1, + ACTIONS(5751), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5753), 1, + sym__ternary_qmark, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4501), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(5719), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5721), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5729), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5737), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5747), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5749), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5745), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [92948] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(5723), 1, + anon_sym_AMP_AMP, + ACTIONS(5725), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5727), 1, + anon_sym_GT_GT, + ACTIONS(5731), 1, + anon_sym_AMP, + ACTIONS(5733), 1, + anon_sym_CARET, + ACTIONS(5735), 1, + anon_sym_PIPE, + ACTIONS(5739), 1, + anon_sym_PERCENT, + ACTIONS(5741), 1, + anon_sym_STAR_STAR, + ACTIONS(5743), 1, + anon_sym_LT, + ACTIONS(5751), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5753), 1, + sym__ternary_qmark, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4519), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(5719), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5721), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5729), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5737), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5747), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5749), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5745), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [93053] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4826), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, anon_sym_as, - ACTIONS(4828), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4833), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(5270), 1, + ACTIONS(5723), 1, anon_sym_AMP_AMP, - ACTIONS(5272), 1, + ACTIONS(5725), 1, anon_sym_PIPE_PIPE, - ACTIONS(5274), 1, + ACTIONS(5727), 1, anon_sym_GT_GT, - ACTIONS(5278), 1, + ACTIONS(5731), 1, anon_sym_AMP, - ACTIONS(5280), 1, + ACTIONS(5733), 1, anon_sym_CARET, - ACTIONS(5282), 1, + ACTIONS(5735), 1, anon_sym_PIPE, - ACTIONS(5286), 1, + ACTIONS(5739), 1, anon_sym_PERCENT, - ACTIONS(5288), 1, + ACTIONS(5741), 1, anon_sym_STAR_STAR, - ACTIONS(5290), 1, + ACTIONS(5743), 1, anon_sym_LT, - ACTIONS(5298), 1, + ACTIONS(5751), 1, anon_sym_QMARK_QMARK, - ACTIONS(5300), 1, + ACTIONS(5753), 1, sym__ternary_qmark, - STATE(1945), 1, + STATE(1533), 1, sym_type_arguments, - STATE(2355), 1, + STATE(1614), 1, sym_arguments, - STATE(5093), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4820), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5266), 2, + ACTIONS(4577), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(5719), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5268), 2, + ACTIONS(5721), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5276), 2, + ACTIONS(5729), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5284), 2, + ACTIONS(5737), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5294), 2, + ACTIONS(5747), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5296), 2, + ACTIONS(5749), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5771), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5292), 3, + ACTIONS(5745), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [94425] = 8, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(4471), 1, + [93158] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(5723), 1, + anon_sym_AMP_AMP, + ACTIONS(5725), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5727), 1, + anon_sym_GT_GT, + ACTIONS(5731), 1, + anon_sym_AMP, + ACTIONS(5733), 1, + anon_sym_CARET, + ACTIONS(5735), 1, + anon_sym_PIPE, + ACTIONS(5739), 1, + anon_sym_PERCENT, + ACTIONS(5741), 1, + anon_sym_STAR_STAR, + ACTIONS(5743), 1, + anon_sym_LT, + ACTIONS(5751), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5753), 1, + sym__ternary_qmark, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4893), 2, - sym_number, - sym_private_property_identifier, - STATE(3420), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 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(3651), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [94484] = 12, - ACTIONS(3959), 1, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4581), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(5719), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5721), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5729), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5737), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5747), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5749), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5745), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [93263] = 18, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5773), 1, + ACTIONS(5727), 1, + anon_sym_GT_GT, + ACTIONS(5739), 1, + anon_sym_PERCENT, + ACTIONS(5741), 1, + anon_sym_STAR_STAR, + ACTIONS(5743), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4736), 12, + ACTIONS(5719), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5729), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5737), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4585), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4738), 18, + ACTIONS(4583), 14, sym__ternary_qmark, anon_sym_as, anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -218169,37 +215495,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [94551] = 15, - ACTIONS(3959), 1, + [93342] = 13, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5776), 1, + ACTIONS(5741), 1, + anon_sym_STAR_STAR, + ACTIONS(5755), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4616), 11, + ACTIONS(4585), 12, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -218210,8 +215533,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4618), 16, + ACTIONS(4583), 17, sym__ternary_qmark, + anon_sym_as, anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -218219,7 +215543,6 @@ static const 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, @@ -218227,114 +215550,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [94624] = 31, - ACTIONS(3959), 1, + anon_sym_satisfies, + [93411] = 25, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5736), 1, - anon_sym_AMP_AMP, - ACTIONS(5738), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5740), 1, + ACTIONS(4585), 1, + anon_sym_BANG, + ACTIONS(5727), 1, anon_sym_GT_GT, - ACTIONS(5744), 1, + ACTIONS(5731), 1, anon_sym_AMP, - ACTIONS(5746), 1, + ACTIONS(5733), 1, anon_sym_CARET, - ACTIONS(5748), 1, + ACTIONS(5735), 1, anon_sym_PIPE, - ACTIONS(5752), 1, + ACTIONS(5739), 1, anon_sym_PERCENT, - ACTIONS(5754), 1, + ACTIONS(5741), 1, anon_sym_STAR_STAR, - ACTIONS(5756), 1, + ACTIONS(5743), 1, anon_sym_LT, - ACTIONS(5764), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5766), 1, - sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4651), 2, + ACTIONS(5719), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5721), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5729), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5737), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5747), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5749), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5745), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4583), 8, + sym__ternary_qmark, + anon_sym_as, anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - ACTIONS(5732), 2, + anon_sym_satisfies, + [93504] = 26, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4585), 1, + anon_sym_BANG, + ACTIONS(5723), 1, + anon_sym_AMP_AMP, + ACTIONS(5727), 1, + anon_sym_GT_GT, + ACTIONS(5731), 1, + anon_sym_AMP, + ACTIONS(5733), 1, + anon_sym_CARET, + ACTIONS(5735), 1, + anon_sym_PIPE, + ACTIONS(5739), 1, + anon_sym_PERCENT, + ACTIONS(5741), 1, + anon_sym_STAR_STAR, + ACTIONS(5743), 1, + anon_sym_LT, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5719), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5734), 2, + ACTIONS(5721), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5742), 2, + ACTIONS(5729), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5750), 2, + ACTIONS(5737), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5760), 2, + ACTIONS(5747), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5762), 2, + ACTIONS(5749), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5758), 3, + ACTIONS(5745), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [94729] = 11, - ACTIONS(3959), 1, + ACTIONS(4583), 7, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [93599] = 16, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5779), 1, + ACTIONS(5739), 1, + anon_sym_PERCENT, + ACTIONS(5741), 1, + anon_sym_STAR_STAR, + ACTIONS(5755), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4695), 12, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5719), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5737), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4585), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4697), 20, + ACTIONS(4583), 16, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -218343,1001 +215739,1078 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_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_satisfies, - [94794] = 31, - ACTIONS(3959), 1, + [93674] = 22, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5622), 1, + ACTIONS(5727), 1, anon_sym_GT_GT, - ACTIONS(5628), 1, + ACTIONS(5739), 1, anon_sym_PERCENT, - ACTIONS(5630), 1, + ACTIONS(5741), 1, anon_sym_STAR_STAR, - ACTIONS(5632), 1, + ACTIONS(5743), 1, anon_sym_LT, - ACTIONS(5640), 1, - anon_sym_AMP, - ACTIONS(5642), 1, - anon_sym_CARET, - ACTIONS(5647), 1, - anon_sym_AMP_AMP, - ACTIONS(5649), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5651), 1, - anon_sym_PIPE, - ACTIONS(5653), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5655), 1, - sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4548), 2, - anon_sym_RBRACK, - anon_sym_BQUOTE, - ACTIONS(5618), 2, + ACTIONS(5719), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5620), 2, + ACTIONS(5721), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5624), 2, + ACTIONS(5729), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5626), 2, + ACTIONS(5737), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5636), 2, + ACTIONS(5747), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5638), 2, + ACTIONS(5749), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5634), 3, + ACTIONS(4585), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5745), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [94899] = 31, - ACTIONS(3959), 1, + ACTIONS(4583), 9, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [93761] = 23, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5622), 1, + ACTIONS(5727), 1, anon_sym_GT_GT, - ACTIONS(5628), 1, + ACTIONS(5731), 1, + anon_sym_AMP, + ACTIONS(5739), 1, anon_sym_PERCENT, - ACTIONS(5630), 1, + ACTIONS(5741), 1, anon_sym_STAR_STAR, - ACTIONS(5632), 1, + ACTIONS(5743), 1, anon_sym_LT, - ACTIONS(5640), 1, - anon_sym_AMP, - ACTIONS(5642), 1, - anon_sym_CARET, - ACTIONS(5647), 1, - anon_sym_AMP_AMP, - ACTIONS(5649), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5651), 1, - anon_sym_PIPE, - ACTIONS(5653), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5655), 1, - sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4734), 2, - anon_sym_RBRACK, - anon_sym_BQUOTE, - ACTIONS(5618), 2, + ACTIONS(4585), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5719), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5620), 2, + ACTIONS(5721), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5624), 2, + ACTIONS(5729), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5626), 2, + ACTIONS(5737), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5636), 2, + ACTIONS(5747), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5638), 2, + ACTIONS(5749), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5634), 3, + ACTIONS(5745), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [95004] = 31, - ACTIONS(3959), 1, + ACTIONS(4583), 9, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [93850] = 24, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5622), 1, + ACTIONS(5727), 1, anon_sym_GT_GT, - ACTIONS(5628), 1, + ACTIONS(5731), 1, + anon_sym_AMP, + ACTIONS(5733), 1, + anon_sym_CARET, + ACTIONS(5739), 1, anon_sym_PERCENT, - ACTIONS(5630), 1, + ACTIONS(5741), 1, anon_sym_STAR_STAR, - ACTIONS(5632), 1, + ACTIONS(5743), 1, anon_sym_LT, - ACTIONS(5640), 1, - anon_sym_AMP, - ACTIONS(5642), 1, - anon_sym_CARET, - ACTIONS(5647), 1, - anon_sym_AMP_AMP, - ACTIONS(5649), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5651), 1, - anon_sym_PIPE, - ACTIONS(5653), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5655), 1, - sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4708), 2, - anon_sym_RBRACK, - anon_sym_BQUOTE, - ACTIONS(5618), 2, + ACTIONS(4585), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5719), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5620), 2, + ACTIONS(5721), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5624), 2, + ACTIONS(5729), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5626), 2, + ACTIONS(5737), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5636), 2, + ACTIONS(5747), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5638), 2, + ACTIONS(5749), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5634), 3, + ACTIONS(5745), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [95109] = 7, - ACTIONS(3608), 1, - anon_sym_EQ, - ACTIONS(4712), 1, + ACTIONS(4583), 8, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [93941] = 15, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(5739), 1, + anon_sym_PERCENT, + ACTIONS(5741), 1, + anon_sym_STAR_STAR, + ACTIONS(5755), 1, + anon_sym_LT, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4715), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3448), 10, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5719), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4585), 10, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 23, + ACTIONS(4583), 16, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [95166] = 7, - ACTIONS(3620), 1, - anon_sym_EQ, - ACTIONS(4712), 1, + [94014] = 16, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(5741), 1, + anon_sym_STAR_STAR, + ACTIONS(5755), 1, + anon_sym_LT, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4715), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3448), 10, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4585), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 23, + ACTIONS(4583), 15, sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, anon_sym_of, - 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_satisfies, - [95223] = 31, - ACTIONS(3959), 1, + [94089] = 20, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5622), 1, + ACTIONS(5727), 1, anon_sym_GT_GT, - ACTIONS(5628), 1, + ACTIONS(5739), 1, anon_sym_PERCENT, - ACTIONS(5630), 1, + ACTIONS(5741), 1, anon_sym_STAR_STAR, - ACTIONS(5632), 1, + ACTIONS(5743), 1, anon_sym_LT, - ACTIONS(5640), 1, - anon_sym_AMP, - ACTIONS(5642), 1, - anon_sym_CARET, - ACTIONS(5647), 1, - anon_sym_AMP_AMP, - ACTIONS(5649), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5651), 1, - anon_sym_PIPE, - ACTIONS(5653), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5655), 1, - sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4710), 2, - anon_sym_RBRACK, - anon_sym_BQUOTE, - ACTIONS(5618), 2, + ACTIONS(5719), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5620), 2, + ACTIONS(5721), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5624), 2, + ACTIONS(5729), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5626), 2, + ACTIONS(5737), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5636), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5638), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5634), 3, + ACTIONS(5745), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [95328] = 4, - ACTIONS(3592), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3448), 13, - anon_sym_STAR, + ACTIONS(4585), 5, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 26, + ACTIONS(4583), 11, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [94172] = 27, + ACTIONS(3938), 1, anon_sym_LPAREN, + ACTIONS(3940), 1, anon_sym_LBRACK, + ACTIONS(3942), 1, anon_sym_DOT, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, + ACTIONS(4585), 1, + anon_sym_BANG, + ACTIONS(5723), 1, anon_sym_AMP_AMP, + ACTIONS(5725), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5727), 1, + anon_sym_GT_GT, + ACTIONS(5731), 1, + anon_sym_AMP, + ACTIONS(5733), 1, anon_sym_CARET, + ACTIONS(5735), 1, + anon_sym_PIPE, + ACTIONS(5739), 1, anon_sym_PERCENT, + ACTIONS(5741), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [95379] = 7, - ACTIONS(4045), 1, - anon_sym_QMARK, - ACTIONS(4047), 1, - anon_sym_extends, + ACTIONS(5743), 1, + anon_sym_LT, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4725), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4722), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(3448), 11, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5719), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5721), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5729), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5737), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5747), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - 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, + ACTIONS(5749), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5745), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4583), 6, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [95436] = 31, - ACTIONS(3959), 1, + [94269] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(5622), 1, + ACTIONS(5723), 1, + anon_sym_AMP_AMP, + ACTIONS(5725), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5727), 1, anon_sym_GT_GT, - ACTIONS(5628), 1, - anon_sym_PERCENT, - ACTIONS(5630), 1, - anon_sym_STAR_STAR, - ACTIONS(5632), 1, - anon_sym_LT, - ACTIONS(5640), 1, + ACTIONS(5731), 1, anon_sym_AMP, - ACTIONS(5642), 1, + ACTIONS(5733), 1, anon_sym_CARET, - ACTIONS(5647), 1, - anon_sym_AMP_AMP, - ACTIONS(5649), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5651), 1, + ACTIONS(5735), 1, anon_sym_PIPE, - ACTIONS(5653), 1, + ACTIONS(5739), 1, + anon_sym_PERCENT, + ACTIONS(5741), 1, + anon_sym_STAR_STAR, + ACTIONS(5743), 1, + anon_sym_LT, + ACTIONS(5751), 1, anon_sym_QMARK_QMARK, - ACTIONS(5655), 1, + ACTIONS(5753), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4610), 2, - anon_sym_RBRACK, + ACTIONS(4642), 2, + anon_sym_of, anon_sym_BQUOTE, - ACTIONS(5618), 2, + ACTIONS(5719), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5620), 2, + ACTIONS(5721), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5624), 2, + ACTIONS(5729), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5626), 2, + ACTIONS(5737), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5636), 2, + ACTIONS(5747), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5638), 2, + ACTIONS(5749), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5634), 3, + ACTIONS(5745), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [95541] = 18, - ACTIONS(3959), 1, + [94374] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5622), 1, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(5723), 1, + anon_sym_AMP_AMP, + ACTIONS(5725), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5727), 1, anon_sym_GT_GT, - ACTIONS(5628), 1, + ACTIONS(5731), 1, + anon_sym_AMP, + ACTIONS(5733), 1, + anon_sym_CARET, + ACTIONS(5735), 1, + anon_sym_PIPE, + ACTIONS(5739), 1, anon_sym_PERCENT, - ACTIONS(5630), 1, + ACTIONS(5741), 1, anon_sym_STAR_STAR, - ACTIONS(5632), 1, + ACTIONS(5743), 1, anon_sym_LT, - STATE(1603), 1, + ACTIONS(5751), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5753), 1, + sym__ternary_qmark, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5618), 2, + ACTIONS(4648), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(5719), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5624), 2, + ACTIONS(5721), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5729), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5626), 2, + ACTIONS(5737), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4483), 7, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5747), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 14, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(5749), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5745), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - anon_sym_satisfies, - [95620] = 13, - ACTIONS(3959), 1, + [94479] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5630), 1, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(5723), 1, + anon_sym_AMP_AMP, + ACTIONS(5725), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5727), 1, + anon_sym_GT_GT, + ACTIONS(5731), 1, + anon_sym_AMP, + ACTIONS(5733), 1, + anon_sym_CARET, + ACTIONS(5735), 1, + anon_sym_PIPE, + ACTIONS(5739), 1, + anon_sym_PERCENT, + ACTIONS(5741), 1, anon_sym_STAR_STAR, - ACTIONS(5644), 1, + ACTIONS(5743), 1, anon_sym_LT, - STATE(1603), 1, + ACTIONS(5751), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5753), 1, + sym__ternary_qmark, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4483), 12, + ACTIONS(4716), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(5719), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5721), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5729), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5737), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5747), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 17, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, + ACTIONS(5749), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5745), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - anon_sym_satisfies, - [95689] = 25, - ACTIONS(3959), 1, + [94584] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4483), 1, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(5622), 1, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(5723), 1, + anon_sym_AMP_AMP, + ACTIONS(5725), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5727), 1, anon_sym_GT_GT, - ACTIONS(5628), 1, - anon_sym_PERCENT, - ACTIONS(5630), 1, - anon_sym_STAR_STAR, - ACTIONS(5632), 1, - anon_sym_LT, - ACTIONS(5640), 1, + ACTIONS(5731), 1, anon_sym_AMP, - ACTIONS(5642), 1, + ACTIONS(5733), 1, anon_sym_CARET, - ACTIONS(5651), 1, + ACTIONS(5735), 1, anon_sym_PIPE, - STATE(1603), 1, + ACTIONS(5739), 1, + anon_sym_PERCENT, + ACTIONS(5741), 1, + anon_sym_STAR_STAR, + ACTIONS(5743), 1, + anon_sym_LT, + ACTIONS(5751), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5753), 1, + sym__ternary_qmark, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5618), 2, + ACTIONS(4728), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(5719), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5620), 2, + ACTIONS(5721), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5624), 2, + ACTIONS(5729), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5626), 2, + ACTIONS(5737), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5636), 2, + ACTIONS(5747), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5638), 2, + ACTIONS(5749), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5634), 3, + ACTIONS(5745), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 8, - sym__ternary_qmark, + [94689] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, anon_sym_as, - anon_sym_RBRACK, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(5723), 1, anon_sym_AMP_AMP, + ACTIONS(5725), 1, anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [95782] = 13, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(5064), 1, - anon_sym_RBRACE, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2301), 2, - sym_number, - sym_private_property_identifier, - STATE(3922), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 4, - anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(5727), 1, + anon_sym_GT_GT, + ACTIONS(5731), 1, + anon_sym_AMP, + ACTIONS(5733), 1, + anon_sym_CARET, + ACTIONS(5735), 1, + anon_sym_PIPE, + ACTIONS(5739), 1, + anon_sym_PERCENT, + ACTIONS(5741), 1, + anon_sym_STAR_STAR, + ACTIONS(5743), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2323), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [95851] = 4, + ACTIONS(5751), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5753), 1, + sym__ternary_qmark, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1847), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5782), 13, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4732), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(5719), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5721), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5729), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5737), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5747), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5785), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5749), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5745), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [94794] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, + ACTIONS(3940), 1, anon_sym_LBRACK, + ACTIONS(3942), 1, anon_sym_DOT, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(5723), 1, anon_sym_AMP_AMP, + ACTIONS(5725), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5727), 1, + anon_sym_GT_GT, + ACTIONS(5731), 1, + anon_sym_AMP, + ACTIONS(5733), 1, anon_sym_CARET, + ACTIONS(5735), 1, + anon_sym_PIPE, + ACTIONS(5739), 1, anon_sym_PERCENT, + ACTIONS(5741), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5743), 1, + anon_sym_LT, + ACTIONS(5751), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [95901] = 4, - ACTIONS(3561), 1, - anon_sym_EQ, + ACTIONS(5753), 1, + sym__ternary_qmark, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3448), 13, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4503), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(5719), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5721), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5729), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5737), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5747), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 25, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, + ACTIONS(5749), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5745), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [94899] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(3940), 1, anon_sym_LBRACK, + ACTIONS(3942), 1, anon_sym_DOT, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(5723), 1, anon_sym_AMP_AMP, + ACTIONS(5725), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5727), 1, + anon_sym_GT_GT, + ACTIONS(5731), 1, + anon_sym_AMP, + ACTIONS(5733), 1, anon_sym_CARET, + ACTIONS(5735), 1, + anon_sym_PIPE, + ACTIONS(5739), 1, anon_sym_PERCENT, + ACTIONS(5741), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5743), 1, + anon_sym_LT, + ACTIONS(5751), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5753), 1, + sym__ternary_qmark, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(4505), 2, + anon_sym_of, anon_sym_BQUOTE, - anon_sym_satisfies, - [95951] = 32, - ACTIONS(3959), 1, + ACTIONS(5719), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5721), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5729), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5737), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5747), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5749), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5745), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [95004] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(5002), 1, - anon_sym_of, - ACTIONS(5734), 1, - anon_sym_GT, - ACTIONS(5736), 1, + ACTIONS(5723), 1, anon_sym_AMP_AMP, - ACTIONS(5738), 1, + ACTIONS(5725), 1, anon_sym_PIPE_PIPE, - ACTIONS(5740), 1, + ACTIONS(5727), 1, anon_sym_GT_GT, - ACTIONS(5744), 1, + ACTIONS(5731), 1, anon_sym_AMP, - ACTIONS(5746), 1, + ACTIONS(5733), 1, anon_sym_CARET, - ACTIONS(5748), 1, + ACTIONS(5735), 1, anon_sym_PIPE, - ACTIONS(5752), 1, + ACTIONS(5739), 1, anon_sym_PERCENT, - ACTIONS(5754), 1, + ACTIONS(5741), 1, anon_sym_STAR_STAR, - ACTIONS(5756), 1, + ACTIONS(5743), 1, anon_sym_LT, - ACTIONS(5764), 1, + ACTIONS(5751), 1, anon_sym_QMARK_QMARK, - ACTIONS(5766), 1, + ACTIONS(5753), 1, sym__ternary_qmark, - ACTIONS(5788), 1, - anon_sym_in, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5732), 2, + ACTIONS(4734), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(5719), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5742), 2, + ACTIONS(5721), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5729), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5750), 2, + ACTIONS(5737), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5760), 2, + ACTIONS(5747), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5762), 2, + ACTIONS(5749), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5758), 3, + ACTIONS(5745), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [96057] = 4, + [95109] = 12, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(5758), 1, + anon_sym_LT, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4730), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5791), 13, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4674), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -219348,16 +216821,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5794), 23, + ACTIONS(4676), 18, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -219371,125 +216840,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [96107] = 11, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(3673), 1, - anon_sym_override, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(5797), 1, - anon_sym_readonly, - STATE(2814), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4893), 2, - sym_number, - sym_private_property_identifier, - STATE(3420), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3651), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - 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, - anon_sym_object, - [96171] = 9, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(4471), 1, + [95176] = 15, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(4901), 1, - anon_sym_abstract, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4893), 2, - sym_number, - sym_private_property_identifier, - STATE(3420), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3651), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [96231] = 4, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(5761), 1, + anon_sym_LT, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1893), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5799), 13, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4697), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -219498,46 +216881,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5802), 23, + ACTIONS(4699), 16, sym__ternary_qmark, - anon_sym_as, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [95249] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, + ACTIONS(3940), 1, anon_sym_LBRACK, + ACTIONS(3942), 1, anon_sym_DOT, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(5723), 1, anon_sym_AMP_AMP, + ACTIONS(5725), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5727), 1, + anon_sym_GT_GT, + ACTIONS(5731), 1, + anon_sym_AMP, + ACTIONS(5733), 1, anon_sym_CARET, + ACTIONS(5735), 1, + anon_sym_PIPE, + ACTIONS(5739), 1, anon_sym_PERCENT, + ACTIONS(5741), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5743), 1, + anon_sym_LT, + ACTIONS(5751), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5753), 1, + sym__ternary_qmark, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4708), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(5719), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5721), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5729), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5737), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5747), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5749), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5745), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [96281] = 6, - ACTIONS(3959), 1, + [95354] = 11, + ACTIONS(3938), 1, anon_sym_LPAREN, - STATE(1643), 1, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(5764), 1, + anon_sym_LT, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, sym_arguments, + STATE(5072), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5805), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4397), 13, + ACTIONS(4414), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -219548,15 +217005,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4399), 21, + ACTIONS(4416), 20, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -219572,36 +217026,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [96335] = 6, - ACTIONS(4315), 1, + [95419] = 7, + ACTIONS(3596), 1, anon_sym_EQ, - ACTIONS(4810), 1, - anon_sym_RBRACK, - ACTIONS(4887), 1, - anon_sym_COMMA, + ACTIONS(4606), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4313), 13, + ACTIONS(4146), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4609), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3435), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4317), 23, + ACTIONS(3439), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -219621,35 +217078,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [96389] = 6, - ACTIONS(4659), 1, + [95476] = 7, + ACTIONS(3604), 1, anon_sym_EQ, - ACTIONS(4756), 1, - anon_sym_RBRACK, - ACTIONS(4889), 1, - anon_sym_COMMA, + ACTIONS(4606), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4657), 13, + ACTIONS(4146), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4609), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3435), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4661), 23, + ACTIONS(3439), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_of, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -219669,128 +217128,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [96443] = 6, - ACTIONS(1708), 1, - anon_sym_EQ, - ACTIONS(4751), 1, - anon_sym_RBRACK, - ACTIONS(4891), 1, - anon_sym_COMMA, + [95533] = 31, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, + anon_sym_LBRACK, + ACTIONS(4539), 1, + anon_sym_DOT, + ACTIONS(4842), 1, + anon_sym_as, + ACTIONS(4844), 1, + anon_sym_BANG, + ACTIONS(4849), 1, + anon_sym_satisfies, + ACTIONS(5261), 1, + anon_sym_AMP_AMP, + ACTIONS(5263), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5265), 1, + anon_sym_GT_GT, + ACTIONS(5269), 1, + anon_sym_AMP, + ACTIONS(5271), 1, + anon_sym_CARET, + ACTIONS(5273), 1, + anon_sym_PIPE, + ACTIONS(5277), 1, + anon_sym_PERCENT, + ACTIONS(5279), 1, + anon_sym_STAR_STAR, + ACTIONS(5281), 1, + anon_sym_LT, + ACTIONS(5289), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5291), 1, + sym__ternary_qmark, + STATE(1976), 1, + sym_type_arguments, + STATE(2240), 1, + sym_arguments, + STATE(4753), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1706), 13, + ACTIONS(4822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5257), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5259), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5267), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5275), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5285), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1710), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5287), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5767), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5283), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [95638] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, + ACTIONS(3940), 1, anon_sym_LBRACK, + ACTIONS(3942), 1, anon_sym_DOT, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(4505), 1, + anon_sym_BQUOTE, + ACTIONS(5773), 1, anon_sym_AMP_AMP, + ACTIONS(5775), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5777), 1, + anon_sym_GT_GT, + ACTIONS(5781), 1, + anon_sym_AMP, + ACTIONS(5783), 1, anon_sym_CARET, + ACTIONS(5785), 1, + anon_sym_PIPE, + ACTIONS(5789), 1, anon_sym_PERCENT, + ACTIONS(5791), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5793), 1, + anon_sym_LT, + ACTIONS(5801), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [96497] = 3, + ACTIONS(5803), 1, + sym__ternary_qmark, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3177), 12, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5769), 2, anon_sym_STAR, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_AMP, - anon_sym_PIPE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_QMARK, - ACTIONS(3175), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_DOT, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - anon_sym_extends, - [96545] = 6, - ACTIONS(4722), 1, - anon_sym_LBRACK, + anon_sym_SLASH, + ACTIONS(5771), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5779), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5787), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5797), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5799), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5795), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [95742] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4725), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4047), 3, + ACTIONS(1865), 3, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3448), 11, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(5805), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 22, + ACTIONS(5808), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -219810,107 +217321,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [96599] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3173), 12, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_AMP, - anon_sym_PIPE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_QMARK, - ACTIONS(3171), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_DOT, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - anon_sym_extends, - [96647] = 6, - ACTIONS(4469), 1, - anon_sym_EQ, + [95792] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4003), 2, + ACTIONS(4724), 3, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2007), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2005), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [96701] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4165), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4369), 13, + ACTIONS(5811), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -219924,12 +217343,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4371), 24, + ACTIONS(5814), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -219949,174 +217367,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [96751] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3169), 12, - anon_sym_STAR, - anon_sym_COMMA, + [95842] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(5421), 1, + anon_sym_AMP_AMP, + ACTIONS(5423), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5425), 1, + anon_sym_GT_GT, + ACTIONS(5429), 1, anon_sym_AMP, + ACTIONS(5431), 1, + anon_sym_CARET, + ACTIONS(5433), 1, anon_sym_PIPE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_QMARK, - ACTIONS(3167), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_DOT, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - anon_sym_extends, - [96799] = 4, + ACTIONS(5437), 1, + anon_sym_PERCENT, + ACTIONS(5439), 1, + anon_sym_STAR_STAR, + ACTIONS(5441), 1, + anon_sym_LT, + ACTIONS(5449), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5451), 1, + sym__ternary_qmark, + ACTIONS(5817), 1, + anon_sym_COLON, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4181), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4369), 13, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5417), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5419), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5427), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5445), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4371), 24, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5447), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5443), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [95946] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, + ACTIONS(3940), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(3942), 1, anon_sym_DOT, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(5675), 1, anon_sym_AMP_AMP, + ACTIONS(5677), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5679), 1, + anon_sym_GT_GT, + ACTIONS(5683), 1, + anon_sym_AMP, + ACTIONS(5685), 1, anon_sym_CARET, + ACTIONS(5687), 1, + anon_sym_PIPE, + ACTIONS(5691), 1, anon_sym_PERCENT, + ACTIONS(5693), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5695), 1, + anon_sym_LT, + ACTIONS(5703), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5705), 1, + sym__ternary_qmark, + ACTIONS(5819), 1, + anon_sym_RBRACK, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5671), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5673), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5681), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5689), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5699), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5701), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5697), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [96849] = 6, - ACTIONS(4469), 1, - anon_sym_EQ, + [96050] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4003), 2, + ACTIONS(4660), 3, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1973), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1971), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [96903] = 6, - ACTIONS(4047), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4722), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4725), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3448), 11, + ACTIONS(5821), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 23, + ACTIONS(5824), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -220136,35 +217559,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [96957] = 6, - ACTIONS(4712), 1, - anon_sym_LBRACK, + [96100] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4715), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4123), 3, + ACTIONS(4138), 2, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_extends, - ACTIONS(3448), 11, + ACTIONS(4082), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 22, + ACTIONS(4084), 24, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -220184,604 +217605,558 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [97011] = 6, - ACTIONS(4743), 1, + [96150] = 15, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(2318), 1, + anon_sym_readonly, + ACTIONS(2322), 1, + anon_sym_override, + ACTIONS(4736), 1, anon_sym_LBRACK, + ACTIONS(4965), 1, + anon_sym_STAR, + STATE(2756), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4746), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4127), 3, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5827), 2, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4702), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + anon_sym_RBRACE, + STATE(3887), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 4, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4704), 22, - sym__ternary_qmark, - anon_sym_as, + anon_sym_QMARK, + ACTIONS(2314), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + 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, + anon_sym_object, + [96222] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, anon_sym_DOT, + ACTIONS(4418), 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, + ACTIONS(4455), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - [97065] = 31, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, + ACTIONS(4459), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(5456), 1, + ACTIONS(5773), 1, anon_sym_AMP_AMP, - ACTIONS(5458), 1, + ACTIONS(5775), 1, anon_sym_PIPE_PIPE, - ACTIONS(5460), 1, + ACTIONS(5777), 1, anon_sym_GT_GT, - ACTIONS(5464), 1, + ACTIONS(5781), 1, anon_sym_AMP, - ACTIONS(5466), 1, + ACTIONS(5783), 1, anon_sym_CARET, - ACTIONS(5468), 1, + ACTIONS(5785), 1, anon_sym_PIPE, - ACTIONS(5472), 1, + ACTIONS(5789), 1, anon_sym_PERCENT, - ACTIONS(5474), 1, + ACTIONS(5791), 1, anon_sym_STAR_STAR, - ACTIONS(5476), 1, + ACTIONS(5793), 1, anon_sym_LT, - ACTIONS(5484), 1, + ACTIONS(5801), 1, anon_sym_QMARK_QMARK, - ACTIONS(5486), 1, + ACTIONS(5803), 1, sym__ternary_qmark, - ACTIONS(5807), 1, - anon_sym_COLON, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(5769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5454), 2, + ACTIONS(5771), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5462), 2, + ACTIONS(5779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5470), 2, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5480), 2, + ACTIONS(5797), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5482), 2, + ACTIONS(5799), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5478), 3, + ACTIONS(5795), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [97169] = 31, - ACTIONS(3959), 1, + [96326] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(5622), 1, + ACTIONS(4501), 1, + anon_sym_BQUOTE, + ACTIONS(5773), 1, + anon_sym_AMP_AMP, + ACTIONS(5775), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5777), 1, anon_sym_GT_GT, - ACTIONS(5628), 1, - anon_sym_PERCENT, - ACTIONS(5630), 1, - anon_sym_STAR_STAR, - ACTIONS(5632), 1, - anon_sym_LT, - ACTIONS(5640), 1, + ACTIONS(5781), 1, anon_sym_AMP, - ACTIONS(5642), 1, + ACTIONS(5783), 1, anon_sym_CARET, - ACTIONS(5647), 1, - anon_sym_AMP_AMP, - ACTIONS(5649), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5651), 1, + ACTIONS(5785), 1, anon_sym_PIPE, - ACTIONS(5653), 1, + ACTIONS(5789), 1, + anon_sym_PERCENT, + ACTIONS(5791), 1, + anon_sym_STAR_STAR, + ACTIONS(5793), 1, + anon_sym_LT, + ACTIONS(5801), 1, anon_sym_QMARK_QMARK, - ACTIONS(5655), 1, + ACTIONS(5803), 1, sym__ternary_qmark, - ACTIONS(5809), 1, - anon_sym_RBRACK, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5618), 2, + ACTIONS(5769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5620), 2, + ACTIONS(5771), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5624), 2, + ACTIONS(5779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5626), 2, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5636), 2, + ACTIONS(5797), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5638), 2, + ACTIONS(5799), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5634), 3, + ACTIONS(5795), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [97273] = 31, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, + [96430] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3164), 12, + anon_sym_STAR, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4548), 1, - anon_sym_BQUOTE, - ACTIONS(5815), 1, - anon_sym_AMP_AMP, - ACTIONS(5817), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5819), 1, - anon_sym_GT_GT, - ACTIONS(5823), 1, + anon_sym_RBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_AMP, - ACTIONS(5825), 1, - anon_sym_CARET, - ACTIONS(5827), 1, anon_sym_PIPE, - ACTIONS(5831), 1, - anon_sym_PERCENT, - ACTIONS(5833), 1, - anon_sym_STAR_STAR, - ACTIONS(5835), 1, - anon_sym_LT, - ACTIONS(5843), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5845), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_QMARK, + ACTIONS(3162), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_DOT, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + anon_sym_extends, + [96478] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(4088), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4082), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5813), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5829), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5837), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [97377] = 31, - ACTIONS(3959), 1, + ACTIONS(4084), 24, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3961), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4734), 1, - anon_sym_BQUOTE, - ACTIONS(5815), 1, anon_sym_AMP_AMP, - ACTIONS(5817), 1, anon_sym_PIPE_PIPE, - ACTIONS(5819), 1, - anon_sym_GT_GT, - ACTIONS(5823), 1, - anon_sym_AMP, - ACTIONS(5825), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5827), 1, - anon_sym_PIPE, - ACTIONS(5831), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, - anon_sym_LT, - ACTIONS(5843), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5845), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5811), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5813), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5821), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5829), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5839), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5841), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5837), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [97481] = 31, - ACTIONS(3959), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [96528] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4708), 1, + ACTIONS(4519), 1, anon_sym_BQUOTE, - ACTIONS(5815), 1, + ACTIONS(5773), 1, anon_sym_AMP_AMP, - ACTIONS(5817), 1, + ACTIONS(5775), 1, anon_sym_PIPE_PIPE, - ACTIONS(5819), 1, + ACTIONS(5777), 1, anon_sym_GT_GT, - ACTIONS(5823), 1, + ACTIONS(5781), 1, anon_sym_AMP, - ACTIONS(5825), 1, + ACTIONS(5783), 1, anon_sym_CARET, - ACTIONS(5827), 1, + ACTIONS(5785), 1, anon_sym_PIPE, - ACTIONS(5831), 1, + ACTIONS(5789), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, + ACTIONS(5791), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, + ACTIONS(5793), 1, anon_sym_LT, - ACTIONS(5843), 1, + ACTIONS(5801), 1, anon_sym_QMARK_QMARK, - ACTIONS(5845), 1, + ACTIONS(5803), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(5769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5813), 2, + ACTIONS(5771), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, + ACTIONS(5779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5829), 2, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + ACTIONS(5797), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, + ACTIONS(5799), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5837), 3, + ACTIONS(5795), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [97585] = 31, - ACTIONS(3959), 1, + [96632] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4710), 1, + ACTIONS(4577), 1, anon_sym_BQUOTE, - ACTIONS(5815), 1, + ACTIONS(5773), 1, anon_sym_AMP_AMP, - ACTIONS(5817), 1, + ACTIONS(5775), 1, anon_sym_PIPE_PIPE, - ACTIONS(5819), 1, + ACTIONS(5777), 1, anon_sym_GT_GT, - ACTIONS(5823), 1, + ACTIONS(5781), 1, anon_sym_AMP, - ACTIONS(5825), 1, + ACTIONS(5783), 1, anon_sym_CARET, - ACTIONS(5827), 1, + ACTIONS(5785), 1, anon_sym_PIPE, - ACTIONS(5831), 1, + ACTIONS(5789), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, + ACTIONS(5791), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, + ACTIONS(5793), 1, anon_sym_LT, - ACTIONS(5843), 1, + ACTIONS(5801), 1, anon_sym_QMARK_QMARK, - ACTIONS(5845), 1, + ACTIONS(5803), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(5769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5813), 2, + ACTIONS(5771), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, + ACTIONS(5779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5829), 2, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + ACTIONS(5797), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, + ACTIONS(5799), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5837), 3, + ACTIONS(5795), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [97689] = 31, - ACTIONS(3959), 1, + [96736] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4610), 1, + ACTIONS(4581), 1, anon_sym_BQUOTE, - ACTIONS(5815), 1, + ACTIONS(5773), 1, anon_sym_AMP_AMP, - ACTIONS(5817), 1, + ACTIONS(5775), 1, anon_sym_PIPE_PIPE, - ACTIONS(5819), 1, + ACTIONS(5777), 1, anon_sym_GT_GT, - ACTIONS(5823), 1, + ACTIONS(5781), 1, anon_sym_AMP, - ACTIONS(5825), 1, + ACTIONS(5783), 1, anon_sym_CARET, - ACTIONS(5827), 1, + ACTIONS(5785), 1, anon_sym_PIPE, - ACTIONS(5831), 1, + ACTIONS(5789), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, + ACTIONS(5791), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, + ACTIONS(5793), 1, anon_sym_LT, - ACTIONS(5843), 1, + ACTIONS(5801), 1, anon_sym_QMARK_QMARK, - ACTIONS(5845), 1, + ACTIONS(5803), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(5769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5813), 2, + ACTIONS(5771), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, + ACTIONS(5779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5829), 2, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + ACTIONS(5797), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, + ACTIONS(5799), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5837), 3, + ACTIONS(5795), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [97793] = 18, - ACTIONS(3959), 1, + [96840] = 18, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5819), 1, + ACTIONS(5777), 1, anon_sym_GT_GT, - ACTIONS(5831), 1, + ACTIONS(5789), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, + ACTIONS(5791), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, + ACTIONS(5793), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(5769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5821), 2, + ACTIONS(5779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5829), 2, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4483), 7, + ACTIONS(4585), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -220789,7 +218164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 13, + ACTIONS(4583), 13, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, @@ -220803,32 +218178,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [97871] = 13, - ACTIONS(3959), 1, + [96918] = 13, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5833), 1, + ACTIONS(5791), 1, anon_sym_STAR_STAR, - ACTIONS(5847), 1, + ACTIONS(5829), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4483), 12, + ACTIONS(4585), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -220841,7 +218216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 16, + ACTIONS(4583), 16, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, @@ -220858,66 +218233,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [97939] = 25, - ACTIONS(3959), 1, + [96986] = 25, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4483), 1, + ACTIONS(4585), 1, anon_sym_BANG, - ACTIONS(5819), 1, + ACTIONS(5777), 1, anon_sym_GT_GT, - ACTIONS(5823), 1, + ACTIONS(5781), 1, anon_sym_AMP, - ACTIONS(5825), 1, + ACTIONS(5783), 1, anon_sym_CARET, - ACTIONS(5827), 1, + ACTIONS(5785), 1, anon_sym_PIPE, - ACTIONS(5831), 1, + ACTIONS(5789), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, + ACTIONS(5791), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, + ACTIONS(5793), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(5769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5813), 2, + ACTIONS(5771), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, + ACTIONS(5779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5829), 2, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + ACTIONS(5797), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, + ACTIONS(5799), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5837), 3, + ACTIONS(5795), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 7, + ACTIONS(4583), 7, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, @@ -220925,108 +218300,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [98031] = 26, - ACTIONS(3959), 1, + [97078] = 26, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4483), 1, + ACTIONS(4585), 1, anon_sym_BANG, - ACTIONS(5815), 1, + ACTIONS(5773), 1, anon_sym_AMP_AMP, - ACTIONS(5819), 1, + ACTIONS(5777), 1, anon_sym_GT_GT, - ACTIONS(5823), 1, + ACTIONS(5781), 1, anon_sym_AMP, - ACTIONS(5825), 1, + ACTIONS(5783), 1, anon_sym_CARET, - ACTIONS(5827), 1, + ACTIONS(5785), 1, anon_sym_PIPE, - ACTIONS(5831), 1, + ACTIONS(5789), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, + ACTIONS(5791), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, + ACTIONS(5793), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(5769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5813), 2, + ACTIONS(5771), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, + ACTIONS(5779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5829), 2, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + ACTIONS(5797), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, + ACTIONS(5799), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5837), 3, + ACTIONS(5795), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 6, + ACTIONS(4583), 6, sym__ternary_qmark, anon_sym_as, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [98125] = 16, - ACTIONS(3959), 1, + [97172] = 16, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5831), 1, + ACTIONS(5789), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, + ACTIONS(5791), 1, anon_sym_STAR_STAR, - ACTIONS(5847), 1, + ACTIONS(5829), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(5769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5829), 2, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4483), 8, + ACTIONS(4585), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -221035,7 +218410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 15, + ACTIONS(4583), 15, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, @@ -221051,62 +218426,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [98199] = 22, - ACTIONS(3959), 1, + [97246] = 22, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5819), 1, + ACTIONS(5777), 1, anon_sym_GT_GT, - ACTIONS(5831), 1, + ACTIONS(5789), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, + ACTIONS(5791), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, + ACTIONS(5793), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(5769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5813), 2, + ACTIONS(5771), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, + ACTIONS(5779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5829), 2, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + ACTIONS(5797), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, + ACTIONS(5799), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4483), 3, + ACTIONS(4585), 3, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5837), 3, + ACTIONS(5795), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 8, + ACTIONS(4583), 8, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, @@ -221115,63 +218490,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [98285] = 23, - ACTIONS(3959), 1, + [97332] = 23, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5819), 1, + ACTIONS(5777), 1, anon_sym_GT_GT, - ACTIONS(5823), 1, + ACTIONS(5781), 1, anon_sym_AMP, - ACTIONS(5831), 1, + ACTIONS(5789), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, + ACTIONS(5791), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, + ACTIONS(5793), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4483), 2, + ACTIONS(4585), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(5811), 2, + ACTIONS(5769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5813), 2, + ACTIONS(5771), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, + ACTIONS(5779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5829), 2, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + ACTIONS(5797), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, + ACTIONS(5799), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5837), 3, + ACTIONS(5795), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 8, + ACTIONS(4583), 8, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, @@ -221180,65 +218555,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [98373] = 24, - ACTIONS(3959), 1, + [97420] = 24, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5819), 1, + ACTIONS(5777), 1, anon_sym_GT_GT, - ACTIONS(5823), 1, + ACTIONS(5781), 1, anon_sym_AMP, - ACTIONS(5825), 1, + ACTIONS(5783), 1, anon_sym_CARET, - ACTIONS(5831), 1, + ACTIONS(5789), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, + ACTIONS(5791), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, + ACTIONS(5793), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4483), 2, + ACTIONS(4585), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(5811), 2, + ACTIONS(5769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5813), 2, + ACTIONS(5771), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, + ACTIONS(5779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5829), 2, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + ACTIONS(5797), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, + ACTIONS(5799), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5837), 3, + ACTIONS(5795), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 7, + ACTIONS(4583), 7, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, @@ -221246,37 +218621,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [98463] = 15, - ACTIONS(3959), 1, + [97510] = 15, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5831), 1, + ACTIONS(5789), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, + ACTIONS(5791), 1, anon_sym_STAR_STAR, - ACTIONS(5847), 1, + ACTIONS(5829), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(5769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4483), 10, + ACTIONS(4585), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -221287,7 +218662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 15, + ACTIONS(4583), 15, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, @@ -221303,38 +218678,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [98535] = 16, - ACTIONS(3959), 1, + [97582] = 16, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(5833), 1, + ACTIONS(5791), 1, anon_sym_STAR_STAR, - ACTIONS(5847), 1, + ACTIONS(5829), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4483), 11, + ACTIONS(4585), 11, anon_sym_STAR, anon_sym_in, anon_sym_GT, @@ -221346,7 +218721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 14, + ACTIONS(4583), 14, sym__ternary_qmark, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -221361,58 +218736,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [98609] = 20, - ACTIONS(3959), 1, + [97656] = 20, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5819), 1, + ACTIONS(5777), 1, anon_sym_GT_GT, - ACTIONS(5831), 1, + ACTIONS(5789), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, + ACTIONS(5791), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, + ACTIONS(5793), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(5769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5813), 2, + ACTIONS(5771), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, + ACTIONS(5779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5829), 2, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5837), 3, + ACTIONS(5795), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4483), 5, + ACTIONS(4585), 5, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4481), 10, + ACTIONS(4583), 10, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, @@ -221423,705 +218798,677 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [98691] = 27, - ACTIONS(3959), 1, + [97738] = 27, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4483), 1, + ACTIONS(4585), 1, anon_sym_BANG, - ACTIONS(5815), 1, + ACTIONS(5773), 1, anon_sym_AMP_AMP, - ACTIONS(5817), 1, + ACTIONS(5775), 1, anon_sym_PIPE_PIPE, - ACTIONS(5819), 1, + ACTIONS(5777), 1, anon_sym_GT_GT, - ACTIONS(5823), 1, + ACTIONS(5781), 1, anon_sym_AMP, - ACTIONS(5825), 1, + ACTIONS(5783), 1, anon_sym_CARET, - ACTIONS(5827), 1, + ACTIONS(5785), 1, anon_sym_PIPE, - ACTIONS(5831), 1, + ACTIONS(5789), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, + ACTIONS(5791), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, + ACTIONS(5793), 1, anon_sym_LT, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(5769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5813), 2, + ACTIONS(5771), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, + ACTIONS(5779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5829), 2, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + ACTIONS(5797), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, + ACTIONS(5799), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5837), 3, + ACTIONS(5795), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4481), 5, + ACTIONS(4583), 5, sym__ternary_qmark, anon_sym_as, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [98787] = 31, - ACTIONS(3959), 1, + [97834] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4655), 1, + ACTIONS(4642), 1, anon_sym_BQUOTE, - ACTIONS(5815), 1, + ACTIONS(5773), 1, anon_sym_AMP_AMP, - ACTIONS(5817), 1, + ACTIONS(5775), 1, anon_sym_PIPE_PIPE, - ACTIONS(5819), 1, + ACTIONS(5777), 1, anon_sym_GT_GT, - ACTIONS(5823), 1, + ACTIONS(5781), 1, anon_sym_AMP, - ACTIONS(5825), 1, + ACTIONS(5783), 1, anon_sym_CARET, - ACTIONS(5827), 1, + ACTIONS(5785), 1, anon_sym_PIPE, - ACTIONS(5831), 1, + ACTIONS(5789), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, + ACTIONS(5791), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, + ACTIONS(5793), 1, anon_sym_LT, - ACTIONS(5843), 1, + ACTIONS(5801), 1, anon_sym_QMARK_QMARK, - ACTIONS(5845), 1, + ACTIONS(5803), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(5769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5813), 2, + ACTIONS(5771), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, + ACTIONS(5779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5829), 2, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + ACTIONS(5797), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, + ACTIONS(5799), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5837), 3, + ACTIONS(5795), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [98891] = 31, - ACTIONS(3959), 1, + [97938] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4419), 1, - anon_sym_BQUOTE, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(5815), 1, + ACTIONS(4648), 1, + anon_sym_BQUOTE, + ACTIONS(5773), 1, anon_sym_AMP_AMP, - ACTIONS(5817), 1, + ACTIONS(5775), 1, anon_sym_PIPE_PIPE, - ACTIONS(5819), 1, + ACTIONS(5777), 1, anon_sym_GT_GT, - ACTIONS(5823), 1, + ACTIONS(5781), 1, anon_sym_AMP, - ACTIONS(5825), 1, + ACTIONS(5783), 1, anon_sym_CARET, - ACTIONS(5827), 1, + ACTIONS(5785), 1, anon_sym_PIPE, - ACTIONS(5831), 1, + ACTIONS(5789), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, + ACTIONS(5791), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, + ACTIONS(5793), 1, anon_sym_LT, - ACTIONS(5843), 1, + ACTIONS(5801), 1, anon_sym_QMARK_QMARK, - ACTIONS(5845), 1, + ACTIONS(5803), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(5769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5813), 2, + ACTIONS(5771), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, + ACTIONS(5779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5829), 2, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + ACTIONS(5797), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, + ACTIONS(5799), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5837), 3, + ACTIONS(5795), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [98995] = 31, - ACTIONS(3959), 1, + [98042] = 32, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4584), 1, - anon_sym_BQUOTE, - ACTIONS(5815), 1, + ACTIONS(5012), 1, + anon_sym_of, + ACTIONS(5721), 1, + anon_sym_GT, + ACTIONS(5723), 1, anon_sym_AMP_AMP, - ACTIONS(5817), 1, + ACTIONS(5725), 1, anon_sym_PIPE_PIPE, - ACTIONS(5819), 1, + ACTIONS(5727), 1, anon_sym_GT_GT, - ACTIONS(5823), 1, + ACTIONS(5731), 1, anon_sym_AMP, - ACTIONS(5825), 1, + ACTIONS(5733), 1, anon_sym_CARET, - ACTIONS(5827), 1, + ACTIONS(5735), 1, anon_sym_PIPE, - ACTIONS(5831), 1, + ACTIONS(5739), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, + ACTIONS(5741), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, + ACTIONS(5743), 1, anon_sym_LT, - ACTIONS(5843), 1, + ACTIONS(5751), 1, anon_sym_QMARK_QMARK, - ACTIONS(5845), 1, + ACTIONS(5753), 1, sym__ternary_qmark, - STATE(1603), 1, + ACTIONS(5832), 1, + anon_sym_in, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(5719), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5813), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5821), 2, + ACTIONS(5729), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5829), 2, + ACTIONS(5737), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + ACTIONS(5747), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, + ACTIONS(5749), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5837), 3, + ACTIONS(5745), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [99099] = 31, - ACTIONS(3959), 1, + [98148] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4489), 1, + ACTIONS(4716), 1, anon_sym_BQUOTE, - ACTIONS(5815), 1, + ACTIONS(5773), 1, anon_sym_AMP_AMP, - ACTIONS(5817), 1, + ACTIONS(5775), 1, anon_sym_PIPE_PIPE, - ACTIONS(5819), 1, + ACTIONS(5777), 1, anon_sym_GT_GT, - ACTIONS(5823), 1, + ACTIONS(5781), 1, anon_sym_AMP, - ACTIONS(5825), 1, + ACTIONS(5783), 1, anon_sym_CARET, - ACTIONS(5827), 1, + ACTIONS(5785), 1, anon_sym_PIPE, - ACTIONS(5831), 1, + ACTIONS(5789), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, + ACTIONS(5791), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, + ACTIONS(5793), 1, anon_sym_LT, - ACTIONS(5843), 1, + ACTIONS(5801), 1, anon_sym_QMARK_QMARK, - ACTIONS(5845), 1, + ACTIONS(5803), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(5769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5813), 2, + ACTIONS(5771), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, + ACTIONS(5779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5829), 2, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + ACTIONS(5797), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, + ACTIONS(5799), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5837), 3, + ACTIONS(5795), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [99203] = 31, - ACTIONS(3959), 1, + [98252] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4493), 1, + ACTIONS(4728), 1, anon_sym_BQUOTE, - ACTIONS(5815), 1, + ACTIONS(5773), 1, anon_sym_AMP_AMP, - ACTIONS(5817), 1, + ACTIONS(5775), 1, anon_sym_PIPE_PIPE, - ACTIONS(5819), 1, + ACTIONS(5777), 1, anon_sym_GT_GT, - ACTIONS(5823), 1, + ACTIONS(5781), 1, anon_sym_AMP, - ACTIONS(5825), 1, + ACTIONS(5783), 1, anon_sym_CARET, - ACTIONS(5827), 1, + ACTIONS(5785), 1, anon_sym_PIPE, - ACTIONS(5831), 1, + ACTIONS(5789), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, + ACTIONS(5791), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, + ACTIONS(5793), 1, anon_sym_LT, - ACTIONS(5843), 1, + ACTIONS(5801), 1, anon_sym_QMARK_QMARK, - ACTIONS(5845), 1, + ACTIONS(5803), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(5769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5813), 2, + ACTIONS(5771), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, + ACTIONS(5779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5829), 2, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + ACTIONS(5797), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, + ACTIONS(5799), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5837), 3, + ACTIONS(5795), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [99307] = 31, - ACTIONS(3959), 1, + [98356] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4536), 1, + ACTIONS(4732), 1, anon_sym_BQUOTE, - ACTIONS(5815), 1, + ACTIONS(5773), 1, anon_sym_AMP_AMP, - ACTIONS(5817), 1, + ACTIONS(5775), 1, anon_sym_PIPE_PIPE, - ACTIONS(5819), 1, + ACTIONS(5777), 1, anon_sym_GT_GT, - ACTIONS(5823), 1, + ACTIONS(5781), 1, anon_sym_AMP, - ACTIONS(5825), 1, + ACTIONS(5783), 1, anon_sym_CARET, - ACTIONS(5827), 1, + ACTIONS(5785), 1, anon_sym_PIPE, - ACTIONS(5831), 1, + ACTIONS(5789), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, + ACTIONS(5791), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, + ACTIONS(5793), 1, anon_sym_LT, - ACTIONS(5843), 1, + ACTIONS(5801), 1, anon_sym_QMARK_QMARK, - ACTIONS(5845), 1, + ACTIONS(5803), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(5769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5813), 2, + ACTIONS(5771), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, + ACTIONS(5779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5829), 2, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + ACTIONS(5797), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, + ACTIONS(5799), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5837), 3, + ACTIONS(5795), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [99411] = 31, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4538), 1, - anon_sym_BQUOTE, - ACTIONS(5815), 1, - anon_sym_AMP_AMP, - ACTIONS(5817), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5819), 1, - anon_sym_GT_GT, - ACTIONS(5823), 1, - anon_sym_AMP, - ACTIONS(5825), 1, - anon_sym_CARET, - ACTIONS(5827), 1, - anon_sym_PIPE, - ACTIONS(5831), 1, - anon_sym_PERCENT, - ACTIONS(5833), 1, - anon_sym_STAR_STAR, - ACTIONS(5835), 1, - anon_sym_LT, - ACTIONS(5843), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5845), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + [98460] = 6, + ACTIONS(3544), 1, + anon_sym_COMMA, + ACTIONS(3567), 1, + anon_sym_RBRACK, + ACTIONS(3637), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(3435), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5813), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5829), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, + ACTIONS(3439), 23, + sym__ternary_qmark, + anon_sym_as, + 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, - ACTIONS(5837), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [99515] = 31, - ACTIONS(3959), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [98514] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4544), 1, - anon_sym_BQUOTE, - ACTIONS(5815), 1, + ACTIONS(5421), 1, anon_sym_AMP_AMP, - ACTIONS(5817), 1, + ACTIONS(5423), 1, anon_sym_PIPE_PIPE, - ACTIONS(5819), 1, + ACTIONS(5425), 1, anon_sym_GT_GT, - ACTIONS(5823), 1, + ACTIONS(5429), 1, anon_sym_AMP, - ACTIONS(5825), 1, + ACTIONS(5431), 1, anon_sym_CARET, - ACTIONS(5827), 1, + ACTIONS(5433), 1, anon_sym_PIPE, - ACTIONS(5831), 1, + ACTIONS(5437), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, + ACTIONS(5441), 1, anon_sym_LT, - ACTIONS(5843), 1, + ACTIONS(5449), 1, anon_sym_QMARK_QMARK, - ACTIONS(5845), 1, + ACTIONS(5451), 1, sym__ternary_qmark, - STATE(1603), 1, + ACTIONS(5835), 1, + anon_sym_COLON, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5813), 2, + ACTIONS(5419), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, + ACTIONS(5427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5829), 2, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + ACTIONS(5445), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, + ACTIONS(5447), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5837), 3, + ACTIONS(5443), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [99619] = 15, - ACTIONS(2291), 1, + [98618] = 11, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(2325), 1, - anon_sym_async, - ACTIONS(2327), 1, - anon_sym_readonly, - ACTIONS(2331), 1, + ACTIONS(3672), 1, anon_sym_override, - ACTIONS(4785), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(4988), 1, - anon_sym_STAR, - STATE(2768), 1, + ACTIONS(5839), 1, + anon_sym_readonly, + STATE(2823), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2301), 2, + ACTIONS(5837), 2, sym_number, sym_private_property_identifier, - ACTIONS(2329), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5850), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3922), 3, + STATE(3421), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 4, - anon_sym_LPAREN, + ACTIONS(3758), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2323), 18, + ACTIONS(3646), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -222133,40 +219480,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [99691] = 13, - ACTIONS(2291), 1, + [98682] = 9, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(4988), 1, - anon_sym_STAR, - ACTIONS(5566), 1, - anon_sym_COMMA, - ACTIONS(5657), 1, - anon_sym_RBRACE, - STATE(5157), 1, - aux_sym_object_repeat1, + ACTIONS(5843), 1, + anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2301), 2, + ACTIONS(5841), 2, sym_number, sym_private_property_identifier, - ACTIONS(2329), 2, - anon_sym_get, - anon_sym_set, - STATE(3922), 3, + STATE(3469), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 4, - anon_sym_LPAREN, + ACTIONS(3758), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2323), 21, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222176,62 +219517,8 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [99759] = 14, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(2325), 1, - anon_sym_async, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4988), 1, - anon_sym_STAR, - ACTIONS(5566), 1, - anon_sym_COMMA, - ACTIONS(5657), 1, - anon_sym_RBRACE, - STATE(5157), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2301), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2329), 2, anon_sym_get, anon_sym_set, - STATE(3922), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2323), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -222244,39 +219531,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [99829] = 12, - ACTIONS(2291), 1, + [98742] = 11, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(4988), 1, - anon_sym_STAR, + ACTIONS(5847), 1, + anon_sym_readonly, + STATE(2805), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2301), 2, + ACTIONS(5845), 2, sym_number, sym_private_property_identifier, - ACTIONS(2329), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5674), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3922), 3, + STATE(3432), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 4, - anon_sym_LPAREN, + ACTIONS(3758), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2323), 21, + ACTIONS(3646), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222285,12 +219571,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -222298,49 +219584,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [99895] = 13, - ACTIONS(2291), 1, + [98806] = 9, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(2325), 1, - anon_sym_async, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(4988), 1, - anon_sym_STAR, + ACTIONS(5851), 1, + anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2301), 2, + ACTIONS(5849), 2, sym_number, sym_private_property_identifier, - ACTIONS(2329), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5674), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3922), 3, + STATE(3342), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 4, - anon_sym_LPAREN, + ACTIONS(3758), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2323), 20, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -222353,174 +219635,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [99963] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1865), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5852), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5855), 23, - sym__ternary_qmark, - anon_sym_as, + [98866] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, + ACTIONS(3940), 1, anon_sym_LBRACK, + ACTIONS(3942), 1, anon_sym_DOT, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(5421), 1, anon_sym_AMP_AMP, + ACTIONS(5423), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5425), 1, + anon_sym_GT_GT, + ACTIONS(5429), 1, + anon_sym_AMP, + ACTIONS(5431), 1, anon_sym_CARET, + ACTIONS(5433), 1, + anon_sym_PIPE, + ACTIONS(5437), 1, anon_sym_PERCENT, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5441), 1, + anon_sym_LT, + ACTIONS(5449), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [100013] = 4, + ACTIONS(5451), 1, + sym__ternary_qmark, + ACTIONS(5853), 1, + anon_sym_COLON, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4689), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5858), 13, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5417), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5419), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5427), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5445), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5861), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5447), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5443), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [98970] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, + ACTIONS(3940), 1, anon_sym_LBRACK, + ACTIONS(3942), 1, anon_sym_DOT, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(4503), 1, + anon_sym_BQUOTE, + ACTIONS(5773), 1, anon_sym_AMP_AMP, + ACTIONS(5775), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5777), 1, + anon_sym_GT_GT, + ACTIONS(5781), 1, + anon_sym_AMP, + ACTIONS(5783), 1, anon_sym_CARET, + ACTIONS(5785), 1, + anon_sym_PIPE, + ACTIONS(5789), 1, anon_sym_PERCENT, + ACTIONS(5791), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5793), 1, + anon_sym_LT, + ACTIONS(5801), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [100063] = 4, + ACTIONS(5803), 1, + sym__ternary_qmark, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4693), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5864), 13, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5769), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5771), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5779), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5797), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5867), 23, - sym__ternary_qmark, - anon_sym_as, - 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, + ACTIONS(5799), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5795), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [100113] = 7, - ACTIONS(3484), 1, + [99074] = 4, + ACTIONS(3554), 1, anon_sym_EQ, - ACTIONS(4712), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4715), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3448), 10, + ACTIONS(3435), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 22, + ACTIONS(3439), 25, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -222540,164 +219827,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100169] = 31, - ACTIONS(3959), 1, + [99124] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(5122), 1, - anon_sym_RBRACE, - ACTIONS(5456), 1, + ACTIONS(5421), 1, anon_sym_AMP_AMP, - ACTIONS(5458), 1, + ACTIONS(5423), 1, anon_sym_PIPE_PIPE, - ACTIONS(5460), 1, + ACTIONS(5425), 1, anon_sym_GT_GT, - ACTIONS(5464), 1, + ACTIONS(5429), 1, anon_sym_AMP, - ACTIONS(5466), 1, + ACTIONS(5431), 1, anon_sym_CARET, - ACTIONS(5468), 1, + ACTIONS(5433), 1, anon_sym_PIPE, - ACTIONS(5472), 1, + ACTIONS(5437), 1, anon_sym_PERCENT, - ACTIONS(5474), 1, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5476), 1, + ACTIONS(5441), 1, anon_sym_LT, - ACTIONS(5484), 1, + ACTIONS(5449), 1, anon_sym_QMARK_QMARK, - ACTIONS(5486), 1, + ACTIONS(5451), 1, sym__ternary_qmark, - STATE(1603), 1, + ACTIONS(5855), 1, + anon_sym_COLON, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5454), 2, + ACTIONS(5419), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5462), 2, + ACTIONS(5427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5470), 2, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5480), 2, + ACTIONS(5445), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5482), 2, + ACTIONS(5447), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5478), 3, + ACTIONS(5443), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [100273] = 11, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(3673), 1, - anon_sym_override, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(5870), 1, - anon_sym_readonly, - STATE(2790), 1, - sym_override_modifier, + [99228] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5712), 2, - sym_number, - sym_private_property_identifier, - STATE(3388), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(3184), 12, + anon_sym_STAR, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3651), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - 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, - anon_sym_object, - [100337] = 9, - ACTIONS(1588), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DQUOTE, - ACTIONS(1590), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(5872), 1, - anon_sym_abstract, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5712), 2, + anon_sym_AMP, + anon_sym_PIPE, sym_number, sym_private_property_identifier, - STATE(3388), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_AT, anon_sym_QMARK, - ACTIONS(3651), 23, + ACTIONS(3182), 27, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_DOT, anon_sym_async, anon_sym_new, sym_identifier, @@ -222717,87 +219942,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [100397] = 11, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(3673), 1, - anon_sym_override, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(5876), 1, - anon_sym_readonly, - STATE(2805), 1, - sym_override_modifier, + anon_sym_abstract, + anon_sym_accessor, + anon_sym_extends, + [99276] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5874), 2, - sym_number, - sym_private_property_identifier, - STATE(3408), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(1855), 3, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3651), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - 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, - anon_sym_object, - [100461] = 9, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(5857), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5860), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(5880), 1, - anon_sym_abstract, + 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_satisfies, + [99326] = 6, + ACTIONS(4429), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5878), 2, + ACTIONS(4002), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1938), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - STATE(3411), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 7, + ACTIONS(3758), 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(3651), 23, + anon_sym_PIPE_RBRACE, + ACTIONS(1936), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222821,45 +220039,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [100521] = 12, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, + [99380] = 7, + ACTIONS(3485), 1, + anon_sym_EQ, + ACTIONS(4606), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(5882), 1, - anon_sym_LT, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4736), 12, + ACTIONS(4146), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4609), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3435), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4738), 17, + ACTIONS(3439), 22, sym__ternary_qmark, anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -222873,174 +220084,235 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100587] = 15, - ACTIONS(3959), 1, + [99436] = 6, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4002), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1942), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3758), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1940), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [99490] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(5885), 1, + ACTIONS(5421), 1, + anon_sym_AMP_AMP, + ACTIONS(5423), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5425), 1, + anon_sym_GT_GT, + ACTIONS(5429), 1, + anon_sym_AMP, + ACTIONS(5431), 1, + anon_sym_CARET, + ACTIONS(5433), 1, + anon_sym_PIPE, + ACTIONS(5437), 1, + anon_sym_PERCENT, + ACTIONS(5439), 1, + anon_sym_STAR_STAR, + ACTIONS(5441), 1, anon_sym_LT, - STATE(1603), 1, + ACTIONS(5449), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5451), 1, + sym__ternary_qmark, + ACTIONS(5863), 1, + anon_sym_COLON, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4616), 11, + ACTIONS(5417), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5419), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5427), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5445), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4618), 15, - sym__ternary_qmark, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5447), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5443), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - [100659] = 31, - ACTIONS(3959), 1, + [99594] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4651), 1, + ACTIONS(4734), 1, anon_sym_BQUOTE, - ACTIONS(5815), 1, + ACTIONS(5773), 1, anon_sym_AMP_AMP, - ACTIONS(5817), 1, + ACTIONS(5775), 1, anon_sym_PIPE_PIPE, - ACTIONS(5819), 1, + ACTIONS(5777), 1, anon_sym_GT_GT, - ACTIONS(5823), 1, + ACTIONS(5781), 1, anon_sym_AMP, - ACTIONS(5825), 1, + ACTIONS(5783), 1, anon_sym_CARET, - ACTIONS(5827), 1, + ACTIONS(5785), 1, anon_sym_PIPE, - ACTIONS(5831), 1, + ACTIONS(5789), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, + ACTIONS(5791), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, + ACTIONS(5793), 1, anon_sym_LT, - ACTIONS(5843), 1, + ACTIONS(5801), 1, anon_sym_QMARK_QMARK, - ACTIONS(5845), 1, + ACTIONS(5803), 1, sym__ternary_qmark, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(5769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5813), 2, + ACTIONS(5771), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, + ACTIONS(5779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5829), 2, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + ACTIONS(5797), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, + ACTIONS(5799), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5837), 3, + ACTIONS(5795), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [100763] = 11, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(5888), 1, - anon_sym_LT, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + [99698] = 6, + ACTIONS(4024), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4695), 12, + ACTIONS(4618), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4621), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3435), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4697), 19, + ACTIONS(3439), 23, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -223058,234 +220330,295 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100827] = 31, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, + [99752] = 6, + ACTIONS(4606), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5456), 1, - anon_sym_AMP_AMP, - ACTIONS(5458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5460), 1, - anon_sym_GT_GT, - ACTIONS(5464), 1, - anon_sym_AMP, - ACTIONS(5466), 1, - anon_sym_CARET, - ACTIONS(5468), 1, - anon_sym_PIPE, - ACTIONS(5472), 1, - anon_sym_PERCENT, - ACTIONS(5474), 1, - anon_sym_STAR_STAR, - ACTIONS(5476), 1, - anon_sym_LT, - ACTIONS(5484), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5486), 1, - sym__ternary_qmark, - ACTIONS(5891), 1, - anon_sym_COLON, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(4609), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4146), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3435), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5454), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5462), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5470), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5480), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5482), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5478), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [100931] = 31, - ACTIONS(3959), 1, + ACTIONS(3439), 22, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5456), 1, anon_sym_AMP_AMP, - ACTIONS(5458), 1, anon_sym_PIPE_PIPE, - ACTIONS(5460), 1, - anon_sym_GT_GT, - ACTIONS(5464), 1, - anon_sym_AMP, - ACTIONS(5466), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5468), 1, - anon_sym_PIPE, - ACTIONS(5472), 1, anon_sym_PERCENT, - ACTIONS(5474), 1, anon_sym_STAR_STAR, - ACTIONS(5476), 1, - anon_sym_LT, - ACTIONS(5484), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5486), 1, - sym__ternary_qmark, - ACTIONS(5893), 1, - anon_sym_COLON, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [99806] = 6, + ACTIONS(4529), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(4532), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4186), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4423), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5454), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5462), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5470), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5480), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5482), 2, + ACTIONS(4425), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + 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, - ACTIONS(5478), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [101035] = 31, - ACTIONS(3959), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [99860] = 13, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4736), 1, + anon_sym_LBRACK, + ACTIONS(4965), 1, + anon_sym_STAR, + ACTIONS(5533), 1, + anon_sym_COMMA, + ACTIONS(5665), 1, + anon_sym_RBRACE, + STATE(5136), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3887), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [99928] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(5456), 1, + ACTIONS(5421), 1, anon_sym_AMP_AMP, - ACTIONS(5458), 1, + ACTIONS(5423), 1, anon_sym_PIPE_PIPE, - ACTIONS(5460), 1, + ACTIONS(5425), 1, anon_sym_GT_GT, - ACTIONS(5464), 1, + ACTIONS(5429), 1, anon_sym_AMP, - ACTIONS(5466), 1, + ACTIONS(5431), 1, anon_sym_CARET, - ACTIONS(5468), 1, + ACTIONS(5433), 1, anon_sym_PIPE, - ACTIONS(5472), 1, + ACTIONS(5437), 1, anon_sym_PERCENT, - ACTIONS(5474), 1, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5476), 1, + ACTIONS(5441), 1, anon_sym_LT, - ACTIONS(5484), 1, + ACTIONS(5449), 1, anon_sym_QMARK_QMARK, - ACTIONS(5486), 1, + ACTIONS(5451), 1, sym__ternary_qmark, - ACTIONS(5895), 1, + ACTIONS(5865), 1, anon_sym_COLON, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5454), 2, + ACTIONS(5419), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5462), 2, + ACTIONS(5427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5470), 2, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5480), 2, + ACTIONS(5445), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5482), 2, + ACTIONS(5447), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5478), 3, + ACTIONS(5443), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [101139] = 4, + [100032] = 14, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(4736), 1, + anon_sym_LBRACK, + ACTIONS(4965), 1, + anon_sym_STAR, + ACTIONS(5533), 1, + anon_sym_COMMA, + ACTIONS(5665), 1, + anon_sym_RBRACE, + STATE(5136), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1837), 3, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3887), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [100102] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1695), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(5897), 13, + ACTIONS(5867), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -223299,7 +220632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5900), 23, + ACTIONS(5870), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -223323,15 +220656,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101189] = 4, + [100152] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4501), 3, + ACTIONS(4687), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(5903), 13, + ACTIONS(5873), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -223345,7 +220678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5906), 23, + ACTIONS(5876), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -223369,86 +220702,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101239] = 31, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5456), 1, - anon_sym_AMP_AMP, - ACTIONS(5458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5460), 1, - anon_sym_GT_GT, - ACTIONS(5464), 1, - anon_sym_AMP, - ACTIONS(5466), 1, - anon_sym_CARET, - ACTIONS(5468), 1, - anon_sym_PIPE, - ACTIONS(5472), 1, - anon_sym_PERCENT, - ACTIONS(5474), 1, - anon_sym_STAR_STAR, - ACTIONS(5476), 1, - anon_sym_LT, - ACTIONS(5484), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5486), 1, - sym__ternary_qmark, - ACTIONS(5909), 1, - anon_sym_COLON, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + [100202] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(4691), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(5879), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5454), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5462), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5470), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5480), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5482), 2, + ACTIONS(5882), 23, + sym__ternary_qmark, + anon_sym_as, + 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, - ACTIONS(5478), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [101343] = 4, - ACTIONS(3583), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [100252] = 6, + ACTIONS(4104), 1, anon_sym_EQ, + ACTIONS(4798), 1, + anon_sym_RBRACK, + ACTIONS(4933), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3448), 13, + ACTIONS(4102), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -223462,12 +220772,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 25, - sym__automatic_semicolon, + ACTIONS(4106), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -223488,103 +220796,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101393] = 31, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, + [100306] = 12, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5456), 1, - anon_sym_AMP_AMP, - ACTIONS(5458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5460), 1, - anon_sym_GT_GT, - ACTIONS(5464), 1, - anon_sym_AMP, - ACTIONS(5466), 1, - anon_sym_CARET, - ACTIONS(5468), 1, - anon_sym_PIPE, - ACTIONS(5472), 1, - anon_sym_PERCENT, - ACTIONS(5474), 1, - anon_sym_STAR_STAR, - ACTIONS(5476), 1, - anon_sym_LT, - ACTIONS(5484), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5486), 1, - sym__ternary_qmark, - ACTIONS(5911), 1, + ACTIONS(4965), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5634), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3887), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 4, + anon_sym_LPAREN, anon_sym_COLON, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [100372] = 6, + ACTIONS(4614), 1, + anon_sym_EQ, + ACTIONS(4801), 1, + anon_sym_RBRACK, + ACTIONS(4960), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(4612), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5454), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5462), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5470), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5480), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5482), 2, + ACTIONS(4616), 23, + sym__ternary_qmark, + anon_sym_as, + 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, - ACTIONS(5478), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [101497] = 11, - ACTIONS(1588), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [100426] = 11, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(5915), 1, + ACTIONS(5885), 1, anon_sym_readonly, - STATE(2827), 1, + STATE(2788), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5913), 2, + ACTIONS(5669), 2, sym_number, sym_private_property_identifier, - STATE(3364), 3, + STATE(3380), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 7, + ACTIONS(3758), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -223592,7 +220929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3651), 21, + ACTIONS(3646), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223614,26 +220951,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [101561] = 9, - ACTIONS(1588), 1, + [100490] = 9, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(5919), 1, + ACTIONS(5887), 1, anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5917), 2, + ACTIONS(5669), 2, + sym_number, + sym_private_property_identifier, + STATE(3380), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3646), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [100550] = 11, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4431), 1, + anon_sym_LBRACK, + ACTIONS(5891), 1, + anon_sym_readonly, + STATE(2791), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5889), 2, sym_number, sym_private_property_identifier, - STATE(3366), 3, + STATE(3423), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 7, + ACTIONS(3758), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -223641,7 +221033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3651), 23, + ACTIONS(3646), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223650,14 +221042,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -223665,30 +221055,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [101621] = 11, - ACTIONS(1588), 1, + [100614] = 9, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(3673), 1, - anon_sym_override, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(5923), 1, - anon_sym_readonly, - STATE(2791), 1, - sym_override_modifier, + ACTIONS(5895), 1, + anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5921), 2, + ACTIONS(5893), 2, sym_number, sym_private_property_identifier, - STATE(3303), 3, + STATE(3431), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 7, + ACTIONS(3758), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -223696,7 +221082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3651), 21, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223705,12 +221091,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -223718,45 +221106,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [101685] = 9, - ACTIONS(1588), 1, + [100674] = 13, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(5927), 1, - anon_sym_abstract, + ACTIONS(4965), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5925), 2, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - STATE(3324), 3, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5634), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3887), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3758), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3651), 23, + ACTIONS(2314), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -223769,90 +221161,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [101745] = 31, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5456), 1, - anon_sym_AMP_AMP, - ACTIONS(5458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5460), 1, - anon_sym_GT_GT, - ACTIONS(5464), 1, - anon_sym_AMP, - ACTIONS(5466), 1, - anon_sym_CARET, - ACTIONS(5468), 1, - anon_sym_PIPE, - ACTIONS(5472), 1, - anon_sym_PERCENT, - ACTIONS(5474), 1, - anon_sym_STAR_STAR, - ACTIONS(5476), 1, - anon_sym_LT, - ACTIONS(5484), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5486), 1, - sym__ternary_qmark, - ACTIONS(5929), 1, - anon_sym_COLON, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5452), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5454), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5462), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5470), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5480), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5482), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5478), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [101849] = 6, - ACTIONS(3549), 1, - anon_sym_COMMA, - ACTIONS(3558), 1, - anon_sym_RBRACK, - ACTIONS(3642), 1, + [100742] = 6, + ACTIONS(1665), 1, anon_sym_EQ, + ACTIONS(4763), 1, + anon_sym_RBRACK, + ACTIONS(4946), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3448), 13, + ACTIONS(1663), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -223866,7 +221185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 23, + ACTIONS(1667), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -223890,336 +221209,360 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101903] = 31, - ACTIONS(3959), 1, + [100796] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(5622), 1, + ACTIONS(5675), 1, + anon_sym_AMP_AMP, + ACTIONS(5677), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5679), 1, anon_sym_GT_GT, - ACTIONS(5628), 1, - anon_sym_PERCENT, - ACTIONS(5630), 1, - anon_sym_STAR_STAR, - ACTIONS(5632), 1, - anon_sym_LT, - ACTIONS(5640), 1, + ACTIONS(5683), 1, anon_sym_AMP, - ACTIONS(5642), 1, + ACTIONS(5685), 1, anon_sym_CARET, - ACTIONS(5647), 1, - anon_sym_AMP_AMP, - ACTIONS(5649), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5651), 1, + ACTIONS(5687), 1, anon_sym_PIPE, - ACTIONS(5653), 1, + ACTIONS(5691), 1, + anon_sym_PERCENT, + ACTIONS(5693), 1, + anon_sym_STAR_STAR, + ACTIONS(5695), 1, + anon_sym_LT, + ACTIONS(5703), 1, anon_sym_QMARK_QMARK, - ACTIONS(5655), 1, + ACTIONS(5705), 1, sym__ternary_qmark, - ACTIONS(5931), 1, + ACTIONS(5897), 1, anon_sym_RBRACK, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5618), 2, + ACTIONS(5671), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5620), 2, + ACTIONS(5673), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5624), 2, + ACTIONS(5681), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5626), 2, + ACTIONS(5689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5636), 2, + ACTIONS(5699), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5638), 2, + ACTIONS(5701), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5634), 3, + ACTIONS(5697), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [102007] = 31, - ACTIONS(3959), 1, + [100900] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, - anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(5456), 1, + ACTIONS(5080), 1, + anon_sym_RBRACE, + ACTIONS(5421), 1, anon_sym_AMP_AMP, - ACTIONS(5458), 1, + ACTIONS(5423), 1, anon_sym_PIPE_PIPE, - ACTIONS(5460), 1, + ACTIONS(5425), 1, anon_sym_GT_GT, - ACTIONS(5464), 1, + ACTIONS(5429), 1, anon_sym_AMP, - ACTIONS(5466), 1, + ACTIONS(5431), 1, anon_sym_CARET, - ACTIONS(5468), 1, + ACTIONS(5433), 1, anon_sym_PIPE, - ACTIONS(5472), 1, + ACTIONS(5437), 1, anon_sym_PERCENT, - ACTIONS(5474), 1, + ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5476), 1, + ACTIONS(5441), 1, anon_sym_LT, - ACTIONS(5484), 1, + ACTIONS(5449), 1, anon_sym_QMARK_QMARK, - ACTIONS(5486), 1, + ACTIONS(5451), 1, sym__ternary_qmark, - ACTIONS(5933), 1, - anon_sym_COLON, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(5417), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5454), 2, + ACTIONS(5419), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5462), 2, + ACTIONS(5427), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5470), 2, + ACTIONS(5435), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5480), 2, + ACTIONS(5445), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5482), 2, + ACTIONS(5447), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5478), 3, + ACTIONS(5443), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [101004] = 12, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(5899), 1, + anon_sym_LT, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4674), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4676), 17, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [102111] = 31, - ACTIONS(3959), 1, + anon_sym_BQUOTE, + anon_sym_satisfies, + [101070] = 15, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3961), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4417), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(4425), 1, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(5902), 1, + anon_sym_LT, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4697), 11, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4699), 15, + sym__ternary_qmark, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [101142] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(5456), 1, + ACTIONS(4708), 1, + anon_sym_BQUOTE, + ACTIONS(5773), 1, anon_sym_AMP_AMP, - ACTIONS(5458), 1, + ACTIONS(5775), 1, anon_sym_PIPE_PIPE, - ACTIONS(5460), 1, + ACTIONS(5777), 1, anon_sym_GT_GT, - ACTIONS(5464), 1, + ACTIONS(5781), 1, anon_sym_AMP, - ACTIONS(5466), 1, + ACTIONS(5783), 1, anon_sym_CARET, - ACTIONS(5468), 1, + ACTIONS(5785), 1, anon_sym_PIPE, - ACTIONS(5472), 1, + ACTIONS(5789), 1, anon_sym_PERCENT, - ACTIONS(5474), 1, + ACTIONS(5791), 1, anon_sym_STAR_STAR, - ACTIONS(5476), 1, + ACTIONS(5793), 1, anon_sym_LT, - ACTIONS(5484), 1, + ACTIONS(5801), 1, anon_sym_QMARK_QMARK, - ACTIONS(5486), 1, + ACTIONS(5803), 1, sym__ternary_qmark, - ACTIONS(5935), 1, - anon_sym_COLON, - STATE(1603), 1, + STATE(1533), 1, sym_type_arguments, - STATE(1650), 1, + STATE(1614), 1, sym_arguments, - STATE(5091), 1, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5452), 2, + ACTIONS(5769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5454), 2, + ACTIONS(5771), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5462), 2, + ACTIONS(5779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5470), 2, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5480), 2, + ACTIONS(5797), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5482), 2, + ACTIONS(5799), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5478), 3, + ACTIONS(5795), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [102215] = 9, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(5071), 1, - anon_sym_RBRACE, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3791), 4, + [101246] = 11, + ACTIONS(3938), 1, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1973), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(1971), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [102274] = 8, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(5905), 1, + anon_sym_LT, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5937), 2, - sym_number, - sym_private_property_identifier, - STATE(3423), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3651), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [102331] = 4, - ACTIONS(4877), 1, - sym_regex_flags, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4873), 17, + ACTIONS(4414), 12, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_of, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -224227,17 +221570,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_satisfies, - ACTIONS(4875), 20, + ACTIONS(4416), 19, sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_as, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -224250,223 +221587,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [102380] = 8, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5939), 2, - sym_number, - sym_private_property_identifier, - STATE(3354), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3651), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [102437] = 8, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5941), 2, - sym_number, - sym_private_property_identifier, - STATE(3375), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3651), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [102494] = 8, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5943), 2, - sym_number, - sym_private_property_identifier, - STATE(3383), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3651), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [102551] = 8, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(4471), 1, + anon_sym_satisfies, + [101310] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5945), 2, - sym_number, - sym_private_property_identifier, - STATE(3357), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3651), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [102608] = 8, - ACTIONS(1588), 1, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(5421), 1, + anon_sym_AMP_AMP, + ACTIONS(5423), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5425), 1, + anon_sym_GT_GT, + ACTIONS(5429), 1, + anon_sym_AMP, + ACTIONS(5431), 1, + anon_sym_CARET, + ACTIONS(5433), 1, + anon_sym_PIPE, + ACTIONS(5437), 1, + anon_sym_PERCENT, + ACTIONS(5439), 1, + anon_sym_STAR_STAR, + ACTIONS(5441), 1, + anon_sym_LT, + ACTIONS(5449), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5451), 1, + sym__ternary_qmark, + ACTIONS(5908), 1, + anon_sym_COLON, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5417), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5419), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5427), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5435), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5445), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5447), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5443), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [101414] = 11, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4431), 1, anon_sym_LBRACK, + ACTIONS(5910), 1, + anon_sym_readonly, + STATE(2782), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5947), 2, + ACTIONS(4923), 2, sym_number, sym_private_property_identifier, - STATE(3424), 3, + STATE(3437), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 7, + ACTIONS(3758), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -224474,7 +221696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3651), 23, + ACTIONS(3646), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224483,14 +221705,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -224498,86 +221718,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102665] = 8, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(4471), 1, + [101478] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(5421), 1, + anon_sym_AMP_AMP, + ACTIONS(5423), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5425), 1, + anon_sym_GT_GT, + ACTIONS(5429), 1, + anon_sym_AMP, + ACTIONS(5431), 1, + anon_sym_CARET, + ACTIONS(5433), 1, + anon_sym_PIPE, + ACTIONS(5437), 1, + anon_sym_PERCENT, + ACTIONS(5439), 1, + anon_sym_STAR_STAR, + ACTIONS(5441), 1, + anon_sym_LT, + ACTIONS(5449), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5451), 1, + sym__ternary_qmark, + ACTIONS(5912), 1, + anon_sym_COLON, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5949), 2, - sym_number, - sym_private_property_identifier, - STATE(3302), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3651), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [102722] = 9, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(702), 1, - anon_sym_RBRACE, - ACTIONS(4469), 1, - anon_sym_EQ, - STATE(4673), 1, - aux_sym_object_repeat1, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5417), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5419), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5427), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5435), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5445), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5447), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5443), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [101582] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2007), 6, + ACTIONS(3188), 12, anon_sym_STAR, + anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_AMP, + anon_sym_PIPE, sym_number, sym_private_property_identifier, - ACTIONS(2005), 23, + anon_sym_AT, + anon_sym_QMARK, + ACTIONS(3186), 27, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_DOT, anon_sym_async, anon_sym_new, sym_identifier, @@ -224597,124 +221833,194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102781] = 9, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(702), 1, - anon_sym_RBRACE, - ACTIONS(4469), 1, - anon_sym_EQ, - STATE(4673), 1, - aux_sym_object_repeat1, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, + anon_sym_abstract, + anon_sym_accessor, + anon_sym_extends, + [101630] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 4, - anon_sym_LPAREN, + ACTIONS(1733), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1973), 6, + ACTIONS(5914), 13, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5917), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(1971), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [102840] = 9, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(4469), 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_satisfies, + [101680] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, + anon_sym_BANG, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(5421), 1, + anon_sym_AMP_AMP, + ACTIONS(5423), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5425), 1, + anon_sym_GT_GT, + ACTIONS(5429), 1, + anon_sym_AMP, + ACTIONS(5431), 1, + anon_sym_CARET, + ACTIONS(5433), 1, + anon_sym_PIPE, + ACTIONS(5437), 1, + anon_sym_PERCENT, + ACTIONS(5439), 1, + anon_sym_STAR_STAR, + ACTIONS(5441), 1, + anon_sym_LT, + ACTIONS(5449), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5451), 1, + sym__ternary_qmark, + ACTIONS(5920), 1, + anon_sym_COLON, + STATE(1533), 1, + sym_type_arguments, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5417), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5419), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5427), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5435), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5445), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5447), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5443), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [101784] = 4, + ACTIONS(3558), 1, anon_sym_EQ, - ACTIONS(5015), 1, - anon_sym_RBRACE, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 4, + ACTIONS(3435), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3439), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2007), 6, - anon_sym_STAR, 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_satisfies, + [101834] = 9, + ACTIONS(1583), 1, anon_sym_DQUOTE, + ACTIONS(1585), 1, anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(2005), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [102899] = 8, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, + ACTIONS(4931), 1, + anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5951), 2, + ACTIONS(4923), 2, sym_number, sym_private_property_identifier, - STATE(3474), 3, + STATE(3437), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 7, + ACTIONS(3758), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -224722,7 +222028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3651), 23, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224746,149 +222052,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102956] = 11, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(4785), 1, + [101894] = 6, + ACTIONS(4618), 1, anon_sym_LBRACK, - ACTIONS(5566), 1, - anon_sym_COMMA, - ACTIONS(5657), 1, - anon_sym_RBRACE, - STATE(5157), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2301), 2, - sym_number, - sym_private_property_identifier, - STATE(3922), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2323), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [103019] = 9, - ACTIONS(241), 1, + ACTIONS(4621), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4024), 3, anon_sym_COMMA, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(5071), 1, - anon_sym_RBRACE, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3435), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3439), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + 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_satisfies, + [101948] = 6, + ACTIONS(3938), 1, + anon_sym_LPAREN, + STATE(1660), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2007), 6, + ACTIONS(5922), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4218), 13, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4220), 21, + sym__ternary_qmark, + anon_sym_as, 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_satisfies, + [102002] = 8, + ACTIONS(1583), 1, anon_sym_DQUOTE, + ACTIONS(1585), 1, anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(2005), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [103078] = 12, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(2325), 1, - anon_sym_async, - ACTIONS(4785), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(4988), 1, - anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2301), 2, + ACTIONS(5924), 2, sym_number, sym_private_property_identifier, - ACTIONS(2329), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5850), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3922), 3, + STATE(3315), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 4, - anon_sym_LPAREN, + ACTIONS(3758), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2323), 20, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -224901,37 +222197,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103143] = 11, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4988), 1, - anon_sym_STAR, + [102059] = 9, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(722), 1, + anon_sym_RBRACE, + ACTIONS(4429), 1, + anon_sym_EQ, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2301), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2329), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5850), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3922), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 4, + ACTIONS(3758), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2323), 21, + ACTIONS(1942), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1940), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224941,6 +222233,8 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -224953,24 +222247,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103206] = 8, - ACTIONS(1588), 1, + [102118] = 8, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5953), 2, + ACTIONS(5926), 2, sym_number, sym_private_property_identifier, - STATE(3477), 3, + STATE(3378), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 7, + ACTIONS(3758), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -224978,7 +222272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3651), 23, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225002,19 +222296,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103263] = 6, - ACTIONS(3484), 1, - anon_sym_EQ, - ACTIONS(3637), 1, - anon_sym_in, - ACTIONS(3640), 1, - anon_sym_of, + [102175] = 4, + ACTIONS(4941), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3448), 12, + ACTIONS(4937), 17, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, + anon_sym_in, + anon_sym_of, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -225025,9 +222318,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 23, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(4939), 20, sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -225044,38 +222338,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - [103316] = 9, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(5015), 1, - anon_sym_RBRACE, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, + [102224] = 8, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 1, + anon_sym_SQUOTE, + ACTIONS(4431), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1973), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5928), 2, sym_number, sym_private_property_identifier, - ACTIONS(1971), 23, + STATE(3401), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225099,32 +222390,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103375] = 8, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(4471), 1, + [102281] = 30, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4537), 1, anon_sym_LBRACK, + ACTIONS(4539), 1, + anon_sym_DOT, + ACTIONS(4844), 1, + anon_sym_BANG, + ACTIONS(5773), 1, + anon_sym_AMP_AMP, + ACTIONS(5775), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5777), 1, + anon_sym_GT_GT, + ACTIONS(5781), 1, + anon_sym_AMP, + ACTIONS(5783), 1, + anon_sym_CARET, + ACTIONS(5785), 1, + anon_sym_PIPE, + ACTIONS(5789), 1, + anon_sym_PERCENT, + ACTIONS(5791), 1, + anon_sym_STAR_STAR, + ACTIONS(5793), 1, + anon_sym_LT, + ACTIONS(5801), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5803), 1, + sym__ternary_qmark, + STATE(2240), 1, + sym_arguments, + STATE(2670), 1, + sym_type_arguments, + STATE(4753), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5955), 2, - sym_number, - sym_private_property_identifier, - STATE(3445), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4495), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5769), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5771), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5779), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5787), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5797), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5799), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5795), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [102382] = 9, + ACTIONS(237), 1, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(5074), 1, + anon_sym_RBRACE, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3758), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3651), 23, + ACTIONS(1938), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1936), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225148,32 +222511,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103432] = 8, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(4471), 1, - anon_sym_LBRACK, + [102441] = 9, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(5074), 1, + anon_sym_RBRACE, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5957), 2, - sym_number, - sym_private_property_identifier, - STATE(3312), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3758), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3651), 23, + ACTIONS(1942), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1940), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225197,33 +222561,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103489] = 9, - ACTIONS(241), 1, + [102500] = 9, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(4469), 1, + ACTIONS(4429), 1, anon_sym_EQ, - ACTIONS(5064), 1, + ACTIONS(5023), 1, anon_sym_RBRACE, - STATE(4679), 1, + STATE(5131), 1, aux_sym_object_pattern_repeat1, - STATE(5173), 1, + STATE(5191), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 4, + ACTIONS(3758), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2007), 6, + ACTIONS(1938), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(2005), 23, + ACTIONS(1936), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225247,33 +222611,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103548] = 9, - ACTIONS(241), 1, + [102559] = 9, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(4469), 1, + ACTIONS(4429), 1, anon_sym_EQ, - ACTIONS(5064), 1, + ACTIONS(5023), 1, anon_sym_RBRACE, - STATE(4679), 1, + STATE(5131), 1, aux_sym_object_pattern_repeat1, - STATE(5173), 1, + STATE(5191), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 4, + ACTIONS(3758), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1973), 6, + ACTIONS(1942), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1971), 23, + ACTIONS(1940), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225297,24 +222661,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103607] = 8, - ACTIONS(1588), 1, + [102618] = 8, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5959), 2, + ACTIONS(5930), 2, sym_number, sym_private_property_identifier, - STATE(3309), 3, + STATE(3302), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 7, + ACTIONS(3758), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -225322,7 +222686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3651), 23, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225346,32 +222710,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103664] = 8, - ACTIONS(1588), 1, + [102675] = 10, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5961), 2, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - STATE(3318), 3, + ACTIONS(5634), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3887), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3758), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3651), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225395,95 +222761,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103721] = 30, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(4514), 1, + [102736] = 30, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(4516), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(4518), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4828), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4459), 1, + anon_sym_as, + ACTIONS(4461), 1, anon_sym_BANG, - ACTIONS(5815), 1, + ACTIONS(4497), 1, + anon_sym_satisfies, + ACTIONS(5773), 1, anon_sym_AMP_AMP, - ACTIONS(5817), 1, + ACTIONS(5775), 1, anon_sym_PIPE_PIPE, - ACTIONS(5819), 1, + ACTIONS(5777), 1, anon_sym_GT_GT, - ACTIONS(5823), 1, + ACTIONS(5781), 1, anon_sym_AMP, - ACTIONS(5825), 1, + ACTIONS(5783), 1, anon_sym_CARET, - ACTIONS(5827), 1, + ACTIONS(5785), 1, anon_sym_PIPE, - ACTIONS(5831), 1, + ACTIONS(5789), 1, anon_sym_PERCENT, - ACTIONS(5833), 1, + ACTIONS(5791), 1, anon_sym_STAR_STAR, - ACTIONS(5835), 1, + ACTIONS(5793), 1, anon_sym_LT, - ACTIONS(5843), 1, + ACTIONS(5801), 1, anon_sym_QMARK_QMARK, - ACTIONS(5845), 1, + ACTIONS(5803), 1, sym__ternary_qmark, - STATE(2355), 1, - sym_arguments, - STATE(2669), 1, + STATE(1533), 1, sym_type_arguments, - STATE(5093), 1, + STATE(1614), 1, + sym_arguments, + STATE(5072), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4495), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5811), 2, + ACTIONS(5769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5813), 2, + ACTIONS(5771), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5821), 2, + ACTIONS(5779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5829), 2, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5839), 2, + ACTIONS(5797), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5841), 2, + ACTIONS(5799), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5837), 3, + ACTIONS(5795), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [103822] = 8, - ACTIONS(1588), 1, + [102837] = 8, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5963), 2, + ACTIONS(5932), 2, sym_number, sym_private_property_identifier, - STATE(3346), 3, + STATE(3305), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 7, + ACTIONS(3758), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -225491,7 +222857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3651), 23, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225515,33 +222881,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103879] = 9, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(729), 1, - anon_sym_RBRACE, - ACTIONS(4469), 1, - anon_sym_EQ, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, + [102894] = 8, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 1, + anon_sym_SQUOTE, + ACTIONS(4431), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 4, - anon_sym_LPAREN, + ACTIONS(5934), 2, + sym_number, + sym_private_property_identifier, + STATE(3455), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2007), 6, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(3646), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [102951] = 8, + ACTIONS(1583), 1, anon_sym_DQUOTE, + ACTIONS(1585), 1, anon_sym_SQUOTE, + ACTIONS(4431), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5936), 2, sym_number, sym_private_property_identifier, - ACTIONS(2005), 23, + STATE(3386), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225565,33 +222979,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103938] = 9, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(729), 1, - anon_sym_RBRACE, - ACTIONS(4469), 1, + [103008] = 4, + ACTIONS(3604), 1, anon_sym_EQ, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 4, + ACTIONS(3435), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3439), 24, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, + anon_sym_of, + 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_satisfies, + [103057] = 8, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 1, + anon_sym_SQUOTE, + ACTIONS(4431), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5938), 2, + sym_number, + sym_private_property_identifier, + STATE(3303), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(1973), 6, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(3646), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [103114] = 8, + ACTIONS(1583), 1, anon_sym_DQUOTE, + ACTIONS(1585), 1, anon_sym_SQUOTE, + ACTIONS(4431), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5940), 2, sym_number, sym_private_property_identifier, - ACTIONS(1971), 23, + STATE(3466), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225615,104 +223122,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103997] = 30, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, + [103171] = 8, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 1, + anon_sym_SQUOTE, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_as, - ACTIONS(4421), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5942), 2, + sym_number, + sym_private_property_identifier, + STATE(3399), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_satisfies, - ACTIONS(5815), 1, - anon_sym_AMP_AMP, - ACTIONS(5817), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5819), 1, - anon_sym_GT_GT, - ACTIONS(5823), 1, - anon_sym_AMP, - ACTIONS(5825), 1, - anon_sym_CARET, - ACTIONS(5827), 1, - anon_sym_PIPE, - ACTIONS(5831), 1, - anon_sym_PERCENT, - ACTIONS(5833), 1, - anon_sym_STAR_STAR, - ACTIONS(5835), 1, - anon_sym_LT, - ACTIONS(5843), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5845), 1, - sym__ternary_qmark, - STATE(1603), 1, - sym_type_arguments, - STATE(1650), 1, - sym_arguments, - STATE(5091), 1, - sym_optional_chain, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3646), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [103228] = 8, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 1, + anon_sym_SQUOTE, + ACTIONS(4431), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5811), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5813), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5821), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5829), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5839), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5841), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5837), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [104098] = 9, - ACTIONS(241), 1, + ACTIONS(5944), 2, + sym_number, + sym_private_property_identifier, + STATE(3408), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3646), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [103285] = 11, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4736), 1, + anon_sym_LBRACK, + ACTIONS(5533), 1, anon_sym_COMMA, - ACTIONS(727), 1, + ACTIONS(5665), 1, anon_sym_RBRACE, - ACTIONS(4469), 1, - anon_sym_EQ, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, + STATE(5136), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 4, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + STATE(3887), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2007), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(2005), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225736,33 +223272,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104157] = 9, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(727), 1, - anon_sym_RBRACE, - ACTIONS(4469), 1, - anon_sym_EQ, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, + [103348] = 8, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 1, + anon_sym_SQUOTE, + ACTIONS(4431), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1973), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5946), 2, sym_number, sym_private_property_identifier, - ACTIONS(1971), 23, + STATE(3406), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225786,43 +223321,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104216] = 8, - ACTIONS(1588), 1, + [103405] = 12, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(4736), 1, anon_sym_LBRACK, + ACTIONS(4965), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5965), 2, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - STATE(3343), 3, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5827), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3887), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3758), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3651), 23, + ACTIONS(2314), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -225835,24 +223374,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104273] = 8, - ACTIONS(1588), 1, + [103470] = 8, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5967), 2, + ACTIONS(5948), 2, sym_number, sym_private_property_identifier, - STATE(3358), 3, + STATE(3336), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 7, + ACTIONS(3758), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -225860,7 +223399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3651), 23, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225884,16 +223423,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104330] = 4, - ACTIONS(3608), 1, + [103527] = 6, + ACTIONS(3485), 1, anon_sym_EQ, + ACTIONS(3632), 1, + anon_sym_in, + ACTIONS(3635), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3448), 13, + ACTIONS(3435), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -225904,12 +223446,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 24, + ACTIONS(3439), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -225929,79 +223470,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [104379] = 4, - ACTIONS(3620), 1, + [103580] = 9, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(697), 1, + anon_sym_RBRACE, + ACTIONS(4429), 1, anon_sym_EQ, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3448), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3452), 24, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(3758), 4, anon_sym_LPAREN, - anon_sym_of, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1938), 6, + anon_sym_STAR, 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_satisfies, - [104428] = 10, - ACTIONS(2291), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, anon_sym_SQUOTE, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2301), 2, sym_number, sym_private_property_identifier, - ACTIONS(5674), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3922), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3791), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2323), 23, + ACTIONS(1936), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226025,24 +223520,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104489] = 3, + [103639] = 9, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(697), 1, + anon_sym_RBRACE, + ACTIONS(4429), 1, + anon_sym_EQ, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5971), 12, - sym__automatic_semicolon, + ACTIONS(3758), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1942), 6, anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_PLUS, - anon_sym_DASH, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5969), 25, + ACTIONS(1940), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226066,71 +223570,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [104535] = 5, - ACTIONS(89), 1, - anon_sym_BQUOTE, - STATE(2081), 1, - sym_template_string, + [103698] = 8, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 1, + anon_sym_SQUOTE, + ACTIONS(4431), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1905), 13, - anon_sym_STAR, + ACTIONS(5950), 2, + sym_number, + sym_private_property_identifier, + STATE(3451), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1907), 22, - sym__ternary_qmark, - anon_sym_as, - 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_satisfies, - [104585] = 3, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3646), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [103755] = 9, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(724), 1, + anon_sym_RBRACE, + ACTIONS(4429), 1, + anon_sym_EQ, + STATE(5129), 1, + aux_sym_object_repeat1, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5975), 12, - sym__automatic_semicolon, + ACTIONS(3758), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1938), 6, anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_PLUS, - anon_sym_DASH, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5973), 25, + ACTIONS(1936), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226154,26 +223669,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [104631] = 3, + [103814] = 9, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(724), 1, + anon_sym_RBRACE, + ACTIONS(4429), 1, + anon_sym_EQ, + STATE(5129), 1, + aux_sym_object_repeat1, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5979), 12, - sym__automatic_semicolon, + ACTIONS(3758), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1942), 6, anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_PLUS, - anon_sym_DASH, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5977), 25, + ACTIONS(1940), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226197,78 +223719,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [104677] = 4, - ACTIONS(3709), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3448), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3452), 23, - sym__ternary_qmark, - anon_sym_as, - 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_satisfies, - [104725] = 9, - ACTIONS(2291), 1, + [103873] = 8, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2301), 2, + ACTIONS(5952), 2, sym_number, sym_private_property_identifier, - ACTIONS(5850), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3922), 3, + STATE(3454), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3791), 4, - anon_sym_LPAREN, + ACTIONS(3758), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2323), 23, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226292,24 +223768,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104783] = 3, + [103930] = 8, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 1, + anon_sym_SQUOTE, + ACTIONS(4431), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5971), 12, + ACTIONS(5954), 2, + sym_number, + sym_private_property_identifier, + STATE(3439), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 7, sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3646), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [103987] = 11, + ACTIONS(1505), 1, anon_sym_DQUOTE, + ACTIONS(1507), 1, anon_sym_SQUOTE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(4736), 1, + anon_sym_LBRACK, + ACTIONS(4965), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5969), 25, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5827), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3887), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226319,8 +223857,6 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -226333,26 +223869,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [104829] = 3, + [104050] = 9, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(5072), 1, + anon_sym_RBRACE, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5983), 12, - sym__automatic_semicolon, + ACTIONS(3758), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1938), 6, anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_PLUS, - anon_sym_DASH, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5981), 25, + ACTIONS(1936), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226376,26 +223919,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [104875] = 3, + [104109] = 9, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(5072), 1, + anon_sym_RBRACE, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5987), 12, - sym__automatic_semicolon, + ACTIONS(3758), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1942), 6, anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_PLUS, - anon_sym_DASH, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5985), 25, + ACTIONS(1940), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226419,26 +223969,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [104921] = 3, + [104168] = 4, + ACTIONS(3596), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5991), 12, - sym__automatic_semicolon, + ACTIONS(3435), 13, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3439), 24, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + 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_satisfies, + [104217] = 9, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(722), 1, anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(4429), 1, + anon_sym_EQ, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3758), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1938), 6, + anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_PLUS, - anon_sym_DASH, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5989), 25, + ACTIONS(1936), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226462,13 +224064,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [104967] = 3, + [104276] = 4, + ACTIONS(3730), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3435), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3439), 23, + sym__ternary_qmark, + anon_sym_as, + 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_satisfies, + [104324] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5991), 12, + ACTIONS(1809), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226481,7 +224125,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5989), 25, + ACTIONS(1811), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226507,11 +224151,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105013] = 3, + [104370] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5995), 12, + ACTIONS(5958), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226524,7 +224168,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5993), 25, + ACTIONS(5956), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226550,11 +224194,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105059] = 3, + [104416] = 4, + ACTIONS(3736), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5999), 12, + ACTIONS(3435), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3439), 23, + sym__ternary_qmark, + anon_sym_as, + 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_satisfies, + [104464] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5958), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226567,7 +224255,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5997), 25, + ACTIONS(5956), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226593,11 +224281,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105105] = 3, + [104510] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5995), 12, + ACTIONS(5962), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226610,7 +224298,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5993), 25, + ACTIONS(5960), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226636,11 +224324,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105151] = 3, + [104556] = 8, + ACTIONS(3521), 1, + anon_sym_LT, + ACTIONS(5964), 1, + anon_sym_LPAREN, + ACTIONS(5966), 1, + anon_sym_DOT, + STATE(2747), 1, + sym_arguments, + STATE(5376), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5995), 12, + ACTIONS(3517), 7, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3515), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [104612] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5970), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226653,7 +224389,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5993), 25, + ACTIONS(5968), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226679,55 +224415,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105197] = 4, - ACTIONS(3717), 1, - anon_sym_EQ, + [104658] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3448), 13, + ACTIONS(5974), 12, + sym__automatic_semicolon, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3452), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(5972), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [104704] = 4, + ACTIONS(5976), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1809), 11, + anon_sym_STAR, + anon_sym_RBRACE, + 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, - anon_sym_satisfies, - [105245] = 3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1811), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [104752] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5995), 12, + ACTIONS(5962), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226740,7 +224519,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5993), 25, + ACTIONS(5960), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226766,11 +224545,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105291] = 3, + [104798] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5991), 12, + ACTIONS(5980), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226783,7 +224562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5989), 25, + ACTIONS(5978), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226809,11 +224588,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105337] = 3, + [104844] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5983), 12, + ACTIONS(5984), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226826,7 +224605,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5981), 25, + ACTIONS(5982), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226852,11 +224631,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105383] = 3, + [104890] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5975), 12, + ACTIONS(5984), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226869,7 +224648,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5973), 25, + ACTIONS(5982), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226895,11 +224674,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105429] = 3, + [104936] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5979), 12, + ACTIONS(5984), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226912,7 +224691,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5977), 25, + ACTIONS(5982), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226938,11 +224717,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105475] = 3, + [104982] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5979), 12, + ACTIONS(5988), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226955,7 +224734,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5977), 25, + ACTIONS(5986), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226981,11 +224760,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105521] = 3, + [105028] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5975), 12, + ACTIONS(5992), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226998,7 +224777,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5973), 25, + ACTIONS(5990), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227024,55 +224803,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105567] = 4, - ACTIONS(3725), 1, - anon_sym_EQ, + [105074] = 5, + ACTIONS(5998), 1, + anon_sym_SEMI, + ACTIONS(6001), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3448), 13, + ACTIONS(5996), 10, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3452), 23, - sym__ternary_qmark, - anon_sym_as, - 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_satisfies, - [105615] = 3, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(5994), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [105124] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1853), 12, + ACTIONS(6005), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -227085,7 +224865,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1855), 25, + ACTIONS(6003), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227111,11 +224891,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105661] = 3, + [105170] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5975), 12, + ACTIONS(6009), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -227128,7 +224908,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5973), 25, + ACTIONS(6007), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227154,11 +224934,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105707] = 3, + [105216] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5991), 12, + ACTIONS(6013), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -227171,7 +224951,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5989), 25, + ACTIONS(6011), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227197,11 +224977,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105753] = 3, + [105262] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5983), 12, + ACTIONS(5992), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -227214,7 +224994,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5981), 25, + ACTIONS(5990), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227240,12 +225020,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105799] = 3, + [105308] = 4, + ACTIONS(3698), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6003), 12, + ACTIONS(3435), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3439), 23, + sym__ternary_qmark, + anon_sym_as, + 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_satisfies, + [105356] = 4, + ACTIONS(6015), 1, sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1659), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -227257,7 +225082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6001), 25, + ACTIONS(1661), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227283,13 +225108,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105845] = 4, - ACTIONS(6005), 1, - sym__automatic_semicolon, + [105404] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1702), 11, + ACTIONS(6019), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -227301,7 +225125,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1704), 25, + ACTIONS(6017), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227327,24 +225151,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105893] = 3, + [105450] = 9, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4736), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5975), 12, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5973), 25, + ACTIONS(5827), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3887), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3758), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227368,15 +225200,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [105939] = 4, - ACTIONS(3733), 1, + [105508] = 4, + ACTIONS(3712), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3448), 13, + ACTIONS(3435), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -227390,7 +225220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 23, + ACTIONS(3439), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -227414,99 +225244,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [105987] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5991), 12, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_PLUS, - anon_sym_DASH, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5989), 25, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [106033] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1735), 12, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_PLUS, - anon_sym_DASH, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1737), 25, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [106079] = 4, - ACTIONS(3693), 1, + [105556] = 4, + ACTIONS(3708), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3448), 13, + ACTIONS(3435), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -227520,7 +225264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 23, + ACTIONS(3439), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -227544,17 +225288,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [106127] = 5, - ACTIONS(6011), 1, - anon_sym_SEMI, - ACTIONS(6014), 1, - sym__automatic_semicolon, + [105604] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6009), 10, + ACTIONS(6023), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -227563,7 +225305,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6007), 25, + ACTIONS(6021), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227589,11 +225331,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106177] = 3, + [105650] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5971), 12, + ACTIONS(1723), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -227606,7 +225348,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5969), 25, + ACTIONS(1725), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227632,11 +225374,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106223] = 3, + [105696] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5991), 12, + ACTIONS(5992), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -227649,7 +225391,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5989), 25, + ACTIONS(5990), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227675,11 +225417,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106269] = 3, + [105742] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5995), 12, + ACTIONS(5970), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -227692,7 +225434,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5993), 25, + ACTIONS(5968), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227718,13 +225460,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106315] = 4, - ACTIONS(3695), 1, + [105788] = 4, + ACTIONS(3706), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3448), 13, + ACTIONS(3435), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -227738,7 +225480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 23, + ACTIONS(3439), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -227762,11 +225504,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [106363] = 3, + [105836] = 4, + ACTIONS(3728), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6003), 12, + ACTIONS(3435), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3439), 23, + sym__ternary_qmark, + anon_sym_as, + 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_satisfies, + [105884] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6013), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -227779,7 +225565,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6001), 25, + ACTIONS(6011), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227805,11 +225591,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106409] = 3, + [105930] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6018), 12, + ACTIONS(6027), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -227822,7 +225608,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6016), 25, + ACTIONS(6025), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227848,13 +225634,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106455] = 4, - ACTIONS(6020), 1, + [105976] = 4, + ACTIONS(6029), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1853), 11, + ACTIONS(1809), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -227866,7 +225652,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1855), 25, + ACTIONS(1811), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227892,11 +225678,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106503] = 3, + [106024] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5971), 12, + ACTIONS(5958), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -227909,7 +225695,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5969), 25, + ACTIONS(5956), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227935,55 +225721,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106549] = 4, - ACTIONS(3727), 1, - anon_sym_EQ, + [106070] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3448), 13, + ACTIONS(5958), 12, + sym__automatic_semicolon, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3452), 23, - sym__ternary_qmark, - anon_sym_as, - 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_satisfies, - [106597] = 3, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(5956), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [106116] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5979), 12, + ACTIONS(5962), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -227996,7 +225781,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5977), 25, + ACTIONS(5960), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228022,11 +225807,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106643] = 3, + [106162] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5975), 12, + ACTIONS(5984), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -228039,7 +225824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5973), 25, + ACTIONS(5982), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228065,11 +225850,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106689] = 3, + [106208] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5975), 12, + ACTIONS(5958), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -228082,7 +225867,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5973), 25, + ACTIONS(5956), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228108,11 +225893,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106735] = 3, + [106254] = 5, + ACTIONS(6035), 1, + anon_sym_SEMI, + ACTIONS(6038), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5979), 12, + ACTIONS(6033), 10, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6031), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [106304] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5962), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -228125,7 +225955,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5977), 25, + ACTIONS(5960), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228151,11 +225981,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106781] = 3, + [106350] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5999), 12, + ACTIONS(5992), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -228168,7 +225998,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5997), 25, + ACTIONS(5990), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228194,11 +226024,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106827] = 3, + [106396] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6024), 12, + ACTIONS(6027), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -228211,7 +226041,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6022), 25, + ACTIONS(6025), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228237,11 +226067,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106873] = 3, + [106442] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6028), 12, + ACTIONS(5970), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -228254,7 +226084,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6026), 25, + ACTIONS(5968), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228280,11 +226110,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106919] = 3, + [106488] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6032), 12, + ACTIONS(6013), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -228297,7 +226127,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6030), 25, + ACTIONS(6011), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228323,17 +226153,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106965] = 5, - ACTIONS(6038), 1, - anon_sym_SEMI, - ACTIONS(6041), 1, - sym__automatic_semicolon, + [106534] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6036), 10, + ACTIONS(5970), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -228342,7 +226170,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6034), 25, + ACTIONS(5968), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228368,11 +226196,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107015] = 3, + [106580] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6045), 12, + ACTIONS(6013), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -228385,7 +226213,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6043), 25, + ACTIONS(6011), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228411,29 +226239,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107061] = 8, - ACTIONS(6047), 1, - anon_sym_LPAREN, - ACTIONS(6049), 1, - anon_sym_DOT, - ACTIONS(6051), 1, - anon_sym_LT, - STATE(2763), 1, - sym_arguments, - STATE(5373), 1, - sym_type_arguments, + [106626] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3533), 7, + ACTIONS(5970), 12, + sym__automatic_semicolon, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3531), 25, + ACTIONS(5968), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228459,11 +226282,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107117] = 3, + [106672] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5983), 12, + ACTIONS(6013), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -228476,7 +226299,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5981), 25, + ACTIONS(6011), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228502,55 +226325,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107163] = 4, - ACTIONS(3745), 1, - anon_sym_EQ, + [106718] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3448), 13, + ACTIONS(5970), 12, + sym__automatic_semicolon, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3452), 23, - sym__ternary_qmark, - anon_sym_as, - 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_satisfies, - [107211] = 3, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(5968), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [106764] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5991), 12, + ACTIONS(5970), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -228563,7 +226385,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5989), 25, + ACTIONS(5968), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228589,13 +226411,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107257] = 4, - ACTIONS(6053), 1, + [106810] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5958), 12, sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(5956), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [106856] = 4, + ACTIONS(3704), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3435), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3439), 23, + sym__ternary_qmark, + anon_sym_as, + 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_satisfies, + [106904] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1702), 11, + ACTIONS(5974), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -228607,7 +226515,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1704), 25, + ACTIONS(5972), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228633,11 +226541,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107305] = 3, + [106950] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5971), 12, + ACTIONS(5992), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -228650,7 +226558,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5969), 25, + ACTIONS(5990), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228676,13 +226584,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107351] = 4, - ACTIONS(3729), 1, + [106996] = 4, + ACTIONS(3718), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3448), 13, + ACTIONS(3435), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -228696,7 +226604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3452), 23, + ACTIONS(3439), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -228720,13 +226628,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [107399] = 4, - ACTIONS(6055), 1, + [107044] = 4, + ACTIONS(6040), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1853), 11, + ACTIONS(1659), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -228738,7 +226646,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1855), 25, + ACTIONS(1661), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228764,28 +226672,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107447] = 3, + [107092] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3602), 10, + ACTIONS(5958), 12, + sym__automatic_semicolon, anon_sym_STAR, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3600), 27, + ACTIONS(5956), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_DOT, - anon_sym_class, anon_sym_async, anon_sym_new, sym_identifier, @@ -228807,11 +226715,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107493] = 3, + [107138] = 5, + ACTIONS(87), 1, + anon_sym_BQUOTE, + STATE(2315), 1, + sym_template_string, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1877), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1879), 22, + sym__ternary_qmark, + anon_sym_as, + 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_satisfies, + [107188] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5983), 12, + ACTIONS(5962), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -228824,7 +226777,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5981), 25, + ACTIONS(5960), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228850,96 +226803,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107539] = 5, - ACTIONS(4514), 1, - anon_sym_LPAREN, - STATE(2293), 1, - sym_arguments, + [107234] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4397), 13, + ACTIONS(5984), 12, + sym__automatic_semicolon, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4399), 21, - sym__ternary_qmark, - anon_sym_as, + anon_sym_RBRACE, + 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_satisfies, - [107588] = 14, - ACTIONS(2291), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, anon_sym_SQUOTE, - ACTIONS(2331), 1, - anon_sym_override, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(6057), 1, - anon_sym_STAR, - ACTIONS(6059), 1, - anon_sym_async, - ACTIONS(6063), 1, - anon_sym_readonly, - STATE(2759), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6061), 2, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(6065), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3791), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3864), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2323), 18, + anon_sym_AT, + ACTIONS(5982), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -228947,23 +226844,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [107655] = 3, + anon_sym_abstract, + anon_sym_accessor, + [107280] = 7, + ACTIONS(5533), 1, + anon_sym_COMMA, + ACTIONS(5665), 1, + anon_sym_RBRACE, + STATE(5136), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6069), 11, + ACTIONS(3758), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1938), 6, anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_PLUS, - anon_sym_DASH, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(6067), 25, + ACTIONS(1936), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228987,13 +226892,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [107700] = 3, + [107333] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6073), 11, + ACTIONS(6044), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -229005,7 +226908,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6071), 25, + ACTIONS(6042), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229031,39 +226934,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107745] = 3, + [107378] = 14, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(2322), 1, + anon_sym_override, + ACTIONS(4736), 1, + anon_sym_LBRACK, + ACTIONS(6046), 1, + anon_sym_STAR, + ACTIONS(6048), 1, + anon_sym_async, + ACTIONS(6052), 1, + anon_sym_readonly, + STATE(2762), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6077), 11, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6050), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(6075), 25, + ACTIONS(6054), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3758), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3791), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -229071,25 +226987,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [107790] = 3, + [107445] = 6, + ACTIONS(4429), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6077), 11, - anon_sym_STAR, + ACTIONS(5634), 2, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(3758), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1942), 6, + anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_PLUS, - anon_sym_DASH, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(6075), 25, + ACTIONS(1940), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229113,13 +227032,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [107835] = 3, + [107496] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1735), 11, + ACTIONS(1809), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -229131,7 +227048,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1737), 25, + ACTIONS(1811), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229157,28 +227074,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107880] = 6, - ACTIONS(4469), 1, + [107541] = 6, + ACTIONS(4429), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5674), 2, + ACTIONS(5634), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3791), 4, + ACTIONS(3758), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1973), 6, + ACTIONS(1938), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1971), 23, + ACTIONS(1936), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229202,71 +227119,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [107931] = 3, + [107592] = 5, + ACTIONS(4535), 1, + anon_sym_LPAREN, + STATE(2088), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6081), 11, + ACTIONS(4218), 13, anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(6079), 25, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [107976] = 7, - ACTIONS(5566), 1, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4220), 21, + sym__ternary_qmark, + anon_sym_as, + 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_satisfies, + [107641] = 7, + ACTIONS(5533), 1, anon_sym_COMMA, - ACTIONS(5657), 1, + ACTIONS(5665), 1, anon_sym_RBRACE, - STATE(5157), 1, + STATE(5136), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 4, + ACTIONS(3758), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2007), 6, + ACTIONS(1942), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(2005), 23, + ACTIONS(1940), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229290,11 +227209,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108029] = 3, + [107694] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1853), 11, + ACTIONS(6058), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -229306,7 +227225,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1855), 25, + ACTIONS(6056), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229332,29 +227251,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108074] = 7, - ACTIONS(5566), 1, - anon_sym_COMMA, - ACTIONS(5657), 1, - anon_sym_RBRACE, - STATE(5157), 1, - aux_sym_object_repeat1, + [107739] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1973), 6, + ACTIONS(1723), 11, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(1971), 23, + anon_sym_AT, + ACTIONS(1725), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229378,28 +227291,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108127] = 6, - ACTIONS(4469), 1, - anon_sym_EQ, + anon_sym_abstract, + anon_sym_accessor, + [107784] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5674), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3791), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2007), 6, + ACTIONS(6062), 11, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(2005), 23, + anon_sym_AT, + ACTIONS(6060), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229423,54 +227333,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108178] = 17, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(3673), 1, - anon_sym_override, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(4781), 1, - anon_sym_accessor, - ACTIONS(4795), 1, - anon_sym_STAR, - ACTIONS(4799), 1, - anon_sym_async, - ACTIONS(6083), 1, - anon_sym_static, - ACTIONS(6085), 1, - anon_sym_readonly, - ACTIONS(6087), 1, - anon_sym_declare, - ACTIONS(6089), 1, anon_sym_abstract, - STATE(2750), 1, - sym_override_modifier, + anon_sym_accessor, + [107829] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4801), 2, + ACTIONS(6066), 11, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(4805), 2, - anon_sym_get, - anon_sym_set, - STATE(3005), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3651), 16, + anon_sym_AT, + ACTIONS(6064), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -229478,26 +227375,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108250] = 5, + anon_sym_abstract, + anon_sym_accessor, + [107874] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5850), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3791), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1973), 6, + ACTIONS(6058), 11, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(1971), 23, + anon_sym_AT, + ACTIONS(6056), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229521,54 +227417,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108298] = 17, - ACTIONS(1588), 1, + anon_sym_abstract, + anon_sym_accessor, + [107919] = 10, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(3673), 1, - anon_sym_override, - ACTIONS(4471), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(5040), 1, + ACTIONS(6046), 1, anon_sym_STAR, - ACTIONS(5042), 1, - anon_sym_async, - ACTIONS(6093), 1, - anon_sym_static, - ACTIONS(6095), 1, - anon_sym_readonly, - ACTIONS(6097), 1, - anon_sym_declare, - ACTIONS(6099), 1, - anon_sym_abstract, - ACTIONS(6101), 1, - anon_sym_accessor, - STATE(2764), 1, - sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5048), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6091), 2, + ACTIONS(6050), 2, sym_number, sym_private_property_identifier, - STATE(3017), 3, + ACTIONS(6054), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3758), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3791), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 16, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -229576,26 +227467,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108370] = 5, + [107977] = 9, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4736), 1, + anon_sym_LBRACK, + ACTIONS(6068), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5850), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3791), 4, + ACTIONS(6050), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3758), 3, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2007), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(2005), 23, + STATE(3791), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229619,33 +227514,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108418] = 10, - ACTIONS(2291), 1, + [108033] = 10, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(6103), 1, + ACTIONS(6070), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6105), 2, + ACTIONS(6072), 2, sym_number, sym_private_property_identifier, - ACTIONS(6107), 2, + ACTIONS(6074), 2, anon_sym_get, anon_sym_set, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3882), 3, + STATE(3833), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 21, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229667,33 +227562,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108476] = 10, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(6109), 1, - anon_sym_STAR, + [108091] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6111), 2, + ACTIONS(5827), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3758), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1938), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(6113), 2, + ACTIONS(1936), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, - ACTIONS(3791), 3, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [108139] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5827), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3758), 4, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - STATE(3925), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2323), 21, + ACTIONS(1942), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1940), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229703,6 +227634,8 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -229715,33 +227648,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108534] = 10, - ACTIONS(2291), 1, + [108187] = 10, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(6115), 1, + ACTIONS(6076), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6117), 2, + ACTIONS(6078), 2, sym_number, sym_private_property_identifier, - ACTIONS(6119), 2, + ACTIONS(6080), 2, anon_sym_get, anon_sym_set, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3871), 3, + STATE(3804), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 21, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229763,35 +227696,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108592] = 11, - ACTIONS(2291), 1, + [108245] = 11, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(6115), 1, + ACTIONS(6082), 1, anon_sym_STAR, - ACTIONS(6121), 1, + ACTIONS(6084), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6117), 2, + ACTIONS(6086), 2, sym_number, sym_private_property_identifier, - ACTIONS(6119), 2, + ACTIONS(6088), 2, anon_sym_get, anon_sym_set, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3871), 3, + STATE(3883), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 20, + ACTIONS(2314), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229812,35 +227745,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108652] = 11, - ACTIONS(2291), 1, + [108305] = 11, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(6109), 1, + ACTIONS(6076), 1, anon_sym_STAR, - ACTIONS(6123), 1, + ACTIONS(6090), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6111), 2, + ACTIONS(6078), 2, sym_number, sym_private_property_identifier, - ACTIONS(6113), 2, + ACTIONS(6080), 2, anon_sym_get, anon_sym_set, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3925), 3, + STATE(3804), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 20, + ACTIONS(2314), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229861,46 +227794,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108712] = 9, - ACTIONS(2291), 1, + [108365] = 17, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(6125), 1, - anon_sym_EQ_GT, + ACTIONS(4748), 1, + anon_sym_STAR, + ACTIONS(4752), 1, + anon_sym_async, + ACTIONS(4774), 1, + anon_sym_accessor, + ACTIONS(6092), 1, + anon_sym_static, + ACTIONS(6094), 1, + anon_sym_readonly, + ACTIONS(6096), 1, + anon_sym_declare, + ACTIONS(6098), 1, + anon_sym_abstract, + STATE(2746), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6061), 2, + ACTIONS(4754), 2, sym_number, sym_private_property_identifier, - ACTIONS(3791), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3864), 3, + ACTIONS(4758), 2, + anon_sym_get, + anon_sym_set, + STATE(3017), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(3646), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, + 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, + anon_sym_object, + [108437] = 17, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4431), 1, + anon_sym_LBRACK, + ACTIONS(5043), 1, + anon_sym_STAR, + ACTIONS(5045), 1, + anon_sym_async, + ACTIONS(6102), 1, anon_sym_static, + ACTIONS(6104), 1, anon_sym_readonly, + ACTIONS(6106), 1, + anon_sym_declare, + ACTIONS(6108), 1, + anon_sym_abstract, + ACTIONS(6110), 1, + anon_sym_accessor, + STATE(2763), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5051), 2, anon_sym_get, anon_sym_set, - anon_sym_declare, + ACTIONS(6100), 2, + sym_number, + sym_private_property_identifier, + STATE(3021), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 16, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -229908,35 +227904,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108768] = 11, - ACTIONS(2291), 1, + [108509] = 11, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(6057), 1, + ACTIONS(6046), 1, anon_sym_STAR, - ACTIONS(6059), 1, + ACTIONS(6048), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6061), 2, + ACTIONS(6050), 2, sym_number, sym_private_property_identifier, - ACTIONS(6065), 2, + ACTIONS(6054), 2, anon_sym_get, anon_sym_set, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3864), 3, + STATE(3791), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 20, + ACTIONS(2314), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229957,33 +227953,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108828] = 10, - ACTIONS(2291), 1, + [108569] = 10, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(6057), 1, + ACTIONS(6082), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6061), 2, + ACTIONS(6086), 2, sym_number, sym_private_property_identifier, - ACTIONS(6065), 2, + ACTIONS(6088), 2, anon_sym_get, anon_sym_set, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3864), 3, + STATE(3883), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 21, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230005,36 +228001,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108886] = 13, - ACTIONS(1588), 1, + [108627] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3572), 9, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_LT, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3570), 26, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_DOT, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [108671] = 13, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6114), 1, anon_sym_static, - ACTIONS(6131), 1, + ACTIONS(6116), 1, anon_sym_readonly, - ACTIONS(6133), 1, + ACTIONS(6118), 1, anon_sym_abstract, - ACTIONS(6135), 1, + ACTIONS(6120), 1, anon_sym_accessor, - STATE(2811), 1, + STATE(2795), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6127), 2, + ACTIONS(6112), 2, sym_number, sym_private_property_identifier, - STATE(3419), 3, + STATE(3445), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 20, + ACTIONS(3646), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230055,28 +228092,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108949] = 8, - ACTIONS(2291), 1, + [108734] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5234), 2, + ACTIONS(6122), 2, sym_number, sym_private_property_identifier, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3816), 3, + STATE(3866), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230100,28 +228137,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109002] = 8, - ACTIONS(2291), 1, + [108787] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5408), 2, + ACTIONS(6124), 2, sym_number, sym_private_property_identifier, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3825), 3, + STATE(3879), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230145,28 +228182,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109055] = 8, - ACTIONS(2291), 1, + [108840] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5703), 2, + ACTIONS(6086), 2, sym_number, sym_private_property_identifier, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3824), 3, + STATE(3883), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230190,28 +228227,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109108] = 8, - ACTIONS(2291), 1, + [108893] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5418), 2, + ACTIONS(5601), 2, sym_number, sym_private_property_identifier, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3850), 3, + STATE(3785), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230235,28 +228272,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109161] = 8, - ACTIONS(2291), 1, + [108946] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5426), 2, + ACTIONS(5203), 2, sym_number, sym_private_property_identifier, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3875), 3, + STATE(3853), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230280,28 +228317,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109214] = 8, - ACTIONS(2291), 1, + [108999] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5434), 2, + ACTIONS(5456), 2, sym_number, sym_private_property_identifier, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3880), 3, + STATE(3911), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230325,28 +228362,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109267] = 8, - ACTIONS(2291), 1, + [109052] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6137), 2, + ACTIONS(6050), 2, sym_number, sym_private_property_identifier, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3881), 3, + STATE(3791), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230370,36 +228407,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109320] = 13, - ACTIONS(1588), 1, + [109105] = 13, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(4895), 1, + ACTIONS(4925), 1, anon_sym_static, - ACTIONS(4897), 1, + ACTIONS(4927), 1, anon_sym_readonly, - ACTIONS(4899), 1, + ACTIONS(4929), 1, anon_sym_abstract, - ACTIONS(4901), 1, + ACTIONS(4931), 1, anon_sym_accessor, - STATE(2814), 1, + STATE(2782), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4893), 2, + ACTIONS(4923), 2, sym_number, sym_private_property_identifier, - STATE(3420), 3, + STATE(3437), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 20, + ACTIONS(3646), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230420,28 +228457,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109383] = 8, - ACTIONS(2291), 1, + [109168] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5448), 2, + ACTIONS(6078), 2, sym_number, sym_private_property_identifier, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3839), 3, + STATE(3804), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230465,69 +228502,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109436] = 8, - ACTIONS(2291), 1, + [109221] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6139), 2, + ACTIONS(5181), 2, sym_number, sym_private_property_identifier, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3805), 3, + STATE(3893), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [109489] = 6, - ACTIONS(6141), 1, - anon_sym_AT, - STATE(2705), 1, - aux_sym_export_statement_repeat1, - STATE(2748), 1, - sym_decorator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3575), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3573), 25, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230551,30 +228547,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [109538] = 8, - ACTIONS(2291), 1, + [109274] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6061), 2, + ACTIONS(5346), 2, sym_number, sym_private_property_identifier, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3864), 3, + STATE(3926), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230598,28 +228592,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109591] = 8, - ACTIONS(2291), 1, + [109327] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6105), 2, + ACTIONS(5639), 2, sym_number, sym_private_property_identifier, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3882), 3, + STATE(3914), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230643,28 +228637,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109644] = 8, - ACTIONS(2291), 1, + [109380] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5528), 2, + ACTIONS(5379), 2, sym_number, sym_private_property_identifier, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3840), 3, + STATE(3857), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230688,28 +228682,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109697] = 8, - ACTIONS(2291), 1, + [109433] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6144), 2, + ACTIONS(5383), 2, sym_number, sym_private_property_identifier, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3924), 3, + STATE(3868), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230733,28 +228727,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109750] = 8, - ACTIONS(2291), 1, + [109486] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6117), 2, + ACTIONS(5391), 2, sym_number, sym_private_property_identifier, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3871), 3, + STATE(3813), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230778,28 +228772,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109803] = 8, - ACTIONS(2291), 1, + [109539] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6146), 2, + ACTIONS(5401), 2, sym_number, sym_private_property_identifier, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3897), 3, + STATE(3869), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230823,28 +228817,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109856] = 8, - ACTIONS(2291), 1, + [109592] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5214), 2, + ACTIONS(5409), 2, sym_number, sym_private_property_identifier, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3775), 3, + STATE(3908), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230868,28 +228862,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109909] = 8, - ACTIONS(2291), 1, + [109645] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5220), 2, + ACTIONS(6126), 2, sym_number, sym_private_property_identifier, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3901), 3, + STATE(3795), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230913,28 +228907,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109962] = 8, - ACTIONS(2291), 1, + [109698] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5508), 2, + ACTIONS(6128), 2, sym_number, sym_private_property_identifier, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3772), 3, + STATE(3802), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230958,28 +228952,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110015] = 8, - ACTIONS(2291), 1, + [109751] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5380), 2, + ACTIONS(6072), 2, sym_number, sym_private_property_identifier, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3919), 3, + STATE(3833), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231003,28 +228997,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110068] = 8, - ACTIONS(2291), 1, + [109804] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5194), 2, + ACTIONS(5483), 2, sym_number, sym_private_property_identifier, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3795), 3, + STATE(3902), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231048,28 +229042,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110121] = 8, - ACTIONS(2291), 1, + [109857] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6148), 2, + ACTIONS(6130), 2, sym_number, sym_private_property_identifier, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3804), 3, + STATE(3924), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231093,28 +229087,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110174] = 8, - ACTIONS(2291), 1, + [109910] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5200), 2, + ACTIONS(5509), 2, sym_number, sym_private_property_identifier, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3815), 3, + STATE(3826), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231138,28 +229132,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110227] = 8, - ACTIONS(2291), 1, + [109963] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6150), 2, + ACTIONS(5413), 2, sym_number, sym_private_property_identifier, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3923), 3, + STATE(3864), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231183,28 +229177,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110280] = 8, - ACTIONS(2291), 1, + [110016] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5315), 2, + ACTIONS(5328), 2, sym_number, sym_private_property_identifier, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3800), 3, + STATE(3888), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231228,28 +229222,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110333] = 8, - ACTIONS(2291), 1, + [110069] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5368), 2, + ACTIONS(5235), 2, sym_number, sym_private_property_identifier, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3786), 3, + STATE(3916), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231273,28 +229267,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110386] = 8, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(4785), 1, - anon_sym_LBRACK, + [110122] = 6, + ACTIONS(6132), 1, + anon_sym_AT, + STATE(2717), 1, + aux_sym_export_statement_repeat1, + STATE(2749), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5588), 2, + ACTIONS(3583), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3791), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3894), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(3581), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231318,28 +229308,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110439] = 8, - ACTIONS(2291), 1, + anon_sym_abstract, + anon_sym_accessor, + [110171] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6111), 2, + ACTIONS(5553), 2, sym_number, sym_private_property_identifier, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3925), 3, + STATE(3816), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231363,49 +229355,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110492] = 14, - ACTIONS(2291), 1, + [110224] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(2325), 1, - anon_sym_async, - ACTIONS(2327), 1, - anon_sym_readonly, - ACTIONS(2331), 1, - anon_sym_override, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(4988), 1, - anon_sym_STAR, - ACTIONS(6152), 1, - anon_sym_static, - STATE(2768), 1, - sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2301), 2, + ACTIONS(6135), 2, sym_number, sym_private_property_identifier, - ACTIONS(2329), 2, - anon_sym_get, - anon_sym_set, - STATE(3922), 3, + ACTIONS(3758), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3850), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 17, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -231413,28 +229400,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110556] = 9, - ACTIONS(1510), 1, + [110277] = 9, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1512), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(6154), 1, + ACTIONS(6137), 1, anon_sym_RBRACE, - STATE(5496), 1, + STATE(4823), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6156), 2, + ACTIONS(6139), 2, sym_number, sym_private_property_identifier, - STATE(4496), 3, + STATE(4037), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231458,28 +229445,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110610] = 9, - ACTIONS(1510), 1, + [110331] = 9, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1512), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(6158), 1, + ACTIONS(6141), 1, anon_sym_RBRACE, - STATE(5496), 1, + STATE(5484), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6156), 2, + ACTIONS(6143), 2, sym_number, sym_private_property_identifier, - STATE(4496), 3, + STATE(4531), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231503,49 +229490,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110664] = 14, - ACTIONS(1588), 1, + [110385] = 9, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(3673), 1, - anon_sym_override, - ACTIONS(4467), 1, - anon_sym_STAR, - ACTIONS(4471), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(4473), 1, - anon_sym_async, - ACTIONS(4477), 1, - anon_sym_readonly, - ACTIONS(6160), 1, - anon_sym_static, - STATE(2769), 1, - sym_override_modifier, + ACTIONS(6145), 1, + anon_sym_RBRACE, + STATE(5484), 1, + sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4475), 2, + ACTIONS(6143), 2, sym_number, sym_private_property_identifier, - ACTIONS(4479), 2, - anon_sym_get, - anon_sym_set, - STATE(3058), 3, + STATE(4531), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 17, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -231553,35 +229535,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110728] = 12, - ACTIONS(1588), 1, + [110439] = 12, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(3673), 1, + ACTIONS(3672), 1, anon_sym_override, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(6162), 1, - anon_sym_STAR, - ACTIONS(6166), 1, + ACTIONS(5910), 1, anon_sym_readonly, - STATE(2749), 1, + ACTIONS(6147), 1, + anon_sym_STAR, + STATE(2758), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6164), 2, + ACTIONS(6149), 2, sym_number, sym_private_property_identifier, - ACTIONS(6168), 2, + ACTIONS(6151), 2, anon_sym_get, anon_sym_set, STATE(3010), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 19, + ACTIONS(3646), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231601,44 +229583,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110788] = 9, - ACTIONS(1510), 1, + [110499] = 22, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(2346), 1, + anon_sym_type, + ACTIONS(2348), 1, + anon_sym_namespace, + ACTIONS(2350), 1, + anon_sym_import, + ACTIONS(2352), 1, + anon_sym_var, + ACTIONS(2354), 1, + anon_sym_let, + ACTIONS(2356), 1, + anon_sym_const, + ACTIONS(2358), 1, + anon_sym_class, + ACTIONS(2360), 1, + anon_sym_async, + ACTIONS(2362), 1, + anon_sym_function, + ACTIONS(2364), 1, + anon_sym_declare, + ACTIONS(2368), 1, + anon_sym_abstract, + ACTIONS(2372), 1, + anon_sym_interface, + ACTIONS(2374), 1, + anon_sym_enum, + ACTIONS(3760), 1, + anon_sym_module, + ACTIONS(6153), 1, + anon_sym_default, + STATE(1290), 1, + sym_decorator, + STATE(3962), 1, + sym_declaration, + STATE(4367), 1, + aux_sym_export_statement_repeat1, + STATE(4399), 1, + sym_internal_module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4393), 13, + 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_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [110579] = 22, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(2238), 1, + anon_sym_namespace, + ACTIONS(2242), 1, + anon_sym_import, + ACTIONS(2244), 1, + anon_sym_var, + ACTIONS(2246), 1, + anon_sym_let, + ACTIONS(2248), 1, + anon_sym_const, + ACTIONS(2253), 1, + anon_sym_class, + ACTIONS(2255), 1, + anon_sym_async, + ACTIONS(2257), 1, + anon_sym_function, + ACTIONS(2262), 1, + anon_sym_declare, + ACTIONS(2266), 1, + anon_sym_abstract, + ACTIONS(2268), 1, + anon_sym_interface, + ACTIONS(2270), 1, + anon_sym_enum, + ACTIONS(2296), 1, + anon_sym_type, + ACTIONS(2298), 1, + anon_sym_module, + ACTIONS(2300), 1, + anon_sym_global, + STATE(811), 1, + sym_internal_module, + STATE(886), 1, + sym_declaration, + STATE(1290), 1, + sym_decorator, + STATE(4284), 1, + aux_sym_export_statement_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(852), 13, + 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_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [110659] = 14, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1512), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(6170), 1, - anon_sym_RBRACE, - STATE(5496), 1, - sym_enum_assignment, + ACTIONS(5057), 1, + anon_sym_STAR, + ACTIONS(5059), 1, + anon_sym_async, + ACTIONS(5063), 1, + anon_sym_readonly, + ACTIONS(6155), 1, + anon_sym_static, + STATE(2766), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6156), 2, + ACTIONS(5061), 2, sym_number, sym_private_property_identifier, - STATE(4496), 3, + ACTIONS(5065), 2, + anon_sym_get, + anon_sym_set, + STATE(3055), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(3646), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -231646,51 +229749,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110842] = 22, - ACTIONS(99), 1, + [110723] = 22, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(2355), 1, + ACTIONS(2346), 1, anon_sym_type, - ACTIONS(2357), 1, + ACTIONS(2348), 1, anon_sym_namespace, - ACTIONS(2359), 1, + ACTIONS(2350), 1, anon_sym_import, - ACTIONS(2361), 1, + ACTIONS(2352), 1, anon_sym_var, - ACTIONS(2363), 1, + ACTIONS(2354), 1, anon_sym_let, - ACTIONS(2365), 1, + ACTIONS(2356), 1, anon_sym_const, - ACTIONS(2367), 1, + ACTIONS(2358), 1, anon_sym_class, - ACTIONS(2369), 1, + ACTIONS(2360), 1, anon_sym_async, - ACTIONS(2371), 1, + ACTIONS(2362), 1, anon_sym_function, - ACTIONS(2373), 1, + ACTIONS(2364), 1, anon_sym_declare, - ACTIONS(2377), 1, + ACTIONS(2366), 1, + anon_sym_module, + ACTIONS(2368), 1, anon_sym_abstract, - ACTIONS(2381), 1, + ACTIONS(2370), 1, + anon_sym_global, + ACTIONS(2372), 1, anon_sym_interface, - ACTIONS(2383), 1, + ACTIONS(2374), 1, anon_sym_enum, - ACTIONS(3793), 1, - anon_sym_module, - ACTIONS(6172), 1, - anon_sym_default, - STATE(1267), 1, + STATE(1290), 1, sym_decorator, - STATE(3976), 1, - sym_declaration, - STATE(4377), 1, + STATE(4367), 1, aux_sym_export_statement_repeat1, - STATE(4425), 1, + STATE(4399), 1, sym_internal_module, + STATE(4415), 1, + sym_declaration, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4422), 13, + STATE(4393), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -231704,44 +229807,49 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [110922] = 9, - ACTIONS(1510), 1, + [110803] = 14, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1512), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4427), 1, + anon_sym_STAR, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(6174), 1, - anon_sym_RBRACE, - STATE(5496), 1, - sym_enum_assignment, + ACTIONS(4433), 1, + anon_sym_async, + ACTIONS(4437), 1, + anon_sym_readonly, + ACTIONS(6157), 1, + anon_sym_static, + STATE(2748), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6156), 2, + ACTIONS(4435), 2, sym_number, sym_private_property_identifier, - STATE(4496), 3, + ACTIONS(4439), 2, + anon_sym_get, + anon_sym_set, + STATE(3080), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(3646), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -231749,51 +229857,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110976] = 22, - ACTIONS(99), 1, + [110867] = 22, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(2247), 1, + ACTIONS(2242), 1, anon_sym_import, - ACTIONS(2249), 1, + ACTIONS(2244), 1, anon_sym_var, - ACTIONS(2251), 1, + ACTIONS(2246), 1, anon_sym_let, - ACTIONS(2253), 1, + ACTIONS(2248), 1, anon_sym_const, - ACTIONS(2258), 1, + ACTIONS(2253), 1, anon_sym_class, - ACTIONS(2260), 1, + ACTIONS(2255), 1, anon_sym_async, - ACTIONS(2262), 1, + ACTIONS(2257), 1, anon_sym_function, - ACTIONS(2271), 1, + ACTIONS(2266), 1, anon_sym_abstract, - ACTIONS(2273), 1, + ACTIONS(2268), 1, anon_sym_interface, - ACTIONS(2275), 1, + ACTIONS(2270), 1, anon_sym_enum, - ACTIONS(2305), 1, + ACTIONS(2296), 1, anon_sym_type, - ACTIONS(2309), 1, - anon_sym_global, - ACTIONS(2317), 1, + ACTIONS(2306), 1, anon_sym_namespace, - ACTIONS(2319), 1, + ACTIONS(2308), 1, anon_sym_declare, - ACTIONS(2345), 1, + ACTIONS(2310), 1, anon_sym_module, - STATE(874), 1, - sym_declaration, - STATE(890), 1, + ACTIONS(6159), 1, + anon_sym_default, + STATE(811), 1, sym_internal_module, - STATE(1267), 1, + STATE(843), 1, + sym_declaration, + STATE(1290), 1, sym_decorator, - STATE(4426), 1, + STATE(4284), 1, aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(789), 13, + STATE(852), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -231807,28 +229915,28 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [111056] = 9, - ACTIONS(1510), 1, + [110947] = 9, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1512), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(6176), 1, + ACTIONS(6161), 1, anon_sym_RBRACE, - STATE(5496), 1, + STATE(5484), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6156), 2, + ACTIONS(6143), 2, sym_number, sym_private_property_identifier, - STATE(4496), 3, + STATE(4531), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231852,28 +229960,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111110] = 9, - ACTIONS(1510), 1, + [111001] = 9, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1512), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(6178), 1, + ACTIONS(6163), 1, anon_sym_RBRACE, - STATE(4905), 1, + STATE(5484), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6180), 2, + ACTIONS(6143), 2, sym_number, sym_private_property_identifier, - STATE(4072), 3, + STATE(4531), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231897,44 +230005,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111164] = 9, - ACTIONS(1510), 1, + [111055] = 14, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1512), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(2318), 1, + anon_sym_readonly, + ACTIONS(2322), 1, + anon_sym_override, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(6182), 1, - anon_sym_RBRACE, - STATE(5496), 1, - sym_enum_assignment, + ACTIONS(4965), 1, + anon_sym_STAR, + ACTIONS(6165), 1, + anon_sym_static, + STATE(2756), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6156), 2, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - STATE(4496), 3, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3887), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -231942,51 +230055,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111218] = 22, - ACTIONS(99), 1, + [111119] = 22, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(2355), 1, - anon_sym_type, - ACTIONS(2357), 1, + ACTIONS(2238), 1, anon_sym_namespace, - ACTIONS(2359), 1, + ACTIONS(2242), 1, anon_sym_import, - ACTIONS(2361), 1, + ACTIONS(2244), 1, anon_sym_var, - ACTIONS(2363), 1, + ACTIONS(2246), 1, anon_sym_let, - ACTIONS(2365), 1, + ACTIONS(2248), 1, anon_sym_const, - ACTIONS(2367), 1, + ACTIONS(2253), 1, anon_sym_class, - ACTIONS(2369), 1, + ACTIONS(2255), 1, anon_sym_async, - ACTIONS(2371), 1, + ACTIONS(2257), 1, anon_sym_function, - ACTIONS(2373), 1, + ACTIONS(2262), 1, anon_sym_declare, - ACTIONS(2375), 1, + ACTIONS(2264), 1, anon_sym_module, - ACTIONS(2377), 1, + ACTIONS(2266), 1, anon_sym_abstract, - ACTIONS(2379), 1, - anon_sym_global, - ACTIONS(2381), 1, + ACTIONS(2268), 1, anon_sym_interface, - ACTIONS(2383), 1, + ACTIONS(2270), 1, anon_sym_enum, - STATE(1267), 1, - sym_decorator, - STATE(4377), 1, - aux_sym_export_statement_repeat1, - STATE(4425), 1, + ACTIONS(2296), 1, + anon_sym_type, + ACTIONS(6167), 1, + anon_sym_default, + STATE(811), 1, sym_internal_module, - STATE(4446), 1, + STATE(843), 1, sym_declaration, + STATE(1290), 1, + sym_decorator, + STATE(4284), 1, + aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4422), 13, + STATE(852), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -232000,51 +230113,96 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [111298] = 22, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(2243), 1, + [111199] = 9, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4736), 1, + anon_sym_LBRACK, + ACTIONS(6169), 1, + anon_sym_RBRACE, + STATE(4815), 1, + sym_enum_assignment, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6171), 2, + sym_number, + sym_private_property_identifier, + STATE(3979), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, anon_sym_namespace, - ACTIONS(2247), 1, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [111253] = 22, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(2242), 1, anon_sym_import, - ACTIONS(2249), 1, + ACTIONS(2244), 1, anon_sym_var, - ACTIONS(2251), 1, + ACTIONS(2246), 1, anon_sym_let, - ACTIONS(2253), 1, + ACTIONS(2248), 1, anon_sym_const, - ACTIONS(2258), 1, + ACTIONS(2253), 1, anon_sym_class, - ACTIONS(2260), 1, + ACTIONS(2255), 1, anon_sym_async, - ACTIONS(2262), 1, + ACTIONS(2257), 1, anon_sym_function, - ACTIONS(2267), 1, - anon_sym_declare, - ACTIONS(2269), 1, - anon_sym_module, - ACTIONS(2271), 1, + ACTIONS(2266), 1, anon_sym_abstract, - ACTIONS(2273), 1, + ACTIONS(2268), 1, anon_sym_interface, - ACTIONS(2275), 1, + ACTIONS(2270), 1, anon_sym_enum, - ACTIONS(2305), 1, + ACTIONS(2296), 1, anon_sym_type, - ACTIONS(6184), 1, - anon_sym_default, - STATE(825), 1, - sym_declaration, - STATE(890), 1, + ACTIONS(2300), 1, + anon_sym_global, + ACTIONS(2306), 1, + anon_sym_namespace, + ACTIONS(2308), 1, + anon_sym_declare, + ACTIONS(2324), 1, + anon_sym_module, + STATE(811), 1, sym_internal_module, - STATE(1267), 1, + STATE(886), 1, + sym_declaration, + STATE(1290), 1, sym_decorator, - STATE(4426), 1, + STATE(4284), 1, aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(789), 13, + STATE(852), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -232058,49 +230216,44 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [111378] = 14, - ACTIONS(1588), 1, + [111333] = 9, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(3673), 1, - anon_sym_override, - ACTIONS(4471), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(5054), 1, - anon_sym_STAR, - ACTIONS(5056), 1, - anon_sym_async, - ACTIONS(5060), 1, - anon_sym_readonly, - ACTIONS(6186), 1, - anon_sym_static, - STATE(2746), 1, - sym_override_modifier, + ACTIONS(6173), 1, + anon_sym_RBRACE, + STATE(5484), 1, + sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5058), 2, + ACTIONS(6143), 2, sym_number, sym_private_property_identifier, - ACTIONS(5062), 2, - anon_sym_get, - anon_sym_set, - STATE(3077), 3, + STATE(4531), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 17, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -232108,28 +230261,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111442] = 9, - ACTIONS(1510), 1, + [111387] = 9, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1512), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(6188), 1, + ACTIONS(6175), 1, anon_sym_RBRACE, - STATE(5496), 1, + STATE(5484), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6156), 2, + ACTIONS(6143), 2, sym_number, sym_private_property_identifier, - STATE(4496), 3, + STATE(4531), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232153,86 +230306,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111496] = 22, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(2247), 1, - anon_sym_import, - ACTIONS(2249), 1, - anon_sym_var, - ACTIONS(2251), 1, - anon_sym_let, - ACTIONS(2253), 1, - anon_sym_const, - ACTIONS(2258), 1, - anon_sym_class, - ACTIONS(2260), 1, - anon_sym_async, - ACTIONS(2262), 1, - anon_sym_function, - ACTIONS(2271), 1, - anon_sym_abstract, - ACTIONS(2273), 1, - anon_sym_interface, - ACTIONS(2275), 1, - anon_sym_enum, - ACTIONS(2305), 1, + [111441] = 9, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4736), 1, + anon_sym_LBRACK, + ACTIONS(6177), 1, + anon_sym_RBRACE, + STATE(5484), 1, + sym_enum_assignment, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6143), 2, + sym_number, + sym_private_property_identifier, + STATE(4531), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, anon_sym_type, - ACTIONS(2317), 1, anon_sym_namespace, - ACTIONS(2319), 1, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, - ACTIONS(2321), 1, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, anon_sym_module, - ACTIONS(6190), 1, - anon_sym_default, - STATE(825), 1, - sym_declaration, - STATE(890), 1, - sym_internal_module, - STATE(1267), 1, - sym_decorator, - STATE(4426), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(789), 13, - 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_import_alias, - sym_interface_declaration, - sym_enum_declaration, - sym_type_alias_declaration, - [111576] = 9, - ACTIONS(1510), 1, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [111495] = 9, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1512), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(6192), 1, + ACTIONS(6179), 1, anon_sym_RBRACE, - STATE(4794), 1, + STATE(5484), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6194), 2, + ACTIONS(6143), 2, sym_number, sym_private_property_identifier, - STATE(4047), 3, + STATE(4531), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232256,51 +230396,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111630] = 22, - ACTIONS(99), 1, + [111549] = 22, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(2243), 1, + ACTIONS(2238), 1, anon_sym_namespace, - ACTIONS(2247), 1, + ACTIONS(2242), 1, anon_sym_import, - ACTIONS(2249), 1, + ACTIONS(2244), 1, anon_sym_var, - ACTIONS(2251), 1, + ACTIONS(2246), 1, anon_sym_let, - ACTIONS(2253), 1, + ACTIONS(2248), 1, anon_sym_const, - ACTIONS(2258), 1, + ACTIONS(2253), 1, anon_sym_class, - ACTIONS(2260), 1, + ACTIONS(2255), 1, anon_sym_async, - ACTIONS(2262), 1, + ACTIONS(2257), 1, anon_sym_function, - ACTIONS(2267), 1, + ACTIONS(2262), 1, anon_sym_declare, - ACTIONS(2269), 1, + ACTIONS(2264), 1, anon_sym_module, - ACTIONS(2271), 1, + ACTIONS(2266), 1, anon_sym_abstract, - ACTIONS(2273), 1, + ACTIONS(2268), 1, anon_sym_interface, - ACTIONS(2275), 1, + ACTIONS(2270), 1, anon_sym_enum, - ACTIONS(2305), 1, + ACTIONS(2296), 1, anon_sym_type, - ACTIONS(6196), 1, + ACTIONS(6181), 1, anon_sym_default, - STATE(825), 1, - sym_declaration, - STATE(890), 1, + STATE(811), 1, sym_internal_module, - STATE(1267), 1, + STATE(843), 1, + sym_declaration, + STATE(1290), 1, sym_decorator, - STATE(4426), 1, + STATE(4284), 1, aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(789), 13, + STATE(852), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -232314,28 +230454,35 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [111710] = 9, - ACTIONS(1510), 1, + [111629] = 12, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1512), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(6198), 1, - anon_sym_RBRACE, - STATE(5496), 1, - sym_enum_assignment, + ACTIONS(6183), 1, + anon_sym_STAR, + ACTIONS(6187), 1, + anon_sym_readonly, + STATE(2745), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6156), 2, + ACTIONS(6185), 2, sym_number, sym_private_property_identifier, - STATE(4496), 3, + ACTIONS(6189), 2, + anon_sym_get, + anon_sym_set, + STATE(3023), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(3646), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232344,14 +230491,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -232359,40 +230502,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111764] = 12, - ACTIONS(1588), 1, + [111689] = 11, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(3673), 1, - anon_sym_override, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(5797), 1, - anon_sym_readonly, - ACTIONS(6200), 1, + ACTIONS(5507), 1, anon_sym_STAR, - STATE(2760), 1, - sym_override_modifier, + ACTIONS(5513), 1, + anon_sym_async, + ACTIONS(6191), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6202), 2, + ACTIONS(5515), 2, sym_number, sym_private_property_identifier, - ACTIONS(6204), 2, + ACTIONS(5517), 2, anon_sym_get, anon_sym_set, - STATE(3009), 3, + STATE(3044), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 19, + ACTIONS(3646), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -232400,6 +230540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -232407,91 +230548,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111824] = 22, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(2243), 1, - anon_sym_namespace, - ACTIONS(2247), 1, - anon_sym_import, - ACTIONS(2249), 1, - anon_sym_var, - ACTIONS(2251), 1, - anon_sym_let, - ACTIONS(2253), 1, - anon_sym_const, - ACTIONS(2258), 1, - anon_sym_class, - ACTIONS(2260), 1, - anon_sym_async, - ACTIONS(2262), 1, - anon_sym_function, - ACTIONS(2267), 1, - anon_sym_declare, - ACTIONS(2271), 1, - anon_sym_abstract, - ACTIONS(2273), 1, - anon_sym_interface, - ACTIONS(2275), 1, - anon_sym_enum, - ACTIONS(2305), 1, - anon_sym_type, - ACTIONS(2307), 1, - anon_sym_module, - ACTIONS(2309), 1, - anon_sym_global, - STATE(874), 1, - sym_declaration, - STATE(890), 1, - sym_internal_module, - STATE(1267), 1, - sym_decorator, - STATE(4426), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(789), 13, - 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_import_alias, - sym_interface_declaration, - sym_enum_declaration, - sym_type_alias_declaration, - [111904] = 11, - ACTIONS(1588), 1, + [111746] = 11, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(5105), 1, - anon_sym_STAR, - ACTIONS(5107), 1, + ACTIONS(2316), 1, anon_sym_async, - ACTIONS(5111), 1, + ACTIONS(2318), 1, anon_sym_readonly, + ACTIONS(4736), 1, + anon_sym_LBRACK, + ACTIONS(4965), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5109), 2, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - ACTIONS(5113), 2, + ACTIONS(2320), 2, anon_sym_get, anon_sym_set, - STATE(3093), 3, + STATE(3887), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 19, + ACTIONS(2314), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232511,37 +230594,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111961] = 8, - ACTIONS(1510), 1, + [111803] = 11, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1512), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4427), 1, + anon_sym_STAR, + ACTIONS(4431), 1, anon_sym_LBRACK, - STATE(5496), 1, - sym_enum_assignment, + ACTIONS(4433), 1, + anon_sym_async, + ACTIONS(4437), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6156), 2, + ACTIONS(4435), 2, sym_number, sym_private_property_identifier, - STATE(4496), 3, + ACTIONS(4439), 2, + anon_sym_get, + anon_sym_set, + STATE(3080), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(3646), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -232554,19 +230640,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112012] = 3, + [111860] = 9, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4736), 1, + anon_sym_LBRACK, + ACTIONS(6147), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3614), 7, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5605), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3612), 25, + ACTIONS(6193), 2, + anon_sym_get, + anon_sym_set, + STATE(3775), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232576,8 +230672,6 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -232590,40 +230684,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [112053] = 9, - ACTIONS(2291), 1, + [111913] = 11, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(6200), 1, + ACTIONS(5033), 1, anon_sym_STAR, + ACTIONS(5035), 1, + anon_sym_async, + ACTIONS(5039), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5669), 2, + ACTIONS(5037), 2, sym_number, sym_private_property_identifier, - ACTIONS(6206), 2, + ACTIONS(5041), 2, anon_sym_get, anon_sym_set, - STATE(3876), 3, + STATE(3031), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 21, + ACTIONS(3646), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -232636,40 +230730,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112106] = 11, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(5030), 1, - anon_sym_STAR, - ACTIONS(5032), 1, - anon_sym_async, - ACTIONS(5036), 1, - anon_sym_readonly, + [111970] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5034), 2, + ACTIONS(3602), 7, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(5038), 2, - anon_sym_get, - anon_sym_set, - STATE(3023), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3651), 19, + anon_sym_AT, + ACTIONS(3600), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -232682,33 +230766,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112163] = 11, - ACTIONS(1588), 1, + anon_sym_abstract, + anon_sym_accessor, + [112011] = 11, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(5091), 1, + ACTIONS(5113), 1, anon_sym_STAR, - ACTIONS(5093), 1, + ACTIONS(5115), 1, anon_sym_async, - ACTIONS(6210), 1, + ACTIONS(5119), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5099), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6208), 2, + ACTIONS(5117), 2, sym_number, sym_private_property_identifier, - STATE(3034), 3, + ACTIONS(5121), 2, + anon_sym_get, + anon_sym_set, + STATE(3075), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 19, + ACTIONS(3646), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232728,11 +230814,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112220] = 3, + [112068] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3571), 7, + ACTIONS(3617), 7, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, @@ -232740,7 +230826,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3569), 25, + ACTIONS(3615), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232766,33 +230852,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [112261] = 11, - ACTIONS(1588), 1, + [112109] = 11, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(5040), 1, + ACTIONS(5057), 1, anon_sym_STAR, - ACTIONS(5042), 1, + ACTIONS(5059), 1, anon_sym_async, - ACTIONS(6214), 1, + ACTIONS(5063), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5048), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6212), 2, + ACTIONS(5061), 2, sym_number, sym_private_property_identifier, - STATE(3018), 3, + ACTIONS(5065), 2, + anon_sym_get, + anon_sym_set, + STATE(3055), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 19, + ACTIONS(3646), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232812,40 +230898,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112318] = 11, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(5506), 1, - anon_sym_STAR, - ACTIONS(5538), 1, - anon_sym_async, - ACTIONS(6218), 1, - anon_sym_readonly, + [112166] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5542), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6216), 2, + ACTIONS(3621), 7, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - STATE(3030), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3651), 19, + anon_sym_AT, + ACTIONS(3619), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -232858,40 +230934,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112375] = 11, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(2325), 1, - anon_sym_async, - ACTIONS(2327), 1, - anon_sym_readonly, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4988), 1, - anon_sym_STAR, + anon_sym_abstract, + anon_sym_accessor, + [112207] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2301), 2, + ACTIONS(3517), 7, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(2329), 2, - anon_sym_get, - anon_sym_set, - STATE(3922), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2323), 19, + anon_sym_AT, + ACTIONS(3515), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -232904,40 +230972,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112432] = 11, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(5054), 1, - anon_sym_STAR, - ACTIONS(5056), 1, - anon_sym_async, - ACTIONS(5060), 1, - anon_sym_readonly, + anon_sym_abstract, + anon_sym_accessor, + [112248] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5058), 2, + ACTIONS(3594), 7, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(5062), 2, - anon_sym_get, - anon_sym_set, - STATE(3077), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3651), 19, + anon_sym_AT, + ACTIONS(3592), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -232950,76 +231010,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112489] = 11, - ACTIONS(1588), 1, + anon_sym_abstract, + anon_sym_accessor, + [112289] = 11, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4467), 1, - anon_sym_STAR, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(4473), 1, + ACTIONS(5326), 1, + anon_sym_STAR, + ACTIONS(5497), 1, anon_sym_async, - ACTIONS(4477), 1, + ACTIONS(6197), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4475), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4479), 2, + ACTIONS(5501), 2, anon_sym_get, anon_sym_set, - STATE(3058), 3, + ACTIONS(6195), 2, + sym_number, + sym_private_property_identifier, + STATE(3014), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 19, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [112546] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3533), 7, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3531), 25, + ACTIONS(3646), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -233032,35 +231058,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [112587] = 11, - ACTIONS(2291), 1, + [112346] = 11, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(6109), 1, + ACTIONS(5344), 1, anon_sym_STAR, - ACTIONS(6123), 1, + ACTIONS(5350), 1, anon_sym_async, - ACTIONS(6220), 1, + ACTIONS(6199), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6111), 2, + ACTIONS(5352), 2, sym_number, sym_private_property_identifier, - ACTIONS(6113), 2, + ACTIONS(5354), 2, anon_sym_get, anon_sym_set, - STATE(3925), 3, + STATE(3026), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 19, + ACTIONS(3646), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233080,38 +231104,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112644] = 9, - ACTIONS(2291), 1, + [112403] = 11, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(6222), 1, + ACTIONS(6046), 1, anon_sym_STAR, + ACTIONS(6048), 1, + anon_sym_async, + ACTIONS(6052), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5703), 2, + ACTIONS(6050), 2, sym_number, sym_private_property_identifier, - ACTIONS(6224), 2, + ACTIONS(6054), 2, anon_sym_get, anon_sym_set, - STATE(3824), 3, + STATE(3791), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 21, + ACTIONS(2314), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -233124,33 +231150,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112697] = 11, - ACTIONS(1588), 1, + [112460] = 11, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(5366), 1, + ACTIONS(4748), 1, anon_sym_STAR, - ACTIONS(5372), 1, + ACTIONS(4752), 1, anon_sym_async, - ACTIONS(6226), 1, + ACTIONS(4756), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5374), 2, + ACTIONS(4754), 2, sym_number, sym_private_property_identifier, - ACTIONS(5376), 2, + ACTIONS(4758), 2, anon_sym_get, anon_sym_set, - STATE(3031), 3, + STATE(3017), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 19, + ACTIONS(3646), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233170,40 +231196,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112754] = 11, - ACTIONS(1588), 1, + [112517] = 9, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(5244), 1, + ACTIONS(6201), 1, anon_sym_STAR, - ACTIONS(5246), 1, - anon_sym_async, - ACTIONS(6228), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5248), 2, + ACTIONS(5639), 2, sym_number, sym_private_property_identifier, - ACTIONS(5250), 2, + ACTIONS(6203), 2, anon_sym_get, anon_sym_set, - STATE(3115), 3, + STATE(3914), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 19, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -233216,19 +231240,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112811] = 3, + [112570] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3567), 7, + ACTIONS(3758), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1942), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3565), 25, + ACTIONS(1940), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233252,35 +231279,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [112852] = 11, - ACTIONS(1588), 1, + [112613] = 11, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(5091), 1, + ACTIONS(5082), 1, anon_sym_STAR, - ACTIONS(5093), 1, + ACTIONS(5084), 1, anon_sym_async, - ACTIONS(6232), 1, + ACTIONS(6207), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5099), 2, + ACTIONS(5090), 2, anon_sym_get, anon_sym_set, - ACTIONS(6230), 2, + ACTIONS(6205), 2, sym_number, sym_private_property_identifier, - STATE(3039), 3, + STATE(3034), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 19, + ACTIONS(3646), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233300,22 +231325,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112909] = 4, + [112670] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4736), 1, + anon_sym_LBRACK, + STATE(5484), 1, + sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1973), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(6143), 2, sym_number, sym_private_property_identifier, - ACTIONS(1971), 23, + STATE(4531), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233339,30 +231368,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112952] = 3, + [112721] = 11, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4736), 1, + anon_sym_LBRACK, + ACTIONS(6082), 1, + anon_sym_STAR, + ACTIONS(6084), 1, + anon_sym_async, + ACTIONS(6209), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3606), 7, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(6086), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3604), 25, + ACTIONS(6088), 2, + anon_sym_get, + anon_sym_set, + STATE(3883), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [112778] = 11, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 1, + anon_sym_SQUOTE, + ACTIONS(4431), 1, + anon_sym_LBRACK, + ACTIONS(5082), 1, + anon_sym_STAR, + ACTIONS(5084), 1, + anon_sym_async, + ACTIONS(6213), 1, anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5090), 2, anon_sym_get, anon_sym_set, + ACTIONS(6211), 2, + sym_number, + sym_private_property_identifier, + STATE(3008), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -233375,35 +231460,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [112993] = 11, - ACTIONS(1588), 1, + [112835] = 11, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(5586), 1, + ACTIONS(5389), 1, anon_sym_STAR, - ACTIONS(5592), 1, + ACTIONS(5561), 1, anon_sym_async, - ACTIONS(6234), 1, + ACTIONS(6215), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5594), 2, + ACTIONS(5563), 2, sym_number, sym_private_property_identifier, - ACTIONS(5596), 2, + ACTIONS(5565), 2, anon_sym_get, anon_sym_set, - STATE(3076), 3, + STATE(3110), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 19, + ACTIONS(3646), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233423,33 +231506,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113050] = 11, - ACTIONS(2291), 1, + [112892] = 11, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(6057), 1, + ACTIONS(5043), 1, anon_sym_STAR, - ACTIONS(6059), 1, + ACTIONS(5045), 1, anon_sym_async, - ACTIONS(6063), 1, + ACTIONS(6219), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6061), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6065), 2, + ACTIONS(5051), 2, anon_sym_get, anon_sym_set, - STATE(3864), 3, + ACTIONS(6217), 2, + sym_number, + sym_private_property_identifier, + STATE(3022), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 19, + ACTIONS(3646), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233469,33 +231552,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113107] = 11, - ACTIONS(1588), 1, + [112949] = 11, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(5124), 1, + ACTIONS(5096), 1, anon_sym_STAR, - ACTIONS(5126), 1, + ACTIONS(5098), 1, anon_sym_async, - ACTIONS(5130), 1, + ACTIONS(5102), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5128), 2, + ACTIONS(5100), 2, sym_number, sym_private_property_identifier, - ACTIONS(5132), 2, + ACTIONS(5104), 2, anon_sym_get, anon_sym_set, - STATE(3047), 3, + STATE(3069), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 19, + ACTIONS(3646), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233515,40 +231598,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113164] = 11, - ACTIONS(1588), 1, + [113006] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(4795), 1, - anon_sym_STAR, - ACTIONS(4799), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5553), 2, + sym_number, + sym_private_property_identifier, + STATE(3816), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, anon_sym_async, - ACTIONS(4803), 1, + anon_sym_new, + sym_identifier, + anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [113054] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4736), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4801), 2, + ACTIONS(5213), 2, sym_number, sym_private_property_identifier, - ACTIONS(4805), 2, + STATE(3827), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, - STATE(3005), 3, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [113102] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4736), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4738), 2, + sym_number, + sym_private_property_identifier, + STATE(3890), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 19, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -233561,24 +231721,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113221] = 7, - ACTIONS(2291), 1, + [113150] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6111), 2, + ACTIONS(5383), 2, sym_number, sym_private_property_identifier, - STATE(3925), 3, + STATE(3868), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233602,24 +231762,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113269] = 7, - ACTIONS(2291), 1, + [113198] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2301), 2, + ACTIONS(6050), 2, sym_number, sym_private_property_identifier, - STATE(3922), 3, + STATE(3791), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233643,24 +231803,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113317] = 7, - ACTIONS(2291), 1, + [113246] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5426), 2, + ACTIONS(5391), 2, sym_number, sym_private_property_identifier, - STATE(3875), 3, + STATE(3813), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233684,24 +231844,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113365] = 7, - ACTIONS(2291), 1, + [113294] = 7, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5512), 2, + ACTIONS(4766), 2, sym_number, sym_private_property_identifier, - STATE(3823), 3, + STATE(3394), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233725,26 +231885,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113413] = 8, - ACTIONS(1588), 1, + [113342] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(6238), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6236), 2, + ACTIONS(5401), 2, sym_number, sym_private_property_identifier, - STATE(3304), 3, + STATE(3869), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 22, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233753,6 +231911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -233767,24 +231926,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113463] = 7, - ACTIONS(1588), 1, + [113390] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6240), 2, + ACTIONS(6124), 2, sym_number, sym_private_property_identifier, - STATE(3305), 3, + STATE(3879), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233808,26 +231967,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113511] = 8, - ACTIONS(1588), 1, + [113438] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(6244), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6242), 2, + ACTIONS(5409), 2, sym_number, sym_private_property_identifier, - STATE(3413), 3, + STATE(3908), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 22, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233836,6 +231993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -233850,24 +232008,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113561] = 7, - ACTIONS(1588), 1, + [113486] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6246), 2, + ACTIONS(6126), 2, sym_number, sym_private_property_identifier, - STATE(3414), 3, + STATE(3795), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233891,24 +232049,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113609] = 7, - ACTIONS(2291), 1, + [113534] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6105), 2, + ACTIONS(6128), 2, sym_number, sym_private_property_identifier, - STATE(3882), 3, + STATE(3802), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233932,24 +232090,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113657] = 7, - ACTIONS(2291), 1, + [113582] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5434), 2, + ACTIONS(6086), 2, sym_number, sym_private_property_identifier, - STATE(3880), 3, + STATE(3883), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233973,24 +232131,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113705] = 7, - ACTIONS(2291), 1, + [113630] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6137), 2, + ACTIONS(5346), 2, sym_number, sym_private_property_identifier, - STATE(3881), 3, + STATE(3926), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234014,24 +232172,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113753] = 7, - ACTIONS(2291), 1, + [113678] = 8, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, + ACTIONS(6223), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5210), 2, + ACTIONS(6221), 2, sym_number, sym_private_property_identifier, - STATE(3866), 3, + STATE(3319), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(3646), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234040,7 +232200,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, 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_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [113728] = 8, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 1, + anon_sym_SQUOTE, + ACTIONS(4431), 1, + anon_sym_LBRACK, + ACTIONS(5885), 1, anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5669), 2, + sym_number, + sym_private_property_identifier, + STATE(3380), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -234055,26 +232256,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113801] = 8, - ACTIONS(1588), 1, + [113778] = 7, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(6250), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5669), 2, + sym_number, + sym_private_property_identifier, + STATE(3380), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [113826] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4736), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6248), 2, + ACTIONS(6072), 2, sym_number, sym_private_property_identifier, - STATE(3422), 3, + STATE(3833), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 22, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234083,6 +232323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -234097,24 +232338,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113851] = 7, - ACTIONS(2291), 1, + [113874] = 7, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5408), 2, + ACTIONS(6225), 2, sym_number, sym_private_property_identifier, - STATE(3825), 3, + STATE(3301), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234138,24 +232379,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113899] = 7, - ACTIONS(2291), 1, + [113922] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5528), 2, + ACTIONS(5639), 2, sym_number, sym_private_property_identifier, - STATE(3840), 3, + STATE(3914), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234179,24 +232420,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113947] = 7, - ACTIONS(2291), 1, + [113970] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5703), 2, + ACTIONS(5483), 2, sym_number, sym_private_property_identifier, - STATE(3824), 3, + STATE(3902), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234220,26 +232461,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113995] = 8, - ACTIONS(1588), 1, + [114018] = 8, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(5797), 1, + ACTIONS(6227), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4893), 2, + ACTIONS(5940), 2, sym_number, sym_private_property_identifier, - STATE(3420), 3, + STATE(3466), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 22, + ACTIONS(3646), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234262,24 +232503,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114045] = 7, - ACTIONS(2291), 1, + [114068] = 7, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5614), 2, + ACTIONS(5940), 2, sym_number, sym_private_property_identifier, - STATE(3926), 3, + STATE(3466), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234303,24 +232544,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114093] = 7, - ACTIONS(1588), 1, + [114116] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4773), 2, + ACTIONS(6130), 2, sym_number, sym_private_property_identifier, - STATE(3447), 3, + STATE(3924), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234344,68 +232585,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114141] = 8, - ACTIONS(1588), 1, + [114164] = 8, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, - anon_sym_LBRACK, - ACTIONS(6252), 1, - anon_sym_readonly, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5953), 2, - sym_number, - sym_private_property_identifier, - STATE(3477), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3651), 22, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - 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_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [114191] = 8, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(6256), 1, + ACTIONS(6231), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6254), 2, + ACTIONS(6229), 2, sym_number, sym_private_property_identifier, - STATE(3380), 3, + STATE(3419), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 22, + ACTIONS(3646), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234428,24 +232627,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114241] = 7, - ACTIONS(1588), 1, + [114214] = 7, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5953), 2, + ACTIONS(6233), 2, sym_number, sym_private_property_identifier, - STATE(3477), 3, + STATE(3444), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 23, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234469,65 +232668,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114289] = 7, - ACTIONS(2291), 1, + [114262] = 8, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6117), 2, - sym_number, - sym_private_property_identifier, - STATE(3871), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2323), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, + ACTIONS(6237), 1, anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [114337] = 7, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(4785), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5214), 2, + ACTIONS(6235), 2, sym_number, sym_private_property_identifier, - STATE(3775), 3, + STATE(3366), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(3646), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234536,7 +232696,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -234551,24 +232710,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114385] = 7, - ACTIONS(2291), 1, + [114312] = 7, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6146), 2, + ACTIONS(6239), 2, sym_number, sym_private_property_identifier, - STATE(3897), 3, + STATE(3367), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234592,26 +232751,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114433] = 8, - ACTIONS(1588), 1, + [114360] = 8, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(6260), 1, + ACTIONS(6243), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6258), 2, + ACTIONS(6241), 2, sym_number, sym_private_property_identifier, - STATE(3442), 3, + STATE(3375), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 22, + ACTIONS(3646), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234634,24 +232793,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114483] = 7, - ACTIONS(1588), 1, + [114410] = 7, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6262), 2, + ACTIONS(6245), 2, sym_number, sym_private_property_identifier, - STATE(3443), 3, + STATE(3320), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 23, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234675,24 +232834,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114531] = 7, - ACTIONS(2291), 1, + [114458] = 7, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5200), 2, + ACTIONS(6247), 2, sym_number, sym_private_property_identifier, - STATE(3815), 3, + STATE(3383), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234716,65 +232875,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114579] = 7, - ACTIONS(2291), 1, + [114506] = 8, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5508), 2, - sym_number, - sym_private_property_identifier, - STATE(3772), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2323), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, + ACTIONS(6251), 1, anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [114627] = 7, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(4785), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5380), 2, + ACTIONS(6249), 2, sym_number, sym_private_property_identifier, - STATE(3919), 3, + STATE(3372), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(3646), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234783,7 +232903,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -234798,65 +232917,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114675] = 7, - ACTIONS(2291), 1, + [114556] = 8, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5448), 2, - sym_number, - sym_private_property_identifier, - STATE(3839), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2323), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, + ACTIONS(5910), 1, anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [114723] = 7, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(4785), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5194), 2, + ACTIONS(4923), 2, sym_number, sym_private_property_identifier, - STATE(3795), 3, + STATE(3437), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(3646), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234865,7 +232945,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -234880,65 +232959,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114771] = 7, - ACTIONS(1588), 1, + [114606] = 8, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6264), 2, - sym_number, - sym_private_property_identifier, - STATE(3381), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3651), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, + ACTIONS(6255), 1, anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [114819] = 7, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(4785), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6148), 2, + ACTIONS(6253), 2, sym_number, sym_private_property_identifier, - STATE(3804), 3, + STATE(3333), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(3646), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234947,7 +232987,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -234962,26 +233001,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114867] = 8, - ACTIONS(1588), 1, + [114656] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(6268), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6266), 2, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - STATE(3479), 3, + STATE(3887), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 22, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234990,6 +233027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -235004,24 +233042,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114917] = 7, - ACTIONS(1588), 1, + [114704] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6270), 2, + ACTIONS(5605), 2, sym_number, sym_private_property_identifier, - STATE(3308), 3, + STATE(3775), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235045,24 +233083,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114965] = 7, - ACTIONS(2291), 1, + [114752] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6144), 2, + ACTIONS(5209), 2, sym_number, sym_private_property_identifier, - STATE(3924), 3, + STATE(3838), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235086,24 +233124,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115013] = 7, - ACTIONS(2291), 1, + [114800] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6150), 2, + ACTIONS(5509), 2, sym_number, sym_private_property_identifier, - STATE(3923), 3, + STATE(3826), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235127,26 +233165,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115061] = 8, - ACTIONS(1588), 1, + [114848] = 8, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(6274), 1, + ACTIONS(6259), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6272), 2, + ACTIONS(6257), 2, sym_number, sym_private_property_identifier, - STATE(3367), 3, + STATE(3295), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 22, + ACTIONS(3646), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235169,24 +233207,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115111] = 7, - ACTIONS(1588), 1, + [114898] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6276), 2, + ACTIONS(5413), 2, sym_number, sym_private_property_identifier, - STATE(3398), 3, + STATE(3864), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235210,26 +233248,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115159] = 8, - ACTIONS(1588), 1, + [114946] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(6280), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6278), 2, + ACTIONS(5181), 2, sym_number, sym_private_property_identifier, - STATE(3425), 3, + STATE(3893), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 22, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235238,6 +233274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -235252,24 +233289,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115209] = 7, - ACTIONS(2291), 1, + [114994] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5669), 2, + ACTIONS(5456), 2, sym_number, sym_private_property_identifier, - STATE(3876), 3, + STATE(3911), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235293,24 +233330,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115257] = 7, - ACTIONS(2291), 1, + [115042] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5418), 2, + ACTIONS(5328), 2, sym_number, sym_private_property_identifier, - STATE(3850), 3, + STATE(3888), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235334,26 +233371,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115305] = 8, - ACTIONS(1588), 1, + [115090] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, - ACTIONS(5870), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5712), 2, + ACTIONS(5203), 2, sym_number, sym_private_property_identifier, - STATE(3388), 3, + STATE(3853), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 22, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235362,6 +233397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -235376,24 +233412,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115355] = 7, - ACTIONS(1588), 1, + [115138] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4893), 2, + ACTIONS(5235), 2, sym_number, sym_private_property_identifier, - STATE(3420), 3, + STATE(3916), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235417,26 +233453,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115403] = 8, - ACTIONS(1588), 1, + [115186] = 7, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(6284), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6282), 2, + ACTIONS(4923), 2, sym_number, sym_private_property_identifier, - STATE(3326), 3, + STATE(3437), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 22, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235445,6 +233479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -235459,24 +233494,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115453] = 7, - ACTIONS(1588), 1, + [115234] = 7, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6286), 2, + ACTIONS(6261), 2, sym_number, sym_private_property_identifier, - STATE(3334), 3, + STATE(3402), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 23, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235500,26 +233535,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115501] = 8, - ACTIONS(1588), 1, + [115282] = 8, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(6290), 1, + ACTIONS(6265), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6288), 2, + ACTIONS(6263), 2, sym_number, sym_private_property_identifier, - STATE(3345), 3, + STATE(3435), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 22, + ACTIONS(3646), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235542,24 +233577,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115551] = 7, - ACTIONS(2291), 1, + [115332] = 7, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6139), 2, + ACTIONS(6267), 2, sym_number, sym_private_property_identifier, - STATE(3805), 3, + STATE(3436), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235583,24 +233618,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115599] = 7, - ACTIONS(2291), 1, + [115380] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5315), 2, + ACTIONS(6135), 2, sym_number, sym_private_property_identifier, - STATE(3800), 3, + STATE(3850), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235624,24 +233659,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115647] = 7, - ACTIONS(2291), 1, + [115428] = 8, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, + ACTIONS(6271), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5220), 2, + ACTIONS(6269), 2, sym_number, sym_private_property_identifier, - STATE(3901), 3, + STATE(3452), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(3646), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235650,7 +233687,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -235665,24 +233701,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115695] = 7, - ACTIONS(1588), 1, + [115478] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5712), 2, + ACTIONS(6078), 2, sym_number, sym_private_property_identifier, - STATE(3388), 3, + STATE(3804), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235706,24 +233742,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115743] = 7, - ACTIONS(2291), 1, + [115526] = 8, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, + ACTIONS(6275), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5588), 2, + ACTIONS(6273), 2, sym_number, sym_private_property_identifier, - STATE(3894), 3, + STATE(3297), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(3646), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235732,7 +233770,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -235747,24 +233784,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115791] = 7, - ACTIONS(2291), 1, + [115576] = 7, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5368), 2, + ACTIONS(6277), 2, sym_number, sym_private_property_identifier, - STATE(3786), 3, + STATE(3298), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235788,24 +233825,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115839] = 7, - ACTIONS(1588), 1, + [115624] = 7, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6292), 2, + ACTIONS(6279), 2, sym_number, sym_private_property_identifier, - STATE(3400), 3, + STATE(3417), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 23, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235829,24 +233866,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115887] = 7, - ACTIONS(2291), 1, + [115672] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5234), 2, + ACTIONS(6122), 2, sym_number, sym_private_property_identifier, - STATE(3816), 3, + STATE(3866), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235870,26 +233907,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115935] = 8, - ACTIONS(1588), 1, + [115720] = 8, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, - ACTIONS(6296), 1, + ACTIONS(6283), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6294), 2, + ACTIONS(6281), 2, sym_number, sym_private_property_identifier, - STATE(3355), 3, + STATE(3430), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 22, + ACTIONS(3646), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235912,24 +233949,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115985] = 7, - ACTIONS(2291), 1, + [115770] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4787), 2, + ACTIONS(5379), 2, sym_number, sym_private_property_identifier, - STATE(3784), 3, + STATE(3857), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235953,24 +233990,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116033] = 7, - ACTIONS(2291), 1, + [115818] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4785), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6061), 2, + ACTIONS(5217), 2, sym_number, sym_private_property_identifier, - STATE(3864), 3, + STATE(3834), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2323), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235994,24 +234031,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116081] = 7, - ACTIONS(1588), 1, + [115866] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4736), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6298), 2, + ACTIONS(5601), 2, sym_number, sym_private_property_identifier, - STATE(3356), 3, + STATE(3785), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236035,24 +234072,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116129] = 7, - ACTIONS(1588), 1, + [115914] = 7, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4471), 1, + ACTIONS(4431), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6300), 2, + ACTIONS(6285), 2, sym_number, sym_private_property_identifier, - STATE(3415), 3, + STATE(3379), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3651), 23, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236076,15 +234113,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116177] = 4, - ACTIONS(6302), 1, + [115962] = 4, + ACTIONS(6287), 1, sym_identifier, - STATE(5988), 1, + STATE(5649), 1, sym_mapped_type_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6304), 22, + ACTIONS(6289), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236107,26 +234144,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116212] = 9, - ACTIONS(3456), 1, + [115997] = 9, + ACTIONS(3443), 1, anon_sym_LPAREN, - ACTIONS(3460), 1, + ACTIONS(3447), 1, anon_sym_DOT, - ACTIONS(3464), 1, + ACTIONS(3451), 1, anon_sym_QMARK_DOT, - ACTIONS(6306), 1, + ACTIONS(6291), 1, anon_sym_LT, - STATE(2886), 1, + STATE(2880), 1, sym_arguments, - STATE(2958), 1, + STATE(2987), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3458), 2, + ACTIONS(3445), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3454), 12, + ACTIONS(3441), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -236139,26 +234176,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [116253] = 9, - ACTIONS(3456), 1, + [116038] = 9, + ACTIONS(3443), 1, anon_sym_LPAREN, - ACTIONS(6306), 1, + ACTIONS(6291), 1, anon_sym_LT, - ACTIONS(6308), 1, + ACTIONS(6293), 1, anon_sym_DOT, - ACTIONS(6310), 1, + ACTIONS(6295), 1, anon_sym_QMARK_DOT, - STATE(2878), 1, + STATE(2872), 1, sym_arguments, - STATE(2960), 1, + STATE(2992), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4021), 2, + ACTIONS(4014), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4023), 12, + ACTIONS(4016), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -236171,71 +234208,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [116294] = 9, - ACTIONS(3456), 1, + [116079] = 9, + ACTIONS(3443), 1, anon_sym_LPAREN, - ACTIONS(6306), 1, + ACTIONS(6291), 1, anon_sym_LT, - ACTIONS(6312), 1, + ACTIONS(6297), 1, anon_sym_DOT, - ACTIONS(6314), 1, + ACTIONS(6299), 1, anon_sym_QMARK_DOT, - STATE(2891), 1, + STATE(2876), 1, sym_arguments, - STATE(2959), 1, + STATE(2989), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4015), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4017), 12, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [116335] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4385), 2, + ACTIONS(3996), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4387), 17, - anon_sym_as, + ACTIONS(3998), 12, 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_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, anon_sym_extends, - [116363] = 3, + [116120] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4389), 2, + ACTIONS(4330), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4391), 17, + ACTIONS(4332), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236253,14 +234265,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116391] = 3, + [116148] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4341), 2, + ACTIONS(4394), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4343), 17, + ACTIONS(4396), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236278,14 +234290,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116419] = 3, + [116176] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4353), 2, + ACTIONS(4390), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4355), 17, + ACTIONS(4392), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236303,14 +234315,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116447] = 3, + [116204] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4353), 2, + ACTIONS(4394), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4355), 17, + ACTIONS(4396), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236328,14 +234340,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116475] = 3, + [116232] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4337), 2, + ACTIONS(4398), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4339), 17, + ACTIONS(4400), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236353,14 +234365,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116503] = 3, + [116260] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4349), 2, + ACTIONS(4358), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4351), 17, + ACTIONS(4360), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236378,14 +234390,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116531] = 3, + [116288] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4373), 2, + ACTIONS(4366), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4375), 17, + ACTIONS(4368), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236403,14 +234415,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116559] = 3, + [116316] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4381), 2, + ACTIONS(4370), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4383), 17, + ACTIONS(4372), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236428,14 +234440,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116587] = 3, + [116344] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4381), 2, + ACTIONS(4366), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4383), 17, + ACTIONS(4368), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236453,14 +234465,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116615] = 3, + [116372] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4381), 2, + ACTIONS(4370), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4383), 17, + ACTIONS(4372), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236478,14 +234490,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116643] = 3, + [116400] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4385), 2, + ACTIONS(4394), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4387), 17, + ACTIONS(4396), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236503,14 +234515,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116671] = 3, + [116428] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4385), 2, + ACTIONS(4298), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4387), 17, + ACTIONS(4300), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236528,14 +234540,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116699] = 3, + [116456] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4349), 2, + ACTIONS(4398), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4351), 17, + ACTIONS(4400), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236553,14 +234565,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116727] = 3, + [116484] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4389), 2, + ACTIONS(4306), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4391), 17, + ACTIONS(4308), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236578,14 +234590,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116755] = 3, + [116512] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4389), 2, + ACTIONS(4310), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4391), 17, + ACTIONS(4312), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236603,14 +234615,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116783] = 3, + [116540] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4341), 2, + ACTIONS(4314), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4343), 17, + ACTIONS(4316), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236628,14 +234640,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116811] = 3, + [116568] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4067), 2, + ACTIONS(4390), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4069), 17, + ACTIONS(4392), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236653,14 +234665,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116839] = 3, + [116596] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4267), 2, + ACTIONS(4314), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4269), 17, + ACTIONS(4316), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236678,14 +234690,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116867] = 3, + [116624] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4271), 2, + ACTIONS(4362), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4273), 17, + ACTIONS(4364), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236703,14 +234715,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116895] = 3, + [116652] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4275), 2, + ACTIONS(4362), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4277), 17, + ACTIONS(4364), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236728,14 +234740,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116923] = 3, + [116680] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4271), 2, + ACTIONS(4366), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4273), 17, + ACTIONS(4368), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236753,14 +234765,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116951] = 3, + [116708] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4275), 2, + ACTIONS(4362), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4277), 17, + ACTIONS(4364), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236778,14 +234790,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [116979] = 3, + [116736] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4349), 2, + ACTIONS(4318), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4351), 17, + ACTIONS(4320), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236803,14 +234815,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [117007] = 3, + [116764] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4281), 2, + ACTIONS(4370), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4283), 17, + ACTIONS(4372), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236828,14 +234840,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [117035] = 3, + [116792] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4285), 2, + ACTIONS(4322), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4287), 17, + ACTIONS(4324), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236853,14 +234865,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [117063] = 3, + [116820] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4281), 2, + ACTIONS(4318), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4283), 17, + ACTIONS(4320), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236878,14 +234890,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [117091] = 3, + [116848] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4285), 2, + ACTIONS(4322), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4287), 17, + ACTIONS(4324), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236903,14 +234915,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [117119] = 3, + [116876] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4289), 2, + ACTIONS(4326), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4291), 17, + ACTIONS(4328), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236928,14 +234940,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [117147] = 3, + [116904] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4293), 2, + ACTIONS(4326), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4295), 17, + ACTIONS(4328), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236953,14 +234965,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [117175] = 3, + [116932] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4353), 2, + ACTIONS(4330), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4355), 17, + ACTIONS(4332), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236978,14 +234990,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [117203] = 3, + [116960] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4289), 2, + ACTIONS(4386), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4291), 17, + ACTIONS(4388), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237003,14 +235015,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [117231] = 3, + [116988] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4293), 2, + ACTIONS(4390), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4295), 17, + ACTIONS(4392), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237028,14 +235040,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [117259] = 3, + [117016] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4341), 2, + ACTIONS(4398), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4343), 17, + ACTIONS(4400), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237053,40 +235065,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [117287] = 6, - ACTIONS(4009), 1, - anon_sym_EQ, - ACTIONS(6306), 1, - anon_sym_LT, - ACTIONS(6316), 1, - anon_sym_DOT, - STATE(2908), 1, - sym_type_arguments, + [117044] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3498), 14, + ACTIONS(4310), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4312), 17, 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_GT, + anon_sym_DOT, anon_sym_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_LT, anon_sym_extends, - [117320] = 3, - ACTIONS(1733), 1, + [117072] = 3, + ACTIONS(1807), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1731), 17, + ACTIONS(1805), 17, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -237104,167 +235114,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_extends, anon_sym_PIPE_RBRACE, - [117347] = 18, - ACTIONS(6051), 1, + [117099] = 18, + ACTIONS(3521), 1, anon_sym_LT, - ACTIONS(6318), 1, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(6320), 1, + ACTIONS(6303), 1, anon_sym_EQ, - ACTIONS(6322), 1, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6324), 1, + ACTIONS(6307), 1, anon_sym_COMMA, - ACTIONS(6326), 1, + ACTIONS(6309), 1, anon_sym_COLON, - ACTIONS(6328), 1, + ACTIONS(6311), 1, anon_sym_GT, - ACTIONS(6331), 1, + ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6333), 1, + ACTIONS(6316), 1, anon_sym_DOT, - ACTIONS(6335), 1, + ACTIONS(6318), 1, anon_sym_SLASH_GT, - ACTIONS(6337), 1, + ACTIONS(6320), 1, anon_sym_extends, - STATE(3325), 1, + STATE(3345), 1, sym_type_arguments, - STATE(3327), 1, + STATE(3348), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, + STATE(3796), 1, sym_jsx_namespace_name, - STATE(4607), 1, + STATE(4554), 1, sym_constraint, - STATE(5290), 1, + STATE(5514), 1, sym_default_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, + STATE(4421), 2, sym_jsx_expression, sym_jsx_attribute, - [117404] = 18, - ACTIONS(6051), 1, + [117156] = 18, + ACTIONS(3521), 1, anon_sym_LT, - ACTIONS(6318), 1, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(6320), 1, + ACTIONS(6303), 1, anon_sym_EQ, - ACTIONS(6322), 1, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6324), 1, + ACTIONS(6307), 1, anon_sym_COMMA, - ACTIONS(6326), 1, + ACTIONS(6309), 1, anon_sym_COLON, - ACTIONS(6328), 1, + ACTIONS(6311), 1, anon_sym_GT, - ACTIONS(6331), 1, + ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6333), 1, + ACTIONS(6316), 1, anon_sym_DOT, - ACTIONS(6337), 1, + ACTIONS(6320), 1, anon_sym_extends, - ACTIONS(6339), 1, + ACTIONS(6322), 1, anon_sym_SLASH_GT, - STATE(3338), 1, + STATE(3304), 1, sym_type_arguments, - STATE(3349), 1, + STATE(3458), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, + STATE(3796), 1, sym_jsx_namespace_name, - STATE(4607), 1, + STATE(4554), 1, sym_constraint, - STATE(5290), 1, + STATE(5514), 1, sym_default_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, + STATE(4421), 2, sym_jsx_expression, sym_jsx_attribute, - [117461] = 3, - ACTIONS(1929), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1927), 17, - sym__automatic_semicolon, + [117213] = 6, + ACTIONS(4006), 1, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_with, - anon_sym_assert, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_AMP, + ACTIONS(6291), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [117488] = 3, - ACTIONS(4239), 1, - anon_sym_EQ, + ACTIONS(6324), 1, + anon_sym_DOT, + STATE(2909), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4241), 16, + ACTIONS(3501), 14, 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_GT, - anon_sym_DOT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [117514] = 9, - ACTIONS(3500), 1, - anon_sym_LPAREN, - ACTIONS(4015), 1, + [117246] = 3, + ACTIONS(1845), 1, anon_sym_PIPE, - ACTIONS(6341), 1, - anon_sym_DOT, - ACTIONS(6343), 1, - anon_sym_QMARK_DOT, - ACTIONS(6345), 1, - anon_sym_LT, - STATE(3049), 1, - sym_arguments, - STATE(3218), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4017), 10, + ACTIONS(1843), 17, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_with, + anon_sym_assert, + anon_sym_BANG, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_AMP, + anon_sym_LT, + anon_sym_QMARK, anon_sym_extends, anon_sym_PIPE_RBRACE, - [117552] = 3, - ACTIONS(3628), 1, + [117273] = 3, + ACTIONS(4264), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3438), 16, + ACTIONS(4266), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237281,14 +235266,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [117578] = 3, + [117299] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4195), 2, + ACTIONS(4406), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4197), 15, + ACTIONS(4408), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237304,37 +235289,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [117604] = 4, - ACTIONS(1873), 1, + [117325] = 15, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 1, + anon_sym_SQUOTE, + ACTIONS(6326), 1, + sym_identifier, + ACTIONS(6328), 1, + anon_sym_STAR, + ACTIONS(6330), 1, + anon_sym_type, + ACTIONS(6332), 1, + anon_sym_LBRACE, + ACTIONS(6334), 1, + anon_sym_typeof, + ACTIONS(6338), 1, anon_sym_DOT, - ACTIONS(4221), 1, + STATE(4242), 1, + sym_string, + STATE(4306), 1, + sym_import_require_clause, + STATE(5294), 1, + sym__import_identifier, + STATE(5483), 1, + sym_import_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5775), 2, + sym_namespace_import, + sym_named_imports, + ACTIONS(6336), 3, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_LT, + [117375] = 3, + ACTIONS(4272), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4223), 15, + ACTIONS(4274), 16, 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_GT, + anon_sym_DOT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, anon_sym_QMARK, anon_sym_extends, - [117632] = 3, - ACTIONS(4235), 1, + [117401] = 3, + ACTIONS(4268), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4237), 16, + ACTIONS(4270), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237351,18 +235370,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [117658] = 3, - ACTIONS(4247), 1, - anon_sym_EQ, + [117427] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4249), 16, + ACTIONS(4226), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4228), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, @@ -237370,52 +235389,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - [117684] = 9, - ACTIONS(3458), 1, - anon_sym_PIPE, - ACTIONS(3500), 1, - anon_sym_LPAREN, - ACTIONS(3502), 1, - anon_sym_DOT, - ACTIONS(3504), 1, - anon_sym_QMARK_DOT, - ACTIONS(6345), 1, - anon_sym_LT, - STATE(3048), 1, - sym_arguments, - STATE(3217), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3454), 10, - sym__automatic_semicolon, + [117453] = 7, + ACTIONS(4006), 1, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [117722] = 5, - ACTIONS(6347), 1, + ACTIONS(6291), 1, + anon_sym_LT, + ACTIONS(6324), 1, anon_sym_DOT, - ACTIONS(6349), 1, - anon_sym_QMARK_DOT, + ACTIONS(6340), 1, + anon_sym_is, + STATE(2909), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4093), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4095), 13, - anon_sym_as, + ACTIONS(3501), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -237428,40 +235420,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [117752] = 5, - ACTIONS(4027), 1, + [117487] = 3, + ACTIONS(4276), 1, anon_sym_EQ, - ACTIONS(6306), 1, - anon_sym_LT, - STATE(2926), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4029), 14, + ACTIONS(4278), 16, 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_GT, + anon_sym_DOT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [117782] = 4, - ACTIONS(1869), 1, + [117513] = 5, + ACTIONS(6342), 1, anon_sym_DOT, - ACTIONS(4221), 1, - anon_sym_EQ, + ACTIONS(6344), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4223), 15, + ACTIONS(4164), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4166), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237474,17 +235467,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, - anon_sym_QMARK, anon_sym_extends, - [117810] = 3, + [117543] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4179), 2, + ACTIONS(4086), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4181), 15, + ACTIONS(4088), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237500,18 +235491,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [117836] = 5, - ACTIONS(3460), 1, + [117569] = 4, + ACTIONS(1699), 1, anon_sym_DOT, - ACTIONS(3464), 1, - anon_sym_QMARK_DOT, + ACTIONS(4250), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3458), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(3454), 13, + ACTIONS(4252), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237524,14 +235512,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, + anon_sym_QMARK, anon_sym_extends, - [117866] = 3, - ACTIONS(4243), 1, + [117597] = 3, + ACTIONS(3623), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4245), 16, + ACTIONS(3419), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237548,52 +235538,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [117892] = 7, - ACTIONS(4009), 1, - anon_sym_EQ, - ACTIONS(6306), 1, - anon_sym_LT, - ACTIONS(6316), 1, + [117623] = 9, + ACTIONS(3467), 1, + anon_sym_LPAREN, + ACTIONS(4014), 1, + anon_sym_PIPE, + ACTIONS(6346), 1, anon_sym_DOT, - ACTIONS(6351), 1, - anon_sym_is, - STATE(2908), 1, + ACTIONS(6348), 1, + anon_sym_QMARK_DOT, + ACTIONS(6350), 1, + anon_sym_LT, + STATE(3043), 1, + sym_arguments, + STATE(3209), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3498), 12, + ACTIONS(4016), 10, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [117926] = 9, - ACTIONS(3500), 1, - anon_sym_LPAREN, - ACTIONS(4021), 1, + anon_sym_PIPE_RBRACE, + [117661] = 9, + ACTIONS(3445), 1, anon_sym_PIPE, - ACTIONS(6345), 1, - anon_sym_LT, - ACTIONS(6353), 1, + ACTIONS(3467), 1, + anon_sym_LPAREN, + ACTIONS(3469), 1, anon_sym_DOT, - ACTIONS(6355), 1, + ACTIONS(3471), 1, anon_sym_QMARK_DOT, - STATE(3052), 1, + ACTIONS(6350), 1, + anon_sym_LT, + STATE(3046), 1, sym_arguments, - STATE(3220), 1, + STATE(3197), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4023), 10, + ACTIONS(3441), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -237604,14 +235596,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [117964] = 3, + [117699] = 5, + ACTIONS(4030), 1, + anon_sym_EQ, + ACTIONS(6291), 1, + anon_sym_LT, + STATE(2922), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4187), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4189), 15, + ACTIONS(4032), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237621,54 +235616,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - [117990] = 15, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(6357), 1, - sym_identifier, - ACTIONS(6359), 1, - anon_sym_STAR, - ACTIONS(6361), 1, - anon_sym_type, - ACTIONS(6363), 1, - anon_sym_LBRACE, - ACTIONS(6365), 1, - anon_sym_typeof, - ACTIONS(6369), 1, - anon_sym_DOT, - STATE(4144), 1, - sym_string, - STATE(4177), 1, - sym_import_require_clause, - STATE(5301), 1, - sym__import_identifier, - STATE(5358), 1, - sym_import_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5990), 2, - sym_namespace_import, - sym_named_imports, - ACTIONS(6367), 3, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_LT, - [118040] = 3, - ACTIONS(3635), 1, + [117729] = 3, + ACTIONS(3625), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3436), 16, + ACTIONS(3429), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237685,35 +235644,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [118066] = 3, - ACTIONS(1670), 1, - anon_sym_EQ, + [117755] = 9, + ACTIONS(3467), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_PIPE, + ACTIONS(6350), 1, + anon_sym_LT, + ACTIONS(6352), 1, + anon_sym_DOT, + ACTIONS(6354), 1, + anon_sym_QMARK_DOT, + STATE(3071), 1, + sym_arguments, + STATE(3207), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1668), 15, - anon_sym_as, + ACTIONS(3998), 10, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - anon_sym_is, - [118091] = 3, - ACTIONS(4063), 1, + anon_sym_PIPE_RBRACE, + [117793] = 4, + ACTIONS(1791), 1, + anon_sym_DOT, + ACTIONS(4250), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4065), 15, + ACTIONS(4252), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237726,21 +235694,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, anon_sym_QMARK, anon_sym_extends, - anon_sym_is, - [118116] = 3, - ACTIONS(4377), 1, - anon_sym_EQ, + [117821] = 5, + ACTIONS(3447), 1, + anon_sym_DOT, + ACTIONS(3451), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4379), 15, + ACTIONS(3445), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(3441), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, @@ -237749,15 +235721,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - [118141] = 3, - ACTIONS(4163), 1, + [117851] = 3, + ACTIONS(4136), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4165), 15, + ACTIONS(4138), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237773,19 +235744,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [118166] = 6, - ACTIONS(3456), 1, - anon_sym_LPAREN, - ACTIONS(4039), 1, + [117876] = 3, + ACTIONS(4058), 1, anon_sym_EQ, - ACTIONS(6371), 1, - anon_sym_DOT, - STATE(2900), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4041), 12, + ACTIONS(4060), 15, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -237797,14 +235763,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - [118197] = 3, - ACTIONS(4263), 1, + anon_sym_is, + [117901] = 3, + ACTIONS(4062), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4265), 15, + ACTIONS(4064), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237820,13 +235788,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [118222] = 3, - ACTIONS(4175), 1, + [117926] = 3, + ACTIONS(4214), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4177), 15, + ACTIONS(4216), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237842,19 +235810,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [118247] = 4, - ACTIONS(4077), 1, + [117951] = 3, + ACTIONS(4122), 1, anon_sym_EQ, - ACTIONS(6373), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4079), 14, + ACTIONS(4124), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, @@ -237865,18 +235832,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [118274] = 3, - ACTIONS(4405), 1, + [117976] = 4, + ACTIONS(4148), 1, anon_sym_EQ, + ACTIONS(6356), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4407), 15, + ACTIONS(4150), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, @@ -237887,35 +235855,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [118299] = 3, - ACTIONS(4267), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4269), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [118003] = 6, + ACTIONS(3443), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [118323] = 3, - ACTIONS(4393), 1, + ACTIONS(4052), 1, anon_sym_EQ, + ACTIONS(6358), 1, + anon_sym_DOT, + STATE(2893), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4395), 14, - anon_sym_as, + ACTIONS(4054), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -237927,15 +235879,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - [118347] = 3, - ACTIONS(4045), 1, + [118034] = 3, + ACTIONS(1685), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4047), 14, + ACTIONS(1683), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237950,34 +235901,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [118371] = 3, - ACTIONS(4067), 1, - anon_sym_PIPE, + anon_sym_is, + [118059] = 3, + ACTIONS(4090), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4069), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4092), 15, + 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_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [118395] = 3, - ACTIONS(4271), 1, + [118084] = 3, + ACTIONS(4370), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4273), 14, + ACTIONS(4372), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -237992,13 +235945,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [118419] = 3, - ACTIONS(4133), 1, + [118108] = 3, + ACTIONS(4184), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4135), 14, + ACTIONS(4186), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238013,13 +235966,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [118443] = 3, - ACTIONS(4275), 1, + [118132] = 3, + ACTIONS(4314), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4277), 14, + ACTIONS(4316), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -238034,118 +235987,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [118467] = 3, - ACTIONS(4271), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4273), 14, - sym__automatic_semicolon, - anon_sym_EQ, - 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, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [118491] = 3, - ACTIONS(4275), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4277), 14, - sym__automatic_semicolon, - anon_sym_EQ, - 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, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [118515] = 3, - ACTIONS(4281), 1, - anon_sym_PIPE, + [118156] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4283), 14, - sym__automatic_semicolon, + ACTIONS(6360), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [118178] = 3, + ACTIONS(4260), 1, anon_sym_EQ, - 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, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [118539] = 3, - ACTIONS(4285), 1, - anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4287), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4262), 14, + 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_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [118563] = 3, - ACTIONS(4281), 1, anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4283), 14, - sym__automatic_semicolon, - anon_sym_EQ, - 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, - anon_sym_LT, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [118587] = 3, - ACTIONS(4285), 1, + [118202] = 3, + ACTIONS(4318), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4287), 14, + ACTIONS(4320), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -238160,13 +236049,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [118611] = 3, - ACTIONS(4289), 1, + [118226] = 3, + ACTIONS(4386), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4291), 14, + ACTIONS(4388), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -238181,13 +236070,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [118635] = 3, - ACTIONS(4293), 1, + [118250] = 3, + ACTIONS(4390), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4295), 14, + ACTIONS(4392), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -238202,13 +236091,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [118659] = 3, - ACTIONS(4289), 1, + [118274] = 3, + ACTIONS(4390), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4291), 14, + ACTIONS(4392), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -238223,79 +236112,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [118683] = 3, - ACTIONS(4083), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4085), 14, - 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_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [118707] = 5, - ACTIONS(4145), 1, - anon_sym_EQ, - ACTIONS(6375), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4085), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - ACTIONS(4147), 10, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [118735] = 4, - ACTIONS(4083), 1, - anon_sym_EQ, - ACTIONS(6375), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4085), 13, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [118761] = 3, - ACTIONS(4089), 1, + [118298] = 3, + ACTIONS(4280), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 14, + ACTIONS(4282), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238303,49 +236126,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [118785] = 3, - ACTIONS(4293), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4295), 14, - sym__automatic_semicolon, - anon_sym_EQ, - 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_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [118809] = 4, - ACTIONS(4157), 1, + [118322] = 3, + ACTIONS(4188), 1, anon_sym_EQ, - ACTIONS(6375), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4159), 13, + ACTIONS(4190), 14, 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_GT, anon_sym_EQ_GT, @@ -238353,11 +236154,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [118835] = 2, + [118346] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6377), 15, + ACTIONS(6362), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -238373,13 +236174,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [118857] = 3, - ACTIONS(4171), 1, + [118368] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(6366), 1, + sym_number, + ACTIONS(6368), 1, + anon_sym_unique, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5600), 2, + sym_string, + sym_predefined_type, + ACTIONS(6364), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [118400] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(6368), 1, + anon_sym_unique, + ACTIONS(6370), 1, + sym_number, + STATE(5619), 1, + sym_string, + STATE(5620), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6364), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [118434] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(6368), 1, + anon_sym_unique, + ACTIONS(6372), 1, + sym_number, + STATE(5638), 1, + sym_string, + STATE(5651), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6364), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [118468] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(6368), 1, + anon_sym_unique, + ACTIONS(6374), 1, + sym_number, + STATE(5663), 1, + sym_string, + STATE(5664), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6364), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [118502] = 3, + ACTIONS(4290), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4173), 14, + ACTIONS(4292), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238394,13 +236298,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [118881] = 3, - ACTIONS(4337), 1, + [118526] = 3, + ACTIONS(4322), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4339), 14, + ACTIONS(4324), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -238415,55 +236319,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [118905] = 3, - ACTIONS(4341), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4343), 14, - sym__automatic_semicolon, + [118550] = 5, + ACTIONS(4196), 1, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(6376), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [118929] = 3, - ACTIONS(4341), 1, - anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4343), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4156), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + ACTIONS(4198), 10, + 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, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [118953] = 3, - ACTIONS(4341), 1, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [118578] = 3, + ACTIONS(4390), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4343), 14, + ACTIONS(4392), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -238478,34 +236363,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [118977] = 3, - ACTIONS(4349), 1, - anon_sym_PIPE, + [118602] = 4, + ACTIONS(4206), 1, + anon_sym_EQ, + ACTIONS(6376), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4351), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4208), 13, + 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_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119001] = 3, - ACTIONS(4349), 1, + [118628] = 3, + ACTIONS(4318), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4351), 14, + ACTIONS(4320), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -238520,13 +236406,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119025] = 3, - ACTIONS(4349), 1, + [118652] = 3, + ACTIONS(4394), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4351), 14, + ACTIONS(4396), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -238541,55 +236427,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119049] = 3, - ACTIONS(4353), 1, - anon_sym_PIPE, + [118676] = 3, + ACTIONS(4210), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4355), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4212), 14, + 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_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119073] = 3, - ACTIONS(4353), 1, anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [118700] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4355), 14, - sym__automatic_semicolon, - anon_sym_EQ, - 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, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119097] = 3, - ACTIONS(4353), 1, + ACTIONS(6378), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [118722] = 3, + ACTIONS(4394), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4355), 14, + ACTIONS(4396), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -238604,13 +236489,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119121] = 3, - ACTIONS(4373), 1, + [118746] = 3, + ACTIONS(4322), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4375), 14, + ACTIONS(4324), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -238625,55 +236510,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119145] = 3, - ACTIONS(4381), 1, - anon_sym_PIPE, + [118770] = 3, + ACTIONS(4144), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4383), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4146), 14, + 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_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119169] = 3, - ACTIONS(4381), 1, anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [118794] = 3, + ACTIONS(4022), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4383), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4024), 14, + 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_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119193] = 3, - ACTIONS(4381), 1, + [118818] = 3, + ACTIONS(4394), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4383), 14, + ACTIONS(4396), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -238688,13 +236573,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119217] = 3, - ACTIONS(4385), 1, + [118842] = 3, + ACTIONS(4398), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4387), 14, + ACTIONS(4400), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -238709,13 +236594,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119241] = 3, - ACTIONS(4385), 1, + [118866] = 3, + ACTIONS(4398), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4387), 14, + ACTIONS(4400), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -238730,76 +236615,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119265] = 3, - ACTIONS(4385), 1, - anon_sym_PIPE, + [118890] = 3, + ACTIONS(4154), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4387), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4156), 14, + 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_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119289] = 3, - ACTIONS(4389), 1, anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [118914] = 4, + ACTIONS(4154), 1, + anon_sym_EQ, + ACTIONS(6376), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4391), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4156), 13, + 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_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119313] = 3, - ACTIONS(4389), 1, anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [118940] = 3, + ACTIONS(4374), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4391), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4376), 14, + 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_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119337] = 3, - ACTIONS(4389), 1, + [118964] = 3, + ACTIONS(4398), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4391), 14, + ACTIONS(4400), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -238814,38 +236700,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119361] = 7, - ACTIONS(4009), 1, - anon_sym_PIPE, - ACTIONS(6345), 1, - anon_sym_LT, - ACTIONS(6379), 1, - anon_sym_DOT, - ACTIONS(6381), 1, - anon_sym_is, - STATE(3205), 1, - sym_type_arguments, + [118988] = 3, + ACTIONS(4160), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3498), 10, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4162), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119393] = 3, - ACTIONS(4035), 1, + [119012] = 3, + ACTIONS(4026), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4037), 14, + ACTIONS(4028), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238860,42 +236742,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [119417] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6383), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [119439] = 7, - ACTIONS(1510), 1, + [119036] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1512), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(6387), 1, - sym_number, - ACTIONS(6389), 1, + ACTIONS(6368), 1, anon_sym_unique, + ACTIONS(6380), 1, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5697), 2, + STATE(5760), 2, sym_string, sym_predefined_type, - ACTIONS(6385), 9, + ACTIONS(6364), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -238905,23 +236767,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [119471] = 8, - ACTIONS(1510), 1, + [119068] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1512), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(6389), 1, + ACTIONS(6368), 1, anon_sym_unique, - ACTIONS(6391), 1, + ACTIONS(6382), 1, sym_number, - STATE(5714), 1, + STATE(5773), 1, sym_string, - STATE(5729), 1, + STATE(5781), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6385), 9, + ACTIONS(6364), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -238931,23 +236793,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [119505] = 8, - ACTIONS(1510), 1, + [119102] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1512), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(6389), 1, + ACTIONS(6368), 1, anon_sym_unique, - ACTIONS(6393), 1, + ACTIONS(6384), 1, sym_number, - STATE(5742), 1, + STATE(5817), 1, sym_string, - STATE(5744), 1, + STATE(5857), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6385), 9, + ACTIONS(6364), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -238957,23 +236819,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [119539] = 8, - ACTIONS(1510), 1, + [119136] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1512), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(6389), 1, + ACTIONS(6368), 1, anon_sym_unique, - ACTIONS(6395), 1, + ACTIONS(6386), 1, sym_number, - STATE(5758), 1, + STATE(5943), 1, sym_string, - STATE(5760), 1, + STATE(5945), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6385), 9, + ACTIONS(6364), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -238983,74 +236845,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [119573] = 3, - ACTIONS(4357), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4359), 14, - 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_GT, - anon_sym_EQ_GT, - anon_sym_AMP, + [119170] = 3, + ACTIONS(4326), 1, anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [119597] = 3, - ACTIONS(4361), 1, - anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4363), 14, - anon_sym_as, + ACTIONS(4328), 14, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_LT, anon_sym_extends, - [119621] = 3, - ACTIONS(4365), 1, - anon_sym_EQ, + anon_sym_PIPE_RBRACE, + [119194] = 3, + ACTIONS(4330), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4367), 14, - anon_sym_as, + ACTIONS(4332), 14, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_LT, anon_sym_extends, - [119645] = 2, + anon_sym_PIPE_RBRACE, + [119218] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6397), 15, + ACTIONS(6388), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -239066,190 +236907,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [119667] = 3, - ACTIONS(4183), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4185), 14, - 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_GT, - anon_sym_EQ_GT, - anon_sym_AMP, + [119240] = 3, + ACTIONS(4326), 1, anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [119691] = 3, - ACTIONS(4191), 1, - anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4193), 14, - 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_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [119715] = 3, - ACTIONS(4199), 1, + ACTIONS(4328), 14, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4201), 14, - anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_LT, anon_sym_extends, - [119739] = 3, - ACTIONS(4203), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4205), 14, - 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_GT, - anon_sym_EQ_GT, - anon_sym_AMP, + anon_sym_PIPE_RBRACE, + [119264] = 3, + ACTIONS(4298), 1, anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [119763] = 3, - ACTIONS(4207), 1, - anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4209), 14, - anon_sym_as, + ACTIONS(4300), 14, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_LT, anon_sym_extends, - [119787] = 3, - ACTIONS(4217), 1, - anon_sym_EQ, + anon_sym_PIPE_RBRACE, + [119288] = 8, + ACTIONS(6390), 1, + anon_sym_LPAREN, + ACTIONS(6392), 1, + anon_sym_DOT, + ACTIONS(6394), 1, + anon_sym_QMARK_DOT, + ACTIONS(6396), 1, + anon_sym_LT, + STATE(3186), 1, + sym_arguments, + STATE(3296), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4219), 14, - anon_sym_as, + ACTIONS(3441), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - [119811] = 3, - ACTIONS(4231), 1, - anon_sym_EQ, + [119322] = 8, + ACTIONS(6390), 1, + anon_sym_LPAREN, + ACTIONS(6396), 1, + anon_sym_LT, + ACTIONS(6398), 1, + anon_sym_DOT, + ACTIONS(6400), 1, + anon_sym_QMARK_DOT, + STATE(3187), 1, + sym_arguments, + STATE(3306), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4233), 14, - anon_sym_as, + ACTIONS(3998), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - [119835] = 3, - ACTIONS(4251), 1, - anon_sym_EQ, + [119356] = 8, + ACTIONS(6390), 1, + anon_sym_LPAREN, + ACTIONS(6396), 1, + anon_sym_LT, + ACTIONS(6402), 1, + anon_sym_DOT, + ACTIONS(6404), 1, + anon_sym_QMARK_DOT, + STATE(3190), 1, + sym_arguments, + STATE(3323), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4253), 14, - anon_sym_as, + ACTIONS(4016), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - [119859] = 7, - ACTIONS(1510), 1, + [119390] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1512), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(6389), 1, + ACTIONS(6368), 1, anon_sym_unique, - ACTIONS(6399), 1, + ACTIONS(6406), 1, sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5653), 2, + STATE(5694), 2, sym_string, sym_predefined_type, - ACTIONS(6385), 9, + ACTIONS(6364), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -239259,23 +237052,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [119891] = 8, - ACTIONS(1510), 1, + [119422] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1512), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(6389), 1, + ACTIONS(6368), 1, anon_sym_unique, - ACTIONS(6401), 1, + ACTIONS(6408), 1, sym_number, - STATE(5666), 1, + STATE(5715), 1, sym_string, - STATE(5677), 1, + STATE(5717), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6385), 9, + ACTIONS(6364), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -239285,49 +237078,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [119925] = 8, - ACTIONS(1510), 1, - anon_sym_DQUOTE, - ACTIONS(1512), 1, - anon_sym_SQUOTE, - ACTIONS(6389), 1, - anon_sym_unique, - ACTIONS(6403), 1, - sym_number, - STATE(5691), 1, - sym_string, - STATE(5699), 1, - sym_predefined_type, + [119456] = 3, + ACTIONS(4370), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6385), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [119959] = 8, - ACTIONS(1510), 1, + ACTIONS(4372), 14, + sym__automatic_semicolon, + anon_sym_EQ, + 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, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119480] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1512), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(6389), 1, + ACTIONS(6368), 1, anon_sym_unique, - ACTIONS(6405), 1, + ACTIONS(6410), 1, sym_number, - STATE(5730), 1, + STATE(5735), 1, sym_string, - STATE(5738), 1, + STATE(5745), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6385), 9, + ACTIONS(6364), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -239337,32 +237125,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [119993] = 3, - ACTIONS(4259), 1, - anon_sym_EQ, + [119514] = 3, + ACTIONS(4330), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4261), 14, - anon_sym_as, + ACTIONS(4332), 14, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_LT, anon_sym_extends, - [120017] = 2, + anon_sym_PIPE_RBRACE, + [119538] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6407), 15, + ACTIONS(6412), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -239378,22 +237166,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [120039] = 7, - ACTIONS(1510), 1, + [119560] = 3, + ACTIONS(4378), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4380), 14, + 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_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [119584] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1512), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(6389), 1, + ACTIONS(6368), 1, anon_sym_unique, - ACTIONS(6409), 1, + ACTIONS(6414), 1, sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5921), 2, + STATE(5871), 2, sym_string, sym_predefined_type, - ACTIONS(6385), 9, + ACTIONS(6364), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -239403,23 +237212,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [120071] = 8, - ACTIONS(1510), 1, + [119616] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1512), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(6389), 1, + ACTIONS(6368), 1, anon_sym_unique, - ACTIONS(6411), 1, + ACTIONS(6416), 1, sym_number, - STATE(5929), 1, + STATE(5884), 1, sym_string, - STATE(5938), 1, + STATE(5893), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6385), 9, + ACTIONS(6364), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -239429,23 +237238,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [120105] = 8, - ACTIONS(1510), 1, + [119650] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1512), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(6389), 1, + ACTIONS(6368), 1, anon_sym_unique, - ACTIONS(6413), 1, + ACTIONS(6418), 1, sym_number, - STATE(5943), 1, + STATE(5903), 1, sym_string, - STATE(5948), 1, + STATE(5909), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6385), 9, + ACTIONS(6364), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -239455,23 +237264,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [120139] = 8, - ACTIONS(1510), 1, + [119684] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1512), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(6389), 1, + ACTIONS(6368), 1, anon_sym_unique, - ACTIONS(6415), 1, + ACTIONS(6420), 1, sym_number, - STATE(5956), 1, + STATE(5916), 1, sym_string, - STATE(5957), 1, + STATE(5923), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6385), 9, + ACTIONS(6364), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -239481,11 +237290,199 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [120173] = 2, + [119718] = 3, + ACTIONS(4306), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4308), 14, + sym__automatic_semicolon, + anon_sym_EQ, + 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, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119742] = 3, + ACTIONS(4310), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4312), 14, + sym__automatic_semicolon, + anon_sym_EQ, + 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, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119766] = 3, + ACTIONS(4314), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4316), 14, + sym__automatic_semicolon, + anon_sym_EQ, + 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, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119790] = 3, + ACTIONS(4382), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4384), 14, + 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_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [119814] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6422), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [119836] = 3, + ACTIONS(4310), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4312), 14, + sym__automatic_semicolon, + anon_sym_EQ, + 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, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119860] = 3, + ACTIONS(4358), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4360), 14, + sym__automatic_semicolon, + anon_sym_EQ, + 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, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119884] = 3, + ACTIONS(4362), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4364), 14, + sym__automatic_semicolon, + anon_sym_EQ, + 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, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119908] = 3, + ACTIONS(4362), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4364), 14, + sym__automatic_semicolon, + anon_sym_EQ, + 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, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119932] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6417), 15, + ACTIONS(6424), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -239501,13 +237498,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [120195] = 3, - ACTIONS(4099), 1, + [119954] = 3, + ACTIONS(4140), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4142), 14, + 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_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [119978] = 3, + ACTIONS(4362), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4364), 14, + sym__automatic_semicolon, + anon_sym_EQ, + 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, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [120002] = 3, + ACTIONS(4170), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4101), 14, + ACTIONS(4172), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239522,22 +237561,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [120219] = 7, - ACTIONS(1510), 1, + [120026] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1512), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(6389), 1, + ACTIONS(6368), 1, anon_sym_unique, - ACTIONS(6419), 1, + ACTIONS(6426), 1, sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5822), 2, + STATE(5667), 2, sym_string, sym_predefined_type, - ACTIONS(6385), 9, + ACTIONS(6364), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -239547,75 +237586,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [120251] = 8, - ACTIONS(1510), 1, - anon_sym_DQUOTE, - ACTIONS(1512), 1, - anon_sym_SQUOTE, - ACTIONS(6389), 1, - anon_sym_unique, - ACTIONS(6421), 1, - sym_number, - STATE(5826), 1, - sym_string, - STATE(5835), 1, - sym_predefined_type, + [120058] = 3, + ACTIONS(4366), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6385), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [120285] = 8, - ACTIONS(1510), 1, - anon_sym_DQUOTE, - ACTIONS(1512), 1, - anon_sym_SQUOTE, - ACTIONS(6389), 1, - anon_sym_unique, - ACTIONS(6423), 1, - sym_number, - STATE(5840), 1, - sym_string, - STATE(5846), 1, - sym_predefined_type, + ACTIONS(4368), 14, + sym__automatic_semicolon, + anon_sym_EQ, + 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, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [120082] = 3, + ACTIONS(4366), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6385), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [120319] = 8, - ACTIONS(1510), 1, + ACTIONS(4368), 14, + sym__automatic_semicolon, + anon_sym_EQ, + 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, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [120106] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1512), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(6389), 1, + ACTIONS(6368), 1, anon_sym_unique, - ACTIONS(6425), 1, + ACTIONS(6428), 1, sym_number, - STATE(5851), 1, + STATE(5796), 1, sym_string, - STATE(5852), 1, + STATE(5827), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6385), 9, + ACTIONS(6364), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -239625,131 +237654,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [120353] = 8, - ACTIONS(6427), 1, - anon_sym_LPAREN, - ACTIONS(6429), 1, - anon_sym_DOT, - ACTIONS(6431), 1, - anon_sym_QMARK_DOT, - ACTIONS(6433), 1, + [120140] = 3, + ACTIONS(4402), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4404), 14, + 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_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [120164] = 7, + ACTIONS(4006), 1, + anon_sym_PIPE, + ACTIONS(6350), 1, anon_sym_LT, - STATE(3238), 1, - sym_arguments, - STATE(3409), 1, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(6432), 1, + anon_sym_is, + STATE(3245), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3454), 9, + ACTIONS(3501), 10, sym__automatic_semicolon, - sym__function_signature_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, anon_sym_extends, - [120387] = 2, + anon_sym_PIPE_RBRACE, + [120196] = 3, + ACTIONS(4366), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6435), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [120409] = 8, - ACTIONS(6427), 1, + ACTIONS(4368), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(6433), 1, - anon_sym_LT, - ACTIONS(6437), 1, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(6439), 1, anon_sym_QMARK_DOT, - STATE(3239), 1, - sym_arguments, - STATE(3412), 1, - sym_type_arguments, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [120220] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(6368), 1, + anon_sym_unique, + ACTIONS(6434), 1, + sym_number, + STATE(5759), 1, + sym_string, + STATE(5890), 1, + sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4017), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(6364), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [120254] = 3, + ACTIONS(4030), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4032), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - [120443] = 8, - ACTIONS(6427), 1, - anon_sym_LPAREN, - ACTIONS(6433), 1, - anon_sym_LT, - ACTIONS(6441), 1, - anon_sym_DOT, - ACTIONS(6443), 1, - anon_sym_QMARK_DOT, - STATE(3240), 1, - sym_arguments, - STATE(3416), 1, - sym_type_arguments, + [120278] = 3, + ACTIONS(4174), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4023), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(4114), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - [120477] = 2, + [120302] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(6368), 1, + anon_sym_unique, + ACTIONS(6436), 1, + sym_number, + STATE(5634), 1, + sym_string, + STATE(5811), 1, + sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6445), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [120499] = 3, - ACTIONS(4073), 1, + ACTIONS(6364), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [120336] = 3, + ACTIONS(4334), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4075), 14, + ACTIONS(4336), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239764,13 +237836,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [120523] = 3, - ACTIONS(4027), 1, + [120360] = 3, + ACTIONS(4342), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4029), 14, + ACTIONS(4344), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239785,13 +237857,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [120547] = 3, - ACTIONS(4103), 1, + [120384] = 3, + ACTIONS(4350), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4105), 14, + ACTIONS(4352), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239806,13 +237878,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [120571] = 3, - ACTIONS(4121), 1, + [120408] = 3, + ACTIONS(4222), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 14, + ACTIONS(4224), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239827,33 +237899,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [120595] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6447), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [120617] = 3, - ACTIONS(4107), 1, + [120432] = 3, + ACTIONS(4354), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4109), 14, + ACTIONS(4356), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239868,36 +237920,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [120641] = 7, - ACTIONS(1510), 1, - anon_sym_DQUOTE, - ACTIONS(1512), 1, - anon_sym_SQUOTE, - ACTIONS(6389), 1, - anon_sym_unique, - ACTIONS(6449), 1, - sym_number, + [120456] = 3, + ACTIONS(4230), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5749), 2, - sym_string, - sym_predefined_type, - ACTIONS(6385), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [120673] = 2, + ACTIONS(4232), 14, + 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_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [120480] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6451), 15, + ACTIONS(6438), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -239913,39 +237961,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [120695] = 8, - ACTIONS(1510), 1, - anon_sym_DQUOTE, - ACTIONS(1512), 1, - anon_sym_SQUOTE, - ACTIONS(6389), 1, - anon_sym_unique, - ACTIONS(6453), 1, - sym_number, - STATE(5820), 1, - sym_string, - STATE(5827), 1, - sym_predefined_type, + [120502] = 3, + ACTIONS(4370), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6385), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [120729] = 3, - ACTIONS(4117), 1, + ACTIONS(4372), 14, + sym__automatic_semicolon, + anon_sym_EQ, + 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, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [120526] = 3, + ACTIONS(4234), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4119), 14, + ACTIONS(4236), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239960,65 +238003,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [120753] = 8, - ACTIONS(1510), 1, - anon_sym_DQUOTE, - ACTIONS(1512), 1, - anon_sym_SQUOTE, - ACTIONS(6389), 1, - anon_sym_unique, - ACTIONS(6455), 1, - sym_number, - STATE(5650), 1, - sym_string, - STATE(5657), 1, - sym_predefined_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6385), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [120787] = 8, - ACTIONS(1510), 1, - anon_sym_DQUOTE, - ACTIONS(1512), 1, - anon_sym_SQUOTE, - ACTIONS(6389), 1, - anon_sym_unique, - ACTIONS(6457), 1, - sym_number, - STATE(5715), 1, - sym_string, - STATE(5716), 1, - sym_predefined_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6385), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [120821] = 3, - ACTIONS(4301), 1, + [120550] = 3, + ACTIONS(4176), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4303), 14, + ACTIONS(4178), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -240033,13 +238024,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [120845] = 3, - ACTIONS(4305), 1, + [120574] = 3, + ACTIONS(4238), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4307), 14, + ACTIONS(4240), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -240054,13 +238045,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [120869] = 3, - ACTIONS(4325), 1, + [120598] = 3, + ACTIONS(4242), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4327), 14, + ACTIONS(4244), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -240075,13 +238066,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [120893] = 3, - ACTIONS(4333), 1, + [120622] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6440), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [120644] = 3, + ACTIONS(4134), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4335), 14, + ACTIONS(4132), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -240096,13 +238107,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [120917] = 3, - ACTIONS(4125), 1, + [120668] = 3, + ACTIONS(4246), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4127), 14, + ACTIONS(4248), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -240117,78 +238128,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [120941] = 11, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(3785), 1, - anon_sym_COMMA, - ACTIONS(3882), 1, - anon_sym_RBRACE, - ACTIONS(4469), 1, - anon_sym_EQ, - STATE(3738), 1, - sym_formal_parameters, - STATE(4673), 1, - aux_sym_object_repeat1, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5298), 1, - sym_type_parameters, + [120692] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(6368), 1, + anon_sym_unique, + ACTIONS(6442), 1, + sym_number, + STATE(5725), 1, + sym_string, + STATE(5727), 1, + sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [120980] = 13, - ACTIONS(2537), 1, + ACTIONS(6364), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [120726] = 13, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6463), 1, + ACTIONS(6448), 1, anon_sym_BANG, - ACTIONS(6465), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(6469), 1, + ACTIONS(6454), 1, anon_sym_QMARK, - STATE(3466), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(3906), 1, - sym__call_signature, - STATE(4220), 1, + STATE(4182), 1, sym_type_annotation, - STATE(4757), 1, + STATE(4755), 1, sym__initializer, - STATE(5469), 1, + STATE(5231), 1, sym_type_parameters, + STATE(5558), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6461), 3, + ACTIONS(6446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [121023] = 6, - ACTIONS(217), 1, + [120769] = 6, + ACTIONS(214), 1, anon_sym_unique, - STATE(2948), 1, + STATE(3392), 1, sym_type_predicate, - STATE(5660), 1, + STATE(5787), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6471), 2, + ACTIONS(6456), 2, sym_identifier, sym_this, - ACTIONS(219), 9, + ACTIONS(216), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -240198,15 +238207,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [121052] = 4, - ACTIONS(4045), 1, + [120798] = 4, + ACTIONS(4026), 1, anon_sym_EQ, - ACTIONS(6351), 1, + ACTIONS(6340), 1, anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4047), 12, + ACTIONS(4028), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -240219,328 +238228,488 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [121077] = 6, - ACTIONS(217), 1, - anon_sym_unique, - STATE(2948), 1, - sym_type_predicate, - STATE(5784), 1, - sym_predefined_type, + [120823] = 13, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(6460), 1, + anon_sym_BANG, + ACTIONS(6462), 1, + anon_sym_LPAREN, + ACTIONS(6464), 1, + anon_sym_QMARK, + STATE(3396), 1, + sym_formal_parameters, + STATE(3788), 1, + sym__call_signature, + STATE(4329), 1, + sym_type_annotation, + STATE(4989), 1, + sym__initializer, + STATE(5339), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6473), 2, - sym_identifier, - sym_this, - ACTIONS(219), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [121106] = 13, - ACTIONS(2537), 1, + ACTIONS(6458), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [120866] = 13, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(6459), 1, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6450), 1, + anon_sym_LPAREN, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(6477), 1, + ACTIONS(6468), 1, anon_sym_BANG, - ACTIONS(6479), 1, + ACTIONS(6470), 1, anon_sym_QMARK, - STATE(3276), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(4373), 1, + STATE(4055), 1, sym_type_annotation, - STATE(5058), 1, - sym__call_signature, - STATE(5060), 1, + STATE(4879), 1, sym__initializer, - STATE(5374), 1, + STATE(5231), 1, sym_type_parameters, + STATE(5539), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6475), 3, + ACTIONS(6466), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [121149] = 13, - ACTIONS(2537), 1, + [120909] = 13, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(6459), 1, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6463), 1, - anon_sym_BANG, - ACTIONS(6467), 1, + ACTIONS(6450), 1, + anon_sym_LPAREN, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(6481), 1, + ACTIONS(6474), 1, + anon_sym_BANG, + ACTIONS(6476), 1, anon_sym_QMARK, - STATE(3276), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(4220), 1, + STATE(4024), 1, sym_type_annotation, - STATE(4789), 1, + STATE(4763), 1, + sym__initializer, + STATE(5231), 1, + sym_type_parameters, + STATE(5334), 1, sym__call_signature, - STATE(4792), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6472), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [120952] = 13, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6450), 1, + anon_sym_LPAREN, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(6478), 1, + anon_sym_BANG, + ACTIONS(6480), 1, + anon_sym_QMARK, + STATE(3848), 1, + sym_formal_parameters, + STATE(4071), 1, + sym_type_annotation, + STATE(4950), 1, sym__initializer, - STATE(5374), 1, + STATE(5231), 1, sym_type_parameters, + STATE(5317), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6461), 3, + ACTIONS(6466), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [121192] = 11, - ACTIONS(2537), 1, + [120995] = 11, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(3785), 1, + ACTIONS(3752), 1, anon_sym_COMMA, - ACTIONS(3799), 1, + ACTIONS(3755), 1, anon_sym_RBRACE, - ACTIONS(4469), 1, + ACTIONS(4429), 1, anon_sym_EQ, - STATE(3738), 1, + STATE(3699), 1, sym_formal_parameters, - STATE(4679), 1, + STATE(5131), 1, aux_sym_object_pattern_repeat1, - STATE(5173), 1, + STATE(5191), 1, aux_sym_object_repeat1, - STATE(5298), 1, + STATE(5356), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 5, + ACTIONS(3758), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [121231] = 13, - ACTIONS(2537), 1, + [121034] = 13, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6450), 1, + anon_sym_LPAREN, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(6485), 1, + ACTIONS(6482), 1, anon_sym_BANG, - ACTIONS(6487), 1, - anon_sym_LPAREN, - ACTIONS(6489), 1, + ACTIONS(6484), 1, anon_sym_QMARK, - STATE(3849), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(4388), 1, + STATE(4420), 1, sym_type_annotation, - STATE(5067), 1, + STATE(5151), 1, sym__initializer, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, - STATE(5343), 1, + STATE(5506), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6483), 3, + ACTIONS(6466), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [121274] = 13, - ACTIONS(2537), 1, + [121077] = 13, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(6491), 1, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(6486), 1, anon_sym_BANG, - ACTIONS(6493), 1, + ACTIONS(6488), 1, anon_sym_QMARK, - STATE(3849), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(4401), 1, + STATE(4442), 1, sym_type_annotation, - STATE(5085), 1, + STATE(5190), 1, sym__initializer, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, - STATE(5354), 1, + STATE(5540), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6483), 3, + ACTIONS(6466), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [121317] = 4, - ACTIONS(4027), 1, + [121120] = 13, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6495), 1, - anon_sym_is, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(6492), 1, + anon_sym_BANG, + ACTIONS(6494), 1, + anon_sym_QMARK, + STATE(3267), 1, + sym_formal_parameters, + STATE(4325), 1, + sym_type_annotation, + STATE(4997), 1, + sym__call_signature, + STATE(4998), 1, + sym__initializer, + STATE(5435), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4029), 12, - anon_sym_LBRACE, + ACTIONS(6490), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_SEMI, + [121163] = 13, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6450), 1, + anon_sym_LPAREN, + ACTIONS(6452), 1, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [121342] = 9, - ACTIONS(4009), 1, - anon_sym_extends, - ACTIONS(6306), 1, + ACTIONS(6496), 1, + anon_sym_BANG, + ACTIONS(6498), 1, + anon_sym_QMARK, + STATE(3848), 1, + sym_formal_parameters, + STATE(3949), 1, + sym_type_annotation, + STATE(4799), 1, + sym__initializer, + STATE(5231), 1, + sym_type_parameters, + STATE(5381), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6472), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [121206] = 13, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6316), 1, - anon_sym_DOT, - ACTIONS(6497), 1, - sym_identifier, - ACTIONS(6501), 1, - anon_sym_GT, - STATE(2908), 1, - sym_type_arguments, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6450), 1, + anon_sym_LPAREN, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(6502), 1, + anon_sym_BANG, + ACTIONS(6504), 1, + anon_sym_QMARK, + STATE(3848), 1, + sym_formal_parameters, + STATE(4334), 1, + sym_type_annotation, + STATE(5004), 1, + sym__initializer, + STATE(5231), 1, + sym_type_parameters, + STATE(5354), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6499), 3, + ACTIONS(6500), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [121249] = 14, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 1, + anon_sym_SQUOTE, + ACTIONS(6328), 1, + anon_sym_STAR, + ACTIONS(6332), 1, anon_sym_LBRACE, - sym_jsx_identifier, - anon_sym_SLASH_GT, - ACTIONS(3498), 5, - anon_sym_EQ, + ACTIONS(6506), 1, + sym_identifier, + ACTIONS(6508), 1, + anon_sym_type, + ACTIONS(6510), 1, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - [121377] = 13, - ACTIONS(2537), 1, + ACTIONS(6512), 1, + anon_sym_from, + STATE(4188), 1, + sym_string, + STATE(4189), 1, + sym_import_require_clause, + STATE(5294), 1, + sym__import_identifier, + STATE(5345), 1, + sym_import_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5775), 2, + sym_namespace_import, + sym_named_imports, + [121294] = 13, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(6506), 1, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(6514), 1, anon_sym_BANG, - ACTIONS(6508), 1, + ACTIONS(6516), 1, anon_sym_QMARK, - STATE(3849), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(4277), 1, + STATE(3961), 1, sym_type_annotation, - STATE(4846), 1, + STATE(4614), 1, sym__initializer, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, - STATE(5515), 1, + STATE(5289), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6504), 3, + ACTIONS(6472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [121420] = 13, - ACTIONS(2537), 1, + [121337] = 13, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(6510), 1, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(6518), 1, anon_sym_BANG, - ACTIONS(6512), 1, + ACTIONS(6520), 1, anon_sym_QMARK, - STATE(3849), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(4423), 1, + STATE(4340), 1, sym_type_annotation, - STATE(5151), 1, + STATE(5009), 1, sym__initializer, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, - STATE(5457), 1, + STATE(5359), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6483), 3, + ACTIONS(6500), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [121463] = 13, - ACTIONS(2537), 1, + [121380] = 11, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3752), 1, + anon_sym_COMMA, + ACTIONS(3800), 1, + anon_sym_RBRACE, + ACTIONS(4429), 1, + anon_sym_EQ, + STATE(3699), 1, + sym_formal_parameters, + STATE(5129), 1, + aux_sym_object_repeat1, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5356), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3758), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [121419] = 13, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(6487), 1, + ACTIONS(6462), 1, anon_sym_LPAREN, - ACTIONS(6514), 1, + ACTIONS(6524), 1, anon_sym_BANG, - ACTIONS(6516), 1, + ACTIONS(6526), 1, anon_sym_QMARK, - STATE(3849), 1, + STATE(3396), 1, sym_formal_parameters, - STATE(4427), 1, + STATE(3897), 1, + sym__call_signature, + STATE(4166), 1, sym_type_annotation, - STATE(5154), 1, + STATE(4699), 1, sym__initializer, - STATE(5338), 1, + STATE(5339), 1, sym_type_parameters, - STATE(5463), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6483), 3, + ACTIONS(6522), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [121506] = 6, - ACTIONS(217), 1, + [121462] = 4, + ACTIONS(4022), 1, + anon_sym_EQ, + ACTIONS(6340), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4024), 12, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [121487] = 6, + ACTIONS(214), 1, anon_sym_unique, - STATE(3452), 1, + STATE(2936), 1, sym_type_predicate, - STATE(5688), 1, + STATE(5962), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6518), 2, + ACTIONS(6528), 2, sym_identifier, sym_this, - ACTIONS(219), 9, + ACTIONS(216), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -240550,278 +238719,300 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [121535] = 13, - ACTIONS(2537), 1, + [121516] = 13, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(6487), 1, + ACTIONS(6462), 1, anon_sym_LPAREN, - ACTIONS(6522), 1, + ACTIONS(6532), 1, anon_sym_BANG, - ACTIONS(6524), 1, + ACTIONS(6534), 1, anon_sym_QMARK, - STATE(3849), 1, + STATE(3396), 1, sym_formal_parameters, - STATE(4461), 1, + STATE(3810), 1, + sym__call_signature, + STATE(4235), 1, sym_type_annotation, - STATE(5221), 1, + STATE(4884), 1, sym__initializer, - STATE(5338), 1, + STATE(5339), 1, sym_type_parameters, - STATE(5559), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(6530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [121578] = 14, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(6359), 1, - anon_sym_STAR, - ACTIONS(6363), 1, - anon_sym_LBRACE, - ACTIONS(6526), 1, - sym_identifier, - ACTIONS(6528), 1, - anon_sym_type, - ACTIONS(6530), 1, - anon_sym_COMMA, - ACTIONS(6532), 1, - anon_sym_from, - STATE(4349), 1, - sym_string, - STATE(4350), 1, - sym_import_require_clause, - STATE(5301), 1, - sym__import_identifier, - STATE(5568), 1, - sym_import_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5990), 2, - sym_namespace_import, - sym_named_imports, - [121623] = 13, - ACTIONS(2537), 1, + [121559] = 13, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6465), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, ACTIONS(6536), 1, anon_sym_BANG, ACTIONS(6538), 1, anon_sym_QMARK, - STATE(3466), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(3888), 1, - sym__call_signature, - STATE(4391), 1, + STATE(4360), 1, sym_type_annotation, - STATE(5078), 1, + STATE(5046), 1, sym__initializer, - STATE(5469), 1, + STATE(5231), 1, sym_type_parameters, + STATE(5396), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6534), 3, + ACTIONS(6500), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [121666] = 13, - ACTIONS(2537), 1, + [121602] = 13, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6465), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(6477), 1, - anon_sym_BANG, ACTIONS(6540), 1, + anon_sym_BANG, + ACTIONS(6542), 1, anon_sym_QMARK, - STATE(3466), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(3792), 1, - sym__call_signature, - STATE(4373), 1, + STATE(4363), 1, sym_type_annotation, - STATE(5026), 1, + STATE(5051), 1, sym__initializer, - STATE(5469), 1, + STATE(5231), 1, sym_type_parameters, + STATE(5402), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6475), 3, + ACTIONS(6500), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [121709] = 11, - ACTIONS(2537), 1, + [121645] = 13, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(3785), 1, - anon_sym_COMMA, - ACTIONS(3877), 1, - anon_sym_RBRACE, - ACTIONS(4469), 1, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(3738), 1, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(6524), 1, + anon_sym_BANG, + ACTIONS(6544), 1, + anon_sym_QMARK, + STATE(3267), 1, sym_formal_parameters, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, - STATE(5298), 1, + STATE(4166), 1, + sym_type_annotation, + STATE(4720), 1, + sym__call_signature, + STATE(4722), 1, + sym__initializer, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 5, + ACTIONS(6522), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [121748] = 11, - ACTIONS(2537), 1, + [121688] = 11, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(3785), 1, + ACTIONS(3752), 1, anon_sym_COMMA, - ACTIONS(3788), 1, + ACTIONS(3877), 1, anon_sym_RBRACE, - ACTIONS(4469), 1, + ACTIONS(4429), 1, anon_sym_EQ, - STATE(3738), 1, + STATE(3699), 1, sym_formal_parameters, - STATE(4679), 1, + STATE(5131), 1, aux_sym_object_pattern_repeat1, - STATE(5173), 1, + STATE(5191), 1, aux_sym_object_repeat1, - STATE(5298), 1, + STATE(5356), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 5, + ACTIONS(3758), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [121787] = 4, - ACTIONS(4035), 1, - anon_sym_EQ, - ACTIONS(6351), 1, - anon_sym_is, + [121727] = 9, + ACTIONS(4006), 1, + anon_sym_extends, + ACTIONS(6291), 1, + anon_sym_LT, + ACTIONS(6324), 1, + anon_sym_DOT, + ACTIONS(6546), 1, + sym_identifier, + ACTIONS(6550), 1, + anon_sym_GT, + STATE(2909), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4037), 12, + ACTIONS(6548), 3, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + ACTIONS(3501), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, - anon_sym_extends, - [121812] = 13, - ACTIONS(2537), 1, + [121762] = 13, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6465), 1, - anon_sym_LPAREN, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(6544), 1, + ACTIONS(6462), 1, + anon_sym_LPAREN, + ACTIONS(6555), 1, anon_sym_BANG, - ACTIONS(6546), 1, + ACTIONS(6557), 1, anon_sym_QMARK, - STATE(3466), 1, + STATE(3396), 1, sym_formal_parameters, - STATE(3859), 1, + STATE(3913), 1, sym__call_signature, - STATE(4442), 1, + STATE(4451), 1, sym_type_annotation, - STATE(5204), 1, + STATE(5205), 1, sym__initializer, - STATE(5469), 1, + STATE(5339), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6542), 3, + ACTIONS(6553), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [121855] = 13, - ACTIONS(2537), 1, + [121805] = 13, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(6548), 1, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(6561), 1, anon_sym_BANG, - ACTIONS(6550), 1, + ACTIONS(6563), 1, anon_sym_QMARK, - STATE(3849), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(4011), 1, + STATE(4183), 1, sym_type_annotation, - STATE(4622), 1, + STATE(4756), 1, sym__initializer, - STATE(5308), 1, - sym__call_signature, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, + STATE(5326), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6559), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [121848] = 6, + ACTIONS(4006), 1, + anon_sym_PIPE, + ACTIONS(6350), 1, + anon_sym_LT, + ACTIONS(6430), 1, + anon_sym_DOT, + STATE(3245), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3501), 10, + 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_extends, + anon_sym_PIPE_RBRACE, + [121877] = 6, + ACTIONS(3467), 1, + anon_sym_LPAREN, + ACTIONS(4052), 1, + anon_sym_PIPE, + ACTIONS(6565), 1, + anon_sym_DOT, + STATE(3172), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(4054), 10, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [121898] = 6, - ACTIONS(217), 1, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [121906] = 6, + ACTIONS(214), 1, anon_sym_unique, - STATE(1857), 1, + STATE(1492), 1, sym_type_predicate, - STATE(5723), 1, + STATE(5722), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6552), 2, + ACTIONS(6567), 2, sym_identifier, sym_this, - ACTIONS(219), 9, + ACTIONS(216), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -240831,168 +239022,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [121927] = 13, - ACTIONS(2537), 1, + [121935] = 13, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(6487), 1, + ACTIONS(6462), 1, anon_sym_LPAREN, - ACTIONS(6554), 1, + ACTIONS(6492), 1, anon_sym_BANG, - ACTIONS(6556), 1, + ACTIONS(6569), 1, anon_sym_QMARK, - STATE(3849), 1, + STATE(3396), 1, sym_formal_parameters, - STATE(4020), 1, + STATE(3881), 1, + sym__call_signature, + STATE(4325), 1, sym_type_annotation, - STATE(4649), 1, + STATE(4977), 1, sym__initializer, - STATE(5243), 1, - sym__call_signature, - STATE(5338), 1, + STATE(5339), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(6490), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [121970] = 13, - ACTIONS(2537), 1, + [121978] = 13, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6465), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(6560), 1, + ACTIONS(6571), 1, anon_sym_BANG, - ACTIONS(6562), 1, + ACTIONS(6573), 1, anon_sym_QMARK, - STATE(3466), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(3890), 1, - sym__call_signature, - STATE(4434), 1, + STATE(4197), 1, sym_type_annotation, - STATE(5159), 1, + STATE(5181), 1, sym__initializer, - STATE(5469), 1, + STATE(5231), 1, sym_type_parameters, + STATE(5545), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6558), 3, + ACTIONS(6466), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [122013] = 11, - ACTIONS(2537), 1, + [122021] = 11, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(3785), 1, + ACTIONS(3752), 1, anon_sym_COMMA, - ACTIONS(3866), 1, + ACTIONS(3868), 1, anon_sym_RBRACE, - ACTIONS(4469), 1, + ACTIONS(4429), 1, anon_sym_EQ, - STATE(3738), 1, + STATE(3699), 1, sym_formal_parameters, - STATE(4679), 1, + STATE(5131), 1, aux_sym_object_pattern_repeat1, - STATE(5173), 1, + STATE(5191), 1, aux_sym_object_repeat1, - STATE(5298), 1, + STATE(5356), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 5, + ACTIONS(3758), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [122052] = 13, - ACTIONS(2537), 1, + [122060] = 13, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(6566), 1, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(6575), 1, anon_sym_BANG, - ACTIONS(6568), 1, + ACTIONS(6577), 1, anon_sym_QMARK, - STATE(3849), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(3999), 1, + STATE(4426), 1, sym_type_annotation, - STATE(5011), 1, + STATE(5146), 1, sym__initializer, - STATE(5252), 1, - sym__call_signature, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, + STATE(5504), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6564), 3, + ACTIONS(6466), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [122095] = 13, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6459), 1, + [122103] = 6, + ACTIONS(214), 1, + anon_sym_unique, + STATE(2936), 1, + sym_type_predicate, + STATE(5733), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6579), 2, + sym_identifier, + sym_this, + ACTIONS(216), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [122132] = 4, + ACTIONS(4030), 1, anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6487), 1, - anon_sym_LPAREN, - ACTIONS(6570), 1, - anon_sym_BANG, - ACTIONS(6572), 1, - anon_sym_QMARK, - STATE(3849), 1, - sym_formal_parameters, - STATE(4041), 1, - sym_type_annotation, - STATE(4720), 1, - sym__initializer, - STATE(5338), 1, - sym_type_parameters, - STATE(5425), 1, - sym__call_signature, + ACTIONS(6581), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6564), 3, - sym__automatic_semicolon, + ACTIONS(4032), 12, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [122138] = 6, - ACTIONS(217), 1, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [122157] = 6, + ACTIONS(214), 1, anon_sym_unique, - STATE(2948), 1, + STATE(1981), 1, sym_type_predicate, - STATE(5696), 1, + STATE(5969), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6574), 2, + ACTIONS(6583), 2, sym_identifier, sym_this, - ACTIONS(219), 9, + ACTIONS(216), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -241002,20 +239207,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [122167] = 6, - ACTIONS(217), 1, + [122186] = 6, + ACTIONS(214), 1, anon_sym_unique, - STATE(3202), 1, + STATE(3180), 1, sym_type_predicate, - STATE(5736), 1, + STATE(5835), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6576), 2, + ACTIONS(6585), 2, sym_identifier, sym_this, - ACTIONS(219), 9, + ACTIONS(216), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -241025,140 +239230,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [122196] = 13, - ACTIONS(2537), 1, + [122215] = 11, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6487), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(6578), 1, - anon_sym_BANG, - ACTIONS(6580), 1, - anon_sym_QMARK, - STATE(3849), 1, - sym_formal_parameters, - STATE(3967), 1, - sym_type_annotation, - STATE(4626), 1, - sym__initializer, - STATE(5338), 1, - sym_type_parameters, - STATE(5544), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6564), 3, - sym__automatic_semicolon, + ACTIONS(3752), 1, anon_sym_COMMA, - anon_sym_SEMI, - [122239] = 13, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6459), 1, + ACTIONS(3803), 1, + anon_sym_RBRACE, + ACTIONS(4429), 1, anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6487), 1, - anon_sym_LPAREN, - ACTIONS(6582), 1, - anon_sym_BANG, - ACTIONS(6584), 1, - anon_sym_QMARK, - STATE(3849), 1, + STATE(3699), 1, sym_formal_parameters, - STATE(3993), 1, - sym_type_annotation, - STATE(4996), 1, - sym__initializer, - STATE(5304), 1, - sym__call_signature, - STATE(5338), 1, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, + STATE(5356), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6564), 3, + ACTIONS(3758), 5, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [122282] = 13, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, anon_sym_COLON, - ACTIONS(6487), 1, - anon_sym_LPAREN, - ACTIONS(6586), 1, - anon_sym_BANG, - ACTIONS(6588), 1, anon_sym_QMARK, - STATE(3849), 1, - sym_formal_parameters, - STATE(4112), 1, - sym_type_annotation, - STATE(5053), 1, - sym__initializer, - STATE(5297), 1, - sym__call_signature, - STATE(5338), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6564), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [122325] = 13, - ACTIONS(2537), 1, + anon_sym_PIPE_RBRACE, + [122254] = 13, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(6590), 1, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(6587), 1, anon_sym_BANG, - ACTIONS(6592), 1, + ACTIONS(6589), 1, anon_sym_QMARK, - STATE(3849), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(4130), 1, + STATE(4390), 1, sym_type_annotation, - STATE(5182), 1, + STATE(5035), 1, sym__initializer, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, - STATE(5493), 1, + STATE(5383), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6564), 3, + ACTIONS(6472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [122368] = 6, - ACTIONS(217), 1, + [122297] = 6, + ACTIONS(214), 1, anon_sym_unique, - STATE(1604), 1, + STATE(2936), 1, sym_type_predicate, - STATE(5737), 1, + STATE(5684), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6594), 2, + ACTIONS(6591), 2, sym_identifier, sym_this, - ACTIONS(219), 9, + ACTIONS(216), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -241168,72 +239311,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [122397] = 6, - ACTIONS(4009), 1, - anon_sym_PIPE, - ACTIONS(6345), 1, - anon_sym_LT, - ACTIONS(6379), 1, - anon_sym_DOT, - STATE(3205), 1, - sym_type_arguments, + [122326] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3498), 10, + ACTIONS(4400), 13, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, 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, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122426] = 13, - ACTIONS(2537), 1, + anon_sym_PIPE, anon_sym_LT, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6487), 1, - anon_sym_LPAREN, - ACTIONS(6596), 1, - anon_sym_BANG, - ACTIONS(6598), 1, - anon_sym_QMARK, - STATE(3849), 1, - sym_formal_parameters, - STATE(4092), 1, - sym_type_annotation, - STATE(5014), 1, - sym__initializer, - STATE(5279), 1, - sym__call_signature, - STATE(5338), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6520), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [122469] = 6, - ACTIONS(3500), 1, - anon_sym_LPAREN, - ACTIONS(4039), 1, + anon_sym_extends, + [122346] = 3, + ACTIONS(4406), 1, anon_sym_PIPE, - ACTIONS(6600), 1, - anon_sym_DOT, - STATE(3128), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4041), 10, + ACTIONS(4408), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -241241,44 +239343,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122498] = 13, - ACTIONS(2537), 1, + [122368] = 10, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6487), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(6604), 1, - anon_sym_BANG, - ACTIONS(6606), 1, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(6595), 1, anon_sym_QMARK, - STATE(3849), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4252), 1, + STATE(4057), 1, + sym__call_signature, + STATE(4058), 1, sym_type_annotation, - STATE(4813), 1, - sym__initializer, - STATE(5338), 1, + STATE(5435), 1, sym_type_parameters, - STATE(5487), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6602), 3, + ACTIONS(6593), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [122541] = 2, + anon_sym_PIPE_RBRACE, + [122404] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4383), 13, + ACTIONS(4396), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -241292,39 +239392,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [122561] = 10, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6610), 1, - anon_sym_QMARK, - STATE(3276), 1, - sym_formal_parameters, - STATE(3572), 1, - sym__call_signature, - STATE(4153), 1, - sym_type_annotation, - STATE(5374), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6608), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [122597] = 3, - ACTIONS(4179), 1, + [122424] = 3, + ACTIONS(4086), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4181), 12, + ACTIONS(4088), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -241337,13 +239411,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122619] = 3, - ACTIONS(4187), 1, + [122446] = 3, + ACTIONS(3182), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4189), 12, + ACTIONS(3184), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -241356,322 +239430,235 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122641] = 10, - ACTIONS(2537), 1, + [122468] = 10, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(6614), 1, + ACTIONS(6599), 1, anon_sym_QMARK, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4287), 1, + STATE(3524), 1, sym__call_signature, - STATE(4288), 1, + STATE(4271), 1, sym_type_annotation, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6612), 5, + ACTIONS(6597), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [122677] = 6, - ACTIONS(4231), 1, - anon_sym_EQ, - ACTIONS(6616), 1, - anon_sym_AMP, - ACTIONS(6618), 1, - anon_sym_PIPE, - ACTIONS(6620), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4233), 9, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - [122705] = 3, - ACTIONS(4195), 1, - anon_sym_PIPE, + [122504] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4197), 12, + ACTIONS(4396), 13, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, 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, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122727] = 6, - ACTIONS(4137), 1, - anon_sym_EQ, - ACTIONS(6616), 1, - anon_sym_AMP, - ACTIONS(6618), 1, anon_sym_PIPE, - ACTIONS(6620), 1, + anon_sym_LT, anon_sym_extends, + [122524] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4139), 9, + ACTIONS(4400), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - [122755] = 4, - ACTIONS(4255), 1, - anon_sym_EQ, - ACTIONS(6616), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4257), 11, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, anon_sym_PIPE, - anon_sym_extends, - [122779] = 6, - ACTIONS(6433), 1, anon_sym_LT, - ACTIONS(6622), 1, - anon_sym_DOT, - ACTIONS(6624), 1, - anon_sym_is, - STATE(3369), 1, - sym_type_arguments, + anon_sym_extends, + [122544] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3498), 9, + ACTIONS(4372), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - [122807] = 10, - ACTIONS(2537), 1, + [122564] = 13, + ACTIONS(3521), 1, anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(6626), 1, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6316), 1, + anon_sym_DOT, + ACTIONS(6601), 1, anon_sym_COLON, - ACTIONS(6628), 1, - anon_sym_QMARK, - STATE(3276), 1, - sym_formal_parameters, - STATE(3550), 1, - sym__call_signature, - STATE(4288), 1, - sym_type_annotation, - STATE(5374), 1, - sym_type_parameters, + ACTIONS(6603), 1, + anon_sym_GT, + ACTIONS(6605), 1, + anon_sym_SLASH_GT, + STATE(3350), 1, + sym_type_arguments, + STATE(3365), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3796), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6612), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [122843] = 4, - ACTIONS(1869), 1, - anon_sym_DOT, - ACTIONS(4221), 1, + STATE(4421), 2, + sym_jsx_expression, + sym_jsx_attribute, + [122606] = 3, + ACTIONS(4264), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4223), 11, + ACTIONS(4266), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_AMP, - anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122867] = 10, - ACTIONS(2537), 1, + [122628] = 10, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(6467), 1, + ACTIONS(6609), 1, anon_sym_COLON, - ACTIONS(6632), 1, + ACTIONS(6611), 1, anon_sym_QMARK, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(3728), 1, + STATE(3759), 1, sym__call_signature, - STATE(4440), 1, + STATE(4203), 1, sym_type_annotation, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6630), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [122903] = 3, - ACTIONS(3175), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3177), 12, + ACTIONS(6607), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [122925] = 5, - ACTIONS(3458), 1, - anon_sym_PIPE, - ACTIONS(3502), 1, - anon_sym_DOT, - ACTIONS(3504), 1, - anon_sym_QMARK_DOT, + [122664] = 10, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(6615), 1, + anon_sym_QMARK, + STATE(3267), 1, + sym_formal_parameters, + STATE(4370), 1, + sym__call_signature, + STATE(4371), 1, + sym_type_annotation, + STATE(5435), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3454), 10, + ACTIONS(6613), 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_extends, anon_sym_PIPE_RBRACE, - [122951] = 3, - ACTIONS(3635), 1, - anon_sym_PIPE, + [122700] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3436), 12, + ACTIONS(4396), 13, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, 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, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122973] = 3, - ACTIONS(3628), 1, anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [122720] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3438), 12, + ACTIONS(4388), 13, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, 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, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122995] = 6, - ACTIONS(4297), 1, - anon_sym_EQ, - ACTIONS(6616), 1, - anon_sym_AMP, - ACTIONS(6618), 1, anon_sym_PIPE, - ACTIONS(6620), 1, + anon_sym_LT, anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4299), 9, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - [123023] = 6, - ACTIONS(4345), 1, + [122740] = 6, + ACTIONS(4192), 1, anon_sym_EQ, - ACTIONS(6616), 1, + ACTIONS(6617), 1, anon_sym_AMP, - ACTIONS(6618), 1, + ACTIONS(6619), 1, anon_sym_PIPE, - ACTIONS(6620), 1, + ACTIONS(6621), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4347), 9, + ACTIONS(4194), 9, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -241681,37 +239668,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - [123051] = 4, - ACTIONS(1873), 1, - anon_sym_DOT, - ACTIONS(4221), 1, - anon_sym_PIPE, + [122768] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4223), 11, + ACTIONS(4400), 13, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, 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, + anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [123075] = 5, - ACTIONS(4093), 1, - anon_sym_PIPE, - ACTIONS(6634), 1, + [122788] = 4, + ACTIONS(1699), 1, anon_sym_DOT, - ACTIONS(6636), 1, - anon_sym_QMARK_DOT, + ACTIONS(4250), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4095), 10, + ACTIONS(4252), 11, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -241720,17 +239703,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, + anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [123101] = 4, - ACTIONS(4151), 1, + [122812] = 4, + ACTIONS(4200), 1, anon_sym_EQ, - ACTIONS(6638), 1, + ACTIONS(6623), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4153), 11, + ACTIONS(4202), 11, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -241742,13 +239726,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - [123125] = 3, - ACTIONS(4235), 1, + [122836] = 3, + ACTIONS(4268), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4237), 12, + ACTIONS(4270), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -241761,159 +239745,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [123147] = 3, - ACTIONS(4239), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4241), 12, - sym__automatic_semicolon, + [122858] = 6, + ACTIONS(4346), 1, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, + ACTIONS(6617), 1, anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [123169] = 10, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6642), 1, - anon_sym_QMARK, - STATE(3276), 1, - sym_formal_parameters, - STATE(3671), 1, - sym__call_signature, - STATE(4313), 1, - sym_type_annotation, - STATE(5374), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6640), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [123205] = 3, - ACTIONS(4243), 1, + ACTIONS(6619), 1, anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4245), 12, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4348), 9, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [123227] = 13, - ACTIONS(6051), 1, - anon_sym_LT, - ACTIONS(6318), 1, - sym_identifier, - ACTIONS(6322), 1, - anon_sym_LBRACE, - ACTIONS(6331), 1, - sym_jsx_identifier, - ACTIONS(6333), 1, - anon_sym_DOT, - ACTIONS(6644), 1, - anon_sym_COLON, - ACTIONS(6646), 1, - anon_sym_GT, - ACTIONS(6648), 1, - anon_sym_SLASH_GT, - STATE(3437), 1, - sym_type_arguments, - STATE(3444), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3955), 2, - sym_jsx_expression, - sym_jsx_attribute, - [123269] = 13, - ACTIONS(6051), 1, - anon_sym_LT, - ACTIONS(6318), 1, - sym_identifier, - ACTIONS(6322), 1, - anon_sym_LBRACE, - ACTIONS(6331), 1, - sym_jsx_identifier, - ACTIONS(6333), 1, - anon_sym_DOT, - ACTIONS(6644), 1, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(6646), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, - ACTIONS(6650), 1, - anon_sym_SLASH_GT, - STATE(3359), 1, - sym_type_arguments, - STATE(3361), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, - sym_jsx_namespace_name, + anon_sym_EQ_GT, + [122886] = 4, + ACTIONS(4284), 1, + anon_sym_EQ, + ACTIONS(6617), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, - sym_jsx_expression, - sym_jsx_attribute, - [123311] = 2, + ACTIONS(4286), 11, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_extends, + [122910] = 3, + ACTIONS(3625), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4069), 13, + ACTIONS(3429), 12, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, 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, - anon_sym_PIPE, - anon_sym_LT, anon_sym_extends, - [123331] = 6, - ACTIONS(4401), 1, + anon_sym_PIPE_RBRACE, + [122932] = 6, + ACTIONS(4260), 1, anon_sym_EQ, - ACTIONS(6616), 1, + ACTIONS(6617), 1, anon_sym_AMP, - ACTIONS(6618), 1, + ACTIONS(6619), 1, anon_sym_PIPE, - ACTIONS(6620), 1, + ACTIONS(6621), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4403), 9, + ACTIONS(4262), 9, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -241923,117 +239828,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - [123359] = 10, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(6467), 1, + [122960] = 6, + ACTIONS(4098), 1, + anon_sym_EQ, + ACTIONS(6617), 1, + anon_sym_AMP, + ACTIONS(6619), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4100), 9, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(6654), 1, - anon_sym_QMARK, - STATE(3276), 1, - sym_formal_parameters, - STATE(4131), 1, - sym__call_signature, - STATE(4133), 1, - sym_type_annotation, - STATE(5374), 1, - sym_type_parameters, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + [122988] = 6, + ACTIONS(4354), 1, + anon_sym_EQ, + ACTIONS(6617), 1, + anon_sym_AMP, + ACTIONS(6619), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6652), 5, - sym__automatic_semicolon, + ACTIONS(4356), 9, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [123395] = 10, - ACTIONS(2537), 1, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + [123016] = 10, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(6656), 1, + ACTIONS(6627), 1, anon_sym_QMARK, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4439), 1, + STATE(3954), 1, sym__call_signature, - STATE(4440), 1, + STATE(3955), 1, sym_type_annotation, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6630), 5, + ACTIONS(6625), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [123431] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4273), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + [123052] = 5, + ACTIONS(4030), 1, anon_sym_PIPE, + ACTIONS(6350), 1, anon_sym_LT, - anon_sym_extends, - [123451] = 2, + STATE(3256), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4277), 13, + ACTIONS(4032), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, anon_sym_extends, - [123471] = 2, + anon_sym_PIPE_RBRACE, + [123078] = 3, + ACTIONS(4226), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4273), 13, + ACTIONS(4228), 12, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, anon_sym_extends, - [123491] = 2, + anon_sym_PIPE_RBRACE, + [123100] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4277), 13, + ACTIONS(4372), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242047,73 +239956,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123511] = 2, + [123120] = 4, + ACTIONS(1791), 1, + anon_sym_DOT, + ACTIONS(4250), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4283), 13, + ACTIONS(4252), 11, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123531] = 2, + anon_sym_PIPE_RBRACE, + [123144] = 13, + ACTIONS(3521), 1, + anon_sym_LT, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6316), 1, + anon_sym_DOT, + ACTIONS(6601), 1, + anon_sym_COLON, + ACTIONS(6603), 1, + anon_sym_GT, + ACTIONS(6629), 1, + anon_sym_SLASH_GT, + STATE(3318), 1, + sym_type_arguments, + STATE(3327), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3796), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4287), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [123551] = 10, - ACTIONS(2537), 1, + STATE(4421), 2, + sym_jsx_expression, + sym_jsx_attribute, + [123186] = 10, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(6658), 1, + ACTIONS(6631), 1, anon_sym_QMARK, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4312), 1, + STATE(3687), 1, sym__call_signature, - STATE(4313), 1, + STATE(3955), 1, sym_type_annotation, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6640), 5, + ACTIONS(6625), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [123587] = 2, + [123222] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4283), 13, + ACTIONS(4392), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242127,11 +240049,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123607] = 2, + [123242] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4287), 13, + ACTIONS(4392), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242145,106 +240067,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123627] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4291), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + [123262] = 5, + ACTIONS(3445), 1, + anon_sym_PIPE, + ACTIONS(3469), 1, anon_sym_DOT, + ACTIONS(3471), 1, anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [123647] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4295), 13, + ACTIONS(3441), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, anon_sym_extends, - [123667] = 2, + anon_sym_PIPE_RBRACE, + [123288] = 3, + ACTIONS(3162), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4291), 13, + ACTIONS(3164), 12, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, anon_sym_extends, - [123687] = 2, + anon_sym_PIPE_RBRACE, + [123310] = 10, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(6633), 1, + anon_sym_QMARK, + STATE(3267), 1, + sym_formal_parameters, + STATE(3579), 1, + sym__call_signature, + STATE(4371), 1, + sym_type_annotation, + STATE(5435), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4295), 13, + ACTIONS(6613), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_PIPE_RBRACE, + [123346] = 10, + ACTIONS(2478), 1, anon_sym_LT, - anon_sym_extends, - [123707] = 3, - ACTIONS(3167), 1, - anon_sym_PIPE, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(6635), 1, + anon_sym_QMARK, + STATE(3267), 1, + sym_formal_parameters, + STATE(4202), 1, + sym__call_signature, + STATE(4203), 1, + sym_type_annotation, + STATE(5435), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3169), 12, + ACTIONS(6607), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [123729] = 4, - ACTIONS(4111), 1, + [123382] = 6, + ACTIONS(4094), 1, anon_sym_EQ, - ACTIONS(6616), 1, + ACTIONS(6617), 1, anon_sym_AMP, + ACTIONS(6619), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4113), 11, + ACTIONS(4096), 9, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -242254,39 +240181,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, + [123410] = 3, + ACTIONS(4276), 1, anon_sym_PIPE, - anon_sym_extends, - [123753] = 10, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6660), 1, - anon_sym_QMARK, - STATE(3276), 1, - sym_formal_parameters, - STATE(4152), 1, - sym__call_signature, - STATE(4153), 1, - sym_type_annotation, - STATE(5374), 1, - sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6608), 5, + ACTIONS(4278), 12, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [123789] = 2, + [123432] = 6, + ACTIONS(6396), 1, + anon_sym_LT, + ACTIONS(6637), 1, + anon_sym_DOT, + ACTIONS(6639), 1, + anon_sym_is, + STATE(3448), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4339), 13, + ACTIONS(3501), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [123460] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4300), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242300,11 +240240,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123809] = 2, + [123480] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4343), 13, + ACTIONS(4308), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242318,11 +240258,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123829] = 2, + [123500] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4343), 13, + ACTIONS(4312), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242336,11 +240276,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123849] = 2, + [123520] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4343), 13, + ACTIONS(4316), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242354,11 +240294,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123869] = 2, + [123540] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4351), 13, + ACTIONS(4312), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242372,11 +240312,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123889] = 2, + [123560] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4351), 13, + ACTIONS(4316), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242390,11 +240330,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123909] = 2, + [123580] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4351), 13, + ACTIONS(4320), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242408,30 +240348,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123929] = 3, - ACTIONS(3171), 1, - anon_sym_PIPE, + [123600] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3173), 12, + ACTIONS(4324), 13, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, 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, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [123951] = 2, + [123620] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4355), 13, + ACTIONS(4320), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242445,11 +240384,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123971] = 2, + [123640] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4355), 13, + ACTIONS(4324), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242463,11 +240402,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123991] = 2, + [123660] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4355), 13, + ACTIONS(4328), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242481,11 +240420,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [124011] = 2, + [123680] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4375), 13, + ACTIONS(4332), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242499,11 +240438,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [124031] = 2, + [123700] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4383), 13, + ACTIONS(4328), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242517,11 +240456,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [124051] = 2, + [123720] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4383), 13, + ACTIONS(4332), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242535,17 +240474,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [124071] = 5, - ACTIONS(4027), 1, + [123740] = 5, + ACTIONS(4164), 1, anon_sym_PIPE, - ACTIONS(6345), 1, - anon_sym_LT, - STATE(3212), 1, - sym_type_arguments, + ACTIONS(6641), 1, + anon_sym_DOT, + ACTIONS(6643), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4029), 10, + ACTIONS(4166), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242556,13 +240495,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [124097] = 3, - ACTIONS(4247), 1, + [123766] = 3, + ACTIONS(3623), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4249), 12, + ACTIONS(3419), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242575,11 +240514,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [124119] = 2, + [123788] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4387), 13, + ACTIONS(4392), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242593,29 +240532,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [124139] = 2, + [123808] = 3, + ACTIONS(4272), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4387), 13, + ACTIONS(4274), 12, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, 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, - anon_sym_PIPE, - anon_sym_LT, anon_sym_extends, - [124159] = 2, + anon_sym_PIPE_RBRACE, + [123830] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4387), 13, + ACTIONS(4360), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242629,11 +240569,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [124179] = 2, + [123850] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4391), 13, + ACTIONS(4364), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242647,11 +240587,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [124199] = 2, + [123870] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4391), 13, + ACTIONS(4364), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242665,81 +240605,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [124219] = 10, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6662), 1, - anon_sym_QMARK, - STATE(3276), 1, - sym_formal_parameters, - STATE(3602), 1, - sym__call_signature, - STATE(4133), 1, - sym_type_annotation, - STATE(5374), 1, - sym_type_parameters, + [123890] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6652), 5, + ACTIONS(4364), 13, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [124255] = 6, - ACTIONS(4309), 1, - anon_sym_EQ, - ACTIONS(6616), 1, - anon_sym_AMP, - ACTIONS(6618), 1, - anon_sym_PIPE, - ACTIONS(6620), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4311), 9, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - [124283] = 6, - ACTIONS(4333), 1, - anon_sym_EQ, - ACTIONS(6616), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - ACTIONS(6618), 1, anon_sym_PIPE, - ACTIONS(6620), 1, + anon_sym_LT, anon_sym_extends, + [123910] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4335), 9, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - [124311] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4391), 13, + ACTIONS(4368), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242753,11 +240641,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [124331] = 2, + [123930] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4269), 13, + ACTIONS(4368), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -242771,334 +240659,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [124351] = 11, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(3276), 1, - sym_formal_parameters, - STATE(4190), 1, - sym_type_annotation, - STATE(4634), 1, - sym__initializer, - STATE(5152), 1, - sym__call_signature, - STATE(5374), 1, - sym_type_parameters, + [123950] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6664), 3, + ACTIONS(4368), 13, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [124388] = 11, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6465), 1, anon_sym_LPAREN, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(3466), 1, - sym_formal_parameters, - STATE(3788), 1, - sym__call_signature, - STATE(4171), 1, - sym_type_annotation, - STATE(4664), 1, - sym__initializer, - STATE(5469), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6666), 3, - sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [124425] = 12, - ACTIONS(6051), 1, - anon_sym_LT, - ACTIONS(6318), 1, - sym_identifier, - ACTIONS(6322), 1, - anon_sym_LBRACE, - ACTIONS(6331), 1, - sym_jsx_identifier, - ACTIONS(6668), 1, - anon_sym_GT, - ACTIONS(6670), 1, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(6672), 1, - anon_sym_SLASH_GT, - STATE(3360), 1, - sym_type_arguments, - STATE(3362), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3955), 2, - sym_jsx_expression, - sym_jsx_attribute, - [124464] = 11, - ACTIONS(2537), 1, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(3849), 1, - sym_formal_parameters, - STATE(4181), 1, - sym_type_annotation, - STATE(4675), 1, - sym__initializer, - STATE(5338), 1, - sym_type_parameters, - STATE(5511), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6674), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [124501] = 9, - ACTIONS(2537), 1, + anon_sym_extends, + [123970] = 10, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(3276), 1, + ACTIONS(6645), 1, + anon_sym_QMARK, + STATE(3267), 1, sym_formal_parameters, - STATE(4443), 1, + STATE(3732), 1, sym__call_signature, - STATE(4444), 1, + STATE(4058), 1, sym_type_annotation, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6676), 5, + ACTIONS(6593), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [124534] = 11, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(3849), 1, - sym_formal_parameters, - STATE(4138), 1, - sym_type_annotation, - STATE(5222), 1, - sym__initializer, - STATE(5338), 1, - sym_type_parameters, - STATE(5539), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6678), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [124571] = 11, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(3849), 1, - sym_formal_parameters, - STATE(4463), 1, - sym_type_annotation, - STATE(5224), 1, - sym__initializer, - STATE(5338), 1, - sym_type_parameters, - STATE(5570), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6680), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [124608] = 11, - ACTIONS(2537), 1, + [124006] = 10, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(3849), 1, - sym_formal_parameters, - STATE(4455), 1, - sym_type_annotation, - STATE(5210), 1, - sym__initializer, - STATE(5338), 1, - sym_type_parameters, - STATE(5542), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6680), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [124645] = 3, - ACTIONS(4175), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4177), 11, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [124666] = 7, - ACTIONS(3785), 1, - anon_sym_COMMA, - ACTIONS(3799), 1, - anon_sym_RBRACE, - ACTIONS(4469), 1, - anon_sym_EQ, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3791), 7, - sym__automatic_semicolon, + ACTIONS(3244), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(6452), 1, anon_sym_COLON, - anon_sym_LT, + ACTIONS(6647), 1, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [124695] = 9, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(3731), 1, + STATE(4270), 1, sym__call_signature, - STATE(4444), 1, + STATE(4271), 1, sym_type_annotation, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6676), 5, + ACTIONS(6597), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [124728] = 9, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(3276), 1, - sym_formal_parameters, - STATE(4307), 1, - sym__call_signature, - STATE(4308), 1, - sym_type_annotation, - STATE(5374), 1, - sym_type_parameters, + [124042] = 6, + ACTIONS(4072), 1, + anon_sym_EQ, + ACTIONS(6617), 1, + anon_sym_AMP, + ACTIONS(6619), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6682), 5, - sym__automatic_semicolon, + ACTIONS(4074), 9, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [124761] = 11, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(3849), 1, - sym_formal_parameters, - STATE(4254), 1, - sym_type_annotation, - STATE(4815), 1, - sym__initializer, - STATE(5338), 1, - sym_type_parameters, - STATE(5492), 1, - sym__call_signature, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + [124070] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(4372), 13, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, - [124798] = 3, - ACTIONS(4063), 1, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [124090] = 3, + ACTIONS(3186), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4065), 11, + ACTIONS(3188), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243106,43 +240783,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_extends, - anon_sym_is, anon_sym_PIPE_RBRACE, - [124819] = 11, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(6459), 1, + [124112] = 4, + ACTIONS(4180), 1, anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(3276), 1, - sym_formal_parameters, - STATE(4374), 1, - sym_type_annotation, - STATE(5050), 1, - sym__call_signature, - STATE(5051), 1, - sym__initializer, - STATE(5374), 1, - sym_type_parameters, + ACTIONS(6617), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6684), 3, - sym__automatic_semicolon, + ACTIONS(4182), 11, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [124856] = 3, - ACTIONS(4163), 1, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_extends, + [124136] = 3, + ACTIONS(4058), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4165), 11, + ACTIONS(4060), 11, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243150,81 +240822,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_AMP, anon_sym_extends, + anon_sym_is, anon_sym_PIPE_RBRACE, - [124877] = 9, - ACTIONS(2537), 1, + [124157] = 12, + ACTIONS(3521), 1, + anon_sym_LT, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6649), 1, + anon_sym_GT, + ACTIONS(6651), 1, + anon_sym_DOT, + ACTIONS(6653), 1, + anon_sym_SLASH_GT, + STATE(3397), 1, + sym_type_arguments, + STATE(3434), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3796), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4421), 2, + sym_jsx_expression, + sym_jsx_attribute, + [124196] = 9, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(3573), 1, + STATE(4355), 1, sym__call_signature, - STATE(4168), 1, + STATE(4356), 1, sym_type_annotation, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6686), 5, + ACTIONS(6655), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [124910] = 4, - ACTIONS(4045), 1, + [124229] = 3, + ACTIONS(4090), 1, anon_sym_PIPE, - ACTIONS(6381), 1, - anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4047), 10, + ACTIONS(4092), 11, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [124933] = 4, - ACTIONS(3959), 1, + [124250] = 8, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(3244), 1, anon_sym_LPAREN, - STATE(1643), 1, - sym_arguments, + ACTIONS(4429), 1, + anon_sym_EQ, + STATE(3699), 1, + sym_formal_parameters, + STATE(5356), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4185), 10, + ACTIONS(4002), 2, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3758), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_extends, - [124956] = 4, - ACTIONS(4027), 1, + anon_sym_PIPE_RBRACE, + [124281] = 9, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(3267), 1, + sym_formal_parameters, + STATE(3670), 1, + sym__call_signature, + STATE(4356), 1, + sym_type_annotation, + STATE(5435), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6655), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [124314] = 4, + ACTIONS(4026), 1, anon_sym_PIPE, - ACTIONS(6688), 1, + ACTIONS(6432), 1, anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4029), 10, + ACTIONS(4028), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243235,113 +240961,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [124979] = 8, - ACTIONS(3460), 1, - anon_sym_DOT, - ACTIONS(3464), 1, - anon_sym_QMARK_DOT, - ACTIONS(6306), 1, + [124337] = 9, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6690), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - STATE(2886), 1, - sym_arguments, - STATE(2958), 1, - sym_type_arguments, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(3267), 1, + sym_formal_parameters, + STATE(3730), 1, + sym__call_signature, + STATE(4054), 1, + sym_type_annotation, + STATE(5435), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3454), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [125010] = 3, - ACTIONS(4263), 1, - anon_sym_PIPE, + ACTIONS(6657), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [124370] = 9, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(3267), 1, + sym_formal_parameters, + STATE(3583), 1, + sym__call_signature, + STATE(4377), 1, + sym_type_annotation, + STATE(5435), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4265), 11, + ACTIONS(6659), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [125031] = 12, - ACTIONS(6051), 1, + [124403] = 12, + ACTIONS(3521), 1, anon_sym_LT, - ACTIONS(6318), 1, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(6322), 1, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6331), 1, + ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6668), 1, + ACTIONS(6649), 1, anon_sym_GT, - ACTIONS(6670), 1, + ACTIONS(6651), 1, anon_sym_DOT, - ACTIONS(6692), 1, + ACTIONS(6661), 1, anon_sym_SLASH_GT, - STATE(3365), 1, + STATE(3331), 1, sym_type_arguments, - STATE(3370), 1, + STATE(3339), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, + STATE(3796), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, + STATE(4421), 2, sym_jsx_expression, sym_jsx_attribute, - [125070] = 9, - ACTIONS(2537), 1, + [124442] = 11, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(3276), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(4163), 1, - sym__call_signature, - STATE(4168), 1, + STATE(3952), 1, sym_type_annotation, - STATE(5374), 1, + STATE(4920), 1, + sym__initializer, + STATE(5228), 1, + sym__call_signature, + STATE(5231), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6686), 5, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [125103] = 7, - ACTIONS(3785), 1, + [124479] = 5, + ACTIONS(6396), 1, + anon_sym_LT, + ACTIONS(6637), 1, + anon_sym_DOT, + STATE(3448), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3501), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(3866), 1, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [124504] = 5, + ACTIONS(6390), 1, + anon_sym_LPAREN, + ACTIONS(6665), 1, + anon_sym_DOT, + STATE(3261), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4054), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [124529] = 7, + ACTIONS(3752), 1, + anon_sym_COMMA, + ACTIONS(3868), 1, anon_sym_RBRACE, - ACTIONS(4469), 1, + ACTIONS(4429), 1, anon_sym_EQ, - STATE(4679), 1, + STATE(5131), 1, aux_sym_object_pattern_repeat1, - STATE(5173), 1, + STATE(5191), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 7, + ACTIONS(3758), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -243349,237 +241124,308 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [125132] = 11, - ACTIONS(2537), 1, + [124558] = 11, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(3849), 1, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(3848), 1, sym_formal_parameters, - STATE(4017), 1, + STATE(4029), 1, sym_type_annotation, - STATE(4632), 1, + STATE(4778), 1, sym__initializer, - STATE(5315), 1, - sym__call_signature, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, + STATE(5370), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [125169] = 11, - ACTIONS(2537), 1, + [124595] = 11, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6465), 1, - anon_sym_LPAREN, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(3466), 1, + ACTIONS(6462), 1, + anon_sym_LPAREN, + STATE(3396), 1, sym_formal_parameters, - STATE(3896), 1, + STATE(3904), 1, sym__call_signature, - STATE(4436), 1, + STATE(3927), 1, sym_type_annotation, - STATE(5174), 1, + STATE(5198), 1, sym__initializer, - STATE(5469), 1, + STATE(5339), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6694), 3, + ACTIONS(6667), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [125206] = 7, - ACTIONS(3785), 1, - anon_sym_COMMA, - ACTIONS(3788), 1, - anon_sym_RBRACE, - ACTIONS(4469), 1, + [124632] = 11, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, + ACTIONS(6450), 1, + anon_sym_LPAREN, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(3848), 1, + sym_formal_parameters, + STATE(4042), 1, + sym_type_annotation, + STATE(4839), 1, + sym__initializer, + STATE(5231), 1, + sym_type_parameters, + STATE(5478), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 7, + ACTIONS(6663), 3, sym__automatic_semicolon, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [125235] = 11, - ACTIONS(2537), 1, + [124669] = 11, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(3849), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4074), 1, + STATE(3927), 1, sym_type_annotation, - STATE(4913), 1, + STATE(5218), 1, + sym__call_signature, + STATE(5219), 1, sym__initializer, - STATE(5338), 1, + STATE(5435), 1, sym_type_parameters, - STATE(5397), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6667), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [125272] = 2, + [124706] = 11, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(6462), 1, + anon_sym_LPAREN, + STATE(3396), 1, + sym_formal_parameters, + STATE(3899), 1, + sym__call_signature, + STATE(4093), 1, + sym_type_annotation, + STATE(5090), 1, + sym__initializer, + STATE(5339), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1927), 12, - anon_sym_as, + ACTIONS(6669), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_SEMI, + [124743] = 11, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6450), 1, anon_sym_LPAREN, + ACTIONS(6452), 1, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_extends, - [125291] = 8, - ACTIONS(6306), 1, + STATE(3848), 1, + sym_formal_parameters, + STATE(4139), 1, + sym_type_annotation, + STATE(4732), 1, + sym__initializer, + STATE(5231), 1, + sym_type_parameters, + STATE(5518), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6671), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [124780] = 11, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6312), 1, - anon_sym_DOT, - ACTIONS(6314), 1, - anon_sym_QMARK_DOT, - ACTIONS(6690), 1, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(2891), 1, - sym_arguments, - STATE(2959), 1, - sym_type_arguments, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(3848), 1, + sym_formal_parameters, + STATE(4138), 1, + sym_type_annotation, + STATE(5148), 1, + sym__initializer, + STATE(5231), 1, + sym_type_parameters, + STATE(5446), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4017), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [125322] = 11, - ACTIONS(2537), 1, + ACTIONS(6671), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [124817] = 11, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6465), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(3466), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(3789), 1, - sym__call_signature, - STATE(4190), 1, + STATE(4179), 1, sym_type_annotation, - STATE(4768), 1, + STATE(4746), 1, sym__initializer, - STATE(5469), 1, + STATE(5231), 1, sym_type_parameters, + STATE(5313), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6664), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [125359] = 9, - ACTIONS(2537), 1, + [124854] = 11, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(6467), 1, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(3276), 1, + ACTIONS(6462), 1, + anon_sym_LPAREN, + STATE(3396), 1, sym_formal_parameters, - STATE(3705), 1, + STATE(3882), 1, sym__call_signature, - STATE(4404), 1, + STATE(4326), 1, sym_type_annotation, - STATE(5374), 1, + STATE(4981), 1, + sym__initializer, + STATE(5339), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6696), 5, + ACTIONS(6675), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [125392] = 11, - ACTIONS(2537), 1, + [124891] = 12, + ACTIONS(3521), 1, + anon_sym_LT, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6649), 1, + anon_sym_GT, + ACTIONS(6651), 1, + anon_sym_DOT, + ACTIONS(6677), 1, + anon_sym_SLASH_GT, + STATE(3316), 1, + sym_type_arguments, + STATE(3363), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3796), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4421), 2, + sym_jsx_expression, + sym_jsx_attribute, + [124930] = 11, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(3849), 1, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(3848), 1, sym_formal_parameters, - STATE(4365), 1, + STATE(4186), 1, sym_type_annotation, - STATE(5012), 1, + STATE(4762), 1, sym__initializer, - STATE(5275), 1, - sym__call_signature, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, + STATE(5340), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6698), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [125429] = 7, - ACTIONS(3785), 1, + [124967] = 7, + ACTIONS(3752), 1, anon_sym_COMMA, - ACTIONS(3882), 1, + ACTIONS(3877), 1, anon_sym_RBRACE, - ACTIONS(4469), 1, + ACTIONS(4429), 1, anon_sym_EQ, - STATE(4673), 1, - aux_sym_object_repeat1, - STATE(4679), 1, + STATE(5131), 1, aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 7, + ACTIONS(3758), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -243587,413 +241433,398 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [125458] = 3, - ACTIONS(4405), 1, - anon_sym_PIPE, + [124996] = 11, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(3267), 1, + sym_formal_parameters, + STATE(4326), 1, + sym_type_annotation, + STATE(4992), 1, + sym__call_signature, + STATE(4993), 1, + sym__initializer, + STATE(5435), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4407), 11, + ACTIONS(6675), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [125479] = 3, - ACTIONS(4377), 1, - anon_sym_PIPE, + [125033] = 11, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6450), 1, + anon_sym_LPAREN, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(3848), 1, + sym_formal_parameters, + STATE(4107), 1, + sym_type_annotation, + STATE(5130), 1, + sym__initializer, + STATE(5231), 1, + sym_type_parameters, + STATE(5480), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4379), 11, + ACTIONS(6673), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [125500] = 8, - ACTIONS(6306), 1, + [125070] = 9, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6308), 1, - anon_sym_DOT, - ACTIONS(6310), 1, - anon_sym_QMARK_DOT, - ACTIONS(6690), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - STATE(2878), 1, - sym_arguments, - STATE(2960), 1, - sym_type_arguments, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(3267), 1, + sym_formal_parameters, + STATE(4265), 1, + sym__call_signature, + STATE(4266), 1, + sym_type_annotation, + STATE(5435), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4023), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [125531] = 11, - ACTIONS(2537), 1, + ACTIONS(6679), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [125103] = 11, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(3849), 1, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(3848), 1, sym_formal_parameters, - STATE(4019), 1, + STATE(4446), 1, sym_type_annotation, - STATE(4639), 1, + STATE(5199), 1, sym__initializer, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, - STATE(5443), 1, + STATE(5546), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6671), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [125568] = 2, + [125140] = 7, + ACTIONS(3752), 1, + anon_sym_COMMA, + ACTIONS(3755), 1, + anon_sym_RBRACE, + ACTIONS(4429), 1, + anon_sym_EQ, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1731), 12, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3758), 7, + sym__automatic_semicolon, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_LT, anon_sym_QMARK, - anon_sym_extends, - [125587] = 11, - ACTIONS(2537), 1, + anon_sym_PIPE_RBRACE, + [125169] = 11, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(3849), 1, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(3848), 1, sym_formal_parameters, - STATE(4094), 1, + STATE(4396), 1, sym_type_annotation, - STATE(5018), 1, + STATE(5108), 1, sym__initializer, - STATE(5285), 1, - sym__call_signature, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, + STATE(5464), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [125624] = 11, - ACTIONS(2537), 1, + [125206] = 9, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6487), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - STATE(3849), 1, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(3267), 1, sym_formal_parameters, - STATE(4417), 1, - sym_type_annotation, - STATE(5132), 1, - sym__initializer, - STATE(5259), 1, + STATE(3956), 1, sym__call_signature, - STATE(5338), 1, + STATE(3957), 1, + sym_type_annotation, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6700), 3, + ACTIONS(6681), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [125661] = 11, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(3849), 1, - sym_formal_parameters, - STATE(4120), 1, - sym_type_annotation, - STATE(5117), 1, - sym__initializer, - STATE(5277), 1, - sym__call_signature, - STATE(5338), 1, - sym_type_parameters, + anon_sym_PIPE_RBRACE, + [125239] = 3, + ACTIONS(4062), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(4064), 11, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [125698] = 7, - ACTIONS(3785), 1, - anon_sym_COMMA, - ACTIONS(3877), 1, anon_sym_RBRACE, - ACTIONS(4469), 1, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [125260] = 11, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, + ACTIONS(6450), 1, + anon_sym_LPAREN, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(3848), 1, + sym_formal_parameters, + STATE(4250), 1, + sym_type_annotation, + STATE(4859), 1, + sym__initializer, + STATE(5231), 1, + sym_type_parameters, + STATE(5527), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 7, + ACTIONS(6673), 3, sym__automatic_semicolon, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [125727] = 11, - ACTIONS(2537), 1, + [125297] = 11, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6465), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(3466), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(3827), 1, - sym__call_signature, - STATE(4246), 1, + STATE(4354), 1, sym_type_annotation, - STATE(4809), 1, + STATE(5032), 1, sym__initializer, - STATE(5469), 1, + STATE(5231), 1, sym_type_parameters, + STATE(5347), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6702), 3, + ACTIONS(6683), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [125764] = 11, - ACTIONS(2537), 1, + [125334] = 9, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6487), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - STATE(3849), 1, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(3267), 1, sym_formal_parameters, - STATE(4029), 1, - sym_type_annotation, - STATE(4694), 1, - sym__initializer, - STATE(5325), 1, + STATE(3653), 1, sym__call_signature, - STATE(5338), 1, + STATE(4266), 1, + sym_type_annotation, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(6679), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [125801] = 12, - ACTIONS(6051), 1, - anon_sym_LT, - ACTIONS(6318), 1, - sym_identifier, - ACTIONS(6322), 1, - anon_sym_LBRACE, - ACTIONS(6331), 1, - sym_jsx_identifier, - ACTIONS(6668), 1, - anon_sym_GT, - ACTIONS(6670), 1, - anon_sym_DOT, - ACTIONS(6704), 1, - anon_sym_SLASH_GT, - STATE(3448), 1, - sym_type_arguments, - STATE(3463), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, - sym_jsx_namespace_name, + anon_sym_PIPE_RBRACE, + [125367] = 4, + ACTIONS(3938), 1, + anon_sym_LPAREN, + STATE(1660), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, - sym_jsx_expression, - sym_jsx_attribute, - [125840] = 11, - ACTIONS(2537), 1, + ACTIONS(4224), 10, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [125390] = 9, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6487), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - STATE(3849), 1, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(3267), 1, sym_formal_parameters, - STATE(4096), 1, - sym_type_annotation, - STATE(5040), 1, - sym__initializer, - STATE(5312), 1, + STATE(4376), 1, sym__call_signature, - STATE(5338), 1, + STATE(4377), 1, + sym_type_annotation, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(6659), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [125877] = 5, - ACTIONS(6433), 1, + anon_sym_PIPE_RBRACE, + [125423] = 8, + ACTIONS(3530), 1, + anon_sym_COLON, + ACTIONS(6291), 1, anon_sym_LT, - ACTIONS(6622), 1, + ACTIONS(6324), 1, anon_sym_DOT, - STATE(3369), 1, + ACTIONS(6685), 1, + anon_sym_QMARK, + STATE(2909), 1, sym_type_arguments, + STATE(5414), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3498), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(3501), 6, anon_sym_COMMA, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [125902] = 5, - ACTIONS(6427), 1, + [125454] = 9, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(6706), 1, - anon_sym_DOT, - STATE(3296), 1, - sym_arguments, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(3267), 1, + sym_formal_parameters, + STATE(4053), 1, + sym__call_signature, + STATE(4054), 1, + sym_type_annotation, + STATE(5435), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4041), 9, + ACTIONS(6657), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [125927] = 12, - ACTIONS(1588), 1, + anon_sym_PIPE_RBRACE, + [125487] = 12, + ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1590), 1, + ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(6359), 1, + ACTIONS(6328), 1, anon_sym_STAR, - ACTIONS(6363), 1, + ACTIONS(6332), 1, anon_sym_LBRACE, - ACTIONS(6526), 1, + ACTIONS(6506), 1, sym_identifier, - ACTIONS(6528), 1, + ACTIONS(6508), 1, anon_sym_type, - STATE(4349), 1, + STATE(4188), 1, sym_string, - STATE(4350), 1, + STATE(4189), 1, sym_import_require_clause, - STATE(5301), 1, + STATE(5294), 1, sym__import_identifier, - STATE(5568), 1, + STATE(5345), 1, sym_import_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5990), 2, + STATE(5775), 2, sym_namespace_import, sym_named_imports, - [125966] = 9, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(3276), 1, - sym_formal_parameters, - STATE(3600), 1, - sym__call_signature, - STATE(4129), 1, - sym_type_annotation, - STATE(5374), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6708), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [125999] = 4, - ACTIONS(4035), 1, + [125526] = 3, + ACTIONS(1685), 1, anon_sym_PIPE, - ACTIONS(6381), 1, - anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4037), 10, + ACTIONS(1683), 11, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244003,88 +241834,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_AMP, anon_sym_extends, + anon_sym_is, anon_sym_PIPE_RBRACE, - [126022] = 8, - ACTIONS(3541), 1, - anon_sym_COLON, - ACTIONS(6306), 1, - anon_sym_LT, - ACTIONS(6316), 1, + [125547] = 4, + ACTIONS(4148), 1, + anon_sym_PIPE, + ACTIONS(6688), 1, anon_sym_DOT, - ACTIONS(6710), 1, - anon_sym_QMARK, - STATE(2908), 1, - sym_type_arguments, - STATE(5384), 1, - sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3498), 6, + ACTIONS(4150), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [126053] = 11, - ACTIONS(2537), 1, + anon_sym_PIPE_RBRACE, + [125570] = 11, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(3849), 1, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(3848), 1, sym_formal_parameters, - STATE(4299), 1, + STATE(3976), 1, sym_type_annotation, - STATE(4888), 1, + STATE(4780), 1, sym__initializer, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, - STATE(5342), 1, + STATE(5373), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [126090] = 8, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(4469), 1, - anon_sym_EQ, - STATE(3738), 1, - sym_formal_parameters, - STATE(5298), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4003), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3791), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [126121] = 4, - ACTIONS(4077), 1, + [125607] = 4, + ACTIONS(4022), 1, anon_sym_PIPE, - ACTIONS(6713), 1, - anon_sym_DOT, + ACTIONS(6432), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4079), 10, + ACTIONS(4024), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244095,164 +241900,252 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126144] = 11, - ACTIONS(2537), 1, + [125630] = 9, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6465), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(3466), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(3794), 1, + STATE(3688), 1, sym__call_signature, - STATE(4374), 1, + STATE(3957), 1, sym_type_annotation, - STATE(5030), 1, - sym__initializer, - STATE(5469), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6684), 3, + ACTIONS(6681), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [126181] = 9, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(3276), 1, - sym_formal_parameters, - STATE(4121), 1, - sym__call_signature, - STATE(4129), 1, - sym_type_annotation, - STATE(5374), 1, - sym_type_parameters, + anon_sym_PIPE_RBRACE, + [125663] = 4, + ACTIONS(4030), 1, + anon_sym_PIPE, + ACTIONS(6690), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6708), 5, + ACTIONS(4032), 10, 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_extends, anon_sym_PIPE_RBRACE, - [126214] = 11, - ACTIONS(2537), 1, + [125686] = 8, + ACTIONS(3447), 1, + anon_sym_DOT, + ACTIONS(3451), 1, + anon_sym_QMARK_DOT, + ACTIONS(6291), 1, + anon_sym_LT, + ACTIONS(6692), 1, + anon_sym_LPAREN, + STATE(2880), 1, + sym_arguments, + STATE(2987), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3441), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [125717] = 8, + ACTIONS(6291), 1, + anon_sym_LT, + ACTIONS(6297), 1, + anon_sym_DOT, + ACTIONS(6299), 1, + anon_sym_QMARK_DOT, + ACTIONS(6692), 1, + anon_sym_LPAREN, + STATE(2876), 1, + sym_arguments, + STATE(2989), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3998), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [125748] = 8, + ACTIONS(6291), 1, + anon_sym_LT, + ACTIONS(6293), 1, + anon_sym_DOT, + ACTIONS(6295), 1, + anon_sym_QMARK_DOT, + ACTIONS(6692), 1, + anon_sym_LPAREN, + STATE(2872), 1, + sym_arguments, + STATE(2992), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4016), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [125779] = 11, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6459), 1, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(3849), 1, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(3848), 1, sym_formal_parameters, - STATE(4247), 1, + STATE(4314), 1, sym_type_annotation, - STATE(4804), 1, + STATE(4961), 1, sym__initializer, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, - STATE(5452), 1, + STATE(5322), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6694), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [126251] = 9, - ACTIONS(2537), 1, + [125816] = 11, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(6467), 1, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(3276), 1, + ACTIONS(6462), 1, + anon_sym_LPAREN, + STATE(3396), 1, sym_formal_parameters, - STATE(4403), 1, + STATE(3783), 1, sym__call_signature, - STATE(4404), 1, + STATE(4173), 1, sym_type_annotation, - STATE(5374), 1, + STATE(4733), 1, + sym__initializer, + STATE(5339), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6696), 5, + ACTIONS(6696), 3, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_SEMI, + [125853] = 7, + ACTIONS(3752), 1, + anon_sym_COMMA, + ACTIONS(3800), 1, anon_sym_RBRACE, + ACTIONS(4429), 1, + anon_sym_EQ, + STATE(5129), 1, + aux_sym_object_repeat1, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3758), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [126284] = 12, - ACTIONS(6051), 1, + [125882] = 12, + ACTIONS(3521), 1, anon_sym_LT, - ACTIONS(6318), 1, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(6322), 1, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6331), 1, + ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6668), 1, + ACTIONS(6649), 1, anon_sym_GT, - ACTIONS(6670), 1, + ACTIONS(6651), 1, anon_sym_DOT, - ACTIONS(6715), 1, + ACTIONS(6698), 1, anon_sym_SLASH_GT, - STATE(3331), 1, + STATE(3369), 1, sym_type_arguments, - STATE(3332), 1, + STATE(3384), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, + STATE(3796), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, + STATE(4421), 2, sym_jsx_expression, sym_jsx_attribute, - [126323] = 9, - ACTIONS(2537), 1, + [125921] = 11, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(3276), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(3665), 1, - sym__call_signature, - STATE(4308), 1, + STATE(4285), 1, sym_type_annotation, - STATE(5374), 1, + STATE(4916), 1, + sym__initializer, + STATE(5231), 1, sym_type_parameters, + STATE(5238), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6682), 5, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [126356] = 3, - ACTIONS(1670), 1, + [125958] = 3, + ACTIONS(4214), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1668), 11, + ACTIONS(4216), 11, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244260,87 +242153,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_AMP, anon_sym_extends, - anon_sym_is, anon_sym_PIPE_RBRACE, - [126377] = 3, - ACTIONS(4259), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4261), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, + [125979] = 7, + ACTIONS(3752), 1, anon_sym_COMMA, + ACTIONS(3803), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126397] = 5, - ACTIONS(6717), 1, - anon_sym_AMP, - ACTIONS(6719), 1, - anon_sym_PIPE, - ACTIONS(6721), 1, - anon_sym_extends, + ACTIONS(4429), 1, + anon_sym_EQ, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4311), 8, + ACTIONS(3758), 7, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [126421] = 3, - ACTIONS(4325), 1, + [126008] = 3, + ACTIONS(4122), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4327), 10, + ACTIONS(4124), 11, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126441] = 3, - ACTIONS(1873), 1, - anon_sym_DOT, + [126029] = 11, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(6462), 1, + anon_sym_LPAREN, + STATE(3396), 1, + sym_formal_parameters, + STATE(3786), 1, + sym__call_signature, + STATE(4199), 1, + sym_type_annotation, + STATE(4796), 1, + sym__initializer, + STATE(5339), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4223), 10, + ACTIONS(6700), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [126461] = 3, - ACTIONS(4089), 1, + [126066] = 3, + ACTIONS(4136), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 10, + ACTIONS(4138), 11, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244348,59 +242237,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126481] = 3, - ACTIONS(4333), 1, + [126087] = 11, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6450), 1, + anon_sym_LPAREN, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(3848), 1, + sym_formal_parameters, + STATE(4397), 1, + sym_type_annotation, + STATE(5018), 1, + sym__initializer, + STATE(5231), 1, + sym_type_parameters, + STATE(5333), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6671), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [126124] = 5, + ACTIONS(4154), 1, anon_sym_PIPE, + ACTIONS(6702), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4335), 10, + ACTIONS(4156), 2, + anon_sym_AMP, + anon_sym_extends, + ACTIONS(4198), 7, 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_extends, anon_sym_PIPE_RBRACE, - [126501] = 8, - ACTIONS(6723), 1, - anon_sym_LBRACE, - ACTIONS(6727), 1, - anon_sym_LT_SLASH, - ACTIONS(6729), 1, - anon_sym_LT, - STATE(3263), 1, - sym_jsx_opening_element, - STATE(4244), 1, - sym_jsx_closing_element, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6725), 2, - sym_jsx_text, - sym_html_character_reference, - STATE(3267), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [126531] = 5, - ACTIONS(6717), 1, + [126148] = 5, + ACTIONS(6704), 1, anon_sym_AMP, - ACTIONS(6719), 1, + ACTIONS(6706), 1, anon_sym_PIPE, - ACTIONS(6721), 1, + ACTIONS(6708), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4335), 8, + ACTIONS(4348), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244409,13 +242305,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE_RBRACE, - [126555] = 3, - ACTIONS(4251), 1, + [126172] = 3, + ACTIONS(4026), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4253), 10, + ACTIONS(4028), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244426,152 +242322,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126575] = 8, - ACTIONS(6723), 1, - anon_sym_LBRACE, - ACTIONS(6729), 1, - anon_sym_LT, - ACTIONS(6733), 1, - anon_sym_LT_SLASH, - STATE(3263), 1, - sym_jsx_opening_element, - STATE(4331), 1, - sym_jsx_closing_element, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6731), 2, - sym_jsx_text, - sym_html_character_reference, - STATE(3194), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [126605] = 8, - ACTIONS(6723), 1, - anon_sym_LBRACE, - ACTIONS(6729), 1, - anon_sym_LT, - ACTIONS(6733), 1, - anon_sym_LT_SLASH, - STATE(3263), 1, - sym_jsx_opening_element, - STATE(4343), 1, - sym_jsx_closing_element, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6725), 2, - sym_jsx_text, - sym_html_character_reference, - STATE(3267), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [126635] = 3, - ACTIONS(4099), 1, - anon_sym_PIPE, + [126192] = 3, + ACTIONS(1699), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4101), 10, + ACTIONS(4252), 10, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126655] = 8, - ACTIONS(6723), 1, + [126212] = 8, + ACTIONS(6710), 1, anon_sym_LBRACE, - ACTIONS(6729), 1, - anon_sym_LT, - ACTIONS(6737), 1, + ACTIONS(6714), 1, anon_sym_LT_SLASH, - STATE(1625), 1, - sym_jsx_closing_element, - STATE(3263), 1, - sym_jsx_opening_element, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6735), 2, - sym_jsx_text, - sym_html_character_reference, - STATE(3214), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [126685] = 8, - ACTIONS(6723), 1, - anon_sym_LBRACE, - ACTIONS(6729), 1, + ACTIONS(6716), 1, anon_sym_LT, - ACTIONS(6741), 1, - anon_sym_LT_SLASH, - STATE(2089), 1, - sym_jsx_closing_element, - STATE(3263), 1, + STATE(3252), 1, sym_jsx_opening_element, + STATE(4305), 1, + sym_jsx_closing_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6739), 2, + ACTIONS(6712), 2, sym_jsx_text, sym_html_character_reference, - STATE(3230), 4, + STATE(3185), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [126715] = 3, - ACTIONS(2343), 1, - anon_sym_PIPE, + [126242] = 3, + ACTIONS(1791), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2341), 10, + ACTIONS(4252), 10, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126735] = 3, - ACTIONS(4103), 1, anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4105), 10, - 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_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126755] = 3, - ACTIONS(4107), 1, + [126262] = 3, + ACTIONS(2336), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4109), 10, + ACTIONS(2334), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244582,65 +242395,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126775] = 4, - ACTIONS(4111), 1, - anon_sym_PIPE, - ACTIONS(6717), 1, - anon_sym_AMP, + [126282] = 8, + ACTIONS(6710), 1, + anon_sym_LBRACE, + ACTIONS(6714), 1, + anon_sym_LT_SLASH, + ACTIONS(6716), 1, + anon_sym_LT, + STATE(3252), 1, + sym_jsx_opening_element, + STATE(4321), 1, + sym_jsx_closing_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4113), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126797] = 3, - ACTIONS(4035), 1, - anon_sym_PIPE, + ACTIONS(6718), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(3273), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [126312] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4037), 10, + ACTIONS(4088), 11, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126817] = 3, - ACTIONS(4117), 1, anon_sym_PIPE, + anon_sym_extends, + [126330] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4119), 10, + ACTIONS(4228), 11, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126837] = 3, - ACTIONS(4125), 1, + [126348] = 3, + ACTIONS(4280), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4127), 10, + ACTIONS(4282), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244651,13 +242466,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126857] = 3, - ACTIONS(4133), 1, + [126368] = 3, + ACTIONS(4342), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4135), 10, + ACTIONS(4344), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244668,53 +242483,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126877] = 5, - ACTIONS(6717), 1, - anon_sym_AMP, - ACTIONS(6719), 1, - anon_sym_PIPE, - ACTIONS(6721), 1, - anon_sym_extends, + [126388] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4139), 8, + ACTIONS(4408), 11, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_PIPE_RBRACE, - [126901] = 5, - ACTIONS(4083), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(6743), 1, - anon_sym_LBRACK, + anon_sym_extends, + [126406] = 4, + ACTIONS(6396), 1, + anon_sym_LT, + STATE(3456), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4085), 2, - anon_sym_AMP, - anon_sym_extends, - ACTIONS(4147), 7, + ACTIONS(4032), 9, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [126925] = 4, - ACTIONS(4151), 1, + anon_sym_LBRACK, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(6745), 1, anon_sym_extends, + [126428] = 4, + ACTIONS(4284), 1, + anon_sym_PIPE, + ACTIONS(6704), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4153), 9, + ACTIONS(4286), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244722,37 +242533,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [126947] = 4, - ACTIONS(4157), 1, + [126450] = 5, + ACTIONS(6704), 1, + anon_sym_AMP, + ACTIONS(6706), 1, anon_sym_PIPE, - ACTIONS(6743), 1, - anon_sym_LBRACK, + ACTIONS(6708), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4159), 9, + ACTIONS(4096), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_AMP, - anon_sym_extends, + anon_sym_LBRACK, anon_sym_PIPE_RBRACE, - [126969] = 5, - ACTIONS(6717), 1, + [126474] = 5, + ACTIONS(6704), 1, anon_sym_AMP, - ACTIONS(6719), 1, + ACTIONS(6706), 1, anon_sym_PIPE, - ACTIONS(6721), 1, + ACTIONS(6708), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4299), 8, + ACTIONS(4100), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244761,17 +242573,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE_RBRACE, - [126993] = 5, - ACTIONS(6717), 1, - anon_sym_AMP, - ACTIONS(6719), 1, + [126498] = 3, + ACTIONS(4350), 1, anon_sym_PIPE, - ACTIONS(6721), 1, - anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4347), 8, + ACTIONS(4352), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244779,14 +242587,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [127017] = 3, - ACTIONS(4171), 1, + [126518] = 6, + ACTIONS(6291), 1, + anon_sym_LT, + ACTIONS(6324), 1, + anon_sym_DOT, + ACTIONS(6720), 1, + anon_sym_is, + STATE(2909), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3501), 7, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [126544] = 3, + ACTIONS(4222), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4173), 10, + ACTIONS(4224), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244797,71 +242627,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127037] = 2, + [126564] = 3, + ACTIONS(4354), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5401), 11, + ACTIONS(4356), 10, 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_extends, anon_sym_PIPE_RBRACE, - [127055] = 8, - ACTIONS(6723), 1, + [126584] = 8, + ACTIONS(6710), 1, anon_sym_LBRACE, - ACTIONS(6729), 1, + ACTIONS(6716), 1, anon_sym_LT, - ACTIONS(6737), 1, + ACTIONS(6724), 1, anon_sym_LT_SLASH, - STATE(1661), 1, + STATE(1621), 1, sym_jsx_closing_element, - STATE(3263), 1, + STATE(3252), 1, sym_jsx_opening_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6725), 2, + ACTIONS(6722), 2, sym_jsx_text, sym_html_character_reference, - STATE(3267), 4, + STATE(3247), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [127085] = 6, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - STATE(3738), 1, - sym_formal_parameters, - STATE(5298), 1, - sym_type_parameters, + [126614] = 3, + ACTIONS(4374), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 7, + ACTIONS(4376), 10, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [127111] = 3, - ACTIONS(2339), 1, + [126634] = 3, + ACTIONS(4378), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2337), 10, + ACTIONS(4380), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244872,13 +242700,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127131] = 3, - ACTIONS(4183), 1, + [126654] = 3, + ACTIONS(4382), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4185), 10, + ACTIONS(4384), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244889,13 +242717,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127151] = 3, - ACTIONS(4191), 1, + [126674] = 3, + ACTIONS(2344), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4193), 10, + ACTIONS(2342), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244906,32 +242734,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127171] = 5, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(4183), 1, + [126694] = 5, + ACTIONS(6704), 1, + anon_sym_AMP, + ACTIONS(6706), 1, anon_sym_PIPE, - STATE(1643), 1, - sym_arguments, + ACTIONS(6708), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4185), 8, + ACTIONS(4356), 8, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_PIPE_RBRACE, + [126718] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3188), 11, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [127195] = 3, - ACTIONS(4199), 1, + [126736] = 3, + ACTIONS(2340), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4201), 10, + ACTIONS(2338), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244942,13 +242786,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127215] = 3, - ACTIONS(4203), 1, + [126756] = 3, + ACTIONS(4230), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4205), 10, + ACTIONS(4232), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244959,15 +242803,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127235] = 4, - ACTIONS(6433), 1, - anon_sym_LT, - STATE(3382), 1, - sym_type_arguments, + [126776] = 4, + ACTIONS(6392), 1, + anon_sym_DOT, + ACTIONS(6394), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4029), 9, + ACTIONS(3441), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244977,13 +242821,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [127257] = 3, - ACTIONS(4357), 1, + [126798] = 3, + ACTIONS(4234), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4359), 10, + ACTIONS(4236), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244994,13 +242838,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127277] = 3, - ACTIONS(4361), 1, + [126818] = 3, + ACTIONS(4140), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4363), 10, + ACTIONS(4142), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -245011,13 +242855,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127297] = 3, - ACTIONS(4207), 1, + [126838] = 3, + ACTIONS(4030), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4209), 10, + ACTIONS(4032), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -245028,46 +242872,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127317] = 3, - ACTIONS(4365), 1, - anon_sym_PIPE, + [126858] = 4, + ACTIONS(6726), 1, + anon_sym_DOT, + ACTIONS(6728), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4367), 10, + ACTIONS(4166), 9, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [127337] = 2, + [126880] = 3, + ACTIONS(4144), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3177), 11, + ACTIONS(4146), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [127355] = 3, - ACTIONS(4217), 1, + anon_sym_PIPE_RBRACE, + [126900] = 3, + ACTIONS(4238), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4219), 10, + ACTIONS(4240), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -245078,13 +242924,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127375] = 3, - ACTIONS(2353), 1, + [126920] = 3, + ACTIONS(4022), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2351), 10, + ACTIONS(4024), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -245095,35 +242941,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127395] = 8, - ACTIONS(6723), 1, + [126940] = 8, + ACTIONS(6710), 1, anon_sym_LBRACE, - ACTIONS(6729), 1, + ACTIONS(6716), 1, anon_sym_LT, - ACTIONS(6741), 1, + ACTIONS(6730), 1, anon_sym_LT_SLASH, - STATE(2189), 1, + STATE(2172), 1, sym_jsx_closing_element, - STATE(3263), 1, + STATE(3252), 1, sym_jsx_opening_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6725), 2, + ACTIONS(6718), 2, sym_jsx_text, sym_html_character_reference, - STATE(3267), 4, + STATE(3273), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [127425] = 3, - ACTIONS(4231), 1, + [126970] = 6, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + STATE(3699), 1, + sym_formal_parameters, + STATE(5356), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3758), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [126996] = 3, + ACTIONS(4154), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4233), 10, + ACTIONS(4156), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -245134,102 +243000,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127445] = 4, - ACTIONS(6429), 1, - anon_sym_DOT, - ACTIONS(6431), 1, - anon_sym_QMARK_DOT, + [127016] = 3, + ACTIONS(4160), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3454), 9, + ACTIONS(4162), 10, sym__automatic_semicolon, - sym__function_signature_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, anon_sym_extends, - [127467] = 4, - ACTIONS(6747), 1, - anon_sym_DOT, - ACTIONS(6749), 1, - anon_sym_QMARK_DOT, + anon_sym_PIPE_RBRACE, + [127036] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4095), 9, + ACTIONS(3419), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [127489] = 5, - ACTIONS(6717), 1, - anon_sym_AMP, - ACTIONS(6719), 1, - anon_sym_PIPE, - ACTIONS(6721), 1, - anon_sym_extends, + [127054] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4233), 8, + ACTIONS(3758), 11, 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_LBRACK, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [127513] = 2, + [127072] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3173), 11, + ACTIONS(3429), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [127531] = 6, - ACTIONS(6306), 1, - anon_sym_LT, - ACTIONS(6316), 1, - anon_sym_DOT, - ACTIONS(6751), 1, - anon_sym_is, - STATE(2908), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3498), 7, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - [127557] = 2, + [127090] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 11, + ACTIONS(5224), 11, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -245241,100 +243081,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [127575] = 2, + [127108] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4181), 11, + ACTIONS(4266), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [127593] = 2, + [127126] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4189), 11, + ACTIONS(4270), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [127611] = 2, + [127144] = 3, + ACTIONS(2328), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4197), 11, + ACTIONS(2326), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [127629] = 11, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(6753), 1, - sym_identifier, - ACTIONS(6755), 1, - anon_sym_type, - ACTIONS(6757), 1, - anon_sym_COMMA, - ACTIONS(6759), 1, - anon_sym_RBRACE, - ACTIONS(6761), 1, - anon_sym_typeof, - STATE(5002), 1, - sym_import_specifier, - STATE(5260), 1, - sym__import_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5894), 2, - sym__module_export_name, - sym_string, - [127665] = 2, + anon_sym_PIPE_RBRACE, + [127164] = 3, + ACTIONS(4290), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3436), 11, + ACTIONS(4292), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [127184] = 5, + ACTIONS(6704), 1, + anon_sym_AMP, + ACTIONS(6706), 1, anon_sym_PIPE, + ACTIONS(6708), 1, anon_sym_extends, - [127683] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3438), 11, + ACTIONS(4074), 8, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_PIPE_RBRACE, + [127208] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4274), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -245346,11 +243182,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [127701] = 2, + [127226] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4237), 11, + ACTIONS(4278), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -245362,59 +243198,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [127719] = 2, + [127244] = 3, + ACTIONS(4402), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4241), 11, + ACTIONS(4404), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [127737] = 2, + anon_sym_PIPE_RBRACE, + [127264] = 3, + ACTIONS(2332), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4245), 11, + ACTIONS(2330), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [127755] = 2, + anon_sym_PIPE_RBRACE, + [127284] = 3, + ACTIONS(4242), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4249), 11, + ACTIONS(4244), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [127773] = 2, + anon_sym_PIPE_RBRACE, + [127304] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3169), 11, + ACTIONS(3164), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -245426,15 +243265,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [127791] = 4, - ACTIONS(4255), 1, + [127322] = 3, + ACTIONS(4246), 1, anon_sym_PIPE, - ACTIONS(6717), 1, - anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4257), 9, + ACTIONS(4248), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -245442,15 +243279,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127813] = 3, - ACTIONS(4301), 1, + [127342] = 5, + ACTIONS(6704), 1, + anon_sym_AMP, + ACTIONS(6706), 1, anon_sym_PIPE, + ACTIONS(6708), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4303), 10, + ACTIONS(4262), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -245458,33 +243300,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [127833] = 3, - ACTIONS(2349), 1, - anon_sym_PIPE, + [127366] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2347), 10, + ACTIONS(3184), 11, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [127853] = 3, - ACTIONS(4305), 1, + [127384] = 8, + ACTIONS(6710), 1, + anon_sym_LBRACE, + ACTIONS(6716), 1, + anon_sym_LT, + ACTIONS(6730), 1, + anon_sym_LT_SLASH, + STATE(2317), 1, + sym_jsx_closing_element, + STATE(3252), 1, + sym_jsx_opening_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6732), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(3216), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [127414] = 3, + ACTIONS(4170), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4307), 10, + ACTIONS(4172), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -245495,30 +243356,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127873] = 3, - ACTIONS(1869), 1, - anon_sym_DOT, + [127434] = 3, + ACTIONS(4174), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4223), 10, + ACTIONS(4114), 10, sym__automatic_semicolon, - sym__function_signature_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, - anon_sym_LT, anon_sym_extends, - [127893] = 3, - ACTIONS(4073), 1, + anon_sym_PIPE_RBRACE, + [127454] = 3, + ACTIONS(4176), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4075), 10, + ACTIONS(4178), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -245529,13 +243390,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127913] = 3, - ACTIONS(4027), 1, + [127474] = 4, + ACTIONS(4180), 1, anon_sym_PIPE, + ACTIONS(6704), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4029), 10, + ACTIONS(4182), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -245543,16 +243406,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127933] = 3, - ACTIONS(4121), 1, + [127496] = 3, + ACTIONS(4134), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 10, + ACTIONS(4132), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -245563,13 +243425,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127953] = 3, - ACTIONS(4393), 1, + [127516] = 3, + ACTIONS(4184), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4395), 10, + ACTIONS(4186), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -245580,17 +243442,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127973] = 5, - ACTIONS(6717), 1, - anon_sym_AMP, - ACTIONS(6719), 1, + [127536] = 3, + ACTIONS(4188), 1, anon_sym_PIPE, - ACTIONS(6721), 1, - anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4403), 8, + ACTIONS(4190), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -245598,14 +243456,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [127997] = 3, - ACTIONS(4045), 1, + [127556] = 5, + ACTIONS(6704), 1, + anon_sym_AMP, + ACTIONS(6706), 1, anon_sym_PIPE, + ACTIONS(6708), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4047), 10, + ACTIONS(4194), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -245613,19 +243477,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [128017] = 3, - ACTIONS(2335), 1, + [127580] = 8, + ACTIONS(6710), 1, + anon_sym_LBRACE, + ACTIONS(6716), 1, + anon_sym_LT, + ACTIONS(6724), 1, + anon_sym_LT_SLASH, + STATE(1684), 1, + sym_jsx_closing_element, + STATE(3252), 1, + sym_jsx_opening_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6718), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(3273), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [127610] = 5, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(4222), 1, anon_sym_PIPE, + STATE(1660), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2333), 10, + ACTIONS(4224), 8, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, @@ -245633,13 +243519,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128037] = 3, - ACTIONS(4083), 1, + [127634] = 4, + ACTIONS(4200), 1, anon_sym_PIPE, + ACTIONS(6734), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4085), 10, + ACTIONS(4202), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -245648,429 +243536,529 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [128057] = 4, - ACTIONS(4083), 1, + [127656] = 3, + ACTIONS(4260), 1, anon_sym_PIPE, - ACTIONS(6743), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4085), 9, + ACTIONS(4262), 10, 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_extends, anon_sym_PIPE_RBRACE, - [128079] = 8, - ACTIONS(6723), 1, + [127676] = 8, + ACTIONS(6710), 1, anon_sym_LBRACE, - ACTIONS(6727), 1, + ACTIONS(6716), 1, + anon_sym_LT, + ACTIONS(6736), 1, anon_sym_LT_SLASH, - ACTIONS(6729), 1, + STATE(3252), 1, + sym_jsx_opening_element, + STATE(4196), 1, + sym_jsx_closing_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6718), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(3273), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [127706] = 8, + ACTIONS(6710), 1, + anon_sym_LBRACE, + ACTIONS(6716), 1, anon_sym_LT, - STATE(3263), 1, + ACTIONS(6736), 1, + anon_sym_LT_SLASH, + STATE(3252), 1, sym_jsx_opening_element, - STATE(4216), 1, + STATE(4175), 1, sym_jsx_closing_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6763), 2, + ACTIONS(6738), 2, sym_jsx_text, sym_html_character_reference, - STATE(3190), 4, + STATE(3251), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [128109] = 10, - ACTIONS(2291), 1, + [127736] = 3, + ACTIONS(4334), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4336), 10, + 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_extends, + anon_sym_PIPE_RBRACE, + [127756] = 11, + ACTIONS(2970), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(2972), 1, anon_sym_SQUOTE, - ACTIONS(6753), 1, + ACTIONS(6740), 1, sym_identifier, - ACTIONS(6755), 1, + ACTIONS(6742), 1, anon_sym_type, - ACTIONS(6761), 1, - anon_sym_typeof, - ACTIONS(6765), 1, + ACTIONS(6744), 1, + anon_sym_COMMA, + ACTIONS(6746), 1, anon_sym_RBRACE, - STATE(5260), 1, - sym__import_identifier, - STATE(5324), 1, + ACTIONS(6748), 1, + anon_sym_typeof, + STATE(4805), 1, sym_import_specifier, + STATE(5428), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5894), 2, + STATE(5603), 2, sym__module_export_name, sym_string, - [128142] = 2, + [127792] = 4, + ACTIONS(4206), 1, + anon_sym_PIPE, + ACTIONS(6702), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1668), 10, + ACTIONS(4208), 9, sym__automatic_semicolon, - sym__function_signature_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, - anon_sym_extends, - anon_sym_is, - [128159] = 11, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6767), 1, - sym_identifier, - ACTIONS(6769), 1, - anon_sym_LBRACE, - ACTIONS(6771), 1, anon_sym_extends, - ACTIONS(6773), 1, - anon_sym_implements, - STATE(2213), 1, - sym_class_body, - STATE(3611), 1, - sym_type_parameters, - STATE(4841), 1, - sym_extends_clause, - STATE(5240), 1, - sym_class_heritage, - STATE(5782), 1, - sym_implements_clause, + anon_sym_PIPE_RBRACE, + [127814] = 3, + ACTIONS(4210), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [128194] = 7, - ACTIONS(6775), 1, + ACTIONS(4212), 10, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, - ACTIONS(6781), 1, - anon_sym_LT_SLASH, - ACTIONS(6783), 1, - anon_sym_LT, - STATE(3263), 1, - sym_jsx_opening_element, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [127834] = 4, + ACTIONS(4154), 1, + anon_sym_PIPE, + ACTIONS(6702), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6778), 2, - sym_jsx_text, - sym_html_character_reference, - STATE(3267), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [128221] = 11, - ACTIONS(2537), 1, + ACTIONS(4156), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [127856] = 11, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6769), 1, + ACTIONS(6750), 1, + sym_identifier, + ACTIONS(6752), 1, anon_sym_LBRACE, - ACTIONS(6771), 1, + ACTIONS(6754), 1, anon_sym_extends, - ACTIONS(6773), 1, + ACTIONS(6756), 1, anon_sym_implements, - ACTIONS(6786), 1, - sym_identifier, - STATE(2339), 1, + STATE(2288), 1, sym_class_body, - STATE(3536), 1, + STATE(3741), 1, sym_type_parameters, - STATE(4841), 1, + STATE(5174), 1, sym_extends_clause, - STATE(5280), 1, + STATE(5379), 1, sym_class_heritage, - STATE(5782), 1, + STATE(5952), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [128256] = 11, - ACTIONS(2537), 1, + [127891] = 11, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6769), 1, + ACTIONS(6752), 1, anon_sym_LBRACE, - ACTIONS(6771), 1, + ACTIONS(6754), 1, anon_sym_extends, - ACTIONS(6773), 1, + ACTIONS(6756), 1, anon_sym_implements, - ACTIONS(6788), 1, + ACTIONS(6758), 1, sym_identifier, - STATE(2213), 1, + STATE(2330), 1, sym_class_body, - STATE(3611), 1, + STATE(3593), 1, sym_type_parameters, - STATE(4841), 1, + STATE(5174), 1, sym_extends_clause, - STATE(5240), 1, + STATE(5260), 1, sym_class_heritage, - STATE(5782), 1, + STATE(5952), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [128291] = 10, - ACTIONS(6318), 1, + [127926] = 9, + ACTIONS(2970), 1, + anon_sym_DQUOTE, + ACTIONS(2972), 1, + anon_sym_SQUOTE, + ACTIONS(6740), 1, sym_identifier, - ACTIONS(6322), 1, - anon_sym_LBRACE, - ACTIONS(6331), 1, - sym_jsx_identifier, - ACTIONS(6644), 1, - anon_sym_COLON, - ACTIONS(6646), 1, - anon_sym_GT, - ACTIONS(6650), 1, - anon_sym_SLASH_GT, - STATE(3350), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, - sym_jsx_namespace_name, + ACTIONS(6760), 1, + anon_sym_type, + ACTIONS(6762), 1, + anon_sym_as, + STATE(5245), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, - sym_jsx_expression, - sym_jsx_attribute, - [128324] = 3, - ACTIONS(6790), 1, - anon_sym_DOT, + ACTIONS(6510), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(5931), 2, + sym__module_export_name, + sym_string, + [127957] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4079), 9, + ACTIONS(4216), 10, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [128343] = 11, - ACTIONS(2537), 1, + [127974] = 11, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6769), 1, + ACTIONS(6752), 1, anon_sym_LBRACE, - ACTIONS(6771), 1, + ACTIONS(6754), 1, anon_sym_extends, - ACTIONS(6773), 1, + ACTIONS(6756), 1, anon_sym_implements, - ACTIONS(6792), 1, + ACTIONS(6764), 1, sym_identifier, - STATE(2213), 1, + STATE(2288), 1, sym_class_body, - STATE(3611), 1, + STATE(3741), 1, sym_type_parameters, - STATE(4841), 1, + STATE(5174), 1, sym_extends_clause, - STATE(5240), 1, + STATE(5379), 1, sym_class_heritage, - STATE(5782), 1, + STATE(5952), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [128378] = 6, - ACTIONS(6306), 1, - anon_sym_LT, - ACTIONS(6316), 1, + [128009] = 5, + ACTIONS(5964), 1, + anon_sym_LPAREN, + ACTIONS(6358), 1, anon_sym_DOT, - ACTIONS(6794), 1, - anon_sym_is, - STATE(2908), 1, - sym_type_arguments, + STATE(2893), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3498), 6, - anon_sym_as, + ACTIONS(4054), 7, + anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - [128403] = 3, - ACTIONS(6624), 1, - anon_sym_is, + [128032] = 10, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6318), 1, + anon_sym_SLASH_GT, + ACTIONS(6601), 1, + anon_sym_COLON, + ACTIONS(6603), 1, + anon_sym_GT, + STATE(3337), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3796), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4037), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + STATE(4421), 2, + sym_jsx_expression, + sym_jsx_attribute, + [128065] = 10, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [128422] = 5, - ACTIONS(6047), 1, - anon_sym_LPAREN, - ACTIONS(6371), 1, - anon_sym_DOT, - STATE(2900), 1, - sym_arguments, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6601), 1, + anon_sym_COLON, + ACTIONS(6603), 1, + anon_sym_GT, + ACTIONS(6605), 1, + anon_sym_SLASH_GT, + STATE(3314), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3796), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4041), 7, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [128445] = 4, - ACTIONS(6798), 1, + STATE(4421), 2, + sym_jsx_expression, + sym_jsx_attribute, + [128098] = 4, + ACTIONS(6768), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3852), 3, + STATE(3836), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - ACTIONS(6796), 6, + ACTIONS(6766), 6, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [128466] = 4, - ACTIONS(4469), 1, - anon_sym_EQ, + [128119] = 4, + ACTIONS(6768), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4003), 2, + STATE(3824), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(6770), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3791), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [128487] = 10, - ACTIONS(6318), 1, - sym_identifier, - ACTIONS(6322), 1, - anon_sym_LBRACE, - ACTIONS(6331), 1, - sym_jsx_identifier, - ACTIONS(6335), 1, - anon_sym_SLASH_GT, - ACTIONS(6644), 1, + [128140] = 8, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(6646), 1, - anon_sym_GT, - STATE(3323), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, - sym_jsx_namespace_name, + ACTIONS(6772), 1, + anon_sym_EQ, + ACTIONS(6776), 1, + anon_sym_BANG, + STATE(4126), 1, + sym__initializer, + STATE(4264), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, - sym_jsx_expression, - sym_jsx_attribute, - [128520] = 11, - ACTIONS(2537), 1, + ACTIONS(6778), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(6774), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [128169] = 10, + ACTIONS(2970), 1, + anon_sym_DQUOTE, + ACTIONS(2972), 1, + anon_sym_SQUOTE, + ACTIONS(6740), 1, + sym_identifier, + ACTIONS(6742), 1, + anon_sym_type, + ACTIONS(6748), 1, + anon_sym_typeof, + ACTIONS(6780), 1, + anon_sym_RBRACE, + STATE(5428), 1, + sym__import_identifier, + STATE(5458), 1, + sym_import_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5603), 2, + sym__module_export_name, + sym_string, + [128202] = 11, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6769), 1, - anon_sym_LBRACE, - ACTIONS(6771), 1, + ACTIONS(6754), 1, anon_sym_extends, - ACTIONS(6773), 1, + ACTIONS(6756), 1, anon_sym_implements, - ACTIONS(6800), 1, + ACTIONS(6782), 1, sym_identifier, - STATE(2339), 1, + ACTIONS(6784), 1, + anon_sym_LBRACE, + STATE(1669), 1, sym_class_body, - STATE(3536), 1, + STATE(3679), 1, sym_type_parameters, - STATE(4841), 1, + STATE(5174), 1, sym_extends_clause, - STATE(5280), 1, + STATE(5299), 1, sym_class_heritage, - STATE(5782), 1, + STATE(5952), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [128555] = 10, - ACTIONS(6318), 1, + [128237] = 4, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4002), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3758), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [128258] = 10, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(6322), 1, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6331), 1, + ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6644), 1, + ACTIONS(6322), 1, + anon_sym_SLASH_GT, + ACTIONS(6601), 1, anon_sym_COLON, - ACTIONS(6646), 1, + ACTIONS(6603), 1, anon_sym_GT, - ACTIONS(6648), 1, - anon_sym_SLASH_GT, - STATE(3436), 1, + STATE(3438), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, + STATE(3796), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, + STATE(4421), 2, sym_jsx_expression, sym_jsx_attribute, - [128588] = 11, - ACTIONS(2537), 1, + [128291] = 7, + ACTIONS(6786), 1, + anon_sym_LBRACE, + ACTIONS(6792), 1, + anon_sym_LT_SLASH, + ACTIONS(6794), 1, + anon_sym_LT, + STATE(3252), 1, + sym_jsx_opening_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6789), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(3273), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [128318] = 11, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6771), 1, + ACTIONS(6752), 1, + anon_sym_LBRACE, + ACTIONS(6754), 1, anon_sym_extends, - ACTIONS(6773), 1, + ACTIONS(6756), 1, anon_sym_implements, - ACTIONS(6802), 1, + ACTIONS(6797), 1, sym_identifier, - ACTIONS(6804), 1, - anon_sym_LBRACE, - STATE(1669), 1, + STATE(2330), 1, sym_class_body, - STATE(3634), 1, + STATE(3593), 1, sym_type_parameters, - STATE(4841), 1, + STATE(5174), 1, sym_extends_clause, - STATE(5447), 1, + STATE(5260), 1, sym_class_heritage, - STATE(5782), 1, + STATE(5952), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [128623] = 3, - ACTIONS(6624), 1, + [128353] = 3, + ACTIONS(6639), 1, anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4047), 9, + ACTIONS(4028), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -246080,34 +244068,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [128642] = 4, - ACTIONS(6798), 1, - anon_sym_COLON, + [128372] = 6, + ACTIONS(6291), 1, + anon_sym_LT, + ACTIONS(6324), 1, + anon_sym_DOT, + ACTIONS(6799), 1, + anon_sym_is, + STATE(2909), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3929), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(6806), 6, - sym__automatic_semicolon, + ACTIONS(3501), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [128397] = 11, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6752), 1, anon_sym_LBRACE, + ACTIONS(6754), 1, + anon_sym_extends, + ACTIONS(6756), 1, + anon_sym_implements, + ACTIONS(6801), 1, + sym_identifier, + STATE(2330), 1, + sym_class_body, + STATE(3593), 1, + sym_type_parameters, + STATE(5174), 1, + sym_extends_clause, + STATE(5260), 1, + sym_class_heritage, + STATE(5952), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [128432] = 9, + ACTIONS(2970), 1, + anon_sym_DQUOTE, + ACTIONS(2972), 1, + anon_sym_SQUOTE, + ACTIONS(6803), 1, + sym_identifier, + ACTIONS(6807), 1, anon_sym_COMMA, + ACTIONS(6809), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [128663] = 5, - ACTIONS(6717), 1, + STATE(5023), 1, + sym_export_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6805), 2, + anon_sym_type, + anon_sym_typeof, + STATE(5027), 2, + sym__module_export_name, + sym_string, + [128463] = 5, + ACTIONS(6704), 1, anon_sym_AMP, - ACTIONS(6719), 1, + ACTIONS(6706), 1, anon_sym_PIPE, - ACTIONS(6721), 1, + ACTIONS(6708), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6808), 7, + ACTIONS(6811), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -246115,747 +244151,983 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [128686] = 11, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6769), 1, + [128486] = 3, + ACTIONS(6813), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4032), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(6771), 1, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [128505] = 11, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6754), 1, anon_sym_extends, - ACTIONS(6773), 1, + ACTIONS(6756), 1, anon_sym_implements, - ACTIONS(6810), 1, + ACTIONS(6784), 1, + anon_sym_LBRACE, + ACTIONS(6815), 1, sym_identifier, - STATE(2339), 1, + STATE(2483), 1, sym_class_body, - STATE(3536), 1, + STATE(3729), 1, sym_type_parameters, - STATE(4841), 1, + STATE(5174), 1, sym_extends_clause, - STATE(5280), 1, + STATE(5230), 1, sym_class_heritage, - STATE(5782), 1, + STATE(5952), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [128721] = 9, - ACTIONS(2291), 1, + [128540] = 10, + ACTIONS(2970), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(2972), 1, anon_sym_SQUOTE, - ACTIONS(6753), 1, + ACTIONS(6740), 1, sym_identifier, - ACTIONS(6812), 1, + ACTIONS(6742), 1, anon_sym_type, - ACTIONS(6814), 1, - anon_sym_as, - STATE(5410), 1, + ACTIONS(6748), 1, + anon_sym_typeof, + ACTIONS(6817), 1, + anon_sym_RBRACE, + STATE(5428), 1, sym__import_identifier, + STATE(5458), 1, + sym_import_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6530), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(5599), 2, + STATE(5603), 2, sym__module_export_name, sym_string, - [128752] = 11, - ACTIONS(2537), 1, + [128573] = 11, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6771), 1, + ACTIONS(6752), 1, + anon_sym_LBRACE, + ACTIONS(6754), 1, anon_sym_extends, - ACTIONS(6773), 1, + ACTIONS(6756), 1, anon_sym_implements, - ACTIONS(6804), 1, - anon_sym_LBRACE, - ACTIONS(6816), 1, + ACTIONS(6819), 1, sym_identifier, - STATE(1723), 1, + STATE(2288), 1, sym_class_body, - STATE(3621), 1, + STATE(3741), 1, sym_type_parameters, - STATE(4841), 1, + STATE(5174), 1, sym_extends_clause, - STATE(5464), 1, + STATE(5379), 1, sym_class_heritage, - STATE(5782), 1, + STATE(5952), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [128787] = 11, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6771), 1, - anon_sym_extends, - ACTIONS(6773), 1, - anon_sym_implements, - ACTIONS(6804), 1, + [128608] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4060), 10, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(6818), 1, - sym_identifier, - STATE(2485), 1, - sym_class_body, - STATE(3716), 1, - sym_type_parameters, - STATE(4841), 1, - sym_extends_clause, - STATE(5237), 1, - sym_class_heritage, - STATE(5782), 1, - sym_implements_clause, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + anon_sym_is, + [128625] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [128822] = 3, - ACTIONS(6820), 1, + ACTIONS(1683), 10, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, anon_sym_is, + [128642] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4029), 9, + ACTIONS(4138), 10, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [128841] = 11, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6769), 1, + [128659] = 3, + ACTIONS(6821), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4150), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(6771), 1, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - ACTIONS(6773), 1, + [128678] = 11, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6754), 1, + anon_sym_extends, + ACTIONS(6756), 1, anon_sym_implements, - ACTIONS(6822), 1, + ACTIONS(6784), 1, + anon_sym_LBRACE, + ACTIONS(6823), 1, sym_identifier, - STATE(2213), 1, + STATE(1691), 1, sym_class_body, - STATE(3611), 1, + STATE(3745), 1, sym_type_parameters, - STATE(4841), 1, + STATE(5174), 1, sym_extends_clause, - STATE(5240), 1, + STATE(5320), 1, sym_class_heritage, - STATE(5782), 1, + STATE(5952), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [128876] = 11, - ACTIONS(2537), 1, + [128713] = 11, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6769), 1, + ACTIONS(6752), 1, anon_sym_LBRACE, - ACTIONS(6771), 1, + ACTIONS(6754), 1, anon_sym_extends, - ACTIONS(6773), 1, + ACTIONS(6756), 1, anon_sym_implements, - ACTIONS(6824), 1, + ACTIONS(6825), 1, sym_identifier, - STATE(2339), 1, + STATE(2330), 1, sym_class_body, - STATE(3536), 1, + STATE(3593), 1, sym_type_parameters, - STATE(4841), 1, + STATE(5174), 1, sym_extends_clause, - STATE(5280), 1, + STATE(5260), 1, sym_class_heritage, - STATE(5782), 1, + STATE(5952), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [128911] = 2, + [128748] = 9, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(6776), 1, + anon_sym_BANG, + ACTIONS(6827), 1, + sym__automatic_semicolon, + STATE(4264), 1, + sym_type_annotation, + STATE(4878), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4065), 10, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(6774), 2, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6778), 2, + anon_sym_in, + anon_sym_of, + [128779] = 11, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6752), 1, + anon_sym_LBRACE, + ACTIONS(6754), 1, anon_sym_extends, - anon_sym_is, - [128928] = 10, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(6753), 1, + ACTIONS(6756), 1, + anon_sym_implements, + ACTIONS(6830), 1, sym_identifier, - ACTIONS(6755), 1, - anon_sym_type, - ACTIONS(6761), 1, - anon_sym_typeof, - ACTIONS(6826), 1, - anon_sym_RBRACE, - STATE(5260), 1, - sym__import_identifier, - STATE(5324), 1, - sym_import_specifier, + STATE(2288), 1, + sym_class_body, + STATE(3741), 1, + sym_type_parameters, + STATE(5174), 1, + sym_extends_clause, + STATE(5379), 1, + sym_class_heritage, + STATE(5952), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5894), 2, - sym__module_export_name, - sym_string, - [128961] = 2, + [128814] = 3, + ACTIONS(6639), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4165), 10, + ACTIONS(4024), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [128978] = 10, - ACTIONS(6318), 1, + [128833] = 10, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(6322), 1, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6331), 1, + ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6339), 1, - anon_sym_SLASH_GT, - ACTIONS(6644), 1, + ACTIONS(6601), 1, anon_sym_COLON, - ACTIONS(6646), 1, + ACTIONS(6603), 1, anon_sym_GT, - STATE(3336), 1, + ACTIONS(6629), 1, + anon_sym_SLASH_GT, + STATE(3308), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, + STATE(3796), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, + STATE(4421), 2, sym_jsx_expression, sym_jsx_attribute, - [129011] = 2, + [128866] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6832), 9, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [128882] = 8, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(6834), 1, + anon_sym_BANG, + ACTIONS(6836), 1, + anon_sym_QMARK, + STATE(4208), 1, + sym_type_annotation, + STATE(4798), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6559), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [128910] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4177), 10, + ACTIONS(4224), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [129028] = 8, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6828), 1, + [128926] = 8, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6832), 1, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(6838), 1, anon_sym_BANG, - STATE(4195), 1, - sym__initializer, - STATE(4458), 1, + ACTIONS(6840), 1, + anon_sym_QMARK, + STATE(4217), 1, sym_type_annotation, + STATE(4803), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6834), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(6830), 3, + ACTIONS(6466), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129057] = 9, - ACTIONS(6459), 1, + [128954] = 8, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(6832), 1, + ACTIONS(6842), 1, anon_sym_BANG, - ACTIONS(6836), 1, - sym__automatic_semicolon, - STATE(4458), 1, + ACTIONS(6844), 1, + anon_sym_QMARK, + STATE(4263), 1, sym_type_annotation, - STATE(5215), 1, + STATE(4874), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6830), 2, + ACTIONS(6466), 3, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(6834), 2, - anon_sym_in, - anon_sym_of, - [129088] = 9, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(6839), 1, + [128982] = 9, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(6843), 1, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6846), 1, + anon_sym_GT, + ACTIONS(6848), 1, + anon_sym_SLASH_GT, + STATE(3468), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3796), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4421), 2, + sym_jsx_expression, + sym_jsx_attribute, + [129012] = 7, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(6845), 1, + ACTIONS(697), 1, anon_sym_RBRACE, - STATE(5013), 1, - sym_export_specifier, + ACTIONS(4429), 1, + anon_sym_EQ, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6841), 2, - anon_sym_type, - anon_sym_typeof, - STATE(5045), 2, - sym__module_export_name, - sym_string, - [129119] = 2, + ACTIONS(3758), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [129038] = 8, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(6850), 1, + anon_sym_BANG, + ACTIONS(6852), 1, + anon_sym_QMARK, + STATE(4210), 1, + sym_type_annotation, + STATE(4804), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2341), 9, + ACTIONS(6559), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [129135] = 8, - ACTIONS(6459), 1, + [129066] = 8, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(6847), 1, + ACTIONS(6854), 1, anon_sym_BANG, - ACTIONS(6849), 1, + ACTIONS(6856), 1, anon_sym_QMARK, - STATE(4405), 1, + STATE(4219), 1, sym_type_annotation, - STATE(5100), 1, + STATE(4814), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6483), 3, + ACTIONS(6559), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129163] = 8, - ACTIONS(6459), 1, + [129094] = 8, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(6853), 1, + ACTIONS(6858), 1, anon_sym_BANG, - ACTIONS(6855), 1, + ACTIONS(6860), 1, anon_sym_QMARK, - STATE(4335), 1, + STATE(4140), 1, sym_type_annotation, - STATE(4952), 1, + STATE(4643), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6851), 3, + ACTIONS(6559), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129191] = 8, - ACTIONS(6459), 1, + [129122] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6862), 1, + anon_sym_GT, + ACTIONS(6864), 1, + anon_sym_SLASH_GT, + STATE(3410), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3796), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4421), 2, + sym_jsx_expression, + sym_jsx_attribute, + [129152] = 8, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(6857), 1, + ACTIONS(6866), 1, anon_sym_BANG, - ACTIONS(6859), 1, + ACTIONS(6868), 1, anon_sym_QMARK, - STATE(4034), 1, + STATE(4236), 1, sym_type_annotation, - STATE(4724), 1, + STATE(4838), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(6559), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [129180] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4232), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [129219] = 8, - ACTIONS(6459), 1, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [129196] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6322), 1, + anon_sym_SLASH_GT, + ACTIONS(6603), 1, + anon_sym_GT, + STATE(3370), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3796), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4421), 2, + sym_jsx_expression, + sym_jsx_attribute, + [129226] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6870), 1, + anon_sym_GT, + ACTIONS(6872), 1, + anon_sym_SLASH_GT, + STATE(3468), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3796), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4421), 2, + sym_jsx_expression, + sym_jsx_attribute, + [129256] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6874), 1, + anon_sym_GT, + ACTIONS(6876), 1, + anon_sym_SLASH_GT, + STATE(3468), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3796), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4421), 2, + sym_jsx_expression, + sym_jsx_attribute, + [129286] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6878), 1, + anon_sym_GT, + ACTIONS(6880), 1, + anon_sym_SLASH_GT, + STATE(3468), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3796), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4421), 2, + sym_jsx_expression, + sym_jsx_attribute, + [129316] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6874), 1, + anon_sym_GT, + ACTIONS(6882), 1, + anon_sym_SLASH_GT, + STATE(3468), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3796), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4421), 2, + sym_jsx_expression, + sym_jsx_attribute, + [129346] = 8, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(6861), 1, + ACTIONS(6884), 1, anon_sym_BANG, - ACTIONS(6863), 1, + ACTIONS(6886), 1, anon_sym_QMARK, - STATE(4409), 1, + STATE(4345), 1, sym_type_annotation, - STATE(5112), 1, + STATE(5016), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6483), 3, + ACTIONS(6500), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129247] = 8, - ACTIONS(6459), 1, + [129374] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6878), 1, + anon_sym_GT, + ACTIONS(6888), 1, + anon_sym_SLASH_GT, + STATE(3468), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3796), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4421), 2, + sym_jsx_expression, + sym_jsx_attribute, + [129404] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6870), 1, + anon_sym_GT, + ACTIONS(6890), 1, + anon_sym_SLASH_GT, + STATE(3468), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3796), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4421), 2, + sym_jsx_expression, + sym_jsx_attribute, + [129434] = 7, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(6865), 1, - anon_sym_BANG, - ACTIONS(6867), 1, - anon_sym_QMARK, - STATE(4412), 1, + STATE(4101), 1, sym_type_annotation, - STATE(5118), 1, + STATE(5063), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6483), 3, + ACTIONS(6894), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(6892), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129275] = 7, - ACTIONS(6322), 1, + [129460] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6869), 1, - anon_sym_DQUOTE, - ACTIONS(6871), 1, - anon_sym_SQUOTE, - ACTIONS(6873), 1, - anon_sym_LT, - STATE(3193), 1, - sym_jsx_opening_element, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6896), 1, + anon_sym_GT, + ACTIONS(6898), 1, + anon_sym_SLASH_GT, + STATE(3340), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3796), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4325), 4, - sym_jsx_element, + STATE(4421), 2, sym_jsx_expression, - sym_jsx_self_closing_element, - sym__jsx_string, - [129301] = 10, - ACTIONS(2537), 1, + sym_jsx_attribute, + [129490] = 10, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6769), 1, + ACTIONS(6900), 1, anon_sym_LBRACE, - ACTIONS(6875), 1, + ACTIONS(6902), 1, anon_sym_extends, - ACTIONS(6877), 1, + ACTIONS(6904), 1, anon_sym_implements, - STATE(2194), 1, + STATE(849), 1, sym_class_body, - STATE(3632), 1, + STATE(3527), 1, sym_type_parameters, - STATE(4841), 1, + STATE(5174), 1, sym_extends_clause, - STATE(5431), 1, + STATE(5259), 1, sym_class_heritage, - STATE(5782), 1, + STATE(5952), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [129333] = 8, - ACTIONS(6459), 1, + [129522] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6862), 1, + anon_sym_GT, + ACTIONS(6906), 1, + anon_sym_SLASH_GT, + STATE(3349), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3796), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4421), 2, + sym_jsx_expression, + sym_jsx_attribute, + [129552] = 8, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(6879), 1, + ACTIONS(6908), 1, anon_sym_BANG, - ACTIONS(6881), 1, + ACTIONS(6910), 1, anon_sym_QMARK, - STATE(3951), 1, + STATE(4351), 1, sym_type_annotation, - STATE(4643), 1, + STATE(5025), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(6500), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129361] = 8, - ACTIONS(6459), 1, + [129580] = 8, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(6883), 1, + ACTIONS(6912), 1, anon_sym_BANG, - ACTIONS(6885), 1, + ACTIONS(6914), 1, anon_sym_QMARK, - STATE(4000), 1, + STATE(4352), 1, sym_type_annotation, - STATE(5087), 1, + STATE(5028), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(6500), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129389] = 8, - ACTIONS(6887), 1, - sym_identifier, - ACTIONS(6890), 1, - anon_sym_LBRACE, - ACTIONS(6895), 1, - sym_jsx_identifier, - STATE(3310), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, - sym_jsx_namespace_name, + [129608] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6893), 2, - anon_sym_GT, - anon_sym_SLASH_GT, - STATE(3955), 2, - sym_jsx_expression, - sym_jsx_attribute, - [129417] = 10, - ACTIONS(2537), 1, + ACTIONS(4156), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [129624] = 10, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6875), 1, + ACTIONS(6902), 1, anon_sym_extends, - ACTIONS(6877), 1, + ACTIONS(6904), 1, anon_sym_implements, - ACTIONS(6898), 1, + ACTIONS(6916), 1, anon_sym_LBRACE, - STATE(3622), 1, - sym_type_parameters, - STATE(3984), 1, + STATE(780), 1, sym_class_body, - STATE(4841), 1, + STATE(3536), 1, + sym_type_parameters, + STATE(5174), 1, sym_extends_clause, - STATE(5519), 1, + STATE(5309), 1, sym_class_heritage, - STATE(5782), 1, + STATE(5952), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [129449] = 8, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6900), 1, - anon_sym_BANG, - ACTIONS(6902), 1, - anon_sym_QMARK, - STATE(3956), 1, - sym_type_annotation, - STATE(4782), 1, - sym__initializer, + [129656] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(4236), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [129477] = 10, - ACTIONS(2537), 1, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [129672] = 10, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6804), 1, + ACTIONS(6752), 1, anon_sym_LBRACE, - ACTIONS(6875), 1, + ACTIONS(6902), 1, anon_sym_extends, - ACTIONS(6877), 1, + ACTIONS(6904), 1, anon_sym_implements, - STATE(1627), 1, + STATE(2192), 1, sym_class_body, - STATE(3630), 1, + STATE(3562), 1, sym_type_parameters, - STATE(4841), 1, + STATE(5174), 1, sym_extends_clause, - STATE(5270), 1, + STATE(5443), 1, sym_class_heritage, - STATE(5782), 1, + STATE(5952), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [129509] = 9, - ACTIONS(6318), 1, - sym_identifier, - ACTIONS(6322), 1, + [129704] = 3, + ACTIONS(6918), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4156), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(6331), 1, - sym_jsx_identifier, - ACTIONS(6904), 1, - anon_sym_GT, - ACTIONS(6906), 1, - anon_sym_SLASH_GT, - STATE(3310), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, - sym_jsx_namespace_name, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [129722] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, - sym_jsx_expression, - sym_jsx_attribute, - [129539] = 9, - ACTIONS(6318), 1, + ACTIONS(4162), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [129738] = 9, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(6322), 1, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6331), 1, + ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6904), 1, + ACTIONS(6920), 1, anon_sym_GT, - ACTIONS(6908), 1, + ACTIONS(6922), 1, anon_sym_SLASH_GT, - STATE(3310), 1, + STATE(3468), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, + STATE(3796), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, + STATE(4421), 2, sym_jsx_expression, sym_jsx_attribute, - [129569] = 10, - ACTIONS(2537), 1, + [129768] = 10, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6875), 1, + ACTIONS(6902), 1, anon_sym_extends, - ACTIONS(6877), 1, + ACTIONS(6904), 1, anon_sym_implements, - ACTIONS(6910), 1, + ACTIONS(6924), 1, anon_sym_LBRACE, - STATE(251), 1, + STATE(228), 1, sym_class_body, - STATE(3546), 1, + STATE(3568), 1, sym_type_parameters, - STATE(4841), 1, + STATE(5174), 1, sym_extends_clause, - STATE(5479), 1, + STATE(5369), 1, sym_class_heritage, - STATE(5782), 1, + STATE(5952), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [129601] = 7, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(5064), 1, - anon_sym_RBRACE, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3791), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [129627] = 7, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(4173), 1, - sym_type_annotation, - STATE(4657), 1, - sym__initializer, + [129800] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6914), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(6912), 3, + ACTIONS(4240), 9, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [129653] = 9, - ACTIONS(6318), 1, - sym_identifier, - ACTIONS(6322), 1, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(6331), 1, - sym_jsx_identifier, - ACTIONS(6916), 1, - anon_sym_GT, - ACTIONS(6918), 1, - anon_sym_SLASH_GT, - STATE(3310), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3955), 2, - sym_jsx_expression, - sym_jsx_attribute, - [129683] = 8, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6836), 1, - sym__automatic_semicolon, - STATE(4458), 1, - sym_type_annotation, - STATE(5225), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6830), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(6834), 2, - anon_sym_in, - anon_sym_of, - [129711] = 2, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [129816] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4395), 9, + ACTIONS(4384), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -246865,166 +245137,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [129727] = 9, - ACTIONS(6318), 1, + [129832] = 9, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(6322), 1, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6331), 1, + ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6916), 1, + ACTIONS(6896), 1, anon_sym_GT, - ACTIONS(6920), 1, + ACTIONS(6926), 1, anon_sym_SLASH_GT, - STATE(3310), 1, + STATE(3364), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, + STATE(3796), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, + STATE(4421), 2, sym_jsx_expression, sym_jsx_attribute, - [129757] = 9, - ACTIONS(6318), 1, - sym_identifier, - ACTIONS(6322), 1, + [129862] = 10, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6902), 1, + anon_sym_extends, + ACTIONS(6904), 1, + anon_sym_implements, + ACTIONS(6916), 1, anon_sym_LBRACE, - ACTIONS(6331), 1, - sym_jsx_identifier, - ACTIONS(6922), 1, - anon_sym_GT, - ACTIONS(6924), 1, - anon_sym_SLASH_GT, - STATE(3310), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, - sym_jsx_namespace_name, + STATE(3726), 1, + sym_type_parameters, + STATE(4096), 1, + sym_class_body, + STATE(5174), 1, + sym_extends_clause, + STATE(5237), 1, + sym_class_heritage, + STATE(5952), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, - sym_jsx_expression, - sym_jsx_attribute, - [129787] = 8, - ACTIONS(6459), 1, + [129894] = 8, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(6926), 1, - anon_sym_BANG, ACTIONS(6928), 1, + anon_sym_BANG, + ACTIONS(6930), 1, anon_sym_QMARK, - STATE(4050), 1, + STATE(3995), 1, sym_type_annotation, - STATE(4788), 1, + STATE(5125), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(6472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129815] = 9, - ACTIONS(6318), 1, - sym_identifier, - ACTIONS(6322), 1, - anon_sym_LBRACE, - ACTIONS(6331), 1, - sym_jsx_identifier, - ACTIONS(6930), 1, - anon_sym_GT, + [129922] = 4, ACTIONS(6932), 1, - anon_sym_SLASH_GT, - STATE(3401), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, - sym_jsx_namespace_name, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, - sym_jsx_expression, - sym_jsx_attribute, - [129845] = 8, - ACTIONS(6459), 1, + STATE(3960), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(6766), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [129942] = 8, + ACTIONS(2970), 1, + anon_sym_DQUOTE, + ACTIONS(2972), 1, + anon_sym_SQUOTE, + ACTIONS(6803), 1, + sym_identifier, + ACTIONS(6934), 1, + anon_sym_RBRACE, + STATE(5553), 1, + sym_export_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6805), 2, + anon_sym_type, + anon_sym_typeof, + STATE(5027), 2, + sym__module_export_name, + sym_string, + [129970] = 8, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(6934), 1, - anon_sym_BANG, ACTIONS(6936), 1, + anon_sym_BANG, + ACTIONS(6938), 1, anon_sym_QMARK, - STATE(4056), 1, + STATE(4004), 1, sym_type_annotation, - STATE(4832), 1, + STATE(4634), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(6472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129873] = 9, - ACTIONS(6318), 1, + [129998] = 9, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(6322), 1, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6331), 1, + ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6938), 1, + ACTIONS(6870), 1, anon_sym_GT, ACTIONS(6940), 1, anon_sym_SLASH_GT, - STATE(3310), 1, + STATE(3468), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, + STATE(3796), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, + STATE(4421), 2, sym_jsx_expression, sym_jsx_attribute, - [129903] = 5, - ACTIONS(6371), 1, - anon_sym_DOT, - ACTIONS(6690), 1, - anon_sym_LPAREN, - STATE(2900), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4041), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [129925] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4075), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [129941] = 2, + [130028] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4029), 9, + ACTIONS(4404), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -247034,94 +245291,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [129957] = 9, - ACTIONS(6318), 1, + [130044] = 9, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(6322), 1, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6331), 1, + ACTIONS(6314), 1, sym_jsx_identifier, ACTIONS(6942), 1, anon_sym_GT, ACTIONS(6944), 1, anon_sym_SLASH_GT, - STATE(3404), 1, + STATE(3468), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, + STATE(3796), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, + STATE(4421), 2, sym_jsx_expression, sym_jsx_attribute, - [129987] = 9, - ACTIONS(6318), 1, + [130074] = 9, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(6322), 1, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6331), 1, + ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6946), 1, + ACTIONS(6878), 1, anon_sym_GT, - ACTIONS(6948), 1, + ACTIONS(6946), 1, anon_sym_SLASH_GT, - STATE(3310), 1, + STATE(3468), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, + STATE(3796), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, + STATE(4421), 2, sym_jsx_expression, sym_jsx_attribute, - [130017] = 9, - ACTIONS(6318), 1, + [130104] = 9, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(6322), 1, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6331), 1, + ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6950), 1, + ACTIONS(6846), 1, anon_sym_GT, - ACTIONS(6952), 1, + ACTIONS(6948), 1, anon_sym_SLASH_GT, - STATE(3310), 1, + STATE(3468), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, + STATE(3796), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, + STATE(4421), 2, sym_jsx_expression, sym_jsx_attribute, - [130047] = 8, - ACTIONS(6459), 1, + [130134] = 8, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(6954), 1, + ACTIONS(6950), 1, anon_sym_BANG, - ACTIONS(6956), 1, + ACTIONS(6952), 1, anon_sym_QMARK, - STATE(4059), 1, + STATE(3986), 1, sym_type_annotation, - STATE(4847), 1, + STATE(4940), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(6472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130075] = 2, + [130162] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 9, + ACTIONS(2326), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -247131,75 +245388,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [130091] = 9, - ACTIONS(6318), 1, - sym_identifier, - ACTIONS(6322), 1, - anon_sym_LBRACE, - ACTIONS(6331), 1, - sym_jsx_identifier, - ACTIONS(6922), 1, - anon_sym_GT, - ACTIONS(6958), 1, - anon_sym_SLASH_GT, - STATE(3310), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3955), 2, - sym_jsx_expression, - sym_jsx_attribute, - [130121] = 10, - ACTIONS(2537), 1, + [130178] = 10, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6875), 1, + ACTIONS(6902), 1, anon_sym_extends, - ACTIONS(6877), 1, + ACTIONS(6904), 1, anon_sym_implements, - ACTIONS(6898), 1, + ACTIONS(6916), 1, anon_sym_LBRACE, - STATE(3663), 1, + STATE(3603), 1, sym_type_parameters, - STATE(4035), 1, + STATE(4012), 1, sym_class_body, - STATE(4841), 1, + STATE(5174), 1, sym_extends_clause, - STATE(5419), 1, + STATE(5454), 1, sym_class_heritage, - STATE(5782), 1, + STATE(5952), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130153] = 9, - ACTIONS(6318), 1, + [130210] = 9, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(6322), 1, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6331), 1, + ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6930), 1, + ACTIONS(6862), 1, anon_sym_GT, - ACTIONS(6960), 1, + ACTIONS(6954), 1, anon_sym_SLASH_GT, - STATE(3315), 1, + STATE(3309), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, + STATE(3796), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, + STATE(4421), 2, sym_jsx_expression, sym_jsx_attribute, - [130183] = 2, + [130240] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4047), 9, + ACTIONS(1805), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -247209,11 +245445,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [130199] = 2, + [130256] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6962), 9, + ACTIONS(6956), 9, anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, @@ -247223,237 +245459,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_QMARK, - [130215] = 5, - ACTIONS(6964), 1, - anon_sym_AMP, - ACTIONS(6966), 1, - anon_sym_PIPE, - ACTIONS(6968), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4299), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - [130237] = 5, - ACTIONS(6964), 1, - anon_sym_AMP, - ACTIONS(6966), 1, - anon_sym_PIPE, - ACTIONS(6968), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4347), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - [130259] = 8, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6970), 1, - anon_sym_BANG, - ACTIONS(6972), 1, - anon_sym_QMARK, - STATE(4191), 1, - sym_type_annotation, - STATE(4712), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6602), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [130287] = 10, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6804), 1, - anon_sym_LBRACE, - ACTIONS(6875), 1, - anon_sym_extends, - ACTIONS(6877), 1, - anon_sym_implements, - STATE(2536), 1, - sym_class_body, - STATE(3545), 1, - sym_type_parameters, - STATE(4841), 1, - sym_extends_clause, - STATE(5535), 1, - sym_class_heritage, - STATE(5782), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [130319] = 8, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6974), 1, - anon_sym_BANG, - ACTIONS(6976), 1, - anon_sym_QMARK, - STATE(4080), 1, - sym_type_annotation, - STATE(4916), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6520), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [130347] = 8, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6978), 1, - anon_sym_BANG, - ACTIONS(6980), 1, - anon_sym_QMARK, - STATE(4085), 1, - sym_type_annotation, - STATE(4965), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6520), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [130375] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4085), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [130391] = 8, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(6839), 1, + [130272] = 9, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(6982), 1, - anon_sym_RBRACE, - STATE(5336), 1, - sym_export_specifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6920), 1, + anon_sym_GT, + ACTIONS(6958), 1, + anon_sym_SLASH_GT, + STATE(3468), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3796), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6841), 2, - anon_sym_type, - anon_sym_typeof, - STATE(5045), 2, - sym__module_export_name, - sym_string, - [130419] = 9, - ACTIONS(6318), 1, + STATE(4421), 2, + sym_jsx_expression, + sym_jsx_attribute, + [130302] = 9, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(6322), 1, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6331), 1, + ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6938), 1, + ACTIONS(6874), 1, anon_sym_GT, - ACTIONS(6984), 1, + ACTIONS(6960), 1, anon_sym_SLASH_GT, - STATE(3310), 1, + STATE(3468), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, + STATE(3796), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, + STATE(4421), 2, sym_jsx_expression, sym_jsx_attribute, - [130449] = 9, - ACTIONS(6318), 1, + [130332] = 9, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(6322), 1, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6331), 1, + ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6922), 1, + ACTIONS(6862), 1, anon_sym_GT, - ACTIONS(6986), 1, + ACTIONS(6962), 1, anon_sym_SLASH_GT, - STATE(3310), 1, + STATE(3311), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, + STATE(3796), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, + STATE(4421), 2, sym_jsx_expression, sym_jsx_attribute, - [130479] = 7, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(702), 1, - anon_sym_RBRACE, - ACTIONS(4469), 1, - anon_sym_EQ, - STATE(4673), 1, - aux_sym_object_repeat1, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, + [130362] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [130505] = 3, - ACTIONS(6988), 1, + ACTIONS(4172), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [130378] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4085), 8, + ACTIONS(4114), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [130523] = 2, + [130394] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 9, + ACTIONS(4178), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -247463,630 +245564,503 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [130539] = 8, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6990), 1, - anon_sym_BANG, - ACTIONS(6992), 1, - anon_sym_QMARK, - STATE(4208), 1, - sym_type_annotation, - STATE(4745), 1, - sym__initializer, + [130410] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6602), 3, + ACTIONS(4244), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [130567] = 8, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6994), 1, - anon_sym_BANG, - ACTIONS(6996), 1, - anon_sym_QMARK, - STATE(4219), 1, - sym_type_annotation, - STATE(4755), 1, - sym__initializer, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [130426] = 3, + ACTIONS(6964), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6602), 3, + ACTIONS(4182), 8, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [130595] = 8, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6998), 1, - anon_sym_BANG, - ACTIONS(7000), 1, - anon_sym_QMARK, - STATE(4222), 1, - sym_type_annotation, - STATE(4758), 1, - sym__initializer, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_extends, + [130444] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6602), 3, + ACTIONS(4132), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [130623] = 8, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(7002), 1, - anon_sym_BANG, - ACTIONS(7004), 1, - anon_sym_QMARK, - STATE(4227), 1, - sym_type_annotation, - STATE(4769), 1, - sym__initializer, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [130460] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6602), 3, + ACTIONS(4186), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [130651] = 8, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(7006), 1, - anon_sym_BANG, - ACTIONS(7008), 1, - anon_sym_QMARK, - STATE(4232), 1, - sym_type_annotation, - STATE(4781), 1, - sym__initializer, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [130476] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6602), 3, + ACTIONS(4248), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [130679] = 9, - ACTIONS(6318), 1, - sym_identifier, - ACTIONS(6322), 1, - anon_sym_LBRACE, - ACTIONS(6331), 1, - sym_jsx_identifier, - ACTIONS(6930), 1, - anon_sym_GT, - ACTIONS(7010), 1, - anon_sym_SLASH_GT, - STATE(3403), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, - sym_jsx_namespace_name, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [130492] = 5, + ACTIONS(6964), 1, + anon_sym_AMP, + ACTIONS(6966), 1, + anon_sym_PIPE, + ACTIONS(6968), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, - sym_jsx_expression, - sym_jsx_attribute, - [130709] = 9, - ACTIONS(6318), 1, - sym_identifier, - ACTIONS(6322), 1, + ACTIONS(4194), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(6331), 1, - sym_jsx_identifier, - ACTIONS(6942), 1, - anon_sym_GT, - ACTIONS(7012), 1, - anon_sym_SLASH_GT, - STATE(3322), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, - sym_jsx_namespace_name, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + [130514] = 4, + ACTIONS(6918), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, - sym_jsx_expression, - sym_jsx_attribute, - [130739] = 9, - ACTIONS(6318), 1, - sym_identifier, - ACTIONS(6322), 1, + ACTIONS(4156), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + ACTIONS(4198), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(6331), 1, - sym_jsx_identifier, - ACTIONS(6938), 1, - anon_sym_GT, - ACTIONS(7014), 1, - anon_sym_SLASH_GT, - STATE(3310), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, - sym_jsx_namespace_name, + anon_sym_COMMA, + anon_sym_SEMI, + [130534] = 7, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(5074), 1, + anon_sym_RBRACE, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, - sym_jsx_expression, - sym_jsx_attribute, - [130769] = 9, - ACTIONS(6318), 1, + ACTIONS(3758), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [130560] = 3, + ACTIONS(6970), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4202), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + [130578] = 9, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(6322), 1, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6331), 1, + ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6946), 1, + ACTIONS(6942), 1, anon_sym_GT, - ACTIONS(7016), 1, + ACTIONS(6972), 1, anon_sym_SLASH_GT, - STATE(3310), 1, + STATE(3468), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, + STATE(3796), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, + STATE(4421), 2, sym_jsx_expression, sym_jsx_attribute, - [130799] = 9, - ACTIONS(6318), 1, + [130608] = 9, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(6322), 1, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6331), 1, + ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6950), 1, + ACTIONS(6878), 1, anon_sym_GT, - ACTIONS(7018), 1, + ACTIONS(6974), 1, anon_sym_SLASH_GT, - STATE(3310), 1, + STATE(3468), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, + STATE(3796), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, + STATE(4421), 2, sym_jsx_expression, sym_jsx_attribute, - [130829] = 8, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(7020), 1, - anon_sym_BANG, - ACTIONS(7022), 1, - anon_sym_QMARK, - STATE(3966), 1, - sym_type_annotation, - STATE(5141), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6520), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [130857] = 9, - ACTIONS(6318), 1, + [130638] = 9, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(6322), 1, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6331), 1, + ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6942), 1, + ACTIONS(6920), 1, anon_sym_GT, - ACTIONS(7024), 1, + ACTIONS(6976), 1, anon_sym_SLASH_GT, - STATE(3407), 1, + STATE(3468), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, + STATE(3796), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, + STATE(4421), 2, sym_jsx_expression, sym_jsx_attribute, - [130887] = 8, - ACTIONS(6459), 1, + [130668] = 8, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(7026), 1, + ACTIONS(6978), 1, anon_sym_BANG, - ACTIONS(7028), 1, + ACTIONS(6980), 1, anon_sym_QMARK, - STATE(3969), 1, + STATE(4458), 1, sym_type_annotation, - STATE(4638), 1, + STATE(5216), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(6472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130915] = 8, - ACTIONS(6459), 1, + [130696] = 8, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(7030), 1, + ACTIONS(6982), 1, anon_sym_BANG, - ACTIONS(7032), 1, + ACTIONS(6984), 1, anon_sym_QMARK, - STATE(3972), 1, + STATE(4227), 1, sym_type_annotation, - STATE(4734), 1, + STATE(4880), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(6472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130943] = 10, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6769), 1, - anon_sym_LBRACE, - ACTIONS(6875), 1, - anon_sym_extends, - ACTIONS(6877), 1, - anon_sym_implements, - STATE(2291), 1, - sym_class_body, - STATE(3662), 1, - sym_type_parameters, - STATE(4841), 1, - sym_extends_clause, - STATE(5429), 1, - sym_class_heritage, - STATE(5782), 1, - sym_implements_clause, + [130724] = 7, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(724), 1, + anon_sym_RBRACE, + ACTIONS(4429), 1, + anon_sym_EQ, + STATE(5129), 1, + aux_sym_object_repeat1, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130975] = 2, + ACTIONS(3758), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [130750] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6896), 1, + anon_sym_GT, + ACTIONS(6986), 1, + anon_sym_SLASH_GT, + STATE(3310), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3796), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4135), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [130991] = 9, - ACTIONS(6318), 1, + STATE(4421), 2, + sym_jsx_expression, + sym_jsx_attribute, + [130780] = 9, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(6322), 1, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6331), 1, + ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6946), 1, + ACTIONS(6846), 1, anon_sym_GT, - ACTIONS(7034), 1, + ACTIONS(6988), 1, anon_sym_SLASH_GT, - STATE(3310), 1, + STATE(3468), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, + STATE(3796), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, + STATE(4421), 2, sym_jsx_expression, sym_jsx_attribute, - [131021] = 4, - ACTIONS(7036), 1, - anon_sym_COLON, + [130810] = 3, + ACTIONS(6918), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3975), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(6806), 5, + ACTIONS(4208), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [131041] = 10, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6875), 1, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - ACTIONS(6877), 1, - anon_sym_implements, - ACTIONS(7038), 1, - anon_sym_LBRACE, - STATE(807), 1, - sym_class_body, - STATE(3717), 1, - sym_type_parameters, - STATE(4841), 1, - sym_extends_clause, - STATE(5490), 1, - sym_class_heritage, - STATE(5782), 1, - sym_implements_clause, + [130828] = 8, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(6990), 1, + anon_sym_BANG, + ACTIONS(6992), 1, + anon_sym_QMARK, + STATE(3987), 1, + sym_type_annotation, + STATE(5010), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [131073] = 9, - ACTIONS(6318), 1, + ACTIONS(6472), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [130856] = 9, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(6322), 1, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6331), 1, + ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6950), 1, + ACTIONS(6603), 1, anon_sym_GT, - ACTIONS(7040), 1, + ACTIONS(6605), 1, anon_sym_SLASH_GT, - STATE(3310), 1, + STATE(3299), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, + STATE(3796), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, + STATE(4421), 2, sym_jsx_expression, sym_jsx_attribute, - [131103] = 10, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6769), 1, + [130886] = 7, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6875), 1, - anon_sym_extends, - ACTIONS(6877), 1, - anon_sym_implements, - STATE(2232), 1, - sym_class_body, - STATE(3565), 1, - sym_type_parameters, - STATE(4841), 1, - sym_extends_clause, - STATE(5476), 1, - sym_class_heritage, - STATE(5782), 1, - sym_implements_clause, + ACTIONS(6994), 1, + anon_sym_DQUOTE, + ACTIONS(6996), 1, + anon_sym_SQUOTE, + ACTIONS(6998), 1, + anon_sym_LT, + STATE(3182), 1, + sym_jsx_opening_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - [131135] = 8, - ACTIONS(6459), 1, + STATE(4253), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_string, + [130912] = 8, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(7042), 1, + ACTIONS(7000), 1, anon_sym_BANG, - ACTIONS(7044), 1, + ACTIONS(7002), 1, anon_sym_QMARK, - STATE(4258), 1, + STATE(3934), 1, sym_type_annotation, - STATE(4826), 1, + STATE(4613), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6602), 3, + ACTIONS(6472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131163] = 2, + [130940] = 5, + ACTIONS(6358), 1, + anon_sym_DOT, + ACTIONS(6692), 1, + anon_sym_LPAREN, + STATE(2893), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2333), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, + ACTIONS(4054), 6, + anon_sym_as, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [131179] = 10, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6769), 1, - anon_sym_LBRACE, - ACTIONS(6875), 1, - anon_sym_extends, - ACTIONS(6877), 1, - anon_sym_implements, - STATE(2214), 1, - sym_class_body, - STATE(3697), 1, - sym_type_parameters, - STATE(4841), 1, - sym_extends_clause, - STATE(5533), 1, - sym_class_heritage, - STATE(5782), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [131211] = 10, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6875), 1, - anon_sym_extends, - ACTIONS(6877), 1, - anon_sym_implements, - ACTIONS(6898), 1, + [130962] = 7, + ACTIONS(6305), 1, anon_sym_LBRACE, - STATE(3707), 1, - sym_type_parameters, - STATE(4068), 1, - sym_class_body, - STATE(4841), 1, - sym_extends_clause, - STATE(5556), 1, - sym_class_heritage, - STATE(5782), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [131243] = 9, - ACTIONS(2291), 1, + ACTIONS(6994), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(6996), 1, anon_sym_SQUOTE, - ACTIONS(6753), 1, - sym_identifier, - ACTIONS(6755), 1, - anon_sym_type, - ACTIONS(6761), 1, - anon_sym_typeof, - STATE(5260), 1, - sym__import_identifier, - STATE(5324), 1, - sym_import_specifier, + ACTIONS(6998), 1, + anon_sym_LT, + STATE(3182), 1, + sym_jsx_opening_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5894), 2, - sym__module_export_name, - sym_string, - [131273] = 8, - ACTIONS(6459), 1, + STATE(4254), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_string, + [130988] = 8, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(7046), 1, + ACTIONS(7004), 1, anon_sym_BANG, - ACTIONS(7048), 1, + ACTIONS(7006), 1, anon_sym_QMARK, - STATE(4272), 1, + STATE(4160), 1, sym_type_annotation, - STATE(4839), 1, + STATE(4679), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6602), 3, + ACTIONS(6559), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131301] = 8, - ACTIONS(6459), 1, + [131016] = 8, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(7050), 1, + ACTIONS(7008), 1, anon_sym_BANG, - ACTIONS(7052), 1, + ACTIONS(7010), 1, anon_sym_QMARK, - STATE(4274), 1, + STATE(3989), 1, sym_type_annotation, - STATE(4845), 1, + STATE(5031), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6602), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [131329] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4173), 9, + ACTIONS(6472), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [131345] = 8, - ACTIONS(6459), 1, + [131044] = 7, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(7054), 1, - anon_sym_BANG, - ACTIONS(7056), 1, - anon_sym_QMARK, - STATE(4281), 1, + STATE(4451), 1, sym_type_annotation, - STATE(4851), 1, + STATE(5212), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6602), 3, + ACTIONS(6555), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(6553), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131373] = 10, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6804), 1, - anon_sym_LBRACE, - ACTIONS(6875), 1, - anon_sym_extends, - ACTIONS(6877), 1, - anon_sym_implements, - STATE(1719), 1, - sym_class_body, - STATE(3715), 1, - sym_type_parameters, - STATE(4841), 1, - sym_extends_clause, - STATE(5251), 1, - sym_class_heritage, - STATE(5782), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [131405] = 2, + [131070] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4101), 9, + ACTIONS(4262), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248096,102 +246070,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [131421] = 7, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6828), 1, - anon_sym_EQ, - STATE(4196), 1, - sym__initializer, - STATE(4458), 1, - sym_type_annotation, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6834), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(6830), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [131447] = 2, + [131086] = 5, + ACTIONS(6964), 1, + anon_sym_AMP, + ACTIONS(6966), 1, + anon_sym_PIPE, + ACTIONS(6968), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4109), 9, + ACTIONS(4262), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [131463] = 7, - ACTIONS(6459), 1, + [131108] = 8, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4434), 1, + ACTIONS(7012), 1, + anon_sym_BANG, + ACTIONS(7014), 1, + anon_sym_QMARK, + STATE(3974), 1, sym_type_annotation, - STATE(5178), 1, + STATE(4706), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6560), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(6558), 3, + ACTIONS(6472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131489] = 3, - ACTIONS(6964), 1, - anon_sym_AMP, + [131136] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6942), 1, + anon_sym_GT, + ACTIONS(7016), 1, + anon_sym_SLASH_GT, + STATE(3468), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3796), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4421), 2, + sym_jsx_expression, + sym_jsx_attribute, + [131166] = 7, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(722), 1, + anon_sym_RBRACE, + ACTIONS(4429), 1, + anon_sym_EQ, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3758), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [131192] = 8, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(7020), 1, + anon_sym_BANG, + ACTIONS(7022), 1, + anon_sym_QMARK, + STATE(4286), 1, + sym_type_annotation, + STATE(4918), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4113), 8, + ACTIONS(7018), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_extends, - [131507] = 2, + [131220] = 7, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(5023), 1, + anon_sym_RBRACE, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4119), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(3758), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [131246] = 7, + ACTIONS(237), 1, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [131523] = 2, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(5072), 1, + anon_sym_RBRACE, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, + STATE(5191), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4127), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [131539] = 5, + ACTIONS(3758), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [131272] = 5, ACTIONS(6964), 1, anon_sym_AMP, ACTIONS(6966), 1, @@ -248201,128 +246215,76 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4139), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - [131561] = 4, - ACTIONS(6988), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4085), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - ACTIONS(4147), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [131581] = 3, - ACTIONS(7058), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4153), 8, + ACTIONS(4074), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - [131599] = 3, - ACTIONS(6988), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4159), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [131617] = 10, - ACTIONS(2537), 1, + [131294] = 10, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6769), 1, + ACTIONS(6752), 1, anon_sym_LBRACE, - ACTIONS(6875), 1, + ACTIONS(6902), 1, anon_sym_extends, - ACTIONS(6877), 1, + ACTIONS(6904), 1, anon_sym_implements, - STATE(2319), 1, + STATE(2310), 1, sym_class_body, - STATE(3620), 1, + STATE(3571), 1, sym_type_parameters, - STATE(4841), 1, + STATE(5174), 1, sym_extends_clause, - STATE(5466), 1, + STATE(5500), 1, sym_class_heritage, - STATE(5782), 1, + STATE(5952), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [131649] = 10, - ACTIONS(2537), 1, + [131326] = 10, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6875), 1, + ACTIONS(6752), 1, + anon_sym_LBRACE, + ACTIONS(6902), 1, anon_sym_extends, - ACTIONS(6877), 1, + ACTIONS(6904), 1, anon_sym_implements, - ACTIONS(7038), 1, - anon_sym_LBRACE, - STATE(850), 1, + STATE(2324), 1, sym_class_body, - STATE(3610), 1, + STATE(3680), 1, sym_type_parameters, - STATE(4841), 1, + STATE(5174), 1, sym_extends_clause, - STATE(5552), 1, + STATE(5453), 1, sym_class_heritage, - STATE(5782), 1, + STATE(5952), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [131681] = 8, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(7060), 1, - anon_sym_BANG, - ACTIONS(7062), 1, - anon_sym_QMARK, - STATE(3989), 1, - sym_type_annotation, - STATE(4767), 1, - sym__initializer, + [131358] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(4028), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [131709] = 2, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [131374] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7064), 9, + ACTIONS(7024), 9, anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, @@ -248332,185 +246294,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_QMARK, - [131725] = 8, - ACTIONS(6459), 1, + [131390] = 7, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(7066), 1, - anon_sym_BANG, - ACTIONS(7068), 1, - anon_sym_QMARK, - STATE(4081), 1, + STATE(4166), 1, sym_type_annotation, - STATE(4821), 1, + STATE(4716), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6564), 3, + ACTIONS(6524), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(6522), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131753] = 9, - ACTIONS(6318), 1, + [131416] = 9, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(6322), 1, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6331), 1, + ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6904), 1, + ACTIONS(6846), 1, anon_sym_GT, - ACTIONS(7070), 1, + ACTIONS(7026), 1, anon_sym_SLASH_GT, - STATE(3310), 1, + STATE(3468), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, + STATE(3796), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, + STATE(4421), 2, sym_jsx_expression, sym_jsx_attribute, - [131783] = 2, + [131446] = 4, + ACTIONS(6932), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4379), 9, + STATE(4428), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(6770), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [131799] = 9, - ACTIONS(6318), 1, + [131466] = 9, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(6322), 1, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6331), 1, + ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6904), 1, + ACTIONS(6896), 1, anon_sym_GT, - ACTIONS(7072), 1, + ACTIONS(7028), 1, anon_sym_SLASH_GT, - STATE(3310), 1, + STATE(3313), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, + STATE(3796), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, + STATE(4421), 2, sym_jsx_expression, sym_jsx_attribute, - [131829] = 9, - ACTIONS(6318), 1, - sym_identifier, - ACTIONS(6322), 1, + [131496] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4092), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(6331), 1, - sym_jsx_identifier, - ACTIONS(6916), 1, - anon_sym_GT, - ACTIONS(7074), 1, - anon_sym_SLASH_GT, - STATE(3310), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, - sym_jsx_namespace_name, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [131512] = 8, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(7030), 1, + anon_sym_BANG, + ACTIONS(7032), 1, + anon_sym_QMARK, + STATE(4407), 1, + sym_type_annotation, + STATE(5128), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, - sym_jsx_expression, - sym_jsx_attribute, - [131859] = 10, - ACTIONS(2537), 1, + ACTIONS(6472), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [131540] = 10, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6875), 1, + ACTIONS(6902), 1, anon_sym_extends, - ACTIONS(6877), 1, + ACTIONS(6904), 1, anon_sym_implements, - ACTIONS(6910), 1, + ACTIONS(6916), 1, anon_sym_LBRACE, - STATE(261), 1, + STATE(767), 1, sym_class_body, - STATE(3616), 1, + STATE(3742), 1, sym_type_parameters, - STATE(4841), 1, + STATE(5174), 1, sym_extends_clause, - STATE(5504), 1, + STATE(5316), 1, sym_class_heritage, - STATE(5782), 1, + STATE(5952), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [131891] = 2, + [131572] = 8, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(7034), 1, + anon_sym_BANG, + ACTIONS(7036), 1, + anon_sym_QMARK, + STATE(4169), 1, + sym_type_annotation, + STATE(4709), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2337), 9, + ACTIONS(6559), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [131907] = 9, - ACTIONS(6318), 1, - sym_identifier, - ACTIONS(6322), 1, - anon_sym_LBRACE, - ACTIONS(6331), 1, - sym_jsx_identifier, - ACTIONS(6916), 1, - anon_sym_GT, - ACTIONS(7076), 1, - anon_sym_SLASH_GT, - STATE(3310), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3955), 2, - sym_jsx_expression, - sym_jsx_attribute, - [131937] = 8, - ACTIONS(6459), 1, + [131600] = 8, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(7078), 1, + ACTIONS(7038), 1, anon_sym_BANG, - ACTIONS(7080), 1, + ACTIONS(7040), 1, anon_sym_QMARK, - STATE(4172), 1, + STATE(4047), 1, sym_type_annotation, - STATE(4631), 1, + STATE(4736), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6564), 3, + ACTIONS(6466), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131965] = 2, + [131628] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4185), 9, + ACTIONS(4282), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248520,51 +246481,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [131981] = 8, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(6839), 1, - sym_identifier, - ACTIONS(7082), 1, - anon_sym_RBRACE, - STATE(5336), 1, - sym_export_specifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6841), 2, - anon_sym_type, - anon_sym_typeof, - STATE(5045), 2, - sym__module_export_name, - sym_string, - [132009] = 8, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(7084), 1, - anon_sym_BANG, - ACTIONS(7086), 1, - anon_sym_QMARK, - STATE(4213), 1, - sym_type_annotation, - STATE(4744), 1, - sym__initializer, + [131644] = 3, + ACTIONS(6964), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6564), 3, + ACTIONS(4286), 8, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [132037] = 2, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_extends, + [131662] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4193), 9, + ACTIONS(4292), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248574,71 +246510,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132053] = 8, - ACTIONS(6459), 1, + [131678] = 8, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(7088), 1, + ACTIONS(7042), 1, anon_sym_BANG, - ACTIONS(7090), 1, + ACTIONS(7044), 1, anon_sym_QMARK, - STATE(4249), 1, + STATE(3937), 1, sym_type_annotation, - STATE(4780), 1, + STATE(4653), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6564), 3, + ACTIONS(6472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132081] = 8, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(7092), 1, - anon_sym_BANG, - ACTIONS(7094), 1, - anon_sym_QMARK, - STATE(4269), 1, - sym_type_annotation, - STATE(4837), 1, - sym__initializer, + [131706] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6564), 3, + ACTIONS(4064), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [132109] = 8, - ACTIONS(6459), 1, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [131722] = 8, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(7096), 1, + ACTIONS(7046), 1, anon_sym_BANG, - ACTIONS(7098), 1, + ACTIONS(7048), 1, anon_sym_QMARK, - STATE(4022), 1, + STATE(4430), 1, sym_type_annotation, - STATE(4660), 1, + STATE(5165), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(6472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132137] = 2, + [131750] = 10, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6900), 1, + anon_sym_LBRACE, + ACTIONS(6902), 1, + anon_sym_extends, + ACTIONS(6904), 1, + anon_sym_implements, + STATE(796), 1, + sym_class_body, + STATE(3649), 1, + sym_type_parameters, + STATE(5174), 1, + sym_extends_clause, + STATE(5425), 1, + sym_class_heritage, + STATE(5952), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [131782] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6874), 1, + anon_sym_GT, + ACTIONS(7050), 1, + anon_sym_SLASH_GT, + STATE(3468), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3796), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4421), 2, + sym_jsx_expression, + sym_jsx_attribute, + [131812] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4201), 9, + ACTIONS(2338), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248648,25 +246621,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132153] = 2, + [131828] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6603), 1, + anon_sym_GT, + ACTIONS(6629), 1, + anon_sym_SLASH_GT, + STATE(3341), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3796), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4205), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + STATE(4421), 2, + sym_jsx_expression, + sym_jsx_attribute, + [131858] = 10, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6752), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6902), 1, anon_sym_extends, - [132169] = 2, + ACTIONS(6904), 1, + anon_sym_implements, + STATE(2326), 1, + sym_class_body, + STATE(3710), 1, + sym_type_parameters, + STATE(5174), 1, + sym_extends_clause, + STATE(5305), 1, + sym_class_heritage, + STATE(5952), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [131890] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4209), 9, + ACTIONS(1843), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248676,50 +246678,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132185] = 8, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(7100), 1, - anon_sym_BANG, - ACTIONS(7102), 1, - anon_sym_QMARK, - STATE(4437), 1, - sym_type_annotation, - STATE(5170), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6564), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [132213] = 7, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(4373), 1, - sym_type_annotation, - STATE(5038), 1, - sym__initializer, + [131906] = 5, + ACTIONS(6964), 1, + anon_sym_AMP, + ACTIONS(6966), 1, + anon_sym_PIPE, + ACTIONS(6968), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6477), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(6475), 3, + ACTIONS(4096), 6, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [132239] = 2, + anon_sym_LBRACK, + [131928] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4219), 9, + ACTIONS(4376), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248729,91 +246709,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132255] = 8, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(7104), 1, - anon_sym_BANG, - ACTIONS(7106), 1, - anon_sym_QMARK, - STATE(4449), 1, - sym_type_annotation, - STATE(5197), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6564), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [132283] = 8, - ACTIONS(6459), 1, + [131944] = 8, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(7108), 1, + ACTIONS(7052), 1, anon_sym_BANG, - ACTIONS(7110), 1, + ACTIONS(7054), 1, anon_sym_QMARK, - STATE(4459), 1, + STATE(4155), 1, sym_type_annotation, - STATE(5219), 1, + STATE(4668), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6564), 3, + ACTIONS(6559), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132311] = 8, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(7112), 1, - anon_sym_BANG, - ACTIONS(7114), 1, - anon_sym_QMARK, - STATE(4289), 1, - sym_type_annotation, - STATE(4869), 1, - sym__initializer, + [131972] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6602), 3, + ACTIONS(2342), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [132339] = 8, - ACTIONS(6459), 1, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [131988] = 8, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(7116), 1, + ACTIONS(7056), 1, anon_sym_BANG, - ACTIONS(7118), 1, + ACTIONS(7058), 1, anon_sym_QMARK, - STATE(3995), 1, + STATE(4418), 1, sym_type_annotation, - STATE(5022), 1, + STATE(5150), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(6472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132367] = 2, + [132016] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1927), 9, + ACTIONS(4142), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248823,128 +246777,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132383] = 2, + [132032] = 8, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(7060), 1, + anon_sym_BANG, + ACTIONS(7062), 1, + anon_sym_QMARK, + STATE(4443), 1, + sym_type_annotation, + STATE(5193), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4233), 9, + ACTIONS(6472), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, + [132060] = 6, + ACTIONS(6617), 1, anon_sym_AMP, + ACTIONS(6619), 1, anon_sym_PIPE, + ACTIONS(6621), 1, anon_sym_extends, - [132399] = 5, - ACTIONS(6964), 1, - anon_sym_AMP, - ACTIONS(6966), 1, - anon_sym_PIPE, - ACTIONS(6968), 1, - anon_sym_extends, + ACTIONS(7064), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4233), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(6811), 5, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - [132421] = 10, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6875), 1, - anon_sym_extends, - ACTIONS(6877), 1, - anon_sym_implements, - ACTIONS(6898), 1, - anon_sym_LBRACE, - STATE(755), 1, - sym_class_body, - STATE(3596), 1, - sym_type_parameters, - STATE(4841), 1, - sym_extends_clause, - STATE(5351), 1, - sym_class_heritage, - STATE(5782), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [132453] = 10, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6875), 1, - anon_sym_extends, - ACTIONS(6877), 1, - anon_sym_implements, - ACTIONS(6898), 1, - anon_sym_LBRACE, - STATE(3730), 1, - sym_type_parameters, - STATE(4122), 1, - sym_class_body, - STATE(4841), 1, - sym_extends_clause, - STATE(5345), 1, - sym_class_heritage, - STATE(5782), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [132485] = 9, - ACTIONS(6318), 1, - sym_identifier, - ACTIONS(6322), 1, - anon_sym_LBRACE, - ACTIONS(6331), 1, - sym_jsx_identifier, - ACTIONS(6646), 1, - anon_sym_GT, - ACTIONS(6648), 1, - anon_sym_SLASH_GT, - STATE(3464), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3955), 2, - sym_jsx_expression, - sym_jsx_attribute, - [132515] = 9, - ACTIONS(6318), 1, - sym_identifier, - ACTIONS(6322), 1, - anon_sym_LBRACE, - ACTIONS(6331), 1, - sym_jsx_identifier, - ACTIONS(6646), 1, - anon_sym_GT, - ACTIONS(6650), 1, - anon_sym_SLASH_GT, - STATE(3373), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, - sym_jsx_namespace_name, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + [132084] = 8, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(7066), 1, + anon_sym_BANG, + ACTIONS(7068), 1, + anon_sym_QMARK, + STATE(4218), 1, + sym_type_annotation, + STATE(4797), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, - sym_jsx_expression, - sym_jsx_attribute, - [132545] = 2, + ACTIONS(6466), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [132112] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4253), 9, + ACTIONS(4380), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248954,26 +246849,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132561] = 3, + [132128] = 5, ACTIONS(6964), 1, anon_sym_AMP, + ACTIONS(6966), 1, + anon_sym_PIPE, + ACTIONS(6968), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4257), 8, + ACTIONS(4100), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_extends, - [132579] = 2, + [132150] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4261), 9, + ACTIONS(4336), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248983,297 +246880,256 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132595] = 9, - ACTIONS(6318), 1, - sym_identifier, - ACTIONS(6322), 1, - anon_sym_LBRACE, - ACTIONS(6331), 1, - sym_jsx_identifier, - ACTIONS(6922), 1, - anon_sym_GT, - ACTIONS(7120), 1, - anon_sym_SLASH_GT, - STATE(3310), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, - sym_jsx_namespace_name, + [132166] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, - sym_jsx_expression, - sym_jsx_attribute, - [132625] = 9, - ACTIONS(6318), 1, + ACTIONS(4344), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [132182] = 9, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(6322), 1, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6331), 1, + ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6930), 1, - anon_sym_GT, - ACTIONS(7122), 1, + ACTIONS(6318), 1, anon_sym_SLASH_GT, - STATE(3314), 1, + ACTIONS(6603), 1, + anon_sym_GT, + STATE(3395), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, + STATE(3796), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, + STATE(4421), 2, sym_jsx_expression, sym_jsx_attribute, - [132655] = 2, + [132212] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4407), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(7070), 9, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [132671] = 8, - ACTIONS(6459), 1, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [132228] = 8, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(7124), 1, + ACTIONS(7072), 1, anon_sym_BANG, - ACTIONS(7126), 1, + ACTIONS(7074), 1, anon_sym_QMARK, - STATE(4031), 1, + STATE(4150), 1, sym_type_annotation, - STATE(4654), 1, + STATE(4661), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6564), 3, + ACTIONS(6559), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132699] = 2, + [132256] = 8, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(7076), 1, + anon_sym_BANG, + ACTIONS(7078), 1, + anon_sym_QMARK, + STATE(3935), 1, + sym_type_annotation, + STATE(4632), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2347), 9, + ACTIONS(6466), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [132715] = 9, - ACTIONS(6318), 1, - sym_identifier, - ACTIONS(6322), 1, - anon_sym_LBRACE, - ACTIONS(6331), 1, - sym_jsx_identifier, - ACTIONS(6339), 1, - anon_sym_SLASH_GT, - ACTIONS(6646), 1, - anon_sym_GT, - STATE(3363), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3955), 2, - sym_jsx_expression, - sym_jsx_attribute, - [132745] = 8, - ACTIONS(6459), 1, + [132284] = 8, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(7128), 1, + ACTIONS(7080), 1, anon_sym_BANG, - ACTIONS(7130), 1, + ACTIONS(7082), 1, anon_sym_QMARK, - STATE(4046), 1, + STATE(3984), 1, sym_type_annotation, - STATE(4784), 1, + STATE(4865), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6564), 3, + ACTIONS(6472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132773] = 8, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, + [132312] = 7, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(7132), 1, - anon_sym_BANG, - ACTIONS(7134), 1, - anon_sym_QMARK, - STATE(4051), 1, - sym_type_annotation, - STATE(4823), 1, + ACTIONS(6772), 1, + anon_sym_EQ, + STATE(4127), 1, sym__initializer, + STATE(4264), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6564), 3, + ACTIONS(6778), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(6774), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132801] = 9, - ACTIONS(6318), 1, + [132338] = 9, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(6322), 1, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6331), 1, + ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6938), 1, + ACTIONS(6942), 1, anon_sym_GT, - ACTIONS(7136), 1, + ACTIONS(7084), 1, anon_sym_SLASH_GT, - STATE(3310), 1, + STATE(3468), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, + STATE(3796), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, + STATE(4421), 2, sym_jsx_expression, sym_jsx_attribute, - [132831] = 8, - ACTIONS(6459), 1, + [132368] = 8, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(7138), 1, + ACTIONS(7086), 1, anon_sym_BANG, - ACTIONS(7140), 1, + ACTIONS(7088), 1, anon_sym_QMARK, - STATE(3941), 1, + STATE(4066), 1, sym_type_annotation, - STATE(5147), 1, + STATE(4888), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(6466), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132859] = 10, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6769), 1, - anon_sym_LBRACE, - ACTIONS(6875), 1, - anon_sym_extends, - ACTIONS(6877), 1, - anon_sym_implements, - STATE(2100), 1, - sym_class_body, - STATE(3537), 1, - sym_type_parameters, - STATE(4841), 1, - sym_extends_clause, - STATE(5459), 1, - sym_class_heritage, - STATE(5782), 1, - sym_implements_clause, + [132396] = 8, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(7090), 1, + anon_sym_BANG, + ACTIONS(7092), 1, + anon_sym_QMARK, + STATE(4072), 1, + sym_type_annotation, + STATE(4945), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [132891] = 7, - ACTIONS(6459), 1, + ACTIONS(6466), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [132424] = 7, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4220), 1, + STATE(4325), 1, sym_type_annotation, - STATE(4779), 1, + STATE(4987), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6463), 2, + ACTIONS(6492), 2, anon_sym_BANG, anon_sym_QMARK, - ACTIONS(6461), 3, + ACTIONS(6490), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132917] = 9, - ACTIONS(6318), 1, + [132450] = 9, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(6322), 1, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6331), 1, + ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6942), 1, + ACTIONS(6870), 1, anon_sym_GT, - ACTIONS(7142), 1, + ACTIONS(7094), 1, anon_sym_SLASH_GT, - STATE(3319), 1, + STATE(3468), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, + STATE(3796), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, + STATE(4421), 2, sym_jsx_expression, sym_jsx_attribute, - [132947] = 10, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6875), 1, - anon_sym_extends, - ACTIONS(6877), 1, - anon_sym_implements, - ACTIONS(6898), 1, - anon_sym_LBRACE, - STATE(765), 1, - sym_class_body, - STATE(3734), 1, - sym_type_parameters, - STATE(4841), 1, - sym_extends_clause, - STATE(5521), 1, - sym_class_heritage, - STATE(5782), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [132979] = 2, + [132480] = 8, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(7096), 1, + anon_sym_BANG, + ACTIONS(7098), 1, + anon_sym_QMARK, + STATE(4322), 1, + sym_type_annotation, + STATE(4974), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7144), 9, - anon_sym_EQ, + ACTIONS(7018), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [132995] = 5, + anon_sym_SEMI, + [132508] = 5, ACTIONS(6964), 1, anon_sym_AMP, ACTIONS(6966), 1, @@ -249283,18 +247139,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4403), 6, + ACTIONS(4348), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [133017] = 2, + [132530] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4037), 9, + ACTIONS(4352), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -249304,49 +247160,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [133033] = 7, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(5071), 1, - anon_sym_RBRACE, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3791), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [133059] = 7, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(727), 1, - anon_sym_RBRACE, - ACTIONS(4469), 1, - anon_sym_EQ, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3791), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [133085] = 2, + [132546] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4303), 9, + ACTIONS(4356), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -249356,11 +247174,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [133101] = 2, + [132562] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4307), 9, + ACTIONS(4032), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -249370,7 +247188,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [133117] = 5, + [132578] = 8, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(7100), 1, + anon_sym_BANG, + ACTIONS(7102), 1, + anon_sym_QMARK, + STATE(4422), 1, + sym_type_annotation, + STATE(5152), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6472), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [132606] = 8, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(7104), 1, + anon_sym_BANG, + ACTIONS(7106), 1, + anon_sym_QMARK, + STATE(4405), 1, + sym_type_annotation, + STATE(4862), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6466), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [132634] = 5, ACTIONS(6964), 1, anon_sym_AMP, ACTIONS(6966), 1, @@ -249380,18 +247238,40 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4311), 6, + ACTIONS(4356), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [133139] = 2, + [132656] = 10, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6752), 1, + anon_sym_LBRACE, + ACTIONS(6902), 1, + anon_sym_extends, + ACTIONS(6904), 1, + anon_sym_implements, + STATE(2350), 1, + sym_class_body, + STATE(3588), 1, + sym_type_parameters, + STATE(5174), 1, + sym_extends_clause, + STATE(5568), 1, + sym_class_heritage, + STATE(5952), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [132688] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4327), 9, + ACTIONS(4190), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -249401,11 +247281,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [133155] = 2, + [132704] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4335), 9, + ACTIONS(4124), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -249415,28 +247295,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [133171] = 5, - ACTIONS(6964), 1, + [132720] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2330), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_AMP, - ACTIONS(6966), 1, anon_sym_PIPE, - ACTIONS(6968), 1, anon_sym_extends, + [132736] = 8, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(7108), 1, + anon_sym_BANG, + ACTIONS(7110), 1, + anon_sym_QMARK, + STATE(4205), 1, + sym_type_annotation, + STATE(4785), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4335), 6, + ACTIONS(6559), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [132764] = 8, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(7112), 1, + anon_sym_BANG, + ACTIONS(7114), 1, + anon_sym_QMARK, + STATE(4459), 1, + sym_type_annotation, + STATE(5204), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6466), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [132792] = 10, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6902), 1, + anon_sym_extends, + ACTIONS(6904), 1, + anon_sym_implements, + ACTIONS(6924), 1, anon_sym_LBRACE, + STATE(236), 1, + sym_class_body, + STATE(3577), 1, + sym_type_parameters, + STATE(5174), 1, + sym_extends_clause, + STATE(5526), 1, + sym_class_heritage, + STATE(5952), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [132824] = 8, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(7116), 1, + anon_sym_BANG, + ACTIONS(7118), 1, + anon_sym_QMARK, + STATE(3947), 1, + sym_type_annotation, + STATE(4705), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6466), 3, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - [133193] = 2, + [132852] = 8, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(7120), 1, + anon_sym_BANG, + ACTIONS(7122), 1, + anon_sym_QMARK, + STATE(4112), 1, + sym_type_annotation, + STATE(5176), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6559), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [132880] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4265), 9, + ACTIONS(4212), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -249446,109 +247425,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [133209] = 7, - ACTIONS(3456), 1, - anon_sym_LPAREN, - ACTIONS(6051), 1, + [132896] = 10, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(7146), 1, - anon_sym_DOT, - STATE(1231), 1, - sym_arguments, - STATE(5549), 1, - sym_type_arguments, + ACTIONS(6902), 1, + anon_sym_extends, + ACTIONS(6904), 1, + anon_sym_implements, + ACTIONS(6916), 1, + anon_sym_LBRACE, + STATE(3635), 1, + sym_type_parameters, + STATE(3967), 1, + sym_class_body, + STATE(5174), 1, + sym_extends_clause, + STATE(5332), 1, + sym_class_heritage, + STATE(5952), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3533), 4, - anon_sym_export, - anon_sym_class, - anon_sym_AT, - anon_sym_abstract, - [133235] = 9, - ACTIONS(6318), 1, + [132928] = 9, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(6322), 1, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6331), 1, + ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6946), 1, + ACTIONS(6920), 1, anon_sym_GT, - ACTIONS(7148), 1, + ACTIONS(7124), 1, anon_sym_SLASH_GT, - STATE(3310), 1, + STATE(3468), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, + STATE(3796), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, + STATE(4421), 2, sym_jsx_expression, sym_jsx_attribute, - [133265] = 9, - ACTIONS(6318), 1, + [132958] = 9, + ACTIONS(2970), 1, + anon_sym_DQUOTE, + ACTIONS(2972), 1, + anon_sym_SQUOTE, + ACTIONS(6740), 1, sym_identifier, - ACTIONS(6322), 1, - anon_sym_LBRACE, - ACTIONS(6331), 1, - sym_jsx_identifier, - ACTIONS(6950), 1, - anon_sym_GT, - ACTIONS(7150), 1, - anon_sym_SLASH_GT, - STATE(3310), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, - sym_jsx_namespace_name, + ACTIONS(6742), 1, + anon_sym_type, + ACTIONS(6748), 1, + anon_sym_typeof, + STATE(5428), 1, + sym__import_identifier, + STATE(5458), 1, + sym_import_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, - sym_jsx_expression, - sym_jsx_attribute, - [133295] = 9, - ACTIONS(6318), 1, + STATE(5603), 2, + sym__module_export_name, + sym_string, + [132988] = 8, + ACTIONS(2970), 1, + anon_sym_DQUOTE, + ACTIONS(2972), 1, + anon_sym_SQUOTE, + ACTIONS(6803), 1, sym_identifier, - ACTIONS(6322), 1, - anon_sym_LBRACE, - ACTIONS(6331), 1, - sym_jsx_identifier, - ACTIONS(6335), 1, - anon_sym_SLASH_GT, - ACTIONS(6646), 1, - anon_sym_GT, - STATE(3333), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3819), 1, - sym_jsx_namespace_name, + ACTIONS(7126), 1, + anon_sym_RBRACE, + STATE(5553), 1, + sym_export_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3955), 2, - sym_jsx_expression, - sym_jsx_attribute, - [133325] = 4, - ACTIONS(7036), 1, - anon_sym_COLON, + ACTIONS(6805), 2, + anon_sym_type, + anon_sym_typeof, + STATE(5027), 2, + sym__module_export_name, + sym_string, + [133016] = 10, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6752), 1, + anon_sym_LBRACE, + ACTIONS(6902), 1, + anon_sym_extends, + ACTIONS(6904), 1, + anon_sym_implements, + STATE(2110), 1, + sym_class_body, + STATE(3642), 1, + sym_type_parameters, + STATE(5174), 1, + sym_extends_clause, + STATE(5503), 1, + sym_class_heritage, + STATE(5952), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4454), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(6796), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + [133048] = 10, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6902), 1, + anon_sym_extends, + ACTIONS(6904), 1, + anon_sym_implements, + ACTIONS(6916), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [133345] = 2, + STATE(3647), 1, + sym_type_parameters, + STATE(4036), 1, + sym_class_body, + STATE(5174), 1, + sym_extends_clause, + STATE(5513), 1, + sym_class_heritage, + STATE(5952), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [133080] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1731), 9, + ACTIONS(4146), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -249558,124 +247567,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [133361] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7152), 9, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [133377] = 6, - ACTIONS(6616), 1, - anon_sym_AMP, - ACTIONS(6618), 1, - anon_sym_PIPE, - ACTIONS(6620), 1, + [133096] = 10, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6784), 1, + anon_sym_LBRACE, + ACTIONS(6902), 1, anon_sym_extends, - ACTIONS(7154), 1, - anon_sym_EQ, + ACTIONS(6904), 1, + anon_sym_implements, + STATE(1616), 1, + sym_class_body, + STATE(3648), 1, + sym_type_parameters, + STATE(5174), 1, + sym_extends_clause, + STATE(5532), 1, + sym_class_heritage, + STATE(5952), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6808), 5, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_GT, - [133401] = 7, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(5015), 1, - anon_sym_RBRACE, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, + [133128] = 10, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6784), 1, + anon_sym_LBRACE, + ACTIONS(6902), 1, + anon_sym_extends, + ACTIONS(6904), 1, + anon_sym_implements, + STATE(1694), 1, + sym_class_body, + STATE(3528), 1, + sym_type_parameters, + STATE(5174), 1, + sym_extends_clause, + STATE(5348), 1, + sym_class_heritage, + STATE(5952), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 4, - anon_sym_LPAREN, + [133160] = 7, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [133427] = 2, + STATE(4235), 1, + sym_type_annotation, + STATE(4837), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4359), 9, + ACTIONS(6532), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(6530), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [133443] = 2, + [133186] = 8, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(6827), 1, + sym__automatic_semicolon, + STATE(4264), 1, + sym_type_annotation, + STATE(4886), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4363), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(6774), 2, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [133459] = 2, + ACTIONS(6778), 2, + anon_sym_in, + anon_sym_of, + [133214] = 8, + ACTIONS(7128), 1, + sym_identifier, + ACTIONS(7131), 1, + anon_sym_LBRACE, + ACTIONS(7136), 1, + sym_jsx_identifier, + STATE(3468), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3796), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4367), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [133475] = 8, - ACTIONS(6459), 1, + ACTIONS(7134), 2, + anon_sym_GT, + anon_sym_SLASH_GT, + STATE(4421), 2, + sym_jsx_expression, + sym_jsx_attribute, + [133242] = 8, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(7156), 1, + ACTIONS(7139), 1, anon_sym_BANG, - ACTIONS(7158), 1, + ACTIONS(7141), 1, anon_sym_QMARK, - STATE(4378), 1, + STATE(4447), 1, sym_type_annotation, - STATE(5042), 1, + STATE(5202), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6851), 3, + ACTIONS(6472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133503] = 2, + [133270] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2351), 9, + ACTIONS(2334), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -249685,11 +247704,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [133519] = 2, + [133286] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7160), 9, + ACTIONS(7143), 9, anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, @@ -249699,450 +247718,370 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_QMARK, - [133535] = 7, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(4442), 1, - sym_type_annotation, - STATE(5185), 1, - sym__initializer, + [133302] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6544), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(6542), 3, + ACTIONS(4024), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [133561] = 7, - ACTIONS(241), 1, - anon_sym_COMMA, - ACTIONS(729), 1, - anon_sym_RBRACE, - ACTIONS(4469), 1, - anon_sym_EQ, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, - STATE(5173), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3791), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [133587] = 8, - ACTIONS(6459), 1, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [133318] = 8, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(7162), 1, + ACTIONS(7145), 1, anon_sym_BANG, - ACTIONS(7164), 1, + ACTIONS(7147), 1, anon_sym_QMARK, - STATE(3949), 1, + STATE(4180), 1, sym_type_annotation, - STATE(5043), 1, + STATE(4660), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(6466), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133615] = 7, - ACTIONS(6322), 1, - anon_sym_LBRACE, - ACTIONS(6869), 1, - anon_sym_DQUOTE, - ACTIONS(6871), 1, - anon_sym_SQUOTE, - ACTIONS(6873), 1, + [133346] = 10, + ACTIONS(2478), 1, anon_sym_LT, - STATE(3193), 1, - sym_jsx_opening_element, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4324), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - sym__jsx_string, - [133641] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4105), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(6784), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6902), 1, anon_sym_extends, - [133657] = 6, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(7166), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7168), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7170), 1, - anon_sym_QMARK_COLON, + ACTIONS(6904), 1, + anon_sym_implements, + STATE(2534), 1, + sym_class_body, + STATE(3614), 1, + sym_type_parameters, + STATE(5174), 1, + sym_extends_clause, + STATE(5551), 1, + sym_class_heritage, + STATE(5952), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4318), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [133680] = 6, - ACTIONS(6467), 1, + [133378] = 6, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(7166), 1, + ACTIONS(7149), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7168), 1, + ACTIONS(7151), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7170), 1, + ACTIONS(7153), 1, anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4438), 4, + STATE(4153), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [133703] = 7, - ACTIONS(7172), 1, - sym_escape_sequence, - ACTIONS(7174), 1, - anon_sym_BQUOTE, - ACTIONS(7176), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7178), 1, - sym__template_chars, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3889), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(3947), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [133728] = 4, - ACTIONS(4514), 1, + [133401] = 4, + ACTIONS(4535), 1, anon_sym_LPAREN, - STATE(2293), 1, + STATE(2088), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4185), 6, + ACTIONS(4224), 6, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [133747] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3173), 8, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [133762] = 7, - ACTIONS(7172), 1, - sym_escape_sequence, - ACTIONS(7176), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7178), 1, - sym__template_chars, - ACTIONS(7180), 1, - anon_sym_BQUOTE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3889), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(3947), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [133787] = 7, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(6832), 1, - anon_sym_BANG, - STATE(4458), 1, - sym_type_annotation, - STATE(5215), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6830), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [133812] = 5, - ACTIONS(6717), 1, - anon_sym_AMP, - ACTIONS(6719), 1, - anon_sym_PIPE, - ACTIONS(6721), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7182), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [133833] = 9, - ACTIONS(7184), 1, + [133420] = 9, + ACTIONS(7155), 1, sym_identifier, - ACTIONS(7186), 1, + ACTIONS(7157), 1, anon_sym_const, - ACTIONS(7188), 1, + ACTIONS(7159), 1, anon_sym_GT, - ACTIONS(7190), 1, + ACTIONS(7161), 1, sym_jsx_identifier, - ACTIONS(7192), 1, + ACTIONS(7163), 1, anon_sym_SLASH_GT, - STATE(3122), 1, + STATE(3139), 1, sym_nested_identifier, - STATE(3441), 1, + STATE(3307), 1, sym_jsx_namespace_name, - STATE(4742), 1, + STATE(4801), 1, sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133862] = 7, - ACTIONS(2291), 1, + [133449] = 7, + ACTIONS(3376), 1, + sym_identifier, + ACTIONS(3378), 1, + anon_sym_LBRACE, + ACTIONS(3380), 1, + anon_sym_LBRACK, + ACTIONS(7165), 1, + anon_sym_enum, + STATE(4496), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3624), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [133474] = 7, + ACTIONS(2970), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(2972), 1, anon_sym_SQUOTE, - ACTIONS(6839), 1, + ACTIONS(6803), 1, sym_identifier, - STATE(5336), 1, + STATE(5553), 1, sym_export_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6841), 2, + ACTIONS(6805), 2, anon_sym_type, anon_sym_typeof, - STATE(5045), 2, + STATE(5027), 2, sym__module_export_name, sym_string, - [133887] = 7, - ACTIONS(7172), 1, - sym_escape_sequence, - ACTIONS(7176), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7178), 1, - sym__template_chars, - ACTIONS(7194), 1, - anon_sym_BQUOTE, + [133499] = 7, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(6776), 1, + anon_sym_BANG, + STATE(4264), 1, + sym_type_annotation, + STATE(4878), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3889), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(3947), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [133912] = 7, - ACTIONS(7172), 1, - sym_escape_sequence, - ACTIONS(7176), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7178), 1, - sym__template_chars, - ACTIONS(7196), 1, - anon_sym_BQUOTE, + ACTIONS(6774), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [133524] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3889), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(3947), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [133937] = 5, - ACTIONS(6717), 1, + ACTIONS(1805), 8, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, - ACTIONS(6719), 1, anon_sym_PIPE, - ACTIONS(6721), 1, + anon_sym_extends, + [133539] = 5, + ACTIONS(6964), 1, + anon_sym_AMP, + ACTIONS(6966), 1, + anon_sym_PIPE, + ACTIONS(6968), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7198), 5, + ACTIONS(6811), 5, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [133958] = 9, - ACTIONS(7186), 1, - anon_sym_const, - ACTIONS(7188), 1, - anon_sym_GT, - ACTIONS(7200), 1, + [133560] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1843), 8, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [133575] = 9, + ACTIONS(1499), 1, + anon_sym_import, + ACTIONS(7167), 1, sym_identifier, - ACTIONS(7202), 1, - sym_jsx_identifier, - ACTIONS(7204), 1, - anon_sym_SLASH_GT, - STATE(3181), 1, - sym_nested_identifier, - STATE(3465), 1, - sym_jsx_namespace_name, - STATE(4742), 1, - sym_type_parameter, + ACTIONS(7169), 1, + sym_this, + STATE(2883), 1, + sym__type_query_subscript_expression, + STATE(2887), 1, + sym__type_query_member_expression, + STATE(3099), 1, + sym__type_query_call_expression, + STATE(3239), 1, + sym__type_query_instantiation_expression, + STATE(4495), 1, + sym_import, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133987] = 7, - ACTIONS(7172), 1, + [133604] = 7, + ACTIONS(7171), 1, sym_escape_sequence, - ACTIONS(7176), 1, + ACTIONS(7173), 1, + anon_sym_BQUOTE, + ACTIONS(7175), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7178), 1, + ACTIONS(7177), 1, sym__template_chars, - ACTIONS(7206), 1, - anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3889), 2, + STATE(3819), 2, sym_template_substitution, aux_sym_template_string_repeat1, - STATE(4136), 2, + STATE(4374), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [134012] = 5, - ACTIONS(7208), 1, - anon_sym_LBRACE, - ACTIONS(7210), 1, - anon_sym_DOT, - STATE(4411), 1, - sym_statement_block, + [133629] = 6, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(7149), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7151), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7153), 1, + anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1672), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [134033] = 9, - ACTIONS(1504), 1, + STATE(4454), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [133652] = 9, + ACTIONS(1499), 1, anon_sym_import, - ACTIONS(7212), 1, + ACTIONS(7179), 1, sym_identifier, - ACTIONS(7214), 1, + ACTIONS(7181), 1, sym_this, - STATE(2876), 1, - sym__type_query_member_expression, - STATE(2890), 1, + STATE(2830), 1, sym__type_query_subscript_expression, - STATE(3066), 1, + STATE(2831), 1, + sym__type_query_member_expression, + STATE(2879), 1, sym__type_query_call_expression, - STATE(3195), 1, + STATE(2972), 1, sym__type_query_instantiation_expression, - STATE(4483), 1, + STATE(4468), 1, sym_import, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134062] = 3, - ACTIONS(6751), 1, - anon_sym_is, + [133681] = 6, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(7149), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7151), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7153), 1, + anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4037), 7, - anon_sym_COMMA, + STATE(4091), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [133704] = 6, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(7149), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7151), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7153), 1, + anon_sym_QMARK_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4092), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [133727] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3188), 8, + anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - [134079] = 9, - ACTIONS(1504), 1, + [133742] = 9, + ACTIONS(1499), 1, anon_sym_import, - ACTIONS(7216), 1, + ACTIONS(7183), 1, sym_identifier, - ACTIONS(7218), 1, + ACTIONS(7185), 1, sym_this, - STATE(2883), 1, - sym__type_query_call_expression, - STATE(2977), 1, - sym__type_query_instantiation_expression, - STATE(3150), 1, + STATE(1463), 1, sym__type_query_member_expression, - STATE(3157), 1, + STATE(1468), 1, sym__type_query_subscript_expression, - STATE(4523), 1, + STATE(1518), 1, + sym__type_query_call_expression, + STATE(1519), 1, + sym__type_query_instantiation_expression, + STATE(4465), 1, sym_import, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134108] = 7, - ACTIONS(3381), 1, - sym_identifier, - ACTIONS(3383), 1, - anon_sym_LBRACE, - ACTIONS(3385), 1, - anon_sym_LBRACK, - ACTIONS(7220), 1, - anon_sym_enum, - STATE(4470), 1, - sym_variable_declarator, + [133771] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3735), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [134133] = 2, + ACTIONS(3184), 8, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [133786] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3169), 8, + ACTIONS(3164), 8, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, @@ -250151,100 +248090,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [134148] = 6, - ACTIONS(6467), 1, + [133801] = 7, + ACTIONS(7171), 1, + sym_escape_sequence, + ACTIONS(7175), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7177), 1, + sym__template_chars, + ACTIONS(7187), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3819), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(4374), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [133826] = 7, + ACTIONS(7171), 1, + sym_escape_sequence, + ACTIONS(7175), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7177), 1, + sym__template_chars, + ACTIONS(7189), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3819), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(4374), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [133851] = 6, + ACTIONS(6452), 1, + anon_sym_COLON, + ACTIONS(7149), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7151), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7153), 1, + anon_sym_QMARK_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4274), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [133874] = 6, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(7166), 1, + ACTIONS(7149), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7168), 1, + ACTIONS(7151), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7170), 1, + ACTIONS(7153), 1, anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4170), 4, + STATE(4311), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [134171] = 9, - ACTIONS(1504), 1, + [133897] = 9, + ACTIONS(1499), 1, anon_sym_import, - ACTIONS(7222), 1, + ACTIONS(7191), 1, sym_identifier, - ACTIONS(7224), 1, + ACTIONS(7193), 1, sym_this, - STATE(1469), 1, + STATE(2947), 1, sym__type_query_member_expression, - STATE(1470), 1, + STATE(2948), 1, sym__type_query_subscript_expression, - STATE(1498), 1, + STATE(3212), 1, sym__type_query_call_expression, - STATE(1499), 1, + STATE(3351), 1, sym__type_query_instantiation_expression, - STATE(4601), 1, + STATE(4519), 1, sym_import, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134200] = 5, - ACTIONS(7208), 1, - anon_sym_LBRACE, - ACTIONS(7226), 1, - anon_sym_DOT, - STATE(4411), 1, - sym_statement_block, + [133926] = 7, + ACTIONS(7171), 1, + sym_escape_sequence, + ACTIONS(7175), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7177), 1, + sym__template_chars, + ACTIONS(7195), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1672), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [134221] = 7, - ACTIONS(3381), 1, + STATE(3819), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(4374), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [133951] = 9, + ACTIONS(7157), 1, + anon_sym_const, + ACTIONS(7159), 1, + anon_sym_GT, + ACTIONS(7197), 1, sym_identifier, - ACTIONS(3383), 1, - anon_sym_LBRACE, - ACTIONS(3385), 1, - anon_sym_LBRACK, - ACTIONS(7228), 1, - anon_sym_enum, - STATE(4495), 1, - sym_variable_declarator, + ACTIONS(7199), 1, + sym_jsx_identifier, + ACTIONS(7201), 1, + anon_sym_SLASH_GT, + STATE(3170), 1, + sym_nested_identifier, + STATE(3428), 1, + sym_jsx_namespace_name, + STATE(4801), 1, + sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3735), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [134246] = 5, - ACTIONS(6964), 1, - anon_sym_AMP, - ACTIONS(6966), 1, - anon_sym_PIPE, - ACTIONS(6968), 1, - anon_sym_extends, + [133980] = 9, + ACTIONS(1499), 1, + anon_sym_import, + ACTIONS(7181), 1, + sym_this, + ACTIONS(7203), 1, + sym_identifier, + STATE(2879), 1, + sym__type_query_call_expression, + STATE(2972), 1, + sym__type_query_instantiation_expression, + STATE(3165), 1, + sym__type_query_member_expression, + STATE(3166), 1, + sym__type_query_subscript_expression, + STATE(4515), 1, + sym_import, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6808), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + [134009] = 5, + ACTIONS(7205), 1, anon_sym_LBRACE, + ACTIONS(7207), 1, + anon_sym_DOT, + STATE(4392), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1653), 5, + sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [134267] = 3, - ACTIONS(6751), 1, + anon_sym_PIPE_RBRACE, + [134030] = 3, + ACTIONS(6720), 1, anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4047), 7, + ACTIONS(4024), 7, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, @@ -250252,26 +248268,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [134284] = 2, + [134047] = 5, + ACTIONS(7205), 1, + anon_sym_LBRACE, + ACTIONS(7209), 1, + anon_sym_DOT, + STATE(4392), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3177), 8, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [134299] = 3, - ACTIONS(7230), 1, + ACTIONS(1653), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [134068] = 3, + ACTIONS(7211), 1, anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4029), 7, + ACTIONS(4032), 7, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, @@ -250279,301 +248298,278 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [134316] = 7, - ACTIONS(7176), 1, + [134085] = 7, + ACTIONS(7175), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7178), 1, + ACTIONS(7177), 1, sym__template_chars, - ACTIONS(7232), 1, + ACTIONS(7213), 1, sym_escape_sequence, - ACTIONS(7234), 1, + ACTIONS(7215), 1, anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3844), 2, + STATE(3812), 2, sym_template_substitution, aux_sym_template_string_repeat1, - STATE(3947), 2, + STATE(4374), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [134341] = 9, - ACTIONS(1504), 1, - anon_sym_import, - ACTIONS(7218), 1, - sym_this, - ACTIONS(7236), 1, - sym_identifier, - STATE(2834), 1, - sym__type_query_subscript_expression, - STATE(2835), 1, - sym__type_query_member_expression, - STATE(2883), 1, - sym__type_query_call_expression, - STATE(2977), 1, - sym__type_query_instantiation_expression, - STATE(4539), 1, - sym_import, + [134110] = 7, + ACTIONS(7171), 1, + sym_escape_sequence, + ACTIONS(7175), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7177), 1, + sym__template_chars, + ACTIONS(7217), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134370] = 9, - ACTIONS(1504), 1, - anon_sym_import, - ACTIONS(7238), 1, + STATE(3819), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(4374), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [134135] = 7, + ACTIONS(7171), 1, + sym_escape_sequence, + ACTIONS(7175), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7177), 1, + sym__template_chars, + ACTIONS(7219), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3819), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(4115), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [134160] = 7, + ACTIONS(3376), 1, sym_identifier, - ACTIONS(7240), 1, - sym_this, - STATE(1730), 1, - sym__type_query_subscript_expression, - STATE(1737), 1, - sym__type_query_member_expression, - STATE(1923), 1, - sym__type_query_call_expression, - STATE(1926), 1, - sym__type_query_instantiation_expression, - STATE(4588), 1, - sym_import, + ACTIONS(3378), 1, + anon_sym_LBRACE, + ACTIONS(3380), 1, + anon_sym_LBRACK, + ACTIONS(7221), 1, + anon_sym_enum, + STATE(4487), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134399] = 7, - ACTIONS(7176), 1, + STATE(3624), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [134185] = 7, + ACTIONS(7175), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7178), 1, + ACTIONS(7177), 1, sym__template_chars, - ACTIONS(7232), 1, + ACTIONS(7213), 1, sym_escape_sequence, - ACTIONS(7242), 1, + ACTIONS(7223), 1, anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3844), 2, + STATE(3812), 2, sym_template_substitution, aux_sym_template_string_repeat1, - STATE(3947), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [134424] = 6, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(7166), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7168), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7170), 1, - anon_sym_QMARK_COLON, + STATE(4374), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [134210] = 9, + ACTIONS(1499), 1, + anon_sym_import, + ACTIONS(7225), 1, + sym_identifier, + ACTIONS(7227), 1, + sym_this, + STATE(1746), 1, + sym__type_query_member_expression, + STATE(1747), 1, + sym__type_query_subscript_expression, + STATE(1879), 1, + sym__type_query_call_expression, + STATE(1880), 1, + sym__type_query_instantiation_expression, + STATE(4481), 1, + sym_import, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4430), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [134447] = 3, + [134239] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1871), 2, + ACTIONS(1701), 2, anon_sym_while, sym_identifier, - ACTIONS(1869), 6, + ACTIONS(1699), 6, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_DOT, anon_sym_SLASH_GT, anon_sym_LT, - [134464] = 3, + [134256] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1875), 2, + ACTIONS(1793), 2, anon_sym_while, sym_identifier, - ACTIONS(1873), 6, + ACTIONS(1791), 6, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_DOT, anon_sym_SLASH_GT, anon_sym_LT, - [134481] = 9, - ACTIONS(1504), 1, - anon_sym_import, - ACTIONS(7244), 1, - sym_identifier, - ACTIONS(7246), 1, - sym_this, - STATE(2984), 1, - sym__type_query_member_expression, - STATE(2985), 1, - sym__type_query_subscript_expression, - STATE(3233), 1, - sym__type_query_call_expression, - STATE(3385), 1, - sym__type_query_instantiation_expression, - STATE(4502), 1, - sym_import, + [134273] = 3, + ACTIONS(6720), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134510] = 5, - ACTIONS(6717), 1, + ACTIONS(4028), 7, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, - ACTIONS(6719), 1, anon_sym_PIPE, - ACTIONS(6721), 1, + anon_sym_QMARK, anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7248), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [134531] = 6, - ACTIONS(6467), 1, + [134290] = 6, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(7166), 1, + ACTIONS(7149), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7168), 1, + ACTIONS(7151), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7170), 1, + ACTIONS(7153), 1, anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4370), 4, + STATE(4159), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [134554] = 7, - ACTIONS(7172), 1, - sym_escape_sequence, - ACTIONS(7176), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7178), 1, - sym__template_chars, - ACTIONS(7250), 1, - anon_sym_BQUOTE, + [134313] = 5, + ACTIONS(6704), 1, + anon_sym_AMP, + ACTIONS(6706), 1, + anon_sym_PIPE, + ACTIONS(6708), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3889), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(3947), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [134579] = 6, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(7166), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7168), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7170), 1, - anon_sym_QMARK_COLON, + ACTIONS(7229), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [134334] = 5, + ACTIONS(6704), 1, + anon_sym_AMP, + ACTIONS(6706), 1, + anon_sym_PIPE, + ACTIONS(6708), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4432), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [134602] = 6, - ACTIONS(6467), 1, - anon_sym_COLON, - ACTIONS(7166), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7168), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7170), 1, - anon_sym_QMARK_COLON, + ACTIONS(7231), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [134355] = 5, + ACTIONS(6704), 1, + anon_sym_AMP, + ACTIONS(6706), 1, + anon_sym_PIPE, + ACTIONS(6708), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4433), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [134625] = 6, - ACTIONS(6467), 1, + ACTIONS(7233), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [134376] = 6, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(7166), 1, + ACTIONS(7149), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7168), 1, + ACTIONS(7151), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7170), 1, + ACTIONS(7153), 1, anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4317), 4, + STATE(4168), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [134648] = 6, - ACTIONS(6467), 1, + [134399] = 6, + ACTIONS(6452), 1, anon_sym_COLON, - ACTIONS(7166), 1, + ACTIONS(7149), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7168), 1, + ACTIONS(7151), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7170), 1, + ACTIONS(7153), 1, anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4169), 4, + STATE(4273), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [134671] = 4, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(5398), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7252), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [134689] = 6, - ACTIONS(6459), 1, + [134422] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4341), 1, + STATE(4275), 1, sym_type_annotation, - STATE(4962), 1, + STATE(4893), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6698), 3, + ACTIONS(7235), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134711] = 2, + [134444] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5401), 7, + ACTIONS(5224), 7, anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, @@ -250581,1716 +248577,1480 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - [134725] = 6, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, + [134458] = 7, + ACTIONS(3530), 1, anon_sym_COLON, - STATE(4407), 1, - sym_type_annotation, - STATE(5104), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7254), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [134747] = 6, - ACTIONS(6459), 1, + ACTIONS(7237), 1, anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(4345), 1, + ACTIONS(7241), 1, + anon_sym_QMARK, + STATE(4540), 1, sym_type_annotation, - STATE(4969), 1, + STATE(5318), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6698), 3, - sym__automatic_semicolon, + ACTIONS(7239), 2, anon_sym_COMMA, - anon_sym_SEMI, - [134769] = 6, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(4171), 1, - sym_type_annotation, - STATE(4653), 1, - sym__initializer, + anon_sym_RPAREN, + [134482] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5505), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6666), 3, + ACTIONS(7243), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [134791] = 6, - ACTIONS(3383), 1, + anon_sym_PIPE_RBRACE, + [134500] = 6, + ACTIONS(3378), 1, anon_sym_LBRACE, - ACTIONS(3385), 1, + ACTIONS(3380), 1, anon_sym_LBRACK, - ACTIONS(7256), 1, + ACTIONS(7245), 1, sym_identifier, - STATE(4471), 1, + STATE(4476), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3735), 3, + STATE(3433), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [134813] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7258), 7, - sym__automatic_semicolon, + [134522] = 6, + ACTIONS(3378), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [134827] = 6, - ACTIONS(6320), 1, - anon_sym_EQ, - STATE(4504), 1, - sym_constraint, - STATE(5379), 1, - sym_default_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7260), 2, - anon_sym_COMMA, - anon_sym_GT, - ACTIONS(7262), 2, - anon_sym_COLON, - anon_sym_extends, - [134849] = 6, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(4179), 1, - sym_type_annotation, - STATE(4674), 1, - sym__initializer, + ACTIONS(3380), 1, + anon_sym_LBRACK, + ACTIONS(7247), 1, + sym_identifier, + STATE(4496), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [134871] = 8, - ACTIONS(6769), 1, + STATE(3467), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [134544] = 8, + ACTIONS(6900), 1, anon_sym_LBRACE, - ACTIONS(6875), 1, + ACTIONS(6902), 1, anon_sym_extends, - ACTIONS(6877), 1, + ACTIONS(6904), 1, anon_sym_implements, - STATE(2187), 1, + STATE(877), 1, sym_class_body, - STATE(4841), 1, + STATE(5174), 1, sym_extends_clause, - STATE(5517), 1, + STATE(5493), 1, sym_class_heritage, - STATE(5782), 1, + STATE(5952), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134897] = 8, - ACTIONS(6769), 1, + [134570] = 8, + ACTIONS(6784), 1, anon_sym_LBRACE, - ACTIONS(6875), 1, + ACTIONS(6902), 1, anon_sym_extends, - ACTIONS(6877), 1, + ACTIONS(6904), 1, anon_sym_implements, - STATE(2329), 1, + STATE(1711), 1, sym_class_body, - STATE(4841), 1, + STATE(5174), 1, sym_extends_clause, - STATE(5303), 1, + STATE(5525), 1, sym_class_heritage, - STATE(5782), 1, + STATE(5952), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134923] = 2, + [134596] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5386), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7264), 7, + ACTIONS(7249), 5, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, anon_sym_PIPE_RBRACE, - [134937] = 6, - ACTIONS(6459), 1, + [134614] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4344), 1, + STATE(4184), 1, sym_type_annotation, - STATE(4968), 1, + STATE(4757), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6698), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134959] = 5, - ACTIONS(6644), 1, - anon_sym_COLON, - ACTIONS(7266), 1, - sym_identifier, - ACTIONS(7268), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7270), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [134979] = 6, - ACTIONS(6459), 1, + [134636] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(3958), 1, + STATE(4423), 1, sym_type_annotation, - STATE(4835), 1, + STATE(5154), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135001] = 6, - ACTIONS(6459), 1, + [134658] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4408), 1, + STATE(4191), 1, sym_type_annotation, - STATE(5106), 1, + STATE(4767), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7254), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135023] = 6, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(4093), 1, - sym_type_annotation, - STATE(5015), 1, - sym__initializer, + [134680] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(7251), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [135045] = 6, - ACTIONS(3383), 1, - anon_sym_LBRACE, - ACTIONS(3385), 1, - anon_sym_LBRACK, - ACTIONS(7256), 1, - sym_identifier, - STATE(4495), 1, - sym_variable_declarator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3735), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [135067] = 8, - ACTIONS(6804), 1, - anon_sym_LBRACE, - ACTIONS(6875), 1, - anon_sym_extends, - ACTIONS(6877), 1, - anon_sym_implements, - STATE(2482), 1, - sym_class_body, - STATE(4841), 1, - sym_extends_clause, - STATE(5273), 1, - sym_class_heritage, - STATE(5782), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [135093] = 8, - ACTIONS(6875), 1, - anon_sym_extends, - ACTIONS(6877), 1, - anon_sym_implements, - ACTIONS(6910), 1, - anon_sym_LBRACE, - STATE(246), 1, - sym_class_body, - STATE(4841), 1, - sym_extends_clause, - STATE(5548), 1, - sym_class_heritage, - STATE(5782), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [135119] = 6, - ACTIONS(6459), 1, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [134694] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4414), 1, + STATE(4164), 1, sym_type_annotation, - STATE(5127), 1, + STATE(4689), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7254), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135141] = 8, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - ACTIONS(7272), 1, - sym_identifier, - ACTIONS(7274), 1, - anon_sym_STAR, - STATE(3849), 1, - sym_formal_parameters, - STATE(5338), 1, - sym_type_parameters, - STATE(5513), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [135167] = 6, - ACTIONS(6459), 1, + [134716] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4095), 1, + STATE(4192), 1, sym_type_annotation, - STATE(5029), 1, + STATE(4773), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135189] = 4, - ACTIONS(2445), 1, + [134738] = 8, + ACTIONS(6902), 1, + anon_sym_extends, + ACTIONS(6904), 1, + anon_sym_implements, + ACTIONS(6916), 1, anon_sym_LBRACE, - STATE(5537), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7276), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [135207] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7064), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [135221] = 8, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(6051), 1, - anon_sym_LT, - ACTIONS(7278), 1, - anon_sym_DOT, - STATE(1794), 1, - sym_arguments, - STATE(5376), 1, - sym_optional_chain, - STATE(5377), 1, - sym_type_arguments, + STATE(765), 1, + sym_class_body, + STATE(5174), 1, + sym_extends_clause, + STATE(5254), 1, + sym_class_heritage, + STATE(5952), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135247] = 6, - ACTIONS(6459), 1, + [134764] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4415), 1, + STATE(3975), 1, sym_type_annotation, - STATE(5129), 1, + STATE(4770), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7254), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135269] = 7, - ACTIONS(3541), 1, - anon_sym_COLON, - ACTIONS(7280), 1, - anon_sym_EQ, - ACTIONS(7284), 1, - anon_sym_QMARK, - STATE(4516), 1, - sym_type_annotation, - STATE(5394), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7282), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [135293] = 6, - ACTIONS(6459), 1, + [134786] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(3963), 1, + STATE(4206), 1, sym_type_annotation, - STATE(4863), 1, + STATE(4790), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135315] = 6, - ACTIONS(6459), 1, + [134808] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(3964), 1, + STATE(4207), 1, sym_type_annotation, - STATE(4928), 1, + STATE(4792), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [135337] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1873), 7, + ACTIONS(6673), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_PIPE_RBRACE, - [135351] = 6, - ACTIONS(6459), 1, + [134830] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4007), 1, + STATE(4425), 1, sym_type_annotation, - STATE(5142), 1, + STATE(5157), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135373] = 8, - ACTIONS(2537), 1, + [134852] = 8, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7286), 1, - anon_sym_COLON, - ACTIONS(7288), 1, - anon_sym_QMARK, - STATE(3849), 1, + ACTIONS(7253), 1, + sym_identifier, + ACTIONS(7255), 1, + anon_sym_STAR, + STATE(3848), 1, sym_formal_parameters, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, - STATE(5455), 1, + STATE(5495), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135399] = 6, - ACTIONS(6459), 1, + [134878] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4188), 1, + STATE(4408), 1, sym_type_annotation, - STATE(4704), 1, + STATE(5135), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135421] = 6, - ACTIONS(6459), 1, + [134900] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4013), 1, + STATE(4213), 1, sym_type_annotation, - STATE(4628), 1, + STATE(4806), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135443] = 6, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(4189), 1, - sym_type_annotation, - STATE(4707), 1, - sym__initializer, + [134922] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(7257), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [135465] = 6, - ACTIONS(6459), 1, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [134936] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4374), 1, + STATE(4216), 1, sym_type_annotation, - STATE(5027), 1, + STATE(4810), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6684), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135487] = 6, - ACTIONS(6459), 1, + [134958] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4192), 1, + STATE(4433), 1, sym_type_annotation, - STATE(4714), 1, + STATE(5169), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135509] = 8, - ACTIONS(6769), 1, - anon_sym_LBRACE, - ACTIONS(6875), 1, - anon_sym_extends, - ACTIONS(6877), 1, - anon_sym_implements, - STATE(2286), 1, - sym_class_body, - STATE(4841), 1, - sym_extends_clause, - STATE(5540), 1, - sym_class_heritage, - STATE(5782), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [135535] = 6, - ACTIONS(6459), 1, + [134980] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4193), 1, + STATE(4220), 1, sym_type_annotation, - STATE(4717), 1, + STATE(4816), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [135557] = 8, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(6051), 1, - anon_sym_LT, - ACTIONS(7290), 1, - anon_sym_DOT, - STATE(1794), 1, - sym_arguments, - STATE(5376), 1, - sym_optional_chain, - STATE(5377), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [135583] = 4, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(5575), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7292), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [135601] = 8, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - ACTIONS(7294), 1, - sym_identifier, - ACTIONS(7296), 1, - anon_sym_STAR, - STATE(3849), 1, - sym_formal_parameters, - STATE(5338), 1, - sym_type_parameters, - STATE(5441), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [135627] = 4, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(5579), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7298), 5, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [135645] = 6, - ACTIONS(6459), 1, + [135002] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4197), 1, + STATE(4224), 1, sym_type_annotation, - STATE(4722), 1, + STATE(4820), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [135667] = 4, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(5356), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7298), 5, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [135685] = 4, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(5364), 1, - sym_statement_block, + [135024] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7292), 5, + ACTIONS(4960), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [135703] = 6, - ACTIONS(6459), 1, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [135038] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4198), 1, + STATE(4173), 1, sym_type_annotation, - STATE(4725), 1, + STATE(4730), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6696), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135725] = 6, - ACTIONS(6459), 1, + [135060] = 6, + ACTIONS(6303), 1, anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(4199), 1, - sym_type_annotation, - STATE(4729), 1, - sym__initializer, + STATE(4533), 1, + sym_constraint, + STATE(5485), 1, + sym_default_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, - sym__automatic_semicolon, + ACTIONS(7259), 2, anon_sym_COMMA, - anon_sym_SEMI, - [135747] = 6, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, + anon_sym_GT, + ACTIONS(7261), 2, anon_sym_COLON, - STATE(4201), 1, - sym_type_annotation, - STATE(4733), 1, - sym__initializer, + anon_sym_extends, + [135082] = 5, + ACTIONS(6601), 1, + anon_sym_COLON, + ACTIONS(7263), 1, + sym_identifier, + ACTIONS(7265), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [135769] = 6, - ACTIONS(6459), 1, + ACTIONS(7267), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [135102] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4211), 1, + STATE(4225), 1, sym_type_annotation, - STATE(4752), 1, + STATE(4825), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135791] = 6, - ACTIONS(6459), 1, + [135124] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4212), 1, + STATE(4226), 1, sym_type_annotation, - STATE(4753), 1, + STATE(4827), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135813] = 8, - ACTIONS(4425), 1, + [135146] = 8, + ACTIONS(3521), 1, + anon_sym_LT, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(6051), 1, - anon_sym_LT, - ACTIONS(7300), 1, + ACTIONS(4539), 1, anon_sym_DOT, - STATE(1979), 1, + STATE(2240), 1, sym_arguments, - STATE(5525), 1, + STATE(5288), 1, sym_optional_chain, - STATE(5532), 1, + STATE(5366), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135839] = 6, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(4223), 1, - sym_type_annotation, - STATE(4761), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6674), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [135861] = 6, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(4224), 1, - sym_type_annotation, - STATE(4763), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6674), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [135883] = 6, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(4228), 1, - sym_type_annotation, - STATE(4770), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6674), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [135905] = 6, - ACTIONS(6459), 1, + [135172] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4229), 1, + STATE(3929), 1, sym_type_annotation, - STATE(4771), 1, + STATE(4860), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135927] = 6, - ACTIONS(6459), 1, + [135194] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4230), 1, + STATE(4238), 1, sym_type_annotation, - STATE(4773), 1, + STATE(4840), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135949] = 6, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, + [135216] = 4, + ACTIONS(4911), 1, + anon_sym_COMMA, + STATE(3713), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7269), 5, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, - STATE(4231), 1, - sym_type_annotation, - STATE(4774), 1, - sym__initializer, + anon_sym_RBRACK, + [135234] = 5, + ACTIONS(7271), 1, + anon_sym_AMP, + ACTIONS(7273), 1, + anon_sym_PIPE, + ACTIONS(7275), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, - sym__automatic_semicolon, + ACTIONS(4074), 4, anon_sym_COMMA, - anon_sym_SEMI, - [135971] = 6, - ACTIONS(6459), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [135254] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4233), 1, + STATE(4239), 1, sym_type_annotation, - STATE(4783), 1, + STATE(4842), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135993] = 6, - ACTIONS(6459), 1, + [135276] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4236), 1, + STATE(4243), 1, sym_type_annotation, - STATE(4785), 1, + STATE(4846), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136015] = 6, - ACTIONS(6459), 1, + [135298] = 8, + ACTIONS(6752), 1, + anon_sym_LBRACE, + ACTIONS(6902), 1, + anon_sym_extends, + ACTIONS(6904), 1, + anon_sym_implements, + STATE(2277), 1, + sym_class_body, + STATE(5174), 1, + sym_extends_clause, + STATE(5285), 1, + sym_class_heritage, + STATE(5952), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [135324] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4237), 1, + STATE(4245), 1, sym_type_annotation, - STATE(4787), 1, + STATE(4850), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136037] = 6, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, + [135346] = 4, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4467), 1, + STATE(4061), 1, sym_type_annotation, - STATE(4790), 1, - sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(7277), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [136059] = 6, - ACTIONS(6459), 1, + anon_sym_PIPE_RBRACE, + [135364] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4245), 1, + STATE(4248), 1, sym_type_annotation, - STATE(4800), 1, + STATE(4858), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136081] = 6, - ACTIONS(6459), 1, + [135386] = 6, + ACTIONS(6303), 1, anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(3992), 1, - sym_type_annotation, - STATE(4936), 1, - sym__initializer, + STATE(4554), 1, + sym_constraint, + STATE(5514), 1, + sym_default_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, - sym__automatic_semicolon, + ACTIONS(6307), 2, anon_sym_COMMA, - anon_sym_SEMI, - [136103] = 8, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(6306), 1, + anon_sym_GT, + ACTIONS(7261), 2, + anon_sym_COLON, + anon_sym_extends, + [135408] = 6, + ACTIONS(3521), 1, anon_sym_LT, - STATE(2460), 1, + ACTIONS(4535), 1, + anon_sym_LPAREN, + STATE(2147), 1, sym_arguments, - STATE(3485), 1, + STATE(5572), 1, sym_type_arguments, - STATE(5525), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136129] = 4, - ACTIONS(6467), 1, + ACTIONS(7279), 3, + anon_sym_LBRACK, + sym_identifier, + sym_private_property_identifier, + [135430] = 8, + ACTIONS(6902), 1, + anon_sym_extends, + ACTIONS(6904), 1, + anon_sym_implements, + ACTIONS(6924), 1, + anon_sym_LBRACE, + STATE(251), 1, + sym_class_body, + STATE(5174), 1, + sym_extends_clause, + STATE(5256), 1, + sym_class_heritage, + STATE(5952), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [135456] = 6, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4134), 1, + STATE(4165), 1, sym_type_annotation, + STATE(4696), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7302), 5, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [136147] = 6, - ACTIONS(3383), 1, - anon_sym_LBRACE, - ACTIONS(3385), 1, - anon_sym_LBRACK, - ACTIONS(7304), 1, - sym_identifier, - STATE(4544), 1, - sym_variable_declarator, + [135478] = 5, + ACTIONS(5533), 1, + anon_sym_COMMA, + ACTIONS(5665), 1, + anon_sym_RBRACE, + STATE(5136), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3386), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [136169] = 6, - ACTIONS(3383), 1, + ACTIONS(3758), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [135498] = 8, + ACTIONS(6752), 1, anon_sym_LBRACE, - ACTIONS(3385), 1, - anon_sym_LBRACK, - ACTIONS(7256), 1, - sym_identifier, - STATE(4470), 1, - sym_variable_declarator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3735), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [136191] = 8, - ACTIONS(6875), 1, + ACTIONS(6902), 1, anon_sym_extends, - ACTIONS(6877), 1, + ACTIONS(6904), 1, anon_sym_implements, - ACTIONS(6898), 1, - anon_sym_LBRACE, - STATE(760), 1, + STATE(2320), 1, sym_class_body, - STATE(4841), 1, + STATE(5174), 1, sym_extends_clause, - STATE(5437), 1, + STATE(5538), 1, sym_class_heritage, - STATE(5782), 1, + STATE(5952), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136217] = 2, + [135524] = 6, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(4372), 1, + sym_type_annotation, + STATE(5068), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7152), 7, + ACTIONS(7281), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [136231] = 4, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(5349), 1, - sym_statement_block, + [135546] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7306), 5, + ACTIONS(1699), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_DOT, anon_sym_PIPE_RBRACE, - [136249] = 2, + [135560] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7144), 7, + ACTIONS(1791), 7, sym__automatic_semicolon, - anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [136263] = 4, - ACTIONS(2445), 1, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [135574] = 4, + ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(5367), 1, + STATE(5360), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7306), 5, + ACTIONS(7283), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [136281] = 6, - ACTIONS(6459), 1, + [135592] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7285), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [135606] = 8, + ACTIONS(6902), 1, + anon_sym_extends, + ACTIONS(6904), 1, + anon_sym_implements, + ACTIONS(6924), 1, + anon_sym_LBRACE, + STATE(235), 1, + sym_class_body, + STATE(5174), 1, + sym_extends_clause, + STATE(5372), 1, + sym_class_heritage, + STATE(5952), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [135632] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4253), 1, + STATE(3927), 1, sym_type_annotation, - STATE(4814), 1, + STATE(5196), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6667), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136303] = 4, - ACTIONS(2445), 1, + [135654] = 4, + ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(5388), 1, + STATE(5491), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7252), 5, + ACTIONS(7283), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [136321] = 8, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(6051), 1, - anon_sym_LT, - ACTIONS(7278), 1, - anon_sym_DOT, - STATE(1588), 1, - sym_arguments, - STATE(5376), 1, - sym_optional_chain, - STATE(5377), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [136347] = 6, - ACTIONS(6459), 1, + [135672] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4255), 1, + STATE(3930), 1, sym_type_annotation, - STATE(4819), 1, + STATE(5155), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136369] = 6, - ACTIONS(6459), 1, + [135694] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4462), 1, + STATE(4373), 1, sym_type_annotation, - STATE(5223), 1, + STATE(5070), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(7281), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136391] = 2, + [135716] = 8, + ACTIONS(3521), 1, + anon_sym_LT, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(7287), 1, + anon_sym_DOT, + STATE(1834), 1, + sym_arguments, + STATE(5404), 1, + sym_optional_chain, + STATE(5405), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3549), 7, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [136405] = 8, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - ACTIONS(7308), 1, - sym_identifier, - ACTIONS(7310), 1, - anon_sym_STAR, - STATE(3849), 1, - sym_formal_parameters, - STATE(5338), 1, - sym_type_parameters, - STATE(5538), 1, - sym__call_signature, + [135742] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5411), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136431] = 6, - ACTIONS(6459), 1, + ACTIONS(7289), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [135760] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4319), 1, + STATE(4436), 1, sym_type_annotation, - STATE(4911), 1, + STATE(5173), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7312), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136453] = 6, - ACTIONS(6459), 1, + [135782] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4256), 1, + STATE(4404), 1, sym_type_annotation, - STATE(4820), 1, + STATE(5114), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136475] = 8, - ACTIONS(6875), 1, - anon_sym_extends, - ACTIONS(6877), 1, - anon_sym_implements, - ACTIONS(7038), 1, - anon_sym_LBRACE, - STATE(880), 1, - sym_class_body, - STATE(4841), 1, - sym_extends_clause, - STATE(5233), 1, - sym_class_heritage, - STATE(5782), 1, - sym_implements_clause, + [135804] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4946), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [135818] = 8, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(6291), 1, + anon_sym_LT, + STATE(1826), 1, + sym_arguments, + STATE(3153), 1, + sym_type_arguments, + STATE(5404), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136501] = 8, - ACTIONS(6769), 1, + [135844] = 8, + ACTIONS(6752), 1, anon_sym_LBRACE, - ACTIONS(6875), 1, + ACTIONS(6902), 1, anon_sym_extends, - ACTIONS(6877), 1, + ACTIONS(6904), 1, anon_sym_implements, - STATE(2096), 1, + STATE(2065), 1, sym_class_body, - STATE(4841), 1, + STATE(5174), 1, sym_extends_clause, - STATE(5416), 1, + STATE(5280), 1, sym_class_heritage, - STATE(5782), 1, + STATE(5952), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136527] = 6, - ACTIONS(6320), 1, + [135870] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4607), 1, - sym_constraint, - STATE(5290), 1, - sym_default_type, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(4406), 1, + sym_type_annotation, + STATE(4795), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6324), 2, + ACTIONS(6671), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_GT, - ACTIONS(7262), 2, + anon_sym_SEMI, + [135892] = 6, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, anon_sym_COLON, - anon_sym_extends, - [136549] = 8, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(6306), 1, - anon_sym_LT, - STATE(1797), 1, - sym_arguments, - STATE(3138), 1, - sym_type_arguments, - STATE(5376), 1, - sym_optional_chain, + STATE(4438), 1, + sym_type_annotation, + STATE(5182), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136575] = 6, - ACTIONS(6459), 1, + ACTIONS(6663), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [135914] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4240), 1, + STATE(4068), 1, sym_type_annotation, - STATE(5230), 1, + STATE(4941), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(6671), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136597] = 6, - ACTIONS(6459), 1, + [135936] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(3934), 1, + STATE(4439), 1, sym_type_annotation, - STATE(5034), 1, + STATE(5185), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136619] = 8, - ACTIONS(6875), 1, + [135958] = 8, + ACTIONS(6752), 1, + anon_sym_LBRACE, + ACTIONS(6902), 1, anon_sym_extends, - ACTIONS(6877), 1, + ACTIONS(6904), 1, anon_sym_implements, - ACTIONS(6910), 1, - anon_sym_LBRACE, - STATE(239), 1, + STATE(2085), 1, sym_class_body, - STATE(4841), 1, + STATE(5174), 1, sym_extends_clause, - STATE(5391), 1, + STATE(5488), 1, sym_class_heritage, - STATE(5782), 1, + STATE(5952), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136645] = 6, - ACTIONS(6459), 1, + [135984] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6956), 7, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(6467), 1, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_in, + anon_sym_of, anon_sym_COLON, - STATE(4259), 1, + [135998] = 8, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_LPAREN, + ACTIONS(7291), 1, + sym_identifier, + ACTIONS(7293), 1, + anon_sym_STAR, + STATE(3848), 1, + sym_formal_parameters, + STATE(5231), 1, + sym_type_parameters, + STATE(5494), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [136024] = 3, + ACTIONS(7295), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3544), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [136040] = 6, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(4093), 1, sym_type_annotation, - STATE(4828), 1, + STATE(5044), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6669), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136062] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4933), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, - [136667] = 6, - ACTIONS(6459), 1, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [136076] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4267), 1, + STATE(3938), 1, sym_type_annotation, - STATE(4833), 1, + STATE(4813), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136689] = 6, - ACTIONS(6459), 1, + [136098] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4347), 1, + STATE(4082), 1, sym_type_annotation, - STATE(4976), 1, + STATE(4979), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6698), 3, + ACTIONS(6671), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136711] = 8, - ACTIONS(6769), 1, - anon_sym_LBRACE, - ACTIONS(6875), 1, - anon_sym_extends, - ACTIONS(6877), 1, - anon_sym_implements, - STATE(2326), 1, - sym_class_body, - STATE(4841), 1, - sym_extends_clause, - STATE(5528), 1, - sym_class_heritage, - STATE(5782), 1, - sym_implements_clause, + [136120] = 6, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(4103), 1, + sym_type_annotation, + STATE(5053), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136737] = 8, - ACTIONS(6804), 1, - anon_sym_LBRACE, - ACTIONS(6875), 1, - anon_sym_extends, - ACTIONS(6877), 1, - anon_sym_implements, - STATE(1710), 1, - sym_class_body, - STATE(4841), 1, - sym_extends_clause, - STATE(5543), 1, - sym_class_heritage, - STATE(5782), 1, - sym_implements_clause, + ACTIONS(6671), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136142] = 6, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(3990), 1, + sym_type_annotation, + STATE(5040), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136763] = 8, - ACTIONS(6875), 1, + ACTIONS(6663), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136164] = 8, + ACTIONS(6902), 1, anon_sym_extends, - ACTIONS(6877), 1, + ACTIONS(6904), 1, anon_sym_implements, - ACTIONS(6898), 1, + ACTIONS(6916), 1, anon_sym_LBRACE, - STATE(4066), 1, + STATE(4086), 1, sym_class_body, - STATE(4841), 1, + STATE(5174), 1, sym_extends_clause, - STATE(5546), 1, + STATE(5224), 1, sym_class_heritage, - STATE(5782), 1, + STATE(5952), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136789] = 7, - ACTIONS(2291), 1, - anon_sym_DQUOTE, - ACTIONS(2293), 1, - anon_sym_SQUOTE, - ACTIONS(6753), 1, - sym_identifier, - ACTIONS(6812), 1, - anon_sym_type, - STATE(5410), 1, - sym__import_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5599), 2, - sym__module_export_name, - sym_string, - [136813] = 3, - ACTIONS(6794), 1, - anon_sym_is, + [136190] = 6, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(3994), 1, + sym_type_annotation, + STATE(5073), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4047), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [136829] = 4, - ACTIONS(4822), 1, + ACTIONS(6663), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(3658), 1, - aux_sym_sequence_expression_repeat1, + anon_sym_SEMI, + [136212] = 6, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(3939), 1, + sym_type_annotation, + STATE(4877), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7314), 5, - anon_sym_RBRACE, + ACTIONS(6663), 3, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_RPAREN, + [136234] = 6, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, anon_sym_COLON, - anon_sym_RBRACK, - [136847] = 3, - ACTIONS(7316), 1, - anon_sym_is, + STATE(4171), 1, + sym_type_annotation, + STATE(4712), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4029), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [136863] = 6, - ACTIONS(3383), 1, - anon_sym_LBRACE, - ACTIONS(3385), 1, - anon_sym_LBRACK, - ACTIONS(7256), 1, - sym_identifier, - STATE(4544), 1, - sym_variable_declarator, + ACTIONS(6673), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136256] = 8, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(6291), 1, + anon_sym_LT, + STATE(1490), 1, + sym_arguments, + STATE(3153), 1, + sym_type_arguments, + STATE(5404), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3735), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [136885] = 6, - ACTIONS(6459), 1, + [136282] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4278), 1, + STATE(3973), 1, sym_type_annotation, - STATE(4848), 1, + STATE(4644), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6671), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136907] = 6, - ACTIONS(6459), 1, + [136304] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4279), 1, + STATE(3983), 1, sym_type_annotation, - STATE(4849), 1, + STATE(4818), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6671), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136929] = 8, - ACTIONS(6804), 1, - anon_sym_LBRACE, - ACTIONS(6875), 1, - anon_sym_extends, - ACTIONS(6877), 1, - anon_sym_implements, - STATE(1715), 1, - sym_class_body, - STATE(4841), 1, - sym_extends_clause, - STATE(5244), 1, - sym_class_heritage, - STATE(5782), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [136955] = 2, + [136326] = 6, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(3985), 1, + sym_type_annotation, + STATE(4895), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4891), 7, + ACTIONS(6671), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_in, - anon_sym_of, + [136348] = 6, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, anon_sym_COLON, - [136969] = 8, - ACTIONS(6769), 1, - anon_sym_LBRACE, - ACTIONS(6875), 1, - anon_sym_extends, - ACTIONS(6877), 1, - anon_sym_implements, - STATE(2303), 1, - sym_class_body, - STATE(4841), 1, - sym_extends_clause, - STATE(5242), 1, - sym_class_heritage, - STATE(5782), 1, - sym_implements_clause, + STATE(3988), 1, + sym_type_annotation, + STATE(4938), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136995] = 6, - ACTIONS(6459), 1, + ACTIONS(6671), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136370] = 8, + ACTIONS(3521), 1, + anon_sym_LT, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(7298), 1, + anon_sym_DOT, + STATE(1834), 1, + sym_arguments, + STATE(5404), 1, + sym_optional_chain, + STATE(5405), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [136396] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4190), 1, + STATE(4104), 1, sym_type_annotation, - STATE(4711), 1, + STATE(5120), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6664), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137017] = 8, - ACTIONS(6804), 1, + [136418] = 8, + ACTIONS(6784), 1, anon_sym_LBRACE, - ACTIONS(6875), 1, + ACTIONS(6902), 1, anon_sym_extends, - ACTIONS(6877), 1, + ACTIONS(6904), 1, anon_sym_implements, - STATE(1703), 1, + STATE(2479), 1, sym_class_body, - STATE(4841), 1, + STATE(5174), 1, sym_extends_clause, - STATE(5433), 1, + STATE(5308), 1, sym_class_heritage, - STATE(5782), 1, + STATE(5952), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137043] = 6, - ACTIONS(6459), 1, + [136444] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4282), 1, + STATE(3940), 1, sym_type_annotation, - STATE(4853), 1, + STATE(5142), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137065] = 2, + [136466] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7160), 7, + ACTIONS(7070), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -252298,1442 +250058,1625 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_of, anon_sym_COLON, - [137079] = 2, + [136480] = 8, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4539), 1, + anon_sym_DOT, + ACTIONS(6291), 1, + anon_sym_LT, + STATE(2366), 1, + sym_arguments, + STATE(3476), 1, + sym_type_arguments, + STATE(5288), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [136506] = 6, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(3941), 1, + sym_type_annotation, + STATE(4949), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4887), 7, + ACTIONS(6663), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [137093] = 6, - ACTIONS(6459), 1, + [136528] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(3943), 1, + STATE(4010), 1, sym_type_annotation, - STATE(4697), 1, + STATE(4664), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137115] = 8, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - ACTIONS(7318), 1, - sym_identifier, - ACTIONS(7320), 1, - anon_sym_STAR, - STATE(3849), 1, - sym_formal_parameters, - STATE(5333), 1, - sym__call_signature, - STATE(5338), 1, - sym_type_parameters, + [136550] = 6, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(4110), 1, + sym_type_annotation, + STATE(5160), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137141] = 8, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - ACTIONS(7288), 1, - anon_sym_QMARK, - ACTIONS(7322), 1, + ACTIONS(6673), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136572] = 6, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(3849), 1, - sym_formal_parameters, - STATE(5338), 1, - sym_type_parameters, - STATE(5455), 1, - sym__call_signature, + STATE(4172), 1, + sym_type_annotation, + STATE(4717), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137167] = 6, - ACTIONS(6459), 1, + ACTIONS(6673), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136594] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(3945), 1, + STATE(4176), 1, sym_type_annotation, - STATE(4857), 1, + STATE(4728), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137189] = 6, - ACTIONS(6459), 1, + [136616] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4061), 1, + STATE(4267), 1, sym_type_annotation, - STATE(4852), 1, + STATE(4882), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(6671), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137211] = 3, - ACTIONS(7324), 1, + [136638] = 6, + ACTIONS(6444), 1, anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(4264), 1, + sym_type_annotation, + STATE(4886), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3549), 6, + ACTIONS(6774), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [137227] = 6, - ACTIONS(6459), 1, + anon_sym_SEMI, + [136660] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4283), 1, + STATE(4445), 1, sym_type_annotation, - STATE(4855), 1, + STATE(5195), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6671), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137249] = 6, - ACTIONS(3383), 1, + [136682] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3544), 7, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [136696] = 6, + ACTIONS(3378), 1, anon_sym_LBRACE, - ACTIONS(3385), 1, + ACTIONS(3380), 1, anon_sym_LBRACK, - ACTIONS(7327), 1, + ACTIONS(7300), 1, sym_identifier, - STATE(4470), 1, + STATE(4771), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3320), 3, + STATE(3624), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [137271] = 8, - ACTIONS(2537), 1, + [136718] = 8, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7329), 1, + ACTIONS(7302), 1, sym_identifier, - ACTIONS(7331), 1, + ACTIONS(7304), 1, anon_sym_STAR, - STATE(3849), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, - STATE(5538), 1, + STATE(5495), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137297] = 6, - ACTIONS(6459), 1, + [136744] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4001), 1, + STATE(4111), 1, sym_type_annotation, - STATE(5092), 1, + STATE(5164), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(6673), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136766] = 4, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(3933), 1, + sym_type_annotation, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7306), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [137319] = 8, - ACTIONS(4425), 1, + anon_sym_PIPE_RBRACE, + [136784] = 3, + ACTIONS(7308), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3544), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [136800] = 3, + ACTIONS(6799), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4028), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [136816] = 8, + ACTIONS(3521), 1, + anon_sym_LT, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(6051), 1, - anon_sym_LT, - ACTIONS(7333), 1, + ACTIONS(7311), 1, anon_sym_DOT, - STATE(2412), 1, + STATE(2364), 1, sym_arguments, - STATE(5525), 1, + STATE(5288), 1, sym_optional_chain, - STATE(5532), 1, + STATE(5366), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137345] = 8, - ACTIONS(1510), 1, - anon_sym_DQUOTE, - ACTIONS(1512), 1, - anon_sym_SQUOTE, - ACTIONS(7335), 1, + [136842] = 8, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_LPAREN, + ACTIONS(7313), 1, sym_identifier, - ACTIONS(7337), 1, - anon_sym_DOT, - STATE(747), 1, - sym_string, - STATE(875), 1, - sym__module, - STATE(4585), 1, - sym_nested_identifier, + ACTIONS(7315), 1, + anon_sym_STAR, + STATE(3848), 1, + sym_formal_parameters, + STATE(5231), 1, + sym_type_parameters, + STATE(5494), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137371] = 4, - ACTIONS(2445), 1, + [136868] = 8, + ACTIONS(6902), 1, + anon_sym_extends, + ACTIONS(6904), 1, + anon_sym_implements, + ACTIONS(6916), 1, anon_sym_LBRACE, - STATE(5413), 1, - sym_statement_block, + STATE(4035), 1, + sym_class_body, + STATE(5174), 1, + sym_extends_clause, + STATE(5511), 1, + sym_class_heritage, + STATE(5952), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7339), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [137389] = 6, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, + [136894] = 8, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(6291), 1, + anon_sym_LT, + STATE(2489), 1, + sym_arguments, + STATE(3153), 1, + sym_type_arguments, + STATE(5404), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [136920] = 4, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4363), 1, + STATE(3977), 1, sym_type_annotation, - STATE(5010), 1, - sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6698), 3, + ACTIONS(7317), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [137411] = 8, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - ACTIONS(7341), 1, - sym_identifier, - ACTIONS(7343), 1, - anon_sym_STAR, - STATE(3849), 1, - sym_formal_parameters, - STATE(5333), 1, - sym__call_signature, - STATE(5338), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [137437] = 8, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - ACTIONS(7345), 1, + anon_sym_PIPE_RBRACE, + [136938] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(7319), 1, sym_identifier, - ACTIONS(7347), 1, - anon_sym_STAR, - STATE(3849), 1, - sym_formal_parameters, - STATE(5338), 1, - sym_type_parameters, - STATE(5538), 1, - sym__call_signature, + ACTIONS(7321), 1, + anon_sym_DOT, + STATE(781), 1, + sym_string, + STATE(900), 1, + sym__module, + STATE(4574), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137463] = 3, - ACTIONS(7349), 1, + [136964] = 3, + ACTIONS(7323), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3596), 6, + ACTIONS(3577), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, anon_sym_QMARK, - [137479] = 6, - ACTIONS(6459), 1, + [136980] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4009), 1, + STATE(4177), 1, sym_type_annotation, - STATE(5079), 1, + STATE(4737), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137501] = 6, - ACTIONS(6459), 1, + [137002] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4351), 1, + STATE(4326), 1, sym_type_annotation, STATE(4978), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6698), 3, + ACTIONS(6675), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137523] = 4, - ACTIONS(2445), 1, + [137024] = 8, + ACTIONS(6752), 1, anon_sym_LBRACE, - STATE(5484), 1, - sym_statement_block, + ACTIONS(6902), 1, + anon_sym_extends, + ACTIONS(6904), 1, + anon_sym_implements, + STATE(2314), 1, + sym_class_body, + STATE(5174), 1, + sym_extends_clause, + STATE(5235), 1, + sym_class_heritage, + STATE(5952), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7351), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [137541] = 4, - ACTIONS(7353), 1, - anon_sym_COMMA, - STATE(3658), 1, - aux_sym_sequence_expression_repeat1, + [137050] = 8, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_LPAREN, + ACTIONS(7325), 1, + sym_identifier, + ACTIONS(7327), 1, + anon_sym_STAR, + STATE(3848), 1, + sym_formal_parameters, + STATE(5231), 1, + sym_type_parameters, + STATE(5494), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4791), 5, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [137559] = 8, - ACTIONS(3959), 1, + [137076] = 8, + ACTIONS(3521), 1, + anon_sym_LT, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3963), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4425), 1, + ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(6306), 1, - anon_sym_LT, - STATE(2499), 1, + STATE(1614), 1, sym_arguments, - STATE(3138), 1, - sym_type_arguments, - STATE(5376), 1, + STATE(5404), 1, sym_optional_chain, + STATE(5405), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137585] = 6, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(4091), 1, - sym_type_annotation, - STATE(5003), 1, - sym__initializer, + [137102] = 8, + ACTIONS(3521), 1, + anon_sym_LT, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(7329), 1, + anon_sym_DOT, + STATE(1506), 1, + sym_arguments, + STATE(5404), 1, + sym_optional_chain, + STATE(5405), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [137607] = 6, - ACTIONS(6459), 1, + [137128] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4246), 1, + STATE(4178), 1, sym_type_annotation, - STATE(4805), 1, + STATE(4745), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6702), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137629] = 8, - ACTIONS(6769), 1, - anon_sym_LBRACE, - ACTIONS(6875), 1, + [137150] = 8, + ACTIONS(6902), 1, anon_sym_extends, - ACTIONS(6877), 1, + ACTIONS(6904), 1, anon_sym_implements, - STATE(2192), 1, + ACTIONS(6916), 1, + anon_sym_LBRACE, + STATE(4099), 1, sym_class_body, - STATE(4841), 1, + STATE(5174), 1, sym_extends_clause, - STATE(5390), 1, + STATE(5243), 1, sym_class_heritage, - STATE(5782), 1, + STATE(5952), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137655] = 8, - ACTIONS(6875), 1, + [137176] = 8, + ACTIONS(6784), 1, + anon_sym_LBRACE, + ACTIONS(6902), 1, anon_sym_extends, - ACTIONS(6877), 1, + ACTIONS(6904), 1, anon_sym_implements, - ACTIONS(6898), 1, - anon_sym_LBRACE, - STATE(4102), 1, + STATE(1668), 1, sym_class_body, - STATE(4841), 1, + STATE(5174), 1, sym_extends_clause, - STATE(5307), 1, + STATE(5251), 1, sym_class_heritage, - STATE(5782), 1, + STATE(5952), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137681] = 5, - ACTIONS(7356), 1, - anon_sym_AMP, - ACTIONS(7358), 1, - anon_sym_PIPE, - ACTIONS(7360), 1, + [137202] = 8, + ACTIONS(6900), 1, + anon_sym_LBRACE, + ACTIONS(6902), 1, anon_sym_extends, + ACTIONS(6904), 1, + anon_sym_implements, + STATE(840), 1, + sym_class_body, + STATE(5174), 1, + sym_extends_clause, + STATE(5549), 1, + sym_class_heritage, + STATE(5952), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4233), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [137701] = 4, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(5478), 1, - sym_statement_block, + [137228] = 6, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(4039), 1, + sym_type_annotation, + STATE(4832), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7339), 5, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [137719] = 3, - ACTIONS(7356), 1, + [137250] = 8, + ACTIONS(3521), 1, + anon_sym_LT, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(7331), 1, + anon_sym_DOT, + STATE(2484), 1, + sym_arguments, + STATE(5404), 1, + sym_optional_chain, + STATE(5405), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [137276] = 3, + ACTIONS(7271), 1, anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4113), 6, + ACTIONS(4182), 6, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [137735] = 5, - ACTIONS(7356), 1, - anon_sym_AMP, - ACTIONS(7358), 1, - anon_sym_PIPE, - ACTIONS(7360), 1, - anon_sym_extends, + [137292] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5469), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4139), 4, + ACTIONS(7333), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [137755] = 3, - ACTIONS(7362), 1, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [137310] = 3, + ACTIONS(7335), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4153), 6, + ACTIONS(4202), 6, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_QMARK, - [137771] = 3, - ACTIONS(7356), 1, - anon_sym_AMP, + [137326] = 8, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(6350), 1, + anon_sym_LT, + STATE(2002), 1, + sym_arguments, + STATE(3248), 1, + sym_type_arguments, + STATE(5404), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4257), 6, + [137352] = 8, + ACTIONS(7337), 1, + anon_sym_LBRACE, + ACTIONS(7339), 1, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [137787] = 8, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3963), 1, + ACTIONS(7341), 1, anon_sym_DOT, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(6306), 1, + ACTIONS(7343), 1, anon_sym_LT, - STATE(1595), 1, - sym_arguments, - STATE(3138), 1, + ACTIONS(7345), 1, + anon_sym_LBRACE_PIPE, + STATE(4598), 1, + aux_sym_extends_type_clause_repeat1, + STATE(5143), 1, sym_type_arguments, - STATE(5376), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137813] = 4, - ACTIONS(2445), 1, + [137378] = 4, + ACTIONS(7205), 1, anon_sym_LBRACE, - STATE(5488), 1, + STATE(4392), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7351), 5, + ACTIONS(1653), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [137831] = 6, - ACTIONS(6459), 1, + [137396] = 4, + ACTIONS(4429), 1, anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(3991), 1, - sym_type_annotation, - STATE(4881), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6680), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [137853] = 3, - ACTIONS(6794), 1, - anon_sym_is, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4037), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [137869] = 5, - ACTIONS(7356), 1, - anon_sym_AMP, - ACTIONS(7358), 1, - anon_sym_PIPE, - ACTIONS(7360), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4299), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [137889] = 5, - ACTIONS(7356), 1, - anon_sym_AMP, - ACTIONS(7358), 1, - anon_sym_PIPE, - ACTIONS(7360), 1, - anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4347), 4, + ACTIONS(5634), 2, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [137909] = 8, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(7364), 1, - sym_identifier, - ACTIONS(7366), 1, - anon_sym_DOT, - STATE(3505), 1, - sym_nested_identifier, - STATE(3750), 1, - sym_string, - STATE(4447), 1, - sym__module, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [137935] = 6, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, + anon_sym_RBRACE, + ACTIONS(3758), 4, + anon_sym_LPAREN, anon_sym_COLON, - STATE(4280), 1, - sym_type_annotation, - STATE(4840), 1, - sym__initializer, + anon_sym_LT, + anon_sym_QMARK, + [137414] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(7347), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [137957] = 6, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, anon_sym_COLON, - STATE(4300), 1, - sym_type_annotation, - STATE(4892), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [137428] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5358), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(7349), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [137979] = 8, - ACTIONS(1038), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1580), 1, - anon_sym_LBRACE, - ACTIONS(7368), 1, + anon_sym_PIPE_RBRACE, + [137446] = 8, + ACTIONS(3521), 1, anon_sym_LT, - ACTIONS(7370), 1, - anon_sym_extends, - STATE(3960), 1, - sym_object_type, - STATE(4021), 1, - sym_type_parameters, - STATE(4658), 1, - sym_extends_type_clause, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(7351), 1, + anon_sym_DOT, + STATE(2001), 1, + sym_arguments, + STATE(5404), 1, + sym_optional_chain, + STATE(5405), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138005] = 6, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(4322), 1, - sym_type_annotation, - STATE(4921), 1, - sym__initializer, + [137472] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5365), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6698), 3, + ACTIONS(7353), 5, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_SEMI, - [138027] = 5, - ACTIONS(5566), 1, - anon_sym_COMMA, - ACTIONS(5657), 1, anon_sym_RBRACE, - STATE(5157), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3791), 4, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [137490] = 8, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6450), 1, anon_sym_LPAREN, + ACTIONS(7355), 1, anon_sym_COLON, - anon_sym_LT, + ACTIONS(7357), 1, anon_sym_QMARK, - [138047] = 6, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(6051), 1, - anon_sym_LT, - STATE(1683), 1, - sym_arguments, - STATE(5395), 1, - sym_type_arguments, + STATE(3848), 1, + sym_formal_parameters, + STATE(5231), 1, + sym_type_parameters, + STATE(5482), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7372), 3, - anon_sym_LBRACK, - sym_identifier, - sym_private_property_identifier, - [138069] = 6, - ACTIONS(6459), 1, + [137516] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4073), 1, + STATE(4011), 1, sym_type_annotation, - STATE(4889), 1, + STATE(4680), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138091] = 6, - ACTIONS(6459), 1, + [137538] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4323), 1, + STATE(4114), 1, sym_type_annotation, - STATE(4924), 1, + STATE(5184), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6698), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138113] = 6, - ACTIONS(6459), 1, + [137560] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(3935), 1, + STATE(4278), 1, sym_type_annotation, - STATE(5226), 1, + STATE(4900), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6694), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138135] = 6, - ACTIONS(6459), 1, + [137582] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(3936), 1, + STATE(4279), 1, sym_type_annotation, - STATE(4659), 1, + STATE(4902), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6694), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138157] = 6, - ACTIONS(6459), 1, + [137604] = 6, + ACTIONS(3378), 1, + anon_sym_LBRACE, + ACTIONS(3380), 1, + anon_sym_LBRACK, + ACTIONS(7300), 1, + sym_identifier, + STATE(4484), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3624), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [137626] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(3948), 1, + STATE(4282), 1, sym_type_annotation, - STATE(4972), 1, + STATE(4910), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6694), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138179] = 6, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(4284), 1, - sym_type_annotation, - STATE(4859), 1, - sym__initializer, + [137648] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5565), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(7349), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [138201] = 6, - ACTIONS(6459), 1, + anon_sym_PIPE_RBRACE, + [137666] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4285), 1, + STATE(4283), 1, sym_type_annotation, - STATE(4860), 1, + STATE(4911), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6694), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138223] = 5, - ACTIONS(7356), 1, - anon_sym_AMP, - ACTIONS(7358), 1, - anon_sym_PIPE, - ACTIONS(7360), 1, - anon_sym_extends, + [137688] = 6, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(4117), 1, + sym_type_annotation, + STATE(5206), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4311), 4, + ACTIONS(6673), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [138243] = 6, - ACTIONS(6459), 1, + anon_sym_SEMI, + [137710] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(3950), 1, + STATE(4288), 1, sym_type_annotation, - STATE(4627), 1, + STATE(4922), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6694), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138265] = 6, - ACTIONS(6459), 1, + [137732] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4290), 1, + STATE(4293), 1, sym_type_annotation, - STATE(4871), 1, + STATE(4926), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6694), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138287] = 6, - ACTIONS(6459), 1, + [137754] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4291), 1, + STATE(4295), 1, sym_type_annotation, - STATE(4874), 1, + STATE(4928), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6694), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138309] = 6, - ACTIONS(6459), 1, + [137776] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4295), 1, + STATE(4296), 1, sym_type_annotation, - STATE(4878), 1, + STATE(4929), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6694), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138331] = 6, - ACTIONS(6459), 1, + [137798] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, STATE(4297), 1, sym_type_annotation, - STATE(4880), 1, + STATE(4933), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6694), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138353] = 6, - ACTIONS(6459), 1, + [137820] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, STATE(4298), 1, sym_type_annotation, - STATE(4887), 1, + STATE(4934), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6694), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138375] = 8, - ACTIONS(6769), 1, + [137842] = 8, + ACTIONS(6784), 1, anon_sym_LBRACE, - ACTIONS(6875), 1, + ACTIONS(6902), 1, anon_sym_extends, - ACTIONS(6877), 1, + ACTIONS(6904), 1, anon_sym_implements, - STATE(2068), 1, + STATE(1648), 1, sym_class_body, - STATE(4841), 1, + STATE(5174), 1, sym_extends_clause, - STATE(5341), 1, + STATE(5242), 1, sym_class_heritage, - STATE(5782), 1, + STATE(5952), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138401] = 5, - ACTIONS(7356), 1, - anon_sym_AMP, - ACTIONS(7358), 1, - anon_sym_PIPE, - ACTIONS(7360), 1, + [137868] = 8, + ACTIONS(6752), 1, + anon_sym_LBRACE, + ACTIONS(6902), 1, anon_sym_extends, + ACTIONS(6904), 1, + anon_sym_implements, + STATE(2190), 1, + sym_class_body, + STATE(5174), 1, + sym_extends_clause, + STATE(5418), 1, + sym_class_heritage, + STATE(5952), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4335), 4, - anon_sym_COMMA, + [137894] = 6, + ACTIONS(3378), 1, + anon_sym_LBRACE, + ACTIONS(3380), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [138421] = 4, - ACTIONS(2445), 1, + ACTIONS(7300), 1, + sym_identifier, + STATE(4487), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3624), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [137916] = 4, + ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(5389), 1, + STATE(5272), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7374), 5, + ACTIONS(7359), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [138439] = 6, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(4024), 1, - sym_type_annotation, - STATE(4676), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6680), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [138461] = 4, - ACTIONS(2445), 1, + [137934] = 4, + ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(5249), 1, + STATE(5274), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7376), 5, + ACTIONS(7361), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [138479] = 6, - ACTIONS(6459), 1, + [137952] = 8, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(4539), 1, + anon_sym_DOT, + ACTIONS(6291), 1, + anon_sym_LT, + STATE(2026), 1, + sym_arguments, + STATE(3476), 1, + sym_type_arguments, + STATE(5288), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [137978] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4332), 1, + STATE(4353), 1, sym_type_annotation, - STATE(4947), 1, + STATE(5030), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6698), 3, + ACTIONS(6683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138000] = 8, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_LPAREN, + ACTIONS(7363), 1, + sym_identifier, + ACTIONS(7365), 1, + anon_sym_STAR, + STATE(3848), 1, + sym_formal_parameters, + STATE(5231), 1, + sym_type_parameters, + STATE(5321), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [138026] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5406), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7361), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [138501] = 4, - ACTIONS(2445), 1, + anon_sym_PIPE_RBRACE, + [138044] = 4, + ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(5323), 1, + STATE(5407), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7378), 5, + ACTIONS(7359), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [138519] = 6, - ACTIONS(6459), 1, + [138062] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4333), 1, + STATE(4307), 1, sym_type_annotation, STATE(4948), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6698), 3, + ACTIONS(6694), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138541] = 4, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(5530), 1, - sym_statement_block, + [138084] = 6, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(4309), 1, + sym_type_annotation, + STATE(5220), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7376), 5, + ACTIONS(6694), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [138559] = 6, - ACTIONS(6459), 1, + [138106] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4003), 1, + STATE(4125), 1, sym_type_annotation, - STATE(5103), 1, + STATE(5210), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138581] = 8, - ACTIONS(6875), 1, + [138128] = 8, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 1, + anon_sym_SQUOTE, + ACTIONS(7367), 1, + sym_identifier, + ACTIONS(7369), 1, + anon_sym_DOT, + STATE(3504), 1, + sym_nested_identifier, + STATE(3657), 1, + sym_string, + STATE(4416), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [138154] = 8, + ACTIONS(1033), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1575), 1, + anon_sym_LBRACE, + ACTIONS(7371), 1, + anon_sym_LT, + ACTIONS(7373), 1, anon_sym_extends, - ACTIONS(6877), 1, - anon_sym_implements, - ACTIONS(6898), 1, + STATE(3944), 1, + sym_object_type, + STATE(4008), 1, + sym_type_parameters, + STATE(4667), 1, + sym_extends_type_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [138180] = 6, + ACTIONS(3378), 1, anon_sym_LBRACE, - STATE(4125), 1, - sym_class_body, - STATE(4841), 1, - sym_extends_clause, - STATE(5361), 1, - sym_class_heritage, - STATE(5782), 1, - sym_implements_clause, + ACTIONS(3380), 1, + anon_sym_LBRACK, + ACTIONS(7300), 1, + sym_identifier, + STATE(4496), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3624), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [138202] = 6, + ACTIONS(3521), 1, + anon_sym_LT, + ACTIONS(3938), 1, + anon_sym_LPAREN, + STATE(1682), 1, + sym_arguments, + STATE(5239), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138607] = 6, - ACTIONS(6459), 1, + ACTIONS(7279), 3, + anon_sym_LBRACK, + sym_identifier, + sym_private_property_identifier, + [138224] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4336), 1, + STATE(4131), 1, sym_type_annotation, - STATE(4956), 1, + STATE(4616), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6698), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138629] = 4, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(5400), 1, - sym_statement_block, + [138246] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(7321), 1, + anon_sym_DOT, + ACTIONS(7375), 1, + sym_identifier, + STATE(751), 1, + sym_nested_identifier, + STATE(781), 1, + sym_string, + STATE(900), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [138272] = 6, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(4394), 1, + sym_type_annotation, + STATE(5102), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7380), 5, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [138647] = 4, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(5402), 1, - sym_statement_block, + [138294] = 4, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(4368), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7382), 5, + ACTIONS(7377), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [138665] = 5, - ACTIONS(7356), 1, - anon_sym_AMP, - ACTIONS(7358), 1, - anon_sym_PIPE, - ACTIONS(7360), 1, - anon_sym_extends, + [138312] = 6, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(4313), 1, + sym_type_annotation, + STATE(4960), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4403), 4, + ACTIONS(6694), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [138685] = 4, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(5385), 1, - sym_statement_block, + anon_sym_SEMI, + [138334] = 6, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(4134), 1, + sym_type_annotation, + STATE(4628), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7384), 5, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [138703] = 6, - ACTIONS(6459), 1, + [138356] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4337), 1, + STATE(4137), 1, sym_type_annotation, - STATE(4959), 1, + STATE(4631), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6698), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138725] = 8, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(6051), 1, + [138378] = 8, + ACTIONS(218), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1495), 1, + anon_sym_LBRACE, + ACTIONS(7371), 1, + anon_sym_LT, + ACTIONS(7373), 1, + anon_sym_extends, + STATE(909), 1, + sym_object_type, + STATE(4251), 1, + sym_type_parameters, + STATE(5217), 1, + sym_extends_type_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [138404] = 8, + ACTIONS(3521), 1, anon_sym_LT, - ACTIONS(7386), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(7379), 1, anon_sym_DOT, - STATE(2497), 1, + STATE(2014), 1, sym_arguments, - STATE(5376), 1, + STATE(5288), 1, sym_optional_chain, - STATE(5377), 1, + STATE(5366), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138751] = 8, - ACTIONS(6804), 1, - anon_sym_LBRACE, - ACTIONS(6875), 1, - anon_sym_extends, - ACTIONS(6877), 1, - anon_sym_implements, - STATE(1639), 1, - sym_class_body, - STATE(4841), 1, - sym_extends_clause, - STATE(5370), 1, - sym_class_heritage, - STATE(5782), 1, - sym_implements_clause, + [138430] = 8, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_LPAREN, + ACTIONS(7357), 1, + anon_sym_QMARK, + ACTIONS(7381), 1, + anon_sym_COLON, + STATE(3848), 1, + sym_formal_parameters, + STATE(5231), 1, + sym_type_parameters, + STATE(5482), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138777] = 8, - ACTIONS(6804), 1, - anon_sym_LBRACE, - ACTIONS(6875), 1, - anon_sym_extends, - ACTIONS(6877), 1, - anon_sym_implements, - STATE(2538), 1, - sym_class_body, - STATE(4841), 1, - sym_extends_clause, - STATE(5241), 1, - sym_class_heritage, - STATE(5782), 1, - sym_implements_clause, + [138456] = 8, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_LPAREN, + ACTIONS(7383), 1, + sym_identifier, + ACTIONS(7385), 1, + anon_sym_STAR, + STATE(3848), 1, + sym_formal_parameters, + STATE(5231), 1, + sym_type_parameters, + STATE(5257), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138803] = 8, - ACTIONS(6875), 1, - anon_sym_extends, - ACTIONS(6877), 1, - anon_sym_implements, - ACTIONS(7038), 1, - anon_sym_LBRACE, - STATE(828), 1, - sym_class_body, - STATE(4841), 1, - sym_extends_clause, - STATE(5445), 1, - sym_class_heritage, - STATE(5782), 1, - sym_implements_clause, + [138482] = 6, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(4016), 1, + sym_type_annotation, + STATE(4700), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138829] = 6, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(6051), 1, - anon_sym_LT, - STATE(2177), 1, - sym_arguments, - STATE(5353), 1, - sym_type_arguments, + ACTIONS(6663), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138504] = 6, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(4317), 1, + sym_type_annotation, + STATE(4968), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7372), 3, - anon_sym_LBRACK, - sym_identifier, - sym_private_property_identifier, - [138851] = 6, - ACTIONS(6459), 1, + ACTIONS(6694), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138526] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4413), 1, + STATE(4319), 1, sym_type_annotation, - STATE(5120), 1, + STATE(4969), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6700), 3, + ACTIONS(6694), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138873] = 8, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(6345), 1, - anon_sym_LT, - STATE(1954), 1, - sym_arguments, - STATE(3219), 1, - sym_type_arguments, - STATE(5376), 1, - sym_optional_chain, + [138548] = 8, + ACTIONS(6752), 1, + anon_sym_LBRACE, + ACTIONS(6902), 1, + anon_sym_extends, + ACTIONS(6904), 1, + anon_sym_implements, + STATE(2224), 1, + sym_class_body, + STATE(5174), 1, + sym_extends_clause, + STATE(5371), 1, + sym_class_heritage, + STATE(5952), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138899] = 6, - ACTIONS(6459), 1, + [138574] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4058), 1, + STATE(4141), 1, sym_type_annotation, - STATE(4842), 1, + STATE(4645), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138921] = 8, - ACTIONS(7388), 1, - anon_sym_LBRACE, - ACTIONS(7390), 1, + [138596] = 6, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(4400), 1, + sym_type_annotation, + STATE(5113), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6663), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7394), 1, - anon_sym_LT, - ACTIONS(7396), 1, - anon_sym_LBRACE_PIPE, - STATE(4543), 1, - aux_sym_extends_type_clause_repeat1, - STATE(5164), 1, - sym_type_arguments, + anon_sym_SEMI, + [138618] = 4, + ACTIONS(7387), 1, + anon_sym_COMMA, + STATE(3713), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138947] = 6, - ACTIONS(6459), 1, + ACTIONS(4744), 5, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [138636] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4135), 1, + STATE(4323), 1, sym_type_annotation, - STATE(5206), 1, + STATE(4975), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6694), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138969] = 6, - ACTIONS(6459), 1, + [138658] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4340), 1, + STATE(4324), 1, sym_type_annotation, - STATE(4961), 1, + STATE(4976), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6698), 3, + ACTIONS(6694), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138991] = 8, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - ACTIONS(7398), 1, - sym_identifier, - ACTIONS(7400), 1, - anon_sym_STAR, - STATE(3849), 1, - sym_formal_parameters, - STATE(5333), 1, - sym__call_signature, - STATE(5338), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [139017] = 4, - ACTIONS(6467), 1, + [138680] = 6, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4143), 1, + STATE(4327), 1, sym_type_annotation, + STATE(4982), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7402), 5, + ACTIONS(6694), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [139035] = 6, - ACTIONS(6459), 1, + [138702] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4436), 1, + STATE(4328), 1, sym_type_annotation, - STATE(5172), 1, + STATE(4984), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, @@ -253742,478 +251685,529 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139057] = 4, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(5541), 1, - sym_statement_block, + [138724] = 6, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(4331), 1, + sym_type_annotation, + STATE(4994), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7374), 5, + ACTIONS(6694), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [139075] = 2, + [138746] = 7, + ACTIONS(2970), 1, + anon_sym_DQUOTE, + ACTIONS(2972), 1, + anon_sym_SQUOTE, + ACTIONS(6740), 1, + sym_identifier, + ACTIONS(6760), 1, + anon_sym_type, + STATE(5245), 1, + sym__import_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5931), 2, + sym__module_export_name, + sym_string, + [138770] = 6, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(4332), 1, + sym_type_annotation, + STATE(4996), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7404), 7, + ACTIONS(6694), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + [138792] = 6, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [139089] = 8, - ACTIONS(6875), 1, - anon_sym_extends, - ACTIONS(6877), 1, - anon_sym_implements, - ACTIONS(6898), 1, - anon_sym_LBRACE, - STATE(4166), 1, - sym_class_body, - STATE(4841), 1, - sym_extends_clause, - STATE(5432), 1, - sym_class_heritage, - STATE(5782), 1, - sym_implements_clause, + STATE(4335), 1, + sym_type_annotation, + STATE(5006), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139115] = 4, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(5362), 1, - sym_statement_block, + ACTIONS(6694), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138814] = 6, + ACTIONS(6444), 1, + anon_sym_EQ, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(4336), 1, + sym_type_annotation, + STATE(5007), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7406), 5, + ACTIONS(6694), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [139133] = 4, - ACTIONS(4469), 1, - anon_sym_EQ, + [138836] = 3, + ACTIONS(6799), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5674), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3791), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [139151] = 6, - ACTIONS(6459), 1, + ACTIONS(4024), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [138852] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(3952), 1, + STATE(4143), 1, sym_type_annotation, - STATE(4661), 1, + STATE(4647), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139173] = 8, - ACTIONS(6875), 1, + [138874] = 3, + ACTIONS(7390), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4032), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [138890] = 8, + ACTIONS(6902), 1, anon_sym_extends, - ACTIONS(6877), 1, + ACTIONS(6904), 1, anon_sym_implements, - ACTIONS(6898), 1, + ACTIONS(6916), 1, anon_sym_LBRACE, - STATE(762), 1, + STATE(4129), 1, sym_class_body, - STATE(4841), 1, + STATE(5174), 1, sym_extends_clause, - STATE(5574), 1, + STATE(5311), 1, sym_class_heritage, - STATE(5782), 1, + STATE(5952), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139199] = 6, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(4458), 1, - sym_type_annotation, - STATE(5225), 1, - sym__initializer, + [138916] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5497), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6830), 3, + ACTIONS(7392), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [139221] = 2, + anon_sym_PIPE_RBRACE, + [138934] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5499), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7408), 7, + ACTIONS(7394), 5, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, anon_sym_PIPE_RBRACE, - [139235] = 6, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(4453), 1, - sym_type_annotation, - STATE(5208), 1, - sym__initializer, + [138952] = 8, + ACTIONS(6784), 1, + anon_sym_LBRACE, + ACTIONS(6902), 1, + anon_sym_extends, + ACTIONS(6904), 1, + anon_sym_implements, + STATE(2536), 1, + sym_class_body, + STATE(5174), 1, + sym_extends_clause, + STATE(5279), 1, + sym_class_heritage, + STATE(5952), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [139257] = 4, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(4431), 1, - sym_type_annotation, + [138978] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5351), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7410), 5, + ACTIONS(7392), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [139275] = 4, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(4176), 1, - sym_type_annotation, + [138996] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5232), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7412), 5, + ACTIONS(7396), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [139293] = 3, - ACTIONS(7414), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3549), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [139309] = 6, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(3953), 1, - sym_type_annotation, - STATE(4691), 1, - sym__initializer, + [139014] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5374), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(7394), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [139331] = 8, - ACTIONS(2537), 1, + anon_sym_PIPE_RBRACE, + [139032] = 8, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7417), 1, + ACTIONS(7398), 1, sym_identifier, - ACTIONS(7419), 1, + ACTIONS(7400), 1, anon_sym_STAR, - STATE(3849), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(5333), 1, - sym__call_signature, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, + STATE(5495), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [139058] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139357] = 6, - ACTIONS(6459), 1, + ACTIONS(6832), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [139072] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4087), 1, + STATE(4018), 1, sym_type_annotation, - STATE(4979), 1, + STATE(4704), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139379] = 6, - ACTIONS(6459), 1, + [139094] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4375), 1, + STATE(4414), 1, sym_type_annotation, - STATE(5025), 1, + STATE(5138), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6698), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139401] = 8, - ACTIONS(1510), 1, - anon_sym_DQUOTE, - ACTIONS(1512), 1, - anon_sym_SQUOTE, - ACTIONS(7337), 1, - anon_sym_DOT, - ACTIONS(7421), 1, - sym_identifier, - STATE(739), 1, - sym_nested_identifier, - STATE(747), 1, - sym_string, - STATE(875), 1, - sym__module, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [139427] = 8, - ACTIONS(2537), 1, + [139116] = 8, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7423), 1, + ACTIONS(7402), 1, sym_identifier, - ACTIONS(7425), 1, + ACTIONS(7404), 1, anon_sym_STAR, - STATE(3849), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, - STATE(5538), 1, + STATE(5494), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139453] = 6, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(4376), 1, - sym_type_annotation, - STATE(5033), 1, - sym__initializer, + [139142] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5234), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6698), 3, + ACTIONS(7406), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [139475] = 6, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(4088), 1, - sym_type_annotation, - STATE(4985), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [139160] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(7024), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, - [139497] = 2, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [139174] = 6, + ACTIONS(3378), 1, + anon_sym_LBRACE, + ACTIONS(3380), 1, + anon_sym_LBRACK, + ACTIONS(7300), 1, + sym_identifier, + STATE(4476), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1869), 7, - sym__automatic_semicolon, + STATE(3624), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [139196] = 8, + ACTIONS(6752), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_PIPE_RBRACE, - [139511] = 4, - ACTIONS(7208), 1, + ACTIONS(6902), 1, + anon_sym_extends, + ACTIONS(6904), 1, + anon_sym_implements, + STATE(2185), 1, + sym_class_body, + STATE(5174), 1, + sym_extends_clause, + STATE(5419), 1, + sym_class_heritage, + STATE(5952), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [139222] = 8, + ACTIONS(6902), 1, + anon_sym_extends, + ACTIONS(6904), 1, + anon_sym_implements, + ACTIONS(6916), 1, anon_sym_LBRACE, - STATE(4411), 1, - sym_statement_block, + STATE(774), 1, + sym_class_body, + STATE(5174), 1, + sym_extends_clause, + STATE(5269), 1, + sym_class_heritage, + STATE(5952), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1672), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [139529] = 8, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(6051), 1, + [139248] = 8, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(7427), 1, - anon_sym_DOT, - STATE(1952), 1, - sym_arguments, - STATE(5376), 1, - sym_optional_chain, - STATE(5377), 1, - sym_type_arguments, + ACTIONS(6450), 1, + anon_sym_LPAREN, + ACTIONS(7408), 1, + sym_identifier, + ACTIONS(7410), 1, + anon_sym_STAR, + STATE(3848), 1, + sym_formal_parameters, + STATE(5231), 1, + sym_type_parameters, + STATE(5495), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139555] = 6, - ACTIONS(6459), 1, + [139274] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4381), 1, + STATE(3950), 1, sym_type_annotation, - STATE(5044), 1, + STATE(4822), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6698), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139577] = 8, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(6051), 1, - anon_sym_LT, - ACTIONS(7429), 1, - anon_sym_DOT, - STATE(1588), 1, - sym_arguments, - STATE(5376), 1, - sym_optional_chain, - STATE(5377), 1, - sym_type_arguments, + [139296] = 8, + ACTIONS(6784), 1, + anon_sym_LBRACE, + ACTIONS(6902), 1, + anon_sym_extends, + ACTIONS(6904), 1, + anon_sym_implements, + STATE(1705), 1, + sym_class_body, + STATE(5174), 1, + sym_extends_clause, + STATE(5507), 1, + sym_class_heritage, + STATE(5952), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139603] = 6, - ACTIONS(6459), 1, + [139322] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4383), 1, + STATE(4156), 1, sym_type_annotation, - STATE(5052), 1, + STATE(4669), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6698), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139625] = 6, - ACTIONS(6459), 1, + [139344] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4384), 1, + STATE(4158), 1, sym_type_annotation, - STATE(5055), 1, + STATE(4671), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6698), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139647] = 6, - ACTIONS(6459), 1, + [139366] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4385), 1, + STATE(4025), 1, sym_type_annotation, - STATE(5057), 1, + STATE(4772), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6698), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139669] = 6, - ACTIONS(6459), 1, + [139388] = 5, + ACTIONS(7271), 1, + anon_sym_AMP, + ACTIONS(7273), 1, + anon_sym_PIPE, + ACTIONS(7275), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4348), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [139408] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4386), 1, + STATE(4161), 1, sym_type_annotation, - STATE(5064), 1, + STATE(4681), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6698), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139691] = 2, + [139430] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4889), 7, + ACTIONS(7143), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -254221,11055 +252215,11151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_of, anon_sym_COLON, - [139705] = 8, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3963), 1, - anon_sym_DOT, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(6051), 1, - anon_sym_LT, - STATE(1650), 1, - sym_arguments, - STATE(5376), 1, - sym_optional_chain, - STATE(5377), 1, - sym_type_arguments, + [139444] = 5, + ACTIONS(7271), 1, + anon_sym_AMP, + ACTIONS(7273), 1, + anon_sym_PIPE, + ACTIONS(7275), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139731] = 8, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, + ACTIONS(4356), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [139464] = 5, + ACTIONS(7271), 1, + anon_sym_AMP, + ACTIONS(7273), 1, + anon_sym_PIPE, + ACTIONS(7275), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4262), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [139484] = 3, + ACTIONS(7271), 1, + anon_sym_AMP, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4286), 6, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [139500] = 8, + ACTIONS(3521), 1, + anon_sym_LT, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(4518), 1, + ACTIONS(4418), 1, + anon_sym_QMARK_DOT, + ACTIONS(7287), 1, anon_sym_DOT, - ACTIONS(6051), 1, - anon_sym_LT, - STATE(2355), 1, + STATE(1506), 1, sym_arguments, - STATE(5525), 1, + STATE(5404), 1, sym_optional_chain, - STATE(5532), 1, + STATE(5405), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139757] = 6, - ACTIONS(6459), 1, + [139526] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4387), 1, + STATE(4199), 1, sym_type_annotation, - STATE(5066), 1, + STATE(4782), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6698), 3, + ACTIONS(6700), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139779] = 8, - ACTIONS(221), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1500), 1, - anon_sym_LBRACE, - ACTIONS(7368), 1, - anon_sym_LT, - ACTIONS(7370), 1, + [139548] = 5, + ACTIONS(7271), 1, + anon_sym_AMP, + ACTIONS(7273), 1, + anon_sym_PIPE, + ACTIONS(7275), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4096), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [139568] = 5, + ACTIONS(7271), 1, + anon_sym_AMP, + ACTIONS(7273), 1, + anon_sym_PIPE, + ACTIONS(7275), 1, anon_sym_extends, - STATE(813), 1, - sym_object_type, - STATE(3968), 1, - sym_type_parameters, - STATE(4629), 1, - sym_extends_type_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139805] = 2, + ACTIONS(4100), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [139588] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5413), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6962), 7, + ACTIONS(7412), 5, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [139819] = 6, - ACTIONS(6459), 1, + anon_sym_PIPE_RBRACE, + [139606] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4389), 1, + STATE(4163), 1, sym_type_annotation, - STATE(5075), 1, + STATE(4685), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6698), 3, + ACTIONS(6673), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139841] = 6, - ACTIONS(3383), 1, - anon_sym_LBRACE, - ACTIONS(3385), 1, - anon_sym_LBRACK, - ACTIONS(7256), 1, - sym_identifier, - STATE(4955), 1, - sym_variable_declarator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3735), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [139863] = 6, - ACTIONS(6459), 1, + [139628] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4392), 1, + STATE(4358), 1, sym_type_annotation, - STATE(5077), 1, + STATE(5042), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6698), 3, + ACTIONS(7281), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139885] = 6, - ACTIONS(6459), 1, + [139650] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(3957), 1, + STATE(4359), 1, sym_type_annotation, - STATE(4806), 1, + STATE(5043), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(7281), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139907] = 6, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(4005), 1, - sym_type_annotation, - STATE(5130), 1, - sym__initializer, + [139672] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5352), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(7333), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [139929] = 6, - ACTIONS(6459), 1, - anon_sym_EQ, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(4089), 1, - sym_type_annotation, - STATE(4994), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [139690] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5368), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(7243), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [139951] = 6, - ACTIONS(6459), 1, + anon_sym_PIPE_RBRACE, + [139708] = 6, + ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6467), 1, + ACTIONS(6452), 1, anon_sym_COLON, - STATE(4090), 1, + STATE(4277), 1, sym_type_annotation, - STATE(4997), 1, + STATE(4891), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139973] = 8, - ACTIONS(4425), 1, - anon_sym_QMARK_DOT, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(4518), 1, - anon_sym_DOT, - ACTIONS(6306), 1, - anon_sym_LT, - STATE(2027), 1, - sym_arguments, - STATE(3485), 1, - sym_type_arguments, - STATE(5525), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [139999] = 7, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - ACTIONS(7431), 1, - anon_sym_QMARK, - STATE(3849), 1, - sym_formal_parameters, - STATE(5338), 1, - sym_type_parameters, - STATE(5366), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [140022] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2347), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, + [139730] = 5, + ACTIONS(7271), 1, anon_sym_AMP, + ACTIONS(7273), 1, anon_sym_PIPE, + ACTIONS(7275), 1, anon_sym_extends, - [140035] = 3, - ACTIONS(6497), 1, - sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6499), 5, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [140050] = 7, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - ACTIONS(7433), 1, + ACTIONS(4194), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - STATE(3849), 1, - sym_formal_parameters, - STATE(5239), 1, - sym__call_signature, - STATE(5338), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [140073] = 4, - ACTIONS(7435), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6806), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(5426), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [140090] = 6, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7394), 1, - anon_sym_LT, - ACTIONS(7437), 1, + [139750] = 4, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(5164), 1, - sym_type_arguments, + STATE(2607), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7439), 2, + ACTIONS(7392), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [140111] = 7, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - ACTIONS(7441), 1, - sym_identifier, - STATE(3849), 1, - sym_formal_parameters, - STATE(5338), 1, - sym_type_parameters, - STATE(5360), 1, - sym__call_signature, + anon_sym_SEMI, + [139767] = 5, + ACTIONS(7416), 1, + anon_sym_default, + ACTIONS(7419), 1, + anon_sym_RBRACE, + ACTIONS(7421), 1, + anon_sym_case, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140134] = 4, - STATE(3874), 1, + STATE(3768), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [139786] = 4, + STATE(3773), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3720), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7443), 3, + ACTIONS(7424), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140151] = 4, - ACTIONS(7445), 1, - anon_sym_LBRACE, - STATE(2625), 1, - sym_statement_block, + [139803] = 4, + STATE(3885), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7292), 4, + ACTIONS(3688), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7426), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140168] = 7, - ACTIONS(3456), 1, - anon_sym_LPAREN, - ACTIONS(6051), 1, - anon_sym_LT, - ACTIONS(7146), 1, - anon_sym_DOT, - ACTIONS(7447), 1, - anon_sym_RPAREN, - STATE(1231), 1, - sym_arguments, - STATE(5549), 1, - sym_type_arguments, + [139820] = 4, + STATE(3885), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140191] = 7, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7449), 1, - anon_sym_export, - ACTIONS(7451), 1, - anon_sym_class, - ACTIONS(7453), 1, - anon_sym_abstract, - STATE(1267), 1, - sym_decorator, - STATE(3898), 1, - aux_sym_export_statement_repeat1, + ACTIONS(3720), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7424), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [139837] = 5, + ACTIONS(7431), 1, + anon_sym_BQUOTE, + ACTIONS(7433), 1, + anon_sym_DOLLAR_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140214] = 5, - ACTIONS(7455), 1, - anon_sym_default, - ACTIONS(7457), 1, + ACTIONS(7428), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3772), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [139856] = 4, + STATE(3885), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3724), 2, anon_sym_RBRACE, - ACTIONS(7459), 1, - anon_sym_case, + anon_sym_PIPE_RBRACE, + ACTIONS(7436), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [139873] = 7, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 1, + anon_sym_SQUOTE, + ACTIONS(7367), 1, + sym_identifier, + STATE(3504), 1, + sym_nested_identifier, + STATE(3657), 1, + sym_string, + STATE(4416), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3916), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [140233] = 7, - ACTIONS(2537), 1, + [139896] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(7461), 1, + ACTIONS(7438), 1, anon_sym_QMARK, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(3699), 1, + STATE(4991), 1, sym__call_signature, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140256] = 4, - ACTIONS(7445), 1, + [139919] = 7, + ACTIONS(7339), 1, + anon_sym_COMMA, + ACTIONS(7343), 1, + anon_sym_LT, + ACTIONS(7440), 1, anon_sym_LBRACE, - STATE(2626), 1, - sym_statement_block, + ACTIONS(7442), 1, + anon_sym_LBRACE_PIPE, + STATE(4601), 1, + aux_sym_extends_type_clause_repeat1, + STATE(5149), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7298), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + [139942] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2338), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [139955] = 7, + ACTIONS(6617), 1, + anon_sym_AMP, + ACTIONS(6619), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_extends, + ACTIONS(7444), 1, anon_sym_COMMA, - anon_sym_SEMI, - [140273] = 7, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6465), 1, - anon_sym_LPAREN, - ACTIONS(7463), 1, - anon_sym_QMARK, - STATE(3466), 1, - sym_formal_parameters, - STATE(3908), 1, - sym__call_signature, - STATE(5469), 1, - sym_type_parameters, + ACTIONS(7446), 1, + anon_sym_GT, + STATE(4731), 1, + aux_sym_implements_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [139978] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(7375), 1, + sym_identifier, + STATE(751), 1, + sym_nested_identifier, + STATE(781), 1, + sym_string, + STATE(904), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140296] = 4, - STATE(3874), 1, + [140001] = 4, + STATE(3876), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3735), 2, + ACTIONS(7450), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7465), 3, + ACTIONS(7448), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140313] = 4, - ACTIONS(7445), 1, + [140018] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2330), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [140031] = 5, + ACTIONS(3238), 1, anon_sym_LBRACE, - STATE(2616), 1, + ACTIONS(7452), 1, + sym_identifier, + ACTIONS(7454), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4666), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [140050] = 4, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2628), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7376), 4, + ACTIONS(7289), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140330] = 4, - ACTIONS(7445), 1, + [140067] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2342), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [140080] = 7, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6462), 1, + anon_sym_LPAREN, + ACTIONS(7456), 1, + anon_sym_QMARK, + STATE(3396), 1, + sym_formal_parameters, + STATE(3856), 1, + sym__call_signature, + STATE(5339), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [140103] = 4, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(2621), 1, + STATE(2644), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7306), 4, + ACTIONS(7333), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140347] = 7, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - ACTIONS(7467), 1, + [140120] = 3, + ACTIONS(4090), 1, sym_identifier, - STATE(3849), 1, - sym_formal_parameters, - STATE(5266), 1, - sym__call_signature, - STATE(5338), 1, - sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140370] = 4, - STATE(3828), 1, - aux_sym_object_type_repeat1, + ACTIONS(4092), 5, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [140135] = 4, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2624), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7471), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7469), 3, + ACTIONS(7412), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140387] = 4, - ACTIONS(7445), 1, + [140152] = 4, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(2606), 1, + STATE(2639), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7298), 4, + ACTIONS(7359), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140404] = 7, - ACTIONS(6616), 1, + [140169] = 7, + ACTIONS(6617), 1, anon_sym_AMP, - ACTIONS(6618), 1, + ACTIONS(6619), 1, anon_sym_PIPE, - ACTIONS(6620), 1, + ACTIONS(6621), 1, anon_sym_extends, - ACTIONS(7473), 1, + ACTIONS(7458), 1, anon_sym_COMMA, - ACTIONS(7475), 1, + ACTIONS(7460), 1, anon_sym_GT, - STATE(4706), 1, + STATE(4828), 1, aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140427] = 4, - ACTIONS(7445), 1, - anon_sym_LBRACE, - STATE(2607), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7292), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [140444] = 7, - ACTIONS(2537), 1, + [140192] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7477), 1, + ACTIONS(7462), 1, anon_sym_QMARK, - STATE(3849), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, - STATE(5509), 1, + STATE(5382), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140467] = 4, - STATE(3868), 1, - aux_sym_object_type_repeat1, + [140215] = 7, + ACTIONS(3443), 1, + anon_sym_LPAREN, + ACTIONS(3521), 1, + anon_sym_LT, + ACTIONS(7464), 1, + anon_sym_RPAREN, + ACTIONS(7466), 1, + anon_sym_DOT, + STATE(1270), 1, + sym_arguments, + STATE(5556), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3707), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7479), 3, - sym__automatic_semicolon, + [140238] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5827), 2, anon_sym_COMMA, - anon_sym_SEMI, - [140484] = 5, - ACTIONS(7484), 1, + anon_sym_RBRACE, + ACTIONS(3758), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [140253] = 5, + ACTIONS(7468), 1, anon_sym_BQUOTE, - ACTIONS(7486), 1, + ACTIONS(7470), 1, anon_sym_DOLLAR_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7481), 2, + ACTIONS(7213), 2, sym__template_chars, sym_escape_sequence, - STATE(3797), 2, + STATE(3812), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [140503] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2333), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [140516] = 7, - ACTIONS(6616), 1, - anon_sym_AMP, - ACTIONS(6618), 1, - anon_sym_PIPE, - ACTIONS(6620), 1, - anon_sym_extends, - ACTIONS(7489), 1, - anon_sym_COMMA, - ACTIONS(7491), 1, - anon_sym_GT, - STATE(5229), 1, - aux_sym_implements_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [140539] = 7, - ACTIONS(2537), 1, + [140272] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(7493), 1, + ACTIONS(7472), 1, anon_sym_QMARK, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4400), 1, + STATE(3738), 1, sym__call_signature, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140562] = 7, - ACTIONS(7188), 1, + [140295] = 4, + ACTIONS(7474), 1, + sym_identifier, + ACTIONS(7476), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7478), 4, + anon_sym_LBRACE, anon_sym_GT, - ACTIONS(7495), 1, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [140312] = 3, + ACTIONS(4062), 1, sym_identifier, - ACTIONS(7497), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4064), 5, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, sym_jsx_identifier, - ACTIONS(7499), 1, anon_sym_SLASH_GT, - STATE(3166), 1, - sym_nested_identifier, - STATE(3431), 1, - sym_jsx_namespace_name, + [140327] = 5, + ACTIONS(6617), 1, + anon_sym_AMP, + ACTIONS(6619), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140585] = 2, + ACTIONS(7480), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [140346] = 5, + ACTIONS(7482), 1, + anon_sym_AMP, + ACTIONS(7484), 1, + anon_sym_PIPE, + ACTIONS(7486), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2341), 6, + ACTIONS(4096), 3, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, + [140365] = 5, + ACTIONS(7482), 1, anon_sym_AMP, + ACTIONS(7484), 1, anon_sym_PIPE, + ACTIONS(7486), 1, anon_sym_extends, - [140598] = 3, - ACTIONS(7501), 1, - anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4113), 5, + ACTIONS(4074), 3, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, + [140384] = 5, + ACTIONS(7482), 1, + anon_sym_AMP, + ACTIONS(7484), 1, anon_sym_PIPE, + ACTIONS(7486), 1, anon_sym_extends, - [140613] = 7, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - ACTIONS(7503), 1, - anon_sym_QMARK, - STATE(3849), 1, - sym_formal_parameters, - STATE(5338), 1, - sym_type_parameters, - STATE(5526), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140636] = 7, - ACTIONS(2537), 1, + ACTIONS(4100), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [140403] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6465), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(7505), 1, + ACTIONS(7488), 1, anon_sym_QMARK, - STATE(3466), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(3855), 1, + STATE(4382), 1, sym__call_signature, - STATE(5469), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140659] = 5, - ACTIONS(7501), 1, - anon_sym_AMP, - ACTIONS(7507), 1, - anon_sym_PIPE, - ACTIONS(7509), 1, - anon_sym_extends, + [140426] = 7, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_LPAREN, + ACTIONS(7490), 1, + sym_identifier, + STATE(3848), 1, + sym_formal_parameters, + STATE(5231), 1, + sym_type_parameters, + STATE(5502), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4139), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [140678] = 7, - ACTIONS(2537), 1, + [140449] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7511), 1, - sym_identifier, - STATE(3849), 1, + ACTIONS(7492), 1, + anon_sym_QMARK, + STATE(3848), 1, sym_formal_parameters, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, - STATE(5442), 1, + STATE(5501), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140701] = 7, - ACTIONS(1510), 1, - anon_sym_DQUOTE, - ACTIONS(1512), 1, - anon_sym_SQUOTE, - ACTIONS(7335), 1, - sym_identifier, - STATE(747), 1, - sym_string, - STATE(810), 1, - sym__module, - STATE(4585), 1, - sym_nested_identifier, + [140472] = 7, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(7494), 1, + anon_sym_export, + ACTIONS(7496), 1, + anon_sym_class, + ACTIONS(7498), 1, + anon_sym_abstract, + STATE(1253), 1, + aux_sym_export_statement_repeat1, + STATE(1290), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140724] = 3, - ACTIONS(7513), 1, + [140495] = 6, + ACTIONS(7271), 1, + anon_sym_AMP, + ACTIONS(7273), 1, + anon_sym_PIPE, + ACTIONS(7275), 1, anon_sym_extends, + ACTIONS(7502), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4153), 5, - anon_sym_as, - anon_sym_LBRACK, + ACTIONS(7500), 2, + anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - [140739] = 7, - ACTIONS(1510), 1, - anon_sym_DQUOTE, - ACTIONS(1512), 1, - anon_sym_SQUOTE, - ACTIONS(7335), 1, - sym_identifier, - STATE(747), 1, - sym_string, - STATE(875), 1, - sym__module, - STATE(4585), 1, - sym_nested_identifier, + [140516] = 6, + ACTIONS(7341), 1, + anon_sym_DOT, + ACTIONS(7343), 1, + anon_sym_LT, + ACTIONS(7504), 1, + anon_sym_LBRACE, + STATE(5143), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140762] = 2, + ACTIONS(7506), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [140537] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7408), 6, + ACTIONS(7251), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_COLON, - [140775] = 7, - ACTIONS(6616), 1, + [140550] = 7, + ACTIONS(6617), 1, anon_sym_AMP, - ACTIONS(6618), 1, + ACTIONS(6619), 1, anon_sym_PIPE, - ACTIONS(6620), 1, + ACTIONS(6621), 1, anon_sym_extends, - ACTIONS(7515), 1, + ACTIONS(7508), 1, anon_sym_COMMA, - ACTIONS(7517), 1, + ACTIONS(7510), 1, anon_sym_GT, - STATE(4803), 1, + STATE(4654), 1, aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140798] = 7, - ACTIONS(6616), 1, - anon_sym_AMP, - ACTIONS(6618), 1, - anon_sym_PIPE, - ACTIONS(6620), 1, - anon_sym_extends, - ACTIONS(7519), 1, - anon_sym_COMMA, - ACTIONS(7521), 1, - anon_sym_GT, - STATE(4682), 1, - aux_sym_implements_clause_repeat1, + [140573] = 4, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2645), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140821] = 4, - ACTIONS(7445), 1, + ACTIONS(7243), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [140590] = 4, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(2658), 1, + STATE(2619), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7384), 4, + ACTIONS(7249), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140838] = 7, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6465), 1, - anon_sym_LPAREN, - ACTIONS(7523), 1, - anon_sym_QMARK, - STATE(3466), 1, - sym_formal_parameters, - STATE(3785), 1, - sym__call_signature, - STATE(5469), 1, - sym_type_parameters, + [140607] = 5, + ACTIONS(7470), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7514), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140861] = 7, - ACTIONS(2537), 1, + ACTIONS(7512), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3772), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [140626] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(7525), 1, + ACTIONS(7516), 1, anon_sym_QMARK, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4303), 1, + STATE(3728), 1, sym__call_signature, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140884] = 6, - ACTIONS(7356), 1, + [140649] = 7, + ACTIONS(6617), 1, anon_sym_AMP, - ACTIONS(7358), 1, + ACTIONS(6619), 1, anon_sym_PIPE, - ACTIONS(7360), 1, + ACTIONS(6621), 1, anon_sym_extends, - ACTIONS(7529), 1, - anon_sym_QMARK, + ACTIONS(7518), 1, + anon_sym_LBRACE, + ACTIONS(7520), 1, + anon_sym_COMMA, + STATE(5088), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7527), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [140905] = 4, - STATE(3853), 1, + [140672] = 4, + STATE(3885), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7533), 2, + ACTIONS(3692), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7531), 3, + ACTIONS(7522), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140922] = 4, - ACTIONS(7535), 1, - sym_identifier, - ACTIONS(7537), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7539), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [140939] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2351), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [140952] = 7, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - ACTIONS(7541), 1, - sym_identifier, - STATE(3849), 1, - sym_formal_parameters, - STATE(5266), 1, - sym__call_signature, - STATE(5338), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [140975] = 7, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7453), 1, - anon_sym_abstract, - ACTIONS(7543), 1, - anon_sym_export, - ACTIONS(7545), 1, - anon_sym_class, - STATE(1267), 1, - sym_decorator, - STATE(3898), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [140998] = 7, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6465), 1, - anon_sym_LPAREN, - ACTIONS(7547), 1, - anon_sym_QMARK, - STATE(3466), 1, - sym_formal_parameters, - STATE(3917), 1, - sym__call_signature, - STATE(5469), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [141021] = 7, - ACTIONS(2537), 1, + [140689] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7549), 1, + ACTIONS(7524), 1, anon_sym_QMARK, - STATE(3276), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(5202), 1, - sym__call_signature, - STATE(5374), 1, + STATE(5231), 1, sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [141044] = 7, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(7551), 1, - anon_sym_QMARK, - STATE(3276), 1, - sym_formal_parameters, - STATE(3570), 1, + STATE(5336), 1, sym__call_signature, - STATE(5374), 1, - sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141067] = 4, - STATE(3854), 1, - aux_sym_object_type_repeat1, + [140712] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3719), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7553), 3, + ACTIONS(7347), 6, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [141084] = 4, - ACTIONS(7445), 1, - anon_sym_LBRACE, - STATE(2612), 1, - sym_statement_block, + anon_sym_COLON, + [140725] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7406), 4, + ACTIONS(7526), 6, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [141101] = 4, - STATE(3874), 1, + anon_sym_PIPE_RBRACE, + [140738] = 5, + ACTIONS(7470), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7528), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7512), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3772), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [140757] = 4, + STATE(3831), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3719), 2, + ACTIONS(7532), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7553), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141118] = 7, - ACTIONS(7390), 1, - anon_sym_COMMA, - ACTIONS(7394), 1, - anon_sym_LT, - ACTIONS(7555), 1, - anon_sym_LBRACE, - ACTIONS(7557), 1, - anon_sym_LBRACE_PIPE, - STATE(4611), 1, - aux_sym_extends_type_clause_repeat1, - STATE(5166), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [141141] = 5, - ACTIONS(3243), 1, - anon_sym_LBRACE, - ACTIONS(7559), 1, + [140774] = 3, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(7561), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4568), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [141160] = 7, - ACTIONS(3456), 1, + ACTIONS(4124), 5, + anon_sym_LBRACE, anon_sym_LPAREN, - ACTIONS(6051), 1, - anon_sym_LT, - ACTIONS(7146), 1, - anon_sym_DOT, - ACTIONS(7563), 1, - anon_sym_RPAREN, - STATE(1231), 1, - sym_arguments, - STATE(5549), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [141183] = 5, - ACTIONS(7501), 1, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [140789] = 5, + ACTIONS(7482), 1, anon_sym_AMP, - ACTIONS(7507), 1, + ACTIONS(7484), 1, anon_sym_PIPE, - ACTIONS(7509), 1, + ACTIONS(7486), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4233), 3, + ACTIONS(4348), 3, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, - [141202] = 3, - ACTIONS(7501), 1, - anon_sym_AMP, + [140808] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4257), 5, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_extends, - [141217] = 7, - ACTIONS(1510), 1, - anon_sym_DQUOTE, - ACTIONS(1512), 1, - anon_sym_SQUOTE, - ACTIONS(7421), 1, + ACTIONS(7257), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + [140821] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7534), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [140834] = 7, + ACTIONS(7159), 1, + anon_sym_GT, + ACTIONS(7536), 1, sym_identifier, - STATE(739), 1, + ACTIONS(7538), 1, + sym_jsx_identifier, + ACTIONS(7540), 1, + anon_sym_SLASH_GT, + STATE(3125), 1, sym_nested_identifier, - STATE(747), 1, - sym_string, - STATE(810), 1, - sym__module, + STATE(3412), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [140857] = 7, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(7542), 1, + anon_sym_QMARK, + STATE(3267), 1, + sym_formal_parameters, + STATE(4052), 1, + sym__call_signature, + STATE(5435), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141240] = 2, + [140880] = 7, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(7544), 1, + anon_sym_QMARK, + STATE(3267), 1, + sym_formal_parameters, + STATE(4366), 1, + sym__call_signature, + STATE(5435), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7404), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - [141253] = 4, - STATE(3874), 1, + [140903] = 4, + STATE(3855), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3707), 2, + ACTIONS(3738), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7479), 3, + ACTIONS(7546), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141270] = 4, - STATE(3856), 1, + [140920] = 5, + ACTIONS(7482), 1, + anon_sym_AMP, + ACTIONS(7484), 1, + anon_sym_PIPE, + ACTIONS(7486), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4356), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [140939] = 4, + STATE(3835), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3699), 2, + ACTIONS(3740), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7565), 3, + ACTIONS(7548), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141287] = 4, - STATE(3874), 1, + [140956] = 4, + STATE(3885), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3697), 2, + ACTIONS(3740), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7567), 3, + ACTIONS(7548), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [140973] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7550), 6, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [141304] = 7, - ACTIONS(2537), 1, + anon_sym_PIPE_RBRACE, + [140986] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7569), 1, + ACTIONS(7552), 1, anon_sym_QMARK, - STATE(3276), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(4142), 1, - sym__call_signature, - STATE(5374), 1, + STATE(5231), 1, sym_type_parameters, + STATE(5375), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141327] = 7, - ACTIONS(2537), 1, + [141009] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6465), 1, + ACTIONS(6462), 1, anon_sym_LPAREN, - ACTIONS(7571), 1, + ACTIONS(7554), 1, anon_sym_QMARK, - STATE(3466), 1, + STATE(3396), 1, sym_formal_parameters, - STATE(3931), 1, + STATE(3843), 1, sym__call_signature, - STATE(5469), 1, + STATE(5339), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141350] = 7, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(7364), 1, - sym_identifier, - STATE(3505), 1, - sym_nested_identifier, - STATE(3750), 1, - sym_string, - STATE(4410), 1, - sym__module, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [141373] = 4, - STATE(3891), 1, + [141032] = 4, + STATE(3885), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7575), 2, + ACTIONS(3726), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7573), 3, + ACTIONS(7556), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141390] = 4, - ACTIONS(7445), 1, - anon_sym_LBRACE, - STATE(2655), 1, - sym_statement_block, + [141049] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7380), 4, + ACTIONS(7558), 6, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [141407] = 5, - ACTIONS(7579), 1, - anon_sym_BQUOTE, - ACTIONS(7581), 1, - anon_sym_DOLLAR_LBRACE, + anon_sym_PIPE_RBRACE, + [141062] = 7, + ACTIONS(7159), 1, + anon_sym_GT, + ACTIONS(7560), 1, + sym_identifier, + ACTIONS(7562), 1, + sym_jsx_identifier, + ACTIONS(7564), 1, + anon_sym_SLASH_GT, + STATE(3117), 1, + sym_nested_identifier, + STATE(3373), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7577), 2, - sym__template_chars, - sym_escape_sequence, - STATE(3797), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [141426] = 7, - ACTIONS(2537), 1, + [141085] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7583), 1, - sym_identifier, - STATE(3849), 1, + ACTIONS(7566), 1, + anon_sym_QMARK, + STATE(3848), 1, sym_formal_parameters, - STATE(5266), 1, - sym__call_signature, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, + STATE(5344), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141449] = 5, - ACTIONS(7501), 1, - anon_sym_AMP, - ACTIONS(7507), 1, - anon_sym_PIPE, - ACTIONS(7509), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4299), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [141468] = 5, - ACTIONS(7501), 1, - anon_sym_AMP, - ACTIONS(7507), 1, - anon_sym_PIPE, - ACTIONS(7509), 1, - anon_sym_extends, + [141108] = 4, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2641), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4347), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [141487] = 5, - ACTIONS(3243), 1, + ACTIONS(7361), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [141125] = 5, + ACTIONS(3238), 1, anon_sym_LBRACE, - ACTIONS(7561), 1, + ACTIONS(7454), 1, anon_sym_LBRACK, - ACTIONS(7585), 1, + ACTIONS(7568), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4750), 3, + STATE(4570), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [141506] = 4, - ACTIONS(7435), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6796), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(5314), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [141523] = 7, - ACTIONS(2537), 1, + [141144] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7587), 1, - anon_sym_QMARK, - STATE(3276), 1, + ACTIONS(7570), 1, + sym_identifier, + STATE(3848), 1, sym_formal_parameters, - STATE(3526), 1, - sym__call_signature, - STATE(5374), 1, + STATE(5231), 1, sym_type_parameters, + STATE(5262), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141546] = 7, - ACTIONS(7188), 1, - anon_sym_GT, - ACTIONS(7589), 1, + [141167] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(7375), 1, sym_identifier, - ACTIONS(7591), 1, - sym_jsx_identifier, - ACTIONS(7593), 1, - anon_sym_SLASH_GT, - STATE(3142), 1, + STATE(751), 1, sym_nested_identifier, - STATE(3432), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [141569] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7595), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [141582] = 4, - STATE(3874), 1, - aux_sym_object_type_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3699), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7565), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [141599] = 4, - STATE(3874), 1, - aux_sym_object_type_repeat1, + STATE(781), 1, + sym_string, + STATE(900), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3713), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7597), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [141616] = 4, - ACTIONS(7445), 1, + [141190] = 4, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(2656), 1, + STATE(2614), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7382), 4, + ACTIONS(7283), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141633] = 4, - STATE(3874), 1, + [141207] = 4, + STATE(3885), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3701), 2, + ACTIONS(3738), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7599), 3, + ACTIONS(7546), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141650] = 3, - ACTIONS(4377), 1, + [141224] = 3, + ACTIONS(6546), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4379), 5, + ACTIONS(6548), 5, + anon_sym_EQ, anon_sym_LBRACE, - anon_sym_LPAREN, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [141665] = 7, - ACTIONS(6616), 1, - anon_sym_AMP, - ACTIONS(6618), 1, - anon_sym_PIPE, - ACTIONS(6620), 1, - anon_sym_extends, - ACTIONS(7601), 1, - anon_sym_COMMA, - ACTIONS(7603), 1, - anon_sym_GT, - STATE(4650), 1, - aux_sym_implements_clause_repeat1, + [141239] = 5, + ACTIONS(3378), 1, + anon_sym_LBRACE, + ACTIONS(3380), 1, + anon_sym_LBRACK, + ACTIONS(7572), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141688] = 4, - ACTIONS(7445), 1, + STATE(4623), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [141258] = 4, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(2632), 1, + STATE(2608), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7351), 4, + ACTIONS(7349), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141705] = 2, + [141275] = 4, + ACTIONS(7574), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7258), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(6770), 2, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - [141718] = 5, - ACTIONS(7501), 1, - anon_sym_AMP, - ACTIONS(7507), 1, - anon_sym_PIPE, - ACTIONS(7509), 1, - anon_sym_extends, + anon_sym_EQ_GT, + STATE(5489), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [141292] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4335), 3, + ACTIONS(2326), 6, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, - [141737] = 4, - ACTIONS(7445), 1, - anon_sym_LBRACE, - STATE(2654), 1, - sym_statement_block, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [141305] = 7, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_LPAREN, + ACTIONS(7576), 1, + anon_sym_QMARK, + STATE(3848), 1, + sym_formal_parameters, + STATE(5231), 1, + sym_type_parameters, + STATE(5346), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7378), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [141754] = 5, - ACTIONS(3383), 1, - anon_sym_LBRACE, - ACTIONS(3385), 1, - anon_sym_LBRACK, - ACTIONS(7605), 1, + [141328] = 7, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 1, + anon_sym_SQUOTE, + ACTIONS(7367), 1, sym_identifier, + STATE(3504), 1, + sym_nested_identifier, + STATE(3657), 1, + sym_string, + STATE(4391), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4731), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [141773] = 7, - ACTIONS(2537), 1, + [141351] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7607), 1, - anon_sym_QMARK, - STATE(3849), 1, + ACTIONS(7578), 1, + sym_identifier, + STATE(3848), 1, sym_formal_parameters, - STATE(5286), 1, - sym__call_signature, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, + STATE(5451), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141796] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7609), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [141809] = 7, - ACTIONS(2537), 1, + [141374] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(6462), 1, anon_sym_LPAREN, - ACTIONS(7611), 1, + ACTIONS(7580), 1, anon_sym_QMARK, - STATE(3276), 1, + STATE(3396), 1, sym_formal_parameters, - STATE(4429), 1, + STATE(3839), 1, sym__call_signature, - STATE(5374), 1, + STATE(5339), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141832] = 4, - STATE(3838), 1, - aux_sym_object_type_repeat1, + [141397] = 5, + ACTIONS(7582), 1, + anon_sym_default, + ACTIONS(7584), 1, + anon_sym_RBRACE, + ACTIONS(7586), 1, + anon_sym_case, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3721), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7613), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [141849] = 4, - STATE(3874), 1, + STATE(3768), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [141416] = 4, + STATE(3885), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3711), 2, + ACTIONS(3722), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7615), 3, + ACTIONS(7588), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141866] = 4, - ACTIONS(7445), 1, + [141433] = 4, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(2630), 1, + STATE(2611), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7306), 4, + ACTIONS(7353), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141883] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2337), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [141896] = 7, - ACTIONS(2537), 1, + [141450] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(7617), 1, + ACTIONS(7590), 1, anon_sym_QMARK, - STATE(3849), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(5338), 1, - sym_type_parameters, - STATE(5346), 1, + STATE(3932), 1, sym__call_signature, + STATE(5435), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141919] = 4, - STATE(3836), 1, - aux_sym_object_type_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7621), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7619), 3, - sym__automatic_semicolon, + [141473] = 7, + ACTIONS(6617), 1, + anon_sym_AMP, + ACTIONS(6619), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_extends, + ACTIONS(7592), 1, anon_sym_COMMA, - anon_sym_SEMI, - [141936] = 7, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7453), 1, - anon_sym_abstract, - ACTIONS(7545), 1, - anon_sym_class, - ACTIONS(7623), 1, - anon_sym_export, - STATE(1267), 1, - sym_decorator, - STATE(3898), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [141959] = 4, - STATE(3874), 1, - aux_sym_object_type_repeat1, + ACTIONS(7594), 1, + anon_sym_GT, + STATE(4686), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7628), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7625), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [141976] = 7, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(7630), 1, - anon_sym_QMARK, - STATE(3276), 1, - sym_formal_parameters, - STATE(3657), 1, - sym__call_signature, - STATE(5374), 1, - sym_type_parameters, + [141496] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(7319), 1, + sym_identifier, + STATE(781), 1, + sym_string, + STATE(904), 1, + sym__module, + STATE(4574), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141999] = 7, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - ACTIONS(7632), 1, - anon_sym_QMARK, - STATE(3276), 1, - sym_formal_parameters, - STATE(5049), 1, - sym__call_signature, - STATE(5374), 1, - sym_type_parameters, + [141519] = 4, + ACTIONS(7574), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142022] = 7, - ACTIONS(1510), 1, + ACTIONS(6766), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(5302), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [141536] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1512), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(7421), 1, + ACTIONS(7319), 1, sym_identifier, - STATE(739), 1, - sym_nested_identifier, - STATE(747), 1, + STATE(781), 1, sym_string, - STATE(875), 1, + STATE(900), 1, sym__module, + STATE(4574), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142045] = 5, - ACTIONS(7634), 1, - anon_sym_default, - ACTIONS(7637), 1, - anon_sym_RBRACE, - ACTIONS(7639), 1, - anon_sym_case, + [141559] = 7, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_LPAREN, + ACTIONS(7596), 1, + sym_identifier, + STATE(3848), 1, + sym_formal_parameters, + STATE(5231), 1, + sym_type_parameters, + STATE(5451), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3878), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [142064] = 7, - ACTIONS(6616), 1, + [141582] = 7, + ACTIONS(6617), 1, anon_sym_AMP, - ACTIONS(6618), 1, + ACTIONS(6619), 1, anon_sym_PIPE, - ACTIONS(6620), 1, + ACTIONS(6621), 1, anon_sym_extends, - ACTIONS(7642), 1, + ACTIONS(7598), 1, anon_sym_COMMA, - ACTIONS(7644), 1, + ACTIONS(7600), 1, anon_sym_GT, - STATE(4930), 1, + STATE(5211), 1, aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142087] = 7, - ACTIONS(2537), 1, + [141605] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7646), 1, + ACTIONS(7602), 1, anon_sym_QMARK, - STATE(3276), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(3703), 1, + STATE(5231), 1, + sym_type_parameters, + STATE(5524), 1, sym__call_signature, - STATE(5374), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [141628] = 7, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_LPAREN, + ACTIONS(7604), 1, + sym_identifier, + STATE(3848), 1, + sym_formal_parameters, + STATE(5231), 1, sym_type_parameters, + STATE(5426), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142110] = 7, - ACTIONS(2537), 1, + [141651] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7648), 1, + ACTIONS(7606), 1, anon_sym_QMARK, - STATE(3276), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(3710), 1, - sym__call_signature, - STATE(5374), 1, + STATE(5231), 1, sym_type_parameters, + STATE(5367), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [141674] = 7, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(7496), 1, + anon_sym_class, + ACTIONS(7498), 1, + anon_sym_abstract, + ACTIONS(7608), 1, + anon_sym_export, + STATE(1253), 1, + aux_sym_export_statement_repeat1, + STATE(1290), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142133] = 7, - ACTIONS(2537), 1, + [141697] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(7650), 1, + ACTIONS(7610), 1, anon_sym_QMARK, - STATE(3849), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(5267), 1, + STATE(3683), 1, sym__call_signature, - STATE(5338), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142156] = 5, - ACTIONS(7501), 1, - anon_sym_AMP, - ACTIONS(7507), 1, - anon_sym_PIPE, - ACTIONS(7509), 1, - anon_sym_extends, + [141720] = 7, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(7612), 1, + anon_sym_QMARK, + STATE(3267), 1, + sym_formal_parameters, + STATE(3764), 1, + sym__call_signature, + STATE(5435), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4403), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [142175] = 6, - ACTIONS(3541), 1, - anon_sym_COLON, - ACTIONS(7280), 1, - anon_sym_EQ, - STATE(4591), 1, - sym_type_annotation, - STATE(5584), 1, - sym__initializer, + [141743] = 7, + ACTIONS(3443), 1, + anon_sym_LPAREN, + ACTIONS(3521), 1, + anon_sym_LT, + ACTIONS(7466), 1, + anon_sym_DOT, + ACTIONS(7614), 1, + anon_sym_RPAREN, + STATE(1270), 1, + sym_arguments, + STATE(5556), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7652), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [142196] = 4, - STATE(3874), 1, + [141766] = 4, + STATE(3815), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3721), 2, + ACTIONS(3714), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7613), 3, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142213] = 7, - ACTIONS(2537), 1, + [141783] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7654), 1, + ACTIONS(7618), 1, sym_identifier, - STATE(3849), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, - STATE(5545), 1, + STATE(5502), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142236] = 4, - STATE(3912), 1, - aux_sym_object_type_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3737), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7656), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [142253] = 4, - ACTIONS(7445), 1, - anon_sym_LBRACE, - STATE(2645), 1, - sym_statement_block, + [141806] = 3, + ACTIONS(7482), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7276), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [142270] = 5, - ACTIONS(7581), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7658), 1, - anon_sym_BQUOTE, + ACTIONS(4182), 5, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_extends, + [141821] = 5, + ACTIONS(7482), 1, + anon_sym_AMP, + ACTIONS(7484), 1, + anon_sym_PIPE, + ACTIONS(7486), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7577), 2, - sym__template_chars, - sym_escape_sequence, - STATE(3797), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [142289] = 4, - ACTIONS(7445), 1, - anon_sym_LBRACE, - STATE(2622), 1, - sym_statement_block, + ACTIONS(4194), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [141840] = 3, + ACTIONS(7620), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7252), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [142306] = 4, - STATE(3874), 1, + ACTIONS(4202), 5, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + [141855] = 4, + STATE(3885), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3737), 2, + ACTIONS(3714), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7656), 3, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142323] = 7, - ACTIONS(6616), 1, + [141872] = 7, + ACTIONS(6617), 1, anon_sym_AMP, - ACTIONS(6618), 1, + ACTIONS(6619), 1, anon_sym_PIPE, - ACTIONS(6620), 1, + ACTIONS(6621), 1, anon_sym_extends, - ACTIONS(7660), 1, - anon_sym_LBRACE, - ACTIONS(7662), 1, + ACTIONS(7622), 1, anon_sym_COMMA, - STATE(4777), 1, + ACTIONS(7624), 1, + anon_sym_GT, + STATE(4830), 1, aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142346] = 7, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - ACTIONS(7664), 1, - sym_identifier, - STATE(3849), 1, - sym_formal_parameters, - STATE(5266), 1, - sym__call_signature, - STATE(5338), 1, - sym_type_parameters, + [141895] = 4, + STATE(3889), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142369] = 7, - ACTIONS(2537), 1, + ACTIONS(7628), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7626), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [141912] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(6462), 1, anon_sym_LPAREN, - ACTIONS(7666), 1, + ACTIONS(7630), 1, anon_sym_QMARK, - STATE(3276), 1, + STATE(3396), 1, sym_formal_parameters, - STATE(4116), 1, + STATE(3918), 1, sym__call_signature, - STATE(5374), 1, + STATE(5339), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142392] = 7, - ACTIONS(6616), 1, - anon_sym_AMP, - ACTIONS(6618), 1, - anon_sym_PIPE, - ACTIONS(6620), 1, - anon_sym_extends, - ACTIONS(7668), 1, + [141935] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3758), 6, + anon_sym_EQ, anon_sym_COMMA, - ACTIONS(7670), 1, - anon_sym_GT, - STATE(4723), 1, - aux_sym_implements_clause_repeat1, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [141948] = 4, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2660), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142415] = 4, - ACTIONS(7445), 1, + ACTIONS(7361), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [141965] = 4, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(2615), 1, + STATE(2662), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7339), 4, + ACTIONS(7359), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142432] = 7, - ACTIONS(2537), 1, + [141982] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7672), 1, + ACTIONS(7632), 1, anon_sym_QMARK, - STATE(3276), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(5207), 1, + STATE(5231), 1, + sym_type_parameters, + STATE(5275), 1, sym__call_signature, - STATE(5374), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [142005] = 7, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_LPAREN, + ACTIONS(7634), 1, + sym_identifier, + STATE(3848), 1, + sym_formal_parameters, + STATE(5231), 1, sym_type_parameters, + STATE(5502), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142455] = 5, - ACTIONS(7674), 1, - anon_sym_AT, - STATE(1267), 1, - sym_decorator, - STATE(3898), 1, - aux_sym_export_statement_repeat1, + [142028] = 4, + STATE(3885), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3575), 3, - anon_sym_export, - anon_sym_class, - anon_sym_abstract, - [142474] = 2, + ACTIONS(7639), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7636), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142045] = 4, + STATE(3896), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7264), 6, + ACTIONS(3734), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7641), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - [142487] = 7, - ACTIONS(2537), 1, + [142062] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7677), 1, - sym_identifier, - STATE(3849), 1, + ACTIONS(7643), 1, + anon_sym_QMARK, + STATE(3848), 1, sym_formal_parameters, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, - STATE(5545), 1, + STATE(5310), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142510] = 7, - ACTIONS(2537), 1, + [142085] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6465), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7679), 1, + ACTIONS(7645), 1, anon_sym_QMARK, - STATE(3466), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(3862), 1, - sym__call_signature, - STATE(5469), 1, + STATE(5231), 1, sym_type_parameters, + STATE(5247), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142533] = 4, + [142108] = 4, STATE(3885), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7683), 2, + ACTIONS(3734), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7681), 3, + ACTIONS(7641), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142550] = 7, - ACTIONS(2537), 1, + [142125] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(7685), 1, - sym_identifier, - STATE(3849), 1, + ACTIONS(7647), 1, + anon_sym_QMARK, + STATE(3267), 1, sym_formal_parameters, - STATE(5338), 1, - sym_type_parameters, - STATE(5545), 1, + STATE(3575), 1, sym__call_signature, + STATE(5435), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142573] = 4, - ACTIONS(7445), 1, - anon_sym_LBRACE, - STATE(2653), 1, - sym_statement_block, + [142148] = 5, + ACTIONS(7582), 1, + anon_sym_default, + ACTIONS(7586), 1, + anon_sym_case, + ACTIONS(7649), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7376), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [142590] = 3, - ACTIONS(4263), 1, + STATE(3854), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [142167] = 7, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_LPAREN, + ACTIONS(7651), 1, sym_identifier, + STATE(3848), 1, + sym_formal_parameters, + STATE(5231), 1, + sym_type_parameters, + STATE(5451), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4265), 5, - anon_sym_LBRACE, + [142190] = 7, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(3244), 1, anon_sym_LPAREN, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [142605] = 4, - ACTIONS(7445), 1, - anon_sym_LBRACE, - STATE(2640), 1, - sym_statement_block, + ACTIONS(7653), 1, + anon_sym_QMARK, + STATE(3267), 1, + sym_formal_parameters, + STATE(4350), 1, + sym__call_signature, + STATE(5435), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7374), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [142622] = 4, - STATE(3779), 1, + [142213] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2334), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [142226] = 5, + ACTIONS(7470), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7655), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7171), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3819), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [142245] = 4, + STATE(3885), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7689), 2, + ACTIONS(3702), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7687), 3, + ACTIONS(7657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142639] = 4, - ACTIONS(7445), 1, + [142262] = 4, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(2631), 1, + STATE(2613), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7252), 4, + ACTIONS(7283), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142656] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7691), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [142669] = 5, - ACTIONS(7581), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7693), 1, - anon_sym_BQUOTE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7232), 2, - sym__template_chars, - sym_escape_sequence, - STATE(3844), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [142688] = 5, - ACTIONS(6616), 1, + [142279] = 5, + ACTIONS(7482), 1, anon_sym_AMP, - ACTIONS(6618), 1, + ACTIONS(7484), 1, anon_sym_PIPE, - ACTIONS(6620), 1, + ACTIONS(7486), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7695), 3, + ACTIONS(4262), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [142298] = 4, + ACTIONS(7414), 1, anon_sym_LBRACE, + STATE(2656), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7349), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_GT, - [142707] = 4, - STATE(3874), 1, - aux_sym_object_type_repeat1, + anon_sym_SEMI, + [142315] = 4, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2620), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3741), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7697), 3, + ACTIONS(7394), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142724] = 5, - ACTIONS(7581), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7699), 1, - anon_sym_BQUOTE, + [142332] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7172), 2, - sym__template_chars, - sym_escape_sequence, - STATE(3889), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [142743] = 7, - ACTIONS(2537), 1, + ACTIONS(7285), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + [142345] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6462), 1, anon_sym_LPAREN, - ACTIONS(7701), 1, - sym_identifier, - STATE(3849), 1, + ACTIONS(7659), 1, + anon_sym_QMARK, + STATE(3396), 1, sym_formal_parameters, - STATE(5338), 1, - sym_type_parameters, - STATE(5545), 1, + STATE(3921), 1, sym__call_signature, + STATE(5339), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142766] = 4, - STATE(3787), 1, + [142368] = 4, + STATE(3923), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3731), 2, + ACTIONS(7663), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7443), 3, + ACTIONS(7661), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142783] = 5, - ACTIONS(7455), 1, - anon_sym_default, - ACTIONS(7459), 1, - anon_sym_case, - ACTIONS(7703), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3878), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [142802] = 4, - ACTIONS(7445), 1, + [142385] = 4, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(2610), 1, + STATE(2631), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7374), 4, + ACTIONS(7392), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142819] = 5, - ACTIONS(6616), 1, - anon_sym_AMP, - ACTIONS(6618), 1, - anon_sym_PIPE, - ACTIONS(6620), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7705), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [142838] = 7, - ACTIONS(2537), 1, + [142402] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7707), 1, - anon_sym_QMARK, - STATE(3849), 1, + ACTIONS(7665), 1, + sym_identifier, + STATE(3848), 1, sym_formal_parameters, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, - STATE(5435), 1, + STATE(5502), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142861] = 2, + [142425] = 4, + STATE(3844), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 6, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(7669), 2, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - [142874] = 3, - ACTIONS(4405), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4407), 5, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [142889] = 7, - ACTIONS(2537), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(7667), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142442] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - ACTIONS(7709), 1, - anon_sym_QMARK, - STATE(3849), 1, + ACTIONS(7671), 1, + sym_identifier, + STATE(3848), 1, sym_formal_parameters, - STATE(5310), 1, - sym__call_signature, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, + STATE(5451), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142912] = 7, - ACTIONS(2537), 1, + [142465] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(7711), 1, + ACTIONS(7673), 1, anon_sym_QMARK, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4420), 1, + STATE(3662), 1, sym__call_signature, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142935] = 7, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - ACTIONS(7713), 1, - anon_sym_QMARK, - STATE(3849), 1, - sym_formal_parameters, - STATE(5327), 1, - sym__call_signature, - STATE(5338), 1, - sym_type_parameters, + [142488] = 5, + ACTIONS(6617), 1, + anon_sym_AMP, + ACTIONS(6619), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142958] = 7, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - ACTIONS(7715), 1, - anon_sym_QMARK, - STATE(3849), 1, - sym_formal_parameters, - STATE(5338), 1, - sym_type_parameters, - STATE(5580), 1, - sym__call_signature, + ACTIONS(7675), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_GT, + [142507] = 7, + ACTIONS(6617), 1, + anon_sym_AMP, + ACTIONS(6619), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_extends, + ACTIONS(7677), 1, + anon_sym_COMMA, + ACTIONS(7679), 1, + anon_sym_GT, + STATE(4713), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142981] = 7, - ACTIONS(2537), 1, + [142530] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(7717), 1, + ACTIONS(7681), 1, anon_sym_QMARK, - STATE(3849), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(5255), 1, + STATE(4262), 1, sym__call_signature, - STATE(5338), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143004] = 7, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - ACTIONS(7364), 1, - sym_identifier, - STATE(3505), 1, - sym_nested_identifier, - STATE(3750), 1, - sym_string, - STATE(4447), 1, - sym__module, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [143027] = 4, - ACTIONS(7445), 1, + [142553] = 4, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(2642), 1, + STATE(2615), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7339), 4, + ACTIONS(7396), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143044] = 2, + [142570] = 4, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2634), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7719), 6, + ACTIONS(7394), 4, sym__automatic_semicolon, - anon_sym_LBRACE, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143057] = 3, + [142587] = 7, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(7683), 1, + anon_sym_QMARK, + STATE(3267), 1, + sym_formal_parameters, + STATE(5215), 1, + sym__call_signature, + STATE(5435), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5850), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3791), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [143072] = 4, - ACTIONS(7445), 1, + [142610] = 4, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(2644), 1, + STATE(2621), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7351), 4, + ACTIONS(7333), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143089] = 5, - ACTIONS(7501), 1, - anon_sym_AMP, - ACTIONS(7507), 1, - anon_sym_PIPE, - ACTIONS(7509), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4311), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [143108] = 6, - ACTIONS(2537), 1, + [142627] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(3276), 1, + ACTIONS(7685), 1, + anon_sym_QMARK, + STATE(3848), 1, sym_formal_parameters, - STATE(3598), 1, - sym__call_signature, - STATE(5374), 1, + STATE(5231), 1, sym_type_parameters, + STATE(5315), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143128] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4703), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7721), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [143144] = 4, - ACTIONS(6459), 1, + [142650] = 6, + ACTIONS(3530), 1, + anon_sym_COLON, + ACTIONS(7237), 1, anon_sym_EQ, - STATE(5165), 1, + STATE(4477), 1, + sym_type_annotation, + STATE(5227), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7723), 3, - sym__automatic_semicolon, + ACTIONS(7687), 2, anon_sym_COMMA, - anon_sym_SEMI, - [143160] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(5193), 1, - sym__initializer, + anon_sym_RPAREN, + [142671] = 4, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2618), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7723), 3, + ACTIONS(7406), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143176] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4891), 5, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [143188] = 2, + [142688] = 7, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(7498), 1, + anon_sym_abstract, + ACTIONS(7689), 1, + anon_sym_export, + ACTIONS(7691), 1, + anon_sym_class, + STATE(1253), 1, + aux_sym_export_statement_repeat1, + STATE(1290), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4887), 5, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [143200] = 2, + [142711] = 4, + STATE(3770), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2639), 5, + ACTIONS(3690), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7693), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143212] = 2, + [142728] = 4, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2635), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2695), 5, + ACTIONS(7243), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143224] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4708), 1, - sym__initializer, + [142745] = 3, + ACTIONS(7482), 1, + anon_sym_AMP, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4286), 5, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_extends, + [142760] = 4, + STATE(3885), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7725), 3, + ACTIONS(3690), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7693), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143240] = 6, - ACTIONS(2537), 1, + [142777] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6465), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - STATE(3466), 1, + ACTIONS(7695), 1, + anon_sym_QMARK, + STATE(3267), 1, sym_formal_parameters, - STATE(3981), 1, + STATE(4890), 1, sym__call_signature, - STATE(5469), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143260] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4709), 1, - sym__initializer, + [142800] = 4, + STATE(3771), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, + ACTIONS(7699), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7697), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143276] = 6, - ACTIONS(2537), 1, + [142817] = 7, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6462), 1, anon_sym_LPAREN, - STATE(3849), 1, + ACTIONS(7701), 1, + anon_sym_QMARK, + STATE(3396), 1, sym_formal_parameters, - STATE(5328), 1, + STATE(3900), 1, sym__call_signature, - STATE(5338), 1, + STATE(5339), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143296] = 4, - ACTIONS(6459), 1, + [142840] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4710), 1, + STATE(4754), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, + ACTIONS(7703), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143312] = 6, - ACTIONS(1676), 1, - anon_sym_LBRACE, - ACTIONS(7727), 1, - anon_sym_SEMI, - ACTIONS(7729), 1, - sym__automatic_semicolon, - ACTIONS(7731), 1, - sym__function_signature_automatic_semicolon, - STATE(243), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [143332] = 5, - ACTIONS(7733), 1, - anon_sym_BQUOTE, - ACTIONS(7735), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7737), 1, - sym__template_chars, + [142856] = 3, + ACTIONS(7707), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4310), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [143350] = 4, - ACTIONS(6459), 1, + ACTIONS(7705), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [142870] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5194), 1, + STATE(4702), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7723), 3, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143366] = 4, - ACTIONS(6459), 1, + [142886] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4719), 1, + STATE(4703), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7725), 3, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143382] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(5209), 1, - sym__initializer, + [142902] = 6, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + STATE(3267), 1, + sym_formal_parameters, + STATE(4050), 1, + sym__call_signature, + STATE(5435), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [142922] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7723), 3, + ACTIONS(7361), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [143398] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4726), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [142934] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7725), 3, + ACTIONS(7711), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [143414] = 4, - ACTIONS(6459), 1, + anon_sym_PIPE_RBRACE, + [142946] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4727), 1, + STATE(4725), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, + ACTIONS(7713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143430] = 4, - ACTIONS(6459), 1, + [142962] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4728), 1, + STATE(5163), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, + ACTIONS(7715), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143446] = 3, - ACTIONS(7741), 1, + [142978] = 3, + ACTIONS(7719), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7739), 4, + ACTIONS(7717), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [143460] = 3, - ACTIONS(7743), 1, - sym_identifier, + [142992] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4739), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7745), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [143474] = 4, - ACTIONS(6459), 1, + ACTIONS(7713), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143008] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4735), 1, + STATE(4740), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7725), 3, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143490] = 4, - ACTIONS(6459), 1, + [143024] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4738), 1, + STATE(4741), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143506] = 4, - ACTIONS(6459), 1, + [143040] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4739), 1, + STATE(4742), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143522] = 2, + [143056] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4744), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2615), 5, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143534] = 2, + [143072] = 3, + ACTIONS(7723), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7721), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [143086] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2627), 5, + ACTIONS(2926), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143546] = 2, + [143098] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2631), 5, + ACTIONS(2930), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143558] = 3, - ACTIONS(7749), 1, - anon_sym_LT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7747), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [143572] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4741), 1, - sym__initializer, + [143110] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, + ACTIONS(2934), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [143588] = 4, - ACTIONS(6459), 1, + anon_sym_PIPE_RBRACE, + [143122] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7725), 5, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_extends, + anon_sym_implements, + [143134] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4743), 1, + STATE(4656), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, + ACTIONS(7715), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143604] = 2, + [143150] = 4, + ACTIONS(7574), 1, + anon_sym_COLON, + ACTIONS(7727), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7751), 5, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [143616] = 4, - ACTIONS(6459), 1, + STATE(5489), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [143166] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4754), 1, + STATE(4747), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7725), 3, + ACTIONS(7713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143632] = 4, - ACTIONS(6459), 1, + [143182] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4640), 1, + STATE(4748), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7753), 3, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143648] = 6, - ACTIONS(221), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1500), 1, - anon_sym_LBRACE, - ACTIONS(7370), 1, - anon_sym_extends, - STATE(811), 1, - sym_object_type, - STATE(4866), 1, - sym_extends_type_clause, + [143198] = 3, + ACTIONS(7732), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143668] = 4, - ACTIONS(6459), 1, + ACTIONS(7730), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [143212] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4766), 1, + STATE(4751), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7725), 3, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143684] = 3, - ACTIONS(7755), 1, + [143228] = 3, + ACTIONS(7732), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7757), 4, + ACTIONS(7730), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [143698] = 5, - ACTIONS(7759), 1, - sym_identifier, - ACTIONS(7761), 1, - anon_sym_LPAREN, - STATE(1213), 1, - sym_decorator_member_expression, + [143242] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7361), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [143254] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1280), 2, - sym_decorator_call_expression, - sym_decorator_parenthesized_expression, - [143716] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4772), 1, - sym__initializer, + ACTIONS(7734), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [143266] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7725), 3, + ACTIONS(7359), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [143732] = 2, + anon_sym_PIPE_RBRACE, + [143278] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7609), 5, + ACTIONS(7736), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [143744] = 2, + anon_sym_PIPE_RBRACE, + [143290] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7691), 5, + ACTIONS(7526), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [143756] = 2, + [143302] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7719), 5, + ACTIONS(7550), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [143768] = 2, + [143314] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2667), 5, + ACTIONS(7558), 5, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143780] = 6, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6465), 1, - anon_sym_LPAREN, - STATE(3466), 1, - sym_formal_parameters, - STATE(3946), 1, - sym__call_signature, - STATE(5469), 1, - sym_type_parameters, + [143326] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4766), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143800] = 2, + ACTIONS(7713), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143342] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2671), 5, + ACTIONS(2702), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143812] = 2, + [143354] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2671), 5, + ACTIONS(2742), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143824] = 6, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(3849), 1, - sym_formal_parameters, - STATE(5338), 1, - sym_type_parameters, - STATE(5417), 1, - sym__call_signature, + [143366] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143844] = 6, - ACTIONS(1676), 1, - anon_sym_LBRACE, - ACTIONS(7763), 1, - anon_sym_SEMI, - ACTIONS(7765), 1, + ACTIONS(2742), 5, sym__automatic_semicolon, - ACTIONS(7767), 1, - sym__function_signature_automatic_semicolon, - STATE(240), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [143864] = 2, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [143378] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2679), 5, + ACTIONS(2876), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143876] = 2, + [143390] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2687), 5, + ACTIONS(2888), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143888] = 2, + [143402] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1913), 5, + ACTIONS(1751), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143900] = 2, + [143414] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2671), 5, + ACTIONS(2742), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143912] = 2, + [143426] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2671), 5, + ACTIONS(2742), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143924] = 2, + [143438] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2671), 5, + ACTIONS(2742), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143936] = 2, + [143450] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2671), 5, + ACTIONS(2742), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143948] = 4, - ACTIONS(6459), 1, + [143462] = 5, + ACTIONS(7738), 1, + sym_identifier, + ACTIONS(7740), 1, + anon_sym_LPAREN, + STATE(2606), 1, + sym_decorator_member_expression, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(2752), 2, + sym_decorator_call_expression, + sym_decorator_parenthesized_expression, + [143480] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4775), 1, + STATE(4662), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7725), 3, + ACTIONS(7742), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143964] = 5, - ACTIONS(1510), 1, - anon_sym_DQUOTE, - ACTIONS(1512), 1, - anon_sym_SQUOTE, - ACTIONS(7769), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5658), 2, - sym__module_export_name, - sym_string, - [143982] = 4, - ACTIONS(6459), 1, + [143496] = 4, + ACTIONS(6444), 1, anon_sym_EQ, STATE(4776), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, + ACTIONS(7713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143998] = 4, - ACTIONS(6459), 1, + [143512] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4778), 1, + STATE(4779), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144014] = 4, - ACTIONS(6459), 1, + [143528] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4698), 1, + STATE(4781), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7753), 3, + ACTIONS(7709), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143544] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7744), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [144030] = 2, + anon_sym_PIPE_RBRACE, + [143556] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4889), 5, + ACTIONS(4960), 5, anon_sym_EQ, anon_sym_RPAREN, anon_sym_in, anon_sym_of, anon_sym_COLON, - [144042] = 4, - ACTIONS(6459), 1, + [143568] = 6, + ACTIONS(7237), 1, anon_sym_EQ, - STATE(4786), 1, + ACTIONS(7746), 1, + anon_sym_COMMA, + ACTIONS(7748), 1, + anon_sym_RBRACE, + STATE(4873), 1, + aux_sym_enum_body_repeat1, + STATE(5562), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7725), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [144058] = 2, + [143588] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2895), 5, + ACTIONS(2596), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144070] = 2, + [143600] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2899), 5, + ACTIONS(2600), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144082] = 2, + [143612] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2907), 5, + ACTIONS(2664), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144094] = 4, - ACTIONS(6459), 1, + [143624] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5213), 1, + STATE(4670), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7753), 3, + ACTIONS(7742), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144110] = 4, - ACTIONS(6459), 1, + [143640] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4793), 1, + STATE(4794), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7725), 3, + ACTIONS(7713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144126] = 4, - ACTIONS(6459), 1, + [143656] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4795), 1, + STATE(4694), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, + ACTIONS(7742), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144142] = 6, - ACTIONS(7771), 1, - sym_identifier, - ACTIONS(7773), 1, - anon_sym_GT, - ACTIONS(7775), 1, - sym_jsx_identifier, - STATE(5422), 1, - sym_nested_identifier, - STATE(5590), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [144162] = 4, - ACTIONS(6459), 1, + [143672] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4796), 1, + STATE(4812), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, + ACTIONS(7713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144178] = 3, - ACTIONS(7779), 1, - anon_sym_LT, + [143688] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4824), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7777), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [144192] = 4, - ACTIONS(6459), 1, + ACTIONS(7713), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143704] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4798), 1, + STATE(4701), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, + ACTIONS(7742), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144208] = 5, - ACTIONS(6616), 1, - anon_sym_AMP, - ACTIONS(6618), 1, - anon_sym_PIPE, - ACTIONS(6620), 1, - anon_sym_extends, + [143720] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4829), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7781), 2, + ACTIONS(7713), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_GT, - [144226] = 4, - ACTIONS(6459), 1, + anon_sym_SEMI, + [143736] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4799), 1, + STATE(4831), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144242] = 6, - ACTIONS(3791), 1, + [143752] = 4, + ACTIONS(3530), 1, anon_sym_COLON, - ACTIONS(4469), 1, + STATE(5414), 1, + sym_type_annotation, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3544), 3, anon_sym_EQ, - ACTIONS(5075), 1, anon_sym_COMMA, - ACTIONS(7783), 1, - anon_sym_RBRACE, - STATE(4679), 1, - aux_sym_object_pattern_repeat1, + anon_sym_RBRACK, + [143768] = 4, + ACTIONS(7574), 1, + anon_sym_COLON, + ACTIONS(7750), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5489), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [143784] = 6, + ACTIONS(7753), 1, + sym_identifier, + ACTIONS(7755), 1, + anon_sym_GT, + ACTIONS(7757), 1, + sym_jsx_identifier, + STATE(5258), 1, + sym_nested_identifier, + STATE(5602), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144262] = 4, - ACTIONS(6459), 1, + [143804] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5214), 1, + STATE(4836), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7723), 3, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144278] = 3, - ACTIONS(7787), 1, - anon_sym_LT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7785), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [144292] = 4, - ACTIONS(6459), 1, + [143820] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4807), 1, + STATE(4843), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7725), 3, + ACTIONS(7713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144308] = 3, - ACTIONS(7779), 1, - anon_sym_LT, + [143836] = 6, + ACTIONS(3758), 1, + anon_sym_COLON, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(5027), 1, + anon_sym_COMMA, + ACTIONS(7759), 1, + anon_sym_RBRACE, + STATE(5131), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7777), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [144322] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4808), 1, - sym__initializer, + [143856] = 4, + ACTIONS(7574), 1, + anon_sym_COLON, + ACTIONS(7761), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [144338] = 3, - ACTIONS(7791), 1, + STATE(5302), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [143872] = 3, + ACTIONS(7766), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7789), 4, + ACTIONS(7764), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [144352] = 5, - ACTIONS(7735), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7793), 1, + [143886] = 5, + ACTIONS(7768), 1, anon_sym_BQUOTE, - ACTIONS(7795), 1, + ACTIONS(7770), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7772), 1, sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4042), 2, + STATE(4026), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [144370] = 3, - ACTIONS(7799), 1, - anon_sym_LT, + [143904] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7797), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [144384] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4811), 1, - sym__initializer, + ACTIONS(2540), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [143916] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, + ACTIONS(2540), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [144400] = 6, - ACTIONS(4129), 1, + anon_sym_PIPE_RBRACE, + [143928] = 6, + ACTIONS(4116), 1, anon_sym_LBRACE, - ACTIONS(7727), 1, + ACTIONS(7774), 1, anon_sym_SEMI, - ACTIONS(7729), 1, + ACTIONS(7776), 1, sym__automatic_semicolon, - ACTIONS(7731), 1, + ACTIONS(7778), 1, sym__function_signature_automatic_semicolon, - STATE(2171), 1, + STATE(2089), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144420] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(5217), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7723), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [144436] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4818), 1, - sym__initializer, + [143948] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7725), 3, + ACTIONS(2540), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [144452] = 6, - ACTIONS(1038), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1580), 1, - anon_sym_LBRACE, - ACTIONS(7370), 1, - anon_sym_extends, - STATE(4039), 1, - sym_object_type, - STATE(4791), 1, - sym_extends_type_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [144472] = 4, - ACTIONS(6459), 1, + anon_sym_PIPE_RBRACE, + [143960] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4822), 1, + STATE(4852), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7725), 3, + ACTIONS(7713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144488] = 5, - ACTIONS(7761), 1, - anon_sym_LPAREN, - ACTIONS(7801), 1, + [143976] = 5, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(7780), 1, sym_identifier, - STATE(3462), 1, - sym_decorator_member_expression, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1280), 2, - sym_decorator_call_expression, - sym_decorator_parenthesized_expression, - [144506] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4824), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7721), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [144522] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2575), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144534] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2575), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144546] = 2, + STATE(5226), 2, + sym__module_export_name, + sym_string, + [143994] = 6, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6462), 1, + anon_sym_LPAREN, + STATE(3396), 1, + sym_formal_parameters, + STATE(4065), 1, + sym__call_signature, + STATE(5339), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2575), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144558] = 3, - ACTIONS(7779), 1, + [144014] = 6, + ACTIONS(2478), 1, anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(3848), 1, + sym_formal_parameters, + STATE(5231), 1, + sym_type_parameters, + STATE(5290), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7777), 4, - sym_jsx_text, + [144034] = 6, + ACTIONS(1033), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1575), 1, anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [144572] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4825), 1, - sym__initializer, + ACTIONS(7373), 1, + anon_sym_extends, + STATE(4014), 1, + sym_object_type, + STATE(4821), 1, + sym_extends_type_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, - sym__automatic_semicolon, - anon_sym_COMMA, + [144054] = 6, + ACTIONS(7205), 1, + anon_sym_LBRACE, + ACTIONS(7774), 1, anon_sym_SEMI, - [144588] = 2, + ACTIONS(7776), 1, + sym__automatic_semicolon, + ACTIONS(7778), 1, + sym__function_signature_automatic_semicolon, + STATE(766), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7803), 5, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [144600] = 4, - ACTIONS(6459), 1, + [144074] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4908), 1, + STATE(4853), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7753), 3, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144616] = 4, - ACTIONS(7435), 1, - anon_sym_COLON, - ACTIONS(7805), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5314), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [144632] = 4, - ACTIONS(7435), 1, - anon_sym_COLON, - ACTIONS(7808), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5314), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [144648] = 4, - ACTIONS(6459), 1, + [144090] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4836), 1, + STATE(4854), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7725), 3, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144664] = 2, + [144106] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2607), 5, + ACTIONS(2552), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144676] = 6, - ACTIONS(7208), 1, - anon_sym_LBRACE, - ACTIONS(7811), 1, - anon_sym_SEMI, - ACTIONS(7813), 1, - sym__automatic_semicolon, - ACTIONS(7815), 1, - sym__function_signature_automatic_semicolon, - STATE(4054), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [144696] = 2, + [144118] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2611), 5, + ACTIONS(2556), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144708] = 5, - ACTIONS(6717), 1, - anon_sym_AMP, - ACTIONS(6721), 1, - anon_sym_extends, - ACTIONS(7819), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7817), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [144726] = 2, + [144130] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2619), 5, + ACTIONS(2564), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144738] = 2, + [144142] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2495), 5, + ACTIONS(2572), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144750] = 4, - ACTIONS(6459), 1, + [144154] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5228), 1, + STATE(4856), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7753), 3, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144766] = 5, - ACTIONS(7735), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7737), 1, - sym__template_chars, - ACTIONS(7821), 1, - anon_sym_BQUOTE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4310), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [144784] = 4, - ACTIONS(6369), 1, - anon_sym_DOT, - ACTIONS(7823), 1, - sym_identifier, + [144170] = 5, + ACTIONS(6704), 1, + anon_sym_AMP, + ACTIONS(6708), 1, + anon_sym_extends, + ACTIONS(7784), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6367), 3, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_LT, - [144800] = 6, - ACTIONS(4129), 1, - anon_sym_LBRACE, - ACTIONS(7763), 1, - anon_sym_SEMI, - ACTIONS(7765), 1, + ACTIONS(7782), 2, sym__automatic_semicolon, - ACTIONS(7767), 1, - sym__function_signature_automatic_semicolon, - STATE(2341), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [144820] = 3, - ACTIONS(7755), 1, - anon_sym_LT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7757), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [144834] = 4, - ACTIONS(6459), 1, + anon_sym_SEMI, + [144188] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4992), 1, + STATE(4857), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7753), 3, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144850] = 6, - ACTIONS(7280), 1, - anon_sym_EQ, - ACTIONS(7825), 1, - anon_sym_COMMA, - ACTIONS(7827), 1, - anon_sym_RBRACE, - STATE(4870), 1, - aux_sym_enum_body_repeat1, - STATE(5458), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [144870] = 4, - ACTIONS(7435), 1, - anon_sym_COLON, - ACTIONS(7829), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5314), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [144886] = 4, - ACTIONS(7435), 1, + [144204] = 4, + ACTIONS(7574), 1, anon_sym_COLON, - ACTIONS(7832), 1, + ACTIONS(7786), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5426), 3, + STATE(5489), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [144902] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4850), 1, - sym__initializer, + [144220] = 6, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(3848), 1, + sym_formal_parameters, + STATE(5231), 1, + sym_type_parameters, + STATE(5342), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7725), 3, - sym__automatic_semicolon, - anon_sym_COMMA, + [144240] = 6, + ACTIONS(7205), 1, + anon_sym_LBRACE, + ACTIONS(7789), 1, anon_sym_SEMI, - [144918] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4999), 1, - sym__initializer, + ACTIONS(7791), 1, + sym__automatic_semicolon, + ACTIONS(7793), 1, + sym__function_signature_automatic_semicolon, + STATE(4044), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7753), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [144934] = 3, - ACTIONS(7835), 1, + [144260] = 3, + ACTIONS(7766), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7837), 4, + ACTIONS(7764), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [144948] = 6, - ACTIONS(7208), 1, - anon_sym_LBRACE, - ACTIONS(7839), 1, - anon_sym_SEMI, - ACTIONS(7841), 1, - sym__automatic_semicolon, - ACTIONS(7843), 1, - sym__function_signature_automatic_semicolon, - STATE(4070), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [144968] = 3, - ACTIONS(5504), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1799), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144982] = 5, - ACTIONS(6717), 1, + [144274] = 5, + ACTIONS(6704), 1, anon_sym_AMP, - ACTIONS(6721), 1, + ACTIONS(6708), 1, anon_sym_extends, - ACTIONS(7819), 1, + ACTIONS(7784), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7845), 2, + ACTIONS(7795), 2, sym__automatic_semicolon, anon_sym_SEMI, - [145000] = 4, - ACTIONS(6459), 1, + [144292] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4858), 1, + STATE(4863), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7725), 3, + ACTIONS(7713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145016] = 6, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - STATE(3276), 1, - sym_formal_parameters, - STATE(3568), 1, - sym__call_signature, - STATE(5374), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [145036] = 4, - ACTIONS(6459), 1, + [144308] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5000), 1, + STATE(4866), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7723), 3, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145052] = 4, - ACTIONS(6459), 1, + [144324] = 5, + ACTIONS(7770), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7797), 1, + anon_sym_BQUOTE, + ACTIONS(7799), 1, + sym__template_chars, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4223), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [144342] = 3, + ACTIONS(7801), 1, anon_sym_EQ, - STATE(4862), 1, - sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7725), 3, - sym__automatic_semicolon, + ACTIONS(3577), 4, anon_sym_COMMA, - anon_sym_SEMI, - [145068] = 2, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + [144356] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2691), 5, + ACTIONS(2580), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145080] = 4, - ACTIONS(6459), 1, + [144368] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4864), 1, + STATE(4871), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145096] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2699), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + [144384] = 6, + ACTIONS(4116), 1, + anon_sym_LBRACE, + ACTIONS(7803), 1, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145108] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2699), 5, + ACTIONS(7805), 1, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145120] = 2, + ACTIONS(7807), 1, + sym__function_signature_automatic_semicolon, + STATE(2301), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2703), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145132] = 2, + [144404] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1757), 5, + ACTIONS(2584), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145144] = 2, + [144416] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1767), 5, + ACTIONS(2584), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145156] = 4, - ACTIONS(7435), 1, - anon_sym_COLON, - ACTIONS(7847), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5426), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [145172] = 2, + [144428] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1859), 5, + ACTIONS(2588), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145184] = 2, + [144440] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2723), 5, + ACTIONS(1703), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145196] = 3, - ACTIONS(5550), 1, - sym__automatic_semicolon, + [144452] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1777), 4, + ACTIONS(1741), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145210] = 3, - ACTIONS(5552), 1, - sym__automatic_semicolon, + [144464] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1787), 4, + ACTIONS(1689), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145224] = 6, - ACTIONS(7280), 1, + [144476] = 6, + ACTIONS(7237), 1, anon_sym_EQ, - ACTIONS(7850), 1, + ACTIONS(7809), 1, anon_sym_COMMA, - ACTIONS(7852), 1, + ACTIONS(7811), 1, anon_sym_RBRACE, - STATE(4938), 1, + STATE(4885), 1, aux_sym_enum_body_repeat1, - STATE(5458), 1, + STATE(5562), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145244] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4865), 1, - sym__initializer, + [144496] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, + ACTIONS(2604), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145260] = 4, - ACTIONS(6459), 1, + anon_sym_PIPE_RBRACE, + [144508] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5007), 1, + STATE(4872), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7723), 3, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145276] = 5, - ACTIONS(6717), 1, - anon_sym_AMP, - ACTIONS(6721), 1, - anon_sym_extends, - ACTIONS(7819), 1, - anon_sym_PIPE, + [144524] = 4, + ACTIONS(7574), 1, + anon_sym_COLON, + ACTIONS(7813), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [145294] = 2, + STATE(5489), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [144540] = 4, + ACTIONS(7574), 1, + anon_sym_COLON, + ACTIONS(7816), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5302), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [144556] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4875), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2795), 5, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145306] = 3, - ACTIONS(5554), 1, + [144572] = 6, + ACTIONS(7205), 1, + anon_sym_LBRACE, + ACTIONS(7819), 1, + anon_sym_SEMI, + ACTIONS(7821), 1, + sym__automatic_semicolon, + ACTIONS(7823), 1, + sym__function_signature_automatic_semicolon, + STATE(4059), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [144592] = 3, + ACTIONS(5557), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1877), 4, + ACTIONS(1761), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145320] = 6, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7451), 1, - anon_sym_class, - ACTIONS(7453), 1, - anon_sym_abstract, - STATE(1267), 1, - sym_decorator, - STATE(3898), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [145340] = 6, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - STATE(3276), 1, - sym_formal_parameters, - STATE(3650), 1, - sym__call_signature, - STATE(5374), 1, - sym_type_parameters, + [144606] = 5, + ACTIONS(6704), 1, + anon_sym_AMP, + ACTIONS(6708), 1, + anon_sym_extends, + ACTIONS(7784), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145360] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4877), 1, - sym__initializer, + ACTIONS(7825), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [144624] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7725), 3, + ACTIONS(2620), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145376] = 4, - ACTIONS(6459), 1, + anon_sym_PIPE_RBRACE, + [144636] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4867), 1, + STATE(5122), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7753), 3, + ACTIONS(7715), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145392] = 6, - ACTIONS(2537), 1, + [144652] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(3701), 1, + STATE(3682), 1, sym__call_signature, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145412] = 5, - ACTIONS(2291), 1, + [144672] = 5, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(2293), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(7856), 1, + ACTIONS(7827), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5184), 2, + STATE(5261), 2, sym__module_export_name, sym_string, - [145430] = 6, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - STATE(3276), 1, - sym_formal_parameters, - STATE(3709), 1, - sym__call_signature, - STATE(5374), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [145450] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4882), 1, - sym__initializer, + [144690] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7725), 3, + ACTIONS(7392), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145466] = 6, - ACTIONS(2537), 1, + anon_sym_PIPE_RBRACE, + [144702] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(3712), 1, + STATE(4259), 1, sym__call_signature, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145486] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4883), 1, - sym__initializer, + [144722] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, + ACTIONS(7394), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145502] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4884), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [144734] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, + ACTIONS(7392), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145518] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4885), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [144746] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, + ACTIONS(7829), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145534] = 4, - ACTIONS(6459), 1, + anon_sym_PIPE_RBRACE, + [144758] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4886), 1, + STATE(5121), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, + ACTIONS(7715), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145550] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4923), 1, - sym__initializer, + [144774] = 4, + ACTIONS(7574), 1, + anon_sym_COLON, + ACTIONS(7831), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7723), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [145566] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4890), 1, - sym__initializer, + STATE(5302), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [144790] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7725), 3, + ACTIONS(7394), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145582] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4891), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [144802] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, + ACTIONS(7834), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145598] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4893), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7721), 3, + anon_sym_PIPE_RBRACE, + [144814] = 3, + ACTIONS(5173), 1, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [145614] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4894), 1, - sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, - sym__automatic_semicolon, + ACTIONS(1813), 4, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145630] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4896), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7721), 3, + anon_sym_PIPE_RBRACE, + [144828] = 3, + ACTIONS(5175), 1, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [145646] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2887), 5, - sym__automatic_semicolon, + ACTIONS(1823), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145658] = 2, + [144842] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2887), 5, + ACTIONS(7836), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145670] = 2, + [144854] = 6, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + STATE(3267), 1, + sym_formal_parameters, + STATE(3727), 1, + sym__call_signature, + STATE(5435), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2887), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145682] = 2, + [144874] = 3, + ACTIONS(7838), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2915), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145694] = 2, + ACTIONS(7840), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [144888] = 6, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(3848), 1, + sym_formal_parameters, + STATE(5231), 1, + sym_type_parameters, + STATE(5263), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2911), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + [144908] = 6, + ACTIONS(7205), 1, + anon_sym_LBRACE, + ACTIONS(7803), 1, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145706] = 2, + ACTIONS(7805), 1, + sym__automatic_semicolon, + ACTIONS(7807), 1, + sym__function_signature_automatic_semicolon, + STATE(771), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [144928] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4605), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2675), 5, + ACTIONS(7715), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145718] = 5, - ACTIONS(7858), 1, - sym_identifier, - ACTIONS(7860), 1, - anon_sym_LPAREN, - STATE(2659), 1, - sym_decorator_member_expression, + [144944] = 5, + ACTIONS(6704), 1, + anon_sym_AMP, + ACTIONS(6708), 1, + anon_sym_extends, + ACTIONS(7784), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(2758), 2, - sym_decorator_call_expression, - sym_decorator_parenthesized_expression, - [145736] = 2, + ACTIONS(7842), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [144962] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(5123), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2623), 5, + ACTIONS(7742), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145748] = 4, - ACTIONS(3541), 1, - anon_sym_COLON, - STATE(5384), 1, - sym_type_annotation, + [144978] = 3, + ACTIONS(5185), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3549), 3, - anon_sym_EQ, + ACTIONS(1713), 4, anon_sym_COMMA, - anon_sym_RBRACK, - [145764] = 4, - ACTIONS(7435), 1, - anon_sym_COLON, - ACTIONS(7862), 1, - anon_sym_EQ_GT, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [144992] = 6, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + STATE(3267), 1, + sym_formal_parameters, + STATE(3763), 1, + sym__call_signature, + STATE(5435), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5314), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [145780] = 2, + [145012] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4811), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2663), 5, + ACTIONS(7715), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145792] = 2, + [145028] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(5186), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2651), 5, + ACTIONS(7715), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145804] = 4, - ACTIONS(7435), 1, - anon_sym_COLON, - ACTIONS(7865), 1, - anon_sym_EQ_GT, + [145044] = 5, + ACTIONS(6704), 1, + anon_sym_AMP, + ACTIONS(6708), 1, + anon_sym_extends, + ACTIONS(7784), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5426), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [145820] = 3, - ACTIONS(7870), 1, + ACTIONS(7844), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [145062] = 6, + ACTIONS(2478), 1, anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + STATE(3267), 1, + sym_formal_parameters, + STATE(3660), 1, + sym__call_signature, + STATE(5435), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7868), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [145834] = 3, - ACTIONS(7835), 1, + [145082] = 6, + ACTIONS(2478), 1, anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + STATE(3267), 1, + sym_formal_parameters, + STATE(3731), 1, + sym__call_signature, + STATE(5435), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7837), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [145848] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(5028), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7753), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [145864] = 6, - ACTIONS(2537), 1, + [145102] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6465), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - STATE(3466), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(4203), 1, + STATE(3529), 1, sym__call_signature, - STATE(5469), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145884] = 2, + [145122] = 6, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(3848), 1, + sym_formal_parameters, + STATE(5231), 1, + sym_type_parameters, + STATE(5233), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7306), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145896] = 6, - ACTIONS(2537), 1, + [145142] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(3276), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(4301), 1, - sym__call_signature, - STATE(5374), 1, + STATE(5231), 1, sym_type_parameters, + STATE(5363), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145916] = 2, + [145162] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7252), 5, + ACTIONS(2678), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145928] = 2, + [145174] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2659), 5, + ACTIONS(2678), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145940] = 2, + [145186] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2659), 5, + ACTIONS(2678), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145952] = 6, - ACTIONS(7872), 1, - sym_identifier, - ACTIONS(7874), 1, - anon_sym_GT, - ACTIONS(7876), 1, - sym_jsx_identifier, - STATE(5527), 1, - sym_nested_identifier, - STATE(5903), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [145972] = 4, - ACTIONS(6459), 1, + [145198] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4630), 1, + STATE(5187), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7723), 3, + ACTIONS(7742), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145988] = 2, + [145214] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7306), 5, + ACTIONS(2682), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146000] = 2, + [145226] = 6, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6462), 1, + anon_sym_LPAREN, + STATE(3396), 1, + sym_formal_parameters, + STATE(3912), 1, + sym__call_signature, + STATE(5339), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2739), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146012] = 2, + [145246] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1747), 5, + ACTIONS(2686), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146024] = 2, + [145258] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1831), 5, + ACTIONS(2690), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146036] = 2, + [145270] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1841), 5, + ACTIONS(2694), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146048] = 5, - ACTIONS(7735), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7878), 1, - anon_sym_BQUOTE, - ACTIONS(7880), 1, - sym__template_chars, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4136), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [146066] = 6, - ACTIONS(4129), 1, - anon_sym_LBRACE, - ACTIONS(7811), 1, - anon_sym_SEMI, - ACTIONS(7813), 1, - sym__automatic_semicolon, - ACTIONS(7815), 1, - sym__function_signature_automatic_semicolon, - STATE(2288), 1, - sym_statement_block, + [145282] = 6, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(3848), 1, + sym_formal_parameters, + STATE(5231), 1, + sym_type_parameters, + STATE(5273), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146086] = 2, + [145302] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2591), 5, + ACTIONS(2698), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146098] = 2, + [145314] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7882), 5, + ACTIONS(2514), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146110] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(5059), 1, - sym__initializer, + [145326] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7753), 3, + ACTIONS(7846), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146126] = 2, + anon_sym_PIPE_RBRACE, + [145338] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7252), 5, + ACTIONS(7848), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146138] = 5, - ACTIONS(1510), 1, - anon_sym_DQUOTE, - ACTIONS(1512), 1, - anon_sym_SQUOTE, - ACTIONS(7884), 1, - sym_identifier, + [145350] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4892), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5423), 2, - sym__module_export_name, - sym_string, - [146156] = 2, + ACTIONS(7850), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [145366] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7886), 5, + ACTIONS(2710), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146168] = 2, + [145378] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7888), 5, + ACTIONS(2710), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146180] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(5095), 1, - sym__initializer, + [145390] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7723), 3, + ACTIONS(2722), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146196] = 5, - ACTIONS(7735), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7737), 1, - sym__template_chars, - ACTIONS(7890), 1, - anon_sym_BQUOTE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4310), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [146214] = 6, - ACTIONS(4129), 1, - anon_sym_LBRACE, - ACTIONS(7839), 1, - anon_sym_SEMI, - ACTIONS(7841), 1, - sym__automatic_semicolon, - ACTIONS(7843), 1, - sym__function_signature_automatic_semicolon, - STATE(2321), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [146234] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(5107), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [145402] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7723), 3, + ACTIONS(1795), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146250] = 2, + anon_sym_PIPE_RBRACE, + [145414] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7292), 5, + ACTIONS(1849), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146262] = 5, - ACTIONS(1510), 1, - anon_sym_DQUOTE, - ACTIONS(1512), 1, - anon_sym_SQUOTE, - ACTIONS(7892), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5554), 2, - sym__module_export_name, - sym_string, - [146280] = 6, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - STATE(3276), 1, - sym_formal_parameters, - STATE(4114), 1, - sym__call_signature, - STATE(5374), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [146300] = 2, + [145426] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7298), 5, + ACTIONS(1859), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146312] = 2, + [145438] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7894), 5, + ACTIONS(2938), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146324] = 4, - STATE(5265), 1, - sym_import_attribute, + [145450] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4894), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7896), 2, - anon_sym_with, - anon_sym_assert, - ACTIONS(7898), 2, + ACTIONS(7852), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [146340] = 6, - ACTIONS(2537), 1, + [145466] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(3849), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, - STATE(5564), 1, + STATE(5282), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146360] = 6, - ACTIONS(7208), 1, - anon_sym_LBRACE, - ACTIONS(7763), 1, - anon_sym_SEMI, - ACTIONS(7765), 1, - sym__automatic_semicolon, - ACTIONS(7767), 1, - sym__function_signature_automatic_semicolon, - STATE(769), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [146380] = 2, + [145486] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(5189), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5117), 5, - anon_sym_EQ, + ACTIONS(7742), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [146392] = 5, - ACTIONS(6717), 1, - anon_sym_AMP, - ACTIONS(6721), 1, - anon_sym_extends, - ACTIONS(7819), 1, - anon_sym_PIPE, + anon_sym_SEMI, + [145502] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4896), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7900), 2, + ACTIONS(7854), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [146410] = 6, - ACTIONS(2537), 1, + [145518] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(3849), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, - STATE(5401), 1, + STATE(5399), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146430] = 6, - ACTIONS(7902), 1, + [145538] = 6, + ACTIONS(7856), 1, sym_identifier, - ACTIONS(7904), 1, + ACTIONS(7858), 1, anon_sym_GT, - ACTIONS(7906), 1, + ACTIONS(7860), 1, sym_jsx_identifier, - STATE(5499), 1, + STATE(5534), 1, sym_nested_identifier, - STATE(5630), 1, + STATE(5887), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146450] = 5, - ACTIONS(7735), 1, + [145558] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4897), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7854), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [145574] = 5, + ACTIONS(7770), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7908), 1, + ACTIONS(7862), 1, anon_sym_BQUOTE, - ACTIONS(7910), 1, + ACTIONS(7864), 1, sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4165), 2, + STATE(4115), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [146468] = 2, + [145592] = 6, + ACTIONS(4116), 1, + anon_sym_LBRACE, + ACTIONS(7789), 1, + anon_sym_SEMI, + ACTIONS(7791), 1, + sym__automatic_semicolon, + ACTIONS(7793), 1, + sym__function_signature_automatic_semicolon, + STATE(2322), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [145612] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4898), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7854), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [145628] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4899), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7298), 5, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146480] = 2, + [145644] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4903), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7912), 5, + ACTIONS(7866), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146492] = 6, - ACTIONS(2537), 1, + [145660] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6465), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(3466), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(3843), 1, - sym__call_signature, - STATE(5469), 1, + STATE(5231), 1, sym_type_parameters, + STATE(5436), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146512] = 2, + [145680] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4904), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2759), 5, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146524] = 2, + [145696] = 5, + ACTIONS(7770), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7799), 1, + sym__template_chars, + ACTIONS(7868), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4223), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [145714] = 6, + ACTIONS(4116), 1, + anon_sym_LBRACE, + ACTIONS(7819), 1, + anon_sym_SEMI, + ACTIONS(7821), 1, + sym__automatic_semicolon, + ACTIONS(7823), 1, + sym__function_signature_automatic_semicolon, + STATE(2060), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [145734] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4905), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2763), 5, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146536] = 2, + [145750] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2767), 5, + ACTIONS(2772), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146548] = 2, + [145762] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2771), 5, + ACTIONS(2776), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146560] = 2, + [145774] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2779), 5, + ACTIONS(2780), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146572] = 2, + [145786] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2783), 5, + ACTIONS(2784), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146584] = 6, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(3849), 1, - sym_formal_parameters, - STATE(5338), 1, - sym_type_parameters, - STATE(5578), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [146604] = 2, + [145798] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2791), 5, + ACTIONS(2788), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146616] = 2, + [145810] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7292), 5, + ACTIONS(2792), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146628] = 2, + [145822] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2827), 5, + ACTIONS(2796), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146640] = 5, - ACTIONS(7735), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7737), 1, - sym__template_chars, - ACTIONS(7914), 1, - anon_sym_BQUOTE, + [145834] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4906), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4310), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [146658] = 2, + ACTIONS(7854), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [145850] = 4, + ACTIONS(7872), 1, + anon_sym_in, + ACTIONS(7874), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2843), 5, + ACTIONS(7870), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146670] = 2, + [145866] = 4, + ACTIONS(7876), 1, + anon_sym_in, + ACTIONS(7878), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1887), 5, + ACTIONS(7870), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146682] = 2, + [145882] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7916), 5, + ACTIONS(2812), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146694] = 2, + [145894] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7918), 5, + ACTIONS(2816), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146706] = 2, + [145906] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7920), 5, + ACTIONS(1727), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146718] = 4, - ACTIONS(6459), 1, + [145918] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4910), 1, + STATE(4907), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7922), 3, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146734] = 4, - ACTIONS(6459), 1, + [145934] = 6, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(3848), 1, + sym_formal_parameters, + STATE(5231), 1, + sym_type_parameters, + STATE(5439), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [145954] = 6, + ACTIONS(7880), 1, + sym_identifier, + ACTIONS(7882), 1, + anon_sym_GT, + ACTIONS(7884), 1, + sym_jsx_identifier, + STATE(5222), 1, + sym_nested_identifier, + STATE(5685), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [145974] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4873), 1, + STATE(4908), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7753), 3, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146750] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4915), 1, - sym__initializer, + [145990] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7924), 3, - sym__automatic_semicolon, + ACTIONS(5334), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [146766] = 6, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(3849), 1, - sym_formal_parameters, - STATE(5236), 1, - sym__call_signature, - STATE(5338), 1, - sym_type_parameters, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [146002] = 5, + ACTIONS(7770), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7886), 1, + anon_sym_BQUOTE, + ACTIONS(7888), 1, + sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146786] = 6, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6465), 1, - anon_sym_LPAREN, - STATE(3466), 1, - sym_formal_parameters, - STATE(3928), 1, - sym__call_signature, - STATE(5469), 1, - sym_type_parameters, + STATE(4142), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [146020] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4909), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146806] = 2, + ACTIONS(7854), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146036] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(5126), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7926), 5, + ACTIONS(7742), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146818] = 4, - STATE(5269), 1, - sym_import_attribute, + [146052] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4973), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7896), 2, - anon_sym_with, - anon_sym_assert, - ACTIONS(7928), 2, + ACTIONS(7742), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [146834] = 5, - ACTIONS(7735), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, - anon_sym_BQUOTE, - ACTIONS(7932), 1, - sym__template_chars, + [146068] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4913), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4180), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [146852] = 4, - ACTIONS(6459), 1, + ACTIONS(7866), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146084] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4917), 1, + STATE(4914), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146868] = 5, - ACTIONS(7735), 1, + [146100] = 5, + ACTIONS(7770), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7737), 1, + ACTIONS(7799), 1, sym__template_chars, - ACTIONS(7936), 1, + ACTIONS(7890), 1, anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4310), 2, + STATE(4223), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [146886] = 4, - ACTIONS(6459), 1, + [146118] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4918), 1, + STATE(4915), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146902] = 6, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(3849), 1, - sym_formal_parameters, - STATE(5338), 1, - sym_type_parameters, - STATE(5414), 1, - sym__call_signature, + [146134] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146922] = 2, + ACTIONS(2852), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [146146] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2707), 5, + ACTIONS(2856), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146934] = 2, + [146158] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2735), 5, + ACTIONS(2860), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146946] = 2, + [146170] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2743), 5, + ACTIONS(2864), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146958] = 2, + [146182] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2831), 5, + ACTIONS(2872), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146970] = 2, + [146194] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5340), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [146206] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4927), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7866), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146222] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5340), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [146234] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5340), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [146246] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2851), 5, + ACTIONS(7892), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146982] = 4, - ACTIONS(6459), 1, + [146258] = 6, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6462), 1, + anon_sym_LPAREN, + STATE(3396), 1, + sym_formal_parameters, + STATE(3789), 1, + sym__call_signature, + STATE(5339), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [146278] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4919), 1, + STATE(4930), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7866), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146998] = 4, - ACTIONS(6459), 1, + [146294] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4920), 1, + STATE(4931), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147014] = 4, - ACTIONS(6459), 1, + [146310] = 5, + ACTIONS(7770), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7894), 1, + anon_sym_BQUOTE, + ACTIONS(7896), 1, + sym__template_chars, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4162), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [146328] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5167), 1, + STATE(4932), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7938), 3, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147030] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4926), 1, - sym__initializer, + [146344] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7940), 3, + ACTIONS(7898), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [147046] = 4, - ACTIONS(6459), 1, + anon_sym_PIPE_RBRACE, + [146356] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4931), 1, + STATE(4936), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7866), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147062] = 4, - ACTIONS(6459), 1, + [146372] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4941), 1, + STATE(4937), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147078] = 6, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6465), 1, - anon_sym_LPAREN, - STATE(3466), 1, - sym_formal_parameters, - STATE(4146), 1, - sym__call_signature, - STATE(5469), 1, - sym_type_parameters, + [146388] = 5, + ACTIONS(7770), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7799), 1, + sym__template_chars, + ACTIONS(7900), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147098] = 4, - ACTIONS(7944), 1, - anon_sym_in, - ACTIONS(7946), 1, - anon_sym_of, + STATE(4223), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [146406] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4939), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7942), 3, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147114] = 4, - ACTIONS(7948), 1, - anon_sym_in, - ACTIONS(7950), 1, - anon_sym_of, + [146422] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4946), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7942), 3, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147130] = 4, - ACTIONS(6459), 1, + [146438] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4943), 1, + STATE(4947), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147146] = 4, - ACTIONS(6459), 1, + [146454] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4944), 1, + STATE(4983), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7902), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146470] = 6, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(3848), 1, + sym_formal_parameters, + STATE(5231), 1, + sym_type_parameters, + STATE(5338), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [146490] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7904), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [147162] = 4, - ACTIONS(6459), 1, + anon_sym_PIPE_RBRACE, + [146502] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4945), 1, + STATE(4951), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7866), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147178] = 2, + [146518] = 5, + ACTIONS(7908), 1, + anon_sym_SEMI, + ACTIONS(7910), 1, + sym__automatic_semicolon, + STATE(5450), 1, + sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5351), 5, + ACTIONS(7906), 2, + anon_sym_with, + anon_sym_assert, + [146536] = 4, + ACTIONS(6444), 1, anon_sym_EQ, + STATE(4952), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7854), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [147190] = 4, - ACTIONS(6459), 1, + anon_sym_SEMI, + [146552] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4946), 1, + STATE(4953), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147206] = 6, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(3849), 1, - sym_formal_parameters, - STATE(5338), 1, - sym_type_parameters, - STATE(5489), 1, - sym__call_signature, + [146568] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4995), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147226] = 6, - ACTIONS(7208), 1, - anon_sym_LBRACE, - ACTIONS(7727), 1, - anon_sym_SEMI, - ACTIONS(7729), 1, + ACTIONS(7912), 3, sym__automatic_semicolon, - ACTIONS(7731), 1, - sym__function_signature_automatic_semicolon, - STATE(764), 1, - sym_statement_block, + anon_sym_COMMA, + anon_sym_SEMI, + [146584] = 3, + ACTIONS(4410), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147246] = 2, + ACTIONS(4412), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [146598] = 3, + ACTIONS(4449), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5355), 5, + ACTIONS(4451), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [146612] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [147258] = 2, + STATE(4954), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5355), 5, - anon_sym_EQ, + ACTIONS(7854), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [147270] = 5, - ACTIONS(6717), 1, - anon_sym_AMP, - ACTIONS(6721), 1, - anon_sym_extends, - ACTIONS(7819), 1, - anon_sym_PIPE, + anon_sym_SEMI, + [146628] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4955), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7952), 2, + ACTIONS(7854), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [147288] = 6, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6465), 1, - anon_sym_LPAREN, - STATE(3466), 1, - sym_formal_parameters, - STATE(4018), 1, - sym__call_signature, - STATE(5469), 1, - sym_type_parameters, + [146644] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4956), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147308] = 4, - ACTIONS(6459), 1, + ACTIONS(7854), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146660] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4949), 1, + STATE(4959), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7940), 3, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147324] = 2, + [146676] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(5084), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5355), 5, - anon_sym_EQ, + ACTIONS(7715), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [147336] = 6, - ACTIONS(2537), 1, + anon_sym_SEMI, + [146692] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6465), 1, + ACTIONS(6462), 1, anon_sym_LPAREN, - STATE(3466), 1, + STATE(3396), 1, sym_formal_parameters, - STATE(3780), 1, + STATE(3847), 1, sym__call_signature, - STATE(5469), 1, + STATE(5339), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147356] = 4, - ACTIONS(6459), 1, + [146712] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4950), 1, + STATE(5033), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7914), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147372] = 4, - ACTIONS(6459), 1, + [146728] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4951), 1, + STATE(4962), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7866), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147388] = 4, - ACTIONS(6459), 1, + [146744] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4740), 1, + STATE(4963), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7753), 3, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147404] = 6, - ACTIONS(2537), 1, + [146760] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6462), 1, anon_sym_LPAREN, - STATE(3849), 1, + STATE(3396), 1, sym_formal_parameters, - STATE(5338), 1, - sym_type_parameters, - STATE(5352), 1, + STATE(4002), 1, sym__call_signature, + STATE(5339), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147424] = 3, - ACTIONS(4635), 1, - anon_sym_LT, + [146780] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4965), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4637), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [147438] = 3, - ACTIONS(4507), 1, + ACTIONS(7854), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146796] = 3, + ACTIONS(4565), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4509), 4, + ACTIONS(4567), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [147452] = 6, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7453), 1, - anon_sym_abstract, - ACTIONS(7545), 1, - anon_sym_class, - STATE(1267), 1, - sym_decorator, - STATE(3898), 1, - aux_sym_export_statement_repeat1, + [146810] = 4, + STATE(5236), 1, + sym_import_attribute, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7906), 2, + anon_sym_with, + anon_sym_assert, + ACTIONS(7916), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [146826] = 4, + STATE(5241), 1, + sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147472] = 6, - ACTIONS(2537), 1, + ACTIONS(7906), 2, + anon_sym_with, + anon_sym_assert, + ACTIONS(7918), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [146842] = 3, + ACTIONS(4569), 1, anon_sym_LT, - ACTIONS(6465), 1, - anon_sym_LPAREN, - STATE(3466), 1, - sym_formal_parameters, - STATE(4036), 1, - sym__call_signature, - STATE(5469), 1, - sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147492] = 4, - ACTIONS(6459), 1, + ACTIONS(4571), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [146856] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4960), 1, + STATE(4966), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7940), 3, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147508] = 4, - ACTIONS(6459), 1, + [146872] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5032), 1, + STATE(4967), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7954), 3, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147524] = 6, - ACTIONS(2537), 1, + [146888] = 6, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(7496), 1, + anon_sym_class, + ACTIONS(7498), 1, + anon_sym_abstract, + STATE(1253), 1, + aux_sym_export_statement_repeat1, + STATE(1290), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [146908] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6462), 1, anon_sym_LPAREN, - STATE(3849), 1, + STATE(3396), 1, sym_formal_parameters, - STATE(5284), 1, + STATE(4021), 1, sym__call_signature, - STATE(5338), 1, + STATE(5339), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147544] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4964), 1, - sym__initializer, + [146928] = 3, + ACTIONS(4632), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7940), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [147560] = 4, - ACTIONS(6459), 1, + ACTIONS(4634), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [146942] = 3, + ACTIONS(4636), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4638), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [146956] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4966), 1, + STATE(4957), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7715), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147576] = 4, - ACTIONS(6459), 1, + [146972] = 6, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(3848), 1, + sym_formal_parameters, + STATE(5231), 1, + sym_type_parameters, + STATE(5349), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [146992] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4967), 1, + STATE(5036), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7920), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147592] = 6, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6465), 1, - anon_sym_LPAREN, - STATE(3466), 1, - sym_formal_parameters, - STATE(4044), 1, - sym__call_signature, - STATE(5469), 1, - sym_type_parameters, + [147008] = 6, + ACTIONS(7922), 1, + sym_identifier, + ACTIONS(7924), 1, + anon_sym_GT, + ACTIONS(7926), 1, + sym_jsx_identifier, + STATE(5423), 1, + sym_nested_identifier, + STATE(5635), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147612] = 6, - ACTIONS(2537), 1, + [147028] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6462), 1, anon_sym_LPAREN, - STATE(3849), 1, + STATE(3396), 1, sym_formal_parameters, - STATE(5338), 1, - sym_type_parameters, - STATE(5404), 1, + STATE(4030), 1, sym__call_signature, + STATE(5339), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147632] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4970), 1, - sym__initializer, + [147048] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7940), 3, + ACTIONS(7412), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [147648] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4971), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [147060] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7928), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [147664] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4973), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [147072] = 6, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(3848), 1, + sym_formal_parameters, + STATE(5231), 1, + sym_type_parameters, + STATE(5430), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [147680] = 4, - ACTIONS(6459), 1, + [147092] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4974), 1, + STATE(4970), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7866), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147696] = 4, - ACTIONS(6459), 1, + [147108] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4975), 1, + STATE(4971), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147712] = 4, - ACTIONS(6459), 1, + [147124] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4988), 1, + STATE(4972), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7940), 3, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147728] = 4, - ACTIONS(6459), 1, + [147140] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4989), 1, + STATE(4980), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7866), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147744] = 3, - ACTIONS(4671), 1, - anon_sym_LT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4673), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [147758] = 3, - ACTIONS(4679), 1, - anon_sym_LT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4681), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [147772] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4990), 1, - sym__initializer, + [147156] = 5, + ACTIONS(6617), 1, + anon_sym_AMP, + ACTIONS(6619), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, - sym__automatic_semicolon, + ACTIONS(7930), 2, anon_sym_COMMA, - anon_sym_SEMI, - [147788] = 4, - ACTIONS(6459), 1, + anon_sym_RBRACK, + [147174] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4991), 1, + STATE(4986), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7866), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147804] = 6, - ACTIONS(2537), 1, + [147190] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6465), 1, + ACTIONS(6462), 1, anon_sym_LPAREN, - STATE(3466), 1, + STATE(3396), 1, sym_formal_parameters, - STATE(4053), 1, + STATE(4043), 1, sym__call_signature, - STATE(5469), 1, + STATE(5339), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147824] = 6, - ACTIONS(2537), 1, + [147210] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(3849), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(5238), 1, - sym__call_signature, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, + STATE(5522), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147844] = 4, - ACTIONS(6459), 1, + [147230] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4702), 1, + STATE(4988), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147860] = 6, - ACTIONS(2537), 1, + [147246] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(3849), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(5247), 1, - sym__call_signature, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, + STATE(5528), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147880] = 6, - ACTIONS(2537), 1, + [147266] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(3849), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(5250), 1, - sym__call_signature, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, + STATE(5530), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147900] = 3, - ACTIONS(4554), 1, - anon_sym_LT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4556), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [147914] = 3, - ACTIONS(4586), 1, - anon_sym_LT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4588), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [147928] = 4, - ACTIONS(6459), 1, + [147286] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5004), 1, + STATE(4990), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147944] = 4, - ACTIONS(6459), 1, + [147302] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5056), 1, + STATE(4697), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7956), 3, + ACTIONS(7715), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147960] = 4, - ACTIONS(6459), 1, + [147318] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5008), 1, + STATE(5145), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7715), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147976] = 6, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(3849), 1, - sym_formal_parameters, - STATE(5306), 1, - sym__call_signature, - STATE(5338), 1, - sym_type_parameters, + [147334] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(5000), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147996] = 4, - ACTIONS(6459), 1, + ACTIONS(7866), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147350] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4861), 1, + STATE(5001), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7753), 3, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148012] = 6, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(3849), 1, - sym_formal_parameters, - STATE(5338), 1, - sym_type_parameters, - STATE(5365), 1, - sym__call_signature, + [147366] = 4, + ACTIONS(6376), 1, + anon_sym_LBRACK, + ACTIONS(7932), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148032] = 6, - ACTIONS(2537), 1, + ACTIONS(4156), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [147382] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(3849), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(5338), 1, - sym_type_parameters, - STATE(5369), 1, + STATE(5223), 1, sym__call_signature, + STATE(5231), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148052] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(5016), 1, - sym__initializer, + [147402] = 5, + ACTIONS(7934), 1, + anon_sym_BQUOTE, + ACTIONS(7936), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7939), 1, + sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7940), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [148068] = 4, - ACTIONS(6459), 1, + STATE(4223), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [147420] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5017), 1, + STATE(5002), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148084] = 4, - ACTIONS(6459), 1, + [147436] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5021), 1, + STATE(5003), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148100] = 4, - ACTIONS(6459), 1, + [147452] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5023), 1, + STATE(5005), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148116] = 4, - ACTIONS(6459), 1, + [147468] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5024), 1, + STATE(4698), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148132] = 6, - ACTIONS(2537), 1, + [147484] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(3849), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, - STATE(5434), 1, + STATE(5250), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148152] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(5035), 1, - sym__initializer, + [147504] = 3, + ACTIONS(4441), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7940), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [148168] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(5036), 1, - sym__initializer, + ACTIONS(4443), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [147518] = 3, + ACTIONS(4624), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [148184] = 3, - ACTIONS(4562), 1, + ACTIONS(4626), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [147532] = 3, + ACTIONS(4441), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4564), 4, + ACTIONS(4443), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [148198] = 3, - ACTIONS(4590), 1, + [147546] = 3, + ACTIONS(4654), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4592), 4, + ACTIONS(4656), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [148212] = 3, - ACTIONS(4562), 1, + [147560] = 3, + ACTIONS(4681), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4564), 4, + ACTIONS(4683), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [148226] = 3, - ACTIONS(4598), 1, + [147574] = 3, + ACTIONS(4441), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4600), 4, + ACTIONS(4443), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [148240] = 6, - ACTIONS(2537), 1, + [147588] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(5052), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7942), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147604] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(5008), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7866), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147620] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(3849), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, - STATE(5505), 1, + STATE(5314), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148260] = 3, - ACTIONS(4602), 1, + [147640] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(5012), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7854), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147656] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(5013), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7854), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147672] = 3, + ACTIONS(4587), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4604), 4, + ACTIONS(4589), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [148274] = 3, - ACTIONS(4562), 1, + [147686] = 3, + ACTIONS(4598), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4564), 4, + ACTIONS(4600), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [148288] = 4, - ACTIONS(6459), 1, + [147700] = 4, + STATE(5533), 1, + sym_import_attribute, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7906), 2, + anon_sym_with, + anon_sym_assert, + ACTIONS(7944), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [147716] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5039), 1, + STATE(5014), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148304] = 6, - ACTIONS(2537), 1, + [147732] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(3849), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, - STATE(5522), 1, + STATE(5335), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148324] = 4, - ACTIONS(6459), 1, + [147752] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4998), 1, + STATE(5015), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7753), 3, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148340] = 6, - ACTIONS(2537), 1, + [147768] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(3849), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, - STATE(5569), 1, + STATE(5343), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148360] = 6, - ACTIONS(2537), 1, + [147788] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(3849), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, - STATE(5411), 1, + STATE(5357), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148380] = 4, - ACTIONS(6459), 1, + [147808] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5054), 1, + STATE(5017), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7940), 3, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148396] = 6, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(3849), 1, - sym_formal_parameters, - STATE(5338), 1, - sym_type_parameters, - STATE(5415), 1, - sym__call_signature, + [147824] = 5, + ACTIONS(7946), 1, + anon_sym_SEMI, + ACTIONS(7948), 1, + sym__automatic_semicolon, + STATE(5297), 1, + sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148416] = 4, - ACTIONS(6459), 1, + ACTIONS(7906), 2, + anon_sym_with, + anon_sym_assert, + [147842] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5061), 1, + STATE(5019), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7940), 3, + ACTIONS(7854), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148432] = 3, - ACTIONS(4643), 1, + [147858] = 6, + ACTIONS(218), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1495), 1, + anon_sym_LBRACE, + ACTIONS(7373), 1, + anon_sym_extends, + STATE(799), 1, + sym_object_type, + STATE(4807), 1, + sym_extends_type_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [147878] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5597), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [147890] = 3, + ACTIONS(7950), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7952), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [147904] = 3, + ACTIONS(7954), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7956), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [147918] = 3, + ACTIONS(7960), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4645), 4, + ACTIONS(7958), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [148446] = 3, - ACTIONS(4675), 1, + [147932] = 3, + ACTIONS(7964), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4677), 4, + ACTIONS(7962), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [148460] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(5133), 1, - sym__initializer, + [147946] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7958), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [148476] = 4, - ACTIONS(6459), 1, + ACTIONS(7966), 5, anon_sym_EQ, - STATE(5062), 1, - sym__initializer, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_extends, + anon_sym_implements, + [147958] = 6, + ACTIONS(3758), 1, + anon_sym_COLON, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(5027), 1, + anon_sym_COMMA, + ACTIONS(7968), 1, + anon_sym_RBRACE, + STATE(5192), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [148492] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(5063), 1, - sym__initializer, + [147978] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7333), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [148508] = 4, - ACTIONS(6459), 1, + anon_sym_PIPE_RBRACE, + [147990] = 6, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + STATE(3267), 1, + sym_formal_parameters, + STATE(4348), 1, + sym__call_signature, + STATE(5435), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [148010] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5067), 5, anon_sym_EQ, - STATE(5090), 1, - sym__initializer, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [148022] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7723), 3, + ACTIONS(7243), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [148524] = 4, - ACTIONS(6459), 1, + anon_sym_PIPE_RBRACE, + [148034] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5068), 1, + STATE(4710), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7940), 3, + ACTIONS(7715), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148540] = 4, - ACTIONS(6459), 1, + [148050] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5069), 1, + STATE(4759), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7970), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148556] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(5071), 1, - sym__initializer, + [148066] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7333), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [148572] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(5073), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [148078] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7972), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [148588] = 4, - ACTIONS(6459), 1, + anon_sym_PIPE_RBRACE, + [148090] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5074), 1, + STATE(4719), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7742), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148604] = 3, - ACTIONS(7960), 1, - sym_identifier, + [148106] = 3, + ACTIONS(4650), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7962), 4, + ACTIONS(4652), 4, + sym_jsx_text, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [148618] = 2, + sym_html_character_reference, + anon_sym_LT_SLASH, + [148120] = 3, + ACTIONS(4704), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4706), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [148134] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7276), 5, + ACTIONS(7243), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148630] = 2, + [148146] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7964), 5, + ACTIONS(7974), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148642] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(5080), 1, - sym__initializer, + [148158] = 6, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + STATE(3267), 1, + sym_formal_parameters, + STATE(5105), 1, + sym__call_signature, + STATE(5435), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7940), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [148658] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(5081), 1, - sym__initializer, + [148178] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7976), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [148674] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(5082), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [148190] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7978), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [148690] = 5, - ACTIONS(7966), 1, - anon_sym_SEMI, - ACTIONS(7968), 1, - sym__automatic_semicolon, - STATE(5483), 1, - sym_import_attribute, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7896), 2, - anon_sym_with, - anon_sym_assert, - [148708] = 3, - ACTIONS(4463), 1, - anon_sym_LT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4465), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [148722] = 3, - ACTIONS(4495), 1, - anon_sym_LT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4497), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [148736] = 4, - ACTIONS(6459), 1, + anon_sym_PIPE_RBRACE, + [148202] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5083), 1, + STATE(5034), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7980), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148752] = 3, - ACTIONS(4861), 1, - anon_sym_in, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5391), 4, - anon_sym_LPAREN, - anon_sym_COLON, + [148218] = 6, + ACTIONS(2478), 1, anon_sym_LT, - anon_sym_QMARK, - [148766] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(5084), 1, - sym__initializer, + ACTIONS(6462), 1, + anon_sym_LPAREN, + STATE(3396), 1, + sym_formal_parameters, + STATE(3811), 1, + sym__call_signature, + STATE(5339), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [148782] = 4, - ACTIONS(6459), 1, + [148238] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5086), 1, + STATE(5117), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148798] = 4, - ACTIONS(6459), 1, + [148254] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5089), 1, + STATE(5037), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, + ACTIONS(7982), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148814] = 4, - ACTIONS(6459), 1, + [148270] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5098), 1, + STATE(5038), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7723), 3, + ACTIONS(7982), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148830] = 2, + [148286] = 4, + ACTIONS(7574), 1, + anon_sym_COLON, + ACTIONS(7984), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7339), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148842] = 6, - ACTIONS(2537), 1, + STATE(5302), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [148302] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(6462), 1, anon_sym_LPAREN, - STATE(3276), 1, + STATE(3396), 1, sym_formal_parameters, - STATE(4398), 1, + STATE(4109), 1, sym__call_signature, - STATE(5374), 1, + STATE(5339), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148862] = 2, + [148322] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(5039), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7351), 5, + ACTIONS(7982), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148874] = 6, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6465), 1, - anon_sym_LPAREN, - STATE(3466), 1, - sym_formal_parameters, - STATE(4127), 1, - sym__call_signature, - STATE(5469), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [148894] = 3, - ACTIONS(7970), 1, + [148338] = 4, + ACTIONS(6444), 1, anon_sym_EQ, + STATE(5041), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3596), 4, + ACTIONS(7982), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [148908] = 5, - ACTIONS(6616), 1, - anon_sym_AMP, - ACTIONS(6618), 1, - anon_sym_PIPE, - ACTIONS(6620), 1, - anon_sym_extends, + anon_sym_SEMI, + [148354] = 6, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(7498), 1, + anon_sym_abstract, + ACTIONS(7987), 1, + anon_sym_class, + STATE(1253), 1, + aux_sym_export_statement_repeat1, + STATE(1290), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7972), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [148926] = 2, + [148374] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(5118), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7339), 5, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148938] = 2, + [148390] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(5045), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7974), 5, + ACTIONS(7989), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148950] = 4, - ACTIONS(6375), 1, - anon_sym_LBRACK, - ACTIONS(7976), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4085), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [148966] = 5, - ACTIONS(7978), 1, - anon_sym_BQUOTE, - ACTIONS(7980), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7983), 1, - sym__template_chars, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4310), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [148984] = 6, - ACTIONS(99), 1, + [148406] = 6, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(7986), 1, + ACTIONS(7991), 1, anon_sym_class, - ACTIONS(7988), 1, + ACTIONS(7993), 1, anon_sym_abstract, - STATE(1267), 1, - sym_decorator, - STATE(3898), 1, + STATE(1253), 1, aux_sym_export_statement_repeat1, + STATE(1290), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149004] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7351), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149016] = 2, + [148426] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(5048), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7990), 5, + ACTIONS(7982), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149028] = 2, + [148442] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5066), 5, + ACTIONS(5189), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [149040] = 6, - ACTIONS(2537), 1, + [148454] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6465), 1, + ACTIONS(6462), 1, anon_sym_LPAREN, - STATE(3466), 1, + STATE(3396), 1, sym_formal_parameters, - STATE(4137), 1, + STATE(4116), 1, sym__call_signature, - STATE(5469), 1, + STATE(5339), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149060] = 6, - ACTIONS(2537), 1, + [148474] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(3849), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, - STATE(5573), 1, + STATE(5557), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149080] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7992), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149092] = 2, + [148494] = 6, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(3848), 1, + sym_formal_parameters, + STATE(5231), 1, + sym_type_parameters, + STATE(5498), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7994), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149104] = 4, - ACTIONS(6459), 1, + [148514] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5094), 1, + STATE(5049), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7996), 3, + ACTIONS(7982), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149120] = 6, - ACTIONS(2537), 1, + [148530] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(3849), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, - STATE(5523), 1, + STATE(5265), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149140] = 6, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6465), 1, - anon_sym_LPAREN, - STATE(3466), 1, - sym_formal_parameters, - STATE(3814), 1, - sym__call_signature, - STATE(5469), 1, - sym_type_parameters, + [148550] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(5050), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149160] = 4, - ACTIONS(6459), 1, + ACTIONS(7982), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148566] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5096), 1, + STATE(5054), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7998), 3, + ACTIONS(7982), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149176] = 4, - ACTIONS(6459), 1, + [148582] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5097), 1, + STATE(5056), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7998), 3, + ACTIONS(7982), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149192] = 3, - ACTIONS(8000), 1, - sym_identifier, + [148598] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(5057), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8002), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [149206] = 3, - ACTIONS(8004), 1, - sym_identifier, + ACTIONS(7982), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148614] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8006), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [149220] = 3, - ACTIONS(8010), 1, - anon_sym_LT, + ACTIONS(5189), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [148626] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8008), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [149234] = 3, - ACTIONS(8014), 1, - anon_sym_LT, + ACTIONS(5189), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [148638] = 5, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(7995), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8012), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [149248] = 2, + STATE(5980), 2, + sym__module_export_name, + sym_string, + [148656] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8016), 5, + ACTIONS(5108), 5, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [149260] = 6, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [148668] = 5, + ACTIONS(7997), 1, + sym_identifier, + ACTIONS(7999), 1, anon_sym_LPAREN, - STATE(3849), 1, - sym_formal_parameters, - STATE(5338), 1, - sym_type_parameters, - STATE(5536), 1, - sym__call_signature, + STATE(1217), 1, + sym_decorator_member_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149280] = 3, - ACTIONS(4635), 1, + STATE(1284), 2, + sym_decorator_call_expression, + sym_decorator_parenthesized_expression, + [148686] = 3, + ACTIONS(4410), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4637), 4, + ACTIONS(4412), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [149294] = 3, - ACTIONS(4507), 1, + [148700] = 3, + ACTIONS(4449), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4509), 4, + ACTIONS(4451), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [149308] = 4, - ACTIONS(6459), 1, + [148714] = 4, + STATE(5547), 1, + sym_import_attribute, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7906), 2, + anon_sym_with, + anon_sym_assert, + ACTIONS(8001), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [148730] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5099), 1, + STATE(5058), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7998), 3, + ACTIONS(7982), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149324] = 4, - ACTIONS(6459), 1, + [148746] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5479), 5, anon_sym_EQ, - STATE(5102), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [148758] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(5059), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7998), 3, + ACTIONS(7982), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149340] = 6, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(3849), 1, - sym_formal_parameters, - STATE(5293), 1, - sym__call_signature, - STATE(5338), 1, - sym_type_parameters, + [148774] = 6, + ACTIONS(7482), 1, + anon_sym_AMP, + ACTIONS(7484), 1, + anon_sym_PIPE, + ACTIONS(7486), 1, + anon_sym_extends, + ACTIONS(8003), 1, + anon_sym_as, + ACTIONS(8005), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149360] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(5108), 1, - sym__initializer, + [148794] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8018), 3, + ACTIONS(8007), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149376] = 4, - ACTIONS(6459), 1, + anon_sym_PIPE_RBRACE, + [148806] = 4, + ACTIONS(6338), 1, + anon_sym_DOT, + ACTIONS(8009), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6336), 3, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_LT, + [148822] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5109), 1, + STATE(5062), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7998), 3, + ACTIONS(7982), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149392] = 4, - ACTIONS(6459), 1, + [148838] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5110), 1, + STATE(5064), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7998), 3, + ACTIONS(7982), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149408] = 3, - ACTIONS(4671), 1, + [148854] = 3, + ACTIONS(4565), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4673), 4, + ACTIONS(4567), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [149422] = 3, - ACTIONS(4679), 1, + [148868] = 3, + ACTIONS(4569), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4681), 4, + ACTIONS(4571), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [149436] = 4, - ACTIONS(6459), 1, + [148882] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5111), 1, + STATE(5065), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7998), 3, + ACTIONS(7982), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149452] = 4, - ACTIONS(6459), 1, + [148898] = 6, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6462), 1, + anon_sym_LPAREN, + STATE(3396), 1, + sym_formal_parameters, + STATE(3767), 1, + sym__call_signature, + STATE(5339), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [148918] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5114), 1, + STATE(5067), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7998), 3, + ACTIONS(7982), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149468] = 3, - ACTIONS(4554), 1, + [148934] = 3, + ACTIONS(4632), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4556), 4, + ACTIONS(4634), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [149482] = 3, - ACTIONS(4586), 1, + [148948] = 3, + ACTIONS(4636), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4588), 4, + ACTIONS(4638), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [149496] = 4, - ACTIONS(6459), 1, + [148962] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5115), 1, + STATE(5074), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7998), 3, + ACTIONS(7989), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149512] = 4, - ACTIONS(6459), 1, + [148978] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5116), 1, + STATE(5075), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7998), 3, + ACTIONS(7982), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149528] = 4, - ACTIONS(7435), 1, - anon_sym_COLON, - ACTIONS(8020), 1, - anon_sym_EQ_GT, + [148994] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(5076), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5426), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [149544] = 4, - ACTIONS(6459), 1, + ACTIONS(7982), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149010] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5121), 1, + STATE(5200), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7998), 3, + ACTIONS(8011), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149560] = 6, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(3849), 1, - sym_formal_parameters, - STATE(5268), 1, - sym__call_signature, - STATE(5338), 1, - sym_type_parameters, + [149026] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(5203), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149580] = 4, - STATE(5329), 1, - sym_import_attribute, + ACTIONS(8013), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149042] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(5078), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7896), 2, - anon_sym_with, - anon_sym_assert, - ACTIONS(8023), 2, + ACTIONS(7982), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [149596] = 4, - STATE(5332), 1, - sym_import_attribute, + [149058] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(5080), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7896), 2, - anon_sym_with, - anon_sym_assert, - ACTIONS(8025), 2, + ACTIONS(7982), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [149612] = 4, - ACTIONS(6459), 1, + [149074] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5122), 1, + STATE(4735), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7998), 3, + ACTIONS(8015), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149628] = 6, - ACTIONS(2537), 1, + [149090] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - STATE(3849), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(5338), 1, - sym_type_parameters, - STATE(5577), 1, + STATE(5214), 1, sym__call_signature, + STATE(5435), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149648] = 2, + [149110] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(5081), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5186), 5, + ACTIONS(7982), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149126] = 4, + ACTIONS(6444), 1, anon_sym_EQ, + STATE(5082), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7982), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [149660] = 2, + anon_sym_SEMI, + [149142] = 6, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(7498), 1, + anon_sym_abstract, + ACTIONS(7691), 1, + anon_sym_class, + STATE(1253), 1, + aux_sym_export_statement_repeat1, + STATE(1290), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5190), 5, + [149162] = 4, + ACTIONS(6444), 1, anon_sym_EQ, + STATE(4765), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8017), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [149672] = 3, - ACTIONS(4562), 1, + anon_sym_SEMI, + [149178] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(5085), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7982), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149194] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(5086), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7982), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149210] = 3, + ACTIONS(4441), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4564), 4, + ACTIONS(4443), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [149686] = 3, - ACTIONS(4590), 1, + [149224] = 3, + ACTIONS(4624), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4592), 4, + ACTIONS(4626), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [149700] = 3, - ACTIONS(4562), 1, + [149238] = 3, + ACTIONS(4441), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4564), 4, + ACTIONS(4443), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [149714] = 3, - ACTIONS(4598), 1, + [149252] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4752), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8017), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149268] = 3, + ACTIONS(4654), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4600), 4, + ACTIONS(4656), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [149728] = 3, - ACTIONS(4602), 1, + [149282] = 3, + ACTIONS(4681), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4604), 4, + ACTIONS(4683), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [149742] = 3, - ACTIONS(4562), 1, + [149296] = 3, + ACTIONS(4441), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4564), 4, + ACTIONS(4443), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [149756] = 5, - ACTIONS(8027), 1, - anon_sym_SEMI, - ACTIONS(8029), 1, - sym__automatic_semicolon, - STATE(5470), 1, - sym_import_attribute, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7896), 2, - anon_sym_with, - anon_sym_assert, - [149774] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5190), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [149786] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(5123), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7998), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [149802] = 2, + [149310] = 5, + ACTIONS(2970), 1, + anon_sym_DQUOTE, + ACTIONS(2972), 1, + anon_sym_SQUOTE, + ACTIONS(8019), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5524), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [149814] = 4, - ACTIONS(6459), 1, + STATE(4629), 2, + sym__module_export_name, + sym_string, + [149328] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5124), 1, + STATE(5087), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7998), 3, + ACTIONS(8017), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149830] = 3, - ACTIONS(4643), 1, + [149344] = 3, + ACTIONS(4587), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4645), 4, + ACTIONS(4589), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [149844] = 6, - ACTIONS(7501), 1, - anon_sym_AMP, - ACTIONS(7507), 1, - anon_sym_PIPE, - ACTIONS(7509), 1, - anon_sym_extends, - ACTIONS(8031), 1, - anon_sym_as, - ACTIONS(8033), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [149864] = 6, - ACTIONS(3791), 1, - anon_sym_COLON, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(5075), 1, - anon_sym_COMMA, - ACTIONS(8035), 1, - anon_sym_RBRACE, - STATE(5175), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [149884] = 3, - ACTIONS(4675), 1, + [149358] = 3, + ACTIONS(4598), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4677), 4, + ACTIONS(4600), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [149898] = 2, + [149372] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8037), 5, + ACTIONS(7349), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149910] = 6, - ACTIONS(2537), 1, + [149384] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6465), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - STATE(3466), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(3869), 1, + STATE(4378), 1, sym__call_signature, - STATE(5469), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149930] = 2, + [149404] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5190), 5, + ACTIONS(7353), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149416] = 4, + ACTIONS(6444), 1, anon_sym_EQ, + STATE(4883), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8017), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [149942] = 4, - ACTIONS(6459), 1, + anon_sym_SEMI, + [149432] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4812), 1, + STATE(5026), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8039), 3, + ACTIONS(8017), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149958] = 4, - ACTIONS(6459), 1, + [149448] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4817), 1, + STATE(5092), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8041), 3, + ACTIONS(8021), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149974] = 4, - ACTIONS(6459), 1, + [149464] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5125), 1, + STATE(4611), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7998), 3, + ACTIONS(8021), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149480] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7349), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149492] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8023), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149504] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8025), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149990] = 4, - ACTIONS(6459), 1, + anon_sym_PIPE_RBRACE, + [149516] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5126), 1, + STATE(5091), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7998), 3, + ACTIONS(8027), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150006] = 6, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7988), 1, - anon_sym_abstract, - ACTIONS(8043), 1, - anon_sym_class, - STATE(1267), 1, - sym_decorator, - STATE(3898), 1, - aux_sym_export_statement_repeat1, + [149532] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(5096), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150026] = 4, - ACTIONS(6459), 1, + ACTIONS(8027), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149548] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5131), 1, + STATE(5127), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8018), 3, + ACTIONS(8017), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150042] = 3, - ACTIONS(4463), 1, + [149564] = 3, + ACTIONS(4650), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4465), 4, + ACTIONS(4652), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [150056] = 3, - ACTIONS(4495), 1, + [149578] = 3, + ACTIONS(4704), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4497), 4, + ACTIONS(4706), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [150070] = 4, - ACTIONS(6459), 1, + [149592] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5134), 1, + STATE(5213), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7998), 3, + ACTIONS(8017), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150086] = 6, - ACTIONS(2537), 1, + [149608] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5489), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [149620] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - STATE(3276), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(5192), 1, + STATE(4456), 1, sym__call_signature, - STATE(5374), 1, + STATE(5435), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150106] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(5135), 1, - sym__initializer, + [149640] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7998), 3, + ACTIONS(7283), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [150122] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(5136), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [149652] = 6, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(7993), 1, + anon_sym_abstract, + ACTIONS(8029), 1, + anon_sym_class, + STATE(1253), 1, + aux_sym_export_statement_repeat1, + STATE(1290), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7998), 3, + [149672] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8031), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [150138] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(5137), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [149684] = 6, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6462), 1, + anon_sym_LPAREN, + STATE(3396), 1, + sym_formal_parameters, + STATE(4009), 1, + sym__call_signature, + STATE(5339), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [149704] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7998), 3, + ACTIONS(7283), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [150154] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4612), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [149716] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7998), 3, + ACTIONS(8033), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [150170] = 4, - ACTIONS(6459), 1, + anon_sym_PIPE_RBRACE, + [149728] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5138), 1, + STATE(5097), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7998), 3, + ACTIONS(8027), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150186] = 4, - ACTIONS(6459), 1, + [149744] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4644), 1, + STATE(5098), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8045), 3, + ACTIONS(8027), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150202] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(5139), 1, - sym__initializer, + [149760] = 5, + ACTIONS(7770), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7799), 1, + sym__template_chars, + ACTIONS(8035), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4223), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [149778] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7998), 3, + ACTIONS(7639), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [150218] = 4, - ACTIONS(7435), 1, - anon_sym_COLON, - ACTIONS(8047), 1, - anon_sym_EQ_GT, + anon_sym_PIPE_RBRACE, + [149790] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5314), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [150234] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4810), 1, - sym__initializer, + ACTIONS(7289), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149802] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8050), 3, + ACTIONS(8037), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [150250] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(5140), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [149814] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7998), 3, + ACTIONS(7396), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [150266] = 6, - ACTIONS(2537), 1, + anon_sym_PIPE_RBRACE, + [149826] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - STATE(3849), 1, + STATE(3267), 1, sym_formal_parameters, - STATE(5338), 1, + STATE(4389), 1, + sym__call_signature, + STATE(5435), 1, sym_type_parameters, - STATE(5482), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [149846] = 4, + ACTIONS(7574), 1, + anon_sym_COLON, + ACTIONS(8039), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5489), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [149862] = 6, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(3848), 1, + sym_formal_parameters, + STATE(5231), 1, + sym_type_parameters, + STATE(5471), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150286] = 2, + [149882] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5262), 5, - anon_sym_EQ, + ACTIONS(7406), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [150298] = 4, - ACTIONS(7435), 1, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149894] = 4, + ACTIONS(7574), 1, anon_sym_COLON, - ACTIONS(8052), 1, + ACTIONS(8042), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5314), 3, + STATE(5489), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [150314] = 4, - ACTIONS(7435), 1, + [149910] = 4, + ACTIONS(7574), 1, anon_sym_COLON, - ACTIONS(8055), 1, + ACTIONS(8045), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5426), 3, + STATE(5302), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [150330] = 6, - ACTIONS(2537), 1, + [149926] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(3849), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(5338), 1, + STATE(5231), 1, sym_type_parameters, - STATE(5520), 1, + STATE(5490), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150350] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7376), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [150362] = 6, - ACTIONS(2537), 1, + [149946] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(3276), 1, + STATE(3848), 1, sym_formal_parameters, - STATE(4418), 1, - sym__call_signature, - STATE(5374), 1, + STATE(5231), 1, sym_type_parameters, + STATE(5523), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [149966] = 4, + ACTIONS(7574), 1, + anon_sym_COLON, + ACTIONS(8048), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5302), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [149982] = 6, + ACTIONS(1657), 1, + anon_sym_LBRACE, + ACTIONS(7803), 1, + anon_sym_SEMI, + ACTIONS(7805), 1, + sym__automatic_semicolon, + ACTIONS(7807), 1, + sym__function_signature_automatic_semicolon, + STATE(243), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150382] = 2, + [150002] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7378), 5, + ACTIONS(7249), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [150394] = 4, - ACTIONS(6459), 1, + [150014] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4614), 1, + STATE(5144), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8045), 3, + ACTIONS(7713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150410] = 4, - ACTIONS(7435), 1, - anon_sym_COLON, - ACTIONS(8058), 1, - anon_sym_EQ_GT, + [150030] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5426), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [150426] = 2, + ACTIONS(1833), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [150042] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7376), 5, + ACTIONS(1839), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [150438] = 2, + [150054] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8061), 5, + ACTIONS(1873), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [150450] = 4, - ACTIONS(6459), 1, + [150066] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4901), 1, + STATE(5147), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8045), 3, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150466] = 6, - ACTIONS(8063), 1, - sym_identifier, - ACTIONS(8065), 1, - anon_sym_GT, - ACTIONS(8067), 1, - sym_jsx_identifier, - STATE(5461), 1, - sym_nested_identifier, - STATE(5665), 1, - sym_jsx_namespace_name, + [150082] = 5, + ACTIONS(7770), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8051), 1, + anon_sym_BQUOTE, + ACTIONS(8053), 1, + sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150486] = 4, - ACTIONS(6459), 1, + STATE(4374), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [150100] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5143), 1, + STATE(5156), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8069), 3, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150502] = 4, - ACTIONS(6459), 1, + [150116] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5144), 1, + STATE(4734), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8069), 3, + ACTIONS(7742), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150518] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4927), 1, - sym__initializer, + [150132] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8045), 3, + ACTIONS(2844), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [150534] = 2, + anon_sym_PIPE_RBRACE, + [150144] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1897), 5, + ACTIONS(1873), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [150546] = 2, + [150156] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(5158), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1909), 5, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [150558] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4746), 1, - sym__initializer, + [150172] = 3, + ACTIONS(8055), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8057), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [150186] = 5, + ACTIONS(6704), 1, + anon_sym_AMP, + ACTIONS(6708), 1, + anon_sym_extends, + ACTIONS(7784), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8045), 3, + ACTIONS(8059), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [150574] = 4, - ACTIONS(6459), 1, + [150204] = 5, + ACTIONS(7343), 1, + anon_sym_LT, + ACTIONS(8061), 1, + anon_sym_LBRACE, + STATE(5149), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8063), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [150222] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4759), 1, + STATE(5159), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8071), 3, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150590] = 4, - ACTIONS(6459), 1, + [150238] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5145), 1, + STATE(4777), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8069), 3, + ACTIONS(7715), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150606] = 4, - ACTIONS(6459), 1, + [150254] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5146), 1, + STATE(4964), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8069), 3, + ACTIONS(7742), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150622] = 2, + [150270] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(5170), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8073), 5, + ACTIONS(7713), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [150634] = 4, - ACTIONS(6459), 1, + [150286] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5101), 1, + STATE(5171), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8071), 3, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150650] = 2, + [150302] = 6, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6462), 1, + anon_sym_LPAREN, + STATE(3396), 1, + sym_formal_parameters, + STATE(4413), 1, + sym__call_signature, + STATE(5339), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7380), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [150662] = 6, - ACTIONS(2537), 1, + [150322] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(6462), 1, anon_sym_LPAREN, - STATE(3276), 1, + STATE(3396), 1, sym_formal_parameters, - STATE(4421), 1, + STATE(4388), 1, sym__call_signature, - STATE(5374), 1, + STATE(5339), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150682] = 2, + [150342] = 6, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(3848), 1, + sym_formal_parameters, + STATE(5231), 1, + sym_type_parameters, + STATE(5470), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7382), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [150694] = 2, + [150362] = 6, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(3848), 1, + sym_formal_parameters, + STATE(5231), 1, + sym_type_parameters, + STATE(5355), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7384), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + [150382] = 6, + ACTIONS(1657), 1, + anon_sym_LBRACE, + ACTIONS(7774), 1, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [150706] = 2, + ACTIONS(7776), 1, + sym__automatic_semicolon, + ACTIONS(7778), 1, + sym__function_signature_automatic_semicolon, + STATE(237), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1901), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [150718] = 4, - ACTIONS(6459), 1, + [150402] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4963), 1, + STATE(5172), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8045), 3, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150734] = 2, + [150418] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2747), 5, + ACTIONS(2848), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [150746] = 2, + [150430] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1901), 5, + ACTIONS(2904), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [150758] = 6, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7453), 1, - anon_sym_abstract, - ACTIONS(8075), 1, - anon_sym_class, - STATE(1267), 1, - sym_decorator, - STATE(3898), 1, - aux_sym_export_statement_repeat1, + [150442] = 3, + ACTIONS(7723), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150778] = 4, - ACTIONS(6459), 1, + ACTIONS(7721), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [150456] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5231), 1, + STATE(5208), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8045), 3, + ACTIONS(7713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150794] = 6, - ACTIONS(2537), 1, + [150472] = 3, + ACTIONS(8067), 1, anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - STATE(3276), 1, - sym_formal_parameters, - STATE(4139), 1, - sym__call_signature, - STATE(5374), 1, - sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150814] = 2, + ACTIONS(8065), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [150486] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4808), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7374), 5, + ACTIONS(7715), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [150826] = 2, + [150502] = 3, + ACTIONS(8069), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8071), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [150516] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4621), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8077), 5, + ACTIONS(7713), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [150838] = 2, + [150532] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4626), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8079), 5, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [150850] = 2, + [150548] = 5, + ACTIONS(6617), 1, + anon_sym_AMP, + ACTIONS(6619), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8081), 5, - sym__automatic_semicolon, + ACTIONS(8073), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [150862] = 2, + anon_sym_GT, + [150566] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4627), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8083), 5, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [150874] = 4, - ACTIONS(6459), 1, + [150582] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5177), 1, + STATE(5110), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8085), 3, + ACTIONS(7715), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150890] = 6, - ACTIONS(2537), 1, + [150598] = 3, + ACTIONS(8077), 1, anon_sym_LT, - ACTIONS(6465), 1, - anon_sym_LPAREN, - STATE(3466), 1, - sym_formal_parameters, - STATE(3904), 1, - sym__call_signature, - STATE(5469), 1, - sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150910] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4642), 1, - sym__initializer, + ACTIONS(8075), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [150612] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8087), 3, + ACTIONS(7534), 5, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [150926] = 4, - ACTIONS(6459), 1, + [150624] = 4, + ACTIONS(1699), 1, + anon_sym_DOT, + ACTIONS(4250), 1, + anon_sym_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4252), 3, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_LBRACE_PIPE, + [150640] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4987), 1, + STATE(4635), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7753), 3, + ACTIONS(7713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150942] = 2, + [150656] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8089), 5, + ACTIONS(2746), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [150954] = 2, + [150668] = 4, + ACTIONS(1791), 1, + anon_sym_DOT, + ACTIONS(4250), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7374), 5, - sym__automatic_semicolon, + ACTIONS(4252), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [150966] = 2, + anon_sym_LT, + anon_sym_LBRACE_PIPE, + [150684] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4636), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8091), 5, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [150978] = 2, + [150700] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7628), 5, + ACTIONS(2916), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [150990] = 4, - ACTIONS(6459), 1, + [150712] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8079), 5, anon_sym_EQ, - STATE(4655), 1, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_extends, + anon_sym_implements, + [150724] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4637), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8093), 3, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [151006] = 2, + [150740] = 3, + ACTIONS(8083), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7406), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [151018] = 2, + ACTIONS(8081), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [150754] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4638), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8095), 5, + ACTIONS(7709), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [151030] = 4, - ACTIONS(1869), 1, - anon_sym_DOT, - ACTIONS(4221), 1, - anon_sym_LBRACE, + [150770] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4639), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4223), 3, + ACTIONS(7709), 3, + sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_SEMI, + [150786] = 3, + ACTIONS(7723), 1, anon_sym_LT, - anon_sym_LBRACE_PIPE, - [151046] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2819), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [151058] = 2, + ACTIONS(7721), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [150800] = 3, + ACTIONS(4863), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2823), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [151070] = 4, - ACTIONS(1873), 1, - anon_sym_DOT, - ACTIONS(4221), 1, - anon_sym_LBRACE, + ACTIONS(5242), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [150814] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4845), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4223), 3, + ACTIONS(7715), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LT, - anon_sym_LBRACE_PIPE, - [151086] = 4, - ACTIONS(6459), 1, + anon_sym_SEMI, + [150830] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(5128), 1, + STATE(4651), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7753), 3, + ACTIONS(7713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [151102] = 6, - ACTIONS(2537), 1, + [150846] = 6, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(6462), 1, anon_sym_LPAREN, - STATE(3276), 1, + STATE(3396), 1, sym_formal_parameters, - STATE(5195), 1, + STATE(3915), 1, sym__call_signature, - STATE(5374), 1, + STATE(5339), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151122] = 5, - ACTIONS(7735), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8097), 1, - anon_sym_BQUOTE, - ACTIONS(8099), 1, - sym__template_chars, + [150866] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4851), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3947), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [151140] = 6, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(3249), 1, - anon_sym_LPAREN, - STATE(3276), 1, - sym_formal_parameters, - STATE(4666), 1, - sym__call_signature, - STATE(5374), 1, - sym_type_parameters, + ACTIONS(7742), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150882] = 4, + ACTIONS(6444), 1, + anon_sym_EQ, + STATE(4864), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151160] = 4, - ACTIONS(6459), 1, + ACTIONS(7742), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150898] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4669), 1, + STATE(4677), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, + ACTIONS(7713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [151176] = 2, + [150914] = 3, + ACTIONS(8087), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7595), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(8085), 4, + sym_jsx_text, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [151188] = 4, - ACTIONS(6459), 1, + sym_html_character_reference, + anon_sym_LT_SLASH, + [150928] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4946), 5, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [150940] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4933), 5, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [150952] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4672), 1, + STATE(4802), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, + ACTIONS(8089), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [151204] = 2, + [150968] = 4, + ACTIONS(6338), 1, + anon_sym_DOT, + ACTIONS(8091), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6336), 3, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_LT, + [150984] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2567), 5, + ACTIONS(2652), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [151216] = 2, + [150996] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2587), 5, + ACTIONS(8093), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [151228] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4954), 1, - sym__initializer, + [151008] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8101), 3, + ACTIONS(2656), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [151244] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(5161), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [151020] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7753), 3, + ACTIONS(7359), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [151260] = 4, - ACTIONS(6369), 1, - anon_sym_DOT, - ACTIONS(8103), 1, - sym_identifier, + anon_sym_PIPE_RBRACE, + [151032] = 6, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + STATE(3267), 1, + sym_formal_parameters, + STATE(4867), 1, + sym__call_signature, + STATE(5435), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6367), 3, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_LT, - [151276] = 4, - ACTIONS(6459), 1, + [151052] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4683), 1, + STATE(4688), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7725), 3, + ACTIONS(7713), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [151292] = 4, - ACTIONS(6459), 1, + [151068] = 4, + ACTIONS(6444), 1, anon_sym_EQ, - STATE(4684), 1, + STATE(5079), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, + ACTIONS(7715), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [151308] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4701), 1, - sym__initializer, + [151084] = 6, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(3848), 1, + sym_formal_parameters, + STATE(5231), 1, + sym_type_parameters, + STATE(5244), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 3, - sym__automatic_semicolon, + [151104] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8095), 1, + sym_html_character_reference, + ACTIONS(8097), 1, + anon_sym_DQUOTE, + ACTIONS(8099), 1, + sym_unescaped_double_jsx_string_fragment, + STATE(4522), 1, + aux_sym__jsx_string_repeat1, + [151123] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8101), 1, + anon_sym_DQUOTE, + STATE(4567), 1, + aux_sym_string_repeat1, + ACTIONS(8103), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [151140] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8101), 1, + anon_sym_SQUOTE, + STATE(4572), 1, + aux_sym_string_repeat2, + ACTIONS(8105), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [151157] = 4, + ACTIONS(8109), 1, anon_sym_COMMA, - anon_sym_SEMI, - [151324] = 3, - ACTIONS(8105), 1, - sym_identifier, + STATE(4464), 1, + aux_sym_extends_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8107), 4, + ACTIONS(8107), 2, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [151338] = 5, - ACTIONS(6717), 1, + anon_sym_implements, + [151172] = 5, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(8112), 1, + anon_sym_LT, + STATE(1535), 1, + sym_arguments, + STATE(1536), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151189] = 5, + ACTIONS(6617), 1, anon_sym_AMP, - ACTIONS(6721), 1, - anon_sym_extends, - ACTIONS(7819), 1, + ACTIONS(6619), 1, anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_extends, + ACTIONS(8114), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8109), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151356] = 5, - ACTIONS(7394), 1, + [151206] = 5, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(8116), 1, + anon_sym_export, + STATE(1253), 1, + aux_sym_export_statement_repeat1, + STATE(1290), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151223] = 5, + ACTIONS(3443), 1, + anon_sym_LPAREN, + ACTIONS(6291), 1, anon_sym_LT, - ACTIONS(8111), 1, - anon_sym_LBRACE, - STATE(5166), 1, + STATE(2880), 1, + sym_arguments, + STATE(2987), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8113), 2, + [151240] = 5, + ACTIONS(7339), 1, anon_sym_COMMA, + ACTIONS(7440), 1, + anon_sym_LBRACE, + ACTIONS(7442), 1, anon_sym_LBRACE_PIPE, - [151374] = 4, - ACTIONS(6459), 1, - anon_sym_EQ, - STATE(4993), 1, - sym__initializer, + STATE(4602), 1, + aux_sym_extends_type_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7934), 3, - sym__automatic_semicolon, + [151257] = 4, + ACTIONS(8118), 1, anon_sym_COMMA, + STATE(4470), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8121), 2, + sym__automatic_semicolon, anon_sym_SEMI, - [151390] = 5, - ACTIONS(3), 1, + [151272] = 5, + ACTIONS(6617), 1, + anon_sym_AMP, + ACTIONS(6619), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_extends, + ACTIONS(8123), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [151289] = 4, + ACTIONS(8125), 1, + anon_sym_COMMA, + STATE(4470), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8115), 1, - anon_sym_SQUOTE, - STATE(4551), 1, - aux_sym_string_repeat2, - ACTIONS(8117), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [151407] = 4, - ACTIONS(8121), 1, + sym_comment, + ACTIONS(8127), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [151304] = 4, + ACTIONS(8129), 1, + anon_sym_from, + STATE(5440), 1, + sym__from_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8131), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [151319] = 4, + ACTIONS(8135), 1, anon_sym_COMMA, - STATE(4469), 1, + STATE(4600), 1, aux_sym_extends_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8119), 2, + ACTIONS(8133), 2, anon_sym_LBRACE, anon_sym_implements, - [151422] = 4, - ACTIONS(8124), 1, + [151334] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8137), 1, + anon_sym_DQUOTE, + STATE(4546), 1, + aux_sym_string_repeat1, + ACTIONS(8139), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [151351] = 4, + ACTIONS(8125), 1, anon_sym_COMMA, - STATE(4608), 1, + STATE(4472), 1, aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8126), 2, + ACTIONS(8141), 2, sym__automatic_semicolon, anon_sym_SEMI, - [151437] = 4, - ACTIONS(8124), 1, + [151366] = 4, + ACTIONS(7237), 1, + anon_sym_EQ, + STATE(5441), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8143), 2, anon_sym_COMMA, - STATE(4477), 1, - aux_sym_variable_declaration_repeat1, + anon_sym_RPAREN, + [151381] = 4, + ACTIONS(4967), 1, + anon_sym_COMMA, + STATE(4584), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8128), 2, + ACTIONS(7269), 2, sym__automatic_semicolon, anon_sym_SEMI, - [151452] = 5, - ACTIONS(6616), 1, + [151396] = 5, + ACTIONS(6617), 1, anon_sym_AMP, - ACTIONS(6618), 1, + ACTIONS(6619), 1, anon_sym_PIPE, - ACTIONS(6620), 1, + ACTIONS(6621), 1, anon_sym_extends, - ACTIONS(8130), 1, - anon_sym_RBRACK, + ACTIONS(8145), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151469] = 5, - ACTIONS(7186), 1, + [151413] = 5, + ACTIONS(7157), 1, anon_sym_const, - ACTIONS(8132), 1, + ACTIONS(8147), 1, sym_identifier, - ACTIONS(8134), 1, + ACTIONS(8149), 1, anon_sym_GT, - STATE(5295), 1, + STATE(5384), 1, sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151486] = 5, - ACTIONS(8136), 1, - anon_sym_LBRACE, - ACTIONS(8138), 1, - anon_sym_COMMA, - ACTIONS(8141), 1, - anon_sym_LBRACE_PIPE, - STATE(4474), 1, - aux_sym_extends_type_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [151503] = 5, - ACTIONS(6616), 1, - anon_sym_AMP, - ACTIONS(6618), 1, - anon_sym_PIPE, - ACTIONS(6620), 1, - anon_sym_extends, - ACTIONS(8143), 1, - anon_sym_RBRACK, + [151430] = 5, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(8151), 1, + anon_sym_LT, + STATE(1901), 1, + sym_arguments, + STATE(1902), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151520] = 5, - ACTIONS(2537), 1, + [151447] = 5, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(3249), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - STATE(3739), 1, + STATE(3637), 1, sym_formal_parameters, - STATE(5506), 1, + STATE(5422), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151537] = 4, - ACTIONS(8124), 1, + [151464] = 5, + ACTIONS(6617), 1, + anon_sym_AMP, + ACTIONS(6619), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_extends, + ACTIONS(8153), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151481] = 4, + ACTIONS(8125), 1, anon_sym_COMMA, - STATE(4559), 1, + STATE(4516), 1, aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8145), 2, + ACTIONS(8155), 2, sym__automatic_semicolon, anon_sym_SEMI, - [151552] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8147), 1, - anon_sym_DQUOTE, - STATE(4563), 1, - aux_sym_string_repeat1, - ACTIONS(8149), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [151569] = 5, - ACTIONS(6616), 1, + [151496] = 5, + ACTIONS(6617), 1, anon_sym_AMP, - ACTIONS(6618), 1, + ACTIONS(6619), 1, anon_sym_PIPE, - ACTIONS(6620), 1, + ACTIONS(6621), 1, anon_sym_extends, - ACTIONS(8151), 1, + ACTIONS(8157), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151586] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [151513] = 5, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(5444), 1, + sym_type_parameters, + STATE(5885), 1, + sym_formal_parameters, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8153), 1, - sym_html_character_reference, - ACTIONS(8156), 1, - anon_sym_DQUOTE, - ACTIONS(8158), 1, - sym_unescaped_double_jsx_string_fragment, - STATE(4480), 1, - aux_sym__jsx_string_repeat1, - [151605] = 5, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, + [151530] = 4, + ACTIONS(8125), 1, + anon_sym_COMMA, + STATE(4517), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8147), 1, - anon_sym_SQUOTE, - STATE(4564), 1, - aux_sym_string_repeat2, - ACTIONS(8161), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [151622] = 5, - ACTIONS(6616), 1, + sym_comment, + ACTIONS(8159), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [151545] = 5, + ACTIONS(6617), 1, anon_sym_AMP, - ACTIONS(6618), 1, + ACTIONS(6619), 1, anon_sym_PIPE, - ACTIONS(6620), 1, + ACTIONS(6621), 1, anon_sym_extends, - ACTIONS(8163), 1, - anon_sym_COLON, + ACTIONS(8161), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151639] = 5, - ACTIONS(3500), 1, - anon_sym_LPAREN, - ACTIONS(6345), 1, - anon_sym_LT, - STATE(3048), 1, - sym_arguments, - STATE(3217), 1, - sym_type_arguments, + [151562] = 4, + ACTIONS(8125), 1, + anon_sym_COMMA, + STATE(4470), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151656] = 5, - ACTIONS(6616), 1, + ACTIONS(8163), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [151577] = 5, + ACTIONS(6617), 1, anon_sym_AMP, - ACTIONS(6618), 1, + ACTIONS(6619), 1, anon_sym_PIPE, - ACTIONS(6620), 1, + ACTIONS(6621), 1, anon_sym_extends, ACTIONS(8165), 1, - anon_sym_RPAREN, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151673] = 3, - ACTIONS(6369), 1, - anon_sym_DOT, + [151594] = 5, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(5461), 1, + sym_type_parameters, + STATE(5718), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6367), 3, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, + [151611] = 5, + ACTIONS(2478), 1, anon_sym_LT, - [151686] = 5, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(5439), 1, + STATE(5442), 1, sym_type_parameters, - STATE(5823), 1, + STATE(5669), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151703] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8167), 1, - anon_sym_DQUOTE, - STATE(4492), 1, - aux_sym_string_repeat1, - ACTIONS(8169), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [151720] = 3, - ACTIONS(6125), 1, + [151628] = 3, + ACTIONS(6068), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 3, + ACTIONS(3758), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - [151733] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, + [151641] = 3, ACTIONS(8167), 1, - anon_sym_SQUOTE, - STATE(4494), 1, - aux_sym_string_repeat2, - ACTIONS(8171), 2, - sym_unescaped_single_string_fragment, sym_escape_sequence, - [151750] = 3, - ACTIONS(8173), 1, - anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3791), 3, + ACTIONS(8169), 3, + sym__template_chars, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [151654] = 5, + ACTIONS(3467), 1, anon_sym_LPAREN, + ACTIONS(6350), 1, anon_sym_LT, - anon_sym_QMARK, - [151763] = 4, - ACTIONS(8124), 1, + STATE(3046), 1, + sym_arguments, + STATE(3197), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151671] = 4, + ACTIONS(8125), 1, anon_sym_COMMA, - STATE(4559), 1, + STATE(4489), 1, aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8175), 2, + ACTIONS(8172), 2, sym__automatic_semicolon, anon_sym_SEMI, - [151778] = 5, + [151686] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8177), 1, + ACTIONS(8174), 1, anon_sym_DQUOTE, - STATE(4552), 1, + STATE(4501), 1, aux_sym_string_repeat1, - ACTIONS(8179), 2, + ACTIONS(8176), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [151795] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8181), 1, - sym_html_character_reference, - ACTIONS(8184), 1, - anon_sym_SQUOTE, - ACTIONS(8186), 1, - sym_unescaped_single_jsx_string_fragment, - STATE(4493), 1, - aux_sym__jsx_string_repeat2, - [151814] = 5, + [151703] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8177), 1, + ACTIONS(8174), 1, anon_sym_SQUOTE, - STATE(4553), 1, + STATE(4503), 1, aux_sym_string_repeat2, - ACTIONS(8189), 2, + ACTIONS(8178), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [151831] = 4, - ACTIONS(8124), 1, - anon_sym_COMMA, - STATE(4491), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8191), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151846] = 4, - ACTIONS(7280), 1, - anon_sym_EQ, - STATE(5458), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8193), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [151861] = 5, - ACTIONS(2537), 1, + [151720] = 5, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(5396), 1, + STATE(5452), 1, sym_type_parameters, - STATE(5600), 1, + STATE(5763), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151878] = 5, - ACTIONS(2537), 1, + [151737] = 5, + ACTIONS(6617), 1, + anon_sym_AMP, + ACTIONS(6619), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_extends, + ACTIONS(8180), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151754] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8182), 1, + anon_sym_DQUOTE, + STATE(4567), 1, + aux_sym_string_repeat1, + ACTIONS(8103), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [151771] = 5, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(5368), 1, + STATE(5277), 1, sym_type_parameters, - STATE(5601), 1, + STATE(5920), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151895] = 5, + [151788] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8195), 1, + ACTIONS(8182), 1, anon_sym_SQUOTE, - STATE(4586), 1, + STATE(4572), 1, aux_sym_string_repeat2, - ACTIONS(8197), 2, + ACTIONS(8105), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [151912] = 4, - ACTIONS(3791), 1, - anon_sym_COLON, - ACTIONS(4469), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8199), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [151927] = 5, - ACTIONS(6616), 1, + [151805] = 5, + ACTIONS(7271), 1, anon_sym_AMP, - ACTIONS(6618), 1, + ACTIONS(7273), 1, anon_sym_PIPE, - ACTIONS(6620), 1, + ACTIONS(7275), 1, anon_sym_extends, - ACTIONS(8201), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [151944] = 5, - ACTIONS(6427), 1, - anon_sym_LPAREN, - ACTIONS(6433), 1, - anon_sym_LT, - STATE(3238), 1, - sym_arguments, - STATE(3409), 1, - sym_type_arguments, + ACTIONS(8184), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151961] = 5, - ACTIONS(6616), 1, + [151822] = 5, + ACTIONS(6617), 1, anon_sym_AMP, - ACTIONS(6618), 1, + ACTIONS(6619), 1, anon_sym_PIPE, - ACTIONS(6620), 1, + ACTIONS(6621), 1, anon_sym_extends, - ACTIONS(8203), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [151978] = 4, - ACTIONS(6320), 1, - anon_sym_EQ, - STATE(5585), 1, - sym_default_type, + ACTIONS(8186), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8205), 2, - anon_sym_COMMA, - anon_sym_GT, - [151993] = 5, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(5381), 1, - sym_type_parameters, - STATE(5680), 1, - sym_formal_parameters, + [151839] = 4, + ACTIONS(8129), 1, + anon_sym_from, + STATE(5324), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152010] = 3, - ACTIONS(8207), 1, - sym_escape_sequence, - ACTIONS(5), 2, - sym_html_comment, + ACTIONS(5166), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [151854] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(8209), 3, - sym__template_chars, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [152023] = 3, - ACTIONS(7976), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, - sym_comment, - ACTIONS(4085), 3, + ACTIONS(8137), 1, + anon_sym_SQUOTE, + STATE(4548), 1, + aux_sym_string_repeat2, + ACTIONS(8188), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [151871] = 5, + ACTIONS(6617), 1, anon_sym_AMP, + ACTIONS(6619), 1, anon_sym_PIPE, + ACTIONS(6621), 1, anon_sym_extends, - [152036] = 5, - ACTIONS(6616), 1, + ACTIONS(8190), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151888] = 5, + ACTIONS(6617), 1, anon_sym_AMP, - ACTIONS(6618), 1, + ACTIONS(6619), 1, anon_sym_PIPE, - ACTIONS(6620), 1, + ACTIONS(6621), 1, anon_sym_extends, - ACTIONS(8212), 1, - anon_sym_RBRACK, + ACTIONS(8192), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152053] = 4, - ACTIONS(8214), 1, - anon_sym_from, - STATE(5430), 1, - sym__from_clause, + [151905] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4986), 2, + ACTIONS(8194), 4, sym__automatic_semicolon, + anon_sym_with, + anon_sym_assert, anon_sym_SEMI, - [152068] = 5, - ACTIONS(6616), 1, - anon_sym_AMP, - ACTIONS(6618), 1, - anon_sym_PIPE, - ACTIONS(6620), 1, - anon_sym_extends, - ACTIONS(8216), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [152085] = 5, - ACTIONS(2537), 1, + [151916] = 5, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(5405), 1, + STATE(5278), 1, sym_type_parameters, - STATE(5936), 1, + STATE(5755), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152102] = 5, - ACTIONS(6616), 1, - anon_sym_AMP, - ACTIONS(6618), 1, - anon_sym_PIPE, - ACTIONS(6620), 1, - anon_sym_extends, - ACTIONS(8218), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [152119] = 5, - ACTIONS(7356), 1, - anon_sym_AMP, - ACTIONS(7358), 1, - anon_sym_PIPE, - ACTIONS(7360), 1, - anon_sym_extends, - ACTIONS(8220), 1, - anon_sym_QMARK, + [151933] = 5, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(5417), 1, + sym_type_parameters, + STATE(5614), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152136] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8222), 1, - anon_sym_DQUOTE, - STATE(4524), 1, - aux_sym_string_repeat1, - ACTIONS(8224), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [152153] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8222), 1, - anon_sym_SQUOTE, - STATE(4529), 1, - aux_sym_string_repeat2, - ACTIONS(8226), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [152170] = 4, - ACTIONS(7280), 1, + [151950] = 5, + ACTIONS(1779), 1, + anon_sym_COMMA, + ACTIONS(8196), 1, anon_sym_EQ, - STATE(5234), 1, - sym__initializer, + ACTIONS(8198), 1, + anon_sym_RBRACK, + STATE(4620), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8228), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [152185] = 5, - ACTIONS(6616), 1, + [151967] = 5, + ACTIONS(6617), 1, anon_sym_AMP, - ACTIONS(6618), 1, + ACTIONS(6619), 1, anon_sym_PIPE, - ACTIONS(6620), 1, + ACTIONS(6621), 1, anon_sym_extends, - ACTIONS(8230), 1, - anon_sym_COLON, + ACTIONS(8200), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152202] = 4, - ACTIONS(4998), 1, - anon_sym_COMMA, - STATE(4580), 1, - aux_sym_sequence_expression_repeat1, + [151984] = 5, + ACTIONS(6291), 1, + anon_sym_LT, + ACTIONS(6692), 1, + anon_sym_LPAREN, + STATE(2880), 1, + sym_arguments, + STATE(2987), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7314), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [152217] = 4, - ACTIONS(8214), 1, - anon_sym_from, - STATE(5403), 1, - sym__from_clause, + [152001] = 4, + ACTIONS(8125), 1, + anon_sym_COMMA, + STATE(4470), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8232), 2, + ACTIONS(8202), 2, sym__automatic_semicolon, anon_sym_SEMI, - [152232] = 4, - ACTIONS(8236), 1, + [152016] = 4, + ACTIONS(8125), 1, anon_sym_COMMA, - STATE(4469), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8234), 2, - anon_sym_LBRACE, - anon_sym_implements, - [152247] = 2, + STATE(4470), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8238), 4, + ACTIONS(8204), 2, sym__automatic_semicolon, - anon_sym_with, - anon_sym_assert, anon_sym_SEMI, - [152258] = 5, - ACTIONS(8240), 1, - sym_identifier, - STATE(3829), 1, - sym_nested_type_identifier, - STATE(4574), 1, - sym_generic_type, - STATE(5865), 1, - sym_nested_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [152275] = 5, - ACTIONS(6306), 1, + [152031] = 5, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6690), 1, - anon_sym_LPAREN, - STATE(2886), 1, - sym_arguments, - STATE(2958), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [152292] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8242), 1, - anon_sym_DQUOTE, - STATE(4552), 1, - aux_sym_string_repeat1, - ACTIONS(8179), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [152309] = 5, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(5409), 1, + STATE(5481), 1, sym_type_parameters, - STATE(5743), 1, + STATE(5970), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152326] = 5, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, + [152048] = 5, + ACTIONS(6390), 1, anon_sym_LPAREN, - STATE(5501), 1, - sym_type_parameters, - STATE(5815), 1, - sym_formal_parameters, + ACTIONS(6396), 1, + anon_sym_LT, + STATE(3186), 1, + sym_arguments, + STATE(3296), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152343] = 5, - ACTIONS(7356), 1, + [152065] = 5, + ACTIONS(6617), 1, anon_sym_AMP, - ACTIONS(7358), 1, + ACTIONS(6619), 1, anon_sym_PIPE, - ACTIONS(7360), 1, + ACTIONS(6621), 1, anon_sym_extends, - ACTIONS(8244), 1, - anon_sym_QMARK, + ACTIONS(8206), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152360] = 4, - ACTIONS(8246), 1, - anon_sym_COMMA, - STATE(4528), 1, - aux_sym_implements_clause_repeat1, + [152082] = 3, + ACTIONS(7932), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7695), 2, - anon_sym_LBRACE, - anon_sym_GT, - [152375] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8242), 1, - anon_sym_SQUOTE, - STATE(4553), 1, - aux_sym_string_repeat2, - ACTIONS(8189), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [152392] = 5, - ACTIONS(6616), 1, + ACTIONS(4156), 3, anon_sym_AMP, - ACTIONS(6618), 1, anon_sym_PIPE, - ACTIONS(6620), 1, anon_sym_extends, - ACTIONS(8249), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [152409] = 5, - ACTIONS(1690), 1, - anon_sym_COMMA, - ACTIONS(8251), 1, - anon_sym_EQ, - ACTIONS(8253), 1, - anon_sym_RBRACK, - STATE(4625), 1, - aux_sym_array_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [152426] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8255), 1, - anon_sym_DQUOTE, - STATE(4552), 1, - aux_sym_string_repeat1, - ACTIONS(8179), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [152443] = 6, + [152095] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8257), 1, + ACTIONS(8208), 1, sym_html_character_reference, - ACTIONS(8259), 1, + ACTIONS(8210), 1, anon_sym_DQUOTE, - ACTIONS(8261), 1, + ACTIONS(8212), 1, sym_unescaped_double_jsx_string_fragment, - STATE(4605), 1, + STATE(4547), 1, aux_sym__jsx_string_repeat1, - [152462] = 6, + [152114] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8259), 1, + ACTIONS(8210), 1, anon_sym_SQUOTE, - ACTIONS(8263), 1, + ACTIONS(8214), 1, sym_html_character_reference, - ACTIONS(8265), 1, + ACTIONS(8216), 1, sym_unescaped_single_jsx_string_fragment, - STATE(4606), 1, + STATE(4551), 1, aux_sym__jsx_string_repeat2, - [152481] = 5, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(8267), 1, - anon_sym_export, - STATE(1267), 1, - sym_decorator, - STATE(3898), 1, - aux_sym_export_statement_repeat1, + [152133] = 5, + ACTIONS(7157), 1, + anon_sym_const, + ACTIONS(8147), 1, + sym_identifier, + ACTIONS(8218), 1, + anon_sym_GT, + STATE(5384), 1, + sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152498] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8269), 1, - anon_sym_DQUOTE, - STATE(4548), 1, - aux_sym_string_repeat1, - ACTIONS(8271), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [152515] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [152150] = 5, + ACTIONS(6617), 1, + anon_sym_AMP, + ACTIONS(6619), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_extends, + ACTIONS(8220), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8269), 1, - anon_sym_SQUOTE, - STATE(4554), 1, - aux_sym_string_repeat2, - ACTIONS(8273), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [152532] = 5, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8195), 1, - anon_sym_DQUOTE, - STATE(4584), 1, - aux_sym_string_repeat1, - ACTIONS(8275), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [152549] = 5, - ACTIONS(3456), 1, - anon_sym_LPAREN, - ACTIONS(6306), 1, - anon_sym_LT, - STATE(2886), 1, - sym_arguments, - STATE(2958), 1, - sym_type_arguments, + [152167] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152566] = 5, - ACTIONS(6616), 1, + ACTIONS(6001), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [152178] = 5, + ACTIONS(6617), 1, anon_sym_AMP, - ACTIONS(6618), 1, + ACTIONS(6619), 1, anon_sym_PIPE, - ACTIONS(6620), 1, + ACTIONS(6621), 1, anon_sym_extends, - ACTIONS(8277), 1, - anon_sym_COLON, + ACTIONS(8222), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152195] = 5, + ACTIONS(8224), 1, + anon_sym_LBRACE, + ACTIONS(8226), 1, + anon_sym_COMMA, + ACTIONS(8229), 1, + anon_sym_LBRACE_PIPE, + STATE(4528), 1, + aux_sym_extends_type_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152583] = 5, + [152212] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8115), 1, + ACTIONS(8231), 1, anon_sym_DQUOTE, - STATE(4549), 1, + STATE(4536), 1, aux_sym_string_repeat1, - ACTIONS(8279), 2, + ACTIONS(8233), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [152600] = 5, - ACTIONS(8281), 1, - sym_identifier, - STATE(4466), 1, - sym_nested_type_identifier, - STATE(4613), 1, - sym_generic_type, - STATE(5865), 1, - sym_nested_identifier, + [152229] = 5, + ACTIONS(1779), 1, + anon_sym_COMMA, + ACTIONS(8196), 1, + anon_sym_EQ, + ACTIONS(8235), 1, + anon_sym_RBRACK, + STATE(5175), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152617] = 5, - ACTIONS(7390), 1, - anon_sym_COMMA, - ACTIONS(8283), 1, - anon_sym_LBRACE, - ACTIONS(8285), 1, - anon_sym_LBRACE_PIPE, - STATE(4474), 1, - aux_sym_extends_type_clause_repeat1, + [152246] = 4, + ACTIONS(7237), 1, + anon_sym_EQ, + STATE(5562), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152634] = 4, - ACTIONS(8124), 1, + ACTIONS(8237), 2, anon_sym_COMMA, - STATE(4602), 1, - aux_sym_variable_declaration_repeat1, + anon_sym_RBRACE, + [152261] = 5, + ACTIONS(6617), 1, + anon_sym_AMP, + ACTIONS(6619), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_extends, + ACTIONS(8239), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8287), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [152649] = 5, - ACTIONS(7390), 1, - anon_sym_COMMA, - ACTIONS(8289), 1, - anon_sym_LBRACE, - ACTIONS(8291), 1, - anon_sym_LBRACE_PIPE, - STATE(4474), 1, - aux_sym_extends_type_clause_repeat1, + [152278] = 4, + ACTIONS(6303), 1, + anon_sym_EQ, + STATE(5535), 1, + sym_default_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152666] = 4, - ACTIONS(8293), 1, + ACTIONS(8241), 2, anon_sym_COMMA, - STATE(4546), 1, - aux_sym_array_repeat1, + anon_sym_GT, + [152293] = 3, + ACTIONS(6338), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5319), 2, - anon_sym_RPAREN, + ACTIONS(6336), 3, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_LT, + [152306] = 5, + ACTIONS(6617), 1, + anon_sym_AMP, + ACTIONS(6619), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_extends, + ACTIONS(8243), 1, anon_sym_RBRACK, - [152681] = 4, - ACTIONS(6359), 1, - anon_sym_STAR, - ACTIONS(6363), 1, - anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5741), 2, - sym_namespace_import, - sym_named_imports, - [152696] = 5, + [152323] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8296), 1, + ACTIONS(8245), 1, anon_sym_DQUOTE, - STATE(4552), 1, + STATE(4567), 1, aux_sym_string_repeat1, - ACTIONS(8179), 2, + ACTIONS(8103), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [152713] = 5, + [152340] = 5, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(8247), 1, + anon_sym_class, + STATE(1253), 1, + aux_sym_export_statement_repeat1, + STATE(1290), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152357] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8298), 1, - anon_sym_DQUOTE, - STATE(4552), 1, - aux_sym_string_repeat1, - ACTIONS(8179), 2, - sym_unescaped_double_string_fragment, + ACTIONS(8245), 1, + anon_sym_SQUOTE, + STATE(4572), 1, + aux_sym_string_repeat2, + ACTIONS(8105), 2, + sym_unescaped_single_string_fragment, sym_escape_sequence, - [152730] = 5, - ACTIONS(6616), 1, + [152374] = 5, + ACTIONS(6617), 1, anon_sym_AMP, - ACTIONS(6618), 1, + ACTIONS(6619), 1, anon_sym_PIPE, - ACTIONS(6620), 1, + ACTIONS(6621), 1, anon_sym_extends, - ACTIONS(8300), 1, + ACTIONS(8249), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152747] = 5, + [152391] = 4, + ACTIONS(7237), 1, + anon_sym_EQ, + STATE(5229), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8251), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [152406] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8298), 1, + ACTIONS(8253), 1, anon_sym_SQUOTE, - STATE(4553), 1, + STATE(4545), 1, aux_sym_string_repeat2, - ACTIONS(8189), 2, + ACTIONS(8255), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [152764] = 5, + [152423] = 5, + ACTIONS(6617), 1, + anon_sym_AMP, + ACTIONS(6619), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_extends, + ACTIONS(8257), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152440] = 5, + ACTIONS(6617), 1, + anon_sym_AMP, + ACTIONS(6619), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_extends, + ACTIONS(8259), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152457] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8302), 1, + ACTIONS(8261), 1, anon_sym_DQUOTE, - STATE(4552), 1, + STATE(4567), 1, aux_sym_string_repeat1, - ACTIONS(8304), 2, + ACTIONS(8103), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [152781] = 5, + [152474] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8307), 1, + ACTIONS(8261), 1, anon_sym_SQUOTE, - STATE(4553), 1, + STATE(4572), 1, aux_sym_string_repeat2, - ACTIONS(8309), 2, + ACTIONS(8105), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [152798] = 5, + [152491] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8296), 1, - anon_sym_SQUOTE, - STATE(4553), 1, - aux_sym_string_repeat2, - ACTIONS(8189), 2, - sym_unescaped_single_string_fragment, + ACTIONS(8263), 1, + anon_sym_DQUOTE, + STATE(4567), 1, + aux_sym_string_repeat1, + ACTIONS(8103), 2, + sym_unescaped_double_string_fragment, sym_escape_sequence, - [152815] = 5, - ACTIONS(6616), 1, - anon_sym_AMP, - ACTIONS(6618), 1, - anon_sym_PIPE, - ACTIONS(6620), 1, - anon_sym_extends, - ACTIONS(8312), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, + [152508] = 6, + ACTIONS(3), 1, sym_comment, - [152832] = 5, - ACTIONS(6616), 1, - anon_sym_AMP, - ACTIONS(6618), 1, - anon_sym_PIPE, - ACTIONS(6620), 1, - anon_sym_extends, - ACTIONS(8314), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, - sym_comment, - [152849] = 5, + ACTIONS(8265), 1, + sym_html_character_reference, + ACTIONS(8268), 1, + anon_sym_DQUOTE, + ACTIONS(8270), 1, + sym_unescaped_double_jsx_string_fragment, + STATE(4547), 1, + aux_sym__jsx_string_repeat1, + [152527] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8255), 1, + ACTIONS(8263), 1, anon_sym_SQUOTE, - STATE(4553), 1, + STATE(4572), 1, aux_sym_string_repeat2, - ACTIONS(8189), 2, + ACTIONS(8105), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [152866] = 4, - ACTIONS(8214), 1, - anon_sym_from, - STATE(5477), 1, - sym__from_clause, + [152544] = 5, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(5329), 1, + sym_type_parameters, + STATE(5820), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8316), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [152881] = 4, - ACTIONS(8318), 1, - anon_sym_COMMA, - STATE(4559), 1, - aux_sym_variable_declaration_repeat1, + [152561] = 5, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(5330), 1, + sym_type_parameters, + STATE(5807), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8321), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [152896] = 5, - ACTIONS(6616), 1, + [152578] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8273), 1, + sym_html_character_reference, + ACTIONS(8276), 1, + anon_sym_SQUOTE, + ACTIONS(8278), 1, + sym_unescaped_single_jsx_string_fragment, + STATE(4551), 1, + aux_sym__jsx_string_repeat2, + [152597] = 5, + ACTIONS(7271), 1, anon_sym_AMP, - ACTIONS(6618), 1, + ACTIONS(7273), 1, anon_sym_PIPE, - ACTIONS(6620), 1, + ACTIONS(7275), 1, anon_sym_extends, - ACTIONS(8323), 1, - anon_sym_RBRACK, + ACTIONS(8281), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152913] = 5, - ACTIONS(6616), 1, - anon_sym_AMP, - ACTIONS(6618), 1, - anon_sym_PIPE, - ACTIONS(6620), 1, - anon_sym_extends, - ACTIONS(8325), 1, - anon_sym_RBRACK, + [152614] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8283), 1, + anon_sym_DQUOTE, + STATE(4557), 1, + aux_sym_string_repeat1, + ACTIONS(8285), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [152631] = 4, + ACTIONS(6303), 1, + anon_sym_EQ, + STATE(5537), 1, + sym_default_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152930] = 5, - ACTIONS(6616), 1, - anon_sym_AMP, - ACTIONS(6618), 1, - anon_sym_PIPE, - ACTIONS(6620), 1, - anon_sym_extends, - ACTIONS(8327), 1, - anon_sym_RPAREN, + ACTIONS(8287), 2, + anon_sym_COMMA, + anon_sym_GT, + [152646] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152947] = 5, + ACTIONS(8289), 4, + sym__automatic_semicolon, + anon_sym_with, + anon_sym_assert, + anon_sym_SEMI, + [152657] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8283), 1, + anon_sym_SQUOTE, + STATE(4558), 1, + aux_sym_string_repeat2, + ACTIONS(8291), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [152674] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8329), 1, + ACTIONS(8293), 1, anon_sym_DQUOTE, - STATE(4552), 1, + STATE(4567), 1, aux_sym_string_repeat1, - ACTIONS(8179), 2, + ACTIONS(8103), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [152964] = 5, + [152691] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8329), 1, + ACTIONS(8293), 1, anon_sym_SQUOTE, - STATE(4553), 1, + STATE(4572), 1, aux_sym_string_repeat2, - ACTIONS(8189), 2, + ACTIONS(8105), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [152981] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8331), 4, - sym__automatic_semicolon, - anon_sym_with, - anon_sym_assert, - anon_sym_SEMI, - [152992] = 2, + [152708] = 4, + ACTIONS(8295), 1, + anon_sym_COMMA, + STATE(4559), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6041), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153003] = 5, - ACTIONS(7186), 1, - anon_sym_const, - ACTIONS(8132), 1, - sym_identifier, - ACTIONS(8333), 1, + ACTIONS(7675), 2, + anon_sym_LBRACE, anon_sym_GT, - STATE(5295), 1, - sym_type_parameter, + [152723] = 5, + ACTIONS(6617), 1, + anon_sym_AMP, + ACTIONS(6619), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_extends, + ACTIONS(8298), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153020] = 4, - ACTIONS(8335), 1, - anon_sym_EQ, - STATE(5271), 1, - sym__initializer, + [152740] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6834), 2, - anon_sym_in, - anon_sym_of, - [153035] = 5, - ACTIONS(1690), 1, - anon_sym_COMMA, - ACTIONS(8251), 1, - anon_sym_EQ, - ACTIONS(8337), 1, - anon_sym_RBRACK, - STATE(5155), 1, - aux_sym_array_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, + ACTIONS(8300), 4, + sym__template_chars, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [152751] = 5, + ACTIONS(3), 1, sym_comment, - [153052] = 5, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(5512), 1, - sym_type_parameters, - STATE(5661), 1, - sym_formal_parameters, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, - sym_comment, - [153069] = 5, + ACTIONS(8231), 1, + anon_sym_SQUOTE, + STATE(4538), 1, + aux_sym_string_repeat2, + ACTIONS(8302), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [152768] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8339), 1, + ACTIONS(8304), 1, anon_sym_DQUOTE, - STATE(4532), 1, + STATE(4571), 1, aux_sym_string_repeat1, - ACTIONS(8341), 2, + ACTIONS(8306), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [153086] = 4, - ACTIONS(8236), 1, - anon_sym_COMMA, - STATE(4520), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8343), 2, - anon_sym_LBRACE, - anon_sym_implements, - [153101] = 5, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(5514), 1, - sym_type_parameters, - STATE(5763), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [153118] = 5, - ACTIONS(7390), 1, - anon_sym_COMMA, - ACTIONS(7555), 1, - anon_sym_LBRACE, - ACTIONS(7557), 1, - anon_sym_LBRACE_PIPE, - STATE(4545), 1, - aux_sym_extends_type_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [153135] = 5, - ACTIONS(6616), 1, + [152785] = 5, + ACTIONS(6617), 1, anon_sym_AMP, - ACTIONS(6618), 1, + ACTIONS(6619), 1, anon_sym_PIPE, - ACTIONS(6620), 1, + ACTIONS(6621), 1, anon_sym_extends, - ACTIONS(8345), 1, + ACTIONS(8308), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153152] = 5, - ACTIONS(7186), 1, + [152802] = 5, + ACTIONS(7157), 1, anon_sym_const, - ACTIONS(8132), 1, + ACTIONS(8147), 1, sym_identifier, - ACTIONS(8347), 1, + ACTIONS(8310), 1, anon_sym_GT, - STATE(5295), 1, + STATE(5384), 1, sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153169] = 5, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(8349), 1, - anon_sym_class, - STATE(1267), 1, - sym_decorator, - STATE(3898), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [153186] = 5, - ACTIONS(6616), 1, - anon_sym_AMP, - ACTIONS(6618), 1, - anon_sym_PIPE, - ACTIONS(6620), 1, - anon_sym_extends, - ACTIONS(8351), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [153203] = 3, - ACTIONS(8353), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6367), 3, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_LT, - [153216] = 4, - ACTIONS(8355), 1, + [152819] = 4, + ACTIONS(8312), 1, anon_sym_COMMA, - STATE(4580), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4791), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [153231] = 5, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(5534), 1, - sym_type_parameters, - STATE(5905), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [153248] = 5, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(8358), 1, - anon_sym_class, - STATE(1267), 1, - sym_decorator, - STATE(3898), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [153265] = 5, - ACTIONS(1672), 1, - anon_sym_while, - ACTIONS(2445), 1, - anon_sym_LBRACE, - ACTIONS(6333), 1, - anon_sym_DOT, - STATE(869), 1, - sym_statement_block, + STATE(4566), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153282] = 5, + ACTIONS(5567), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [152834] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8360), 1, + ACTIONS(8315), 1, anon_sym_DQUOTE, - STATE(4552), 1, + STATE(4567), 1, aux_sym_string_repeat1, - ACTIONS(8179), 2, + ACTIONS(8317), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [153299] = 5, - ACTIONS(1672), 1, - anon_sym_while, - ACTIONS(2445), 1, - anon_sym_LBRACE, - ACTIONS(6670), 1, - anon_sym_DOT, - STATE(869), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [153316] = 5, + [152851] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8360), 1, + ACTIONS(8304), 1, anon_sym_SQUOTE, - STATE(4553), 1, + STATE(4581), 1, aux_sym_string_repeat2, - ACTIONS(8189), 2, + ACTIONS(8320), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [153333] = 5, - ACTIONS(7356), 1, - anon_sym_AMP, - ACTIONS(7358), 1, - anon_sym_PIPE, - ACTIONS(7360), 1, - anon_sym_extends, - ACTIONS(8362), 1, - anon_sym_QMARK, + [152868] = 3, + ACTIONS(8322), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153350] = 5, - ACTIONS(4514), 1, + ACTIONS(3758), 3, anon_sym_LPAREN, - ACTIONS(8364), 1, anon_sym_LT, - STATE(1995), 1, - sym_arguments, - STATE(1996), 1, - sym_type_arguments, + anon_sym_QMARK, + [152881] = 4, + ACTIONS(8324), 1, + anon_sym_EQ, + STATE(5306), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153367] = 5, - ACTIONS(6616), 1, - anon_sym_AMP, - ACTIONS(6618), 1, - anon_sym_PIPE, - ACTIONS(6620), 1, - anon_sym_extends, - ACTIONS(8366), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, + ACTIONS(6778), 2, + anon_sym_in, + anon_sym_of, + [152896] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, sym_html_comment, + ACTIONS(8326), 1, + anon_sym_DQUOTE, + STATE(4567), 1, + aux_sym_string_repeat1, + ACTIONS(8103), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [152913] = 5, + ACTIONS(3), 1, sym_comment, - [153384] = 5, - ACTIONS(7356), 1, - anon_sym_AMP, - ACTIONS(7358), 1, - anon_sym_PIPE, - ACTIONS(7360), 1, - anon_sym_extends, - ACTIONS(8368), 1, - anon_sym_QMARK, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8328), 1, + anon_sym_SQUOTE, + STATE(4572), 1, + aux_sym_string_repeat2, + ACTIONS(8330), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [152930] = 5, + ACTIONS(1653), 1, + anon_sym_while, + ACTIONS(2444), 1, + anon_sym_LBRACE, + ACTIONS(6316), 1, + anon_sym_DOT, + STATE(911), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153401] = 4, - ACTIONS(7280), 1, - anon_sym_EQ, - STATE(5531), 1, - sym__initializer, + [152947] = 5, + ACTIONS(1653), 1, + anon_sym_while, + ACTIONS(2444), 1, + anon_sym_LBRACE, + ACTIONS(6651), 1, + anon_sym_DOT, + STATE(911), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8370), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [153416] = 4, - ACTIONS(8214), 1, + [152964] = 4, + ACTIONS(8129), 1, anon_sym_from, - STATE(5473), 1, + STATE(5353), 1, sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5083), 2, + ACTIONS(4999), 2, sym__automatic_semicolon, anon_sym_SEMI, - [153431] = 5, - ACTIONS(7356), 1, + [152979] = 5, + ACTIONS(7271), 1, anon_sym_AMP, - ACTIONS(7358), 1, + ACTIONS(7273), 1, anon_sym_PIPE, - ACTIONS(7360), 1, + ACTIONS(7275), 1, anon_sym_extends, - ACTIONS(8372), 1, + ACTIONS(8333), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153448] = 5, - ACTIONS(2537), 1, + [152996] = 5, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(5246), 1, + STATE(5362), 1, sym_type_parameters, - STATE(5682), 1, + STATE(5645), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153465] = 5, - ACTIONS(2537), 1, + [153013] = 5, + ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6487), 1, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(5248), 1, + STATE(5364), 1, sym_type_parameters, - STATE(5771), 1, + STATE(5797), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153482] = 2, + [153030] = 4, + ACTIONS(6328), 1, + anon_sym_STAR, + ACTIONS(6332), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8374), 4, - sym__template_chars, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [153493] = 5, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(5562), 1, - sym_type_parameters, - STATE(5685), 1, - sym_formal_parameters, + STATE(5982), 2, + sym_namespace_import, + sym_named_imports, + [153045] = 5, + ACTIONS(7271), 1, + anon_sym_AMP, + ACTIONS(7273), 1, + anon_sym_PIPE, + ACTIONS(7275), 1, + anon_sym_extends, + ACTIONS(8335), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153510] = 5, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(5566), 1, - sym_type_parameters, - STATE(5704), 1, - sym_formal_parameters, + [153062] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8326), 1, + anon_sym_SQUOTE, + STATE(4572), 1, + aux_sym_string_repeat2, + ACTIONS(8105), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [153079] = 4, + ACTIONS(3758), 1, + anon_sym_COLON, + ACTIONS(4429), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153527] = 5, - ACTIONS(7356), 1, + ACTIONS(8337), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [153094] = 5, + ACTIONS(7271), 1, anon_sym_AMP, - ACTIONS(7358), 1, + ACTIONS(7273), 1, anon_sym_PIPE, - ACTIONS(7360), 1, + ACTIONS(7275), 1, anon_sym_extends, - ACTIONS(8376), 1, + ACTIONS(8339), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153544] = 5, + [153111] = 4, + ACTIONS(8341), 1, + anon_sym_COMMA, + STATE(4584), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4744), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [153126] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8339), 1, + ACTIONS(8097), 1, anon_sym_SQUOTE, - STATE(4557), 1, - aux_sym_string_repeat2, - ACTIONS(8378), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [153561] = 5, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(8380), 1, - anon_sym_LT, - STATE(1520), 1, - sym_arguments, - STATE(1521), 1, - sym_type_arguments, + ACTIONS(8344), 1, + sym_html_character_reference, + ACTIONS(8346), 1, + sym_unescaped_single_jsx_string_fragment, + STATE(4523), 1, + aux_sym__jsx_string_repeat2, + [153145] = 3, + ACTIONS(8348), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153578] = 4, - ACTIONS(8124), 1, - anon_sym_COMMA, - STATE(4559), 1, - aux_sym_variable_declaration_repeat1, + ACTIONS(6336), 3, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_LT, + [153158] = 4, + ACTIONS(8129), 1, + anon_sym_from, + STATE(5521), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8382), 2, + ACTIONS(8350), 2, sym__automatic_semicolon, anon_sym_SEMI, - [153593] = 5, - ACTIONS(6616), 1, + [153173] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8352), 1, + anon_sym_DQUOTE, + STATE(4462), 1, + aux_sym_string_repeat1, + ACTIONS(8354), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [153190] = 5, + ACTIONS(6617), 1, anon_sym_AMP, - ACTIONS(6618), 1, + ACTIONS(6619), 1, anon_sym_PIPE, - ACTIONS(6620), 1, + ACTIONS(6621), 1, anon_sym_extends, - ACTIONS(8384), 1, - anon_sym_COLON, + ACTIONS(8356), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153610] = 5, - ACTIONS(6616), 1, - anon_sym_AMP, - ACTIONS(6618), 1, - anon_sym_PIPE, - ACTIONS(6620), 1, - anon_sym_extends, - ACTIONS(8386), 1, - anon_sym_RPAREN, + [153207] = 5, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(8358), 1, + anon_sym_class, + STATE(1253), 1, + aux_sym_export_statement_repeat1, + STATE(1290), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153627] = 6, + [153224] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8388), 1, - sym_html_character_reference, - ACTIONS(8390), 1, - anon_sym_DQUOTE, - ACTIONS(8392), 1, - sym_unescaped_double_jsx_string_fragment, - STATE(4480), 1, - aux_sym__jsx_string_repeat1, - [153646] = 6, - ACTIONS(3), 1, + ACTIONS(8352), 1, + anon_sym_SQUOTE, + STATE(4463), 1, + aux_sym_string_repeat2, + ACTIONS(8360), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [153241] = 5, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(5561), 1, + sym_type_parameters, + STATE(5673), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [153258] = 5, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(5564), 1, + sym_type_parameters, + STATE(5692), 1, + sym_formal_parameters, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8390), 1, - anon_sym_SQUOTE, - ACTIONS(8394), 1, - sym_html_character_reference, - ACTIONS(8396), 1, - sym_unescaped_single_jsx_string_fragment, - STATE(4493), 1, - aux_sym__jsx_string_repeat2, - [153665] = 4, - ACTIONS(6320), 1, - anon_sym_EQ, - STATE(5444), 1, - sym_default_type, + sym_comment, + [153275] = 5, + ACTIONS(6617), 1, + anon_sym_AMP, + ACTIONS(6619), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_extends, + ACTIONS(8362), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8398), 2, - anon_sym_COMMA, - anon_sym_GT, - [153680] = 4, - ACTIONS(8124), 1, - anon_sym_COMMA, - STATE(4559), 1, - aux_sym_variable_declaration_repeat1, + [153292] = 5, + ACTIONS(7271), 1, + anon_sym_AMP, + ACTIONS(7273), 1, + anon_sym_PIPE, + ACTIONS(7275), 1, + anon_sym_extends, + ACTIONS(8364), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8400), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [153695] = 5, - ACTIONS(7186), 1, + [153309] = 5, + ACTIONS(7157), 1, anon_sym_const, - ACTIONS(8132), 1, + ACTIONS(8147), 1, sym_identifier, - ACTIONS(8402), 1, + ACTIONS(8366), 1, anon_sym_GT, - STATE(5295), 1, + STATE(5384), 1, sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153712] = 5, - ACTIONS(7356), 1, - anon_sym_AMP, - ACTIONS(7358), 1, - anon_sym_PIPE, - ACTIONS(7360), 1, - anon_sym_extends, - ACTIONS(8404), 1, - anon_sym_QMARK, + [153326] = 5, + ACTIONS(8368), 1, + sym_identifier, + STATE(4403), 1, + sym_nested_type_identifier, + STATE(5124), 1, + sym_generic_type, + STATE(5806), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153729] = 5, - ACTIONS(7390), 1, + [153343] = 5, + ACTIONS(7339), 1, anon_sym_COMMA, - ACTIONS(8289), 1, + ACTIONS(8370), 1, anon_sym_LBRACE, - ACTIONS(8291), 1, + ACTIONS(8372), 1, anon_sym_LBRACE_PIPE, - STATE(4474), 1, + STATE(4528), 1, aux_sym_extends_type_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153746] = 2, + [153360] = 5, + ACTIONS(8374), 1, + sym_identifier, + STATE(3776), 1, + sym_nested_type_identifier, + STATE(4469), 1, + sym_generic_type, + STATE(5806), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8406), 3, - sym__automatic_semicolon, + [153377] = 4, + ACTIONS(8135), 1, anon_sym_COMMA, - anon_sym_SEMI, - [153756] = 3, - ACTIONS(8111), 1, + STATE(4464), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8376), 2, + anon_sym_LBRACE, + anon_sym_implements, + [153392] = 5, + ACTIONS(7339), 1, + anon_sym_COMMA, + ACTIONS(8378), 1, anon_sym_LBRACE, + ACTIONS(8380), 1, + anon_sym_LBRACE_PIPE, + STATE(4528), 1, + aux_sym_extends_type_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8113), 2, + [153409] = 5, + ACTIONS(7339), 1, anon_sym_COMMA, + ACTIONS(8378), 1, + anon_sym_LBRACE, + ACTIONS(8380), 1, anon_sym_LBRACE_PIPE, - [153768] = 2, + STATE(4528), 1, + aux_sym_extends_type_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153426] = 5, + ACTIONS(7271), 1, + anon_sym_AMP, + ACTIONS(7273), 1, + anon_sym_PIPE, + ACTIONS(7275), 1, + anon_sym_extends, + ACTIONS(8382), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153443] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8253), 1, + anon_sym_DQUOTE, + STATE(4544), 1, + aux_sym_string_repeat1, + ACTIONS(8384), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [153460] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8408), 3, + ACTIONS(8386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153778] = 4, - ACTIONS(8410), 1, + [153470] = 4, + ACTIONS(8388), 1, sym_identifier, - ACTIONS(8412), 1, + ACTIONS(8390), 1, anon_sym_LBRACK, - ACTIONS(8414), 1, + ACTIONS(8392), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153792] = 4, - ACTIONS(8416), 1, + [153484] = 4, + ACTIONS(8394), 1, sym_identifier, - ACTIONS(8418), 1, + ACTIONS(8396), 1, anon_sym_LBRACK, - ACTIONS(8420), 1, + ACTIONS(8398), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153806] = 4, - ACTIONS(8422), 1, + [153498] = 4, + ACTIONS(8400), 1, sym_identifier, - ACTIONS(8424), 1, + ACTIONS(8402), 1, anon_sym_LBRACK, - ACTIONS(8426), 1, + ACTIONS(8404), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153820] = 4, - ACTIONS(8428), 1, + [153512] = 4, + ACTIONS(8406), 1, sym_identifier, - ACTIONS(8430), 1, + ACTIONS(8408), 1, anon_sym_LBRACK, - ACTIONS(8432), 1, + ACTIONS(8410), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153834] = 4, - ACTIONS(2933), 1, + [153526] = 4, + ACTIONS(2548), 1, anon_sym_RBRACK, - ACTIONS(8434), 1, + ACTIONS(8412), 1, anon_sym_COMMA, - STATE(5216), 1, + STATE(5104), 1, aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153848] = 2, + [153540] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8436), 3, + ACTIONS(8414), 3, sym__automatic_semicolon, - anon_sym_from, + anon_sym_COMMA, anon_sym_SEMI, - [153858] = 4, - ACTIONS(1642), 1, - anon_sym_RPAREN, - ACTIONS(8438), 1, + [153550] = 4, + ACTIONS(8416), 1, anon_sym_COMMA, - STATE(4983), 1, - aux_sym_formal_parameters_repeat1, + ACTIONS(8419), 1, + anon_sym_RBRACE, + STATE(4612), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153872] = 2, + [153564] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8440), 3, + ACTIONS(8421), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153882] = 4, - ACTIONS(8442), 1, + [153574] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8421), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8445), 1, + anon_sym_SEMI, + [153584] = 4, + ACTIONS(8423), 1, + anon_sym_COMMA, + ACTIONS(8426), 1, anon_sym_RBRACE, - STATE(4623), 1, - aux_sym_export_clause_repeat1, + STATE(4615), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153598] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8428), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153608] = 4, + ACTIONS(1641), 1, + anon_sym_RPAREN, + ACTIONS(8430), 1, + anon_sym_COMMA, + STATE(4847), 1, + aux_sym_formal_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153622] = 4, + ACTIONS(5533), 1, + anon_sym_COMMA, + ACTIONS(8432), 1, + anon_sym_RBRACE, + STATE(4612), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153896] = 4, - ACTIONS(1939), 1, + [153636] = 4, + ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(8447), 1, + ACTIONS(8434), 1, anon_sym_RBRACK, - STATE(4546), 1, + STATE(4566), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153910] = 4, - ACTIONS(1690), 1, + [153650] = 4, + ACTIONS(1779), 1, anon_sym_COMMA, - ACTIONS(8449), 1, + ACTIONS(8436), 1, anon_sym_RBRACK, - STATE(5158), 1, + STATE(5177), 1, aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153924] = 2, + [153664] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8451), 3, + ACTIONS(8438), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153934] = 2, + [153674] = 4, + ACTIONS(5027), 1, + anon_sym_COMMA, + ACTIONS(8440), 1, + anon_sym_RBRACE, + STATE(4615), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8453), 3, + [153688] = 3, + ACTIONS(8442), 1, sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6778), 2, + anon_sym_in, + anon_sym_of, + [153700] = 4, + ACTIONS(1928), 1, anon_sym_COMMA, - anon_sym_SEMI, - [153944] = 2, + ACTIONS(5201), 1, + anon_sym_RPAREN, + STATE(4819), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153714] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7347), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [153724] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153954] = 4, - ACTIONS(221), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1500), 1, - anon_sym_LBRACE, - STATE(808), 1, - sym_object_type, + [153734] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153968] = 2, + ACTIONS(8444), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153744] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8457), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153978] = 2, + [153754] = 3, + ACTIONS(8446), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8448), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [153766] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8450), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [153776] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8451), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153988] = 2, + [153786] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, + ACTIONS(8452), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153998] = 4, - ACTIONS(3959), 1, + [153796] = 4, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(8459), 1, + ACTIONS(8454), 1, anon_sym_DOT, - STATE(1515), 1, + STATE(1530), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154012] = 2, + [153810] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8461), 3, + ACTIONS(8421), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154022] = 4, - ACTIONS(4514), 1, - anon_sym_LPAREN, - ACTIONS(8463), 1, - anon_sym_DOT, - STATE(1972), 1, - sym_arguments, + [153820] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154036] = 4, - ACTIONS(1939), 1, + ACTIONS(8438), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5331), 1, - anon_sym_RPAREN, - STATE(4648), 1, - aux_sym_array_repeat1, + anon_sym_SEMI, + [153830] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154050] = 4, - ACTIONS(1939), 1, + ACTIONS(8444), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5331), 1, - anon_sym_RPAREN, - STATE(4546), 1, - aux_sym_array_repeat1, + anon_sym_SEMI, + [153840] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154064] = 2, + ACTIONS(8444), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153850] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8440), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154074] = 2, + [153860] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8453), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154084] = 2, + [153870] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(5201), 1, + anon_sym_RPAREN, + STATE(4566), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8465), 3, - sym__automatic_semicolon, + [153884] = 4, + ACTIONS(1928), 1, anon_sym_COMMA, - anon_sym_SEMI, - [154094] = 4, - ACTIONS(6333), 1, - anon_sym_DOT, - ACTIONS(6644), 1, - anon_sym_COLON, - ACTIONS(8467), 1, - anon_sym_GT, + ACTIONS(5336), 1, + anon_sym_RPAREN, + STATE(4652), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153898] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(5336), 1, + anon_sym_RPAREN, + STATE(4566), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153912] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154108] = 2, + ACTIONS(8456), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153922] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8469), 3, + ACTIONS(8458), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154118] = 2, + [153932] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8440), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154128] = 2, + [153942] = 4, + ACTIONS(6316), 1, + anon_sym_DOT, + ACTIONS(6601), 1, + anon_sym_COLON, + ACTIONS(8460), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153956] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8408), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154138] = 4, - ACTIONS(8471), 1, + [153966] = 4, + ACTIONS(4535), 1, + anon_sym_LPAREN, + ACTIONS(8462), 1, + anon_sym_DOT, + STATE(1893), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153980] = 4, + ACTIONS(8464), 1, anon_sym_COMMA, - ACTIONS(8473), 1, + ACTIONS(8466), 1, anon_sym_RBRACK, - STATE(4656), 1, + STATE(4659), 1, aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154152] = 4, - ACTIONS(4143), 1, + [153994] = 4, + ACTIONS(4080), 1, anon_sym_extends, - ACTIONS(8475), 1, + ACTIONS(8468), 1, anon_sym_AMP, - ACTIONS(8477), 1, + ACTIONS(8470), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154166] = 4, - ACTIONS(8333), 1, - anon_sym_GT, - ACTIONS(8479), 1, - anon_sym_COMMA, - STATE(4765), 1, - aux_sym_type_parameters_repeat1, + [154008] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154180] = 4, - ACTIONS(1939), 1, + ACTIONS(8438), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8481), 1, + anon_sym_SEMI, + [154018] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(8472), 1, anon_sym_RPAREN, - STATE(4546), 1, + STATE(4566), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154194] = 2, + [154032] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8440), 3, + ACTIONS(8421), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154204] = 4, - ACTIONS(3213), 1, + [154042] = 4, + ACTIONS(3212), 1, anon_sym_GT, - ACTIONS(8483), 1, + ACTIONS(8474), 1, anon_sym_COMMA, - STATE(4528), 1, + STATE(4559), 1, aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154218] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8485), 1, - sym__glimmer_template_content, - ACTIONS(8487), 1, - sym_glimmer_closing_tag, - STATE(4914), 1, - aux_sym_glimmer_template_repeat1, - [154234] = 4, - ACTIONS(8489), 1, + [154056] = 4, + ACTIONS(8476), 1, anon_sym_COMMA, - ACTIONS(8491), 1, - anon_sym_RPAREN, - STATE(4844), 1, - aux_sym_formal_parameters_repeat1, + ACTIONS(8479), 1, + anon_sym_GT, + STATE(4655), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154248] = 2, + [154070] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8493), 3, + ACTIONS(8386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154258] = 2, + [154080] = 4, + ACTIONS(7126), 1, + anon_sym_RBRACE, + ACTIONS(8481), 1, + anon_sym_COMMA, + STATE(4881), 1, + aux_sym_export_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8451), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154268] = 2, + [154094] = 4, + ACTIONS(8483), 1, + sym_identifier, + STATE(3792), 1, + sym_decorator_member_expression, + STATE(5915), 1, + sym_decorator_call_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8495), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154278] = 4, - ACTIONS(2945), 1, + [154108] = 4, + ACTIONS(2568), 1, anon_sym_RBRACK, - ACTIONS(8497), 1, + ACTIONS(8485), 1, anon_sym_COMMA, - STATE(5216), 1, + STATE(5104), 1, aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154292] = 2, + [154122] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8499), 3, + ACTIONS(8452), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154302] = 4, - ACTIONS(1038), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1580), 1, - anon_sym_LBRACE, - STATE(4037), 1, - sym_object_type, + [154132] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154316] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8453), 3, + ACTIONS(8456), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154326] = 2, + [154142] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8440), 3, + ACTIONS(8487), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154336] = 2, + [154152] = 4, + ACTIONS(8149), 1, + anon_sym_GT, + ACTIONS(8489), 1, + anon_sym_COMMA, + STATE(4655), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154166] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, + ACTIONS(8491), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154346] = 4, - ACTIONS(1939), 1, + [154176] = 4, + ACTIONS(5027), 1, anon_sym_COMMA, - ACTIONS(5302), 1, - anon_sym_RPAREN, - STATE(4797), 1, - aux_sym_array_repeat1, + ACTIONS(8440), 1, + anon_sym_RBRACE, + STATE(5060), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154360] = 4, - ACTIONS(1939), 1, - anon_sym_COMMA, - ACTIONS(5302), 1, + [154190] = 4, + ACTIONS(3530), 1, + anon_sym_COLON, + ACTIONS(8493), 1, anon_sym_RPAREN, - STATE(4546), 1, - aux_sym_array_repeat1, + STATE(5868), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154374] = 2, + [154204] = 4, + ACTIONS(1033), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1575), 1, + anon_sym_LBRACE, + STATE(4013), 1, + sym_object_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154218] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8493), 3, + ACTIONS(8456), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154384] = 3, - ACTIONS(8501), 1, - sym_identifier, + [154228] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8503), 2, + ACTIONS(8428), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [154396] = 2, + [154238] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8505), 3, + ACTIONS(8487), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154406] = 3, - ACTIONS(8507), 1, - sym_identifier, + [154248] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8509), 2, + ACTIONS(8428), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [154418] = 4, - ACTIONS(6427), 1, + [154258] = 3, + ACTIONS(8495), 1, + anon_sym_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7725), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [154270] = 4, + ACTIONS(6390), 1, anon_sym_LPAREN, - ACTIONS(8511), 1, + ACTIONS(8497), 1, anon_sym_DOT, - STATE(3294), 1, + STATE(3286), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154432] = 2, + [154284] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(5299), 1, + anon_sym_RPAREN, + STATE(4826), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, - sym__automatic_semicolon, + [154298] = 4, + ACTIONS(1928), 1, anon_sym_COMMA, - anon_sym_SEMI, - [154442] = 4, - ACTIONS(1939), 1, - anon_sym_COMMA, - ACTIONS(5333), 1, + ACTIONS(5342), 1, anon_sym_RPAREN, - STATE(4680), 1, + STATE(4684), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154456] = 4, - ACTIONS(1939), 1, + [154312] = 4, + ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(5333), 1, + ACTIONS(5342), 1, anon_sym_RPAREN, - STATE(4546), 1, + STATE(4566), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154470] = 2, + [154326] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, + ACTIONS(8438), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154480] = 4, - ACTIONS(5566), 1, + [154336] = 4, + ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(8515), 1, - anon_sym_RBRACE, - STATE(5232), 1, - aux_sym_object_repeat1, + ACTIONS(5299), 1, + anon_sym_RPAREN, + STATE(4566), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154494] = 2, + [154350] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8456), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154504] = 2, + [154360] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8491), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154514] = 2, + [154370] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154524] = 4, - ACTIONS(8519), 1, + [154380] = 4, + ACTIONS(8499), 1, anon_sym_COMMA, - ACTIONS(8521), 1, + ACTIONS(8501), 1, anon_sym_RBRACK, - STATE(4690), 1, + STATE(4695), 1, aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154538] = 4, + [154394] = 4, ACTIONS(6964), 1, anon_sym_AMP, ACTIONS(6966), 1, @@ -265279,2042 +263369,1833 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - [154552] = 4, - ACTIONS(5075), 1, - anon_sym_COMMA, - ACTIONS(8523), 1, - anon_sym_RBRACE, - STATE(4942), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154566] = 4, - ACTIONS(1939), 1, + [154408] = 4, + ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(8525), 1, + ACTIONS(8503), 1, anon_sym_RPAREN, - STATE(4546), 1, + STATE(4566), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154580] = 4, - ACTIONS(6528), 1, - anon_sym_type, - ACTIONS(8527), 1, - sym_identifier, - STATE(5253), 1, - sym__import_identifier, + [154422] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154594] = 4, - ACTIONS(3211), 1, + ACTIONS(8428), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154432] = 4, + ACTIONS(3176), 1, anon_sym_GT, - ACTIONS(8529), 1, + ACTIONS(8505), 1, anon_sym_COMMA, - STATE(4528), 1, + STATE(4559), 1, aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154608] = 2, + [154446] = 4, + ACTIONS(5533), 1, + anon_sym_COMMA, + ACTIONS(8432), 1, + anon_sym_RBRACE, + STATE(5094), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154460] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8531), 3, + ACTIONS(8438), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154618] = 2, + [154470] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154628] = 4, - ACTIONS(8533), 1, + [154480] = 4, + ACTIONS(8507), 1, sym_identifier, - ACTIONS(8535), 1, + ACTIONS(8509), 1, anon_sym_LBRACK, - ACTIONS(8537), 1, + ACTIONS(8511), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154642] = 4, - ACTIONS(8539), 1, + [154494] = 4, + ACTIONS(8513), 1, sym_identifier, - ACTIONS(8541), 1, + ACTIONS(8515), 1, anon_sym_LBRACK, - ACTIONS(8543), 1, + ACTIONS(8517), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154656] = 4, - ACTIONS(8545), 1, + [154508] = 4, + ACTIONS(8519), 1, sym_identifier, - ACTIONS(8547), 1, + ACTIONS(8521), 1, anon_sym_LBRACK, - ACTIONS(8549), 1, + ACTIONS(8523), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154670] = 4, - ACTIONS(8551), 1, + [154522] = 4, + ACTIONS(8525), 1, sym_identifier, - ACTIONS(8553), 1, + ACTIONS(8527), 1, anon_sym_LBRACK, - ACTIONS(8555), 1, + ACTIONS(8529), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154684] = 4, - ACTIONS(6528), 1, - anon_sym_type, - ACTIONS(8557), 1, - sym_identifier, - STATE(5254), 1, - sym__import_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154698] = 4, - ACTIONS(2939), 1, - anon_sym_RBRACK, - ACTIONS(8559), 1, - anon_sym_COMMA, - STATE(5216), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154712] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8455), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154722] = 4, - ACTIONS(8561), 1, - anon_sym_COMMA, - ACTIONS(8564), 1, - anon_sym_RBRACE, - STATE(4692), 1, - aux_sym_named_imports_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154736] = 4, - ACTIONS(1510), 1, - anon_sym_DQUOTE, - ACTIONS(1512), 1, - anon_sym_SQUOTE, - STATE(5889), 1, - sym_string, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154750] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8455), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154760] = 4, - ACTIONS(1939), 1, - anon_sym_COMMA, - ACTIONS(5440), 1, - anon_sym_RPAREN, - STATE(4912), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154774] = 4, - ACTIONS(1939), 1, - anon_sym_COMMA, - ACTIONS(5440), 1, - anon_sym_RPAREN, - STATE(4546), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154788] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8455), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154798] = 2, + [154536] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8465), 3, + ACTIONS(8487), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154808] = 4, - ACTIONS(1939), 1, - anon_sym_COMMA, - ACTIONS(5335), 1, - anon_sym_RPAREN, - STATE(4705), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154822] = 4, - ACTIONS(1939), 1, + [154546] = 4, + ACTIONS(2576), 1, + anon_sym_RBRACK, + ACTIONS(8531), 1, anon_sym_COMMA, - ACTIONS(5335), 1, - anon_sym_RPAREN, - STATE(4546), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154836] = 2, + STATE(5104), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154846] = 2, + [154560] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154856] = 2, + [154570] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, + ACTIONS(8386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154866] = 2, + [154580] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8438), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154876] = 4, - ACTIONS(1939), 1, - anon_sym_COMMA, - ACTIONS(8566), 1, - anon_sym_RPAREN, - STATE(4546), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154890] = 4, - ACTIONS(3197), 1, - anon_sym_GT, - ACTIONS(8568), 1, - anon_sym_COMMA, - STATE(4528), 1, - aux_sym_implements_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154904] = 2, + [154590] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8533), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154914] = 2, + [154600] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8531), 3, + ACTIONS(8491), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154924] = 2, + [154610] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, + ACTIONS(8487), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154934] = 2, + [154620] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154944] = 2, + [154630] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8461), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154954] = 2, + [154640] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8570), 3, + ACTIONS(8491), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154964] = 4, - ACTIONS(6333), 1, - anon_sym_DOT, - ACTIONS(6644), 1, - anon_sym_COLON, - ACTIONS(8572), 1, - anon_sym_GT, + [154650] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154978] = 2, + ACTIONS(8452), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154660] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8421), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154988] = 4, - ACTIONS(1939), 1, + [154670] = 4, + ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(5339), 1, + ACTIONS(5356), 1, anon_sym_RPAREN, - STATE(4721), 1, + STATE(4711), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155002] = 4, - ACTIONS(1939), 1, + [154684] = 4, + ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(5339), 1, + ACTIONS(5356), 1, anon_sym_RPAREN, - STATE(4546), 1, + STATE(4566), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155016] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8517), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155026] = 3, - ACTIONS(8574), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7803), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [155038] = 2, + [154698] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8531), 3, + ACTIONS(8456), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155048] = 2, + [154708] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8451), 3, + ACTIONS(8386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155058] = 4, - ACTIONS(1939), 1, + [154718] = 4, + ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(8576), 1, + ACTIONS(8535), 1, anon_sym_RPAREN, - STATE(4546), 1, + STATE(4566), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155072] = 2, + [154732] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155082] = 4, - ACTIONS(3191), 1, + [154742] = 4, + ACTIONS(3196), 1, anon_sym_GT, - ACTIONS(8578), 1, + ACTIONS(8537), 1, anon_sym_COMMA, - STATE(4528), 1, + STATE(4559), 1, aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155096] = 2, + [154756] = 3, + ACTIONS(8539), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8440), 3, - sym__automatic_semicolon, + ACTIONS(6510), 2, anon_sym_COMMA, - anon_sym_SEMI, - [155106] = 2, + anon_sym_RBRACE, + [154768] = 4, + ACTIONS(6508), 1, + anon_sym_type, + ACTIONS(8541), 1, + sym_identifier, + STATE(5456), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155116] = 2, + [154782] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8531), 3, + ACTIONS(8533), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155126] = 2, + [154792] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155136] = 2, + [154802] = 4, + ACTIONS(6508), 1, + anon_sym_type, + ACTIONS(8543), 1, + sym_identifier, + STATE(5457), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155146] = 2, + [154816] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8487), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155156] = 4, - ACTIONS(8580), 1, - anon_sym_LPAREN, - ACTIONS(8582), 1, - anon_sym_await, - STATE(49), 1, - sym__for_header, + [154826] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155170] = 3, - ACTIONS(8584), 1, + ACTIONS(8545), 3, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154836] = 4, + ACTIONS(6316), 1, + anon_sym_DOT, + ACTIONS(6601), 1, + anon_sym_COLON, + ACTIONS(8547), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6834), 2, - anon_sym_in, - anon_sym_of, - [155182] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7258), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [155192] = 2, + [154850] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8533), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155202] = 2, + [154860] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(5358), 1, + anon_sym_RPAREN, + STATE(4729), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8440), 3, - sym__automatic_semicolon, + [154874] = 4, + ACTIONS(1928), 1, anon_sym_COMMA, - anon_sym_SEMI, - [155212] = 2, + ACTIONS(5358), 1, + anon_sym_RPAREN, + STATE(4566), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8531), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155222] = 4, - ACTIONS(8214), 1, - anon_sym_from, - ACTIONS(8586), 1, - anon_sym_as, - STATE(5440), 1, - sym__from_clause, + [154888] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155236] = 4, - ACTIONS(2245), 1, - anon_sym_LBRACE, - ACTIONS(8588), 1, - sym_identifier, - STATE(4592), 1, - sym_export_clause, + ACTIONS(8438), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154898] = 4, + ACTIONS(6780), 1, + anon_sym_RBRACE, + ACTIONS(8549), 1, + anon_sym_COMMA, + STATE(5106), 1, + aux_sym_named_imports_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155250] = 2, + [154912] = 3, + ACTIONS(7207), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, + ACTIONS(8551), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [155260] = 2, + [154924] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155270] = 2, + [154934] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(8553), 1, + anon_sym_RPAREN, + STATE(4566), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8465), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155280] = 2, + [154948] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, + ACTIONS(8555), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155290] = 4, - ACTIONS(8590), 1, - anon_sym_COMMA, - ACTIONS(8592), 1, + [154958] = 4, + ACTIONS(3200), 1, anon_sym_GT, - STATE(5065), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(8557), 1, + anon_sym_COMMA, + STATE(4559), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155304] = 2, + [154972] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, + ACTIONS(8458), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155314] = 2, + [154982] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8451), 3, + ACTIONS(8555), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155324] = 2, + [154992] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8570), 3, + ACTIONS(8487), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155334] = 2, + [155002] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8408), 3, + ACTIONS(8559), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155344] = 4, - ACTIONS(7186), 1, - anon_sym_const, - ACTIONS(8132), 1, - sym_identifier, - STATE(5047), 1, - sym_type_parameter, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [155358] = 3, - ACTIONS(7210), 1, - anon_sym_DOT, + [155012] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8594), 2, + ACTIONS(8452), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [155370] = 4, - ACTIONS(8596), 1, - sym_identifier, - STATE(3781), 1, - sym_decorator_member_expression, - STATE(5765), 1, - sym_decorator_call_expression, + [155022] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155384] = 4, - ACTIONS(3541), 1, - anon_sym_COLON, - ACTIONS(8598), 1, - anon_sym_RPAREN, - STATE(5955), 1, - sym_type_annotation, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [155398] = 3, - ACTIONS(7226), 1, + ACTIONS(8428), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155032] = 3, + ACTIONS(7209), 1, anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8594), 2, + ACTIONS(8551), 2, sym__automatic_semicolon, anon_sym_SEMI, - [155410] = 2, + [155044] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8438), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155420] = 2, + [155054] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155430] = 2, + [155064] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8531), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155440] = 2, + [155074] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8570), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155450] = 4, - ACTIONS(8600), 1, - anon_sym_COMMA, - ACTIONS(8602), 1, - anon_sym_RBRACK, - STATE(4854), 1, - aux_sym_tuple_type_repeat1, + [155084] = 4, + ACTIONS(8561), 1, + anon_sym_LPAREN, + ACTIONS(8563), 1, + anon_sym_await, + STATE(50), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155464] = 2, + [155098] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8604), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155474] = 2, + [155108] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8570), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155484] = 2, + [155118] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8606), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155494] = 4, - ACTIONS(2489), 1, - anon_sym_while, - ACTIONS(8608), 1, - anon_sym_else, - STATE(904), 1, - sym_else_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [155508] = 2, + [155128] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8438), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155518] = 4, - ACTIONS(4979), 1, - anon_sym_extends, - ACTIONS(8610), 1, - anon_sym_AMP, - ACTIONS(8612), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [155532] = 2, + [155138] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155542] = 4, - ACTIONS(6047), 1, - anon_sym_LPAREN, - ACTIONS(8614), 1, - anon_sym_DOT, - STATE(2897), 1, - sym_arguments, + [155148] = 4, + ACTIONS(8129), 1, + anon_sym_from, + ACTIONS(8565), 1, + anon_sym_as, + STATE(5467), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155556] = 4, - ACTIONS(8616), 1, - anon_sym_COMMA, - ACTIONS(8619), 1, - anon_sym_GT, - STATE(4765), 1, - aux_sym_type_parameters_repeat1, + [155162] = 4, + ACTIONS(2240), 1, + anon_sym_LBRACE, + ACTIONS(8567), 1, + sym_identifier, + STATE(4506), 1, + sym_export_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155570] = 2, + [155176] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8531), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155580] = 2, + [155186] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8440), 3, + ACTIONS(8569), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155590] = 2, + [155196] = 4, + ACTIONS(8571), 1, + sym_identifier, + ACTIONS(8573), 1, + anon_sym_LBRACK, + ACTIONS(8575), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155210] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8461), 3, + ACTIONS(8577), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155600] = 2, + [155220] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8570), 3, + ACTIONS(8579), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155610] = 2, + [155230] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8456), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155620] = 2, + [155240] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155630] = 2, + [155250] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8531), 3, + ACTIONS(8581), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155640] = 2, + [155260] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8583), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155650] = 2, + [155270] = 4, + ACTIONS(7157), 1, + anon_sym_const, + ACTIONS(8147), 1, + sym_identifier, + STATE(5029), 1, + sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, - sym__automatic_semicolon, + [155284] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6510), 3, anon_sym_COMMA, - anon_sym_SEMI, - [155660] = 2, + anon_sym_RBRACE, + anon_sym_from, + [155294] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8531), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155670] = 2, + [155304] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, + ACTIONS(8421), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155680] = 4, - ACTIONS(7662), 1, - anon_sym_COMMA, - ACTIONS(8621), 1, - anon_sym_LBRACE, - STATE(4528), 1, - aux_sym_implements_clause_repeat1, + [155314] = 4, + ACTIONS(8585), 1, + sym_identifier, + STATE(3870), 1, + sym_decorator_member_expression, + STATE(5795), 1, + sym_decorator_call_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155694] = 2, + [155328] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, + ACTIONS(8569), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155704] = 2, + [155338] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8604), 3, + ACTIONS(8438), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155714] = 2, + [155348] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8451), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155724] = 2, + [155358] = 3, + ACTIONS(8587), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8570), 3, - sym__automatic_semicolon, + ACTIONS(8589), 2, anon_sym_COMMA, - anon_sym_SEMI, - [155734] = 2, + anon_sym_from, + [155370] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8440), 3, - sym__automatic_semicolon, + ACTIONS(8591), 3, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [155744] = 2, + anon_sym_implements, + [155380] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8491), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155754] = 2, + [155390] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8451), 3, + ACTIONS(8121), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155764] = 2, + [155400] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8491), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155774] = 2, + [155410] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8531), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155784] = 2, + [155420] = 3, + ACTIONS(7207), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8593), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [155794] = 2, + [155432] = 3, + ACTIONS(7209), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8440), 3, + ACTIONS(8593), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [155804] = 2, + [155444] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8623), 3, + ACTIONS(8438), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155814] = 2, + [155454] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155824] = 4, - ACTIONS(1038), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1580), 1, - anon_sym_LBRACE, - STATE(4104), 1, - sym_object_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [155838] = 2, + [155464] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8604), 3, + ACTIONS(8491), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155848] = 2, + [155474] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8531), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155858] = 4, - ACTIONS(8625), 1, - anon_sym_COMMA, - ACTIONS(8627), 1, - anon_sym_RBRACE, - STATE(4875), 1, - aux_sym_enum_body_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [155872] = 2, + [155484] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, + ACTIONS(8491), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155882] = 2, + [155494] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155892] = 4, - ACTIONS(1939), 1, - anon_sym_COMMA, - ACTIONS(8629), 1, - anon_sym_RPAREN, - STATE(4546), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [155906] = 2, + [155504] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, + ACTIONS(8595), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155916] = 2, + [155514] = 4, + ACTIONS(2492), 1, + anon_sym_while, + ACTIONS(8597), 1, + anon_sym_else, + STATE(850), 1, + sym_else_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, - sym__automatic_semicolon, + [155528] = 4, + ACTIONS(8599), 1, anon_sym_COMMA, - anon_sym_SEMI, - [155926] = 2, + ACTIONS(8601), 1, + anon_sym_RBRACK, + STATE(4870), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155542] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8456), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155936] = 4, - ACTIONS(6333), 1, + [155552] = 4, + ACTIONS(5964), 1, + anon_sym_LPAREN, + ACTIONS(8603), 1, anon_sym_DOT, - ACTIONS(6644), 1, - anon_sym_COLON, - ACTIONS(8631), 1, - anon_sym_GT, + STATE(2890), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155950] = 4, - ACTIONS(7501), 1, + [155566] = 4, + ACTIONS(4979), 1, + anon_sym_extends, + ACTIONS(8605), 1, anon_sym_AMP, - ACTIONS(7507), 1, + ACTIONS(8607), 1, anon_sym_PIPE, - ACTIONS(7509), 1, - anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155964] = 4, - ACTIONS(3203), 1, - anon_sym_GT, - ACTIONS(8633), 1, - anon_sym_COMMA, - STATE(4528), 1, - aux_sym_implements_clause_repeat1, + [155580] = 4, + ACTIONS(8609), 1, + sym_identifier, + ACTIONS(8611), 1, + anon_sym_LBRACK, + ACTIONS(8613), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155978] = 2, + [155594] = 4, + ACTIONS(8615), 1, + sym_identifier, + ACTIONS(8617), 1, + anon_sym_LBRACK, + ACTIONS(8619), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155988] = 2, + [155608] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8635), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155998] = 2, + [155618] = 4, + ACTIONS(8621), 1, + sym_identifier, + ACTIONS(8623), 1, + anon_sym_LBRACK, + ACTIONS(8625), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156008] = 2, + [155632] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8531), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156018] = 2, + [155642] = 4, + ACTIONS(8627), 1, + sym_identifier, + ACTIONS(8629), 1, + anon_sym_LBRACK, + ACTIONS(8631), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156028] = 2, + [155656] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8635), 3, + ACTIONS(8438), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156038] = 2, + [155666] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8637), 3, + ACTIONS(8458), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156048] = 2, + [155676] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, + ACTIONS(8595), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156058] = 2, + [155686] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8639), 3, + ACTIONS(8452), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156068] = 2, + [155696] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8570), 3, + ACTIONS(8456), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156078] = 2, + [155706] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8421), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156088] = 2, + [155716] = 3, + ACTIONS(8633), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156098] = 4, - ACTIONS(5075), 1, + ACTIONS(8589), 2, anon_sym_COMMA, - ACTIONS(8641), 1, anon_sym_RBRACE, - STATE(5183), 1, - aux_sym_object_pattern_repeat1, + [155728] = 4, + ACTIONS(8635), 1, + anon_sym_COMMA, + ACTIONS(8637), 1, + anon_sym_GT, + STATE(5180), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156112] = 2, + [155742] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8643), 3, + ACTIONS(8639), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156122] = 2, + [155752] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8531), 3, + ACTIONS(8452), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156132] = 2, + [155762] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8456), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156142] = 2, + [155772] = 4, + ACTIONS(8641), 1, + anon_sym_COMMA, + ACTIONS(8643), 1, + anon_sym_RBRACE, + STATE(4726), 1, + aux_sym_named_imports_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156152] = 2, + [155786] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8451), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156162] = 2, + [155796] = 4, + ACTIONS(218), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1495), 1, + anon_sym_LBRACE, + STATE(841), 1, + sym_object_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8531), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156172] = 2, + [155810] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8451), 3, + ACTIONS(8386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156182] = 2, + [155820] = 4, + ACTIONS(2676), 1, + anon_sym_RBRACK, + ACTIONS(8645), 1, + anon_sym_COMMA, + STATE(5104), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156192] = 2, + [155834] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156202] = 2, + [155844] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8570), 3, + ACTIONS(8386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156212] = 3, - ACTIONS(8251), 1, - anon_sym_EQ, + [155854] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8645), 2, + ACTIONS(8438), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [156224] = 2, + anon_sym_SEMI, + [155864] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8491), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156234] = 4, - ACTIONS(5566), 1, - anon_sym_COMMA, - ACTIONS(8647), 1, - anon_sym_RBRACE, - STATE(5190), 1, - aux_sym_object_repeat1, + [155874] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156248] = 4, - ACTIONS(5566), 1, + ACTIONS(8456), 3, + sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_SEMI, + [155884] = 4, ACTIONS(8647), 1, - anon_sym_RBRACE, - STATE(5232), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [156262] = 4, - ACTIONS(5075), 1, anon_sym_COMMA, - ACTIONS(8641), 1, + ACTIONS(8649), 1, anon_sym_RBRACE, - STATE(4942), 1, - aux_sym_object_pattern_repeat1, + STATE(4876), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156276] = 2, + [155898] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8440), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156286] = 2, + [155908] = 4, + ACTIONS(7482), 1, + anon_sym_AMP, + ACTIONS(7484), 1, + anon_sym_PIPE, + ACTIONS(7486), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155922] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8458), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156296] = 4, - ACTIONS(8649), 1, - sym_identifier, - STATE(3831), 1, - sym_decorator_member_expression, - STATE(5803), 1, - sym_decorator_call_expression, + [155932] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(8651), 1, + anon_sym_RPAREN, + STATE(4566), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156310] = 2, + [155946] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156320] = 2, + [155956] = 4, + ACTIONS(1033), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1575), 1, + anon_sym_LBRACE, + STATE(4087), 1, + sym_object_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8531), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156330] = 2, + [155970] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8451), 3, + ACTIONS(8491), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156340] = 2, + [155980] = 4, + ACTIONS(8653), 1, + anon_sym_COMMA, + ACTIONS(8655), 1, + anon_sym_RBRACE, + STATE(4887), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7408), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [156350] = 2, + [155994] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8570), 3, + ACTIONS(8438), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156360] = 2, + [156004] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8453), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156370] = 4, - ACTIONS(6877), 1, - anon_sym_implements, - ACTIONS(8651), 1, - anon_sym_LBRACE, - STATE(5663), 1, - sym_implements_clause, + [156014] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(8657), 1, + anon_sym_RPAREN, + STATE(4566), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156384] = 2, + [156028] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8453), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156394] = 3, - ACTIONS(8653), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7751), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [156406] = 4, - ACTIONS(1644), 1, - anon_sym_RPAREN, - ACTIONS(8655), 1, + [156038] = 4, + ACTIONS(3170), 1, + anon_sym_GT, + ACTIONS(8659), 1, anon_sym_COMMA, - STATE(4983), 1, - aux_sym_formal_parameters_repeat1, + STATE(4559), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156420] = 2, + [156052] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8570), 3, + ACTIONS(8438), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156430] = 2, + [156062] = 4, + ACTIONS(3178), 1, + anon_sym_GT, + ACTIONS(8661), 1, + anon_sym_COMMA, + STATE(4559), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8657), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156440] = 2, + [156076] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8440), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156450] = 2, + [156086] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8491), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156460] = 2, + [156096] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, - sym__automatic_semicolon, + ACTIONS(7279), 3, + anon_sym_LBRACK, + sym_identifier, + sym_private_property_identifier, + [156106] = 4, + ACTIONS(5027), 1, anon_sym_COMMA, - anon_sym_SEMI, - [156470] = 2, + ACTIONS(8663), 1, + anon_sym_RBRACE, + STATE(5197), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8531), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156480] = 2, + [156120] = 3, + ACTIONS(8665), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8570), 3, - sym__automatic_semicolon, + ACTIONS(8589), 2, anon_sym_COMMA, - anon_sym_SEMI, - [156490] = 2, + anon_sym_from, + [156132] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156500] = 2, + [156142] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8667), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156510] = 4, - ACTIONS(2949), 1, - anon_sym_RBRACK, - ACTIONS(8659), 1, - anon_sym_COMMA, - STATE(5216), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [156524] = 2, + [156152] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8456), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156534] = 2, + [156162] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8661), 3, - anon_sym_LBRACE, + ACTIONS(8491), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_implements, - [156544] = 2, + anon_sym_SEMI, + [156172] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156554] = 2, + [156182] = 4, + ACTIONS(5533), 1, + anon_sym_COMMA, + ACTIONS(8669), 1, + anon_sym_RBRACE, + STATE(5207), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8531), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156564] = 2, + [156196] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156574] = 2, + [156206] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8438), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156584] = 2, + [156216] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8465), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156594] = 2, + ACTIONS(7285), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [156226] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8531), 3, + ACTIONS(8386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156604] = 2, + [156236] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156614] = 2, + [156246] = 4, + ACTIONS(8671), 1, + anon_sym_COMMA, + ACTIONS(8674), 1, + anon_sym_RPAREN, + STATE(4847), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, - sym__automatic_semicolon, + [156260] = 4, + ACTIONS(5533), 1, anon_sym_COMMA, - anon_sym_SEMI, - [156624] = 2, + ACTIONS(8669), 1, + anon_sym_RBRACE, + STATE(4612), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, - sym__automatic_semicolon, + [156274] = 4, + ACTIONS(5027), 1, anon_sym_COMMA, - anon_sym_SEMI, - [156634] = 4, - ACTIONS(221), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1500), 1, - anon_sym_LBRACE, - STATE(812), 1, - sym_object_type, + ACTIONS(8663), 1, + anon_sym_RBRACE, + STATE(4615), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156648] = 2, + [156288] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8465), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156658] = 4, - ACTIONS(8663), 1, - sym_identifier, - ACTIONS(8665), 1, - anon_sym_LBRACK, - ACTIONS(8667), 1, - sym_private_property_identifier, + [156298] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156672] = 2, + ACTIONS(8487), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156308] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8570), 3, + ACTIONS(8438), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156682] = 4, - ACTIONS(8669), 1, - anon_sym_COMMA, - ACTIONS(8671), 1, - anon_sym_RBRACE, - STATE(5181), 1, - aux_sym_enum_body_repeat1, + [156318] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156696] = 2, + ACTIONS(8444), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156328] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156706] = 4, - ACTIONS(8673), 1, + [156338] = 4, + ACTIONS(8676), 1, sym_identifier, - ACTIONS(8675), 1, - anon_sym_LBRACK, - ACTIONS(8677), 1, - sym_private_property_identifier, + ACTIONS(8678), 1, + anon_sym_require, + STATE(4738), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156720] = 2, + [156352] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8465), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156730] = 2, + [156362] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156740] = 4, - ACTIONS(8679), 1, - anon_sym_COMMA, - ACTIONS(8681), 1, - anon_sym_RBRACE, - STATE(5181), 1, - aux_sym_enum_body_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [156754] = 4, - ACTIONS(8683), 1, - sym_identifier, - ACTIONS(8685), 1, - anon_sym_LBRACK, - ACTIONS(8687), 1, - sym_private_property_identifier, + [156372] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156768] = 2, + ACTIONS(8428), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156382] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8531), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156778] = 2, + [156392] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8491), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156788] = 4, - ACTIONS(8689), 1, + [156402] = 4, + ACTIONS(8680), 1, anon_sym_COMMA, - ACTIONS(8691), 1, + ACTIONS(8682), 1, anon_sym_RPAREN, - STATE(4621), 1, + STATE(4943), 1, aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156802] = 2, + [156416] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8452), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156812] = 2, + [156426] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, + ACTIONS(8438), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156822] = 2, + [156436] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8531), 3, + ACTIONS(8487), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156832] = 2, + [156446] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, + ACTIONS(8421), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156842] = 2, + [156456] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156852] = 2, + [156466] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, + ACTIONS(8684), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156862] = 2, + [156476] = 4, + ACTIONS(7157), 1, + anon_sym_const, + ACTIONS(8147), 1, + sym_identifier, + STATE(5384), 1, + sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156872] = 2, + [156490] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, + ACTIONS(8686), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_from, anon_sym_SEMI, - [156882] = 2, + [156500] = 4, + ACTIONS(2920), 1, + anon_sym_RBRACK, + ACTIONS(8688), 1, + anon_sym_COMMA, + STATE(5104), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8517), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156892] = 2, + [156514] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156902] = 2, + [156524] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8531), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156912] = 2, + [156534] = 4, + ACTIONS(8690), 1, + anon_sym_COMMA, + ACTIONS(8692), 1, + anon_sym_RBRACE, + STATE(5133), 1, + aux_sym_enum_body_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [156548] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, + ACTIONS(8452), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156922] = 2, + [156558] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8453), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156932] = 2, + [156568] = 4, + ACTIONS(8694), 1, + anon_sym_COMMA, + ACTIONS(8696), 1, + anon_sym_RBRACE, + STATE(5133), 1, + aux_sym_enum_body_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [156582] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, + ACTIONS(8491), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156942] = 2, + [156592] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, + ACTIONS(7870), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156952] = 4, - ACTIONS(1690), 1, - anon_sym_COMMA, - ACTIONS(8253), 1, - anon_sym_RBRACK, - STATE(4625), 1, - aux_sym_array_pattern_repeat1, + [156602] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156966] = 2, + ACTIONS(8452), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156612] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, + ACTIONS(8421), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156976] = 4, - ACTIONS(1939), 1, + [156622] = 4, + ACTIONS(8698), 1, anon_sym_COMMA, - ACTIONS(5264), 1, - anon_sym_RBRACK, - STATE(4624), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [156990] = 4, - ACTIONS(8693), 1, - sym_identifier, - ACTIONS(8695), 1, - anon_sym_LBRACK, - ACTIONS(8697), 1, - sym_private_property_identifier, + ACTIONS(8701), 1, + anon_sym_RBRACE, + STATE(4881), 1, + aux_sym_export_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157004] = 3, - ACTIONS(8699), 1, - anon_sym_as, + [156636] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6530), 2, + ACTIONS(8458), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [157016] = 4, - ACTIONS(6528), 1, - anon_sym_type, - ACTIONS(8701), 1, - sym_identifier, - STATE(5263), 1, - sym__import_identifier, + anon_sym_SEMI, + [156646] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157030] = 2, + ACTIONS(8569), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156656] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8408), 3, + ACTIONS(8667), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157040] = 3, + [156666] = 4, ACTIONS(8703), 1, - anon_sym_EQ, + anon_sym_COMMA, + ACTIONS(8705), 1, + anon_sym_RBRACE, + STATE(5133), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8705), 2, - anon_sym_COMMA, - anon_sym_from, - [157052] = 4, - ACTIONS(7186), 1, - anon_sym_const, - ACTIONS(8132), 1, - sym_identifier, - STATE(4742), 1, - sym_type_parameter, + [156680] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157066] = 4, - ACTIONS(2947), 1, - anon_sym_RBRACK, + ACTIONS(7870), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156690] = 4, ACTIONS(8707), 1, anon_sym_COMMA, - STATE(5216), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [157080] = 4, ACTIONS(8709), 1, - anon_sym_COMMA, - ACTIONS(8711), 1, anon_sym_RBRACE, - STATE(4940), 1, + STATE(5133), 1, aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157094] = 4, - ACTIONS(1939), 1, - anon_sym_COMMA, - ACTIONS(5264), 1, - anon_sym_RBRACK, - STATE(4546), 1, - aux_sym_array_repeat1, + [156704] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157108] = 4, - ACTIONS(1690), 1, + ACTIONS(8452), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8253), 1, - anon_sym_RBRACK, - STATE(5158), 1, - aux_sym_array_pattern_repeat1, + anon_sym_SEMI, + [156714] = 4, + ACTIONS(8711), 1, + anon_sym_COMMA, + ACTIONS(8713), 1, + anon_sym_RPAREN, + STATE(4617), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157122] = 2, + [156728] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8465), 3, + ACTIONS(8715), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157132] = 4, - ACTIONS(6690), 1, - anon_sym_LPAREN, - ACTIONS(8614), 1, - anon_sym_DOT, - STATE(2897), 1, - sym_arguments, + [156738] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157146] = 2, + ACTIONS(8491), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156748] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8713), 3, + ACTIONS(8717), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157156] = 2, + [156758] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8715), 3, + ACTIONS(8719), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157166] = 4, - ACTIONS(1939), 1, - anon_sym_COMMA, - ACTIONS(8717), 1, - anon_sym_RPAREN, - STATE(4546), 1, - aux_sym_array_repeat1, + [156768] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157180] = 2, + ACTIONS(8721), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156778] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8453), 3, + ACTIONS(8458), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157190] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8719), 1, - sym__glimmer_template_content, - ACTIONS(8721), 1, - sym_glimmer_closing_tag, - STATE(5162), 1, - aux_sym_glimmer_template_repeat1, - [157206] = 2, + [156788] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -267322,31 +265203,31 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157216] = 2, + [156798] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8440), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157226] = 2, + [156808] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157236] = 2, + [156818] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157246] = 2, + [156828] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -267354,7 +265235,17 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157256] = 2, + [156838] = 4, + ACTIONS(1779), 1, + anon_sym_COMMA, + ACTIONS(8198), 1, + anon_sym_RBRACK, + STATE(4620), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [156852] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -267362,7 +265253,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157266] = 2, + [156862] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -267370,180 +265261,157 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157276] = 4, - ACTIONS(5075), 1, - anon_sym_COMMA, - ACTIONS(8729), 1, - anon_sym_RBRACE, - STATE(4942), 1, - aux_sym_object_pattern_repeat1, + [156872] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157290] = 2, + ACTIONS(8723), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156882] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8457), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157300] = 2, + [156892] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157310] = 4, - ACTIONS(8214), 1, - anon_sym_from, - ACTIONS(8586), 1, - anon_sym_as, - STATE(5571), 1, - sym__from_clause, + [156902] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157324] = 2, + ACTIONS(8723), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156912] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8731), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157334] = 2, + [156922] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8408), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157344] = 2, + [156932] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, + ACTIONS(8725), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157354] = 4, - ACTIONS(6528), 1, - anon_sym_type, - ACTIONS(8733), 1, - sym_identifier, - STATE(5321), 1, - sym__import_identifier, + [156942] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157368] = 4, - ACTIONS(3187), 1, - anon_sym_GT, - ACTIONS(8735), 1, + ACTIONS(8725), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(4528), 1, - aux_sym_implements_clause_repeat1, + anon_sym_SEMI, + [156952] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(5253), 1, + anon_sym_RBRACK, + STATE(4619), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157382] = 2, + [156966] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8727), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157392] = 3, - ACTIONS(4377), 1, - anon_sym_LBRACE, + [156976] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4379), 2, + ACTIONS(8723), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [157404] = 4, - ACTIONS(7186), 1, - anon_sym_const, - ACTIONS(8132), 1, - sym_identifier, - STATE(5295), 1, - sym_type_parameter, + anon_sym_SEMI, + [156986] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157418] = 4, - ACTIONS(6826), 1, - anon_sym_RBRACE, - ACTIONS(8737), 1, + ACTIONS(8723), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(4692), 1, - aux_sym_named_imports_repeat1, + anon_sym_SEMI, + [156996] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157432] = 4, - ACTIONS(5566), 1, + ACTIONS(8491), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8739), 1, - anon_sym_RBRACE, - STATE(5232), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [157446] = 2, + anon_sym_SEMI, + [157006] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, + ACTIONS(8729), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_from, anon_sym_SEMI, - [157456] = 3, - ACTIONS(7210), 1, - anon_sym_DOT, + [157016] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8741), 2, + ACTIONS(8731), 3, sym__automatic_semicolon, - anon_sym_SEMI, - [157468] = 4, - ACTIONS(8743), 1, anon_sym_COMMA, - ACTIONS(8745), 1, - anon_sym_RBRACE, - STATE(5181), 1, - aux_sym_enum_body_repeat1, + anon_sym_SEMI, + [157026] = 4, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(8733), 1, + anon_sym_EQ, + STATE(5706), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157482] = 3, - ACTIONS(7226), 1, - anon_sym_DOT, + [157040] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8741), 2, + ACTIONS(8491), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [157494] = 4, - ACTIONS(8747), 1, + [157050] = 4, + ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(8749), 1, - anon_sym_RBRACE, - STATE(5181), 1, - aux_sym_enum_body_repeat1, + ACTIONS(5253), 1, + anon_sym_RBRACK, + STATE(4566), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157508] = 2, + [157064] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -267551,17 +265419,36 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157518] = 4, - ACTIONS(8751), 1, + [157074] = 4, + ACTIONS(1779), 1, anon_sym_COMMA, - ACTIONS(8754), 1, - anon_sym_RBRACE, - STATE(4942), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(8198), 1, + anon_sym_RBRACK, + STATE(5177), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157088] = 4, + ACTIONS(6692), 1, + anon_sym_LPAREN, + ACTIONS(8603), 1, + anon_sym_DOT, + STATE(2890), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157102] = 3, + ACTIONS(4090), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157532] = 2, + ACTIONS(4092), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [157114] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -267569,15 +265456,15 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157542] = 2, + [157124] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8727), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157552] = 2, + [157134] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -267585,7 +265472,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157562] = 2, + [157144] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -267593,7 +265480,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157572] = 2, + [157154] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -267601,23 +265488,23 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157582] = 2, + [157164] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157592] = 2, + [157174] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8731), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157602] = 2, + [157184] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -267625,7 +265512,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157612] = 2, + [157194] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -267633,185 +265520,214 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157622] = 2, + [157204] = 3, + ACTIONS(7801), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3635), 2, + anon_sym_in, + anon_sym_of, + [157216] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8756), 3, + ACTIONS(8727), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157632] = 2, + [157226] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8758), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157642] = 2, + [157236] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8760), 3, + ACTIONS(8458), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157652] = 2, + [157246] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8321), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157662] = 2, + [157256] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, + ACTIONS(8421), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157672] = 4, - ACTIONS(8762), 1, - anon_sym_LPAREN, - ACTIONS(8764), 1, - anon_sym_await, - STATE(36), 1, - sym__for_header, + [157266] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157686] = 2, + ACTIONS(8458), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157276] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7372), 3, - anon_sym_LBRACK, - sym_identifier, - sym_private_property_identifier, - [157696] = 2, + ACTIONS(7257), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [157286] = 4, + ACTIONS(1627), 1, + anon_sym_RPAREN, + ACTIONS(8735), 1, + anon_sym_COMMA, + STATE(4847), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157706] = 2, + [157300] = 4, + ACTIONS(1583), 1, + anon_sym_DQUOTE, + ACTIONS(1585), 1, + anon_sym_SQUOTE, + STATE(4510), 1, + sym_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8731), 3, + [157314] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8452), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157716] = 2, + [157324] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157726] = 2, + [157334] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157736] = 2, + [157344] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8408), 3, + ACTIONS(8725), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157746] = 2, + [157354] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8731), 3, + ACTIONS(8491), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157756] = 2, + [157364] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8440), 3, + ACTIONS(8452), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157766] = 2, + [157374] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8727), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157776] = 2, + [157384] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157786] = 2, + [157394] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157796] = 2, + [157404] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157806] = 2, + [157414] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8731), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157816] = 2, + [157424] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157826] = 2, + [157434] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8453), 3, + ACTIONS(8386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157836] = 2, + [157444] = 4, + ACTIONS(8129), 1, + anon_sym_from, + ACTIONS(8565), 1, + anon_sym_as, + STATE(5304), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + [157458] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157846] = 2, + [157468] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -267819,7 +265735,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157856] = 2, + [157478] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -267827,7 +265743,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157866] = 2, + [157488] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -267835,142 +265751,111 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157876] = 4, - ACTIONS(1588), 1, - anon_sym_DQUOTE, - ACTIONS(1590), 1, - anon_sym_SQUOTE, - STATE(4521), 1, - sym_string, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [157890] = 2, + [157498] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157900] = 2, + [157508] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, + ACTIONS(8487), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157910] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7264), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [157920] = 2, + [157518] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6530), 3, + ACTIONS(8723), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_from, - [157930] = 2, + anon_sym_SEMI, + [157528] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8766), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [157940] = 4, - ACTIONS(8768), 1, anon_sym_COMMA, - ACTIONS(8771), 1, - anon_sym_RPAREN, - STATE(4983), 1, - aux_sym_formal_parameters_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [157954] = 3, - ACTIONS(8773), 1, - anon_sym_EQ, + anon_sym_SEMI, + [157538] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8705), 2, + ACTIONS(8723), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_from, - [157966] = 2, + anon_sym_SEMI, + [157548] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, + ACTIONS(8725), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157976] = 4, - ACTIONS(5075), 1, - anon_sym_COMMA, - ACTIONS(8775), 1, - anon_sym_RBRACE, - STATE(4922), 1, - aux_sym_object_pattern_repeat1, + [157558] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157990] = 2, + ACTIONS(8725), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157568] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8465), 3, + ACTIONS(8727), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158000] = 2, + [157578] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8731), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158010] = 2, + [157588] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158020] = 2, + [157598] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8487), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158030] = 2, + [157608] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8731), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158040] = 2, + [157618] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8465), 3, + ACTIONS(8725), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158050] = 2, + [157628] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -267978,251 +265863,241 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158060] = 2, + [157638] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, + ACTIONS(8737), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158070] = 2, + [157648] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8777), 3, + ACTIONS(8739), 3, sym__automatic_semicolon, - anon_sym_from, + anon_sym_COMMA, anon_sym_SEMI, - [158080] = 2, + [157658] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8451), 3, + ACTIONS(8458), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158090] = 2, + [157668] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, + ACTIONS(8727), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158100] = 2, + [157678] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8465), 3, + ACTIONS(8739), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158110] = 2, + [157688] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8465), 3, + ACTIONS(8725), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158120] = 2, + [157698] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8457), 3, + ACTIONS(8741), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158130] = 3, - ACTIONS(8779), 1, - anon_sym_as, + [157708] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8705), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [158142] = 4, - ACTIONS(8781), 1, + ACTIONS(8725), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8783), 1, - anon_sym_RBRACE, - STATE(4934), 1, - aux_sym_named_imports_repeat1, + anon_sym_SEMI, + [157718] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158156] = 2, + ACTIONS(6336), 3, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LT, + [157728] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8453), 3, + ACTIONS(8727), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158166] = 2, + [157738] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8737), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158176] = 4, - ACTIONS(8785), 1, - sym_identifier, - ACTIONS(8787), 1, - anon_sym_require, - STATE(4939), 1, - sym_nested_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [158190] = 4, - ACTIONS(2245), 1, - anon_sym_LBRACE, - ACTIONS(8789), 1, - sym_identifier, - STATE(4509), 1, - sym_export_clause, + [157748] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158204] = 2, + ACTIONS(8723), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157758] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8457), 3, + ACTIONS(8743), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158214] = 2, + [157768] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158224] = 2, + [157778] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7404), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [158234] = 2, + ACTIONS(8745), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157788] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, + ACTIONS(8747), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158244] = 2, + [157798] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8451), 3, + ACTIONS(8739), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158254] = 2, + [157808] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, + ACTIONS(8725), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158264] = 4, - ACTIONS(8791), 1, - anon_sym_COMMA, - ACTIONS(8793), 1, - anon_sym_RBRACE, - STATE(5191), 1, - aux_sym_export_clause_repeat1, + [157818] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158278] = 2, + ACTIONS(8749), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157828] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8440), 3, + ACTIONS(8725), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158288] = 2, + [157838] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, + ACTIONS(8745), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158298] = 2, + [157848] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8731), 3, + ACTIONS(8737), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158308] = 2, + [157858] = 4, + ACTIONS(6316), 1, + anon_sym_DOT, + ACTIONS(6601), 1, + anon_sym_COLON, + ACTIONS(8751), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + [157872] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8727), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158318] = 2, + [157882] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158328] = 4, - ACTIONS(5566), 1, - anon_sym_COMMA, - ACTIONS(8795), 1, - anon_sym_RBRACE, - STATE(4935), 1, - aux_sym_object_repeat1, + [157892] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158342] = 3, - ACTIONS(7970), 1, - anon_sym_EQ, + ACTIONS(8723), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157902] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3640), 2, - anon_sym_in, - anon_sym_of, - [158354] = 2, + ACTIONS(8723), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157912] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8753), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158364] = 2, + [157922] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8440), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158374] = 2, + [157932] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -268230,7 +266105,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158384] = 2, + [157942] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -268238,7 +266113,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158394] = 2, + [157952] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -268246,6996 +266121,7049 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158404] = 2, + [157962] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8797), 3, + ACTIONS(8753), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158414] = 2, + [157972] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8799), 3, + ACTIONS(8421), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158424] = 2, + [157982] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8465), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158434] = 2, + ACTIONS(7251), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [157992] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158444] = 2, + [158002] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8799), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158454] = 4, - ACTIONS(5566), 1, - anon_sym_COMMA, - ACTIONS(8795), 1, - anon_sym_RBRACE, - STATE(5232), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [158468] = 2, + [158012] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8801), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158478] = 2, + [158022] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158488] = 2, + [158032] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, + ACTIONS(8753), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158498] = 2, + [158042] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8731), 3, + ACTIONS(8723), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158508] = 2, + [158052] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8458), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158518] = 4, - ACTIONS(5075), 1, - anon_sym_COMMA, - ACTIONS(8775), 1, - anon_sym_RBRACE, - STATE(4942), 1, - aux_sym_object_pattern_repeat1, + [158062] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158532] = 2, + ACTIONS(8723), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158072] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8797), 3, + ACTIONS(6001), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158542] = 2, + [158082] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8755), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_from, anon_sym_SEMI, - [158552] = 2, + [158092] = 3, + ACTIONS(8757), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, - sym__automatic_semicolon, + ACTIONS(7966), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [158104] = 4, + ACTIONS(8759), 1, anon_sym_COMMA, - anon_sym_SEMI, - [158562] = 4, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(8803), 1, - anon_sym_EQ, - STATE(5645), 1, - sym_type_parameters, + ACTIONS(8761), 1, + anon_sym_RBRACE, + STATE(4657), 1, + aux_sym_export_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158576] = 2, + [158118] = 3, + ACTIONS(4062), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8756), 3, - sym__automatic_semicolon, + ACTIONS(4064), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158586] = 2, + anon_sym_LBRACE_PIPE, + [158130] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8440), 3, + ACTIONS(8753), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158596] = 2, + [158140] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, + ACTIONS(8569), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158606] = 3, - ACTIONS(8805), 1, + [158150] = 3, + ACTIONS(8763), 1, anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8807), 2, + ACTIONS(8765), 2, anon_sym_COMMA, anon_sym_RBRACE, - [158618] = 3, - ACTIONS(4405), 1, - anon_sym_LBRACE, + [158162] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4407), 2, + ACTIONS(8753), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [158630] = 4, - ACTIONS(8809), 1, + anon_sym_SEMI, + [158172] = 4, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(8811), 1, + ACTIONS(8769), 1, anon_sym_GT, - STATE(4647), 1, + STATE(4663), 1, aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158644] = 4, - ACTIONS(6616), 1, - anon_sym_AMP, - ACTIONS(6618), 1, - anon_sym_PIPE, - ACTIONS(6620), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [158658] = 2, + [158186] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8813), 3, + ACTIONS(8771), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158668] = 2, + [158196] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8815), 3, + ACTIONS(8421), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158678] = 2, + [158206] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8799), 3, + ACTIONS(8771), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158688] = 2, + [158216] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, + ACTIONS(8773), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158698] = 2, + [158226] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8451), 3, + ACTIONS(8775), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158708] = 2, + [158236] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8731), 3, + ACTIONS(8421), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158718] = 2, + [158246] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, + ACTIONS(8777), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158728] = 2, + [158256] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8817), 3, + ACTIONS(8779), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158738] = 2, + [158266] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, + ACTIONS(8779), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158748] = 2, + [158276] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8813), 3, + ACTIONS(8779), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158758] = 2, + [158286] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8465), 3, + ACTIONS(8491), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158768] = 2, + [158296] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8797), 3, + ACTIONS(8779), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158778] = 2, + [158306] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8731), 3, + ACTIONS(8781), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158788] = 2, + [158316] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8781), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158798] = 2, + [158326] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8783), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158808] = 2, + [158336] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, + ACTIONS(8785), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158818] = 4, - ACTIONS(8402), 1, - anon_sym_GT, - ACTIONS(8819), 1, - anon_sym_COMMA, - STATE(4765), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [158832] = 2, + [158346] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, + ACTIONS(8753), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158842] = 2, + [158356] = 3, + ACTIONS(8196), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8821), 3, - sym__automatic_semicolon, + ACTIONS(8787), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158852] = 2, + anon_sym_RBRACE, + [158368] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8731), 3, + ACTIONS(8779), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158862] = 2, + [158378] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8779), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158872] = 3, - ACTIONS(7349), 1, - anon_sym_EQ, + [158388] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3640), 2, - anon_sym_in, - anon_sym_of, - [158884] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8725), 3, + ACTIONS(8779), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158894] = 3, - ACTIONS(8823), 1, - anon_sym_LBRACE, + [158398] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8016), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [158906] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8725), 3, + ACTIONS(8753), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158916] = 2, + [158408] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8789), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158926] = 2, + [158418] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, + ACTIONS(8458), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158936] = 3, - ACTIONS(4263), 1, - anon_sym_LBRACE, + [158428] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4265), 2, + ACTIONS(8779), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [158948] = 2, + anon_sym_SEMI, + [158438] = 3, + ACTIONS(8791), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, + ACTIONS(8793), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [158958] = 2, + [158450] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8825), 3, + ACTIONS(8779), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158968] = 2, + [158460] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8453), 3, + ACTIONS(8779), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158978] = 2, + [158470] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8731), 3, + ACTIONS(8779), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158988] = 2, + [158480] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8779), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158998] = 2, + [158490] = 4, + ACTIONS(5027), 1, + anon_sym_COMMA, + ACTIONS(8795), 1, + anon_sym_RBRACE, + STATE(4615), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159008] = 2, + [158504] = 4, + ACTIONS(2478), 1, + anon_sym_LT, + ACTIONS(8797), 1, + anon_sym_EQ, + STATE(5633), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159018] = 2, + [158518] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8779), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159028] = 2, + [158528] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8821), 3, + ACTIONS(8799), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159038] = 2, + [158538] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8779), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159048] = 2, + [158548] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8440), 3, + ACTIONS(8779), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159058] = 4, - ACTIONS(7356), 1, - anon_sym_AMP, - ACTIONS(7358), 1, - anon_sym_PIPE, - ACTIONS(7360), 1, - anon_sym_extends, + [158558] = 4, + ACTIONS(8801), 1, + anon_sym_COMMA, + ACTIONS(8803), 1, + anon_sym_RBRACK, + STATE(4809), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159072] = 2, + [158572] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8779), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159082] = 2, + [158582] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8457), 3, + ACTIONS(8781), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159092] = 4, - ACTIONS(8827), 1, - sym_identifier, - ACTIONS(8829), 1, - anon_sym_LBRACK, - ACTIONS(8831), 1, - sym_private_property_identifier, + [158592] = 3, + ACTIONS(8805), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159106] = 2, + ACTIONS(8079), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [158604] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, + ACTIONS(8781), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159116] = 4, - ACTIONS(8833), 1, - sym_identifier, - ACTIONS(8835), 1, - anon_sym_LBRACK, - ACTIONS(8837), 1, - sym_private_property_identifier, + [158614] = 3, + ACTIONS(4122), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159130] = 2, + ACTIONS(4124), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [158626] = 4, + ACTIONS(8807), 1, + sym_identifier, + ACTIONS(8809), 1, + anon_sym_LBRACK, + ACTIONS(8811), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8839), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159140] = 2, + [158640] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8457), 3, + ACTIONS(8491), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159150] = 2, + [158650] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8406), 3, + ACTIONS(8785), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159160] = 2, + [158660] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8406), 3, + ACTIONS(8779), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159170] = 2, + [158670] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8457), 3, + ACTIONS(8779), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159180] = 2, + [158680] = 4, + ACTIONS(6617), 1, + anon_sym_AMP, + ACTIONS(6619), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8406), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159190] = 2, + [158694] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8821), 3, + ACTIONS(8779), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159200] = 2, + [158704] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8606), 3, + ACTIONS(8386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159210] = 2, + [158714] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8406), 3, + ACTIONS(8779), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159220] = 2, + [158724] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, + ACTIONS(8779), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159230] = 2, + [158734] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8841), 3, + ACTIONS(8779), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159240] = 4, - ACTIONS(5566), 1, - anon_sym_COMMA, - ACTIONS(8843), 1, - anon_sym_RBRACE, - STATE(5160), 1, - aux_sym_object_repeat1, + [158744] = 3, + ACTIONS(7323), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159254] = 2, + ACTIONS(3635), 2, + anon_sym_in, + anon_sym_of, + [158756] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8841), 3, + ACTIONS(8386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159264] = 2, + [158766] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8457), 3, + ACTIONS(8779), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159274] = 2, + [158776] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8845), 3, + ACTIONS(8779), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159284] = 2, + [158786] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8406), 3, + ACTIONS(8569), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159294] = 2, + [158796] = 4, + ACTIONS(7520), 1, + anon_sym_COMMA, + ACTIONS(8813), 1, + anon_sym_LBRACE, + STATE(4559), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8406), 3, + [158810] = 4, + ACTIONS(7271), 1, + anon_sym_AMP, + ACTIONS(7273), 1, + anon_sym_PIPE, + ACTIONS(7275), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [158824] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8783), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159304] = 2, + [158834] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8406), 3, + ACTIONS(8815), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159314] = 2, + [158844] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8821), 3, + ACTIONS(8414), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159324] = 4, - ACTIONS(5566), 1, + [158854] = 4, + ACTIONS(2240), 1, + anon_sym_LBRACE, + ACTIONS(8817), 1, + sym_identifier, + STATE(4575), 1, + sym_export_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [158868] = 4, + ACTIONS(5533), 1, anon_sym_COMMA, - ACTIONS(8843), 1, + ACTIONS(8819), 1, anon_sym_RBRACE, - STATE(5232), 1, + STATE(4612), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159338] = 2, + [158882] = 4, + ACTIONS(6508), 1, + anon_sym_type, + ACTIONS(8821), 1, + sym_identifier, + STATE(5291), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8406), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159348] = 2, + [158896] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8406), 3, + ACTIONS(8815), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159358] = 2, + [158906] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8406), 3, + ACTIONS(8815), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159368] = 2, + [158916] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8453), 3, + ACTIONS(8815), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159378] = 2, + [158926] = 4, + ACTIONS(6508), 1, + anon_sym_type, + ACTIONS(8823), 1, + sym_identifier, + STATE(5293), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8821), 3, - sym__automatic_semicolon, + [158940] = 4, + ACTIONS(5533), 1, anon_sym_COMMA, - anon_sym_SEMI, - [159388] = 4, - ACTIONS(8847), 1, + ACTIONS(8825), 1, + anon_sym_RBRACE, + STATE(5137), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [158954] = 4, + ACTIONS(5533), 1, anon_sym_COMMA, - ACTIONS(8849), 1, - anon_sym_RPAREN, - STATE(5163), 1, - aux_sym_formal_parameters_repeat1, + ACTIONS(8825), 1, + anon_sym_RBRACE, + STATE(4612), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159402] = 2, + [158968] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8851), 3, + ACTIONS(8491), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159412] = 2, + [158978] = 3, + ACTIONS(8827), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8406), 3, + ACTIONS(8829), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [159422] = 2, + [158990] = 4, + ACTIONS(8831), 1, + anon_sym_COMMA, + ACTIONS(8834), 1, + anon_sym_RBRACK, + STATE(5104), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8406), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159432] = 2, + [159004] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8406), 3, + ACTIONS(8836), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159442] = 2, + [159014] = 4, + ACTIONS(8838), 1, + anon_sym_COMMA, + ACTIONS(8841), 1, + anon_sym_RBRACE, + STATE(5106), 1, + aux_sym_named_imports_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159028] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8843), 3, + sym__template_chars, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [159038] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8406), 3, + ACTIONS(8491), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159452] = 2, + [159048] = 4, + ACTIONS(8845), 1, + anon_sym_COMMA, + ACTIONS(8847), 1, + anon_sym_RPAREN, + STATE(5141), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8406), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159462] = 2, + [159062] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8406), 3, + ACTIONS(8386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159472] = 2, + [159072] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + ACTIONS(8849), 1, + anon_sym_LPAREN, + STATE(759), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8841), 3, - sym__automatic_semicolon, + [159086] = 4, + ACTIONS(1779), 1, anon_sym_COMMA, - anon_sym_SEMI, - [159482] = 2, + ACTIONS(8235), 1, + anon_sym_RBRACK, + STATE(5175), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8465), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159492] = 2, + [159100] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8841), 3, + ACTIONS(8491), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159502] = 2, + [159110] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, + ACTIONS(8491), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159512] = 2, + [159120] = 4, + ACTIONS(3443), 1, + anon_sym_LPAREN, + ACTIONS(8603), 1, + anon_sym_DOT, + STATE(2890), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8845), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159522] = 2, + [159134] = 4, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + STATE(5748), 1, + sym_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8851), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159532] = 2, + [159148] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8853), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159542] = 2, + [159158] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8406), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159552] = 2, + [159168] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(5523), 1, + anon_sym_RBRACK, + STATE(5161), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8406), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159562] = 2, + [159182] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8406), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159572] = 2, + [159192] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8406), 3, + ACTIONS(8386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159582] = 2, + [159202] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8406), 3, + ACTIONS(8386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159592] = 2, + [159212] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8406), 3, + ACTIONS(8487), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159602] = 2, + [159222] = 3, + ACTIONS(8061), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8406), 3, - sym__automatic_semicolon, + ACTIONS(8063), 2, anon_sym_COMMA, - anon_sym_SEMI, - [159612] = 2, + anon_sym_LBRACE_PIPE, + [159234] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8440), 3, + ACTIONS(8421), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159622] = 2, + [159244] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, + ACTIONS(8487), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159632] = 2, + [159254] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8855), 3, + ACTIONS(8569), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159642] = 2, + [159264] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8855), 3, + ACTIONS(8421), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159652] = 2, + [159274] = 4, + ACTIONS(5533), 1, + anon_sym_COMMA, + ACTIONS(8851), 1, + anon_sym_RBRACE, + STATE(4612), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8855), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159662] = 2, + [159288] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8855), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159672] = 2, + [159298] = 4, + ACTIONS(5027), 1, + anon_sym_COMMA, + ACTIONS(8853), 1, + anon_sym_RBRACE, + STATE(4615), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8440), 3, - sym__automatic_semicolon, + [159312] = 4, + ACTIONS(1928), 1, anon_sym_COMMA, - anon_sym_SEMI, - [159682] = 2, + ACTIONS(5523), 1, + anon_sym_RBRACK, + STATE(4566), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5319), 3, + [159326] = 4, + ACTIONS(8855), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [159692] = 3, - ACTIONS(8251), 1, - anon_sym_EQ, + ACTIONS(8858), 1, + anon_sym_RBRACE, + STATE(5133), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8857), 2, + [159340] = 4, + ACTIONS(1779), 1, anon_sym_COMMA, + ACTIONS(8235), 1, anon_sym_RBRACK, - [159704] = 4, - ACTIONS(2445), 1, - anon_sym_LBRACE, - ACTIONS(8859), 1, - anon_sym_LPAREN, - STATE(751), 1, - sym_statement_block, + STATE(5177), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159718] = 2, + [159354] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8821), 3, + ACTIONS(8491), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159728] = 2, + [159364] = 4, + ACTIONS(5533), 1, + anon_sym_COMMA, + ACTIONS(8860), 1, + anon_sym_RBRACE, + STATE(4612), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8861), 3, - sym__automatic_semicolon, + [159378] = 4, + ACTIONS(5533), 1, anon_sym_COMMA, - anon_sym_SEMI, - [159738] = 4, - ACTIONS(1939), 1, - anon_sym_COMMA, - ACTIONS(8863), 1, - anon_sym_RBRACK, - STATE(4546), 1, - aux_sym_array_repeat1, + ACTIONS(8862), 1, + anon_sym_RBRACE, + STATE(4612), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159752] = 2, + [159392] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8821), 3, + ACTIONS(8491), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159762] = 4, - ACTIONS(1690), 1, - anon_sym_COMMA, - ACTIONS(8865), 1, - anon_sym_RBRACK, - STATE(5158), 1, - aux_sym_array_pattern_repeat1, + [159402] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159776] = 4, - ACTIONS(2537), 1, - anon_sym_LT, - ACTIONS(8867), 1, + ACTIONS(5567), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [159412] = 3, + ACTIONS(8196), 1, anon_sym_EQ, - STATE(5588), 1, - sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159790] = 4, - ACTIONS(5566), 1, + ACTIONS(8864), 2, anon_sym_COMMA, - ACTIONS(8869), 1, - anon_sym_RBRACE, - STATE(5232), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [159804] = 4, - ACTIONS(8857), 1, anon_sym_RBRACK, - ACTIONS(8871), 1, + [159424] = 4, + ACTIONS(1645), 1, + anon_sym_RPAREN, + ACTIONS(8866), 1, anon_sym_COMMA, - STATE(5158), 1, - aux_sym_array_pattern_repeat1, + STATE(4847), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159818] = 2, + [159438] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8874), 3, + ACTIONS(8491), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159828] = 4, - ACTIONS(5566), 1, - anon_sym_COMMA, - ACTIONS(8876), 1, - anon_sym_RBRACE, - STATE(5232), 1, - aux_sym_object_repeat1, + [159448] = 3, + ACTIONS(4188), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159842] = 2, + ACTIONS(4190), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [159460] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8465), 3, + ACTIONS(8438), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159852] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [159470] = 2, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8878), 1, - sym__glimmer_template_content, - ACTIONS(8881), 1, - sym_glimmer_closing_tag, - STATE(5162), 1, - aux_sym_glimmer_template_repeat1, - [159868] = 4, - ACTIONS(1646), 1, - anon_sym_RPAREN, - ACTIONS(8883), 1, + sym_comment, + ACTIONS(8386), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(4983), 1, - aux_sym_formal_parameters_repeat1, + anon_sym_SEMI, + [159480] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159882] = 3, - ACTIONS(4133), 1, - anon_sym_LBRACE, + ACTIONS(8452), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159490] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4135), 2, + ACTIONS(8444), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [159894] = 2, + anon_sym_SEMI, + [159500] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8457), 3, + ACTIONS(8458), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159904] = 3, - ACTIONS(4171), 1, + [159510] = 3, + ACTIONS(4210), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4173), 2, + ACTIONS(4212), 2, anon_sym_COMMA, anon_sym_LBRACE_PIPE, - [159916] = 2, + [159522] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8885), 3, + ACTIONS(8421), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159926] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8887), 1, - sym__glimmer_template_content, - ACTIONS(8889), 1, - sym_glimmer_closing_tag, - STATE(5201), 1, - aux_sym_glimmer_template_repeat1, - [159942] = 4, - ACTIONS(3500), 1, - anon_sym_LPAREN, - ACTIONS(8891), 1, - anon_sym_DOT, - STATE(3135), 1, - sym_arguments, + [159532] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159956] = 2, + ACTIONS(8452), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159542] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8451), 3, + ACTIONS(8421), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159966] = 4, - ACTIONS(1690), 1, - anon_sym_COMMA, - ACTIONS(8337), 1, - anon_sym_RBRACK, - STATE(5155), 1, - aux_sym_array_pattern_repeat1, + [159552] = 4, + ACTIONS(3467), 1, + anon_sym_LPAREN, + ACTIONS(8868), 1, + anon_sym_DOT, + STATE(3176), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159980] = 2, + [159566] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8893), 3, + ACTIONS(8491), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159990] = 4, - ACTIONS(5566), 1, - anon_sym_COMMA, - ACTIONS(8895), 1, - anon_sym_RBRACE, - STATE(5232), 1, - aux_sym_object_repeat1, + [159576] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160004] = 2, + ACTIONS(8491), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159586] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8893), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160014] = 4, - ACTIONS(5075), 1, - anon_sym_COMMA, - ACTIONS(8897), 1, - anon_sym_RBRACE, - STATE(4942), 1, - aux_sym_object_pattern_repeat1, + [159596] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160028] = 2, + ACTIONS(8491), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159606] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6041), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160038] = 2, + [159616] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8899), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160048] = 2, + [159626] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8874), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160058] = 4, - ACTIONS(1939), 1, + [159636] = 4, + ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(5548), 1, + ACTIONS(8870), 1, anon_sym_RBRACK, - STATE(5153), 1, + STATE(4566), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160072] = 4, - ACTIONS(8901), 1, + [159650] = 4, + ACTIONS(8872), 1, anon_sym_LPAREN, - ACTIONS(8903), 1, + ACTIONS(8874), 1, anon_sym_await, - STATE(74), 1, + STATE(75), 1, sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160086] = 4, - ACTIONS(8905), 1, - anon_sym_COMMA, - ACTIONS(8908), 1, - anon_sym_RBRACE, - STATE(5181), 1, - aux_sym_enum_body_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160100] = 2, + [159664] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8451), 3, + ACTIONS(8386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160110] = 4, - ACTIONS(5075), 1, - anon_sym_COMMA, - ACTIONS(8910), 1, - anon_sym_RBRACE, - STATE(4942), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160124] = 3, - ACTIONS(8912), 1, - anon_sym_as, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8914), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160136] = 2, + [159674] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8916), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160146] = 2, + [159684] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8918), 3, + ACTIONS(8421), 3, sym__automatic_semicolon, - anon_sym_from, + anon_sym_COMMA, anon_sym_SEMI, - [160156] = 4, - ACTIONS(2489), 1, + [159694] = 4, + ACTIONS(2492), 1, anon_sym_while, - ACTIONS(8920), 1, + ACTIONS(8876), 1, anon_sym_else, - STATE(904), 1, + STATE(850), 1, sym_else_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160170] = 4, - ACTIONS(1939), 1, + [159708] = 4, + ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(5329), 1, + ACTIONS(5314), 1, anon_sym_RPAREN, - STATE(5227), 1, + STATE(5209), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160184] = 4, - ACTIONS(1939), 1, + [159722] = 4, + ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(5329), 1, + ACTIONS(5314), 1, anon_sym_RPAREN, - STATE(4546), 1, + STATE(4566), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160198] = 4, - ACTIONS(5566), 1, - anon_sym_COMMA, - ACTIONS(8922), 1, - anon_sym_RBRACE, - STATE(5232), 1, - aux_sym_object_repeat1, + [159736] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160212] = 4, - ACTIONS(6982), 1, - anon_sym_RBRACE, - ACTIONS(8924), 1, + ACTIONS(8491), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(4623), 1, - aux_sym_export_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160226] = 2, + anon_sym_SEMI, + [159746] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8861), 3, + ACTIONS(8438), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160236] = 2, + [159756] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8457), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160246] = 2, + [159766] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8457), 3, + ACTIONS(8444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160256] = 2, + [159776] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8926), 3, + ACTIONS(8491), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160266] = 4, - ACTIONS(1939), 1, + [159786] = 4, + ACTIONS(6904), 1, + anon_sym_implements, + ACTIONS(8878), 1, + anon_sym_LBRACE, + STATE(5783), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159800] = 4, + ACTIONS(1779), 1, anon_sym_COMMA, - ACTIONS(5548), 1, + ACTIONS(8880), 1, anon_sym_RBRACK, - STATE(4546), 1, - aux_sym_array_repeat1, + STATE(5177), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160280] = 2, + [159814] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8451), 3, + ACTIONS(8456), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160290] = 2, + [159824] = 4, + ACTIONS(8864), 1, + anon_sym_RBRACK, + ACTIONS(8882), 1, + anon_sym_COMMA, + STATE(5177), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6367), 3, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LT, - [160300] = 4, - ACTIONS(1690), 1, - anon_sym_COMMA, - ACTIONS(8337), 1, - anon_sym_RBRACK, - STATE(5158), 1, - aux_sym_array_pattern_repeat1, + [159838] = 4, + ACTIONS(7157), 1, + anon_sym_const, + ACTIONS(8147), 1, + sym_identifier, + STATE(4801), 1, + sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160314] = 4, - ACTIONS(6333), 1, + [159852] = 4, + ACTIONS(6316), 1, anon_sym_DOT, - ACTIONS(6644), 1, + ACTIONS(6601), 1, anon_sym_COLON, - ACTIONS(8928), 1, + ACTIONS(8885), 1, anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160328] = 5, - ACTIONS(3), 1, + [159866] = 4, + ACTIONS(8310), 1, + anon_sym_GT, + ACTIONS(8887), 1, + anon_sym_COMMA, + STATE(4655), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [159880] = 2, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8719), 1, - sym__glimmer_template_content, - ACTIONS(8930), 1, - sym_glimmer_closing_tag, - STATE(5162), 1, - aux_sym_glimmer_template_repeat1, - [160344] = 2, + sym_comment, + ACTIONS(8452), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159890] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8932), 3, + ACTIONS(8491), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160354] = 3, - ACTIONS(8934), 1, + [159900] = 3, + ACTIONS(8889), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3549), 2, + ACTIONS(3544), 2, anon_sym_COMMA, anon_sym_RBRACK, - [160366] = 2, + [159912] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8916), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160376] = 4, - ACTIONS(8937), 1, - anon_sym_COMMA, - ACTIONS(8939), 1, - anon_sym_RBRACK, - STATE(4904), 1, - aux_sym_tuple_type_repeat1, + [159922] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160390] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8453), 3, + ACTIONS(8491), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160400] = 2, + [159932] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8941), 3, + ACTIONS(8386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160410] = 2, + [159942] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, + ACTIONS(8487), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160420] = 2, + [159952] = 4, + ACTIONS(8892), 1, + anon_sym_LPAREN, + ACTIONS(8894), 1, + anon_sym_await, + STATE(66), 1, + sym__for_header, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159966] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8457), 3, + ACTIONS(8487), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160430] = 2, + [159976] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, + ACTIONS(8452), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160440] = 4, - ACTIONS(8943), 1, + [159986] = 4, + ACTIONS(5533), 1, anon_sym_COMMA, - ACTIONS(8945), 1, - anon_sym_RBRACK, - STATE(4619), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(8896), 1, + anon_sym_RBRACE, + STATE(4612), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160454] = 4, - ACTIONS(3456), 1, - anon_sym_LPAREN, - ACTIONS(8614), 1, - anon_sym_DOT, - STATE(2897), 1, - sym_arguments, + [160000] = 4, + ACTIONS(5027), 1, + anon_sym_COMMA, + ACTIONS(8898), 1, + anon_sym_RBRACE, + STATE(4615), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160468] = 2, + [160014] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8465), 3, + ACTIONS(8421), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160478] = 2, + [160024] = 4, + ACTIONS(8900), 1, + anon_sym_COMMA, + ACTIONS(8902), 1, + anon_sym_RBRACK, + STATE(4610), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8457), 3, + [160038] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8458), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160488] = 2, + [160048] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7942), 3, + ACTIONS(8904), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160498] = 4, - ACTIONS(8947), 1, + [160058] = 4, + ACTIONS(5027), 1, anon_sym_COMMA, - ACTIONS(8950), 1, - anon_sym_RBRACK, - STATE(5216), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(8906), 1, + anon_sym_RBRACE, + STATE(4615), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160512] = 2, + [160072] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8457), 3, + ACTIONS(8904), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160522] = 2, + [160082] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8952), 3, - sym__template_chars, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [160532] = 2, + ACTIONS(8458), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160092] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8451), 3, + ACTIONS(8908), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160542] = 4, - ACTIONS(6717), 1, + [160102] = 4, + ACTIONS(6704), 1, anon_sym_AMP, - ACTIONS(6721), 1, + ACTIONS(6708), 1, anon_sym_extends, - ACTIONS(7819), 1, + ACTIONS(7784), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160556] = 2, + [160116] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8440), 3, + ACTIONS(8421), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160566] = 2, + [160126] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8453), 3, + ACTIONS(8910), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160576] = 2, + [160136] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, + ACTIONS(8452), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160586] = 2, + [160146] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, + ACTIONS(8912), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160596] = 2, + [160156] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7942), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160606] = 2, + [160166] = 4, + ACTIONS(5533), 1, + anon_sym_COMMA, + ACTIONS(8914), 1, + anon_sym_RBRACE, + STATE(4612), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8453), 3, + [160180] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8438), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160616] = 4, - ACTIONS(1939), 1, + [160190] = 4, + ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(8954), 1, + ACTIONS(8916), 1, anon_sym_RPAREN, - STATE(4546), 1, + STATE(4566), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160630] = 2, + [160204] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8465), 3, + ACTIONS(8428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160640] = 4, - ACTIONS(3193), 1, + [160214] = 4, + ACTIONS(3166), 1, anon_sym_GT, - ACTIONS(8956), 1, + ACTIONS(8918), 1, anon_sym_COMMA, - STATE(4528), 1, + STATE(4559), 1, aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160654] = 2, + [160228] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8455), 3, + ACTIONS(8912), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160664] = 2, + [160238] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8408), 3, + ACTIONS(8569), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160674] = 4, - ACTIONS(8958), 1, - anon_sym_COMMA, - ACTIONS(8961), 1, - anon_sym_RBRACE, - STATE(5232), 1, - aux_sym_object_repeat1, + [160248] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160688] = 3, - ACTIONS(7038), 1, - anon_sym_LBRACE, - STATE(882), 1, - sym_class_body, + ACTIONS(8920), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160258] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160699] = 2, + ACTIONS(8922), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160268] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8963), 2, + ACTIONS(8421), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - [160708] = 3, - ACTIONS(8214), 1, - anon_sym_from, - STATE(5475), 1, - sym__from_clause, + anon_sym_SEMI, + [160278] = 4, + ACTIONS(218), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1495), 1, + anon_sym_LBRACE, + STATE(797), 1, + sym_object_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160719] = 3, - ACTIONS(4129), 1, - anon_sym_LBRACE, - STATE(2131), 1, - sym_statement_block, + [160292] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160730] = 3, - ACTIONS(6804), 1, - anon_sym_LBRACE, - STATE(2537), 1, - sym_class_body, + ACTIONS(8920), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160302] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160741] = 3, - ACTIONS(7445), 1, - anon_sym_LBRACE, - STATE(2625), 1, - sym_statement_block, + ACTIONS(8904), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160312] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160752] = 3, - ACTIONS(7445), 1, + ACTIONS(8725), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160322] = 3, + ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(2626), 1, + STATE(778), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160763] = 3, - ACTIONS(6769), 1, - anon_sym_LBRACE, - STATE(2090), 1, - sym_class_body, + [160333] = 3, + ACTIONS(6651), 1, + anon_sym_DOT, + ACTIONS(8924), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160774] = 3, - ACTIONS(6804), 1, + [160344] = 3, + ACTIONS(4116), 1, anon_sym_LBRACE, - STATE(2553), 1, - sym_class_body, + STATE(2114), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160785] = 3, - ACTIONS(6769), 1, + [160355] = 3, + ACTIONS(6916), 1, anon_sym_LBRACE, - STATE(2172), 1, + STATE(4120), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160796] = 3, - ACTIONS(7445), 1, - anon_sym_LBRACE, - STATE(2660), 1, - sym_statement_block, + [160366] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160807] = 3, - ACTIONS(6804), 1, + ACTIONS(7550), 2, anon_sym_LBRACE, - STATE(1624), 1, - sym_class_body, + anon_sym_EQ_GT, + [160375] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160818] = 3, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(5725), 1, - sym_formal_parameters, + ACTIONS(8926), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [160384] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160829] = 3, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(5770), 1, - sym_formal_parameters, + ACTIONS(8928), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [160393] = 3, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2648), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160404] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160840] = 3, - ACTIONS(4071), 1, + ACTIONS(8930), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [160413] = 3, + ACTIONS(6784), 1, anon_sym_LBRACE, - STATE(1631), 1, - sym_statement_block, + STATE(2535), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160851] = 3, - ACTIONS(6487), 1, + [160424] = 3, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(5808), 1, + STATE(3860), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160862] = 2, + [160435] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5999), 2, + ACTIONS(5988), 2, anon_sym_COMMA, anon_sym_RBRACE, - [160871] = 3, - ACTIONS(4071), 1, + [160444] = 3, + ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(1636), 1, + STATE(5386), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160882] = 3, - ACTIONS(6804), 1, - anon_sym_LBRACE, - STATE(1638), 1, - sym_class_body, + [160455] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160893] = 3, - ACTIONS(7445), 1, + ACTIONS(6005), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [160464] = 3, + ACTIONS(6752), 1, anon_sym_LBRACE, - STATE(2606), 1, - sym_statement_block, + STATE(2120), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160904] = 2, + [160475] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8965), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160913] = 2, + ACTIONS(8932), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [160484] = 3, + ACTIONS(6916), 1, + anon_sym_LBRACE, + STATE(4128), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8967), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160922] = 3, - ACTIONS(7445), 1, + [160495] = 3, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(2610), 1, + STATE(2631), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160933] = 2, + [160506] = 3, + ACTIONS(3938), 1, + anon_sym_LPAREN, + STATE(1644), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4661), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [160942] = 3, - ACTIONS(8969), 1, + [160517] = 3, + ACTIONS(8934), 1, sym_identifier, - ACTIONS(8971), 1, + ACTIONS(8936), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160953] = 3, - ACTIONS(8973), 1, - sym_identifier, - ACTIONS(8975), 1, - sym_private_property_identifier, + [160528] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160964] = 3, - ACTIONS(7445), 1, + ACTIONS(8938), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [160537] = 3, + ACTIONS(6784), 1, anon_sym_LBRACE, - STATE(2612), 1, - sym_statement_block, + STATE(1713), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160975] = 2, + [160548] = 3, + ACTIONS(6916), 1, + anon_sym_LBRACE, + STATE(4130), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8977), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160984] = 3, - ACTIONS(8979), 1, - sym_identifier, - ACTIONS(8981), 1, - sym_private_property_identifier, + [160559] = 3, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2607), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160995] = 3, - ACTIONS(8983), 1, - anon_sym_LPAREN, - STATE(51), 1, - sym__for_header, + [160570] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161006] = 2, + ACTIONS(8940), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [160579] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8985), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161015] = 3, - ACTIONS(8987), 1, + ACTIONS(8942), 2, + anon_sym_in, + anon_sym_of, + [160588] = 3, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(5485), 1, - sym_object, + STATE(2620), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161026] = 2, + [160599] = 3, + ACTIONS(8944), 1, + anon_sym_LBRACE, + STATE(831), 1, + sym_enum_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8989), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [161035] = 3, - ACTIONS(4129), 1, - anon_sym_LBRACE, - STATE(2128), 1, - sym_statement_block, + [160610] = 3, + ACTIONS(8946), 1, + sym_identifier, + ACTIONS(8948), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161046] = 3, - ACTIONS(2445), 1, + [160621] = 3, + ACTIONS(4126), 1, anon_sym_LBRACE, - STATE(5323), 1, + STATE(1681), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161057] = 3, - ACTIONS(4129), 1, + [160632] = 3, + ACTIONS(6784), 1, anon_sym_LBRACE, - STATE(2193), 1, - sym_statement_block, + STATE(1703), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161068] = 2, + [160643] = 3, + ACTIONS(8950), 1, + sym_identifier, + ACTIONS(8952), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8025), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [161077] = 3, - ACTIONS(6804), 1, - anon_sym_LBRACE, - STATE(1711), 1, - sym_class_body, + [160654] = 3, + ACTIONS(6601), 1, + anon_sym_COLON, + ACTIONS(8547), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161088] = 3, - ACTIONS(7944), 1, - anon_sym_in, - ACTIONS(7946), 1, - anon_sym_of, + [160665] = 3, + ACTIONS(6916), 1, + anon_sym_LBRACE, + STATE(770), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161099] = 3, - ACTIONS(8991), 1, + [160676] = 3, + ACTIONS(8954), 1, sym_identifier, - ACTIONS(8993), 1, + ACTIONS(8956), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161110] = 3, - ACTIONS(6804), 1, + [160687] = 3, + ACTIONS(6924), 1, anon_sym_LBRACE, - STATE(2488), 1, + STATE(233), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161121] = 3, - ACTIONS(8995), 1, - sym_identifier, - ACTIONS(8997), 1, - sym_private_property_identifier, + [160698] = 3, + ACTIONS(4126), 1, + anon_sym_LBRACE, + STATE(1717), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160709] = 3, + ACTIONS(6651), 1, + anon_sym_DOT, + ACTIONS(8958), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160720] = 3, + ACTIONS(6900), 1, + anon_sym_LBRACE, + STATE(876), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161132] = 3, - ACTIONS(7445), 1, + [160731] = 3, + ACTIONS(6752), 1, anon_sym_LBRACE, - STATE(2616), 1, - sym_statement_block, + STATE(2083), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161143] = 3, - ACTIONS(8999), 1, - sym_identifier, - ACTIONS(9001), 1, - sym_private_property_identifier, + [160742] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161154] = 3, - ACTIONS(7445), 1, + ACTIONS(8960), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [160751] = 3, + ACTIONS(4126), 1, anon_sym_LBRACE, - STATE(2624), 1, + STATE(1707), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161165] = 3, - ACTIONS(2445), 1, + [160762] = 3, + ACTIONS(7205), 1, anon_sym_LBRACE, - STATE(750), 1, + STATE(776), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161176] = 3, - ACTIONS(7445), 1, - anon_sym_LBRACE, - STATE(2611), 1, - sym_statement_block, + [160773] = 3, + ACTIONS(8962), 1, + sym_identifier, + ACTIONS(8964), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161187] = 3, - ACTIONS(6769), 1, + [160784] = 3, + ACTIONS(4116), 1, anon_sym_LBRACE, - STATE(2186), 1, - sym_class_body, + STATE(2066), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161198] = 3, - ACTIONS(8533), 1, + [160795] = 3, + ACTIONS(8966), 1, sym_identifier, - ACTIONS(8537), 1, + ACTIONS(8968), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161209] = 3, - ACTIONS(9003), 1, + [160806] = 3, + ACTIONS(8970), 1, sym_identifier, - ACTIONS(9005), 1, + ACTIONS(8972), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161220] = 3, - ACTIONS(9007), 1, - sym_identifier, - ACTIONS(9009), 1, - sym_private_property_identifier, + [160817] = 3, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(5944), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161231] = 3, - ACTIONS(4071), 1, + [160828] = 3, + ACTIONS(6916), 1, anon_sym_LBRACE, - STATE(1717), 1, - sym_statement_block, + STATE(777), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161242] = 3, - ACTIONS(7445), 1, + [160839] = 3, + ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(2613), 1, + STATE(727), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161253] = 3, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(5579), 1, - sym_statement_block, + [160850] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161264] = 2, + ACTIONS(8974), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [160859] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8754), 2, + ACTIONS(5962), 2, anon_sym_COMMA, anon_sym_RBRACE, - [161273] = 3, - ACTIONS(9011), 1, - sym_identifier, - ACTIONS(9013), 1, - sym_private_property_identifier, + [160868] = 3, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5497), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161284] = 3, - ACTIONS(9015), 1, - anon_sym_in, - ACTIONS(9017), 1, - anon_sym_COLON, + [160879] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161295] = 2, + ACTIONS(5958), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [160888] = 3, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5499), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9019), 2, - anon_sym_COMMA, - anon_sym_GT, - [161304] = 3, - ACTIONS(9021), 1, + [160899] = 3, + ACTIONS(8976), 1, sym_identifier, - ACTIONS(9023), 1, + ACTIONS(8978), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161315] = 3, - ACTIONS(9025), 1, - sym_identifier, - ACTIONS(9027), 1, - sym_private_property_identifier, + [160910] = 3, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(5742), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161326] = 3, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(5400), 1, - sym_statement_block, + [160921] = 3, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(5747), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161337] = 2, + [160932] = 3, + ACTIONS(6784), 1, + anon_sym_LBRACE, + STATE(2480), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8961), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161346] = 2, + [160943] = 3, + ACTIONS(6752), 1, + anon_sym_LBRACE, + STATE(2068), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8619), 2, - anon_sym_COMMA, - anon_sym_GT, - [161355] = 2, + [160954] = 3, + ACTIONS(8980), 1, + sym_identifier, + ACTIONS(8982), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7609), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [161364] = 3, - ACTIONS(7445), 1, + [160965] = 3, + ACTIONS(4116), 1, anon_sym_LBRACE, - STATE(2650), 1, + STATE(2334), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161375] = 3, - ACTIONS(3249), 1, - anon_sym_LPAREN, - STATE(3726), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [161386] = 3, - ACTIONS(9029), 1, + [160976] = 3, + ACTIONS(8984), 1, sym_identifier, - ACTIONS(9031), 1, + ACTIONS(8986), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161397] = 3, - ACTIONS(3185), 1, - sym_jsx_identifier, - ACTIONS(9033), 1, + [160987] = 3, + ACTIONS(8988), 1, sym_identifier, + ACTIONS(8990), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161408] = 3, - ACTIONS(9035), 1, - anon_sym_COMMA, - ACTIONS(9037), 1, - anon_sym_from, + [160998] = 3, + ACTIONS(6752), 1, + anon_sym_LBRACE, + STATE(2335), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161419] = 3, - ACTIONS(9039), 1, + [161009] = 3, + ACTIONS(8992), 1, sym_identifier, - ACTIONS(9041), 1, + ACTIONS(8994), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161430] = 3, - ACTIONS(6769), 1, - anon_sym_LBRACE, - STATE(2218), 1, - sym_class_body, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [161441] = 3, - ACTIONS(7445), 1, - anon_sym_LBRACE, - STATE(2634), 1, - sym_statement_block, + [161020] = 3, + ACTIONS(6601), 1, + anon_sym_COLON, + ACTIONS(8751), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161452] = 3, - ACTIONS(9043), 1, + [161031] = 3, + ACTIONS(8571), 1, sym_identifier, - ACTIONS(9045), 1, + ACTIONS(8575), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161463] = 3, - ACTIONS(4129), 1, + [161042] = 3, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(2116), 1, + STATE(2649), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161474] = 3, - ACTIONS(6898), 1, + [161053] = 3, + ACTIONS(7205), 1, anon_sym_LBRACE, - STATE(4157), 1, - sym_class_body, + STATE(772), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161485] = 3, - ACTIONS(7445), 1, - anon_sym_LBRACE, - STATE(2668), 1, - sym_statement_block, + [161064] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161496] = 3, - ACTIONS(8663), 1, - sym_identifier, - ACTIONS(8667), 1, - sym_private_property_identifier, + ACTIONS(8996), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [161073] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161507] = 3, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(5389), 1, - sym_statement_block, + ACTIONS(4513), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [161082] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8998), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [161091] = 3, + ACTIONS(9000), 1, + anon_sym_COMMA, + ACTIONS(9002), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161518] = 2, + [161102] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5017), 2, + ACTIONS(4616), 2, sym__automatic_semicolon, anon_sym_SEMI, - [161527] = 3, - ACTIONS(7445), 1, - anon_sym_LBRACE, - STATE(2614), 1, - sym_statement_block, + [161111] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161538] = 3, - ACTIONS(9047), 1, - sym_identifier, - ACTIONS(9049), 1, - anon_sym_STAR, + ACTIONS(9004), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [161120] = 3, + ACTIONS(9006), 1, + anon_sym_SEMI, + ACTIONS(9008), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161549] = 2, + [161131] = 3, + ACTIONS(9010), 1, + anon_sym_LPAREN, + STATE(48), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7595), 2, + [161142] = 3, + ACTIONS(6784), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [161558] = 3, - ACTIONS(7445), 1, - anon_sym_LBRACE, - STATE(2641), 1, - sym_statement_block, + STATE(1647), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161569] = 3, - ACTIONS(4797), 1, - anon_sym_LBRACE, - STATE(2677), 1, - sym_statement_block, + [161153] = 3, + ACTIONS(9010), 1, + anon_sym_LPAREN, + STATE(49), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161580] = 3, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(756), 1, - sym_statement_block, + [161164] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161591] = 3, - ACTIONS(9051), 1, - sym_identifier, - ACTIONS(9053), 1, - sym_private_property_identifier, + ACTIONS(5123), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [161173] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161602] = 2, + ACTIONS(7558), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [161182] = 3, + ACTIONS(9012), 1, + sym_identifier, + STATE(4738), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4720), 2, - sym__automatic_semicolon, + [161193] = 3, + ACTIONS(9014), 1, anon_sym_SEMI, - [161611] = 3, - ACTIONS(9055), 1, - anon_sym_LPAREN, - STATE(34), 1, - sym_parenthesized_expression, + ACTIONS(9016), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161622] = 2, + [161204] = 3, + ACTIONS(6752), 1, + anon_sym_LBRACE, + STATE(2218), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9057), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161631] = 3, - ACTIONS(9059), 1, - sym_identifier, - ACTIONS(9061), 1, - sym_private_property_identifier, + [161215] = 3, + ACTIONS(7872), 1, + anon_sym_in, + ACTIONS(7874), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161642] = 2, + [161226] = 3, + ACTIONS(9010), 1, + anon_sym_LPAREN, + STATE(51), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6024), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161651] = 2, + [161237] = 3, + ACTIONS(6784), 1, + anon_sym_LBRACE, + STATE(2556), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8564), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161660] = 3, - ACTIONS(7445), 1, + [161248] = 3, + ACTIONS(6916), 1, anon_sym_LBRACE, - STATE(2662), 1, + STATE(764), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161259] = 3, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5360), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161671] = 3, - ACTIONS(9063), 1, + [161270] = 3, + ACTIONS(6916), 1, + anon_sym_LBRACE, + STATE(4148), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161281] = 3, + ACTIONS(9018), 1, sym_identifier, - ACTIONS(9065), 1, + ACTIONS(9020), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161682] = 3, - ACTIONS(2445), 1, + [161292] = 3, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(5402), 1, + STATE(2657), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161693] = 3, - ACTIONS(1676), 1, + [161303] = 3, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(241), 1, + STATE(2621), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161704] = 2, + [161314] = 3, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2635), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9067), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [161713] = 3, - ACTIONS(9069), 1, - sym_identifier, - ACTIONS(9071), 1, - sym_private_property_identifier, + [161325] = 3, + ACTIONS(6916), 1, + anon_sym_LBRACE, + STATE(773), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161724] = 3, - ACTIONS(9073), 1, - sym_identifier, - STATE(4939), 1, - sym_nested_identifier, + [161336] = 3, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2638), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161735] = 2, + [161347] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9022), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [161356] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9075), 2, + ACTIONS(9024), 2, sym__automatic_semicolon, anon_sym_SEMI, - [161744] = 3, - ACTIONS(4129), 1, + [161365] = 3, + ACTIONS(6784), 1, anon_sym_LBRACE, - STATE(2105), 1, - sym_statement_block, + STATE(1704), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161755] = 3, - ACTIONS(9077), 1, - sym_identifier, - ACTIONS(9079), 1, - anon_sym_STAR, + [161376] = 3, + ACTIONS(4126), 1, + anon_sym_LBRACE, + STATE(1649), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161766] = 3, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(5911), 1, - sym_formal_parameters, + [161387] = 3, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2656), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161777] = 2, + [161398] = 3, + ACTIONS(4750), 1, + anon_sym_LBRACE, + STATE(2665), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8445), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161786] = 3, - ACTIONS(9081), 1, - sym_identifier, - ACTIONS(9083), 1, - sym_private_property_identifier, + [161409] = 3, + ACTIONS(9026), 1, + anon_sym_SEMI, + ACTIONS(9028), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161797] = 3, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(3776), 1, - sym_formal_parameters, + [161420] = 3, + ACTIONS(8129), 1, + anon_sym_from, + STATE(5517), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161808] = 3, - ACTIONS(9085), 1, - sym_identifier, - ACTIONS(9087), 1, - sym_private_property_identifier, + [161431] = 3, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2645), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161819] = 3, - ACTIONS(9089), 1, - sym_identifier, - ACTIONS(9091), 1, - sym_private_property_identifier, + [161442] = 3, + ACTIONS(9030), 1, + anon_sym_in, + ACTIONS(9032), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161830] = 3, - ACTIONS(6769), 1, - anon_sym_LBRACE, - STATE(2122), 1, - sym_class_body, + [161453] = 3, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(5734), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161841] = 3, - ACTIONS(7445), 1, - anon_sym_LBRACE, - STATE(2620), 1, - sym_statement_block, + [161464] = 3, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(5985), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161852] = 3, - ACTIONS(7445), 1, - anon_sym_LBRACE, - STATE(2640), 1, - sym_statement_block, + [161475] = 3, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(5687), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161863] = 2, + [161486] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1710), 2, + ACTIONS(9034), 2, sym__automatic_semicolon, anon_sym_SEMI, - [161872] = 3, - ACTIONS(6898), 1, + [161495] = 3, + ACTIONS(6916), 1, anon_sym_LBRACE, - STATE(4164), 1, + STATE(4034), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161883] = 3, - ACTIONS(2445), 1, + [161506] = 3, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(5484), 1, + STATE(2643), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161894] = 3, - ACTIONS(9093), 1, - sym_identifier, - ACTIONS(9095), 1, - sym_private_property_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [161905] = 3, - ACTIONS(9097), 1, - sym_identifier, - ACTIONS(9099), 1, - sym_private_property_identifier, + [161517] = 3, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2651), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161916] = 2, + [161528] = 3, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2608), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5991), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161925] = 3, - ACTIONS(9101), 1, - sym_identifier, - ACTIONS(9103), 1, - sym_private_property_identifier, + [161539] = 3, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2611), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161936] = 3, - ACTIONS(6898), 1, - anon_sym_LBRACE, - STATE(758), 1, - sym_class_body, + [161550] = 3, + ACTIONS(9036), 1, + anon_sym_LPAREN, + STATE(52), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161947] = 3, - ACTIONS(2445), 1, + [161561] = 3, + ACTIONS(4116), 1, anon_sym_LBRACE, - STATE(5575), 1, + STATE(2191), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161958] = 3, - ACTIONS(4514), 1, + [161572] = 3, + ACTIONS(6462), 1, anon_sym_LPAREN, - STATE(2179), 1, - sym_arguments, + STATE(3334), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161969] = 3, - ACTIONS(7445), 1, + [161583] = 3, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(2647), 1, + STATE(2616), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161980] = 3, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(5642), 1, - sym_formal_parameters, + [161594] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161991] = 2, + ACTIONS(5125), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [161603] = 3, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5272), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5975), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162000] = 3, - ACTIONS(9105), 1, - sym_identifier, - ACTIONS(9107), 1, - sym_private_property_identifier, + [161614] = 3, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2615), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162011] = 3, - ACTIONS(8214), 1, + [161625] = 3, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2614), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161636] = 3, + ACTIONS(8129), 1, anon_sym_from, - STATE(4361), 1, + STATE(4170), 1, sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162022] = 3, - ACTIONS(7208), 1, + [161647] = 3, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(3959), 1, + STATE(2618), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162033] = 3, - ACTIONS(4071), 1, + [161658] = 3, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(1629), 1, + STATE(2628), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162044] = 3, - ACTIONS(6898), 1, + [161669] = 3, + ACTIONS(6784), 1, anon_sym_LBRACE, - STATE(4167), 1, + STATE(1706), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162055] = 2, + [161680] = 3, + ACTIONS(4126), 1, + anon_sym_LBRACE, + STATE(1615), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5987), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162064] = 3, - ACTIONS(9109), 1, - anon_sym_LBRACE, - STATE(3961), 1, - sym_enum_body, + [161691] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162075] = 2, + ACTIONS(4969), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [161700] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5979), 2, + ACTIONS(5970), 2, anon_sym_COMMA, anon_sym_RBRACE, - [162084] = 3, - ACTIONS(7445), 1, - anon_sym_LBRACE, - STATE(2630), 1, - sym_statement_block, + [161709] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5992), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [161718] = 3, + ACTIONS(9038), 1, + anon_sym_SEMI, + ACTIONS(9040), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162095] = 3, - ACTIONS(7445), 1, + [161729] = 3, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(2631), 1, + STATE(2613), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162106] = 2, + [161740] = 3, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5358), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5991), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162115] = 3, - ACTIONS(6487), 1, + [161751] = 3, + ACTIONS(3244), 1, anon_sym_LPAREN, - STATE(5679), 1, + STATE(3630), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162126] = 3, - ACTIONS(4071), 1, + [161762] = 3, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(1675), 1, + STATE(2619), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162137] = 3, - ACTIONS(6804), 1, - anon_sym_LBRACE, - STATE(1687), 1, - sym_class_body, + [161773] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162148] = 3, - ACTIONS(9111), 1, + ACTIONS(5974), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [161782] = 3, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(844), 1, - sym_switch_body, + STATE(2612), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162159] = 3, - ACTIONS(9113), 1, - sym_identifier, - ACTIONS(9115), 1, - sym_private_property_identifier, + [161793] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162170] = 3, - ACTIONS(6047), 1, + ACTIONS(5984), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [161802] = 3, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(2752), 1, - sym_arguments, + STATE(5702), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162181] = 3, - ACTIONS(3249), 1, + [161813] = 3, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(3283), 1, + STATE(5794), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162192] = 3, - ACTIONS(9117), 1, - sym_identifier, - ACTIONS(9119), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [162203] = 3, - ACTIONS(8827), 1, - sym_identifier, - ACTIONS(8831), 1, - sym_private_property_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [162214] = 3, - ACTIONS(3959), 1, - anon_sym_LPAREN, - STATE(1643), 1, - sym_arguments, + [161824] = 3, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5232), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162225] = 3, - ACTIONS(6487), 1, + [161835] = 3, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(4346), 1, + STATE(5858), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162236] = 2, + [161846] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9121), 2, + ACTIONS(5980), 2, anon_sym_COMMA, - anon_sym_GT, - [162245] = 3, - ACTIONS(3541), 1, - anon_sym_COLON, - STATE(5547), 1, - sym_type_annotation, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [162256] = 3, - ACTIONS(6487), 1, + anon_sym_RBRACE, + [161855] = 3, + ACTIONS(4535), 1, anon_sym_LPAREN, - STATE(5735), 1, - sym_formal_parameters, + STATE(2088), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162267] = 3, - ACTIONS(8214), 1, - anon_sym_from, - STATE(5481), 1, - sym__from_clause, + [161866] = 3, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5234), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162278] = 3, - ACTIONS(9123), 1, - sym_identifier, - ACTIONS(9125), 1, - sym_private_property_identifier, + [161877] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162289] = 2, + ACTIONS(6027), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [161886] = 3, + ACTIONS(6924), 1, + anon_sym_LBRACE, + STATE(250), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9127), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [162298] = 2, + [161897] = 3, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2652), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6045), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162307] = 3, - ACTIONS(9055), 1, - anon_sym_LPAREN, - STATE(33), 1, - sym_parenthesized_expression, + [161908] = 3, + ACTIONS(6752), 1, + anon_sym_LBRACE, + STATE(2115), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162318] = 2, + [161919] = 3, + ACTIONS(6924), 1, + anon_sym_LBRACE, + STATE(240), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9129), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [162327] = 2, + [161930] = 3, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2650), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5983), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162336] = 2, + [161941] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5971), 2, + ACTIONS(6013), 2, anon_sym_COMMA, anon_sym_RBRACE, - [162345] = 3, - ACTIONS(6769), 1, - anon_sym_LBRACE, - STATE(2299), 1, - sym_class_body, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [162356] = 3, - ACTIONS(6910), 1, + [161950] = 3, + ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(237), 1, - sym_class_body, + STATE(5365), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162367] = 3, - ACTIONS(9131), 1, - sym_identifier, - ACTIONS(9133), 1, - sym_private_property_identifier, + [161961] = 3, + ACTIONS(5964), 1, + anon_sym_LPAREN, + STATE(2753), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162378] = 3, - ACTIONS(6487), 1, + [161972] = 3, + ACTIONS(9010), 1, anon_sym_LPAREN, - STATE(4049), 1, - sym_formal_parameters, + STATE(63), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162389] = 2, + [161983] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9135), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [162398] = 3, - ACTIONS(3959), 1, - anon_sym_LPAREN, - STATE(1684), 1, - sym_arguments, + ACTIONS(9042), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [161992] = 3, + ACTIONS(6752), 1, + anon_sym_LBRACE, + STATE(2179), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162409] = 3, - ACTIONS(6487), 1, + [162003] = 3, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(5952), 1, + STATE(5625), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162420] = 3, - ACTIONS(7445), 1, + [162014] = 3, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(2649), 1, + STATE(2647), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162431] = 2, + [162025] = 3, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5274), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5983), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162440] = 3, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(5976), 1, - sym_formal_parameters, + [162036] = 3, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2634), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162451] = 2, + [162047] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6028), 2, + ACTIONS(8479), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [162460] = 3, - ACTIONS(2445), 1, + anon_sym_GT, + [162056] = 3, + ACTIONS(7205), 1, anon_sym_LBRACE, - STATE(5385), 1, + STATE(3943), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162471] = 2, + [162067] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6032), 2, + ACTIONS(6009), 2, anon_sym_COMMA, anon_sym_RBRACE, - [162480] = 3, - ACTIONS(9137), 1, - anon_sym_SEMI, - ACTIONS(9139), 1, - sym__automatic_semicolon, + [162076] = 3, + ACTIONS(9036), 1, + anon_sym_LPAREN, + STATE(33), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162491] = 3, - ACTIONS(4129), 1, - anon_sym_LBRACE, - STATE(2076), 1, - sym_statement_block, + [162087] = 3, + ACTIONS(9044), 1, + sym_identifier, + ACTIONS(9046), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162502] = 3, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(5739), 1, - sym_formal_parameters, + [162098] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162513] = 3, - ACTIONS(9141), 1, + ACTIONS(4664), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [162107] = 3, + ACTIONS(8609), 1, sym_identifier, - ACTIONS(9143), 1, + ACTIONS(8613), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162524] = 3, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(4109), 1, - sym_formal_parameters, + [162118] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4668), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [162127] = 3, + ACTIONS(8944), 1, + anon_sym_LBRACE, + STATE(910), 1, + sym_enum_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162535] = 3, - ACTIONS(9145), 1, + [162138] = 3, + ACTIONS(9048), 1, sym_identifier, - STATE(4751), 1, - sym_nested_identifier, + ACTIONS(9050), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162546] = 3, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(5637), 1, - sym_formal_parameters, + [162149] = 3, + ACTIONS(9052), 1, + anon_sym_LBRACE, + STATE(3945), 1, + sym_enum_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162557] = 2, + [162160] = 3, + ACTIONS(9054), 1, + sym_identifier, + ACTIONS(9056), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9147), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162566] = 3, - ACTIONS(4129), 1, + [162171] = 3, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(2300), 1, + STATE(2663), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162577] = 2, + [162182] = 3, + ACTIONS(9058), 1, + sym_identifier, + ACTIONS(9060), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7691), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [162586] = 2, + [162193] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5995), 2, + ACTIONS(8787), 2, anon_sym_COMMA, anon_sym_RBRACE, - [162595] = 3, - ACTIONS(2445), 1, + [162202] = 3, + ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(5249), 1, + STATE(5411), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162606] = 3, - ACTIONS(4129), 1, - anon_sym_LBRACE, - STATE(2301), 1, - sym_statement_block, + [162213] = 3, + ACTIONS(9062), 1, + sym_identifier, + ACTIONS(9064), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162617] = 3, - ACTIONS(6769), 1, - anon_sym_LBRACE, - STATE(2120), 1, - sym_class_body, + [162224] = 3, + ACTIONS(9066), 1, + sym_identifier, + ACTIONS(9068), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162628] = 3, - ACTIONS(1676), 1, + [162235] = 3, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(254), 1, + STATE(2640), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162639] = 3, - ACTIONS(6644), 1, - anon_sym_COLON, - ACTIONS(8572), 1, - anon_sym_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [162650] = 3, - ACTIONS(6898), 1, - anon_sym_LBRACE, - STATE(4101), 1, - sym_class_body, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [162661] = 3, - ACTIONS(6644), 1, - anon_sym_COLON, - ACTIONS(8631), 1, - anon_sym_GT, + [162246] = 3, + ACTIONS(9070), 1, + sym_identifier, + ACTIONS(9072), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162672] = 3, - ACTIONS(9149), 1, + [162257] = 3, + ACTIONS(8807), 1, sym_identifier, - ACTIONS(9151), 1, + ACTIONS(8811), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162683] = 3, - ACTIONS(6670), 1, - anon_sym_DOT, - ACTIONS(9153), 1, - anon_sym_GT, + [162268] = 3, + ACTIONS(3938), 1, + anon_sym_LPAREN, + STATE(1660), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162694] = 2, + [162279] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9155), 2, + ACTIONS(5958), 2, anon_sym_COMMA, anon_sym_RBRACE, - [162703] = 3, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(711), 1, - sym_statement_block, + [162288] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162714] = 3, - ACTIONS(7445), 1, - anon_sym_LBRACE, - STATE(2623), 1, - sym_statement_block, + ACTIONS(5962), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162297] = 3, + ACTIONS(9074), 1, + sym_identifier, + ACTIONS(9076), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162725] = 2, + [162308] = 3, + ACTIONS(9078), 1, + sym_identifier, + ACTIONS(9080), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7719), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [162734] = 3, - ACTIONS(8410), 1, - sym_identifier, - ACTIONS(8414), 1, - sym_private_property_identifier, + [162319] = 3, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(4041), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162745] = 3, - ACTIONS(9109), 1, - anon_sym_LBRACE, - STATE(3998), 1, - sym_enum_body, + [162330] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162756] = 3, - ACTIONS(6769), 1, - anon_sym_LBRACE, - STATE(2191), 1, - sym_class_body, + ACTIONS(6023), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162339] = 3, + ACTIONS(3530), 1, + anon_sym_COLON, + STATE(5459), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162767] = 3, - ACTIONS(9157), 1, - anon_sym_SEMI, - ACTIONS(9159), 1, - sym__automatic_semicolon, + [162350] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162778] = 3, - ACTIONS(6769), 1, - anon_sym_LBRACE, - STATE(2302), 1, - sym_class_body, + ACTIONS(6019), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162359] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162789] = 3, - ACTIONS(6898), 1, - anon_sym_LBRACE, - STATE(4187), 1, - sym_class_body, + ACTIONS(9082), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [162368] = 3, + ACTIONS(3530), 1, + anon_sym_COLON, + STATE(5414), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162800] = 3, - ACTIONS(6804), 1, - anon_sym_LBRACE, - STATE(1654), 1, - sym_class_body, + [162379] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162811] = 3, - ACTIONS(7445), 1, - anon_sym_LBRACE, - STATE(2642), 1, - sym_statement_block, + ACTIONS(9084), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [162388] = 3, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(5696), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162822] = 3, - ACTIONS(7445), 1, + [162399] = 3, + ACTIONS(6752), 1, anon_sym_LBRACE, - STATE(2644), 1, - sym_statement_block, + STATE(2273), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162833] = 3, - ACTIONS(9161), 1, + [162410] = 3, + ACTIONS(6752), 1, anon_sym_LBRACE, - STATE(900), 1, - sym_enum_body, + STATE(2271), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162844] = 3, - ACTIONS(6898), 1, - anon_sym_LBRACE, - STATE(768), 1, - sym_class_body, + [162421] = 3, + ACTIONS(9010), 1, + anon_sym_LPAREN, + STATE(34), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162855] = 2, + [162432] = 3, + ACTIONS(9086), 1, + sym_identifier, + STATE(4775), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5000), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [162864] = 3, - ACTIONS(6487), 1, + [162443] = 3, + ACTIONS(3244), 1, anon_sym_LPAREN, - STATE(5997), 1, + STATE(3564), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162875] = 3, - ACTIONS(9163), 1, - anon_sym_SEMI, - ACTIONS(9165), 1, - sym__automatic_semicolon, + [162454] = 3, + ACTIONS(6651), 1, + anon_sym_DOT, + ACTIONS(9088), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162886] = 3, - ACTIONS(4071), 1, + [162465] = 3, + ACTIONS(9090), 1, + sym_identifier, + ACTIONS(9092), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162476] = 3, + ACTIONS(6900), 1, anon_sym_LBRACE, - STATE(1688), 1, - sym_statement_block, + STATE(839), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162897] = 3, - ACTIONS(4071), 1, + [162487] = 3, + ACTIONS(4126), 1, anon_sym_LBRACE, - STATE(1623), 1, + STATE(1686), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162908] = 3, - ACTIONS(7445), 1, + [162498] = 3, + ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(2607), 1, + STATE(908), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162919] = 2, + [162509] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9167), 2, + ACTIONS(9094), 2, anon_sym_COMMA, - anon_sym_GT, - [162928] = 3, - ACTIONS(7038), 1, - anon_sym_LBRACE, - STATE(859), 1, - sym_class_body, + anon_sym_RBRACE, + [162518] = 3, + ACTIONS(9096), 1, + sym_identifier, + ACTIONS(9098), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162939] = 3, - ACTIONS(8983), 1, - anon_sym_LPAREN, - STATE(61), 1, - sym__for_header, + [162529] = 3, + ACTIONS(4116), 1, + anon_sym_LBRACE, + STATE(2303), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162950] = 3, - ACTIONS(6804), 1, - anon_sym_LBRACE, - STATE(1698), 1, - sym_class_body, + [162540] = 3, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(3997), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162961] = 3, - ACTIONS(9055), 1, + [162551] = 3, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(44), 1, - sym_parenthesized_expression, + STATE(4280), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162972] = 2, + [162562] = 3, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(5700), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9169), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [162981] = 2, + [162573] = 3, + ACTIONS(9100), 1, + sym_identifier, + ACTIONS(9102), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8857), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [162990] = 3, - ACTIONS(9171), 1, + [162584] = 3, + ACTIONS(3244), 1, anon_sym_LPAREN, - STATE(748), 1, - sym_parenthesized_expression, + STATE(3266), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163001] = 3, - ACTIONS(7445), 1, + [162595] = 3, + ACTIONS(4116), 1, anon_sym_LBRACE, - STATE(2617), 1, + STATE(2274), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163012] = 3, - ACTIONS(9173), 1, + [162606] = 3, + ACTIONS(9104), 1, sym_identifier, - ACTIONS(9175), 1, + ACTIONS(9106), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163023] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5028), 2, - sym__automatic_semicolon, + [162617] = 3, + ACTIONS(9108), 1, anon_sym_SEMI, - [163032] = 3, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(5537), 1, - sym_statement_block, + ACTIONS(9110), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163043] = 3, - ACTIONS(2445), 1, + [162628] = 3, + ACTIONS(4116), 1, anon_sym_LBRACE, - STATE(818), 1, + STATE(2275), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163054] = 3, - ACTIONS(7445), 1, - anon_sym_LBRACE, - STATE(2664), 1, - sym_statement_block, + [162639] = 3, + ACTIONS(9112), 1, + anon_sym_SEMI, + ACTIONS(9114), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163065] = 2, + [162650] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9177), 2, + ACTIONS(9116), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [163074] = 3, - ACTIONS(6769), 1, - anon_sym_LBRACE, - STATE(2324), 1, - sym_class_body, + anon_sym_RPAREN, + [162659] = 3, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(5762), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163085] = 2, + [162670] = 3, + ACTIONS(6752), 1, + anon_sym_LBRACE, + STATE(2276), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9179), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [163094] = 3, - ACTIONS(6670), 1, - anon_sym_DOT, - ACTIONS(9181), 1, - anon_sym_GT, + [162681] = 3, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(5940), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163105] = 2, + [162692] = 3, + ACTIONS(9118), 1, + sym_identifier, + ACTIONS(9120), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9183), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [163114] = 3, - ACTIONS(7445), 1, + [162703] = 3, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(2604), 1, + STATE(2605), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163125] = 3, - ACTIONS(6804), 1, - anon_sym_LBRACE, - STATE(1709), 1, - sym_class_body, + [162714] = 3, + ACTIONS(9122), 1, + sym_identifier, + ACTIONS(9124), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163136] = 2, + [162725] = 3, + ACTIONS(9126), 1, + sym_identifier, + ACTIONS(9128), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4614), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [163145] = 3, - ACTIONS(6769), 1, - anon_sym_LBRACE, - STATE(2325), 1, - sym_class_body, + [162736] = 3, + ACTIONS(9130), 1, + sym_identifier, + ACTIONS(9132), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163156] = 2, + [162747] = 3, + ACTIONS(9134), 1, + anon_sym_SEMI, + ACTIONS(9136), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4649), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [163165] = 2, + [162758] = 3, + ACTIONS(4116), 1, + anon_sym_LBRACE, + STATE(2237), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9185), 2, - anon_sym_in, - anon_sym_of, - [163174] = 3, - ACTIONS(6465), 1, + [162769] = 3, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(3371), 1, + STATE(5830), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163185] = 3, - ACTIONS(9187), 1, - anon_sym_SEMI, - ACTIONS(9189), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [163196] = 3, - ACTIONS(6467), 1, - anon_sym_COLON, - STATE(4953), 1, - sym_type_annotation, + [162780] = 3, + ACTIONS(6752), 1, + anon_sym_LBRACE, + STATE(2189), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163207] = 3, - ACTIONS(6644), 1, - anon_sym_COLON, - ACTIONS(8467), 1, - anon_sym_GT, + [162791] = 3, + ACTIONS(6916), 1, + anon_sym_LBRACE, + STATE(4085), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163218] = 3, - ACTIONS(9191), 1, - anon_sym_SEMI, - ACTIONS(9193), 1, - sym__automatic_semicolon, + [162802] = 3, + ACTIONS(9138), 1, + sym_identifier, + ACTIONS(9140), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163229] = 3, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(4067), 1, - sym_formal_parameters, + [162813] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163240] = 3, - ACTIONS(9195), 1, - anon_sym_SEMI, - ACTIONS(9197), 1, - sym__automatic_semicolon, + ACTIONS(9142), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162822] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163251] = 3, - ACTIONS(6769), 1, - anon_sym_LBRACE, - STATE(2275), 1, - sym_class_body, + ACTIONS(9144), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162831] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163262] = 3, - ACTIONS(9199), 1, - anon_sym_SEMI, - ACTIONS(9201), 1, - sym__automatic_semicolon, + ACTIONS(8841), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162840] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163273] = 2, + ACTIONS(9146), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [162849] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5995), 2, + ACTIONS(8834), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [163282] = 3, - ACTIONS(6910), 1, - anon_sym_LBRACE, - STATE(245), 1, - sym_class_body, + anon_sym_RBRACK, + [162858] = 3, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(5724), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163293] = 3, - ACTIONS(9203), 1, + [162869] = 3, + ACTIONS(9148), 1, sym_identifier, - ACTIONS(9205), 1, + ACTIONS(9150), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163304] = 3, - ACTIONS(9207), 1, - anon_sym_SEMI, - ACTIONS(9209), 1, - sym__automatic_semicolon, + [162880] = 3, + ACTIONS(9152), 1, + anon_sym_LPAREN, + STATE(758), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163315] = 3, - ACTIONS(7208), 1, + [162891] = 3, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(4071), 1, + STATE(2646), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163326] = 3, - ACTIONS(9211), 1, - anon_sym_SEMI, - ACTIONS(9213), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [163337] = 2, + [162902] = 3, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(4056), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6003), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [163346] = 2, + [162913] = 3, + ACTIONS(9052), 1, + anon_sym_LBRACE, + STATE(3982), 1, + sym_enum_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9215), 2, - sym__automatic_semicolon, + [162924] = 3, + ACTIONS(9154), 1, anon_sym_SEMI, - [163355] = 3, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(809), 1, - sym_statement_block, + ACTIONS(9156), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163366] = 3, - ACTIONS(7445), 1, + [162935] = 3, + ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(2632), 1, + STATE(902), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163377] = 2, + [162946] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6003), 2, + ACTIONS(5992), 2, anon_sym_COMMA, anon_sym_RBRACE, - [163386] = 3, - ACTIONS(7208), 1, + [162955] = 3, + ACTIONS(1657), 1, anon_sym_LBRACE, - STATE(776), 1, + STATE(244), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163397] = 3, - ACTIONS(7038), 1, + [162966] = 3, + ACTIONS(7205), 1, anon_sym_LBRACE, - STATE(901), 1, - sym_class_body, + STATE(4060), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163408] = 3, - ACTIONS(9055), 1, - anon_sym_LPAREN, - STATE(5371), 1, - sym_parenthesized_expression, + [162977] = 3, + ACTIONS(9158), 1, + anon_sym_LBRACE, + STATE(833), 1, + sym_switch_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163419] = 3, - ACTIONS(7445), 1, - anon_sym_LBRACE, - STATE(2618), 1, - sym_statement_block, + [162988] = 3, + ACTIONS(8507), 1, + sym_identifier, + ACTIONS(8511), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163430] = 3, - ACTIONS(7445), 1, - anon_sym_LBRACE, - STATE(2651), 1, - sym_statement_block, + [162999] = 3, + ACTIONS(9160), 1, + sym_identifier, + ACTIONS(9162), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163441] = 3, - ACTIONS(9161), 1, - anon_sym_LBRACE, - STATE(814), 1, - sym_enum_body, + [163010] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163452] = 3, - ACTIONS(9055), 1, - anon_sym_LPAREN, - STATE(47), 1, - sym_parenthesized_expression, + ACTIONS(7526), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [163019] = 3, + ACTIONS(9164), 1, + sym_identifier, + ACTIONS(9166), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163463] = 2, + [163030] = 3, + ACTIONS(9168), 1, + sym_identifier, + ACTIONS(9170), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9217), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [163472] = 3, - ACTIONS(9055), 1, - anon_sym_LPAREN, - STATE(73), 1, - sym_parenthesized_expression, + [163041] = 3, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2653), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163483] = 3, - ACTIONS(9219), 1, + [163052] = 3, + ACTIONS(9172), 1, sym_identifier, - ACTIONS(9221), 1, + ACTIONS(9174), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163494] = 3, - ACTIONS(6670), 1, - anon_sym_DOT, - ACTIONS(9223), 1, - anon_sym_GT, + [163063] = 3, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2644), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163505] = 3, - ACTIONS(9055), 1, + [163074] = 3, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(75), 1, - sym_parenthesized_expression, + STATE(5784), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163516] = 3, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(5647), 1, - sym_formal_parameters, + [163085] = 3, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5413), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163527] = 2, + [163096] = 3, + ACTIONS(8129), 1, + anon_sym_from, + STATE(4249), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9225), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [163536] = 2, + [163107] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8645), 2, + ACTIONS(9176), 2, anon_sym_COMMA, anon_sym_RBRACE, - [163545] = 3, - ACTIONS(6910), 1, - anon_sym_LBRACE, - STATE(238), 1, - sym_class_body, + [163116] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163556] = 3, - ACTIONS(7445), 1, - anon_sym_LBRACE, - STATE(2653), 1, - sym_statement_block, + ACTIONS(9178), 2, + anon_sym_COMMA, + anon_sym_GT, + [163125] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163567] = 3, - ACTIONS(3249), 1, + ACTIONS(9180), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [163134] = 3, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(3593), 1, + STATE(5675), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163578] = 3, - ACTIONS(9055), 1, - anon_sym_LPAREN, - STATE(48), 1, - sym_parenthesized_expression, + [163145] = 3, + ACTIONS(6752), 1, + anon_sym_LBRACE, + STATE(2097), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163589] = 3, - ACTIONS(8983), 1, - anon_sym_LPAREN, - STATE(76), 1, - sym__for_header, + [163156] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163600] = 3, - ACTIONS(7445), 1, + ACTIONS(7534), 2, anon_sym_LBRACE, - STATE(2654), 1, + anon_sym_EQ_GT, + [163165] = 3, + ACTIONS(7205), 1, + anon_sym_LBRACE, + STATE(4069), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163611] = 3, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(5689), 1, - sym_formal_parameters, + [163176] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163622] = 3, - ACTIONS(7445), 1, - anon_sym_LBRACE, - STATE(2615), 1, - sym_statement_block, + ACTIONS(5984), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [163185] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163633] = 3, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(5759), 1, - sym_formal_parameters, + ACTIONS(8864), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [163194] = 3, + ACTIONS(6900), 1, + anon_sym_LBRACE, + STATE(892), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163644] = 3, - ACTIONS(4071), 1, + [163205] = 3, + ACTIONS(4116), 1, anon_sym_LBRACE, - STATE(1647), 1, + STATE(2099), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163655] = 3, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(5916), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [163666] = 3, - ACTIONS(7445), 1, + [163216] = 3, + ACTIONS(4116), 1, anon_sym_LBRACE, - STATE(2645), 1, + STATE(2086), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163677] = 2, + [163227] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9227), 2, + ACTIONS(1667), 2, sym__automatic_semicolon, anon_sym_SEMI, - [163686] = 3, - ACTIONS(6769), 1, + [163236] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5970), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [163245] = 3, + ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(2298), 1, - sym_class_body, + STATE(5352), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163697] = 3, - ACTIONS(9055), 1, - anon_sym_LPAREN, - STATE(50), 1, - sym_parenthesized_expression, + [163256] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163708] = 3, - ACTIONS(6898), 1, + ACTIONS(6013), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [163265] = 3, + ACTIONS(6752), 1, anon_sym_LBRACE, - STATE(4065), 1, + STATE(2319), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163719] = 3, - ACTIONS(7208), 1, + [163276] = 3, + ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(4077), 1, + STATE(5368), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163730] = 3, - ACTIONS(6898), 1, + [163287] = 3, + ACTIONS(4116), 1, + anon_sym_LBRACE, + STATE(2105), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163298] = 3, + ACTIONS(6752), 1, anon_sym_LBRACE, - STATE(757), 1, + STATE(2312), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163741] = 3, - ACTIONS(7445), 1, + [163309] = 3, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(2655), 1, + STATE(2602), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163752] = 3, - ACTIONS(4129), 1, + [163320] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6027), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [163329] = 3, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(2327), 1, + STATE(2654), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163763] = 3, - ACTIONS(6644), 1, - anon_sym_COLON, - ACTIONS(8928), 1, - anon_sym_GT, + [163340] = 3, + ACTIONS(6784), 1, + anon_sym_LBRACE, + STATE(1718), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163774] = 3, - ACTIONS(8833), 1, - sym_identifier, - ACTIONS(8837), 1, - sym_private_property_identifier, + [163351] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163785] = 3, - ACTIONS(7445), 1, - anon_sym_LBRACE, - STATE(2656), 1, - sym_statement_block, + ACTIONS(8674), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [163360] = 3, + ACTIONS(9010), 1, + anon_sym_LPAREN, + STATE(65), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163796] = 3, - ACTIONS(6670), 1, - anon_sym_DOT, - ACTIONS(9229), 1, - anon_sym_GT, + [163371] = 3, + ACTIONS(3194), 1, + sym_jsx_identifier, + ACTIONS(9182), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163807] = 3, - ACTIONS(6769), 1, + [163382] = 3, + ACTIONS(6916), 1, anon_sym_LBRACE, - STATE(2328), 1, + STATE(4097), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163818] = 3, - ACTIONS(3541), 1, - anon_sym_COLON, - STATE(5384), 1, - sym_type_annotation, + [163393] = 3, + ACTIONS(9010), 1, + anon_sym_LPAREN, + STATE(5472), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163829] = 2, + [163404] = 3, + ACTIONS(6916), 1, + anon_sym_LBRACE, + STATE(4098), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5999), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [163838] = 2, + [163415] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9231), 2, + ACTIONS(9184), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [163847] = 3, - ACTIONS(4514), 1, + anon_sym_GT, + [163424] = 3, + ACTIONS(9010), 1, anon_sym_LPAREN, - STATE(2293), 1, - sym_arguments, + STATE(74), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163858] = 3, - ACTIONS(6769), 1, - anon_sym_LBRACE, - STATE(2067), 1, - sym_class_body, + [163435] = 3, + ACTIONS(9010), 1, + anon_sym_LPAREN, + STATE(76), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163869] = 3, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(5593), 1, - sym_formal_parameters, + [163446] = 3, + ACTIONS(9186), 1, + anon_sym_SEMI, + ACTIONS(9188), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163880] = 3, - ACTIONS(6804), 1, + [163457] = 3, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(2552), 1, - sym_class_body, + STATE(2662), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163891] = 3, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(5362), 1, - sym_statement_block, + [163468] = 3, + ACTIONS(9036), 1, + anon_sym_LPAREN, + STATE(77), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163902] = 2, + [163479] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6018), 2, + ACTIONS(8426), 2, anon_sym_COMMA, anon_sym_RBRACE, - [163911] = 3, - ACTIONS(4129), 1, + [163488] = 3, + ACTIONS(9190), 1, + anon_sym_SEMI, + ACTIONS(9192), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163499] = 3, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2639), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163510] = 3, + ACTIONS(1657), 1, anon_sym_LBRACE, - STATE(2123), 1, + STATE(231), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163922] = 3, - ACTIONS(7445), 1, + [163521] = 3, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(2652), 1, + STATE(2641), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163933] = 3, - ACTIONS(6769), 1, + [163532] = 3, + ACTIONS(6784), 1, anon_sym_LBRACE, - STATE(2320), 1, + STATE(1724), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163944] = 2, + [163543] = 3, + ACTIONS(6924), 1, + anon_sym_LBRACE, + STATE(230), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5971), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [163953] = 3, - ACTIONS(7445), 1, + [163554] = 3, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(2621), 1, + STATE(2630), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163964] = 3, - ACTIONS(6804), 1, + [163565] = 3, + ACTIONS(4126), 1, anon_sym_LBRACE, - STATE(1622), 1, - sym_class_body, + STATE(1627), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163975] = 3, - ACTIONS(7445), 1, + [163576] = 3, + ACTIONS(9194), 1, anon_sym_LBRACE, - STATE(2629), 1, - sym_statement_block, + STATE(5319), 1, + sym_object, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163986] = 3, - ACTIONS(4129), 1, + [163587] = 3, + ACTIONS(4126), 1, anon_sym_LBRACE, - STATE(2277), 1, + STATE(1643), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163997] = 3, - ACTIONS(6898), 1, + [163598] = 3, + ACTIONS(6601), 1, + anon_sym_COLON, + ACTIONS(8885), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163609] = 3, + ACTIONS(6784), 1, anon_sym_LBRACE, - STATE(4123), 1, + STATE(1645), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164008] = 2, + [163620] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9233), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [164017] = 3, - ACTIONS(6910), 1, - anon_sym_LBRACE, - STATE(255), 1, - sym_class_body, + ACTIONS(9196), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [163629] = 3, + ACTIONS(6651), 1, + anon_sym_DOT, + ACTIONS(9198), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164028] = 3, - ACTIONS(3456), 1, - anon_sym_LPAREN, - STATE(1232), 1, - sym_arguments, + [163640] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164039] = 2, + ACTIONS(9200), 2, + anon_sym_COMMA, + anon_sym_GT, + [163649] = 3, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(779), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8771), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [164048] = 2, + [163660] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8950), 2, + ACTIONS(9202), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [164057] = 3, - ACTIONS(7038), 1, + anon_sym_GT, + [163669] = 3, + ACTIONS(6752), 1, anon_sym_LBRACE, - STATE(876), 1, + STATE(2351), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164068] = 3, - ACTIONS(9235), 1, - sym_identifier, - ACTIONS(9237), 1, - anon_sym_STAR, + [163680] = 3, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2637), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164079] = 2, + [163691] = 3, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2604), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9239), 2, + [163702] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8419), 2, anon_sym_COMMA, anon_sym_RBRACE, - [164088] = 3, - ACTIONS(9241), 1, + [163711] = 3, + ACTIONS(9204), 1, sym_identifier, - ACTIONS(9243), 1, + ACTIONS(9206), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164099] = 3, - ACTIONS(6898), 1, - anon_sym_LBRACE, - STATE(4124), 1, - sym_class_body, + [163722] = 3, + ACTIONS(9208), 1, + sym_identifier, + ACTIONS(9210), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164110] = 3, - ACTIONS(9245), 1, + [163733] = 3, + ACTIONS(9212), 1, sym_identifier, - ACTIONS(9247), 1, + ACTIONS(9214), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164121] = 3, - ACTIONS(9249), 1, - sym_identifier, - ACTIONS(9251), 1, - sym_private_property_identifier, + [163744] = 3, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2660), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164132] = 3, - ACTIONS(7445), 1, + [163755] = 3, + ACTIONS(7414), 1, anon_sym_LBRACE, - STATE(2622), 1, + STATE(2610), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164143] = 3, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(5692), 1, - sym_formal_parameters, + [163766] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164154] = 3, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(4396), 1, - sym_formal_parameters, + ACTIONS(7918), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [163775] = 3, + ACTIONS(8129), 1, + anon_sym_from, + STATE(5438), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164165] = 3, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(5703), 1, - sym_formal_parameters, + [163786] = 3, + ACTIONS(6900), 1, + anon_sym_LBRACE, + STATE(868), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164176] = 3, - ACTIONS(9253), 1, + [163797] = 3, + ACTIONS(9216), 1, sym_identifier, - ACTIONS(9255), 1, + ACTIONS(9218), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164187] = 3, - ACTIONS(7208), 1, + [163808] = 3, + ACTIONS(6784), 1, anon_sym_LBRACE, - STATE(773), 1, - sym_statement_block, + STATE(2522), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164198] = 3, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(4402), 1, - sym_formal_parameters, + [163819] = 3, + ACTIONS(9220), 1, + sym_identifier, + ACTIONS(9222), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164209] = 3, - ACTIONS(6487), 1, - anon_sym_LPAREN, - STATE(5710), 1, - sym_formal_parameters, + [163830] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164220] = 3, - ACTIONS(9257), 1, + ACTIONS(8701), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [163839] = 3, + ACTIONS(9224), 1, sym_identifier, - ACTIONS(9259), 1, + ACTIONS(9226), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164231] = 3, - ACTIONS(8214), 1, - anon_sym_from, - STATE(4292), 1, - sym__from_clause, + [163850] = 3, + ACTIONS(9228), 1, + sym_identifier, + ACTIONS(9230), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164242] = 3, - ACTIONS(7445), 1, - anon_sym_LBRACE, - STATE(2658), 1, - sym_statement_block, + [163861] = 3, + ACTIONS(3443), 1, + anon_sym_LPAREN, + STATE(1259), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164253] = 3, - ACTIONS(7445), 1, + [163872] = 3, + ACTIONS(4116), 1, anon_sym_LBRACE, - STATE(2636), 1, + STATE(2061), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164264] = 3, - ACTIONS(9261), 1, - anon_sym_SEMI, - ACTIONS(9263), 1, - sym__automatic_semicolon, + [163883] = 3, + ACTIONS(7414), 1, + anon_sym_LBRACE, + STATE(2624), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164275] = 3, - ACTIONS(6487), 1, + [163894] = 3, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(5971), 1, + STATE(5680), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164286] = 3, - ACTIONS(4129), 1, - anon_sym_LBRACE, - STATE(2322), 1, - sym_statement_block, + [163905] = 3, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(4384), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164297] = 3, - ACTIONS(6898), 1, - anon_sym_LBRACE, - STATE(774), 1, - sym_class_body, + [163916] = 3, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(5691), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164308] = 2, + [163927] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5979), 2, + ACTIONS(9232), 2, anon_sym_COMMA, anon_sym_RBRACE, - [164317] = 3, - ACTIONS(9055), 1, + [163936] = 3, + ACTIONS(6450), 1, anon_sym_LPAREN, - STATE(32), 1, - sym_parenthesized_expression, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [164328] = 3, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(5413), 1, - sym_statement_block, + STATE(4387), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164339] = 3, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(5349), 1, - sym_statement_block, + [163947] = 3, + ACTIONS(6450), 1, + anon_sym_LPAREN, + STATE(5698), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164350] = 2, + [163958] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5975), 2, + ACTIONS(5974), 2, anon_sym_COMMA, anon_sym_RBRACE, - [164359] = 3, - ACTIONS(2445), 1, - anon_sym_LBRACE, - STATE(5398), 1, - sym_statement_block, + [163967] = 3, + ACTIONS(6601), 1, + anon_sym_COLON, + ACTIONS(8460), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164370] = 3, - ACTIONS(9265), 1, + [163978] = 3, + ACTIONS(9234), 1, sym_identifier, - ACTIONS(9267), 1, + ACTIONS(9236), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164381] = 3, - ACTIONS(9269), 1, - sym_identifier, - ACTIONS(9271), 1, - sym_private_property_identifier, + [163989] = 3, + ACTIONS(6752), 1, + anon_sym_LBRACE, + STATE(2064), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164000] = 3, + ACTIONS(9010), 1, + anon_sym_LPAREN, + STATE(67), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164392] = 3, - ACTIONS(9273), 1, + [164011] = 3, + ACTIONS(9238), 1, sym_identifier, - ACTIONS(9275), 1, + ACTIONS(9240), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164403] = 2, + [164022] = 3, + ACTIONS(6452), 1, + anon_sym_COLON, + STATE(4758), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9277), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [164412] = 2, + [164033] = 3, + ACTIONS(4535), 1, + anon_sym_LPAREN, + STATE(2155), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9279), 2, - anon_sym_COMMA, - anon_sym_GT, - [164421] = 2, - ACTIONS(9281), 1, - anon_sym_EQ_GT, + [164044] = 3, + ACTIONS(8388), 1, + sym_identifier, + ACTIONS(8392), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164429] = 2, - ACTIONS(9283), 1, - anon_sym_RBRACK, + [164055] = 2, + ACTIONS(9242), 1, + anon_sym_target, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164437] = 2, - ACTIONS(9285), 1, - anon_sym_EQ, + [164063] = 2, + ACTIONS(9244), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164445] = 2, - ACTIONS(9287), 1, + [164071] = 2, + ACTIONS(9246), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164453] = 2, - ACTIONS(8572), 1, - anon_sym_GT, + [164079] = 2, + ACTIONS(9248), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164461] = 2, - ACTIONS(9289), 1, - anon_sym_function, + [164087] = 2, + ACTIONS(9250), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164469] = 2, - ACTIONS(9291), 1, + [164095] = 2, + ACTIONS(9252), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164477] = 2, - ACTIONS(9293), 1, - anon_sym_EQ_GT, + [164103] = 2, + ACTIONS(9254), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164485] = 2, - ACTIONS(9295), 1, + [164111] = 2, + ACTIONS(9256), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164493] = 3, - ACTIONS(3), 1, + [164119] = 2, + ACTIONS(9258), 1, + anon_sym_symbol, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [164127] = 2, + ACTIONS(9260), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(9297), 1, - anon_sym_SLASH2, - [164503] = 2, - ACTIONS(8173), 1, - anon_sym_EQ_GT, + sym_comment, + [164135] = 2, + ACTIONS(4913), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164511] = 2, - ACTIONS(9299), 1, - anon_sym_namespace, + [164143] = 2, + ACTIONS(9262), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164519] = 2, - ACTIONS(9301), 1, - sym_identifier, + [164151] = 2, + ACTIONS(9264), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164527] = 2, - ACTIONS(9303), 1, - anon_sym_as, + [164159] = 2, + ACTIONS(9266), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164535] = 2, - ACTIONS(9305), 1, - anon_sym_EQ_GT, + [164167] = 2, + ACTIONS(9268), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164543] = 2, - ACTIONS(9307), 1, - anon_sym_EQ_GT, + [164175] = 2, + ACTIONS(9270), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164551] = 2, - ACTIONS(5292), 1, + [164183] = 2, + ACTIONS(5283), 1, anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164559] = 2, - ACTIONS(5556), 1, - anon_sym_RPAREN, + [164191] = 2, + ACTIONS(9272), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164567] = 2, - ACTIONS(9309), 1, + [164199] = 2, + ACTIONS(9274), 1, anon_sym_class, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164575] = 2, - ACTIONS(9311), 1, - anon_sym_EQ, + [164207] = 2, + ACTIONS(9276), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164583] = 2, - ACTIONS(9313), 1, + [164215] = 2, + ACTIONS(9278), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164591] = 2, - ACTIONS(4824), 1, - anon_sym_RPAREN, + [164223] = 2, + ACTIONS(9280), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164599] = 2, - ACTIONS(9315), 1, + [164231] = 2, + ACTIONS(9282), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164607] = 2, - ACTIONS(9317), 1, + [164239] = 2, + ACTIONS(9284), 1, anon_sym_namespace, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164615] = 2, - ACTIONS(9319), 1, + [164247] = 2, + ACTIONS(9286), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164623] = 2, - ACTIONS(9321), 1, + [164255] = 2, + ACTIONS(9288), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164631] = 2, - ACTIONS(9323), 1, + [164263] = 2, + ACTIONS(9290), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164639] = 2, - ACTIONS(5562), 1, - anon_sym_SEMI, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [164647] = 2, - ACTIONS(9325), 1, + [164271] = 2, + ACTIONS(8803), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164655] = 2, - ACTIONS(5341), 1, - anon_sym_RPAREN, + [164279] = 2, + ACTIONS(8547), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164663] = 2, - ACTIONS(9327), 1, - anon_sym_while, + [164287] = 2, + ACTIONS(9292), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164671] = 2, - ACTIONS(9329), 1, - anon_sym_LBRACK, + [164295] = 2, + ACTIONS(9294), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164679] = 2, - ACTIONS(9331), 1, - anon_sym_DOT, + [164303] = 2, + ACTIONS(9296), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164687] = 2, - ACTIONS(9333), 1, + [164311] = 2, + ACTIONS(9298), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164695] = 2, - ACTIONS(9335), 1, + [164319] = 2, + ACTIONS(5322), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164703] = 2, - ACTIONS(9337), 1, + [164327] = 2, + ACTIONS(9300), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164711] = 2, - ACTIONS(9339), 1, - anon_sym_EQ_GT, + [164335] = 2, + ACTIONS(9302), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164719] = 2, - ACTIONS(9341), 1, - anon_sym_RBRACK, + [164343] = 2, + ACTIONS(9304), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164727] = 2, - ACTIONS(9343), 1, - anon_sym_EQ_GT, + [164351] = 2, + ACTIONS(9306), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164735] = 2, - ACTIONS(9345), 1, + [164359] = 2, + ACTIONS(9308), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164743] = 2, - ACTIONS(9347), 1, - anon_sym_RBRACK, + [164367] = 2, + ACTIONS(9310), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164751] = 2, - ACTIONS(9349), 1, - sym_identifier, + [164375] = 2, + ACTIONS(9312), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164759] = 2, - ACTIONS(9351), 1, + [164383] = 2, + ACTIONS(9314), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164767] = 2, - ACTIONS(9353), 1, + [164391] = 2, + ACTIONS(9316), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164775] = 2, - ACTIONS(8467), 1, - anon_sym_GT, + [164399] = 2, + ACTIONS(9318), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164783] = 2, - ACTIONS(9355), 1, + [164407] = 2, + ACTIONS(9320), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164791] = 2, - ACTIONS(9357), 1, + [164415] = 2, + ACTIONS(9322), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164799] = 2, - ACTIONS(9359), 1, + [164423] = 2, + ACTIONS(9324), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164431] = 2, + ACTIONS(9326), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164807] = 2, - ACTIONS(9361), 1, + [164439] = 2, + ACTIONS(9328), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164815] = 2, - ACTIONS(9363), 1, - sym_number, + [164447] = 2, + ACTIONS(9330), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164823] = 2, - ACTIONS(8588), 1, + [164455] = 2, + ACTIONS(8567), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164831] = 2, - ACTIONS(9365), 1, + [164463] = 2, + ACTIONS(9332), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164839] = 2, - ACTIONS(9367), 1, + [164471] = 2, + ACTIONS(9334), 1, anon_sym_class, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164847] = 2, - ACTIONS(9369), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, + [164479] = 3, + ACTIONS(3), 1, sym_comment, - [164855] = 2, - ACTIONS(9371), 1, - anon_sym_EQ, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9336), 1, + sym_regex_pattern, + [164489] = 2, + ACTIONS(9338), 1, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164863] = 2, - ACTIONS(9373), 1, + [164497] = 2, + ACTIONS(9340), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164871] = 2, - ACTIONS(9375), 1, + [164505] = 2, + ACTIONS(9342), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164879] = 2, - ACTIONS(9377), 1, + [164513] = 2, + ACTIONS(9344), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164887] = 2, - ACTIONS(9379), 1, + [164521] = 2, + ACTIONS(9346), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164895] = 2, - ACTIONS(9381), 1, + [164529] = 2, + ACTIONS(9348), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164903] = 2, - ACTIONS(9383), 1, - anon_sym_symbol, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [164911] = 2, - ACTIONS(9385), 1, - anon_sym_EQ_GT, + [164537] = 2, + ACTIONS(9350), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164919] = 2, - ACTIONS(9387), 1, - anon_sym_RPAREN, + [164545] = 2, + ACTIONS(8751), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164927] = 2, - ACTIONS(9389), 1, - anon_sym_EQ_GT, + [164553] = 2, + ACTIONS(9352), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164935] = 2, - ACTIONS(9391), 1, + [164561] = 2, + ACTIONS(9354), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164943] = 2, - ACTIONS(4921), 1, - anon_sym_RPAREN, + [164569] = 2, + ACTIONS(9356), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164951] = 2, - ACTIONS(5343), 1, - anon_sym_RPAREN, + [164577] = 2, + ACTIONS(9358), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164959] = 2, - ACTIONS(9393), 1, + [164585] = 2, + ACTIONS(5304), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164967] = 2, - ACTIONS(9395), 1, - sym_identifier, + [164593] = 2, + ACTIONS(8501), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164975] = 2, - ACTIONS(8473), 1, + [164601] = 2, + ACTIONS(9360), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164983] = 2, - ACTIONS(5345), 1, - anon_sym_RPAREN, + [164609] = 2, + ACTIONS(9362), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164991] = 2, - ACTIONS(9397), 1, + [164617] = 2, + ACTIONS(9364), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164999] = 2, - ACTIONS(9399), 1, - anon_sym_from, + [164625] = 2, + ACTIONS(9366), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165007] = 2, - ACTIONS(9401), 1, + [164633] = 2, + ACTIONS(9368), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165015] = 2, - ACTIONS(7316), 1, - anon_sym_is, + [164641] = 2, + ACTIONS(9370), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165023] = 2, - ACTIONS(9403), 1, + [164649] = 2, + ACTIONS(9372), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165031] = 2, - ACTIONS(9405), 1, - sym_identifier, + [164657] = 2, + ACTIONS(9374), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165039] = 2, - ACTIONS(9407), 1, - anon_sym_LBRACE, + [164665] = 2, + ACTIONS(9376), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164673] = 2, + ACTIONS(9378), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165047] = 2, - ACTIONS(9409), 1, + [164681] = 2, + ACTIONS(9380), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165055] = 2, - ACTIONS(8631), 1, - anon_sym_GT, + [164689] = 2, + ACTIONS(9382), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165063] = 2, - ACTIONS(9411), 1, - anon_sym_RBRACK, + [164697] = 2, + ACTIONS(9384), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165071] = 2, - ACTIONS(9413), 1, + [164705] = 2, + ACTIONS(9386), 1, anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165079] = 2, - ACTIONS(9415), 1, + [164713] = 2, + ACTIONS(9388), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165087] = 2, - ACTIONS(5414), 1, - anon_sym_RPAREN, + [164721] = 2, + ACTIONS(9390), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165095] = 2, - ACTIONS(9417), 1, + [164729] = 2, + ACTIONS(9392), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165103] = 2, - ACTIONS(9419), 1, - anon_sym_from, + [164737] = 2, + ACTIONS(9394), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165111] = 2, - ACTIONS(5347), 1, - anon_sym_SEMI, + [164745] = 2, + ACTIONS(9396), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165119] = 2, - ACTIONS(5311), 1, + [164753] = 2, + ACTIONS(9398), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165127] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9421), 1, - anon_sym_SLASH2, - [165137] = 2, - ACTIONS(9423), 1, - sym_identifier, + [164761] = 2, + ACTIONS(9400), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165145] = 2, - ACTIONS(5307), 1, + [164769] = 2, + ACTIONS(9402), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165153] = 2, - ACTIONS(9425), 1, + [164777] = 2, + ACTIONS(9404), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165161] = 2, - ACTIONS(8521), 1, - anon_sym_RBRACK, + [164785] = 2, + ACTIONS(5306), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165169] = 2, - ACTIONS(9427), 1, + [164793] = 2, + ACTIONS(9406), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165177] = 2, - ACTIONS(9429), 1, - anon_sym_EQ_GT, + [164801] = 2, + ACTIONS(9408), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165185] = 2, - ACTIONS(9431), 1, - sym_number, + [164809] = 2, + ACTIONS(9410), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165193] = 2, - ACTIONS(9433), 1, + [164817] = 2, + ACTIONS(9412), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165201] = 2, - ACTIONS(5544), 1, + [164825] = 2, + ACTIONS(9414), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164833] = 2, + ACTIONS(5519), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165209] = 2, - ACTIONS(9435), 1, + [164841] = 2, + ACTIONS(9416), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165217] = 2, - ACTIONS(9437), 1, + [164849] = 2, + ACTIONS(9418), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165225] = 2, - ACTIONS(9439), 1, - sym_identifier, + [164857] = 2, + ACTIONS(9420), 1, + anon_sym_target, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165233] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [164865] = 2, + ACTIONS(9422), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(9441), 1, - sym_regex_pattern, - [165243] = 2, - ACTIONS(6820), 1, - anon_sym_is, + sym_comment, + [164873] = 2, + ACTIONS(7323), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165251] = 2, - ACTIONS(9443), 1, - anon_sym_EQ_GT, + [164881] = 2, + ACTIONS(5231), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165259] = 2, - ACTIONS(9445), 1, - sym_identifier, + [164889] = 2, + ACTIONS(5316), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165267] = 2, - ACTIONS(9447), 1, - anon_sym_RBRACK, + [164897] = 2, + ACTIONS(9424), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165275] = 2, - ACTIONS(9449), 1, + [164905] = 2, + ACTIONS(9426), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165283] = 2, - ACTIONS(9451), 1, + [164913] = 2, + ACTIONS(9428), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165291] = 2, - ACTIONS(9453), 1, - anon_sym_EQ_GT, + [164921] = 2, + ACTIONS(9430), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165299] = 2, - ACTIONS(9455), 1, - anon_sym_EQ_GT, + [164929] = 2, + ACTIONS(9432), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165307] = 2, - ACTIONS(7230), 1, + [164937] = 2, + ACTIONS(7211), 1, anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165315] = 2, - ACTIONS(9457), 1, - anon_sym_RBRACK, + [164945] = 2, + ACTIONS(8460), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165323] = 2, - ACTIONS(9459), 1, - sym_identifier, + [164953] = 2, + ACTIONS(9434), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165331] = 2, - ACTIONS(9461), 1, - anon_sym_RBRACK, + [164961] = 2, + ACTIONS(9436), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165339] = 2, - ACTIONS(9463), 1, - sym_identifier, + [164969] = 2, + ACTIONS(9438), 1, + anon_sym_symbol, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165347] = 2, - ACTIONS(5546), 1, + [164977] = 2, + ACTIONS(5521), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165355] = 2, - ACTIONS(9465), 1, + [164985] = 2, + ACTIONS(9440), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165363] = 2, - ACTIONS(9467), 1, + [164993] = 2, + ACTIONS(9442), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165371] = 2, - ACTIONS(9469), 1, + [165001] = 2, + ACTIONS(9444), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165379] = 2, - ACTIONS(9471), 1, - anon_sym_LPAREN, + [165009] = 2, + ACTIONS(9446), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165387] = 2, - ACTIONS(5384), 1, - anon_sym_RBRACE, + [165017] = 2, + ACTIONS(9448), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165395] = 2, - ACTIONS(9473), 1, - sym_identifier, + [165025] = 2, + ACTIONS(9450), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165403] = 2, - ACTIONS(5422), 1, - anon_sym_RPAREN, + [165033] = 2, + ACTIONS(9452), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165411] = 2, - ACTIONS(9475), 1, + [165041] = 2, + ACTIONS(9454), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165419] = 2, - ACTIONS(9477), 1, + [165049] = 2, + ACTIONS(9456), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165427] = 2, - ACTIONS(5424), 1, - anon_sym_RPAREN, + [165057] = 2, + ACTIONS(9458), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165435] = 2, - ACTIONS(8789), 1, - sym_identifier, + [165065] = 2, + ACTIONS(9460), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165443] = 2, - ACTIONS(9479), 1, - anon_sym_RBRACK, + [165073] = 2, + ACTIONS(9462), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165451] = 2, - ACTIONS(9481), 1, - anon_sym_RBRACK, + [165081] = 2, + ACTIONS(9464), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165459] = 2, - ACTIONS(9483), 1, + [165089] = 2, + ACTIONS(9466), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165467] = 2, - ACTIONS(9485), 1, - anon_sym_RBRACK, + [165097] = 2, + ACTIONS(9468), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165475] = 2, - ACTIONS(5478), 1, - anon_sym_in, + [165105] = 2, + ACTIONS(6068), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165483] = 2, - ACTIONS(9487), 1, - anon_sym_EQ_GT, + [165113] = 2, + ACTIONS(9470), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165491] = 2, - ACTIONS(5325), 1, + [165121] = 2, + ACTIONS(9472), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165499] = 2, - ACTIONS(9489), 1, + [165129] = 2, + ACTIONS(9474), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165507] = 2, - ACTIONS(9491), 1, - sym_identifier, + [165137] = 2, + ACTIONS(9476), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165515] = 2, - ACTIONS(9493), 1, - anon_sym_EQ_GT, + [165145] = 2, + ACTIONS(9478), 1, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165523] = 2, - ACTIONS(4885), 1, - anon_sym_is, + [165153] = 2, + ACTIONS(9480), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165531] = 2, - ACTIONS(9495), 1, - anon_sym_EQ_GT, + [165161] = 2, + ACTIONS(9482), 1, + ts_builtin_sym_end, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165539] = 2, - ACTIONS(9497), 1, - anon_sym_EQ_GT, + [165169] = 2, + ACTIONS(9484), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165547] = 2, - ACTIONS(9499), 1, + [165177] = 2, + ACTIONS(9486), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165555] = 2, - ACTIONS(9501), 1, - sym_identifier, + [165185] = 2, + ACTIONS(9488), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165563] = 2, - ACTIONS(9503), 1, - anon_sym_RPAREN, + [165193] = 2, + ACTIONS(9490), 1, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165571] = 2, - ACTIONS(9505), 1, + [165201] = 2, + ACTIONS(9492), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165579] = 2, - ACTIONS(9507), 1, - anon_sym_RBRACK, + [165209] = 2, + ACTIONS(9494), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165587] = 2, - ACTIONS(9509), 1, + [165217] = 2, + ACTIONS(9496), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165595] = 2, - ACTIONS(9511), 1, - anon_sym_EQ, + [165225] = 2, + ACTIONS(9498), 1, + anon_sym_symbol, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165603] = 2, - ACTIONS(4449), 1, - anon_sym_in, + [165233] = 2, + ACTIONS(9500), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165611] = 2, - ACTIONS(9513), 1, - anon_sym_new, + [165241] = 2, + ACTIONS(4034), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165619] = 2, - ACTIONS(9515), 1, + [165249] = 2, + ACTIONS(9502), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165627] = 2, - ACTIONS(6688), 1, - anon_sym_is, + [165257] = 2, + ACTIONS(9504), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165635] = 2, - ACTIONS(4031), 1, - anon_sym_is, + [165265] = 2, + ACTIONS(9506), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165643] = 2, - ACTIONS(9517), 1, - anon_sym_RBRACK, + [165273] = 2, + ACTIONS(9508), 1, + anon_sym_class, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165651] = 2, - ACTIONS(9519), 1, - anon_sym_EQ_GT, + [165281] = 2, + ACTIONS(9510), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165659] = 2, - ACTIONS(5204), 1, + [165289] = 2, + ACTIONS(4935), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165667] = 2, - ACTIONS(9521), 1, - anon_sym_from, - ACTIONS(5), 2, - sym_html_comment, + [165297] = 3, + ACTIONS(3), 1, sym_comment, - [165675] = 2, - ACTIONS(9523), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, - sym_comment, - [165683] = 2, - ACTIONS(9525), 1, - anon_sym_EQ_GT, + ACTIONS(9512), 1, + sym_regex_pattern, + [165307] = 2, + ACTIONS(9514), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165691] = 2, - ACTIONS(9527), 1, + [165315] = 2, + ACTIONS(9516), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165699] = 2, - ACTIONS(9529), 1, - sym_number, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [165707] = 2, - ACTIONS(5430), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [165715] = 2, - ACTIONS(4919), 1, - anon_sym_RPAREN, + [165323] = 2, + ACTIONS(9518), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165723] = 2, - ACTIONS(9531), 1, - sym_identifier, + [165331] = 2, + ACTIONS(7390), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165731] = 2, - ACTIONS(9533), 1, - anon_sym_RBRACK, + [165339] = 2, + ACTIONS(9520), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165739] = 2, - ACTIONS(9535), 1, + [165347] = 2, + ACTIONS(9522), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165747] = 2, - ACTIONS(9537), 1, - sym_identifier, + [165355] = 2, + ACTIONS(5255), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165755] = 2, - ACTIONS(9539), 1, - sym_identifier, + [165363] = 2, + ACTIONS(9524), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165763] = 2, - ACTIONS(9541), 1, - anon_sym_symbol, + [165371] = 2, + ACTIONS(8322), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165771] = 2, - ACTIONS(9543), 1, - sym_identifier, + [165379] = 2, + ACTIONS(9526), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165779] = 2, - ACTIONS(9545), 1, - anon_sym_COLON, + [165387] = 2, + ACTIONS(9528), 1, + anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165787] = 2, - ACTIONS(9547), 1, + [165395] = 2, + ACTIONS(9530), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165795] = 2, - ACTIONS(9549), 1, + [165403] = 2, + ACTIONS(9532), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165803] = 2, - ACTIONS(9551), 1, - anon_sym_RBRACK, + [165411] = 2, + ACTIONS(9534), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165811] = 2, - ACTIONS(9553), 1, - anon_sym_EQ_GT, + [165419] = 2, + ACTIONS(9536), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165819] = 2, - ACTIONS(9555), 1, + [165427] = 2, + ACTIONS(9538), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165827] = 2, - ACTIONS(9557), 1, - sym_identifier, + [165435] = 2, + ACTIONS(9540), 1, + anon_sym_symbol, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165835] = 2, - ACTIONS(9559), 1, + [165443] = 2, + ACTIONS(9542), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165843] = 2, - ACTIONS(9561), 1, - anon_sym_EQ_GT, + [165451] = 2, + ACTIONS(9544), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165459] = 2, + ACTIONS(5318), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165851] = 3, + [165467] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9563), 1, - sym_regex_pattern, - [165861] = 2, - ACTIONS(7447), 1, + ACTIONS(9546), 1, + anon_sym_SLASH2, + [165477] = 2, + ACTIONS(5387), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165869] = 2, - ACTIONS(9565), 1, - sym_identifier, + [165485] = 2, + ACTIONS(5324), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165493] = 2, + ACTIONS(9548), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165877] = 2, - ACTIONS(9567), 1, - sym_identifier, + [165501] = 2, + ACTIONS(9550), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165885] = 2, - ACTIONS(9569), 1, - anon_sym_EQ, + [165509] = 2, + ACTIONS(9552), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165893] = 2, - ACTIONS(9571), 1, - anon_sym_DOT, + [165517] = 2, + ACTIONS(5460), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165901] = 2, - ACTIONS(9573), 1, - anon_sym_EQ_GT, + [165525] = 2, + ACTIONS(4863), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165909] = 2, - ACTIONS(9575), 1, - anon_sym_EQ_GT, + [165533] = 2, + ACTIONS(5308), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165917] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [165541] = 2, + ACTIONS(9554), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(9577), 1, - anon_sym_SLASH2, - [165927] = 2, - ACTIONS(9579), 1, - sym_identifier, + sym_comment, + [165549] = 2, + ACTIONS(9556), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165935] = 2, - ACTIONS(9581), 1, - sym_identifier, + [165557] = 2, + ACTIONS(5697), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165943] = 2, - ACTIONS(9583), 1, - anon_sym_RBRACK, + [165565] = 2, + ACTIONS(9558), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165951] = 2, - ACTIONS(9585), 1, - anon_sym_from, + [165573] = 2, + ACTIONS(9560), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165959] = 2, - ACTIONS(9587), 1, - anon_sym_RBRACK, + [165581] = 2, + ACTIONS(9562), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165967] = 2, - ACTIONS(9589), 1, - anon_sym_target, + [165589] = 2, + ACTIONS(8466), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165975] = 2, - ACTIONS(9589), 1, - anon_sym_meta, + [165597] = 2, + ACTIONS(5559), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165983] = 2, - ACTIONS(9591), 1, - anon_sym_EQ, + [165605] = 2, + ACTIONS(9564), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165991] = 2, - ACTIONS(9593), 1, + [165613] = 2, + ACTIONS(9566), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165999] = 2, - ACTIONS(8651), 1, - anon_sym_LBRACE, + [165621] = 2, + ACTIONS(9568), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166007] = 2, - ACTIONS(9595), 1, - ts_builtin_sym_end, + [165629] = 2, + ACTIONS(9570), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166015] = 2, - ACTIONS(6495), 1, - anon_sym_is, + [165637] = 2, + ACTIONS(9572), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166023] = 2, - ACTIONS(5560), 1, - anon_sym_RBRACK, + [165645] = 2, + ACTIONS(9574), 1, + anon_sym_function, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166031] = 2, - ACTIONS(9597), 1, + [165653] = 2, + ACTIONS(9576), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166039] = 2, - ACTIONS(9599), 1, - anon_sym_RBRACK, + [165661] = 2, + ACTIONS(9578), 1, + anon_sym_while, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166047] = 2, - ACTIONS(9601), 1, - anon_sym_RBRACK, + [165669] = 2, + ACTIONS(9002), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166055] = 3, - ACTIONS(3), 1, + [165677] = 2, + ACTIONS(9580), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [165685] = 2, + ACTIONS(5471), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(9603), 1, - sym_regex_pattern, - [166065] = 2, - ACTIONS(9605), 1, - anon_sym_RBRACK, + sym_comment, + [165693] = 2, + ACTIONS(9582), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166073] = 2, - ACTIONS(5160), 1, + [165701] = 2, + ACTIONS(5153), 1, anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166081] = 2, - ACTIONS(9607), 1, + [165709] = 2, + ACTIONS(9584), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166089] = 2, - ACTIONS(5612), 1, - anon_sym_SEMI, + [165717] = 2, + ACTIONS(9586), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166097] = 2, - ACTIONS(9609), 1, + [165725] = 2, + ACTIONS(9588), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166105] = 2, - ACTIONS(9611), 1, - anon_sym_RBRACK, + [165733] = 2, + ACTIONS(9590), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166113] = 2, - ACTIONS(9613), 1, - anon_sym_RPAREN, + [165741] = 2, + ACTIONS(9592), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166121] = 2, - ACTIONS(9615), 1, - anon_sym_RBRACK, + [165749] = 2, + ACTIONS(9594), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166129] = 2, - ACTIONS(9617), 1, - anon_sym_RBRACK, + [165757] = 2, + ACTIONS(4958), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166137] = 2, - ACTIONS(9619), 1, - anon_sym_RBRACK, + [165765] = 2, + ACTIONS(6813), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166145] = 2, - ACTIONS(9621), 1, + [165773] = 2, + ACTIONS(9596), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166153] = 2, - ACTIONS(9623), 1, + [165781] = 2, + ACTIONS(9598), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166161] = 2, - ACTIONS(9625), 1, + [165789] = 2, + ACTIONS(9600), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166169] = 2, - ACTIONS(7563), 1, + [165797] = 2, + ACTIONS(9602), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166177] = 2, - ACTIONS(9627), 1, + [165805] = 2, + ACTIONS(5297), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166185] = 2, - ACTIONS(9629), 1, - sym_identifier, + [165813] = 2, + ACTIONS(9604), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166193] = 2, - ACTIONS(9631), 1, - anon_sym_RBRACK, + [165821] = 2, + ACTIONS(9606), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166201] = 2, - ACTIONS(9633), 1, - anon_sym_RBRACK, + [165829] = 2, + ACTIONS(7614), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166209] = 2, - ACTIONS(9635), 1, - anon_sym_EQ_GT, + [165837] = 2, + ACTIONS(9608), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166217] = 2, - ACTIONS(9637), 1, - sym_identifier, + [165845] = 2, + ACTIONS(9610), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166225] = 2, - ACTIONS(9639), 1, + [165853] = 2, + ACTIONS(9612), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166233] = 2, - ACTIONS(9641), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, + [165861] = 3, + ACTIONS(3), 1, sym_comment, - [166241] = 2, - ACTIONS(8602), 1, - anon_sym_RBRACK, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9614), 1, + sym_regex_pattern, + [165871] = 2, + ACTIONS(5395), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166249] = 2, - ACTIONS(9643), 1, + [165879] = 2, + ACTIONS(9616), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166257] = 2, - ACTIONS(5337), 1, - anon_sym_COLON, + [165887] = 2, + ACTIONS(9618), 1, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166265] = 2, - ACTIONS(9645), 1, - anon_sym_EQ_GT, + [165895] = 2, + ACTIONS(9620), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166273] = 2, - ACTIONS(9647), 1, + [165903] = 2, + ACTIONS(9622), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166281] = 2, - ACTIONS(9649), 1, - sym_identifier, + [165911] = 2, + ACTIONS(5795), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165919] = 2, + ACTIONS(9624), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166289] = 2, - ACTIONS(9651), 1, + [165927] = 2, + ACTIONS(9626), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166297] = 2, - ACTIONS(9653), 1, + [165935] = 2, + ACTIONS(9628), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166305] = 2, - ACTIONS(9655), 1, - anon_sym_RBRACK, + [165943] = 2, + ACTIONS(4487), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166313] = 2, - ACTIONS(9657), 1, - anon_sym_from, + [165951] = 2, + ACTIONS(5397), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166321] = 2, - ACTIONS(9659), 1, + [165959] = 2, + ACTIONS(9630), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166329] = 2, - ACTIONS(9661), 1, + [165967] = 2, + ACTIONS(5320), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165975] = 2, + ACTIONS(9632), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166337] = 2, - ACTIONS(9663), 1, - anon_sym_RBRACK, + [165983] = 2, + ACTIONS(9634), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166345] = 2, - ACTIONS(9665), 1, - anon_sym_require, + [165991] = 2, + ACTIONS(9636), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166353] = 2, - ACTIONS(9667), 1, + [165999] = 2, + ACTIONS(9638), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166361] = 2, - ACTIONS(9669), 1, + [166007] = 2, + ACTIONS(9640), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166369] = 2, - ACTIONS(9671), 1, - sym_number, + [166015] = 2, + ACTIONS(5473), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166377] = 2, - ACTIONS(9673), 1, - sym_identifier, + [166023] = 2, + ACTIONS(9642), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166385] = 2, - ACTIONS(9675), 1, - anon_sym_readonly, + [166031] = 2, + ACTIONS(9644), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166039] = 2, + ACTIONS(9646), 1, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166393] = 2, - ACTIONS(9677), 1, + [166047] = 2, + ACTIONS(9648), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166401] = 2, - ACTIONS(9679), 1, - anon_sym_as, + [166055] = 2, + ACTIONS(9650), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166409] = 2, - ACTIONS(9681), 1, - anon_sym_symbol, + [166063] = 2, + ACTIONS(5475), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166417] = 2, - ACTIONS(8783), 1, - anon_sym_RBRACE, + [166071] = 2, + ACTIONS(9652), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166425] = 2, - ACTIONS(9683), 1, - anon_sym_RBRACK, + [166079] = 2, + ACTIONS(9654), 1, + anon_sym_symbol, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166433] = 2, - ACTIONS(9685), 1, - sym_identifier, + [166087] = 2, + ACTIONS(9656), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166441] = 2, - ACTIONS(9687), 1, + [166095] = 2, + ACTIONS(9658), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166449] = 2, - ACTIONS(8793), 1, - anon_sym_RBRACE, + [166103] = 2, + ACTIONS(9660), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166457] = 2, - ACTIONS(9689), 1, + [166111] = 2, + ACTIONS(9662), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166465] = 2, - ACTIONS(9691), 1, + [166119] = 2, + ACTIONS(9664), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166473] = 2, - ACTIONS(9693), 1, - sym_identifier, + [166127] = 2, + ACTIONS(9666), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166481] = 2, - ACTIONS(9695), 1, - sym_identifier, + [166135] = 2, + ACTIONS(9668), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166489] = 2, - ACTIONS(5634), 1, - anon_sym_in, + [166143] = 2, + ACTIONS(9670), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166497] = 2, - ACTIONS(9697), 1, - anon_sym_EQ_GT, + [166151] = 2, + ACTIONS(6690), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166505] = 2, - ACTIONS(8939), 1, - anon_sym_RBRACK, + [166159] = 2, + ACTIONS(9672), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166513] = 2, - ACTIONS(9699), 1, + [166167] = 2, + ACTIONS(9674), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166521] = 2, - ACTIONS(9701), 1, - anon_sym_EQ_GT, + [166175] = 2, + ACTIONS(9676), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166529] = 2, - ACTIONS(9703), 1, - anon_sym_EQ_GT, + [166183] = 2, + ACTIONS(9678), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166537] = 2, - ACTIONS(9705), 1, - anon_sym_EQ_GT, + [166191] = 2, + ACTIONS(5405), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166545] = 2, - ACTIONS(9707), 1, + [166199] = 2, + ACTIONS(9680), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166553] = 2, - ACTIONS(9709), 1, - anon_sym_RBRACK, + [166207] = 2, + ACTIONS(9682), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166561] = 2, - ACTIONS(9711), 1, + [166215] = 2, + ACTIONS(9684), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166569] = 2, - ACTIONS(9713), 1, + [166223] = 2, + ACTIONS(9686), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166577] = 2, - ACTIONS(9715), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [166585] = 2, - ACTIONS(5837), 1, - anon_sym_in, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [166593] = 2, - ACTIONS(9717), 1, - anon_sym_EQ_GT, + [166231] = 2, + ACTIONS(9688), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166601] = 2, - ACTIONS(9719), 1, - anon_sym_EQ, + [166239] = 2, + ACTIONS(9690), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166609] = 2, - ACTIONS(9721), 1, - anon_sym_EQ_GT, + [166247] = 2, + ACTIONS(9692), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166617] = 2, - ACTIONS(7970), 1, - anon_sym_EQ, + [166255] = 2, + ACTIONS(9694), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166625] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9723), 1, - sym_regex_pattern, - [166635] = 2, - ACTIONS(9725), 1, - sym_identifier, + [166263] = 2, + ACTIONS(9696), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166643] = 2, - ACTIONS(9727), 1, - anon_sym_EQ_GT, + [166271] = 2, + ACTIONS(8761), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166651] = 2, - ACTIONS(9729), 1, - anon_sym_EQ_GT, + [166279] = 2, + ACTIONS(9698), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166659] = 2, - ACTIONS(9731), 1, - anon_sym_EQ_GT, + [166287] = 2, + ACTIONS(9700), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166667] = 2, - ACTIONS(9733), 1, - anon_sym_DOT, + [166295] = 2, + ACTIONS(7801), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166675] = 2, - ACTIONS(9735), 1, - anon_sym_RBRACK, + [166303] = 2, + ACTIONS(9702), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166683] = 2, - ACTIONS(5598), 1, + [166311] = 2, + ACTIONS(5577), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166691] = 2, - ACTIONS(9737), 1, - anon_sym_from, + [166319] = 2, + ACTIONS(9704), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166699] = 2, - ACTIONS(9739), 1, - anon_sym_class, + [166327] = 2, + ACTIONS(9706), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166707] = 2, - ACTIONS(9741), 1, - anon_sym_RBRACK, + [166335] = 2, + ACTIONS(9708), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166715] = 2, - ACTIONS(5600), 1, + [166343] = 2, + ACTIONS(5581), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166723] = 2, - ACTIONS(9743), 1, - anon_sym_RBRACK, + [166351] = 2, + ACTIONS(9710), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166731] = 2, - ACTIONS(5602), 1, + [166359] = 2, + ACTIONS(5583), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166739] = 2, - ACTIONS(9745), 1, - anon_sym_EQ, + [166367] = 2, + ACTIONS(5579), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166747] = 2, - ACTIONS(9747), 1, - anon_sym_RBRACK, + [166375] = 2, + ACTIONS(9712), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166755] = 2, - ACTIONS(5604), 1, + [166383] = 2, + ACTIONS(5585), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166763] = 2, - ACTIONS(9749), 1, - anon_sym_RBRACK, + [166391] = 2, + ACTIONS(8817), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166771] = 2, - ACTIONS(9751), 1, + [166399] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9714), 1, + anon_sym_SLASH2, + [166409] = 2, + ACTIONS(9716), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166779] = 2, - ACTIONS(9753), 1, - anon_sym_EQ, + [166417] = 2, + ACTIONS(9718), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166787] = 2, - ACTIONS(9755), 1, - anon_sym_meta, + [166425] = 2, + ACTIONS(5443), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166795] = 2, - ACTIONS(9757), 1, - anon_sym_RBRACK, + [166433] = 2, + ACTIONS(9720), 1, + anon_sym_class, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166803] = 2, - ACTIONS(9759), 1, + [166441] = 2, + ACTIONS(9722), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166811] = 2, - ACTIONS(9761), 1, - anon_sym_from, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [166819] = 2, - ACTIONS(9763), 1, - anon_sym_EQ_GT, + [166449] = 2, + ACTIONS(8601), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166827] = 2, - ACTIONS(9765), 1, + [166457] = 2, + ACTIONS(9724), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166835] = 2, - ACTIONS(9767), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, + [166465] = 3, + ACTIONS(3), 1, sym_comment, - [166843] = 2, - ACTIONS(9769), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9726), 1, + anon_sym_SLASH2, + [166475] = 2, + ACTIONS(9728), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166851] = 2, - ACTIONS(9771), 1, - anon_sym_RBRACK, + [166483] = 2, + ACTIONS(8643), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166859] = 2, - ACTIONS(9773), 1, - anon_sym_RPAREN, + [166491] = 2, + ACTIONS(9242), 1, + anon_sym_meta, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166867] = 2, - ACTIONS(4949), 1, + [166499] = 2, + ACTIONS(4885), 1, anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166875] = 2, - ACTIONS(9775), 1, - anon_sym_EQ_GT, + [166507] = 2, + ACTIONS(9730), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166883] = 2, - ACTIONS(4917), 1, + [166515] = 2, + ACTIONS(5587), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166891] = 2, - ACTIONS(9777), 1, + [166523] = 2, + ACTIONS(9732), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166899] = 2, - ACTIONS(9779), 1, - anon_sym_as, + [166531] = 2, + ACTIONS(9734), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166907] = 2, - ACTIONS(9781), 1, + [166539] = 2, + ACTIONS(9736), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166915] = 2, - ACTIONS(9783), 1, - anon_sym_class, + [166547] = 2, + ACTIONS(9738), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166923] = 2, - ACTIONS(9785), 1, - sym_identifier, + [166555] = 2, + ACTIONS(9740), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166931] = 2, - ACTIONS(9787), 1, + [166563] = 2, + ACTIONS(9742), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166939] = 2, - ACTIONS(9789), 1, - sym_number, + [166571] = 2, + ACTIONS(8885), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166947] = 2, - ACTIONS(9791), 1, + [166579] = 2, + ACTIONS(9744), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166955] = 2, - ACTIONS(9793), 1, + [166587] = 2, + ACTIONS(9746), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166963] = 2, - ACTIONS(5516), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [166971] = 2, - ACTIONS(8928), 1, - anon_sym_GT, + [166595] = 2, + ACTIONS(9748), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166979] = 2, - ACTIONS(9795), 1, - anon_sym_RBRACK, + [166603] = 2, + ACTIONS(9750), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166987] = 2, - ACTIONS(9797), 1, - anon_sym_EQ_GT, + [166611] = 2, + ACTIONS(9752), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166995] = 2, - ACTIONS(9799), 1, + [166619] = 2, + ACTIONS(9754), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167003] = 2, - ACTIONS(9801), 1, - anon_sym_RBRACK, + [166627] = 2, + ACTIONS(5249), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167011] = 2, - ACTIONS(9803), 1, + [166635] = 2, + ACTIONS(9756), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167019] = 2, - ACTIONS(9805), 1, - anon_sym_RBRACK, + [166643] = 2, + ACTIONS(9420), 1, + anon_sym_meta, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167027] = 2, - ACTIONS(9807), 1, + [166651] = 2, + ACTIONS(9758), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167035] = 2, - ACTIONS(9809), 1, - anon_sym_EQ_GT, + [166659] = 2, + ACTIONS(9760), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167043] = 3, - ACTIONS(3), 1, + [166667] = 2, + ACTIONS(9762), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [166675] = 2, + ACTIONS(9764), 1, + sym_identifier, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(9811), 1, - anon_sym_SLASH2, - [167053] = 2, - ACTIONS(9813), 1, + sym_comment, + [166683] = 2, + ACTIONS(9766), 1, anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167061] = 2, - ACTIONS(9815), 1, - sym_identifier, + [166691] = 2, + ACTIONS(9768), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167069] = 2, - ACTIONS(9817), 1, - sym_identifier, + [166699] = 2, + ACTIONS(9770), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167077] = 2, - ACTIONS(9819), 1, + [166707] = 2, + ACTIONS(9772), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167085] = 2, - ACTIONS(5606), 1, + [166715] = 2, + ACTIONS(5589), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167093] = 2, - ACTIONS(4861), 1, - anon_sym_in, + [166723] = 2, + ACTIONS(9774), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167101] = 2, - ACTIONS(9821), 1, - anon_sym_new, + [166731] = 2, + ACTIONS(9776), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167109] = 2, - ACTIONS(5608), 1, + [166739] = 2, + ACTIONS(5591), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167117] = 2, - ACTIONS(9823), 1, + [166747] = 2, + ACTIONS(9778), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167125] = 2, - ACTIONS(9825), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [167133] = 2, - ACTIONS(9827), 1, - anon_sym_RBRACK, + [166755] = 2, + ACTIONS(9780), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167141] = 2, - ACTIONS(9829), 1, + [166763] = 2, + ACTIONS(9782), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167149] = 2, - ACTIONS(9831), 1, + [166771] = 2, + ACTIONS(9784), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167157] = 2, - ACTIONS(9833), 1, + [166779] = 2, + ACTIONS(8902), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167165] = 2, - ACTIONS(9835), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, + [166787] = 3, + ACTIONS(3), 1, sym_comment, - [167173] = 2, - ACTIONS(5518), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9786), 1, + sym_regex_pattern, + [166797] = 2, + ACTIONS(7464), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167181] = 2, - ACTIONS(9837), 1, + [166805] = 2, + ACTIONS(9788), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167189] = 2, - ACTIONS(9839), 1, + [166813] = 2, + ACTIONS(9790), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166821] = 2, + ACTIONS(9792), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167197] = 2, - ACTIONS(9841), 1, + [166829] = 2, + ACTIONS(9794), 1, anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167205] = 2, - ACTIONS(8945), 1, - anon_sym_RBRACK, + [166837] = 2, + ACTIONS(9796), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167213] = 2, - ACTIONS(9843), 1, + [166845] = 2, + ACTIONS(9798), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167221] = 2, - ACTIONS(9845), 1, - anon_sym_symbol, + [166853] = 2, + ACTIONS(9800), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167229] = 2, - ACTIONS(5520), 1, - anon_sym_RPAREN, + [166861] = 2, + ACTIONS(9802), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167237] = 2, - ACTIONS(9847), 1, + [166869] = 2, + ACTIONS(9804), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167245] = 2, - ACTIONS(9849), 1, - anon_sym_DOT, + [166877] = 2, + ACTIONS(9806), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167253] = 2, - ACTIONS(9851), 1, - anon_sym_RBRACK, + [166885] = 2, + ACTIONS(5745), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167261] = 2, - ACTIONS(9853), 1, - anon_sym_EQ_GT, + [166893] = 2, + ACTIONS(9808), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167269] = 2, - ACTIONS(9855), 1, - anon_sym_RBRACK, + [166901] = 2, + ACTIONS(9810), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167277] = 2, - ACTIONS(9857), 1, + [166909] = 2, + ACTIONS(9812), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167285] = 2, - ACTIONS(9859), 1, + [166917] = 2, + ACTIONS(9814), 1, anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167293] = 2, - ACTIONS(9861), 1, - anon_sym_RBRACK, + [166925] = 2, + ACTIONS(9816), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167301] = 2, - ACTIONS(7349), 1, - anon_sym_EQ, + [166933] = 2, + ACTIONS(9818), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167309] = 2, - ACTIONS(9863), 1, + [166941] = 2, + ACTIONS(9820), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167317] = 2, - ACTIONS(9865), 1, - sym_identifier, + [166949] = 2, + ACTIONS(9822), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167325] = 2, - ACTIONS(9867), 1, + [166957] = 2, + ACTIONS(9824), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167333] = 2, - ACTIONS(9869), 1, - anon_sym_RBRACK, + [166965] = 2, + ACTIONS(9826), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167341] = 2, - ACTIONS(9871), 1, - sym_identifier, + [166973] = 2, + ACTIONS(9828), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167349] = 2, - ACTIONS(9873), 1, - anon_sym_RBRACK, + [166981] = 2, + ACTIONS(9830), 1, + anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167357] = 2, - ACTIONS(7823), 1, - sym_identifier, + [166989] = 2, + ACTIONS(9832), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167365] = 2, - ACTIONS(9875), 1, + [166997] = 2, + ACTIONS(9834), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167373] = 2, - ACTIONS(8103), 1, + [167005] = 2, + ACTIONS(8091), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167381] = 2, - ACTIONS(9877), 1, + [167013] = 2, + ACTIONS(9836), 1, anon_sym_function, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167389] = 2, - ACTIONS(9879), 1, - anon_sym_RPAREN, + [167021] = 2, + ACTIONS(9838), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167397] = 2, - ACTIONS(9881), 1, - anon_sym_RBRACK, + [167029] = 2, + ACTIONS(9840), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167405] = 2, - ACTIONS(9883), 1, + [167037] = 2, + ACTIONS(9842), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167413] = 2, - ACTIONS(9885), 1, + [167045] = 2, + ACTIONS(9844), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167421] = 2, - ACTIONS(5758), 1, - anon_sym_in, + [167053] = 2, + ACTIONS(9846), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167429] = 2, - ACTIONS(5610), 1, + [167061] = 2, + ACTIONS(5593), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167437] = 2, - ACTIONS(9887), 1, - sym_identifier, + [167069] = 2, + ACTIONS(9848), 1, + anon_sym_require, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167445] = 2, - ACTIONS(9889), 1, + [167077] = 2, + ACTIONS(9850), 1, anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167453] = 2, - ACTIONS(9891), 1, + [167085] = 2, + ACTIONS(9852), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167461] = 2, - ACTIONS(9893), 1, - anon_sym_EQ_GT, + [167093] = 2, + ACTIONS(8878), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167469] = 2, - ACTIONS(9895), 1, + [167101] = 2, + ACTIONS(9854), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167477] = 2, - ACTIONS(9897), 1, - anon_sym_symbol, + [167109] = 2, + ACTIONS(9856), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167485] = 2, - ACTIONS(9899), 1, + [167117] = 2, + ACTIONS(9858), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167493] = 2, - ACTIONS(9901), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [167501] = 2, - ACTIONS(9903), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [167509] = 2, - ACTIONS(9905), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [167517] = 2, - ACTIONS(9907), 1, - anon_sym_EQ_GT, + [167125] = 2, + ACTIONS(9860), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167525] = 2, - ACTIONS(9909), 1, - anon_sym_EQ, + [167133] = 2, + ACTIONS(9862), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167533] = 3, + [167141] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9911), 1, + ACTIONS(9864), 1, sym_regex_pattern, - [167543] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9913), 1, - anon_sym_SLASH2, - [167553] = 2, - ACTIONS(9915), 1, - anon_sym_COLON, + [167151] = 2, + ACTIONS(9866), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167561] = 2, - ACTIONS(9917), 1, - anon_sym_EQ_GT, + [167159] = 2, + ACTIONS(9868), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167569] = 2, - ACTIONS(9919), 1, + [167167] = 2, + ACTIONS(9870), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167577] = 2, - ACTIONS(5327), 1, - anon_sym_RBRACE, + [167175] = 2, + ACTIONS(6581), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167183] = 2, + ACTIONS(9872), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167585] = 2, - ACTIONS(9921), 1, + [167191] = 2, + ACTIONS(9874), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167593] = 2, - ACTIONS(9923), 1, - anon_sym_EQ, + [167199] = 2, + ACTIONS(9876), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167601] = 2, - ACTIONS(9925), 1, - anon_sym_EQ_GT, + [167207] = 2, + ACTIONS(9878), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167609] = 2, - ACTIONS(9927), 1, - anon_sym_RPAREN, + [167215] = 2, + ACTIONS(9880), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167617] = 2, - ACTIONS(9929), 1, + [167223] = 2, + ACTIONS(8009), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167625] = 2, - ACTIONS(9931), 1, - anon_sym_COLON, + [167231] = 2, + ACTIONS(4954), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167633] = 2, - ACTIONS(6125), 1, + [167239] = 2, + ACTIONS(9882), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167641] = 2, - ACTIONS(9933), 1, - anon_sym_DOT, + [167247] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9884), 1, + anon_sym_SLASH2, + [167257] = 2, + ACTIONS(9886), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167649] = 2, - ACTIONS(9755), 1, - anon_sym_target, + [167265] = 2, + ACTIONS(9888), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167273] = 2, + ACTIONS(4918), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167657] = 2, - ACTIONS(9935), 1, + [167281] = 2, + ACTIONS(9890), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167665] = 2, - ACTIONS(5208), 1, + [167289] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9892), 1, + anon_sym_SLASH2, + [167299] = 2, + ACTIONS(5573), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167673] = 2, - ACTIONS(9037), 1, - anon_sym_from, + [167307] = 2, + ACTIONS(9894), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167681] = 2, - ACTIONS(9937), 1, - anon_sym_RBRACK, + [167315] = 2, + ACTIONS(9896), 1, + anon_sym_namespace, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167689] = 2, - ACTIONS(9939), 1, - anon_sym_RBRACK, + [167323] = 2, + ACTIONS(9898), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167697] = 2, - ACTIONS(9941), 1, + [167331] = 2, + ACTIONS(9900), 1, anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167705] = 2, - ACTIONS(9943), 1, - anon_sym_RPAREN, + [167339] = 2, + ACTIONS(9902), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167713] = 2, - ACTIONS(5309), 1, - anon_sym_RBRACE, + [167347] = 2, + ACTIONS(9904), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167721] = 2, - ACTIONS(9945), 1, - anon_sym_RBRACK, + [167355] = 2, + ACTIONS(9906), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167729] = 2, - ACTIONS(9947), 1, + [167363] = 2, + ACTIONS(9908), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, @@ -275244,4836 +273172,4824 @@ static const uint16_t ts_small_parse_table[] = { static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1167)] = 0, - [SMALL_STATE(1168)] = 71, - [SMALL_STATE(1169)] = 164, - [SMALL_STATE(1170)] = 235, - [SMALL_STATE(1171)] = 306, - [SMALL_STATE(1172)] = 377, - [SMALL_STATE(1173)] = 448, - [SMALL_STATE(1174)] = 521, - [SMALL_STATE(1175)] = 594, - [SMALL_STATE(1176)] = 665, - [SMALL_STATE(1177)] = 754, - [SMALL_STATE(1178)] = 825, - [SMALL_STATE(1179)] = 918, - [SMALL_STATE(1180)] = 1011, - [SMALL_STATE(1181)] = 1100, - [SMALL_STATE(1182)] = 1193, - [SMALL_STATE(1183)] = 1288, - [SMALL_STATE(1184)] = 1379, + [SMALL_STATE(1168)] = 93, + [SMALL_STATE(1169)] = 186, + [SMALL_STATE(1170)] = 257, + [SMALL_STATE(1171)] = 350, + [SMALL_STATE(1172)] = 423, + [SMALL_STATE(1173)] = 494, + [SMALL_STATE(1174)] = 567, + [SMALL_STATE(1175)] = 638, + [SMALL_STATE(1176)] = 731, + [SMALL_STATE(1177)] = 824, + [SMALL_STATE(1178)] = 895, + [SMALL_STATE(1179)] = 966, + [SMALL_STATE(1180)] = 1037, + [SMALL_STATE(1181)] = 1108, + [SMALL_STATE(1182)] = 1197, + [SMALL_STATE(1183)] = 1292, + [SMALL_STATE(1184)] = 1381, [SMALL_STATE(1185)] = 1472, - [SMALL_STATE(1186)] = 1560, - [SMALL_STATE(1187)] = 1650, - [SMALL_STATE(1188)] = 1740, - [SMALL_STATE(1189)] = 1828, - [SMALL_STATE(1190)] = 1916, - [SMALL_STATE(1191)] = 2006, - [SMALL_STATE(1192)] = 2094, - [SMALL_STATE(1193)] = 2182, - [SMALL_STATE(1194)] = 2270, - [SMALL_STATE(1195)] = 2356, - [SMALL_STATE(1196)] = 2446, - [SMALL_STATE(1197)] = 2516, - [SMALL_STATE(1198)] = 2608, - [SMALL_STATE(1199)] = 2698, - [SMALL_STATE(1200)] = 2788, - [SMALL_STATE(1201)] = 2862, - [SMALL_STATE(1202)] = 2932, - [SMALL_STATE(1203)] = 3022, - [SMALL_STATE(1204)] = 3110, - [SMALL_STATE(1205)] = 3200, - [SMALL_STATE(1206)] = 3288, - [SMALL_STATE(1207)] = 3380, - [SMALL_STATE(1208)] = 3466, + [SMALL_STATE(1186)] = 1542, + [SMALL_STATE(1187)] = 1634, + [SMALL_STATE(1188)] = 1726, + [SMALL_STATE(1189)] = 1814, + [SMALL_STATE(1190)] = 1900, + [SMALL_STATE(1191)] = 1990, + [SMALL_STATE(1192)] = 2080, + [SMALL_STATE(1193)] = 2170, + [SMALL_STATE(1194)] = 2258, + [SMALL_STATE(1195)] = 2344, + [SMALL_STATE(1196)] = 2418, + [SMALL_STATE(1197)] = 2506, + [SMALL_STATE(1198)] = 2594, + [SMALL_STATE(1199)] = 2682, + [SMALL_STATE(1200)] = 2772, + [SMALL_STATE(1201)] = 2860, + [SMALL_STATE(1202)] = 2950, + [SMALL_STATE(1203)] = 3038, + [SMALL_STATE(1204)] = 3128, + [SMALL_STATE(1205)] = 3218, + [SMALL_STATE(1206)] = 3308, + [SMALL_STATE(1207)] = 3396, + [SMALL_STATE(1208)] = 3484, [SMALL_STATE(1209)] = 3554, - [SMALL_STATE(1210)] = 3645, - [SMALL_STATE(1211)] = 3726, - [SMALL_STATE(1212)] = 3817, - [SMALL_STATE(1213)] = 3906, - [SMALL_STATE(1214)] = 3985, + [SMALL_STATE(1210)] = 3641, + [SMALL_STATE(1211)] = 3728, + [SMALL_STATE(1212)] = 3815, + [SMALL_STATE(1213)] = 3904, + [SMALL_STATE(1214)] = 3995, [SMALL_STATE(1215)] = 4076, - [SMALL_STATE(1216)] = 4171, - [SMALL_STATE(1217)] = 4258, - [SMALL_STATE(1218)] = 4345, - [SMALL_STATE(1219)] = 4432, - [SMALL_STATE(1220)] = 4519, + [SMALL_STATE(1216)] = 4167, + [SMALL_STATE(1217)] = 4254, + [SMALL_STATE(1218)] = 4333, + [SMALL_STATE(1219)] = 4428, + [SMALL_STATE(1220)] = 4517, [SMALL_STATE(1221)] = 4608, [SMALL_STATE(1222)] = 4699, - [SMALL_STATE(1223)] = 4785, - [SMALL_STATE(1224)] = 4877, - [SMALL_STATE(1225)] = 4969, - [SMALL_STATE(1226)] = 5055, - [SMALL_STATE(1227)] = 5141, - [SMALL_STATE(1228)] = 5219, - [SMALL_STATE(1229)] = 5309, - [SMALL_STATE(1230)] = 5387, - [SMALL_STATE(1231)] = 5473, - [SMALL_STATE(1232)] = 5541, - [SMALL_STATE(1233)] = 5609, - [SMALL_STATE(1234)] = 5699, - [SMALL_STATE(1235)] = 5777, - [SMALL_STATE(1236)] = 5863, - [SMALL_STATE(1237)] = 5949, - [SMALL_STATE(1238)] = 6029, - [SMALL_STATE(1239)] = 6105, - [SMALL_STATE(1240)] = 6191, - [SMALL_STATE(1241)] = 6281, - [SMALL_STATE(1242)] = 6367, - [SMALL_STATE(1243)] = 6453, - [SMALL_STATE(1244)] = 6527, - [SMALL_STATE(1245)] = 6605, - [SMALL_STATE(1246)] = 6691, - [SMALL_STATE(1247)] = 6777, - [SMALL_STATE(1248)] = 6851, - [SMALL_STATE(1249)] = 6925, - [SMALL_STATE(1250)] = 6999, - [SMALL_STATE(1251)] = 7089, - [SMALL_STATE(1252)] = 7175, - [SMALL_STATE(1253)] = 7261, - [SMALL_STATE(1254)] = 7339, - [SMALL_STATE(1255)] = 7413, - [SMALL_STATE(1256)] = 7491, - [SMALL_STATE(1257)] = 7558, - [SMALL_STATE(1258)] = 7633, - [SMALL_STATE(1259)] = 7702, - [SMALL_STATE(1260)] = 7781, - [SMALL_STATE(1261)] = 7864, - [SMALL_STATE(1262)] = 7939, - [SMALL_STATE(1263)] = 8008, - [SMALL_STATE(1264)] = 8077, - [SMALL_STATE(1265)] = 8156, - [SMALL_STATE(1266)] = 8223, - [SMALL_STATE(1267)] = 8312, - [SMALL_STATE(1268)] = 8379, - [SMALL_STATE(1269)] = 8464, - [SMALL_STATE(1270)] = 8533, - [SMALL_STATE(1271)] = 8622, - [SMALL_STATE(1272)] = 8693, - [SMALL_STATE(1273)] = 8782, - [SMALL_STATE(1274)] = 8859, - [SMALL_STATE(1275)] = 8942, - [SMALL_STATE(1276)] = 9031, - [SMALL_STATE(1277)] = 9100, - [SMALL_STATE(1278)] = 9177, - [SMALL_STATE(1279)] = 9246, - [SMALL_STATE(1280)] = 9321, - [SMALL_STATE(1281)] = 9388, - [SMALL_STATE(1282)] = 9473, - [SMALL_STATE(1283)] = 9558, - [SMALL_STATE(1284)] = 9635, - [SMALL_STATE(1285)] = 9722, - [SMALL_STATE(1286)] = 9788, - [SMALL_STATE(1287)] = 9876, - [SMALL_STATE(1288)] = 9954, - [SMALL_STATE(1289)] = 10020, - [SMALL_STATE(1290)] = 10102, - [SMALL_STATE(1291)] = 10174, - [SMALL_STATE(1292)] = 10262, - [SMALL_STATE(1293)] = 10346, - [SMALL_STATE(1294)] = 10420, - [SMALL_STATE(1295)] = 10486, - [SMALL_STATE(1296)] = 10566, - [SMALL_STATE(1297)] = 10638, - [SMALL_STATE(1298)] = 10710, - [SMALL_STATE(1299)] = 10782, - [SMALL_STATE(1300)] = 10856, - [SMALL_STATE(1301)] = 10932, - [SMALL_STATE(1302)] = 10998, - [SMALL_STATE(1303)] = 11070, - [SMALL_STATE(1304)] = 11136, - [SMALL_STATE(1305)] = 11210, - [SMALL_STATE(1306)] = 11276, - [SMALL_STATE(1307)] = 11350, - [SMALL_STATE(1308)] = 11428, - [SMALL_STATE(1309)] = 11494, - [SMALL_STATE(1310)] = 11568, - [SMALL_STATE(1311)] = 11642, - [SMALL_STATE(1312)] = 11708, - [SMALL_STATE(1313)] = 11774, - [SMALL_STATE(1314)] = 11854, - [SMALL_STATE(1315)] = 11926, - [SMALL_STATE(1316)] = 11998, - [SMALL_STATE(1317)] = 12082, - [SMALL_STATE(1318)] = 12152, - [SMALL_STATE(1319)] = 12236, - [SMALL_STATE(1320)] = 12308, - [SMALL_STATE(1321)] = 12386, - [SMALL_STATE(1322)] = 12455, - [SMALL_STATE(1323)] = 12530, - [SMALL_STATE(1324)] = 12603, - [SMALL_STATE(1325)] = 12670, - [SMALL_STATE(1326)] = 12737, - [SMALL_STATE(1327)] = 12810, - [SMALL_STATE(1328)] = 12887, - [SMALL_STATE(1329)] = 12970, - [SMALL_STATE(1330)] = 13041, - [SMALL_STATE(1331)] = 13110, - [SMALL_STATE(1332)] = 13179, - [SMALL_STATE(1333)] = 13252, - [SMALL_STATE(1334)] = 13323, - [SMALL_STATE(1335)] = 13400, - [SMALL_STATE(1336)] = 13475, - [SMALL_STATE(1337)] = 13544, - [SMALL_STATE(1338)] = 13621, - [SMALL_STATE(1339)] = 13692, - [SMALL_STATE(1340)] = 13771, - [SMALL_STATE(1341)] = 13848, - [SMALL_STATE(1342)] = 13919, - [SMALL_STATE(1343)] = 13992, - [SMALL_STATE(1344)] = 14058, - [SMALL_STATE(1345)] = 14132, - [SMALL_STATE(1346)] = 14202, - [SMALL_STATE(1347)] = 14322, - [SMALL_STATE(1348)] = 14394, - [SMALL_STATE(1349)] = 14464, - [SMALL_STATE(1350)] = 14540, - [SMALL_STATE(1351)] = 14610, - [SMALL_STATE(1352)] = 14730, - [SMALL_STATE(1353)] = 14850, - [SMALL_STATE(1354)] = 14920, - [SMALL_STATE(1355)] = 14992, - [SMALL_STATE(1356)] = 15112, - [SMALL_STATE(1357)] = 15184, - [SMALL_STATE(1358)] = 15258, - [SMALL_STATE(1359)] = 15328, - [SMALL_STATE(1360)] = 15448, - [SMALL_STATE(1361)] = 15514, - [SMALL_STATE(1362)] = 15588, - [SMALL_STATE(1363)] = 15658, - [SMALL_STATE(1364)] = 15732, - [SMALL_STATE(1365)] = 15802, - [SMALL_STATE(1366)] = 15870, - [SMALL_STATE(1367)] = 15940, - [SMALL_STATE(1368)] = 16060, - [SMALL_STATE(1369)] = 16129, - [SMALL_STATE(1370)] = 16200, - [SMALL_STATE(1371)] = 16269, - [SMALL_STATE(1372)] = 16338, - [SMALL_STATE(1373)] = 16407, - [SMALL_STATE(1374)] = 16474, - [SMALL_STATE(1375)] = 16545, - [SMALL_STATE(1376)] = 16618, - [SMALL_STATE(1377)] = 16691, - [SMALL_STATE(1378)] = 16758, - [SMALL_STATE(1379)] = 16827, - [SMALL_STATE(1380)] = 16896, - [SMALL_STATE(1381)] = 16965, - [SMALL_STATE(1382)] = 17034, - [SMALL_STATE(1383)] = 17102, - [SMALL_STATE(1384)] = 17170, - [SMALL_STATE(1385)] = 17238, - [SMALL_STATE(1386)] = 17354, - [SMALL_STATE(1387)] = 17470, - [SMALL_STATE(1388)] = 17538, - [SMALL_STATE(1389)] = 17654, - [SMALL_STATE(1390)] = 17770, - [SMALL_STATE(1391)] = 17840, - [SMALL_STATE(1392)] = 17956, - [SMALL_STATE(1393)] = 18072, - [SMALL_STATE(1394)] = 18140, - [SMALL_STATE(1395)] = 18208, - [SMALL_STATE(1396)] = 18324, - [SMALL_STATE(1397)] = 18440, - [SMALL_STATE(1398)] = 18556, - [SMALL_STATE(1399)] = 18624, - [SMALL_STATE(1400)] = 18692, - [SMALL_STATE(1401)] = 18760, - [SMALL_STATE(1402)] = 18828, - [SMALL_STATE(1403)] = 18944, - [SMALL_STATE(1404)] = 19060, - [SMALL_STATE(1405)] = 19128, - [SMALL_STATE(1406)] = 19244, - [SMALL_STATE(1407)] = 19312, - [SMALL_STATE(1408)] = 19380, - [SMALL_STATE(1409)] = 19448, - [SMALL_STATE(1410)] = 19516, - [SMALL_STATE(1411)] = 19584, - [SMALL_STATE(1412)] = 19652, - [SMALL_STATE(1413)] = 19768, - [SMALL_STATE(1414)] = 19834, - [SMALL_STATE(1415)] = 19900, - [SMALL_STATE(1416)] = 19968, - [SMALL_STATE(1417)] = 20036, - [SMALL_STATE(1418)] = 20152, - [SMALL_STATE(1419)] = 20268, - [SMALL_STATE(1420)] = 20336, - [SMALL_STATE(1421)] = 20452, - [SMALL_STATE(1422)] = 20568, - [SMALL_STATE(1423)] = 20684, - [SMALL_STATE(1424)] = 20752, - [SMALL_STATE(1425)] = 20817, - [SMALL_STATE(1426)] = 20882, - [SMALL_STATE(1427)] = 20947, - [SMALL_STATE(1428)] = 21012, - [SMALL_STATE(1429)] = 21077, - [SMALL_STATE(1430)] = 21142, - [SMALL_STATE(1431)] = 21207, - [SMALL_STATE(1432)] = 21272, - [SMALL_STATE(1433)] = 21337, - [SMALL_STATE(1434)] = 21449, - [SMALL_STATE(1435)] = 21561, - [SMALL_STATE(1436)] = 21673, - [SMALL_STATE(1437)] = 21785, - [SMALL_STATE(1438)] = 21897, - [SMALL_STATE(1439)] = 22009, - [SMALL_STATE(1440)] = 22121, - [SMALL_STATE(1441)] = 22232, - [SMALL_STATE(1442)] = 22343, - [SMALL_STATE(1443)] = 22462, - [SMALL_STATE(1444)] = 22573, - [SMALL_STATE(1445)] = 22692, - [SMALL_STATE(1446)] = 22803, - [SMALL_STATE(1447)] = 22914, - [SMALL_STATE(1448)] = 23025, - [SMALL_STATE(1449)] = 23144, - [SMALL_STATE(1450)] = 23255, - [SMALL_STATE(1451)] = 23366, - [SMALL_STATE(1452)] = 23477, - [SMALL_STATE(1453)] = 23596, - [SMALL_STATE(1454)] = 23707, - [SMALL_STATE(1455)] = 23826, - [SMALL_STATE(1456)] = 23937, - [SMALL_STATE(1457)] = 24039, - [SMALL_STATE(1458)] = 24141, - [SMALL_STATE(1459)] = 24243, - [SMALL_STATE(1460)] = 24345, - [SMALL_STATE(1461)] = 24423, - [SMALL_STATE(1462)] = 24525, - [SMALL_STATE(1463)] = 24627, - [SMALL_STATE(1464)] = 24736, - [SMALL_STATE(1465)] = 24793, - [SMALL_STATE(1466)] = 24904, - [SMALL_STATE(1467)] = 24971, - [SMALL_STATE(1468)] = 25036, - [SMALL_STATE(1469)] = 25093, - [SMALL_STATE(1470)] = 25160, - [SMALL_STATE(1471)] = 25227, - [SMALL_STATE(1472)] = 25283, - [SMALL_STATE(1473)] = 25341, - [SMALL_STATE(1474)] = 25401, - [SMALL_STATE(1475)] = 25457, - [SMALL_STATE(1476)] = 25513, - [SMALL_STATE(1477)] = 25569, - [SMALL_STATE(1478)] = 25625, - [SMALL_STATE(1479)] = 25687, - [SMALL_STATE(1480)] = 25745, - [SMALL_STATE(1481)] = 25805, - [SMALL_STATE(1482)] = 25867, - [SMALL_STATE(1483)] = 25925, - [SMALL_STATE(1484)] = 26019, - [SMALL_STATE(1485)] = 26075, - [SMALL_STATE(1486)] = 26131, - [SMALL_STATE(1487)] = 26199, - [SMALL_STATE(1488)] = 26254, - [SMALL_STATE(1489)] = 26313, - [SMALL_STATE(1490)] = 26368, - [SMALL_STATE(1491)] = 26423, - [SMALL_STATE(1492)] = 26480, - [SMALL_STATE(1493)] = 26535, - [SMALL_STATE(1494)] = 26592, - [SMALL_STATE(1495)] = 26647, - [SMALL_STATE(1496)] = 26702, - [SMALL_STATE(1497)] = 26759, - [SMALL_STATE(1498)] = 26816, - [SMALL_STATE(1499)] = 26873, - [SMALL_STATE(1500)] = 26928, - [SMALL_STATE(1501)] = 26983, - [SMALL_STATE(1502)] = 27038, - [SMALL_STATE(1503)] = 27095, - [SMALL_STATE(1504)] = 27150, - [SMALL_STATE(1505)] = 27205, - [SMALL_STATE(1506)] = 27260, - [SMALL_STATE(1507)] = 27321, - [SMALL_STATE(1508)] = 27376, - [SMALL_STATE(1509)] = 27437, - [SMALL_STATE(1510)] = 27498, - [SMALL_STATE(1511)] = 27559, - [SMALL_STATE(1512)] = 27616, - [SMALL_STATE(1513)] = 27675, - [SMALL_STATE(1514)] = 27732, - [SMALL_STATE(1515)] = 27793, - [SMALL_STATE(1516)] = 27848, - [SMALL_STATE(1517)] = 27905, - [SMALL_STATE(1518)] = 27960, - [SMALL_STATE(1519)] = 28015, - [SMALL_STATE(1520)] = 28070, - [SMALL_STATE(1521)] = 28125, - [SMALL_STATE(1522)] = 28180, - [SMALL_STATE(1523)] = 28235, - [SMALL_STATE(1524)] = 28290, - [SMALL_STATE(1525)] = 28345, - [SMALL_STATE(1526)] = 28400, - [SMALL_STATE(1527)] = 28455, - [SMALL_STATE(1528)] = 28510, - [SMALL_STATE(1529)] = 28565, - [SMALL_STATE(1530)] = 28628, - [SMALL_STATE(1531)] = 28683, - [SMALL_STATE(1532)] = 28740, - [SMALL_STATE(1533)] = 28801, - [SMALL_STATE(1534)] = 28856, - [SMALL_STATE(1535)] = 28911, - [SMALL_STATE(1536)] = 28968, - [SMALL_STATE(1537)] = 29023, - [SMALL_STATE(1538)] = 29080, - [SMALL_STATE(1539)] = 29141, - [SMALL_STATE(1540)] = 29196, - [SMALL_STATE(1541)] = 29251, - [SMALL_STATE(1542)] = 29306, - [SMALL_STATE(1543)] = 29361, - [SMALL_STATE(1544)] = 29416, - [SMALL_STATE(1545)] = 29473, - [SMALL_STATE(1546)] = 29528, - [SMALL_STATE(1547)] = 29583, - [SMALL_STATE(1548)] = 29638, - [SMALL_STATE(1549)] = 29693, - [SMALL_STATE(1550)] = 29748, - [SMALL_STATE(1551)] = 29803, - [SMALL_STATE(1552)] = 29864, - [SMALL_STATE(1553)] = 29919, - [SMALL_STATE(1554)] = 29974, - [SMALL_STATE(1555)] = 30029, - [SMALL_STATE(1556)] = 30084, - [SMALL_STATE(1557)] = 30139, - [SMALL_STATE(1558)] = 30194, - [SMALL_STATE(1559)] = 30249, - [SMALL_STATE(1560)] = 30304, - [SMALL_STATE(1561)] = 30359, - [SMALL_STATE(1562)] = 30420, - [SMALL_STATE(1563)] = 30475, - [SMALL_STATE(1564)] = 30530, - [SMALL_STATE(1565)] = 30593, - [SMALL_STATE(1566)] = 30654, - [SMALL_STATE(1567)] = 30717, - [SMALL_STATE(1568)] = 30772, - [SMALL_STATE(1569)] = 30831, - [SMALL_STATE(1570)] = 30886, - [SMALL_STATE(1571)] = 30947, - [SMALL_STATE(1572)] = 31002, - [SMALL_STATE(1573)] = 31057, - [SMALL_STATE(1574)] = 31112, - [SMALL_STATE(1575)] = 31173, - [SMALL_STATE(1576)] = 31228, - [SMALL_STATE(1577)] = 31287, - [SMALL_STATE(1578)] = 31342, - [SMALL_STATE(1579)] = 31397, - [SMALL_STATE(1580)] = 31452, - [SMALL_STATE(1581)] = 31507, - [SMALL_STATE(1582)] = 31562, - [SMALL_STATE(1583)] = 31621, - [SMALL_STATE(1584)] = 31676, - [SMALL_STATE(1585)] = 31731, - [SMALL_STATE(1586)] = 31786, - [SMALL_STATE(1587)] = 31841, - [SMALL_STATE(1588)] = 31896, - [SMALL_STATE(1589)] = 31955, - [SMALL_STATE(1590)] = 32010, - [SMALL_STATE(1591)] = 32065, - [SMALL_STATE(1592)] = 32120, - [SMALL_STATE(1593)] = 32175, - [SMALL_STATE(1594)] = 32230, - [SMALL_STATE(1595)] = 32285, - [SMALL_STATE(1596)] = 32344, - [SMALL_STATE(1597)] = 32399, - [SMALL_STATE(1598)] = 32454, - [SMALL_STATE(1599)] = 32509, - [SMALL_STATE(1600)] = 32564, - [SMALL_STATE(1601)] = 32619, - [SMALL_STATE(1602)] = 32674, - [SMALL_STATE(1603)] = 32729, - [SMALL_STATE(1604)] = 32788, - [SMALL_STATE(1605)] = 32843, - [SMALL_STATE(1606)] = 32904, - [SMALL_STATE(1607)] = 32959, - [SMALL_STATE(1608)] = 33020, - [SMALL_STATE(1609)] = 33077, - [SMALL_STATE(1610)] = 33132, - [SMALL_STATE(1611)] = 33242, - [SMALL_STATE(1612)] = 33296, - [SMALL_STATE(1613)] = 33382, - [SMALL_STATE(1614)] = 33480, - [SMALL_STATE(1615)] = 33534, - [SMALL_STATE(1616)] = 33588, - [SMALL_STATE(1617)] = 33674, - [SMALL_STATE(1618)] = 33784, - [SMALL_STATE(1619)] = 33884, - [SMALL_STATE(1620)] = 33938, - [SMALL_STATE(1621)] = 34048, - [SMALL_STATE(1622)] = 34102, - [SMALL_STATE(1623)] = 34156, - [SMALL_STATE(1624)] = 34210, - [SMALL_STATE(1625)] = 34264, - [SMALL_STATE(1626)] = 34318, - [SMALL_STATE(1627)] = 34398, - [SMALL_STATE(1628)] = 34452, - [SMALL_STATE(1629)] = 34526, - [SMALL_STATE(1630)] = 34580, - [SMALL_STATE(1631)] = 34634, - [SMALL_STATE(1632)] = 34688, - [SMALL_STATE(1633)] = 34742, - [SMALL_STATE(1634)] = 34796, - [SMALL_STATE(1635)] = 34906, - [SMALL_STATE(1636)] = 35016, - [SMALL_STATE(1637)] = 35070, - [SMALL_STATE(1638)] = 35124, - [SMALL_STATE(1639)] = 35178, - [SMALL_STATE(1640)] = 35232, - [SMALL_STATE(1641)] = 35286, - [SMALL_STATE(1642)] = 35396, - [SMALL_STATE(1643)] = 35450, - [SMALL_STATE(1644)] = 35504, - [SMALL_STATE(1645)] = 35558, - [SMALL_STATE(1646)] = 35612, - [SMALL_STATE(1647)] = 35704, - [SMALL_STATE(1648)] = 35758, - [SMALL_STATE(1649)] = 35812, - [SMALL_STATE(1650)] = 35866, - [SMALL_STATE(1651)] = 35920, - [SMALL_STATE(1652)] = 35974, - [SMALL_STATE(1653)] = 36028, - [SMALL_STATE(1654)] = 36102, - [SMALL_STATE(1655)] = 36156, - [SMALL_STATE(1656)] = 36242, - [SMALL_STATE(1657)] = 36328, - [SMALL_STATE(1658)] = 36382, - [SMALL_STATE(1659)] = 36436, - [SMALL_STATE(1660)] = 36530, - [SMALL_STATE(1661)] = 36618, - [SMALL_STATE(1662)] = 36672, - [SMALL_STATE(1663)] = 36726, - [SMALL_STATE(1664)] = 36780, - [SMALL_STATE(1665)] = 36834, - [SMALL_STATE(1666)] = 36888, - [SMALL_STATE(1667)] = 36984, - [SMALL_STATE(1668)] = 37038, - [SMALL_STATE(1669)] = 37092, - [SMALL_STATE(1670)] = 37146, - [SMALL_STATE(1671)] = 37200, - [SMALL_STATE(1672)] = 37254, - [SMALL_STATE(1673)] = 37364, - [SMALL_STATE(1674)] = 37418, - [SMALL_STATE(1675)] = 37528, - [SMALL_STATE(1676)] = 37582, - [SMALL_STATE(1677)] = 37636, - [SMALL_STATE(1678)] = 37714, - [SMALL_STATE(1679)] = 37768, - [SMALL_STATE(1680)] = 37822, - [SMALL_STATE(1681)] = 37900, - [SMALL_STATE(1682)] = 37954, - [SMALL_STATE(1683)] = 38008, - [SMALL_STATE(1684)] = 38062, - [SMALL_STATE(1685)] = 38116, - [SMALL_STATE(1686)] = 38170, - [SMALL_STATE(1687)] = 38224, - [SMALL_STATE(1688)] = 38278, - [SMALL_STATE(1689)] = 38332, - [SMALL_STATE(1690)] = 38412, - [SMALL_STATE(1691)] = 38466, - [SMALL_STATE(1692)] = 38520, - [SMALL_STATE(1693)] = 38576, - [SMALL_STATE(1694)] = 38686, - [SMALL_STATE(1695)] = 38772, - [SMALL_STATE(1696)] = 38826, - [SMALL_STATE(1697)] = 38880, - [SMALL_STATE(1698)] = 38936, - [SMALL_STATE(1699)] = 38990, - [SMALL_STATE(1700)] = 39100, - [SMALL_STATE(1701)] = 39184, - [SMALL_STATE(1702)] = 39240, - [SMALL_STATE(1703)] = 39350, - [SMALL_STATE(1704)] = 39404, - [SMALL_STATE(1705)] = 39458, - [SMALL_STATE(1706)] = 39512, - [SMALL_STATE(1707)] = 39566, - [SMALL_STATE(1708)] = 39620, - [SMALL_STATE(1709)] = 39722, - [SMALL_STATE(1710)] = 39776, - [SMALL_STATE(1711)] = 39830, - [SMALL_STATE(1712)] = 39884, - [SMALL_STATE(1713)] = 39954, - [SMALL_STATE(1714)] = 40008, - [SMALL_STATE(1715)] = 40062, - [SMALL_STATE(1716)] = 40116, - [SMALL_STATE(1717)] = 40226, - [SMALL_STATE(1718)] = 40280, - [SMALL_STATE(1719)] = 40390, - [SMALL_STATE(1720)] = 40444, - [SMALL_STATE(1721)] = 40504, - [SMALL_STATE(1722)] = 40558, - [SMALL_STATE(1723)] = 40618, - [SMALL_STATE(1724)] = 40672, - [SMALL_STATE(1725)] = 40726, - [SMALL_STATE(1726)] = 40836, - [SMALL_STATE(1727)] = 40908, - [SMALL_STATE(1728)] = 40968, - [SMALL_STATE(1729)] = 41023, - [SMALL_STATE(1730)] = 41080, - [SMALL_STATE(1731)] = 41143, - [SMALL_STATE(1732)] = 41196, - [SMALL_STATE(1733)] = 41253, - [SMALL_STATE(1734)] = 41308, - [SMALL_STATE(1735)] = 41387, - [SMALL_STATE(1736)] = 41466, - [SMALL_STATE(1737)] = 41545, - [SMALL_STATE(1738)] = 41608, - [SMALL_STATE(1739)] = 41685, - [SMALL_STATE(1740)] = 41794, - [SMALL_STATE(1741)] = 41871, - [SMALL_STATE(1742)] = 41924, - [SMALL_STATE(1743)] = 41977, - [SMALL_STATE(1744)] = 42056, - [SMALL_STATE(1745)] = 42109, - [SMALL_STATE(1746)] = 42186, - [SMALL_STATE(1747)] = 42249, - [SMALL_STATE(1748)] = 42302, - [SMALL_STATE(1749)] = 42381, - [SMALL_STATE(1750)] = 42462, - [SMALL_STATE(1751)] = 42539, - [SMALL_STATE(1752)] = 42596, - [SMALL_STATE(1753)] = 42675, - [SMALL_STATE(1754)] = 42754, - [SMALL_STATE(1755)] = 42815, - [SMALL_STATE(1756)] = 42868, - [SMALL_STATE(1757)] = 42945, - [SMALL_STATE(1758)] = 43006, - [SMALL_STATE(1759)] = 43076, - [SMALL_STATE(1760)] = 43192, - [SMALL_STATE(1761)] = 43268, - [SMALL_STATE(1762)] = 43376, - [SMALL_STATE(1763)] = 43430, - [SMALL_STATE(1764)] = 43538, - [SMALL_STATE(1765)] = 43596, - [SMALL_STATE(1766)] = 43654, - [SMALL_STATE(1767)] = 43706, - [SMALL_STATE(1768)] = 43764, - [SMALL_STATE(1769)] = 43820, - [SMALL_STATE(1770)] = 43878, - [SMALL_STATE(1771)] = 43932, - [SMALL_STATE(1772)] = 44040, - [SMALL_STATE(1773)] = 44148, - [SMALL_STATE(1774)] = 44230, - [SMALL_STATE(1775)] = 44282, - [SMALL_STATE(1776)] = 44354, - [SMALL_STATE(1777)] = 44450, - [SMALL_STATE(1778)] = 44548, - [SMALL_STATE(1779)] = 44626, - [SMALL_STATE(1780)] = 44716, - [SMALL_STATE(1781)] = 44808, - [SMALL_STATE(1782)] = 44860, - [SMALL_STATE(1783)] = 44954, - [SMALL_STATE(1784)] = 45030, - [SMALL_STATE(1785)] = 45108, - [SMALL_STATE(1786)] = 45194, - [SMALL_STATE(1787)] = 45294, - [SMALL_STATE(1788)] = 45366, - [SMALL_STATE(1789)] = 45474, - [SMALL_STATE(1790)] = 45582, - [SMALL_STATE(1791)] = 45650, - [SMALL_STATE(1792)] = 45704, - [SMALL_STATE(1793)] = 45758, - [SMALL_STATE(1794)] = 45830, - [SMALL_STATE(1795)] = 45884, - [SMALL_STATE(1796)] = 45938, - [SMALL_STATE(1797)] = 45996, - [SMALL_STATE(1798)] = 46050, - [SMALL_STATE(1799)] = 46106, - [SMALL_STATE(1800)] = 46162, - [SMALL_STATE(1801)] = 46218, - [SMALL_STATE(1802)] = 46282, - [SMALL_STATE(1803)] = 46342, - [SMALL_STATE(1804)] = 46402, - [SMALL_STATE(1805)] = 46462, - [SMALL_STATE(1806)] = 46536, - [SMALL_STATE(1807)] = 46606, - [SMALL_STATE(1808)] = 46668, - [SMALL_STATE(1809)] = 46730, - [SMALL_STATE(1810)] = 46838, - [SMALL_STATE(1811)] = 46906, - [SMALL_STATE(1812)] = 47014, - [SMALL_STATE(1813)] = 47130, - [SMALL_STATE(1814)] = 47238, - [SMALL_STATE(1815)] = 47346, - [SMALL_STATE(1816)] = 47398, - [SMALL_STATE(1817)] = 47458, - [SMALL_STATE(1818)] = 47530, - [SMALL_STATE(1819)] = 47602, - [SMALL_STATE(1820)] = 47662, - [SMALL_STATE(1821)] = 47778, - [SMALL_STATE(1822)] = 47886, - [SMALL_STATE(1823)] = 47994, - [SMALL_STATE(1824)] = 48066, - [SMALL_STATE(1825)] = 48182, - [SMALL_STATE(1826)] = 48290, - [SMALL_STATE(1827)] = 48398, - [SMALL_STATE(1828)] = 48506, - [SMALL_STATE(1829)] = 48614, - [SMALL_STATE(1830)] = 48722, - [SMALL_STATE(1831)] = 48804, - [SMALL_STATE(1832)] = 48876, - [SMALL_STATE(1833)] = 48972, - [SMALL_STATE(1834)] = 49070, - [SMALL_STATE(1835)] = 49148, - [SMALL_STATE(1836)] = 49238, - [SMALL_STATE(1837)] = 49330, - [SMALL_STATE(1838)] = 49424, - [SMALL_STATE(1839)] = 49500, - [SMALL_STATE(1840)] = 49578, - [SMALL_STATE(1841)] = 49664, - [SMALL_STATE(1842)] = 49764, - [SMALL_STATE(1843)] = 49872, - [SMALL_STATE(1844)] = 49980, - [SMALL_STATE(1845)] = 50088, - [SMALL_STATE(1846)] = 50196, - [SMALL_STATE(1847)] = 50304, - [SMALL_STATE(1848)] = 50412, - [SMALL_STATE(1849)] = 50520, - [SMALL_STATE(1850)] = 50628, - [SMALL_STATE(1851)] = 50702, - [SMALL_STATE(1852)] = 50754, - [SMALL_STATE(1853)] = 50862, - [SMALL_STATE(1854)] = 50940, - [SMALL_STATE(1855)] = 51016, - [SMALL_STATE(1856)] = 51124, - [SMALL_STATE(1857)] = 51232, - [SMALL_STATE(1858)] = 51283, - [SMALL_STATE(1859)] = 51334, - [SMALL_STATE(1860)] = 51385, - [SMALL_STATE(1861)] = 51436, - [SMALL_STATE(1862)] = 51487, - [SMALL_STATE(1863)] = 51538, - [SMALL_STATE(1864)] = 51589, - [SMALL_STATE(1865)] = 51640, - [SMALL_STATE(1866)] = 51691, - [SMALL_STATE(1867)] = 51742, - [SMALL_STATE(1868)] = 51793, - [SMALL_STATE(1869)] = 51844, - [SMALL_STATE(1870)] = 51895, - [SMALL_STATE(1871)] = 51946, - [SMALL_STATE(1872)] = 51997, - [SMALL_STATE(1873)] = 52048, - [SMALL_STATE(1874)] = 52099, - [SMALL_STATE(1875)] = 52156, - [SMALL_STATE(1876)] = 52207, - [SMALL_STATE(1877)] = 52258, - [SMALL_STATE(1878)] = 52315, - [SMALL_STATE(1879)] = 52366, - [SMALL_STATE(1880)] = 52417, - [SMALL_STATE(1881)] = 52468, - [SMALL_STATE(1882)] = 52519, - [SMALL_STATE(1883)] = 52570, - [SMALL_STATE(1884)] = 52621, - [SMALL_STATE(1885)] = 52672, - [SMALL_STATE(1886)] = 52723, - [SMALL_STATE(1887)] = 52774, - [SMALL_STATE(1888)] = 52825, - [SMALL_STATE(1889)] = 52876, - [SMALL_STATE(1890)] = 52927, - [SMALL_STATE(1891)] = 52978, - [SMALL_STATE(1892)] = 53029, - [SMALL_STATE(1893)] = 53080, - [SMALL_STATE(1894)] = 53131, - [SMALL_STATE(1895)] = 53182, - [SMALL_STATE(1896)] = 53233, - [SMALL_STATE(1897)] = 53284, - [SMALL_STATE(1898)] = 53335, - [SMALL_STATE(1899)] = 53386, - [SMALL_STATE(1900)] = 53437, - [SMALL_STATE(1901)] = 53488, - [SMALL_STATE(1902)] = 53539, - [SMALL_STATE(1903)] = 53590, - [SMALL_STATE(1904)] = 53641, - [SMALL_STATE(1905)] = 53692, - [SMALL_STATE(1906)] = 53749, - [SMALL_STATE(1907)] = 53804, - [SMALL_STATE(1908)] = 53855, - [SMALL_STATE(1909)] = 53966, - [SMALL_STATE(1910)] = 54077, - [SMALL_STATE(1911)] = 54160, - [SMALL_STATE(1912)] = 54271, - [SMALL_STATE(1913)] = 54382, - [SMALL_STATE(1914)] = 54439, - [SMALL_STATE(1915)] = 54550, - [SMALL_STATE(1916)] = 54603, - [SMALL_STATE(1917)] = 54712, - [SMALL_STATE(1918)] = 54775, - [SMALL_STATE(1919)] = 54832, - [SMALL_STATE(1920)] = 54895, - [SMALL_STATE(1921)] = 54946, - [SMALL_STATE(1922)] = 54999, - [SMALL_STATE(1923)] = 55050, - [SMALL_STATE(1924)] = 55103, - [SMALL_STATE(1925)] = 55160, - [SMALL_STATE(1926)] = 55217, - [SMALL_STATE(1927)] = 55268, - [SMALL_STATE(1928)] = 55321, - [SMALL_STATE(1929)] = 55372, - [SMALL_STATE(1930)] = 55455, - [SMALL_STATE(1931)] = 55566, - [SMALL_STATE(1932)] = 55623, - [SMALL_STATE(1933)] = 55686, - [SMALL_STATE(1934)] = 55749, - [SMALL_STATE(1935)] = 55804, - [SMALL_STATE(1936)] = 55863, - [SMALL_STATE(1937)] = 55974, - [SMALL_STATE(1938)] = 56029, - [SMALL_STATE(1939)] = 56086, - [SMALL_STATE(1940)] = 56141, - [SMALL_STATE(1941)] = 56214, - [SMALL_STATE(1942)] = 56283, - [SMALL_STATE(1943)] = 56334, - [SMALL_STATE(1944)] = 56407, - [SMALL_STATE(1945)] = 56476, - [SMALL_STATE(1946)] = 56531, - [SMALL_STATE(1947)] = 56604, - [SMALL_STATE(1948)] = 56687, - [SMALL_STATE(1949)] = 56750, - [SMALL_STATE(1950)] = 56813, - [SMALL_STATE(1951)] = 56876, - [SMALL_STATE(1952)] = 56939, - [SMALL_STATE(1953)] = 56992, - [SMALL_STATE(1954)] = 57043, - [SMALL_STATE(1955)] = 57096, - [SMALL_STATE(1956)] = 57179, - [SMALL_STATE(1957)] = 57244, - [SMALL_STATE(1958)] = 57309, - [SMALL_STATE(1959)] = 57366, - [SMALL_STATE(1960)] = 57423, - [SMALL_STATE(1961)] = 57480, - [SMALL_STATE(1962)] = 57533, - [SMALL_STATE(1963)] = 57584, - [SMALL_STATE(1964)] = 57637, - [SMALL_STATE(1965)] = 57688, - [SMALL_STATE(1966)] = 57761, - [SMALL_STATE(1967)] = 57812, - [SMALL_STATE(1968)] = 57869, - [SMALL_STATE(1969)] = 57926, - [SMALL_STATE(1970)] = 58035, - [SMALL_STATE(1971)] = 58088, - [SMALL_STATE(1972)] = 58157, - [SMALL_STATE(1973)] = 58208, - [SMALL_STATE(1974)] = 58261, - [SMALL_STATE(1975)] = 58320, - [SMALL_STATE(1976)] = 58371, - [SMALL_STATE(1977)] = 58422, - [SMALL_STATE(1978)] = 58477, - [SMALL_STATE(1979)] = 58534, - [SMALL_STATE(1980)] = 58587, - [SMALL_STATE(1981)] = 58638, - [SMALL_STATE(1982)] = 58691, - [SMALL_STATE(1983)] = 58748, - [SMALL_STATE(1984)] = 58805, - [SMALL_STATE(1985)] = 58864, - [SMALL_STATE(1986)] = 58917, - [SMALL_STATE(1987)] = 58990, - [SMALL_STATE(1988)] = 59041, - [SMALL_STATE(1989)] = 59094, - [SMALL_STATE(1990)] = 59151, - [SMALL_STATE(1991)] = 59202, - [SMALL_STATE(1992)] = 59259, - [SMALL_STATE(1993)] = 59342, - [SMALL_STATE(1994)] = 59393, - [SMALL_STATE(1995)] = 59444, - [SMALL_STATE(1996)] = 59495, - [SMALL_STATE(1997)] = 59546, - [SMALL_STATE(1998)] = 59597, - [SMALL_STATE(1999)] = 59648, - [SMALL_STATE(2000)] = 59699, - [SMALL_STATE(2001)] = 59750, - [SMALL_STATE(2002)] = 59801, - [SMALL_STATE(2003)] = 59860, - [SMALL_STATE(2004)] = 59911, - [SMALL_STATE(2005)] = 59962, - [SMALL_STATE(2006)] = 60015, - [SMALL_STATE(2007)] = 60066, - [SMALL_STATE(2008)] = 60117, - [SMALL_STATE(2009)] = 60170, - [SMALL_STATE(2010)] = 60221, - [SMALL_STATE(2011)] = 60278, - [SMALL_STATE(2012)] = 60329, - [SMALL_STATE(2013)] = 60380, - [SMALL_STATE(2014)] = 60453, - [SMALL_STATE(2015)] = 60522, - [SMALL_STATE(2016)] = 60573, - [SMALL_STATE(2017)] = 60646, - [SMALL_STATE(2018)] = 60709, - [SMALL_STATE(2019)] = 60816, - [SMALL_STATE(2020)] = 60867, - [SMALL_STATE(2021)] = 60918, - [SMALL_STATE(2022)] = 60987, - [SMALL_STATE(2023)] = 61040, - [SMALL_STATE(2024)] = 61111, - [SMALL_STATE(2025)] = 61164, - [SMALL_STATE(2026)] = 61247, - [SMALL_STATE(2027)] = 61320, - [SMALL_STATE(2028)] = 61373, - [SMALL_STATE(2029)] = 61424, - [SMALL_STATE(2030)] = 61475, - [SMALL_STATE(2031)] = 61526, - [SMALL_STATE(2032)] = 61633, - [SMALL_STATE(2033)] = 61740, - [SMALL_STATE(2034)] = 61847, - [SMALL_STATE(2035)] = 61954, - [SMALL_STATE(2036)] = 62061, - [SMALL_STATE(2037)] = 62142, - [SMALL_STATE(2038)] = 62213, - [SMALL_STATE(2039)] = 62308, - [SMALL_STATE(2040)] = 62405, - [SMALL_STATE(2041)] = 62482, - [SMALL_STATE(2042)] = 62571, - [SMALL_STATE(2043)] = 62662, - [SMALL_STATE(2044)] = 62755, - [SMALL_STATE(2045)] = 62830, - [SMALL_STATE(2046)] = 62907, - [SMALL_STATE(2047)] = 62992, - [SMALL_STATE(2048)] = 63091, - [SMALL_STATE(2049)] = 63198, - [SMALL_STATE(2050)] = 63305, - [SMALL_STATE(2051)] = 63412, - [SMALL_STATE(2052)] = 63519, - [SMALL_STATE(2053)] = 63626, - [SMALL_STATE(2054)] = 63733, - [SMALL_STATE(2055)] = 63840, - [SMALL_STATE(2056)] = 63947, - [SMALL_STATE(2057)] = 64016, - [SMALL_STATE(2058)] = 64091, - [SMALL_STATE(2059)] = 64198, - [SMALL_STATE(2060)] = 64265, - [SMALL_STATE(2061)] = 64318, - [SMALL_STATE(2062)] = 64368, - [SMALL_STATE(2063)] = 64418, - [SMALL_STATE(2064)] = 64472, - [SMALL_STATE(2065)] = 64526, - [SMALL_STATE(2066)] = 64580, - [SMALL_STATE(2067)] = 64630, - [SMALL_STATE(2068)] = 64684, - [SMALL_STATE(2069)] = 64738, - [SMALL_STATE(2070)] = 64802, - [SMALL_STATE(2071)] = 64856, - [SMALL_STATE(2072)] = 64906, - [SMALL_STATE(2073)] = 65012, - [SMALL_STATE(2074)] = 65076, - [SMALL_STATE(2075)] = 65142, - [SMALL_STATE(2076)] = 65252, - [SMALL_STATE(2077)] = 65306, - [SMALL_STATE(2078)] = 65412, - [SMALL_STATE(2079)] = 65522, - [SMALL_STATE(2080)] = 65572, - [SMALL_STATE(2081)] = 65622, - [SMALL_STATE(2082)] = 65672, - [SMALL_STATE(2083)] = 65736, - [SMALL_STATE(2084)] = 65790, - [SMALL_STATE(2085)] = 65856, - [SMALL_STATE(2086)] = 65930, - [SMALL_STATE(2087)] = 65994, - [SMALL_STATE(2088)] = 66070, - [SMALL_STATE(2089)] = 66126, - [SMALL_STATE(2090)] = 66176, - [SMALL_STATE(2091)] = 66226, - [SMALL_STATE(2092)] = 66300, - [SMALL_STATE(2093)] = 66356, - [SMALL_STATE(2094)] = 66420, - [SMALL_STATE(2095)] = 66496, - [SMALL_STATE(2096)] = 66570, - [SMALL_STATE(2097)] = 66620, - [SMALL_STATE(2098)] = 66696, - [SMALL_STATE(2099)] = 66758, - [SMALL_STATE(2100)] = 66820, - [SMALL_STATE(2101)] = 66874, - [SMALL_STATE(2102)] = 66940, - [SMALL_STATE(2103)] = 67004, - [SMALL_STATE(2104)] = 67062, - [SMALL_STATE(2105)] = 67120, - [SMALL_STATE(2106)] = 67170, - [SMALL_STATE(2107)] = 67232, - [SMALL_STATE(2108)] = 67294, - [SMALL_STATE(2109)] = 67360, - [SMALL_STATE(2110)] = 67420, - [SMALL_STATE(2111)] = 67480, - [SMALL_STATE(2112)] = 67542, - [SMALL_STATE(2113)] = 67604, - [SMALL_STATE(2114)] = 67666, - [SMALL_STATE(2115)] = 67728, - [SMALL_STATE(2116)] = 67794, - [SMALL_STATE(2117)] = 67848, - [SMALL_STATE(2118)] = 67910, - [SMALL_STATE(2119)] = 67972, - [SMALL_STATE(2120)] = 68038, - [SMALL_STATE(2121)] = 68088, - [SMALL_STATE(2122)] = 68138, - [SMALL_STATE(2123)] = 68192, - [SMALL_STATE(2124)] = 68242, - [SMALL_STATE(2125)] = 68292, - [SMALL_STATE(2126)] = 68346, - [SMALL_STATE(2127)] = 68396, - [SMALL_STATE(2128)] = 68446, - [SMALL_STATE(2129)] = 68496, - [SMALL_STATE(2130)] = 68606, - [SMALL_STATE(2131)] = 68656, - [SMALL_STATE(2132)] = 68706, - [SMALL_STATE(2133)] = 68758, - [SMALL_STATE(2134)] = 68808, - [SMALL_STATE(2135)] = 68858, - [SMALL_STATE(2136)] = 68964, - [SMALL_STATE(2137)] = 69070, - [SMALL_STATE(2138)] = 69120, - [SMALL_STATE(2139)] = 69226, - [SMALL_STATE(2140)] = 69276, - [SMALL_STATE(2141)] = 69326, - [SMALL_STATE(2142)] = 69376, - [SMALL_STATE(2143)] = 69482, - [SMALL_STATE(2144)] = 69588, - [SMALL_STATE(2145)] = 69668, - [SMALL_STATE(2146)] = 69778, - [SMALL_STATE(2147)] = 69848, - [SMALL_STATE(2148)] = 69958, - [SMALL_STATE(2149)] = 70052, - [SMALL_STATE(2150)] = 70148, - [SMALL_STATE(2151)] = 70224, - [SMALL_STATE(2152)] = 70312, - [SMALL_STATE(2153)] = 70402, - [SMALL_STATE(2154)] = 70494, - [SMALL_STATE(2155)] = 70568, - [SMALL_STATE(2156)] = 70644, - [SMALL_STATE(2157)] = 70694, - [SMALL_STATE(2158)] = 70778, - [SMALL_STATE(2159)] = 70876, - [SMALL_STATE(2160)] = 70986, - [SMALL_STATE(2161)] = 71092, - [SMALL_STATE(2162)] = 71198, - [SMALL_STATE(2163)] = 71304, - [SMALL_STATE(2164)] = 71410, - [SMALL_STATE(2165)] = 71516, - [SMALL_STATE(2166)] = 71622, - [SMALL_STATE(2167)] = 71728, - [SMALL_STATE(2168)] = 71838, - [SMALL_STATE(2169)] = 71944, - [SMALL_STATE(2170)] = 72008, - [SMALL_STATE(2171)] = 72116, - [SMALL_STATE(2172)] = 72170, - [SMALL_STATE(2173)] = 72220, - [SMALL_STATE(2174)] = 72326, - [SMALL_STATE(2175)] = 72436, - [SMALL_STATE(2176)] = 72486, - [SMALL_STATE(2177)] = 72538, - [SMALL_STATE(2178)] = 72588, - [SMALL_STATE(2179)] = 72698, - [SMALL_STATE(2180)] = 72748, - [SMALL_STATE(2181)] = 72798, - [SMALL_STATE(2182)] = 72848, - [SMALL_STATE(2183)] = 72958, - [SMALL_STATE(2184)] = 73008, - [SMALL_STATE(2185)] = 73058, - [SMALL_STATE(2186)] = 73168, - [SMALL_STATE(2187)] = 73218, - [SMALL_STATE(2188)] = 73268, - [SMALL_STATE(2189)] = 73318, - [SMALL_STATE(2190)] = 73368, - [SMALL_STATE(2191)] = 73478, - [SMALL_STATE(2192)] = 73528, - [SMALL_STATE(2193)] = 73578, - [SMALL_STATE(2194)] = 73628, - [SMALL_STATE(2195)] = 73678, - [SMALL_STATE(2196)] = 73728, - [SMALL_STATE(2197)] = 73838, - [SMALL_STATE(2198)] = 73948, - [SMALL_STATE(2199)] = 74058, - [SMALL_STATE(2200)] = 74168, - [SMALL_STATE(2201)] = 74278, - [SMALL_STATE(2202)] = 74388, - [SMALL_STATE(2203)] = 74498, - [SMALL_STATE(2204)] = 74608, - [SMALL_STATE(2205)] = 74662, - [SMALL_STATE(2206)] = 74716, - [SMALL_STATE(2207)] = 74770, - [SMALL_STATE(2208)] = 74838, - [SMALL_STATE(2209)] = 74912, - [SMALL_STATE(2210)] = 75018, - [SMALL_STATE(2211)] = 75084, - [SMALL_STATE(2212)] = 75138, - [SMALL_STATE(2213)] = 75202, - [SMALL_STATE(2214)] = 75252, - [SMALL_STATE(2215)] = 75306, - [SMALL_STATE(2216)] = 75372, - [SMALL_STATE(2217)] = 75482, - [SMALL_STATE(2218)] = 75546, - [SMALL_STATE(2219)] = 75600, - [SMALL_STATE(2220)] = 75650, - [SMALL_STATE(2221)] = 75760, - [SMALL_STATE(2222)] = 75810, - [SMALL_STATE(2223)] = 75860, - [SMALL_STATE(2224)] = 75910, - [SMALL_STATE(2225)] = 76020, - [SMALL_STATE(2226)] = 76078, - [SMALL_STATE(2227)] = 76136, - [SMALL_STATE(2228)] = 76210, - [SMALL_STATE(2229)] = 76260, - [SMALL_STATE(2230)] = 76336, - [SMALL_STATE(2231)] = 76400, - [SMALL_STATE(2232)] = 76450, - [SMALL_STATE(2233)] = 76502, - [SMALL_STATE(2234)] = 76612, - [SMALL_STATE(2235)] = 76722, - [SMALL_STATE(2236)] = 76788, - [SMALL_STATE(2237)] = 76852, - [SMALL_STATE(2238)] = 76910, - [SMALL_STATE(2239)] = 77020, - [SMALL_STATE(2240)] = 77130, - [SMALL_STATE(2241)] = 77194, - [SMALL_STATE(2242)] = 77304, - [SMALL_STATE(2243)] = 77368, - [SMALL_STATE(2244)] = 77478, - [SMALL_STATE(2245)] = 77588, - [SMALL_STATE(2246)] = 77650, - [SMALL_STATE(2247)] = 77716, - [SMALL_STATE(2248)] = 77780, - [SMALL_STATE(2249)] = 77846, - [SMALL_STATE(2250)] = 77952, - [SMALL_STATE(2251)] = 78058, - [SMALL_STATE(2252)] = 78164, - [SMALL_STATE(2253)] = 78270, - [SMALL_STATE(2254)] = 78376, - [SMALL_STATE(2255)] = 78456, - [SMALL_STATE(2256)] = 78526, - [SMALL_STATE(2257)] = 78620, - [SMALL_STATE(2258)] = 78716, - [SMALL_STATE(2259)] = 78792, - [SMALL_STATE(2260)] = 78880, - [SMALL_STATE(2261)] = 78970, - [SMALL_STATE(2262)] = 79062, - [SMALL_STATE(2263)] = 79136, - [SMALL_STATE(2264)] = 79212, - [SMALL_STATE(2265)] = 79296, - [SMALL_STATE(2266)] = 79394, - [SMALL_STATE(2267)] = 79500, - [SMALL_STATE(2268)] = 79606, - [SMALL_STATE(2269)] = 79712, - [SMALL_STATE(2270)] = 79818, - [SMALL_STATE(2271)] = 79924, - [SMALL_STATE(2272)] = 80030, - [SMALL_STATE(2273)] = 80136, - [SMALL_STATE(2274)] = 80242, - [SMALL_STATE(2275)] = 80292, - [SMALL_STATE(2276)] = 80344, - [SMALL_STATE(2277)] = 80404, - [SMALL_STATE(2278)] = 80454, - [SMALL_STATE(2279)] = 80522, - [SMALL_STATE(2280)] = 80590, - [SMALL_STATE(2281)] = 80664, - [SMALL_STATE(2282)] = 80770, - [SMALL_STATE(2283)] = 80836, - [SMALL_STATE(2284)] = 80886, - [SMALL_STATE(2285)] = 80936, - [SMALL_STATE(2286)] = 80986, - [SMALL_STATE(2287)] = 81038, - [SMALL_STATE(2288)] = 81098, - [SMALL_STATE(2289)] = 81152, - [SMALL_STATE(2290)] = 81216, - [SMALL_STATE(2291)] = 81280, - [SMALL_STATE(2292)] = 81330, - [SMALL_STATE(2293)] = 81404, - [SMALL_STATE(2294)] = 81454, - [SMALL_STATE(2295)] = 81530, - [SMALL_STATE(2296)] = 81596, - [SMALL_STATE(2297)] = 81654, - [SMALL_STATE(2298)] = 81718, - [SMALL_STATE(2299)] = 81768, - [SMALL_STATE(2300)] = 81818, - [SMALL_STATE(2301)] = 81868, - [SMALL_STATE(2302)] = 81918, - [SMALL_STATE(2303)] = 81968, - [SMALL_STATE(2304)] = 82018, - [SMALL_STATE(2305)] = 82128, - [SMALL_STATE(2306)] = 82178, - [SMALL_STATE(2307)] = 82288, - [SMALL_STATE(2308)] = 82398, - [SMALL_STATE(2309)] = 82452, - [SMALL_STATE(2310)] = 82516, - [SMALL_STATE(2311)] = 82570, - [SMALL_STATE(2312)] = 82628, - [SMALL_STATE(2313)] = 82734, - [SMALL_STATE(2314)] = 82800, - [SMALL_STATE(2315)] = 82866, - [SMALL_STATE(2316)] = 82976, - [SMALL_STATE(2317)] = 83086, - [SMALL_STATE(2318)] = 83196, - [SMALL_STATE(2319)] = 83250, - [SMALL_STATE(2320)] = 83302, - [SMALL_STATE(2321)] = 83354, - [SMALL_STATE(2322)] = 83408, - [SMALL_STATE(2323)] = 83462, - [SMALL_STATE(2324)] = 83568, - [SMALL_STATE(2325)] = 83622, - [SMALL_STATE(2326)] = 83674, - [SMALL_STATE(2327)] = 83726, - [SMALL_STATE(2328)] = 83780, - [SMALL_STATE(2329)] = 83832, - [SMALL_STATE(2330)] = 83886, - [SMALL_STATE(2331)] = 83996, - [SMALL_STATE(2332)] = 84062, - [SMALL_STATE(2333)] = 84120, - [SMALL_STATE(2334)] = 84230, - [SMALL_STATE(2335)] = 84304, - [SMALL_STATE(2336)] = 84414, - [SMALL_STATE(2337)] = 84490, - [SMALL_STATE(2338)] = 84576, - [SMALL_STATE(2339)] = 84682, - [SMALL_STATE(2340)] = 84732, - [SMALL_STATE(2341)] = 84784, - [SMALL_STATE(2342)] = 84838, - [SMALL_STATE(2343)] = 84896, - [SMALL_STATE(2344)] = 84962, - [SMALL_STATE(2345)] = 85026, - [SMALL_STATE(2346)] = 85092, - [SMALL_STATE(2347)] = 85202, - [SMALL_STATE(2348)] = 85312, - [SMALL_STATE(2349)] = 85422, - [SMALL_STATE(2350)] = 85532, - [SMALL_STATE(2351)] = 85584, - [SMALL_STATE(2352)] = 85694, - [SMALL_STATE(2353)] = 85804, - [SMALL_STATE(2354)] = 85914, - [SMALL_STATE(2355)] = 85972, - [SMALL_STATE(2356)] = 86022, - [SMALL_STATE(2357)] = 86132, - [SMALL_STATE(2358)] = 86186, - [SMALL_STATE(2359)] = 86250, - [SMALL_STATE(2360)] = 86305, - [SMALL_STATE(2361)] = 86392, - [SMALL_STATE(2362)] = 86481, - [SMALL_STATE(2363)] = 86572, - [SMALL_STATE(2364)] = 86645, - [SMALL_STATE(2365)] = 86720, - [SMALL_STATE(2366)] = 86803, - [SMALL_STATE(2367)] = 86900, - [SMALL_STATE(2368)] = 87005, - [SMALL_STATE(2369)] = 87110, - [SMALL_STATE(2370)] = 87215, - [SMALL_STATE(2371)] = 87320, - [SMALL_STATE(2372)] = 87425, - [SMALL_STATE(2373)] = 87530, - [SMALL_STATE(2374)] = 87635, - [SMALL_STATE(2375)] = 87740, - [SMALL_STATE(2376)] = 87817, - [SMALL_STATE(2377)] = 87874, - [SMALL_STATE(2378)] = 87925, - [SMALL_STATE(2379)] = 87994, - [SMALL_STATE(2380)] = 88101, - [SMALL_STATE(2381)] = 88168, - [SMALL_STATE(2382)] = 88241, - [SMALL_STATE(2383)] = 88300, - [SMALL_STATE(2384)] = 88405, - [SMALL_STATE(2385)] = 88470, - [SMALL_STATE(2386)] = 88523, - [SMALL_STATE(2387)] = 88598, - [SMALL_STATE(2388)] = 88703, - [SMALL_STATE(2389)] = 88760, - [SMALL_STATE(2390)] = 88813, - [SMALL_STATE(2391)] = 88872, - [SMALL_STATE(2392)] = 88929, - [SMALL_STATE(2393)] = 88988, - [SMALL_STATE(2394)] = 89047, - [SMALL_STATE(2395)] = 89102, - [SMALL_STATE(2396)] = 89161, - [SMALL_STATE(2397)] = 89250, - [SMALL_STATE(2398)] = 89309, - [SMALL_STATE(2399)] = 89368, - [SMALL_STATE(2400)] = 89427, - [SMALL_STATE(2401)] = 89496, - [SMALL_STATE(2402)] = 89555, - [SMALL_STATE(2403)] = 89610, - [SMALL_STATE(2404)] = 89669, - [SMALL_STATE(2405)] = 89724, - [SMALL_STATE(2406)] = 89793, - [SMALL_STATE(2407)] = 89852, - [SMALL_STATE(2408)] = 89911, - [SMALL_STATE(2409)] = 89966, - [SMALL_STATE(2410)] = 90025, - [SMALL_STATE(2411)] = 90084, - [SMALL_STATE(2412)] = 90135, - [SMALL_STATE(2413)] = 90186, - [SMALL_STATE(2414)] = 90241, - [SMALL_STATE(2415)] = 90300, - [SMALL_STATE(2416)] = 90359, - [SMALL_STATE(2417)] = 90466, - [SMALL_STATE(2418)] = 90525, - [SMALL_STATE(2419)] = 90584, - [SMALL_STATE(2420)] = 90639, - [SMALL_STATE(2421)] = 90698, - [SMALL_STATE(2422)] = 90757, - [SMALL_STATE(2423)] = 90852, - [SMALL_STATE(2424)] = 90927, - [SMALL_STATE(2425)] = 91032, - [SMALL_STATE(2426)] = 91101, - [SMALL_STATE(2427)] = 91170, - [SMALL_STATE(2428)] = 91251, - [SMALL_STATE(2429)] = 91310, - [SMALL_STATE(2430)] = 91415, - [SMALL_STATE(2431)] = 91466, - [SMALL_STATE(2432)] = 91521, - [SMALL_STATE(2433)] = 91626, - [SMALL_STATE(2434)] = 91731, - [SMALL_STATE(2435)] = 91836, - [SMALL_STATE(2436)] = 91941, - [SMALL_STATE(2437)] = 92046, - [SMALL_STATE(2438)] = 92151, - [SMALL_STATE(2439)] = 92256, - [SMALL_STATE(2440)] = 92335, - [SMALL_STATE(2441)] = 92404, - [SMALL_STATE(2442)] = 92497, - [SMALL_STATE(2443)] = 92592, - [SMALL_STATE(2444)] = 92667, - [SMALL_STATE(2445)] = 92754, - [SMALL_STATE(2446)] = 92843, - [SMALL_STATE(2447)] = 92934, - [SMALL_STATE(2448)] = 93007, - [SMALL_STATE(2449)] = 93082, - [SMALL_STATE(2450)] = 93165, - [SMALL_STATE(2451)] = 93262, - [SMALL_STATE(2452)] = 93367, - [SMALL_STATE(2453)] = 93472, - [SMALL_STATE(2454)] = 93577, - [SMALL_STATE(2455)] = 93682, - [SMALL_STATE(2456)] = 93787, - [SMALL_STATE(2457)] = 93892, - [SMALL_STATE(2458)] = 93997, - [SMALL_STATE(2459)] = 94102, - [SMALL_STATE(2460)] = 94159, - [SMALL_STATE(2461)] = 94210, - [SMALL_STATE(2462)] = 94269, - [SMALL_STATE(2463)] = 94320, - [SMALL_STATE(2464)] = 94425, - [SMALL_STATE(2465)] = 94484, - [SMALL_STATE(2466)] = 94551, - [SMALL_STATE(2467)] = 94624, - [SMALL_STATE(2468)] = 94729, - [SMALL_STATE(2469)] = 94794, - [SMALL_STATE(2470)] = 94899, - [SMALL_STATE(2471)] = 95004, - [SMALL_STATE(2472)] = 95109, - [SMALL_STATE(2473)] = 95166, - [SMALL_STATE(2474)] = 95223, - [SMALL_STATE(2475)] = 95328, - [SMALL_STATE(2476)] = 95379, - [SMALL_STATE(2477)] = 95436, - [SMALL_STATE(2478)] = 95541, - [SMALL_STATE(2479)] = 95620, - [SMALL_STATE(2480)] = 95689, - [SMALL_STATE(2481)] = 95782, - [SMALL_STATE(2482)] = 95851, - [SMALL_STATE(2483)] = 95901, - [SMALL_STATE(2484)] = 95951, - [SMALL_STATE(2485)] = 96057, - [SMALL_STATE(2486)] = 96107, - [SMALL_STATE(2487)] = 96171, - [SMALL_STATE(2488)] = 96231, - [SMALL_STATE(2489)] = 96281, - [SMALL_STATE(2490)] = 96335, - [SMALL_STATE(2491)] = 96389, - [SMALL_STATE(2492)] = 96443, - [SMALL_STATE(2493)] = 96497, - [SMALL_STATE(2494)] = 96545, - [SMALL_STATE(2495)] = 96599, - [SMALL_STATE(2496)] = 96647, - [SMALL_STATE(2497)] = 96701, - [SMALL_STATE(2498)] = 96751, - [SMALL_STATE(2499)] = 96799, - [SMALL_STATE(2500)] = 96849, - [SMALL_STATE(2501)] = 96903, - [SMALL_STATE(2502)] = 96957, - [SMALL_STATE(2503)] = 97011, - [SMALL_STATE(2504)] = 97065, - [SMALL_STATE(2505)] = 97169, - [SMALL_STATE(2506)] = 97273, - [SMALL_STATE(2507)] = 97377, - [SMALL_STATE(2508)] = 97481, - [SMALL_STATE(2509)] = 97585, - [SMALL_STATE(2510)] = 97689, - [SMALL_STATE(2511)] = 97793, - [SMALL_STATE(2512)] = 97871, - [SMALL_STATE(2513)] = 97939, - [SMALL_STATE(2514)] = 98031, - [SMALL_STATE(2515)] = 98125, - [SMALL_STATE(2516)] = 98199, - [SMALL_STATE(2517)] = 98285, - [SMALL_STATE(2518)] = 98373, - [SMALL_STATE(2519)] = 98463, - [SMALL_STATE(2520)] = 98535, - [SMALL_STATE(2521)] = 98609, - [SMALL_STATE(2522)] = 98691, - [SMALL_STATE(2523)] = 98787, - [SMALL_STATE(2524)] = 98891, - [SMALL_STATE(2525)] = 98995, - [SMALL_STATE(2526)] = 99099, - [SMALL_STATE(2527)] = 99203, - [SMALL_STATE(2528)] = 99307, - [SMALL_STATE(2529)] = 99411, - [SMALL_STATE(2530)] = 99515, - [SMALL_STATE(2531)] = 99619, - [SMALL_STATE(2532)] = 99691, - [SMALL_STATE(2533)] = 99759, - [SMALL_STATE(2534)] = 99829, - [SMALL_STATE(2535)] = 99895, - [SMALL_STATE(2536)] = 99963, - [SMALL_STATE(2537)] = 100013, - [SMALL_STATE(2538)] = 100063, - [SMALL_STATE(2539)] = 100113, - [SMALL_STATE(2540)] = 100169, - [SMALL_STATE(2541)] = 100273, - [SMALL_STATE(2542)] = 100337, - [SMALL_STATE(2543)] = 100397, - [SMALL_STATE(2544)] = 100461, - [SMALL_STATE(2545)] = 100521, - [SMALL_STATE(2546)] = 100587, - [SMALL_STATE(2547)] = 100659, - [SMALL_STATE(2548)] = 100763, - [SMALL_STATE(2549)] = 100827, - [SMALL_STATE(2550)] = 100931, - [SMALL_STATE(2551)] = 101035, - [SMALL_STATE(2552)] = 101139, - [SMALL_STATE(2553)] = 101189, - [SMALL_STATE(2554)] = 101239, - [SMALL_STATE(2555)] = 101343, - [SMALL_STATE(2556)] = 101393, - [SMALL_STATE(2557)] = 101497, - [SMALL_STATE(2558)] = 101561, - [SMALL_STATE(2559)] = 101621, - [SMALL_STATE(2560)] = 101685, - [SMALL_STATE(2561)] = 101745, - [SMALL_STATE(2562)] = 101849, - [SMALL_STATE(2563)] = 101903, - [SMALL_STATE(2564)] = 102007, - [SMALL_STATE(2565)] = 102111, - [SMALL_STATE(2566)] = 102215, - [SMALL_STATE(2567)] = 102274, - [SMALL_STATE(2568)] = 102331, - [SMALL_STATE(2569)] = 102380, - [SMALL_STATE(2570)] = 102437, - [SMALL_STATE(2571)] = 102494, - [SMALL_STATE(2572)] = 102551, - [SMALL_STATE(2573)] = 102608, - [SMALL_STATE(2574)] = 102665, - [SMALL_STATE(2575)] = 102722, - [SMALL_STATE(2576)] = 102781, - [SMALL_STATE(2577)] = 102840, - [SMALL_STATE(2578)] = 102899, - [SMALL_STATE(2579)] = 102956, - [SMALL_STATE(2580)] = 103019, - [SMALL_STATE(2581)] = 103078, - [SMALL_STATE(2582)] = 103143, - [SMALL_STATE(2583)] = 103206, - [SMALL_STATE(2584)] = 103263, - [SMALL_STATE(2585)] = 103316, - [SMALL_STATE(2586)] = 103375, - [SMALL_STATE(2587)] = 103432, - [SMALL_STATE(2588)] = 103489, - [SMALL_STATE(2589)] = 103548, - [SMALL_STATE(2590)] = 103607, - [SMALL_STATE(2591)] = 103664, - [SMALL_STATE(2592)] = 103721, - [SMALL_STATE(2593)] = 103822, - [SMALL_STATE(2594)] = 103879, - [SMALL_STATE(2595)] = 103938, - [SMALL_STATE(2596)] = 103997, - [SMALL_STATE(2597)] = 104098, - [SMALL_STATE(2598)] = 104157, - [SMALL_STATE(2599)] = 104216, - [SMALL_STATE(2600)] = 104273, - [SMALL_STATE(2601)] = 104330, - [SMALL_STATE(2602)] = 104379, - [SMALL_STATE(2603)] = 104428, - [SMALL_STATE(2604)] = 104489, - [SMALL_STATE(2605)] = 104535, - [SMALL_STATE(2606)] = 104585, - [SMALL_STATE(2607)] = 104631, - [SMALL_STATE(2608)] = 104677, - [SMALL_STATE(2609)] = 104725, - [SMALL_STATE(2610)] = 104783, - [SMALL_STATE(2611)] = 104829, - [SMALL_STATE(2612)] = 104875, - [SMALL_STATE(2613)] = 104921, - [SMALL_STATE(2614)] = 104967, - [SMALL_STATE(2615)] = 105013, - [SMALL_STATE(2616)] = 105059, - [SMALL_STATE(2617)] = 105105, - [SMALL_STATE(2618)] = 105151, - [SMALL_STATE(2619)] = 105197, - [SMALL_STATE(2620)] = 105245, - [SMALL_STATE(2621)] = 105291, - [SMALL_STATE(2622)] = 105337, - [SMALL_STATE(2623)] = 105383, - [SMALL_STATE(2624)] = 105429, - [SMALL_STATE(2625)] = 105475, - [SMALL_STATE(2626)] = 105521, - [SMALL_STATE(2627)] = 105567, - [SMALL_STATE(2628)] = 105615, - [SMALL_STATE(2629)] = 105661, - [SMALL_STATE(2630)] = 105707, - [SMALL_STATE(2631)] = 105753, - [SMALL_STATE(2632)] = 105799, - [SMALL_STATE(2633)] = 105845, - [SMALL_STATE(2634)] = 105893, - [SMALL_STATE(2635)] = 105939, - [SMALL_STATE(2636)] = 105987, - [SMALL_STATE(2637)] = 106033, - [SMALL_STATE(2638)] = 106079, - [SMALL_STATE(2639)] = 106127, - [SMALL_STATE(2640)] = 106177, - [SMALL_STATE(2641)] = 106223, - [SMALL_STATE(2642)] = 106269, - [SMALL_STATE(2643)] = 106315, - [SMALL_STATE(2644)] = 106363, - [SMALL_STATE(2645)] = 106409, - [SMALL_STATE(2646)] = 106455, - [SMALL_STATE(2647)] = 106503, - [SMALL_STATE(2648)] = 106549, - [SMALL_STATE(2649)] = 106597, - [SMALL_STATE(2650)] = 106643, - [SMALL_STATE(2651)] = 106689, - [SMALL_STATE(2652)] = 106735, - [SMALL_STATE(2653)] = 106781, - [SMALL_STATE(2654)] = 106827, - [SMALL_STATE(2655)] = 106873, - [SMALL_STATE(2656)] = 106919, - [SMALL_STATE(2657)] = 106965, - [SMALL_STATE(2658)] = 107015, - [SMALL_STATE(2659)] = 107061, - [SMALL_STATE(2660)] = 107117, - [SMALL_STATE(2661)] = 107163, - [SMALL_STATE(2662)] = 107211, - [SMALL_STATE(2663)] = 107257, - [SMALL_STATE(2664)] = 107305, - [SMALL_STATE(2665)] = 107351, - [SMALL_STATE(2666)] = 107399, - [SMALL_STATE(2667)] = 107447, - [SMALL_STATE(2668)] = 107493, - [SMALL_STATE(2669)] = 107539, - [SMALL_STATE(2670)] = 107588, - [SMALL_STATE(2671)] = 107655, - [SMALL_STATE(2672)] = 107700, - [SMALL_STATE(2673)] = 107745, - [SMALL_STATE(2674)] = 107790, - [SMALL_STATE(2675)] = 107835, - [SMALL_STATE(2676)] = 107880, - [SMALL_STATE(2677)] = 107931, - [SMALL_STATE(2678)] = 107976, - [SMALL_STATE(2679)] = 108029, - [SMALL_STATE(2680)] = 108074, - [SMALL_STATE(2681)] = 108127, - [SMALL_STATE(2682)] = 108178, - [SMALL_STATE(2683)] = 108250, - [SMALL_STATE(2684)] = 108298, - [SMALL_STATE(2685)] = 108370, - [SMALL_STATE(2686)] = 108418, - [SMALL_STATE(2687)] = 108476, - [SMALL_STATE(2688)] = 108534, - [SMALL_STATE(2689)] = 108592, - [SMALL_STATE(2690)] = 108652, - [SMALL_STATE(2691)] = 108712, - [SMALL_STATE(2692)] = 108768, - [SMALL_STATE(2693)] = 108828, - [SMALL_STATE(2694)] = 108886, - [SMALL_STATE(2695)] = 108949, - [SMALL_STATE(2696)] = 109002, - [SMALL_STATE(2697)] = 109055, - [SMALL_STATE(2698)] = 109108, - [SMALL_STATE(2699)] = 109161, - [SMALL_STATE(2700)] = 109214, - [SMALL_STATE(2701)] = 109267, - [SMALL_STATE(2702)] = 109320, - [SMALL_STATE(2703)] = 109383, - [SMALL_STATE(2704)] = 109436, - [SMALL_STATE(2705)] = 109489, - [SMALL_STATE(2706)] = 109538, - [SMALL_STATE(2707)] = 109591, - [SMALL_STATE(2708)] = 109644, - [SMALL_STATE(2709)] = 109697, - [SMALL_STATE(2710)] = 109750, - [SMALL_STATE(2711)] = 109803, - [SMALL_STATE(2712)] = 109856, - [SMALL_STATE(2713)] = 109909, - [SMALL_STATE(2714)] = 109962, - [SMALL_STATE(2715)] = 110015, - [SMALL_STATE(2716)] = 110068, - [SMALL_STATE(2717)] = 110121, - [SMALL_STATE(2718)] = 110174, - [SMALL_STATE(2719)] = 110227, - [SMALL_STATE(2720)] = 110280, - [SMALL_STATE(2721)] = 110333, - [SMALL_STATE(2722)] = 110386, + [SMALL_STATE(1223)] = 4773, + [SMALL_STATE(1224)] = 4851, + [SMALL_STATE(1225)] = 4937, + [SMALL_STATE(1226)] = 5011, + [SMALL_STATE(1227)] = 5085, + [SMALL_STATE(1228)] = 5163, + [SMALL_STATE(1229)] = 5249, + [SMALL_STATE(1230)] = 5335, + [SMALL_STATE(1231)] = 5425, + [SMALL_STATE(1232)] = 5499, + [SMALL_STATE(1233)] = 5589, + [SMALL_STATE(1234)] = 5675, + [SMALL_STATE(1235)] = 5753, + [SMALL_STATE(1236)] = 5839, + [SMALL_STATE(1237)] = 5929, + [SMALL_STATE(1238)] = 6015, + [SMALL_STATE(1239)] = 6101, + [SMALL_STATE(1240)] = 6187, + [SMALL_STATE(1241)] = 6273, + [SMALL_STATE(1242)] = 6359, + [SMALL_STATE(1243)] = 6445, + [SMALL_STATE(1244)] = 6525, + [SMALL_STATE(1245)] = 6617, + [SMALL_STATE(1246)] = 6695, + [SMALL_STATE(1247)] = 6785, + [SMALL_STATE(1248)] = 6853, + [SMALL_STATE(1249)] = 6939, + [SMALL_STATE(1250)] = 7031, + [SMALL_STATE(1251)] = 7109, + [SMALL_STATE(1252)] = 7187, + [SMALL_STATE(1253)] = 7273, + [SMALL_STATE(1254)] = 7347, + [SMALL_STATE(1255)] = 7432, + [SMALL_STATE(1256)] = 7519, + [SMALL_STATE(1257)] = 7608, + [SMALL_STATE(1258)] = 7677, + [SMALL_STATE(1259)] = 7756, + [SMALL_STATE(1260)] = 7823, + [SMALL_STATE(1261)] = 7892, + [SMALL_STATE(1262)] = 7969, + [SMALL_STATE(1263)] = 8040, + [SMALL_STATE(1264)] = 8125, + [SMALL_STATE(1265)] = 8214, + [SMALL_STATE(1266)] = 8289, + [SMALL_STATE(1267)] = 8358, + [SMALL_STATE(1268)] = 8427, + [SMALL_STATE(1269)] = 8502, + [SMALL_STATE(1270)] = 8585, + [SMALL_STATE(1271)] = 8652, + [SMALL_STATE(1272)] = 8741, + [SMALL_STATE(1273)] = 8830, + [SMALL_STATE(1274)] = 8905, + [SMALL_STATE(1275)] = 8980, + [SMALL_STATE(1276)] = 9059, + [SMALL_STATE(1277)] = 9144, + [SMALL_STATE(1278)] = 9221, + [SMALL_STATE(1279)] = 9290, + [SMALL_STATE(1280)] = 9367, + [SMALL_STATE(1281)] = 9450, + [SMALL_STATE(1282)] = 9519, + [SMALL_STATE(1283)] = 9601, + [SMALL_STATE(1284)] = 9673, + [SMALL_STATE(1285)] = 9739, + [SMALL_STATE(1286)] = 9817, + [SMALL_STATE(1287)] = 9897, + [SMALL_STATE(1288)] = 9963, + [SMALL_STATE(1289)] = 10029, + [SMALL_STATE(1290)] = 10099, + [SMALL_STATE(1291)] = 10165, + [SMALL_STATE(1292)] = 10239, + [SMALL_STATE(1293)] = 10313, + [SMALL_STATE(1294)] = 10379, + [SMALL_STATE(1295)] = 10445, + [SMALL_STATE(1296)] = 10511, + [SMALL_STATE(1297)] = 10599, + [SMALL_STATE(1298)] = 10675, + [SMALL_STATE(1299)] = 10747, + [SMALL_STATE(1300)] = 10813, + [SMALL_STATE(1301)] = 10879, + [SMALL_STATE(1302)] = 10963, + [SMALL_STATE(1303)] = 11029, + [SMALL_STATE(1304)] = 11095, + [SMALL_STATE(1305)] = 11167, + [SMALL_STATE(1306)] = 11239, + [SMALL_STATE(1307)] = 11311, + [SMALL_STATE(1308)] = 11383, + [SMALL_STATE(1309)] = 11461, + [SMALL_STATE(1310)] = 11539, + [SMALL_STATE(1311)] = 11611, + [SMALL_STATE(1312)] = 11685, + [SMALL_STATE(1313)] = 11759, + [SMALL_STATE(1314)] = 11833, + [SMALL_STATE(1315)] = 11905, + [SMALL_STATE(1316)] = 11979, + [SMALL_STATE(1317)] = 12063, + [SMALL_STATE(1318)] = 12143, + [SMALL_STATE(1319)] = 12227, + [SMALL_STATE(1320)] = 12315, + [SMALL_STATE(1321)] = 12381, + [SMALL_STATE(1322)] = 12458, + [SMALL_STATE(1323)] = 12527, + [SMALL_STATE(1324)] = 12596, + [SMALL_STATE(1325)] = 12673, + [SMALL_STATE(1326)] = 12746, + [SMALL_STATE(1327)] = 12813, + [SMALL_STATE(1328)] = 12896, + [SMALL_STATE(1329)] = 12969, + [SMALL_STATE(1330)] = 13040, + [SMALL_STATE(1331)] = 13107, + [SMALL_STATE(1332)] = 13182, + [SMALL_STATE(1333)] = 13259, + [SMALL_STATE(1334)] = 13330, + [SMALL_STATE(1335)] = 13403, + [SMALL_STATE(1336)] = 13472, + [SMALL_STATE(1337)] = 13551, + [SMALL_STATE(1338)] = 13620, + [SMALL_STATE(1339)] = 13697, + [SMALL_STATE(1340)] = 13768, + [SMALL_STATE(1341)] = 13839, + [SMALL_STATE(1342)] = 13914, + [SMALL_STATE(1343)] = 13987, + [SMALL_STATE(1344)] = 14059, + [SMALL_STATE(1345)] = 14133, + [SMALL_STATE(1346)] = 14253, + [SMALL_STATE(1347)] = 14323, + [SMALL_STATE(1348)] = 14393, + [SMALL_STATE(1349)] = 14465, + [SMALL_STATE(1350)] = 14531, + [SMALL_STATE(1351)] = 14605, + [SMALL_STATE(1352)] = 14725, + [SMALL_STATE(1353)] = 14845, + [SMALL_STATE(1354)] = 14919, + [SMALL_STATE(1355)] = 14991, + [SMALL_STATE(1356)] = 15065, + [SMALL_STATE(1357)] = 15131, + [SMALL_STATE(1358)] = 15251, + [SMALL_STATE(1359)] = 15321, + [SMALL_STATE(1360)] = 15391, + [SMALL_STATE(1361)] = 15461, + [SMALL_STATE(1362)] = 15581, + [SMALL_STATE(1363)] = 15651, + [SMALL_STATE(1364)] = 15771, + [SMALL_STATE(1365)] = 15841, + [SMALL_STATE(1366)] = 15909, + [SMALL_STATE(1367)] = 15985, + [SMALL_STATE(1368)] = 16055, + [SMALL_STATE(1369)] = 16124, + [SMALL_STATE(1370)] = 16193, + [SMALL_STATE(1371)] = 16264, + [SMALL_STATE(1372)] = 16333, + [SMALL_STATE(1373)] = 16402, + [SMALL_STATE(1374)] = 16471, + [SMALL_STATE(1375)] = 16538, + [SMALL_STATE(1376)] = 16605, + [SMALL_STATE(1377)] = 16676, + [SMALL_STATE(1378)] = 16745, + [SMALL_STATE(1379)] = 16818, + [SMALL_STATE(1380)] = 16891, + [SMALL_STATE(1381)] = 16960, + [SMALL_STATE(1382)] = 17029, + [SMALL_STATE(1383)] = 17095, + [SMALL_STATE(1384)] = 17211, + [SMALL_STATE(1385)] = 17327, + [SMALL_STATE(1386)] = 17443, + [SMALL_STATE(1387)] = 17559, + [SMALL_STATE(1388)] = 17627, + [SMALL_STATE(1389)] = 17743, + [SMALL_STATE(1390)] = 17811, + [SMALL_STATE(1391)] = 17879, + [SMALL_STATE(1392)] = 17947, + [SMALL_STATE(1393)] = 18015, + [SMALL_STATE(1394)] = 18083, + [SMALL_STATE(1395)] = 18199, + [SMALL_STATE(1396)] = 18315, + [SMALL_STATE(1397)] = 18383, + [SMALL_STATE(1398)] = 18451, + [SMALL_STATE(1399)] = 18519, + [SMALL_STATE(1400)] = 18587, + [SMALL_STATE(1401)] = 18655, + [SMALL_STATE(1402)] = 18723, + [SMALL_STATE(1403)] = 18839, + [SMALL_STATE(1404)] = 18907, + [SMALL_STATE(1405)] = 19023, + [SMALL_STATE(1406)] = 19139, + [SMALL_STATE(1407)] = 19205, + [SMALL_STATE(1408)] = 19273, + [SMALL_STATE(1409)] = 19389, + [SMALL_STATE(1410)] = 19457, + [SMALL_STATE(1411)] = 19525, + [SMALL_STATE(1412)] = 19641, + [SMALL_STATE(1413)] = 19757, + [SMALL_STATE(1414)] = 19825, + [SMALL_STATE(1415)] = 19941, + [SMALL_STATE(1416)] = 20011, + [SMALL_STATE(1417)] = 20079, + [SMALL_STATE(1418)] = 20147, + [SMALL_STATE(1419)] = 20263, + [SMALL_STATE(1420)] = 20379, + [SMALL_STATE(1421)] = 20447, + [SMALL_STATE(1422)] = 20563, + [SMALL_STATE(1423)] = 20679, + [SMALL_STATE(1424)] = 20747, + [SMALL_STATE(1425)] = 20812, + [SMALL_STATE(1426)] = 20877, + [SMALL_STATE(1427)] = 20942, + [SMALL_STATE(1428)] = 21007, + [SMALL_STATE(1429)] = 21072, + [SMALL_STATE(1430)] = 21137, + [SMALL_STATE(1431)] = 21202, + [SMALL_STATE(1432)] = 21267, + [SMALL_STATE(1433)] = 21332, + [SMALL_STATE(1434)] = 21444, + [SMALL_STATE(1435)] = 21556, + [SMALL_STATE(1436)] = 21668, + [SMALL_STATE(1437)] = 21780, + [SMALL_STATE(1438)] = 21892, + [SMALL_STATE(1439)] = 22004, + [SMALL_STATE(1440)] = 22116, + [SMALL_STATE(1441)] = 22235, + [SMALL_STATE(1442)] = 22346, + [SMALL_STATE(1443)] = 22457, + [SMALL_STATE(1444)] = 22568, + [SMALL_STATE(1445)] = 22679, + [SMALL_STATE(1446)] = 22790, + [SMALL_STATE(1447)] = 22909, + [SMALL_STATE(1448)] = 23028, + [SMALL_STATE(1449)] = 23139, + [SMALL_STATE(1450)] = 23250, + [SMALL_STATE(1451)] = 23361, + [SMALL_STATE(1452)] = 23480, + [SMALL_STATE(1453)] = 23591, + [SMALL_STATE(1454)] = 23702, + [SMALL_STATE(1455)] = 23821, + [SMALL_STATE(1456)] = 23932, + [SMALL_STATE(1457)] = 24034, + [SMALL_STATE(1458)] = 24136, + [SMALL_STATE(1459)] = 24238, + [SMALL_STATE(1460)] = 24316, + [SMALL_STATE(1461)] = 24418, + [SMALL_STATE(1462)] = 24520, + [SMALL_STATE(1463)] = 24622, + [SMALL_STATE(1464)] = 24689, + [SMALL_STATE(1465)] = 24800, + [SMALL_STATE(1466)] = 24865, + [SMALL_STATE(1467)] = 24932, + [SMALL_STATE(1468)] = 24989, + [SMALL_STATE(1469)] = 25056, + [SMALL_STATE(1470)] = 25165, + [SMALL_STATE(1471)] = 25222, + [SMALL_STATE(1472)] = 25290, + [SMALL_STATE(1473)] = 25346, + [SMALL_STATE(1474)] = 25404, + [SMALL_STATE(1475)] = 25460, + [SMALL_STATE(1476)] = 25518, + [SMALL_STATE(1477)] = 25574, + [SMALL_STATE(1478)] = 25632, + [SMALL_STATE(1479)] = 25688, + [SMALL_STATE(1480)] = 25782, + [SMALL_STATE(1481)] = 25838, + [SMALL_STATE(1482)] = 25898, + [SMALL_STATE(1483)] = 25960, + [SMALL_STATE(1484)] = 26016, + [SMALL_STATE(1485)] = 26078, + [SMALL_STATE(1486)] = 26138, + [SMALL_STATE(1487)] = 26194, + [SMALL_STATE(1488)] = 26249, + [SMALL_STATE(1489)] = 26312, + [SMALL_STATE(1490)] = 26373, + [SMALL_STATE(1491)] = 26432, + [SMALL_STATE(1492)] = 26487, + [SMALL_STATE(1493)] = 26542, + [SMALL_STATE(1494)] = 26603, + [SMALL_STATE(1495)] = 26664, + [SMALL_STATE(1496)] = 26727, + [SMALL_STATE(1497)] = 26790, + [SMALL_STATE(1498)] = 26851, + [SMALL_STATE(1499)] = 26912, + [SMALL_STATE(1500)] = 26967, + [SMALL_STATE(1501)] = 27026, + [SMALL_STATE(1502)] = 27087, + [SMALL_STATE(1503)] = 27148, + [SMALL_STATE(1504)] = 27207, + [SMALL_STATE(1505)] = 27266, + [SMALL_STATE(1506)] = 27323, + [SMALL_STATE(1507)] = 27382, + [SMALL_STATE(1508)] = 27437, + [SMALL_STATE(1509)] = 27492, + [SMALL_STATE(1510)] = 27547, + [SMALL_STATE(1511)] = 27602, + [SMALL_STATE(1512)] = 27661, + [SMALL_STATE(1513)] = 27718, + [SMALL_STATE(1514)] = 27773, + [SMALL_STATE(1515)] = 27830, + [SMALL_STATE(1516)] = 27885, + [SMALL_STATE(1517)] = 27940, + [SMALL_STATE(1518)] = 27997, + [SMALL_STATE(1519)] = 28054, + [SMALL_STATE(1520)] = 28109, + [SMALL_STATE(1521)] = 28164, + [SMALL_STATE(1522)] = 28219, + [SMALL_STATE(1523)] = 28276, + [SMALL_STATE(1524)] = 28331, + [SMALL_STATE(1525)] = 28386, + [SMALL_STATE(1526)] = 28441, + [SMALL_STATE(1527)] = 28502, + [SMALL_STATE(1528)] = 28563, + [SMALL_STATE(1529)] = 28620, + [SMALL_STATE(1530)] = 28677, + [SMALL_STATE(1531)] = 28732, + [SMALL_STATE(1532)] = 28787, + [SMALL_STATE(1533)] = 28842, + [SMALL_STATE(1534)] = 28901, + [SMALL_STATE(1535)] = 28956, + [SMALL_STATE(1536)] = 29011, + [SMALL_STATE(1537)] = 29066, + [SMALL_STATE(1538)] = 29121, + [SMALL_STATE(1539)] = 29176, + [SMALL_STATE(1540)] = 29231, + [SMALL_STATE(1541)] = 29286, + [SMALL_STATE(1542)] = 29341, + [SMALL_STATE(1543)] = 29396, + [SMALL_STATE(1544)] = 29453, + [SMALL_STATE(1545)] = 29508, + [SMALL_STATE(1546)] = 29563, + [SMALL_STATE(1547)] = 29620, + [SMALL_STATE(1548)] = 29675, + [SMALL_STATE(1549)] = 29736, + [SMALL_STATE(1550)] = 29791, + [SMALL_STATE(1551)] = 29846, + [SMALL_STATE(1552)] = 29901, + [SMALL_STATE(1553)] = 29956, + [SMALL_STATE(1554)] = 30011, + [SMALL_STATE(1555)] = 30068, + [SMALL_STATE(1556)] = 30125, + [SMALL_STATE(1557)] = 30180, + [SMALL_STATE(1558)] = 30237, + [SMALL_STATE(1559)] = 30296, + [SMALL_STATE(1560)] = 30351, + [SMALL_STATE(1561)] = 30406, + [SMALL_STATE(1562)] = 30463, + [SMALL_STATE(1563)] = 30524, + [SMALL_STATE(1564)] = 30579, + [SMALL_STATE(1565)] = 30634, + [SMALL_STATE(1566)] = 30689, + [SMALL_STATE(1567)] = 30744, + [SMALL_STATE(1568)] = 30799, + [SMALL_STATE(1569)] = 30854, + [SMALL_STATE(1570)] = 30909, + [SMALL_STATE(1571)] = 30964, + [SMALL_STATE(1572)] = 31019, + [SMALL_STATE(1573)] = 31074, + [SMALL_STATE(1574)] = 31129, + [SMALL_STATE(1575)] = 31184, + [SMALL_STATE(1576)] = 31239, + [SMALL_STATE(1577)] = 31294, + [SMALL_STATE(1578)] = 31355, + [SMALL_STATE(1579)] = 31410, + [SMALL_STATE(1580)] = 31471, + [SMALL_STATE(1581)] = 31526, + [SMALL_STATE(1582)] = 31581, + [SMALL_STATE(1583)] = 31642, + [SMALL_STATE(1584)] = 31697, + [SMALL_STATE(1585)] = 31752, + [SMALL_STATE(1586)] = 31807, + [SMALL_STATE(1587)] = 31862, + [SMALL_STATE(1588)] = 31917, + [SMALL_STATE(1589)] = 31972, + [SMALL_STATE(1590)] = 32027, + [SMALL_STATE(1591)] = 32082, + [SMALL_STATE(1592)] = 32137, + [SMALL_STATE(1593)] = 32192, + [SMALL_STATE(1594)] = 32247, + [SMALL_STATE(1595)] = 32302, + [SMALL_STATE(1596)] = 32357, + [SMALL_STATE(1597)] = 32412, + [SMALL_STATE(1598)] = 32467, + [SMALL_STATE(1599)] = 32522, + [SMALL_STATE(1600)] = 32577, + [SMALL_STATE(1601)] = 32632, + [SMALL_STATE(1602)] = 32687, + [SMALL_STATE(1603)] = 32742, + [SMALL_STATE(1604)] = 32797, + [SMALL_STATE(1605)] = 32852, + [SMALL_STATE(1606)] = 32907, + [SMALL_STATE(1607)] = 32962, + [SMALL_STATE(1608)] = 33017, + [SMALL_STATE(1609)] = 33072, + [SMALL_STATE(1610)] = 33127, + [SMALL_STATE(1611)] = 33183, + [SMALL_STATE(1612)] = 33237, + [SMALL_STATE(1613)] = 33307, + [SMALL_STATE(1614)] = 33361, + [SMALL_STATE(1615)] = 33415, + [SMALL_STATE(1616)] = 33469, + [SMALL_STATE(1617)] = 33523, + [SMALL_STATE(1618)] = 33609, + [SMALL_STATE(1619)] = 33663, + [SMALL_STATE(1620)] = 33717, + [SMALL_STATE(1621)] = 33771, + [SMALL_STATE(1622)] = 33825, + [SMALL_STATE(1623)] = 33879, + [SMALL_STATE(1624)] = 33989, + [SMALL_STATE(1625)] = 34099, + [SMALL_STATE(1626)] = 34209, + [SMALL_STATE(1627)] = 34319, + [SMALL_STATE(1628)] = 34373, + [SMALL_STATE(1629)] = 34427, + [SMALL_STATE(1630)] = 34481, + [SMALL_STATE(1631)] = 34535, + [SMALL_STATE(1632)] = 34589, + [SMALL_STATE(1633)] = 34699, + [SMALL_STATE(1634)] = 34753, + [SMALL_STATE(1635)] = 34807, + [SMALL_STATE(1636)] = 34861, + [SMALL_STATE(1637)] = 34915, + [SMALL_STATE(1638)] = 34969, + [SMALL_STATE(1639)] = 35029, + [SMALL_STATE(1640)] = 35083, + [SMALL_STATE(1641)] = 35157, + [SMALL_STATE(1642)] = 35211, + [SMALL_STATE(1643)] = 35265, + [SMALL_STATE(1644)] = 35319, + [SMALL_STATE(1645)] = 35373, + [SMALL_STATE(1646)] = 35427, + [SMALL_STATE(1647)] = 35481, + [SMALL_STATE(1648)] = 35535, + [SMALL_STATE(1649)] = 35589, + [SMALL_STATE(1650)] = 35643, + [SMALL_STATE(1651)] = 35697, + [SMALL_STATE(1652)] = 35751, + [SMALL_STATE(1653)] = 35805, + [SMALL_STATE(1654)] = 35859, + [SMALL_STATE(1655)] = 35969, + [SMALL_STATE(1656)] = 36023, + [SMALL_STATE(1657)] = 36133, + [SMALL_STATE(1658)] = 36217, + [SMALL_STATE(1659)] = 36271, + [SMALL_STATE(1660)] = 36357, + [SMALL_STATE(1661)] = 36411, + [SMALL_STATE(1662)] = 36485, + [SMALL_STATE(1663)] = 36539, + [SMALL_STATE(1664)] = 36637, + [SMALL_STATE(1665)] = 36737, + [SMALL_STATE(1666)] = 36817, + [SMALL_STATE(1667)] = 36909, + [SMALL_STATE(1668)] = 37003, + [SMALL_STATE(1669)] = 37057, + [SMALL_STATE(1670)] = 37111, + [SMALL_STATE(1671)] = 37197, + [SMALL_STATE(1672)] = 37275, + [SMALL_STATE(1673)] = 37355, + [SMALL_STATE(1674)] = 37409, + [SMALL_STATE(1675)] = 37463, + [SMALL_STATE(1676)] = 37523, + [SMALL_STATE(1677)] = 37579, + [SMALL_STATE(1678)] = 37639, + [SMALL_STATE(1679)] = 37693, + [SMALL_STATE(1680)] = 37781, + [SMALL_STATE(1681)] = 37883, + [SMALL_STATE(1682)] = 37937, + [SMALL_STATE(1683)] = 37991, + [SMALL_STATE(1684)] = 38045, + [SMALL_STATE(1685)] = 38099, + [SMALL_STATE(1686)] = 38153, + [SMALL_STATE(1687)] = 38207, + [SMALL_STATE(1688)] = 38317, + [SMALL_STATE(1689)] = 38427, + [SMALL_STATE(1690)] = 38481, + [SMALL_STATE(1691)] = 38535, + [SMALL_STATE(1692)] = 38589, + [SMALL_STATE(1693)] = 38643, + [SMALL_STATE(1694)] = 38697, + [SMALL_STATE(1695)] = 38751, + [SMALL_STATE(1696)] = 38807, + [SMALL_STATE(1697)] = 38861, + [SMALL_STATE(1698)] = 38915, + [SMALL_STATE(1699)] = 38969, + [SMALL_STATE(1700)] = 39041, + [SMALL_STATE(1701)] = 39095, + [SMALL_STATE(1702)] = 39149, + [SMALL_STATE(1703)] = 39203, + [SMALL_STATE(1704)] = 39257, + [SMALL_STATE(1705)] = 39311, + [SMALL_STATE(1706)] = 39365, + [SMALL_STATE(1707)] = 39419, + [SMALL_STATE(1708)] = 39473, + [SMALL_STATE(1709)] = 39551, + [SMALL_STATE(1710)] = 39605, + [SMALL_STATE(1711)] = 39715, + [SMALL_STATE(1712)] = 39769, + [SMALL_STATE(1713)] = 39855, + [SMALL_STATE(1714)] = 39909, + [SMALL_STATE(1715)] = 39963, + [SMALL_STATE(1716)] = 40073, + [SMALL_STATE(1717)] = 40159, + [SMALL_STATE(1718)] = 40213, + [SMALL_STATE(1719)] = 40267, + [SMALL_STATE(1720)] = 40321, + [SMALL_STATE(1721)] = 40431, + [SMALL_STATE(1722)] = 40485, + [SMALL_STATE(1723)] = 40595, + [SMALL_STATE(1724)] = 40705, + [SMALL_STATE(1725)] = 40759, + [SMALL_STATE(1726)] = 40855, + [SMALL_STATE(1727)] = 40932, + [SMALL_STATE(1728)] = 40985, + [SMALL_STATE(1729)] = 41064, + [SMALL_STATE(1730)] = 41117, + [SMALL_STATE(1731)] = 41194, + [SMALL_STATE(1732)] = 41303, + [SMALL_STATE(1733)] = 41382, + [SMALL_STATE(1734)] = 41437, + [SMALL_STATE(1735)] = 41518, + [SMALL_STATE(1736)] = 41575, + [SMALL_STATE(1737)] = 41628, + [SMALL_STATE(1738)] = 41707, + [SMALL_STATE(1739)] = 41768, + [SMALL_STATE(1740)] = 41845, + [SMALL_STATE(1741)] = 41898, + [SMALL_STATE(1742)] = 41977, + [SMALL_STATE(1743)] = 42038, + [SMALL_STATE(1744)] = 42091, + [SMALL_STATE(1745)] = 42168, + [SMALL_STATE(1746)] = 42231, + [SMALL_STATE(1747)] = 42294, + [SMALL_STATE(1748)] = 42357, + [SMALL_STATE(1749)] = 42436, + [SMALL_STATE(1750)] = 42491, + [SMALL_STATE(1751)] = 42544, + [SMALL_STATE(1752)] = 42621, + [SMALL_STATE(1753)] = 42700, + [SMALL_STATE(1754)] = 42779, + [SMALL_STATE(1755)] = 42836, + [SMALL_STATE(1756)] = 42893, + [SMALL_STATE(1757)] = 42957, + [SMALL_STATE(1758)] = 43019, + [SMALL_STATE(1759)] = 43101, + [SMALL_STATE(1760)] = 43161, + [SMALL_STATE(1761)] = 43243, + [SMALL_STATE(1762)] = 43303, + [SMALL_STATE(1763)] = 43365, + [SMALL_STATE(1764)] = 43425, + [SMALL_STATE(1765)] = 43503, + [SMALL_STATE(1766)] = 43555, + [SMALL_STATE(1767)] = 43609, + [SMALL_STATE(1768)] = 43717, + [SMALL_STATE(1769)] = 43825, + [SMALL_STATE(1770)] = 43933, + [SMALL_STATE(1771)] = 44005, + [SMALL_STATE(1772)] = 44077, + [SMALL_STATE(1773)] = 44149, + [SMALL_STATE(1774)] = 44257, + [SMALL_STATE(1775)] = 44365, + [SMALL_STATE(1776)] = 44461, + [SMALL_STATE(1777)] = 44519, + [SMALL_STATE(1778)] = 44613, + [SMALL_STATE(1779)] = 44721, + [SMALL_STATE(1780)] = 44829, + [SMALL_STATE(1781)] = 44937, + [SMALL_STATE(1782)] = 45007, + [SMALL_STATE(1783)] = 45083, + [SMALL_STATE(1784)] = 45191, + [SMALL_STATE(1785)] = 45299, + [SMALL_STATE(1786)] = 45373, + [SMALL_STATE(1787)] = 45433, + [SMALL_STATE(1788)] = 45519, + [SMALL_STATE(1789)] = 45595, + [SMALL_STATE(1790)] = 45667, + [SMALL_STATE(1791)] = 45719, + [SMALL_STATE(1792)] = 45835, + [SMALL_STATE(1793)] = 45903, + [SMALL_STATE(1794)] = 46019, + [SMALL_STATE(1795)] = 46117, + [SMALL_STATE(1796)] = 46189, + [SMALL_STATE(1797)] = 46289, + [SMALL_STATE(1798)] = 46397, + [SMALL_STATE(1799)] = 46471, + [SMALL_STATE(1800)] = 46579, + [SMALL_STATE(1801)] = 46635, + [SMALL_STATE(1802)] = 46731, + [SMALL_STATE(1803)] = 46783, + [SMALL_STATE(1804)] = 46891, + [SMALL_STATE(1805)] = 46945, + [SMALL_STATE(1806)] = 47053, + [SMALL_STATE(1807)] = 47169, + [SMALL_STATE(1808)] = 47277, + [SMALL_STATE(1809)] = 47355, + [SMALL_STATE(1810)] = 47463, + [SMALL_STATE(1811)] = 47571, + [SMALL_STATE(1812)] = 47679, + [SMALL_STATE(1813)] = 47787, + [SMALL_STATE(1814)] = 47841, + [SMALL_STATE(1815)] = 47893, + [SMALL_STATE(1816)] = 47951, + [SMALL_STATE(1817)] = 48059, + [SMALL_STATE(1818)] = 48111, + [SMALL_STATE(1819)] = 48219, + [SMALL_STATE(1820)] = 48317, + [SMALL_STATE(1821)] = 48393, + [SMALL_STATE(1822)] = 48449, + [SMALL_STATE(1823)] = 48535, + [SMALL_STATE(1824)] = 48613, + [SMALL_STATE(1825)] = 48681, + [SMALL_STATE(1826)] = 48789, + [SMALL_STATE(1827)] = 48843, + [SMALL_STATE(1828)] = 48903, + [SMALL_STATE(1829)] = 48961, + [SMALL_STATE(1830)] = 49031, + [SMALL_STATE(1831)] = 49139, + [SMALL_STATE(1832)] = 49247, + [SMALL_STATE(1833)] = 49337, + [SMALL_STATE(1834)] = 49445, + [SMALL_STATE(1835)] = 49499, + [SMALL_STATE(1836)] = 49557, + [SMALL_STATE(1837)] = 49649, + [SMALL_STATE(1838)] = 49703, + [SMALL_STATE(1839)] = 49803, + [SMALL_STATE(1840)] = 49875, + [SMALL_STATE(1841)] = 49929, + [SMALL_STATE(1842)] = 50037, + [SMALL_STATE(1843)] = 50109, + [SMALL_STATE(1844)] = 50165, + [SMALL_STATE(1845)] = 50223, + [SMALL_STATE(1846)] = 50301, + [SMALL_STATE(1847)] = 50409, + [SMALL_STATE(1848)] = 50503, + [SMALL_STATE(1849)] = 50581, + [SMALL_STATE(1850)] = 50671, + [SMALL_STATE(1851)] = 50763, + [SMALL_STATE(1852)] = 50879, + [SMALL_STATE(1853)] = 50987, + [SMALL_STATE(1854)] = 51063, + [SMALL_STATE(1855)] = 51119, + [SMALL_STATE(1856)] = 51194, + [SMALL_STATE(1857)] = 51263, + [SMALL_STATE(1858)] = 51316, + [SMALL_STATE(1859)] = 51373, + [SMALL_STATE(1860)] = 51428, + [SMALL_STATE(1861)] = 51511, + [SMALL_STATE(1862)] = 51622, + [SMALL_STATE(1863)] = 51673, + [SMALL_STATE(1864)] = 51724, + [SMALL_STATE(1865)] = 51775, + [SMALL_STATE(1866)] = 51826, + [SMALL_STATE(1867)] = 51879, + [SMALL_STATE(1868)] = 51930, + [SMALL_STATE(1869)] = 51983, + [SMALL_STATE(1870)] = 52034, + [SMALL_STATE(1871)] = 52087, + [SMALL_STATE(1872)] = 52144, + [SMALL_STATE(1873)] = 52199, + [SMALL_STATE(1874)] = 52256, + [SMALL_STATE(1875)] = 52313, + [SMALL_STATE(1876)] = 52372, + [SMALL_STATE(1877)] = 52429, + [SMALL_STATE(1878)] = 52480, + [SMALL_STATE(1879)] = 52533, + [SMALL_STATE(1880)] = 52586, + [SMALL_STATE(1881)] = 52637, + [SMALL_STATE(1882)] = 52700, + [SMALL_STATE(1883)] = 52763, + [SMALL_STATE(1884)] = 52814, + [SMALL_STATE(1885)] = 52865, + [SMALL_STATE(1886)] = 52918, + [SMALL_STATE(1887)] = 52969, + [SMALL_STATE(1888)] = 53020, + [SMALL_STATE(1889)] = 53071, + [SMALL_STATE(1890)] = 53128, + [SMALL_STATE(1891)] = 53185, + [SMALL_STATE(1892)] = 53238, + [SMALL_STATE(1893)] = 53291, + [SMALL_STATE(1894)] = 53342, + [SMALL_STATE(1895)] = 53393, + [SMALL_STATE(1896)] = 53444, + [SMALL_STATE(1897)] = 53495, + [SMALL_STATE(1898)] = 53606, + [SMALL_STATE(1899)] = 53717, + [SMALL_STATE(1900)] = 53828, + [SMALL_STATE(1901)] = 53879, + [SMALL_STATE(1902)] = 53930, + [SMALL_STATE(1903)] = 53981, + [SMALL_STATE(1904)] = 54032, + [SMALL_STATE(1905)] = 54083, + [SMALL_STATE(1906)] = 54134, + [SMALL_STATE(1907)] = 54185, + [SMALL_STATE(1908)] = 54236, + [SMALL_STATE(1909)] = 54287, + [SMALL_STATE(1910)] = 54398, + [SMALL_STATE(1911)] = 54449, + [SMALL_STATE(1912)] = 54502, + [SMALL_STATE(1913)] = 54553, + [SMALL_STATE(1914)] = 54604, + [SMALL_STATE(1915)] = 54657, + [SMALL_STATE(1916)] = 54708, + [SMALL_STATE(1917)] = 54765, + [SMALL_STATE(1918)] = 54816, + [SMALL_STATE(1919)] = 54867, + [SMALL_STATE(1920)] = 54918, + [SMALL_STATE(1921)] = 54969, + [SMALL_STATE(1922)] = 55020, + [SMALL_STATE(1923)] = 55073, + [SMALL_STATE(1924)] = 55124, + [SMALL_STATE(1925)] = 55175, + [SMALL_STATE(1926)] = 55226, + [SMALL_STATE(1927)] = 55277, + [SMALL_STATE(1928)] = 55328, + [SMALL_STATE(1929)] = 55379, + [SMALL_STATE(1930)] = 55430, + [SMALL_STATE(1931)] = 55481, + [SMALL_STATE(1932)] = 55532, + [SMALL_STATE(1933)] = 55583, + [SMALL_STATE(1934)] = 55634, + [SMALL_STATE(1935)] = 55685, + [SMALL_STATE(1936)] = 55736, + [SMALL_STATE(1937)] = 55787, + [SMALL_STATE(1938)] = 55838, + [SMALL_STATE(1939)] = 55889, + [SMALL_STATE(1940)] = 55940, + [SMALL_STATE(1941)] = 55991, + [SMALL_STATE(1942)] = 56042, + [SMALL_STATE(1943)] = 56099, + [SMALL_STATE(1944)] = 56150, + [SMALL_STATE(1945)] = 56201, + [SMALL_STATE(1946)] = 56258, + [SMALL_STATE(1947)] = 56309, + [SMALL_STATE(1948)] = 56360, + [SMALL_STATE(1949)] = 56411, + [SMALL_STATE(1950)] = 56462, + [SMALL_STATE(1951)] = 56513, + [SMALL_STATE(1952)] = 56564, + [SMALL_STATE(1953)] = 56615, + [SMALL_STATE(1954)] = 56666, + [SMALL_STATE(1955)] = 56717, + [SMALL_STATE(1956)] = 56768, + [SMALL_STATE(1957)] = 56819, + [SMALL_STATE(1958)] = 56870, + [SMALL_STATE(1959)] = 56921, + [SMALL_STATE(1960)] = 56972, + [SMALL_STATE(1961)] = 57023, + [SMALL_STATE(1962)] = 57074, + [SMALL_STATE(1963)] = 57125, + [SMALL_STATE(1964)] = 57176, + [SMALL_STATE(1965)] = 57227, + [SMALL_STATE(1966)] = 57278, + [SMALL_STATE(1967)] = 57329, + [SMALL_STATE(1968)] = 57396, + [SMALL_STATE(1969)] = 57447, + [SMALL_STATE(1970)] = 57498, + [SMALL_STATE(1971)] = 57549, + [SMALL_STATE(1972)] = 57600, + [SMALL_STATE(1973)] = 57651, + [SMALL_STATE(1974)] = 57708, + [SMALL_STATE(1975)] = 57763, + [SMALL_STATE(1976)] = 57846, + [SMALL_STATE(1977)] = 57901, + [SMALL_STATE(1978)] = 57958, + [SMALL_STATE(1979)] = 58067, + [SMALL_STATE(1980)] = 58130, + [SMALL_STATE(1981)] = 58193, + [SMALL_STATE(1982)] = 58244, + [SMALL_STATE(1983)] = 58301, + [SMALL_STATE(1984)] = 58358, + [SMALL_STATE(1985)] = 58441, + [SMALL_STATE(1986)] = 58514, + [SMALL_STATE(1987)] = 58571, + [SMALL_STATE(1988)] = 58644, + [SMALL_STATE(1989)] = 58713, + [SMALL_STATE(1990)] = 58786, + [SMALL_STATE(1991)] = 58855, + [SMALL_STATE(1992)] = 58914, + [SMALL_STATE(1993)] = 58969, + [SMALL_STATE(1994)] = 59026, + [SMALL_STATE(1995)] = 59099, + [SMALL_STATE(1996)] = 59162, + [SMALL_STATE(1997)] = 59225, + [SMALL_STATE(1998)] = 59308, + [SMALL_STATE(1999)] = 59361, + [SMALL_STATE(2000)] = 59424, + [SMALL_STATE(2001)] = 59487, + [SMALL_STATE(2002)] = 59540, + [SMALL_STATE(2003)] = 59593, + [SMALL_STATE(2004)] = 59676, + [SMALL_STATE(2005)] = 59741, + [SMALL_STATE(2006)] = 59806, + [SMALL_STATE(2007)] = 59863, + [SMALL_STATE(2008)] = 59920, + [SMALL_STATE(2009)] = 59977, + [SMALL_STATE(2010)] = 60030, + [SMALL_STATE(2011)] = 60103, + [SMALL_STATE(2012)] = 60162, + [SMALL_STATE(2013)] = 60217, + [SMALL_STATE(2014)] = 60274, + [SMALL_STATE(2015)] = 60327, + [SMALL_STATE(2016)] = 60434, + [SMALL_STATE(2017)] = 60487, + [SMALL_STATE(2018)] = 60570, + [SMALL_STATE(2019)] = 60643, + [SMALL_STATE(2020)] = 60712, + [SMALL_STATE(2021)] = 60785, + [SMALL_STATE(2022)] = 60848, + [SMALL_STATE(2023)] = 60907, + [SMALL_STATE(2024)] = 60976, + [SMALL_STATE(2025)] = 61047, + [SMALL_STATE(2026)] = 61120, + [SMALL_STATE(2027)] = 61173, + [SMALL_STATE(2028)] = 61284, + [SMALL_STATE(2029)] = 61395, + [SMALL_STATE(2030)] = 61448, + [SMALL_STATE(2031)] = 61555, + [SMALL_STATE(2032)] = 61662, + [SMALL_STATE(2033)] = 61769, + [SMALL_STATE(2034)] = 61876, + [SMALL_STATE(2035)] = 61983, + [SMALL_STATE(2036)] = 62064, + [SMALL_STATE(2037)] = 62135, + [SMALL_STATE(2038)] = 62230, + [SMALL_STATE(2039)] = 62327, + [SMALL_STATE(2040)] = 62404, + [SMALL_STATE(2041)] = 62493, + [SMALL_STATE(2042)] = 62584, + [SMALL_STATE(2043)] = 62677, + [SMALL_STATE(2044)] = 62752, + [SMALL_STATE(2045)] = 62829, + [SMALL_STATE(2046)] = 62914, + [SMALL_STATE(2047)] = 63013, + [SMALL_STATE(2048)] = 63120, + [SMALL_STATE(2049)] = 63227, + [SMALL_STATE(2050)] = 63334, + [SMALL_STATE(2051)] = 63441, + [SMALL_STATE(2052)] = 63548, + [SMALL_STATE(2053)] = 63655, + [SMALL_STATE(2054)] = 63762, + [SMALL_STATE(2055)] = 63869, + [SMALL_STATE(2056)] = 63978, + [SMALL_STATE(2057)] = 64047, + [SMALL_STATE(2058)] = 64154, + [SMALL_STATE(2059)] = 64205, + [SMALL_STATE(2060)] = 64315, + [SMALL_STATE(2061)] = 64369, + [SMALL_STATE(2062)] = 64423, + [SMALL_STATE(2063)] = 64529, + [SMALL_STATE(2064)] = 64593, + [SMALL_STATE(2065)] = 64645, + [SMALL_STATE(2066)] = 64697, + [SMALL_STATE(2067)] = 64751, + [SMALL_STATE(2068)] = 64805, + [SMALL_STATE(2069)] = 64857, + [SMALL_STATE(2070)] = 64911, + [SMALL_STATE(2071)] = 64965, + [SMALL_STATE(2072)] = 65015, + [SMALL_STATE(2073)] = 65089, + [SMALL_STATE(2074)] = 65155, + [SMALL_STATE(2075)] = 65231, + [SMALL_STATE(2076)] = 65337, + [SMALL_STATE(2077)] = 65447, + [SMALL_STATE(2078)] = 65511, + [SMALL_STATE(2079)] = 65577, + [SMALL_STATE(2080)] = 65629, + [SMALL_STATE(2081)] = 65679, + [SMALL_STATE(2082)] = 65737, + [SMALL_STATE(2083)] = 65791, + [SMALL_STATE(2084)] = 65841, + [SMALL_STATE(2085)] = 65905, + [SMALL_STATE(2086)] = 65955, + [SMALL_STATE(2087)] = 66005, + [SMALL_STATE(2088)] = 66113, + [SMALL_STATE(2089)] = 66163, + [SMALL_STATE(2090)] = 66217, + [SMALL_STATE(2091)] = 66267, + [SMALL_STATE(2092)] = 66331, + [SMALL_STATE(2093)] = 66395, + [SMALL_STATE(2094)] = 66461, + [SMALL_STATE(2095)] = 66511, + [SMALL_STATE(2096)] = 66617, + [SMALL_STATE(2097)] = 66667, + [SMALL_STATE(2098)] = 66717, + [SMALL_STATE(2099)] = 66767, + [SMALL_STATE(2100)] = 66817, + [SMALL_STATE(2101)] = 66867, + [SMALL_STATE(2102)] = 66941, + [SMALL_STATE(2103)] = 66999, + [SMALL_STATE(2104)] = 67075, + [SMALL_STATE(2105)] = 67125, + [SMALL_STATE(2106)] = 67175, + [SMALL_STATE(2107)] = 67231, + [SMALL_STATE(2108)] = 67341, + [SMALL_STATE(2109)] = 67391, + [SMALL_STATE(2110)] = 67441, + [SMALL_STATE(2111)] = 67495, + [SMALL_STATE(2112)] = 67545, + [SMALL_STATE(2113)] = 67609, + [SMALL_STATE(2114)] = 67665, + [SMALL_STATE(2115)] = 67719, + [SMALL_STATE(2116)] = 67773, + [SMALL_STATE(2117)] = 67823, + [SMALL_STATE(2118)] = 67873, + [SMALL_STATE(2119)] = 67923, + [SMALL_STATE(2120)] = 67997, + [SMALL_STATE(2121)] = 68051, + [SMALL_STATE(2122)] = 68127, + [SMALL_STATE(2123)] = 68189, + [SMALL_STATE(2124)] = 68251, + [SMALL_STATE(2125)] = 68301, + [SMALL_STATE(2126)] = 68351, + [SMALL_STATE(2127)] = 68401, + [SMALL_STATE(2128)] = 68451, + [SMALL_STATE(2129)] = 68503, + [SMALL_STATE(2130)] = 68561, + [SMALL_STATE(2131)] = 68619, + [SMALL_STATE(2132)] = 68669, + [SMALL_STATE(2133)] = 68731, + [SMALL_STATE(2134)] = 68793, + [SMALL_STATE(2135)] = 68851, + [SMALL_STATE(2136)] = 68911, + [SMALL_STATE(2137)] = 68971, + [SMALL_STATE(2138)] = 69033, + [SMALL_STATE(2139)] = 69095, + [SMALL_STATE(2140)] = 69157, + [SMALL_STATE(2141)] = 69219, + [SMALL_STATE(2142)] = 69281, + [SMALL_STATE(2143)] = 69343, + [SMALL_STATE(2144)] = 69393, + [SMALL_STATE(2145)] = 69503, + [SMALL_STATE(2146)] = 69613, + [SMALL_STATE(2147)] = 69723, + [SMALL_STATE(2148)] = 69773, + [SMALL_STATE(2149)] = 69883, + [SMALL_STATE(2150)] = 69933, + [SMALL_STATE(2151)] = 70039, + [SMALL_STATE(2152)] = 70145, + [SMALL_STATE(2153)] = 70207, + [SMALL_STATE(2154)] = 70317, + [SMALL_STATE(2155)] = 70423, + [SMALL_STATE(2156)] = 70473, + [SMALL_STATE(2157)] = 70523, + [SMALL_STATE(2158)] = 70573, + [SMALL_STATE(2159)] = 70679, + [SMALL_STATE(2160)] = 70785, + [SMALL_STATE(2161)] = 70865, + [SMALL_STATE(2162)] = 70975, + [SMALL_STATE(2163)] = 71045, + [SMALL_STATE(2164)] = 71155, + [SMALL_STATE(2165)] = 71249, + [SMALL_STATE(2166)] = 71345, + [SMALL_STATE(2167)] = 71421, + [SMALL_STATE(2168)] = 71509, + [SMALL_STATE(2169)] = 71599, + [SMALL_STATE(2170)] = 71691, + [SMALL_STATE(2171)] = 71765, + [SMALL_STATE(2172)] = 71841, + [SMALL_STATE(2173)] = 71891, + [SMALL_STATE(2174)] = 71945, + [SMALL_STATE(2175)] = 72029, + [SMALL_STATE(2176)] = 72127, + [SMALL_STATE(2177)] = 72237, + [SMALL_STATE(2178)] = 72343, + [SMALL_STATE(2179)] = 72449, + [SMALL_STATE(2180)] = 72499, + [SMALL_STATE(2181)] = 72605, + [SMALL_STATE(2182)] = 72711, + [SMALL_STATE(2183)] = 72817, + [SMALL_STATE(2184)] = 72923, + [SMALL_STATE(2185)] = 73029, + [SMALL_STATE(2186)] = 73079, + [SMALL_STATE(2187)] = 73189, + [SMALL_STATE(2188)] = 73295, + [SMALL_STATE(2189)] = 73363, + [SMALL_STATE(2190)] = 73413, + [SMALL_STATE(2191)] = 73463, + [SMALL_STATE(2192)] = 73513, + [SMALL_STATE(2193)] = 73563, + [SMALL_STATE(2194)] = 73613, + [SMALL_STATE(2195)] = 73723, + [SMALL_STATE(2196)] = 73833, + [SMALL_STATE(2197)] = 73943, + [SMALL_STATE(2198)] = 74053, + [SMALL_STATE(2199)] = 74163, + [SMALL_STATE(2200)] = 74213, + [SMALL_STATE(2201)] = 74287, + [SMALL_STATE(2202)] = 74397, + [SMALL_STATE(2203)] = 74461, + [SMALL_STATE(2204)] = 74515, + [SMALL_STATE(2205)] = 74625, + [SMALL_STATE(2206)] = 74679, + [SMALL_STATE(2207)] = 74733, + [SMALL_STATE(2208)] = 74809, + [SMALL_STATE(2209)] = 74863, + [SMALL_STATE(2210)] = 74973, + [SMALL_STATE(2211)] = 75037, + [SMALL_STATE(2212)] = 75103, + [SMALL_STATE(2213)] = 75213, + [SMALL_STATE(2214)] = 75323, + [SMALL_STATE(2215)] = 75389, + [SMALL_STATE(2216)] = 75457, + [SMALL_STATE(2217)] = 75563, + [SMALL_STATE(2218)] = 75637, + [SMALL_STATE(2219)] = 75691, + [SMALL_STATE(2220)] = 75757, + [SMALL_STATE(2221)] = 75823, + [SMALL_STATE(2222)] = 75889, + [SMALL_STATE(2223)] = 75953, + [SMALL_STATE(2224)] = 76019, + [SMALL_STATE(2225)] = 76073, + [SMALL_STATE(2226)] = 76123, + [SMALL_STATE(2227)] = 76173, + [SMALL_STATE(2228)] = 76233, + [SMALL_STATE(2229)] = 76297, + [SMALL_STATE(2230)] = 76347, + [SMALL_STATE(2231)] = 76457, + [SMALL_STATE(2232)] = 76521, + [SMALL_STATE(2233)] = 76631, + [SMALL_STATE(2234)] = 76741, + [SMALL_STATE(2235)] = 76805, + [SMALL_STATE(2236)] = 76915, + [SMALL_STATE(2237)] = 76979, + [SMALL_STATE(2238)] = 77029, + [SMALL_STATE(2239)] = 77079, + [SMALL_STATE(2240)] = 77129, + [SMALL_STATE(2241)] = 77179, + [SMALL_STATE(2242)] = 77243, + [SMALL_STATE(2243)] = 77307, + [SMALL_STATE(2244)] = 77373, + [SMALL_STATE(2245)] = 77479, + [SMALL_STATE(2246)] = 77585, + [SMALL_STATE(2247)] = 77691, + [SMALL_STATE(2248)] = 77797, + [SMALL_STATE(2249)] = 77903, + [SMALL_STATE(2250)] = 77983, + [SMALL_STATE(2251)] = 78053, + [SMALL_STATE(2252)] = 78147, + [SMALL_STATE(2253)] = 78243, + [SMALL_STATE(2254)] = 78319, + [SMALL_STATE(2255)] = 78407, + [SMALL_STATE(2256)] = 78497, + [SMALL_STATE(2257)] = 78589, + [SMALL_STATE(2258)] = 78663, + [SMALL_STATE(2259)] = 78739, + [SMALL_STATE(2260)] = 78823, + [SMALL_STATE(2261)] = 78921, + [SMALL_STATE(2262)] = 79027, + [SMALL_STATE(2263)] = 79133, + [SMALL_STATE(2264)] = 79239, + [SMALL_STATE(2265)] = 79345, + [SMALL_STATE(2266)] = 79451, + [SMALL_STATE(2267)] = 79557, + [SMALL_STATE(2268)] = 79663, + [SMALL_STATE(2269)] = 79769, + [SMALL_STATE(2270)] = 79843, + [SMALL_STATE(2271)] = 79907, + [SMALL_STATE(2272)] = 79957, + [SMALL_STATE(2273)] = 80007, + [SMALL_STATE(2274)] = 80057, + [SMALL_STATE(2275)] = 80107, + [SMALL_STATE(2276)] = 80157, + [SMALL_STATE(2277)] = 80207, + [SMALL_STATE(2278)] = 80257, + [SMALL_STATE(2279)] = 80367, + [SMALL_STATE(2280)] = 80435, + [SMALL_STATE(2281)] = 80509, + [SMALL_STATE(2282)] = 80615, + [SMALL_STATE(2283)] = 80681, + [SMALL_STATE(2284)] = 80791, + [SMALL_STATE(2285)] = 80843, + [SMALL_STATE(2286)] = 80897, + [SMALL_STATE(2287)] = 80973, + [SMALL_STATE(2288)] = 81083, + [SMALL_STATE(2289)] = 81133, + [SMALL_STATE(2290)] = 81243, + [SMALL_STATE(2291)] = 81297, + [SMALL_STATE(2292)] = 81361, + [SMALL_STATE(2293)] = 81415, + [SMALL_STATE(2294)] = 81481, + [SMALL_STATE(2295)] = 81547, + [SMALL_STATE(2296)] = 81613, + [SMALL_STATE(2297)] = 81679, + [SMALL_STATE(2298)] = 81743, + [SMALL_STATE(2299)] = 81809, + [SMALL_STATE(2300)] = 81919, + [SMALL_STATE(2301)] = 82029, + [SMALL_STATE(2302)] = 82083, + [SMALL_STATE(2303)] = 82193, + [SMALL_STATE(2304)] = 82247, + [SMALL_STATE(2305)] = 82313, + [SMALL_STATE(2306)] = 82363, + [SMALL_STATE(2307)] = 82449, + [SMALL_STATE(2308)] = 82523, + [SMALL_STATE(2309)] = 82573, + [SMALL_STATE(2310)] = 82649, + [SMALL_STATE(2311)] = 82701, + [SMALL_STATE(2312)] = 82807, + [SMALL_STATE(2313)] = 82861, + [SMALL_STATE(2314)] = 82919, + [SMALL_STATE(2315)] = 82973, + [SMALL_STATE(2316)] = 83023, + [SMALL_STATE(2317)] = 83087, + [SMALL_STATE(2318)] = 83137, + [SMALL_STATE(2319)] = 83195, + [SMALL_STATE(2320)] = 83247, + [SMALL_STATE(2321)] = 83299, + [SMALL_STATE(2322)] = 83359, + [SMALL_STATE(2323)] = 83413, + [SMALL_STATE(2324)] = 83523, + [SMALL_STATE(2325)] = 83573, + [SMALL_STATE(2326)] = 83631, + [SMALL_STATE(2327)] = 83685, + [SMALL_STATE(2328)] = 83739, + [SMALL_STATE(2329)] = 83797, + [SMALL_STATE(2330)] = 83855, + [SMALL_STATE(2331)] = 83905, + [SMALL_STATE(2332)] = 83971, + [SMALL_STATE(2333)] = 84077, + [SMALL_STATE(2334)] = 84127, + [SMALL_STATE(2335)] = 84177, + [SMALL_STATE(2336)] = 84227, + [SMALL_STATE(2337)] = 84337, + [SMALL_STATE(2338)] = 84447, + [SMALL_STATE(2339)] = 84557, + [SMALL_STATE(2340)] = 84667, + [SMALL_STATE(2341)] = 84777, + [SMALL_STATE(2342)] = 84887, + [SMALL_STATE(2343)] = 84997, + [SMALL_STATE(2344)] = 85107, + [SMALL_STATE(2345)] = 85217, + [SMALL_STATE(2346)] = 85327, + [SMALL_STATE(2347)] = 85379, + [SMALL_STATE(2348)] = 85489, + [SMALL_STATE(2349)] = 85599, + [SMALL_STATE(2350)] = 85709, + [SMALL_STATE(2351)] = 85761, + [SMALL_STATE(2352)] = 85813, + [SMALL_STATE(2353)] = 85867, + [SMALL_STATE(2354)] = 85931, + [SMALL_STATE(2355)] = 86037, + [SMALL_STATE(2356)] = 86088, + [SMALL_STATE(2357)] = 86139, + [SMALL_STATE(2358)] = 86208, + [SMALL_STATE(2359)] = 86277, + [SMALL_STATE(2360)] = 86334, + [SMALL_STATE(2361)] = 86393, + [SMALL_STATE(2362)] = 86452, + [SMALL_STATE(2363)] = 86511, + [SMALL_STATE(2364)] = 86570, + [SMALL_STATE(2365)] = 86621, + [SMALL_STATE(2366)] = 86680, + [SMALL_STATE(2367)] = 86731, + [SMALL_STATE(2368)] = 86786, + [SMALL_STATE(2369)] = 86841, + [SMALL_STATE(2370)] = 86896, + [SMALL_STATE(2371)] = 86965, + [SMALL_STATE(2372)] = 87024, + [SMALL_STATE(2373)] = 87079, + [SMALL_STATE(2374)] = 87136, + [SMALL_STATE(2375)] = 87193, + [SMALL_STATE(2376)] = 87252, + [SMALL_STATE(2377)] = 87305, + [SMALL_STATE(2378)] = 87364, + [SMALL_STATE(2379)] = 87433, + [SMALL_STATE(2380)] = 87488, + [SMALL_STATE(2381)] = 87543, + [SMALL_STATE(2382)] = 87598, + [SMALL_STATE(2383)] = 87687, + [SMALL_STATE(2384)] = 87744, + [SMALL_STATE(2385)] = 87801, + [SMALL_STATE(2386)] = 87876, + [SMALL_STATE(2387)] = 87981, + [SMALL_STATE(2388)] = 88034, + [SMALL_STATE(2389)] = 88093, + [SMALL_STATE(2390)] = 88152, + [SMALL_STATE(2391)] = 88211, + [SMALL_STATE(2392)] = 88270, + [SMALL_STATE(2393)] = 88377, + [SMALL_STATE(2394)] = 88484, + [SMALL_STATE(2395)] = 88589, + [SMALL_STATE(2396)] = 88694, + [SMALL_STATE(2397)] = 88753, + [SMALL_STATE(2398)] = 88812, + [SMALL_STATE(2399)] = 88871, + [SMALL_STATE(2400)] = 88930, + [SMALL_STATE(2401)] = 89011, + [SMALL_STATE(2402)] = 89088, + [SMALL_STATE(2403)] = 89193, + [SMALL_STATE(2404)] = 89262, + [SMALL_STATE(2405)] = 89321, + [SMALL_STATE(2406)] = 89380, + [SMALL_STATE(2407)] = 89439, + [SMALL_STATE(2408)] = 89498, + [SMALL_STATE(2409)] = 89557, + [SMALL_STATE(2410)] = 89616, + [SMALL_STATE(2411)] = 89667, + [SMALL_STATE(2412)] = 89726, + [SMALL_STATE(2413)] = 89781, + [SMALL_STATE(2414)] = 89832, + [SMALL_STATE(2415)] = 89937, + [SMALL_STATE(2416)] = 90042, + [SMALL_STATE(2417)] = 90147, + [SMALL_STATE(2418)] = 90252, + [SMALL_STATE(2419)] = 90357, + [SMALL_STATE(2420)] = 90436, + [SMALL_STATE(2421)] = 90505, + [SMALL_STATE(2422)] = 90598, + [SMALL_STATE(2423)] = 90693, + [SMALL_STATE(2424)] = 90768, + [SMALL_STATE(2425)] = 90855, + [SMALL_STATE(2426)] = 90944, + [SMALL_STATE(2427)] = 91035, + [SMALL_STATE(2428)] = 91108, + [SMALL_STATE(2429)] = 91183, + [SMALL_STATE(2430)] = 91266, + [SMALL_STATE(2431)] = 91363, + [SMALL_STATE(2432)] = 91468, + [SMALL_STATE(2433)] = 91573, + [SMALL_STATE(2434)] = 91678, + [SMALL_STATE(2435)] = 91783, + [SMALL_STATE(2436)] = 91888, + [SMALL_STATE(2437)] = 91993, + [SMALL_STATE(2438)] = 92098, + [SMALL_STATE(2439)] = 92203, + [SMALL_STATE(2440)] = 92270, + [SMALL_STATE(2441)] = 92343, + [SMALL_STATE(2442)] = 92448, + [SMALL_STATE(2443)] = 92513, + [SMALL_STATE(2444)] = 92618, + [SMALL_STATE(2445)] = 92687, + [SMALL_STATE(2446)] = 92738, + [SMALL_STATE(2447)] = 92843, + [SMALL_STATE(2448)] = 92948, + [SMALL_STATE(2449)] = 93053, + [SMALL_STATE(2450)] = 93158, + [SMALL_STATE(2451)] = 93263, + [SMALL_STATE(2452)] = 93342, + [SMALL_STATE(2453)] = 93411, + [SMALL_STATE(2454)] = 93504, + [SMALL_STATE(2455)] = 93599, + [SMALL_STATE(2456)] = 93674, + [SMALL_STATE(2457)] = 93761, + [SMALL_STATE(2458)] = 93850, + [SMALL_STATE(2459)] = 93941, + [SMALL_STATE(2460)] = 94014, + [SMALL_STATE(2461)] = 94089, + [SMALL_STATE(2462)] = 94172, + [SMALL_STATE(2463)] = 94269, + [SMALL_STATE(2464)] = 94374, + [SMALL_STATE(2465)] = 94479, + [SMALL_STATE(2466)] = 94584, + [SMALL_STATE(2467)] = 94689, + [SMALL_STATE(2468)] = 94794, + [SMALL_STATE(2469)] = 94899, + [SMALL_STATE(2470)] = 95004, + [SMALL_STATE(2471)] = 95109, + [SMALL_STATE(2472)] = 95176, + [SMALL_STATE(2473)] = 95249, + [SMALL_STATE(2474)] = 95354, + [SMALL_STATE(2475)] = 95419, + [SMALL_STATE(2476)] = 95476, + [SMALL_STATE(2477)] = 95533, + [SMALL_STATE(2478)] = 95638, + [SMALL_STATE(2479)] = 95742, + [SMALL_STATE(2480)] = 95792, + [SMALL_STATE(2481)] = 95842, + [SMALL_STATE(2482)] = 95946, + [SMALL_STATE(2483)] = 96050, + [SMALL_STATE(2484)] = 96100, + [SMALL_STATE(2485)] = 96150, + [SMALL_STATE(2486)] = 96222, + [SMALL_STATE(2487)] = 96326, + [SMALL_STATE(2488)] = 96430, + [SMALL_STATE(2489)] = 96478, + [SMALL_STATE(2490)] = 96528, + [SMALL_STATE(2491)] = 96632, + [SMALL_STATE(2492)] = 96736, + [SMALL_STATE(2493)] = 96840, + [SMALL_STATE(2494)] = 96918, + [SMALL_STATE(2495)] = 96986, + [SMALL_STATE(2496)] = 97078, + [SMALL_STATE(2497)] = 97172, + [SMALL_STATE(2498)] = 97246, + [SMALL_STATE(2499)] = 97332, + [SMALL_STATE(2500)] = 97420, + [SMALL_STATE(2501)] = 97510, + [SMALL_STATE(2502)] = 97582, + [SMALL_STATE(2503)] = 97656, + [SMALL_STATE(2504)] = 97738, + [SMALL_STATE(2505)] = 97834, + [SMALL_STATE(2506)] = 97938, + [SMALL_STATE(2507)] = 98042, + [SMALL_STATE(2508)] = 98148, + [SMALL_STATE(2509)] = 98252, + [SMALL_STATE(2510)] = 98356, + [SMALL_STATE(2511)] = 98460, + [SMALL_STATE(2512)] = 98514, + [SMALL_STATE(2513)] = 98618, + [SMALL_STATE(2514)] = 98682, + [SMALL_STATE(2515)] = 98742, + [SMALL_STATE(2516)] = 98806, + [SMALL_STATE(2517)] = 98866, + [SMALL_STATE(2518)] = 98970, + [SMALL_STATE(2519)] = 99074, + [SMALL_STATE(2520)] = 99124, + [SMALL_STATE(2521)] = 99228, + [SMALL_STATE(2522)] = 99276, + [SMALL_STATE(2523)] = 99326, + [SMALL_STATE(2524)] = 99380, + [SMALL_STATE(2525)] = 99436, + [SMALL_STATE(2526)] = 99490, + [SMALL_STATE(2527)] = 99594, + [SMALL_STATE(2528)] = 99698, + [SMALL_STATE(2529)] = 99752, + [SMALL_STATE(2530)] = 99806, + [SMALL_STATE(2531)] = 99860, + [SMALL_STATE(2532)] = 99928, + [SMALL_STATE(2533)] = 100032, + [SMALL_STATE(2534)] = 100102, + [SMALL_STATE(2535)] = 100152, + [SMALL_STATE(2536)] = 100202, + [SMALL_STATE(2537)] = 100252, + [SMALL_STATE(2538)] = 100306, + [SMALL_STATE(2539)] = 100372, + [SMALL_STATE(2540)] = 100426, + [SMALL_STATE(2541)] = 100490, + [SMALL_STATE(2542)] = 100550, + [SMALL_STATE(2543)] = 100614, + [SMALL_STATE(2544)] = 100674, + [SMALL_STATE(2545)] = 100742, + [SMALL_STATE(2546)] = 100796, + [SMALL_STATE(2547)] = 100900, + [SMALL_STATE(2548)] = 101004, + [SMALL_STATE(2549)] = 101070, + [SMALL_STATE(2550)] = 101142, + [SMALL_STATE(2551)] = 101246, + [SMALL_STATE(2552)] = 101310, + [SMALL_STATE(2553)] = 101414, + [SMALL_STATE(2554)] = 101478, + [SMALL_STATE(2555)] = 101582, + [SMALL_STATE(2556)] = 101630, + [SMALL_STATE(2557)] = 101680, + [SMALL_STATE(2558)] = 101784, + [SMALL_STATE(2559)] = 101834, + [SMALL_STATE(2560)] = 101894, + [SMALL_STATE(2561)] = 101948, + [SMALL_STATE(2562)] = 102002, + [SMALL_STATE(2563)] = 102059, + [SMALL_STATE(2564)] = 102118, + [SMALL_STATE(2565)] = 102175, + [SMALL_STATE(2566)] = 102224, + [SMALL_STATE(2567)] = 102281, + [SMALL_STATE(2568)] = 102382, + [SMALL_STATE(2569)] = 102441, + [SMALL_STATE(2570)] = 102500, + [SMALL_STATE(2571)] = 102559, + [SMALL_STATE(2572)] = 102618, + [SMALL_STATE(2573)] = 102675, + [SMALL_STATE(2574)] = 102736, + [SMALL_STATE(2575)] = 102837, + [SMALL_STATE(2576)] = 102894, + [SMALL_STATE(2577)] = 102951, + [SMALL_STATE(2578)] = 103008, + [SMALL_STATE(2579)] = 103057, + [SMALL_STATE(2580)] = 103114, + [SMALL_STATE(2581)] = 103171, + [SMALL_STATE(2582)] = 103228, + [SMALL_STATE(2583)] = 103285, + [SMALL_STATE(2584)] = 103348, + [SMALL_STATE(2585)] = 103405, + [SMALL_STATE(2586)] = 103470, + [SMALL_STATE(2587)] = 103527, + [SMALL_STATE(2588)] = 103580, + [SMALL_STATE(2589)] = 103639, + [SMALL_STATE(2590)] = 103698, + [SMALL_STATE(2591)] = 103755, + [SMALL_STATE(2592)] = 103814, + [SMALL_STATE(2593)] = 103873, + [SMALL_STATE(2594)] = 103930, + [SMALL_STATE(2595)] = 103987, + [SMALL_STATE(2596)] = 104050, + [SMALL_STATE(2597)] = 104109, + [SMALL_STATE(2598)] = 104168, + [SMALL_STATE(2599)] = 104217, + [SMALL_STATE(2600)] = 104276, + [SMALL_STATE(2601)] = 104324, + [SMALL_STATE(2602)] = 104370, + [SMALL_STATE(2603)] = 104416, + [SMALL_STATE(2604)] = 104464, + [SMALL_STATE(2605)] = 104510, + [SMALL_STATE(2606)] = 104556, + [SMALL_STATE(2607)] = 104612, + [SMALL_STATE(2608)] = 104658, + [SMALL_STATE(2609)] = 104704, + [SMALL_STATE(2610)] = 104752, + [SMALL_STATE(2611)] = 104798, + [SMALL_STATE(2612)] = 104844, + [SMALL_STATE(2613)] = 104890, + [SMALL_STATE(2614)] = 104936, + [SMALL_STATE(2615)] = 104982, + [SMALL_STATE(2616)] = 105028, + [SMALL_STATE(2617)] = 105074, + [SMALL_STATE(2618)] = 105124, + [SMALL_STATE(2619)] = 105170, + [SMALL_STATE(2620)] = 105216, + [SMALL_STATE(2621)] = 105262, + [SMALL_STATE(2622)] = 105308, + [SMALL_STATE(2623)] = 105356, + [SMALL_STATE(2624)] = 105404, + [SMALL_STATE(2625)] = 105450, + [SMALL_STATE(2626)] = 105508, + [SMALL_STATE(2627)] = 105556, + [SMALL_STATE(2628)] = 105604, + [SMALL_STATE(2629)] = 105650, + [SMALL_STATE(2630)] = 105696, + [SMALL_STATE(2631)] = 105742, + [SMALL_STATE(2632)] = 105788, + [SMALL_STATE(2633)] = 105836, + [SMALL_STATE(2634)] = 105884, + [SMALL_STATE(2635)] = 105930, + [SMALL_STATE(2636)] = 105976, + [SMALL_STATE(2637)] = 106024, + [SMALL_STATE(2638)] = 106070, + [SMALL_STATE(2639)] = 106116, + [SMALL_STATE(2640)] = 106162, + [SMALL_STATE(2641)] = 106208, + [SMALL_STATE(2642)] = 106254, + [SMALL_STATE(2643)] = 106304, + [SMALL_STATE(2644)] = 106350, + [SMALL_STATE(2645)] = 106396, + [SMALL_STATE(2646)] = 106442, + [SMALL_STATE(2647)] = 106488, + [SMALL_STATE(2648)] = 106534, + [SMALL_STATE(2649)] = 106580, + [SMALL_STATE(2650)] = 106626, + [SMALL_STATE(2651)] = 106672, + [SMALL_STATE(2652)] = 106718, + [SMALL_STATE(2653)] = 106764, + [SMALL_STATE(2654)] = 106810, + [SMALL_STATE(2655)] = 106856, + [SMALL_STATE(2656)] = 106904, + [SMALL_STATE(2657)] = 106950, + [SMALL_STATE(2658)] = 106996, + [SMALL_STATE(2659)] = 107044, + [SMALL_STATE(2660)] = 107092, + [SMALL_STATE(2661)] = 107138, + [SMALL_STATE(2662)] = 107188, + [SMALL_STATE(2663)] = 107234, + [SMALL_STATE(2664)] = 107280, + [SMALL_STATE(2665)] = 107333, + [SMALL_STATE(2666)] = 107378, + [SMALL_STATE(2667)] = 107445, + [SMALL_STATE(2668)] = 107496, + [SMALL_STATE(2669)] = 107541, + [SMALL_STATE(2670)] = 107592, + [SMALL_STATE(2671)] = 107641, + [SMALL_STATE(2672)] = 107694, + [SMALL_STATE(2673)] = 107739, + [SMALL_STATE(2674)] = 107784, + [SMALL_STATE(2675)] = 107829, + [SMALL_STATE(2676)] = 107874, + [SMALL_STATE(2677)] = 107919, + [SMALL_STATE(2678)] = 107977, + [SMALL_STATE(2679)] = 108033, + [SMALL_STATE(2680)] = 108091, + [SMALL_STATE(2681)] = 108139, + [SMALL_STATE(2682)] = 108187, + [SMALL_STATE(2683)] = 108245, + [SMALL_STATE(2684)] = 108305, + [SMALL_STATE(2685)] = 108365, + [SMALL_STATE(2686)] = 108437, + [SMALL_STATE(2687)] = 108509, + [SMALL_STATE(2688)] = 108569, + [SMALL_STATE(2689)] = 108627, + [SMALL_STATE(2690)] = 108671, + [SMALL_STATE(2691)] = 108734, + [SMALL_STATE(2692)] = 108787, + [SMALL_STATE(2693)] = 108840, + [SMALL_STATE(2694)] = 108893, + [SMALL_STATE(2695)] = 108946, + [SMALL_STATE(2696)] = 108999, + [SMALL_STATE(2697)] = 109052, + [SMALL_STATE(2698)] = 109105, + [SMALL_STATE(2699)] = 109168, + [SMALL_STATE(2700)] = 109221, + [SMALL_STATE(2701)] = 109274, + [SMALL_STATE(2702)] = 109327, + [SMALL_STATE(2703)] = 109380, + [SMALL_STATE(2704)] = 109433, + [SMALL_STATE(2705)] = 109486, + [SMALL_STATE(2706)] = 109539, + [SMALL_STATE(2707)] = 109592, + [SMALL_STATE(2708)] = 109645, + [SMALL_STATE(2709)] = 109698, + [SMALL_STATE(2710)] = 109751, + [SMALL_STATE(2711)] = 109804, + [SMALL_STATE(2712)] = 109857, + [SMALL_STATE(2713)] = 109910, + [SMALL_STATE(2714)] = 109963, + [SMALL_STATE(2715)] = 110016, + [SMALL_STATE(2716)] = 110069, + [SMALL_STATE(2717)] = 110122, + [SMALL_STATE(2718)] = 110171, + [SMALL_STATE(2719)] = 110224, + [SMALL_STATE(2720)] = 110277, + [SMALL_STATE(2721)] = 110331, + [SMALL_STATE(2722)] = 110385, [SMALL_STATE(2723)] = 110439, - [SMALL_STATE(2724)] = 110492, - [SMALL_STATE(2725)] = 110556, - [SMALL_STATE(2726)] = 110610, - [SMALL_STATE(2727)] = 110664, - [SMALL_STATE(2728)] = 110728, - [SMALL_STATE(2729)] = 110788, - [SMALL_STATE(2730)] = 110842, - [SMALL_STATE(2731)] = 110922, - [SMALL_STATE(2732)] = 110976, - [SMALL_STATE(2733)] = 111056, - [SMALL_STATE(2734)] = 111110, - [SMALL_STATE(2735)] = 111164, - [SMALL_STATE(2736)] = 111218, - [SMALL_STATE(2737)] = 111298, - [SMALL_STATE(2738)] = 111378, - [SMALL_STATE(2739)] = 111442, - [SMALL_STATE(2740)] = 111496, - [SMALL_STATE(2741)] = 111576, - [SMALL_STATE(2742)] = 111630, - [SMALL_STATE(2743)] = 111710, - [SMALL_STATE(2744)] = 111764, - [SMALL_STATE(2745)] = 111824, - [SMALL_STATE(2746)] = 111904, - [SMALL_STATE(2747)] = 111961, - [SMALL_STATE(2748)] = 112012, - [SMALL_STATE(2749)] = 112053, - [SMALL_STATE(2750)] = 112106, - [SMALL_STATE(2751)] = 112163, - [SMALL_STATE(2752)] = 112220, - [SMALL_STATE(2753)] = 112261, - [SMALL_STATE(2754)] = 112318, - [SMALL_STATE(2755)] = 112375, - [SMALL_STATE(2756)] = 112432, - [SMALL_STATE(2757)] = 112489, - [SMALL_STATE(2758)] = 112546, - [SMALL_STATE(2759)] = 112587, - [SMALL_STATE(2760)] = 112644, - [SMALL_STATE(2761)] = 112697, - [SMALL_STATE(2762)] = 112754, - [SMALL_STATE(2763)] = 112811, - [SMALL_STATE(2764)] = 112852, - [SMALL_STATE(2765)] = 112909, - [SMALL_STATE(2766)] = 112952, - [SMALL_STATE(2767)] = 112993, - [SMALL_STATE(2768)] = 113050, - [SMALL_STATE(2769)] = 113107, - [SMALL_STATE(2770)] = 113164, - [SMALL_STATE(2771)] = 113221, - [SMALL_STATE(2772)] = 113269, - [SMALL_STATE(2773)] = 113317, - [SMALL_STATE(2774)] = 113365, - [SMALL_STATE(2775)] = 113413, - [SMALL_STATE(2776)] = 113463, - [SMALL_STATE(2777)] = 113511, - [SMALL_STATE(2778)] = 113561, - [SMALL_STATE(2779)] = 113609, - [SMALL_STATE(2780)] = 113657, - [SMALL_STATE(2781)] = 113705, - [SMALL_STATE(2782)] = 113753, - [SMALL_STATE(2783)] = 113801, - [SMALL_STATE(2784)] = 113851, - [SMALL_STATE(2785)] = 113899, - [SMALL_STATE(2786)] = 113947, - [SMALL_STATE(2787)] = 113995, - [SMALL_STATE(2788)] = 114045, - [SMALL_STATE(2789)] = 114093, - [SMALL_STATE(2790)] = 114141, - [SMALL_STATE(2791)] = 114191, - [SMALL_STATE(2792)] = 114241, - [SMALL_STATE(2793)] = 114289, - [SMALL_STATE(2794)] = 114337, - [SMALL_STATE(2795)] = 114385, - [SMALL_STATE(2796)] = 114433, - [SMALL_STATE(2797)] = 114483, - [SMALL_STATE(2798)] = 114531, - [SMALL_STATE(2799)] = 114579, - [SMALL_STATE(2800)] = 114627, - [SMALL_STATE(2801)] = 114675, - [SMALL_STATE(2802)] = 114723, - [SMALL_STATE(2803)] = 114771, - [SMALL_STATE(2804)] = 114819, - [SMALL_STATE(2805)] = 114867, - [SMALL_STATE(2806)] = 114917, - [SMALL_STATE(2807)] = 114965, - [SMALL_STATE(2808)] = 115013, - [SMALL_STATE(2809)] = 115061, - [SMALL_STATE(2810)] = 115111, - [SMALL_STATE(2811)] = 115159, - [SMALL_STATE(2812)] = 115209, - [SMALL_STATE(2813)] = 115257, - [SMALL_STATE(2814)] = 115305, - [SMALL_STATE(2815)] = 115355, - [SMALL_STATE(2816)] = 115403, - [SMALL_STATE(2817)] = 115453, - [SMALL_STATE(2818)] = 115501, - [SMALL_STATE(2819)] = 115551, - [SMALL_STATE(2820)] = 115599, - [SMALL_STATE(2821)] = 115647, - [SMALL_STATE(2822)] = 115695, - [SMALL_STATE(2823)] = 115743, - [SMALL_STATE(2824)] = 115791, - [SMALL_STATE(2825)] = 115839, - [SMALL_STATE(2826)] = 115887, - [SMALL_STATE(2827)] = 115935, - [SMALL_STATE(2828)] = 115985, - [SMALL_STATE(2829)] = 116033, - [SMALL_STATE(2830)] = 116081, - [SMALL_STATE(2831)] = 116129, - [SMALL_STATE(2832)] = 116177, - [SMALL_STATE(2833)] = 116212, - [SMALL_STATE(2834)] = 116253, - [SMALL_STATE(2835)] = 116294, - [SMALL_STATE(2836)] = 116335, - [SMALL_STATE(2837)] = 116363, - [SMALL_STATE(2838)] = 116391, - [SMALL_STATE(2839)] = 116419, - [SMALL_STATE(2840)] = 116447, - [SMALL_STATE(2841)] = 116475, - [SMALL_STATE(2842)] = 116503, - [SMALL_STATE(2843)] = 116531, - [SMALL_STATE(2844)] = 116559, - [SMALL_STATE(2845)] = 116587, - [SMALL_STATE(2846)] = 116615, - [SMALL_STATE(2847)] = 116643, - [SMALL_STATE(2848)] = 116671, - [SMALL_STATE(2849)] = 116699, - [SMALL_STATE(2850)] = 116727, - [SMALL_STATE(2851)] = 116755, - [SMALL_STATE(2852)] = 116783, - [SMALL_STATE(2853)] = 116811, - [SMALL_STATE(2854)] = 116839, - [SMALL_STATE(2855)] = 116867, - [SMALL_STATE(2856)] = 116895, - [SMALL_STATE(2857)] = 116923, - [SMALL_STATE(2858)] = 116951, - [SMALL_STATE(2859)] = 116979, - [SMALL_STATE(2860)] = 117007, - [SMALL_STATE(2861)] = 117035, - [SMALL_STATE(2862)] = 117063, - [SMALL_STATE(2863)] = 117091, - [SMALL_STATE(2864)] = 117119, - [SMALL_STATE(2865)] = 117147, - [SMALL_STATE(2866)] = 117175, - [SMALL_STATE(2867)] = 117203, - [SMALL_STATE(2868)] = 117231, - [SMALL_STATE(2869)] = 117259, - [SMALL_STATE(2870)] = 117287, - [SMALL_STATE(2871)] = 117320, - [SMALL_STATE(2872)] = 117347, - [SMALL_STATE(2873)] = 117404, - [SMALL_STATE(2874)] = 117461, - [SMALL_STATE(2875)] = 117488, - [SMALL_STATE(2876)] = 117514, - [SMALL_STATE(2877)] = 117552, - [SMALL_STATE(2878)] = 117578, - [SMALL_STATE(2879)] = 117604, - [SMALL_STATE(2880)] = 117632, - [SMALL_STATE(2881)] = 117658, - [SMALL_STATE(2882)] = 117684, - [SMALL_STATE(2883)] = 117722, - [SMALL_STATE(2884)] = 117752, - [SMALL_STATE(2885)] = 117782, - [SMALL_STATE(2886)] = 117810, - [SMALL_STATE(2887)] = 117836, - [SMALL_STATE(2888)] = 117866, - [SMALL_STATE(2889)] = 117892, - [SMALL_STATE(2890)] = 117926, - [SMALL_STATE(2891)] = 117964, - [SMALL_STATE(2892)] = 117990, - [SMALL_STATE(2893)] = 118040, - [SMALL_STATE(2894)] = 118066, - [SMALL_STATE(2895)] = 118091, - [SMALL_STATE(2896)] = 118116, - [SMALL_STATE(2897)] = 118141, - [SMALL_STATE(2898)] = 118166, - [SMALL_STATE(2899)] = 118197, - [SMALL_STATE(2900)] = 118222, - [SMALL_STATE(2901)] = 118247, - [SMALL_STATE(2902)] = 118274, - [SMALL_STATE(2903)] = 118299, - [SMALL_STATE(2904)] = 118323, - [SMALL_STATE(2905)] = 118347, - [SMALL_STATE(2906)] = 118371, - [SMALL_STATE(2907)] = 118395, - [SMALL_STATE(2908)] = 118419, - [SMALL_STATE(2909)] = 118443, - [SMALL_STATE(2910)] = 118467, - [SMALL_STATE(2911)] = 118491, - [SMALL_STATE(2912)] = 118515, - [SMALL_STATE(2913)] = 118539, - [SMALL_STATE(2914)] = 118563, - [SMALL_STATE(2915)] = 118587, - [SMALL_STATE(2916)] = 118611, - [SMALL_STATE(2917)] = 118635, - [SMALL_STATE(2918)] = 118659, - [SMALL_STATE(2919)] = 118683, - [SMALL_STATE(2920)] = 118707, - [SMALL_STATE(2921)] = 118735, - [SMALL_STATE(2922)] = 118761, - [SMALL_STATE(2923)] = 118785, - [SMALL_STATE(2924)] = 118809, - [SMALL_STATE(2925)] = 118835, - [SMALL_STATE(2926)] = 118857, - [SMALL_STATE(2927)] = 118881, - [SMALL_STATE(2928)] = 118905, - [SMALL_STATE(2929)] = 118929, - [SMALL_STATE(2930)] = 118953, - [SMALL_STATE(2931)] = 118977, - [SMALL_STATE(2932)] = 119001, - [SMALL_STATE(2933)] = 119025, - [SMALL_STATE(2934)] = 119049, - [SMALL_STATE(2935)] = 119073, - [SMALL_STATE(2936)] = 119097, - [SMALL_STATE(2937)] = 119121, - [SMALL_STATE(2938)] = 119145, - [SMALL_STATE(2939)] = 119169, - [SMALL_STATE(2940)] = 119193, - [SMALL_STATE(2941)] = 119217, - [SMALL_STATE(2942)] = 119241, - [SMALL_STATE(2943)] = 119265, - [SMALL_STATE(2944)] = 119289, - [SMALL_STATE(2945)] = 119313, - [SMALL_STATE(2946)] = 119337, - [SMALL_STATE(2947)] = 119361, - [SMALL_STATE(2948)] = 119393, - [SMALL_STATE(2949)] = 119417, - [SMALL_STATE(2950)] = 119439, - [SMALL_STATE(2951)] = 119471, - [SMALL_STATE(2952)] = 119505, - [SMALL_STATE(2953)] = 119539, - [SMALL_STATE(2954)] = 119573, - [SMALL_STATE(2955)] = 119597, - [SMALL_STATE(2956)] = 119621, - [SMALL_STATE(2957)] = 119645, - [SMALL_STATE(2958)] = 119667, - [SMALL_STATE(2959)] = 119691, - [SMALL_STATE(2960)] = 119715, - [SMALL_STATE(2961)] = 119739, - [SMALL_STATE(2962)] = 119763, - [SMALL_STATE(2963)] = 119787, - [SMALL_STATE(2964)] = 119811, - [SMALL_STATE(2965)] = 119835, - [SMALL_STATE(2966)] = 119859, - [SMALL_STATE(2967)] = 119891, - [SMALL_STATE(2968)] = 119925, - [SMALL_STATE(2969)] = 119959, - [SMALL_STATE(2970)] = 119993, - [SMALL_STATE(2971)] = 120017, - [SMALL_STATE(2972)] = 120039, - [SMALL_STATE(2973)] = 120071, - [SMALL_STATE(2974)] = 120105, - [SMALL_STATE(2975)] = 120139, - [SMALL_STATE(2976)] = 120173, - [SMALL_STATE(2977)] = 120195, - [SMALL_STATE(2978)] = 120219, - [SMALL_STATE(2979)] = 120251, - [SMALL_STATE(2980)] = 120285, - [SMALL_STATE(2981)] = 120319, - [SMALL_STATE(2982)] = 120353, - [SMALL_STATE(2983)] = 120387, - [SMALL_STATE(2984)] = 120409, - [SMALL_STATE(2985)] = 120443, - [SMALL_STATE(2986)] = 120477, - [SMALL_STATE(2987)] = 120499, - [SMALL_STATE(2988)] = 120523, - [SMALL_STATE(2989)] = 120547, - [SMALL_STATE(2990)] = 120571, - [SMALL_STATE(2991)] = 120595, - [SMALL_STATE(2992)] = 120617, - [SMALL_STATE(2993)] = 120641, - [SMALL_STATE(2994)] = 120673, - [SMALL_STATE(2995)] = 120695, - [SMALL_STATE(2996)] = 120729, - [SMALL_STATE(2997)] = 120753, - [SMALL_STATE(2998)] = 120787, - [SMALL_STATE(2999)] = 120821, - [SMALL_STATE(3000)] = 120845, - [SMALL_STATE(3001)] = 120869, - [SMALL_STATE(3002)] = 120893, - [SMALL_STATE(3003)] = 120917, - [SMALL_STATE(3004)] = 120941, - [SMALL_STATE(3005)] = 120980, - [SMALL_STATE(3006)] = 121023, - [SMALL_STATE(3007)] = 121052, - [SMALL_STATE(3008)] = 121077, - [SMALL_STATE(3009)] = 121106, - [SMALL_STATE(3010)] = 121149, - [SMALL_STATE(3011)] = 121192, - [SMALL_STATE(3012)] = 121231, - [SMALL_STATE(3013)] = 121274, - [SMALL_STATE(3014)] = 121317, - [SMALL_STATE(3015)] = 121342, - [SMALL_STATE(3016)] = 121377, - [SMALL_STATE(3017)] = 121420, - [SMALL_STATE(3018)] = 121463, - [SMALL_STATE(3019)] = 121506, - [SMALL_STATE(3020)] = 121535, - [SMALL_STATE(3021)] = 121578, - [SMALL_STATE(3022)] = 121623, - [SMALL_STATE(3023)] = 121666, - [SMALL_STATE(3024)] = 121709, - [SMALL_STATE(3025)] = 121748, - [SMALL_STATE(3026)] = 121787, - [SMALL_STATE(3027)] = 121812, - [SMALL_STATE(3028)] = 121855, - [SMALL_STATE(3029)] = 121898, - [SMALL_STATE(3030)] = 121927, - [SMALL_STATE(3031)] = 121970, - [SMALL_STATE(3032)] = 122013, - [SMALL_STATE(3033)] = 122052, - [SMALL_STATE(3034)] = 122095, - [SMALL_STATE(3035)] = 122138, - [SMALL_STATE(3036)] = 122167, - [SMALL_STATE(3037)] = 122196, - [SMALL_STATE(3038)] = 122239, - [SMALL_STATE(3039)] = 122282, - [SMALL_STATE(3040)] = 122325, - [SMALL_STATE(3041)] = 122368, - [SMALL_STATE(3042)] = 122397, - [SMALL_STATE(3043)] = 122426, - [SMALL_STATE(3044)] = 122469, - [SMALL_STATE(3045)] = 122498, - [SMALL_STATE(3046)] = 122541, - [SMALL_STATE(3047)] = 122561, - [SMALL_STATE(3048)] = 122597, - [SMALL_STATE(3049)] = 122619, - [SMALL_STATE(3050)] = 122641, - [SMALL_STATE(3051)] = 122677, - [SMALL_STATE(3052)] = 122705, - [SMALL_STATE(3053)] = 122727, - [SMALL_STATE(3054)] = 122755, - [SMALL_STATE(3055)] = 122779, - [SMALL_STATE(3056)] = 122807, - [SMALL_STATE(3057)] = 122843, - [SMALL_STATE(3058)] = 122867, - [SMALL_STATE(3059)] = 122903, - [SMALL_STATE(3060)] = 122925, - [SMALL_STATE(3061)] = 122951, - [SMALL_STATE(3062)] = 122973, - [SMALL_STATE(3063)] = 122995, - [SMALL_STATE(3064)] = 123023, - [SMALL_STATE(3065)] = 123051, - [SMALL_STATE(3066)] = 123075, - [SMALL_STATE(3067)] = 123101, - [SMALL_STATE(3068)] = 123125, - [SMALL_STATE(3069)] = 123147, - [SMALL_STATE(3070)] = 123169, - [SMALL_STATE(3071)] = 123205, - [SMALL_STATE(3072)] = 123227, - [SMALL_STATE(3073)] = 123269, - [SMALL_STATE(3074)] = 123311, - [SMALL_STATE(3075)] = 123331, - [SMALL_STATE(3076)] = 123359, - [SMALL_STATE(3077)] = 123395, - [SMALL_STATE(3078)] = 123431, - [SMALL_STATE(3079)] = 123451, - [SMALL_STATE(3080)] = 123471, - [SMALL_STATE(3081)] = 123491, - [SMALL_STATE(3082)] = 123511, - [SMALL_STATE(3083)] = 123531, - [SMALL_STATE(3084)] = 123551, - [SMALL_STATE(3085)] = 123587, - [SMALL_STATE(3086)] = 123607, - [SMALL_STATE(3087)] = 123627, - [SMALL_STATE(3088)] = 123647, - [SMALL_STATE(3089)] = 123667, - [SMALL_STATE(3090)] = 123687, - [SMALL_STATE(3091)] = 123707, - [SMALL_STATE(3092)] = 123729, - [SMALL_STATE(3093)] = 123753, - [SMALL_STATE(3094)] = 123789, - [SMALL_STATE(3095)] = 123809, - [SMALL_STATE(3096)] = 123829, - [SMALL_STATE(3097)] = 123849, - [SMALL_STATE(3098)] = 123869, - [SMALL_STATE(3099)] = 123889, - [SMALL_STATE(3100)] = 123909, - [SMALL_STATE(3101)] = 123929, - [SMALL_STATE(3102)] = 123951, - [SMALL_STATE(3103)] = 123971, - [SMALL_STATE(3104)] = 123991, - [SMALL_STATE(3105)] = 124011, - [SMALL_STATE(3106)] = 124031, - [SMALL_STATE(3107)] = 124051, - [SMALL_STATE(3108)] = 124071, - [SMALL_STATE(3109)] = 124097, - [SMALL_STATE(3110)] = 124119, - [SMALL_STATE(3111)] = 124139, - [SMALL_STATE(3112)] = 124159, - [SMALL_STATE(3113)] = 124179, - [SMALL_STATE(3114)] = 124199, - [SMALL_STATE(3115)] = 124219, - [SMALL_STATE(3116)] = 124255, - [SMALL_STATE(3117)] = 124283, - [SMALL_STATE(3118)] = 124311, - [SMALL_STATE(3119)] = 124331, - [SMALL_STATE(3120)] = 124351, - [SMALL_STATE(3121)] = 124388, - [SMALL_STATE(3122)] = 124425, - [SMALL_STATE(3123)] = 124464, - [SMALL_STATE(3124)] = 124501, - [SMALL_STATE(3125)] = 124534, - [SMALL_STATE(3126)] = 124571, - [SMALL_STATE(3127)] = 124608, - [SMALL_STATE(3128)] = 124645, - [SMALL_STATE(3129)] = 124666, - [SMALL_STATE(3130)] = 124695, - [SMALL_STATE(3131)] = 124728, - [SMALL_STATE(3132)] = 124761, - [SMALL_STATE(3133)] = 124798, - [SMALL_STATE(3134)] = 124819, - [SMALL_STATE(3135)] = 124856, - [SMALL_STATE(3136)] = 124877, - [SMALL_STATE(3137)] = 124910, - [SMALL_STATE(3138)] = 124933, - [SMALL_STATE(3139)] = 124956, - [SMALL_STATE(3140)] = 124979, - [SMALL_STATE(3141)] = 125010, - [SMALL_STATE(3142)] = 125031, - [SMALL_STATE(3143)] = 125070, - [SMALL_STATE(3144)] = 125103, - [SMALL_STATE(3145)] = 125132, - [SMALL_STATE(3146)] = 125169, - [SMALL_STATE(3147)] = 125206, - [SMALL_STATE(3148)] = 125235, - [SMALL_STATE(3149)] = 125272, - [SMALL_STATE(3150)] = 125291, - [SMALL_STATE(3151)] = 125322, - [SMALL_STATE(3152)] = 125359, - [SMALL_STATE(3153)] = 125392, - [SMALL_STATE(3154)] = 125429, - [SMALL_STATE(3155)] = 125458, - [SMALL_STATE(3156)] = 125479, - [SMALL_STATE(3157)] = 125500, - [SMALL_STATE(3158)] = 125531, - [SMALL_STATE(3159)] = 125568, - [SMALL_STATE(3160)] = 125587, - [SMALL_STATE(3161)] = 125624, - [SMALL_STATE(3162)] = 125661, - [SMALL_STATE(3163)] = 125698, - [SMALL_STATE(3164)] = 125727, - [SMALL_STATE(3165)] = 125764, - [SMALL_STATE(3166)] = 125801, - [SMALL_STATE(3167)] = 125840, - [SMALL_STATE(3168)] = 125877, - [SMALL_STATE(3169)] = 125902, - [SMALL_STATE(3170)] = 125927, - [SMALL_STATE(3171)] = 125966, - [SMALL_STATE(3172)] = 125999, - [SMALL_STATE(3173)] = 126022, - [SMALL_STATE(3174)] = 126053, - [SMALL_STATE(3175)] = 126090, - [SMALL_STATE(3176)] = 126121, - [SMALL_STATE(3177)] = 126144, - [SMALL_STATE(3178)] = 126181, - [SMALL_STATE(3179)] = 126214, - [SMALL_STATE(3180)] = 126251, - [SMALL_STATE(3181)] = 126284, - [SMALL_STATE(3182)] = 126323, - [SMALL_STATE(3183)] = 126356, - [SMALL_STATE(3184)] = 126377, - [SMALL_STATE(3185)] = 126397, - [SMALL_STATE(3186)] = 126421, - [SMALL_STATE(3187)] = 126441, - [SMALL_STATE(3188)] = 126461, - [SMALL_STATE(3189)] = 126481, - [SMALL_STATE(3190)] = 126501, - [SMALL_STATE(3191)] = 126531, - [SMALL_STATE(3192)] = 126555, - [SMALL_STATE(3193)] = 126575, - [SMALL_STATE(3194)] = 126605, - [SMALL_STATE(3195)] = 126635, - [SMALL_STATE(3196)] = 126655, - [SMALL_STATE(3197)] = 126685, - [SMALL_STATE(3198)] = 126715, - [SMALL_STATE(3199)] = 126735, - [SMALL_STATE(3200)] = 126755, - [SMALL_STATE(3201)] = 126775, - [SMALL_STATE(3202)] = 126797, - [SMALL_STATE(3203)] = 126817, - [SMALL_STATE(3204)] = 126837, - [SMALL_STATE(3205)] = 126857, - [SMALL_STATE(3206)] = 126877, - [SMALL_STATE(3207)] = 126901, - [SMALL_STATE(3208)] = 126925, - [SMALL_STATE(3209)] = 126947, - [SMALL_STATE(3210)] = 126969, - [SMALL_STATE(3211)] = 126993, - [SMALL_STATE(3212)] = 127017, - [SMALL_STATE(3213)] = 127037, - [SMALL_STATE(3214)] = 127055, - [SMALL_STATE(3215)] = 127085, - [SMALL_STATE(3216)] = 127111, - [SMALL_STATE(3217)] = 127131, - [SMALL_STATE(3218)] = 127151, - [SMALL_STATE(3219)] = 127171, - [SMALL_STATE(3220)] = 127195, - [SMALL_STATE(3221)] = 127215, - [SMALL_STATE(3222)] = 127235, - [SMALL_STATE(3223)] = 127257, - [SMALL_STATE(3224)] = 127277, - [SMALL_STATE(3225)] = 127297, - [SMALL_STATE(3226)] = 127317, - [SMALL_STATE(3227)] = 127337, - [SMALL_STATE(3228)] = 127355, - [SMALL_STATE(3229)] = 127375, - [SMALL_STATE(3230)] = 127395, - [SMALL_STATE(3231)] = 127425, - [SMALL_STATE(3232)] = 127445, - [SMALL_STATE(3233)] = 127467, - [SMALL_STATE(3234)] = 127489, - [SMALL_STATE(3235)] = 127513, - [SMALL_STATE(3236)] = 127531, - [SMALL_STATE(3237)] = 127557, - [SMALL_STATE(3238)] = 127575, - [SMALL_STATE(3239)] = 127593, - [SMALL_STATE(3240)] = 127611, - [SMALL_STATE(3241)] = 127629, - [SMALL_STATE(3242)] = 127665, - [SMALL_STATE(3243)] = 127683, - [SMALL_STATE(3244)] = 127701, - [SMALL_STATE(3245)] = 127719, - [SMALL_STATE(3246)] = 127737, - [SMALL_STATE(3247)] = 127755, - [SMALL_STATE(3248)] = 127773, - [SMALL_STATE(3249)] = 127791, - [SMALL_STATE(3250)] = 127813, - [SMALL_STATE(3251)] = 127833, - [SMALL_STATE(3252)] = 127853, - [SMALL_STATE(3253)] = 127873, - [SMALL_STATE(3254)] = 127893, - [SMALL_STATE(3255)] = 127913, - [SMALL_STATE(3256)] = 127933, - [SMALL_STATE(3257)] = 127953, - [SMALL_STATE(3258)] = 127973, - [SMALL_STATE(3259)] = 127997, - [SMALL_STATE(3260)] = 128017, - [SMALL_STATE(3261)] = 128037, - [SMALL_STATE(3262)] = 128057, - [SMALL_STATE(3263)] = 128079, - [SMALL_STATE(3264)] = 128109, - [SMALL_STATE(3265)] = 128142, - [SMALL_STATE(3266)] = 128159, - [SMALL_STATE(3267)] = 128194, - [SMALL_STATE(3268)] = 128221, - [SMALL_STATE(3269)] = 128256, - [SMALL_STATE(3270)] = 128291, - [SMALL_STATE(3271)] = 128324, - [SMALL_STATE(3272)] = 128343, - [SMALL_STATE(3273)] = 128378, - [SMALL_STATE(3274)] = 128403, - [SMALL_STATE(3275)] = 128422, - [SMALL_STATE(3276)] = 128445, - [SMALL_STATE(3277)] = 128466, - [SMALL_STATE(3278)] = 128487, - [SMALL_STATE(3279)] = 128520, - [SMALL_STATE(3280)] = 128555, - [SMALL_STATE(3281)] = 128588, - [SMALL_STATE(3282)] = 128623, - [SMALL_STATE(3283)] = 128642, - [SMALL_STATE(3284)] = 128663, - [SMALL_STATE(3285)] = 128686, - [SMALL_STATE(3286)] = 128721, - [SMALL_STATE(3287)] = 128752, - [SMALL_STATE(3288)] = 128787, - [SMALL_STATE(3289)] = 128822, - [SMALL_STATE(3290)] = 128841, - [SMALL_STATE(3291)] = 128876, - [SMALL_STATE(3292)] = 128911, - [SMALL_STATE(3293)] = 128928, - [SMALL_STATE(3294)] = 128961, - [SMALL_STATE(3295)] = 128978, - [SMALL_STATE(3296)] = 129011, - [SMALL_STATE(3297)] = 129028, - [SMALL_STATE(3298)] = 129057, - [SMALL_STATE(3299)] = 129088, - [SMALL_STATE(3300)] = 129119, - [SMALL_STATE(3301)] = 129135, - [SMALL_STATE(3302)] = 129163, - [SMALL_STATE(3303)] = 129191, - [SMALL_STATE(3304)] = 129219, - [SMALL_STATE(3305)] = 129247, - [SMALL_STATE(3306)] = 129275, - [SMALL_STATE(3307)] = 129301, - [SMALL_STATE(3308)] = 129333, - [SMALL_STATE(3309)] = 129361, - [SMALL_STATE(3310)] = 129389, - [SMALL_STATE(3311)] = 129417, - [SMALL_STATE(3312)] = 129449, - [SMALL_STATE(3313)] = 129477, - [SMALL_STATE(3314)] = 129509, - [SMALL_STATE(3315)] = 129539, - [SMALL_STATE(3316)] = 129569, - [SMALL_STATE(3317)] = 129601, - [SMALL_STATE(3318)] = 129627, - [SMALL_STATE(3319)] = 129653, - [SMALL_STATE(3320)] = 129683, - [SMALL_STATE(3321)] = 129711, - [SMALL_STATE(3322)] = 129727, - [SMALL_STATE(3323)] = 129757, - [SMALL_STATE(3324)] = 129787, - [SMALL_STATE(3325)] = 129815, - [SMALL_STATE(3326)] = 129845, - [SMALL_STATE(3327)] = 129873, - [SMALL_STATE(3328)] = 129903, - [SMALL_STATE(3329)] = 129925, - [SMALL_STATE(3330)] = 129941, - [SMALL_STATE(3331)] = 129957, - [SMALL_STATE(3332)] = 129987, - [SMALL_STATE(3333)] = 130017, - [SMALL_STATE(3334)] = 130047, - [SMALL_STATE(3335)] = 130075, - [SMALL_STATE(3336)] = 130091, - [SMALL_STATE(3337)] = 130121, - [SMALL_STATE(3338)] = 130153, - [SMALL_STATE(3339)] = 130183, - [SMALL_STATE(3340)] = 130199, - [SMALL_STATE(3341)] = 130215, - [SMALL_STATE(3342)] = 130237, - [SMALL_STATE(3343)] = 130259, - [SMALL_STATE(3344)] = 130287, - [SMALL_STATE(3345)] = 130319, - [SMALL_STATE(3346)] = 130347, - [SMALL_STATE(3347)] = 130375, - [SMALL_STATE(3348)] = 130391, - [SMALL_STATE(3349)] = 130419, - [SMALL_STATE(3350)] = 130449, - [SMALL_STATE(3351)] = 130479, - [SMALL_STATE(3352)] = 130505, - [SMALL_STATE(3353)] = 130523, - [SMALL_STATE(3354)] = 130539, - [SMALL_STATE(3355)] = 130567, - [SMALL_STATE(3356)] = 130595, - [SMALL_STATE(3357)] = 130623, - [SMALL_STATE(3358)] = 130651, - [SMALL_STATE(3359)] = 130679, - [SMALL_STATE(3360)] = 130709, - [SMALL_STATE(3361)] = 130739, - [SMALL_STATE(3362)] = 130769, - [SMALL_STATE(3363)] = 130799, - [SMALL_STATE(3364)] = 130829, - [SMALL_STATE(3365)] = 130857, - [SMALL_STATE(3366)] = 130887, - [SMALL_STATE(3367)] = 130915, - [SMALL_STATE(3368)] = 130943, - [SMALL_STATE(3369)] = 130975, - [SMALL_STATE(3370)] = 130991, - [SMALL_STATE(3371)] = 131021, - [SMALL_STATE(3372)] = 131041, - [SMALL_STATE(3373)] = 131073, - [SMALL_STATE(3374)] = 131103, - [SMALL_STATE(3375)] = 131135, - [SMALL_STATE(3376)] = 131163, - [SMALL_STATE(3377)] = 131179, - [SMALL_STATE(3378)] = 131211, - [SMALL_STATE(3379)] = 131243, - [SMALL_STATE(3380)] = 131273, - [SMALL_STATE(3381)] = 131301, - [SMALL_STATE(3382)] = 131329, - [SMALL_STATE(3383)] = 131345, - [SMALL_STATE(3384)] = 131373, - [SMALL_STATE(3385)] = 131405, - [SMALL_STATE(3386)] = 131421, - [SMALL_STATE(3387)] = 131447, - [SMALL_STATE(3388)] = 131463, - [SMALL_STATE(3389)] = 131489, - [SMALL_STATE(3390)] = 131507, - [SMALL_STATE(3391)] = 131523, - [SMALL_STATE(3392)] = 131539, - [SMALL_STATE(3393)] = 131561, - [SMALL_STATE(3394)] = 131581, - [SMALL_STATE(3395)] = 131599, - [SMALL_STATE(3396)] = 131617, - [SMALL_STATE(3397)] = 131649, - [SMALL_STATE(3398)] = 131681, - [SMALL_STATE(3399)] = 131709, - [SMALL_STATE(3400)] = 131725, - [SMALL_STATE(3401)] = 131753, - [SMALL_STATE(3402)] = 131783, - [SMALL_STATE(3403)] = 131799, - [SMALL_STATE(3404)] = 131829, - [SMALL_STATE(3405)] = 131859, - [SMALL_STATE(3406)] = 131891, - [SMALL_STATE(3407)] = 131907, - [SMALL_STATE(3408)] = 131937, - [SMALL_STATE(3409)] = 131965, - [SMALL_STATE(3410)] = 131981, - [SMALL_STATE(3411)] = 132009, - [SMALL_STATE(3412)] = 132037, - [SMALL_STATE(3413)] = 132053, - [SMALL_STATE(3414)] = 132081, - [SMALL_STATE(3415)] = 132109, - [SMALL_STATE(3416)] = 132137, - [SMALL_STATE(3417)] = 132153, - [SMALL_STATE(3418)] = 132169, - [SMALL_STATE(3419)] = 132185, - [SMALL_STATE(3420)] = 132213, - [SMALL_STATE(3421)] = 132239, - [SMALL_STATE(3422)] = 132255, - [SMALL_STATE(3423)] = 132283, - [SMALL_STATE(3424)] = 132311, - [SMALL_STATE(3425)] = 132339, - [SMALL_STATE(3426)] = 132367, - [SMALL_STATE(3427)] = 132383, - [SMALL_STATE(3428)] = 132399, - [SMALL_STATE(3429)] = 132421, - [SMALL_STATE(3430)] = 132453, - [SMALL_STATE(3431)] = 132485, - [SMALL_STATE(3432)] = 132515, - [SMALL_STATE(3433)] = 132545, - [SMALL_STATE(3434)] = 132561, - [SMALL_STATE(3435)] = 132579, - [SMALL_STATE(3436)] = 132595, - [SMALL_STATE(3437)] = 132625, - [SMALL_STATE(3438)] = 132655, - [SMALL_STATE(3439)] = 132671, - [SMALL_STATE(3440)] = 132699, - [SMALL_STATE(3441)] = 132715, - [SMALL_STATE(3442)] = 132745, - [SMALL_STATE(3443)] = 132773, - [SMALL_STATE(3444)] = 132801, - [SMALL_STATE(3445)] = 132831, - [SMALL_STATE(3446)] = 132859, - [SMALL_STATE(3447)] = 132891, - [SMALL_STATE(3448)] = 132917, - [SMALL_STATE(3449)] = 132947, - [SMALL_STATE(3450)] = 132979, - [SMALL_STATE(3451)] = 132995, - [SMALL_STATE(3452)] = 133017, - [SMALL_STATE(3453)] = 133033, - [SMALL_STATE(3454)] = 133059, - [SMALL_STATE(3455)] = 133085, - [SMALL_STATE(3456)] = 133101, - [SMALL_STATE(3457)] = 133117, - [SMALL_STATE(3458)] = 133139, - [SMALL_STATE(3459)] = 133155, - [SMALL_STATE(3460)] = 133171, - [SMALL_STATE(3461)] = 133193, - [SMALL_STATE(3462)] = 133209, - [SMALL_STATE(3463)] = 133235, - [SMALL_STATE(3464)] = 133265, - [SMALL_STATE(3465)] = 133295, - [SMALL_STATE(3466)] = 133325, - [SMALL_STATE(3467)] = 133345, - [SMALL_STATE(3468)] = 133361, - [SMALL_STATE(3469)] = 133377, - [SMALL_STATE(3470)] = 133401, - [SMALL_STATE(3471)] = 133427, - [SMALL_STATE(3472)] = 133443, - [SMALL_STATE(3473)] = 133459, - [SMALL_STATE(3474)] = 133475, - [SMALL_STATE(3475)] = 133503, - [SMALL_STATE(3476)] = 133519, - [SMALL_STATE(3477)] = 133535, - [SMALL_STATE(3478)] = 133561, - [SMALL_STATE(3479)] = 133587, - [SMALL_STATE(3480)] = 133615, - [SMALL_STATE(3481)] = 133641, - [SMALL_STATE(3482)] = 133657, - [SMALL_STATE(3483)] = 133680, - [SMALL_STATE(3484)] = 133703, - [SMALL_STATE(3485)] = 133728, - [SMALL_STATE(3486)] = 133747, - [SMALL_STATE(3487)] = 133762, - [SMALL_STATE(3488)] = 133787, - [SMALL_STATE(3489)] = 133812, - [SMALL_STATE(3490)] = 133833, - [SMALL_STATE(3491)] = 133862, - [SMALL_STATE(3492)] = 133887, - [SMALL_STATE(3493)] = 133912, - [SMALL_STATE(3494)] = 133937, - [SMALL_STATE(3495)] = 133958, - [SMALL_STATE(3496)] = 133987, - [SMALL_STATE(3497)] = 134012, - [SMALL_STATE(3498)] = 134033, - [SMALL_STATE(3499)] = 134062, - [SMALL_STATE(3500)] = 134079, - [SMALL_STATE(3501)] = 134108, - [SMALL_STATE(3502)] = 134133, - [SMALL_STATE(3503)] = 134148, - [SMALL_STATE(3504)] = 134171, - [SMALL_STATE(3505)] = 134200, - [SMALL_STATE(3506)] = 134221, - [SMALL_STATE(3507)] = 134246, - [SMALL_STATE(3508)] = 134267, - [SMALL_STATE(3509)] = 134284, - [SMALL_STATE(3510)] = 134299, - [SMALL_STATE(3511)] = 134316, - [SMALL_STATE(3512)] = 134341, - [SMALL_STATE(3513)] = 134370, - [SMALL_STATE(3514)] = 134399, - [SMALL_STATE(3515)] = 134424, - [SMALL_STATE(3516)] = 134447, - [SMALL_STATE(3517)] = 134464, - [SMALL_STATE(3518)] = 134481, - [SMALL_STATE(3519)] = 134510, - [SMALL_STATE(3520)] = 134531, - [SMALL_STATE(3521)] = 134554, - [SMALL_STATE(3522)] = 134579, - [SMALL_STATE(3523)] = 134602, - [SMALL_STATE(3524)] = 134625, - [SMALL_STATE(3525)] = 134648, - [SMALL_STATE(3526)] = 134671, - [SMALL_STATE(3527)] = 134689, - [SMALL_STATE(3528)] = 134711, - [SMALL_STATE(3529)] = 134725, - [SMALL_STATE(3530)] = 134747, - [SMALL_STATE(3531)] = 134769, - [SMALL_STATE(3532)] = 134791, - [SMALL_STATE(3533)] = 134813, - [SMALL_STATE(3534)] = 134827, - [SMALL_STATE(3535)] = 134849, - [SMALL_STATE(3536)] = 134871, - [SMALL_STATE(3537)] = 134897, - [SMALL_STATE(3538)] = 134923, - [SMALL_STATE(3539)] = 134937, - [SMALL_STATE(3540)] = 134959, - [SMALL_STATE(3541)] = 134979, - [SMALL_STATE(3542)] = 135001, - [SMALL_STATE(3543)] = 135023, - [SMALL_STATE(3544)] = 135045, - [SMALL_STATE(3545)] = 135067, - [SMALL_STATE(3546)] = 135093, - [SMALL_STATE(3547)] = 135119, - [SMALL_STATE(3548)] = 135141, - [SMALL_STATE(3549)] = 135167, - [SMALL_STATE(3550)] = 135189, - [SMALL_STATE(3551)] = 135207, - [SMALL_STATE(3552)] = 135221, - [SMALL_STATE(3553)] = 135247, - [SMALL_STATE(3554)] = 135269, - [SMALL_STATE(3555)] = 135293, - [SMALL_STATE(3556)] = 135315, - [SMALL_STATE(3557)] = 135337, - [SMALL_STATE(3558)] = 135351, - [SMALL_STATE(3559)] = 135373, - [SMALL_STATE(3560)] = 135399, - [SMALL_STATE(3561)] = 135421, - [SMALL_STATE(3562)] = 135443, - [SMALL_STATE(3563)] = 135465, - [SMALL_STATE(3564)] = 135487, - [SMALL_STATE(3565)] = 135509, - [SMALL_STATE(3566)] = 135535, - [SMALL_STATE(3567)] = 135557, - [SMALL_STATE(3568)] = 135583, - [SMALL_STATE(3569)] = 135601, - [SMALL_STATE(3570)] = 135627, - [SMALL_STATE(3571)] = 135645, - [SMALL_STATE(3572)] = 135667, - [SMALL_STATE(3573)] = 135685, - [SMALL_STATE(3574)] = 135703, - [SMALL_STATE(3575)] = 135725, - [SMALL_STATE(3576)] = 135747, - [SMALL_STATE(3577)] = 135769, - [SMALL_STATE(3578)] = 135791, - [SMALL_STATE(3579)] = 135813, - [SMALL_STATE(3580)] = 135839, - [SMALL_STATE(3581)] = 135861, - [SMALL_STATE(3582)] = 135883, - [SMALL_STATE(3583)] = 135905, - [SMALL_STATE(3584)] = 135927, - [SMALL_STATE(3585)] = 135949, - [SMALL_STATE(3586)] = 135971, - [SMALL_STATE(3587)] = 135993, - [SMALL_STATE(3588)] = 136015, - [SMALL_STATE(3589)] = 136037, - [SMALL_STATE(3590)] = 136059, - [SMALL_STATE(3591)] = 136081, - [SMALL_STATE(3592)] = 136103, - [SMALL_STATE(3593)] = 136129, - [SMALL_STATE(3594)] = 136147, - [SMALL_STATE(3595)] = 136169, - [SMALL_STATE(3596)] = 136191, - [SMALL_STATE(3597)] = 136217, - [SMALL_STATE(3598)] = 136231, - [SMALL_STATE(3599)] = 136249, - [SMALL_STATE(3600)] = 136263, - [SMALL_STATE(3601)] = 136281, - [SMALL_STATE(3602)] = 136303, - [SMALL_STATE(3603)] = 136321, - [SMALL_STATE(3604)] = 136347, - [SMALL_STATE(3605)] = 136369, - [SMALL_STATE(3606)] = 136391, - [SMALL_STATE(3607)] = 136405, - [SMALL_STATE(3608)] = 136431, - [SMALL_STATE(3609)] = 136453, - [SMALL_STATE(3610)] = 136475, - [SMALL_STATE(3611)] = 136501, - [SMALL_STATE(3612)] = 136527, - [SMALL_STATE(3613)] = 136549, - [SMALL_STATE(3614)] = 136575, - [SMALL_STATE(3615)] = 136597, - [SMALL_STATE(3616)] = 136619, - [SMALL_STATE(3617)] = 136645, - [SMALL_STATE(3618)] = 136667, - [SMALL_STATE(3619)] = 136689, - [SMALL_STATE(3620)] = 136711, - [SMALL_STATE(3621)] = 136737, - [SMALL_STATE(3622)] = 136763, - [SMALL_STATE(3623)] = 136789, - [SMALL_STATE(3624)] = 136813, - [SMALL_STATE(3625)] = 136829, - [SMALL_STATE(3626)] = 136847, - [SMALL_STATE(3627)] = 136863, - [SMALL_STATE(3628)] = 136885, - [SMALL_STATE(3629)] = 136907, - [SMALL_STATE(3630)] = 136929, - [SMALL_STATE(3631)] = 136955, - [SMALL_STATE(3632)] = 136969, - [SMALL_STATE(3633)] = 136995, - [SMALL_STATE(3634)] = 137017, - [SMALL_STATE(3635)] = 137043, - [SMALL_STATE(3636)] = 137065, - [SMALL_STATE(3637)] = 137079, - [SMALL_STATE(3638)] = 137093, - [SMALL_STATE(3639)] = 137115, - [SMALL_STATE(3640)] = 137141, - [SMALL_STATE(3641)] = 137167, - [SMALL_STATE(3642)] = 137189, - [SMALL_STATE(3643)] = 137211, - [SMALL_STATE(3644)] = 137227, - [SMALL_STATE(3645)] = 137249, - [SMALL_STATE(3646)] = 137271, - [SMALL_STATE(3647)] = 137297, - [SMALL_STATE(3648)] = 137319, - [SMALL_STATE(3649)] = 137345, - [SMALL_STATE(3650)] = 137371, - [SMALL_STATE(3651)] = 137389, - [SMALL_STATE(3652)] = 137411, - [SMALL_STATE(3653)] = 137437, - [SMALL_STATE(3654)] = 137463, - [SMALL_STATE(3655)] = 137479, - [SMALL_STATE(3656)] = 137501, - [SMALL_STATE(3657)] = 137523, - [SMALL_STATE(3658)] = 137541, - [SMALL_STATE(3659)] = 137559, - [SMALL_STATE(3660)] = 137585, - [SMALL_STATE(3661)] = 137607, - [SMALL_STATE(3662)] = 137629, - [SMALL_STATE(3663)] = 137655, - [SMALL_STATE(3664)] = 137681, - [SMALL_STATE(3665)] = 137701, - [SMALL_STATE(3666)] = 137719, - [SMALL_STATE(3667)] = 137735, - [SMALL_STATE(3668)] = 137755, - [SMALL_STATE(3669)] = 137771, - [SMALL_STATE(3670)] = 137787, - [SMALL_STATE(3671)] = 137813, - [SMALL_STATE(3672)] = 137831, - [SMALL_STATE(3673)] = 137853, - [SMALL_STATE(3674)] = 137869, - [SMALL_STATE(3675)] = 137889, - [SMALL_STATE(3676)] = 137909, - [SMALL_STATE(3677)] = 137935, - [SMALL_STATE(3678)] = 137957, - [SMALL_STATE(3679)] = 137979, - [SMALL_STATE(3680)] = 138005, - [SMALL_STATE(3681)] = 138027, - [SMALL_STATE(3682)] = 138047, - [SMALL_STATE(3683)] = 138069, - [SMALL_STATE(3684)] = 138091, - [SMALL_STATE(3685)] = 138113, - [SMALL_STATE(3686)] = 138135, - [SMALL_STATE(3687)] = 138157, - [SMALL_STATE(3688)] = 138179, - [SMALL_STATE(3689)] = 138201, - [SMALL_STATE(3690)] = 138223, - [SMALL_STATE(3691)] = 138243, - [SMALL_STATE(3692)] = 138265, - [SMALL_STATE(3693)] = 138287, - [SMALL_STATE(3694)] = 138309, - [SMALL_STATE(3695)] = 138331, - [SMALL_STATE(3696)] = 138353, - [SMALL_STATE(3697)] = 138375, - [SMALL_STATE(3698)] = 138401, - [SMALL_STATE(3699)] = 138421, - [SMALL_STATE(3700)] = 138439, - [SMALL_STATE(3701)] = 138461, - [SMALL_STATE(3702)] = 138479, - [SMALL_STATE(3703)] = 138501, - [SMALL_STATE(3704)] = 138519, - [SMALL_STATE(3705)] = 138541, - [SMALL_STATE(3706)] = 138559, - [SMALL_STATE(3707)] = 138581, - [SMALL_STATE(3708)] = 138607, - [SMALL_STATE(3709)] = 138629, - [SMALL_STATE(3710)] = 138647, - [SMALL_STATE(3711)] = 138665, - [SMALL_STATE(3712)] = 138685, - [SMALL_STATE(3713)] = 138703, - [SMALL_STATE(3714)] = 138725, - [SMALL_STATE(3715)] = 138751, - [SMALL_STATE(3716)] = 138777, - [SMALL_STATE(3717)] = 138803, - [SMALL_STATE(3718)] = 138829, - [SMALL_STATE(3719)] = 138851, - [SMALL_STATE(3720)] = 138873, - [SMALL_STATE(3721)] = 138899, - [SMALL_STATE(3722)] = 138921, - [SMALL_STATE(3723)] = 138947, - [SMALL_STATE(3724)] = 138969, - [SMALL_STATE(3725)] = 138991, - [SMALL_STATE(3726)] = 139017, - [SMALL_STATE(3727)] = 139035, - [SMALL_STATE(3728)] = 139057, - [SMALL_STATE(3729)] = 139075, - [SMALL_STATE(3730)] = 139089, - [SMALL_STATE(3731)] = 139115, - [SMALL_STATE(3732)] = 139133, - [SMALL_STATE(3733)] = 139151, - [SMALL_STATE(3734)] = 139173, - [SMALL_STATE(3735)] = 139199, - [SMALL_STATE(3736)] = 139221, - [SMALL_STATE(3737)] = 139235, - [SMALL_STATE(3738)] = 139257, - [SMALL_STATE(3739)] = 139275, - [SMALL_STATE(3740)] = 139293, - [SMALL_STATE(3741)] = 139309, - [SMALL_STATE(3742)] = 139331, - [SMALL_STATE(3743)] = 139357, - [SMALL_STATE(3744)] = 139379, - [SMALL_STATE(3745)] = 139401, - [SMALL_STATE(3746)] = 139427, - [SMALL_STATE(3747)] = 139453, - [SMALL_STATE(3748)] = 139475, - [SMALL_STATE(3749)] = 139497, - [SMALL_STATE(3750)] = 139511, - [SMALL_STATE(3751)] = 139529, - [SMALL_STATE(3752)] = 139555, - [SMALL_STATE(3753)] = 139577, - [SMALL_STATE(3754)] = 139603, - [SMALL_STATE(3755)] = 139625, - [SMALL_STATE(3756)] = 139647, - [SMALL_STATE(3757)] = 139669, - [SMALL_STATE(3758)] = 139691, - [SMALL_STATE(3759)] = 139705, - [SMALL_STATE(3760)] = 139731, - [SMALL_STATE(3761)] = 139757, - [SMALL_STATE(3762)] = 139779, - [SMALL_STATE(3763)] = 139805, - [SMALL_STATE(3764)] = 139819, - [SMALL_STATE(3765)] = 139841, - [SMALL_STATE(3766)] = 139863, - [SMALL_STATE(3767)] = 139885, - [SMALL_STATE(3768)] = 139907, - [SMALL_STATE(3769)] = 139929, - [SMALL_STATE(3770)] = 139951, - [SMALL_STATE(3771)] = 139973, - [SMALL_STATE(3772)] = 139999, - [SMALL_STATE(3773)] = 140022, - [SMALL_STATE(3774)] = 140035, - [SMALL_STATE(3775)] = 140050, - [SMALL_STATE(3776)] = 140073, - [SMALL_STATE(3777)] = 140090, - [SMALL_STATE(3778)] = 140111, - [SMALL_STATE(3779)] = 140134, - [SMALL_STATE(3780)] = 140151, - [SMALL_STATE(3781)] = 140168, - [SMALL_STATE(3782)] = 140191, - [SMALL_STATE(3783)] = 140214, - [SMALL_STATE(3784)] = 140233, - [SMALL_STATE(3785)] = 140256, - [SMALL_STATE(3786)] = 140273, - [SMALL_STATE(3787)] = 140296, - [SMALL_STATE(3788)] = 140313, - [SMALL_STATE(3789)] = 140330, - [SMALL_STATE(3790)] = 140347, - [SMALL_STATE(3791)] = 140370, - [SMALL_STATE(3792)] = 140387, - [SMALL_STATE(3793)] = 140404, - [SMALL_STATE(3794)] = 140427, - [SMALL_STATE(3795)] = 140444, - [SMALL_STATE(3796)] = 140467, - [SMALL_STATE(3797)] = 140484, - [SMALL_STATE(3798)] = 140503, - [SMALL_STATE(3799)] = 140516, - [SMALL_STATE(3800)] = 140539, - [SMALL_STATE(3801)] = 140562, - [SMALL_STATE(3802)] = 140585, - [SMALL_STATE(3803)] = 140598, - [SMALL_STATE(3804)] = 140613, - [SMALL_STATE(3805)] = 140636, - [SMALL_STATE(3806)] = 140659, - [SMALL_STATE(3807)] = 140678, - [SMALL_STATE(3808)] = 140701, - [SMALL_STATE(3809)] = 140724, - [SMALL_STATE(3810)] = 140739, - [SMALL_STATE(3811)] = 140762, - [SMALL_STATE(3812)] = 140775, - [SMALL_STATE(3813)] = 140798, - [SMALL_STATE(3814)] = 140821, - [SMALL_STATE(3815)] = 140838, - [SMALL_STATE(3816)] = 140861, - [SMALL_STATE(3817)] = 140884, - [SMALL_STATE(3818)] = 140905, - [SMALL_STATE(3819)] = 140922, - [SMALL_STATE(3820)] = 140939, - [SMALL_STATE(3821)] = 140952, - [SMALL_STATE(3822)] = 140975, - [SMALL_STATE(3823)] = 140998, - [SMALL_STATE(3824)] = 141021, - [SMALL_STATE(3825)] = 141044, - [SMALL_STATE(3826)] = 141067, - [SMALL_STATE(3827)] = 141084, - [SMALL_STATE(3828)] = 141101, - [SMALL_STATE(3829)] = 141118, - [SMALL_STATE(3830)] = 141141, - [SMALL_STATE(3831)] = 141160, - [SMALL_STATE(3832)] = 141183, - [SMALL_STATE(3833)] = 141202, - [SMALL_STATE(3834)] = 141217, - [SMALL_STATE(3835)] = 141240, - [SMALL_STATE(3836)] = 141253, - [SMALL_STATE(3837)] = 141270, - [SMALL_STATE(3838)] = 141287, - [SMALL_STATE(3839)] = 141304, - [SMALL_STATE(3840)] = 141327, - [SMALL_STATE(3841)] = 141350, - [SMALL_STATE(3842)] = 141373, - [SMALL_STATE(3843)] = 141390, - [SMALL_STATE(3844)] = 141407, - [SMALL_STATE(3845)] = 141426, - [SMALL_STATE(3846)] = 141449, - [SMALL_STATE(3847)] = 141468, - [SMALL_STATE(3848)] = 141487, - [SMALL_STATE(3849)] = 141506, - [SMALL_STATE(3850)] = 141523, - [SMALL_STATE(3851)] = 141546, - [SMALL_STATE(3852)] = 141569, - [SMALL_STATE(3853)] = 141582, - [SMALL_STATE(3854)] = 141599, - [SMALL_STATE(3855)] = 141616, - [SMALL_STATE(3856)] = 141633, - [SMALL_STATE(3857)] = 141650, - [SMALL_STATE(3858)] = 141665, - [SMALL_STATE(3859)] = 141688, - [SMALL_STATE(3860)] = 141705, - [SMALL_STATE(3861)] = 141718, - [SMALL_STATE(3862)] = 141737, - [SMALL_STATE(3863)] = 141754, - [SMALL_STATE(3864)] = 141773, - [SMALL_STATE(3865)] = 141796, - [SMALL_STATE(3866)] = 141809, - [SMALL_STATE(3867)] = 141832, - [SMALL_STATE(3868)] = 141849, - [SMALL_STATE(3869)] = 141866, - [SMALL_STATE(3870)] = 141883, - [SMALL_STATE(3871)] = 141896, - [SMALL_STATE(3872)] = 141919, - [SMALL_STATE(3873)] = 141936, - [SMALL_STATE(3874)] = 141959, - [SMALL_STATE(3875)] = 141976, - [SMALL_STATE(3876)] = 141999, - [SMALL_STATE(3877)] = 142022, - [SMALL_STATE(3878)] = 142045, - [SMALL_STATE(3879)] = 142064, - [SMALL_STATE(3880)] = 142087, - [SMALL_STATE(3881)] = 142110, - [SMALL_STATE(3882)] = 142133, - [SMALL_STATE(3883)] = 142156, - [SMALL_STATE(3884)] = 142175, - [SMALL_STATE(3885)] = 142196, - [SMALL_STATE(3886)] = 142213, - [SMALL_STATE(3887)] = 142236, - [SMALL_STATE(3888)] = 142253, - [SMALL_STATE(3889)] = 142270, - [SMALL_STATE(3890)] = 142289, - [SMALL_STATE(3891)] = 142306, - [SMALL_STATE(3892)] = 142323, - [SMALL_STATE(3893)] = 142346, - [SMALL_STATE(3894)] = 142369, - [SMALL_STATE(3895)] = 142392, - [SMALL_STATE(3896)] = 142415, - [SMALL_STATE(3897)] = 142432, - [SMALL_STATE(3898)] = 142455, - [SMALL_STATE(3899)] = 142474, - [SMALL_STATE(3900)] = 142487, - [SMALL_STATE(3901)] = 142510, - [SMALL_STATE(3902)] = 142533, - [SMALL_STATE(3903)] = 142550, - [SMALL_STATE(3904)] = 142573, - [SMALL_STATE(3905)] = 142590, - [SMALL_STATE(3906)] = 142605, - [SMALL_STATE(3907)] = 142622, - [SMALL_STATE(3908)] = 142639, - [SMALL_STATE(3909)] = 142656, - [SMALL_STATE(3910)] = 142669, - [SMALL_STATE(3911)] = 142688, - [SMALL_STATE(3912)] = 142707, - [SMALL_STATE(3913)] = 142724, - [SMALL_STATE(3914)] = 142743, - [SMALL_STATE(3915)] = 142766, - [SMALL_STATE(3916)] = 142783, - [SMALL_STATE(3917)] = 142802, - [SMALL_STATE(3918)] = 142819, - [SMALL_STATE(3919)] = 142838, - [SMALL_STATE(3920)] = 142861, - [SMALL_STATE(3921)] = 142874, - [SMALL_STATE(3922)] = 142889, - [SMALL_STATE(3923)] = 142912, - [SMALL_STATE(3924)] = 142935, - [SMALL_STATE(3925)] = 142958, - [SMALL_STATE(3926)] = 142981, - [SMALL_STATE(3927)] = 143004, - [SMALL_STATE(3928)] = 143027, - [SMALL_STATE(3929)] = 143044, - [SMALL_STATE(3930)] = 143057, - [SMALL_STATE(3931)] = 143072, - [SMALL_STATE(3932)] = 143089, - [SMALL_STATE(3933)] = 143108, - [SMALL_STATE(3934)] = 143128, - [SMALL_STATE(3935)] = 143144, - [SMALL_STATE(3936)] = 143160, - [SMALL_STATE(3937)] = 143176, - [SMALL_STATE(3938)] = 143188, - [SMALL_STATE(3939)] = 143200, - [SMALL_STATE(3940)] = 143212, - [SMALL_STATE(3941)] = 143224, - [SMALL_STATE(3942)] = 143240, - [SMALL_STATE(3943)] = 143260, - [SMALL_STATE(3944)] = 143276, - [SMALL_STATE(3945)] = 143296, - [SMALL_STATE(3946)] = 143312, - [SMALL_STATE(3947)] = 143332, - [SMALL_STATE(3948)] = 143350, - [SMALL_STATE(3949)] = 143366, - [SMALL_STATE(3950)] = 143382, - [SMALL_STATE(3951)] = 143398, - [SMALL_STATE(3952)] = 143414, - [SMALL_STATE(3953)] = 143430, - [SMALL_STATE(3954)] = 143446, - [SMALL_STATE(3955)] = 143460, - [SMALL_STATE(3956)] = 143474, - [SMALL_STATE(3957)] = 143490, - [SMALL_STATE(3958)] = 143506, - [SMALL_STATE(3959)] = 143522, - [SMALL_STATE(3960)] = 143534, - [SMALL_STATE(3961)] = 143546, - [SMALL_STATE(3962)] = 143558, - [SMALL_STATE(3963)] = 143572, - [SMALL_STATE(3964)] = 143588, - [SMALL_STATE(3965)] = 143604, - [SMALL_STATE(3966)] = 143616, - [SMALL_STATE(3967)] = 143632, - [SMALL_STATE(3968)] = 143648, - [SMALL_STATE(3969)] = 143668, - [SMALL_STATE(3970)] = 143684, - [SMALL_STATE(3971)] = 143698, - [SMALL_STATE(3972)] = 143716, - [SMALL_STATE(3973)] = 143732, - [SMALL_STATE(3974)] = 143744, - [SMALL_STATE(3975)] = 143756, - [SMALL_STATE(3976)] = 143768, - [SMALL_STATE(3977)] = 143780, - [SMALL_STATE(3978)] = 143800, - [SMALL_STATE(3979)] = 143812, - [SMALL_STATE(3980)] = 143824, - [SMALL_STATE(3981)] = 143844, - [SMALL_STATE(3982)] = 143864, - [SMALL_STATE(3983)] = 143876, - [SMALL_STATE(3984)] = 143888, - [SMALL_STATE(3985)] = 143900, - [SMALL_STATE(3986)] = 143912, - [SMALL_STATE(3987)] = 143924, - [SMALL_STATE(3988)] = 143936, - [SMALL_STATE(3989)] = 143948, - [SMALL_STATE(3990)] = 143964, - [SMALL_STATE(3991)] = 143982, - [SMALL_STATE(3992)] = 143998, - [SMALL_STATE(3993)] = 144014, - [SMALL_STATE(3994)] = 144030, - [SMALL_STATE(3995)] = 144042, - [SMALL_STATE(3996)] = 144058, - [SMALL_STATE(3997)] = 144070, - [SMALL_STATE(3998)] = 144082, - [SMALL_STATE(3999)] = 144094, - [SMALL_STATE(4000)] = 144110, - [SMALL_STATE(4001)] = 144126, - [SMALL_STATE(4002)] = 144142, - [SMALL_STATE(4003)] = 144162, - [SMALL_STATE(4004)] = 144178, - [SMALL_STATE(4005)] = 144192, - [SMALL_STATE(4006)] = 144208, - [SMALL_STATE(4007)] = 144226, - [SMALL_STATE(4008)] = 144242, - [SMALL_STATE(4009)] = 144262, - [SMALL_STATE(4010)] = 144278, - [SMALL_STATE(4011)] = 144292, - [SMALL_STATE(4012)] = 144308, - [SMALL_STATE(4013)] = 144322, - [SMALL_STATE(4014)] = 144338, - [SMALL_STATE(4015)] = 144352, - [SMALL_STATE(4016)] = 144370, - [SMALL_STATE(4017)] = 144384, - [SMALL_STATE(4018)] = 144400, - [SMALL_STATE(4019)] = 144420, - [SMALL_STATE(4020)] = 144436, - [SMALL_STATE(4021)] = 144452, - [SMALL_STATE(4022)] = 144472, - [SMALL_STATE(4023)] = 144488, - [SMALL_STATE(4024)] = 144506, - [SMALL_STATE(4025)] = 144522, - [SMALL_STATE(4026)] = 144534, - [SMALL_STATE(4027)] = 144546, - [SMALL_STATE(4028)] = 144558, - [SMALL_STATE(4029)] = 144572, - [SMALL_STATE(4030)] = 144588, - [SMALL_STATE(4031)] = 144600, - [SMALL_STATE(4032)] = 144616, - [SMALL_STATE(4033)] = 144632, - [SMALL_STATE(4034)] = 144648, - [SMALL_STATE(4035)] = 144664, - [SMALL_STATE(4036)] = 144676, - [SMALL_STATE(4037)] = 144696, - [SMALL_STATE(4038)] = 144708, - [SMALL_STATE(4039)] = 144726, - [SMALL_STATE(4040)] = 144738, - [SMALL_STATE(4041)] = 144750, - [SMALL_STATE(4042)] = 144766, - [SMALL_STATE(4043)] = 144784, - [SMALL_STATE(4044)] = 144800, - [SMALL_STATE(4045)] = 144820, - [SMALL_STATE(4046)] = 144834, - [SMALL_STATE(4047)] = 144850, - [SMALL_STATE(4048)] = 144870, - [SMALL_STATE(4049)] = 144886, - [SMALL_STATE(4050)] = 144902, - [SMALL_STATE(4051)] = 144918, - [SMALL_STATE(4052)] = 144934, - [SMALL_STATE(4053)] = 144948, - [SMALL_STATE(4054)] = 144968, - [SMALL_STATE(4055)] = 144982, - [SMALL_STATE(4056)] = 145000, - [SMALL_STATE(4057)] = 145016, - [SMALL_STATE(4058)] = 145036, - [SMALL_STATE(4059)] = 145052, - [SMALL_STATE(4060)] = 145068, - [SMALL_STATE(4061)] = 145080, - [SMALL_STATE(4062)] = 145096, - [SMALL_STATE(4063)] = 145108, - [SMALL_STATE(4064)] = 145120, - [SMALL_STATE(4065)] = 145132, - [SMALL_STATE(4066)] = 145144, - [SMALL_STATE(4067)] = 145156, - [SMALL_STATE(4068)] = 145172, - [SMALL_STATE(4069)] = 145184, - [SMALL_STATE(4070)] = 145196, - [SMALL_STATE(4071)] = 145210, - [SMALL_STATE(4072)] = 145224, - [SMALL_STATE(4073)] = 145244, - [SMALL_STATE(4074)] = 145260, - [SMALL_STATE(4075)] = 145276, - [SMALL_STATE(4076)] = 145294, - [SMALL_STATE(4077)] = 145306, - [SMALL_STATE(4078)] = 145320, - [SMALL_STATE(4079)] = 145340, - [SMALL_STATE(4080)] = 145360, - [SMALL_STATE(4081)] = 145376, - [SMALL_STATE(4082)] = 145392, - [SMALL_STATE(4083)] = 145412, - [SMALL_STATE(4084)] = 145430, - [SMALL_STATE(4085)] = 145450, - [SMALL_STATE(4086)] = 145466, - [SMALL_STATE(4087)] = 145486, - [SMALL_STATE(4088)] = 145502, - [SMALL_STATE(4089)] = 145518, - [SMALL_STATE(4090)] = 145534, - [SMALL_STATE(4091)] = 145550, - [SMALL_STATE(4092)] = 145566, - [SMALL_STATE(4093)] = 145582, - [SMALL_STATE(4094)] = 145598, - [SMALL_STATE(4095)] = 145614, - [SMALL_STATE(4096)] = 145630, - [SMALL_STATE(4097)] = 145646, - [SMALL_STATE(4098)] = 145658, - [SMALL_STATE(4099)] = 145670, - [SMALL_STATE(4100)] = 145682, - [SMALL_STATE(4101)] = 145694, - [SMALL_STATE(4102)] = 145706, - [SMALL_STATE(4103)] = 145718, - [SMALL_STATE(4104)] = 145736, - [SMALL_STATE(4105)] = 145748, - [SMALL_STATE(4106)] = 145764, - [SMALL_STATE(4107)] = 145780, - [SMALL_STATE(4108)] = 145792, - [SMALL_STATE(4109)] = 145804, - [SMALL_STATE(4110)] = 145820, - [SMALL_STATE(4111)] = 145834, - [SMALL_STATE(4112)] = 145848, - [SMALL_STATE(4113)] = 145864, - [SMALL_STATE(4114)] = 145884, - [SMALL_STATE(4115)] = 145896, - [SMALL_STATE(4116)] = 145916, - [SMALL_STATE(4117)] = 145928, - [SMALL_STATE(4118)] = 145940, - [SMALL_STATE(4119)] = 145952, - [SMALL_STATE(4120)] = 145972, - [SMALL_STATE(4121)] = 145988, - [SMALL_STATE(4122)] = 146000, - [SMALL_STATE(4123)] = 146012, - [SMALL_STATE(4124)] = 146024, - [SMALL_STATE(4125)] = 146036, - [SMALL_STATE(4126)] = 146048, - [SMALL_STATE(4127)] = 146066, - [SMALL_STATE(4128)] = 146086, - [SMALL_STATE(4129)] = 146098, - [SMALL_STATE(4130)] = 146110, - [SMALL_STATE(4131)] = 146126, - [SMALL_STATE(4132)] = 146138, - [SMALL_STATE(4133)] = 146156, - [SMALL_STATE(4134)] = 146168, - [SMALL_STATE(4135)] = 146180, - [SMALL_STATE(4136)] = 146196, - [SMALL_STATE(4137)] = 146214, - [SMALL_STATE(4138)] = 146234, - [SMALL_STATE(4139)] = 146250, - [SMALL_STATE(4140)] = 146262, - [SMALL_STATE(4141)] = 146280, - [SMALL_STATE(4142)] = 146300, - [SMALL_STATE(4143)] = 146312, - [SMALL_STATE(4144)] = 146324, - [SMALL_STATE(4145)] = 146340, - [SMALL_STATE(4146)] = 146360, - [SMALL_STATE(4147)] = 146380, - [SMALL_STATE(4148)] = 146392, - [SMALL_STATE(4149)] = 146410, - [SMALL_STATE(4150)] = 146430, - [SMALL_STATE(4151)] = 146450, - [SMALL_STATE(4152)] = 146468, - [SMALL_STATE(4153)] = 146480, - [SMALL_STATE(4154)] = 146492, - [SMALL_STATE(4155)] = 146512, - [SMALL_STATE(4156)] = 146524, - [SMALL_STATE(4157)] = 146536, - [SMALL_STATE(4158)] = 146548, - [SMALL_STATE(4159)] = 146560, - [SMALL_STATE(4160)] = 146572, - [SMALL_STATE(4161)] = 146584, - [SMALL_STATE(4162)] = 146604, - [SMALL_STATE(4163)] = 146616, - [SMALL_STATE(4164)] = 146628, - [SMALL_STATE(4165)] = 146640, - [SMALL_STATE(4166)] = 146658, - [SMALL_STATE(4167)] = 146670, - [SMALL_STATE(4168)] = 146682, - [SMALL_STATE(4169)] = 146694, - [SMALL_STATE(4170)] = 146706, - [SMALL_STATE(4171)] = 146718, - [SMALL_STATE(4172)] = 146734, - [SMALL_STATE(4173)] = 146750, - [SMALL_STATE(4174)] = 146766, - [SMALL_STATE(4175)] = 146786, - [SMALL_STATE(4176)] = 146806, - [SMALL_STATE(4177)] = 146818, - [SMALL_STATE(4178)] = 146834, - [SMALL_STATE(4179)] = 146852, - [SMALL_STATE(4180)] = 146868, - [SMALL_STATE(4181)] = 146886, - [SMALL_STATE(4182)] = 146902, - [SMALL_STATE(4183)] = 146922, - [SMALL_STATE(4184)] = 146934, - [SMALL_STATE(4185)] = 146946, - [SMALL_STATE(4186)] = 146958, - [SMALL_STATE(4187)] = 146970, - [SMALL_STATE(4188)] = 146982, - [SMALL_STATE(4189)] = 146998, - [SMALL_STATE(4190)] = 147014, - [SMALL_STATE(4191)] = 147030, - [SMALL_STATE(4192)] = 147046, - [SMALL_STATE(4193)] = 147062, - [SMALL_STATE(4194)] = 147078, - [SMALL_STATE(4195)] = 147098, - [SMALL_STATE(4196)] = 147114, - [SMALL_STATE(4197)] = 147130, - [SMALL_STATE(4198)] = 147146, - [SMALL_STATE(4199)] = 147162, - [SMALL_STATE(4200)] = 147178, - [SMALL_STATE(4201)] = 147190, - [SMALL_STATE(4202)] = 147206, - [SMALL_STATE(4203)] = 147226, - [SMALL_STATE(4204)] = 147246, - [SMALL_STATE(4205)] = 147258, - [SMALL_STATE(4206)] = 147270, - [SMALL_STATE(4207)] = 147288, - [SMALL_STATE(4208)] = 147308, - [SMALL_STATE(4209)] = 147324, - [SMALL_STATE(4210)] = 147336, - [SMALL_STATE(4211)] = 147356, - [SMALL_STATE(4212)] = 147372, - [SMALL_STATE(4213)] = 147388, - [SMALL_STATE(4214)] = 147404, - [SMALL_STATE(4215)] = 147424, - [SMALL_STATE(4216)] = 147438, - [SMALL_STATE(4217)] = 147452, - [SMALL_STATE(4218)] = 147472, - [SMALL_STATE(4219)] = 147492, - [SMALL_STATE(4220)] = 147508, - [SMALL_STATE(4221)] = 147524, - [SMALL_STATE(4222)] = 147544, - [SMALL_STATE(4223)] = 147560, - [SMALL_STATE(4224)] = 147576, - [SMALL_STATE(4225)] = 147592, - [SMALL_STATE(4226)] = 147612, - [SMALL_STATE(4227)] = 147632, - [SMALL_STATE(4228)] = 147648, - [SMALL_STATE(4229)] = 147664, - [SMALL_STATE(4230)] = 147680, - [SMALL_STATE(4231)] = 147696, - [SMALL_STATE(4232)] = 147712, - [SMALL_STATE(4233)] = 147728, - [SMALL_STATE(4234)] = 147744, - [SMALL_STATE(4235)] = 147758, - [SMALL_STATE(4236)] = 147772, - [SMALL_STATE(4237)] = 147788, - [SMALL_STATE(4238)] = 147804, - [SMALL_STATE(4239)] = 147824, - [SMALL_STATE(4240)] = 147844, - [SMALL_STATE(4241)] = 147860, - [SMALL_STATE(4242)] = 147880, - [SMALL_STATE(4243)] = 147900, - [SMALL_STATE(4244)] = 147914, - [SMALL_STATE(4245)] = 147928, - [SMALL_STATE(4246)] = 147944, - [SMALL_STATE(4247)] = 147960, - [SMALL_STATE(4248)] = 147976, - [SMALL_STATE(4249)] = 147996, - [SMALL_STATE(4250)] = 148012, - [SMALL_STATE(4251)] = 148032, - [SMALL_STATE(4252)] = 148052, - [SMALL_STATE(4253)] = 148068, - [SMALL_STATE(4254)] = 148084, - [SMALL_STATE(4255)] = 148100, - [SMALL_STATE(4256)] = 148116, - [SMALL_STATE(4257)] = 148132, - [SMALL_STATE(4258)] = 148152, - [SMALL_STATE(4259)] = 148168, - [SMALL_STATE(4260)] = 148184, - [SMALL_STATE(4261)] = 148198, - [SMALL_STATE(4262)] = 148212, - [SMALL_STATE(4263)] = 148226, - [SMALL_STATE(4264)] = 148240, - [SMALL_STATE(4265)] = 148260, - [SMALL_STATE(4266)] = 148274, - [SMALL_STATE(4267)] = 148288, - [SMALL_STATE(4268)] = 148304, - [SMALL_STATE(4269)] = 148324, - [SMALL_STATE(4270)] = 148340, - [SMALL_STATE(4271)] = 148360, - [SMALL_STATE(4272)] = 148380, - [SMALL_STATE(4273)] = 148396, - [SMALL_STATE(4274)] = 148416, - [SMALL_STATE(4275)] = 148432, - [SMALL_STATE(4276)] = 148446, - [SMALL_STATE(4277)] = 148460, - [SMALL_STATE(4278)] = 148476, - [SMALL_STATE(4279)] = 148492, - [SMALL_STATE(4280)] = 148508, - [SMALL_STATE(4281)] = 148524, - [SMALL_STATE(4282)] = 148540, - [SMALL_STATE(4283)] = 148556, - [SMALL_STATE(4284)] = 148572, - [SMALL_STATE(4285)] = 148588, - [SMALL_STATE(4286)] = 148604, - [SMALL_STATE(4287)] = 148618, - [SMALL_STATE(4288)] = 148630, - [SMALL_STATE(4289)] = 148642, - [SMALL_STATE(4290)] = 148658, - [SMALL_STATE(4291)] = 148674, - [SMALL_STATE(4292)] = 148690, - [SMALL_STATE(4293)] = 148708, - [SMALL_STATE(4294)] = 148722, - [SMALL_STATE(4295)] = 148736, - [SMALL_STATE(4296)] = 148752, - [SMALL_STATE(4297)] = 148766, - [SMALL_STATE(4298)] = 148782, - [SMALL_STATE(4299)] = 148798, - [SMALL_STATE(4300)] = 148814, - [SMALL_STATE(4301)] = 148830, - [SMALL_STATE(4302)] = 148842, - [SMALL_STATE(4303)] = 148862, - [SMALL_STATE(4304)] = 148874, - [SMALL_STATE(4305)] = 148894, - [SMALL_STATE(4306)] = 148908, - [SMALL_STATE(4307)] = 148926, - [SMALL_STATE(4308)] = 148938, - [SMALL_STATE(4309)] = 148950, - [SMALL_STATE(4310)] = 148966, - [SMALL_STATE(4311)] = 148984, - [SMALL_STATE(4312)] = 149004, - [SMALL_STATE(4313)] = 149016, - [SMALL_STATE(4314)] = 149028, - [SMALL_STATE(4315)] = 149040, - [SMALL_STATE(4316)] = 149060, - [SMALL_STATE(4317)] = 149080, - [SMALL_STATE(4318)] = 149092, - [SMALL_STATE(4319)] = 149104, - [SMALL_STATE(4320)] = 149120, - [SMALL_STATE(4321)] = 149140, - [SMALL_STATE(4322)] = 149160, - [SMALL_STATE(4323)] = 149176, - [SMALL_STATE(4324)] = 149192, - [SMALL_STATE(4325)] = 149206, - [SMALL_STATE(4326)] = 149220, - [SMALL_STATE(4327)] = 149234, - [SMALL_STATE(4328)] = 149248, - [SMALL_STATE(4329)] = 149260, - [SMALL_STATE(4330)] = 149280, - [SMALL_STATE(4331)] = 149294, - [SMALL_STATE(4332)] = 149308, - [SMALL_STATE(4333)] = 149324, - [SMALL_STATE(4334)] = 149340, - [SMALL_STATE(4335)] = 149360, - [SMALL_STATE(4336)] = 149376, - [SMALL_STATE(4337)] = 149392, - [SMALL_STATE(4338)] = 149408, - [SMALL_STATE(4339)] = 149422, - [SMALL_STATE(4340)] = 149436, - [SMALL_STATE(4341)] = 149452, - [SMALL_STATE(4342)] = 149468, - [SMALL_STATE(4343)] = 149482, - [SMALL_STATE(4344)] = 149496, - [SMALL_STATE(4345)] = 149512, - [SMALL_STATE(4346)] = 149528, - [SMALL_STATE(4347)] = 149544, - [SMALL_STATE(4348)] = 149560, - [SMALL_STATE(4349)] = 149580, - [SMALL_STATE(4350)] = 149596, - [SMALL_STATE(4351)] = 149612, - [SMALL_STATE(4352)] = 149628, - [SMALL_STATE(4353)] = 149648, - [SMALL_STATE(4354)] = 149660, - [SMALL_STATE(4355)] = 149672, - [SMALL_STATE(4356)] = 149686, - [SMALL_STATE(4357)] = 149700, - [SMALL_STATE(4358)] = 149714, - [SMALL_STATE(4359)] = 149728, - [SMALL_STATE(4360)] = 149742, - [SMALL_STATE(4361)] = 149756, - [SMALL_STATE(4362)] = 149774, - [SMALL_STATE(4363)] = 149786, - [SMALL_STATE(4364)] = 149802, - [SMALL_STATE(4365)] = 149814, - [SMALL_STATE(4366)] = 149830, - [SMALL_STATE(4367)] = 149844, - [SMALL_STATE(4368)] = 149864, - [SMALL_STATE(4369)] = 149884, - [SMALL_STATE(4370)] = 149898, - [SMALL_STATE(4371)] = 149910, - [SMALL_STATE(4372)] = 149930, - [SMALL_STATE(4373)] = 149942, - [SMALL_STATE(4374)] = 149958, - [SMALL_STATE(4375)] = 149974, - [SMALL_STATE(4376)] = 149990, - [SMALL_STATE(4377)] = 150006, - [SMALL_STATE(4378)] = 150026, - [SMALL_STATE(4379)] = 150042, - [SMALL_STATE(4380)] = 150056, - [SMALL_STATE(4381)] = 150070, - [SMALL_STATE(4382)] = 150086, - [SMALL_STATE(4383)] = 150106, - [SMALL_STATE(4384)] = 150122, - [SMALL_STATE(4385)] = 150138, - [SMALL_STATE(4386)] = 150154, - [SMALL_STATE(4387)] = 150170, - [SMALL_STATE(4388)] = 150186, - [SMALL_STATE(4389)] = 150202, - [SMALL_STATE(4390)] = 150218, - [SMALL_STATE(4391)] = 150234, - [SMALL_STATE(4392)] = 150250, - [SMALL_STATE(4393)] = 150266, - [SMALL_STATE(4394)] = 150286, - [SMALL_STATE(4395)] = 150298, - [SMALL_STATE(4396)] = 150314, - [SMALL_STATE(4397)] = 150330, - [SMALL_STATE(4398)] = 150350, - [SMALL_STATE(4399)] = 150362, - [SMALL_STATE(4400)] = 150382, - [SMALL_STATE(4401)] = 150394, - [SMALL_STATE(4402)] = 150410, - [SMALL_STATE(4403)] = 150426, - [SMALL_STATE(4404)] = 150438, - [SMALL_STATE(4405)] = 150450, - [SMALL_STATE(4406)] = 150466, - [SMALL_STATE(4407)] = 150486, - [SMALL_STATE(4408)] = 150502, - [SMALL_STATE(4409)] = 150518, - [SMALL_STATE(4410)] = 150534, - [SMALL_STATE(4411)] = 150546, - [SMALL_STATE(4412)] = 150558, - [SMALL_STATE(4413)] = 150574, - [SMALL_STATE(4414)] = 150590, - [SMALL_STATE(4415)] = 150606, - [SMALL_STATE(4416)] = 150622, - [SMALL_STATE(4417)] = 150634, - [SMALL_STATE(4418)] = 150650, - [SMALL_STATE(4419)] = 150662, - [SMALL_STATE(4420)] = 150682, - [SMALL_STATE(4421)] = 150694, - [SMALL_STATE(4422)] = 150706, - [SMALL_STATE(4423)] = 150718, - [SMALL_STATE(4424)] = 150734, - [SMALL_STATE(4425)] = 150746, - [SMALL_STATE(4426)] = 150758, - [SMALL_STATE(4427)] = 150778, - [SMALL_STATE(4428)] = 150794, - [SMALL_STATE(4429)] = 150814, - [SMALL_STATE(4430)] = 150826, - [SMALL_STATE(4431)] = 150838, - [SMALL_STATE(4432)] = 150850, - [SMALL_STATE(4433)] = 150862, - [SMALL_STATE(4434)] = 150874, - [SMALL_STATE(4435)] = 150890, - [SMALL_STATE(4436)] = 150910, - [SMALL_STATE(4437)] = 150926, - [SMALL_STATE(4438)] = 150942, - [SMALL_STATE(4439)] = 150954, - [SMALL_STATE(4440)] = 150966, - [SMALL_STATE(4441)] = 150978, - [SMALL_STATE(4442)] = 150990, - [SMALL_STATE(4443)] = 151006, - [SMALL_STATE(4444)] = 151018, - [SMALL_STATE(4445)] = 151030, - [SMALL_STATE(4446)] = 151046, - [SMALL_STATE(4447)] = 151058, - [SMALL_STATE(4448)] = 151070, - [SMALL_STATE(4449)] = 151086, - [SMALL_STATE(4450)] = 151102, - [SMALL_STATE(4451)] = 151122, - [SMALL_STATE(4452)] = 151140, - [SMALL_STATE(4453)] = 151160, - [SMALL_STATE(4454)] = 151176, - [SMALL_STATE(4455)] = 151188, - [SMALL_STATE(4456)] = 151204, - [SMALL_STATE(4457)] = 151216, - [SMALL_STATE(4458)] = 151228, - [SMALL_STATE(4459)] = 151244, - [SMALL_STATE(4460)] = 151260, - [SMALL_STATE(4461)] = 151276, - [SMALL_STATE(4462)] = 151292, - [SMALL_STATE(4463)] = 151308, - [SMALL_STATE(4464)] = 151324, - [SMALL_STATE(4465)] = 151338, - [SMALL_STATE(4466)] = 151356, - [SMALL_STATE(4467)] = 151374, - [SMALL_STATE(4468)] = 151390, - [SMALL_STATE(4469)] = 151407, - [SMALL_STATE(4470)] = 151422, - [SMALL_STATE(4471)] = 151437, - [SMALL_STATE(4472)] = 151452, - [SMALL_STATE(4473)] = 151469, - [SMALL_STATE(4474)] = 151486, - [SMALL_STATE(4475)] = 151503, - [SMALL_STATE(4476)] = 151520, - [SMALL_STATE(4477)] = 151537, - [SMALL_STATE(4478)] = 151552, - [SMALL_STATE(4479)] = 151569, - [SMALL_STATE(4480)] = 151586, - [SMALL_STATE(4481)] = 151605, - [SMALL_STATE(4482)] = 151622, - [SMALL_STATE(4483)] = 151639, - [SMALL_STATE(4484)] = 151656, - [SMALL_STATE(4485)] = 151673, - [SMALL_STATE(4486)] = 151686, - [SMALL_STATE(4487)] = 151703, - [SMALL_STATE(4488)] = 151720, - [SMALL_STATE(4489)] = 151733, - [SMALL_STATE(4490)] = 151750, - [SMALL_STATE(4491)] = 151763, - [SMALL_STATE(4492)] = 151778, - [SMALL_STATE(4493)] = 151795, - [SMALL_STATE(4494)] = 151814, - [SMALL_STATE(4495)] = 151831, - [SMALL_STATE(4496)] = 151846, - [SMALL_STATE(4497)] = 151861, - [SMALL_STATE(4498)] = 151878, - [SMALL_STATE(4499)] = 151895, - [SMALL_STATE(4500)] = 151912, - [SMALL_STATE(4501)] = 151927, - [SMALL_STATE(4502)] = 151944, - [SMALL_STATE(4503)] = 151961, - [SMALL_STATE(4504)] = 151978, - [SMALL_STATE(4505)] = 151993, - [SMALL_STATE(4506)] = 152010, - [SMALL_STATE(4507)] = 152023, - [SMALL_STATE(4508)] = 152036, - [SMALL_STATE(4509)] = 152053, - [SMALL_STATE(4510)] = 152068, - [SMALL_STATE(4511)] = 152085, - [SMALL_STATE(4512)] = 152102, - [SMALL_STATE(4513)] = 152119, - [SMALL_STATE(4514)] = 152136, - [SMALL_STATE(4515)] = 152153, - [SMALL_STATE(4516)] = 152170, - [SMALL_STATE(4517)] = 152185, - [SMALL_STATE(4518)] = 152202, - [SMALL_STATE(4519)] = 152217, - [SMALL_STATE(4520)] = 152232, - [SMALL_STATE(4521)] = 152247, - [SMALL_STATE(4522)] = 152258, - [SMALL_STATE(4523)] = 152275, - [SMALL_STATE(4524)] = 152292, - [SMALL_STATE(4525)] = 152309, - [SMALL_STATE(4526)] = 152326, - [SMALL_STATE(4527)] = 152343, - [SMALL_STATE(4528)] = 152360, - [SMALL_STATE(4529)] = 152375, - [SMALL_STATE(4530)] = 152392, - [SMALL_STATE(4531)] = 152409, - [SMALL_STATE(4532)] = 152426, - [SMALL_STATE(4533)] = 152443, - [SMALL_STATE(4534)] = 152462, - [SMALL_STATE(4535)] = 152481, - [SMALL_STATE(4536)] = 152498, - [SMALL_STATE(4537)] = 152515, - [SMALL_STATE(4538)] = 152532, - [SMALL_STATE(4539)] = 152549, - [SMALL_STATE(4540)] = 152566, - [SMALL_STATE(4541)] = 152583, - [SMALL_STATE(4542)] = 152600, - [SMALL_STATE(4543)] = 152617, - [SMALL_STATE(4544)] = 152634, - [SMALL_STATE(4545)] = 152649, - [SMALL_STATE(4546)] = 152666, - [SMALL_STATE(4547)] = 152681, - [SMALL_STATE(4548)] = 152696, - [SMALL_STATE(4549)] = 152713, - [SMALL_STATE(4550)] = 152730, - [SMALL_STATE(4551)] = 152747, - [SMALL_STATE(4552)] = 152764, - [SMALL_STATE(4553)] = 152781, - [SMALL_STATE(4554)] = 152798, - [SMALL_STATE(4555)] = 152815, - [SMALL_STATE(4556)] = 152832, - [SMALL_STATE(4557)] = 152849, - [SMALL_STATE(4558)] = 152866, - [SMALL_STATE(4559)] = 152881, - [SMALL_STATE(4560)] = 152896, - [SMALL_STATE(4561)] = 152913, - [SMALL_STATE(4562)] = 152930, - [SMALL_STATE(4563)] = 152947, - [SMALL_STATE(4564)] = 152964, - [SMALL_STATE(4565)] = 152981, - [SMALL_STATE(4566)] = 152992, - [SMALL_STATE(4567)] = 153003, - [SMALL_STATE(4568)] = 153020, - [SMALL_STATE(4569)] = 153035, - [SMALL_STATE(4570)] = 153052, - [SMALL_STATE(4571)] = 153069, - [SMALL_STATE(4572)] = 153086, - [SMALL_STATE(4573)] = 153101, - [SMALL_STATE(4574)] = 153118, - [SMALL_STATE(4575)] = 153135, - [SMALL_STATE(4576)] = 153152, - [SMALL_STATE(4577)] = 153169, - [SMALL_STATE(4578)] = 153186, - [SMALL_STATE(4579)] = 153203, - [SMALL_STATE(4580)] = 153216, - [SMALL_STATE(4581)] = 153231, - [SMALL_STATE(4582)] = 153248, - [SMALL_STATE(4583)] = 153265, - [SMALL_STATE(4584)] = 153282, - [SMALL_STATE(4585)] = 153299, - [SMALL_STATE(4586)] = 153316, - [SMALL_STATE(4587)] = 153333, - [SMALL_STATE(4588)] = 153350, - [SMALL_STATE(4589)] = 153367, - [SMALL_STATE(4590)] = 153384, - [SMALL_STATE(4591)] = 153401, - [SMALL_STATE(4592)] = 153416, - [SMALL_STATE(4593)] = 153431, - [SMALL_STATE(4594)] = 153448, - [SMALL_STATE(4595)] = 153465, - [SMALL_STATE(4596)] = 153482, - [SMALL_STATE(4597)] = 153493, - [SMALL_STATE(4598)] = 153510, - [SMALL_STATE(4599)] = 153527, - [SMALL_STATE(4600)] = 153544, - [SMALL_STATE(4601)] = 153561, - [SMALL_STATE(4602)] = 153578, - [SMALL_STATE(4603)] = 153593, - [SMALL_STATE(4604)] = 153610, - [SMALL_STATE(4605)] = 153627, - [SMALL_STATE(4606)] = 153646, - [SMALL_STATE(4607)] = 153665, - [SMALL_STATE(4608)] = 153680, - [SMALL_STATE(4609)] = 153695, - [SMALL_STATE(4610)] = 153712, - [SMALL_STATE(4611)] = 153729, - [SMALL_STATE(4612)] = 153746, - [SMALL_STATE(4613)] = 153756, - [SMALL_STATE(4614)] = 153768, - [SMALL_STATE(4615)] = 153778, - [SMALL_STATE(4616)] = 153792, - [SMALL_STATE(4617)] = 153806, - [SMALL_STATE(4618)] = 153820, - [SMALL_STATE(4619)] = 153834, - [SMALL_STATE(4620)] = 153848, - [SMALL_STATE(4621)] = 153858, - [SMALL_STATE(4622)] = 153872, - [SMALL_STATE(4623)] = 153882, - [SMALL_STATE(4624)] = 153896, - [SMALL_STATE(4625)] = 153910, - [SMALL_STATE(4626)] = 153924, - [SMALL_STATE(4627)] = 153934, - [SMALL_STATE(4628)] = 153944, - [SMALL_STATE(4629)] = 153954, - [SMALL_STATE(4630)] = 153968, - [SMALL_STATE(4631)] = 153978, - [SMALL_STATE(4632)] = 153988, - [SMALL_STATE(4633)] = 153998, - [SMALL_STATE(4634)] = 154012, - [SMALL_STATE(4635)] = 154022, - [SMALL_STATE(4636)] = 154036, - [SMALL_STATE(4637)] = 154050, - [SMALL_STATE(4638)] = 154064, - [SMALL_STATE(4639)] = 154074, - [SMALL_STATE(4640)] = 154084, - [SMALL_STATE(4641)] = 154094, - [SMALL_STATE(4642)] = 154108, - [SMALL_STATE(4643)] = 154118, - [SMALL_STATE(4644)] = 154128, - [SMALL_STATE(4645)] = 154138, - [SMALL_STATE(4646)] = 154152, - [SMALL_STATE(4647)] = 154166, - [SMALL_STATE(4648)] = 154180, - [SMALL_STATE(4649)] = 154194, - [SMALL_STATE(4650)] = 154204, - [SMALL_STATE(4651)] = 154218, - [SMALL_STATE(4652)] = 154234, - [SMALL_STATE(4653)] = 154248, - [SMALL_STATE(4654)] = 154258, - [SMALL_STATE(4655)] = 154268, - [SMALL_STATE(4656)] = 154278, - [SMALL_STATE(4657)] = 154292, - [SMALL_STATE(4658)] = 154302, - [SMALL_STATE(4659)] = 154316, - [SMALL_STATE(4660)] = 154326, - [SMALL_STATE(4661)] = 154336, - [SMALL_STATE(4662)] = 154346, - [SMALL_STATE(4663)] = 154360, - [SMALL_STATE(4664)] = 154374, - [SMALL_STATE(4665)] = 154384, - [SMALL_STATE(4666)] = 154396, - [SMALL_STATE(4667)] = 154406, - [SMALL_STATE(4668)] = 154418, - [SMALL_STATE(4669)] = 154432, - [SMALL_STATE(4670)] = 154442, - [SMALL_STATE(4671)] = 154456, - [SMALL_STATE(4672)] = 154470, - [SMALL_STATE(4673)] = 154480, - [SMALL_STATE(4674)] = 154494, - [SMALL_STATE(4675)] = 154504, - [SMALL_STATE(4676)] = 154514, - [SMALL_STATE(4677)] = 154524, - [SMALL_STATE(4678)] = 154538, - [SMALL_STATE(4679)] = 154552, - [SMALL_STATE(4680)] = 154566, - [SMALL_STATE(4681)] = 154580, - [SMALL_STATE(4682)] = 154594, - [SMALL_STATE(4683)] = 154608, - [SMALL_STATE(4684)] = 154618, - [SMALL_STATE(4685)] = 154628, - [SMALL_STATE(4686)] = 154642, - [SMALL_STATE(4687)] = 154656, - [SMALL_STATE(4688)] = 154670, - [SMALL_STATE(4689)] = 154684, - [SMALL_STATE(4690)] = 154698, - [SMALL_STATE(4691)] = 154712, - [SMALL_STATE(4692)] = 154722, - [SMALL_STATE(4693)] = 154736, - [SMALL_STATE(4694)] = 154750, - [SMALL_STATE(4695)] = 154760, - [SMALL_STATE(4696)] = 154774, - [SMALL_STATE(4697)] = 154788, - [SMALL_STATE(4698)] = 154798, - [SMALL_STATE(4699)] = 154808, - [SMALL_STATE(4700)] = 154822, - [SMALL_STATE(4701)] = 154836, - [SMALL_STATE(4702)] = 154846, - [SMALL_STATE(4703)] = 154856, - [SMALL_STATE(4704)] = 154866, - [SMALL_STATE(4705)] = 154876, - [SMALL_STATE(4706)] = 154890, - [SMALL_STATE(4707)] = 154904, - [SMALL_STATE(4708)] = 154914, - [SMALL_STATE(4709)] = 154924, - [SMALL_STATE(4710)] = 154934, - [SMALL_STATE(4711)] = 154944, - [SMALL_STATE(4712)] = 154954, - [SMALL_STATE(4713)] = 154964, - [SMALL_STATE(4714)] = 154978, - [SMALL_STATE(4715)] = 154988, - [SMALL_STATE(4716)] = 155002, - [SMALL_STATE(4717)] = 155016, - [SMALL_STATE(4718)] = 155026, - [SMALL_STATE(4719)] = 155038, - [SMALL_STATE(4720)] = 155048, - [SMALL_STATE(4721)] = 155058, - [SMALL_STATE(4722)] = 155072, - [SMALL_STATE(4723)] = 155082, - [SMALL_STATE(4724)] = 155096, - [SMALL_STATE(4725)] = 155106, - [SMALL_STATE(4726)] = 155116, - [SMALL_STATE(4727)] = 155126, - [SMALL_STATE(4728)] = 155136, - [SMALL_STATE(4729)] = 155146, - [SMALL_STATE(4730)] = 155156, - [SMALL_STATE(4731)] = 155170, - [SMALL_STATE(4732)] = 155182, - [SMALL_STATE(4733)] = 155192, - [SMALL_STATE(4734)] = 155202, - [SMALL_STATE(4735)] = 155212, - [SMALL_STATE(4736)] = 155222, - [SMALL_STATE(4737)] = 155236, - [SMALL_STATE(4738)] = 155250, - [SMALL_STATE(4739)] = 155260, - [SMALL_STATE(4740)] = 155270, - [SMALL_STATE(4741)] = 155280, - [SMALL_STATE(4742)] = 155290, - [SMALL_STATE(4743)] = 155304, - [SMALL_STATE(4744)] = 155314, - [SMALL_STATE(4745)] = 155324, - [SMALL_STATE(4746)] = 155334, - [SMALL_STATE(4747)] = 155344, - [SMALL_STATE(4748)] = 155358, - [SMALL_STATE(4749)] = 155370, - [SMALL_STATE(4750)] = 155384, - [SMALL_STATE(4751)] = 155398, - [SMALL_STATE(4752)] = 155410, - [SMALL_STATE(4753)] = 155420, - [SMALL_STATE(4754)] = 155430, - [SMALL_STATE(4755)] = 155440, - [SMALL_STATE(4756)] = 155450, - [SMALL_STATE(4757)] = 155464, - [SMALL_STATE(4758)] = 155474, - [SMALL_STATE(4759)] = 155484, - [SMALL_STATE(4760)] = 155494, - [SMALL_STATE(4761)] = 155508, - [SMALL_STATE(4762)] = 155518, - [SMALL_STATE(4763)] = 155532, - [SMALL_STATE(4764)] = 155542, - [SMALL_STATE(4765)] = 155556, - [SMALL_STATE(4766)] = 155570, - [SMALL_STATE(4767)] = 155580, - [SMALL_STATE(4768)] = 155590, - [SMALL_STATE(4769)] = 155600, - [SMALL_STATE(4770)] = 155610, - [SMALL_STATE(4771)] = 155620, - [SMALL_STATE(4772)] = 155630, - [SMALL_STATE(4773)] = 155640, - [SMALL_STATE(4774)] = 155650, - [SMALL_STATE(4775)] = 155660, - [SMALL_STATE(4776)] = 155670, - [SMALL_STATE(4777)] = 155680, - [SMALL_STATE(4778)] = 155694, - [SMALL_STATE(4779)] = 155704, - [SMALL_STATE(4780)] = 155714, - [SMALL_STATE(4781)] = 155724, - [SMALL_STATE(4782)] = 155734, - [SMALL_STATE(4783)] = 155744, - [SMALL_STATE(4784)] = 155754, - [SMALL_STATE(4785)] = 155764, - [SMALL_STATE(4786)] = 155774, - [SMALL_STATE(4787)] = 155784, - [SMALL_STATE(4788)] = 155794, - [SMALL_STATE(4789)] = 155804, - [SMALL_STATE(4790)] = 155814, - [SMALL_STATE(4791)] = 155824, - [SMALL_STATE(4792)] = 155838, - [SMALL_STATE(4793)] = 155848, - [SMALL_STATE(4794)] = 155858, - [SMALL_STATE(4795)] = 155872, - [SMALL_STATE(4796)] = 155882, - [SMALL_STATE(4797)] = 155892, - [SMALL_STATE(4798)] = 155906, - [SMALL_STATE(4799)] = 155916, - [SMALL_STATE(4800)] = 155926, - [SMALL_STATE(4801)] = 155936, - [SMALL_STATE(4802)] = 155950, - [SMALL_STATE(4803)] = 155964, - [SMALL_STATE(4804)] = 155978, - [SMALL_STATE(4805)] = 155988, - [SMALL_STATE(4806)] = 155998, - [SMALL_STATE(4807)] = 156008, - [SMALL_STATE(4808)] = 156018, - [SMALL_STATE(4809)] = 156028, - [SMALL_STATE(4810)] = 156038, - [SMALL_STATE(4811)] = 156048, - [SMALL_STATE(4812)] = 156058, - [SMALL_STATE(4813)] = 156068, - [SMALL_STATE(4814)] = 156078, - [SMALL_STATE(4815)] = 156088, - [SMALL_STATE(4816)] = 156098, - [SMALL_STATE(4817)] = 156112, - [SMALL_STATE(4818)] = 156122, - [SMALL_STATE(4819)] = 156132, - [SMALL_STATE(4820)] = 156142, - [SMALL_STATE(4821)] = 156152, - [SMALL_STATE(4822)] = 156162, - [SMALL_STATE(4823)] = 156172, - [SMALL_STATE(4824)] = 156182, - [SMALL_STATE(4825)] = 156192, - [SMALL_STATE(4826)] = 156202, - [SMALL_STATE(4827)] = 156212, - [SMALL_STATE(4828)] = 156224, - [SMALL_STATE(4829)] = 156234, - [SMALL_STATE(4830)] = 156248, - [SMALL_STATE(4831)] = 156262, - [SMALL_STATE(4832)] = 156276, - [SMALL_STATE(4833)] = 156286, - [SMALL_STATE(4834)] = 156296, - [SMALL_STATE(4835)] = 156310, - [SMALL_STATE(4836)] = 156320, - [SMALL_STATE(4837)] = 156330, - [SMALL_STATE(4838)] = 156340, - [SMALL_STATE(4839)] = 156350, - [SMALL_STATE(4840)] = 156360, - [SMALL_STATE(4841)] = 156370, - [SMALL_STATE(4842)] = 156384, - [SMALL_STATE(4843)] = 156394, - [SMALL_STATE(4844)] = 156406, - [SMALL_STATE(4845)] = 156420, - [SMALL_STATE(4846)] = 156430, - [SMALL_STATE(4847)] = 156440, - [SMALL_STATE(4848)] = 156450, - [SMALL_STATE(4849)] = 156460, - [SMALL_STATE(4850)] = 156470, - [SMALL_STATE(4851)] = 156480, - [SMALL_STATE(4852)] = 156490, - [SMALL_STATE(4853)] = 156500, - [SMALL_STATE(4854)] = 156510, - [SMALL_STATE(4855)] = 156524, - [SMALL_STATE(4856)] = 156534, - [SMALL_STATE(4857)] = 156544, - [SMALL_STATE(4858)] = 156554, - [SMALL_STATE(4859)] = 156564, - [SMALL_STATE(4860)] = 156574, - [SMALL_STATE(4861)] = 156584, - [SMALL_STATE(4862)] = 156594, - [SMALL_STATE(4863)] = 156604, - [SMALL_STATE(4864)] = 156614, - [SMALL_STATE(4865)] = 156624, - [SMALL_STATE(4866)] = 156634, - [SMALL_STATE(4867)] = 156648, - [SMALL_STATE(4868)] = 156658, - [SMALL_STATE(4869)] = 156672, - [SMALL_STATE(4870)] = 156682, - [SMALL_STATE(4871)] = 156696, - [SMALL_STATE(4872)] = 156706, - [SMALL_STATE(4873)] = 156720, - [SMALL_STATE(4874)] = 156730, - [SMALL_STATE(4875)] = 156740, - [SMALL_STATE(4876)] = 156754, - [SMALL_STATE(4877)] = 156768, - [SMALL_STATE(4878)] = 156778, - [SMALL_STATE(4879)] = 156788, - [SMALL_STATE(4880)] = 156802, - [SMALL_STATE(4881)] = 156812, - [SMALL_STATE(4882)] = 156822, - [SMALL_STATE(4883)] = 156832, - [SMALL_STATE(4884)] = 156842, - [SMALL_STATE(4885)] = 156852, - [SMALL_STATE(4886)] = 156862, - [SMALL_STATE(4887)] = 156872, - [SMALL_STATE(4888)] = 156882, - [SMALL_STATE(4889)] = 156892, - [SMALL_STATE(4890)] = 156902, - [SMALL_STATE(4891)] = 156912, - [SMALL_STATE(4892)] = 156922, - [SMALL_STATE(4893)] = 156932, - [SMALL_STATE(4894)] = 156942, - [SMALL_STATE(4895)] = 156952, - [SMALL_STATE(4896)] = 156966, - [SMALL_STATE(4897)] = 156976, - [SMALL_STATE(4898)] = 156990, - [SMALL_STATE(4899)] = 157004, - [SMALL_STATE(4900)] = 157016, - [SMALL_STATE(4901)] = 157030, - [SMALL_STATE(4902)] = 157040, - [SMALL_STATE(4903)] = 157052, - [SMALL_STATE(4904)] = 157066, - [SMALL_STATE(4905)] = 157080, - [SMALL_STATE(4906)] = 157094, - [SMALL_STATE(4907)] = 157108, - [SMALL_STATE(4908)] = 157122, - [SMALL_STATE(4909)] = 157132, - [SMALL_STATE(4910)] = 157146, - [SMALL_STATE(4911)] = 157156, - [SMALL_STATE(4912)] = 157166, - [SMALL_STATE(4913)] = 157180, - [SMALL_STATE(4914)] = 157190, - [SMALL_STATE(4915)] = 157206, - [SMALL_STATE(4916)] = 157216, - [SMALL_STATE(4917)] = 157226, - [SMALL_STATE(4918)] = 157236, - [SMALL_STATE(4919)] = 157246, - [SMALL_STATE(4920)] = 157256, - [SMALL_STATE(4921)] = 157266, - [SMALL_STATE(4922)] = 157276, - [SMALL_STATE(4923)] = 157290, - [SMALL_STATE(4924)] = 157300, - [SMALL_STATE(4925)] = 157310, - [SMALL_STATE(4926)] = 157324, - [SMALL_STATE(4927)] = 157334, - [SMALL_STATE(4928)] = 157344, - [SMALL_STATE(4929)] = 157354, - [SMALL_STATE(4930)] = 157368, - [SMALL_STATE(4931)] = 157382, - [SMALL_STATE(4932)] = 157392, - [SMALL_STATE(4933)] = 157404, - [SMALL_STATE(4934)] = 157418, - [SMALL_STATE(4935)] = 157432, - [SMALL_STATE(4936)] = 157446, - [SMALL_STATE(4937)] = 157456, - [SMALL_STATE(4938)] = 157468, - [SMALL_STATE(4939)] = 157482, - [SMALL_STATE(4940)] = 157494, - [SMALL_STATE(4941)] = 157508, - [SMALL_STATE(4942)] = 157518, - [SMALL_STATE(4943)] = 157532, - [SMALL_STATE(4944)] = 157542, - [SMALL_STATE(4945)] = 157552, - [SMALL_STATE(4946)] = 157562, - [SMALL_STATE(4947)] = 157572, - [SMALL_STATE(4948)] = 157582, - [SMALL_STATE(4949)] = 157592, - [SMALL_STATE(4950)] = 157602, - [SMALL_STATE(4951)] = 157612, - [SMALL_STATE(4952)] = 157622, - [SMALL_STATE(4953)] = 157632, - [SMALL_STATE(4954)] = 157642, - [SMALL_STATE(4955)] = 157652, - [SMALL_STATE(4956)] = 157662, - [SMALL_STATE(4957)] = 157672, - [SMALL_STATE(4958)] = 157686, - [SMALL_STATE(4959)] = 157696, - [SMALL_STATE(4960)] = 157706, - [SMALL_STATE(4961)] = 157716, - [SMALL_STATE(4962)] = 157726, - [SMALL_STATE(4963)] = 157736, - [SMALL_STATE(4964)] = 157746, - [SMALL_STATE(4965)] = 157756, - [SMALL_STATE(4966)] = 157766, - [SMALL_STATE(4967)] = 157776, - [SMALL_STATE(4968)] = 157786, - [SMALL_STATE(4969)] = 157796, - [SMALL_STATE(4970)] = 157806, - [SMALL_STATE(4971)] = 157816, - [SMALL_STATE(4972)] = 157826, - [SMALL_STATE(4973)] = 157836, - [SMALL_STATE(4974)] = 157846, - [SMALL_STATE(4975)] = 157856, - [SMALL_STATE(4976)] = 157866, - [SMALL_STATE(4977)] = 157876, - [SMALL_STATE(4978)] = 157890, - [SMALL_STATE(4979)] = 157900, - [SMALL_STATE(4980)] = 157910, - [SMALL_STATE(4981)] = 157920, - [SMALL_STATE(4982)] = 157930, - [SMALL_STATE(4983)] = 157940, - [SMALL_STATE(4984)] = 157954, - [SMALL_STATE(4985)] = 157966, - [SMALL_STATE(4986)] = 157976, - [SMALL_STATE(4987)] = 157990, - [SMALL_STATE(4988)] = 158000, - [SMALL_STATE(4989)] = 158010, - [SMALL_STATE(4990)] = 158020, - [SMALL_STATE(4991)] = 158030, - [SMALL_STATE(4992)] = 158040, - [SMALL_STATE(4993)] = 158050, - [SMALL_STATE(4994)] = 158060, - [SMALL_STATE(4995)] = 158070, - [SMALL_STATE(4996)] = 158080, - [SMALL_STATE(4997)] = 158090, - [SMALL_STATE(4998)] = 158100, - [SMALL_STATE(4999)] = 158110, - [SMALL_STATE(5000)] = 158120, - [SMALL_STATE(5001)] = 158130, - [SMALL_STATE(5002)] = 158142, - [SMALL_STATE(5003)] = 158156, - [SMALL_STATE(5004)] = 158166, - [SMALL_STATE(5005)] = 158176, - [SMALL_STATE(5006)] = 158190, - [SMALL_STATE(5007)] = 158204, - [SMALL_STATE(5008)] = 158214, - [SMALL_STATE(5009)] = 158224, - [SMALL_STATE(5010)] = 158234, - [SMALL_STATE(5011)] = 158244, - [SMALL_STATE(5012)] = 158254, - [SMALL_STATE(5013)] = 158264, - [SMALL_STATE(5014)] = 158278, - [SMALL_STATE(5015)] = 158288, - [SMALL_STATE(5016)] = 158298, - [SMALL_STATE(5017)] = 158308, - [SMALL_STATE(5018)] = 158318, - [SMALL_STATE(5019)] = 158328, - [SMALL_STATE(5020)] = 158342, - [SMALL_STATE(5021)] = 158354, - [SMALL_STATE(5022)] = 158364, - [SMALL_STATE(5023)] = 158374, - [SMALL_STATE(5024)] = 158384, - [SMALL_STATE(5025)] = 158394, - [SMALL_STATE(5026)] = 158404, - [SMALL_STATE(5027)] = 158414, - [SMALL_STATE(5028)] = 158424, - [SMALL_STATE(5029)] = 158434, - [SMALL_STATE(5030)] = 158444, - [SMALL_STATE(5031)] = 158454, - [SMALL_STATE(5032)] = 158468, - [SMALL_STATE(5033)] = 158478, - [SMALL_STATE(5034)] = 158488, - [SMALL_STATE(5035)] = 158498, - [SMALL_STATE(5036)] = 158508, - [SMALL_STATE(5037)] = 158518, - [SMALL_STATE(5038)] = 158532, - [SMALL_STATE(5039)] = 158542, - [SMALL_STATE(5040)] = 158552, - [SMALL_STATE(5041)] = 158562, - [SMALL_STATE(5042)] = 158576, - [SMALL_STATE(5043)] = 158586, - [SMALL_STATE(5044)] = 158596, - [SMALL_STATE(5045)] = 158606, - [SMALL_STATE(5046)] = 158618, - [SMALL_STATE(5047)] = 158630, - [SMALL_STATE(5048)] = 158644, - [SMALL_STATE(5049)] = 158658, - [SMALL_STATE(5050)] = 158668, - [SMALL_STATE(5051)] = 158678, - [SMALL_STATE(5052)] = 158688, - [SMALL_STATE(5053)] = 158698, - [SMALL_STATE(5054)] = 158708, - [SMALL_STATE(5055)] = 158718, - [SMALL_STATE(5056)] = 158728, - [SMALL_STATE(5057)] = 158738, - [SMALL_STATE(5058)] = 158748, - [SMALL_STATE(5059)] = 158758, - [SMALL_STATE(5060)] = 158768, - [SMALL_STATE(5061)] = 158778, - [SMALL_STATE(5062)] = 158788, - [SMALL_STATE(5063)] = 158798, - [SMALL_STATE(5064)] = 158808, - [SMALL_STATE(5065)] = 158818, - [SMALL_STATE(5066)] = 158832, - [SMALL_STATE(5067)] = 158842, - [SMALL_STATE(5068)] = 158852, - [SMALL_STATE(5069)] = 158862, - [SMALL_STATE(5070)] = 158872, - [SMALL_STATE(5071)] = 158884, - [SMALL_STATE(5072)] = 158894, - [SMALL_STATE(5073)] = 158906, - [SMALL_STATE(5074)] = 158916, - [SMALL_STATE(5075)] = 158926, - [SMALL_STATE(5076)] = 158936, - [SMALL_STATE(5077)] = 158948, - [SMALL_STATE(5078)] = 158958, - [SMALL_STATE(5079)] = 158968, - [SMALL_STATE(5080)] = 158978, - [SMALL_STATE(5081)] = 158988, - [SMALL_STATE(5082)] = 158998, - [SMALL_STATE(5083)] = 159008, - [SMALL_STATE(5084)] = 159018, - [SMALL_STATE(5085)] = 159028, - [SMALL_STATE(5086)] = 159038, - [SMALL_STATE(5087)] = 159048, - [SMALL_STATE(5088)] = 159058, - [SMALL_STATE(5089)] = 159072, - [SMALL_STATE(5090)] = 159082, - [SMALL_STATE(5091)] = 159092, - [SMALL_STATE(5092)] = 159106, - [SMALL_STATE(5093)] = 159116, - [SMALL_STATE(5094)] = 159130, - [SMALL_STATE(5095)] = 159140, - [SMALL_STATE(5096)] = 159150, - [SMALL_STATE(5097)] = 159160, - [SMALL_STATE(5098)] = 159170, - [SMALL_STATE(5099)] = 159180, - [SMALL_STATE(5100)] = 159190, - [SMALL_STATE(5101)] = 159200, - [SMALL_STATE(5102)] = 159210, - [SMALL_STATE(5103)] = 159220, - [SMALL_STATE(5104)] = 159230, - [SMALL_STATE(5105)] = 159240, - [SMALL_STATE(5106)] = 159254, - [SMALL_STATE(5107)] = 159264, - [SMALL_STATE(5108)] = 159274, - [SMALL_STATE(5109)] = 159284, - [SMALL_STATE(5110)] = 159294, - [SMALL_STATE(5111)] = 159304, - [SMALL_STATE(5112)] = 159314, - [SMALL_STATE(5113)] = 159324, - [SMALL_STATE(5114)] = 159338, - [SMALL_STATE(5115)] = 159348, - [SMALL_STATE(5116)] = 159358, - [SMALL_STATE(5117)] = 159368, - [SMALL_STATE(5118)] = 159378, - [SMALL_STATE(5119)] = 159388, - [SMALL_STATE(5120)] = 159402, - [SMALL_STATE(5121)] = 159412, - [SMALL_STATE(5122)] = 159422, - [SMALL_STATE(5123)] = 159432, - [SMALL_STATE(5124)] = 159442, - [SMALL_STATE(5125)] = 159452, - [SMALL_STATE(5126)] = 159462, - [SMALL_STATE(5127)] = 159472, - [SMALL_STATE(5128)] = 159482, - [SMALL_STATE(5129)] = 159492, - [SMALL_STATE(5130)] = 159502, - [SMALL_STATE(5131)] = 159512, - [SMALL_STATE(5132)] = 159522, - [SMALL_STATE(5133)] = 159532, - [SMALL_STATE(5134)] = 159542, - [SMALL_STATE(5135)] = 159552, - [SMALL_STATE(5136)] = 159562, - [SMALL_STATE(5137)] = 159572, - [SMALL_STATE(5138)] = 159582, - [SMALL_STATE(5139)] = 159592, - [SMALL_STATE(5140)] = 159602, - [SMALL_STATE(5141)] = 159612, - [SMALL_STATE(5142)] = 159622, - [SMALL_STATE(5143)] = 159632, - [SMALL_STATE(5144)] = 159642, - [SMALL_STATE(5145)] = 159652, - [SMALL_STATE(5146)] = 159662, - [SMALL_STATE(5147)] = 159672, - [SMALL_STATE(5148)] = 159682, - [SMALL_STATE(5149)] = 159692, - [SMALL_STATE(5150)] = 159704, - [SMALL_STATE(5151)] = 159718, - [SMALL_STATE(5152)] = 159728, - [SMALL_STATE(5153)] = 159738, - [SMALL_STATE(5154)] = 159752, - [SMALL_STATE(5155)] = 159762, - [SMALL_STATE(5156)] = 159776, - [SMALL_STATE(5157)] = 159790, - [SMALL_STATE(5158)] = 159804, - [SMALL_STATE(5159)] = 159818, - [SMALL_STATE(5160)] = 159828, - [SMALL_STATE(5161)] = 159842, - [SMALL_STATE(5162)] = 159852, - [SMALL_STATE(5163)] = 159868, - [SMALL_STATE(5164)] = 159882, - [SMALL_STATE(5165)] = 159894, - [SMALL_STATE(5166)] = 159904, - [SMALL_STATE(5167)] = 159916, - [SMALL_STATE(5168)] = 159926, - [SMALL_STATE(5169)] = 159942, - [SMALL_STATE(5170)] = 159956, - [SMALL_STATE(5171)] = 159966, - [SMALL_STATE(5172)] = 159980, - [SMALL_STATE(5173)] = 159990, - [SMALL_STATE(5174)] = 160004, - [SMALL_STATE(5175)] = 160014, - [SMALL_STATE(5176)] = 160028, - [SMALL_STATE(5177)] = 160038, - [SMALL_STATE(5178)] = 160048, - [SMALL_STATE(5179)] = 160058, - [SMALL_STATE(5180)] = 160072, - [SMALL_STATE(5181)] = 160086, - [SMALL_STATE(5182)] = 160100, - [SMALL_STATE(5183)] = 160110, - [SMALL_STATE(5184)] = 160124, - [SMALL_STATE(5185)] = 160136, - [SMALL_STATE(5186)] = 160146, - [SMALL_STATE(5187)] = 160156, - [SMALL_STATE(5188)] = 160170, - [SMALL_STATE(5189)] = 160184, - [SMALL_STATE(5190)] = 160198, - [SMALL_STATE(5191)] = 160212, - [SMALL_STATE(5192)] = 160226, - [SMALL_STATE(5193)] = 160236, - [SMALL_STATE(5194)] = 160246, - [SMALL_STATE(5195)] = 160256, - [SMALL_STATE(5196)] = 160266, - [SMALL_STATE(5197)] = 160280, - [SMALL_STATE(5198)] = 160290, - [SMALL_STATE(5199)] = 160300, - [SMALL_STATE(5200)] = 160314, - [SMALL_STATE(5201)] = 160328, - [SMALL_STATE(5202)] = 160344, - [SMALL_STATE(5203)] = 160354, - [SMALL_STATE(5204)] = 160366, - [SMALL_STATE(5205)] = 160376, - [SMALL_STATE(5206)] = 160390, - [SMALL_STATE(5207)] = 160400, - [SMALL_STATE(5208)] = 160410, - [SMALL_STATE(5209)] = 160420, - [SMALL_STATE(5210)] = 160430, - [SMALL_STATE(5211)] = 160440, - [SMALL_STATE(5212)] = 160454, - [SMALL_STATE(5213)] = 160468, - [SMALL_STATE(5214)] = 160478, - [SMALL_STATE(5215)] = 160488, - [SMALL_STATE(5216)] = 160498, - [SMALL_STATE(5217)] = 160512, - [SMALL_STATE(5218)] = 160522, - [SMALL_STATE(5219)] = 160532, - [SMALL_STATE(5220)] = 160542, - [SMALL_STATE(5221)] = 160556, - [SMALL_STATE(5222)] = 160566, - [SMALL_STATE(5223)] = 160576, - [SMALL_STATE(5224)] = 160586, - [SMALL_STATE(5225)] = 160596, - [SMALL_STATE(5226)] = 160606, - [SMALL_STATE(5227)] = 160616, - [SMALL_STATE(5228)] = 160630, - [SMALL_STATE(5229)] = 160640, - [SMALL_STATE(5230)] = 160654, - [SMALL_STATE(5231)] = 160664, - [SMALL_STATE(5232)] = 160674, - [SMALL_STATE(5233)] = 160688, - [SMALL_STATE(5234)] = 160699, - [SMALL_STATE(5235)] = 160708, - [SMALL_STATE(5236)] = 160719, - [SMALL_STATE(5237)] = 160730, - [SMALL_STATE(5238)] = 160741, - [SMALL_STATE(5239)] = 160752, - [SMALL_STATE(5240)] = 160763, - [SMALL_STATE(5241)] = 160774, - [SMALL_STATE(5242)] = 160785, - [SMALL_STATE(5243)] = 160796, - [SMALL_STATE(5244)] = 160807, - [SMALL_STATE(5245)] = 160818, - [SMALL_STATE(5246)] = 160829, - [SMALL_STATE(5247)] = 160840, - [SMALL_STATE(5248)] = 160851, - [SMALL_STATE(5249)] = 160862, - [SMALL_STATE(5250)] = 160871, - [SMALL_STATE(5251)] = 160882, - [SMALL_STATE(5252)] = 160893, - [SMALL_STATE(5253)] = 160904, - [SMALL_STATE(5254)] = 160913, - [SMALL_STATE(5255)] = 160922, - [SMALL_STATE(5256)] = 160933, - [SMALL_STATE(5257)] = 160942, - [SMALL_STATE(5258)] = 160953, - [SMALL_STATE(5259)] = 160964, - [SMALL_STATE(5260)] = 160975, - [SMALL_STATE(5261)] = 160984, - [SMALL_STATE(5262)] = 160995, - [SMALL_STATE(5263)] = 161006, - [SMALL_STATE(5264)] = 161015, - [SMALL_STATE(5265)] = 161026, - [SMALL_STATE(5266)] = 161035, - [SMALL_STATE(5267)] = 161046, - [SMALL_STATE(5268)] = 161057, - [SMALL_STATE(5269)] = 161068, - [SMALL_STATE(5270)] = 161077, - [SMALL_STATE(5271)] = 161088, - [SMALL_STATE(5272)] = 161099, - [SMALL_STATE(5273)] = 161110, - [SMALL_STATE(5274)] = 161121, - [SMALL_STATE(5275)] = 161132, - [SMALL_STATE(5276)] = 161143, - [SMALL_STATE(5277)] = 161154, - [SMALL_STATE(5278)] = 161165, - [SMALL_STATE(5279)] = 161176, - [SMALL_STATE(5280)] = 161187, - [SMALL_STATE(5281)] = 161198, - [SMALL_STATE(5282)] = 161209, - [SMALL_STATE(5283)] = 161220, - [SMALL_STATE(5284)] = 161231, - [SMALL_STATE(5285)] = 161242, - [SMALL_STATE(5286)] = 161253, - [SMALL_STATE(5287)] = 161264, - [SMALL_STATE(5288)] = 161273, - [SMALL_STATE(5289)] = 161284, - [SMALL_STATE(5290)] = 161295, - [SMALL_STATE(5291)] = 161304, - [SMALL_STATE(5292)] = 161315, - [SMALL_STATE(5293)] = 161326, - [SMALL_STATE(5294)] = 161337, - [SMALL_STATE(5295)] = 161346, - [SMALL_STATE(5296)] = 161355, - [SMALL_STATE(5297)] = 161364, - [SMALL_STATE(5298)] = 161375, - [SMALL_STATE(5299)] = 161386, - [SMALL_STATE(5300)] = 161397, - [SMALL_STATE(5301)] = 161408, - [SMALL_STATE(5302)] = 161419, - [SMALL_STATE(5303)] = 161430, - [SMALL_STATE(5304)] = 161441, - [SMALL_STATE(5305)] = 161452, - [SMALL_STATE(5306)] = 161463, - [SMALL_STATE(5307)] = 161474, - [SMALL_STATE(5308)] = 161485, - [SMALL_STATE(5309)] = 161496, - [SMALL_STATE(5310)] = 161507, - [SMALL_STATE(5311)] = 161518, - [SMALL_STATE(5312)] = 161527, - [SMALL_STATE(5313)] = 161538, - [SMALL_STATE(5314)] = 161549, - [SMALL_STATE(5315)] = 161558, - [SMALL_STATE(5316)] = 161569, - [SMALL_STATE(5317)] = 161580, - [SMALL_STATE(5318)] = 161591, - [SMALL_STATE(5319)] = 161602, - [SMALL_STATE(5320)] = 161611, - [SMALL_STATE(5321)] = 161622, - [SMALL_STATE(5322)] = 161631, - [SMALL_STATE(5323)] = 161642, - [SMALL_STATE(5324)] = 161651, - [SMALL_STATE(5325)] = 161660, - [SMALL_STATE(5326)] = 161671, - [SMALL_STATE(5327)] = 161682, - [SMALL_STATE(5328)] = 161693, - [SMALL_STATE(5329)] = 161704, - [SMALL_STATE(5330)] = 161713, - [SMALL_STATE(5331)] = 161724, - [SMALL_STATE(5332)] = 161735, - [SMALL_STATE(5333)] = 161744, - [SMALL_STATE(5334)] = 161755, - [SMALL_STATE(5335)] = 161766, - [SMALL_STATE(5336)] = 161777, - [SMALL_STATE(5337)] = 161786, - [SMALL_STATE(5338)] = 161797, - [SMALL_STATE(5339)] = 161808, - [SMALL_STATE(5340)] = 161819, - [SMALL_STATE(5341)] = 161830, - [SMALL_STATE(5342)] = 161841, - [SMALL_STATE(5343)] = 161852, - [SMALL_STATE(5344)] = 161863, - [SMALL_STATE(5345)] = 161872, - [SMALL_STATE(5346)] = 161883, - [SMALL_STATE(5347)] = 161894, - [SMALL_STATE(5348)] = 161905, - [SMALL_STATE(5349)] = 161916, - [SMALL_STATE(5350)] = 161925, - [SMALL_STATE(5351)] = 161936, - [SMALL_STATE(5352)] = 161947, - [SMALL_STATE(5353)] = 161958, - [SMALL_STATE(5354)] = 161969, - [SMALL_STATE(5355)] = 161980, - [SMALL_STATE(5356)] = 161991, - [SMALL_STATE(5357)] = 162000, - [SMALL_STATE(5358)] = 162011, - [SMALL_STATE(5359)] = 162022, - [SMALL_STATE(5360)] = 162033, - [SMALL_STATE(5361)] = 162044, - [SMALL_STATE(5362)] = 162055, - [SMALL_STATE(5363)] = 162064, - [SMALL_STATE(5364)] = 162075, - [SMALL_STATE(5365)] = 162084, - [SMALL_STATE(5366)] = 162095, - [SMALL_STATE(5367)] = 162106, - [SMALL_STATE(5368)] = 162115, - [SMALL_STATE(5369)] = 162126, - [SMALL_STATE(5370)] = 162137, - [SMALL_STATE(5371)] = 162148, - [SMALL_STATE(5372)] = 162159, - [SMALL_STATE(5373)] = 162170, - [SMALL_STATE(5374)] = 162181, - [SMALL_STATE(5375)] = 162192, - [SMALL_STATE(5376)] = 162203, - [SMALL_STATE(5377)] = 162214, - [SMALL_STATE(5378)] = 162225, - [SMALL_STATE(5379)] = 162236, - [SMALL_STATE(5380)] = 162245, - [SMALL_STATE(5381)] = 162256, - [SMALL_STATE(5382)] = 162267, - [SMALL_STATE(5383)] = 162278, - [SMALL_STATE(5384)] = 162289, - [SMALL_STATE(5385)] = 162298, - [SMALL_STATE(5386)] = 162307, - [SMALL_STATE(5387)] = 162318, - [SMALL_STATE(5388)] = 162327, - [SMALL_STATE(5389)] = 162336, - [SMALL_STATE(5390)] = 162345, - [SMALL_STATE(5391)] = 162356, - [SMALL_STATE(5392)] = 162367, - [SMALL_STATE(5393)] = 162378, - [SMALL_STATE(5394)] = 162389, - [SMALL_STATE(5395)] = 162398, - [SMALL_STATE(5396)] = 162409, - [SMALL_STATE(5397)] = 162420, - [SMALL_STATE(5398)] = 162431, - [SMALL_STATE(5399)] = 162440, - [SMALL_STATE(5400)] = 162451, - [SMALL_STATE(5401)] = 162460, - [SMALL_STATE(5402)] = 162471, - [SMALL_STATE(5403)] = 162480, - [SMALL_STATE(5404)] = 162491, - [SMALL_STATE(5405)] = 162502, - [SMALL_STATE(5406)] = 162513, - [SMALL_STATE(5407)] = 162524, - [SMALL_STATE(5408)] = 162535, - [SMALL_STATE(5409)] = 162546, - [SMALL_STATE(5410)] = 162557, - [SMALL_STATE(5411)] = 162566, - [SMALL_STATE(5412)] = 162577, - [SMALL_STATE(5413)] = 162586, - [SMALL_STATE(5414)] = 162595, - [SMALL_STATE(5415)] = 162606, - [SMALL_STATE(5416)] = 162617, - [SMALL_STATE(5417)] = 162628, - [SMALL_STATE(5418)] = 162639, - [SMALL_STATE(5419)] = 162650, - [SMALL_STATE(5420)] = 162661, - [SMALL_STATE(5421)] = 162672, - [SMALL_STATE(5422)] = 162683, - [SMALL_STATE(5423)] = 162694, - [SMALL_STATE(5424)] = 162703, - [SMALL_STATE(5425)] = 162714, - [SMALL_STATE(5426)] = 162725, - [SMALL_STATE(5427)] = 162734, - [SMALL_STATE(5428)] = 162745, - [SMALL_STATE(5429)] = 162756, - [SMALL_STATE(5430)] = 162767, - [SMALL_STATE(5431)] = 162778, - [SMALL_STATE(5432)] = 162789, - [SMALL_STATE(5433)] = 162800, - [SMALL_STATE(5434)] = 162811, - [SMALL_STATE(5435)] = 162822, - [SMALL_STATE(5436)] = 162833, - [SMALL_STATE(5437)] = 162844, - [SMALL_STATE(5438)] = 162855, - [SMALL_STATE(5439)] = 162864, - [SMALL_STATE(5440)] = 162875, - [SMALL_STATE(5441)] = 162886, - [SMALL_STATE(5442)] = 162897, - [SMALL_STATE(5443)] = 162908, - [SMALL_STATE(5444)] = 162919, - [SMALL_STATE(5445)] = 162928, - [SMALL_STATE(5446)] = 162939, - [SMALL_STATE(5447)] = 162950, - [SMALL_STATE(5448)] = 162961, - [SMALL_STATE(5449)] = 162972, - [SMALL_STATE(5450)] = 162981, - [SMALL_STATE(5451)] = 162990, - [SMALL_STATE(5452)] = 163001, - [SMALL_STATE(5453)] = 163012, - [SMALL_STATE(5454)] = 163023, - [SMALL_STATE(5455)] = 163032, - [SMALL_STATE(5456)] = 163043, - [SMALL_STATE(5457)] = 163054, - [SMALL_STATE(5458)] = 163065, - [SMALL_STATE(5459)] = 163074, - [SMALL_STATE(5460)] = 163085, - [SMALL_STATE(5461)] = 163094, - [SMALL_STATE(5462)] = 163105, - [SMALL_STATE(5463)] = 163114, - [SMALL_STATE(5464)] = 163125, - [SMALL_STATE(5465)] = 163136, - [SMALL_STATE(5466)] = 163145, - [SMALL_STATE(5467)] = 163156, - [SMALL_STATE(5468)] = 163165, - [SMALL_STATE(5469)] = 163174, - [SMALL_STATE(5470)] = 163185, - [SMALL_STATE(5471)] = 163196, - [SMALL_STATE(5472)] = 163207, - [SMALL_STATE(5473)] = 163218, - [SMALL_STATE(5474)] = 163229, - [SMALL_STATE(5475)] = 163240, - [SMALL_STATE(5476)] = 163251, - [SMALL_STATE(5477)] = 163262, - [SMALL_STATE(5478)] = 163273, - [SMALL_STATE(5479)] = 163282, - [SMALL_STATE(5480)] = 163293, - [SMALL_STATE(5481)] = 163304, - [SMALL_STATE(5482)] = 163315, - [SMALL_STATE(5483)] = 163326, - [SMALL_STATE(5484)] = 163337, - [SMALL_STATE(5485)] = 163346, - [SMALL_STATE(5486)] = 163355, - [SMALL_STATE(5487)] = 163366, - [SMALL_STATE(5488)] = 163377, - [SMALL_STATE(5489)] = 163386, - [SMALL_STATE(5490)] = 163397, - [SMALL_STATE(5491)] = 163408, - [SMALL_STATE(5492)] = 163419, - [SMALL_STATE(5493)] = 163430, - [SMALL_STATE(5494)] = 163441, - [SMALL_STATE(5495)] = 163452, - [SMALL_STATE(5496)] = 163463, - [SMALL_STATE(5497)] = 163472, - [SMALL_STATE(5498)] = 163483, - [SMALL_STATE(5499)] = 163494, - [SMALL_STATE(5500)] = 163505, - [SMALL_STATE(5501)] = 163516, - [SMALL_STATE(5502)] = 163527, - [SMALL_STATE(5503)] = 163536, - [SMALL_STATE(5504)] = 163545, - [SMALL_STATE(5505)] = 163556, - [SMALL_STATE(5506)] = 163567, - [SMALL_STATE(5507)] = 163578, - [SMALL_STATE(5508)] = 163589, - [SMALL_STATE(5509)] = 163600, - [SMALL_STATE(5510)] = 163611, - [SMALL_STATE(5511)] = 163622, - [SMALL_STATE(5512)] = 163633, - [SMALL_STATE(5513)] = 163644, - [SMALL_STATE(5514)] = 163655, - [SMALL_STATE(5515)] = 163666, - [SMALL_STATE(5516)] = 163677, - [SMALL_STATE(5517)] = 163686, - [SMALL_STATE(5518)] = 163697, - [SMALL_STATE(5519)] = 163708, - [SMALL_STATE(5520)] = 163719, - [SMALL_STATE(5521)] = 163730, - [SMALL_STATE(5522)] = 163741, - [SMALL_STATE(5523)] = 163752, - [SMALL_STATE(5524)] = 163763, - [SMALL_STATE(5525)] = 163774, - [SMALL_STATE(5526)] = 163785, - [SMALL_STATE(5527)] = 163796, - [SMALL_STATE(5528)] = 163807, - [SMALL_STATE(5529)] = 163818, - [SMALL_STATE(5530)] = 163829, - [SMALL_STATE(5531)] = 163838, - [SMALL_STATE(5532)] = 163847, - [SMALL_STATE(5533)] = 163858, - [SMALL_STATE(5534)] = 163869, - [SMALL_STATE(5535)] = 163880, - [SMALL_STATE(5536)] = 163891, - [SMALL_STATE(5537)] = 163902, - [SMALL_STATE(5538)] = 163911, - [SMALL_STATE(5539)] = 163922, - [SMALL_STATE(5540)] = 163933, - [SMALL_STATE(5541)] = 163944, - [SMALL_STATE(5542)] = 163953, - [SMALL_STATE(5543)] = 163964, - [SMALL_STATE(5544)] = 163975, - [SMALL_STATE(5545)] = 163986, - [SMALL_STATE(5546)] = 163997, - [SMALL_STATE(5547)] = 164008, - [SMALL_STATE(5548)] = 164017, - [SMALL_STATE(5549)] = 164028, - [SMALL_STATE(5550)] = 164039, - [SMALL_STATE(5551)] = 164048, - [SMALL_STATE(5552)] = 164057, - [SMALL_STATE(5553)] = 164068, - [SMALL_STATE(5554)] = 164079, - [SMALL_STATE(5555)] = 164088, - [SMALL_STATE(5556)] = 164099, - [SMALL_STATE(5557)] = 164110, - [SMALL_STATE(5558)] = 164121, - [SMALL_STATE(5559)] = 164132, - [SMALL_STATE(5560)] = 164143, - [SMALL_STATE(5561)] = 164154, - [SMALL_STATE(5562)] = 164165, - [SMALL_STATE(5563)] = 164176, - [SMALL_STATE(5564)] = 164187, - [SMALL_STATE(5565)] = 164198, - [SMALL_STATE(5566)] = 164209, - [SMALL_STATE(5567)] = 164220, - [SMALL_STATE(5568)] = 164231, - [SMALL_STATE(5569)] = 164242, - [SMALL_STATE(5570)] = 164253, - [SMALL_STATE(5571)] = 164264, - [SMALL_STATE(5572)] = 164275, - [SMALL_STATE(5573)] = 164286, - [SMALL_STATE(5574)] = 164297, - [SMALL_STATE(5575)] = 164308, - [SMALL_STATE(5576)] = 164317, - [SMALL_STATE(5577)] = 164328, - [SMALL_STATE(5578)] = 164339, - [SMALL_STATE(5579)] = 164350, - [SMALL_STATE(5580)] = 164359, - [SMALL_STATE(5581)] = 164370, - [SMALL_STATE(5582)] = 164381, - [SMALL_STATE(5583)] = 164392, - [SMALL_STATE(5584)] = 164403, - [SMALL_STATE(5585)] = 164412, - [SMALL_STATE(5586)] = 164421, - [SMALL_STATE(5587)] = 164429, - [SMALL_STATE(5588)] = 164437, - [SMALL_STATE(5589)] = 164445, - [SMALL_STATE(5590)] = 164453, - [SMALL_STATE(5591)] = 164461, - [SMALL_STATE(5592)] = 164469, - [SMALL_STATE(5593)] = 164477, - [SMALL_STATE(5594)] = 164485, - [SMALL_STATE(5595)] = 164493, - [SMALL_STATE(5596)] = 164503, - [SMALL_STATE(5597)] = 164511, - [SMALL_STATE(5598)] = 164519, - [SMALL_STATE(5599)] = 164527, - [SMALL_STATE(5600)] = 164535, - [SMALL_STATE(5601)] = 164543, - [SMALL_STATE(5602)] = 164551, - [SMALL_STATE(5603)] = 164559, - [SMALL_STATE(5604)] = 164567, - [SMALL_STATE(5605)] = 164575, - [SMALL_STATE(5606)] = 164583, - [SMALL_STATE(5607)] = 164591, - [SMALL_STATE(5608)] = 164599, - [SMALL_STATE(5609)] = 164607, - [SMALL_STATE(5610)] = 164615, - [SMALL_STATE(5611)] = 164623, - [SMALL_STATE(5612)] = 164631, - [SMALL_STATE(5613)] = 164639, - [SMALL_STATE(5614)] = 164647, - [SMALL_STATE(5615)] = 164655, - [SMALL_STATE(5616)] = 164663, - [SMALL_STATE(5617)] = 164671, - [SMALL_STATE(5618)] = 164679, - [SMALL_STATE(5619)] = 164687, - [SMALL_STATE(5620)] = 164695, - [SMALL_STATE(5621)] = 164703, - [SMALL_STATE(5622)] = 164711, - [SMALL_STATE(5623)] = 164719, - [SMALL_STATE(5624)] = 164727, - [SMALL_STATE(5625)] = 164735, - [SMALL_STATE(5626)] = 164743, - [SMALL_STATE(5627)] = 164751, - [SMALL_STATE(5628)] = 164759, - [SMALL_STATE(5629)] = 164767, - [SMALL_STATE(5630)] = 164775, - [SMALL_STATE(5631)] = 164783, - [SMALL_STATE(5632)] = 164791, - [SMALL_STATE(5633)] = 164799, - [SMALL_STATE(5634)] = 164807, - [SMALL_STATE(5635)] = 164815, - [SMALL_STATE(5636)] = 164823, - [SMALL_STATE(5637)] = 164831, - [SMALL_STATE(5638)] = 164839, - [SMALL_STATE(5639)] = 164847, - [SMALL_STATE(5640)] = 164855, - [SMALL_STATE(5641)] = 164863, - [SMALL_STATE(5642)] = 164871, - [SMALL_STATE(5643)] = 164879, - [SMALL_STATE(5644)] = 164887, - [SMALL_STATE(5645)] = 164895, - [SMALL_STATE(5646)] = 164903, - [SMALL_STATE(5647)] = 164911, - [SMALL_STATE(5648)] = 164919, - [SMALL_STATE(5649)] = 164927, - [SMALL_STATE(5650)] = 164935, - [SMALL_STATE(5651)] = 164943, - [SMALL_STATE(5652)] = 164951, - [SMALL_STATE(5653)] = 164959, - [SMALL_STATE(5654)] = 164967, - [SMALL_STATE(5655)] = 164975, - [SMALL_STATE(5656)] = 164983, - [SMALL_STATE(5657)] = 164991, - [SMALL_STATE(5658)] = 164999, - [SMALL_STATE(5659)] = 165007, - [SMALL_STATE(5660)] = 165015, - [SMALL_STATE(5661)] = 165023, - [SMALL_STATE(5662)] = 165031, - [SMALL_STATE(5663)] = 165039, - [SMALL_STATE(5664)] = 165047, - [SMALL_STATE(5665)] = 165055, - [SMALL_STATE(5666)] = 165063, - [SMALL_STATE(5667)] = 165071, - [SMALL_STATE(5668)] = 165079, - [SMALL_STATE(5669)] = 165087, - [SMALL_STATE(5670)] = 165095, - [SMALL_STATE(5671)] = 165103, - [SMALL_STATE(5672)] = 165111, - [SMALL_STATE(5673)] = 165119, - [SMALL_STATE(5674)] = 165127, - [SMALL_STATE(5675)] = 165137, - [SMALL_STATE(5676)] = 165145, - [SMALL_STATE(5677)] = 165153, - [SMALL_STATE(5678)] = 165161, - [SMALL_STATE(5679)] = 165169, - [SMALL_STATE(5680)] = 165177, - [SMALL_STATE(5681)] = 165185, - [SMALL_STATE(5682)] = 165193, - [SMALL_STATE(5683)] = 165201, - [SMALL_STATE(5684)] = 165209, - [SMALL_STATE(5685)] = 165217, - [SMALL_STATE(5686)] = 165225, - [SMALL_STATE(5687)] = 165233, - [SMALL_STATE(5688)] = 165243, - [SMALL_STATE(5689)] = 165251, - [SMALL_STATE(5690)] = 165259, - [SMALL_STATE(5691)] = 165267, - [SMALL_STATE(5692)] = 165275, - [SMALL_STATE(5693)] = 165283, - [SMALL_STATE(5694)] = 165291, - [SMALL_STATE(5695)] = 165299, - [SMALL_STATE(5696)] = 165307, - [SMALL_STATE(5697)] = 165315, - [SMALL_STATE(5698)] = 165323, - [SMALL_STATE(5699)] = 165331, - [SMALL_STATE(5700)] = 165339, - [SMALL_STATE(5701)] = 165347, - [SMALL_STATE(5702)] = 165355, - [SMALL_STATE(5703)] = 165363, - [SMALL_STATE(5704)] = 165371, - [SMALL_STATE(5705)] = 165379, - [SMALL_STATE(5706)] = 165387, - [SMALL_STATE(5707)] = 165395, - [SMALL_STATE(5708)] = 165403, - [SMALL_STATE(5709)] = 165411, - [SMALL_STATE(5710)] = 165419, - [SMALL_STATE(5711)] = 165427, - [SMALL_STATE(5712)] = 165435, - [SMALL_STATE(5713)] = 165443, - [SMALL_STATE(5714)] = 165451, - [SMALL_STATE(5715)] = 165459, - [SMALL_STATE(5716)] = 165467, - [SMALL_STATE(5717)] = 165475, - [SMALL_STATE(5718)] = 165483, - [SMALL_STATE(5719)] = 165491, - [SMALL_STATE(5720)] = 165499, - [SMALL_STATE(5721)] = 165507, - [SMALL_STATE(5722)] = 165515, - [SMALL_STATE(5723)] = 165523, - [SMALL_STATE(5724)] = 165531, - [SMALL_STATE(5725)] = 165539, - [SMALL_STATE(5726)] = 165547, - [SMALL_STATE(5727)] = 165555, - [SMALL_STATE(5728)] = 165563, - [SMALL_STATE(5729)] = 165571, - [SMALL_STATE(5730)] = 165579, - [SMALL_STATE(5731)] = 165587, - [SMALL_STATE(5732)] = 165595, - [SMALL_STATE(5733)] = 165603, - [SMALL_STATE(5734)] = 165611, - [SMALL_STATE(5735)] = 165619, - [SMALL_STATE(5736)] = 165627, - [SMALL_STATE(5737)] = 165635, - [SMALL_STATE(5738)] = 165643, - [SMALL_STATE(5739)] = 165651, - [SMALL_STATE(5740)] = 165659, - [SMALL_STATE(5741)] = 165667, - [SMALL_STATE(5742)] = 165675, - [SMALL_STATE(5743)] = 165683, - [SMALL_STATE(5744)] = 165691, - [SMALL_STATE(5745)] = 165699, - [SMALL_STATE(5746)] = 165707, - [SMALL_STATE(5747)] = 165715, - [SMALL_STATE(5748)] = 165723, - [SMALL_STATE(5749)] = 165731, - [SMALL_STATE(5750)] = 165739, - [SMALL_STATE(5751)] = 165747, - [SMALL_STATE(5752)] = 165755, - [SMALL_STATE(5753)] = 165763, - [SMALL_STATE(5754)] = 165771, - [SMALL_STATE(5755)] = 165779, - [SMALL_STATE(5756)] = 165787, - [SMALL_STATE(5757)] = 165795, - [SMALL_STATE(5758)] = 165803, - [SMALL_STATE(5759)] = 165811, - [SMALL_STATE(5760)] = 165819, - [SMALL_STATE(5761)] = 165827, - [SMALL_STATE(5762)] = 165835, - [SMALL_STATE(5763)] = 165843, - [SMALL_STATE(5764)] = 165851, - [SMALL_STATE(5765)] = 165861, - [SMALL_STATE(5766)] = 165869, - [SMALL_STATE(5767)] = 165877, - [SMALL_STATE(5768)] = 165885, - [SMALL_STATE(5769)] = 165893, - [SMALL_STATE(5770)] = 165901, - [SMALL_STATE(5771)] = 165909, - [SMALL_STATE(5772)] = 165917, - [SMALL_STATE(5773)] = 165927, - [SMALL_STATE(5774)] = 165935, - [SMALL_STATE(5775)] = 165943, - [SMALL_STATE(5776)] = 165951, - [SMALL_STATE(5777)] = 165959, - [SMALL_STATE(5778)] = 165967, - [SMALL_STATE(5779)] = 165975, - [SMALL_STATE(5780)] = 165983, - [SMALL_STATE(5781)] = 165991, - [SMALL_STATE(5782)] = 165999, - [SMALL_STATE(5783)] = 166007, - [SMALL_STATE(5784)] = 166015, - [SMALL_STATE(5785)] = 166023, - [SMALL_STATE(5786)] = 166031, - [SMALL_STATE(5787)] = 166039, - [SMALL_STATE(5788)] = 166047, - [SMALL_STATE(5789)] = 166055, - [SMALL_STATE(5790)] = 166065, - [SMALL_STATE(5791)] = 166073, - [SMALL_STATE(5792)] = 166081, - [SMALL_STATE(5793)] = 166089, - [SMALL_STATE(5794)] = 166097, - [SMALL_STATE(5795)] = 166105, - [SMALL_STATE(5796)] = 166113, - [SMALL_STATE(5797)] = 166121, - [SMALL_STATE(5798)] = 166129, - [SMALL_STATE(5799)] = 166137, - [SMALL_STATE(5800)] = 166145, - [SMALL_STATE(5801)] = 166153, - [SMALL_STATE(5802)] = 166161, - [SMALL_STATE(5803)] = 166169, - [SMALL_STATE(5804)] = 166177, - [SMALL_STATE(5805)] = 166185, - [SMALL_STATE(5806)] = 166193, - [SMALL_STATE(5807)] = 166201, - [SMALL_STATE(5808)] = 166209, - [SMALL_STATE(5809)] = 166217, - [SMALL_STATE(5810)] = 166225, - [SMALL_STATE(5811)] = 166233, - [SMALL_STATE(5812)] = 166241, - [SMALL_STATE(5813)] = 166249, - [SMALL_STATE(5814)] = 166257, - [SMALL_STATE(5815)] = 166265, - [SMALL_STATE(5816)] = 166273, - [SMALL_STATE(5817)] = 166281, - [SMALL_STATE(5818)] = 166289, - [SMALL_STATE(5819)] = 166297, - [SMALL_STATE(5820)] = 166305, - [SMALL_STATE(5821)] = 166313, - [SMALL_STATE(5822)] = 166321, - [SMALL_STATE(5823)] = 166329, - [SMALL_STATE(5824)] = 166337, - [SMALL_STATE(5825)] = 166345, - [SMALL_STATE(5826)] = 166353, - [SMALL_STATE(5827)] = 166361, - [SMALL_STATE(5828)] = 166369, - [SMALL_STATE(5829)] = 166377, - [SMALL_STATE(5830)] = 166385, - [SMALL_STATE(5831)] = 166393, - [SMALL_STATE(5832)] = 166401, - [SMALL_STATE(5833)] = 166409, - [SMALL_STATE(5834)] = 166417, - [SMALL_STATE(5835)] = 166425, - [SMALL_STATE(5836)] = 166433, - [SMALL_STATE(5837)] = 166441, - [SMALL_STATE(5838)] = 166449, - [SMALL_STATE(5839)] = 166457, - [SMALL_STATE(5840)] = 166465, - [SMALL_STATE(5841)] = 166473, - [SMALL_STATE(5842)] = 166481, - [SMALL_STATE(5843)] = 166489, - [SMALL_STATE(5844)] = 166497, - [SMALL_STATE(5845)] = 166505, - [SMALL_STATE(5846)] = 166513, - [SMALL_STATE(5847)] = 166521, - [SMALL_STATE(5848)] = 166529, - [SMALL_STATE(5849)] = 166537, - [SMALL_STATE(5850)] = 166545, - [SMALL_STATE(5851)] = 166553, - [SMALL_STATE(5852)] = 166561, - [SMALL_STATE(5853)] = 166569, - [SMALL_STATE(5854)] = 166577, - [SMALL_STATE(5855)] = 166585, - [SMALL_STATE(5856)] = 166593, - [SMALL_STATE(5857)] = 166601, - [SMALL_STATE(5858)] = 166609, - [SMALL_STATE(5859)] = 166617, - [SMALL_STATE(5860)] = 166625, - [SMALL_STATE(5861)] = 166635, - [SMALL_STATE(5862)] = 166643, - [SMALL_STATE(5863)] = 166651, - [SMALL_STATE(5864)] = 166659, - [SMALL_STATE(5865)] = 166667, - [SMALL_STATE(5866)] = 166675, - [SMALL_STATE(5867)] = 166683, - [SMALL_STATE(5868)] = 166691, - [SMALL_STATE(5869)] = 166699, - [SMALL_STATE(5870)] = 166707, - [SMALL_STATE(5871)] = 166715, - [SMALL_STATE(5872)] = 166723, - [SMALL_STATE(5873)] = 166731, - [SMALL_STATE(5874)] = 166739, - [SMALL_STATE(5875)] = 166747, - [SMALL_STATE(5876)] = 166755, - [SMALL_STATE(5877)] = 166763, - [SMALL_STATE(5878)] = 166771, - [SMALL_STATE(5879)] = 166779, - [SMALL_STATE(5880)] = 166787, - [SMALL_STATE(5881)] = 166795, - [SMALL_STATE(5882)] = 166803, - [SMALL_STATE(5883)] = 166811, - [SMALL_STATE(5884)] = 166819, - [SMALL_STATE(5885)] = 166827, - [SMALL_STATE(5886)] = 166835, - [SMALL_STATE(5887)] = 166843, - [SMALL_STATE(5888)] = 166851, - [SMALL_STATE(5889)] = 166859, - [SMALL_STATE(5890)] = 166867, - [SMALL_STATE(5891)] = 166875, - [SMALL_STATE(5892)] = 166883, - [SMALL_STATE(5893)] = 166891, - [SMALL_STATE(5894)] = 166899, - [SMALL_STATE(5895)] = 166907, - [SMALL_STATE(5896)] = 166915, - [SMALL_STATE(5897)] = 166923, - [SMALL_STATE(5898)] = 166931, - [SMALL_STATE(5899)] = 166939, - [SMALL_STATE(5900)] = 166947, - [SMALL_STATE(5901)] = 166955, - [SMALL_STATE(5902)] = 166963, - [SMALL_STATE(5903)] = 166971, - [SMALL_STATE(5904)] = 166979, - [SMALL_STATE(5905)] = 166987, - [SMALL_STATE(5906)] = 166995, - [SMALL_STATE(5907)] = 167003, - [SMALL_STATE(5908)] = 167011, - [SMALL_STATE(5909)] = 167019, - [SMALL_STATE(5910)] = 167027, - [SMALL_STATE(5911)] = 167035, - [SMALL_STATE(5912)] = 167043, - [SMALL_STATE(5913)] = 167053, - [SMALL_STATE(5914)] = 167061, - [SMALL_STATE(5915)] = 167069, - [SMALL_STATE(5916)] = 167077, - [SMALL_STATE(5917)] = 167085, - [SMALL_STATE(5918)] = 167093, - [SMALL_STATE(5919)] = 167101, - [SMALL_STATE(5920)] = 167109, - [SMALL_STATE(5921)] = 167117, - [SMALL_STATE(5922)] = 167125, - [SMALL_STATE(5923)] = 167133, - [SMALL_STATE(5924)] = 167141, - [SMALL_STATE(5925)] = 167149, - [SMALL_STATE(5926)] = 167157, - [SMALL_STATE(5927)] = 167165, - [SMALL_STATE(5928)] = 167173, - [SMALL_STATE(5929)] = 167181, - [SMALL_STATE(5930)] = 167189, - [SMALL_STATE(5931)] = 167197, - [SMALL_STATE(5932)] = 167205, - [SMALL_STATE(5933)] = 167213, - [SMALL_STATE(5934)] = 167221, - [SMALL_STATE(5935)] = 167229, - [SMALL_STATE(5936)] = 167237, - [SMALL_STATE(5937)] = 167245, - [SMALL_STATE(5938)] = 167253, - [SMALL_STATE(5939)] = 167261, - [SMALL_STATE(5940)] = 167269, - [SMALL_STATE(5941)] = 167277, - [SMALL_STATE(5942)] = 167285, - [SMALL_STATE(5943)] = 167293, - [SMALL_STATE(5944)] = 167301, - [SMALL_STATE(5945)] = 167309, - [SMALL_STATE(5946)] = 167317, - [SMALL_STATE(5947)] = 167325, - [SMALL_STATE(5948)] = 167333, - [SMALL_STATE(5949)] = 167341, - [SMALL_STATE(5950)] = 167349, - [SMALL_STATE(5951)] = 167357, - [SMALL_STATE(5952)] = 167365, - [SMALL_STATE(5953)] = 167373, - [SMALL_STATE(5954)] = 167381, - [SMALL_STATE(5955)] = 167389, - [SMALL_STATE(5956)] = 167397, - [SMALL_STATE(5957)] = 167405, - [SMALL_STATE(5958)] = 167413, - [SMALL_STATE(5959)] = 167421, - [SMALL_STATE(5960)] = 167429, - [SMALL_STATE(5961)] = 167437, - [SMALL_STATE(5962)] = 167445, - [SMALL_STATE(5963)] = 167453, - [SMALL_STATE(5964)] = 167461, - [SMALL_STATE(5965)] = 167469, - [SMALL_STATE(5966)] = 167477, - [SMALL_STATE(5967)] = 167485, - [SMALL_STATE(5968)] = 167493, - [SMALL_STATE(5969)] = 167501, - [SMALL_STATE(5970)] = 167509, - [SMALL_STATE(5971)] = 167517, - [SMALL_STATE(5972)] = 167525, - [SMALL_STATE(5973)] = 167533, - [SMALL_STATE(5974)] = 167543, - [SMALL_STATE(5975)] = 167553, - [SMALL_STATE(5976)] = 167561, - [SMALL_STATE(5977)] = 167569, - [SMALL_STATE(5978)] = 167577, - [SMALL_STATE(5979)] = 167585, - [SMALL_STATE(5980)] = 167593, - [SMALL_STATE(5981)] = 167601, - [SMALL_STATE(5982)] = 167609, - [SMALL_STATE(5983)] = 167617, - [SMALL_STATE(5984)] = 167625, - [SMALL_STATE(5985)] = 167633, - [SMALL_STATE(5986)] = 167641, - [SMALL_STATE(5987)] = 167649, - [SMALL_STATE(5988)] = 167657, - [SMALL_STATE(5989)] = 167665, - [SMALL_STATE(5990)] = 167673, - [SMALL_STATE(5991)] = 167681, - [SMALL_STATE(5992)] = 167689, - [SMALL_STATE(5993)] = 167697, - [SMALL_STATE(5994)] = 167705, - [SMALL_STATE(5995)] = 167713, - [SMALL_STATE(5996)] = 167721, - [SMALL_STATE(5997)] = 167729, + [SMALL_STATE(2724)] = 110499, + [SMALL_STATE(2725)] = 110579, + [SMALL_STATE(2726)] = 110659, + [SMALL_STATE(2727)] = 110723, + [SMALL_STATE(2728)] = 110803, + [SMALL_STATE(2729)] = 110867, + [SMALL_STATE(2730)] = 110947, + [SMALL_STATE(2731)] = 111001, + [SMALL_STATE(2732)] = 111055, + [SMALL_STATE(2733)] = 111119, + [SMALL_STATE(2734)] = 111199, + [SMALL_STATE(2735)] = 111253, + [SMALL_STATE(2736)] = 111333, + [SMALL_STATE(2737)] = 111387, + [SMALL_STATE(2738)] = 111441, + [SMALL_STATE(2739)] = 111495, + [SMALL_STATE(2740)] = 111549, + [SMALL_STATE(2741)] = 111629, + [SMALL_STATE(2742)] = 111689, + [SMALL_STATE(2743)] = 111746, + [SMALL_STATE(2744)] = 111803, + [SMALL_STATE(2745)] = 111860, + [SMALL_STATE(2746)] = 111913, + [SMALL_STATE(2747)] = 111970, + [SMALL_STATE(2748)] = 112011, + [SMALL_STATE(2749)] = 112068, + [SMALL_STATE(2750)] = 112109, + [SMALL_STATE(2751)] = 112166, + [SMALL_STATE(2752)] = 112207, + [SMALL_STATE(2753)] = 112248, + [SMALL_STATE(2754)] = 112289, + [SMALL_STATE(2755)] = 112346, + [SMALL_STATE(2756)] = 112403, + [SMALL_STATE(2757)] = 112460, + [SMALL_STATE(2758)] = 112517, + [SMALL_STATE(2759)] = 112570, + [SMALL_STATE(2760)] = 112613, + [SMALL_STATE(2761)] = 112670, + [SMALL_STATE(2762)] = 112721, + [SMALL_STATE(2763)] = 112778, + [SMALL_STATE(2764)] = 112835, + [SMALL_STATE(2765)] = 112892, + [SMALL_STATE(2766)] = 112949, + [SMALL_STATE(2767)] = 113006, + [SMALL_STATE(2768)] = 113054, + [SMALL_STATE(2769)] = 113102, + [SMALL_STATE(2770)] = 113150, + [SMALL_STATE(2771)] = 113198, + [SMALL_STATE(2772)] = 113246, + [SMALL_STATE(2773)] = 113294, + [SMALL_STATE(2774)] = 113342, + [SMALL_STATE(2775)] = 113390, + [SMALL_STATE(2776)] = 113438, + [SMALL_STATE(2777)] = 113486, + [SMALL_STATE(2778)] = 113534, + [SMALL_STATE(2779)] = 113582, + [SMALL_STATE(2780)] = 113630, + [SMALL_STATE(2781)] = 113678, + [SMALL_STATE(2782)] = 113728, + [SMALL_STATE(2783)] = 113778, + [SMALL_STATE(2784)] = 113826, + [SMALL_STATE(2785)] = 113874, + [SMALL_STATE(2786)] = 113922, + [SMALL_STATE(2787)] = 113970, + [SMALL_STATE(2788)] = 114018, + [SMALL_STATE(2789)] = 114068, + [SMALL_STATE(2790)] = 114116, + [SMALL_STATE(2791)] = 114164, + [SMALL_STATE(2792)] = 114214, + [SMALL_STATE(2793)] = 114262, + [SMALL_STATE(2794)] = 114312, + [SMALL_STATE(2795)] = 114360, + [SMALL_STATE(2796)] = 114410, + [SMALL_STATE(2797)] = 114458, + [SMALL_STATE(2798)] = 114506, + [SMALL_STATE(2799)] = 114556, + [SMALL_STATE(2800)] = 114606, + [SMALL_STATE(2801)] = 114656, + [SMALL_STATE(2802)] = 114704, + [SMALL_STATE(2803)] = 114752, + [SMALL_STATE(2804)] = 114800, + [SMALL_STATE(2805)] = 114848, + [SMALL_STATE(2806)] = 114898, + [SMALL_STATE(2807)] = 114946, + [SMALL_STATE(2808)] = 114994, + [SMALL_STATE(2809)] = 115042, + [SMALL_STATE(2810)] = 115090, + [SMALL_STATE(2811)] = 115138, + [SMALL_STATE(2812)] = 115186, + [SMALL_STATE(2813)] = 115234, + [SMALL_STATE(2814)] = 115282, + [SMALL_STATE(2815)] = 115332, + [SMALL_STATE(2816)] = 115380, + [SMALL_STATE(2817)] = 115428, + [SMALL_STATE(2818)] = 115478, + [SMALL_STATE(2819)] = 115526, + [SMALL_STATE(2820)] = 115576, + [SMALL_STATE(2821)] = 115624, + [SMALL_STATE(2822)] = 115672, + [SMALL_STATE(2823)] = 115720, + [SMALL_STATE(2824)] = 115770, + [SMALL_STATE(2825)] = 115818, + [SMALL_STATE(2826)] = 115866, + [SMALL_STATE(2827)] = 115914, + [SMALL_STATE(2828)] = 115962, + [SMALL_STATE(2829)] = 115997, + [SMALL_STATE(2830)] = 116038, + [SMALL_STATE(2831)] = 116079, + [SMALL_STATE(2832)] = 116120, + [SMALL_STATE(2833)] = 116148, + [SMALL_STATE(2834)] = 116176, + [SMALL_STATE(2835)] = 116204, + [SMALL_STATE(2836)] = 116232, + [SMALL_STATE(2837)] = 116260, + [SMALL_STATE(2838)] = 116288, + [SMALL_STATE(2839)] = 116316, + [SMALL_STATE(2840)] = 116344, + [SMALL_STATE(2841)] = 116372, + [SMALL_STATE(2842)] = 116400, + [SMALL_STATE(2843)] = 116428, + [SMALL_STATE(2844)] = 116456, + [SMALL_STATE(2845)] = 116484, + [SMALL_STATE(2846)] = 116512, + [SMALL_STATE(2847)] = 116540, + [SMALL_STATE(2848)] = 116568, + [SMALL_STATE(2849)] = 116596, + [SMALL_STATE(2850)] = 116624, + [SMALL_STATE(2851)] = 116652, + [SMALL_STATE(2852)] = 116680, + [SMALL_STATE(2853)] = 116708, + [SMALL_STATE(2854)] = 116736, + [SMALL_STATE(2855)] = 116764, + [SMALL_STATE(2856)] = 116792, + [SMALL_STATE(2857)] = 116820, + [SMALL_STATE(2858)] = 116848, + [SMALL_STATE(2859)] = 116876, + [SMALL_STATE(2860)] = 116904, + [SMALL_STATE(2861)] = 116932, + [SMALL_STATE(2862)] = 116960, + [SMALL_STATE(2863)] = 116988, + [SMALL_STATE(2864)] = 117016, + [SMALL_STATE(2865)] = 117044, + [SMALL_STATE(2866)] = 117072, + [SMALL_STATE(2867)] = 117099, + [SMALL_STATE(2868)] = 117156, + [SMALL_STATE(2869)] = 117213, + [SMALL_STATE(2870)] = 117246, + [SMALL_STATE(2871)] = 117273, + [SMALL_STATE(2872)] = 117299, + [SMALL_STATE(2873)] = 117325, + [SMALL_STATE(2874)] = 117375, + [SMALL_STATE(2875)] = 117401, + [SMALL_STATE(2876)] = 117427, + [SMALL_STATE(2877)] = 117453, + [SMALL_STATE(2878)] = 117487, + [SMALL_STATE(2879)] = 117513, + [SMALL_STATE(2880)] = 117543, + [SMALL_STATE(2881)] = 117569, + [SMALL_STATE(2882)] = 117597, + [SMALL_STATE(2883)] = 117623, + [SMALL_STATE(2884)] = 117661, + [SMALL_STATE(2885)] = 117699, + [SMALL_STATE(2886)] = 117729, + [SMALL_STATE(2887)] = 117755, + [SMALL_STATE(2888)] = 117793, + [SMALL_STATE(2889)] = 117821, + [SMALL_STATE(2890)] = 117851, + [SMALL_STATE(2891)] = 117876, + [SMALL_STATE(2892)] = 117901, + [SMALL_STATE(2893)] = 117926, + [SMALL_STATE(2894)] = 117951, + [SMALL_STATE(2895)] = 117976, + [SMALL_STATE(2896)] = 118003, + [SMALL_STATE(2897)] = 118034, + [SMALL_STATE(2898)] = 118059, + [SMALL_STATE(2899)] = 118084, + [SMALL_STATE(2900)] = 118108, + [SMALL_STATE(2901)] = 118132, + [SMALL_STATE(2902)] = 118156, + [SMALL_STATE(2903)] = 118178, + [SMALL_STATE(2904)] = 118202, + [SMALL_STATE(2905)] = 118226, + [SMALL_STATE(2906)] = 118250, + [SMALL_STATE(2907)] = 118274, + [SMALL_STATE(2908)] = 118298, + [SMALL_STATE(2909)] = 118322, + [SMALL_STATE(2910)] = 118346, + [SMALL_STATE(2911)] = 118368, + [SMALL_STATE(2912)] = 118400, + [SMALL_STATE(2913)] = 118434, + [SMALL_STATE(2914)] = 118468, + [SMALL_STATE(2915)] = 118502, + [SMALL_STATE(2916)] = 118526, + [SMALL_STATE(2917)] = 118550, + [SMALL_STATE(2918)] = 118578, + [SMALL_STATE(2919)] = 118602, + [SMALL_STATE(2920)] = 118628, + [SMALL_STATE(2921)] = 118652, + [SMALL_STATE(2922)] = 118676, + [SMALL_STATE(2923)] = 118700, + [SMALL_STATE(2924)] = 118722, + [SMALL_STATE(2925)] = 118746, + [SMALL_STATE(2926)] = 118770, + [SMALL_STATE(2927)] = 118794, + [SMALL_STATE(2928)] = 118818, + [SMALL_STATE(2929)] = 118842, + [SMALL_STATE(2930)] = 118866, + [SMALL_STATE(2931)] = 118890, + [SMALL_STATE(2932)] = 118914, + [SMALL_STATE(2933)] = 118940, + [SMALL_STATE(2934)] = 118964, + [SMALL_STATE(2935)] = 118988, + [SMALL_STATE(2936)] = 119012, + [SMALL_STATE(2937)] = 119036, + [SMALL_STATE(2938)] = 119068, + [SMALL_STATE(2939)] = 119102, + [SMALL_STATE(2940)] = 119136, + [SMALL_STATE(2941)] = 119170, + [SMALL_STATE(2942)] = 119194, + [SMALL_STATE(2943)] = 119218, + [SMALL_STATE(2944)] = 119240, + [SMALL_STATE(2945)] = 119264, + [SMALL_STATE(2946)] = 119288, + [SMALL_STATE(2947)] = 119322, + [SMALL_STATE(2948)] = 119356, + [SMALL_STATE(2949)] = 119390, + [SMALL_STATE(2950)] = 119422, + [SMALL_STATE(2951)] = 119456, + [SMALL_STATE(2952)] = 119480, + [SMALL_STATE(2953)] = 119514, + [SMALL_STATE(2954)] = 119538, + [SMALL_STATE(2955)] = 119560, + [SMALL_STATE(2956)] = 119584, + [SMALL_STATE(2957)] = 119616, + [SMALL_STATE(2958)] = 119650, + [SMALL_STATE(2959)] = 119684, + [SMALL_STATE(2960)] = 119718, + [SMALL_STATE(2961)] = 119742, + [SMALL_STATE(2962)] = 119766, + [SMALL_STATE(2963)] = 119790, + [SMALL_STATE(2964)] = 119814, + [SMALL_STATE(2965)] = 119836, + [SMALL_STATE(2966)] = 119860, + [SMALL_STATE(2967)] = 119884, + [SMALL_STATE(2968)] = 119908, + [SMALL_STATE(2969)] = 119932, + [SMALL_STATE(2970)] = 119954, + [SMALL_STATE(2971)] = 119978, + [SMALL_STATE(2972)] = 120002, + [SMALL_STATE(2973)] = 120026, + [SMALL_STATE(2974)] = 120058, + [SMALL_STATE(2975)] = 120082, + [SMALL_STATE(2976)] = 120106, + [SMALL_STATE(2977)] = 120140, + [SMALL_STATE(2978)] = 120164, + [SMALL_STATE(2979)] = 120196, + [SMALL_STATE(2980)] = 120220, + [SMALL_STATE(2981)] = 120254, + [SMALL_STATE(2982)] = 120278, + [SMALL_STATE(2983)] = 120302, + [SMALL_STATE(2984)] = 120336, + [SMALL_STATE(2985)] = 120360, + [SMALL_STATE(2986)] = 120384, + [SMALL_STATE(2987)] = 120408, + [SMALL_STATE(2988)] = 120432, + [SMALL_STATE(2989)] = 120456, + [SMALL_STATE(2990)] = 120480, + [SMALL_STATE(2991)] = 120502, + [SMALL_STATE(2992)] = 120526, + [SMALL_STATE(2993)] = 120550, + [SMALL_STATE(2994)] = 120574, + [SMALL_STATE(2995)] = 120598, + [SMALL_STATE(2996)] = 120622, + [SMALL_STATE(2997)] = 120644, + [SMALL_STATE(2998)] = 120668, + [SMALL_STATE(2999)] = 120692, + [SMALL_STATE(3000)] = 120726, + [SMALL_STATE(3001)] = 120769, + [SMALL_STATE(3002)] = 120798, + [SMALL_STATE(3003)] = 120823, + [SMALL_STATE(3004)] = 120866, + [SMALL_STATE(3005)] = 120909, + [SMALL_STATE(3006)] = 120952, + [SMALL_STATE(3007)] = 120995, + [SMALL_STATE(3008)] = 121034, + [SMALL_STATE(3009)] = 121077, + [SMALL_STATE(3010)] = 121120, + [SMALL_STATE(3011)] = 121163, + [SMALL_STATE(3012)] = 121206, + [SMALL_STATE(3013)] = 121249, + [SMALL_STATE(3014)] = 121294, + [SMALL_STATE(3015)] = 121337, + [SMALL_STATE(3016)] = 121380, + [SMALL_STATE(3017)] = 121419, + [SMALL_STATE(3018)] = 121462, + [SMALL_STATE(3019)] = 121487, + [SMALL_STATE(3020)] = 121516, + [SMALL_STATE(3021)] = 121559, + [SMALL_STATE(3022)] = 121602, + [SMALL_STATE(3023)] = 121645, + [SMALL_STATE(3024)] = 121688, + [SMALL_STATE(3025)] = 121727, + [SMALL_STATE(3026)] = 121762, + [SMALL_STATE(3027)] = 121805, + [SMALL_STATE(3028)] = 121848, + [SMALL_STATE(3029)] = 121877, + [SMALL_STATE(3030)] = 121906, + [SMALL_STATE(3031)] = 121935, + [SMALL_STATE(3032)] = 121978, + [SMALL_STATE(3033)] = 122021, + [SMALL_STATE(3034)] = 122060, + [SMALL_STATE(3035)] = 122103, + [SMALL_STATE(3036)] = 122132, + [SMALL_STATE(3037)] = 122157, + [SMALL_STATE(3038)] = 122186, + [SMALL_STATE(3039)] = 122215, + [SMALL_STATE(3040)] = 122254, + [SMALL_STATE(3041)] = 122297, + [SMALL_STATE(3042)] = 122326, + [SMALL_STATE(3043)] = 122346, + [SMALL_STATE(3044)] = 122368, + [SMALL_STATE(3045)] = 122404, + [SMALL_STATE(3046)] = 122424, + [SMALL_STATE(3047)] = 122446, + [SMALL_STATE(3048)] = 122468, + [SMALL_STATE(3049)] = 122504, + [SMALL_STATE(3050)] = 122524, + [SMALL_STATE(3051)] = 122544, + [SMALL_STATE(3052)] = 122564, + [SMALL_STATE(3053)] = 122606, + [SMALL_STATE(3054)] = 122628, + [SMALL_STATE(3055)] = 122664, + [SMALL_STATE(3056)] = 122700, + [SMALL_STATE(3057)] = 122720, + [SMALL_STATE(3058)] = 122740, + [SMALL_STATE(3059)] = 122768, + [SMALL_STATE(3060)] = 122788, + [SMALL_STATE(3061)] = 122812, + [SMALL_STATE(3062)] = 122836, + [SMALL_STATE(3063)] = 122858, + [SMALL_STATE(3064)] = 122886, + [SMALL_STATE(3065)] = 122910, + [SMALL_STATE(3066)] = 122932, + [SMALL_STATE(3067)] = 122960, + [SMALL_STATE(3068)] = 122988, + [SMALL_STATE(3069)] = 123016, + [SMALL_STATE(3070)] = 123052, + [SMALL_STATE(3071)] = 123078, + [SMALL_STATE(3072)] = 123100, + [SMALL_STATE(3073)] = 123120, + [SMALL_STATE(3074)] = 123144, + [SMALL_STATE(3075)] = 123186, + [SMALL_STATE(3076)] = 123222, + [SMALL_STATE(3077)] = 123242, + [SMALL_STATE(3078)] = 123262, + [SMALL_STATE(3079)] = 123288, + [SMALL_STATE(3080)] = 123310, + [SMALL_STATE(3081)] = 123346, + [SMALL_STATE(3082)] = 123382, + [SMALL_STATE(3083)] = 123410, + [SMALL_STATE(3084)] = 123432, + [SMALL_STATE(3085)] = 123460, + [SMALL_STATE(3086)] = 123480, + [SMALL_STATE(3087)] = 123500, + [SMALL_STATE(3088)] = 123520, + [SMALL_STATE(3089)] = 123540, + [SMALL_STATE(3090)] = 123560, + [SMALL_STATE(3091)] = 123580, + [SMALL_STATE(3092)] = 123600, + [SMALL_STATE(3093)] = 123620, + [SMALL_STATE(3094)] = 123640, + [SMALL_STATE(3095)] = 123660, + [SMALL_STATE(3096)] = 123680, + [SMALL_STATE(3097)] = 123700, + [SMALL_STATE(3098)] = 123720, + [SMALL_STATE(3099)] = 123740, + [SMALL_STATE(3100)] = 123766, + [SMALL_STATE(3101)] = 123788, + [SMALL_STATE(3102)] = 123808, + [SMALL_STATE(3103)] = 123830, + [SMALL_STATE(3104)] = 123850, + [SMALL_STATE(3105)] = 123870, + [SMALL_STATE(3106)] = 123890, + [SMALL_STATE(3107)] = 123910, + [SMALL_STATE(3108)] = 123930, + [SMALL_STATE(3109)] = 123950, + [SMALL_STATE(3110)] = 123970, + [SMALL_STATE(3111)] = 124006, + [SMALL_STATE(3112)] = 124042, + [SMALL_STATE(3113)] = 124070, + [SMALL_STATE(3114)] = 124090, + [SMALL_STATE(3115)] = 124112, + [SMALL_STATE(3116)] = 124136, + [SMALL_STATE(3117)] = 124157, + [SMALL_STATE(3118)] = 124196, + [SMALL_STATE(3119)] = 124229, + [SMALL_STATE(3120)] = 124250, + [SMALL_STATE(3121)] = 124281, + [SMALL_STATE(3122)] = 124314, + [SMALL_STATE(3123)] = 124337, + [SMALL_STATE(3124)] = 124370, + [SMALL_STATE(3125)] = 124403, + [SMALL_STATE(3126)] = 124442, + [SMALL_STATE(3127)] = 124479, + [SMALL_STATE(3128)] = 124504, + [SMALL_STATE(3129)] = 124529, + [SMALL_STATE(3130)] = 124558, + [SMALL_STATE(3131)] = 124595, + [SMALL_STATE(3132)] = 124632, + [SMALL_STATE(3133)] = 124669, + [SMALL_STATE(3134)] = 124706, + [SMALL_STATE(3135)] = 124743, + [SMALL_STATE(3136)] = 124780, + [SMALL_STATE(3137)] = 124817, + [SMALL_STATE(3138)] = 124854, + [SMALL_STATE(3139)] = 124891, + [SMALL_STATE(3140)] = 124930, + [SMALL_STATE(3141)] = 124967, + [SMALL_STATE(3142)] = 124996, + [SMALL_STATE(3143)] = 125033, + [SMALL_STATE(3144)] = 125070, + [SMALL_STATE(3145)] = 125103, + [SMALL_STATE(3146)] = 125140, + [SMALL_STATE(3147)] = 125169, + [SMALL_STATE(3148)] = 125206, + [SMALL_STATE(3149)] = 125239, + [SMALL_STATE(3150)] = 125260, + [SMALL_STATE(3151)] = 125297, + [SMALL_STATE(3152)] = 125334, + [SMALL_STATE(3153)] = 125367, + [SMALL_STATE(3154)] = 125390, + [SMALL_STATE(3155)] = 125423, + [SMALL_STATE(3156)] = 125454, + [SMALL_STATE(3157)] = 125487, + [SMALL_STATE(3158)] = 125526, + [SMALL_STATE(3159)] = 125547, + [SMALL_STATE(3160)] = 125570, + [SMALL_STATE(3161)] = 125607, + [SMALL_STATE(3162)] = 125630, + [SMALL_STATE(3163)] = 125663, + [SMALL_STATE(3164)] = 125686, + [SMALL_STATE(3165)] = 125717, + [SMALL_STATE(3166)] = 125748, + [SMALL_STATE(3167)] = 125779, + [SMALL_STATE(3168)] = 125816, + [SMALL_STATE(3169)] = 125853, + [SMALL_STATE(3170)] = 125882, + [SMALL_STATE(3171)] = 125921, + [SMALL_STATE(3172)] = 125958, + [SMALL_STATE(3173)] = 125979, + [SMALL_STATE(3174)] = 126008, + [SMALL_STATE(3175)] = 126029, + [SMALL_STATE(3176)] = 126066, + [SMALL_STATE(3177)] = 126087, + [SMALL_STATE(3178)] = 126124, + [SMALL_STATE(3179)] = 126148, + [SMALL_STATE(3180)] = 126172, + [SMALL_STATE(3181)] = 126192, + [SMALL_STATE(3182)] = 126212, + [SMALL_STATE(3183)] = 126242, + [SMALL_STATE(3184)] = 126262, + [SMALL_STATE(3185)] = 126282, + [SMALL_STATE(3186)] = 126312, + [SMALL_STATE(3187)] = 126330, + [SMALL_STATE(3188)] = 126348, + [SMALL_STATE(3189)] = 126368, + [SMALL_STATE(3190)] = 126388, + [SMALL_STATE(3191)] = 126406, + [SMALL_STATE(3192)] = 126428, + [SMALL_STATE(3193)] = 126450, + [SMALL_STATE(3194)] = 126474, + [SMALL_STATE(3195)] = 126498, + [SMALL_STATE(3196)] = 126518, + [SMALL_STATE(3197)] = 126544, + [SMALL_STATE(3198)] = 126564, + [SMALL_STATE(3199)] = 126584, + [SMALL_STATE(3200)] = 126614, + [SMALL_STATE(3201)] = 126634, + [SMALL_STATE(3202)] = 126654, + [SMALL_STATE(3203)] = 126674, + [SMALL_STATE(3204)] = 126694, + [SMALL_STATE(3205)] = 126718, + [SMALL_STATE(3206)] = 126736, + [SMALL_STATE(3207)] = 126756, + [SMALL_STATE(3208)] = 126776, + [SMALL_STATE(3209)] = 126798, + [SMALL_STATE(3210)] = 126818, + [SMALL_STATE(3211)] = 126838, + [SMALL_STATE(3212)] = 126858, + [SMALL_STATE(3213)] = 126880, + [SMALL_STATE(3214)] = 126900, + [SMALL_STATE(3215)] = 126920, + [SMALL_STATE(3216)] = 126940, + [SMALL_STATE(3217)] = 126970, + [SMALL_STATE(3218)] = 126996, + [SMALL_STATE(3219)] = 127016, + [SMALL_STATE(3220)] = 127036, + [SMALL_STATE(3221)] = 127054, + [SMALL_STATE(3222)] = 127072, + [SMALL_STATE(3223)] = 127090, + [SMALL_STATE(3224)] = 127108, + [SMALL_STATE(3225)] = 127126, + [SMALL_STATE(3226)] = 127144, + [SMALL_STATE(3227)] = 127164, + [SMALL_STATE(3228)] = 127184, + [SMALL_STATE(3229)] = 127208, + [SMALL_STATE(3230)] = 127226, + [SMALL_STATE(3231)] = 127244, + [SMALL_STATE(3232)] = 127264, + [SMALL_STATE(3233)] = 127284, + [SMALL_STATE(3234)] = 127304, + [SMALL_STATE(3235)] = 127322, + [SMALL_STATE(3236)] = 127342, + [SMALL_STATE(3237)] = 127366, + [SMALL_STATE(3238)] = 127384, + [SMALL_STATE(3239)] = 127414, + [SMALL_STATE(3240)] = 127434, + [SMALL_STATE(3241)] = 127454, + [SMALL_STATE(3242)] = 127474, + [SMALL_STATE(3243)] = 127496, + [SMALL_STATE(3244)] = 127516, + [SMALL_STATE(3245)] = 127536, + [SMALL_STATE(3246)] = 127556, + [SMALL_STATE(3247)] = 127580, + [SMALL_STATE(3248)] = 127610, + [SMALL_STATE(3249)] = 127634, + [SMALL_STATE(3250)] = 127656, + [SMALL_STATE(3251)] = 127676, + [SMALL_STATE(3252)] = 127706, + [SMALL_STATE(3253)] = 127736, + [SMALL_STATE(3254)] = 127756, + [SMALL_STATE(3255)] = 127792, + [SMALL_STATE(3256)] = 127814, + [SMALL_STATE(3257)] = 127834, + [SMALL_STATE(3258)] = 127856, + [SMALL_STATE(3259)] = 127891, + [SMALL_STATE(3260)] = 127926, + [SMALL_STATE(3261)] = 127957, + [SMALL_STATE(3262)] = 127974, + [SMALL_STATE(3263)] = 128009, + [SMALL_STATE(3264)] = 128032, + [SMALL_STATE(3265)] = 128065, + [SMALL_STATE(3266)] = 128098, + [SMALL_STATE(3267)] = 128119, + [SMALL_STATE(3268)] = 128140, + [SMALL_STATE(3269)] = 128169, + [SMALL_STATE(3270)] = 128202, + [SMALL_STATE(3271)] = 128237, + [SMALL_STATE(3272)] = 128258, + [SMALL_STATE(3273)] = 128291, + [SMALL_STATE(3274)] = 128318, + [SMALL_STATE(3275)] = 128353, + [SMALL_STATE(3276)] = 128372, + [SMALL_STATE(3277)] = 128397, + [SMALL_STATE(3278)] = 128432, + [SMALL_STATE(3279)] = 128463, + [SMALL_STATE(3280)] = 128486, + [SMALL_STATE(3281)] = 128505, + [SMALL_STATE(3282)] = 128540, + [SMALL_STATE(3283)] = 128573, + [SMALL_STATE(3284)] = 128608, + [SMALL_STATE(3285)] = 128625, + [SMALL_STATE(3286)] = 128642, + [SMALL_STATE(3287)] = 128659, + [SMALL_STATE(3288)] = 128678, + [SMALL_STATE(3289)] = 128713, + [SMALL_STATE(3290)] = 128748, + [SMALL_STATE(3291)] = 128779, + [SMALL_STATE(3292)] = 128814, + [SMALL_STATE(3293)] = 128833, + [SMALL_STATE(3294)] = 128866, + [SMALL_STATE(3295)] = 128882, + [SMALL_STATE(3296)] = 128910, + [SMALL_STATE(3297)] = 128926, + [SMALL_STATE(3298)] = 128954, + [SMALL_STATE(3299)] = 128982, + [SMALL_STATE(3300)] = 129012, + [SMALL_STATE(3301)] = 129038, + [SMALL_STATE(3302)] = 129066, + [SMALL_STATE(3303)] = 129094, + [SMALL_STATE(3304)] = 129122, + [SMALL_STATE(3305)] = 129152, + [SMALL_STATE(3306)] = 129180, + [SMALL_STATE(3307)] = 129196, + [SMALL_STATE(3308)] = 129226, + [SMALL_STATE(3309)] = 129256, + [SMALL_STATE(3310)] = 129286, + [SMALL_STATE(3311)] = 129316, + [SMALL_STATE(3312)] = 129346, + [SMALL_STATE(3313)] = 129374, + [SMALL_STATE(3314)] = 129404, + [SMALL_STATE(3315)] = 129434, + [SMALL_STATE(3316)] = 129460, + [SMALL_STATE(3317)] = 129490, + [SMALL_STATE(3318)] = 129522, + [SMALL_STATE(3319)] = 129552, + [SMALL_STATE(3320)] = 129580, + [SMALL_STATE(3321)] = 129608, + [SMALL_STATE(3322)] = 129624, + [SMALL_STATE(3323)] = 129656, + [SMALL_STATE(3324)] = 129672, + [SMALL_STATE(3325)] = 129704, + [SMALL_STATE(3326)] = 129722, + [SMALL_STATE(3327)] = 129738, + [SMALL_STATE(3328)] = 129768, + [SMALL_STATE(3329)] = 129800, + [SMALL_STATE(3330)] = 129816, + [SMALL_STATE(3331)] = 129832, + [SMALL_STATE(3332)] = 129862, + [SMALL_STATE(3333)] = 129894, + [SMALL_STATE(3334)] = 129922, + [SMALL_STATE(3335)] = 129942, + [SMALL_STATE(3336)] = 129970, + [SMALL_STATE(3337)] = 129998, + [SMALL_STATE(3338)] = 130028, + [SMALL_STATE(3339)] = 130044, + [SMALL_STATE(3340)] = 130074, + [SMALL_STATE(3341)] = 130104, + [SMALL_STATE(3342)] = 130134, + [SMALL_STATE(3343)] = 130162, + [SMALL_STATE(3344)] = 130178, + [SMALL_STATE(3345)] = 130210, + [SMALL_STATE(3346)] = 130240, + [SMALL_STATE(3347)] = 130256, + [SMALL_STATE(3348)] = 130272, + [SMALL_STATE(3349)] = 130302, + [SMALL_STATE(3350)] = 130332, + [SMALL_STATE(3351)] = 130362, + [SMALL_STATE(3352)] = 130378, + [SMALL_STATE(3353)] = 130394, + [SMALL_STATE(3354)] = 130410, + [SMALL_STATE(3355)] = 130426, + [SMALL_STATE(3356)] = 130444, + [SMALL_STATE(3357)] = 130460, + [SMALL_STATE(3358)] = 130476, + [SMALL_STATE(3359)] = 130492, + [SMALL_STATE(3360)] = 130514, + [SMALL_STATE(3361)] = 130534, + [SMALL_STATE(3362)] = 130560, + [SMALL_STATE(3363)] = 130578, + [SMALL_STATE(3364)] = 130608, + [SMALL_STATE(3365)] = 130638, + [SMALL_STATE(3366)] = 130668, + [SMALL_STATE(3367)] = 130696, + [SMALL_STATE(3368)] = 130724, + [SMALL_STATE(3369)] = 130750, + [SMALL_STATE(3370)] = 130780, + [SMALL_STATE(3371)] = 130810, + [SMALL_STATE(3372)] = 130828, + [SMALL_STATE(3373)] = 130856, + [SMALL_STATE(3374)] = 130886, + [SMALL_STATE(3375)] = 130912, + [SMALL_STATE(3376)] = 130940, + [SMALL_STATE(3377)] = 130962, + [SMALL_STATE(3378)] = 130988, + [SMALL_STATE(3379)] = 131016, + [SMALL_STATE(3380)] = 131044, + [SMALL_STATE(3381)] = 131070, + [SMALL_STATE(3382)] = 131086, + [SMALL_STATE(3383)] = 131108, + [SMALL_STATE(3384)] = 131136, + [SMALL_STATE(3385)] = 131166, + [SMALL_STATE(3386)] = 131192, + [SMALL_STATE(3387)] = 131220, + [SMALL_STATE(3388)] = 131246, + [SMALL_STATE(3389)] = 131272, + [SMALL_STATE(3390)] = 131294, + [SMALL_STATE(3391)] = 131326, + [SMALL_STATE(3392)] = 131358, + [SMALL_STATE(3393)] = 131374, + [SMALL_STATE(3394)] = 131390, + [SMALL_STATE(3395)] = 131416, + [SMALL_STATE(3396)] = 131446, + [SMALL_STATE(3397)] = 131466, + [SMALL_STATE(3398)] = 131496, + [SMALL_STATE(3399)] = 131512, + [SMALL_STATE(3400)] = 131540, + [SMALL_STATE(3401)] = 131572, + [SMALL_STATE(3402)] = 131600, + [SMALL_STATE(3403)] = 131628, + [SMALL_STATE(3404)] = 131644, + [SMALL_STATE(3405)] = 131662, + [SMALL_STATE(3406)] = 131678, + [SMALL_STATE(3407)] = 131706, + [SMALL_STATE(3408)] = 131722, + [SMALL_STATE(3409)] = 131750, + [SMALL_STATE(3410)] = 131782, + [SMALL_STATE(3411)] = 131812, + [SMALL_STATE(3412)] = 131828, + [SMALL_STATE(3413)] = 131858, + [SMALL_STATE(3414)] = 131890, + [SMALL_STATE(3415)] = 131906, + [SMALL_STATE(3416)] = 131928, + [SMALL_STATE(3417)] = 131944, + [SMALL_STATE(3418)] = 131972, + [SMALL_STATE(3419)] = 131988, + [SMALL_STATE(3420)] = 132016, + [SMALL_STATE(3421)] = 132032, + [SMALL_STATE(3422)] = 132060, + [SMALL_STATE(3423)] = 132084, + [SMALL_STATE(3424)] = 132112, + [SMALL_STATE(3425)] = 132128, + [SMALL_STATE(3426)] = 132150, + [SMALL_STATE(3427)] = 132166, + [SMALL_STATE(3428)] = 132182, + [SMALL_STATE(3429)] = 132212, + [SMALL_STATE(3430)] = 132228, + [SMALL_STATE(3431)] = 132256, + [SMALL_STATE(3432)] = 132284, + [SMALL_STATE(3433)] = 132312, + [SMALL_STATE(3434)] = 132338, + [SMALL_STATE(3435)] = 132368, + [SMALL_STATE(3436)] = 132396, + [SMALL_STATE(3437)] = 132424, + [SMALL_STATE(3438)] = 132450, + [SMALL_STATE(3439)] = 132480, + [SMALL_STATE(3440)] = 132508, + [SMALL_STATE(3441)] = 132530, + [SMALL_STATE(3442)] = 132546, + [SMALL_STATE(3443)] = 132562, + [SMALL_STATE(3444)] = 132578, + [SMALL_STATE(3445)] = 132606, + [SMALL_STATE(3446)] = 132634, + [SMALL_STATE(3447)] = 132656, + [SMALL_STATE(3448)] = 132688, + [SMALL_STATE(3449)] = 132704, + [SMALL_STATE(3450)] = 132720, + [SMALL_STATE(3451)] = 132736, + [SMALL_STATE(3452)] = 132764, + [SMALL_STATE(3453)] = 132792, + [SMALL_STATE(3454)] = 132824, + [SMALL_STATE(3455)] = 132852, + [SMALL_STATE(3456)] = 132880, + [SMALL_STATE(3457)] = 132896, + [SMALL_STATE(3458)] = 132928, + [SMALL_STATE(3459)] = 132958, + [SMALL_STATE(3460)] = 132988, + [SMALL_STATE(3461)] = 133016, + [SMALL_STATE(3462)] = 133048, + [SMALL_STATE(3463)] = 133080, + [SMALL_STATE(3464)] = 133096, + [SMALL_STATE(3465)] = 133128, + [SMALL_STATE(3466)] = 133160, + [SMALL_STATE(3467)] = 133186, + [SMALL_STATE(3468)] = 133214, + [SMALL_STATE(3469)] = 133242, + [SMALL_STATE(3470)] = 133270, + [SMALL_STATE(3471)] = 133286, + [SMALL_STATE(3472)] = 133302, + [SMALL_STATE(3473)] = 133318, + [SMALL_STATE(3474)] = 133346, + [SMALL_STATE(3475)] = 133378, + [SMALL_STATE(3476)] = 133401, + [SMALL_STATE(3477)] = 133420, + [SMALL_STATE(3478)] = 133449, + [SMALL_STATE(3479)] = 133474, + [SMALL_STATE(3480)] = 133499, + [SMALL_STATE(3481)] = 133524, + [SMALL_STATE(3482)] = 133539, + [SMALL_STATE(3483)] = 133560, + [SMALL_STATE(3484)] = 133575, + [SMALL_STATE(3485)] = 133604, + [SMALL_STATE(3486)] = 133629, + [SMALL_STATE(3487)] = 133652, + [SMALL_STATE(3488)] = 133681, + [SMALL_STATE(3489)] = 133704, + [SMALL_STATE(3490)] = 133727, + [SMALL_STATE(3491)] = 133742, + [SMALL_STATE(3492)] = 133771, + [SMALL_STATE(3493)] = 133786, + [SMALL_STATE(3494)] = 133801, + [SMALL_STATE(3495)] = 133826, + [SMALL_STATE(3496)] = 133851, + [SMALL_STATE(3497)] = 133874, + [SMALL_STATE(3498)] = 133897, + [SMALL_STATE(3499)] = 133926, + [SMALL_STATE(3500)] = 133951, + [SMALL_STATE(3501)] = 133980, + [SMALL_STATE(3502)] = 134009, + [SMALL_STATE(3503)] = 134030, + [SMALL_STATE(3504)] = 134047, + [SMALL_STATE(3505)] = 134068, + [SMALL_STATE(3506)] = 134085, + [SMALL_STATE(3507)] = 134110, + [SMALL_STATE(3508)] = 134135, + [SMALL_STATE(3509)] = 134160, + [SMALL_STATE(3510)] = 134185, + [SMALL_STATE(3511)] = 134210, + [SMALL_STATE(3512)] = 134239, + [SMALL_STATE(3513)] = 134256, + [SMALL_STATE(3514)] = 134273, + [SMALL_STATE(3515)] = 134290, + [SMALL_STATE(3516)] = 134313, + [SMALL_STATE(3517)] = 134334, + [SMALL_STATE(3518)] = 134355, + [SMALL_STATE(3519)] = 134376, + [SMALL_STATE(3520)] = 134399, + [SMALL_STATE(3521)] = 134422, + [SMALL_STATE(3522)] = 134444, + [SMALL_STATE(3523)] = 134458, + [SMALL_STATE(3524)] = 134482, + [SMALL_STATE(3525)] = 134500, + [SMALL_STATE(3526)] = 134522, + [SMALL_STATE(3527)] = 134544, + [SMALL_STATE(3528)] = 134570, + [SMALL_STATE(3529)] = 134596, + [SMALL_STATE(3530)] = 134614, + [SMALL_STATE(3531)] = 134636, + [SMALL_STATE(3532)] = 134658, + [SMALL_STATE(3533)] = 134680, + [SMALL_STATE(3534)] = 134694, + [SMALL_STATE(3535)] = 134716, + [SMALL_STATE(3536)] = 134738, + [SMALL_STATE(3537)] = 134764, + [SMALL_STATE(3538)] = 134786, + [SMALL_STATE(3539)] = 134808, + [SMALL_STATE(3540)] = 134830, + [SMALL_STATE(3541)] = 134852, + [SMALL_STATE(3542)] = 134878, + [SMALL_STATE(3543)] = 134900, + [SMALL_STATE(3544)] = 134922, + [SMALL_STATE(3545)] = 134936, + [SMALL_STATE(3546)] = 134958, + [SMALL_STATE(3547)] = 134980, + [SMALL_STATE(3548)] = 135002, + [SMALL_STATE(3549)] = 135024, + [SMALL_STATE(3550)] = 135038, + [SMALL_STATE(3551)] = 135060, + [SMALL_STATE(3552)] = 135082, + [SMALL_STATE(3553)] = 135102, + [SMALL_STATE(3554)] = 135124, + [SMALL_STATE(3555)] = 135146, + [SMALL_STATE(3556)] = 135172, + [SMALL_STATE(3557)] = 135194, + [SMALL_STATE(3558)] = 135216, + [SMALL_STATE(3559)] = 135234, + [SMALL_STATE(3560)] = 135254, + [SMALL_STATE(3561)] = 135276, + [SMALL_STATE(3562)] = 135298, + [SMALL_STATE(3563)] = 135324, + [SMALL_STATE(3564)] = 135346, + [SMALL_STATE(3565)] = 135364, + [SMALL_STATE(3566)] = 135386, + [SMALL_STATE(3567)] = 135408, + [SMALL_STATE(3568)] = 135430, + [SMALL_STATE(3569)] = 135456, + [SMALL_STATE(3570)] = 135478, + [SMALL_STATE(3571)] = 135498, + [SMALL_STATE(3572)] = 135524, + [SMALL_STATE(3573)] = 135546, + [SMALL_STATE(3574)] = 135560, + [SMALL_STATE(3575)] = 135574, + [SMALL_STATE(3576)] = 135592, + [SMALL_STATE(3577)] = 135606, + [SMALL_STATE(3578)] = 135632, + [SMALL_STATE(3579)] = 135654, + [SMALL_STATE(3580)] = 135672, + [SMALL_STATE(3581)] = 135694, + [SMALL_STATE(3582)] = 135716, + [SMALL_STATE(3583)] = 135742, + [SMALL_STATE(3584)] = 135760, + [SMALL_STATE(3585)] = 135782, + [SMALL_STATE(3586)] = 135804, + [SMALL_STATE(3587)] = 135818, + [SMALL_STATE(3588)] = 135844, + [SMALL_STATE(3589)] = 135870, + [SMALL_STATE(3590)] = 135892, + [SMALL_STATE(3591)] = 135914, + [SMALL_STATE(3592)] = 135936, + [SMALL_STATE(3593)] = 135958, + [SMALL_STATE(3594)] = 135984, + [SMALL_STATE(3595)] = 135998, + [SMALL_STATE(3596)] = 136024, + [SMALL_STATE(3597)] = 136040, + [SMALL_STATE(3598)] = 136062, + [SMALL_STATE(3599)] = 136076, + [SMALL_STATE(3600)] = 136098, + [SMALL_STATE(3601)] = 136120, + [SMALL_STATE(3602)] = 136142, + [SMALL_STATE(3603)] = 136164, + [SMALL_STATE(3604)] = 136190, + [SMALL_STATE(3605)] = 136212, + [SMALL_STATE(3606)] = 136234, + [SMALL_STATE(3607)] = 136256, + [SMALL_STATE(3608)] = 136282, + [SMALL_STATE(3609)] = 136304, + [SMALL_STATE(3610)] = 136326, + [SMALL_STATE(3611)] = 136348, + [SMALL_STATE(3612)] = 136370, + [SMALL_STATE(3613)] = 136396, + [SMALL_STATE(3614)] = 136418, + [SMALL_STATE(3615)] = 136444, + [SMALL_STATE(3616)] = 136466, + [SMALL_STATE(3617)] = 136480, + [SMALL_STATE(3618)] = 136506, + [SMALL_STATE(3619)] = 136528, + [SMALL_STATE(3620)] = 136550, + [SMALL_STATE(3621)] = 136572, + [SMALL_STATE(3622)] = 136594, + [SMALL_STATE(3623)] = 136616, + [SMALL_STATE(3624)] = 136638, + [SMALL_STATE(3625)] = 136660, + [SMALL_STATE(3626)] = 136682, + [SMALL_STATE(3627)] = 136696, + [SMALL_STATE(3628)] = 136718, + [SMALL_STATE(3629)] = 136744, + [SMALL_STATE(3630)] = 136766, + [SMALL_STATE(3631)] = 136784, + [SMALL_STATE(3632)] = 136800, + [SMALL_STATE(3633)] = 136816, + [SMALL_STATE(3634)] = 136842, + [SMALL_STATE(3635)] = 136868, + [SMALL_STATE(3636)] = 136894, + [SMALL_STATE(3637)] = 136920, + [SMALL_STATE(3638)] = 136938, + [SMALL_STATE(3639)] = 136964, + [SMALL_STATE(3640)] = 136980, + [SMALL_STATE(3641)] = 137002, + [SMALL_STATE(3642)] = 137024, + [SMALL_STATE(3643)] = 137050, + [SMALL_STATE(3644)] = 137076, + [SMALL_STATE(3645)] = 137102, + [SMALL_STATE(3646)] = 137128, + [SMALL_STATE(3647)] = 137150, + [SMALL_STATE(3648)] = 137176, + [SMALL_STATE(3649)] = 137202, + [SMALL_STATE(3650)] = 137228, + [SMALL_STATE(3651)] = 137250, + [SMALL_STATE(3652)] = 137276, + [SMALL_STATE(3653)] = 137292, + [SMALL_STATE(3654)] = 137310, + [SMALL_STATE(3655)] = 137326, + [SMALL_STATE(3656)] = 137352, + [SMALL_STATE(3657)] = 137378, + [SMALL_STATE(3658)] = 137396, + [SMALL_STATE(3659)] = 137414, + [SMALL_STATE(3660)] = 137428, + [SMALL_STATE(3661)] = 137446, + [SMALL_STATE(3662)] = 137472, + [SMALL_STATE(3663)] = 137490, + [SMALL_STATE(3664)] = 137516, + [SMALL_STATE(3665)] = 137538, + [SMALL_STATE(3666)] = 137560, + [SMALL_STATE(3667)] = 137582, + [SMALL_STATE(3668)] = 137604, + [SMALL_STATE(3669)] = 137626, + [SMALL_STATE(3670)] = 137648, + [SMALL_STATE(3671)] = 137666, + [SMALL_STATE(3672)] = 137688, + [SMALL_STATE(3673)] = 137710, + [SMALL_STATE(3674)] = 137732, + [SMALL_STATE(3675)] = 137754, + [SMALL_STATE(3676)] = 137776, + [SMALL_STATE(3677)] = 137798, + [SMALL_STATE(3678)] = 137820, + [SMALL_STATE(3679)] = 137842, + [SMALL_STATE(3680)] = 137868, + [SMALL_STATE(3681)] = 137894, + [SMALL_STATE(3682)] = 137916, + [SMALL_STATE(3683)] = 137934, + [SMALL_STATE(3684)] = 137952, + [SMALL_STATE(3685)] = 137978, + [SMALL_STATE(3686)] = 138000, + [SMALL_STATE(3687)] = 138026, + [SMALL_STATE(3688)] = 138044, + [SMALL_STATE(3689)] = 138062, + [SMALL_STATE(3690)] = 138084, + [SMALL_STATE(3691)] = 138106, + [SMALL_STATE(3692)] = 138128, + [SMALL_STATE(3693)] = 138154, + [SMALL_STATE(3694)] = 138180, + [SMALL_STATE(3695)] = 138202, + [SMALL_STATE(3696)] = 138224, + [SMALL_STATE(3697)] = 138246, + [SMALL_STATE(3698)] = 138272, + [SMALL_STATE(3699)] = 138294, + [SMALL_STATE(3700)] = 138312, + [SMALL_STATE(3701)] = 138334, + [SMALL_STATE(3702)] = 138356, + [SMALL_STATE(3703)] = 138378, + [SMALL_STATE(3704)] = 138404, + [SMALL_STATE(3705)] = 138430, + [SMALL_STATE(3706)] = 138456, + [SMALL_STATE(3707)] = 138482, + [SMALL_STATE(3708)] = 138504, + [SMALL_STATE(3709)] = 138526, + [SMALL_STATE(3710)] = 138548, + [SMALL_STATE(3711)] = 138574, + [SMALL_STATE(3712)] = 138596, + [SMALL_STATE(3713)] = 138618, + [SMALL_STATE(3714)] = 138636, + [SMALL_STATE(3715)] = 138658, + [SMALL_STATE(3716)] = 138680, + [SMALL_STATE(3717)] = 138702, + [SMALL_STATE(3718)] = 138724, + [SMALL_STATE(3719)] = 138746, + [SMALL_STATE(3720)] = 138770, + [SMALL_STATE(3721)] = 138792, + [SMALL_STATE(3722)] = 138814, + [SMALL_STATE(3723)] = 138836, + [SMALL_STATE(3724)] = 138852, + [SMALL_STATE(3725)] = 138874, + [SMALL_STATE(3726)] = 138890, + [SMALL_STATE(3727)] = 138916, + [SMALL_STATE(3728)] = 138934, + [SMALL_STATE(3729)] = 138952, + [SMALL_STATE(3730)] = 138978, + [SMALL_STATE(3731)] = 138996, + [SMALL_STATE(3732)] = 139014, + [SMALL_STATE(3733)] = 139032, + [SMALL_STATE(3734)] = 139058, + [SMALL_STATE(3735)] = 139072, + [SMALL_STATE(3736)] = 139094, + [SMALL_STATE(3737)] = 139116, + [SMALL_STATE(3738)] = 139142, + [SMALL_STATE(3739)] = 139160, + [SMALL_STATE(3740)] = 139174, + [SMALL_STATE(3741)] = 139196, + [SMALL_STATE(3742)] = 139222, + [SMALL_STATE(3743)] = 139248, + [SMALL_STATE(3744)] = 139274, + [SMALL_STATE(3745)] = 139296, + [SMALL_STATE(3746)] = 139322, + [SMALL_STATE(3747)] = 139344, + [SMALL_STATE(3748)] = 139366, + [SMALL_STATE(3749)] = 139388, + [SMALL_STATE(3750)] = 139408, + [SMALL_STATE(3751)] = 139430, + [SMALL_STATE(3752)] = 139444, + [SMALL_STATE(3753)] = 139464, + [SMALL_STATE(3754)] = 139484, + [SMALL_STATE(3755)] = 139500, + [SMALL_STATE(3756)] = 139526, + [SMALL_STATE(3757)] = 139548, + [SMALL_STATE(3758)] = 139568, + [SMALL_STATE(3759)] = 139588, + [SMALL_STATE(3760)] = 139606, + [SMALL_STATE(3761)] = 139628, + [SMALL_STATE(3762)] = 139650, + [SMALL_STATE(3763)] = 139672, + [SMALL_STATE(3764)] = 139690, + [SMALL_STATE(3765)] = 139708, + [SMALL_STATE(3766)] = 139730, + [SMALL_STATE(3767)] = 139750, + [SMALL_STATE(3768)] = 139767, + [SMALL_STATE(3769)] = 139786, + [SMALL_STATE(3770)] = 139803, + [SMALL_STATE(3771)] = 139820, + [SMALL_STATE(3772)] = 139837, + [SMALL_STATE(3773)] = 139856, + [SMALL_STATE(3774)] = 139873, + [SMALL_STATE(3775)] = 139896, + [SMALL_STATE(3776)] = 139919, + [SMALL_STATE(3777)] = 139942, + [SMALL_STATE(3778)] = 139955, + [SMALL_STATE(3779)] = 139978, + [SMALL_STATE(3780)] = 140001, + [SMALL_STATE(3781)] = 140018, + [SMALL_STATE(3782)] = 140031, + [SMALL_STATE(3783)] = 140050, + [SMALL_STATE(3784)] = 140067, + [SMALL_STATE(3785)] = 140080, + [SMALL_STATE(3786)] = 140103, + [SMALL_STATE(3787)] = 140120, + [SMALL_STATE(3788)] = 140135, + [SMALL_STATE(3789)] = 140152, + [SMALL_STATE(3790)] = 140169, + [SMALL_STATE(3791)] = 140192, + [SMALL_STATE(3792)] = 140215, + [SMALL_STATE(3793)] = 140238, + [SMALL_STATE(3794)] = 140253, + [SMALL_STATE(3795)] = 140272, + [SMALL_STATE(3796)] = 140295, + [SMALL_STATE(3797)] = 140312, + [SMALL_STATE(3798)] = 140327, + [SMALL_STATE(3799)] = 140346, + [SMALL_STATE(3800)] = 140365, + [SMALL_STATE(3801)] = 140384, + [SMALL_STATE(3802)] = 140403, + [SMALL_STATE(3803)] = 140426, + [SMALL_STATE(3804)] = 140449, + [SMALL_STATE(3805)] = 140472, + [SMALL_STATE(3806)] = 140495, + [SMALL_STATE(3807)] = 140516, + [SMALL_STATE(3808)] = 140537, + [SMALL_STATE(3809)] = 140550, + [SMALL_STATE(3810)] = 140573, + [SMALL_STATE(3811)] = 140590, + [SMALL_STATE(3812)] = 140607, + [SMALL_STATE(3813)] = 140626, + [SMALL_STATE(3814)] = 140649, + [SMALL_STATE(3815)] = 140672, + [SMALL_STATE(3816)] = 140689, + [SMALL_STATE(3817)] = 140712, + [SMALL_STATE(3818)] = 140725, + [SMALL_STATE(3819)] = 140738, + [SMALL_STATE(3820)] = 140757, + [SMALL_STATE(3821)] = 140774, + [SMALL_STATE(3822)] = 140789, + [SMALL_STATE(3823)] = 140808, + [SMALL_STATE(3824)] = 140821, + [SMALL_STATE(3825)] = 140834, + [SMALL_STATE(3826)] = 140857, + [SMALL_STATE(3827)] = 140880, + [SMALL_STATE(3828)] = 140903, + [SMALL_STATE(3829)] = 140920, + [SMALL_STATE(3830)] = 140939, + [SMALL_STATE(3831)] = 140956, + [SMALL_STATE(3832)] = 140973, + [SMALL_STATE(3833)] = 140986, + [SMALL_STATE(3834)] = 141009, + [SMALL_STATE(3835)] = 141032, + [SMALL_STATE(3836)] = 141049, + [SMALL_STATE(3837)] = 141062, + [SMALL_STATE(3838)] = 141085, + [SMALL_STATE(3839)] = 141108, + [SMALL_STATE(3840)] = 141125, + [SMALL_STATE(3841)] = 141144, + [SMALL_STATE(3842)] = 141167, + [SMALL_STATE(3843)] = 141190, + [SMALL_STATE(3844)] = 141207, + [SMALL_STATE(3845)] = 141224, + [SMALL_STATE(3846)] = 141239, + [SMALL_STATE(3847)] = 141258, + [SMALL_STATE(3848)] = 141275, + [SMALL_STATE(3849)] = 141292, + [SMALL_STATE(3850)] = 141305, + [SMALL_STATE(3851)] = 141328, + [SMALL_STATE(3852)] = 141351, + [SMALL_STATE(3853)] = 141374, + [SMALL_STATE(3854)] = 141397, + [SMALL_STATE(3855)] = 141416, + [SMALL_STATE(3856)] = 141433, + [SMALL_STATE(3857)] = 141450, + [SMALL_STATE(3858)] = 141473, + [SMALL_STATE(3859)] = 141496, + [SMALL_STATE(3860)] = 141519, + [SMALL_STATE(3861)] = 141536, + [SMALL_STATE(3862)] = 141559, + [SMALL_STATE(3863)] = 141582, + [SMALL_STATE(3864)] = 141605, + [SMALL_STATE(3865)] = 141628, + [SMALL_STATE(3866)] = 141651, + [SMALL_STATE(3867)] = 141674, + [SMALL_STATE(3868)] = 141697, + [SMALL_STATE(3869)] = 141720, + [SMALL_STATE(3870)] = 141743, + [SMALL_STATE(3871)] = 141766, + [SMALL_STATE(3872)] = 141783, + [SMALL_STATE(3873)] = 141806, + [SMALL_STATE(3874)] = 141821, + [SMALL_STATE(3875)] = 141840, + [SMALL_STATE(3876)] = 141855, + [SMALL_STATE(3877)] = 141872, + [SMALL_STATE(3878)] = 141895, + [SMALL_STATE(3879)] = 141912, + [SMALL_STATE(3880)] = 141935, + [SMALL_STATE(3881)] = 141948, + [SMALL_STATE(3882)] = 141965, + [SMALL_STATE(3883)] = 141982, + [SMALL_STATE(3884)] = 142005, + [SMALL_STATE(3885)] = 142028, + [SMALL_STATE(3886)] = 142045, + [SMALL_STATE(3887)] = 142062, + [SMALL_STATE(3888)] = 142085, + [SMALL_STATE(3889)] = 142108, + [SMALL_STATE(3890)] = 142125, + [SMALL_STATE(3891)] = 142148, + [SMALL_STATE(3892)] = 142167, + [SMALL_STATE(3893)] = 142190, + [SMALL_STATE(3894)] = 142213, + [SMALL_STATE(3895)] = 142226, + [SMALL_STATE(3896)] = 142245, + [SMALL_STATE(3897)] = 142262, + [SMALL_STATE(3898)] = 142279, + [SMALL_STATE(3899)] = 142298, + [SMALL_STATE(3900)] = 142315, + [SMALL_STATE(3901)] = 142332, + [SMALL_STATE(3902)] = 142345, + [SMALL_STATE(3903)] = 142368, + [SMALL_STATE(3904)] = 142385, + [SMALL_STATE(3905)] = 142402, + [SMALL_STATE(3906)] = 142425, + [SMALL_STATE(3907)] = 142442, + [SMALL_STATE(3908)] = 142465, + [SMALL_STATE(3909)] = 142488, + [SMALL_STATE(3910)] = 142507, + [SMALL_STATE(3911)] = 142530, + [SMALL_STATE(3912)] = 142553, + [SMALL_STATE(3913)] = 142570, + [SMALL_STATE(3914)] = 142587, + [SMALL_STATE(3915)] = 142610, + [SMALL_STATE(3916)] = 142627, + [SMALL_STATE(3917)] = 142650, + [SMALL_STATE(3918)] = 142671, + [SMALL_STATE(3919)] = 142688, + [SMALL_STATE(3920)] = 142711, + [SMALL_STATE(3921)] = 142728, + [SMALL_STATE(3922)] = 142745, + [SMALL_STATE(3923)] = 142760, + [SMALL_STATE(3924)] = 142777, + [SMALL_STATE(3925)] = 142800, + [SMALL_STATE(3926)] = 142817, + [SMALL_STATE(3927)] = 142840, + [SMALL_STATE(3928)] = 142856, + [SMALL_STATE(3929)] = 142870, + [SMALL_STATE(3930)] = 142886, + [SMALL_STATE(3931)] = 142902, + [SMALL_STATE(3932)] = 142922, + [SMALL_STATE(3933)] = 142934, + [SMALL_STATE(3934)] = 142946, + [SMALL_STATE(3935)] = 142962, + [SMALL_STATE(3936)] = 142978, + [SMALL_STATE(3937)] = 142992, + [SMALL_STATE(3938)] = 143008, + [SMALL_STATE(3939)] = 143024, + [SMALL_STATE(3940)] = 143040, + [SMALL_STATE(3941)] = 143056, + [SMALL_STATE(3942)] = 143072, + [SMALL_STATE(3943)] = 143086, + [SMALL_STATE(3944)] = 143098, + [SMALL_STATE(3945)] = 143110, + [SMALL_STATE(3946)] = 143122, + [SMALL_STATE(3947)] = 143134, + [SMALL_STATE(3948)] = 143150, + [SMALL_STATE(3949)] = 143166, + [SMALL_STATE(3950)] = 143182, + [SMALL_STATE(3951)] = 143198, + [SMALL_STATE(3952)] = 143212, + [SMALL_STATE(3953)] = 143228, + [SMALL_STATE(3954)] = 143242, + [SMALL_STATE(3955)] = 143254, + [SMALL_STATE(3956)] = 143266, + [SMALL_STATE(3957)] = 143278, + [SMALL_STATE(3958)] = 143290, + [SMALL_STATE(3959)] = 143302, + [SMALL_STATE(3960)] = 143314, + [SMALL_STATE(3961)] = 143326, + [SMALL_STATE(3962)] = 143342, + [SMALL_STATE(3963)] = 143354, + [SMALL_STATE(3964)] = 143366, + [SMALL_STATE(3965)] = 143378, + [SMALL_STATE(3966)] = 143390, + [SMALL_STATE(3967)] = 143402, + [SMALL_STATE(3968)] = 143414, + [SMALL_STATE(3969)] = 143426, + [SMALL_STATE(3970)] = 143438, + [SMALL_STATE(3971)] = 143450, + [SMALL_STATE(3972)] = 143462, + [SMALL_STATE(3973)] = 143480, + [SMALL_STATE(3974)] = 143496, + [SMALL_STATE(3975)] = 143512, + [SMALL_STATE(3976)] = 143528, + [SMALL_STATE(3977)] = 143544, + [SMALL_STATE(3978)] = 143556, + [SMALL_STATE(3979)] = 143568, + [SMALL_STATE(3980)] = 143588, + [SMALL_STATE(3981)] = 143600, + [SMALL_STATE(3982)] = 143612, + [SMALL_STATE(3983)] = 143624, + [SMALL_STATE(3984)] = 143640, + [SMALL_STATE(3985)] = 143656, + [SMALL_STATE(3986)] = 143672, + [SMALL_STATE(3987)] = 143688, + [SMALL_STATE(3988)] = 143704, + [SMALL_STATE(3989)] = 143720, + [SMALL_STATE(3990)] = 143736, + [SMALL_STATE(3991)] = 143752, + [SMALL_STATE(3992)] = 143768, + [SMALL_STATE(3993)] = 143784, + [SMALL_STATE(3994)] = 143804, + [SMALL_STATE(3995)] = 143820, + [SMALL_STATE(3996)] = 143836, + [SMALL_STATE(3997)] = 143856, + [SMALL_STATE(3998)] = 143872, + [SMALL_STATE(3999)] = 143886, + [SMALL_STATE(4000)] = 143904, + [SMALL_STATE(4001)] = 143916, + [SMALL_STATE(4002)] = 143928, + [SMALL_STATE(4003)] = 143948, + [SMALL_STATE(4004)] = 143960, + [SMALL_STATE(4005)] = 143976, + [SMALL_STATE(4006)] = 143994, + [SMALL_STATE(4007)] = 144014, + [SMALL_STATE(4008)] = 144034, + [SMALL_STATE(4009)] = 144054, + [SMALL_STATE(4010)] = 144074, + [SMALL_STATE(4011)] = 144090, + [SMALL_STATE(4012)] = 144106, + [SMALL_STATE(4013)] = 144118, + [SMALL_STATE(4014)] = 144130, + [SMALL_STATE(4015)] = 144142, + [SMALL_STATE(4016)] = 144154, + [SMALL_STATE(4017)] = 144170, + [SMALL_STATE(4018)] = 144188, + [SMALL_STATE(4019)] = 144204, + [SMALL_STATE(4020)] = 144220, + [SMALL_STATE(4021)] = 144240, + [SMALL_STATE(4022)] = 144260, + [SMALL_STATE(4023)] = 144274, + [SMALL_STATE(4024)] = 144292, + [SMALL_STATE(4025)] = 144308, + [SMALL_STATE(4026)] = 144324, + [SMALL_STATE(4027)] = 144342, + [SMALL_STATE(4028)] = 144356, + [SMALL_STATE(4029)] = 144368, + [SMALL_STATE(4030)] = 144384, + [SMALL_STATE(4031)] = 144404, + [SMALL_STATE(4032)] = 144416, + [SMALL_STATE(4033)] = 144428, + [SMALL_STATE(4034)] = 144440, + [SMALL_STATE(4035)] = 144452, + [SMALL_STATE(4036)] = 144464, + [SMALL_STATE(4037)] = 144476, + [SMALL_STATE(4038)] = 144496, + [SMALL_STATE(4039)] = 144508, + [SMALL_STATE(4040)] = 144524, + [SMALL_STATE(4041)] = 144540, + [SMALL_STATE(4042)] = 144556, + [SMALL_STATE(4043)] = 144572, + [SMALL_STATE(4044)] = 144592, + [SMALL_STATE(4045)] = 144606, + [SMALL_STATE(4046)] = 144624, + [SMALL_STATE(4047)] = 144636, + [SMALL_STATE(4048)] = 144652, + [SMALL_STATE(4049)] = 144672, + [SMALL_STATE(4050)] = 144690, + [SMALL_STATE(4051)] = 144702, + [SMALL_STATE(4052)] = 144722, + [SMALL_STATE(4053)] = 144734, + [SMALL_STATE(4054)] = 144746, + [SMALL_STATE(4055)] = 144758, + [SMALL_STATE(4056)] = 144774, + [SMALL_STATE(4057)] = 144790, + [SMALL_STATE(4058)] = 144802, + [SMALL_STATE(4059)] = 144814, + [SMALL_STATE(4060)] = 144828, + [SMALL_STATE(4061)] = 144842, + [SMALL_STATE(4062)] = 144854, + [SMALL_STATE(4063)] = 144874, + [SMALL_STATE(4064)] = 144888, + [SMALL_STATE(4065)] = 144908, + [SMALL_STATE(4066)] = 144928, + [SMALL_STATE(4067)] = 144944, + [SMALL_STATE(4068)] = 144962, + [SMALL_STATE(4069)] = 144978, + [SMALL_STATE(4070)] = 144992, + [SMALL_STATE(4071)] = 145012, + [SMALL_STATE(4072)] = 145028, + [SMALL_STATE(4073)] = 145044, + [SMALL_STATE(4074)] = 145062, + [SMALL_STATE(4075)] = 145082, + [SMALL_STATE(4076)] = 145102, + [SMALL_STATE(4077)] = 145122, + [SMALL_STATE(4078)] = 145142, + [SMALL_STATE(4079)] = 145162, + [SMALL_STATE(4080)] = 145174, + [SMALL_STATE(4081)] = 145186, + [SMALL_STATE(4082)] = 145198, + [SMALL_STATE(4083)] = 145214, + [SMALL_STATE(4084)] = 145226, + [SMALL_STATE(4085)] = 145246, + [SMALL_STATE(4086)] = 145258, + [SMALL_STATE(4087)] = 145270, + [SMALL_STATE(4088)] = 145282, + [SMALL_STATE(4089)] = 145302, + [SMALL_STATE(4090)] = 145314, + [SMALL_STATE(4091)] = 145326, + [SMALL_STATE(4092)] = 145338, + [SMALL_STATE(4093)] = 145350, + [SMALL_STATE(4094)] = 145366, + [SMALL_STATE(4095)] = 145378, + [SMALL_STATE(4096)] = 145390, + [SMALL_STATE(4097)] = 145402, + [SMALL_STATE(4098)] = 145414, + [SMALL_STATE(4099)] = 145426, + [SMALL_STATE(4100)] = 145438, + [SMALL_STATE(4101)] = 145450, + [SMALL_STATE(4102)] = 145466, + [SMALL_STATE(4103)] = 145486, + [SMALL_STATE(4104)] = 145502, + [SMALL_STATE(4105)] = 145518, + [SMALL_STATE(4106)] = 145538, + [SMALL_STATE(4107)] = 145558, + [SMALL_STATE(4108)] = 145574, + [SMALL_STATE(4109)] = 145592, + [SMALL_STATE(4110)] = 145612, + [SMALL_STATE(4111)] = 145628, + [SMALL_STATE(4112)] = 145644, + [SMALL_STATE(4113)] = 145660, + [SMALL_STATE(4114)] = 145680, + [SMALL_STATE(4115)] = 145696, + [SMALL_STATE(4116)] = 145714, + [SMALL_STATE(4117)] = 145734, + [SMALL_STATE(4118)] = 145750, + [SMALL_STATE(4119)] = 145762, + [SMALL_STATE(4120)] = 145774, + [SMALL_STATE(4121)] = 145786, + [SMALL_STATE(4122)] = 145798, + [SMALL_STATE(4123)] = 145810, + [SMALL_STATE(4124)] = 145822, + [SMALL_STATE(4125)] = 145834, + [SMALL_STATE(4126)] = 145850, + [SMALL_STATE(4127)] = 145866, + [SMALL_STATE(4128)] = 145882, + [SMALL_STATE(4129)] = 145894, + [SMALL_STATE(4130)] = 145906, + [SMALL_STATE(4131)] = 145918, + [SMALL_STATE(4132)] = 145934, + [SMALL_STATE(4133)] = 145954, + [SMALL_STATE(4134)] = 145974, + [SMALL_STATE(4135)] = 145990, + [SMALL_STATE(4136)] = 146002, + [SMALL_STATE(4137)] = 146020, + [SMALL_STATE(4138)] = 146036, + [SMALL_STATE(4139)] = 146052, + [SMALL_STATE(4140)] = 146068, + [SMALL_STATE(4141)] = 146084, + [SMALL_STATE(4142)] = 146100, + [SMALL_STATE(4143)] = 146118, + [SMALL_STATE(4144)] = 146134, + [SMALL_STATE(4145)] = 146146, + [SMALL_STATE(4146)] = 146158, + [SMALL_STATE(4147)] = 146170, + [SMALL_STATE(4148)] = 146182, + [SMALL_STATE(4149)] = 146194, + [SMALL_STATE(4150)] = 146206, + [SMALL_STATE(4151)] = 146222, + [SMALL_STATE(4152)] = 146234, + [SMALL_STATE(4153)] = 146246, + [SMALL_STATE(4154)] = 146258, + [SMALL_STATE(4155)] = 146278, + [SMALL_STATE(4156)] = 146294, + [SMALL_STATE(4157)] = 146310, + [SMALL_STATE(4158)] = 146328, + [SMALL_STATE(4159)] = 146344, + [SMALL_STATE(4160)] = 146356, + [SMALL_STATE(4161)] = 146372, + [SMALL_STATE(4162)] = 146388, + [SMALL_STATE(4163)] = 146406, + [SMALL_STATE(4164)] = 146422, + [SMALL_STATE(4165)] = 146438, + [SMALL_STATE(4166)] = 146454, + [SMALL_STATE(4167)] = 146470, + [SMALL_STATE(4168)] = 146490, + [SMALL_STATE(4169)] = 146502, + [SMALL_STATE(4170)] = 146518, + [SMALL_STATE(4171)] = 146536, + [SMALL_STATE(4172)] = 146552, + [SMALL_STATE(4173)] = 146568, + [SMALL_STATE(4174)] = 146584, + [SMALL_STATE(4175)] = 146598, + [SMALL_STATE(4176)] = 146612, + [SMALL_STATE(4177)] = 146628, + [SMALL_STATE(4178)] = 146644, + [SMALL_STATE(4179)] = 146660, + [SMALL_STATE(4180)] = 146676, + [SMALL_STATE(4181)] = 146692, + [SMALL_STATE(4182)] = 146712, + [SMALL_STATE(4183)] = 146728, + [SMALL_STATE(4184)] = 146744, + [SMALL_STATE(4185)] = 146760, + [SMALL_STATE(4186)] = 146780, + [SMALL_STATE(4187)] = 146796, + [SMALL_STATE(4188)] = 146810, + [SMALL_STATE(4189)] = 146826, + [SMALL_STATE(4190)] = 146842, + [SMALL_STATE(4191)] = 146856, + [SMALL_STATE(4192)] = 146872, + [SMALL_STATE(4193)] = 146888, + [SMALL_STATE(4194)] = 146908, + [SMALL_STATE(4195)] = 146928, + [SMALL_STATE(4196)] = 146942, + [SMALL_STATE(4197)] = 146956, + [SMALL_STATE(4198)] = 146972, + [SMALL_STATE(4199)] = 146992, + [SMALL_STATE(4200)] = 147008, + [SMALL_STATE(4201)] = 147028, + [SMALL_STATE(4202)] = 147048, + [SMALL_STATE(4203)] = 147060, + [SMALL_STATE(4204)] = 147072, + [SMALL_STATE(4205)] = 147092, + [SMALL_STATE(4206)] = 147108, + [SMALL_STATE(4207)] = 147124, + [SMALL_STATE(4208)] = 147140, + [SMALL_STATE(4209)] = 147156, + [SMALL_STATE(4210)] = 147174, + [SMALL_STATE(4211)] = 147190, + [SMALL_STATE(4212)] = 147210, + [SMALL_STATE(4213)] = 147230, + [SMALL_STATE(4214)] = 147246, + [SMALL_STATE(4215)] = 147266, + [SMALL_STATE(4216)] = 147286, + [SMALL_STATE(4217)] = 147302, + [SMALL_STATE(4218)] = 147318, + [SMALL_STATE(4219)] = 147334, + [SMALL_STATE(4220)] = 147350, + [SMALL_STATE(4221)] = 147366, + [SMALL_STATE(4222)] = 147382, + [SMALL_STATE(4223)] = 147402, + [SMALL_STATE(4224)] = 147420, + [SMALL_STATE(4225)] = 147436, + [SMALL_STATE(4226)] = 147452, + [SMALL_STATE(4227)] = 147468, + [SMALL_STATE(4228)] = 147484, + [SMALL_STATE(4229)] = 147504, + [SMALL_STATE(4230)] = 147518, + [SMALL_STATE(4231)] = 147532, + [SMALL_STATE(4232)] = 147546, + [SMALL_STATE(4233)] = 147560, + [SMALL_STATE(4234)] = 147574, + [SMALL_STATE(4235)] = 147588, + [SMALL_STATE(4236)] = 147604, + [SMALL_STATE(4237)] = 147620, + [SMALL_STATE(4238)] = 147640, + [SMALL_STATE(4239)] = 147656, + [SMALL_STATE(4240)] = 147672, + [SMALL_STATE(4241)] = 147686, + [SMALL_STATE(4242)] = 147700, + [SMALL_STATE(4243)] = 147716, + [SMALL_STATE(4244)] = 147732, + [SMALL_STATE(4245)] = 147752, + [SMALL_STATE(4246)] = 147768, + [SMALL_STATE(4247)] = 147788, + [SMALL_STATE(4248)] = 147808, + [SMALL_STATE(4249)] = 147824, + [SMALL_STATE(4250)] = 147842, + [SMALL_STATE(4251)] = 147858, + [SMALL_STATE(4252)] = 147878, + [SMALL_STATE(4253)] = 147890, + [SMALL_STATE(4254)] = 147904, + [SMALL_STATE(4255)] = 147918, + [SMALL_STATE(4256)] = 147932, + [SMALL_STATE(4257)] = 147946, + [SMALL_STATE(4258)] = 147958, + [SMALL_STATE(4259)] = 147978, + [SMALL_STATE(4260)] = 147990, + [SMALL_STATE(4261)] = 148010, + [SMALL_STATE(4262)] = 148022, + [SMALL_STATE(4263)] = 148034, + [SMALL_STATE(4264)] = 148050, + [SMALL_STATE(4265)] = 148066, + [SMALL_STATE(4266)] = 148078, + [SMALL_STATE(4267)] = 148090, + [SMALL_STATE(4268)] = 148106, + [SMALL_STATE(4269)] = 148120, + [SMALL_STATE(4270)] = 148134, + [SMALL_STATE(4271)] = 148146, + [SMALL_STATE(4272)] = 148158, + [SMALL_STATE(4273)] = 148178, + [SMALL_STATE(4274)] = 148190, + [SMALL_STATE(4275)] = 148202, + [SMALL_STATE(4276)] = 148218, + [SMALL_STATE(4277)] = 148238, + [SMALL_STATE(4278)] = 148254, + [SMALL_STATE(4279)] = 148270, + [SMALL_STATE(4280)] = 148286, + [SMALL_STATE(4281)] = 148302, + [SMALL_STATE(4282)] = 148322, + [SMALL_STATE(4283)] = 148338, + [SMALL_STATE(4284)] = 148354, + [SMALL_STATE(4285)] = 148374, + [SMALL_STATE(4286)] = 148390, + [SMALL_STATE(4287)] = 148406, + [SMALL_STATE(4288)] = 148426, + [SMALL_STATE(4289)] = 148442, + [SMALL_STATE(4290)] = 148454, + [SMALL_STATE(4291)] = 148474, + [SMALL_STATE(4292)] = 148494, + [SMALL_STATE(4293)] = 148514, + [SMALL_STATE(4294)] = 148530, + [SMALL_STATE(4295)] = 148550, + [SMALL_STATE(4296)] = 148566, + [SMALL_STATE(4297)] = 148582, + [SMALL_STATE(4298)] = 148598, + [SMALL_STATE(4299)] = 148614, + [SMALL_STATE(4300)] = 148626, + [SMALL_STATE(4301)] = 148638, + [SMALL_STATE(4302)] = 148656, + [SMALL_STATE(4303)] = 148668, + [SMALL_STATE(4304)] = 148686, + [SMALL_STATE(4305)] = 148700, + [SMALL_STATE(4306)] = 148714, + [SMALL_STATE(4307)] = 148730, + [SMALL_STATE(4308)] = 148746, + [SMALL_STATE(4309)] = 148758, + [SMALL_STATE(4310)] = 148774, + [SMALL_STATE(4311)] = 148794, + [SMALL_STATE(4312)] = 148806, + [SMALL_STATE(4313)] = 148822, + [SMALL_STATE(4314)] = 148838, + [SMALL_STATE(4315)] = 148854, + [SMALL_STATE(4316)] = 148868, + [SMALL_STATE(4317)] = 148882, + [SMALL_STATE(4318)] = 148898, + [SMALL_STATE(4319)] = 148918, + [SMALL_STATE(4320)] = 148934, + [SMALL_STATE(4321)] = 148948, + [SMALL_STATE(4322)] = 148962, + [SMALL_STATE(4323)] = 148978, + [SMALL_STATE(4324)] = 148994, + [SMALL_STATE(4325)] = 149010, + [SMALL_STATE(4326)] = 149026, + [SMALL_STATE(4327)] = 149042, + [SMALL_STATE(4328)] = 149058, + [SMALL_STATE(4329)] = 149074, + [SMALL_STATE(4330)] = 149090, + [SMALL_STATE(4331)] = 149110, + [SMALL_STATE(4332)] = 149126, + [SMALL_STATE(4333)] = 149142, + [SMALL_STATE(4334)] = 149162, + [SMALL_STATE(4335)] = 149178, + [SMALL_STATE(4336)] = 149194, + [SMALL_STATE(4337)] = 149210, + [SMALL_STATE(4338)] = 149224, + [SMALL_STATE(4339)] = 149238, + [SMALL_STATE(4340)] = 149252, + [SMALL_STATE(4341)] = 149268, + [SMALL_STATE(4342)] = 149282, + [SMALL_STATE(4343)] = 149296, + [SMALL_STATE(4344)] = 149310, + [SMALL_STATE(4345)] = 149328, + [SMALL_STATE(4346)] = 149344, + [SMALL_STATE(4347)] = 149358, + [SMALL_STATE(4348)] = 149372, + [SMALL_STATE(4349)] = 149384, + [SMALL_STATE(4350)] = 149404, + [SMALL_STATE(4351)] = 149416, + [SMALL_STATE(4352)] = 149432, + [SMALL_STATE(4353)] = 149448, + [SMALL_STATE(4354)] = 149464, + [SMALL_STATE(4355)] = 149480, + [SMALL_STATE(4356)] = 149492, + [SMALL_STATE(4357)] = 149504, + [SMALL_STATE(4358)] = 149516, + [SMALL_STATE(4359)] = 149532, + [SMALL_STATE(4360)] = 149548, + [SMALL_STATE(4361)] = 149564, + [SMALL_STATE(4362)] = 149578, + [SMALL_STATE(4363)] = 149592, + [SMALL_STATE(4364)] = 149608, + [SMALL_STATE(4365)] = 149620, + [SMALL_STATE(4366)] = 149640, + [SMALL_STATE(4367)] = 149652, + [SMALL_STATE(4368)] = 149672, + [SMALL_STATE(4369)] = 149684, + [SMALL_STATE(4370)] = 149704, + [SMALL_STATE(4371)] = 149716, + [SMALL_STATE(4372)] = 149728, + [SMALL_STATE(4373)] = 149744, + [SMALL_STATE(4374)] = 149760, + [SMALL_STATE(4375)] = 149778, + [SMALL_STATE(4376)] = 149790, + [SMALL_STATE(4377)] = 149802, + [SMALL_STATE(4378)] = 149814, + [SMALL_STATE(4379)] = 149826, + [SMALL_STATE(4380)] = 149846, + [SMALL_STATE(4381)] = 149862, + [SMALL_STATE(4382)] = 149882, + [SMALL_STATE(4383)] = 149894, + [SMALL_STATE(4384)] = 149910, + [SMALL_STATE(4385)] = 149926, + [SMALL_STATE(4386)] = 149946, + [SMALL_STATE(4387)] = 149966, + [SMALL_STATE(4388)] = 149982, + [SMALL_STATE(4389)] = 150002, + [SMALL_STATE(4390)] = 150014, + [SMALL_STATE(4391)] = 150030, + [SMALL_STATE(4392)] = 150042, + [SMALL_STATE(4393)] = 150054, + [SMALL_STATE(4394)] = 150066, + [SMALL_STATE(4395)] = 150082, + [SMALL_STATE(4396)] = 150100, + [SMALL_STATE(4397)] = 150116, + [SMALL_STATE(4398)] = 150132, + [SMALL_STATE(4399)] = 150144, + [SMALL_STATE(4400)] = 150156, + [SMALL_STATE(4401)] = 150172, + [SMALL_STATE(4402)] = 150186, + [SMALL_STATE(4403)] = 150204, + [SMALL_STATE(4404)] = 150222, + [SMALL_STATE(4405)] = 150238, + [SMALL_STATE(4406)] = 150254, + [SMALL_STATE(4407)] = 150270, + [SMALL_STATE(4408)] = 150286, + [SMALL_STATE(4409)] = 150302, + [SMALL_STATE(4410)] = 150322, + [SMALL_STATE(4411)] = 150342, + [SMALL_STATE(4412)] = 150362, + [SMALL_STATE(4413)] = 150382, + [SMALL_STATE(4414)] = 150402, + [SMALL_STATE(4415)] = 150418, + [SMALL_STATE(4416)] = 150430, + [SMALL_STATE(4417)] = 150442, + [SMALL_STATE(4418)] = 150456, + [SMALL_STATE(4419)] = 150472, + [SMALL_STATE(4420)] = 150486, + [SMALL_STATE(4421)] = 150502, + [SMALL_STATE(4422)] = 150516, + [SMALL_STATE(4423)] = 150532, + [SMALL_STATE(4424)] = 150548, + [SMALL_STATE(4425)] = 150566, + [SMALL_STATE(4426)] = 150582, + [SMALL_STATE(4427)] = 150598, + [SMALL_STATE(4428)] = 150612, + [SMALL_STATE(4429)] = 150624, + [SMALL_STATE(4430)] = 150640, + [SMALL_STATE(4431)] = 150656, + [SMALL_STATE(4432)] = 150668, + [SMALL_STATE(4433)] = 150684, + [SMALL_STATE(4434)] = 150700, + [SMALL_STATE(4435)] = 150712, + [SMALL_STATE(4436)] = 150724, + [SMALL_STATE(4437)] = 150740, + [SMALL_STATE(4438)] = 150754, + [SMALL_STATE(4439)] = 150770, + [SMALL_STATE(4440)] = 150786, + [SMALL_STATE(4441)] = 150800, + [SMALL_STATE(4442)] = 150814, + [SMALL_STATE(4443)] = 150830, + [SMALL_STATE(4444)] = 150846, + [SMALL_STATE(4445)] = 150866, + [SMALL_STATE(4446)] = 150882, + [SMALL_STATE(4447)] = 150898, + [SMALL_STATE(4448)] = 150914, + [SMALL_STATE(4449)] = 150928, + [SMALL_STATE(4450)] = 150940, + [SMALL_STATE(4451)] = 150952, + [SMALL_STATE(4452)] = 150968, + [SMALL_STATE(4453)] = 150984, + [SMALL_STATE(4454)] = 150996, + [SMALL_STATE(4455)] = 151008, + [SMALL_STATE(4456)] = 151020, + [SMALL_STATE(4457)] = 151032, + [SMALL_STATE(4458)] = 151052, + [SMALL_STATE(4459)] = 151068, + [SMALL_STATE(4460)] = 151084, + [SMALL_STATE(4461)] = 151104, + [SMALL_STATE(4462)] = 151123, + [SMALL_STATE(4463)] = 151140, + [SMALL_STATE(4464)] = 151157, + [SMALL_STATE(4465)] = 151172, + [SMALL_STATE(4466)] = 151189, + [SMALL_STATE(4467)] = 151206, + [SMALL_STATE(4468)] = 151223, + [SMALL_STATE(4469)] = 151240, + [SMALL_STATE(4470)] = 151257, + [SMALL_STATE(4471)] = 151272, + [SMALL_STATE(4472)] = 151289, + [SMALL_STATE(4473)] = 151304, + [SMALL_STATE(4474)] = 151319, + [SMALL_STATE(4475)] = 151334, + [SMALL_STATE(4476)] = 151351, + [SMALL_STATE(4477)] = 151366, + [SMALL_STATE(4478)] = 151381, + [SMALL_STATE(4479)] = 151396, + [SMALL_STATE(4480)] = 151413, + [SMALL_STATE(4481)] = 151430, + [SMALL_STATE(4482)] = 151447, + [SMALL_STATE(4483)] = 151464, + [SMALL_STATE(4484)] = 151481, + [SMALL_STATE(4485)] = 151496, + [SMALL_STATE(4486)] = 151513, + [SMALL_STATE(4487)] = 151530, + [SMALL_STATE(4488)] = 151545, + [SMALL_STATE(4489)] = 151562, + [SMALL_STATE(4490)] = 151577, + [SMALL_STATE(4491)] = 151594, + [SMALL_STATE(4492)] = 151611, + [SMALL_STATE(4493)] = 151628, + [SMALL_STATE(4494)] = 151641, + [SMALL_STATE(4495)] = 151654, + [SMALL_STATE(4496)] = 151671, + [SMALL_STATE(4497)] = 151686, + [SMALL_STATE(4498)] = 151703, + [SMALL_STATE(4499)] = 151720, + [SMALL_STATE(4500)] = 151737, + [SMALL_STATE(4501)] = 151754, + [SMALL_STATE(4502)] = 151771, + [SMALL_STATE(4503)] = 151788, + [SMALL_STATE(4504)] = 151805, + [SMALL_STATE(4505)] = 151822, + [SMALL_STATE(4506)] = 151839, + [SMALL_STATE(4507)] = 151854, + [SMALL_STATE(4508)] = 151871, + [SMALL_STATE(4509)] = 151888, + [SMALL_STATE(4510)] = 151905, + [SMALL_STATE(4511)] = 151916, + [SMALL_STATE(4512)] = 151933, + [SMALL_STATE(4513)] = 151950, + [SMALL_STATE(4514)] = 151967, + [SMALL_STATE(4515)] = 151984, + [SMALL_STATE(4516)] = 152001, + [SMALL_STATE(4517)] = 152016, + [SMALL_STATE(4518)] = 152031, + [SMALL_STATE(4519)] = 152048, + [SMALL_STATE(4520)] = 152065, + [SMALL_STATE(4521)] = 152082, + [SMALL_STATE(4522)] = 152095, + [SMALL_STATE(4523)] = 152114, + [SMALL_STATE(4524)] = 152133, + [SMALL_STATE(4525)] = 152150, + [SMALL_STATE(4526)] = 152167, + [SMALL_STATE(4527)] = 152178, + [SMALL_STATE(4528)] = 152195, + [SMALL_STATE(4529)] = 152212, + [SMALL_STATE(4530)] = 152229, + [SMALL_STATE(4531)] = 152246, + [SMALL_STATE(4532)] = 152261, + [SMALL_STATE(4533)] = 152278, + [SMALL_STATE(4534)] = 152293, + [SMALL_STATE(4535)] = 152306, + [SMALL_STATE(4536)] = 152323, + [SMALL_STATE(4537)] = 152340, + [SMALL_STATE(4538)] = 152357, + [SMALL_STATE(4539)] = 152374, + [SMALL_STATE(4540)] = 152391, + [SMALL_STATE(4541)] = 152406, + [SMALL_STATE(4542)] = 152423, + [SMALL_STATE(4543)] = 152440, + [SMALL_STATE(4544)] = 152457, + [SMALL_STATE(4545)] = 152474, + [SMALL_STATE(4546)] = 152491, + [SMALL_STATE(4547)] = 152508, + [SMALL_STATE(4548)] = 152527, + [SMALL_STATE(4549)] = 152544, + [SMALL_STATE(4550)] = 152561, + [SMALL_STATE(4551)] = 152578, + [SMALL_STATE(4552)] = 152597, + [SMALL_STATE(4553)] = 152614, + [SMALL_STATE(4554)] = 152631, + [SMALL_STATE(4555)] = 152646, + [SMALL_STATE(4556)] = 152657, + [SMALL_STATE(4557)] = 152674, + [SMALL_STATE(4558)] = 152691, + [SMALL_STATE(4559)] = 152708, + [SMALL_STATE(4560)] = 152723, + [SMALL_STATE(4561)] = 152740, + [SMALL_STATE(4562)] = 152751, + [SMALL_STATE(4563)] = 152768, + [SMALL_STATE(4564)] = 152785, + [SMALL_STATE(4565)] = 152802, + [SMALL_STATE(4566)] = 152819, + [SMALL_STATE(4567)] = 152834, + [SMALL_STATE(4568)] = 152851, + [SMALL_STATE(4569)] = 152868, + [SMALL_STATE(4570)] = 152881, + [SMALL_STATE(4571)] = 152896, + [SMALL_STATE(4572)] = 152913, + [SMALL_STATE(4573)] = 152930, + [SMALL_STATE(4574)] = 152947, + [SMALL_STATE(4575)] = 152964, + [SMALL_STATE(4576)] = 152979, + [SMALL_STATE(4577)] = 152996, + [SMALL_STATE(4578)] = 153013, + [SMALL_STATE(4579)] = 153030, + [SMALL_STATE(4580)] = 153045, + [SMALL_STATE(4581)] = 153062, + [SMALL_STATE(4582)] = 153079, + [SMALL_STATE(4583)] = 153094, + [SMALL_STATE(4584)] = 153111, + [SMALL_STATE(4585)] = 153126, + [SMALL_STATE(4586)] = 153145, + [SMALL_STATE(4587)] = 153158, + [SMALL_STATE(4588)] = 153173, + [SMALL_STATE(4589)] = 153190, + [SMALL_STATE(4590)] = 153207, + [SMALL_STATE(4591)] = 153224, + [SMALL_STATE(4592)] = 153241, + [SMALL_STATE(4593)] = 153258, + [SMALL_STATE(4594)] = 153275, + [SMALL_STATE(4595)] = 153292, + [SMALL_STATE(4596)] = 153309, + [SMALL_STATE(4597)] = 153326, + [SMALL_STATE(4598)] = 153343, + [SMALL_STATE(4599)] = 153360, + [SMALL_STATE(4600)] = 153377, + [SMALL_STATE(4601)] = 153392, + [SMALL_STATE(4602)] = 153409, + [SMALL_STATE(4603)] = 153426, + [SMALL_STATE(4604)] = 153443, + [SMALL_STATE(4605)] = 153460, + [SMALL_STATE(4606)] = 153470, + [SMALL_STATE(4607)] = 153484, + [SMALL_STATE(4608)] = 153498, + [SMALL_STATE(4609)] = 153512, + [SMALL_STATE(4610)] = 153526, + [SMALL_STATE(4611)] = 153540, + [SMALL_STATE(4612)] = 153550, + [SMALL_STATE(4613)] = 153564, + [SMALL_STATE(4614)] = 153574, + [SMALL_STATE(4615)] = 153584, + [SMALL_STATE(4616)] = 153598, + [SMALL_STATE(4617)] = 153608, + [SMALL_STATE(4618)] = 153622, + [SMALL_STATE(4619)] = 153636, + [SMALL_STATE(4620)] = 153650, + [SMALL_STATE(4621)] = 153664, + [SMALL_STATE(4622)] = 153674, + [SMALL_STATE(4623)] = 153688, + [SMALL_STATE(4624)] = 153700, + [SMALL_STATE(4625)] = 153714, + [SMALL_STATE(4626)] = 153724, + [SMALL_STATE(4627)] = 153734, + [SMALL_STATE(4628)] = 153744, + [SMALL_STATE(4629)] = 153754, + [SMALL_STATE(4630)] = 153766, + [SMALL_STATE(4631)] = 153776, + [SMALL_STATE(4632)] = 153786, + [SMALL_STATE(4633)] = 153796, + [SMALL_STATE(4634)] = 153810, + [SMALL_STATE(4635)] = 153820, + [SMALL_STATE(4636)] = 153830, + [SMALL_STATE(4637)] = 153840, + [SMALL_STATE(4638)] = 153850, + [SMALL_STATE(4639)] = 153860, + [SMALL_STATE(4640)] = 153870, + [SMALL_STATE(4641)] = 153884, + [SMALL_STATE(4642)] = 153898, + [SMALL_STATE(4643)] = 153912, + [SMALL_STATE(4644)] = 153922, + [SMALL_STATE(4645)] = 153932, + [SMALL_STATE(4646)] = 153942, + [SMALL_STATE(4647)] = 153956, + [SMALL_STATE(4648)] = 153966, + [SMALL_STATE(4649)] = 153980, + [SMALL_STATE(4650)] = 153994, + [SMALL_STATE(4651)] = 154008, + [SMALL_STATE(4652)] = 154018, + [SMALL_STATE(4653)] = 154032, + [SMALL_STATE(4654)] = 154042, + [SMALL_STATE(4655)] = 154056, + [SMALL_STATE(4656)] = 154070, + [SMALL_STATE(4657)] = 154080, + [SMALL_STATE(4658)] = 154094, + [SMALL_STATE(4659)] = 154108, + [SMALL_STATE(4660)] = 154122, + [SMALL_STATE(4661)] = 154132, + [SMALL_STATE(4662)] = 154142, + [SMALL_STATE(4663)] = 154152, + [SMALL_STATE(4664)] = 154166, + [SMALL_STATE(4665)] = 154176, + [SMALL_STATE(4666)] = 154190, + [SMALL_STATE(4667)] = 154204, + [SMALL_STATE(4668)] = 154218, + [SMALL_STATE(4669)] = 154228, + [SMALL_STATE(4670)] = 154238, + [SMALL_STATE(4671)] = 154248, + [SMALL_STATE(4672)] = 154258, + [SMALL_STATE(4673)] = 154270, + [SMALL_STATE(4674)] = 154284, + [SMALL_STATE(4675)] = 154298, + [SMALL_STATE(4676)] = 154312, + [SMALL_STATE(4677)] = 154326, + [SMALL_STATE(4678)] = 154336, + [SMALL_STATE(4679)] = 154350, + [SMALL_STATE(4680)] = 154360, + [SMALL_STATE(4681)] = 154370, + [SMALL_STATE(4682)] = 154380, + [SMALL_STATE(4683)] = 154394, + [SMALL_STATE(4684)] = 154408, + [SMALL_STATE(4685)] = 154422, + [SMALL_STATE(4686)] = 154432, + [SMALL_STATE(4687)] = 154446, + [SMALL_STATE(4688)] = 154460, + [SMALL_STATE(4689)] = 154470, + [SMALL_STATE(4690)] = 154480, + [SMALL_STATE(4691)] = 154494, + [SMALL_STATE(4692)] = 154508, + [SMALL_STATE(4693)] = 154522, + [SMALL_STATE(4694)] = 154536, + [SMALL_STATE(4695)] = 154546, + [SMALL_STATE(4696)] = 154560, + [SMALL_STATE(4697)] = 154570, + [SMALL_STATE(4698)] = 154580, + [SMALL_STATE(4699)] = 154590, + [SMALL_STATE(4700)] = 154600, + [SMALL_STATE(4701)] = 154610, + [SMALL_STATE(4702)] = 154620, + [SMALL_STATE(4703)] = 154630, + [SMALL_STATE(4704)] = 154640, + [SMALL_STATE(4705)] = 154650, + [SMALL_STATE(4706)] = 154660, + [SMALL_STATE(4707)] = 154670, + [SMALL_STATE(4708)] = 154684, + [SMALL_STATE(4709)] = 154698, + [SMALL_STATE(4710)] = 154708, + [SMALL_STATE(4711)] = 154718, + [SMALL_STATE(4712)] = 154732, + [SMALL_STATE(4713)] = 154742, + [SMALL_STATE(4714)] = 154756, + [SMALL_STATE(4715)] = 154768, + [SMALL_STATE(4716)] = 154782, + [SMALL_STATE(4717)] = 154792, + [SMALL_STATE(4718)] = 154802, + [SMALL_STATE(4719)] = 154816, + [SMALL_STATE(4720)] = 154826, + [SMALL_STATE(4721)] = 154836, + [SMALL_STATE(4722)] = 154850, + [SMALL_STATE(4723)] = 154860, + [SMALL_STATE(4724)] = 154874, + [SMALL_STATE(4725)] = 154888, + [SMALL_STATE(4726)] = 154898, + [SMALL_STATE(4727)] = 154912, + [SMALL_STATE(4728)] = 154924, + [SMALL_STATE(4729)] = 154934, + [SMALL_STATE(4730)] = 154948, + [SMALL_STATE(4731)] = 154958, + [SMALL_STATE(4732)] = 154972, + [SMALL_STATE(4733)] = 154982, + [SMALL_STATE(4734)] = 154992, + [SMALL_STATE(4735)] = 155002, + [SMALL_STATE(4736)] = 155012, + [SMALL_STATE(4737)] = 155022, + [SMALL_STATE(4738)] = 155032, + [SMALL_STATE(4739)] = 155044, + [SMALL_STATE(4740)] = 155054, + [SMALL_STATE(4741)] = 155064, + [SMALL_STATE(4742)] = 155074, + [SMALL_STATE(4743)] = 155084, + [SMALL_STATE(4744)] = 155098, + [SMALL_STATE(4745)] = 155108, + [SMALL_STATE(4746)] = 155118, + [SMALL_STATE(4747)] = 155128, + [SMALL_STATE(4748)] = 155138, + [SMALL_STATE(4749)] = 155148, + [SMALL_STATE(4750)] = 155162, + [SMALL_STATE(4751)] = 155176, + [SMALL_STATE(4752)] = 155186, + [SMALL_STATE(4753)] = 155196, + [SMALL_STATE(4754)] = 155210, + [SMALL_STATE(4755)] = 155220, + [SMALL_STATE(4756)] = 155230, + [SMALL_STATE(4757)] = 155240, + [SMALL_STATE(4758)] = 155250, + [SMALL_STATE(4759)] = 155260, + [SMALL_STATE(4760)] = 155270, + [SMALL_STATE(4761)] = 155284, + [SMALL_STATE(4762)] = 155294, + [SMALL_STATE(4763)] = 155304, + [SMALL_STATE(4764)] = 155314, + [SMALL_STATE(4765)] = 155328, + [SMALL_STATE(4766)] = 155338, + [SMALL_STATE(4767)] = 155348, + [SMALL_STATE(4768)] = 155358, + [SMALL_STATE(4769)] = 155370, + [SMALL_STATE(4770)] = 155380, + [SMALL_STATE(4771)] = 155390, + [SMALL_STATE(4772)] = 155400, + [SMALL_STATE(4773)] = 155410, + [SMALL_STATE(4774)] = 155420, + [SMALL_STATE(4775)] = 155432, + [SMALL_STATE(4776)] = 155444, + [SMALL_STATE(4777)] = 155454, + [SMALL_STATE(4778)] = 155464, + [SMALL_STATE(4779)] = 155474, + [SMALL_STATE(4780)] = 155484, + [SMALL_STATE(4781)] = 155494, + [SMALL_STATE(4782)] = 155504, + [SMALL_STATE(4783)] = 155514, + [SMALL_STATE(4784)] = 155528, + [SMALL_STATE(4785)] = 155542, + [SMALL_STATE(4786)] = 155552, + [SMALL_STATE(4787)] = 155566, + [SMALL_STATE(4788)] = 155580, + [SMALL_STATE(4789)] = 155594, + [SMALL_STATE(4790)] = 155608, + [SMALL_STATE(4791)] = 155618, + [SMALL_STATE(4792)] = 155632, + [SMALL_STATE(4793)] = 155642, + [SMALL_STATE(4794)] = 155656, + [SMALL_STATE(4795)] = 155666, + [SMALL_STATE(4796)] = 155676, + [SMALL_STATE(4797)] = 155686, + [SMALL_STATE(4798)] = 155696, + [SMALL_STATE(4799)] = 155706, + [SMALL_STATE(4800)] = 155716, + [SMALL_STATE(4801)] = 155728, + [SMALL_STATE(4802)] = 155742, + [SMALL_STATE(4803)] = 155752, + [SMALL_STATE(4804)] = 155762, + [SMALL_STATE(4805)] = 155772, + [SMALL_STATE(4806)] = 155786, + [SMALL_STATE(4807)] = 155796, + [SMALL_STATE(4808)] = 155810, + [SMALL_STATE(4809)] = 155820, + [SMALL_STATE(4810)] = 155834, + [SMALL_STATE(4811)] = 155844, + [SMALL_STATE(4812)] = 155854, + [SMALL_STATE(4813)] = 155864, + [SMALL_STATE(4814)] = 155874, + [SMALL_STATE(4815)] = 155884, + [SMALL_STATE(4816)] = 155898, + [SMALL_STATE(4817)] = 155908, + [SMALL_STATE(4818)] = 155922, + [SMALL_STATE(4819)] = 155932, + [SMALL_STATE(4820)] = 155946, + [SMALL_STATE(4821)] = 155956, + [SMALL_STATE(4822)] = 155970, + [SMALL_STATE(4823)] = 155980, + [SMALL_STATE(4824)] = 155994, + [SMALL_STATE(4825)] = 156004, + [SMALL_STATE(4826)] = 156014, + [SMALL_STATE(4827)] = 156028, + [SMALL_STATE(4828)] = 156038, + [SMALL_STATE(4829)] = 156052, + [SMALL_STATE(4830)] = 156062, + [SMALL_STATE(4831)] = 156076, + [SMALL_STATE(4832)] = 156086, + [SMALL_STATE(4833)] = 156096, + [SMALL_STATE(4834)] = 156106, + [SMALL_STATE(4835)] = 156120, + [SMALL_STATE(4836)] = 156132, + [SMALL_STATE(4837)] = 156142, + [SMALL_STATE(4838)] = 156152, + [SMALL_STATE(4839)] = 156162, + [SMALL_STATE(4840)] = 156172, + [SMALL_STATE(4841)] = 156182, + [SMALL_STATE(4842)] = 156196, + [SMALL_STATE(4843)] = 156206, + [SMALL_STATE(4844)] = 156216, + [SMALL_STATE(4845)] = 156226, + [SMALL_STATE(4846)] = 156236, + [SMALL_STATE(4847)] = 156246, + [SMALL_STATE(4848)] = 156260, + [SMALL_STATE(4849)] = 156274, + [SMALL_STATE(4850)] = 156288, + [SMALL_STATE(4851)] = 156298, + [SMALL_STATE(4852)] = 156308, + [SMALL_STATE(4853)] = 156318, + [SMALL_STATE(4854)] = 156328, + [SMALL_STATE(4855)] = 156338, + [SMALL_STATE(4856)] = 156352, + [SMALL_STATE(4857)] = 156362, + [SMALL_STATE(4858)] = 156372, + [SMALL_STATE(4859)] = 156382, + [SMALL_STATE(4860)] = 156392, + [SMALL_STATE(4861)] = 156402, + [SMALL_STATE(4862)] = 156416, + [SMALL_STATE(4863)] = 156426, + [SMALL_STATE(4864)] = 156436, + [SMALL_STATE(4865)] = 156446, + [SMALL_STATE(4866)] = 156456, + [SMALL_STATE(4867)] = 156466, + [SMALL_STATE(4868)] = 156476, + [SMALL_STATE(4869)] = 156490, + [SMALL_STATE(4870)] = 156500, + [SMALL_STATE(4871)] = 156514, + [SMALL_STATE(4872)] = 156524, + [SMALL_STATE(4873)] = 156534, + [SMALL_STATE(4874)] = 156548, + [SMALL_STATE(4875)] = 156558, + [SMALL_STATE(4876)] = 156568, + [SMALL_STATE(4877)] = 156582, + [SMALL_STATE(4878)] = 156592, + [SMALL_STATE(4879)] = 156602, + [SMALL_STATE(4880)] = 156612, + [SMALL_STATE(4881)] = 156622, + [SMALL_STATE(4882)] = 156636, + [SMALL_STATE(4883)] = 156646, + [SMALL_STATE(4884)] = 156656, + [SMALL_STATE(4885)] = 156666, + [SMALL_STATE(4886)] = 156680, + [SMALL_STATE(4887)] = 156690, + [SMALL_STATE(4888)] = 156704, + [SMALL_STATE(4889)] = 156714, + [SMALL_STATE(4890)] = 156728, + [SMALL_STATE(4891)] = 156738, + [SMALL_STATE(4892)] = 156748, + [SMALL_STATE(4893)] = 156758, + [SMALL_STATE(4894)] = 156768, + [SMALL_STATE(4895)] = 156778, + [SMALL_STATE(4896)] = 156788, + [SMALL_STATE(4897)] = 156798, + [SMALL_STATE(4898)] = 156808, + [SMALL_STATE(4899)] = 156818, + [SMALL_STATE(4900)] = 156828, + [SMALL_STATE(4901)] = 156838, + [SMALL_STATE(4902)] = 156852, + [SMALL_STATE(4903)] = 156862, + [SMALL_STATE(4904)] = 156872, + [SMALL_STATE(4905)] = 156882, + [SMALL_STATE(4906)] = 156892, + [SMALL_STATE(4907)] = 156902, + [SMALL_STATE(4908)] = 156912, + [SMALL_STATE(4909)] = 156922, + [SMALL_STATE(4910)] = 156932, + [SMALL_STATE(4911)] = 156942, + [SMALL_STATE(4912)] = 156952, + [SMALL_STATE(4913)] = 156966, + [SMALL_STATE(4914)] = 156976, + [SMALL_STATE(4915)] = 156986, + [SMALL_STATE(4916)] = 156996, + [SMALL_STATE(4917)] = 157006, + [SMALL_STATE(4918)] = 157016, + [SMALL_STATE(4919)] = 157026, + [SMALL_STATE(4920)] = 157040, + [SMALL_STATE(4921)] = 157050, + [SMALL_STATE(4922)] = 157064, + [SMALL_STATE(4923)] = 157074, + [SMALL_STATE(4924)] = 157088, + [SMALL_STATE(4925)] = 157102, + [SMALL_STATE(4926)] = 157114, + [SMALL_STATE(4927)] = 157124, + [SMALL_STATE(4928)] = 157134, + [SMALL_STATE(4929)] = 157144, + [SMALL_STATE(4930)] = 157154, + [SMALL_STATE(4931)] = 157164, + [SMALL_STATE(4932)] = 157174, + [SMALL_STATE(4933)] = 157184, + [SMALL_STATE(4934)] = 157194, + [SMALL_STATE(4935)] = 157204, + [SMALL_STATE(4936)] = 157216, + [SMALL_STATE(4937)] = 157226, + [SMALL_STATE(4938)] = 157236, + [SMALL_STATE(4939)] = 157246, + [SMALL_STATE(4940)] = 157256, + [SMALL_STATE(4941)] = 157266, + [SMALL_STATE(4942)] = 157276, + [SMALL_STATE(4943)] = 157286, + [SMALL_STATE(4944)] = 157300, + [SMALL_STATE(4945)] = 157314, + [SMALL_STATE(4946)] = 157324, + [SMALL_STATE(4947)] = 157334, + [SMALL_STATE(4948)] = 157344, + [SMALL_STATE(4949)] = 157354, + [SMALL_STATE(4950)] = 157364, + [SMALL_STATE(4951)] = 157374, + [SMALL_STATE(4952)] = 157384, + [SMALL_STATE(4953)] = 157394, + [SMALL_STATE(4954)] = 157404, + [SMALL_STATE(4955)] = 157414, + [SMALL_STATE(4956)] = 157424, + [SMALL_STATE(4957)] = 157434, + [SMALL_STATE(4958)] = 157444, + [SMALL_STATE(4959)] = 157458, + [SMALL_STATE(4960)] = 157468, + [SMALL_STATE(4961)] = 157478, + [SMALL_STATE(4962)] = 157488, + [SMALL_STATE(4963)] = 157498, + [SMALL_STATE(4964)] = 157508, + [SMALL_STATE(4965)] = 157518, + [SMALL_STATE(4966)] = 157528, + [SMALL_STATE(4967)] = 157538, + [SMALL_STATE(4968)] = 157548, + [SMALL_STATE(4969)] = 157558, + [SMALL_STATE(4970)] = 157568, + [SMALL_STATE(4971)] = 157578, + [SMALL_STATE(4972)] = 157588, + [SMALL_STATE(4973)] = 157598, + [SMALL_STATE(4974)] = 157608, + [SMALL_STATE(4975)] = 157618, + [SMALL_STATE(4976)] = 157628, + [SMALL_STATE(4977)] = 157638, + [SMALL_STATE(4978)] = 157648, + [SMALL_STATE(4979)] = 157658, + [SMALL_STATE(4980)] = 157668, + [SMALL_STATE(4981)] = 157678, + [SMALL_STATE(4982)] = 157688, + [SMALL_STATE(4983)] = 157698, + [SMALL_STATE(4984)] = 157708, + [SMALL_STATE(4985)] = 157718, + [SMALL_STATE(4986)] = 157728, + [SMALL_STATE(4987)] = 157738, + [SMALL_STATE(4988)] = 157748, + [SMALL_STATE(4989)] = 157758, + [SMALL_STATE(4990)] = 157768, + [SMALL_STATE(4991)] = 157778, + [SMALL_STATE(4992)] = 157788, + [SMALL_STATE(4993)] = 157798, + [SMALL_STATE(4994)] = 157808, + [SMALL_STATE(4995)] = 157818, + [SMALL_STATE(4996)] = 157828, + [SMALL_STATE(4997)] = 157838, + [SMALL_STATE(4998)] = 157848, + [SMALL_STATE(4999)] = 157858, + [SMALL_STATE(5000)] = 157872, + [SMALL_STATE(5001)] = 157882, + [SMALL_STATE(5002)] = 157892, + [SMALL_STATE(5003)] = 157902, + [SMALL_STATE(5004)] = 157912, + [SMALL_STATE(5005)] = 157922, + [SMALL_STATE(5006)] = 157932, + [SMALL_STATE(5007)] = 157942, + [SMALL_STATE(5008)] = 157952, + [SMALL_STATE(5009)] = 157962, + [SMALL_STATE(5010)] = 157972, + [SMALL_STATE(5011)] = 157982, + [SMALL_STATE(5012)] = 157992, + [SMALL_STATE(5013)] = 158002, + [SMALL_STATE(5014)] = 158012, + [SMALL_STATE(5015)] = 158022, + [SMALL_STATE(5016)] = 158032, + [SMALL_STATE(5017)] = 158042, + [SMALL_STATE(5018)] = 158052, + [SMALL_STATE(5019)] = 158062, + [SMALL_STATE(5020)] = 158072, + [SMALL_STATE(5021)] = 158082, + [SMALL_STATE(5022)] = 158092, + [SMALL_STATE(5023)] = 158104, + [SMALL_STATE(5024)] = 158118, + [SMALL_STATE(5025)] = 158130, + [SMALL_STATE(5026)] = 158140, + [SMALL_STATE(5027)] = 158150, + [SMALL_STATE(5028)] = 158162, + [SMALL_STATE(5029)] = 158172, + [SMALL_STATE(5030)] = 158186, + [SMALL_STATE(5031)] = 158196, + [SMALL_STATE(5032)] = 158206, + [SMALL_STATE(5033)] = 158216, + [SMALL_STATE(5034)] = 158226, + [SMALL_STATE(5035)] = 158236, + [SMALL_STATE(5036)] = 158246, + [SMALL_STATE(5037)] = 158256, + [SMALL_STATE(5038)] = 158266, + [SMALL_STATE(5039)] = 158276, + [SMALL_STATE(5040)] = 158286, + [SMALL_STATE(5041)] = 158296, + [SMALL_STATE(5042)] = 158306, + [SMALL_STATE(5043)] = 158316, + [SMALL_STATE(5044)] = 158326, + [SMALL_STATE(5045)] = 158336, + [SMALL_STATE(5046)] = 158346, + [SMALL_STATE(5047)] = 158356, + [SMALL_STATE(5048)] = 158368, + [SMALL_STATE(5049)] = 158378, + [SMALL_STATE(5050)] = 158388, + [SMALL_STATE(5051)] = 158398, + [SMALL_STATE(5052)] = 158408, + [SMALL_STATE(5053)] = 158418, + [SMALL_STATE(5054)] = 158428, + [SMALL_STATE(5055)] = 158438, + [SMALL_STATE(5056)] = 158450, + [SMALL_STATE(5057)] = 158460, + [SMALL_STATE(5058)] = 158470, + [SMALL_STATE(5059)] = 158480, + [SMALL_STATE(5060)] = 158490, + [SMALL_STATE(5061)] = 158504, + [SMALL_STATE(5062)] = 158518, + [SMALL_STATE(5063)] = 158528, + [SMALL_STATE(5064)] = 158538, + [SMALL_STATE(5065)] = 158548, + [SMALL_STATE(5066)] = 158558, + [SMALL_STATE(5067)] = 158572, + [SMALL_STATE(5068)] = 158582, + [SMALL_STATE(5069)] = 158592, + [SMALL_STATE(5070)] = 158604, + [SMALL_STATE(5071)] = 158614, + [SMALL_STATE(5072)] = 158626, + [SMALL_STATE(5073)] = 158640, + [SMALL_STATE(5074)] = 158650, + [SMALL_STATE(5075)] = 158660, + [SMALL_STATE(5076)] = 158670, + [SMALL_STATE(5077)] = 158680, + [SMALL_STATE(5078)] = 158694, + [SMALL_STATE(5079)] = 158704, + [SMALL_STATE(5080)] = 158714, + [SMALL_STATE(5081)] = 158724, + [SMALL_STATE(5082)] = 158734, + [SMALL_STATE(5083)] = 158744, + [SMALL_STATE(5084)] = 158756, + [SMALL_STATE(5085)] = 158766, + [SMALL_STATE(5086)] = 158776, + [SMALL_STATE(5087)] = 158786, + [SMALL_STATE(5088)] = 158796, + [SMALL_STATE(5089)] = 158810, + [SMALL_STATE(5090)] = 158824, + [SMALL_STATE(5091)] = 158834, + [SMALL_STATE(5092)] = 158844, + [SMALL_STATE(5093)] = 158854, + [SMALL_STATE(5094)] = 158868, + [SMALL_STATE(5095)] = 158882, + [SMALL_STATE(5096)] = 158896, + [SMALL_STATE(5097)] = 158906, + [SMALL_STATE(5098)] = 158916, + [SMALL_STATE(5099)] = 158926, + [SMALL_STATE(5100)] = 158940, + [SMALL_STATE(5101)] = 158954, + [SMALL_STATE(5102)] = 158968, + [SMALL_STATE(5103)] = 158978, + [SMALL_STATE(5104)] = 158990, + [SMALL_STATE(5105)] = 159004, + [SMALL_STATE(5106)] = 159014, + [SMALL_STATE(5107)] = 159028, + [SMALL_STATE(5108)] = 159038, + [SMALL_STATE(5109)] = 159048, + [SMALL_STATE(5110)] = 159062, + [SMALL_STATE(5111)] = 159072, + [SMALL_STATE(5112)] = 159086, + [SMALL_STATE(5113)] = 159100, + [SMALL_STATE(5114)] = 159110, + [SMALL_STATE(5115)] = 159120, + [SMALL_STATE(5116)] = 159134, + [SMALL_STATE(5117)] = 159148, + [SMALL_STATE(5118)] = 159158, + [SMALL_STATE(5119)] = 159168, + [SMALL_STATE(5120)] = 159182, + [SMALL_STATE(5121)] = 159192, + [SMALL_STATE(5122)] = 159202, + [SMALL_STATE(5123)] = 159212, + [SMALL_STATE(5124)] = 159222, + [SMALL_STATE(5125)] = 159234, + [SMALL_STATE(5126)] = 159244, + [SMALL_STATE(5127)] = 159254, + [SMALL_STATE(5128)] = 159264, + [SMALL_STATE(5129)] = 159274, + [SMALL_STATE(5130)] = 159288, + [SMALL_STATE(5131)] = 159298, + [SMALL_STATE(5132)] = 159312, + [SMALL_STATE(5133)] = 159326, + [SMALL_STATE(5134)] = 159340, + [SMALL_STATE(5135)] = 159354, + [SMALL_STATE(5136)] = 159364, + [SMALL_STATE(5137)] = 159378, + [SMALL_STATE(5138)] = 159392, + [SMALL_STATE(5139)] = 159402, + [SMALL_STATE(5140)] = 159412, + [SMALL_STATE(5141)] = 159424, + [SMALL_STATE(5142)] = 159438, + [SMALL_STATE(5143)] = 159448, + [SMALL_STATE(5144)] = 159460, + [SMALL_STATE(5145)] = 159470, + [SMALL_STATE(5146)] = 159480, + [SMALL_STATE(5147)] = 159490, + [SMALL_STATE(5148)] = 159500, + [SMALL_STATE(5149)] = 159510, + [SMALL_STATE(5150)] = 159522, + [SMALL_STATE(5151)] = 159532, + [SMALL_STATE(5152)] = 159542, + [SMALL_STATE(5153)] = 159552, + [SMALL_STATE(5154)] = 159566, + [SMALL_STATE(5155)] = 159576, + [SMALL_STATE(5156)] = 159586, + [SMALL_STATE(5157)] = 159596, + [SMALL_STATE(5158)] = 159606, + [SMALL_STATE(5159)] = 159616, + [SMALL_STATE(5160)] = 159626, + [SMALL_STATE(5161)] = 159636, + [SMALL_STATE(5162)] = 159650, + [SMALL_STATE(5163)] = 159664, + [SMALL_STATE(5164)] = 159674, + [SMALL_STATE(5165)] = 159684, + [SMALL_STATE(5166)] = 159694, + [SMALL_STATE(5167)] = 159708, + [SMALL_STATE(5168)] = 159722, + [SMALL_STATE(5169)] = 159736, + [SMALL_STATE(5170)] = 159746, + [SMALL_STATE(5171)] = 159756, + [SMALL_STATE(5172)] = 159766, + [SMALL_STATE(5173)] = 159776, + [SMALL_STATE(5174)] = 159786, + [SMALL_STATE(5175)] = 159800, + [SMALL_STATE(5176)] = 159814, + [SMALL_STATE(5177)] = 159824, + [SMALL_STATE(5178)] = 159838, + [SMALL_STATE(5179)] = 159852, + [SMALL_STATE(5180)] = 159866, + [SMALL_STATE(5181)] = 159880, + [SMALL_STATE(5182)] = 159890, + [SMALL_STATE(5183)] = 159900, + [SMALL_STATE(5184)] = 159912, + [SMALL_STATE(5185)] = 159922, + [SMALL_STATE(5186)] = 159932, + [SMALL_STATE(5187)] = 159942, + [SMALL_STATE(5188)] = 159952, + [SMALL_STATE(5189)] = 159966, + [SMALL_STATE(5190)] = 159976, + [SMALL_STATE(5191)] = 159986, + [SMALL_STATE(5192)] = 160000, + [SMALL_STATE(5193)] = 160014, + [SMALL_STATE(5194)] = 160024, + [SMALL_STATE(5195)] = 160038, + [SMALL_STATE(5196)] = 160048, + [SMALL_STATE(5197)] = 160058, + [SMALL_STATE(5198)] = 160072, + [SMALL_STATE(5199)] = 160082, + [SMALL_STATE(5200)] = 160092, + [SMALL_STATE(5201)] = 160102, + [SMALL_STATE(5202)] = 160116, + [SMALL_STATE(5203)] = 160126, + [SMALL_STATE(5204)] = 160136, + [SMALL_STATE(5205)] = 160146, + [SMALL_STATE(5206)] = 160156, + [SMALL_STATE(5207)] = 160166, + [SMALL_STATE(5208)] = 160180, + [SMALL_STATE(5209)] = 160190, + [SMALL_STATE(5210)] = 160204, + [SMALL_STATE(5211)] = 160214, + [SMALL_STATE(5212)] = 160228, + [SMALL_STATE(5213)] = 160238, + [SMALL_STATE(5214)] = 160248, + [SMALL_STATE(5215)] = 160258, + [SMALL_STATE(5216)] = 160268, + [SMALL_STATE(5217)] = 160278, + [SMALL_STATE(5218)] = 160292, + [SMALL_STATE(5219)] = 160302, + [SMALL_STATE(5220)] = 160312, + [SMALL_STATE(5221)] = 160322, + [SMALL_STATE(5222)] = 160333, + [SMALL_STATE(5223)] = 160344, + [SMALL_STATE(5224)] = 160355, + [SMALL_STATE(5225)] = 160366, + [SMALL_STATE(5226)] = 160375, + [SMALL_STATE(5227)] = 160384, + [SMALL_STATE(5228)] = 160393, + [SMALL_STATE(5229)] = 160404, + [SMALL_STATE(5230)] = 160413, + [SMALL_STATE(5231)] = 160424, + [SMALL_STATE(5232)] = 160435, + [SMALL_STATE(5233)] = 160444, + [SMALL_STATE(5234)] = 160455, + [SMALL_STATE(5235)] = 160464, + [SMALL_STATE(5236)] = 160475, + [SMALL_STATE(5237)] = 160484, + [SMALL_STATE(5238)] = 160495, + [SMALL_STATE(5239)] = 160506, + [SMALL_STATE(5240)] = 160517, + [SMALL_STATE(5241)] = 160528, + [SMALL_STATE(5242)] = 160537, + [SMALL_STATE(5243)] = 160548, + [SMALL_STATE(5244)] = 160559, + [SMALL_STATE(5245)] = 160570, + [SMALL_STATE(5246)] = 160579, + [SMALL_STATE(5247)] = 160588, + [SMALL_STATE(5248)] = 160599, + [SMALL_STATE(5249)] = 160610, + [SMALL_STATE(5250)] = 160621, + [SMALL_STATE(5251)] = 160632, + [SMALL_STATE(5252)] = 160643, + [SMALL_STATE(5253)] = 160654, + [SMALL_STATE(5254)] = 160665, + [SMALL_STATE(5255)] = 160676, + [SMALL_STATE(5256)] = 160687, + [SMALL_STATE(5257)] = 160698, + [SMALL_STATE(5258)] = 160709, + [SMALL_STATE(5259)] = 160720, + [SMALL_STATE(5260)] = 160731, + [SMALL_STATE(5261)] = 160742, + [SMALL_STATE(5262)] = 160751, + [SMALL_STATE(5263)] = 160762, + [SMALL_STATE(5264)] = 160773, + [SMALL_STATE(5265)] = 160784, + [SMALL_STATE(5266)] = 160795, + [SMALL_STATE(5267)] = 160806, + [SMALL_STATE(5268)] = 160817, + [SMALL_STATE(5269)] = 160828, + [SMALL_STATE(5270)] = 160839, + [SMALL_STATE(5271)] = 160850, + [SMALL_STATE(5272)] = 160859, + [SMALL_STATE(5273)] = 160868, + [SMALL_STATE(5274)] = 160879, + [SMALL_STATE(5275)] = 160888, + [SMALL_STATE(5276)] = 160899, + [SMALL_STATE(5277)] = 160910, + [SMALL_STATE(5278)] = 160921, + [SMALL_STATE(5279)] = 160932, + [SMALL_STATE(5280)] = 160943, + [SMALL_STATE(5281)] = 160954, + [SMALL_STATE(5282)] = 160965, + [SMALL_STATE(5283)] = 160976, + [SMALL_STATE(5284)] = 160987, + [SMALL_STATE(5285)] = 160998, + [SMALL_STATE(5286)] = 161009, + [SMALL_STATE(5287)] = 161020, + [SMALL_STATE(5288)] = 161031, + [SMALL_STATE(5289)] = 161042, + [SMALL_STATE(5290)] = 161053, + [SMALL_STATE(5291)] = 161064, + [SMALL_STATE(5292)] = 161073, + [SMALL_STATE(5293)] = 161082, + [SMALL_STATE(5294)] = 161091, + [SMALL_STATE(5295)] = 161102, + [SMALL_STATE(5296)] = 161111, + [SMALL_STATE(5297)] = 161120, + [SMALL_STATE(5298)] = 161131, + [SMALL_STATE(5299)] = 161142, + [SMALL_STATE(5300)] = 161153, + [SMALL_STATE(5301)] = 161164, + [SMALL_STATE(5302)] = 161173, + [SMALL_STATE(5303)] = 161182, + [SMALL_STATE(5304)] = 161193, + [SMALL_STATE(5305)] = 161204, + [SMALL_STATE(5306)] = 161215, + [SMALL_STATE(5307)] = 161226, + [SMALL_STATE(5308)] = 161237, + [SMALL_STATE(5309)] = 161248, + [SMALL_STATE(5310)] = 161259, + [SMALL_STATE(5311)] = 161270, + [SMALL_STATE(5312)] = 161281, + [SMALL_STATE(5313)] = 161292, + [SMALL_STATE(5314)] = 161303, + [SMALL_STATE(5315)] = 161314, + [SMALL_STATE(5316)] = 161325, + [SMALL_STATE(5317)] = 161336, + [SMALL_STATE(5318)] = 161347, + [SMALL_STATE(5319)] = 161356, + [SMALL_STATE(5320)] = 161365, + [SMALL_STATE(5321)] = 161376, + [SMALL_STATE(5322)] = 161387, + [SMALL_STATE(5323)] = 161398, + [SMALL_STATE(5324)] = 161409, + [SMALL_STATE(5325)] = 161420, + [SMALL_STATE(5326)] = 161431, + [SMALL_STATE(5327)] = 161442, + [SMALL_STATE(5328)] = 161453, + [SMALL_STATE(5329)] = 161464, + [SMALL_STATE(5330)] = 161475, + [SMALL_STATE(5331)] = 161486, + [SMALL_STATE(5332)] = 161495, + [SMALL_STATE(5333)] = 161506, + [SMALL_STATE(5334)] = 161517, + [SMALL_STATE(5335)] = 161528, + [SMALL_STATE(5336)] = 161539, + [SMALL_STATE(5337)] = 161550, + [SMALL_STATE(5338)] = 161561, + [SMALL_STATE(5339)] = 161572, + [SMALL_STATE(5340)] = 161583, + [SMALL_STATE(5341)] = 161594, + [SMALL_STATE(5342)] = 161603, + [SMALL_STATE(5343)] = 161614, + [SMALL_STATE(5344)] = 161625, + [SMALL_STATE(5345)] = 161636, + [SMALL_STATE(5346)] = 161647, + [SMALL_STATE(5347)] = 161658, + [SMALL_STATE(5348)] = 161669, + [SMALL_STATE(5349)] = 161680, + [SMALL_STATE(5350)] = 161691, + [SMALL_STATE(5351)] = 161700, + [SMALL_STATE(5352)] = 161709, + [SMALL_STATE(5353)] = 161718, + [SMALL_STATE(5354)] = 161729, + [SMALL_STATE(5355)] = 161740, + [SMALL_STATE(5356)] = 161751, + [SMALL_STATE(5357)] = 161762, + [SMALL_STATE(5358)] = 161773, + [SMALL_STATE(5359)] = 161782, + [SMALL_STATE(5360)] = 161793, + [SMALL_STATE(5361)] = 161802, + [SMALL_STATE(5362)] = 161813, + [SMALL_STATE(5363)] = 161824, + [SMALL_STATE(5364)] = 161835, + [SMALL_STATE(5365)] = 161846, + [SMALL_STATE(5366)] = 161855, + [SMALL_STATE(5367)] = 161866, + [SMALL_STATE(5368)] = 161877, + [SMALL_STATE(5369)] = 161886, + [SMALL_STATE(5370)] = 161897, + [SMALL_STATE(5371)] = 161908, + [SMALL_STATE(5372)] = 161919, + [SMALL_STATE(5373)] = 161930, + [SMALL_STATE(5374)] = 161941, + [SMALL_STATE(5375)] = 161950, + [SMALL_STATE(5376)] = 161961, + [SMALL_STATE(5377)] = 161972, + [SMALL_STATE(5378)] = 161983, + [SMALL_STATE(5379)] = 161992, + [SMALL_STATE(5380)] = 162003, + [SMALL_STATE(5381)] = 162014, + [SMALL_STATE(5382)] = 162025, + [SMALL_STATE(5383)] = 162036, + [SMALL_STATE(5384)] = 162047, + [SMALL_STATE(5385)] = 162056, + [SMALL_STATE(5386)] = 162067, + [SMALL_STATE(5387)] = 162076, + [SMALL_STATE(5388)] = 162087, + [SMALL_STATE(5389)] = 162098, + [SMALL_STATE(5390)] = 162107, + [SMALL_STATE(5391)] = 162118, + [SMALL_STATE(5392)] = 162127, + [SMALL_STATE(5393)] = 162138, + [SMALL_STATE(5394)] = 162149, + [SMALL_STATE(5395)] = 162160, + [SMALL_STATE(5396)] = 162171, + [SMALL_STATE(5397)] = 162182, + [SMALL_STATE(5398)] = 162193, + [SMALL_STATE(5399)] = 162202, + [SMALL_STATE(5400)] = 162213, + [SMALL_STATE(5401)] = 162224, + [SMALL_STATE(5402)] = 162235, + [SMALL_STATE(5403)] = 162246, + [SMALL_STATE(5404)] = 162257, + [SMALL_STATE(5405)] = 162268, + [SMALL_STATE(5406)] = 162279, + [SMALL_STATE(5407)] = 162288, + [SMALL_STATE(5408)] = 162297, + [SMALL_STATE(5409)] = 162308, + [SMALL_STATE(5410)] = 162319, + [SMALL_STATE(5411)] = 162330, + [SMALL_STATE(5412)] = 162339, + [SMALL_STATE(5413)] = 162350, + [SMALL_STATE(5414)] = 162359, + [SMALL_STATE(5415)] = 162368, + [SMALL_STATE(5416)] = 162379, + [SMALL_STATE(5417)] = 162388, + [SMALL_STATE(5418)] = 162399, + [SMALL_STATE(5419)] = 162410, + [SMALL_STATE(5420)] = 162421, + [SMALL_STATE(5421)] = 162432, + [SMALL_STATE(5422)] = 162443, + [SMALL_STATE(5423)] = 162454, + [SMALL_STATE(5424)] = 162465, + [SMALL_STATE(5425)] = 162476, + [SMALL_STATE(5426)] = 162487, + [SMALL_STATE(5427)] = 162498, + [SMALL_STATE(5428)] = 162509, + [SMALL_STATE(5429)] = 162518, + [SMALL_STATE(5430)] = 162529, + [SMALL_STATE(5431)] = 162540, + [SMALL_STATE(5432)] = 162551, + [SMALL_STATE(5433)] = 162562, + [SMALL_STATE(5434)] = 162573, + [SMALL_STATE(5435)] = 162584, + [SMALL_STATE(5436)] = 162595, + [SMALL_STATE(5437)] = 162606, + [SMALL_STATE(5438)] = 162617, + [SMALL_STATE(5439)] = 162628, + [SMALL_STATE(5440)] = 162639, + [SMALL_STATE(5441)] = 162650, + [SMALL_STATE(5442)] = 162659, + [SMALL_STATE(5443)] = 162670, + [SMALL_STATE(5444)] = 162681, + [SMALL_STATE(5445)] = 162692, + [SMALL_STATE(5446)] = 162703, + [SMALL_STATE(5447)] = 162714, + [SMALL_STATE(5448)] = 162725, + [SMALL_STATE(5449)] = 162736, + [SMALL_STATE(5450)] = 162747, + [SMALL_STATE(5451)] = 162758, + [SMALL_STATE(5452)] = 162769, + [SMALL_STATE(5453)] = 162780, + [SMALL_STATE(5454)] = 162791, + [SMALL_STATE(5455)] = 162802, + [SMALL_STATE(5456)] = 162813, + [SMALL_STATE(5457)] = 162822, + [SMALL_STATE(5458)] = 162831, + [SMALL_STATE(5459)] = 162840, + [SMALL_STATE(5460)] = 162849, + [SMALL_STATE(5461)] = 162858, + [SMALL_STATE(5462)] = 162869, + [SMALL_STATE(5463)] = 162880, + [SMALL_STATE(5464)] = 162891, + [SMALL_STATE(5465)] = 162902, + [SMALL_STATE(5466)] = 162913, + [SMALL_STATE(5467)] = 162924, + [SMALL_STATE(5468)] = 162935, + [SMALL_STATE(5469)] = 162946, + [SMALL_STATE(5470)] = 162955, + [SMALL_STATE(5471)] = 162966, + [SMALL_STATE(5472)] = 162977, + [SMALL_STATE(5473)] = 162988, + [SMALL_STATE(5474)] = 162999, + [SMALL_STATE(5475)] = 163010, + [SMALL_STATE(5476)] = 163019, + [SMALL_STATE(5477)] = 163030, + [SMALL_STATE(5478)] = 163041, + [SMALL_STATE(5479)] = 163052, + [SMALL_STATE(5480)] = 163063, + [SMALL_STATE(5481)] = 163074, + [SMALL_STATE(5482)] = 163085, + [SMALL_STATE(5483)] = 163096, + [SMALL_STATE(5484)] = 163107, + [SMALL_STATE(5485)] = 163116, + [SMALL_STATE(5486)] = 163125, + [SMALL_STATE(5487)] = 163134, + [SMALL_STATE(5488)] = 163145, + [SMALL_STATE(5489)] = 163156, + [SMALL_STATE(5490)] = 163165, + [SMALL_STATE(5491)] = 163176, + [SMALL_STATE(5492)] = 163185, + [SMALL_STATE(5493)] = 163194, + [SMALL_STATE(5494)] = 163205, + [SMALL_STATE(5495)] = 163216, + [SMALL_STATE(5496)] = 163227, + [SMALL_STATE(5497)] = 163236, + [SMALL_STATE(5498)] = 163245, + [SMALL_STATE(5499)] = 163256, + [SMALL_STATE(5500)] = 163265, + [SMALL_STATE(5501)] = 163276, + [SMALL_STATE(5502)] = 163287, + [SMALL_STATE(5503)] = 163298, + [SMALL_STATE(5504)] = 163309, + [SMALL_STATE(5505)] = 163320, + [SMALL_STATE(5506)] = 163329, + [SMALL_STATE(5507)] = 163340, + [SMALL_STATE(5508)] = 163351, + [SMALL_STATE(5509)] = 163360, + [SMALL_STATE(5510)] = 163371, + [SMALL_STATE(5511)] = 163382, + [SMALL_STATE(5512)] = 163393, + [SMALL_STATE(5513)] = 163404, + [SMALL_STATE(5514)] = 163415, + [SMALL_STATE(5515)] = 163424, + [SMALL_STATE(5516)] = 163435, + [SMALL_STATE(5517)] = 163446, + [SMALL_STATE(5518)] = 163457, + [SMALL_STATE(5519)] = 163468, + [SMALL_STATE(5520)] = 163479, + [SMALL_STATE(5521)] = 163488, + [SMALL_STATE(5522)] = 163499, + [SMALL_STATE(5523)] = 163510, + [SMALL_STATE(5524)] = 163521, + [SMALL_STATE(5525)] = 163532, + [SMALL_STATE(5526)] = 163543, + [SMALL_STATE(5527)] = 163554, + [SMALL_STATE(5528)] = 163565, + [SMALL_STATE(5529)] = 163576, + [SMALL_STATE(5530)] = 163587, + [SMALL_STATE(5531)] = 163598, + [SMALL_STATE(5532)] = 163609, + [SMALL_STATE(5533)] = 163620, + [SMALL_STATE(5534)] = 163629, + [SMALL_STATE(5535)] = 163640, + [SMALL_STATE(5536)] = 163649, + [SMALL_STATE(5537)] = 163660, + [SMALL_STATE(5538)] = 163669, + [SMALL_STATE(5539)] = 163680, + [SMALL_STATE(5540)] = 163691, + [SMALL_STATE(5541)] = 163702, + [SMALL_STATE(5542)] = 163711, + [SMALL_STATE(5543)] = 163722, + [SMALL_STATE(5544)] = 163733, + [SMALL_STATE(5545)] = 163744, + [SMALL_STATE(5546)] = 163755, + [SMALL_STATE(5547)] = 163766, + [SMALL_STATE(5548)] = 163775, + [SMALL_STATE(5549)] = 163786, + [SMALL_STATE(5550)] = 163797, + [SMALL_STATE(5551)] = 163808, + [SMALL_STATE(5552)] = 163819, + [SMALL_STATE(5553)] = 163830, + [SMALL_STATE(5554)] = 163839, + [SMALL_STATE(5555)] = 163850, + [SMALL_STATE(5556)] = 163861, + [SMALL_STATE(5557)] = 163872, + [SMALL_STATE(5558)] = 163883, + [SMALL_STATE(5559)] = 163894, + [SMALL_STATE(5560)] = 163905, + [SMALL_STATE(5561)] = 163916, + [SMALL_STATE(5562)] = 163927, + [SMALL_STATE(5563)] = 163936, + [SMALL_STATE(5564)] = 163947, + [SMALL_STATE(5565)] = 163958, + [SMALL_STATE(5566)] = 163967, + [SMALL_STATE(5567)] = 163978, + [SMALL_STATE(5568)] = 163989, + [SMALL_STATE(5569)] = 164000, + [SMALL_STATE(5570)] = 164011, + [SMALL_STATE(5571)] = 164022, + [SMALL_STATE(5572)] = 164033, + [SMALL_STATE(5573)] = 164044, + [SMALL_STATE(5574)] = 164055, + [SMALL_STATE(5575)] = 164063, + [SMALL_STATE(5576)] = 164071, + [SMALL_STATE(5577)] = 164079, + [SMALL_STATE(5578)] = 164087, + [SMALL_STATE(5579)] = 164095, + [SMALL_STATE(5580)] = 164103, + [SMALL_STATE(5581)] = 164111, + [SMALL_STATE(5582)] = 164119, + [SMALL_STATE(5583)] = 164127, + [SMALL_STATE(5584)] = 164135, + [SMALL_STATE(5585)] = 164143, + [SMALL_STATE(5586)] = 164151, + [SMALL_STATE(5587)] = 164159, + [SMALL_STATE(5588)] = 164167, + [SMALL_STATE(5589)] = 164175, + [SMALL_STATE(5590)] = 164183, + [SMALL_STATE(5591)] = 164191, + [SMALL_STATE(5592)] = 164199, + [SMALL_STATE(5593)] = 164207, + [SMALL_STATE(5594)] = 164215, + [SMALL_STATE(5595)] = 164223, + [SMALL_STATE(5596)] = 164231, + [SMALL_STATE(5597)] = 164239, + [SMALL_STATE(5598)] = 164247, + [SMALL_STATE(5599)] = 164255, + [SMALL_STATE(5600)] = 164263, + [SMALL_STATE(5601)] = 164271, + [SMALL_STATE(5602)] = 164279, + [SMALL_STATE(5603)] = 164287, + [SMALL_STATE(5604)] = 164295, + [SMALL_STATE(5605)] = 164303, + [SMALL_STATE(5606)] = 164311, + [SMALL_STATE(5607)] = 164319, + [SMALL_STATE(5608)] = 164327, + [SMALL_STATE(5609)] = 164335, + [SMALL_STATE(5610)] = 164343, + [SMALL_STATE(5611)] = 164351, + [SMALL_STATE(5612)] = 164359, + [SMALL_STATE(5613)] = 164367, + [SMALL_STATE(5614)] = 164375, + [SMALL_STATE(5615)] = 164383, + [SMALL_STATE(5616)] = 164391, + [SMALL_STATE(5617)] = 164399, + [SMALL_STATE(5618)] = 164407, + [SMALL_STATE(5619)] = 164415, + [SMALL_STATE(5620)] = 164423, + [SMALL_STATE(5621)] = 164431, + [SMALL_STATE(5622)] = 164439, + [SMALL_STATE(5623)] = 164447, + [SMALL_STATE(5624)] = 164455, + [SMALL_STATE(5625)] = 164463, + [SMALL_STATE(5626)] = 164471, + [SMALL_STATE(5627)] = 164479, + [SMALL_STATE(5628)] = 164489, + [SMALL_STATE(5629)] = 164497, + [SMALL_STATE(5630)] = 164505, + [SMALL_STATE(5631)] = 164513, + [SMALL_STATE(5632)] = 164521, + [SMALL_STATE(5633)] = 164529, + [SMALL_STATE(5634)] = 164537, + [SMALL_STATE(5635)] = 164545, + [SMALL_STATE(5636)] = 164553, + [SMALL_STATE(5637)] = 164561, + [SMALL_STATE(5638)] = 164569, + [SMALL_STATE(5639)] = 164577, + [SMALL_STATE(5640)] = 164585, + [SMALL_STATE(5641)] = 164593, + [SMALL_STATE(5642)] = 164601, + [SMALL_STATE(5643)] = 164609, + [SMALL_STATE(5644)] = 164617, + [SMALL_STATE(5645)] = 164625, + [SMALL_STATE(5646)] = 164633, + [SMALL_STATE(5647)] = 164641, + [SMALL_STATE(5648)] = 164649, + [SMALL_STATE(5649)] = 164657, + [SMALL_STATE(5650)] = 164665, + [SMALL_STATE(5651)] = 164673, + [SMALL_STATE(5652)] = 164681, + [SMALL_STATE(5653)] = 164689, + [SMALL_STATE(5654)] = 164697, + [SMALL_STATE(5655)] = 164705, + [SMALL_STATE(5656)] = 164713, + [SMALL_STATE(5657)] = 164721, + [SMALL_STATE(5658)] = 164729, + [SMALL_STATE(5659)] = 164737, + [SMALL_STATE(5660)] = 164745, + [SMALL_STATE(5661)] = 164753, + [SMALL_STATE(5662)] = 164761, + [SMALL_STATE(5663)] = 164769, + [SMALL_STATE(5664)] = 164777, + [SMALL_STATE(5665)] = 164785, + [SMALL_STATE(5666)] = 164793, + [SMALL_STATE(5667)] = 164801, + [SMALL_STATE(5668)] = 164809, + [SMALL_STATE(5669)] = 164817, + [SMALL_STATE(5670)] = 164825, + [SMALL_STATE(5671)] = 164833, + [SMALL_STATE(5672)] = 164841, + [SMALL_STATE(5673)] = 164849, + [SMALL_STATE(5674)] = 164857, + [SMALL_STATE(5675)] = 164865, + [SMALL_STATE(5676)] = 164873, + [SMALL_STATE(5677)] = 164881, + [SMALL_STATE(5678)] = 164889, + [SMALL_STATE(5679)] = 164897, + [SMALL_STATE(5680)] = 164905, + [SMALL_STATE(5681)] = 164913, + [SMALL_STATE(5682)] = 164921, + [SMALL_STATE(5683)] = 164929, + [SMALL_STATE(5684)] = 164937, + [SMALL_STATE(5685)] = 164945, + [SMALL_STATE(5686)] = 164953, + [SMALL_STATE(5687)] = 164961, + [SMALL_STATE(5688)] = 164969, + [SMALL_STATE(5689)] = 164977, + [SMALL_STATE(5690)] = 164985, + [SMALL_STATE(5691)] = 164993, + [SMALL_STATE(5692)] = 165001, + [SMALL_STATE(5693)] = 165009, + [SMALL_STATE(5694)] = 165017, + [SMALL_STATE(5695)] = 165025, + [SMALL_STATE(5696)] = 165033, + [SMALL_STATE(5697)] = 165041, + [SMALL_STATE(5698)] = 165049, + [SMALL_STATE(5699)] = 165057, + [SMALL_STATE(5700)] = 165065, + [SMALL_STATE(5701)] = 165073, + [SMALL_STATE(5702)] = 165081, + [SMALL_STATE(5703)] = 165089, + [SMALL_STATE(5704)] = 165097, + [SMALL_STATE(5705)] = 165105, + [SMALL_STATE(5706)] = 165113, + [SMALL_STATE(5707)] = 165121, + [SMALL_STATE(5708)] = 165129, + [SMALL_STATE(5709)] = 165137, + [SMALL_STATE(5710)] = 165145, + [SMALL_STATE(5711)] = 165153, + [SMALL_STATE(5712)] = 165161, + [SMALL_STATE(5713)] = 165169, + [SMALL_STATE(5714)] = 165177, + [SMALL_STATE(5715)] = 165185, + [SMALL_STATE(5716)] = 165193, + [SMALL_STATE(5717)] = 165201, + [SMALL_STATE(5718)] = 165209, + [SMALL_STATE(5719)] = 165217, + [SMALL_STATE(5720)] = 165225, + [SMALL_STATE(5721)] = 165233, + [SMALL_STATE(5722)] = 165241, + [SMALL_STATE(5723)] = 165249, + [SMALL_STATE(5724)] = 165257, + [SMALL_STATE(5725)] = 165265, + [SMALL_STATE(5726)] = 165273, + [SMALL_STATE(5727)] = 165281, + [SMALL_STATE(5728)] = 165289, + [SMALL_STATE(5729)] = 165297, + [SMALL_STATE(5730)] = 165307, + [SMALL_STATE(5731)] = 165315, + [SMALL_STATE(5732)] = 165323, + [SMALL_STATE(5733)] = 165331, + [SMALL_STATE(5734)] = 165339, + [SMALL_STATE(5735)] = 165347, + [SMALL_STATE(5736)] = 165355, + [SMALL_STATE(5737)] = 165363, + [SMALL_STATE(5738)] = 165371, + [SMALL_STATE(5739)] = 165379, + [SMALL_STATE(5740)] = 165387, + [SMALL_STATE(5741)] = 165395, + [SMALL_STATE(5742)] = 165403, + [SMALL_STATE(5743)] = 165411, + [SMALL_STATE(5744)] = 165419, + [SMALL_STATE(5745)] = 165427, + [SMALL_STATE(5746)] = 165435, + [SMALL_STATE(5747)] = 165443, + [SMALL_STATE(5748)] = 165451, + [SMALL_STATE(5749)] = 165459, + [SMALL_STATE(5750)] = 165467, + [SMALL_STATE(5751)] = 165477, + [SMALL_STATE(5752)] = 165485, + [SMALL_STATE(5753)] = 165493, + [SMALL_STATE(5754)] = 165501, + [SMALL_STATE(5755)] = 165509, + [SMALL_STATE(5756)] = 165517, + [SMALL_STATE(5757)] = 165525, + [SMALL_STATE(5758)] = 165533, + [SMALL_STATE(5759)] = 165541, + [SMALL_STATE(5760)] = 165549, + [SMALL_STATE(5761)] = 165557, + [SMALL_STATE(5762)] = 165565, + [SMALL_STATE(5763)] = 165573, + [SMALL_STATE(5764)] = 165581, + [SMALL_STATE(5765)] = 165589, + [SMALL_STATE(5766)] = 165597, + [SMALL_STATE(5767)] = 165605, + [SMALL_STATE(5768)] = 165613, + [SMALL_STATE(5769)] = 165621, + [SMALL_STATE(5770)] = 165629, + [SMALL_STATE(5771)] = 165637, + [SMALL_STATE(5772)] = 165645, + [SMALL_STATE(5773)] = 165653, + [SMALL_STATE(5774)] = 165661, + [SMALL_STATE(5775)] = 165669, + [SMALL_STATE(5776)] = 165677, + [SMALL_STATE(5777)] = 165685, + [SMALL_STATE(5778)] = 165693, + [SMALL_STATE(5779)] = 165701, + [SMALL_STATE(5780)] = 165709, + [SMALL_STATE(5781)] = 165717, + [SMALL_STATE(5782)] = 165725, + [SMALL_STATE(5783)] = 165733, + [SMALL_STATE(5784)] = 165741, + [SMALL_STATE(5785)] = 165749, + [SMALL_STATE(5786)] = 165757, + [SMALL_STATE(5787)] = 165765, + [SMALL_STATE(5788)] = 165773, + [SMALL_STATE(5789)] = 165781, + [SMALL_STATE(5790)] = 165789, + [SMALL_STATE(5791)] = 165797, + [SMALL_STATE(5792)] = 165805, + [SMALL_STATE(5793)] = 165813, + [SMALL_STATE(5794)] = 165821, + [SMALL_STATE(5795)] = 165829, + [SMALL_STATE(5796)] = 165837, + [SMALL_STATE(5797)] = 165845, + [SMALL_STATE(5798)] = 165853, + [SMALL_STATE(5799)] = 165861, + [SMALL_STATE(5800)] = 165871, + [SMALL_STATE(5801)] = 165879, + [SMALL_STATE(5802)] = 165887, + [SMALL_STATE(5803)] = 165895, + [SMALL_STATE(5804)] = 165903, + [SMALL_STATE(5805)] = 165911, + [SMALL_STATE(5806)] = 165919, + [SMALL_STATE(5807)] = 165927, + [SMALL_STATE(5808)] = 165935, + [SMALL_STATE(5809)] = 165943, + [SMALL_STATE(5810)] = 165951, + [SMALL_STATE(5811)] = 165959, + [SMALL_STATE(5812)] = 165967, + [SMALL_STATE(5813)] = 165975, + [SMALL_STATE(5814)] = 165983, + [SMALL_STATE(5815)] = 165991, + [SMALL_STATE(5816)] = 165999, + [SMALL_STATE(5817)] = 166007, + [SMALL_STATE(5818)] = 166015, + [SMALL_STATE(5819)] = 166023, + [SMALL_STATE(5820)] = 166031, + [SMALL_STATE(5821)] = 166039, + [SMALL_STATE(5822)] = 166047, + [SMALL_STATE(5823)] = 166055, + [SMALL_STATE(5824)] = 166063, + [SMALL_STATE(5825)] = 166071, + [SMALL_STATE(5826)] = 166079, + [SMALL_STATE(5827)] = 166087, + [SMALL_STATE(5828)] = 166095, + [SMALL_STATE(5829)] = 166103, + [SMALL_STATE(5830)] = 166111, + [SMALL_STATE(5831)] = 166119, + [SMALL_STATE(5832)] = 166127, + [SMALL_STATE(5833)] = 166135, + [SMALL_STATE(5834)] = 166143, + [SMALL_STATE(5835)] = 166151, + [SMALL_STATE(5836)] = 166159, + [SMALL_STATE(5837)] = 166167, + [SMALL_STATE(5838)] = 166175, + [SMALL_STATE(5839)] = 166183, + [SMALL_STATE(5840)] = 166191, + [SMALL_STATE(5841)] = 166199, + [SMALL_STATE(5842)] = 166207, + [SMALL_STATE(5843)] = 166215, + [SMALL_STATE(5844)] = 166223, + [SMALL_STATE(5845)] = 166231, + [SMALL_STATE(5846)] = 166239, + [SMALL_STATE(5847)] = 166247, + [SMALL_STATE(5848)] = 166255, + [SMALL_STATE(5849)] = 166263, + [SMALL_STATE(5850)] = 166271, + [SMALL_STATE(5851)] = 166279, + [SMALL_STATE(5852)] = 166287, + [SMALL_STATE(5853)] = 166295, + [SMALL_STATE(5854)] = 166303, + [SMALL_STATE(5855)] = 166311, + [SMALL_STATE(5856)] = 166319, + [SMALL_STATE(5857)] = 166327, + [SMALL_STATE(5858)] = 166335, + [SMALL_STATE(5859)] = 166343, + [SMALL_STATE(5860)] = 166351, + [SMALL_STATE(5861)] = 166359, + [SMALL_STATE(5862)] = 166367, + [SMALL_STATE(5863)] = 166375, + [SMALL_STATE(5864)] = 166383, + [SMALL_STATE(5865)] = 166391, + [SMALL_STATE(5866)] = 166399, + [SMALL_STATE(5867)] = 166409, + [SMALL_STATE(5868)] = 166417, + [SMALL_STATE(5869)] = 166425, + [SMALL_STATE(5870)] = 166433, + [SMALL_STATE(5871)] = 166441, + [SMALL_STATE(5872)] = 166449, + [SMALL_STATE(5873)] = 166457, + [SMALL_STATE(5874)] = 166465, + [SMALL_STATE(5875)] = 166475, + [SMALL_STATE(5876)] = 166483, + [SMALL_STATE(5877)] = 166491, + [SMALL_STATE(5878)] = 166499, + [SMALL_STATE(5879)] = 166507, + [SMALL_STATE(5880)] = 166515, + [SMALL_STATE(5881)] = 166523, + [SMALL_STATE(5882)] = 166531, + [SMALL_STATE(5883)] = 166539, + [SMALL_STATE(5884)] = 166547, + [SMALL_STATE(5885)] = 166555, + [SMALL_STATE(5886)] = 166563, + [SMALL_STATE(5887)] = 166571, + [SMALL_STATE(5888)] = 166579, + [SMALL_STATE(5889)] = 166587, + [SMALL_STATE(5890)] = 166595, + [SMALL_STATE(5891)] = 166603, + [SMALL_STATE(5892)] = 166611, + [SMALL_STATE(5893)] = 166619, + [SMALL_STATE(5894)] = 166627, + [SMALL_STATE(5895)] = 166635, + [SMALL_STATE(5896)] = 166643, + [SMALL_STATE(5897)] = 166651, + [SMALL_STATE(5898)] = 166659, + [SMALL_STATE(5899)] = 166667, + [SMALL_STATE(5900)] = 166675, + [SMALL_STATE(5901)] = 166683, + [SMALL_STATE(5902)] = 166691, + [SMALL_STATE(5903)] = 166699, + [SMALL_STATE(5904)] = 166707, + [SMALL_STATE(5905)] = 166715, + [SMALL_STATE(5906)] = 166723, + [SMALL_STATE(5907)] = 166731, + [SMALL_STATE(5908)] = 166739, + [SMALL_STATE(5909)] = 166747, + [SMALL_STATE(5910)] = 166755, + [SMALL_STATE(5911)] = 166763, + [SMALL_STATE(5912)] = 166771, + [SMALL_STATE(5913)] = 166779, + [SMALL_STATE(5914)] = 166787, + [SMALL_STATE(5915)] = 166797, + [SMALL_STATE(5916)] = 166805, + [SMALL_STATE(5917)] = 166813, + [SMALL_STATE(5918)] = 166821, + [SMALL_STATE(5919)] = 166829, + [SMALL_STATE(5920)] = 166837, + [SMALL_STATE(5921)] = 166845, + [SMALL_STATE(5922)] = 166853, + [SMALL_STATE(5923)] = 166861, + [SMALL_STATE(5924)] = 166869, + [SMALL_STATE(5925)] = 166877, + [SMALL_STATE(5926)] = 166885, + [SMALL_STATE(5927)] = 166893, + [SMALL_STATE(5928)] = 166901, + [SMALL_STATE(5929)] = 166909, + [SMALL_STATE(5930)] = 166917, + [SMALL_STATE(5931)] = 166925, + [SMALL_STATE(5932)] = 166933, + [SMALL_STATE(5933)] = 166941, + [SMALL_STATE(5934)] = 166949, + [SMALL_STATE(5935)] = 166957, + [SMALL_STATE(5936)] = 166965, + [SMALL_STATE(5937)] = 166973, + [SMALL_STATE(5938)] = 166981, + [SMALL_STATE(5939)] = 166989, + [SMALL_STATE(5940)] = 166997, + [SMALL_STATE(5941)] = 167005, + [SMALL_STATE(5942)] = 167013, + [SMALL_STATE(5943)] = 167021, + [SMALL_STATE(5944)] = 167029, + [SMALL_STATE(5945)] = 167037, + [SMALL_STATE(5946)] = 167045, + [SMALL_STATE(5947)] = 167053, + [SMALL_STATE(5948)] = 167061, + [SMALL_STATE(5949)] = 167069, + [SMALL_STATE(5950)] = 167077, + [SMALL_STATE(5951)] = 167085, + [SMALL_STATE(5952)] = 167093, + [SMALL_STATE(5953)] = 167101, + [SMALL_STATE(5954)] = 167109, + [SMALL_STATE(5955)] = 167117, + [SMALL_STATE(5956)] = 167125, + [SMALL_STATE(5957)] = 167133, + [SMALL_STATE(5958)] = 167141, + [SMALL_STATE(5959)] = 167151, + [SMALL_STATE(5960)] = 167159, + [SMALL_STATE(5961)] = 167167, + [SMALL_STATE(5962)] = 167175, + [SMALL_STATE(5963)] = 167183, + [SMALL_STATE(5964)] = 167191, + [SMALL_STATE(5965)] = 167199, + [SMALL_STATE(5966)] = 167207, + [SMALL_STATE(5967)] = 167215, + [SMALL_STATE(5968)] = 167223, + [SMALL_STATE(5969)] = 167231, + [SMALL_STATE(5970)] = 167239, + [SMALL_STATE(5971)] = 167247, + [SMALL_STATE(5972)] = 167257, + [SMALL_STATE(5973)] = 167265, + [SMALL_STATE(5974)] = 167273, + [SMALL_STATE(5975)] = 167281, + [SMALL_STATE(5976)] = 167289, + [SMALL_STATE(5977)] = 167299, + [SMALL_STATE(5978)] = 167307, + [SMALL_STATE(5979)] = 167315, + [SMALL_STATE(5980)] = 167323, + [SMALL_STATE(5981)] = 167331, + [SMALL_STATE(5982)] = 167339, + [SMALL_STATE(5983)] = 167347, + [SMALL_STATE(5984)] = 167355, + [SMALL_STATE(5985)] = 167363, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -280082,4832 +277998,4814 @@ static const TSParseActionEntry ts_parse_actions[] = { [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0, 0, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5386), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5320), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5491), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4957), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5448), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5424), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4665), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4667), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5502), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5377), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5509), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5512), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5188), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5420), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5270), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5055), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5103), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5486), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5789), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5918), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5869), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5897), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5767), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), - [119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(493), - [122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), - [124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 1), - [130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4579), - [134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), - [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(515), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 1), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5687), - [180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3495), - [182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(492), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5919), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5922), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5934), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(418), - [226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5729), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5757), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5870), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5911), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5823), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), + [117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(620), + [120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), + [122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4586), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), + [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(438), + [138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), + [148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), + [150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), + [152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), + [156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), + [160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 1), + [166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5958), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(407), + [188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5805), + [194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), + [200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5740), + [210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5744), + [212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5746), + [216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), + [218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(409), + [223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 1), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), - [343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1304), - [346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(667), - [349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), - [351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1277), - [354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1163), - [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7), - [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(458), - [363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2892), - [366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5386), - [369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3627), - [372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1166), - [375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3501), - [378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(458), - [381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5320), - [384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5491), - [387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4957), - [390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(204), - [393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(745), - [396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(450), - [399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5448), - [402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(86), - [405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5424), - [408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4665), - [411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4667), - [414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5502), - [417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(309), - [420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(331), - [423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(174), - [426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(216), - [429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5168), - [432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4538), - [435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4499), - [438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3272), - [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(708), - [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3652), - [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(118), - [450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(510), - [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5789), - [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3490), - [459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(534), - [462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3910), - [465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2080), - [468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5918), - [471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2080), - [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2132), - [477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4023), - [480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1293), - [483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(683), - [486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1155), - [489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5869), - [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5897), - [495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5767), - [498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2, 0, 0), - [500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2, 0, 0), - [502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, 0, 88), - [504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, 0, 88), - [506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, 0, 240), - [508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, 0, 240), - [510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, 0, 54), - [512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3, 0, 54), - [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0), - [518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), - [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), - [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5495), - [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5507), - [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4730), - [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5518), - [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), - [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5497), - [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5576), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5180), - [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5500), - [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5687), - [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5733), - [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), - [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), - [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5993), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5963), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4485), - [706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(45), - [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5987), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), - [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), - [725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(205), - [738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(217), - [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3495), - [746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3913), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), - [755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), - [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), - [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5009), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), - [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5778), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 28), - [857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 28), - [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5764), - [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_rest_pattern, 2, 0, 28), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(565), - [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(369), - [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5973), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), - [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5860), - [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3255), - [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), - [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), - [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), - [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5913), - [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5831), - [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5833), - [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), - [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), - [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), - [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), - [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), - [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [1082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), - [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), - [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), - [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), - [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), - [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5717), - [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), - [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), - [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), - [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [1186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5843), - [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), - [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), - [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), - [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), - [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), - [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5890), - [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), - [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5791), - [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), - [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [1328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5959), - [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), - [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), - [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5602), - [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), - [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), - [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), - [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), - [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), - [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), - [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), - [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), - [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), - [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), - [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), - [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), - [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), - [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), - [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), - [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), - [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), - [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5198), - [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), - [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), - [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4581), - [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5899), - [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4903), - [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), - [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), - [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), - [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4043), - [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4460), - [1554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), - [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), - [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), - [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), - [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5604), - [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5700), - [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5709), - [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), - [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), - [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), - [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), - [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), - [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4511), - [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), - [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5828), - [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), - [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), - [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), - [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4597), - [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), - [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), - [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), - [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), - [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), - [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), - [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), - [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4980), - [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), - [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), - [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4732), - [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 1, 0, 0), - [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1, 0, 0), - [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 1, 0, 5), - [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 1, 0, 5), - [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5627), - [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5773), - [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), - [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), - [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2, 0, 0), - [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2, 0, 0), - [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), - [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2, 0, 0), - [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), - [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [1714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), - [1717] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(2962), - [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), - [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), - [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4, 0, 0), - [1737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4, 0, 0), - [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 105), - [1741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 105), - [1743] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(3225), - [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 166), - [1749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 166), - [1751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 166), - [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 166), - [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 106), - [1759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 106), - [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 106), - [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 106), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 107), - [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 107), - [1771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 107), - [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 107), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 181), - [1779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 181), - [1781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, 0, 181), - [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, 0, 181), - [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, 0, 181), - [1789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, 0, 181), - [1791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 181), - [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 181), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 126), - [1801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 126), - [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 126), - [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 126), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), - [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), - [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), - [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 194), - [1833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 194), - [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 194), - [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 194), - [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 195), - [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 195), - [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 195), - [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 195), - [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3, 0, 0), - [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3, 0, 0), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 147), - [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 147), - [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 147), - [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 147), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 70), - [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 70), - [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 83), - [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 83), - [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 229), - [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 229), - [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, 0, 229), - [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, 0, 229), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 235), - [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 235), - [1891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, 0, 235), - [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, 0, 235), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, 0, 6), - [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, 0, 6), - [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), - [1903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), - [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, 0, 25), - [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, 0, 25), - [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 46), - [1915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 46), - [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 46), - [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 46), - [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), - [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), - [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), - [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), - [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), - [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), - [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), - [1971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_override_modifier, 1, 0, 0), - [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_override_modifier, 1, 0, 0), - [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), - [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), - [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), - [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), - [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), - [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessibility_modifier, 1, 0, 0), - [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessibility_modifier, 1, 0, 0), - [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), - [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), - [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), - [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), - [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3863), - [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), - [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), - [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), - [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), - [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), - [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), - [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), - [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), - [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), - [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), - [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), - [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4925), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5006), - [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5597), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5951), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), - [2255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), - [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5633), - [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), - [2264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5869), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5897), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5767), - [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4490), - [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4488), - [2281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2829), - [2284] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(207), - [2288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(420), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), - [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), - [2297] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(4903), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), - [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5712), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), - [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), - [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3920), - [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), - [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), - [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), - [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), - [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2, 0, 0), - [2335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2, 0, 0), - [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3, 0, 0), - [2339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3, 0, 0), - [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5, 0, 0), - [2343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5, 0, 0), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), - [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4, 0, 0), - [2349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4, 0, 0), - [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6, 0, 0), - [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6, 0, 0), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5636), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5953), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5727), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5954), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5313), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5604), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5700), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5709), - [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5695), - [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5694), - [2389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(207), - [2392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), - [2394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(4903), - [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5863), - [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5862), - [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5596), - [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5985), - [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), - [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), - [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5900), - [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5898), - [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 11), - [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 11), - [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5150), - [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5456), - [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5848), - [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5847), - [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5801), - [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5800), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5624), - [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5622), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5586), - [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5722), - [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3746), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5805), - [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5809), - [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5969), - [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5968), - [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 42), - [2457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 42), - [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), - [2461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), - [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 100), - [2465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 100), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 245), - [2471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 245), - [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 11), - [2475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 11), - [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, 0, 94), - [2479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, 0, 94), - [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, 0, 280), - [2483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, 0, 280), - [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 34), - [2491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 34), - [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2, 0, 0), - [2497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2, 0, 0), - [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 46), - [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 46), - [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), - [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), - [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 41), - [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 41), - [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 244), - [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 244), - [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 43), - [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 43), - [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 44), - [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 44), - [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 44), - [2525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 44), - [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), - [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5812), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5899), - [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), - [2539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), - [2541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), - [2543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), - [2545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), - [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2, 0, 0), - [2549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2, 0, 0), - [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 277), - [2553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 277), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5845), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [2559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 278), - [2561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 278), - [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 279), - [2565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 279), - [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 21), - [2569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 21), - [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [2573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), - [2575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, 0, 125), - [2577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, 0, 125), - [2579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 309), - [2581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 309), - [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, -1, 23), - [2585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, -1, 23), - [2587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 0), - [2589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 0), - [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 199), - [2593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, 0, 199), - [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, 0, 93), - [2597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, 0, 93), - [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, 0, 30), - [2601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, 0, 30), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5932), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, 0, 139), - [2609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, 0, 139), - [2611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 142), - [2613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 142), - [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3, 0, 0), - [2617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3, 0, 0), - [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 143), - [2621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 143), - [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 189), - [2625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 189), - [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 68), - [2629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 68), - [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 69), - [2633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, 0, 69), - [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 6, 0, 150), - [2637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 6, 0, 150), - [2639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 0), - [2641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 0), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5655), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 11), - [2649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 11), - [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 0), - [2653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 0), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5678), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), - [2659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 193), - [2661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 193), - [2663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 60), - [2665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 60), - [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 79), - [2669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 79), - [2671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 81), - [2673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 81), - [2675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 186), - [2677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 186), - [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 82), - [2681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 82), - [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), - [2685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), - [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 0), - [2689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 0), - [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 146), - [2693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 146), - [2695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, 0, 33), - [2697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, 0, 33), - [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 150), - [2701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 150), - [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 0), - [2705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 0), - [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, 0, 229), - [2709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, 0, 229), - [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 204), - [2713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 204), - [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), - [2717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), - [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 35), - [2721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 35), - [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, 0, 152), - [2725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, 0, 152), - [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 147), - [2729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 147), - [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 150), - [2733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 150), - [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 7, 0, 271), - [2737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 7, 0, 271), - [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 197), - [2741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 197), - [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 232), - [2745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 232), - [2747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, 0, 4), - [2749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, 0, 4), - [2751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 166), - [2753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 166), - [2755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, 0, 36), - [2757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, 0, 36), - [2759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 181), - [2761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 181), - [2763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 181), - [2765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 181), - [2767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 230), - [2769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 230), - [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 60), - [2773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 60), - [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 87), - [2777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 87), - [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 232), - [2781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 232), - [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 0), - [2785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 0), - [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 0), - [2789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 0), - [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 234), - [2793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 234), - [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5, 0, 0), - [2797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5, 0, 0), - [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 81), - [2801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 81), - [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 194), - [2805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 194), - [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [2809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 195), - [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 195), - [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), - [2817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), - [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2, 0, 0), - [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2, 0, 0), - [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, 0, 6), - [2825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, 0, 6), - [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 236), - [2829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 236), - [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 234), - [2833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 234), - [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 235), - [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 235), - [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 237), - [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 237), - [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 100), - [2849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 100), - [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 7, 0, 272), - [2853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 7, 0, 272), - [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 106), - [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 106), - [2859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 107), - [2861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 107), - [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 87), - [2865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 87), - [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 0), - [2869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 0), - [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 81), - [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 81), - [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 29), - [2877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 29), - [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 242), - [2881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 242), - [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), - [2885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), - [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, 0, 180), - [2889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, 0, 180), - [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 29), - [2893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 29), - [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 0), - [2897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 0), - [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, 0, 33), - [2901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, 0, 33), - [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 243), - [2905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 243), - [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 91), - [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 91), - [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 185), - [2913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 185), - [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 126), - [2917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 126), - [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 0), - [2921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 0), - [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 92), - [2925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 92), - [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 101), - [2929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 101), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [2951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 275), - [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 275), - [2955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 202), - [2957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 202), - [2959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, 0, 241), - [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, 0, 241), - [2963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 276), - [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 276), - [2967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 203), - [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 203), - [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), - [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), - [2975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), - [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [2983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), - [2985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [2991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4486), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), - [2999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), - [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5667), - [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), - [3017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5915), - [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [3021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5966), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [3029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), - [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4570), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5745), - [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), - [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5931), - [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), - [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5752), - [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5753), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), - [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), - [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), - [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), - [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), - [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4498), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), - [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5962), - [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), - [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5668), - [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5828), - [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), - [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), - [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), - [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), - [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4594), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), - [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), - [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), - [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5942), - [3157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), - [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5641), - [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5646), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [3167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), - [3169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), - [3171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), - [3173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), - [3175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), - [3177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), - [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5076), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), - [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), - [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), - [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), - [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), - [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), - [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [3257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5830), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), - [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), - [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), - [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5734), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), - [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [3283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), - [3287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), - [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), - [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), - [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), - [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [3309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), - [3311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), - [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), - [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), - [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), - [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), - [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), - [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), - [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [3349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), - [3351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [3355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), - [3357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), - [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), - [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), - [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [3373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), - [3381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [3387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), - [3389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), - [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [3393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), - [3396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [3398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), - [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), - [3402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [3404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), - [3406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), - [3408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), - [3410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [3412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4583), - [3414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2, 0, 0), - [3416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2, 0, 0), - [3418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5156), - [3420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 70), - [3422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 70), - [3424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 71), - [3426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 71), - [3428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 72), - [3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 72), - [3432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 73), - [3434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 73), - [3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 70), - [3438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 71), - [3440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 191), - [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 191), - [3444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 144), - [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 144), - [3448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), - [3450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [3452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), - [3454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 0), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [3458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 0), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5309), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4868), - [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 0), - [3468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), - [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [3474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [3479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), - [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), - [3484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [3486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 49), - [3489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 49), - [3492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(5662), - [3495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1073), - [3498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 49), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), - [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [3512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), - [3515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), - [3518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(423), - [3521] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym_primary_type, 1, 0, 49), - [3525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(5949), - [3528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1084), - [3531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2, 0, 0), - [3533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2, 0, 0), - [3535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5766), - [3537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [3539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [3543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 49), SHIFT(5380), - [3546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(495), - [3549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), - [3551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym_primary_type, 1, 0, 49), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [3556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), - [3558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), - [3561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [3565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, 0, 15), - [3567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, 0, 15), - [3569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 3, 0, 74), - [3571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 3, 0, 74), - [3573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), - [3575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), - [3577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT(3287), - [3580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT_REPEAT(3971), - [3583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [3587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4731), - [3589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(242), - [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [3596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 0), - [3598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 0), - [3600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, 0, 70), - [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, 0, 70), - [3604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_parenthesized_expression, 3, 0, 0), - [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_parenthesized_expression, 3, 0, 0), - [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [3612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), - [3614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), - [3616] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 49), REDUCE(sym_rest_pattern, 2, 0, 0), - [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [3624] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 28), - [3628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 71), - [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [3632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), - [3635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 70), - [3637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(376), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [3642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(567), - [3645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [3649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5041), - [3651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), - [3653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [3659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), - [3661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), - [3667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), - [3669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), - [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), - [3693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [3695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), - [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [3709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [3717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [3725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [3727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [3729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [3733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), - [3745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [3753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), - [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), - [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), - [3765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [3767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), - [3769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), - [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [3783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5609), - [3785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1483), - [3788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1799), - [3791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), - [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), - [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [3799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1732), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [3806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3237), - [3809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2774), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), + [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1311), + [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(669), + [345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), + [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1279), + [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1155), + [353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4), + [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(506), + [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2873), + [362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5377), + [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3740), + [368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1164), + [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3478), + [374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(506), + [377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5509), + [380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5512), + [383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5188), + [386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(205), + [389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(775), + [392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(435), + [395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5420), + [398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(37), + [401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5270), + [404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5055), + [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5103), + [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5486), + [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(307), + [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(349), + [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(174), + [422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(225), + [425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4529), + [428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4562), + [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3277), + [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(708), + [437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3743), + [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(113), + [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(428), + [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5729), + [449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3477), + [452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(440), + [455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3794), + [458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2272), + [461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5757), + [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2272), + [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2284), + [470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4303), + [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1315), + [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(682), + [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1162), + [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5870), + [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5911), + [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5823), + [491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, 0, 239), + [493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, 0, 239), + [495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, 0, 87), + [497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, 0, 87), + [499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2, 0, 0), + [501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2, 0, 0), + [503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, 0, 53), + [505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3, 0, 53), + [507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0), + [509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5298), + [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5300), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4743), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5307), + [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), + [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5515), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5569), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5162), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5516), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5958), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5809), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5981), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5951), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4534), + [701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(39), + [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5574), + [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), + [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), + [720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(204), + [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(222), + [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3500), + [741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3895), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), + [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), + [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), + [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), + [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), + [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), + [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5674), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 28), + [836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 28), + [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5627), + [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(402), + [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_rest_pattern, 2, 0, 28), + [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(517), + [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5914), + [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5799), + [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5901), + [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5825), + [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5826), + [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), + [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5869), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5779), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), + [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), + [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), + [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), + [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), + [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), + [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5761), + [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), + [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5590), + [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), + [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), + [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), + [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5926), + [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), + [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5878), + [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [1427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), + [1429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), + [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), + [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), + [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), + [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), + [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), + [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), + [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), + [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4985), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), + [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4512), + [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5716), + [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5178), + [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), + [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), + [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), + [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4452), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), + [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), + [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3733), + [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5592), + [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5577), + [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5578), + [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), + [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), + [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), + [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4502), + [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5821), + [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), + [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4592), + [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), + [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), + [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), + [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [1653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 1, 0, 5), + [1655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 1, 0, 5), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2, 0, 0), + [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2, 0, 0), + [1663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), + [1665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2, 0, 0), + [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5730), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5743), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 1, 0, 0), + [1685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1, 0, 0), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 146), + [1691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 146), + [1693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 146), + [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 146), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 69), + [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 69), + [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 105), + [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 105), + [1707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 105), + [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 105), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 228), + [1715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 228), + [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, 0, 228), + [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, 0, 228), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4, 0, 0), + [1725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4, 0, 0), + [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 234), + [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 234), + [1731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, 0, 234), + [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, 0, 234), + [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 104), + [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 104), + [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 106), + [1743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 106), + [1745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 106), + [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 106), + [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 45), + [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 45), + [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 45), + [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 45), + [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 125), + [1763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 125), + [1765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 125), + [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 125), + [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), + [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), + [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), + [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), + [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 82), + [1793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 82), + [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 165), + [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 165), + [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 165), + [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 165), + [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [1807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [1809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3, 0, 0), + [1811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3, 0, 0), + [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 180), + [1815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 180), + [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, 0, 180), + [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, 0, 180), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, 0, 180), + [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, 0, 180), + [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 180), + [1829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 180), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, 0, 6), + [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, 0, 6), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, 0, 25), + [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, 0, 25), + [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 193), + [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 193), + [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 193), + [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 193), + [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 194), + [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 194), + [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 194), + [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 194), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), + [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), + [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), + [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), + [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), + [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), + [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [1913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), + [1916] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(2995), + [1920] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(3233), + [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), + [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessibility_modifier, 1, 0, 0), + [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessibility_modifier, 1, 0, 0), + [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_override_modifier, 1, 0, 0), + [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_override_modifier, 1, 0, 0), + [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), + [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), + [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), + [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), + [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), + [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), + [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), + [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3840), + [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3846), + [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), + [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [2072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), + [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), + [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), + [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), + [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), + [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), + [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), + [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), + [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), + [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), + [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4958), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5093), + [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5979), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5968), + [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [2250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5963), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5772), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5447), + [2259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5870), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5911), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5823), + [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4569), + [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4493), + [2276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2771), + [2279] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(211), + [2283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(466), + [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), + [2288] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(5178), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), + [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5865), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), + [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [2304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3880), + [2316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), + [2318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), + [2320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), + [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2, 0, 0), + [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2, 0, 0), + [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5, 0, 0), + [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5, 0, 0), + [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3, 0, 0), + [2336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3, 0, 0), + [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4, 0, 0), + [2340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4, 0, 0), + [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6, 0, 0), + [2344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6, 0, 0), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5624), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5941), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5942), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), + [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), + [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5577), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5578), + [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5973), + [2378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5863), + [2380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(211), + [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), + [2385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5178), + [2388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5648), + [2390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5630), + [2392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5888), + [2394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5886), + [2396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), + [2398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5738), + [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5705), + [2402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), + [2404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5789), + [2406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5788), + [2408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5769), + [2410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5767), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [2414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5612), + [2416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5610), + [2418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5924), + [2420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5922), + [2422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), + [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 11), + [2426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 11), + [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5111), + [2430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5468), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [2434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5934), + [2436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5932), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 42), + [2442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 42), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [2446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5771), + [2448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5776), + [2450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, 0, 93), + [2456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, 0, 93), + [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 99), + [2460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 99), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 11), + [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 11), + [2468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5872), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5913), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5641), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 34), + [2494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 34), + [2496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 244), + [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 244), + [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, 0, 279), + [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, 0, 279), + [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5601), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 0), + [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 0), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 45), + [2522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 45), + [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), + [2526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), + [2528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), + [2530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), + [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [2534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [2536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [2538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), + [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, 0, 124), + [2542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, 0, 124), + [2544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 0), + [2546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 0), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, 0, 138), + [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, 0, 138), + [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 141), + [2558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 141), + [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 80), + [2562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 80), + [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 142), + [2566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 142), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2, 0, 0), + [2574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2, 0, 0), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 145), + [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 145), + [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 149), + [2586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 149), + [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 0), + [2590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 0), + [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 29), + [2594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 29), + [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 0), + [2598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 0), + [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, 0, 33), + [2602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, 0, 33), + [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, 0, 151), + [2606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, 0, 151), + [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 149), + [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 149), + [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 86), + [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 86), + [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 0), + [2618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 0), + [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5, 0, 0), + [2622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5, 0, 0), + [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 80), + [2626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 80), + [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), + [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), + [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 29), + [2638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 29), + [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 0), + [2642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 0), + [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, 0, 30), + [2646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, 0, 30), + [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 99), + [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 99), + [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [2654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, 0, 33), + [2658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, 0, 33), + [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 105), + [2662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 105), + [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 90), + [2666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 90), + [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 106), + [2670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 106), + [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 35), + [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 35), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), + [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, 0, 179), + [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, 0, 179), + [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 125), + [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 125), + [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 184), + [2688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 184), + [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 185), + [2692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 185), + [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 188), + [2696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 188), + [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 59), + [2700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 59), + [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 78), + [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 78), + [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 192), + [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 192), + [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 146), + [2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 146), + [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, 0, 36), + [2720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, 0, 36), + [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 196), + [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 196), + [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 91), + [2728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 91), + [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), + [2732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), + [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, 0, 92), + [2736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, 0, 92), + [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 6, 0, 149), + [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 6, 0, 149), + [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 80), + [2744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 80), + [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 21), + [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 21), + [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 203), + [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 203), + [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 41), + [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 41), + [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 165), + [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 165), + [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 43), + [2764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 43), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 44), + [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 44), + [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 180), + [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 180), + [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 180), + [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 180), + [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 229), + [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 229), + [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 59), + [2786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 59), + [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 231), + [2790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 231), + [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 0), + [2794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 0), + [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 233), + [2798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 233), + [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 193), + [2802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 193), + [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 44), + [2806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 44), + [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 194), + [2810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 194), + [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 235), + [2814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 235), + [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 236), + [2818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 236), + [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, -1, 23), + [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, -1, 23), + [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), + [2826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), + [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 241), + [2830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 241), + [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 242), + [2834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 242), + [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), + [2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), + [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 243), + [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 243), + [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, 0, 4), + [2846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, 0, 4), + [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2, 0, 0), + [2850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2, 0, 0), + [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, 0, 228), + [2854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, 0, 228), + [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 7, 0, 270), + [2858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 7, 0, 270), + [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 231), + [2862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 231), + [2864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 233), + [2866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 233), + [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 234), + [2870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 234), + [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 7, 0, 271), + [2874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 7, 0, 271), + [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 81), + [2878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 81), + [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 276), + [2882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 276), + [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 277), + [2886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 277), + [2888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 0), + [2890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 0), + [2892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 278), + [2894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 278), + [2896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 86), + [2898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 86), + [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 308), + [2902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 308), + [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, 0, 6), + [2906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, 0, 6), + [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 11), + [2910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 11), + [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 100), + [2914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 100), + [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 0), + [2918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 0), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3, 0, 0), + [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3, 0, 0), + [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 67), + [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 67), + [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 68), + [2936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, 0, 68), + [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 198), + [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, 0, 198), + [2942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 274), + [2944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 274), + [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5821), + [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), + [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), + [2954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, 0, 240), + [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, 0, 240), + [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), + [2960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), + [2962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), + [2964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), + [2966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [2968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), + [2974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4492), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [2980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), + [2982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5950), + [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), + [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5656), + [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [3000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), + [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4486), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5628), + [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5655), + [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), + [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5860), + [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5688), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), + [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), + [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4577), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5802), + [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), + [3078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), + [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5930), + [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), + [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5580), + [3090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5582), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [3096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 275), + [3098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 275), + [3100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 201), + [3102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 201), + [3104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 202), + [3106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 202), + [3108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [3112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [3114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), + [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [3122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4549), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5710), + [3130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5919), + [3146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), + [3148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5714), + [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5720), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), + [3158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), + [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), + [3162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), + [3164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [3182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [3184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [3186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), + [3188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5024), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5071), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), + [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), + [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), + [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), + [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [3252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5984), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), + [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [3268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5938), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), + [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), + [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3039), + [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), + [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [3298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [3300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), + [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), + [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), + [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), + [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), + [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), + [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), + [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), + [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), + [3376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), + [3386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [3388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), + [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), + [3395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), + [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), + [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4573), + [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4919), + [3411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 143), + [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 143), + [3415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 69), + [3417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 69), + [3419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 69), + [3421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2, 0, 0), + [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2, 0, 0), + [3425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 70), + [3427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 70), + [3429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 70), + [3431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 190), + [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 190), + [3435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), + [3437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [3439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), + [3441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 0), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [3445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 0), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5390), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4788), + [3453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 0), + [3455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [3457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 71), + [3459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 71), + [3461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 72), + [3463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 72), + [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), + [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [3477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [3482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), + [3485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [3487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), + [3489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 48), + [3492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 48), + [3495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(5629), + [3498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1079), + [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 48), + [3503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [3505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), + [3508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), + [3511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [3515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2, 0, 0), + [3517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2, 0, 0), + [3519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5917), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [3523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(437), + [3526] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym_primary_type, 1, 0, 48), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [3532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 48), SHIFT(5412), + [3535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(5927), + [3538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1094), + [3541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(411), + [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [3548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), + [3550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [3554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [3558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [3562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4623), + [3564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(263), + [3567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), + [3570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, 0, 69), + [3572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, 0, 69), + [3574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym_primary_type, 1, 0, 48), + [3577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 0), + [3579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 0), + [3581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), + [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), + [3585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT_REPEAT(4303), + [3588] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 48), REDUCE(sym_rest_pattern, 2, 0, 0), + [3592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 3, 0, 73), + [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 3, 0, 73), + [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [3600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, 0, 14), + [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, 0, 14), + [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [3608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT(3288), + [3611] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 28), + [3615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), + [3617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), + [3619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_parenthesized_expression, 3, 0, 0), + [3621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_parenthesized_expression, 3, 0, 0), + [3623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 69), + [3625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 70), + [3627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5061), + [3629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), + [3632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(403), + [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [3637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(519), + [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), + [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), + [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5597), + [3752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1479), + [3755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2381), + [3758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), + [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [3782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), + [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [3800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1998), + [3803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1676), + [3806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3221), + [3809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2825), [3812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), - [3814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(1446), - [3817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(350), - [3820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(4478), - [3823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(4481), - [3826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2297), - [3829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(5830), - [3832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3022), - [3835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(4103), - [3838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(1749), - [3841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(1971), - [3844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2392), - [3847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(1736), - [3850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(1988), - [3853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2462), - [3856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2728), - [3859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2789), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [3866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2359), - [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [3877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1697), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [3882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1985), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), - [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [3893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), - [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), - [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [3899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), - [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), - [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), - [3905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), - [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), - [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), - [3913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [3915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), - [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), - [3919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), - [3921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), - [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [3927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), - [3929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), - [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), - [3935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), - [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), - [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), - [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [3945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), - [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), - [3951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), - [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), - [3955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 13), - [3957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 13), - [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), - [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), - [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), - [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [3979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), - [3981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), - [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), - [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), - [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), - [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), - [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), - [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), - [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [4003] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), REDUCE(aux_sym_object_repeat1, 2, 0, 26), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 27), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), - [4009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 49), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [4015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 111), - [4017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 111), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), - [4021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 112), - [4023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 112), - [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5348), - [4027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 0), - [4029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 0), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [4035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asserts, 2, 0, 0), - [4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 2, 0, 0), - [4039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 51), - [4041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 51), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), - [4045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 50), - [4047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 50), - [4049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), - [4051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), - [4053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), - [4055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), - [4057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), - [4059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), - [4061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), - [4063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 2, 0, 117), - [4065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 2, 0, 117), - [4067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 70), - [4069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 70), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [4073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1, 0, 0), - [4075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1, 0, 0), - [4077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 52), - [4079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 52), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), - [4083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), - [4085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [4089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 53), - [4091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 53), - [4093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 113), - [4095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 113), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5350), - [4099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 114), - [4101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 114), - [4103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2, 0, 0), - [4105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2, 0, 0), - [4107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2, 0, 0), - [4109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2, 0, 0), - [4111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2, 0, 0), - [4113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2, 0, 0), - [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [4117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, 0, 8), - [4119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, 0, 8), - [4121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 0), - [4123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 0), - [4125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 2, 0, 0), - [4127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 2, 0, 0), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), - [4133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 115), - [4135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 115), - [4137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_type, 2, 0, 0), - [4139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_type, 2, 0, 0), - [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [4145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), - [4147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5726), - [4151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 2, 0, 116), - [4153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 2, 0, 116), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [4157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2, 0, 0), - [4159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2, 0, 0), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5610), - [4163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 15), - [4165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 15), - [4167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, 0, 0), - [4169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, 0, 0), - [4171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 118), - [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 118), - [4175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 119), - [4177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 119), - [4179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 15), - [4181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 15), - [4183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 169), - [4185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 169), - [4187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 119), - [4189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 119), - [4191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 170), - [4193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 170), - [4195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 171), - [4197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 171), - [4199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 172), - [4201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 172), - [4203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3, 0, 0), - [4205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3, 0, 0), - [4207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), - [4209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), - [4211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), - [4214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), - [4217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 3, 0, 0), - [4219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 3, 0, 0), - [4221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, 0, 173), - [4223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, 0, 173), - [4225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 70), REDUCE(sym_nested_type_identifier, 3, 0, 173), - [4228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 83), REDUCE(sym_nested_type_identifier, 3, 0, 173), - [4231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 174), - [4233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 174), - [4235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 175), - [4237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 175), - [4239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 176), - [4241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 176), - [4243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 177), - [4245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 177), - [4247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 178), - [4249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 178), - [4251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3, 0, 0), - [4253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3, 0, 0), - [4255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3, 0, 0), - [4257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), - [4259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 0), - [4261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 0), - [4263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), - [4265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), - [4267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 71), - [4269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 71), - [4271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 175), - [4273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 175), - [4275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 176), - [4277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 176), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), - [4281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 225), - [4283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 225), - [4285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 226), - [4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 226), - [4289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 177), - [4291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 177), - [4293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 178), - [4295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 178), - [4297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 89), - [4299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 89), - [4301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), - [4303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), - [4305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4, 0, 227), - [4307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4, 0, 227), - [4309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 4, 0, 116), - [4311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 4, 0, 116), - [4313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), - [4315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0), - [4317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), - [4319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), - [4322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), - [4325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4, 0, 0), - [4327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4, 0, 0), - [4329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 58), - [4331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 58), - [4333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 228), - [4335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 228), - [4337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 144), - [4339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 144), - [4341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 266), - [4343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 266), - [4345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 192), - [4347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 192), - [4349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 267), - [4351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 267), - [4353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 268), - [4355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 268), - [4357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), - [4359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), - [4361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 269), - [4363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 269), - [4365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 270), - [4367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 270), - [4369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 15), - [4371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 15), - [4373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 302), - [4375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 302), - [4377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), - [4379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), - [4381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 303), - [4383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 303), - [4385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 304), - [4387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 304), - [4389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 305), - [4391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 305), - [4393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 6, 0, 306), - [4395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 6, 0, 306), - [4397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instantiation_expression, 2, 0, 17), - [4399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiation_expression, 2, 0, 17), - [4401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, 0, 327), - [4403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, 0, 327), - [4405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), - [4407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), - [4409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_satisfies_expression, 3, 0, 0), - [4411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_satisfies_expression, 3, 0, 0), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [4415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [4419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 67), - [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4958), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [4431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [4435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [4439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [4441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [4447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [4451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [4463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 183), - [4465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 183), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [4473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [4477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), - [4479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), - [4481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 67), - [4483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), - [4485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), - [4487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), - [4489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 123), - [4491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 124), - [4493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 124), - [4495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 184), - [4497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 184), - [4499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 196), - [4501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 196), - [4503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, 0, 122), - [4505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, 0, 122), - [4507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, 0, 12), - [4509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, 0, 12), - [4511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(163), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5498), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [4522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [4524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 179), - [4526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 179), - [4528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 127), - [4530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 127), - [4532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 3, 0, 45), - [4534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 3, 0, 45), - [4536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 128), - [4538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 129), - [4540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 130), - [4542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 130), - [4544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 190), - [4546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 24), - [4548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 24), - [4550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 74), - [4552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 74), - [4554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), - [4556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), - [4558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, 0, 56), - [4560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, 0, 56), - [4562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 133), - [4564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 133), - [4566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 57), - [4568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 57), - [4570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 2, 0, 12), - [4572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 2, 0, 12), - [4574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), - [4576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), - [4578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 120), - [4580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 120), - [4582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 121), - [4584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 121), - [4586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, 0, 76), - [4588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, 0, 76), - [4590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 135), - [4592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 135), - [4594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3, 0, 0), - [4596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3, 0, 0), - [4598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 137), - [4600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 137), - [4602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 138), - [4604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 138), - [4606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), - [4608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), - [4610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 66), - [4612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 26), - [4614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 26), - [4616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), - [4618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 0), - [4620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(163), - [4623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 16), - [4625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 16), - [4627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 75), - [4629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 75), - [4631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, 0, 145), - [4633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, 0, 145), - [4635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 2, -1, 0), - [4637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 2, -1, 0), - [4639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 122), - [4641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 122), - [4643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, 0, 60), - [4645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, 0, 60), - [4647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), - [4649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), - [4651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), - [4653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 77), - [4655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 77), - [4657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 26), - [4659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, 0, 27), - [4661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 26), - [4663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 54), - [4665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 54), - [4667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 55), - [4669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 55), - [4671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 60), - [4673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 60), - [4675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, 0, 64), - [4677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, 0, 64), - [4679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 64), - [4681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 64), - [4683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, 0, 0), - [4685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, 0, 0), - [4687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 148), - [4689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 148), - [4691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 149), - [4693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 149), - [4695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), - [4697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 8), - [4699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(163), - [4702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), - [4704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), - [4706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 123), - [4708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3, 0, 0), - [4710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 65), - [4712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), - [4715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), - [4718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), - [4720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), - [4722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 50), - [4725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 50), - [4728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 80), - [4730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 80), - [4732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 66), - [4734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 22), - [4736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), - [4738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 8), - [4740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(163), - [4743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), - [4746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [4751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5282), - [4756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, 0, 26), REDUCE(sym_object_pattern, 3, 0, 27), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), - [4763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), - [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), - [4767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), - [4769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), - [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), - [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), - [4781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), - [4789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), - [4791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [4799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), - [4805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), - [4807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(5316), - [4810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5842), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [4817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(168), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [4828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), - [4830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(162), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [4835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [4837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [4843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [4847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [4851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [4853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [4859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [4863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), - [4873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 37), - [4875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 37), - [4877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [4879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(162), - [4882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(162), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [4887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), - [4889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 27), - [4891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [4895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), - [4897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), - [4899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), - [4901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), - [4903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(162), - [4906] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), - [4910] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), - [4914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(168), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [4923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [4925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [4931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [4935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [4939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [4941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [4947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [4951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [4959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(168), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [4964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), - [4966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), - [4968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), - [4970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), - [4972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(168), - [4975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), - [4977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [4981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 84), REDUCE(sym_assignment_expression, 3, 0, 22), - [4984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 84), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [4990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 84), REDUCE(sym_assignment_expression, 3, 0, 65), - [4993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 65), REDUCE(sym_assignment_expression, 3, 0, 65), - [4996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 65), - [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [5002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, 0, 88), - [5004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 88), SHIFT(521), - [5007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), - [5010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [5019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1, 0, 9), - [5021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__parameter_name, 1, 0, 9), - [5024] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__parameter_name, 1, 0, 9), REDUCE(sym_primary_type, 1, 0, 50), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [5032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), - [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [5036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), - [5038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), - [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [5042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [5046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), - [5048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), - [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [5052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), - [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [5056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), - [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [5060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), - [5062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), - [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [5066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), - [5068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), REDUCE(sym_primary_type, 1, 0, 50), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [5073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5975), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), - [5087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4368), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [5093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [5097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), - [5099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [5103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [5107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [5111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), - [5113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), - [5115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 37), - [5117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 37), - [5119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 50), REDUCE(sym__parameter_name, 2, 0, 37), - [5122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2, 0, 0), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [5126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [5130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [5132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), - [5134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [5136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [5142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [5146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [5150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [5152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [5158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [5162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [5170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(169), - [5173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(169), - [5176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(169), - [5179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(169), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [5184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 95), - [5186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 95), - [5188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 99), - [5190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 99), - [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), - [5196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), - [5198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, 0, 65), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), - [5202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), - [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [5206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 1, 0, 47), - [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), - [5212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), - [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), - [5216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), - [5222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [5226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [5230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), - [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [5236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), - [5238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [5242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), - [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [5246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), - [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [5250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [5254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [5258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), - [5260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 40), - [5262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 40), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [5266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [5268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [5274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [5278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [5282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [5284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [5290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [5294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [5304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(171), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), - [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), - [5317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), - [5319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), - [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [5323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), - [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), - [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [5349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 155), - [5351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 155), - [5353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 157), - [5355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 157), - [5357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(171), - [5360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(171), - [5363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(171), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), - [5370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), - [5372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [5376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), - [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), - [5382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), - [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [5388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), - [5391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 0), - [5393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), - [5396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 0), - [5398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), - [5401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3, 0, 0), - [5403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), - [5406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_computed_property_name, 3, 0, 0), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), - [5410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), - [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), - [5420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), - [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), - [5428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), - [5436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [5442] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), - [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), - [5450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), - [5452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [5454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [5460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [5464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [5468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [5470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [5476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [5480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [5488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(164), - [5491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4500), - [5493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), - [5495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(164), - [5498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(164), - [5501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(164), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [5510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), - [5514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [5522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 5, 0, 205), - [5524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 5, 0, 205), - [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), - [5530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), - [5532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [5536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), - [5538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), - [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [5542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), - [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), - [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [5564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5344), - [5570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), - [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), - [5574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), - [5576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), - [5578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), - [5580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), - [5582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), - [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), - [5590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), - [5592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [5596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), - [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), - [5616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), - [5618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [5620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [5622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [5626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [5632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [5636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [5640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [5644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(165), - [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [5651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), - [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), - [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), - [5663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(165), - [5666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(165), - [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), - [5671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(165), - [5674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 26), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 27), - [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [5681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), - [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [5685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [5687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), - [5689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), - [5691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [5693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), - [5695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), - [5697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), - [5700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, 0, 26), REDUCE(sym_object_pattern, 3, 0, 27), - [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), - [5705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), - [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), - [5714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3930), - [5716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), - [5718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), - [5720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), - [5722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), - [5724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), - [5726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), - [5728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), - [5730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 85), - [5732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [5734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [5740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [5744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [5748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [5750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [5756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [5760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [5768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(170), - [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), - [5773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(170), - [5776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(170), - [5779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(170), - [5782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 107), REDUCE(sym_class, 5, 0, 195), - [5785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 107), REDUCE(sym_class, 5, 0, 195), - [5788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 88), SHIFT(593), - [5791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 80), - [5794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 80), - [5797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), - [5799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 5, 0, 166), REDUCE(sym_class, 6, 0, 235), - [5802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 5, 0, 166), REDUCE(sym_class, 6, 0, 235), - [5805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 2, 0, 108), - [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [5811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [5813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [5819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [5823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [5827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [5829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [5835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [5839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [5847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(172), - [5850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 26), - [5852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 46), REDUCE(sym_class, 4, 0, 147), - [5855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 46), REDUCE(sym_class, 4, 0, 147), - [5858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 54), REDUCE(sym_class, 4, 0, 148), - [5861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 54), REDUCE(sym_class, 4, 0, 148), - [5864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 55), REDUCE(sym_class, 4, 0, 149), - [5867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 55), REDUCE(sym_class, 4, 0, 149), - [5870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), - [5872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), - [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [5876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), - [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [5880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), - [5882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(172), - [5885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(172), - [5888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(172), - [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [5897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 106), REDUCE(sym_class, 5, 0, 194), - [5900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 106), REDUCE(sym_class, 5, 0, 194), - [5903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 120), REDUCE(sym_class, 5, 0, 196), - [5906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 120), REDUCE(sym_class, 5, 0, 196), - [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [5915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), - [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), - [5919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), - [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [5923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), - [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [5927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), - [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), - [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), - [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), - [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), - [5969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 126), - [5971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 126), - [5973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 181), - [5975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 181), - [5977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 200), - [5979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 200), - [5981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 229), - [5983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 229), - [5985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 153), - [5987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 153), - [5989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 238), - [5991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 238), - [5993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 273), - [5995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 273), - [5997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 307), - [5999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 307), - [6001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 274), - [6003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 274), - [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [6007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 103), - [6009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 103), - [6011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 103), SHIFT_REPEAT(2674), - [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [6016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, 0, 86), - [6018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, 0, 86), - [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [6022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 308), - [6024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 308), - [6026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 328), - [6028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 328), - [6030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 329), - [6032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 329), - [6034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), - [6036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), - [6038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), SHIFT_REPEAT(2671), - [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [6043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, 0, 344), - [6045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, 0, 344), - [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [6049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5924), - [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [6059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), - [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [6063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), - [6065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), - [6067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), - [6069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), - [6071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, 0, 11), - [6073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 2, 0, 11), - [6075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 3, 0, 103), - [6077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 3, 0, 103), - [6079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 3, 0, 54), - [6081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 3, 0, 54), - [6083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), - [6085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), - [6087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [6089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), - [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [6093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [6095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [6097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), - [6099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), - [6101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), - [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), - [6107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), - [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [6113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), - [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), - [6119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), - [6121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), - [6123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), - [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [6129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), - [6131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), - [6133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), - [6135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), - [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), - [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), - [6141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT_REPEAT(4103), - [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), - [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), - [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), - [6152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), - [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), - [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [6160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [6166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), - [6168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), - [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), - [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), - [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), - [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), - [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [6186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), - [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), - [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), - [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), - [6204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), - [6206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), - [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [6210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), - [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [6214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [6218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [6220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), - [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [6224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), - [6226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), - [6228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [6232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), - [6234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), - [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), - [6238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), - [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [6244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), - [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [6250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), - [6252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), - [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), - [6256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), - [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), - [6260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), - [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), - [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), - [6268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), - [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), - [6274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), - [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [6280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), - [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [6284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), - [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [6290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), - [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [6296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), - [6302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5289), - [6304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5984), - [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), - [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), - [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), - [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), - [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5662), - [6318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), - [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [6324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 14), - [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [6328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 14), SHIFT(3954), - [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), - [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5829), - [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [6337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), - [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), - [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), - [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), - [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5582), - [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), - [6357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4902), - [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5832), - [6361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), - [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [6365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), - [6367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1, 0, 0), - [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5880), - [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5302), - [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5305), - [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5949), - [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5697), - [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5934), - [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5713), - [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5731), - [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5750), - [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), - [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5659), - [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5684), - [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), - [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5921), - [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5923), - [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5940), - [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5950), - [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5822), - [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5824), - [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5837), - [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), - [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), - [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), - [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), - [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), - [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), - [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), - [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), - [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5804), - [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), - [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5702), - [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [6461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 60), - [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [6471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), - [6473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), - [6475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 158), - [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [6483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 163), - [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [6497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), - [6499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), - [6501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 49), REDUCE(sym_jsx_namespace_name, 3, 0, 0), - [6504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 104), - [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), - [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), - [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [6518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), - [6520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 261), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [6526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4984), - [6528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4981), - [6530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 1), - [6532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__import_identifier, 1, 0, 1), - [6534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, 0, 5), - [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [6542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 255), - [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), - [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [6552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [6558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 214), - [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), - [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [6564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 216), - [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), - [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [6574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), - [6576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), - [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [6594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), - [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5563), - [6602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 300), - [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [6608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 158), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [6612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, 0, 5), - [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5946), - [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [6630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 60), - [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), - [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), - [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [6640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 255), - [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5300), - [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), - [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), - [6652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 214), - [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [6664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 158), - [6666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 255), - [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), - [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5841), - [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [6674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 261), - [6676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 5), - [6678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 163), - [6680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 216), - [6682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 214), - [6684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 60), - [6686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 60), - [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), - [6694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 214), - [6696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 255), - [6698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 300), - [6700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 104), - [6702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 5), - [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), - [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5557), - [6708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 158), - [6710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 49), SHIFT(5380), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5567), - [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [6719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), - [6729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), - [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), - [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), - [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), - [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [6753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5001), - [6755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5834), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5868), - [6761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3623), - [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5883), - [6767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), - [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [6771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [6773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [6775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(282), - [6778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(3267), - [6781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), - [6783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(3851), - [6786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), - [6788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), - [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5581), - [6792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), - [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [6796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), - [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [6800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), - [6802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), - [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [6806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), - [6808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 0), - [6810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), - [6812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4899), - [6814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4900), - [6816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), - [6818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), - [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [6822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), - [6824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), - [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), - [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [6830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), - [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [6836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), SHIFT(5468), - [6839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5045), - [6841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4083), - [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5838), - [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4995), - [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), - [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), - [6851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 326), - [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), - [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), - [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), - [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), - [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), - [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [6887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 134), SHIFT_REPEAT(3540), - [6890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 134), SHIFT_REPEAT(296), - [6893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 134), - [6895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 134), SHIFT_REPEAT(3540), - [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), - [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), - [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [6912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 293), - [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), - [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), - [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), - [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), - [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [6962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 0), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), - [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), - [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), - [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), - [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), - [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), - [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), - [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), - [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), - [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), - [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), - [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [7064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0), - [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), - [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), - [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4982), - [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), - [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), - [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), - [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), - [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), - [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), - [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), - [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), - [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), - [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), - [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), - [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), - [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), - [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), - [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), - [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), - [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), - [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), - [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), - [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), - [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), - [7144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 27), - [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5924), - [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), - [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), - [7152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0), - [7154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 0), - [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [7160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 0), - [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), - [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), - [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), - [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), - [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [7182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2, 0, 0), - [7184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), - [7186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5933), - [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), - [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [7198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2, 0, 0), - [7200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), - [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5908), - [7212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), - [7214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), - [7216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), - [7218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), - [7220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5836), - [7222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [7224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), - [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5914), - [7228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5754), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), - [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [7236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), - [7238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), - [7240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), - [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [7244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), - [7246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), - [7248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_adding_type_annotation, 2, 0, 0), - [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [7252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 247), - [7254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 326), - [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [7258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), - [7260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 59), - [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [7264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), - [7266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 7), - [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [7270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 7), - [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), - [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), - [7276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, 0, 102), - [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), - [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [7282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1, 0, 10), - [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), - [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), - [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), - [7292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 206), - [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), - [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), - [7298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 180), - [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), - [7302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 265), - [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [7306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 246), - [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), - [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), - [7312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 293), - [7314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, 0, 0), - [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), - [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), - [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [7324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(495), - [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), - [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), - [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5258), - [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), - [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5977), - [7339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 285), - [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), - [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), - [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), - [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), - [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [7351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 286), - [7353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(426), - [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), - [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5965), - [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4747), - [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), - [7372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_chain, 1, 0, 0), - [7374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 125), - [7376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 310), - [7378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 311), - [7380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 332), - [7382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 337), - [7384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 9, 0, 346), - [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), - [7388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 140), - [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), - [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), - [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [7396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 140), - [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), - [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), - [7402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 223), - [7404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), - [7406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 162), - [7408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), - [7410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2, 0, 168), - [7412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 224), - [7414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(423), - [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), - [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), - [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), - [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), - [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5453), - [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5326), - [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), - [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), - [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [7437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 140), - [7439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 140), - [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), - [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5896), - [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5755), - [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), - [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), - [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), - [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4932), - [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), - [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [7481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3797), - [7484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), - [7486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(352), - [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), - [7495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3072), - [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), - [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), - [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), - [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), - [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), - [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), - [7527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1, 0, 0), - [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), - [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), - [7535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 0), - [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [7539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 0), - [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), - [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), - [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), - [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), - [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [7555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 141), - [7557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 141), - [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), - [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), - [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), - [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), - [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), - [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), - [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), - [7589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3073), - [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), - [7595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 18), - [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), - [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), - [7609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts_annotation, 2, 0, 0), - [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), - [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), - [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [7625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1437), - [7628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), - [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), - [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), - [7634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5755), - [7637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), - [7639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(348), - [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), - [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), - [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), - [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), - [7652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2, 0, 10), - [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), - [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [7660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2, 0, 0), - [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), - [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), - [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), - [7674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT_REPEAT(4023), - [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), - [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), - [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), - [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [7691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2, 0, 0), - [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [7695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), - [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), - [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [7705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2, 0, 0), - [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), - [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), - [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), - [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), - [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), - [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), - [7719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, 0, 78), - [7721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 295), - [7723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 259), - [7725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 299), - [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), - [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), - [7739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 3, -1, 60), - [7741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, -1, 60), - [7743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 1, 0, 61), - [7745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 1, 0, 61), - [7747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 3, -1, 64), - [7749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, -1, 64), - [7751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), - [7753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 257), - [7755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2, 0, 0), - [7757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 2, 0, 0), - [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4834), - [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5658), - [7771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4713), - [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5418), - [7777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 4, -1, 133), - [7779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 133), - [7781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2, 0, 0), - [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), - [7785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 4, -1, 135), - [7787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 135), - [7789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 4, -1, 137), - [7791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 137), - [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), - [7797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 4, -1, 138), - [7799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 138), - [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [7803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), - [7805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(944), - [7808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(934), - [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), - [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), - [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), - [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), - [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5640), - [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), - [7829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1071), - [7832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(942), - [7835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3, 0, 0), - [7837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 3, 0, 0), - [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), - [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), - [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), - [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), - [7847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(1074), - [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), - [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), - [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), - [7862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1109), - [7865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(931), - [7868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 2, -1, 0), - [7870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 2, -1, 0), - [7872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5200), - [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), - [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), - [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), - [7882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 249), - [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), - [7886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 253), - [7888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 5, 0, 301), - [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5554), - [7894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 263), - [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), - [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [7902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4641), - [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), - [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5472), - [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), - [7912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 210), - [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [7916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 212), - [7918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 313), - [7920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 314), - [7922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 316), - [7924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 319), - [7926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 264), - [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), - [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), - [7934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 322), - [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [7938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 249), - [7940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 325), - [7942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 31), - [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [7954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 160), - [7956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 89), - [7958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 165), - [7960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 3, 0, 0), - [7962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 3, 0, 0), - [7964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 32), - [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [7972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_type, 2, 0, 0), - [7974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 289), - [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), - [7978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), - [7980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1064), - [7983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4310), - [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), - [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), - [7990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 292), - [7992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 330), - [7994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 331), - [7996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 335), - [7998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 340), - [8000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 7), - [8002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 7), - [8004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 0), - [8006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 0), - [8008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 5, -1, 183), - [8010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 5, -1, 183), - [8012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 5, -1, 184), - [8014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 5, -1, 184), - [8016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), - [8018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 343), - [8020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(1112), - [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [8031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [8033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, 0, 207), - [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), - [8037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4, 0, 208), - [8039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 210), - [8041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 212), - [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5819), - [8045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 218), - [8047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(938), - [8050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 32), - [8052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1034), - [8055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(935), - [8058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(1037), - [8061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 7, 0, 316), - [8063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4801), - [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), - [8069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 349), - [8071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 220), - [8073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, 0, 110), - [8075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5748), - [8077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 281), - [8079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 222), - [8081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 283), - [8083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 284), - [8085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 253), - [8087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 289), - [8089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5, 0, 254), - [8091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 160), - [8093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 292), - [8095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 89), - [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), - [8101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 32), - [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5643), - [8105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 2, 0, 0), - [8107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 2, 0, 0), - [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [8111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 141), - [8113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 141), - [8115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), - [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), - [8119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 167), - [8121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 167), SHIFT_REPEAT(395), - [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), - [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [8132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), - [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), - [8136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 231), - [8138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 231), SHIFT_REPEAT(4542), - [8141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 231), - [8143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), - [8147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), - [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), - [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [8153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4480), - [8156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), - [8158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4480), - [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), - [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [8167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), - [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), - [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), - [8177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), - [8181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(4493), - [8184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), - [8186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(4493), - [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), - [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), - [8193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 60), - [8195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [8197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), - [8199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 27), - [8201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [8205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 132), - [8207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), - [8209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), REDUCE(aux_sym_template_literal_type_repeat1, 1, 0, 0), - [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4977), - [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [8222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), - [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), - [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), - [8228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 39), - [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [8234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, 0, 109), - [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [8238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, 0, 29), - [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), - [8242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), - [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [8246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1065), - [8249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [8253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [8255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [8257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4605), - [8259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4464), - [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), - [8263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4606), - [8265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), - [8267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [8269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), - [8273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), - [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), - [8277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), - [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), - [8283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 187), - [8285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 187), - [8287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [8289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 188), - [8291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 188), - [8293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(274), - [8296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [8298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), - [8300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 5, 0, 282), - [8302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [8304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4552), - [8307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), - [8309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(4553), - [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), - [8318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(3765), - [8321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), - [8323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [8325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), - [8329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), - [8331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6, 0, 239), - [8333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), - [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), - [8339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [8341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), - [8343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, 0, 48), - [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), - [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [8353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5779), - [8355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(646), - [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [8360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), - [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [8370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 97), - [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [8374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0), - [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), - [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [8388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4480), - [8390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4286), - [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), - [8394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4493), - [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), - [8398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 63), - [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), - [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [8406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 347), - [8408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 260), - [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), - [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [8436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, 0, 0), - [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [8440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 298), - [8442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(3491), - [8445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), - [8447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [8451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 256), - [8453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 258), - [8455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 294), - [8457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 297), - [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), - [8461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 248), - [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5330), - [8465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 296), - [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), - [8469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 312), - [8471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), - [8481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [8485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4914), - [8487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), - [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [8491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4838), - [8493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 315), - [8495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 317), - [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [8499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 318), - [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), - [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [8505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 7, 0, 310), - [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5460), - [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5555), - [8513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 320), - [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [8517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 321), - [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), - [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [8527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5253), - [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [8531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 323), - [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [8557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5254), - [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [8561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), SHIFT_REPEAT(3379), - [8564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), - [8566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [8570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 324), - [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [8574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), - [8576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [8580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [8582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), - [8584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5468), - [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), - [8590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), - [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), - [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), - [8596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), - [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), - [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [8604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 159), - [8606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 262), - [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), - [8616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(4933), - [8619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), - [8621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3, 0, 0), - [8623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, 0, 125), - [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), - [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [8635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 161), - [8637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 90), - [8639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 250), - [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), - [8643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 251), - [8645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, 0, 85), - [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), - [8651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1, 0, 0), - [8653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), - [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [8657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 164), - [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [8661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 48), - [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), - [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), - [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), - [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), - [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4681), - [8701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5263), - [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5005), - [8705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 0), - [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [8713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 333), - [8715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 334), - [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [8719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5162), - [8721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [8723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 336), + [3814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(1448), + [3817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(378), + [3820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(4588), + [3823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(4591), + [3826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2092), + [3829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(5984), + [3832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3003), + [3835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3972), + [3838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(1734), + [3841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(1856), + [3844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2377), + [3847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(1737), + [3850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(1857), + [3853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2356), + [3856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2741), + [3859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2773), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [3868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1854), + [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [3877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1755), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [3882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [3888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [3892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), + [3896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), + [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), + [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), + [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), + [3914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), + [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), + [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3387), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), + [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), + [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), + [3934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 12), + [3936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 12), + [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5403), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), + [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), + [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), + [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), + [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), + [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), + [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), + [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), + [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), + [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), + [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), + [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), + [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), + [3996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 110), + [3998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 110), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), + [4002] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), REDUCE(aux_sym_object_repeat1, 2, 0, 26), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 27), + [4006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 48), + [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5854), + [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), + [4014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 111), + [4016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 111), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5284), + [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [4022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 49), + [4024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 49), + [4026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asserts, 2, 0, 0), + [4028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 2, 0, 0), + [4030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 0), + [4032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 0), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), + [4038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), + [4040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), + [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), + [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), + [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), + [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [4052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 50), + [4054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 50), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5252), + [4058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 2, 0, 116), + [4060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 2, 0, 116), + [4062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), + [4064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), + [4066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [4069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [4072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, 0, 326), + [4074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, 0, 326), + [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [4078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [4082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 14), + [4084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 14), + [4086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 14), + [4088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 14), + [4090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), + [4092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), + [4094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 88), + [4096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 88), + [4098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 191), + [4100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 191), + [4102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), + [4104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0), + [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), + [4108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [4111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [4114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2, 0, 0), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5593), + [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5604), + [4122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), + [4124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5879), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5892), + [4132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, 0, 8), + [4134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, 0, 8), + [4136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 14), + [4138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 14), + [4140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1, 0, 0), + [4142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1, 0, 0), + [4144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 0), + [4146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 0), + [4148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 51), + [4150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 51), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), + [4154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), + [4156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [4160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 52), + [4162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 52), + [4164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 112), + [4166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 112), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), + [4170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 113), + [4172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 113), + [4174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2, 0, 0), + [4176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2, 0, 0), + [4178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2, 0, 0), + [4180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2, 0, 0), + [4182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2, 0, 0), + [4184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 2, 0, 0), + [4186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 2, 0, 0), + [4188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 114), + [4190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 114), + [4192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_type, 2, 0, 0), + [4194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_type, 2, 0, 0), + [4196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), + [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), + [4200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 2, 0, 115), + [4202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 2, 0, 115), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [4206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2, 0, 0), + [4208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2, 0, 0), + [4210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 117), + [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 117), + [4214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 118), + [4216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 118), + [4218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instantiation_expression, 2, 0, 16), + [4220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiation_expression, 2, 0, 16), + [4222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 168), + [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 168), + [4226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 118), + [4228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 118), + [4230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 169), + [4232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 169), + [4234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 171), + [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 171), + [4238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3, 0, 0), + [4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3, 0, 0), + [4242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), + [4244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), + [4246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 3, 0, 0), + [4248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 3, 0, 0), + [4250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, 0, 172), + [4252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, 0, 172), + [4254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 69), REDUCE(sym_nested_type_identifier, 3, 0, 172), + [4257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 82), REDUCE(sym_nested_type_identifier, 3, 0, 172), + [4260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 173), + [4262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 173), + [4264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 174), + [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 174), + [4268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 175), + [4270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 175), + [4272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 176), + [4274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 176), + [4276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 177), + [4278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 177), + [4280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3, 0, 0), + [4282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3, 0, 0), + [4284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3, 0, 0), + [4286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [4290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 0), + [4292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 0), + [4294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 57), + [4296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 57), + [4298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 69), + [4300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 69), + [4302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, 0, 0), + [4304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, 0, 0), + [4306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 70), + [4308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 70), + [4310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 174), + [4312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 174), + [4314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 175), + [4316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 175), + [4318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 224), + [4320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 224), + [4322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 225), + [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 225), + [4326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 176), + [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 176), + [4330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 177), + [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 177), + [4334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), + [4336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), + [4338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_satisfies_expression, 3, 0, 0), + [4340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_satisfies_expression, 3, 0, 0), + [4342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4, 0, 226), + [4344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4, 0, 226), + [4346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 4, 0, 115), + [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 4, 0, 115), + [4350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4, 0, 0), + [4352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4, 0, 0), + [4354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 227), + [4356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 227), + [4358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 143), + [4360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 143), + [4362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 265), + [4364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 265), + [4366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 266), + [4368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 266), + [4370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 267), + [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 267), + [4374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), + [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), + [4378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 268), + [4380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 268), + [4382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 269), + [4384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 269), + [4386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 301), + [4388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 301), + [4390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 302), + [4392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 302), + [4394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 303), + [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 303), + [4398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 304), + [4400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 304), + [4402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 6, 0, 305), + [4404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 6, 0, 305), + [4406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 170), + [4408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 170), + [4410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 2, -1, 0), + [4412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 2, -1, 0), + [4414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), + [4416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 8), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4833), + [4420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(168), + [4423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), + [4425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [4433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [4437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [4439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), + [4441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 132), + [4443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 132), + [4445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 15), + [4447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 15), + [4449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, 0, 17), + [4451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, 0, 17), + [4453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 24), + [4455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 24), + [4457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [4461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [4463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [4469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [4473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [4477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [4479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [4485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [4489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [4501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 22), + [4503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 127), + [4505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 128), + [4507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 126), + [4509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 126), + [4511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), + [4513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), + [4515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3, 0, 0), + [4517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3, 0, 0), + [4519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3, 0, 0), + [4521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 129), + [4523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 129), + [4525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), + [4527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), + [4529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), + [4532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5455), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [4543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [4545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, 0, 144), + [4547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, 0, 144), + [4549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 53), + [4551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 53), + [4553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 54), + [4555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 54), + [4557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, 0, 55), + [4559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, 0, 55), + [4561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 56), + [4563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 56), + [4565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 59), + [4567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 59), + [4569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 63), + [4571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 63), + [4573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, 0, 0), + [4575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, 0, 0), + [4577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 64), + [4579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 65), + [4581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 65), + [4583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 66), + [4585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), + [4587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, 0, 59), + [4589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, 0, 59), + [4591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 73), + [4593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 73), + [4595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), SHIFT(168), + [4598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, 0, 63), + [4600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, 0, 63), + [4602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), + [4604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), + [4606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), + [4609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), + [4612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 26), + [4614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, 0, 27), + [4616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 26), + [4618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 49), + [4621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 49), + [4624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 134), + [4626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 134), + [4628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 74), + [4630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 74), + [4632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), + [4634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), + [4636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, 0, 75), + [4638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, 0, 75), + [4640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 76), + [4642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 76), + [4644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 178), + [4646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 178), + [4648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 66), + [4650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 182), + [4652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 182), + [4654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 136), + [4656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 136), + [4658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 79), + [4660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 79), + [4662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 26), + [4664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 26), + [4666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), + [4668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), + [4670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), + [4672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), + [4674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), + [4676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 8), + [4678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(168), + [4681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 137), + [4683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 137), + [4685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 147), + [4687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 147), + [4689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 148), + [4691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 148), + [4693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, 0, 121), + [4695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, 0, 121), + [4697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), + [4699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 0), + [4701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(168), + [4704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 183), + [4706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 183), + [4708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), + [4710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 119), + [4712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 119), + [4714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 120), + [4716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 120), + [4718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 121), + [4720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 121), + [4722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 195), + [4724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 195), + [4726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 122), + [4728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 122), + [4730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 123), + [4732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 123), + [4734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 189), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [4740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [4744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [4752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [4756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [4758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), + [4760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(5323), + [4763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), + [4768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), + [4770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), + [4772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), + [4774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5921), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [4788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), + [4790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), + [4792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), + [4794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [4798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [4801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, 0, 26), REDUCE(sym_object_pattern, 3, 0, 27), + [4804] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [4808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [4810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [4814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [4820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [4824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [4826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [4830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [4838] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [4844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [4846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), SHIFT(170), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [4851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [4857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [4861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [4865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [4873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [4879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [4883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [4887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [4895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(172), + [4898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(172), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [4903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), + [4905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), + [4907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), + [4909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [4915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(172), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [4920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), SHIFT(172), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [4925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [4927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), + [4929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), + [4931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), + [4933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [4937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 37), + [4939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 37), + [4941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [4943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(170), + [4946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), + [4948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(170), + [4951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(170), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [4960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 27), + [4962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(163), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5400), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [4975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [4977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5550), + [4983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1, 0, 9), + [4985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__parameter_name, 1, 0, 9), + [4988] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__parameter_name, 1, 0, 9), REDUCE(sym_primary_type, 1, 0, 49), + [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [4994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 83), REDUCE(sym_assignment_expression, 3, 0, 22), + [4997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 83), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [5001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 83), REDUCE(sym_assignment_expression, 3, 0, 64), + [5004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 64), REDUCE(sym_assignment_expression, 3, 0, 64), + [5007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 64), + [5009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(163), + [5012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, 0, 87), + [5014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 87), SHIFT(449), + [5017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [5020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [5025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4258), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5957), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [5035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [5039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [5041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [5045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [5049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), + [5051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [5055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2813), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [5059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [5063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), + [5065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), + [5067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), + [5069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), REDUCE(sym_primary_type, 1, 0, 49), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [5076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3996), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), + [5080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2, 0, 0), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [5084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [5088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), + [5090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [5094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [5098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [5102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), + [5104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), + [5106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 37), + [5108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 37), + [5110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 49), REDUCE(sym__parameter_name, 2, 0, 37), + [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [5115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [5119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), + [5121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [5127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [5129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [5135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [5139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [5143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [5145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [5151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [5155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [5163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), SHIFT(163), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), + [5168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(163), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), + [5177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 1, 0, 46), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [5183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), + [5187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 98), + [5189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 98), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [5193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [5197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), + [5199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, 0, 64), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), + [5205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), + [5207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), + [5211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), + [5215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), + [5219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), + [5221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), + [5224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3, 0, 0), + [5226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), + [5229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_computed_property_name, 3, 0, 0), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), + [5237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), + [5239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), + [5242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 0), + [5244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), + [5247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 0), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [5257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [5259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [5265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [5269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [5273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [5275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [5281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [5285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [5293] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [5301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), SHIFT(169), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [5310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4582), + [5312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), + [5330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), + [5332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 154), + [5334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 154), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [5338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 156), + [5340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 156), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), + [5348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), + [5350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [5354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [5362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(169), + [5365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(169), + [5368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [5372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), + [5374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(169), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), + [5381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), + [5385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), + [5393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), + [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), + [5403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [5411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [5415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), + [5417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [5419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [5425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [5429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [5433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [5435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [5441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [5445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [5453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), SHIFT(162), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), + [5458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [5462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(162), + [5465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(162), + [5468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(162), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [5477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 5, 0, 204), + [5479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 5, 0, 204), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [5485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), + [5487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 40), + [5489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 40), + [5491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [5495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), + [5497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [5501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [5511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), + [5513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [5517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [5525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [5529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), + [5531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), + [5537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [5541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), + [5543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), + [5545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), + [5547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), + [5549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [5555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [5561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [5565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), + [5567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [5595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 94), + [5597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 94), + [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), + [5603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [5607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [5610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, 0, 26), REDUCE(sym_object_pattern, 3, 0, 27), + [5613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), + [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [5618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), + [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [5622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), + [5624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [5626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), + [5628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), + [5630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), + [5632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), + [5634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 26), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 27), + [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), + [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), + [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), + [5649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), + [5651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), + [5653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), + [5655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), + [5657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), + [5659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), + [5661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), + [5663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), + [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), + [5667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 84), + [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), + [5671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [5673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [5679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [5683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [5687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [5689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [5695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [5699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [5707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), SHIFT(167), + [5710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(167), + [5713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(167), + [5716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(167), + [5719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [5721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [5727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [5731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [5735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [5737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [5743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [5747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [5755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), SHIFT(171), + [5758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(171), + [5761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(171), + [5764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(171), + [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [5769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [5771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [5777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [5781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [5785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [5787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [5793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [5797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [5805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 106), REDUCE(sym_class, 5, 0, 194), + [5808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 106), REDUCE(sym_class, 5, 0, 194), + [5811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 119), REDUCE(sym_class, 5, 0, 195), + [5814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 119), REDUCE(sym_class, 5, 0, 195), + [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [5821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 79), + [5824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 79), + [5827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 26), + [5829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), SHIFT(164), + [5832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 87), SHIFT(557), + [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [5839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), + [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [5843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), + [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [5847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), + [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [5851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), + [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [5857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 105), REDUCE(sym_class, 5, 0, 193), + [5860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 105), REDUCE(sym_class, 5, 0, 193), + [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [5867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 45), REDUCE(sym_class, 4, 0, 146), + [5870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 45), REDUCE(sym_class, 4, 0, 146), + [5873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 53), REDUCE(sym_class, 4, 0, 147), + [5876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 53), REDUCE(sym_class, 4, 0, 147), + [5879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 54), REDUCE(sym_class, 4, 0, 148), + [5882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 54), REDUCE(sym_class, 4, 0, 148), + [5885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), + [5887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), + [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [5891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), + [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [5895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), + [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [5899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(164), + [5902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(164), + [5905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(164), + [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [5910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), + [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [5914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 5, 0, 165), REDUCE(sym_class, 6, 0, 234), + [5917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 5, 0, 165), REDUCE(sym_class, 6, 0, 234), + [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [5922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 2, 0, 107), + [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [5956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 180), + [5958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 180), + [5960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 199), + [5962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 199), + [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [5966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5848), + [5968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 237), + [5970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 237), + [5972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 306), + [5974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 306), + [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [5978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 307), + [5980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 307), + [5982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 125), + [5984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 125), + [5986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 327), + [5988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 327), + [5990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 272), + [5992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 272), + [5994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), + [5996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), + [5998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), SHIFT_REPEAT(2675), + [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [6003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 328), + [6005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 328), + [6007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, 0, 343), + [6009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, 0, 343), + [6011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 228), + [6013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 228), + [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [6017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, 0, 85), + [6019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, 0, 85), + [6021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 152), + [6023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 152), + [6025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 273), + [6027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 273), + [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [6031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 102), + [6033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 102), + [6035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 102), SHIFT_REPEAT(2672), + [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [6042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 3, 0, 53), + [6044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 3, 0, 53), + [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [6048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), + [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [6052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), + [6054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), + [6056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 3, 0, 102), + [6058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 3, 0, 102), + [6060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, 0, 11), + [6062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 2, 0, 11), + [6064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), + [6066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), + [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), + [6074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), + [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [6080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), + [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [6084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), + [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), + [6088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), + [6090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), + [6092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), + [6094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [6096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), + [6098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), + [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [6102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [6104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), + [6106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [6108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), + [6110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), + [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [6114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), + [6116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), + [6118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), + [6120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), + [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), + [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), + [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), + [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), + [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), + [6132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT_REPEAT(3972), + [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), + [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), + [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), + [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [6151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), + [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [6155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [6157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [6165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), + [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), + [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), + [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), + [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [6187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [6189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), + [6191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [6193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), + [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [6197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), + [6199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), + [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [6203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), + [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [6207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), + [6209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), + [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [6213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [6215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), + [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [6219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), + [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [6223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), + [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [6227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), + [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [6231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), + [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [6237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), + [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [6243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), + [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [6251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [6255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), + [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [6259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), + [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [6265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), + [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [6271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), + [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [6275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), + [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [6283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), + [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [6287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5327), + [6289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5632), + [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), + [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), + [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5393), + [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), + [6301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), + [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [6307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 13), + [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [6311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 13), SHIFT(4419), + [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5895), + [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [6320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), + [6326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4835), + [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), + [6330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), + [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), + [6334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), + [6336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1, 0, 0), + [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5877), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4793), + [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), + [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), + [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5570), + [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), + [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), + [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), + [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), + [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), + [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), + [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5618), + [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), + [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5659), + [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5768), + [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5816), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5933), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), + [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4690), + [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5474), + [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), + [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5477), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5694), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5703), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5731), + [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5871), + [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5882), + [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5902), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5912), + [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5667), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), + [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5927), + [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5741), + [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5975), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5719), + [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [6446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 103), + [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [6456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), + [6458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, 0, 5), + [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [6466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 215), + [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [6472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 260), + [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), + [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [6490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 157), + [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [6500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 162), + [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [6506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4768), + [6508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4761), + [6510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 1), + [6512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__import_identifier, 1, 0, 1), + [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [6522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 59), + [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [6528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), + [6530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 254), + [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [6546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), + [6548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), + [6550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 48), REDUCE(sym_jsx_namespace_name, 3, 0, 0), + [6553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 213), + [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [6559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 299), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5554), + [6567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), + [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [6579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), + [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [6583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [6585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [6591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), + [6593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 213), + [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [6597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 254), + [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5510), + [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), + [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), + [6607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, 0, 5), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [6613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 59), + [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [6625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 157), + [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), + [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5693), + [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), + [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), + [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5900), + [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), + [6655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 254), + [6657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 157), + [6659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 5), + [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), + [6663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 215), + [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), + [6667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 157), + [6669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 254), + [6671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 162), + [6673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 260), + [6675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 59), + [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [6679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 213), + [6681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 59), + [6683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 103), + [6685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 48), SHIFT(5412), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5555), + [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [6694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 299), + [6696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 5), + [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [6700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 213), + [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [6706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), + [6716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3837), + [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), + [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5479), + [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), + [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), + [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), + [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [6740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4800), + [6742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), + [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5876), + [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5587), + [6748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), + [6750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), + [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [6754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [6756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [6758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), + [6760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4714), + [6762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4715), + [6764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), + [6766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [6770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), + [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [6774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), + [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5571), + [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5704), + [6782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), + [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [6786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(297), + [6789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(3273), + [6792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), + [6794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(3837), + [6797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), + [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [6801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), + [6803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5027), + [6805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4344), + [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), + [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), + [6811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 0), + [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [6815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), + [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5737), + [6819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), + [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), + [6823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), + [6825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), + [6827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), SHIFT(5246), + [6830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), + [6832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 27), + [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), + [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), + [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), + [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), + [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), + [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), + [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), + [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), + [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), + [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), + [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), + [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), + [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), + [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), + [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), + [6892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 292), + [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), + [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), + [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), + [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), + [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), + [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4917), + [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), + [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), + [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [6956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 0), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), + [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), + [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), + [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), + [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), + [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), + [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), + [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [7018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 325), + [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [7024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 0), + [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), + [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), + [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), + [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [7064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 0), + [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [7070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0), + [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), + [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), + [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), + [7128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 133), SHIFT_REPEAT(3552), + [7131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 133), SHIFT_REPEAT(291), + [7134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 133), + [7136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 133), SHIFT_REPEAT(3552), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [7143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0), + [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [7155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), + [7157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5697), + [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), + [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [7165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5670), + [7167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), + [7169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), + [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), + [7179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), + [7181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), + [7183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [7185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [7191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), + [7193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), + [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [7197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), + [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [7203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), + [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5701), + [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5839), + [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [7221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5683), + [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [7225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [7227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [7229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2, 0, 0), + [7231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_adding_type_annotation, 2, 0, 0), + [7233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2, 0, 0), + [7235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 292), + [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [7239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1, 0, 10), + [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), + [7243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 285), + [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [7249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 9, 0, 345), + [7251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), + [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), + [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), + [7257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), + [7259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 58), + [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [7263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 7), + [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [7267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 7), + [7269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, 0, 0), + [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [7277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 264), + [7279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_chain, 1, 0, 0), + [7281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 325), + [7283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 124), + [7285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), + [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5476), + [7289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 161), + [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), + [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), + [7295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(437), + [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5567), + [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [7306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 222), + [7308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(411), + [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5462), + [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), + [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), + [7317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 223), + [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), + [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5965), + [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), + [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), + [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), + [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), + [7333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 284), + [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [7337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 139), + [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), + [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), + [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [7345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 139), + [7347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), + [7349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 309), + [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), + [7353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 310), + [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), + [7359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 205), + [7361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 179), + [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), + [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), + [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5953), + [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4760), + [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), + [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [7377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2, 0, 167), + [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), + [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), + [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), + [7387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(464), + [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [7392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 245), + [7394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 246), + [7396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 331), + [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), + [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), + [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), + [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [7406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 336), + [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), + [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [7412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, 0, 101), + [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [7416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5906), + [7419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), + [7421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(401), + [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [7428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3772), + [7431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), + [7433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(400), + [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), + [7440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 140), + [7442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 140), + [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), + [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), + [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), + [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5917), + [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), + [7474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 0), + [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [7478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 0), + [7480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2, 0, 0), + [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), + [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), + [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), + [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5726), + [7500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1, 0, 0), + [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), + [7504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 139), + [7506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 139), + [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), + [7518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2, 0, 0), + [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), + [7526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts_annotation, 2, 0, 0), + [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [7534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 18), + [7536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), + [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), + [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), + [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), + [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [7550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2, 0, 0), + [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), + [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), + [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [7558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, 0, 77), + [7560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), + [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), + [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), + [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), + [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), + [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), + [7574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), + [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), + [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), + [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5906), + [7584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), + [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), + [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), + [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), + [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), + [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), + [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), + [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), + [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), + [7636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1438), + [7639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), + [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), + [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), + [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), + [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), + [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), + [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), + [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), + [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), + [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), + [7675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), + [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4925), + [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), + [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), + [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), + [7687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2, 0, 10), + [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), + [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), + [7703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 248), + [7705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 2, -1, 0), + [7707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 2, -1, 0), + [7709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 294), + [7711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 262), + [7713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 298), + [7715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 256), + [7717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 4, -1, 137), + [7719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 137), + [7721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 4, -1, 132), + [7723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 132), + [7725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), + [7727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(945), + [7730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 2, 0, 0), + [7732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2, 0, 0), + [7734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 209), + [7736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 211), + [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), + [7742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 258), + [7744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 263), + [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [7750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1020), + [7753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4721), + [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), + [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [7761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(942), + [7764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 3, 0, 0), + [7766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3, 0, 0), + [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), + [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [7786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(919), + [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), + [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), + [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), + [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), + [7813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1084), + [7816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(938), + [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), + [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), + [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), + [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), + [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), + [7829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 248), + [7831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(974), + [7834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 252), + [7836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 5, 0, 300), + [7838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 3, 0, 0), + [7840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 3, 0, 0), + [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), + [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [7846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 312), + [7848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 313), + [7850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 315), + [7852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 318), + [7854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 321), + [7856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5179), + [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), + [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), + [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), + [7866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 324), + [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [7870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 31), + [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [7880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4646), + [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), + [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5566), + [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), + [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [7892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 280), + [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), + [7898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 282), + [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [7902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 159), + [7904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 283), + [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5529), + [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [7912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 88), + [7914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 164), + [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [7920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 288), + [7922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4999), + [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), + [7928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 32), + [7930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_type, 2, 0, 0), + [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), + [7934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), + [7936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(977), + [7939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4223), + [7942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 291), + [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [7950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 7), + [7952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 7), + [7954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 0), + [7956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 0), + [7958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 5, -1, 182), + [7960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 5, -1, 182), + [7962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 5, -1, 183), + [7964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 5, -1, 183), + [7966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), + [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [7970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 32), + [7972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 288), + [7974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 291), + [7976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 329), + [7978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 330), + [7980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 334), + [7982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 339), + [7984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(1053), + [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5668), + [7989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 342), + [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5626), + [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5980), + [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), + [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [8005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, 0, 206), + [8007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4, 0, 207), + [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5897), + [8011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 209), + [8013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 211), + [8015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 32), + [8017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 217), + [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), + [8021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 219), + [8023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 7, 0, 315), + [8025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, 0, 109), + [8027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 348), + [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5836), + [8031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 221), + [8033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 159), + [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [8037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 88), + [8039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(941), + [8042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1031), + [8045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(943), + [8048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(1035), + [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), + [8055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 2, 0, 0), + [8057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 2, 0, 0), + [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [8061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 140), + [8063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 140), + [8065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 3, -1, 59), + [8067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, -1, 59), + [8069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 1, 0, 60), + [8071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 1, 0, 60), + [8073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2, 0, 0), + [8075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 3, -1, 63), + [8077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, -1, 63), + [8079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), + [8081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 4, -1, 134), + [8083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 134), + [8085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 4, -1, 136), + [8087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 136), + [8089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 252), + [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5631), + [8093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5, 0, 253), + [8095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4522), + [8097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4401), + [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), + [8101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), + [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), + [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), + [8107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 166), + [8109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 166), SHIFT_REPEAT(352), + [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [8118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(3627), + [8121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), + [8123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [8127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), + [8131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [8133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, 0, 47), + [8135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [8137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [8139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), + [8141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [8143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 96), + [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [8147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), + [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), + [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), + [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), + [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [8167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), + [8169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), REDUCE(aux_sym_template_literal_type_repeat1, 1, 0, 0), + [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [8174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), + [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), + [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [8182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [8186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 5, 0, 281), + [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), + [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [8192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [8194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, 0, 29), + [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), + [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), + [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [8208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4547), + [8210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4063), + [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), + [8214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4551), + [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), + [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), + [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [8224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 230), + [8226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 230), SHIFT_REPEAT(4597), + [8229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 230), + [8231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), + [8235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [8237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 59), + [8239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [8241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 131), + [8243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [8245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [8247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [8249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [8251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 39), + [8253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), + [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), + [8257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [8261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), + [8263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [8265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4547), + [8268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), + [8270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4547), + [8273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(4551), + [8276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), + [8278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(4551), + [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [8283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), + [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), + [8287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 62), + [8289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6, 0, 238), + [8291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), + [8293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), + [8295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(979), + [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [8300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0), + [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), + [8304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), + [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [8312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(275), + [8315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [8317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4567), + [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), + [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [8326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [8328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), + [8330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(4572), + [8333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [8337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 27), + [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [8341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(448), + [8344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4523), + [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), + [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5896), + [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), + [8352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), + [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), + [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), + [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), + [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [8370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 186), + [8372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 186), + [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [8376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, 0, 108), + [8378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 187), + [8380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 187), + [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), + [8386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 295), + [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [8414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 261), + [8416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(2400), + [8419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), + [8421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 297), + [8423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2188), + [8426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), + [8428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 320), + [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [8438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 322), + [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5246), + [8444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 319), + [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), + [8448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 2, 0, 59), + [8450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, 0, 0), + [8452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 255), + [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), + [8456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 323), + [8458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 257), + [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), + [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), + [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [8476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(4868), + [8479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), + [8481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [8485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [8487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 296), + [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), + [8491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 293), + [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), + [8495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), + [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), + [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [8505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [8533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 158), + [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5095), + [8541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5456), + [8543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5457), + [8545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, 0, 124), + [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [8555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 160), + [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [8559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 89), + [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), + [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), + [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5061), + [8569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 259), + [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [8577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 286), + [8579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 163), + [8581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 88), + [8583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 89), + [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5949), + [8589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 0), + [8591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 47), + [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [8595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 287), + [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5429), + [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [8633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1, 0, 0), + [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), + [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), + [8639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 289), + [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5959), + [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), + [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), + [8667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 290), + [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [8671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(218), + [8674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), + [8676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4727), + [8678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5814), + [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4942), + [8684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 284), + [8686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, 0, 0), + [8688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [8698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(3479), + [8701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), + [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), + [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), + [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), + [8715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 285), + [8717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 332), + [8719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 333), + [8721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 335), + [8723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 337), [8725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 338), - [8727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 339), - [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [8727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 340), + [8729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, 0, 0), [8731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 341), - [8733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5321), - [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [8751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2278), - [8754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), - [8756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 342), - [8758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 89), - [8760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 90), - [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [8764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5446), - [8766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, 0, 0), - [8768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(223), - [8771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), - [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5825), - [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [8777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2, 0, 0), - [8779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1, 0, 0), - [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5671), - [8785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4937), - [8787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5705), - [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), - [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5186), - [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [8797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 209), - [8799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 211), - [8801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 213), - [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), - [8807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, 0, 5), - [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), - [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), - [8813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 180), - [8815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 206), - [8817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 215), - [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), - [8821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 217), - [8823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), - [8825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 31), - [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [8839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 345), - [8841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 348), - [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5319), - [8845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 350), - [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), - [8851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 219), - [8853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 221), - [8855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 10, 0, 351), - [8857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), - [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), - [8861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 246), - [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5465), - [8871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(265), - [8874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 252), - [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), - [8878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), SHIFT_REPEAT(5162), - [8881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), - [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [8885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 287), - [8887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5201), - [8889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), - [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5558), - [8893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 288), - [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [8899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 290), - [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5508), - [8905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 233), SHIFT_REPEAT(2747), - [8908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 233), - [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), - [8914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 2, 0, 60), - [8916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 291), - [8918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, 0, 0), - [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [8926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 285), - [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), - [8930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [8932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 247), - [8934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(567), - [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [8941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 286), - [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), - [8947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(916), - [8950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), - [8952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 3, 0, 0), - [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [8958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(2427), - [8961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), - [8963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, 0, 98), - [8965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 201), - [8967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 198), - [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [8977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, 0, 5), - [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [8985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 154), - [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [9019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 62), - [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [9033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), - [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), - [9037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1, 0, 0), - [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), - [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5958), - [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [9057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 151), - [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4937), - [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), - [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5967), - [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), - [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), - [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5817), - [9121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 131), - [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [9127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_parameter, 2, 0, 32), - [9129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2, 0, 0), - [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [9135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 38), - [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), - [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), - [9147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 2, 0, 60), - [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), - [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [9155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, 0, 151), - [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [9159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), - [9167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 136), - [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [9177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, 0, 31), - [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [9187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), - [9193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), - [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), - [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [9215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2, 0, 0), - [9217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), - [9219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [9221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [9223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), - [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [9227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), - [9229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), - [9231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, 0, 156), - [9233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_tuple_parameter, 3, 0, 89), - [9235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), - [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5707), - [9239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 4, 0, 198), - [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [9277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 96), - [9279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 182), - [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [9287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), - [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5761), - [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), - [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), - [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5811), - [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), - [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5961), - [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [9351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [9353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [9355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [9357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [9359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [9361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [9363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [9365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [9367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5983), - [9369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [9371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), - [9373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [9375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [9377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), - [9379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [9381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [9383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [9385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [9387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [9389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [9391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [9393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [9395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [9397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [9399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3, 0, 0), - [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [9403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [9405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [9407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2, 0, 0), - [9409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [9411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [9413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), - [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), - [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [9419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, 0, 0), - [9421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [9423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [9425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [9427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [9429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [9431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [9433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [9435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [9439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), - [9441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5974), - [9443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [9447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), - [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [9451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [9455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [9457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [9459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), - [9461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [9463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), - [9465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [9467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [9471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), - [9473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), - [9475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5363), - [9477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [9479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [9481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [9483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [9485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [9487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [9489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), - [9491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [9493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [9495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [9497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [9499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [9501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [9513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), - [9515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [9517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), - [9519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [9521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3, 0, 0), - [9523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [9525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [9527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [9529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [9531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), - [9533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [9535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5428), - [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [9553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [9557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5462), - [9559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [9563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5674), - [9565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), - [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [9571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5675), - [9573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [9581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [9585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, 0, 0), - [9587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [9591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [9595] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [9599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [9601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [9603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5912), - [9605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [9607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [9609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [9611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [9613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [9615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [9617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [9619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [9621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [9623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [9627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [9629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [9631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [9633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [9635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [9637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [9639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [9641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5516), - [9643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5821), - [9645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [9647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [9649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), - [9651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [9653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [9655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [9657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3, 0, 0), - [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [9665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5705), - [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [9671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [9673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [9675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), - [9677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [9679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5813), - [9681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [9683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5436), - [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [9689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [9691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [9693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [9695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [9697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [9701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [9705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [9707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [9709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [9711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [9713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [9715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5861), - [9717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [9719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [9721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [9723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5595), - [9725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [9727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [9729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [9731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [9733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5698), - [9735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [9737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2, 0, 0), - [9739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5751), - [9741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [9743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [9745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [9747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [9749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [9751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [9753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [9755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [9757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), - [9761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, 0, 0), - [9763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [9765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [9767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [9769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [9771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), - [9775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [9777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [9779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), - [9781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [9783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), - [9785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), - [9787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [9789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [9791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [9793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [9795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [9801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [9803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), - [9805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [9807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [9809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [9811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [9813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), - [9815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [9819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [9821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), - [9823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [9825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [9827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [9829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [9831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [9833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), - [9835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [9837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), - [9843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [9847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5690), - [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), - [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [9865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [9867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [9869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [9871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [9875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [9877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5334), - [9879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), - [9881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [9883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), - [9887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [9889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), - [9891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [9893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [9895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5693), - [9897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [9899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), - [9901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [9903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [9905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [9907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [9909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [9911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5772), - [9913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [9915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [9917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [9919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5644), - [9921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [9923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [9925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [9927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [9929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), - [9931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [9933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5947), - [9935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [9937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), - [9939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [9941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), - [9943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [9945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [9947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [8737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 208), + [8739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 210), + [8741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 212), + [8743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 31), + [8745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 179), + [8747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 205), + [8749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 214), + [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [8753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 216), + [8755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2, 0, 0), + [8757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), + [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), + [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), + [8765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, 0, 5), + [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), + [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), + [8771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 218), + [8773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 220), + [8775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 344), + [8777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 311), + [8779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 346), + [8781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 347), + [8783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 314), + [8785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 349), + [8787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, 0, 84), + [8789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 316), + [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), + [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), + [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [8799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 317), + [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), + [8805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), + [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [8813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3, 0, 0), + [8815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 10, 0, 350), + [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), + [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [8821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5291), + [8823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5293), + [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), + [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), + [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [8831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(916), + [8834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), + [8836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 7, 0, 309), + [8838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), SHIFT_REPEAT(3459), + [8841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), + [8843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 3, 0, 0), + [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [8855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 232), SHIFT_REPEAT(2761), + [8858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 232), + [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), + [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5391), + [8864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), + [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5552), + [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5519), + [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [8878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1, 0, 0), + [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), + [8882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(265), + [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), + [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), + [8889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(519), + [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), + [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [8904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 247), + [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), + [8908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 249), + [8910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 250), + [8912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 251), + [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [8918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [8920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 245), + [8922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 246), + [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), + [8926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, 0, 150), + [8928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 95), + [8930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, 0, 97), + [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [8940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 2, 0, 59), + [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [8960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 4, 0, 197), + [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [8996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 200), + [8998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 197), + [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), + [9002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1, 0, 0), + [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), + [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [9022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 38), + [9024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2, 0, 0), + [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), + [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), + [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), + [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5778), + [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), + [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5946), + [9082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_parameter, 2, 0, 32), + [9084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2, 0, 0), + [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), + [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), + [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5955), + [9094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, 0, 5), + [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [9116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, 0, 155), + [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), + [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), + [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), + [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [9142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 153), + [9144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 150), + [9146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_tuple_parameter, 3, 0, 88), + [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), + [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), + [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), + [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [9176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), + [9178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 130), + [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [9182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3845), + [9184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 61), + [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), + [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), + [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), + [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), + [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), + [9200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 181), + [9202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 135), + [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [9232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, 0, 31), + [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), + [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [9266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2, 0, 0), + [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), + [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), + [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), + [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), + [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5621), + [9336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5971), + [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), + [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), + [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), + [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), + [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), + [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), + [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), + [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), + [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5466), + [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), + [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [9450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3, 0, 0), + [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [9468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, 0, 0), + [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [9482] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5822), + [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [9512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5976), + [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [9524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, 0, 0), + [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), + [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [9532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), + [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), + [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5652), + [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [9574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), + [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5463), + [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), + [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [9588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [9590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2, 0, 0), + [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [9614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5874), + [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5695), + [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5679), + [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), + [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), + [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5378), + [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), + [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [9656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [9660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [9666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [9668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [9670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5935), + [9672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [9674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [9676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [9678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [9680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [9688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [9700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), + [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5961), + [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [9732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [9740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [9754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5303), + [9760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5947), + [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), + [9768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [9770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [9776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [9784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [9786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5750), + [9788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [9792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [9794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), + [9796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [9798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [9806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [9808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [9810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [9812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [9814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), + [9816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5099), + [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [9824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [9828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [9830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), + [9832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [9834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [9836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), + [9838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [9840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [9842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), + [9844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), + [9846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [9848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5814), + [9850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), + [9852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [9854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), + [9856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [9858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), + [9860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [9862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [9864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5866), + [9866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, 0, 0), + [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [9870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [9872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [9874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [9876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), + [9878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5711), + [9880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [9882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [9884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [9886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [9888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [9892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [9894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5815), + [9898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3, 0, 0), + [9900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), + [9902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3, 0, 0), + [9904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [9906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), + [9908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), }; enum ts_external_scanner_symbol_identifiers { diff --git a/typescript/src/grammar.json b/typescript/src/grammar.json index 3413131b..3ac060d9 100644 --- a/typescript/src/grammar.json +++ b/typescript/src/grammar.json @@ -2067,10 +2067,6 @@ "type": "SYMBOL", "name": "primary_expression" }, - { - "type": "SYMBOL", - "name": "glimmer_template" - }, { "type": "SYMBOL", "name": "assignment_expression" @@ -2748,76 +2744,6 @@ } ] }, - "glimmer_template": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "open_tag", - "content": { - "type": "SYMBOL", - "name": "glimmer_opening_tag" - } - }, - { - "type": "FIELD", - "name": "content", - "content": { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_glimmer_template_content" - } - } - }, - { - "type": "FIELD", - "name": "close_tag", - "content": { - "type": "SYMBOL", - "name": "glimmer_closing_tag" - } - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "open_tag", - "content": { - "type": "SYMBOL", - "name": "glimmer_opening_tag" - } - }, - { - "type": "FIELD", - "name": "close_tag", - "content": { - "type": "SYMBOL", - "name": "glimmer_closing_tag" - } - } - ] - } - ] - }, - "_glimmer_template_content": { - "type": "PATTERN", - "value": ".{1,}" - }, - "glimmer_opening_tag": { - "type": "STRING", - "value": "" - }, "_jsx_element": { "type": "CHOICE", "members": [ diff --git a/typescript/src/node-types.json b/typescript/src/node-types.json index 224ccd71..cc98309c 100644 --- a/typescript/src/node-types.json +++ b/typescript/src/node-types.json @@ -85,10 +85,6 @@ "type": "binary_expression", "named": true }, - { - "type": "glimmer_template", - "named": true - }, { "type": "instantiation_expression", "named": true @@ -2717,32 +2713,6 @@ } } }, - { - "type": "glimmer_template", - "named": true, - "fields": { - "close_tag": { - "multiple": false, - "required": true, - "types": [ - { - "type": "glimmer_closing_tag", - "named": true - } - ] - }, - "open_tag": { - "multiple": false, - "required": true, - "types": [ - { - "type": "glimmer_opening_tag", - "named": true - } - ] - } - } - }, { "type": "identifier", "named": true, @@ -5777,14 +5747,6 @@ "type": "get", "named": false }, - { - "type": "glimmer_closing_tag", - "named": true - }, - { - "type": "glimmer_opening_tag", - "named": true - }, { "type": "global", "named": false @@ -5863,11 +5825,11 @@ }, { "type": "number", - "named": false + "named": true }, { "type": "number", - "named": true + "named": false }, { "type": "object", diff --git a/typescript/src/parser.c b/typescript/src/parser.c index d0801b52..a88f8e15 100644 --- a/typescript/src/parser.c +++ b/typescript/src/parser.c @@ -5,15 +5,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 5882 +#define STATE_COUNT 5870 #define LARGE_STATE_COUNT 1193 -#define SYMBOL_COUNT 381 +#define SYMBOL_COUNT 376 #define ALIAS_COUNT 7 -#define TOKEN_COUNT 169 +#define TOKEN_COUNT 166 #define EXTERNAL_TOKEN_COUNT 10 -#define FIELD_COUNT 43 +#define FIELD_COUNT 40 #define MAX_ALIAS_SEQUENCE_LENGTH 10 -#define PRODUCTION_ID_COUNT 342 +#define PRODUCTION_ID_COUNT 340 enum ts_symbol_identifiers { sym_identifier = 1, @@ -62,347 +62,342 @@ enum ts_symbol_identifiers { anon_sym_yield = 44, anon_sym_LBRACK = 45, anon_sym_RBRACK = 46, - sym__glimmer_template_content = 47, - sym_glimmer_opening_tag = 48, - sym_glimmer_closing_tag = 49, - anon_sym_DOT = 50, - anon_sym_class = 51, - anon_sym_async = 52, - anon_sym_function = 53, - anon_sym_EQ_GT = 54, - anon_sym_QMARK_DOT = 55, - anon_sym_new = 56, - anon_sym_using = 57, - anon_sym_PLUS_EQ = 58, - anon_sym_DASH_EQ = 59, - anon_sym_STAR_EQ = 60, - anon_sym_SLASH_EQ = 61, - anon_sym_PERCENT_EQ = 62, - anon_sym_CARET_EQ = 63, - anon_sym_AMP_EQ = 64, - anon_sym_PIPE_EQ = 65, - anon_sym_GT_GT_EQ = 66, - anon_sym_GT_GT_GT_EQ = 67, - anon_sym_LT_LT_EQ = 68, - anon_sym_STAR_STAR_EQ = 69, - anon_sym_AMP_AMP_EQ = 70, - anon_sym_PIPE_PIPE_EQ = 71, - anon_sym_QMARK_QMARK_EQ = 72, - anon_sym_DOT_DOT_DOT = 73, - anon_sym_AMP_AMP = 74, - anon_sym_PIPE_PIPE = 75, - anon_sym_GT_GT = 76, - anon_sym_GT_GT_GT = 77, - anon_sym_LT_LT = 78, - anon_sym_AMP = 79, - anon_sym_CARET = 80, - anon_sym_PIPE = 81, - anon_sym_PLUS = 82, - anon_sym_DASH = 83, - anon_sym_SLASH = 84, - anon_sym_PERCENT = 85, - anon_sym_STAR_STAR = 86, - anon_sym_LT = 87, - anon_sym_LT_EQ = 88, - anon_sym_EQ_EQ = 89, - anon_sym_EQ_EQ_EQ = 90, - anon_sym_BANG_EQ = 91, - anon_sym_BANG_EQ_EQ = 92, - anon_sym_GT_EQ = 93, - anon_sym_GT = 94, - anon_sym_QMARK_QMARK = 95, - anon_sym_instanceof = 96, - anon_sym_TILDE = 97, - anon_sym_void = 98, - anon_sym_delete = 99, - anon_sym_PLUS_PLUS = 100, - anon_sym_DASH_DASH = 101, - anon_sym_DQUOTE = 102, - anon_sym_SQUOTE = 103, - sym_unescaped_double_string_fragment = 104, - sym_unescaped_single_string_fragment = 105, - sym_escape_sequence = 106, - sym_comment = 107, - anon_sym_BQUOTE = 108, - anon_sym_DOLLAR_LBRACE = 109, - anon_sym_SLASH2 = 110, - sym_regex_pattern = 111, - sym_regex_flags = 112, - sym_number = 113, - sym_private_property_identifier = 114, - anon_sym_target = 115, - anon_sym_meta = 116, - sym_this = 117, - sym_super = 118, - sym_true = 119, - sym_false = 120, - sym_null = 121, - sym_undefined = 122, - anon_sym_AT = 123, - anon_sym_static = 124, - anon_sym_readonly = 125, - anon_sym_get = 126, - anon_sym_set = 127, - anon_sym_QMARK = 128, - anon_sym_declare = 129, - anon_sym_public = 130, - anon_sym_private = 131, - anon_sym_protected = 132, - anon_sym_override = 133, - anon_sym_module = 134, - anon_sym_any = 135, - anon_sym_number = 136, - anon_sym_boolean = 137, - anon_sym_string = 138, - anon_sym_symbol = 139, - anon_sym_object = 140, - anon_sym_abstract = 141, - anon_sym_accessor = 142, - anon_sym_satisfies = 143, - anon_sym_require = 144, - anon_sym_extends = 145, - anon_sym_implements = 146, - anon_sym_global = 147, - anon_sym_interface = 148, - anon_sym_enum = 149, - anon_sym_DASH_QMARK_COLON = 150, - anon_sym_PLUS_QMARK_COLON = 151, - anon_sym_QMARK_COLON = 152, - anon_sym_asserts = 153, - anon_sym_infer = 154, - anon_sym_is = 155, - anon_sym_keyof = 156, - anon_sym_unique = 157, - anon_sym_unknown = 158, - anon_sym_never = 159, - anon_sym_LBRACE_PIPE = 160, - anon_sym_PIPE_RBRACE = 161, - sym__automatic_semicolon = 162, - sym__template_chars = 163, - sym__ternary_qmark = 164, - sym_html_comment = 165, - sym_jsx_text = 166, - sym__function_signature_automatic_semicolon = 167, - sym___error_recovery = 168, - sym_program = 169, - sym_export_statement = 170, - sym_namespace_export = 171, - sym_export_clause = 172, - sym_export_specifier = 173, - sym__module_export_name = 174, - sym_declaration = 175, - sym_import = 176, - sym_import_statement = 177, - sym_import_clause = 178, - sym__from_clause = 179, - sym_namespace_import = 180, - sym_named_imports = 181, - sym_import_specifier = 182, - sym_import_attribute = 183, - sym_statement = 184, - sym_expression_statement = 185, - sym_variable_declaration = 186, - sym_lexical_declaration = 187, - sym_variable_declarator = 188, - sym_statement_block = 189, - sym_else_clause = 190, - sym_if_statement = 191, - sym_switch_statement = 192, - sym_for_statement = 193, - sym_for_in_statement = 194, - sym__for_header = 195, - sym_while_statement = 196, - sym_do_statement = 197, - sym_try_statement = 198, - sym_with_statement = 199, - sym_break_statement = 200, - sym_continue_statement = 201, - sym_debugger_statement = 202, - sym_return_statement = 203, - sym_throw_statement = 204, - sym_empty_statement = 205, - sym_labeled_statement = 206, - sym_switch_body = 207, - sym_switch_case = 208, - sym_switch_default = 209, - sym_catch_clause = 210, - sym_finally_clause = 211, - sym_parenthesized_expression = 212, - sym_expression = 213, - sym_primary_expression = 214, - sym_yield_expression = 215, - sym_object = 216, - sym_object_pattern = 217, - sym_assignment_pattern = 218, - sym_object_assignment_pattern = 219, - sym_array = 220, - sym_array_pattern = 221, - sym_glimmer_template = 222, - sym_nested_identifier = 223, - sym_class = 224, - sym_class_declaration = 225, - sym_class_heritage = 226, - sym_function_expression = 227, - sym_function_declaration = 228, - sym_generator_function = 229, - sym_generator_function_declaration = 230, - sym_arrow_function = 231, - sym__call_signature = 232, - sym__formal_parameter = 233, - sym_optional_chain = 234, - sym_call_expression = 235, - sym_new_expression = 236, - sym_await_expression = 237, - sym_member_expression = 238, - sym_subscript_expression = 239, - sym_assignment_expression = 240, - sym__augmented_assignment_lhs = 241, - sym_augmented_assignment_expression = 242, - sym__initializer = 243, - sym__destructuring_pattern = 244, - sym_spread_element = 245, - sym_ternary_expression = 246, - sym_binary_expression = 247, - sym_unary_expression = 248, - sym_update_expression = 249, - sym_sequence_expression = 250, - sym_string = 251, - sym_template_string = 252, - sym_template_substitution = 253, - sym_regex = 254, - sym_meta_property = 255, - sym_arguments = 256, - sym_decorator = 257, - sym_decorator_member_expression = 258, - sym_decorator_call_expression = 259, - sym_class_body = 260, - sym_formal_parameters = 261, - sym_class_static_block = 262, - sym_pattern = 263, - sym_rest_pattern = 264, - sym_method_definition = 265, - sym_pair = 266, - sym_pair_pattern = 267, - sym__property_name = 268, - sym_computed_property_name = 269, - sym_public_field_definition = 270, - sym__import_identifier = 271, - sym_non_null_expression = 272, - sym_method_signature = 273, - sym_abstract_method_signature = 274, - sym_function_signature = 275, - sym_decorator_parenthesized_expression = 276, - sym_type_assertion = 277, - sym_as_expression = 278, - sym_satisfies_expression = 279, - sym_instantiation_expression = 280, - sym_import_require_clause = 281, - sym_extends_clause = 282, - sym__extends_clause_single = 283, - sym_implements_clause = 284, - sym_ambient_declaration = 285, - sym_abstract_class_declaration = 286, - sym_module = 287, - sym_internal_module = 288, - sym__module = 289, - sym_import_alias = 290, - sym_nested_type_identifier = 291, - sym_interface_declaration = 292, - sym_extends_type_clause = 293, - sym_enum_declaration = 294, - sym_enum_body = 295, - sym_enum_assignment = 296, - sym_type_alias_declaration = 297, - sym_accessibility_modifier = 298, - sym_override_modifier = 299, - sym_required_parameter = 300, - sym_optional_parameter = 301, - sym__parameter_name = 302, - sym_omitting_type_annotation = 303, - sym_adding_type_annotation = 304, - sym_opting_type_annotation = 305, - sym_type_annotation = 306, - sym__type_query_member_expression_in_type_annotation = 307, - sym__type_query_call_expression_in_type_annotation = 308, - sym_asserts = 309, - sym_asserts_annotation = 310, - sym_type = 311, - sym_tuple_parameter = 312, - sym_optional_tuple_parameter = 313, - sym_optional_type = 314, - sym_rest_type = 315, - sym__tuple_type_member = 316, - sym_constructor_type = 317, - sym_primary_type = 318, - sym_template_type = 319, - sym_template_literal_type = 320, - sym_infer_type = 321, - sym_conditional_type = 322, - sym_generic_type = 323, - sym_type_predicate = 324, - sym_type_predicate_annotation = 325, - sym__type_query_member_expression = 326, - sym__type_query_subscript_expression = 327, - sym__type_query_call_expression = 328, - sym__type_query_instantiation_expression = 329, - sym_type_query = 330, - sym_index_type_query = 331, - sym_lookup_type = 332, - sym_mapped_type_clause = 333, - sym_literal_type = 334, - sym__number = 335, - sym_existential_type = 336, - sym_flow_maybe_type = 337, - sym_parenthesized_type = 338, - sym_predefined_type = 339, - sym_type_arguments = 340, - sym_object_type = 341, - sym_call_signature = 342, - sym_property_signature = 343, - sym_type_parameters = 344, - sym_type_parameter = 345, - sym_default_type = 346, - sym_constraint = 347, - sym_construct_signature = 348, - sym_index_signature = 349, - sym_array_type = 350, - sym_tuple_type = 351, - sym_readonly_type = 352, - sym_union_type = 353, - sym_intersection_type = 354, - sym_function_type = 355, - aux_sym_program_repeat1 = 356, - aux_sym_export_statement_repeat1 = 357, - aux_sym_export_clause_repeat1 = 358, - aux_sym_named_imports_repeat1 = 359, - aux_sym_variable_declaration_repeat1 = 360, - aux_sym_switch_body_repeat1 = 361, - aux_sym_object_repeat1 = 362, - aux_sym_object_pattern_repeat1 = 363, - aux_sym_array_repeat1 = 364, - aux_sym_array_pattern_repeat1 = 365, - aux_sym_glimmer_template_repeat1 = 366, - aux_sym_sequence_expression_repeat1 = 367, - aux_sym_string_repeat1 = 368, - aux_sym_string_repeat2 = 369, - aux_sym_template_string_repeat1 = 370, - aux_sym_class_body_repeat1 = 371, - aux_sym_formal_parameters_repeat1 = 372, - aux_sym_extends_clause_repeat1 = 373, - aux_sym_implements_clause_repeat1 = 374, - aux_sym_extends_type_clause_repeat1 = 375, - aux_sym_enum_body_repeat1 = 376, - aux_sym_template_literal_type_repeat1 = 377, - aux_sym_object_type_repeat1 = 378, - aux_sym_type_parameters_repeat1 = 379, - aux_sym_tuple_type_repeat1 = 380, - alias_sym_interface_body = 381, - alias_sym_property_identifier = 382, - alias_sym_shorthand_property_identifier = 383, - alias_sym_shorthand_property_identifier_pattern = 384, - alias_sym_statement_identifier = 385, - alias_sym_this_type = 386, - alias_sym_type_identifier = 387, + anon_sym_DOT = 47, + anon_sym_class = 48, + anon_sym_async = 49, + anon_sym_function = 50, + anon_sym_EQ_GT = 51, + anon_sym_QMARK_DOT = 52, + anon_sym_new = 53, + anon_sym_using = 54, + anon_sym_PLUS_EQ = 55, + anon_sym_DASH_EQ = 56, + anon_sym_STAR_EQ = 57, + anon_sym_SLASH_EQ = 58, + anon_sym_PERCENT_EQ = 59, + anon_sym_CARET_EQ = 60, + anon_sym_AMP_EQ = 61, + anon_sym_PIPE_EQ = 62, + anon_sym_GT_GT_EQ = 63, + anon_sym_GT_GT_GT_EQ = 64, + anon_sym_LT_LT_EQ = 65, + anon_sym_STAR_STAR_EQ = 66, + anon_sym_AMP_AMP_EQ = 67, + anon_sym_PIPE_PIPE_EQ = 68, + anon_sym_QMARK_QMARK_EQ = 69, + anon_sym_DOT_DOT_DOT = 70, + anon_sym_AMP_AMP = 71, + anon_sym_PIPE_PIPE = 72, + anon_sym_GT_GT = 73, + anon_sym_GT_GT_GT = 74, + anon_sym_LT_LT = 75, + anon_sym_AMP = 76, + anon_sym_CARET = 77, + anon_sym_PIPE = 78, + anon_sym_PLUS = 79, + anon_sym_DASH = 80, + anon_sym_SLASH = 81, + anon_sym_PERCENT = 82, + anon_sym_STAR_STAR = 83, + anon_sym_LT = 84, + anon_sym_LT_EQ = 85, + anon_sym_EQ_EQ = 86, + anon_sym_EQ_EQ_EQ = 87, + anon_sym_BANG_EQ = 88, + anon_sym_BANG_EQ_EQ = 89, + anon_sym_GT_EQ = 90, + anon_sym_GT = 91, + anon_sym_QMARK_QMARK = 92, + anon_sym_instanceof = 93, + anon_sym_TILDE = 94, + anon_sym_void = 95, + anon_sym_delete = 96, + anon_sym_PLUS_PLUS = 97, + anon_sym_DASH_DASH = 98, + anon_sym_DQUOTE = 99, + anon_sym_SQUOTE = 100, + sym_unescaped_double_string_fragment = 101, + sym_unescaped_single_string_fragment = 102, + sym_escape_sequence = 103, + sym_comment = 104, + anon_sym_BQUOTE = 105, + anon_sym_DOLLAR_LBRACE = 106, + anon_sym_SLASH2 = 107, + sym_regex_pattern = 108, + sym_regex_flags = 109, + sym_number = 110, + sym_private_property_identifier = 111, + anon_sym_target = 112, + anon_sym_meta = 113, + sym_this = 114, + sym_super = 115, + sym_true = 116, + sym_false = 117, + sym_null = 118, + sym_undefined = 119, + anon_sym_AT = 120, + anon_sym_static = 121, + anon_sym_readonly = 122, + anon_sym_get = 123, + anon_sym_set = 124, + anon_sym_QMARK = 125, + anon_sym_declare = 126, + anon_sym_public = 127, + anon_sym_private = 128, + anon_sym_protected = 129, + anon_sym_override = 130, + anon_sym_module = 131, + anon_sym_any = 132, + anon_sym_number = 133, + anon_sym_boolean = 134, + anon_sym_string = 135, + anon_sym_symbol = 136, + anon_sym_object = 137, + anon_sym_abstract = 138, + anon_sym_accessor = 139, + anon_sym_satisfies = 140, + anon_sym_require = 141, + anon_sym_extends = 142, + anon_sym_implements = 143, + anon_sym_global = 144, + anon_sym_interface = 145, + anon_sym_enum = 146, + anon_sym_DASH_QMARK_COLON = 147, + anon_sym_PLUS_QMARK_COLON = 148, + anon_sym_QMARK_COLON = 149, + anon_sym_asserts = 150, + anon_sym_infer = 151, + anon_sym_is = 152, + anon_sym_keyof = 153, + anon_sym_unique = 154, + anon_sym_unknown = 155, + anon_sym_never = 156, + anon_sym_LBRACE_PIPE = 157, + anon_sym_PIPE_RBRACE = 158, + sym__automatic_semicolon = 159, + sym__template_chars = 160, + sym__ternary_qmark = 161, + sym_html_comment = 162, + sym_jsx_text = 163, + sym__function_signature_automatic_semicolon = 164, + sym___error_recovery = 165, + sym_program = 166, + sym_export_statement = 167, + sym_namespace_export = 168, + sym_export_clause = 169, + sym_export_specifier = 170, + sym__module_export_name = 171, + sym_declaration = 172, + sym_import = 173, + sym_import_statement = 174, + sym_import_clause = 175, + sym__from_clause = 176, + sym_namespace_import = 177, + sym_named_imports = 178, + sym_import_specifier = 179, + sym_import_attribute = 180, + sym_statement = 181, + sym_expression_statement = 182, + sym_variable_declaration = 183, + sym_lexical_declaration = 184, + sym_variable_declarator = 185, + sym_statement_block = 186, + sym_else_clause = 187, + sym_if_statement = 188, + sym_switch_statement = 189, + sym_for_statement = 190, + sym_for_in_statement = 191, + sym__for_header = 192, + sym_while_statement = 193, + sym_do_statement = 194, + sym_try_statement = 195, + sym_with_statement = 196, + sym_break_statement = 197, + sym_continue_statement = 198, + sym_debugger_statement = 199, + sym_return_statement = 200, + sym_throw_statement = 201, + sym_empty_statement = 202, + sym_labeled_statement = 203, + sym_switch_body = 204, + sym_switch_case = 205, + sym_switch_default = 206, + sym_catch_clause = 207, + sym_finally_clause = 208, + sym_parenthesized_expression = 209, + sym_expression = 210, + sym_primary_expression = 211, + sym_yield_expression = 212, + sym_object = 213, + sym_object_pattern = 214, + sym_assignment_pattern = 215, + sym_object_assignment_pattern = 216, + sym_array = 217, + sym_array_pattern = 218, + sym_nested_identifier = 219, + sym_class = 220, + sym_class_declaration = 221, + sym_class_heritage = 222, + sym_function_expression = 223, + sym_function_declaration = 224, + sym_generator_function = 225, + sym_generator_function_declaration = 226, + sym_arrow_function = 227, + sym__call_signature = 228, + sym__formal_parameter = 229, + sym_optional_chain = 230, + sym_call_expression = 231, + sym_new_expression = 232, + sym_await_expression = 233, + sym_member_expression = 234, + sym_subscript_expression = 235, + sym_assignment_expression = 236, + sym__augmented_assignment_lhs = 237, + sym_augmented_assignment_expression = 238, + sym__initializer = 239, + sym__destructuring_pattern = 240, + sym_spread_element = 241, + sym_ternary_expression = 242, + sym_binary_expression = 243, + sym_unary_expression = 244, + sym_update_expression = 245, + sym_sequence_expression = 246, + sym_string = 247, + sym_template_string = 248, + sym_template_substitution = 249, + sym_regex = 250, + sym_meta_property = 251, + sym_arguments = 252, + sym_decorator = 253, + sym_decorator_member_expression = 254, + sym_decorator_call_expression = 255, + sym_class_body = 256, + sym_formal_parameters = 257, + sym_class_static_block = 258, + sym_pattern = 259, + sym_rest_pattern = 260, + sym_method_definition = 261, + sym_pair = 262, + sym_pair_pattern = 263, + sym__property_name = 264, + sym_computed_property_name = 265, + sym_public_field_definition = 266, + sym__import_identifier = 267, + sym_non_null_expression = 268, + sym_method_signature = 269, + sym_abstract_method_signature = 270, + sym_function_signature = 271, + sym_decorator_parenthesized_expression = 272, + sym_type_assertion = 273, + sym_as_expression = 274, + sym_satisfies_expression = 275, + sym_instantiation_expression = 276, + sym_import_require_clause = 277, + sym_extends_clause = 278, + sym__extends_clause_single = 279, + sym_implements_clause = 280, + sym_ambient_declaration = 281, + sym_abstract_class_declaration = 282, + sym_module = 283, + sym_internal_module = 284, + sym__module = 285, + sym_import_alias = 286, + sym_nested_type_identifier = 287, + sym_interface_declaration = 288, + sym_extends_type_clause = 289, + sym_enum_declaration = 290, + sym_enum_body = 291, + sym_enum_assignment = 292, + sym_type_alias_declaration = 293, + sym_accessibility_modifier = 294, + sym_override_modifier = 295, + sym_required_parameter = 296, + sym_optional_parameter = 297, + sym__parameter_name = 298, + sym_omitting_type_annotation = 299, + sym_adding_type_annotation = 300, + sym_opting_type_annotation = 301, + sym_type_annotation = 302, + sym__type_query_member_expression_in_type_annotation = 303, + sym__type_query_call_expression_in_type_annotation = 304, + sym_asserts = 305, + sym_asserts_annotation = 306, + sym_type = 307, + sym_tuple_parameter = 308, + sym_optional_tuple_parameter = 309, + sym_optional_type = 310, + sym_rest_type = 311, + sym__tuple_type_member = 312, + sym_constructor_type = 313, + sym_primary_type = 314, + sym_template_type = 315, + sym_template_literal_type = 316, + sym_infer_type = 317, + sym_conditional_type = 318, + sym_generic_type = 319, + sym_type_predicate = 320, + sym_type_predicate_annotation = 321, + sym__type_query_member_expression = 322, + sym__type_query_subscript_expression = 323, + sym__type_query_call_expression = 324, + sym__type_query_instantiation_expression = 325, + sym_type_query = 326, + sym_index_type_query = 327, + sym_lookup_type = 328, + sym_mapped_type_clause = 329, + sym_literal_type = 330, + sym__number = 331, + sym_existential_type = 332, + sym_flow_maybe_type = 333, + sym_parenthesized_type = 334, + sym_predefined_type = 335, + sym_type_arguments = 336, + sym_object_type = 337, + sym_call_signature = 338, + sym_property_signature = 339, + sym_type_parameters = 340, + sym_type_parameter = 341, + sym_default_type = 342, + sym_constraint = 343, + sym_construct_signature = 344, + sym_index_signature = 345, + sym_array_type = 346, + sym_tuple_type = 347, + sym_readonly_type = 348, + sym_union_type = 349, + sym_intersection_type = 350, + sym_function_type = 351, + aux_sym_program_repeat1 = 352, + aux_sym_export_statement_repeat1 = 353, + aux_sym_export_clause_repeat1 = 354, + aux_sym_named_imports_repeat1 = 355, + aux_sym_variable_declaration_repeat1 = 356, + aux_sym_switch_body_repeat1 = 357, + aux_sym_object_repeat1 = 358, + aux_sym_object_pattern_repeat1 = 359, + aux_sym_array_repeat1 = 360, + aux_sym_array_pattern_repeat1 = 361, + aux_sym_sequence_expression_repeat1 = 362, + aux_sym_string_repeat1 = 363, + aux_sym_string_repeat2 = 364, + aux_sym_template_string_repeat1 = 365, + aux_sym_class_body_repeat1 = 366, + aux_sym_formal_parameters_repeat1 = 367, + aux_sym_extends_clause_repeat1 = 368, + aux_sym_implements_clause_repeat1 = 369, + aux_sym_extends_type_clause_repeat1 = 370, + aux_sym_enum_body_repeat1 = 371, + aux_sym_template_literal_type_repeat1 = 372, + aux_sym_object_type_repeat1 = 373, + aux_sym_type_parameters_repeat1 = 374, + aux_sym_tuple_type_repeat1 = 375, + alias_sym_interface_body = 376, + alias_sym_property_identifier = 377, + alias_sym_shorthand_property_identifier = 378, + alias_sym_shorthand_property_identifier_pattern = 379, + alias_sym_statement_identifier = 380, + alias_sym_this_type = 381, + alias_sym_type_identifier = 382, }; static const char * const ts_symbol_names[] = { @@ -453,9 +448,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_yield] = "yield", [anon_sym_LBRACK] = "[", [anon_sym_RBRACK] = "]", - [sym__glimmer_template_content] = "_glimmer_template_content", - [sym_glimmer_opening_tag] = "glimmer_opening_tag", - [sym_glimmer_closing_tag] = "glimmer_closing_tag", [anon_sym_DOT] = ".", [anon_sym_class] = "class", [anon_sym_async] = "async", @@ -628,7 +620,6 @@ static const char * const ts_symbol_names[] = { [sym_object_assignment_pattern] = "object_assignment_pattern", [sym_array] = "array", [sym_array_pattern] = "array_pattern", - [sym_glimmer_template] = "glimmer_template", [sym_nested_identifier] = "nested_identifier", [sym_class] = "class", [sym_class_declaration] = "class_declaration", @@ -772,7 +763,6 @@ static const char * const ts_symbol_names[] = { [aux_sym_object_pattern_repeat1] = "object_pattern_repeat1", [aux_sym_array_repeat1] = "array_repeat1", [aux_sym_array_pattern_repeat1] = "array_pattern_repeat1", - [aux_sym_glimmer_template_repeat1] = "glimmer_template_repeat1", [aux_sym_sequence_expression_repeat1] = "sequence_expression_repeat1", [aux_sym_string_repeat1] = "string_repeat1", [aux_sym_string_repeat2] = "string_repeat2", @@ -844,9 +834,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_yield] = anon_sym_yield, [anon_sym_LBRACK] = anon_sym_LBRACK, [anon_sym_RBRACK] = anon_sym_RBRACK, - [sym__glimmer_template_content] = sym__glimmer_template_content, - [sym_glimmer_opening_tag] = sym_glimmer_opening_tag, - [sym_glimmer_closing_tag] = sym_glimmer_closing_tag, [anon_sym_DOT] = anon_sym_DOT, [anon_sym_class] = anon_sym_class, [anon_sym_async] = anon_sym_async, @@ -1019,7 +1006,6 @@ static const TSSymbol ts_symbol_map[] = { [sym_object_assignment_pattern] = sym_object_assignment_pattern, [sym_array] = sym_array, [sym_array_pattern] = sym_array_pattern, - [sym_glimmer_template] = sym_glimmer_template, [sym_nested_identifier] = sym_nested_identifier, [sym_class] = sym_class, [sym_class_declaration] = sym_class_declaration, @@ -1163,7 +1149,6 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_object_pattern_repeat1] = aux_sym_object_pattern_repeat1, [aux_sym_array_repeat1] = aux_sym_array_repeat1, [aux_sym_array_pattern_repeat1] = aux_sym_array_pattern_repeat1, - [aux_sym_glimmer_template_repeat1] = aux_sym_glimmer_template_repeat1, [aux_sym_sequence_expression_repeat1] = aux_sym_sequence_expression_repeat1, [aux_sym_string_repeat1] = aux_sym_string_repeat1, [aux_sym_string_repeat2] = aux_sym_string_repeat2, @@ -1376,18 +1361,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [sym__glimmer_template_content] = { - .visible = false, - .named = true, - }, - [sym_glimmer_opening_tag] = { - .visible = true, - .named = true, - }, - [sym_glimmer_closing_tag] = { - .visible = true, - .named = true, - }, [anon_sym_DOT] = { .visible = true, .named = false, @@ -2080,10 +2053,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_glimmer_template] = { - .visible = true, - .named = true, - }, [sym_nested_identifier] = { .visible = true, .named = true, @@ -2659,10 +2628,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_glimmer_template_repeat1] = { - .visible = false, - .named = false, - }, [aux_sym_sequence_expression_repeat1] = { .visible = false, .named = false, @@ -2755,44 +2720,41 @@ enum ts_field_identifiers { field_argument = 3, field_arguments = 4, field_body = 5, - field_close_tag = 6, - field_condition = 7, - field_consequence = 8, - field_constraint = 9, - field_constructor = 10, - field_content = 11, - field_declaration = 12, - field_decorator = 13, - field_finalizer = 14, - field_flags = 15, - field_function = 16, - field_handler = 17, - field_increment = 18, - field_index = 19, - field_index_type = 20, - field_initializer = 21, - field_key = 22, - field_kind = 23, - field_label = 24, - field_left = 25, - field_module = 26, - field_name = 27, - field_object = 28, - field_open_tag = 29, - field_operator = 30, - field_optional_chain = 31, - field_parameter = 32, - field_parameters = 33, - field_pattern = 34, - field_property = 35, - field_return_type = 36, - field_right = 37, - field_sign = 38, - field_source = 39, - field_type = 40, - field_type_arguments = 41, - field_type_parameters = 42, - field_value = 43, + field_condition = 6, + field_consequence = 7, + field_constraint = 8, + field_constructor = 9, + field_declaration = 10, + field_decorator = 11, + field_finalizer = 12, + field_flags = 13, + field_function = 14, + field_handler = 15, + field_increment = 16, + field_index = 17, + field_index_type = 18, + field_initializer = 19, + field_key = 20, + field_kind = 21, + field_label = 22, + field_left = 23, + field_module = 24, + field_name = 25, + field_object = 26, + field_operator = 27, + field_optional_chain = 28, + field_parameter = 29, + field_parameters = 30, + field_pattern = 31, + field_property = 32, + field_return_type = 33, + field_right = 34, + field_sign = 35, + field_source = 36, + field_type = 37, + field_type_arguments = 38, + field_type_parameters = 39, + field_value = 40, }; static const char * const ts_field_names[] = { @@ -2802,12 +2764,10 @@ static const char * const ts_field_names[] = { [field_argument] = "argument", [field_arguments] = "arguments", [field_body] = "body", - [field_close_tag] = "close_tag", [field_condition] = "condition", [field_consequence] = "consequence", [field_constraint] = "constraint", [field_constructor] = "constructor", - [field_content] = "content", [field_declaration] = "declaration", [field_decorator] = "decorator", [field_finalizer] = "finalizer", @@ -2825,7 +2785,6 @@ static const char * const ts_field_names[] = { [field_module] = "module", [field_name] = "name", [field_object] = "object", - [field_open_tag] = "open_tag", [field_operator] = "operator", [field_optional_chain] = "optional_chain", [field_parameter] = "parameter", @@ -2852,328 +2811,326 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [9] = {.index = 8, .length = 1}, [10] = {.index = 9, .length = 2}, [11] = {.index = 11, .length = 1}, - [12] = {.index = 12, .length = 2}, - [13] = {.index = 14, .length = 1}, - [15] = {.index = 3, .length = 1}, + [12] = {.index = 12, .length = 1}, + [14] = {.index = 3, .length = 1}, + [16] = {.index = 13, .length = 2}, [17] = {.index = 15, .length = 2}, [18] = {.index = 17, .length = 2}, [19] = {.index = 19, .length = 2}, [20] = {.index = 21, .length = 2}, - [21] = {.index = 23, .length = 2}, - [22] = {.index = 25, .length = 1}, + [21] = {.index = 23, .length = 1}, + [22] = {.index = 24, .length = 2}, [23] = {.index = 26, .length = 2}, [24] = {.index = 28, .length = 2}, - [25] = {.index = 30, .length = 2}, - [26] = {.index = 32, .length = 1}, + [25] = {.index = 30, .length = 1}, + [26] = {.index = 31, .length = 2}, [27] = {.index = 33, .length = 2}, [28] = {.index = 35, .length = 2}, [29] = {.index = 37, .length = 2}, - [30] = {.index = 39, .length = 2}, - [34] = {.index = 41, .length = 1}, + [33] = {.index = 39, .length = 1}, + [34] = {.index = 40, .length = 2}, [35] = {.index = 42, .length = 2}, [36] = {.index = 44, .length = 2}, - [37] = {.index = 46, .length = 2}, - [38] = {.index = 48, .length = 1}, + [37] = {.index = 46, .length = 1}, + [38] = {.index = 47, .length = 2}, [39] = {.index = 49, .length = 2}, - [40] = {.index = 51, .length = 2}, - [41] = {.index = 53, .length = 6}, - [42] = {.index = 59, .length = 1}, - [43] = {.index = 60, .length = 3}, - [44] = {.index = 63, .length = 3}, + [40] = {.index = 51, .length = 6}, + [41] = {.index = 57, .length = 1}, + [42] = {.index = 58, .length = 3}, + [43] = {.index = 61, .length = 3}, + [44] = {.index = 64, .length = 2}, [45] = {.index = 66, .length = 2}, [46] = {.index = 68, .length = 2}, [47] = {.index = 70, .length = 2}, - [48] = {.index = 72, .length = 2}, - [49] = {.index = 74, .length = 1}, - [50] = {.index = 75, .length = 3}, - [51] = {.index = 78, .length = 2}, - [52] = {.index = 80, .length = 1}, - [53] = {.index = 81, .length = 2}, - [54] = {.index = 83, .length = 1}, - [55] = {.index = 84, .length = 2}, - [56] = {.index = 86, .length = 4}, - [57] = {.index = 90, .length = 2}, + [48] = {.index = 72, .length = 1}, + [49] = {.index = 73, .length = 2}, + [50] = {.index = 75, .length = 1}, + [51] = {.index = 76, .length = 2}, + [52] = {.index = 78, .length = 1}, + [53] = {.index = 79, .length = 2}, + [54] = {.index = 81, .length = 4}, + [55] = {.index = 85, .length = 2}, + [56] = {.index = 87, .length = 2}, + [57] = {.index = 89, .length = 3}, [58] = {.index = 92, .length = 2}, - [59] = {.index = 94, .length = 3}, - [60] = {.index = 97, .length = 2}, - [61] = {.index = 99, .length = 2}, - [62] = {.index = 101, .length = 2}, - [63] = {.index = 103, .length = 2}, - [64] = {.index = 105, .length = 1}, - [65] = {.index = 106, .length = 2}, - [66] = {.index = 108, .length = 2}, - [67] = {.index = 110, .length = 2}, - [70] = {.index = 106, .length = 2}, - [71] = {.index = 112, .length = 4}, - [72] = {.index = 33, .length = 2}, - [73] = {.index = 37, .length = 2}, - [74] = {.index = 116, .length = 3}, - [75] = {.index = 78, .length = 2}, - [76] = {.index = 78, .length = 2}, - [77] = {.index = 119, .length = 2}, - [78] = {.index = 119, .length = 2}, - [79] = {.index = 121, .length = 3}, - [80] = {.index = 121, .length = 3}, - [81] = {.index = 124, .length = 3}, - [82] = {.index = 127, .length = 2}, - [83] = {.index = 129, .length = 4}, - [84] = {.index = 133, .length = 3}, - [85] = {.index = 136, .length = 2}, - [86] = {.index = 138, .length = 2}, - [87] = {.index = 140, .length = 1}, - [88] = {.index = 141, .length = 1}, - [89] = {.index = 105, .length = 1}, - [90] = {.index = 119, .length = 2}, - [91] = {.index = 33, .length = 2}, - [92] = {.index = 142, .length = 2}, - [93] = {.index = 144, .length = 5}, - [94] = {.index = 149, .length = 1}, - [95] = {.index = 150, .length = 1}, + [59] = {.index = 94, .length = 2}, + [60] = {.index = 96, .length = 2}, + [61] = {.index = 98, .length = 2}, + [62] = {.index = 100, .length = 1}, + [63] = {.index = 101, .length = 2}, + [64] = {.index = 103, .length = 2}, + [65] = {.index = 105, .length = 2}, + [68] = {.index = 101, .length = 2}, + [69] = {.index = 107, .length = 4}, + [70] = {.index = 31, .length = 2}, + [71] = {.index = 35, .length = 2}, + [72] = {.index = 111, .length = 3}, + [73] = {.index = 73, .length = 2}, + [74] = {.index = 73, .length = 2}, + [75] = {.index = 114, .length = 2}, + [76] = {.index = 114, .length = 2}, + [77] = {.index = 116, .length = 3}, + [78] = {.index = 116, .length = 3}, + [79] = {.index = 119, .length = 3}, + [80] = {.index = 122, .length = 2}, + [81] = {.index = 124, .length = 4}, + [82] = {.index = 128, .length = 3}, + [83] = {.index = 131, .length = 2}, + [84] = {.index = 133, .length = 2}, + [85] = {.index = 135, .length = 1}, + [86] = {.index = 136, .length = 1}, + [87] = {.index = 100, .length = 1}, + [88] = {.index = 114, .length = 2}, + [89] = {.index = 31, .length = 2}, + [90] = {.index = 137, .length = 2}, + [91] = {.index = 139, .length = 5}, + [92] = {.index = 144, .length = 1}, + [93] = {.index = 145, .length = 1}, + [94] = {.index = 146, .length = 2}, + [95] = {.index = 148, .length = 3}, [96] = {.index = 151, .length = 2}, [97] = {.index = 153, .length = 3}, - [98] = {.index = 156, .length = 2}, - [99] = {.index = 158, .length = 3}, - [100] = {.index = 161, .length = 6}, - [101] = {.index = 167, .length = 1}, - [102] = {.index = 168, .length = 1}, - [103] = {.index = 169, .length = 3}, - [104] = {.index = 172, .length = 3}, - [105] = {.index = 175, .length = 4}, - [106] = {.index = 179, .length = 2}, - [107] = {.index = 181, .length = 2}, - [108] = {.index = 183, .length = 3}, - [109] = {.index = 186, .length = 4}, - [110] = {.index = 190, .length = 1}, - [111] = {.index = 191, .length = 2}, - [112] = {.index = 193, .length = 1}, + [98] = {.index = 156, .length = 6}, + [99] = {.index = 162, .length = 1}, + [100] = {.index = 163, .length = 1}, + [101] = {.index = 164, .length = 3}, + [102] = {.index = 167, .length = 3}, + [103] = {.index = 170, .length = 4}, + [104] = {.index = 174, .length = 2}, + [105] = {.index = 176, .length = 2}, + [106] = {.index = 178, .length = 3}, + [107] = {.index = 181, .length = 4}, + [108] = {.index = 185, .length = 1}, + [109] = {.index = 186, .length = 2}, + [110] = {.index = 188, .length = 1}, + [111] = {.index = 189, .length = 2}, + [112] = {.index = 191, .length = 3}, [113] = {.index = 194, .length = 2}, - [114] = {.index = 196, .length = 3}, - [115] = {.index = 199, .length = 2}, - [116] = {.index = 201, .length = 4}, - [117] = {.index = 205, .length = 2}, - [118] = {.index = 207, .length = 2}, - [119] = {.index = 209, .length = 4}, - [120] = {.index = 207, .length = 2}, - [121] = {.index = 213, .length = 4}, - [122] = {.index = 217, .length = 4}, - [123] = {.index = 221, .length = 5}, - [124] = {.index = 226, .length = 3}, - [125] = {.index = 229, .length = 2}, - [126] = {.index = 229, .length = 2}, - [127] = {.index = 231, .length = 2}, - [128] = {.index = 233, .length = 1}, - [129] = {.index = 234, .length = 2}, - [130] = {.index = 236, .length = 4}, - [131] = {.index = 240, .length = 4}, - [132] = {.index = 244, .length = 4}, - [133] = {.index = 248, .length = 2}, - [134] = {.index = 250, .length = 2}, + [114] = {.index = 196, .length = 4}, + [115] = {.index = 200, .length = 2}, + [116] = {.index = 202, .length = 2}, + [117] = {.index = 204, .length = 4}, + [118] = {.index = 202, .length = 2}, + [119] = {.index = 208, .length = 4}, + [120] = {.index = 212, .length = 4}, + [121] = {.index = 216, .length = 5}, + [122] = {.index = 221, .length = 3}, + [123] = {.index = 224, .length = 2}, + [124] = {.index = 224, .length = 2}, + [125] = {.index = 226, .length = 2}, + [126] = {.index = 228, .length = 1}, + [127] = {.index = 229, .length = 2}, + [128] = {.index = 231, .length = 4}, + [129] = {.index = 235, .length = 4}, + [130] = {.index = 239, .length = 4}, + [131] = {.index = 243, .length = 2}, + [132] = {.index = 245, .length = 2}, + [133] = {.index = 247, .length = 2}, + [134] = {.index = 249, .length = 3}, [135] = {.index = 252, .length = 2}, - [136] = {.index = 254, .length = 3}, - [137] = {.index = 257, .length = 2}, - [138] = {.index = 259, .length = 4}, - [139] = {.index = 259, .length = 4}, - [140] = {.index = 263, .length = 4}, - [141] = {.index = 263, .length = 4}, - [142] = {.index = 156, .length = 2}, - [143] = {.index = 267, .length = 1}, - [144] = {.index = 267, .length = 1}, - [145] = {.index = 194, .length = 2}, - [146] = {.index = 196, .length = 3}, + [136] = {.index = 254, .length = 4}, + [137] = {.index = 254, .length = 4}, + [138] = {.index = 258, .length = 4}, + [139] = {.index = 258, .length = 4}, + [140] = {.index = 151, .length = 2}, + [141] = {.index = 262, .length = 1}, + [142] = {.index = 262, .length = 1}, + [143] = {.index = 189, .length = 2}, + [144] = {.index = 191, .length = 3}, + [145] = {.index = 263, .length = 2}, + [146] = {.index = 265, .length = 3}, [147] = {.index = 268, .length = 2}, [148] = {.index = 270, .length = 3}, [149] = {.index = 273, .length = 2}, [150] = {.index = 275, .length = 3}, - [151] = {.index = 278, .length = 2}, - [152] = {.index = 280, .length = 3}, - [153] = {.index = 283, .length = 1}, - [154] = {.index = 284, .length = 2}, - [155] = {.index = 286, .length = 2}, - [156] = {.index = 288, .length = 5}, - [157] = {.index = 284, .length = 2}, - [158] = {.index = 293, .length = 1}, - [159] = {.index = 294, .length = 4}, - [160] = {.index = 298, .length = 2}, - [161] = {.index = 300, .length = 1}, - [162] = {.index = 301, .length = 2}, - [163] = {.index = 303, .length = 2}, - [164] = {.index = 305, .length = 2}, - [165] = {.index = 307, .length = 4}, - [166] = {.index = 311, .length = 2}, - [167] = {.index = 313, .length = 3}, - [168] = {.index = 316, .length = 3}, - [169] = {.index = 319, .length = 3}, - [170] = {.index = 322, .length = 4}, - [171] = {.index = 326, .length = 4}, - [172] = {.index = 330, .length = 4}, - [173] = {.index = 334, .length = 5}, - [174] = {.index = 339, .length = 2}, - [175] = {.index = 341, .length = 2}, - [176] = {.index = 343, .length = 1}, - [177] = {.index = 344, .length = 4}, - [178] = {.index = 344, .length = 4}, + [151] = {.index = 278, .length = 1}, + [152] = {.index = 279, .length = 2}, + [153] = {.index = 281, .length = 2}, + [154] = {.index = 283, .length = 5}, + [155] = {.index = 279, .length = 2}, + [156] = {.index = 288, .length = 1}, + [157] = {.index = 289, .length = 4}, + [158] = {.index = 293, .length = 2}, + [159] = {.index = 295, .length = 1}, + [160] = {.index = 296, .length = 2}, + [161] = {.index = 298, .length = 2}, + [162] = {.index = 300, .length = 2}, + [163] = {.index = 302, .length = 4}, + [164] = {.index = 306, .length = 2}, + [165] = {.index = 308, .length = 3}, + [166] = {.index = 311, .length = 3}, + [167] = {.index = 314, .length = 3}, + [168] = {.index = 317, .length = 4}, + [169] = {.index = 321, .length = 4}, + [170] = {.index = 325, .length = 4}, + [171] = {.index = 329, .length = 5}, + [172] = {.index = 334, .length = 2}, + [173] = {.index = 336, .length = 2}, + [174] = {.index = 338, .length = 1}, + [175] = {.index = 339, .length = 4}, + [176] = {.index = 339, .length = 4}, + [177] = {.index = 343, .length = 3}, + [178] = {.index = 346, .length = 2}, [179] = {.index = 348, .length = 3}, [180] = {.index = 351, .length = 2}, [181] = {.index = 353, .length = 3}, [182] = {.index = 356, .length = 2}, - [183] = {.index = 358, .length = 3}, - [184] = {.index = 361, .length = 2}, - [185] = {.index = 361, .length = 2}, - [186] = {.index = 319, .length = 3}, - [187] = {.index = 363, .length = 3}, - [188] = {.index = 366, .length = 3}, - [189] = {.index = 151, .length = 2}, - [190] = {.index = 369, .length = 2}, - [191] = {.index = 371, .length = 3}, - [192] = {.index = 374, .length = 4}, - [193] = {.index = 378, .length = 3}, + [183] = {.index = 356, .length = 2}, + [184] = {.index = 314, .length = 3}, + [185] = {.index = 358, .length = 3}, + [186] = {.index = 361, .length = 3}, + [187] = {.index = 146, .length = 2}, + [188] = {.index = 364, .length = 2}, + [189] = {.index = 366, .length = 3}, + [190] = {.index = 369, .length = 4}, + [191] = {.index = 373, .length = 3}, + [192] = {.index = 376, .length = 3}, + [193] = {.index = 379, .length = 2}, [194] = {.index = 381, .length = 3}, - [195] = {.index = 384, .length = 2}, - [196] = {.index = 386, .length = 3}, - [197] = {.index = 389, .length = 5}, - [198] = {.index = 384, .length = 2}, - [199] = {.index = 394, .length = 3}, - [200] = {.index = 394, .length = 3}, - [201] = {.index = 397, .length = 3}, - [202] = {.index = 400, .length = 2}, - [203] = {.index = 402, .length = 4}, - [204] = {.index = 151, .length = 2}, - [205] = {.index = 406, .length = 1}, - [206] = {.index = 407, .length = 2}, - [207] = {.index = 409, .length = 2}, - [208] = {.index = 411, .length = 2}, - [209] = {.index = 413, .length = 2}, - [210] = {.index = 415, .length = 3}, - [211] = {.index = 418, .length = 1}, + [195] = {.index = 384, .length = 5}, + [196] = {.index = 379, .length = 2}, + [197] = {.index = 389, .length = 3}, + [198] = {.index = 389, .length = 3}, + [199] = {.index = 392, .length = 3}, + [200] = {.index = 395, .length = 2}, + [201] = {.index = 397, .length = 4}, + [202] = {.index = 146, .length = 2}, + [203] = {.index = 401, .length = 1}, + [204] = {.index = 402, .length = 2}, + [205] = {.index = 404, .length = 2}, + [206] = {.index = 406, .length = 2}, + [207] = {.index = 408, .length = 2}, + [208] = {.index = 410, .length = 3}, + [209] = {.index = 413, .length = 1}, + [210] = {.index = 414, .length = 3}, + [211] = {.index = 417, .length = 2}, [212] = {.index = 419, .length = 3}, - [213] = {.index = 422, .length = 2}, - [214] = {.index = 424, .length = 3}, - [215] = {.index = 427, .length = 3}, - [216] = {.index = 430, .length = 3}, - [217] = {.index = 433, .length = 3}, - [218] = {.index = 436, .length = 4}, - [219] = {.index = 440, .length = 5}, - [220] = {.index = 445, .length = 3}, - [221] = {.index = 448, .length = 2}, - [222] = {.index = 450, .length = 2}, - [223] = {.index = 452, .length = 4}, - [224] = {.index = 456, .length = 4}, - [225] = {.index = 460, .length = 4}, + [213] = {.index = 422, .length = 3}, + [214] = {.index = 425, .length = 3}, + [215] = {.index = 428, .length = 3}, + [216] = {.index = 431, .length = 4}, + [217] = {.index = 435, .length = 5}, + [218] = {.index = 440, .length = 3}, + [219] = {.index = 443, .length = 2}, + [220] = {.index = 445, .length = 2}, + [221] = {.index = 447, .length = 4}, + [222] = {.index = 451, .length = 4}, + [223] = {.index = 455, .length = 4}, + [224] = {.index = 459, .length = 3}, + [225] = {.index = 462, .length = 2}, [226] = {.index = 464, .length = 3}, [227] = {.index = 467, .length = 2}, - [228] = {.index = 469, .length = 3}, - [229] = {.index = 472, .length = 2}, - [230] = {.index = 474, .length = 2}, - [231] = {.index = 476, .length = 2}, - [232] = {.index = 478, .length = 1}, - [233] = {.index = 479, .length = 4}, - [234] = {.index = 483, .length = 3}, - [235] = {.index = 486, .length = 4}, - [236] = {.index = 490, .length = 5}, - [237] = {.index = 495, .length = 1}, - [238] = {.index = 496, .length = 2}, - [239] = {.index = 498, .length = 4}, - [240] = {.index = 502, .length = 4}, - [241] = {.index = 506, .length = 4}, - [242] = {.index = 510, .length = 3}, - [243] = {.index = 513, .length = 2}, - [244] = {.index = 515, .length = 4}, - [245] = {.index = 519, .length = 4}, - [246] = {.index = 523, .length = 2}, - [247] = {.index = 525, .length = 2}, - [248] = {.index = 527, .length = 3}, - [249] = {.index = 530, .length = 3}, - [250] = {.index = 533, .length = 2}, - [251] = {.index = 535, .length = 2}, - [252] = {.index = 537, .length = 1}, - [253] = {.index = 538, .length = 1}, - [254] = {.index = 539, .length = 3}, - [255] = {.index = 542, .length = 3}, - [256] = {.index = 545, .length = 3}, - [257] = {.index = 548, .length = 3}, - [258] = {.index = 551, .length = 4}, - [259] = {.index = 555, .length = 2}, - [260] = {.index = 557, .length = 4}, - [261] = {.index = 561, .length = 3}, - [262] = {.index = 564, .length = 2}, - [263] = {.index = 566, .length = 4}, - [264] = {.index = 570, .length = 4}, - [265] = {.index = 574, .length = 4}, - [266] = {.index = 578, .length = 3}, - [268] = {.index = 581, .length = 4}, - [269] = {.index = 585, .length = 5}, - [270] = {.index = 590, .length = 5}, - [271] = {.index = 595, .length = 5}, - [272] = {.index = 600, .length = 4}, - [273] = {.index = 604, .length = 5}, - [274] = {.index = 609, .length = 4}, - [275] = {.index = 613, .length = 4}, - [276] = {.index = 617, .length = 3}, - [277] = {.index = 620, .length = 3}, - [278] = {.index = 623, .length = 3}, - [279] = {.index = 620, .length = 3}, - [280] = {.index = 626, .length = 2}, - [281] = {.index = 628, .length = 4}, - [282] = {.index = 632, .length = 4}, - [283] = {.index = 636, .length = 3}, - [284] = {.index = 639, .length = 2}, + [228] = {.index = 469, .length = 2}, + [229] = {.index = 471, .length = 2}, + [230] = {.index = 473, .length = 1}, + [231] = {.index = 474, .length = 4}, + [232] = {.index = 478, .length = 3}, + [233] = {.index = 481, .length = 4}, + [234] = {.index = 485, .length = 5}, + [235] = {.index = 490, .length = 1}, + [236] = {.index = 491, .length = 2}, + [237] = {.index = 493, .length = 4}, + [238] = {.index = 497, .length = 4}, + [239] = {.index = 501, .length = 4}, + [240] = {.index = 505, .length = 3}, + [241] = {.index = 508, .length = 2}, + [242] = {.index = 510, .length = 4}, + [243] = {.index = 514, .length = 4}, + [244] = {.index = 518, .length = 2}, + [245] = {.index = 520, .length = 2}, + [246] = {.index = 522, .length = 3}, + [247] = {.index = 525, .length = 3}, + [248] = {.index = 528, .length = 2}, + [249] = {.index = 530, .length = 2}, + [250] = {.index = 532, .length = 1}, + [251] = {.index = 533, .length = 1}, + [252] = {.index = 534, .length = 3}, + [253] = {.index = 537, .length = 3}, + [254] = {.index = 540, .length = 3}, + [255] = {.index = 543, .length = 3}, + [256] = {.index = 546, .length = 4}, + [257] = {.index = 550, .length = 2}, + [258] = {.index = 552, .length = 4}, + [259] = {.index = 556, .length = 3}, + [260] = {.index = 559, .length = 2}, + [261] = {.index = 561, .length = 4}, + [262] = {.index = 565, .length = 4}, + [263] = {.index = 569, .length = 4}, + [264] = {.index = 573, .length = 3}, + [266] = {.index = 576, .length = 4}, + [267] = {.index = 580, .length = 5}, + [268] = {.index = 585, .length = 5}, + [269] = {.index = 590, .length = 5}, + [270] = {.index = 595, .length = 4}, + [271] = {.index = 599, .length = 5}, + [272] = {.index = 604, .length = 4}, + [273] = {.index = 608, .length = 4}, + [274] = {.index = 612, .length = 3}, + [275] = {.index = 615, .length = 3}, + [276] = {.index = 618, .length = 3}, + [277] = {.index = 615, .length = 3}, + [278] = {.index = 621, .length = 2}, + [279] = {.index = 623, .length = 4}, + [280] = {.index = 627, .length = 4}, + [281] = {.index = 631, .length = 3}, + [282] = {.index = 634, .length = 2}, + [283] = {.index = 636, .length = 2}, + [284] = {.index = 638, .length = 3}, [285] = {.index = 641, .length = 2}, - [286] = {.index = 643, .length = 3}, - [287] = {.index = 646, .length = 2}, - [288] = {.index = 648, .length = 2}, - [289] = {.index = 650, .length = 1}, - [290] = {.index = 651, .length = 3}, - [291] = {.index = 654, .length = 3}, - [292] = {.index = 657, .length = 4}, - [293] = {.index = 661, .length = 4}, - [294] = {.index = 665, .length = 3}, - [295] = {.index = 668, .length = 3}, - [296] = {.index = 671, .length = 2}, - [297] = {.index = 673, .length = 4}, - [298] = {.index = 677, .length = 5}, - [299] = {.index = 682, .length = 5}, - [300] = {.index = 687, .length = 5}, - [301] = {.index = 692, .length = 4}, - [302] = {.index = 696, .length = 4}, - [303] = {.index = 700, .length = 3}, - [304] = {.index = 703, .length = 3}, - [305] = {.index = 703, .length = 3}, - [306] = {.index = 706, .length = 2}, + [286] = {.index = 643, .length = 2}, + [287] = {.index = 645, .length = 1}, + [288] = {.index = 646, .length = 3}, + [289] = {.index = 649, .length = 3}, + [290] = {.index = 652, .length = 4}, + [291] = {.index = 656, .length = 4}, + [292] = {.index = 660, .length = 3}, + [293] = {.index = 663, .length = 3}, + [294] = {.index = 666, .length = 2}, + [295] = {.index = 668, .length = 4}, + [296] = {.index = 672, .length = 5}, + [297] = {.index = 677, .length = 5}, + [298] = {.index = 682, .length = 5}, + [299] = {.index = 687, .length = 4}, + [300] = {.index = 691, .length = 4}, + [301] = {.index = 695, .length = 3}, + [302] = {.index = 698, .length = 3}, + [303] = {.index = 698, .length = 3}, + [304] = {.index = 701, .length = 2}, + [305] = {.index = 703, .length = 2}, + [306] = {.index = 705, .length = 3}, [307] = {.index = 708, .length = 2}, - [308] = {.index = 710, .length = 3}, - [309] = {.index = 713, .length = 2}, - [310] = {.index = 715, .length = 2}, - [311] = {.index = 717, .length = 4}, - [312] = {.index = 721, .length = 3}, - [313] = {.index = 724, .length = 3}, - [314] = {.index = 727, .length = 4}, - [315] = {.index = 731, .length = 3}, - [316] = {.index = 734, .length = 3}, - [317] = {.index = 737, .length = 2}, - [318] = {.index = 739, .length = 5}, - [319] = {.index = 744, .length = 5}, - [320] = {.index = 749, .length = 4}, - [321] = {.index = 749, .length = 4}, - [322] = {.index = 753, .length = 4}, - [323] = {.index = 757, .length = 3}, - [324] = {.index = 760, .length = 2}, - [325] = {.index = 762, .length = 2}, - [326] = {.index = 764, .length = 3}, - [327] = {.index = 767, .length = 4}, - [328] = {.index = 771, .length = 4}, - [329] = {.index = 775, .length = 3}, - [330] = {.index = 778, .length = 3}, - [331] = {.index = 781, .length = 4}, - [332] = {.index = 785, .length = 3}, - [333] = {.index = 788, .length = 3}, - [334] = {.index = 791, .length = 5}, - [335] = {.index = 796, .length = 3}, - [336] = {.index = 799, .length = 4}, - [337] = {.index = 803, .length = 4}, - [338] = {.index = 807, .length = 3}, - [339] = {.index = 810, .length = 3}, - [340] = {.index = 813, .length = 4}, - [341] = {.index = 817, .length = 4}, + [308] = {.index = 710, .length = 2}, + [309] = {.index = 712, .length = 4}, + [310] = {.index = 716, .length = 3}, + [311] = {.index = 719, .length = 3}, + [312] = {.index = 722, .length = 4}, + [313] = {.index = 726, .length = 3}, + [314] = {.index = 729, .length = 3}, + [315] = {.index = 732, .length = 2}, + [316] = {.index = 734, .length = 5}, + [317] = {.index = 739, .length = 5}, + [318] = {.index = 744, .length = 4}, + [319] = {.index = 744, .length = 4}, + [320] = {.index = 748, .length = 4}, + [321] = {.index = 752, .length = 3}, + [322] = {.index = 755, .length = 2}, + [323] = {.index = 757, .length = 2}, + [324] = {.index = 759, .length = 3}, + [325] = {.index = 762, .length = 4}, + [326] = {.index = 766, .length = 4}, + [327] = {.index = 770, .length = 3}, + [328] = {.index = 773, .length = 3}, + [329] = {.index = 776, .length = 4}, + [330] = {.index = 780, .length = 3}, + [331] = {.index = 783, .length = 3}, + [332] = {.index = 786, .length = 5}, + [333] = {.index = 791, .length = 3}, + [334] = {.index = 794, .length = 4}, + [335] = {.index = 798, .length = 4}, + [336] = {.index = 802, .length = 3}, + [337] = {.index = 805, .length = 3}, + [338] = {.index = 808, .length = 4}, + [339] = {.index = 812, .length = 4}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -3199,1102 +3156,1095 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [11] = {field_body, 1}, [12] = - {field_close_tag, 1}, - {field_open_tag, 0}, - [14] = {field_constructor, 1}, - [15] = + [13] = {field_object, 0, .inherited = true}, {field_property, 0, .inherited = true}, - [17] = + [15] = {field_arguments, 0, .inherited = true}, {field_function, 0, .inherited = true}, - [19] = + [17] = {field_argument, 0, .inherited = true}, {field_operator, 0, .inherited = true}, - [21] = + [19] = {field_arguments, 1}, {field_function, 0}, - [23] = + [21] = {field_argument, 0}, {field_operator, 1}, - [25] = + [23] = {field_type_arguments, 1}, - [26] = + [24] = {field_parameters, 0}, {field_return_type, 1}, - [28] = + [26] = {field_parameters, 1}, {field_type_parameters, 0}, - [30] = + [28] = {field_decorator, 0, .inherited = true}, {field_decorator, 1, .inherited = true}, - [32] = + [30] = {field_declaration, 2}, - [33] = + [31] = {field_left, 0}, {field_right, 2}, - [35] = + [33] = {field_body, 2}, {field_label, 0}, - [37] = + [35] = {field_body, 2}, {field_parameter, 0}, - [39] = + [37] = {field_body, 1}, {field_name, 0}, - [41] = + [39] = {field_source, 1}, - [42] = + [40] = {field_body, 2}, {field_object, 1}, - [44] = + [42] = {field_name, 0}, {field_value, 1, .inherited = true}, - [46] = + [44] = {field_name, 0}, {field_type, 1}, - [48] = + [46] = {field_kind, 0}, - [49] = + [47] = {field_condition, 1}, {field_consequence, 2}, - [51] = + [49] = {field_body, 2}, {field_value, 1}, - [53] = + [51] = {field_body, 2}, {field_kind, 1, .inherited = true}, {field_left, 1, .inherited = true}, {field_operator, 1, .inherited = true}, {field_right, 1, .inherited = true}, {field_value, 1, .inherited = true}, - [59] = + [57] = {field_pattern, 1}, - [60] = + [58] = {field_decorator, 0, .inherited = true}, {field_pattern, 0, .inherited = true}, {field_value, 1, .inherited = true}, - [63] = + [61] = {field_decorator, 0, .inherited = true}, {field_pattern, 0, .inherited = true}, {field_type, 1}, - [66] = + [64] = {field_decorator, 0, .inherited = true}, {field_pattern, 1}, - [68] = + [66] = {field_body, 2}, {field_condition, 1}, - [70] = + [68] = {field_body, 1}, {field_handler, 2}, - [72] = + [70] = {field_body, 1}, {field_finalizer, 2}, - [74] = + [72] = {field_label, 1}, - [75] = - {field_close_tag, 2}, - {field_content, 1}, - {field_open_tag, 0}, - [78] = + [73] = {field_body, 2}, {field_name, 1}, - [80] = + [75] = {field_value, 0}, - [81] = + [76] = {field_type_arguments, 1, .inherited = true}, {field_value, 1, .inherited = true}, - [83] = + [78] = {field_body, 2}, - [84] = + [79] = {field_body, 2}, {field_type_parameters, 1}, - [86] = + [81] = {field_body, 2}, {field_parameters, 1, .inherited = true}, {field_return_type, 1, .inherited = true}, {field_type_parameters, 1, .inherited = true}, - [90] = + [85] = {field_arguments, 2}, {field_constructor, 1}, - [92] = + [87] = {field_constructor, 1}, {field_type_arguments, 2}, - [94] = + [89] = {field_parameters, 0, .inherited = true}, {field_return_type, 0, .inherited = true}, {field_type_parameters, 0, .inherited = true}, - [97] = + [92] = {field_object, 1, .inherited = true}, {field_property, 1, .inherited = true}, - [99] = + [94] = {field_index, 1, .inherited = true}, {field_object, 1, .inherited = true}, - [101] = + [96] = {field_arguments, 1, .inherited = true}, {field_function, 1, .inherited = true}, - [103] = + [98] = {field_function, 1, .inherited = true}, {field_type_arguments, 1, .inherited = true}, - [105] = + [100] = {field_name, 1}, - [106] = + [101] = {field_name, 0}, {field_type_arguments, 1}, - [108] = + [103] = {field_name, 0}, {field_value, 1}, - [110] = + [105] = {field_constraint, 1}, {field_name, 0}, - [112] = + [107] = {field_arguments, 1}, {field_function, 0}, {field_object, 0, .inherited = true}, {field_property, 0, .inherited = true}, - [116] = + [111] = {field_left, 0}, {field_operator, 1}, {field_right, 2}, - [119] = + [114] = {field_object, 0}, {field_property, 2}, - [121] = + [116] = {field_object, 0}, {field_optional_chain, 1}, {field_property, 2}, - [124] = + [119] = {field_arguments, 2}, {field_function, 0}, {field_type_arguments, 1}, - [127] = + [122] = {field_arguments, 2}, {field_function, 0}, - [129] = + [124] = {field_body, 2}, {field_parameters, 0, .inherited = true}, {field_return_type, 0, .inherited = true}, {field_type_parameters, 0, .inherited = true}, - [133] = + [128] = {field_parameters, 1}, {field_return_type, 2}, {field_type_parameters, 0}, - [136] = + [131] = {field_declaration, 2}, {field_decorator, 0, .inherited = true}, - [138] = + [133] = {field_body, 2}, {field_decorator, 0, .inherited = true}, - [140] = + [135] = {field_source, 2, .inherited = true}, - [141] = + [136] = {field_value, 2}, - [142] = + [137] = {field_key, 0}, {field_value, 2}, - [144] = + [139] = {field_body, 2}, {field_name, 0}, {field_parameters, 1, .inherited = true}, {field_return_type, 1, .inherited = true}, {field_type_parameters, 1, .inherited = true}, - [149] = + [144] = {field_source, 2}, - [150] = + [145] = {field_value, 1}, - [151] = + [146] = {field_name, 0}, {field_type, 2}, - [153] = + [148] = {field_name, 0}, {field_type, 1}, {field_value, 2, .inherited = true}, - [156] = + [151] = {field_body, 3}, {field_name, 2}, - [158] = + [153] = {field_alternative, 3}, {field_condition, 1}, {field_consequence, 2}, - [161] = + [156] = {field_body, 3}, {field_kind, 2, .inherited = true}, {field_left, 2, .inherited = true}, {field_operator, 2, .inherited = true}, {field_right, 2, .inherited = true}, {field_value, 2, .inherited = true}, - [167] = + [162] = {field_type, 2}, - [168] = + [163] = {field_pattern, 2}, - [169] = + [164] = {field_decorator, 0, .inherited = true}, {field_pattern, 0, .inherited = true}, {field_value, 2, .inherited = true}, - [172] = + [167] = {field_decorator, 0, .inherited = true}, {field_pattern, 0, .inherited = true}, {field_type, 2}, - [175] = + [170] = {field_decorator, 0, .inherited = true}, {field_pattern, 0, .inherited = true}, {field_type, 1}, {field_value, 2, .inherited = true}, - [179] = + [174] = {field_decorator, 0, .inherited = true}, {field_pattern, 2}, - [181] = + [176] = {field_body, 1}, {field_condition, 3}, - [183] = + [178] = {field_body, 1}, {field_finalizer, 3}, {field_handler, 2}, - [186] = + [181] = {field_name, 0}, {field_parameters, 1, .inherited = true}, {field_return_type, 1, .inherited = true}, {field_type_parameters, 1, .inherited = true}, - [190] = + [185] = {field_decorator, 0, .inherited = true}, - [191] = + [186] = {field_decorator, 0, .inherited = true}, {field_name, 1}, - [193] = + [188] = {field_decorator, 1, .inherited = true}, - [194] = + [189] = {field_body, 3}, {field_name, 1}, - [196] = + [191] = {field_body, 3}, {field_name, 1}, {field_type_parameters, 2}, - [199] = + [194] = {field_type_arguments, 1}, {field_value, 0}, - [201] = + [196] = {field_type_arguments, 1, .inherited = true}, {field_type_arguments, 2, .inherited = true}, {field_value, 1, .inherited = true}, {field_value, 2, .inherited = true}, - [205] = + [200] = {field_body, 3}, {field_type_parameters, 1}, - [207] = + [202] = {field_body, 3}, {field_parameter, 1}, - [209] = + [204] = {field_body, 3}, {field_parameters, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, {field_type_parameters, 2, .inherited = true}, - [213] = + [208] = {field_body, 3}, {field_parameters, 1, .inherited = true}, {field_return_type, 1, .inherited = true}, {field_type_parameters, 1, .inherited = true}, - [217] = + [212] = {field_name, 1}, {field_parameters, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, {field_type_parameters, 2, .inherited = true}, - [221] = + [216] = {field_body, 3}, {field_name, 1}, {field_parameters, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, {field_type_parameters, 2, .inherited = true}, - [226] = + [221] = {field_arguments, 3}, {field_constructor, 1}, {field_type_arguments, 2}, - [229] = + [224] = {field_left, 1}, {field_right, 3}, - [231] = + [226] = {field_flags, 3}, {field_pattern, 1}, - [233] = + [228] = {field_parameters, 1}, - [234] = + [229] = {field_function, 0}, {field_type_arguments, 1}, - [236] = + [231] = {field_function, 0}, {field_object, 0, .inherited = true}, {field_property, 0, .inherited = true}, {field_type_arguments, 1}, - [240] = + [235] = {field_arguments, 1}, {field_function, 0}, {field_index, 0, .inherited = true}, {field_object, 0, .inherited = true}, - [244] = + [239] = {field_function, 0}, {field_index, 0, .inherited = true}, {field_object, 0, .inherited = true}, {field_type_arguments, 1}, - [248] = + [243] = {field_name, 1}, {field_value, 2}, - [250] = + [245] = {field_constraint, 2}, {field_name, 1}, - [252] = + [247] = {field_module, 0}, {field_name, 2}, - [254] = + [249] = {field_constraint, 1}, {field_name, 0}, {field_value, 2}, - [257] = + [252] = {field_parameters, 0}, {field_return_type, 2}, - [259] = + [254] = {field_object, 0}, {field_object, 0, .inherited = true}, {field_property, 0, .inherited = true}, {field_property, 2}, - [263] = + [258] = {field_arguments, 0, .inherited = true}, {field_function, 0, .inherited = true}, {field_object, 0}, {field_property, 2}, - [267] = + [262] = {field_type, 1}, - [268] = + [263] = {field_index, 2}, {field_object, 0}, - [270] = + [265] = {field_arguments, 3}, {field_function, 0}, {field_type_arguments, 2}, - [273] = + [268] = {field_declaration, 3}, {field_decorator, 0, .inherited = true}, - [275] = + [270] = {field_body, 3}, {field_decorator, 0, .inherited = true}, {field_name, 2}, - [278] = + [273] = {field_body, 3}, {field_decorator, 0, .inherited = true}, - [280] = + [275] = {field_body, 3}, {field_decorator, 0, .inherited = true}, {field_type_parameters, 2}, - [283] = + [278] = {field_source, 3, .inherited = true}, - [284] = + [279] = {field_alias, 2}, {field_name, 0}, - [286] = + [281] = {field_name, 1}, {field_value, 3}, - [288] = + [283] = {field_body, 3}, {field_name, 0}, {field_parameters, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, {field_type_parameters, 2, .inherited = true}, - [293] = + [288] = {field_pattern, 3}, - [294] = + [289] = {field_decorator, 0, .inherited = true}, {field_pattern, 0, .inherited = true}, {field_type, 2}, {field_value, 3, .inherited = true}, - [298] = + [293] = {field_decorator, 0, .inherited = true}, {field_pattern, 3}, - [300] = + [295] = {field_name, 2}, - [301] = + [296] = {field_name, 1}, {field_value, 2, .inherited = true}, - [303] = + [298] = {field_name, 1}, {field_type, 2}, - [305] = + [300] = {field_name, 0}, {field_value, 2, .inherited = true}, - [307] = + [302] = {field_name, 0}, {field_parameters, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, {field_type_parameters, 2, .inherited = true}, - [311] = + [306] = {field_decorator, 0, .inherited = true}, {field_name, 2}, - [313] = + [308] = {field_decorator, 0, .inherited = true}, {field_name, 1}, {field_value, 2, .inherited = true}, - [316] = + [311] = {field_decorator, 0, .inherited = true}, {field_name, 1}, {field_type, 2}, - [319] = + [314] = {field_body, 4}, {field_name, 1}, {field_type_parameters, 2}, - [322] = + [317] = {field_type_arguments, 0, .inherited = true}, {field_type_arguments, 1, .inherited = true}, {field_value, 0, .inherited = true}, {field_value, 1, .inherited = true}, - [326] = + [321] = {field_body, 4}, {field_parameters, 3, .inherited = true}, {field_return_type, 3, .inherited = true}, {field_type_parameters, 3, .inherited = true}, - [330] = + [325] = {field_name, 2}, {field_parameters, 3, .inherited = true}, {field_return_type, 3, .inherited = true}, {field_type_parameters, 3, .inherited = true}, - [334] = + [329] = {field_body, 4}, {field_name, 2}, {field_parameters, 3, .inherited = true}, {field_return_type, 3, .inherited = true}, {field_type_parameters, 3, .inherited = true}, - [339] = + [334] = {field_parameters, 1}, {field_type, 2}, - [341] = + [336] = {field_parameters, 2}, {field_type_parameters, 1}, - [343] = + [338] = {field_parameters, 2}, - [344] = + [339] = {field_index, 0, .inherited = true}, {field_object, 0}, {field_object, 0, .inherited = true}, {field_property, 2}, - [348] = + [343] = {field_constraint, 2}, {field_name, 1}, {field_value, 3}, - [351] = + [346] = {field_parameters, 1}, {field_type, 3}, - [353] = + [348] = {field_parameters, 1}, {field_return_type, 3}, {field_type_parameters, 0}, - [356] = + [351] = {field_body, 4}, {field_name, 2}, - [358] = + [353] = {field_body, 4}, {field_name, 2}, {field_type_parameters, 3}, - [361] = + [356] = {field_type, 1}, {field_type, 2, .inherited = true}, - [363] = + [358] = {field_alternative, 4}, {field_condition, 0}, {field_consequence, 2}, - [366] = + [361] = {field_index, 3}, {field_object, 0}, {field_optional_chain, 1}, - [369] = + [364] = {field_decorator, 0, .inherited = true}, {field_value, 3}, - [371] = + [366] = {field_body, 4}, {field_decorator, 0, .inherited = true}, {field_name, 2}, - [374] = + [369] = {field_body, 4}, {field_decorator, 0, .inherited = true}, {field_name, 2}, {field_type_parameters, 3}, - [378] = + [373] = {field_body, 4}, {field_decorator, 0, .inherited = true}, {field_type_parameters, 2}, - [381] = + [376] = {field_body, 4}, {field_decorator, 0, .inherited = true}, {field_name, 3}, - [384] = + [379] = {field_alias, 3}, {field_name, 1}, - [386] = + [381] = {field_name, 1}, {field_type_parameters, 2}, {field_value, 4}, - [389] = + [384] = {field_body, 4}, {field_name, 1}, {field_parameters, 3, .inherited = true}, {field_return_type, 3, .inherited = true}, {field_type_parameters, 3, .inherited = true}, - [394] = + [389] = {field_left, 1}, {field_operator, 2}, {field_right, 3}, - [397] = + [392] = {field_body, 5}, {field_condition, 3}, {field_initializer, 2}, - [400] = + [395] = {field_decorator, 0, .inherited = true}, {field_pattern, 4}, - [402] = + [397] = {field_name, 1}, {field_parameters, 3, .inherited = true}, {field_return_type, 3, .inherited = true}, {field_type_parameters, 3, .inherited = true}, - [406] = + [401] = {field_type, 3}, - [407] = + [402] = {field_name, 2}, {field_value, 3, .inherited = true}, - [409] = + [404] = {field_name, 2}, {field_type, 3}, - [411] = + [406] = {field_name, 1}, {field_value, 3, .inherited = true}, - [413] = + [408] = {field_name, 1}, {field_type, 3}, - [415] = + [410] = {field_name, 1}, {field_type, 2}, {field_value, 3, .inherited = true}, - [418] = + [413] = {field_name, 3}, - [419] = + [414] = {field_name, 0}, {field_type, 2}, {field_value, 3, .inherited = true}, - [422] = + [417] = {field_decorator, 0, .inherited = true}, {field_name, 3}, - [424] = + [419] = {field_decorator, 0, .inherited = true}, {field_name, 2}, {field_value, 3, .inherited = true}, - [427] = + [422] = {field_decorator, 0, .inherited = true}, {field_name, 2}, {field_type, 3}, - [430] = + [425] = {field_decorator, 0, .inherited = true}, {field_name, 1}, {field_value, 3, .inherited = true}, - [433] = + [428] = {field_decorator, 0, .inherited = true}, {field_name, 1}, {field_type, 3}, - [436] = + [431] = {field_decorator, 0, .inherited = true}, {field_name, 1}, {field_type, 2}, {field_value, 3, .inherited = true}, - [440] = + [435] = {field_body, 5}, {field_name, 3}, {field_parameters, 4, .inherited = true}, {field_return_type, 4, .inherited = true}, {field_type_parameters, 4, .inherited = true}, - [445] = + [440] = {field_parameters, 2}, {field_type, 3}, {field_type_parameters, 1}, - [448] = + [443] = {field_parameters, 2}, {field_type, 3}, - [450] = + [445] = {field_parameters, 3}, {field_type_parameters, 2}, - [452] = + [447] = {field_index, 2}, {field_object, 0}, {field_object, 0, .inherited = true}, {field_property, 0, .inherited = true}, - [456] = + [451] = {field_index, 0, .inherited = true}, {field_index, 2}, {field_object, 0}, {field_object, 0, .inherited = true}, - [460] = + [455] = {field_arguments, 0, .inherited = true}, {field_function, 0, .inherited = true}, {field_index, 2}, {field_object, 0}, - [464] = + [459] = {field_parameters, 2}, {field_type, 4}, {field_type_parameters, 1}, - [467] = + [462] = {field_parameters, 2}, {field_type, 4}, - [469] = + [464] = {field_body, 5}, {field_name, 2}, {field_type_parameters, 3}, - [472] = + [467] = {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [474] = + [469] = {field_name, 1}, {field_name, 2, .inherited = true}, - [476] = + [471] = {field_name, 0, .inherited = true}, {field_name, 1, .inherited = true}, - [478] = + [473] = {field_name, 2, .inherited = true}, - [479] = + [474] = {field_body, 5}, {field_decorator, 0, .inherited = true}, {field_name, 2}, {field_type_parameters, 3}, - [483] = + [478] = {field_body, 5}, {field_decorator, 0, .inherited = true}, {field_name, 3}, - [486] = + [481] = {field_body, 5}, {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_type_parameters, 4}, - [490] = + [485] = {field_body, 5}, {field_name, 2}, {field_parameters, 4, .inherited = true}, {field_return_type, 4, .inherited = true}, {field_type_parameters, 4, .inherited = true}, - [495] = + [490] = {field_source, 4}, - [496] = + [491] = {field_body, 3}, {field_value, 1}, - [498] = + [493] = {field_kind, 1}, {field_left, 2}, {field_operator, 3}, {field_right, 4}, - [502] = + [497] = {field_body, 6}, {field_condition, 3}, {field_increment, 4}, {field_initializer, 2}, - [506] = + [501] = {field_body, 6}, {field_condition, 3}, {field_condition, 4}, {field_initializer, 2}, - [510] = + [505] = {field_body, 6}, {field_condition, 4}, {field_initializer, 2}, - [513] = + [508] = {field_body, 4}, {field_parameter, 2}, - [515] = + [510] = {field_name, 2}, {field_parameters, 4, .inherited = true}, {field_return_type, 4, .inherited = true}, {field_type_parameters, 4, .inherited = true}, - [519] = + [514] = {field_name, 3}, {field_parameters, 4, .inherited = true}, {field_return_type, 4, .inherited = true}, {field_type_parameters, 4, .inherited = true}, - [523] = + [518] = {field_name, 2}, {field_value, 4, .inherited = true}, - [525] = + [520] = {field_name, 2}, {field_type, 4}, - [527] = + [522] = {field_name, 2}, {field_type, 3}, {field_value, 4, .inherited = true}, - [530] = + [525] = {field_name, 1}, {field_type, 3}, {field_value, 4, .inherited = true}, - [533] = + [528] = {field_name, 3}, {field_value, 4, .inherited = true}, - [535] = + [530] = {field_name, 3}, {field_type, 4}, - [537] = + [532] = {field_type, 4}, - [538] = + [533] = {field_name, 4}, - [539] = + [534] = {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_value, 4, .inherited = true}, - [542] = + [537] = {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_type, 4}, - [545] = + [540] = {field_decorator, 0, .inherited = true}, {field_name, 2}, {field_value, 4, .inherited = true}, - [548] = + [543] = {field_decorator, 0, .inherited = true}, {field_name, 2}, {field_type, 4}, - [551] = + [546] = {field_decorator, 0, .inherited = true}, {field_name, 2}, {field_type, 3}, {field_value, 4, .inherited = true}, - [555] = + [550] = {field_decorator, 0, .inherited = true}, {field_name, 4}, - [557] = + [552] = {field_decorator, 0, .inherited = true}, {field_name, 1}, {field_type, 3}, {field_value, 4, .inherited = true}, - [561] = + [556] = {field_parameters, 3}, {field_type, 4}, {field_type_parameters, 2}, - [564] = + [559] = {field_index, 3}, {field_object, 0}, - [566] = + [561] = {field_index, 3}, {field_object, 0}, {field_object, 0, .inherited = true}, {field_property, 0, .inherited = true}, - [570] = + [565] = {field_index, 0, .inherited = true}, {field_index, 3}, {field_object, 0}, {field_object, 0, .inherited = true}, - [574] = + [569] = {field_arguments, 0, .inherited = true}, {field_function, 0, .inherited = true}, {field_index, 3}, {field_object, 0}, - [578] = + [573] = {field_parameters, 3}, {field_type, 5}, {field_type_parameters, 2}, - [581] = + [576] = {field_body, 6}, {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_type_parameters, 4}, - [585] = + [580] = {field_body, 6}, {field_name, 3}, {field_parameters, 5, .inherited = true}, {field_return_type, 5, .inherited = true}, {field_type_parameters, 5, .inherited = true}, - [590] = + [585] = {field_body, 6}, {field_name, 4}, {field_parameters, 5, .inherited = true}, {field_return_type, 5, .inherited = true}, {field_type_parameters, 5, .inherited = true}, - [595] = + [590] = {field_kind, 1}, {field_left, 2}, {field_operator, 4}, {field_right, 5}, {field_value, 3, .inherited = true}, - [600] = + [595] = {field_kind, 1}, {field_left, 2}, {field_operator, 4}, {field_right, 5}, - [604] = + [599] = {field_body, 7}, {field_condition, 3}, {field_condition, 4}, {field_increment, 5}, {field_initializer, 2}, - [609] = + [604] = {field_body, 7}, {field_condition, 4}, {field_increment, 5}, {field_initializer, 2}, - [613] = + [608] = {field_body, 7}, {field_condition, 4}, {field_condition, 5}, {field_initializer, 2}, - [617] = + [612] = {field_body, 5}, {field_parameter, 2}, {field_type, 3}, - [620] = + [615] = {field_index_type, 3}, {field_name, 1}, {field_type, 5}, - [623] = + [618] = {field_alias, 4}, {field_name, 0}, {field_type, 2}, - [626] = + [621] = {field_sign, 0}, {field_type, 5}, - [628] = + [623] = {field_name, 3}, {field_parameters, 5, .inherited = true}, {field_return_type, 5, .inherited = true}, {field_type_parameters, 5, .inherited = true}, - [632] = + [627] = {field_name, 4}, {field_parameters, 5, .inherited = true}, {field_return_type, 5, .inherited = true}, {field_type_parameters, 5, .inherited = true}, - [636] = + [631] = {field_name, 2}, {field_type, 4}, {field_value, 5, .inherited = true}, - [639] = + [634] = {field_name, 3}, {field_value, 5, .inherited = true}, - [641] = + [636] = {field_name, 3}, {field_type, 5}, - [643] = + [638] = {field_name, 3}, {field_type, 4}, {field_value, 5, .inherited = true}, - [646] = + [641] = {field_name, 4}, {field_value, 5, .inherited = true}, - [648] = + [643] = {field_name, 4}, {field_type, 5}, - [650] = + [645] = {field_name, 5}, - [651] = + [646] = {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_value, 5, .inherited = true}, - [654] = + [649] = {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_type, 5}, - [657] = + [652] = {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_type, 4}, {field_value, 5, .inherited = true}, - [661] = + [656] = {field_decorator, 0, .inherited = true}, {field_name, 2}, {field_type, 4}, {field_value, 5, .inherited = true}, - [665] = + [660] = {field_decorator, 0, .inherited = true}, {field_name, 4}, {field_value, 5, .inherited = true}, - [668] = + [663] = {field_decorator, 0, .inherited = true}, {field_name, 4}, {field_type, 5}, - [671] = + [666] = {field_decorator, 0, .inherited = true}, {field_name, 5}, - [673] = + [668] = {field_alternative, 6}, {field_consequence, 4}, {field_left, 0}, {field_right, 2}, - [677] = + [672] = {field_body, 7}, {field_name, 4}, {field_parameters, 6, .inherited = true}, {field_return_type, 6, .inherited = true}, {field_type_parameters, 6, .inherited = true}, - [682] = + [677] = {field_body, 7}, {field_name, 5}, {field_parameters, 6, .inherited = true}, {field_return_type, 6, .inherited = true}, {field_type_parameters, 6, .inherited = true}, - [687] = + [682] = {field_body, 8}, {field_condition, 4}, {field_condition, 5}, {field_increment, 6}, {field_initializer, 2}, - [692] = + [687] = {field_name, 4}, {field_parameters, 6, .inherited = true}, {field_return_type, 6, .inherited = true}, {field_type_parameters, 6, .inherited = true}, - [696] = + [691] = {field_name, 5}, {field_parameters, 6, .inherited = true}, {field_return_type, 6, .inherited = true}, {field_type_parameters, 6, .inherited = true}, - [700] = + [695] = {field_name, 3}, {field_type, 5}, {field_value, 6, .inherited = true}, - [703] = + [698] = {field_index_type, 4}, {field_name, 2}, {field_type, 6}, - [706] = + [701] = {field_name, 4}, {field_value, 6, .inherited = true}, - [708] = + [703] = {field_name, 4}, {field_type, 6}, - [710] = + [705] = {field_name, 4}, {field_type, 5}, {field_value, 6, .inherited = true}, - [713] = + [708] = {field_name, 5}, {field_value, 6, .inherited = true}, - [715] = + [710] = {field_name, 5}, {field_type, 6}, - [717] = + [712] = {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_type, 5}, {field_value, 6, .inherited = true}, - [721] = + [716] = {field_decorator, 0, .inherited = true}, {field_name, 4}, {field_value, 6, .inherited = true}, - [724] = + [719] = {field_decorator, 0, .inherited = true}, {field_name, 4}, {field_type, 6}, - [727] = + [722] = {field_decorator, 0, .inherited = true}, {field_name, 4}, {field_type, 5}, {field_value, 6, .inherited = true}, - [731] = + [726] = {field_decorator, 0, .inherited = true}, {field_name, 5}, {field_value, 6, .inherited = true}, - [734] = + [729] = {field_decorator, 0, .inherited = true}, {field_name, 5}, {field_type, 6}, - [737] = + [732] = {field_decorator, 0, .inherited = true}, {field_name, 6}, - [739] = + [734] = {field_body, 8}, {field_name, 5}, {field_parameters, 7, .inherited = true}, {field_return_type, 7, .inherited = true}, {field_type_parameters, 7, .inherited = true}, - [744] = + [739] = {field_body, 8}, {field_name, 6}, {field_parameters, 7, .inherited = true}, {field_return_type, 7, .inherited = true}, {field_type_parameters, 7, .inherited = true}, - [749] = + [744] = {field_index_type, 5}, {field_name, 3}, {field_sign, 0}, {field_type, 7}, - [753] = + [748] = {field_name, 5}, {field_parameters, 7, .inherited = true}, {field_return_type, 7, .inherited = true}, {field_type_parameters, 7, .inherited = true}, - [757] = + [752] = {field_name, 4}, {field_type, 6}, {field_value, 7, .inherited = true}, - [760] = + [755] = {field_name, 5}, {field_value, 7, .inherited = true}, - [762] = + [757] = {field_name, 5}, {field_type, 7}, - [764] = + [759] = {field_name, 5}, {field_type, 6}, {field_value, 7, .inherited = true}, - [767] = + [762] = {field_name, 6}, {field_parameters, 7, .inherited = true}, {field_return_type, 7, .inherited = true}, {field_type_parameters, 7, .inherited = true}, - [771] = + [766] = {field_decorator, 0, .inherited = true}, {field_name, 4}, {field_type, 6}, {field_value, 7, .inherited = true}, - [775] = + [770] = {field_decorator, 0, .inherited = true}, {field_name, 5}, {field_value, 7, .inherited = true}, - [778] = + [773] = {field_decorator, 0, .inherited = true}, {field_name, 5}, {field_type, 7}, - [781] = + [776] = {field_decorator, 0, .inherited = true}, {field_name, 5}, {field_type, 6}, {field_value, 7, .inherited = true}, - [785] = + [780] = {field_decorator, 0, .inherited = true}, {field_name, 6}, {field_value, 7, .inherited = true}, - [788] = + [783] = {field_decorator, 0, .inherited = true}, {field_name, 6}, {field_type, 7}, - [791] = + [786] = {field_body, 9}, {field_name, 6}, {field_parameters, 8, .inherited = true}, {field_return_type, 8, .inherited = true}, {field_type_parameters, 8, .inherited = true}, - [796] = + [791] = {field_name, 5}, {field_type, 7}, {field_value, 8, .inherited = true}, - [799] = + [794] = {field_name, 6}, {field_parameters, 8, .inherited = true}, {field_return_type, 8, .inherited = true}, {field_type_parameters, 8, .inherited = true}, - [803] = + [798] = {field_decorator, 0, .inherited = true}, {field_name, 5}, {field_type, 7}, {field_value, 8, .inherited = true}, - [807] = + [802] = {field_decorator, 0, .inherited = true}, {field_name, 6}, {field_value, 8, .inherited = true}, - [810] = + [805] = {field_decorator, 0, .inherited = true}, {field_name, 6}, {field_type, 8}, - [813] = + [808] = {field_decorator, 0, .inherited = true}, {field_name, 6}, {field_type, 7}, {field_value, 8, .inherited = true}, - [817] = + [812] = {field_decorator, 0, .inherited = true}, {field_name, 6}, {field_type, 8}, @@ -4309,201 +4259,201 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [7] = { [0] = alias_sym_property_identifier, }, - [14] = { + [13] = { [0] = alias_sym_type_identifier, }, - [15] = { + [14] = { [0] = alias_sym_type_identifier, }, - [16] = { + [15] = { [0] = alias_sym_this_type, }, - [27] = { + [26] = { [0] = sym_identifier, }, - [28] = { + [27] = { [0] = alias_sym_statement_identifier, }, - [29] = { + [28] = { [0] = sym_identifier, }, - [31] = { + [30] = { [1] = alias_sym_shorthand_property_identifier, }, - [32] = { + [31] = { [1] = alias_sym_shorthand_property_identifier_pattern, }, - [33] = { + [32] = { [1] = sym_identifier, }, - [49] = { + [48] = { [1] = alias_sym_statement_identifier, }, - [51] = { + [49] = { [1] = alias_sym_type_identifier, }, - [64] = { + [62] = { [1] = alias_sym_type_identifier, }, - [65] = { + [63] = { [0] = alias_sym_type_identifier, }, - [66] = { + [64] = { [0] = alias_sym_type_identifier, }, - [67] = { + [65] = { [0] = alias_sym_type_identifier, }, - [68] = { + [66] = { [1] = alias_sym_type_identifier, }, - [69] = { + [67] = { [1] = anon_sym_unique, }, - [75] = { + [73] = { [1] = alias_sym_type_identifier, [2] = alias_sym_interface_body, }, - [77] = { + [75] = { [2] = alias_sym_property_identifier, }, - [79] = { + [77] = { [2] = alias_sym_property_identifier, }, - [90] = { + [88] = { [0] = sym_member_expression, [2] = alias_sym_property_identifier, }, - [91] = { + [89] = { [0] = alias_sym_shorthand_property_identifier_pattern, }, - [113] = { + [111] = { [1] = alias_sym_type_identifier, }, - [114] = { + [112] = { [1] = alias_sym_type_identifier, }, - [118] = { + [116] = { [1] = sym_identifier, }, - [125] = { + [123] = { [1] = sym_identifier, }, - [133] = { + [131] = { [1] = alias_sym_type_identifier, }, - [134] = { + [132] = { [1] = alias_sym_type_identifier, }, - [135] = { + [133] = { [2] = alias_sym_type_identifier, }, - [136] = { + [134] = { [0] = alias_sym_type_identifier, }, - [138] = { + [136] = { [2] = alias_sym_property_identifier, }, - [140] = { + [138] = { [2] = alias_sym_property_identifier, }, - [142] = { + [140] = { [2] = alias_sym_type_identifier, }, - [143] = { + [141] = { [1] = alias_sym_type_identifier, }, - [145] = { + [143] = { [1] = alias_sym_type_identifier, [3] = alias_sym_interface_body, }, - [146] = { + [144] = { [1] = alias_sym_type_identifier, [3] = alias_sym_interface_body, }, - [150] = { + [148] = { [2] = alias_sym_type_identifier, }, - [155] = { + [153] = { [1] = alias_sym_type_identifier, }, - [157] = { + [155] = { [0] = sym_identifier, }, - [169] = { + [167] = { [1] = alias_sym_type_identifier, }, - [177] = { + [175] = { [2] = alias_sym_property_identifier, }, - [179] = { + [177] = { [1] = alias_sym_type_identifier, }, - [182] = { + [180] = { [2] = alias_sym_type_identifier, }, - [183] = { + [181] = { [2] = alias_sym_type_identifier, }, - [184] = { + [182] = { [1] = alias_sym_type_identifier, }, - [186] = { + [184] = { [1] = alias_sym_type_identifier, [4] = alias_sym_interface_body, }, - [189] = { + [187] = { [0] = sym_identifier, }, - [191] = { + [189] = { [2] = alias_sym_type_identifier, }, - [192] = { + [190] = { [2] = alias_sym_type_identifier, }, - [194] = { + [192] = { [3] = alias_sym_type_identifier, }, - [196] = { + [194] = { [1] = alias_sym_type_identifier, }, - [198] = { + [196] = { [1] = sym_identifier, }, - [199] = { + [197] = { [1] = sym_identifier, }, - [204] = { + [202] = { [0] = alias_sym_type_identifier, }, - [228] = { + [226] = { [2] = alias_sym_type_identifier, }, - [233] = { + [231] = { [2] = alias_sym_type_identifier, }, - [234] = { + [232] = { [3] = alias_sym_type_identifier, }, - [235] = { + [233] = { [3] = alias_sym_type_identifier, }, - [267] = { + [265] = { [3] = alias_sym_property_identifier, }, - [268] = { + [266] = { [3] = alias_sym_type_identifier, }, - [277] = { + [275] = { [1] = sym_identifier, }, - [278] = { + [276] = { [0] = alias_sym_type_identifier, }, - [304] = { + [302] = { [2] = sym_identifier, }, - [320] = { + [318] = { [3] = sym_identifier, }, }; @@ -4537,121 +4487,121 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [12] = 12, [13] = 13, [14] = 14, - [15] = 15, + [15] = 14, [16] = 16, [17] = 17, [18] = 14, - [19] = 16, + [19] = 19, [20] = 14, - [21] = 16, - [22] = 16, - [23] = 14, + [21] = 19, + [22] = 14, + [23] = 19, [24] = 14, - [25] = 16, - [26] = 14, - [27] = 16, - [28] = 16, - [29] = 29, - [30] = 14, + [25] = 19, + [26] = 19, + [27] = 14, + [28] = 19, + [29] = 19, + [30] = 30, [31] = 31, [32] = 32, [33] = 33, [34] = 34, [35] = 35, - [36] = 34, + [36] = 36, [37] = 37, - [38] = 38, + [38] = 31, [39] = 39, - [40] = 40, - [41] = 41, + [40] = 31, + [41] = 33, [42] = 42, [43] = 43, [44] = 44, [45] = 45, [46] = 46, [47] = 47, - [48] = 40, - [49] = 35, - [50] = 50, - [51] = 31, - [52] = 41, - [53] = 42, - [54] = 43, - [55] = 32, - [56] = 38, - [57] = 44, - [58] = 45, - [59] = 46, - [60] = 38, + [48] = 48, + [49] = 49, + [50] = 39, + [51] = 42, + [52] = 32, + [53] = 31, + [54] = 54, + [55] = 43, + [56] = 31, + [57] = 37, + [58] = 44, + [59] = 45, + [60] = 46, [61] = 47, - [62] = 37, - [63] = 38, - [64] = 38, - [65] = 33, - [66] = 38, - [67] = 38, - [68] = 38, - [69] = 38, - [70] = 50, - [71] = 38, + [62] = 48, + [63] = 31, + [64] = 49, + [65] = 34, + [66] = 31, + [67] = 31, + [68] = 31, + [69] = 31, + [70] = 35, + [71] = 36, [72] = 72, [73] = 72, [74] = 72, [75] = 75, [76] = 76, - [77] = 77, + [77] = 76, [78] = 78, [79] = 79, [80] = 80, - [81] = 81, - [82] = 77, + [81] = 76, + [82] = 75, [83] = 83, - [84] = 83, - [85] = 77, + [84] = 84, + [85] = 85, [86] = 86, [87] = 87, - [88] = 86, - [89] = 89, + [88] = 88, + [89] = 86, [90] = 86, [91] = 86, [92] = 86, [93] = 93, [94] = 94, [95] = 94, - [96] = 96, - [97] = 97, - [98] = 97, - [99] = 96, + [96] = 87, + [97] = 94, + [98] = 98, + [99] = 99, [100] = 93, - [101] = 93, + [101] = 98, [102] = 94, [103] = 94, [104] = 94, - [105] = 94, - [106] = 87, - [107] = 87, + [105] = 93, + [106] = 99, + [107] = 93, [108] = 94, - [109] = 93, - [110] = 89, + [109] = 109, + [110] = 88, [111] = 111, [112] = 112, [113] = 94, - [114] = 114, - [115] = 97, - [116] = 87, + [114] = 87, + [115] = 115, + [116] = 93, [117] = 117, - [118] = 93, - [119] = 93, + [118] = 94, + [119] = 98, [120] = 94, - [121] = 97, - [122] = 122, - [123] = 94, + [121] = 93, + [122] = 98, + [123] = 87, [124] = 94, [125] = 94, - [126] = 114, + [126] = 93, [127] = 111, [128] = 93, - [129] = 93, + [129] = 112, [130] = 94, [131] = 94, [132] = 93, @@ -4661,27 +4611,27 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [136] = 94, [137] = 137, [138] = 137, - [139] = 137, + [139] = 93, [140] = 137, - [141] = 93, + [141] = 137, [142] = 137, - [143] = 137, + [143] = 143, [144] = 137, [145] = 94, [146] = 137, - [147] = 147, + [147] = 137, [148] = 137, [149] = 137, [150] = 150, [151] = 151, [152] = 151, [153] = 151, - [154] = 154, + [154] = 151, [155] = 151, - [156] = 151, - [157] = 157, + [156] = 156, + [157] = 151, [158] = 151, - [159] = 151, + [159] = 159, [160] = 151, [161] = 151, [162] = 151, @@ -4696,22 +4646,22 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [171] = 163, [172] = 163, [173] = 173, - [174] = 174, - [175] = 174, + [174] = 173, + [175] = 173, [176] = 176, [177] = 173, - [178] = 176, - [179] = 173, - [180] = 176, - [181] = 174, - [182] = 182, - [183] = 183, - [184] = 173, - [185] = 173, - [186] = 183, - [187] = 183, - [188] = 173, - [189] = 182, + [178] = 178, + [179] = 179, + [180] = 180, + [181] = 180, + [182] = 176, + [183] = 173, + [184] = 179, + [185] = 176, + [186] = 180, + [187] = 173, + [188] = 179, + [189] = 178, [190] = 173, [191] = 173, [192] = 173, @@ -4719,31 +4669,31 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [194] = 194, [195] = 194, [196] = 196, - [197] = 196, - [198] = 198, - [199] = 198, + [197] = 197, + [198] = 197, + [199] = 197, [200] = 200, - [201] = 196, - [202] = 200, - [203] = 198, - [204] = 200, - [205] = 205, - [206] = 205, - [207] = 207, - [208] = 205, + [201] = 201, + [202] = 196, + [203] = 203, + [204] = 204, + [205] = 204, + [206] = 206, + [207] = 204, + [208] = 196, [209] = 209, - [210] = 205, + [210] = 210, [211] = 211, [212] = 212, [213] = 213, [214] = 214, - [215] = 205, - [216] = 205, + [215] = 215, + [216] = 215, [217] = 217, [218] = 218, [219] = 219, [220] = 220, - [221] = 221, + [221] = 215, [222] = 222, [223] = 223, [224] = 224, @@ -4751,52 +4701,52 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [226] = 226, [227] = 227, [228] = 228, - [229] = 229, + [229] = 215, [230] = 230, - [231] = 222, + [231] = 231, [232] = 232, [233] = 233, - [234] = 234, + [234] = 215, [235] = 235, [236] = 236, [237] = 237, [238] = 238, [239] = 239, [240] = 240, - [241] = 241, + [241] = 215, [242] = 242, [243] = 243, - [244] = 244, + [244] = 242, [245] = 245, [246] = 246, [247] = 247, - [248] = 248, - [249] = 248, - [250] = 222, - [251] = 251, - [252] = 251, - [253] = 245, - [254] = 222, - [255] = 255, - [256] = 222, + [248] = 246, + [249] = 249, + [250] = 250, + [251] = 242, + [252] = 245, + [253] = 249, + [254] = 254, + [255] = 242, + [256] = 256, [257] = 257, - [258] = 222, + [258] = 256, [259] = 257, - [260] = 260, - [261] = 222, - [262] = 262, - [263] = 222, - [264] = 257, - [265] = 265, - [266] = 257, - [267] = 257, - [268] = 260, - [269] = 262, - [270] = 222, - [271] = 257, - [272] = 222, - [273] = 222, - [274] = 257, + [260] = 242, + [261] = 242, + [262] = 242, + [263] = 242, + [264] = 264, + [265] = 264, + [266] = 264, + [267] = 267, + [268] = 264, + [269] = 264, + [270] = 242, + [271] = 264, + [272] = 242, + [273] = 264, + [274] = 242, [275] = 275, [276] = 275, [277] = 275, @@ -4950,268 +4900,268 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [425] = 425, [426] = 396, [427] = 427, - [428] = 412, - [429] = 418, - [430] = 430, - [431] = 399, - [432] = 400, - [433] = 415, - [434] = 416, - [435] = 412, - [436] = 425, - [437] = 418, - [438] = 438, - [439] = 418, - [440] = 440, - [441] = 441, - [442] = 418, - [443] = 418, - [444] = 444, - [445] = 445, + [428] = 428, + [429] = 412, + [430] = 418, + [431] = 431, + [432] = 399, + [433] = 400, + [434] = 415, + [435] = 416, + [436] = 412, + [437] = 425, + [438] = 418, + [439] = 439, + [440] = 427, + [441] = 418, + [442] = 442, + [443] = 443, + [444] = 418, + [445] = 418, [446] = 446, - [447] = 418, + [447] = 447, [448] = 448, - [449] = 449, - [450] = 427, - [451] = 401, - [452] = 444, - [453] = 453, - [454] = 397, - [455] = 398, - [456] = 398, - [457] = 396, - [458] = 399, - [459] = 401, - [460] = 402, - [461] = 403, - [462] = 404, - [463] = 405, - [464] = 406, - [465] = 407, - [466] = 408, - [467] = 409, - [468] = 410, - [469] = 411, - [470] = 417, - [471] = 402, - [472] = 403, - [473] = 404, - [474] = 415, - [475] = 416, - [476] = 418, - [477] = 405, - [478] = 440, - [479] = 422, - [480] = 424, - [481] = 449, - [482] = 427, - [483] = 444, - [484] = 448, - [485] = 453, - [486] = 397, - [487] = 398, - [488] = 399, - [489] = 400, - [490] = 401, - [491] = 402, - [492] = 403, - [493] = 404, - [494] = 405, - [495] = 406, - [496] = 407, - [497] = 408, - [498] = 409, - [499] = 410, - [500] = 411, - [501] = 412, - [502] = 406, - [503] = 415, - [504] = 416, - [505] = 418, - [506] = 422, - [507] = 424, - [508] = 425, - [509] = 418, - [510] = 448, - [511] = 427, - [512] = 407, - [513] = 444, - [514] = 453, - [515] = 397, - [516] = 398, - [517] = 396, - [518] = 399, - [519] = 401, - [520] = 402, - [521] = 403, - [522] = 404, - [523] = 405, - [524] = 397, - [525] = 407, - [526] = 408, - [527] = 409, - [528] = 410, - [529] = 411, - [530] = 408, - [531] = 415, - [532] = 416, - [533] = 418, - [534] = 409, - [535] = 422, - [536] = 449, - [537] = 427, - [538] = 444, - [539] = 453, - [540] = 397, - [541] = 398, - [542] = 399, - [543] = 401, - [544] = 402, - [545] = 403, - [546] = 404, - [547] = 405, - [548] = 406, - [549] = 407, - [550] = 408, - [551] = 409, - [552] = 410, - [553] = 411, - [554] = 415, - [555] = 416, - [556] = 418, - [557] = 422, - [558] = 424, - [559] = 425, - [560] = 560, - [561] = 418, - [562] = 448, - [563] = 396, - [564] = 427, - [565] = 444, - [566] = 453, - [567] = 397, - [568] = 398, - [569] = 399, - [570] = 401, - [571] = 402, - [572] = 403, - [573] = 404, - [574] = 405, - [575] = 406, - [576] = 407, - [577] = 408, - [578] = 409, - [579] = 410, - [580] = 411, - [581] = 415, - [582] = 416, - [583] = 453, - [584] = 449, - [585] = 422, - [586] = 424, - [587] = 425, - [588] = 418, - [589] = 448, - [590] = 396, - [591] = 427, - [592] = 444, - [593] = 453, - [594] = 397, - [595] = 398, - [596] = 399, - [597] = 401, - [598] = 402, - [599] = 403, - [600] = 404, - [601] = 405, - [602] = 406, - [603] = 407, - [604] = 408, - [605] = 409, - [606] = 410, - [607] = 411, - [608] = 410, - [609] = 415, - [610] = 416, - [611] = 422, - [612] = 424, - [613] = 425, - [614] = 418, - [615] = 448, - [616] = 396, - [617] = 427, - [618] = 444, - [619] = 453, - [620] = 397, - [621] = 398, - [622] = 399, - [623] = 401, - [624] = 402, - [625] = 403, - [626] = 404, - [627] = 405, - [628] = 406, - [629] = 407, - [630] = 408, - [631] = 409, - [632] = 410, - [633] = 449, - [634] = 411, - [635] = 427, - [636] = 444, - [637] = 415, - [638] = 416, - [639] = 422, - [640] = 422, - [641] = 424, - [642] = 425, - [643] = 448, - [644] = 427, - [645] = 444, - [646] = 453, - [647] = 397, - [648] = 398, - [649] = 399, - [650] = 401, - [651] = 402, - [652] = 403, - [653] = 404, - [654] = 405, - [655] = 406, - [656] = 407, - [657] = 408, - [658] = 409, - [659] = 410, - [660] = 411, - [661] = 411, - [662] = 415, - [663] = 416, - [664] = 422, - [665] = 424, - [666] = 425, - [667] = 448, - [668] = 396, - [669] = 669, - [670] = 424, - [671] = 425, - [672] = 449, - [673] = 449, - [674] = 674, - [675] = 418, - [676] = 424, - [677] = 425, - [678] = 449, - [679] = 453, - [680] = 449, - [681] = 449, - [682] = 448, - [683] = 396, - [684] = 448, - [685] = 396, - [686] = 406, - [687] = 687, - [688] = 687, - [689] = 687, + [449] = 418, + [450] = 450, + [451] = 451, + [452] = 428, + [453] = 401, + [454] = 446, + [455] = 455, + [456] = 397, + [457] = 398, + [458] = 398, + [459] = 396, + [460] = 399, + [461] = 401, + [462] = 402, + [463] = 403, + [464] = 404, + [465] = 405, + [466] = 406, + [467] = 407, + [468] = 408, + [469] = 409, + [470] = 410, + [471] = 411, + [472] = 417, + [473] = 402, + [474] = 403, + [475] = 404, + [476] = 415, + [477] = 416, + [478] = 418, + [479] = 405, + [480] = 442, + [481] = 422, + [482] = 424, + [483] = 451, + [484] = 428, + [485] = 446, + [486] = 450, + [487] = 455, + [488] = 397, + [489] = 398, + [490] = 399, + [491] = 400, + [492] = 401, + [493] = 402, + [494] = 403, + [495] = 404, + [496] = 405, + [497] = 406, + [498] = 407, + [499] = 408, + [500] = 409, + [501] = 410, + [502] = 411, + [503] = 412, + [504] = 406, + [505] = 415, + [506] = 416, + [507] = 418, + [508] = 422, + [509] = 424, + [510] = 425, + [511] = 418, + [512] = 450, + [513] = 428, + [514] = 407, + [515] = 446, + [516] = 455, + [517] = 397, + [518] = 398, + [519] = 396, + [520] = 399, + [521] = 401, + [522] = 402, + [523] = 403, + [524] = 404, + [525] = 405, + [526] = 397, + [527] = 407, + [528] = 408, + [529] = 409, + [530] = 410, + [531] = 411, + [532] = 408, + [533] = 415, + [534] = 416, + [535] = 418, + [536] = 409, + [537] = 422, + [538] = 451, + [539] = 428, + [540] = 446, + [541] = 455, + [542] = 397, + [543] = 398, + [544] = 399, + [545] = 401, + [546] = 402, + [547] = 403, + [548] = 404, + [549] = 405, + [550] = 406, + [551] = 407, + [552] = 408, + [553] = 409, + [554] = 410, + [555] = 411, + [556] = 415, + [557] = 416, + [558] = 418, + [559] = 422, + [560] = 424, + [561] = 425, + [562] = 562, + [563] = 418, + [564] = 450, + [565] = 396, + [566] = 428, + [567] = 446, + [568] = 455, + [569] = 397, + [570] = 398, + [571] = 399, + [572] = 401, + [573] = 402, + [574] = 403, + [575] = 404, + [576] = 405, + [577] = 406, + [578] = 407, + [579] = 408, + [580] = 409, + [581] = 410, + [582] = 411, + [583] = 415, + [584] = 416, + [585] = 455, + [586] = 451, + [587] = 422, + [588] = 424, + [589] = 425, + [590] = 427, + [591] = 418, + [592] = 450, + [593] = 396, + [594] = 428, + [595] = 446, + [596] = 455, + [597] = 397, + [598] = 398, + [599] = 399, + [600] = 401, + [601] = 402, + [602] = 403, + [603] = 404, + [604] = 405, + [605] = 406, + [606] = 407, + [607] = 408, + [608] = 409, + [609] = 410, + [610] = 411, + [611] = 410, + [612] = 415, + [613] = 416, + [614] = 422, + [615] = 424, + [616] = 425, + [617] = 418, + [618] = 450, + [619] = 396, + [620] = 428, + [621] = 446, + [622] = 455, + [623] = 397, + [624] = 398, + [625] = 399, + [626] = 401, + [627] = 402, + [628] = 403, + [629] = 404, + [630] = 405, + [631] = 406, + [632] = 407, + [633] = 408, + [634] = 409, + [635] = 410, + [636] = 451, + [637] = 411, + [638] = 428, + [639] = 446, + [640] = 415, + [641] = 416, + [642] = 422, + [643] = 422, + [644] = 424, + [645] = 425, + [646] = 450, + [647] = 428, + [648] = 446, + [649] = 455, + [650] = 397, + [651] = 398, + [652] = 399, + [653] = 401, + [654] = 402, + [655] = 403, + [656] = 404, + [657] = 405, + [658] = 406, + [659] = 407, + [660] = 408, + [661] = 409, + [662] = 410, + [663] = 411, + [664] = 411, + [665] = 415, + [666] = 416, + [667] = 422, + [668] = 424, + [669] = 425, + [670] = 450, + [671] = 396, + [672] = 672, + [673] = 424, + [674] = 425, + [675] = 451, + [676] = 451, + [677] = 677, + [678] = 418, + [679] = 424, + [680] = 425, + [681] = 451, + [682] = 455, + [683] = 451, + [684] = 451, + [685] = 450, + [686] = 396, + [687] = 450, + [688] = 396, + [689] = 406, [690] = 690, [691] = 690, [692] = 690, @@ -5224,111 +5174,111 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [699] = 698, [700] = 698, [701] = 701, - [702] = 702, - [703] = 702, - [704] = 701, - [705] = 219, - [706] = 218, - [707] = 702, - [708] = 701, - [709] = 709, - [710] = 710, + [702] = 701, + [703] = 703, + [704] = 703, + [705] = 703, + [706] = 701, + [707] = 707, + [708] = 213, + [709] = 219, + [710] = 707, [711] = 711, [712] = 712, [713] = 713, [714] = 714, - [715] = 711, + [715] = 715, [716] = 716, [717] = 716, [718] = 718, - [719] = 716, + [719] = 718, [720] = 720, - [721] = 718, - [722] = 720, + [721] = 720, + [722] = 716, [723] = 718, [724] = 724, [725] = 725, [726] = 726, [727] = 726, - [728] = 725, - [729] = 724, - [730] = 730, - [731] = 726, + [728] = 728, + [729] = 728, + [730] = 726, + [731] = 724, [732] = 726, - [733] = 726, - [734] = 730, + [733] = 725, + [734] = 726, [735] = 726, - [736] = 229, - [737] = 737, - [738] = 726, - [739] = 226, - [740] = 740, + [736] = 736, + [737] = 726, + [738] = 725, + [739] = 726, + [740] = 726, [741] = 726, - [742] = 725, - [743] = 743, - [744] = 726, - [745] = 726, - [746] = 233, - [747] = 747, + [742] = 742, + [743] = 726, + [744] = 744, + [745] = 745, + [746] = 746, + [747] = 212, [748] = 726, [749] = 749, - [750] = 227, - [751] = 234, - [752] = 225, - [753] = 229, - [754] = 225, - [755] = 226, - [756] = 756, - [757] = 756, - [758] = 725, - [759] = 756, - [760] = 726, - [761] = 233, - [762] = 213, - [763] = 211, + [750] = 749, + [751] = 725, + [752] = 749, + [753] = 236, + [754] = 236, + [755] = 235, + [756] = 238, + [757] = 211, + [758] = 235, + [759] = 212, + [760] = 210, + [761] = 726, + [762] = 726, + [763] = 726, [764] = 726, - [765] = 726, + [765] = 742, [766] = 726, - [767] = 724, - [768] = 743, - [769] = 726, - [770] = 726, + [767] = 726, + [768] = 724, + [769] = 210, + [770] = 770, [771] = 771, - [772] = 726, - [773] = 773, - [774] = 774, - [775] = 775, - [776] = 776, - [777] = 777, - [778] = 778, - [779] = 779, - [780] = 726, - [781] = 781, - [782] = 782, - [783] = 783, - [784] = 775, - [785] = 240, - [786] = 241, + [772] = 771, + [773] = 771, + [774] = 771, + [775] = 771, + [776] = 771, + [777] = 726, + [778] = 771, + [779] = 771, + [780] = 200, + [781] = 771, + [782] = 771, + [783] = 201, + [784] = 784, + [785] = 785, + [786] = 786, [787] = 787, [788] = 788, - [789] = 775, - [790] = 775, + [789] = 239, + [790] = 790, [791] = 791, [792] = 792, - [793] = 793, - [794] = 775, - [795] = 795, + [793] = 784, + [794] = 794, + [795] = 784, [796] = 796, - [797] = 775, - [798] = 798, - [799] = 775, - [800] = 209, - [801] = 775, - [802] = 802, + [797] = 797, + [798] = 203, + [799] = 799, + [800] = 784, + [801] = 801, + [802] = 240, [803] = 803, [804] = 804, - [805] = 775, - [806] = 775, + [805] = 784, + [806] = 806, [807] = 807, [808] = 808, [809] = 809, @@ -5363,14 +5313,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [838] = 838, [839] = 839, [840] = 840, - [841] = 814, + [841] = 841, [842] = 842, [843] = 843, [844] = 844, [845] = 845, [846] = 846, [847] = 847, - [848] = 848, + [848] = 820, [849] = 849, [850] = 850, [851] = 851, @@ -5387,31 +5337,31 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [862] = 862, [863] = 863, [864] = 864, - [865] = 865, + [865] = 238, [866] = 866, [867] = 867, - [868] = 868, + [868] = 820, [869] = 869, [870] = 870, - [871] = 227, - [872] = 872, + [871] = 871, + [872] = 211, [873] = 873, [874] = 874, [875] = 875, - [876] = 876, + [876] = 821, [877] = 877, - [878] = 234, - [879] = 814, + [878] = 878, + [879] = 879, [880] = 880, [881] = 881, - [882] = 882, + [882] = 217, [883] = 883, [884] = 884, [885] = 885, - [886] = 220, - [887] = 887, + [886] = 886, + [887] = 231, [888] = 888, - [889] = 889, + [889] = 821, [890] = 890, [891] = 891, [892] = 892, @@ -5421,14 +5371,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [896] = 896, [897] = 897, [898] = 898, - [899] = 244, - [900] = 900, + [899] = 899, + [900] = 820, [901] = 901, [902] = 902, [903] = 903, [904] = 904, [905] = 905, - [906] = 906, + [906] = 821, [907] = 907, [908] = 908, [909] = 909, @@ -5444,10 +5394,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [919] = 919, [920] = 920, [921] = 921, - [922] = 814, + [922] = 922, [923] = 923, [924] = 924, - [925] = 814, + [925] = 925, [926] = 926, [927] = 927, [928] = 928, @@ -5455,71 +5405,71 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [930] = 930, [931] = 931, [932] = 932, - [933] = 933, + [933] = 820, [934] = 934, - [935] = 935, + [935] = 821, [936] = 936, - [937] = 936, - [938] = 936, - [939] = 935, - [940] = 935, - [941] = 935, - [942] = 936, - [943] = 935, - [944] = 936, + [937] = 937, + [938] = 938, + [939] = 939, + [940] = 940, + [941] = 941, + [942] = 942, + [943] = 943, + [944] = 944, [945] = 945, - [946] = 793, - [947] = 774, + [946] = 946, + [947] = 947, [948] = 948, - [949] = 949, + [949] = 946, [950] = 950, - [951] = 951, + [951] = 948, [952] = 952, - [953] = 953, - [954] = 954, + [953] = 946, + [954] = 803, [955] = 955, [956] = 956, - [957] = 957, + [957] = 948, [958] = 958, [959] = 959, [960] = 960, - [961] = 961, - [962] = 962, - [963] = 961, - [964] = 961, - [965] = 962, - [966] = 961, - [967] = 962, - [968] = 961, - [969] = 962, - [970] = 961, - [971] = 962, - [972] = 960, - [973] = 960, - [974] = 962, - [975] = 961, - [976] = 962, + [961] = 959, + [962] = 946, + [963] = 959, + [964] = 948, + [965] = 965, + [966] = 966, + [967] = 948, + [968] = 946, + [969] = 787, + [970] = 970, + [971] = 948, + [972] = 972, + [973] = 948, + [974] = 946, + [975] = 975, + [976] = 946, [977] = 977, [978] = 978, [979] = 979, - [980] = 980, + [980] = 978, [981] = 981, - [982] = 980, - [983] = 981, - [984] = 984, - [985] = 984, - [986] = 986, - [987] = 981, - [988] = 981, - [989] = 984, - [990] = 980, - [991] = 980, - [992] = 980, - [993] = 980, - [994] = 984, - [995] = 981, - [996] = 981, - [997] = 984, + [982] = 978, + [983] = 977, + [984] = 979, + [985] = 978, + [986] = 979, + [987] = 978, + [988] = 988, + [989] = 977, + [990] = 977, + [991] = 991, + [992] = 992, + [993] = 977, + [994] = 979, + [995] = 978, + [996] = 977, + [997] = 979, [998] = 998, [999] = 999, [1000] = 1000, @@ -5528,464 +5478,464 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1003] = 1003, [1004] = 1004, [1005] = 1005, - [1006] = 999, + [1006] = 1006, [1007] = 1007, [1008] = 1008, - [1009] = 1009, + [1009] = 1001, [1010] = 1010, [1011] = 1011, - [1012] = 999, + [1012] = 1012, [1013] = 1013, - [1014] = 1014, - [1015] = 999, + [1014] = 1001, + [1015] = 1015, [1016] = 1016, [1017] = 1017, [1018] = 1018, [1019] = 1019, - [1020] = 1020, - [1021] = 998, - [1022] = 1001, + [1020] = 998, + [1021] = 1000, + [1022] = 1002, [1023] = 1003, - [1024] = 1004, + [1024] = 1024, [1025] = 1025, - [1026] = 1026, - [1027] = 1027, - [1028] = 1000, - [1029] = 1029, - [1030] = 1008, - [1031] = 1002, - [1032] = 1009, - [1033] = 1010, - [1034] = 1013, - [1035] = 1014, - [1036] = 1013, - [1037] = 1037, - [1038] = 1038, - [1039] = 1039, - [1040] = 1017, - [1041] = 1018, - [1042] = 1013, - [1043] = 1014, - [1044] = 998, - [1045] = 1001, - [1046] = 1046, - [1047] = 1003, - [1048] = 1004, - [1049] = 1005, - [1050] = 1007, - [1051] = 1025, - [1052] = 1026, - [1053] = 1053, - [1054] = 1054, - [1055] = 1014, - [1056] = 1017, - [1057] = 1018, - [1058] = 998, - [1059] = 1001, + [1026] = 1010, + [1027] = 1007, + [1028] = 1008, + [1029] = 1011, + [1030] = 1012, + [1031] = 1013, + [1032] = 1015, + [1033] = 1016, + [1034] = 1034, + [1035] = 1035, + [1036] = 1036, + [1037] = 1017, + [1038] = 1018, + [1039] = 998, + [1040] = 1000, + [1041] = 1015, + [1042] = 1016, + [1043] = 1002, + [1044] = 1003, + [1045] = 1004, + [1046] = 1005, + [1047] = 1024, + [1048] = 1025, + [1049] = 1049, + [1050] = 1050, + [1051] = 1051, + [1052] = 1052, + [1053] = 1017, + [1054] = 1018, + [1055] = 1055, + [1056] = 1056, + [1057] = 998, + [1058] = 1000, + [1059] = 1002, [1060] = 1003, - [1061] = 1004, - [1062] = 1062, - [1063] = 1025, - [1064] = 1026, - [1065] = 1029, - [1066] = 1008, - [1067] = 1002, - [1068] = 1009, - [1069] = 1010, - [1070] = 1013, - [1071] = 1014, - [1072] = 1025, - [1073] = 999, - [1074] = 1005, - [1075] = 1017, - [1076] = 1018, - [1077] = 1003, - [1078] = 1005, - [1079] = 1004, - [1080] = 1062, - [1081] = 1026, - [1082] = 1029, - [1083] = 1008, - [1084] = 1002, - [1085] = 1009, - [1086] = 1010, - [1087] = 1005, - [1088] = 1017, - [1089] = 1018, - [1090] = 1013, - [1091] = 1014, - [1092] = 1017, - [1093] = 1018, - [1094] = 1003, - [1095] = 1004, - [1096] = 1025, - [1097] = 1026, - [1098] = 1098, + [1061] = 1024, + [1062] = 1025, + [1063] = 1007, + [1064] = 1008, + [1065] = 1011, + [1066] = 1012, + [1067] = 1013, + [1068] = 1015, + [1069] = 1015, + [1070] = 1016, + [1071] = 1004, + [1072] = 1017, + [1073] = 1018, + [1074] = 1004, + [1075] = 1002, + [1076] = 1003, + [1077] = 1024, + [1078] = 1025, + [1079] = 1007, + [1080] = 1008, + [1081] = 1011, + [1082] = 1012, + [1083] = 1004, + [1084] = 1001, + [1085] = 1024, + [1086] = 1016, + [1087] = 1015, + [1088] = 1016, + [1089] = 1017, + [1090] = 1018, + [1091] = 999, + [1092] = 1002, + [1093] = 1003, + [1094] = 1024, + [1095] = 1025, + [1096] = 1017, + [1097] = 1018, + [1098] = 1001, [1099] = 998, - [1100] = 1001, - [1101] = 1011, + [1100] = 1000, + [1101] = 1101, [1102] = 1102, [1103] = 1103, - [1104] = 1104, - [1105] = 1026, - [1106] = 1029, - [1107] = 1008, - [1108] = 1002, - [1109] = 1009, - [1110] = 1010, - [1111] = 999, - [1112] = 1098, - [1113] = 1113, - [1114] = 1038, - [1115] = 1115, - [1116] = 1113, - [1117] = 1013, - [1118] = 1014, - [1119] = 1119, - [1120] = 1017, - [1121] = 1018, - [1122] = 1122, - [1123] = 1123, - [1124] = 998, - [1125] = 1001, - [1126] = 1003, - [1127] = 1004, - [1128] = 1025, - [1129] = 1026, - [1130] = 1029, + [1104] = 1025, + [1105] = 1007, + [1106] = 1008, + [1107] = 1011, + [1108] = 1012, + [1109] = 1013, + [1110] = 1006, + [1111] = 1001, + [1112] = 1112, + [1113] = 1112, + [1114] = 1114, + [1115] = 1035, + [1116] = 1015, + [1117] = 1016, + [1118] = 1017, + [1119] = 1018, + [1120] = 998, + [1121] = 1000, + [1122] = 1002, + [1123] = 1003, + [1124] = 1124, + [1125] = 1125, + [1126] = 1126, + [1127] = 1024, + [1128] = 1128, + [1129] = 1025, + [1130] = 1007, [1131] = 1008, - [1132] = 1002, - [1133] = 1009, - [1134] = 1010, - [1135] = 1005, + [1132] = 1011, + [1133] = 1012, + [1134] = 1013, + [1135] = 1004, [1136] = 998, - [1137] = 1001, - [1138] = 1029, - [1139] = 1008, - [1140] = 1002, - [1141] = 1009, - [1142] = 1010, - [1143] = 1029, - [1144] = 1062, - [1145] = 1005, - [1146] = 1062, - [1147] = 1062, - [1148] = 1062, - [1149] = 1062, - [1150] = 1025, + [1137] = 1000, + [1138] = 1114, + [1139] = 1007, + [1140] = 1008, + [1141] = 1011, + [1142] = 1012, + [1143] = 999, + [1144] = 1004, + [1145] = 1013, + [1146] = 999, + [1147] = 999, + [1148] = 999, + [1149] = 999, + [1150] = 1013, [1151] = 1151, [1152] = 1151, - [1153] = 1153, + [1153] = 1151, [1154] = 1151, [1155] = 1151, - [1156] = 1156, + [1156] = 1151, [1157] = 1151, [1158] = 1151, [1159] = 1151, [1160] = 1151, [1161] = 1151, - [1162] = 1162, - [1163] = 1151, - [1164] = 1151, - [1165] = 1151, + [1162] = 1151, + [1163] = 1163, + [1164] = 1164, + [1165] = 1163, [1166] = 1166, [1167] = 1167, - [1168] = 1168, - [1169] = 1168, - [1170] = 1166, - [1171] = 1166, - [1172] = 1168, + [1168] = 1164, + [1169] = 1163, + [1170] = 1170, + [1171] = 1171, + [1172] = 1167, [1173] = 1167, - [1174] = 1167, + [1174] = 1164, [1175] = 1175, [1176] = 1176, [1177] = 1177, - [1178] = 1178, - [1179] = 1177, - [1180] = 1178, - [1181] = 1178, - [1182] = 1175, + [1178] = 1177, + [1179] = 1179, + [1180] = 1179, + [1181] = 1177, + [1182] = 1182, [1183] = 1183, - [1184] = 1183, - [1185] = 1185, - [1186] = 1186, - [1187] = 1186, - [1188] = 1178, - [1189] = 1176, - [1190] = 1185, - [1191] = 1178, - [1192] = 1178, - [1193] = 1176, - [1194] = 1194, + [1184] = 1184, + [1185] = 1175, + [1186] = 1176, + [1187] = 1177, + [1188] = 1177, + [1189] = 1177, + [1190] = 1184, + [1191] = 1183, + [1192] = 1182, + [1193] = 1193, + [1194] = 1193, [1195] = 1195, - [1196] = 1196, + [1196] = 1193, [1197] = 1197, - [1198] = 1178, + [1198] = 1198, [1199] = 1199, [1200] = 1200, - [1201] = 1178, + [1201] = 1177, [1202] = 1202, [1203] = 1203, [1204] = 1204, [1205] = 1205, - [1206] = 1178, - [1207] = 1202, - [1208] = 1202, - [1209] = 1209, - [1210] = 1210, - [1211] = 1211, - [1212] = 1178, + [1206] = 1206, + [1207] = 1207, + [1208] = 1177, + [1209] = 1177, + [1210] = 1176, + [1211] = 1177, + [1212] = 1212, [1213] = 1213, [1214] = 1214, - [1215] = 1178, + [1215] = 1215, [1216] = 1216, - [1217] = 1178, - [1218] = 1218, - [1219] = 1176, - [1220] = 1178, - [1221] = 1216, - [1222] = 1222, - [1223] = 793, - [1224] = 1213, + [1217] = 787, + [1218] = 1177, + [1219] = 803, + [1220] = 1177, + [1221] = 1221, + [1222] = 1221, + [1223] = 1223, + [1224] = 1224, [1225] = 1225, - [1226] = 1222, - [1227] = 1225, - [1228] = 1228, - [1229] = 774, - [1230] = 1214, - [1231] = 1216, - [1232] = 1213, - [1233] = 1233, - [1234] = 1178, - [1235] = 1235, - [1236] = 1178, - [1237] = 1237, - [1238] = 1178, - [1239] = 1214, - [1240] = 1214, - [1241] = 1178, + [1226] = 1224, + [1227] = 1216, + [1228] = 1216, + [1229] = 1176, + [1230] = 1177, + [1231] = 1223, + [1232] = 1215, + [1233] = 1215, + [1234] = 1177, + [1235] = 1177, + [1236] = 1177, + [1237] = 1177, + [1238] = 1238, + [1239] = 1177, + [1240] = 1177, + [1241] = 1241, [1242] = 1175, - [1243] = 1243, - [1244] = 1244, - [1245] = 1178, - [1246] = 1194, - [1247] = 1178, + [1243] = 1203, + [1244] = 1223, + [1245] = 1245, + [1246] = 1246, + [1247] = 1223, [1248] = 1248, - [1249] = 1249, - [1250] = 1250, - [1251] = 1237, + [1249] = 1223, + [1250] = 1248, + [1251] = 1248, [1252] = 1252, - [1253] = 1214, - [1254] = 1244, + [1253] = 1248, + [1254] = 1223, [1255] = 1255, - [1256] = 1256, - [1257] = 1214, - [1258] = 1258, - [1259] = 1237, + [1256] = 1238, + [1257] = 1248, + [1258] = 1223, + [1259] = 1248, [1260] = 1260, - [1261] = 1214, - [1262] = 1250, - [1263] = 1250, - [1264] = 1264, - [1265] = 1250, - [1266] = 1178, - [1267] = 1267, - [1268] = 1214, - [1269] = 1250, - [1270] = 1250, - [1271] = 1271, - [1272] = 1250, - [1273] = 1214, - [1274] = 1244, - [1275] = 1275, - [1276] = 1250, - [1277] = 1250, - [1278] = 1250, + [1261] = 1223, + [1262] = 1262, + [1263] = 1223, + [1264] = 1245, + [1265] = 1265, + [1266] = 1248, + [1267] = 1177, + [1268] = 1248, + [1269] = 1269, + [1270] = 1238, + [1271] = 1248, + [1272] = 1272, + [1273] = 1273, + [1274] = 1248, + [1275] = 1245, + [1276] = 1276, + [1277] = 1277, + [1278] = 1278, [1279] = 1279, - [1280] = 1214, - [1281] = 1281, - [1282] = 1214, - [1283] = 1283, - [1284] = 1284, + [1280] = 1279, + [1281] = 1223, + [1282] = 1202, + [1283] = 1223, + [1284] = 1205, [1285] = 1285, - [1286] = 1286, + [1286] = 1262, [1287] = 1287, - [1288] = 1237, - [1289] = 1210, - [1290] = 1249, - [1291] = 1214, - [1292] = 1237, - [1293] = 1214, - [1294] = 1294, - [1295] = 1214, - [1296] = 1279, + [1288] = 1288, + [1289] = 1238, + [1290] = 1202, + [1291] = 1205, + [1292] = 1285, + [1293] = 1223, + [1294] = 1238, + [1295] = 1295, + [1296] = 1223, [1297] = 1297, - [1298] = 1209, - [1299] = 1209, - [1300] = 1287, - [1301] = 1301, - [1302] = 1297, - [1303] = 1248, - [1304] = 1248, - [1305] = 1237, - [1306] = 1294, - [1307] = 1249, - [1308] = 1210, - [1309] = 1237, - [1310] = 1297, - [1311] = 1214, - [1312] = 1312, - [1313] = 1313, - [1314] = 1313, + [1298] = 1223, + [1299] = 1299, + [1300] = 1276, + [1301] = 1277, + [1302] = 1238, + [1303] = 1276, + [1304] = 1299, + [1305] = 1262, + [1306] = 1276, + [1307] = 1299, + [1308] = 1299, + [1309] = 1238, + [1310] = 1206, + [1311] = 1207, + [1312] = 1299, + [1313] = 1277, + [1314] = 1265, [1315] = 1315, - [1316] = 1279, - [1317] = 1279, - [1318] = 1196, - [1319] = 1279, - [1320] = 1297, - [1321] = 1210, - [1322] = 1252, - [1323] = 1209, - [1324] = 1315, - [1325] = 1214, - [1326] = 774, - [1327] = 1248, - [1328] = 1228, - [1329] = 1237, - [1330] = 1267, - [1331] = 1248, - [1332] = 1279, - [1333] = 1197, - [1334] = 1200, - [1335] = 1228, - [1336] = 1205, - [1337] = 1237, - [1338] = 793, - [1339] = 1211, - [1340] = 1264, - [1341] = 1237, - [1342] = 1204, - [1343] = 1297, - [1344] = 1297, - [1345] = 1248, - [1346] = 1249, - [1347] = 1203, - [1348] = 1312, - [1349] = 1248, - [1350] = 1279, + [1316] = 1316, + [1317] = 1317, + [1318] = 1318, + [1319] = 1260, + [1320] = 1277, + [1321] = 1197, + [1322] = 1213, + [1323] = 1238, + [1324] = 1277, + [1325] = 1198, + [1326] = 1316, + [1327] = 1223, + [1328] = 1276, + [1329] = 1277, + [1330] = 1200, + [1331] = 787, + [1332] = 1332, + [1333] = 1318, + [1334] = 1213, + [1335] = 803, + [1336] = 1238, + [1337] = 1299, + [1338] = 1262, + [1339] = 1202, + [1340] = 1238, + [1341] = 1273, + [1342] = 1315, + [1343] = 1276, + [1344] = 1344, + [1345] = 1205, + [1346] = 1223, + [1347] = 1212, + [1348] = 1199, + [1349] = 1277, + [1350] = 1202, [1351] = 1351, - [1352] = 1352, - [1353] = 1209, - [1354] = 1286, - [1355] = 1352, - [1356] = 1258, - [1357] = 1284, - [1358] = 1279, - [1359] = 1248, - [1360] = 1360, - [1361] = 1237, - [1362] = 1297, - [1363] = 1209, - [1364] = 1228, + [1352] = 1295, + [1353] = 1299, + [1354] = 1205, + [1355] = 1299, + [1356] = 1356, + [1357] = 1238, + [1358] = 1252, + [1359] = 1351, + [1360] = 1277, + [1361] = 1276, + [1362] = 1213, + [1363] = 1278, + [1364] = 1213, [1365] = 1365, - [1366] = 1210, - [1367] = 1367, - [1368] = 1297, - [1369] = 1297, - [1370] = 1228, - [1371] = 1248, - [1372] = 1264, - [1373] = 1248, - [1374] = 1210, - [1375] = 1279, - [1376] = 1279, - [1377] = 1267, - [1378] = 1297, - [1379] = 1284, - [1380] = 1267, + [1366] = 1299, + [1367] = 1205, + [1368] = 1299, + [1369] = 1202, + [1370] = 1276, + [1371] = 1260, + [1372] = 1372, + [1373] = 1276, + [1374] = 1277, + [1375] = 1277, + [1376] = 1265, + [1377] = 1377, + [1378] = 1276, + [1379] = 1379, + [1380] = 1380, [1381] = 1381, - [1382] = 1382, - [1383] = 1381, - [1384] = 1297, - [1385] = 1264, - [1386] = 1248, - [1387] = 1279, + [1382] = 1380, + [1383] = 1299, + [1384] = 1277, + [1385] = 1299, + [1386] = 1380, + [1387] = 1213, [1388] = 1388, - [1389] = 1228, - [1390] = 1390, - [1391] = 1381, + [1389] = 1380, + [1390] = 1260, + [1391] = 1265, [1392] = 1392, - [1393] = 1381, - [1394] = 1209, - [1395] = 1279, - [1396] = 1297, - [1397] = 1397, - [1398] = 1228, - [1399] = 1381, - [1400] = 1210, - [1401] = 1381, - [1402] = 1284, - [1403] = 1279, - [1404] = 1279, - [1405] = 1297, - [1406] = 1279, - [1407] = 1279, - [1408] = 1279, - [1409] = 1279, - [1410] = 1360, - [1411] = 1297, - [1412] = 1297, - [1413] = 1297, - [1414] = 1297, - [1415] = 1252, - [1416] = 1228, - [1417] = 1367, - [1418] = 1297, + [1393] = 1276, + [1394] = 1380, + [1395] = 1380, + [1396] = 1295, + [1397] = 1202, + [1398] = 1213, + [1399] = 1399, + [1400] = 1277, + [1401] = 1205, + [1402] = 1277, + [1403] = 1277, + [1404] = 1299, + [1405] = 1277, + [1406] = 1277, + [1407] = 1277, + [1408] = 1277, + [1409] = 1273, + [1410] = 1213, + [1411] = 1356, + [1412] = 1299, + [1413] = 1365, + [1414] = 1295, + [1415] = 1299, + [1416] = 1299, + [1417] = 1299, + [1418] = 1299, [1419] = 1419, [1420] = 1420, [1421] = 1421, [1422] = 1420, [1423] = 1423, - [1424] = 1297, + [1424] = 1419, [1425] = 1421, - [1426] = 1421, - [1427] = 1420, - [1428] = 1420, - [1429] = 1419, - [1430] = 1430, - [1431] = 1430, - [1432] = 1430, - [1433] = 1421, - [1434] = 1430, - [1435] = 1421, - [1436] = 1420, - [1437] = 1419, - [1438] = 1419, - [1439] = 1421, - [1440] = 1421, - [1441] = 1423, - [1442] = 1420, + [1426] = 1426, + [1427] = 1299, + [1428] = 1421, + [1429] = 1421, + [1430] = 1420, + [1431] = 1420, + [1432] = 1419, + [1433] = 1426, + [1434] = 1421, + [1435] = 1420, + [1436] = 1426, + [1437] = 1423, + [1438] = 1421, + [1439] = 1426, + [1440] = 1420, + [1441] = 1426, + [1442] = 1423, [1443] = 1423, [1444] = 1421, [1445] = 1420, - [1446] = 1286, - [1447] = 1423, - [1448] = 1420, - [1449] = 1382, - [1450] = 1421, - [1451] = 1430, - [1452] = 1420, - [1453] = 1421, - [1454] = 1420, - [1455] = 1228, - [1456] = 1228, - [1457] = 1279, - [1458] = 1228, - [1459] = 1430, - [1460] = 1419, - [1461] = 1423, + [1446] = 1278, + [1447] = 1381, + [1448] = 1421, + [1449] = 1421, + [1450] = 1423, + [1451] = 1420, + [1452] = 1421, + [1453] = 1420, + [1454] = 1426, + [1455] = 1419, + [1456] = 1213, + [1457] = 1213, + [1458] = 1277, + [1459] = 1213, + [1460] = 1423, + [1461] = 1420, [1462] = 1419, - [1463] = 1423, + [1463] = 1419, [1464] = 1464, [1465] = 1464, [1466] = 1464, @@ -5999,56 +5949,56 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1474] = 1474, [1475] = 1474, [1476] = 1474, - [1477] = 1474, + [1477] = 1477, [1478] = 1474, [1479] = 1474, - [1480] = 1480, + [1480] = 1474, [1481] = 1481, [1482] = 1482, - [1483] = 1481, + [1483] = 1483, [1484] = 1482, [1485] = 1485, - [1486] = 1482, + [1486] = 1481, [1487] = 1481, [1488] = 1481, - [1489] = 1485, - [1490] = 1482, - [1491] = 1491, - [1492] = 1485, - [1493] = 1482, - [1494] = 1485, - [1495] = 1481, - [1496] = 1485, + [1489] = 1483, + [1490] = 1483, + [1491] = 1482, + [1492] = 1483, + [1493] = 1481, + [1494] = 1483, + [1495] = 1482, + [1496] = 1482, [1497] = 1497, - [1498] = 1498, + [1498] = 1497, [1499] = 1497, [1500] = 1497, - [1501] = 1497, + [1501] = 1501, [1502] = 1497, [1503] = 1497, [1504] = 1504, [1505] = 1505, [1506] = 1506, [1507] = 1507, - [1508] = 1508, - [1509] = 219, - [1510] = 218, - [1511] = 1511, + [1508] = 219, + [1509] = 1509, + [1510] = 1510, + [1511] = 213, [1512] = 1512, - [1513] = 219, - [1514] = 978, - [1515] = 207, - [1516] = 977, - [1517] = 1517, - [1518] = 1518, - [1519] = 218, + [1513] = 988, + [1514] = 1514, + [1515] = 1515, + [1516] = 1516, + [1517] = 213, + [1518] = 992, + [1519] = 219, [1520] = 1520, - [1521] = 979, + [1521] = 206, [1522] = 1522, [1523] = 1523, [1524] = 1524, [1525] = 1525, - [1526] = 1526, + [1526] = 991, [1527] = 1527, [1528] = 1528, [1529] = 1529, @@ -6056,18 +6006,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1531] = 1531, [1532] = 1532, [1533] = 1533, - [1534] = 1534, + [1534] = 212, [1535] = 1535, [1536] = 1536, [1537] = 1537, [1538] = 1538, [1539] = 1539, [1540] = 1540, - [1541] = 1541, + [1541] = 714, [1542] = 1542, [1543] = 1543, [1544] = 1544, - [1545] = 1162, + [1545] = 1545, [1546] = 1546, [1547] = 1547, [1548] = 1548, @@ -6077,16 +6027,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1552] = 1552, [1553] = 1553, [1554] = 1554, - [1555] = 1555, + [1555] = 1166, [1556] = 1556, [1557] = 1557, [1558] = 1558, - [1559] = 713, + [1559] = 1559, [1560] = 1560, [1561] = 1561, [1562] = 1562, [1563] = 1563, - [1564] = 1564, + [1564] = 713, [1565] = 1565, [1566] = 1566, [1567] = 1567, @@ -6100,11 +6050,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1575] = 1575, [1576] = 1576, [1577] = 1577, - [1578] = 712, - [1579] = 226, + [1578] = 1578, + [1579] = 236, [1580] = 1580, [1581] = 1581, - [1582] = 1582, + [1582] = 711, [1583] = 1583, [1584] = 1584, [1585] = 1585, @@ -6112,7 +6062,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1587] = 1587, [1588] = 1588, [1589] = 1589, - [1590] = 1590, + [1590] = 1170, [1591] = 1591, [1592] = 1592, [1593] = 1593, @@ -6120,46 +6070,46 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1595] = 1595, [1596] = 1596, [1597] = 1597, - [1598] = 1156, + [1598] = 1598, [1599] = 1599, [1600] = 1600, - [1601] = 1601, + [1601] = 715, [1602] = 1602, [1603] = 1603, [1604] = 1604, [1605] = 1605, - [1606] = 1606, - [1607] = 211, - [1608] = 211, - [1609] = 213, - [1610] = 213, - [1611] = 229, - [1612] = 209, + [1606] = 200, + [1607] = 1171, + [1608] = 201, + [1609] = 1609, + [1610] = 1610, + [1611] = 1611, + [1612] = 203, [1613] = 1613, [1614] = 1614, - [1615] = 1615, - [1616] = 1616, - [1617] = 209, - [1618] = 1618, + [1615] = 200, + [1616] = 201, + [1617] = 203, + [1618] = 712, [1619] = 1619, [1620] = 1620, [1621] = 1621, [1622] = 1622, - [1623] = 714, + [1623] = 1623, [1624] = 1624, [1625] = 1625, [1626] = 1626, [1627] = 1627, [1628] = 1628, - [1629] = 1153, + [1629] = 1629, [1630] = 1630, [1631] = 1631, [1632] = 1632, [1633] = 1633, [1634] = 1634, [1635] = 1635, - [1636] = 710, - [1637] = 709, + [1636] = 1636, + [1637] = 1637, [1638] = 1638, [1639] = 1639, [1640] = 1640, @@ -6184,9 +6134,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1659] = 1659, [1660] = 1660, [1661] = 1661, - [1662] = 1662, + [1662] = 238, [1663] = 1663, - [1664] = 227, + [1664] = 1664, [1665] = 1665, [1666] = 1666, [1667] = 1667, @@ -6200,9 +6150,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1675] = 1675, [1676] = 1676, [1677] = 1677, - [1678] = 1678, + [1678] = 211, [1679] = 1679, - [1680] = 234, + [1680] = 1680, [1681] = 1681, [1682] = 1682, [1683] = 1683, @@ -6218,7 +6168,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1693] = 1693, [1694] = 1694, [1695] = 1695, - [1696] = 1696, + [1696] = 1501, [1697] = 1697, [1698] = 1698, [1699] = 1699, @@ -6230,39 +6180,39 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1705] = 1705, [1706] = 1706, [1707] = 1707, - [1708] = 1708, - [1709] = 1498, + [1708] = 239, + [1709] = 240, [1710] = 1710, - [1711] = 240, - [1712] = 241, - [1713] = 220, - [1714] = 244, - [1715] = 225, - [1716] = 240, - [1717] = 241, - [1718] = 233, - [1719] = 1689, - [1720] = 1689, - [1721] = 1689, - [1722] = 1689, - [1723] = 1723, - [1724] = 1724, + [1711] = 231, + [1712] = 217, + [1713] = 235, + [1714] = 239, + [1715] = 240, + [1716] = 210, + [1717] = 1717, + [1718] = 1717, + [1719] = 1717, + [1720] = 1717, + [1721] = 1717, + [1722] = 1722, + [1723] = 1705, + [1724] = 212, [1725] = 1725, - [1726] = 229, - [1727] = 1707, - [1728] = 225, - [1729] = 1729, - [1730] = 226, - [1731] = 1708, + [1726] = 1706, + [1727] = 235, + [1728] = 1728, + [1729] = 236, + [1730] = 1504, + [1731] = 1731, [1732] = 1505, - [1733] = 1733, - [1734] = 1511, - [1735] = 233, - [1736] = 1724, - [1737] = 1504, - [1738] = 1733, - [1739] = 1508, - [1740] = 1724, + [1733] = 210, + [1734] = 1734, + [1735] = 1509, + [1736] = 1731, + [1737] = 1506, + [1738] = 1734, + [1739] = 1739, + [1740] = 1740, [1741] = 1741, [1742] = 1742, [1743] = 1743, @@ -6272,9 +6222,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1747] = 1747, [1748] = 1748, [1749] = 1749, - [1750] = 1750, + [1750] = 217, [1751] = 1751, - [1752] = 227, + [1752] = 1752, [1753] = 1753, [1754] = 1754, [1755] = 1755, @@ -6288,908 +6238,908 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1763] = 1763, [1764] = 1764, [1765] = 1765, - [1766] = 1766, - [1767] = 1767, - [1768] = 234, - [1769] = 1733, - [1770] = 220, - [1771] = 1771, - [1772] = 1733, - [1773] = 1706, - [1774] = 1724, - [1775] = 1733, - [1776] = 244, - [1777] = 1724, + [1766] = 211, + [1767] = 1731, + [1768] = 1651, + [1769] = 1734, + [1770] = 1731, + [1771] = 231, + [1772] = 1734, + [1773] = 1731, + [1774] = 238, + [1775] = 1734, + [1776] = 1776, + [1777] = 1777, [1778] = 1778, [1779] = 1779, - [1780] = 1780, - [1781] = 1781, - [1782] = 1760, - [1783] = 1779, - [1784] = 1780, - [1785] = 1785, - [1786] = 1786, - [1787] = 1624, - [1788] = 1525, - [1789] = 1789, - [1790] = 1520, - [1791] = 1785, - [1792] = 1745, - [1793] = 1706, - [1794] = 1746, - [1795] = 1795, - [1796] = 1747, - [1797] = 1646, - [1798] = 1707, - [1799] = 1799, - [1800] = 1708, - [1801] = 977, - [1802] = 1802, - [1803] = 1748, - [1804] = 1749, - [1805] = 1750, - [1806] = 1751, - [1807] = 1781, - [1808] = 1753, - [1809] = 1754, - [1810] = 1755, + [1780] = 1525, + [1781] = 1514, + [1782] = 1743, + [1783] = 1783, + [1784] = 1784, + [1785] = 1531, + [1786] = 1516, + [1787] = 1787, + [1788] = 1512, + [1789] = 1744, + [1790] = 1745, + [1791] = 1746, + [1792] = 1783, + [1793] = 1705, + [1794] = 1794, + [1795] = 988, + [1796] = 1539, + [1797] = 1706, + [1798] = 1722, + [1799] = 1651, + [1800] = 1747, + [1801] = 1801, + [1802] = 1748, + [1803] = 1749, + [1804] = 1779, + [1805] = 1751, + [1806] = 1752, + [1807] = 1753, + [1808] = 1754, + [1809] = 1755, + [1810] = 1515, [1811] = 1756, [1812] = 1757, - [1813] = 1744, - [1814] = 1518, - [1815] = 1517, - [1816] = 1761, - [1817] = 1817, + [1813] = 1813, + [1814] = 1776, + [1815] = 1760, + [1816] = 1816, + [1817] = 1761, [1818] = 1762, [1819] = 1763, [1820] = 1764, - [1821] = 1765, + [1821] = 1523, [1822] = 1524, - [1823] = 1526, - [1824] = 1824, - [1825] = 1785, - [1826] = 1778, - [1827] = 1817, + [1823] = 1778, + [1824] = 1783, + [1825] = 1816, + [1826] = 1522, + [1827] = 1827, [1828] = 1758, - [1829] = 1759, - [1830] = 1771, - [1831] = 1785, - [1832] = 1523, - [1833] = 1512, - [1834] = 1817, - [1835] = 1785, - [1836] = 1741, + [1829] = 1783, + [1830] = 1759, + [1831] = 1777, + [1832] = 1816, + [1833] = 1783, + [1834] = 1739, + [1835] = 1739, + [1836] = 1740, [1837] = 1741, - [1838] = 1742, + [1838] = 991, [1839] = 1743, [1840] = 1744, - [1841] = 979, - [1842] = 1745, - [1843] = 1746, - [1844] = 1747, - [1845] = 1748, - [1846] = 1749, - [1847] = 1750, - [1848] = 1751, - [1849] = 1781, - [1850] = 1753, - [1851] = 1754, - [1852] = 1755, - [1853] = 1756, - [1854] = 1757, - [1855] = 1758, - [1856] = 1759, - [1857] = 1760, - [1858] = 1761, - [1859] = 1762, - [1860] = 1763, - [1861] = 1764, - [1862] = 1765, - [1863] = 1767, - [1864] = 1624, - [1865] = 1646, - [1866] = 1817, - [1867] = 1527, - [1868] = 1868, - [1869] = 1742, - [1870] = 1743, - [1871] = 1871, - [1872] = 1872, - [1873] = 978, - [1874] = 1767, + [1841] = 1745, + [1842] = 1746, + [1843] = 1747, + [1844] = 1748, + [1845] = 1749, + [1846] = 1779, + [1847] = 1751, + [1848] = 1752, + [1849] = 1753, + [1850] = 1754, + [1851] = 1755, + [1852] = 1756, + [1853] = 1757, + [1854] = 1758, + [1855] = 1759, + [1856] = 1760, + [1857] = 1761, + [1858] = 1762, + [1859] = 1763, + [1860] = 1764, + [1861] = 1765, + [1862] = 1531, + [1863] = 1539, + [1864] = 1816, + [1865] = 1527, + [1866] = 1740, + [1867] = 1867, + [1868] = 1741, + [1869] = 1869, + [1870] = 1870, + [1871] = 992, + [1872] = 1765, + [1873] = 1776, + [1874] = 1722, [1875] = 1778, - [1876] = 1779, - [1877] = 1780, - [1878] = 1771, - [1879] = 1879, - [1880] = 1595, - [1881] = 1596, + [1876] = 1777, + [1877] = 1877, + [1878] = 1591, + [1879] = 1650, + [1880] = 1596, + [1881] = 1597, [1882] = 1600, - [1883] = 1883, - [1884] = 1802, - [1885] = 1153, - [1886] = 207, - [1887] = 1743, - [1888] = 1745, - [1889] = 1779, - [1890] = 1746, - [1891] = 1879, - [1892] = 1747, - [1893] = 1638, - [1894] = 1780, - [1895] = 1748, - [1896] = 1749, - [1897] = 1897, - [1898] = 1750, + [1883] = 1605, + [1884] = 1170, + [1885] = 206, + [1886] = 1740, + [1887] = 1744, + [1888] = 1741, + [1889] = 1877, + [1890] = 1745, + [1891] = 1746, + [1892] = 1892, + [1893] = 1893, + [1894] = 1894, + [1895] = 1747, + [1896] = 1748, + [1897] = 1749, + [1898] = 1779, [1899] = 1751, - [1900] = 1781, + [1900] = 1752, [1901] = 1753, - [1902] = 1754, - [1903] = 1755, - [1904] = 1756, - [1905] = 1573, - [1906] = 1906, - [1907] = 1588, + [1902] = 1902, + [1903] = 1754, + [1904] = 1755, + [1905] = 1905, + [1906] = 1756, + [1907] = 1528, [1908] = 1757, - [1909] = 1758, - [1910] = 1599, - [1911] = 1639, - [1912] = 1649, - [1913] = 1597, + [1909] = 1593, + [1910] = 1619, + [1911] = 1574, + [1912] = 1544, + [1913] = 1758, [1914] = 1759, - [1915] = 1760, - [1916] = 1601, - [1917] = 1879, - [1918] = 1628, - [1919] = 1744, - [1920] = 1771, - [1921] = 1672, - [1922] = 1868, - [1923] = 1923, + [1915] = 1554, + [1916] = 1556, + [1917] = 1877, + [1918] = 1536, + [1919] = 1743, + [1920] = 1670, + [1921] = 1867, + [1922] = 1777, + [1923] = 1722, [1924] = 1778, - [1925] = 207, - [1926] = 1926, - [1927] = 1761, - [1928] = 1928, - [1929] = 1616, - [1930] = 1762, - [1931] = 1546, - [1932] = 1932, - [1933] = 1763, - [1934] = 1624, - [1935] = 1645, - [1936] = 1646, - [1937] = 1532, - [1938] = 1938, - [1939] = 1706, - [1940] = 1635, - [1941] = 710, - [1942] = 1641, - [1943] = 1642, + [1925] = 1581, + [1926] = 206, + [1927] = 1760, + [1928] = 1705, + [1929] = 1929, + [1930] = 1761, + [1931] = 1620, + [1932] = 1762, + [1933] = 1933, + [1934] = 1531, + [1935] = 1535, + [1936] = 1539, + [1937] = 1549, + [1938] = 714, + [1939] = 1637, + [1940] = 1940, + [1941] = 1643, + [1942] = 1645, + [1943] = 1943, [1944] = 1944, [1945] = 1945, - [1946] = 1946, - [1947] = 1947, - [1948] = 1879, - [1949] = 1624, - [1950] = 1646, - [1951] = 1551, - [1952] = 1529, - [1953] = 1879, - [1954] = 1624, - [1955] = 1646, - [1956] = 1710, - [1957] = 1651, - [1958] = 1764, - [1959] = 1672, - [1960] = 1765, - [1961] = 1620, - [1962] = 1588, - [1963] = 1619, - [1964] = 1964, - [1965] = 709, - [1966] = 1643, - [1967] = 1648, - [1968] = 1592, - [1969] = 1552, - [1970] = 1970, + [1946] = 1763, + [1947] = 1877, + [1948] = 1648, + [1949] = 1531, + [1950] = 1539, + [1951] = 1588, + [1952] = 1647, + [1953] = 1877, + [1954] = 1531, + [1955] = 1539, + [1956] = 1707, + [1957] = 1710, + [1958] = 1670, + [1959] = 1764, + [1960] = 1776, + [1961] = 1528, + [1962] = 1962, + [1963] = 715, + [1964] = 1602, + [1965] = 1603, + [1966] = 1604, + [1967] = 1609, + [1968] = 1968, + [1969] = 1969, + [1970] = 1610, [1971] = 1971, - [1972] = 1562, - [1973] = 1594, - [1974] = 1614, - [1975] = 1741, - [1976] = 1625, - [1977] = 1977, - [1978] = 1622, - [1979] = 1627, - [1980] = 1645, - [1981] = 1710, - [1982] = 1532, - [1983] = 1651, - [1984] = 1551, - [1985] = 1618, + [1972] = 1972, + [1973] = 1611, + [1974] = 1550, + [1975] = 1632, + [1976] = 1739, + [1977] = 1562, + [1978] = 1563, + [1979] = 1535, + [1980] = 1707, + [1981] = 1549, + [1982] = 1710, + [1983] = 1588, + [1984] = 1613, + [1985] = 1614, [1986] = 1621, - [1987] = 1630, - [1988] = 1640, - [1989] = 1553, - [1990] = 1574, - [1991] = 1581, - [1992] = 1590, - [1993] = 1593, - [1994] = 1602, - [1995] = 1995, - [1996] = 1603, - [1997] = 1604, - [1998] = 1605, - [1999] = 1162, - [2000] = 1606, - [2001] = 1613, - [2002] = 1615, - [2003] = 1883, - [2004] = 1802, - [2005] = 1533, - [2006] = 1536, - [2007] = 2007, - [2008] = 1538, - [2009] = 1539, - [2010] = 1542, - [2011] = 714, - [2012] = 1626, - [2013] = 1631, - [2014] = 1632, - [2015] = 1633, - [2016] = 2016, - [2017] = 1634, - [2018] = 1644, - [2019] = 1647, - [2020] = 1530, - [2021] = 1624, - [2022] = 1531, - [2023] = 1534, - [2024] = 1535, - [2025] = 1540, - [2026] = 1646, - [2027] = 1580, - [2028] = 2028, - [2029] = 1541, - [2030] = 1544, - [2031] = 1529, - [2032] = 1547, - [2033] = 1549, - [2034] = 1554, - [2035] = 1156, - [2036] = 1555, - [2037] = 1556, - [2038] = 1964, - [2039] = 1557, - [2040] = 1767, - [2041] = 1543, - [2042] = 1548, - [2043] = 1550, - [2044] = 1558, - [2045] = 1742, - [2046] = 1563, - [2047] = 713, - [2048] = 1868, - [2049] = 1560, - [2050] = 1561, - [2051] = 1564, - [2052] = 1565, - [2053] = 1566, - [2054] = 1567, - [2055] = 1568, - [2056] = 1569, - [2057] = 1570, - [2058] = 1571, - [2059] = 1572, - [2060] = 1528, - [2061] = 1575, - [2062] = 1576, - [2063] = 1577, - [2064] = 712, - [2065] = 1582, - [2066] = 1707, - [2067] = 2067, + [1987] = 1624, + [1988] = 1628, + [1989] = 1629, + [1990] = 1630, + [1991] = 1631, + [1992] = 1634, + [1993] = 1638, + [1994] = 1639, + [1995] = 1640, + [1996] = 1641, + [1997] = 1166, + [1998] = 1642, + [1999] = 1644, + [2000] = 1646, + [2001] = 1627, + [2002] = 2002, + [2003] = 1801, + [2004] = 1580, + [2005] = 2005, + [2006] = 1595, + [2007] = 1598, + [2008] = 1622, + [2009] = 712, + [2010] = 1540, + [2011] = 1599, + [2012] = 1623, + [2013] = 1625, + [2014] = 2014, + [2015] = 1636, + [2016] = 1530, + [2017] = 1532, + [2018] = 1533, + [2019] = 1633, + [2020] = 1531, + [2021] = 1537, + [2022] = 1538, + [2023] = 1542, + [2024] = 1543, + [2025] = 1539, + [2026] = 1546, + [2027] = 2027, + [2028] = 1962, + [2029] = 1547, + [2030] = 1647, + [2031] = 1626, + [2032] = 1551, + [2033] = 1553, + [2034] = 2002, + [2035] = 1801, + [2036] = 1557, + [2037] = 1171, + [2038] = 1559, + [2039] = 1560, + [2040] = 1561, + [2041] = 1765, + [2042] = 1592, + [2043] = 1649, + [2044] = 1552, + [2045] = 1558, + [2046] = 1867, + [2047] = 1635, + [2048] = 1529, + [2049] = 713, + [2050] = 1565, + [2051] = 1566, + [2052] = 1567, + [2053] = 1568, + [2054] = 1569, + [2055] = 1570, + [2056] = 1571, + [2057] = 1572, + [2058] = 1573, + [2059] = 1575, + [2060] = 1576, + [2061] = 1577, + [2062] = 1578, + [2063] = 1545, + [2064] = 1706, + [2065] = 2065, + [2066] = 2066, + [2067] = 1548, [2068] = 2068, - [2069] = 1583, + [2069] = 711, [2070] = 2070, - [2071] = 1584, - [2072] = 2072, - [2073] = 2073, - [2074] = 1585, - [2075] = 1586, - [2076] = 1708, - [2077] = 1879, + [2071] = 2071, + [2072] = 1583, + [2073] = 1584, + [2074] = 1651, + [2075] = 1877, + [2076] = 1585, + [2077] = 1586, [2078] = 1587, [2079] = 1589, - [2080] = 1591, - [2081] = 1650, + [2080] = 1739, + [2081] = 1740, [2082] = 1741, - [2083] = 1742, - [2084] = 1743, - [2085] = 1744, - [2086] = 1745, - [2087] = 1746, - [2088] = 1747, - [2089] = 1748, - [2090] = 1749, - [2091] = 1750, - [2092] = 1751, - [2093] = 1781, - [2094] = 1753, - [2095] = 1754, - [2096] = 1755, - [2097] = 1756, - [2098] = 1757, - [2099] = 1758, - [2100] = 1759, - [2101] = 1760, - [2102] = 1761, - [2103] = 1762, - [2104] = 1763, - [2105] = 1764, - [2106] = 1765, - [2107] = 1767, + [2083] = 1743, + [2084] = 1744, + [2085] = 1745, + [2086] = 1746, + [2087] = 1747, + [2088] = 1748, + [2089] = 1749, + [2090] = 1779, + [2091] = 1751, + [2092] = 1752, + [2093] = 1753, + [2094] = 1754, + [2095] = 1755, + [2096] = 1756, + [2097] = 1757, + [2098] = 1758, + [2099] = 1759, + [2100] = 1760, + [2101] = 1761, + [2102] = 1762, + [2103] = 1763, + [2104] = 1764, + [2105] = 1765, + [2106] = 1776, + [2107] = 1722, [2108] = 1778, - [2109] = 1779, - [2110] = 1780, - [2111] = 1771, - [2112] = 1537, - [2113] = 2113, - [2114] = 1666, - [2115] = 1588, - [2116] = 1661, + [2109] = 1777, + [2110] = 1594, + [2111] = 2111, + [2112] = 1531, + [2113] = 1539, + [2114] = 2114, + [2115] = 1531, + [2116] = 1539, [2117] = 2117, - [2118] = 1691, - [2119] = 243, - [2120] = 2120, - [2121] = 1673, - [2122] = 1674, - [2123] = 2123, + [2118] = 2118, + [2119] = 2117, + [2120] = 2118, + [2121] = 2121, + [2122] = 2117, + [2123] = 2118, [2124] = 2124, - [2125] = 1789, - [2126] = 1651, - [2127] = 1675, - [2128] = 1704, + [2125] = 2125, + [2126] = 2126, + [2127] = 2127, + [2128] = 2128, [2129] = 2129, - [2130] = 221, - [2131] = 1705, - [2132] = 223, - [2133] = 1676, - [2134] = 224, + [2130] = 1655, + [2131] = 1739, + [2132] = 1740, + [2133] = 1741, + [2134] = 1677, [2135] = 2135, - [2136] = 1677, + [2136] = 1743, [2137] = 2137, [2138] = 2138, - [2139] = 2139, - [2140] = 1710, - [2141] = 1678, + [2139] = 1744, + [2140] = 1745, + [2141] = 1746, [2142] = 2142, - [2143] = 2143, - [2144] = 1651, - [2145] = 2145, - [2146] = 2146, - [2147] = 2137, - [2148] = 1667, - [2149] = 2139, - [2150] = 2150, - [2151] = 2151, - [2152] = 2152, - [2153] = 1668, - [2154] = 1551, - [2155] = 1529, - [2156] = 2156, - [2157] = 2150, - [2158] = 2151, - [2159] = 2159, - [2160] = 1624, - [2161] = 1646, - [2162] = 1624, - [2163] = 1646, - [2164] = 2150, - [2165] = 2151, - [2166] = 2150, - [2167] = 2151, - [2168] = 2150, - [2169] = 2151, - [2170] = 1652, - [2171] = 1897, - [2172] = 1824, - [2173] = 1655, - [2174] = 1662, - [2175] = 2175, - [2176] = 2176, - [2177] = 1654, - [2178] = 2138, + [2143] = 1747, + [2144] = 2144, + [2145] = 1748, + [2146] = 1749, + [2147] = 1779, + [2148] = 1751, + [2149] = 1752, + [2150] = 1753, + [2151] = 1754, + [2152] = 1755, + [2153] = 1756, + [2154] = 1757, + [2155] = 1758, + [2156] = 1759, + [2157] = 2157, + [2158] = 1760, + [2159] = 1761, + [2160] = 1762, + [2161] = 1763, + [2162] = 1764, + [2163] = 220, + [2164] = 224, + [2165] = 222, + [2166] = 2166, + [2167] = 1765, + [2168] = 223, + [2169] = 2169, + [2170] = 225, + [2171] = 2171, + [2172] = 2172, + [2173] = 230, + [2174] = 2174, + [2175] = 1801, + [2176] = 1670, + [2177] = 2177, + [2178] = 2178, [2179] = 2179, - [2180] = 2180, - [2181] = 2181, - [2182] = 1741, + [2180] = 224, + [2181] = 225, + [2182] = 226, [2183] = 2183, - [2184] = 1742, - [2185] = 1743, - [2186] = 1744, - [2187] = 1679, + [2184] = 209, + [2185] = 220, + [2186] = 222, + [2187] = 223, [2188] = 2188, - [2189] = 1656, - [2190] = 1745, - [2191] = 1746, - [2192] = 1747, - [2193] = 2193, - [2194] = 1748, - [2195] = 2195, - [2196] = 1749, - [2197] = 1750, - [2198] = 1751, - [2199] = 1781, - [2200] = 1753, - [2201] = 1754, - [2202] = 1755, - [2203] = 1756, - [2204] = 1757, - [2205] = 1758, - [2206] = 1759, - [2207] = 1760, - [2208] = 1761, - [2209] = 1762, - [2210] = 1763, - [2211] = 1764, - [2212] = 1765, - [2213] = 2213, - [2214] = 2214, + [2189] = 1667, + [2190] = 227, + [2191] = 228, + [2192] = 232, + [2193] = 1661, + [2194] = 233, + [2195] = 1668, + [2196] = 2196, + [2197] = 1679, + [2198] = 1680, + [2199] = 226, + [2200] = 1681, + [2201] = 1682, + [2202] = 2202, + [2203] = 2203, + [2204] = 1683, + [2205] = 2205, + [2206] = 1684, + [2207] = 1685, + [2208] = 2142, + [2209] = 1827, + [2210] = 1686, + [2211] = 1656, + [2212] = 2142, + [2213] = 1707, + [2214] = 2169, [2215] = 2215, - [2216] = 1767, - [2217] = 217, - [2218] = 232, - [2219] = 2219, - [2220] = 2220, - [2221] = 2221, - [2222] = 2222, - [2223] = 235, - [2224] = 1868, - [2225] = 1663, - [2226] = 2226, + [2216] = 2216, + [2217] = 2169, + [2218] = 2172, + [2219] = 2142, + [2220] = 1669, + [2221] = 1827, + [2222] = 1687, + [2223] = 2172, + [2224] = 1794, + [2225] = 2144, + [2226] = 1707, [2227] = 2227, - [2228] = 2228, - [2229] = 2229, - [2230] = 2230, - [2231] = 2231, - [2232] = 1710, - [2233] = 236, - [2234] = 1681, - [2235] = 1682, + [2228] = 1657, + [2229] = 1535, + [2230] = 1663, + [2231] = 2142, + [2232] = 1549, + [2233] = 1710, + [2234] = 1664, + [2235] = 2235, [2236] = 2236, - [2237] = 1683, - [2238] = 1684, - [2239] = 1685, - [2240] = 1686, - [2241] = 2193, - [2242] = 1687, + [2237] = 2142, + [2238] = 2142, + [2239] = 1776, + [2240] = 1722, + [2241] = 1778, + [2242] = 1777, [2243] = 2243, - [2244] = 1688, - [2245] = 237, - [2246] = 2246, - [2247] = 2247, - [2248] = 230, - [2249] = 1868, - [2250] = 1657, - [2251] = 1645, - [2252] = 2193, - [2253] = 1532, - [2254] = 1651, - [2255] = 1658, - [2256] = 2193, + [2244] = 2244, + [2245] = 1660, + [2246] = 227, + [2247] = 228, + [2248] = 2248, + [2249] = 2249, + [2250] = 2166, + [2251] = 1688, + [2252] = 2252, + [2253] = 2253, + [2254] = 230, + [2255] = 1671, + [2256] = 1867, [2257] = 2257, - [2258] = 2193, - [2259] = 1778, - [2260] = 1779, - [2261] = 1780, - [2262] = 1771, - [2263] = 1653, - [2264] = 238, - [2265] = 2215, - [2266] = 1690, - [2267] = 2267, - [2268] = 2137, - [2269] = 2139, - [2270] = 228, - [2271] = 1802, - [2272] = 1672, - [2273] = 1723, - [2274] = 2213, - [2275] = 2137, - [2276] = 2139, - [2277] = 237, - [2278] = 230, - [2279] = 1692, - [2280] = 2280, - [2281] = 2281, - [2282] = 2282, - [2283] = 238, - [2284] = 2284, + [2258] = 1689, + [2259] = 232, + [2260] = 1690, + [2261] = 2261, + [2262] = 1672, + [2263] = 2138, + [2264] = 2236, + [2265] = 1703, + [2266] = 1653, + [2267] = 1528, + [2268] = 2268, + [2269] = 2269, + [2270] = 2270, + [2271] = 1710, + [2272] = 2272, + [2273] = 2273, + [2274] = 2274, + [2275] = 2174, + [2276] = 2177, + [2277] = 1673, + [2278] = 1867, + [2279] = 1704, + [2280] = 1658, + [2281] = 1691, + [2282] = 1692, + [2283] = 1693, + [2284] = 1694, [2285] = 2285, - [2286] = 2286, - [2287] = 2159, - [2288] = 2176, - [2289] = 243, - [2290] = 221, - [2291] = 1693, - [2292] = 1694, - [2293] = 1695, - [2294] = 1696, - [2295] = 223, - [2296] = 1659, - [2297] = 224, + [2286] = 1674, + [2287] = 2287, + [2288] = 2288, + [2289] = 2289, + [2290] = 2269, + [2291] = 2291, + [2292] = 2292, + [2293] = 2293, + [2294] = 2294, + [2295] = 2295, + [2296] = 2296, + [2297] = 2270, [2298] = 2298, - [2299] = 2299, + [2299] = 1867, [2300] = 2300, - [2301] = 2281, + [2301] = 2126, [2302] = 2302, [2303] = 2303, - [2304] = 2304, + [2304] = 1695, [2305] = 2305, [2306] = 2306, - [2307] = 217, - [2308] = 2282, - [2309] = 2309, - [2310] = 1868, - [2311] = 2311, - [2312] = 232, - [2313] = 235, - [2314] = 236, + [2307] = 2307, + [2308] = 2308, + [2309] = 233, + [2310] = 1675, + [2311] = 2227, + [2312] = 2312, + [2313] = 2313, + [2314] = 2314, [2315] = 2315, - [2316] = 1697, - [2317] = 2317, - [2318] = 2318, - [2319] = 2319, - [2320] = 2320, - [2321] = 1669, - [2322] = 2322, - [2323] = 2323, - [2324] = 2324, - [2325] = 2325, - [2326] = 1670, - [2327] = 1660, - [2328] = 1698, - [2329] = 2129, - [2330] = 1699, - [2331] = 1700, - [2332] = 1701, - [2333] = 1702, - [2334] = 1703, - [2335] = 2137, - [2336] = 2336, - [2337] = 2139, - [2338] = 2338, - [2339] = 2284, - [2340] = 2285, + [2316] = 1787, + [2317] = 1659, + [2318] = 1665, + [2319] = 1697, + [2320] = 1676, + [2321] = 2169, + [2322] = 2172, + [2323] = 1698, + [2324] = 1699, + [2325] = 1700, + [2326] = 1701, + [2327] = 1702, + [2328] = 2328, + [2329] = 2272, + [2330] = 2273, + [2331] = 2331, + [2332] = 2169, + [2333] = 1666, + [2334] = 2172, + [2335] = 2274, + [2336] = 2124, + [2337] = 2292, + [2338] = 1707, + [2339] = 1710, + [2340] = 2340, [2341] = 2341, - [2342] = 2175, - [2343] = 2302, - [2344] = 2286, - [2345] = 2137, - [2346] = 228, - [2347] = 2139, - [2348] = 2193, - [2349] = 1824, - [2350] = 2350, - [2351] = 1671, - [2352] = 1710, - [2353] = 2257, - [2354] = 1795, - [2355] = 2195, - [2356] = 1665, + [2342] = 1654, + [2343] = 2343, + [2344] = 2169, + [2345] = 209, + [2346] = 2172, + [2347] = 2117, + [2348] = 2118, + [2349] = 2314, + [2350] = 1588, + [2351] = 1647, + [2352] = 2352, + [2353] = 1894, + [2354] = 2117, + [2355] = 2118, + [2356] = 1528, [2357] = 2357, - [2358] = 2358, - [2359] = 1588, - [2360] = 2360, - [2361] = 2236, - [2362] = 2193, - [2363] = 2363, - [2364] = 1532, - [2365] = 2365, - [2366] = 2366, - [2367] = 1741, - [2368] = 1742, - [2369] = 1743, - [2370] = 1744, - [2371] = 1745, - [2372] = 1746, - [2373] = 1747, - [2374] = 1748, - [2375] = 1749, - [2376] = 1750, - [2377] = 1751, - [2378] = 1781, - [2379] = 1753, - [2380] = 1754, - [2381] = 1755, - [2382] = 1756, - [2383] = 1757, - [2384] = 1758, - [2385] = 1759, - [2386] = 1760, - [2387] = 1761, - [2388] = 1762, - [2389] = 1763, - [2390] = 1764, - [2391] = 1765, - [2392] = 1767, - [2393] = 2393, - [2394] = 1741, - [2395] = 1742, - [2396] = 1743, - [2397] = 1744, - [2398] = 1745, - [2399] = 1746, - [2400] = 1747, - [2401] = 1748, - [2402] = 1749, - [2403] = 1750, - [2404] = 1751, - [2405] = 1781, - [2406] = 1753, - [2407] = 1754, - [2408] = 1755, - [2409] = 1756, - [2410] = 1757, - [2411] = 1758, - [2412] = 1759, - [2413] = 1760, - [2414] = 1761, - [2415] = 1762, - [2416] = 1763, - [2417] = 1764, - [2418] = 1765, - [2419] = 1767, - [2420] = 239, - [2421] = 2421, - [2422] = 2422, - [2423] = 1710, - [2424] = 2424, - [2425] = 2324, - [2426] = 2426, - [2427] = 1672, - [2428] = 1651, + [2358] = 1652, + [2359] = 2312, + [2360] = 1755, + [2361] = 1756, + [2362] = 1757, + [2363] = 1758, + [2364] = 1759, + [2365] = 1760, + [2366] = 1761, + [2367] = 1762, + [2368] = 1763, + [2369] = 1764, + [2370] = 2370, + [2371] = 2371, + [2372] = 1588, + [2373] = 1765, + [2374] = 2374, + [2375] = 2375, + [2376] = 1588, + [2377] = 2377, + [2378] = 2374, + [2379] = 2379, + [2380] = 2380, + [2381] = 1647, + [2382] = 1647, + [2383] = 2383, + [2384] = 2384, + [2385] = 1827, + [2386] = 1894, + [2387] = 1739, + [2388] = 1740, + [2389] = 1741, + [2390] = 1743, + [2391] = 1744, + [2392] = 1745, + [2393] = 1746, + [2394] = 1747, + [2395] = 1748, + [2396] = 1749, + [2397] = 2397, + [2398] = 2398, + [2399] = 1779, + [2400] = 1751, + [2401] = 2401, + [2402] = 1752, + [2403] = 1753, + [2404] = 1776, + [2405] = 1722, + [2406] = 1778, + [2407] = 1777, + [2408] = 1754, + [2409] = 1755, + [2410] = 1756, + [2411] = 2411, + [2412] = 1757, + [2413] = 1758, + [2414] = 1776, + [2415] = 1722, + [2416] = 1778, + [2417] = 1777, + [2418] = 1759, + [2419] = 1760, + [2420] = 1761, + [2421] = 1762, + [2422] = 1813, + [2423] = 1763, + [2424] = 1764, + [2425] = 2425, + [2426] = 1765, + [2427] = 1894, + [2428] = 2383, [2429] = 2429, - [2430] = 2421, + [2430] = 1531, [2431] = 2431, - [2432] = 1824, - [2433] = 2393, + [2432] = 1705, + [2433] = 2433, [2434] = 2434, - [2435] = 1707, - [2436] = 2436, - [2437] = 1706, - [2438] = 1707, - [2439] = 2426, - [2440] = 1795, - [2441] = 1551, - [2442] = 2442, + [2435] = 2435, + [2436] = 1706, + [2437] = 2437, + [2438] = 2374, + [2439] = 2439, + [2440] = 2440, + [2441] = 2377, + [2442] = 1539, [2443] = 2443, - [2444] = 2434, - [2445] = 2445, - [2446] = 2446, - [2447] = 2447, - [2448] = 1529, - [2449] = 2449, - [2450] = 2450, - [2451] = 1868, - [2452] = 1778, - [2453] = 1779, - [2454] = 1780, - [2455] = 1771, - [2456] = 2456, - [2457] = 2457, - [2458] = 2458, - [2459] = 2459, - [2460] = 2460, + [2444] = 2444, + [2445] = 2374, + [2446] = 1753, + [2447] = 1754, + [2448] = 1651, + [2449] = 1787, + [2450] = 2439, + [2451] = 2451, + [2452] = 2440, + [2453] = 214, + [2454] = 2435, + [2455] = 2455, + [2456] = 1867, + [2457] = 2374, + [2458] = 1739, + [2459] = 2444, + [2460] = 1867, [2461] = 2461, - [2462] = 1778, - [2463] = 1779, - [2464] = 1780, - [2465] = 1771, - [2466] = 1529, - [2467] = 1624, - [2468] = 2421, - [2469] = 1646, - [2470] = 1799, - [2471] = 2421, - [2472] = 2472, - [2473] = 2473, - [2474] = 2474, - [2475] = 1897, - [2476] = 2365, - [2477] = 2477, + [2462] = 1535, + [2463] = 2463, + [2464] = 1549, + [2465] = 1740, + [2466] = 2466, + [2467] = 1794, + [2468] = 1741, + [2469] = 1743, + [2470] = 1670, + [2471] = 1744, + [2472] = 1528, + [2473] = 2374, + [2474] = 1745, + [2475] = 2443, + [2476] = 1707, + [2477] = 1670, [2478] = 2478, - [2479] = 2479, - [2480] = 2456, - [2481] = 2421, - [2482] = 2457, - [2483] = 2483, - [2484] = 1789, - [2485] = 1868, - [2486] = 2421, - [2487] = 239, - [2488] = 1868, - [2489] = 2483, - [2490] = 1645, - [2491] = 1741, - [2492] = 1742, - [2493] = 1743, - [2494] = 1744, - [2495] = 1745, - [2496] = 1746, - [2497] = 1747, - [2498] = 1748, - [2499] = 1749, - [2500] = 1750, - [2501] = 1751, - [2502] = 1781, - [2503] = 1753, - [2504] = 1754, - [2505] = 1755, - [2506] = 1756, - [2507] = 1757, - [2508] = 1758, - [2509] = 1759, - [2510] = 1760, - [2511] = 1761, - [2512] = 1762, - [2513] = 1763, - [2514] = 1764, - [2515] = 1765, - [2516] = 1767, - [2517] = 1551, - [2518] = 1588, - [2519] = 1778, - [2520] = 1779, - [2521] = 1780, - [2522] = 1771, - [2523] = 2523, - [2524] = 1897, - [2525] = 1672, - [2526] = 1868, - [2527] = 1588, - [2528] = 1708, - [2529] = 1757, - [2530] = 2530, - [2531] = 1529, - [2532] = 2532, - [2533] = 2533, - [2534] = 1742, - [2535] = 1743, - [2536] = 2536, - [2537] = 1744, - [2538] = 2538, - [2539] = 1745, - [2540] = 2540, - [2541] = 2541, - [2542] = 1746, - [2543] = 2543, - [2544] = 2544, - [2545] = 2545, - [2546] = 1710, - [2547] = 1778, - [2548] = 1779, - [2549] = 1780, - [2550] = 1771, - [2551] = 1747, - [2552] = 1748, + [2479] = 1746, + [2480] = 1710, + [2481] = 1747, + [2482] = 1748, + [2483] = 1749, + [2484] = 1739, + [2485] = 1740, + [2486] = 1741, + [2487] = 1743, + [2488] = 1744, + [2489] = 1745, + [2490] = 1746, + [2491] = 1747, + [2492] = 1748, + [2493] = 1749, + [2494] = 1779, + [2495] = 1751, + [2496] = 1752, + [2497] = 1753, + [2498] = 1754, + [2499] = 1755, + [2500] = 1756, + [2501] = 1757, + [2502] = 1758, + [2503] = 1759, + [2504] = 1760, + [2505] = 1761, + [2506] = 1762, + [2507] = 1763, + [2508] = 1764, + [2509] = 1765, + [2510] = 2510, + [2511] = 1706, + [2512] = 1779, + [2513] = 214, + [2514] = 1776, + [2515] = 1722, + [2516] = 1778, + [2517] = 1777, + [2518] = 1751, + [2519] = 1752, + [2520] = 2520, + [2521] = 1867, + [2522] = 1528, + [2523] = 1867, + [2524] = 2524, + [2525] = 991, + [2526] = 2526, + [2527] = 1739, + [2528] = 1740, + [2529] = 1743, + [2530] = 1744, + [2531] = 1745, + [2532] = 1746, + [2533] = 1747, + [2534] = 1748, + [2535] = 1749, + [2536] = 1779, + [2537] = 1751, + [2538] = 1752, + [2539] = 1753, + [2540] = 1754, + [2541] = 1755, + [2542] = 1756, + [2543] = 1757, + [2544] = 1758, + [2545] = 1759, + [2546] = 1760, + [2547] = 1761, + [2548] = 1762, + [2549] = 1763, + [2550] = 1764, + [2551] = 1765, + [2552] = 1894, [2553] = 2553, [2554] = 2554, - [2555] = 1749, + [2555] = 2555, [2556] = 2556, - [2557] = 2557, - [2558] = 2541, - [2559] = 1750, - [2560] = 1751, - [2561] = 1781, - [2562] = 1753, - [2563] = 1754, - [2564] = 1755, - [2565] = 2565, - [2566] = 1651, - [2567] = 1756, - [2568] = 2568, - [2569] = 1758, - [2570] = 2541, - [2571] = 1759, - [2572] = 1760, - [2573] = 1707, - [2574] = 1708, - [2575] = 1761, - [2576] = 2541, - [2577] = 1762, - [2578] = 1763, - [2579] = 2541, - [2580] = 1764, - [2581] = 977, - [2582] = 1765, - [2583] = 2541, - [2584] = 1767, - [2585] = 1789, + [2557] = 1670, + [2558] = 1705, + [2559] = 1706, + [2560] = 1651, + [2561] = 988, + [2562] = 1787, + [2563] = 992, + [2564] = 1670, + [2565] = 1588, + [2566] = 1647, + [2567] = 1707, + [2568] = 1710, + [2569] = 2569, + [2570] = 2570, + [2571] = 1867, + [2572] = 2572, + [2573] = 2573, + [2574] = 2574, + [2575] = 2575, + [2576] = 2576, + [2577] = 1776, + [2578] = 1722, + [2579] = 1778, + [2580] = 1777, + [2581] = 2581, + [2582] = 2582, + [2583] = 2583, + [2584] = 2584, + [2585] = 2585, [2586] = 2586, - [2587] = 2587, - [2588] = 1588, - [2589] = 2589, - [2590] = 2590, - [2591] = 2591, - [2592] = 2541, + [2587] = 2572, + [2588] = 2572, + [2589] = 2572, + [2590] = 2572, + [2591] = 2553, + [2592] = 2572, [2593] = 2593, [2594] = 2594, - [2595] = 1897, + [2595] = 2572, [2596] = 2596, - [2597] = 1672, - [2598] = 2541, - [2599] = 979, - [2600] = 1706, - [2601] = 978, - [2602] = 1868, + [2597] = 2597, + [2598] = 2598, + [2599] = 1528, + [2600] = 2600, + [2601] = 2572, + [2602] = 2602, [2603] = 2603, - [2604] = 2603, - [2605] = 1672, - [2606] = 1741, + [2604] = 2572, + [2605] = 2605, + [2606] = 2572, [2607] = 2607, - [2608] = 2541, - [2609] = 1551, + [2608] = 1741, + [2609] = 2118, [2610] = 2610, [2611] = 2611, - [2612] = 2541, - [2613] = 2477, - [2614] = 2614, - [2615] = 2151, - [2616] = 2150, - [2617] = 2617, - [2618] = 2618, + [2612] = 2612, + [2613] = 2117, + [2614] = 2118, + [2615] = 2117, + [2616] = 2118, + [2617] = 2117, + [2618] = 2118, [2619] = 2619, - [2620] = 2151, + [2620] = 2117, [2621] = 2621, - [2622] = 2150, - [2623] = 2150, - [2624] = 2151, - [2625] = 2151, - [2626] = 2626, - [2627] = 2627, - [2628] = 2628, - [2629] = 2629, - [2630] = 1824, + [2622] = 2433, + [2623] = 2623, + [2624] = 2624, + [2625] = 2625, + [2626] = 2117, + [2627] = 2117, + [2628] = 2118, + [2629] = 2118, + [2630] = 2630, [2631] = 2631, - [2632] = 2150, - [2633] = 2151, + [2632] = 2632, + [2633] = 2633, [2634] = 2634, [2635] = 2635, - [2636] = 2150, - [2637] = 2151, - [2638] = 2638, + [2636] = 2636, + [2637] = 2637, + [2638] = 1827, [2639] = 2639, [2640] = 2640, [2641] = 2641, - [2642] = 2642, - [2643] = 2638, - [2644] = 2644, + [2642] = 1528, + [2643] = 1528, + [2644] = 2611, [2645] = 2645, - [2646] = 1588, + [2646] = 1528, [2647] = 2647, - [2648] = 1588, - [2649] = 1588, - [2650] = 2150, + [2648] = 236, + [2649] = 2649, + [2650] = 2650, [2651] = 2651, [2652] = 2652, [2653] = 2653, - [2654] = 226, + [2654] = 2654, [2655] = 2655, [2656] = 2656, [2657] = 2657, [2658] = 2658, [2659] = 2659, - [2660] = 2653, - [2661] = 2653, - [2662] = 2653, + [2660] = 2660, + [2661] = 2661, + [2662] = 2662, [2663] = 2663, - [2664] = 2653, + [2664] = 2664, [2665] = 2665, - [2666] = 2653, - [2667] = 2667, + [2666] = 2666, + [2667] = 2652, [2668] = 2668, [2669] = 2669, [2670] = 2670, @@ -7197,147 +7147,147 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2672] = 2672, [2673] = 2673, [2674] = 2674, - [2675] = 2675, - [2676] = 2676, - [2677] = 2677, - [2678] = 2678, + [2675] = 2652, + [2676] = 2652, + [2677] = 2652, + [2678] = 235, [2679] = 2679, [2680] = 2680, - [2681] = 229, - [2682] = 2682, + [2681] = 212, + [2682] = 2652, [2683] = 2683, - [2684] = 2684, + [2684] = 210, [2685] = 2685, - [2686] = 1243, + [2686] = 2652, [2687] = 2687, [2688] = 2688, - [2689] = 1281, + [2689] = 2652, [2690] = 2690, - [2691] = 225, + [2691] = 2691, [2692] = 2692, [2693] = 2693, - [2694] = 2694, - [2695] = 229, + [2694] = 1648, + [2695] = 2695, [2696] = 2696, - [2697] = 2697, - [2698] = 233, + [2697] = 212, + [2698] = 236, [2699] = 2699, [2700] = 2700, [2701] = 2701, [2702] = 2702, [2703] = 2703, [2704] = 2704, - [2705] = 2653, - [2706] = 2653, - [2707] = 2653, + [2705] = 2705, + [2706] = 2652, + [2707] = 2707, [2708] = 2708, - [2709] = 2709, - [2710] = 1619, - [2711] = 2711, - [2712] = 226, - [2713] = 2713, - [2714] = 2714, - [2715] = 2715, + [2709] = 2652, + [2710] = 2710, + [2711] = 1246, + [2712] = 2712, + [2713] = 2554, + [2714] = 2555, + [2715] = 235, [2716] = 2716, - [2717] = 2653, + [2717] = 2717, [2718] = 2718, - [2719] = 2719, - [2720] = 1580, + [2719] = 1633, + [2720] = 2720, [2721] = 2721, [2722] = 2722, - [2723] = 2723, + [2723] = 210, [2724] = 2724, - [2725] = 2610, - [2726] = 2607, + [2725] = 2725, + [2726] = 2726, [2727] = 2727, [2728] = 2728, - [2729] = 225, - [2730] = 233, + [2729] = 1272, + [2730] = 2196, [2731] = 2731, [2732] = 2732, - [2733] = 2733, - [2734] = 2267, + [2733] = 2340, + [2734] = 2114, [2735] = 2735, [2736] = 2736, - [2737] = 2737, - [2738] = 2123, - [2739] = 2220, - [2740] = 2740, - [2741] = 2231, - [2742] = 2742, - [2743] = 2461, - [2744] = 2744, - [2745] = 2365, - [2746] = 2746, - [2747] = 2431, - [2748] = 1275, - [2749] = 2523, + [2737] = 2252, + [2738] = 2738, + [2739] = 2380, + [2740] = 2461, + [2741] = 2524, + [2742] = 2443, + [2743] = 2443, + [2744] = 2463, + [2745] = 2375, + [2746] = 2444, + [2747] = 2383, + [2748] = 2461, + [2749] = 2434, [2750] = 2750, - [2751] = 2751, - [2752] = 2478, - [2753] = 2365, - [2754] = 2456, - [2755] = 2457, - [2756] = 2483, - [2757] = 2750, - [2758] = 2366, - [2759] = 2456, - [2760] = 2460, - [2761] = 2483, - [2762] = 2762, - [2763] = 2422, - [2764] = 2429, - [2765] = 2449, - [2766] = 2457, - [2767] = 2429, - [2768] = 2478, - [2769] = 2366, - [2770] = 2449, - [2771] = 2751, - [2772] = 2772, + [2751] = 2444, + [2752] = 2752, + [2753] = 2524, + [2754] = 2520, + [2755] = 2520, + [2756] = 2455, + [2757] = 2757, + [2758] = 2758, + [2759] = 2455, + [2760] = 2757, + [2761] = 1269, + [2762] = 2510, + [2763] = 2750, + [2764] = 2440, + [2765] = 2440, + [2766] = 2766, + [2767] = 2767, + [2768] = 2383, + [2769] = 2769, + [2770] = 2770, + [2771] = 2771, + [2772] = 2769, [2773] = 2773, - [2774] = 2773, + [2774] = 2774, [2775] = 2775, [2776] = 2776, - [2777] = 2777, - [2778] = 2778, - [2779] = 2777, + [2777] = 2775, + [2778] = 2776, + [2779] = 2779, [2780] = 2780, [2781] = 2781, - [2782] = 2782, - [2783] = 2783, + [2782] = 2779, + [2783] = 2780, [2784] = 2784, - [2785] = 2785, + [2785] = 2784, [2786] = 2786, - [2787] = 2783, - [2788] = 2781, - [2789] = 2782, - [2790] = 2775, - [2791] = 2778, - [2792] = 2783, - [2793] = 1301, + [2787] = 2770, + [2788] = 2770, + [2789] = 2789, + [2790] = 1287, + [2791] = 2791, + [2792] = 2792, + [2793] = 2793, [2794] = 2794, - [2795] = 1283, - [2796] = 1271, + [2795] = 2795, + [2796] = 2796, [2797] = 2797, [2798] = 2798, [2799] = 2799, [2800] = 2800, [2801] = 2801, - [2802] = 2802, + [2802] = 1344, [2803] = 2803, - [2804] = 1256, + [2804] = 1332, [2805] = 2805, - [2806] = 2806, + [2806] = 1317, [2807] = 2807, [2808] = 2808, [2809] = 2809, - [2810] = 2810, + [2810] = 1288, [2811] = 2811, - [2812] = 2812, - [2813] = 2363, + [2812] = 2451, + [2813] = 2813, [2814] = 2814, - [2815] = 1285, + [2815] = 2815, [2816] = 2816, [2817] = 2817, [2818] = 2818, @@ -7350,690 +7300,690 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2825] = 2825, [2826] = 2826, [2827] = 2827, - [2828] = 2828, + [2828] = 2825, [2829] = 2829, [2830] = 2830, [2831] = 2831, [2832] = 2832, [2833] = 2833, [2834] = 2834, - [2835] = 2825, - [2836] = 2820, - [2837] = 2837, + [2835] = 2835, + [2836] = 2831, + [2837] = 2817, [2838] = 2838, - [2839] = 2829, - [2840] = 2840, + [2839] = 2839, + [2840] = 2839, [2841] = 2841, - [2842] = 2842, + [2842] = 2838, [2843] = 2843, - [2844] = 2844, + [2844] = 2827, [2845] = 2845, - [2846] = 2846, + [2846] = 2841, [2847] = 2847, [2848] = 2848, [2849] = 2849, [2850] = 2850, [2851] = 2851, [2852] = 2852, - [2853] = 2831, + [2853] = 2853, [2854] = 2854, - [2855] = 2855, + [2855] = 2845, [2856] = 2856, - [2857] = 2832, - [2858] = 2823, - [2859] = 2852, - [2860] = 2826, - [2861] = 2861, - [2862] = 2821, - [2863] = 2833, - [2864] = 2855, - [2865] = 2848, + [2857] = 2857, + [2858] = 2858, + [2859] = 2859, + [2860] = 2835, + [2861] = 2832, + [2862] = 2862, + [2863] = 2863, + [2864] = 2864, + [2865] = 2865, [2866] = 2866, - [2867] = 2867, + [2867] = 2834, [2868] = 2868, - [2869] = 2869, + [2869] = 2822, [2870] = 2870, [2871] = 2871, [2872] = 2872, [2873] = 2873, [2874] = 2874, [2875] = 2875, - [2876] = 2876, - [2877] = 2877, - [2878] = 2878, - [2879] = 2879, - [2880] = 1504, - [2881] = 1505, - [2882] = 1508, - [2883] = 1634, - [2884] = 1644, - [2885] = 1647, - [2886] = 1530, - [2887] = 1531, - [2888] = 1534, - [2889] = 1535, - [2890] = 1540, - [2891] = 1541, - [2892] = 1544, - [2893] = 1571, - [2894] = 1595, - [2895] = 1569, - [2896] = 1570, - [2897] = 1589, - [2898] = 1586, - [2899] = 1591, - [2900] = 1582, - [2901] = 1583, - [2902] = 1587, - [2903] = 1560, - [2904] = 1561, - [2905] = 1564, - [2906] = 1565, - [2907] = 1566, - [2908] = 1584, - [2909] = 1567, + [2876] = 1509, + [2877] = 1506, + [2878] = 1504, + [2879] = 1623, + [2880] = 1587, + [2881] = 1591, + [2882] = 1597, + [2883] = 1572, + [2884] = 1570, + [2885] = 1573, + [2886] = 1575, + [2887] = 1571, + [2888] = 1583, + [2889] = 1540, + [2890] = 1599, + [2891] = 1585, + [2892] = 1625, + [2893] = 1584, + [2894] = 1596, + [2895] = 1530, + [2896] = 1532, + [2897] = 1533, + [2898] = 1589, + [2899] = 1537, + [2900] = 1538, + [2901] = 1542, + [2902] = 1565, + [2903] = 1566, + [2904] = 1567, + [2905] = 1543, + [2906] = 1568, + [2907] = 1546, + [2908] = 1547, + [2909] = 1569, [2910] = 1650, - [2911] = 1626, - [2912] = 1585, - [2913] = 1631, - [2914] = 1632, - [2915] = 1633, - [2916] = 1568, - [2917] = 219, - [2918] = 218, - [2919] = 1603, - [2920] = 1581, - [2921] = 1574, + [2911] = 1586, + [2912] = 1636, + [2913] = 213, + [2914] = 219, + [2915] = 1639, + [2916] = 1550, + [2917] = 1602, + [2918] = 1604, + [2919] = 1641, + [2920] = 1610, + [2921] = 2921, [2922] = 1562, - [2923] = 1602, - [2924] = 1640, - [2925] = 1622, - [2926] = 1520, - [2927] = 1592, - [2928] = 1511, - [2929] = 1553, - [2930] = 1605, - [2931] = 2931, - [2932] = 1614, - [2933] = 1604, - [2934] = 1505, - [2935] = 1504, - [2936] = 1643, - [2937] = 1508, - [2938] = 1527, - [2939] = 1573, - [2940] = 1525, - [2941] = 1563, - [2942] = 1577, - [2943] = 1524, - [2944] = 1526, - [2945] = 1558, - [2946] = 1528, - [2947] = 1575, - [2948] = 1548, - [2949] = 1620, - [2950] = 1625, - [2951] = 1618, - [2952] = 1621, - [2953] = 1630, - [2954] = 1590, - [2955] = 1606, - [2956] = 1626, - [2957] = 1631, - [2958] = 1632, - [2959] = 1615, - [2960] = 1633, - [2961] = 1599, - [2962] = 1634, - [2963] = 1635, - [2964] = 1644, - [2965] = 1647, - [2966] = 1530, - [2967] = 1531, - [2968] = 1534, - [2969] = 1535, - [2970] = 1540, - [2971] = 1597, - [2972] = 1541, - [2973] = 1544, - [2974] = 2974, - [2975] = 2975, - [2976] = 2976, - [2977] = 2977, - [2978] = 1511, - [2979] = 1505, - [2980] = 1504, - [2981] = 1508, - [2982] = 2982, - [2983] = 2974, - [2984] = 2975, - [2985] = 2976, - [2986] = 2977, - [2987] = 1601, - [2988] = 1560, - [2989] = 1561, - [2990] = 1564, - [2991] = 1565, - [2992] = 1566, - [2993] = 2982, - [2994] = 1567, - [2995] = 1568, - [2996] = 1569, - [2997] = 1572, - [2998] = 1628, - [2999] = 2974, - [3000] = 2975, - [3001] = 2976, - [3002] = 2977, - [3003] = 1571, - [3004] = 2982, - [3005] = 2974, - [3006] = 2975, - [3007] = 2976, - [3008] = 2977, - [3009] = 2974, - [3010] = 1582, - [3011] = 1583, - [3012] = 2975, - [3013] = 1584, - [3014] = 1585, - [3015] = 1586, - [3016] = 1587, - [3017] = 2976, - [3018] = 1589, - [3019] = 1591, - [3020] = 1650, - [3021] = 1595, - [3022] = 2977, - [3023] = 2982, - [3024] = 1547, - [3025] = 1549, - [3026] = 1555, - [3027] = 1556, - [3028] = 2982, - [3029] = 1616, - [3030] = 2982, - [3031] = 2982, - [3032] = 1648, - [3033] = 1552, - [3034] = 1594, - [3035] = 1542, - [3036] = 1533, - [3037] = 1536, - [3038] = 1576, - [3039] = 1538, - [3040] = 1539, - [3041] = 2982, - [3042] = 2982, - [3043] = 2982, - [3044] = 1627, - [3045] = 1596, - [3046] = 1570, + [2923] = 1512, + [2924] = 1624, + [2925] = 1504, + [2926] = 1628, + [2927] = 1629, + [2928] = 1638, + [2929] = 1630, + [2930] = 1640, + [2931] = 1509, + [2932] = 1505, + [2933] = 1506, + [2934] = 1548, + [2935] = 1522, + [2936] = 1529, + [2937] = 1514, + [2938] = 1574, + [2939] = 1527, + [2940] = 1516, + [2941] = 1589, + [2942] = 2942, + [2943] = 1568, + [2944] = 2944, + [2945] = 2945, + [2946] = 1569, + [2947] = 1553, + [2948] = 2948, + [2949] = 1649, + [2950] = 1636, + [2951] = 1506, + [2952] = 1530, + [2953] = 1532, + [2954] = 1533, + [2955] = 1577, + [2956] = 1583, + [2957] = 1551, + [2958] = 1584, + [2959] = 1585, + [2960] = 1599, + [2961] = 1586, + [2962] = 1600, + [2963] = 1587, + [2964] = 1626, + [2965] = 1591, + [2966] = 1650, + [2967] = 1596, + [2968] = 2942, + [2969] = 1597, + [2970] = 1620, + [2971] = 1558, + [2972] = 1578, + [2973] = 1611, + [2974] = 2948, + [2975] = 1609, + [2976] = 1646, + [2977] = 2942, + [2978] = 1637, + [2979] = 2979, + [2980] = 2979, + [2981] = 1554, + [2982] = 2944, + [2983] = 1570, + [2984] = 2944, + [2985] = 2945, + [2986] = 2979, + [2987] = 1540, + [2988] = 1598, + [2989] = 1571, + [2990] = 1572, + [2991] = 1580, + [2992] = 1576, + [2993] = 1567, + [2994] = 1632, + [2995] = 1565, + [2996] = 2948, + [2997] = 1573, + [2998] = 1559, + [2999] = 1613, + [3000] = 2942, + [3001] = 1614, + [3002] = 2944, + [3003] = 2979, + [3004] = 2979, + [3005] = 1623, + [3006] = 2945, + [3007] = 1544, + [3008] = 2945, + [3009] = 2979, + [3010] = 1563, + [3011] = 1621, + [3012] = 1625, + [3013] = 2979, + [3014] = 1537, + [3015] = 1603, + [3016] = 1505, + [3017] = 1538, + [3018] = 1560, + [3019] = 1594, + [3020] = 2979, + [3021] = 1642, + [3022] = 1575, + [3023] = 1631, + [3024] = 1635, + [3025] = 2979, + [3026] = 1504, + [3027] = 1542, + [3028] = 1543, + [3029] = 2979, + [3030] = 1545, + [3031] = 1546, + [3032] = 2948, + [3033] = 1547, + [3034] = 2948, + [3035] = 2942, + [3036] = 2944, + [3037] = 1509, + [3038] = 1566, + [3039] = 1556, + [3040] = 2945, + [3041] = 1536, + [3042] = 1622, + [3043] = 3043, + [3044] = 3044, + [3045] = 3045, + [3046] = 3046, [3047] = 3047, [3048] = 3048, - [3049] = 3049, - [3050] = 3050, - [3051] = 3051, - [3052] = 3052, - [3053] = 3053, - [3054] = 3054, - [3055] = 3055, - [3056] = 3054, - [3057] = 3051, + [3049] = 3047, + [3050] = 3048, + [3051] = 3048, + [3052] = 3048, + [3053] = 3047, + [3054] = 1523, + [3055] = 3047, + [3056] = 1524, + [3057] = 3057, [3058] = 3058, - [3059] = 3059, + [3059] = 1525, [3060] = 3060, - [3061] = 1523, - [3062] = 3051, + [3061] = 3047, + [3062] = 3062, [3063] = 3063, - [3064] = 3054, + [3064] = 3064, [3065] = 3065, - [3066] = 1518, - [3067] = 1520, - [3068] = 3051, - [3069] = 1517, + [3066] = 3066, + [3067] = 3067, + [3068] = 3048, + [3069] = 3069, [3070] = 3070, [3071] = 3071, [3072] = 3072, [3073] = 3073, - [3074] = 3054, - [3075] = 3075, - [3076] = 3054, - [3077] = 3051, - [3078] = 3078, + [3074] = 3074, + [3075] = 3047, + [3076] = 1514, + [3077] = 1512, + [3078] = 3047, [3079] = 3079, - [3080] = 3054, - [3081] = 1527, + [3080] = 3080, + [3081] = 3081, [3082] = 3082, [3083] = 3083, - [3084] = 3084, + [3084] = 1538, [3085] = 3085, - [3086] = 3086, - [3087] = 3054, - [3088] = 1557, - [3089] = 1613, - [3090] = 1581, - [3091] = 978, - [3092] = 1626, - [3093] = 1631, - [3094] = 1632, - [3095] = 1602, - [3096] = 1633, + [3086] = 1602, + [3087] = 3087, + [3088] = 988, + [3089] = 1604, + [3090] = 1610, + [3091] = 1624, + [3092] = 1628, + [3093] = 1629, + [3094] = 991, + [3095] = 1634, + [3096] = 1644, [3097] = 3097, - [3098] = 1634, - [3099] = 1644, - [3100] = 1647, - [3101] = 1603, - [3102] = 1604, - [3103] = 1530, - [3104] = 1531, - [3105] = 1534, - [3106] = 1535, - [3107] = 1605, - [3108] = 3108, - [3109] = 1600, - [3110] = 1553, - [3111] = 1540, - [3112] = 1541, - [3113] = 1544, - [3114] = 3114, - [3115] = 3115, - [3116] = 1554, - [3117] = 977, - [3118] = 3118, - [3119] = 1560, - [3120] = 1561, - [3121] = 1564, - [3122] = 1565, - [3123] = 1566, - [3124] = 1641, - [3125] = 1642, - [3126] = 1567, - [3127] = 1568, - [3128] = 1622, - [3129] = 1570, - [3130] = 1571, - [3131] = 1582, + [3098] = 3098, + [3099] = 992, + [3100] = 1630, + [3101] = 1638, + [3102] = 1639, + [3103] = 1640, + [3104] = 1641, + [3105] = 3105, + [3106] = 1552, + [3107] = 1540, + [3108] = 1599, + [3109] = 1623, + [3110] = 1625, + [3111] = 3111, + [3112] = 1636, + [3113] = 1530, + [3114] = 1532, + [3115] = 1533, + [3116] = 1537, + [3117] = 1542, + [3118] = 1543, + [3119] = 1546, + [3120] = 1547, + [3121] = 1565, + [3122] = 1566, + [3123] = 1567, + [3124] = 1562, + [3125] = 1569, + [3126] = 1570, + [3127] = 1571, + [3128] = 1572, + [3129] = 1505, + [3130] = 1573, + [3131] = 1575, [3132] = 1583, [3133] = 1584, [3134] = 1585, - [3135] = 1586, - [3136] = 1587, - [3137] = 1589, - [3138] = 1591, - [3139] = 1650, - [3140] = 1595, - [3141] = 3141, - [3142] = 3142, - [3143] = 979, + [3135] = 3135, + [3136] = 1586, + [3137] = 1587, + [3138] = 1589, + [3139] = 1591, + [3140] = 1650, + [3141] = 1596, + [3142] = 1597, + [3143] = 3143, [3144] = 3144, - [3145] = 3145, - [3146] = 1643, - [3147] = 1592, - [3148] = 1550, - [3149] = 1511, - [3150] = 1593, - [3151] = 1562, - [3152] = 1537, - [3153] = 1526, - [3154] = 1543, - [3155] = 1574, - [3156] = 1640, + [3145] = 1557, + [3146] = 1561, + [3147] = 3147, + [3148] = 1643, + [3149] = 1645, + [3150] = 1595, + [3151] = 1527, + [3152] = 3152, + [3153] = 1592, + [3154] = 1605, + [3155] = 1550, + [3156] = 1568, [3157] = 3157, - [3158] = 3158, - [3159] = 1614, - [3160] = 1569, + [3158] = 1512, + [3159] = 3159, + [3160] = 3160, [3161] = 3161, - [3162] = 1517, + [3162] = 3162, [3163] = 3163, [3164] = 3164, - [3165] = 3165, - [3166] = 3166, + [3165] = 1170, + [3166] = 1525, [3167] = 3167, - [3168] = 1504, + [3168] = 1548, [3169] = 3169, - [3170] = 1523, - [3171] = 1162, + [3170] = 3170, + [3171] = 3171, [3172] = 3172, [3173] = 3173, [3174] = 3174, - [3175] = 3175, + [3175] = 3167, [3176] = 3176, [3177] = 3177, [3178] = 3178, - [3179] = 3179, + [3179] = 1166, [3180] = 3180, - [3181] = 3181, + [3181] = 1514, [3182] = 3182, [3183] = 3183, - [3184] = 3184, + [3184] = 3167, [3185] = 3185, - [3186] = 3186, - [3187] = 1527, + [3186] = 3167, + [3187] = 3187, [3188] = 3188, - [3189] = 1525, - [3190] = 218, - [3191] = 1563, - [3192] = 219, - [3193] = 3193, - [3194] = 1524, + [3189] = 3189, + [3190] = 3190, + [3191] = 3191, + [3192] = 3192, + [3193] = 1522, + [3194] = 3194, [3195] = 3195, - [3196] = 3196, - [3197] = 1573, - [3198] = 3161, - [3199] = 3161, - [3200] = 1518, - [3201] = 3161, - [3202] = 1156, - [3203] = 1577, - [3204] = 3204, + [3196] = 1504, + [3197] = 1509, + [3198] = 1506, + [3199] = 3199, + [3200] = 1574, + [3201] = 1171, + [3202] = 3202, + [3203] = 3203, + [3204] = 1516, [3205] = 3205, - [3206] = 1505, - [3207] = 3207, + [3206] = 1529, + [3207] = 1523, [3208] = 3208, [3209] = 3209, - [3210] = 1508, + [3210] = 3210, [3211] = 3211, - [3212] = 3212, - [3213] = 1520, - [3214] = 3214, - [3215] = 3215, - [3216] = 3216, - [3217] = 3217, - [3218] = 3218, - [3219] = 1153, - [3220] = 3161, - [3221] = 977, - [3222] = 1548, - [3223] = 709, - [3224] = 1550, - [3225] = 1542, - [3226] = 1641, - [3227] = 1558, - [3228] = 1606, - [3229] = 1627, - [3230] = 3217, - [3231] = 712, - [3232] = 1594, - [3233] = 1640, - [3234] = 713, - [3235] = 1533, - [3236] = 3236, - [3237] = 1547, - [3238] = 1549, - [3239] = 1562, - [3240] = 1616, - [3241] = 978, - [3242] = 1620, - [3243] = 1625, - [3244] = 1528, - [3245] = 1581, - [3246] = 1590, - [3247] = 1536, - [3248] = 1602, - [3249] = 1643, - [3250] = 1599, - [3251] = 1597, - [3252] = 1601, - [3253] = 1628, - [3254] = 979, - [3255] = 1537, - [3256] = 1576, - [3257] = 1543, - [3258] = 1554, - [3259] = 3259, - [3260] = 1642, - [3261] = 1555, - [3262] = 3262, - [3263] = 1553, - [3264] = 1603, - [3265] = 1613, - [3266] = 714, - [3267] = 1604, - [3268] = 1538, - [3269] = 1526, - [3270] = 1648, - [3271] = 1635, - [3272] = 1605, - [3273] = 1596, - [3274] = 1593, - [3275] = 1575, - [3276] = 1572, - [3277] = 1511, - [3278] = 1615, - [3279] = 1539, - [3280] = 1622, - [3281] = 3281, - [3282] = 710, - [3283] = 1556, - [3284] = 1600, - [3285] = 1618, - [3286] = 1621, - [3287] = 1552, - [3288] = 1630, - [3289] = 1557, - [3290] = 1614, - [3291] = 1574, - [3292] = 1592, - [3293] = 3293, + [3212] = 1524, + [3213] = 3213, + [3214] = 3167, + [3215] = 1603, + [3216] = 1649, + [3217] = 1545, + [3218] = 713, + [3219] = 1552, + [3220] = 1550, + [3221] = 1562, + [3222] = 1592, + [3223] = 988, + [3224] = 1602, + [3225] = 1604, + [3226] = 1610, + [3227] = 3227, + [3228] = 1624, + [3229] = 1631, + [3230] = 1628, + [3231] = 1629, + [3232] = 1576, + [3233] = 1630, + [3234] = 1638, + [3235] = 1639, + [3236] = 1640, + [3237] = 1641, + [3238] = 991, + [3239] = 1577, + [3240] = 1578, + [3241] = 711, + [3242] = 1634, + [3243] = 1600, + [3244] = 1605, + [3245] = 715, + [3246] = 1642, + [3247] = 992, + [3248] = 1644, + [3249] = 1646, + [3250] = 1626, + [3251] = 1645, + [3252] = 712, + [3253] = 3253, + [3254] = 1558, + [3255] = 1609, + [3256] = 3256, + [3257] = 1611, + [3258] = 1613, + [3259] = 1551, + [3260] = 1614, + [3261] = 1553, + [3262] = 1505, + [3263] = 1621, + [3264] = 1620, + [3265] = 1632, + [3266] = 1635, + [3267] = 1557, + [3268] = 3174, + [3269] = 1559, + [3270] = 1560, + [3271] = 1544, + [3272] = 1554, + [3273] = 1556, + [3274] = 1536, + [3275] = 1561, + [3276] = 1643, + [3277] = 714, + [3278] = 1527, + [3279] = 3279, + [3280] = 1563, + [3281] = 1580, + [3282] = 1594, + [3283] = 1595, + [3284] = 1598, + [3285] = 1622, + [3286] = 1637, + [3287] = 1522, + [3288] = 1525, + [3289] = 1548, + [3290] = 3290, + [3291] = 3291, + [3292] = 3292, + [3293] = 3291, [3294] = 3294, [3295] = 3295, [3296] = 3296, - [3297] = 3294, - [3298] = 1525, + [3297] = 3290, + [3298] = 3298, [3299] = 3299, - [3300] = 1563, - [3301] = 1577, + [3300] = 3290, + [3301] = 1523, [3302] = 3302, - [3303] = 3302, - [3304] = 1527, - [3305] = 3302, - [3306] = 3306, + [3303] = 1514, + [3304] = 3304, + [3305] = 1524, + [3306] = 1505, [3307] = 3307, - [3308] = 1511, - [3309] = 3294, - [3310] = 1518, - [3311] = 3311, + [3308] = 3291, + [3309] = 1516, + [3310] = 3294, + [3311] = 1574, [3312] = 3312, - [3313] = 1517, - [3314] = 1523, + [3313] = 3313, + [3314] = 3314, [3315] = 3315, - [3316] = 3316, - [3317] = 3317, - [3318] = 1524, - [3319] = 1573, + [3316] = 3298, + [3317] = 1529, + [3318] = 3318, + [3319] = 1626, [3320] = 3320, [3321] = 3321, - [3322] = 3311, - [3323] = 3306, + [3322] = 1613, + [3323] = 3323, [3324] = 3324, - [3325] = 3325, - [3326] = 1576, - [3327] = 1547, - [3328] = 1153, - [3329] = 1549, - [3330] = 1536, - [3331] = 3331, - [3332] = 3332, - [3333] = 709, - [3334] = 3320, - [3335] = 3335, - [3336] = 3336, - [3337] = 3337, - [3338] = 1572, - [3339] = 1648, - [3340] = 1528, - [3341] = 1575, - [3342] = 712, - [3343] = 1552, - [3344] = 1554, - [3345] = 3345, - [3346] = 3161, - [3347] = 1594, + [3325] = 1614, + [3326] = 3326, + [3327] = 1576, + [3328] = 1577, + [3329] = 1578, + [3330] = 3315, + [3331] = 711, + [3332] = 1621, + [3333] = 3333, + [3334] = 3334, + [3335] = 1592, + [3336] = 1637, + [3337] = 714, + [3338] = 1649, + [3339] = 1552, + [3340] = 3302, + [3341] = 3341, + [3342] = 3342, + [3343] = 3343, + [3344] = 1600, + [3345] = 1605, + [3346] = 213, + [3347] = 1558, [3348] = 3348, - [3349] = 1520, + [3349] = 3349, [3350] = 3350, - [3351] = 3351, - [3352] = 1156, - [3353] = 3353, - [3354] = 1596, - [3355] = 1600, - [3356] = 3356, - [3357] = 1555, + [3351] = 1170, + [3352] = 219, + [3353] = 3167, + [3354] = 1645, + [3355] = 1631, + [3356] = 1634, + [3357] = 1166, [3358] = 3358, - [3359] = 218, + [3359] = 1171, [3360] = 3360, - [3361] = 3361, + [3361] = 3304, [3362] = 3362, - [3363] = 3363, - [3364] = 3317, - [3365] = 1537, - [3366] = 1538, - [3367] = 1539, - [3368] = 1641, - [3369] = 1642, - [3370] = 1153, - [3371] = 3345, - [3372] = 3372, - [3373] = 3373, - [3374] = 219, - [3375] = 3375, + [3363] = 1545, + [3364] = 3167, + [3365] = 3365, + [3366] = 3366, + [3367] = 3367, + [3368] = 3368, + [3369] = 3369, + [3370] = 3167, + [3371] = 3371, + [3372] = 1166, + [3373] = 1642, + [3374] = 3167, + [3375] = 1644, [3376] = 3376, [3377] = 3377, - [3378] = 3378, - [3379] = 1618, - [3380] = 1621, - [3381] = 1556, - [3382] = 1630, - [3383] = 1542, - [3384] = 1543, - [3385] = 1557, - [3386] = 3386, + [3378] = 1646, + [3379] = 3379, + [3380] = 3380, + [3381] = 3381, + [3382] = 1170, + [3383] = 1563, + [3384] = 1643, + [3385] = 3385, + [3386] = 712, [3387] = 3387, - [3388] = 3388, - [3389] = 3389, - [3390] = 1548, + [3388] = 1514, + [3389] = 3349, + [3390] = 715, [3391] = 3391, - [3392] = 1635, - [3393] = 1162, + [3392] = 3392, + [3393] = 3393, [3394] = 3394, - [3395] = 3395, + [3395] = 3341, [3396] = 3396, - [3397] = 1627, - [3398] = 3398, - [3399] = 1156, + [3397] = 3397, + [3398] = 1622, + [3399] = 3399, [3400] = 3400, - [3401] = 3401, - [3402] = 1550, + [3401] = 1603, + [3402] = 3402, [3403] = 3403, - [3404] = 1616, - [3405] = 1558, - [3406] = 3406, - [3407] = 1620, - [3408] = 1590, - [3409] = 1593, + [3404] = 3404, + [3405] = 3405, + [3406] = 1594, + [3407] = 3381, + [3408] = 3408, + [3409] = 3409, [3410] = 3410, - [3411] = 3411, - [3412] = 3161, - [3413] = 1625, - [3414] = 3161, - [3415] = 3312, + [3411] = 3341, + [3412] = 1512, + [3413] = 3413, + [3414] = 3414, + [3415] = 3415, [3416] = 3416, - [3417] = 3417, + [3417] = 3167, [3418] = 3418, - [3419] = 3417, - [3420] = 3420, - [3421] = 1162, - [3422] = 1599, - [3423] = 1606, - [3424] = 1613, - [3425] = 1615, - [3426] = 1597, - [3427] = 714, - [3428] = 1601, - [3429] = 3417, - [3430] = 3396, - [3431] = 3431, - [3432] = 1628, - [3433] = 3161, - [3434] = 3434, - [3435] = 3435, - [3436] = 3436, - [3437] = 3161, - [3438] = 3438, - [3439] = 3439, - [3440] = 3420, - [3441] = 3441, - [3442] = 1533, - [3443] = 3443, - [3444] = 1243, - [3445] = 3445, - [3446] = 713, - [3447] = 3447, - [3448] = 3161, - [3449] = 3331, - [3450] = 3436, + [3419] = 3419, + [3420] = 1609, + [3421] = 3416, + [3422] = 3422, + [3423] = 3423, + [3424] = 3413, + [3425] = 3425, + [3426] = 3426, + [3427] = 3167, + [3428] = 3428, + [3429] = 3429, + [3430] = 1551, + [3431] = 1620, + [3432] = 1553, + [3433] = 1557, + [3434] = 3349, + [3435] = 3365, + [3436] = 1595, + [3437] = 1632, + [3438] = 3362, + [3439] = 1635, + [3440] = 3440, + [3441] = 3404, + [3442] = 3442, + [3443] = 1171, + [3444] = 1559, + [3445] = 1560, + [3446] = 3446, + [3447] = 1561, + [3448] = 1544, + [3449] = 3449, + [3450] = 1554, [3451] = 3451, - [3452] = 3418, - [3453] = 3436, - [3454] = 3454, - [3455] = 3455, - [3456] = 3456, - [3457] = 3356, + [3452] = 3452, + [3453] = 1556, + [3454] = 1536, + [3455] = 1598, + [3456] = 713, + [3457] = 1611, [3458] = 3458, [3459] = 3459, [3460] = 3460, [3461] = 3461, - [3462] = 1527, - [3463] = 3463, + [3462] = 3462, + [3463] = 1580, [3464] = 3464, [3465] = 3465, [3466] = 3466, - [3467] = 710, + [3467] = 3467, [3468] = 3468, [3469] = 3469, [3470] = 3470, - [3471] = 3471, - [3472] = 213, + [3471] = 3174, + [3472] = 3472, [3473] = 3473, - [3474] = 3474, - [3475] = 3474, - [3476] = 3474, - [3477] = 3477, - [3478] = 3474, - [3479] = 3479, - [3480] = 1518, - [3481] = 977, - [3482] = 3482, - [3483] = 3483, - [3484] = 3484, - [3485] = 3474, - [3486] = 1517, - [3487] = 3487, - [3488] = 3474, - [3489] = 1523, - [3490] = 3474, - [3491] = 211, - [3492] = 3217, - [3493] = 3484, - [3494] = 979, - [3495] = 1526, - [3496] = 3312, + [3474] = 3472, + [3475] = 3473, + [3476] = 3473, + [3477] = 3473, + [3478] = 3473, + [3479] = 3473, + [3480] = 3469, + [3481] = 3472, + [3482] = 213, + [3483] = 219, + [3484] = 3473, + [3485] = 3485, + [3486] = 3472, + [3487] = 1527, + [3488] = 3488, + [3489] = 991, + [3490] = 992, + [3491] = 3491, + [3492] = 3492, + [3493] = 1523, + [3494] = 1524, + [3495] = 3495, + [3496] = 3472, [3497] = 3497, - [3498] = 978, - [3499] = 3499, - [3500] = 3500, - [3501] = 3471, - [3502] = 3502, - [3503] = 3471, - [3504] = 3471, + [3498] = 3498, + [3499] = 200, + [3500] = 201, + [3501] = 3473, + [3502] = 3302, + [3503] = 1525, + [3504] = 3472, [3505] = 3505, - [3506] = 3471, - [3507] = 3474, + [3506] = 988, + [3507] = 3507, [3508] = 3508, [3509] = 3509, [3510] = 3510, - [3511] = 3471, + [3511] = 3511, [3512] = 3512, [3513] = 3513, [3514] = 3514, @@ -8047,31 +7997,31 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3522] = 3522, [3523] = 3523, [3524] = 3524, - [3525] = 3525, + [3525] = 3299, [3526] = 3526, [3527] = 3527, [3528] = 3528, [3529] = 3529, - [3530] = 209, + [3530] = 3530, [3531] = 3531, [3532] = 3532, [3533] = 3533, - [3534] = 240, - [3535] = 241, + [3534] = 3534, + [3535] = 3535, [3536] = 3536, [3537] = 3537, [3538] = 3538, [3539] = 3539, [3540] = 3540, - [3541] = 3514, - [3542] = 3542, - [3543] = 3543, + [3541] = 3541, + [3542] = 1605, + [3543] = 3508, [3544] = 3544, [3545] = 3545, - [3546] = 3546, - [3547] = 3544, - [3548] = 3512, - [3549] = 3549, + [3546] = 3540, + [3547] = 3547, + [3548] = 3548, + [3549] = 1525, [3550] = 3550, [3551] = 3551, [3552] = 3552, @@ -8083,113 +8033,113 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3558] = 3558, [3559] = 3559, [3560] = 3560, - [3561] = 3518, - [3562] = 3521, - [3563] = 3533, + [3561] = 3561, + [3562] = 3562, + [3563] = 3508, [3564] = 3564, [3565] = 3565, [3566] = 3566, [3567] = 3567, [3568] = 3568, [3569] = 3569, - [3570] = 3570, - [3571] = 1523, - [3572] = 3572, + [3570] = 3508, + [3571] = 3571, + [3572] = 3540, [3573] = 3573, - [3574] = 3574, - [3575] = 3575, + [3574] = 3508, + [3575] = 3540, [3576] = 3576, [3577] = 3577, [3578] = 3578, [3579] = 3579, - [3580] = 3332, - [3581] = 3581, - [3582] = 3553, + [3580] = 3580, + [3581] = 3555, + [3582] = 3582, [3583] = 3583, - [3584] = 3456, + [3584] = 3584, [3585] = 3585, [3586] = 3586, - [3587] = 3587, + [3587] = 3366, [3588] = 3588, [3589] = 3589, [3590] = 3590, [3591] = 3591, - [3592] = 3553, - [3593] = 3593, + [3592] = 3592, + [3593] = 3508, [3594] = 3594, [3595] = 3595, - [3596] = 3556, + [3596] = 3595, [3597] = 3597, [3598] = 3598, - [3599] = 3566, - [3600] = 3572, + [3599] = 3540, + [3600] = 3577, [3601] = 3601, [3602] = 3602, [3603] = 3603, [3604] = 3604, - [3605] = 3556, + [3605] = 3605, [3606] = 3606, [3607] = 3607, - [3608] = 3566, - [3609] = 3609, - [3610] = 3610, - [3611] = 3362, - [3612] = 3377, + [3608] = 3608, + [3609] = 3540, + [3610] = 3605, + [3611] = 3611, + [3612] = 3612, [3613] = 3613, - [3614] = 3337, + [3614] = 3371, [3615] = 3615, - [3616] = 3556, - [3617] = 3566, - [3618] = 3566, - [3619] = 3549, + [3616] = 3545, + [3617] = 3617, + [3618] = 3618, + [3619] = 3619, [3620] = 3620, - [3621] = 3621, - [3622] = 3556, - [3623] = 3566, - [3624] = 3556, - [3625] = 3566, - [3626] = 3593, + [3621] = 3594, + [3622] = 3622, + [3623] = 3623, + [3624] = 3624, + [3625] = 3625, + [3626] = 3626, [3627] = 3627, [3628] = 3628, - [3629] = 3594, - [3630] = 3569, + [3629] = 3629, + [3630] = 3630, [3631] = 3631, [3632] = 3632, [3633] = 3633, - [3634] = 3545, + [3634] = 3634, [3635] = 3635, [3636] = 3636, - [3637] = 3556, - [3638] = 3638, - [3639] = 3639, + [3637] = 3637, + [3638] = 3507, + [3639] = 3636, [3640] = 3640, [3641] = 3641, - [3642] = 3572, + [3642] = 3642, [3643] = 3643, - [3644] = 1518, - [3645] = 3645, - [3646] = 1517, + [3644] = 3377, + [3645] = 3619, + [3646] = 3646, [3647] = 3647, - [3648] = 1593, - [3649] = 1613, - [3650] = 3650, + [3648] = 3648, + [3649] = 3649, + [3650] = 3634, [3651] = 3651, - [3652] = 1554, - [3653] = 1557, - [3654] = 1641, - [3655] = 1642, + [3652] = 3652, + [3653] = 3653, + [3654] = 3654, + [3655] = 3655, [3656] = 3656, [3657] = 3657, - [3658] = 1600, - [3659] = 3574, - [3660] = 3281, - [3661] = 3661, - [3662] = 3575, - [3663] = 3663, + [3658] = 3658, + [3659] = 3659, + [3660] = 1595, + [3661] = 1592, + [3662] = 1552, + [3663] = 3508, [3664] = 3664, [3665] = 3665, [3666] = 3666, - [3667] = 3667, + [3667] = 3410, [3668] = 3668, [3669] = 3669, [3670] = 3670, @@ -8197,34 +8147,34 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3672] = 3672, [3673] = 3673, [3674] = 3674, - [3675] = 3675, - [3676] = 3676, - [3677] = 3677, + [3675] = 3545, + [3676] = 3643, + [3677] = 3652, [3678] = 3678, [3679] = 3679, - [3680] = 3680, + [3680] = 3532, [3681] = 3681, [3682] = 3682, [3683] = 3683, [3684] = 3684, - [3685] = 3685, + [3685] = 3666, [3686] = 3686, [3687] = 3687, [3688] = 3688, - [3689] = 3689, + [3689] = 3555, [3690] = 3690, [3691] = 3691, - [3692] = 3692, - [3693] = 3693, - [3694] = 3694, - [3695] = 3695, - [3696] = 3316, - [3697] = 3697, - [3698] = 3698, + [3692] = 3579, + [3693] = 3642, + [3694] = 3253, + [3695] = 3508, + [3696] = 1523, + [3697] = 1524, + [3698] = 203, [3699] = 3699, [3700] = 3700, [3701] = 3701, - [3702] = 3556, + [3702] = 3409, [3703] = 3703, [3704] = 3704, [3705] = 3705, @@ -8233,413 +8183,413 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3708] = 3708, [3709] = 3709, [3710] = 3710, - [3711] = 3711, + [3711] = 1634, [3712] = 3712, - [3713] = 3713, + [3713] = 1644, [3714] = 3714, [3715] = 3715, - [3716] = 3716, - [3717] = 3717, + [3716] = 3578, + [3717] = 3590, [3718] = 3718, - [3719] = 3628, - [3720] = 3720, - [3721] = 3576, + [3719] = 3642, + [3720] = 3709, + [3721] = 3721, [3722] = 3722, - [3723] = 3633, - [3724] = 3597, - [3725] = 3656, + [3723] = 3634, + [3724] = 3724, + [3725] = 3725, [3726] = 3726, [3727] = 3727, - [3728] = 1537, - [3729] = 1543, - [3730] = 1550, - [3731] = 3731, - [3732] = 3732, - [3733] = 3733, + [3728] = 3728, + [3729] = 3729, + [3730] = 1557, + [3731] = 1561, + [3732] = 1643, + [3733] = 1645, [3734] = 3734, [3735] = 3735, [3736] = 3736, [3737] = 3737, - [3738] = 3597, - [3739] = 3739, - [3740] = 3656, + [3738] = 3738, + [3739] = 3540, + [3740] = 239, [3741] = 3741, [3742] = 3742, - [3743] = 3743, - [3744] = 3744, + [3743] = 240, + [3744] = 3558, [3745] = 3745, [3746] = 3746, [3747] = 3747, [3748] = 3748, [3749] = 3749, [3750] = 3750, - [3751] = 3751, + [3751] = 3606, [3752] = 3752, [3753] = 3753, - [3754] = 3754, + [3754] = 3524, [3755] = 3755, - [3756] = 3756, - [3757] = 3757, + [3756] = 3749, + [3757] = 3527, [3758] = 3758, - [3759] = 3758, - [3760] = 3760, - [3761] = 3756, - [3762] = 3762, - [3763] = 3763, - [3764] = 3682, - [3765] = 3695, - [3766] = 3766, - [3767] = 3767, - [3768] = 3757, - [3769] = 3769, - [3770] = 3770, - [3771] = 3771, - [3772] = 3772, + [3759] = 3625, + [3760] = 712, + [3761] = 3761, + [3762] = 3668, + [3763] = 1643, + [3764] = 3764, + [3765] = 3304, + [3766] = 1645, + [3767] = 1595, + [3768] = 3755, + [3769] = 1592, + [3770] = 3649, + [3771] = 1552, + [3772] = 713, [3773] = 3773, - [3774] = 3697, - [3775] = 3775, - [3776] = 3776, - [3777] = 1593, - [3778] = 3683, - [3779] = 1613, - [3780] = 3758, + [3774] = 3774, + [3775] = 3755, + [3776] = 711, + [3777] = 3777, + [3778] = 3778, + [3779] = 3227, + [3780] = 3780, [3781] = 3781, [3782] = 3782, - [3783] = 3783, - [3784] = 3781, - [3785] = 3757, - [3786] = 3758, + [3783] = 3626, + [3784] = 3755, + [3785] = 3764, + [3786] = 3786, [3787] = 3787, - [3788] = 710, - [3789] = 709, - [3790] = 3767, + [3788] = 3755, + [3789] = 3707, + [3790] = 3786, [3791] = 3791, - [3792] = 3639, - [3793] = 3793, + [3792] = 3792, + [3793] = 3786, [3794] = 3794, - [3795] = 714, - [3796] = 3782, - [3797] = 3641, - [3798] = 3259, - [3799] = 3799, - [3800] = 3800, - [3801] = 713, - [3802] = 3794, - [3803] = 3763, - [3804] = 3643, - [3805] = 3767, - [3806] = 3722, + [3795] = 3795, + [3796] = 3631, + [3797] = 3794, + [3798] = 3798, + [3799] = 3589, + [3800] = 3632, + [3801] = 3750, + [3802] = 3802, + [3803] = 3794, + [3804] = 3804, + [3805] = 3547, + [3806] = 3315, [3807] = 3807, - [3808] = 3781, - [3809] = 1554, - [3810] = 3782, - [3811] = 1557, - [3812] = 1641, - [3813] = 3757, - [3814] = 1642, - [3815] = 3758, - [3816] = 3704, - [3817] = 3767, + [3808] = 3794, + [3809] = 3777, + [3810] = 3777, + [3811] = 3811, + [3812] = 3812, + [3813] = 3640, + [3814] = 3786, + [3815] = 3777, + [3816] = 3816, + [3817] = 3817, [3818] = 3818, - [3819] = 3686, - [3820] = 3687, - [3821] = 3755, - [3822] = 3767, + [3819] = 3627, + [3820] = 3598, + [3821] = 3761, + [3822] = 3752, [3823] = 3823, - [3824] = 3689, - [3825] = 712, - [3826] = 3781, - [3827] = 3615, - [3828] = 3681, + [3824] = 1557, + [3825] = 3825, + [3826] = 3826, + [3827] = 3827, + [3828] = 3780, [3829] = 3829, - [3830] = 3830, - [3831] = 3782, - [3832] = 3690, - [3833] = 3771, - [3834] = 3684, - [3835] = 3757, - [3836] = 3758, + [3830] = 3774, + [3831] = 3831, + [3832] = 3832, + [3833] = 3833, + [3834] = 3834, + [3835] = 3835, + [3836] = 3836, [3837] = 3837, - [3838] = 3770, - [3839] = 3767, - [3840] = 1600, + [3838] = 1605, + [3839] = 3601, + [3840] = 3840, [3841] = 3841, - [3842] = 3320, + [3842] = 3826, [3843] = 3843, - [3844] = 3698, + [3844] = 3777, [3845] = 3845, [3846] = 3846, - [3847] = 3847, - [3848] = 3848, - [3849] = 3849, - [3850] = 3782, - [3851] = 3760, + [3847] = 3604, + [3848] = 3597, + [3849] = 1561, + [3850] = 1644, + [3851] = 3851, [3852] = 3852, - [3853] = 3853, - [3854] = 3854, - [3855] = 1275, + [3853] = 3816, + [3854] = 3823, + [3855] = 3633, [3856] = 3856, - [3857] = 3857, - [3858] = 3714, - [3859] = 3859, - [3860] = 3860, - [3861] = 3807, - [3862] = 3670, - [3863] = 3671, - [3864] = 3818, - [3865] = 3856, - [3866] = 3799, - [3867] = 3672, - [3868] = 3868, - [3869] = 3673, - [3870] = 3870, - [3871] = 3857, - [3872] = 3781, - [3873] = 3691, - [3874] = 3692, - [3875] = 3875, - [3876] = 3876, - [3877] = 3847, - [3878] = 3841, - [3879] = 3693, - [3880] = 3843, - [3881] = 3881, - [3882] = 1537, - [3883] = 1543, - [3884] = 3884, - [3885] = 1550, + [3857] = 1634, + [3858] = 3858, + [3859] = 3831, + [3860] = 3833, + [3861] = 3852, + [3862] = 3862, + [3863] = 3863, + [3864] = 3750, + [3865] = 3761, + [3866] = 3804, + [3867] = 3858, + [3868] = 3794, + [3869] = 3869, + [3870] = 3608, + [3871] = 3782, + [3872] = 3851, + [3873] = 3812, + [3874] = 3874, + [3875] = 3786, + [3876] = 714, + [3877] = 3877, + [3878] = 3837, + [3879] = 3750, + [3880] = 3880, + [3881] = 3559, + [3882] = 3863, + [3883] = 3755, + [3884] = 3786, + [3885] = 3521, [3886] = 3886, - [3887] = 3731, - [3888] = 3888, - [3889] = 3807, - [3890] = 3793, - [3891] = 3868, - [3892] = 3892, - [3893] = 3317, - [3894] = 3787, - [3895] = 3868, - [3896] = 3886, - [3897] = 3781, - [3898] = 3898, - [3899] = 3782, - [3900] = 3888, - [3901] = 3848, + [3887] = 3777, + [3888] = 3840, + [3889] = 3750, + [3890] = 3753, + [3891] = 3750, + [3892] = 715, + [3893] = 3637, + [3894] = 3831, + [3895] = 3522, + [3896] = 3794, + [3897] = 3880, + [3898] = 3836, + [3899] = 3899, + [3900] = 3714, + [3901] = 3901, [3902] = 3902, [3903] = 3903, - [3904] = 3870, + [3904] = 3904, [3905] = 3905, - [3906] = 3757, + [3906] = 3906, [3907] = 3907, [3908] = 3908, [3909] = 3909, [3910] = 3910, [3911] = 3911, - [3912] = 837, + [3912] = 3912, [3913] = 3913, [3914] = 3914, - [3915] = 923, - [3916] = 825, + [3915] = 3915, + [3916] = 3916, [3917] = 3917, - [3918] = 3918, - [3919] = 3919, + [3918] = 3811, + [3919] = 3862, [3920] = 3920, - [3921] = 3921, + [3921] = 3886, [3922] = 3922, [3923] = 3923, [3924] = 3924, - [3925] = 3925, - [3926] = 3926, - [3927] = 3927, - [3928] = 3928, - [3929] = 3929, + [3925] = 921, + [3926] = 929, + [3927] = 938, + [3928] = 942, + [3929] = 944, [3930] = 3930, - [3931] = 3931, - [3932] = 3932, - [3933] = 3933, - [3934] = 3934, - [3935] = 3935, + [3931] = 794, + [3932] = 814, + [3933] = 816, + [3934] = 818, + [3935] = 822, [3936] = 3936, [3937] = 3937, [3938] = 3938, [3939] = 3939, [3940] = 3940, - [3941] = 3941, + [3941] = 3592, [3942] = 3942, - [3943] = 3943, + [3943] = 839, [3944] = 3944, - [3945] = 3945, - [3946] = 3946, - [3947] = 869, + [3945] = 842, + [3946] = 846, + [3947] = 3947, [3948] = 3948, - [3949] = 882, + [3949] = 3949, [3950] = 3950, [3951] = 3951, [3952] = 3952, - [3953] = 3953, - [3954] = 3954, - [3955] = 3955, + [3953] = 902, + [3954] = 903, + [3955] = 904, [3956] = 3956, [3957] = 3957, [3958] = 3958, [3959] = 3959, - [3960] = 3837, + [3960] = 3960, [3961] = 3961, - [3962] = 781, + [3962] = 3962, [3963] = 3963, [3964] = 3964, [3965] = 3965, [3966] = 3966, [3967] = 3967, - [3968] = 929, + [3968] = 3968, [3969] = 3969, [3970] = 3970, - [3971] = 876, + [3971] = 3971, [3972] = 3972, - [3973] = 3946, + [3973] = 3973, [3974] = 3974, - [3975] = 776, - [3976] = 795, + [3975] = 3975, + [3976] = 3976, [3977] = 3977, [3978] = 3978, - [3979] = 3944, + [3979] = 812, [3980] = 3980, - [3981] = 803, - [3982] = 3948, + [3981] = 786, + [3982] = 851, [3983] = 3983, - [3984] = 3984, - [3985] = 3985, + [3984] = 869, + [3985] = 870, [3986] = 3986, [3987] = 3987, [3988] = 3988, [3989] = 3989, [3990] = 3990, [3991] = 3991, - [3992] = 3992, + [3992] = 873, [3993] = 3993, - [3994] = 3583, - [3995] = 3585, - [3996] = 860, - [3997] = 861, - [3998] = 3998, - [3999] = 3931, - [4000] = 4000, + [3994] = 893, + [3995] = 896, + [3996] = 899, + [3997] = 799, + [3998] = 796, + [3999] = 804, + [4000] = 811, [4001] = 4001, - [4002] = 4002, + [4002] = 788, [4003] = 4003, - [4004] = 4004, - [4005] = 3909, + [4004] = 909, + [4005] = 4005, [4006] = 4006, - [4007] = 4007, + [4007] = 801, [4008] = 4008, [4009] = 4009, [4010] = 4010, - [4011] = 4011, - [4012] = 3951, - [4013] = 3921, + [4011] = 923, + [4012] = 4012, + [4013] = 4013, [4014] = 4014, [4015] = 4015, - [4016] = 4016, - [4017] = 3932, - [4018] = 4018, + [4016] = 879, + [4017] = 857, + [4018] = 866, [4019] = 4019, - [4020] = 4020, - [4021] = 3936, + [4020] = 910, + [4021] = 4021, [4022] = 4022, [4023] = 4023, - [4024] = 3951, + [4024] = 4024, [4025] = 4025, [4026] = 4026, [4027] = 4027, [4028] = 4028, [4029] = 4029, - [4030] = 3932, + [4030] = 4030, [4031] = 4031, - [4032] = 220, - [4033] = 4033, - [4034] = 4034, - [4035] = 888, - [4036] = 904, - [4037] = 912, + [4032] = 934, + [4033] = 936, + [4034] = 939, + [4035] = 941, + [4036] = 911, + [4037] = 4037, [4038] = 4038, - [4039] = 3909, - [4040] = 4040, - [4041] = 4041, - [4042] = 4042, - [4043] = 4043, - [4044] = 4044, - [4045] = 4045, - [4046] = 4046, - [4047] = 4047, - [4048] = 4048, - [4049] = 3921, + [4039] = 3964, + [4040] = 862, + [4041] = 875, + [4042] = 4012, + [4043] = 912, + [4044] = 792, + [4045] = 797, + [4046] = 3923, + [4047] = 791, + [4048] = 925, + [4049] = 4049, [4050] = 4050, [4051] = 4051, [4052] = 4052, - [4053] = 3936, + [4053] = 3944, [4054] = 4054, [4055] = 4055, [4056] = 4056, - [4057] = 4057, - [4058] = 3852, + [4057] = 3901, + [4058] = 4058, [4059] = 4059, - [4060] = 3853, - [4061] = 3854, - [4062] = 926, - [4063] = 928, - [4064] = 809, - [4065] = 810, - [4066] = 811, - [4067] = 773, - [4068] = 813, - [4069] = 815, - [4070] = 817, - [4071] = 824, - [4072] = 244, - [4073] = 4073, - [4074] = 3540, - [4075] = 840, - [4076] = 843, - [4077] = 846, - [4078] = 4078, + [4060] = 4060, + [4061] = 883, + [4062] = 3964, + [4063] = 885, + [4064] = 4064, + [4065] = 4065, + [4066] = 4066, + [4067] = 890, + [4068] = 891, + [4069] = 894, + [4070] = 901, + [4071] = 927, + [4072] = 863, + [4073] = 825, + [4074] = 806, + [4075] = 4075, + [4076] = 4076, + [4077] = 4077, + [4078] = 859, [4079] = 4079, - [4080] = 3921, + [4080] = 4080, [4081] = 4081, [4082] = 4082, [4083] = 4083, - [4084] = 3936, - [4085] = 4085, + [4084] = 4084, + [4085] = 3923, [4086] = 4086, - [4087] = 4087, - [4088] = 4088, - [4089] = 4089, - [4090] = 4090, - [4091] = 901, - [4092] = 902, - [4093] = 903, - [4094] = 4094, - [4095] = 3985, + [4087] = 3948, + [4088] = 881, + [4089] = 886, + [4090] = 888, + [4091] = 898, + [4092] = 3901, + [4093] = 4093, + [4094] = 4009, + [4095] = 4095, [4096] = 4096, [4097] = 4097, [4098] = 4098, [4099] = 4099, - [4100] = 3739, + [4100] = 4100, [4101] = 4101, - [4102] = 3954, + [4102] = 4102, [4103] = 4103, - [4104] = 4104, + [4104] = 4005, [4105] = 4105, - [4106] = 3955, - [4107] = 4107, - [4108] = 4108, + [4106] = 4106, + [4107] = 3923, + [4108] = 3901, [4109] = 4109, [4110] = 4110, [4111] = 4111, - [4112] = 4112, + [4112] = 3901, [4113] = 4113, [4114] = 4114, [4115] = 4115, - [4116] = 4116, - [4117] = 3987, + [4116] = 3971, + [4117] = 4117, [4118] = 4118, [4119] = 4119, [4120] = 4120, @@ -8647,11 +8597,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4122] = 4122, [4123] = 4123, [4124] = 4124, - [4125] = 4125, - [4126] = 848, - [4127] = 852, - [4128] = 867, - [4129] = 868, + [4125] = 3972, + [4126] = 4126, + [4127] = 4127, + [4128] = 4128, + [4129] = 4129, [4130] = 4130, [4131] = 4131, [4132] = 4132, @@ -8662,43 +8612,43 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4137] = 4137, [4138] = 4138, [4139] = 4139, - [4140] = 934, - [4141] = 3957, - [4142] = 4010, + [4140] = 4140, + [4141] = 4141, + [4142] = 4142, [4143] = 4143, - [4144] = 4016, + [4144] = 4144, [4145] = 4145, [4146] = 4146, - [4147] = 4147, - [4148] = 890, - [4149] = 893, + [4147] = 3987, + [4148] = 4148, + [4149] = 4149, [4150] = 4150, - [4151] = 897, - [4152] = 777, - [4153] = 779, - [4154] = 783, - [4155] = 905, + [4151] = 3976, + [4152] = 4152, + [4153] = 4150, + [4154] = 4154, + [4155] = 4155, [4156] = 4156, [4157] = 4157, [4158] = 4158, - [4159] = 3983, - [4160] = 915, - [4161] = 4134, + [4159] = 4159, + [4160] = 4160, + [4161] = 4161, [4162] = 4162, [4163] = 4163, [4164] = 4164, - [4165] = 3965, - [4166] = 880, - [4167] = 4001, - [4168] = 4123, - [4169] = 4133, - [4170] = 856, - [4171] = 865, - [4172] = 4011, - [4173] = 930, + [4165] = 4165, + [4166] = 4166, + [4167] = 4167, + [4168] = 4168, + [4169] = 4169, + [4170] = 4170, + [4171] = 3939, + [4172] = 4172, + [4173] = 4173, [4174] = 4174, [4175] = 4175, - [4176] = 4176, + [4176] = 4038, [4177] = 4177, [4178] = 4178, [4179] = 4179, @@ -8711,80 +8661,80 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4186] = 4186, [4187] = 4187, [4188] = 4188, - [4189] = 4189, + [4189] = 4013, [4190] = 4190, - [4191] = 4015, + [4191] = 3980, [4192] = 4192, - [4193] = 3961, - [4194] = 4073, + [4193] = 4193, + [4194] = 4194, [4195] = 4195, [4196] = 4196, - [4197] = 3963, - [4198] = 933, - [4199] = 808, - [4200] = 874, - [4201] = 858, - [4202] = 4178, - [4203] = 830, + [4197] = 4197, + [4198] = 4198, + [4199] = 4199, + [4200] = 4031, + [4201] = 4154, + [4202] = 3983, + [4203] = 4184, [4204] = 4204, [4205] = 4205, - [4206] = 4180, - [4207] = 875, - [4208] = 909, + [4206] = 4206, + [4207] = 4185, + [4208] = 3951, [4209] = 4209, [4210] = 4210, - [4211] = 4135, - [4212] = 812, - [4213] = 791, - [4214] = 778, - [4215] = 788, - [4216] = 927, - [4217] = 4217, - [4218] = 4218, + [4211] = 4211, + [4212] = 4212, + [4213] = 4213, + [4214] = 4214, + [4215] = 4215, + [4216] = 4216, + [4217] = 3987, + [4218] = 3923, [4219] = 4219, [4220] = 4220, [4221] = 4221, - [4222] = 4222, - [4223] = 4125, - [4224] = 4224, - [4225] = 4225, - [4226] = 883, - [4227] = 885, - [4228] = 4134, - [4229] = 4010, - [4230] = 4016, + [4222] = 4150, + [4223] = 4223, + [4224] = 4160, + [4225] = 4161, + [4226] = 4226, + [4227] = 4227, + [4228] = 3986, + [4229] = 4038, + [4230] = 4230, [4231] = 4231, [4232] = 4232, [4233] = 4233, [4234] = 4234, [4235] = 4235, - [4236] = 4011, - [4237] = 3964, + [4236] = 4236, + [4237] = 4237, [4238] = 4238, [4239] = 4239, [4240] = 4240, - [4241] = 894, - [4242] = 895, - [4243] = 898, - [4244] = 907, - [4245] = 921, + [4241] = 4241, + [4242] = 4242, + [4243] = 4243, + [4244] = 4244, + [4245] = 4245, [4246] = 4246, [4247] = 4247, - [4248] = 913, + [4248] = 4172, [4249] = 4249, - [4250] = 851, - [4251] = 802, + [4250] = 3961, + [4251] = 4251, [4252] = 4252, [4253] = 4253, - [4254] = 4254, - [4255] = 864, + [4254] = 3962, + [4255] = 4255, [4256] = 4256, [4257] = 4257, [4258] = 4258, - [4259] = 887, - [4260] = 891, - [4261] = 892, - [4262] = 900, + [4259] = 4259, + [4260] = 4173, + [4261] = 4261, + [4262] = 4262, [4263] = 4263, [4264] = 4264, [4265] = 4265, @@ -8792,96 +8742,96 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4267] = 4267, [4268] = 4268, [4269] = 4269, - [4270] = 4270, + [4270] = 231, [4271] = 4271, [4272] = 4272, - [4273] = 4273, + [4273] = 4174, [4274] = 4274, - [4275] = 4125, - [4276] = 4276, - [4277] = 3935, + [4275] = 831, + [4276] = 3654, + [4277] = 3989, [4278] = 4278, - [4279] = 4279, - [4280] = 4280, + [4279] = 4175, + [4280] = 217, [4281] = 4281, [4282] = 4282, [4283] = 4283, [4284] = 4284, [4285] = 4285, - [4286] = 4286, - [4287] = 4287, + [4286] = 919, + [4287] = 824, [4288] = 4288, [4289] = 4289, - [4290] = 4290, + [4290] = 3903, [4291] = 4291, [4292] = 4292, - [4293] = 4293, + [4293] = 4193, [4294] = 4294, [4295] = 4295, - [4296] = 3936, - [4297] = 3969, - [4298] = 4298, + [4296] = 4296, + [4297] = 4297, + [4298] = 4157, [4299] = 4299, - [4300] = 3727, + [4300] = 4300, [4301] = 4301, [4302] = 4302, [4303] = 4303, - [4304] = 4304, - [4305] = 4305, + [4304] = 4301, + [4305] = 4197, [4306] = 4306, [4307] = 4307, - [4308] = 4308, - [4309] = 4309, - [4310] = 4310, - [4311] = 4188, + [4308] = 4001, + [4309] = 3722, + [4310] = 867, + [4311] = 878, [4312] = 4312, [4313] = 4313, [4314] = 4314, [4315] = 4315, [4316] = 4316, - [4317] = 1640, - [4318] = 4137, - [4319] = 1581, - [4320] = 4320, - [4321] = 4321, - [4322] = 4322, - [4323] = 4085, - [4324] = 4324, + [4317] = 3948, + [4318] = 4318, + [4319] = 4249, + [4320] = 4010, + [4321] = 3971, + [4322] = 3972, + [4323] = 4190, + [4324] = 3825, [4325] = 4325, - [4326] = 4326, - [4327] = 4327, + [4326] = 3989, + [4327] = 937, [4328] = 4328, - [4329] = 3921, - [4330] = 4330, + [4329] = 4329, + [4330] = 844, [4331] = 4331, [4332] = 4332, [4333] = 4333, - [4334] = 3978, + [4334] = 4334, [4335] = 4335, [4336] = 4336, [4337] = 4337, [4338] = 4338, [4339] = 4339, - [4340] = 4340, - [4341] = 4341, - [4342] = 3935, - [4343] = 4196, - [4344] = 3967, - [4345] = 3954, - [4346] = 3955, - [4347] = 4190, - [4348] = 3986, - [4349] = 3969, - [4350] = 4350, - [4351] = 4351, + [4340] = 3607, + [4341] = 3687, + [4342] = 850, + [4343] = 856, + [4344] = 4344, + [4345] = 4345, + [4346] = 4346, + [4347] = 4347, + [4348] = 4160, + [4349] = 4349, + [4350] = 1624, + [4351] = 1630, [4352] = 4352, [4353] = 4353, - [4354] = 4354, - [4355] = 4355, + [4354] = 4161, + [4355] = 3944, [4356] = 4356, [4357] = 4357, [4358] = 4358, - [4359] = 4359, + [4359] = 4196, [4360] = 4360, [4361] = 4361, [4362] = 4362, @@ -8893,158 +8843,158 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4368] = 4368, [4369] = 4369, [4370] = 4370, - [4371] = 4371, + [4371] = 877, [4372] = 4372, - [4373] = 4373, - [4374] = 4374, - [4375] = 4375, + [4373] = 4145, + [4374] = 897, + [4375] = 907, [4376] = 4376, - [4377] = 3938, + [4377] = 4377, [4378] = 4378, [4379] = 4379, [4380] = 4380, [4381] = 4381, - [4382] = 4138, + [4382] = 4382, [4383] = 4383, - [4384] = 4384, + [4384] = 4382, [4385] = 4385, [4386] = 4386, [4387] = 4387, - [4388] = 4388, + [4388] = 4382, [4389] = 4389, [4390] = 4390, [4391] = 4391, - [4392] = 4392, - [4393] = 4393, - [4394] = 4387, - [4395] = 4395, - [4396] = 4396, - [4397] = 4388, + [4392] = 4380, + [4393] = 4390, + [4394] = 4394, + [4395] = 4381, + [4396] = 4380, + [4397] = 4387, [4398] = 4398, [4399] = 4399, [4400] = 4400, [4401] = 4401, - [4402] = 4402, + [4402] = 4394, [4403] = 4403, - [4404] = 4396, - [4405] = 4395, + [4404] = 4390, + [4405] = 4387, [4406] = 4406, [4407] = 4407, [4408] = 4408, - [4409] = 4398, - [4410] = 4395, - [4411] = 4411, - [4412] = 4393, - [4413] = 4387, + [4409] = 4409, + [4410] = 4410, + [4411] = 4380, + [4412] = 4394, + [4413] = 4413, [4414] = 4414, - [4415] = 4415, + [4415] = 4391, [4416] = 4416, - [4417] = 4417, + [4417] = 3792, [4418] = 4418, [4419] = 4419, [4420] = 4420, - [4421] = 4421, + [4421] = 4389, [4422] = 4422, [4423] = 4423, [4424] = 4424, - [4425] = 4390, - [4426] = 4411, + [4425] = 3722, + [4426] = 4426, [4427] = 4427, - [4428] = 4392, - [4429] = 4429, - [4430] = 4399, - [4431] = 4389, - [4432] = 4395, - [4433] = 3775, - [4434] = 4434, - [4435] = 4399, - [4436] = 4392, - [4437] = 4437, - [4438] = 4438, - [4439] = 4429, + [4428] = 4413, + [4429] = 4408, + [4430] = 4413, + [4431] = 4431, + [4432] = 4409, + [4433] = 4391, + [4434] = 4387, + [4435] = 4409, + [4436] = 4436, + [4437] = 4391, + [4438] = 4413, + [4439] = 4439, [4440] = 4440, [4441] = 4441, - [4442] = 4393, - [4443] = 4443, + [4442] = 4442, + [4443] = 4381, [4444] = 4444, - [4445] = 3739, + [4445] = 4445, [4446] = 4446, - [4447] = 4398, - [4448] = 4448, - [4449] = 4449, - [4450] = 4450, - [4451] = 4451, - [4452] = 4452, - [4453] = 4429, - [4454] = 4392, - [4455] = 4387, - [4456] = 4396, - [4457] = 4389, - [4458] = 4452, + [4447] = 4447, + [4448] = 4420, + [4449] = 4439, + [4450] = 4385, + [4451] = 4416, + [4452] = 4381, + [4453] = 4390, + [4454] = 4391, + [4455] = 4455, + [4456] = 4381, + [4457] = 3807, + [4458] = 4458, [4459] = 4459, - [4460] = 4398, - [4461] = 4461, - [4462] = 4429, - [4463] = 4463, - [4464] = 4406, - [4465] = 4389, - [4466] = 4419, - [4467] = 4392, - [4468] = 4393, + [4460] = 4427, + [4461] = 4409, + [4462] = 4462, + [4463] = 4444, + [4464] = 4426, + [4465] = 4394, + [4466] = 4381, + [4467] = 4467, + [4468] = 4382, [4469] = 4469, - [4470] = 4423, - [4471] = 4389, - [4472] = 4395, - [4473] = 4399, - [4474] = 4395, - [4475] = 4406, - [4476] = 3772, - [4477] = 4477, - [4478] = 4395, - [4479] = 4396, + [4470] = 4413, + [4471] = 4390, + [4472] = 4439, + [4473] = 4420, + [4474] = 4439, + [4475] = 4407, + [4476] = 4394, + [4477] = 4387, + [4478] = 4381, + [4479] = 4406, [4480] = 4480, - [4481] = 4440, - [4482] = 4399, + [4481] = 4481, + [4482] = 4380, [4483] = 4483, - [4484] = 4437, - [4485] = 4392, - [4486] = 4486, - [4487] = 4429, + [4484] = 4484, + [4485] = 4485, + [4486] = 4409, + [4487] = 4487, [4488] = 4488, - [4489] = 4393, - [4490] = 4490, - [4491] = 4389, - [4492] = 4421, - [4493] = 4493, - [4494] = 4483, - [4495] = 4387, - [4496] = 4387, - [4497] = 4497, - [4498] = 4396, - [4499] = 4396, - [4500] = 4423, - [4501] = 4461, - [4502] = 4502, - [4503] = 4423, - [4504] = 4392, - [4505] = 4393, - [4506] = 4423, - [4507] = 4507, - [4508] = 4508, - [4509] = 4407, - [4510] = 4398, - [4511] = 4387, - [4512] = 4396, - [4513] = 4406, - [4514] = 4429, - [4515] = 4429, - [4516] = 4389, - [4517] = 4406, - [4518] = 4423, - [4519] = 4398, - [4520] = 4423, + [4489] = 4420, + [4490] = 4391, + [4491] = 4491, + [4492] = 4420, + [4493] = 4390, + [4494] = 4494, + [4495] = 4495, + [4496] = 4380, + [4497] = 4420, + [4498] = 4391, + [4499] = 4499, + [4500] = 4382, + [4501] = 4413, + [4502] = 4382, + [4503] = 4439, + [4504] = 4413, + [4505] = 4505, + [4506] = 4459, + [4507] = 4439, + [4508] = 4439, + [4509] = 4390, + [4510] = 4420, + [4511] = 4380, + [4512] = 4394, + [4513] = 4394, + [4514] = 4514, + [4515] = 4458, + [4516] = 4516, + [4517] = 4517, + [4518] = 4518, + [4519] = 4519, + [4520] = 4520, [4521] = 4521, - [4522] = 4393, + [4522] = 4522, [4523] = 4523, [4524] = 4524, [4525] = 4525, @@ -9060,14 +9010,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4535] = 4535, [4536] = 4536, [4537] = 4537, - [4538] = 4526, - [4539] = 4530, + [4538] = 4538, + [4539] = 4539, [4540] = 4540, - [4541] = 4536, + [4541] = 4541, [4542] = 4542, [4543] = 4543, [4544] = 4544, - [4545] = 3775, + [4545] = 4545, [4546] = 4546, [4547] = 4547, [4548] = 4548, @@ -9085,12 +9035,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4560] = 4560, [4561] = 4561, [4562] = 4562, - [4563] = 4543, - [4564] = 4544, + [4563] = 4563, + [4564] = 4564, [4565] = 4565, [4566] = 4566, [4567] = 4567, - [4568] = 4568, + [4568] = 4540, [4569] = 4569, [4570] = 4570, [4571] = 4571, @@ -9100,34 +9050,34 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4575] = 4575, [4576] = 4576, [4577] = 4577, - [4578] = 4578, + [4578] = 4531, [4579] = 4579, [4580] = 4580, - [4581] = 4535, + [4581] = 4581, [4582] = 4582, [4583] = 4583, [4584] = 4584, - [4585] = 4540, - [4586] = 4544, - [4587] = 4587, - [4588] = 4588, - [4589] = 4526, - [4590] = 4530, - [4591] = 4536, - [4592] = 4543, - [4593] = 4544, - [4594] = 4594, - [4595] = 4595, - [4596] = 4596, - [4597] = 4537, - [4598] = 4547, - [4599] = 4556, - [4600] = 4574, + [4585] = 4585, + [4586] = 4540, + [4587] = 4541, + [4588] = 4542, + [4589] = 4589, + [4590] = 4544, + [4591] = 4545, + [4592] = 4592, + [4593] = 4593, + [4594] = 4533, + [4595] = 4537, + [4596] = 4543, + [4597] = 4553, + [4598] = 4598, + [4599] = 4552, + [4600] = 4600, [4601] = 4601, - [4602] = 4602, - [4603] = 4554, + [4602] = 4554, + [4603] = 4603, [4604] = 4604, - [4605] = 4555, + [4605] = 4605, [4606] = 4606, [4607] = 4607, [4608] = 4608, @@ -9139,46 +9089,46 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4614] = 4614, [4615] = 4615, [4616] = 4616, - [4617] = 4582, + [4617] = 4617, [4618] = 4618, [4619] = 4619, - [4620] = 4620, + [4620] = 4552, [4621] = 4621, - [4622] = 4622, + [4622] = 4541, [4623] = 4623, [4624] = 4624, - [4625] = 4619, + [4625] = 4625, [4626] = 4626, [4627] = 4627, [4628] = 4628, [4629] = 4629, [4630] = 4630, - [4631] = 4536, + [4631] = 4631, [4632] = 4632, - [4633] = 4543, - [4634] = 4544, - [4635] = 3722, - [4636] = 4636, + [4633] = 4633, + [4634] = 4634, + [4635] = 4635, + [4636] = 4542, [4637] = 4637, - [4638] = 4555, - [4639] = 4639, + [4638] = 4544, + [4639] = 4545, [4640] = 4640, - [4641] = 4554, + [4641] = 4641, [4642] = 4642, [4643] = 4643, - [4644] = 4543, - [4645] = 4544, - [4646] = 4555, - [4647] = 4647, - [4648] = 4554, - [4649] = 4649, - [4650] = 3772, - [4651] = 4651, + [4644] = 4554, + [4645] = 4645, + [4646] = 4646, + [4647] = 4554, + [4648] = 4648, + [4649] = 4552, + [4650] = 4531, + [4651] = 4148, [4652] = 4652, - [4653] = 4524, - [4654] = 4654, + [4653] = 4544, + [4654] = 4545, [4655] = 4655, - [4656] = 4656, + [4656] = 4554, [4657] = 4657, [4658] = 4658, [4659] = 4659, @@ -9191,83 +9141,83 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4666] = 4666, [4667] = 4667, [4668] = 4668, - [4669] = 4555, + [4669] = 4669, [4670] = 4670, - [4671] = 4130, + [4671] = 4671, [4672] = 4672, [4673] = 4673, [4674] = 4674, [4675] = 4675, - [4676] = 4535, + [4676] = 4676, [4677] = 4677, [4678] = 4678, [4679] = 4679, [4680] = 4680, - [4681] = 4681, + [4681] = 4531, [4682] = 4682, [4683] = 4683, [4684] = 4684, [4685] = 4685, - [4686] = 4686, - [4687] = 4687, - [4688] = 4688, - [4689] = 4661, + [4686] = 4671, + [4687] = 4663, + [4688] = 4643, + [4689] = 4689, [4690] = 4690, [4691] = 4691, - [4692] = 792, - [4693] = 4693, + [4692] = 4646, + [4693] = 4542, [4694] = 4694, - [4695] = 4583, + [4695] = 4695, [4696] = 4696, - [4697] = 4668, - [4698] = 4698, + [4697] = 790, + [4698] = 4554, [4699] = 4699, - [4700] = 4555, + [4700] = 4700, [4701] = 4701, [4702] = 4702, - [4703] = 4530, + [4703] = 4703, [4704] = 4704, [4705] = 4705, [4706] = 4706, [4707] = 4707, - [4708] = 4708, + [4708] = 4541, [4709] = 4709, [4710] = 4710, [4711] = 4711, [4712] = 4712, [4713] = 4713, - [4714] = 4714, + [4714] = 4555, [4715] = 4715, [4716] = 4716, [4717] = 4717, [4718] = 4718, [4719] = 4719, [4720] = 4720, - [4721] = 4721, + [4721] = 4576, [4722] = 4722, [4723] = 4723, [4724] = 4724, [4725] = 4725, [4726] = 4726, - [4727] = 4535, + [4727] = 4727, [4728] = 4728, [4729] = 4729, [4730] = 4730, [4731] = 4731, [4732] = 4732, - [4733] = 4733, + [4733] = 4524, [4734] = 4734, [4735] = 4735, [4736] = 4736, [4737] = 4737, [4738] = 4738, [4739] = 4739, - [4740] = 4740, + [4740] = 4685, [4741] = 4741, [4742] = 4742, [4743] = 4743, - [4744] = 4744, - [4745] = 4745, + [4744] = 4734, + [4745] = 4736, [4746] = 4746, [4747] = 4747, [4748] = 4748, @@ -9285,10 +9235,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4760] = 4760, [4761] = 4761, [4762] = 4762, - [4763] = 4535, + [4763] = 4763, [4764] = 4764, [4765] = 4765, - [4766] = 4302, + [4766] = 4766, [4767] = 4767, [4768] = 4768, [4769] = 4769, @@ -9300,7 +9250,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4775] = 4775, [4776] = 4776, [4777] = 4777, - [4778] = 4663, + [4778] = 4778, [4779] = 4779, [4780] = 4780, [4781] = 4781, @@ -9311,48 +9261,48 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4786] = 4786, [4787] = 4787, [4788] = 4788, - [4789] = 4789, - [4790] = 4655, + [4789] = 4544, + [4790] = 4545, [4791] = 4791, [4792] = 4792, [4793] = 4793, [4794] = 4794, [4795] = 4795, [4796] = 4796, - [4797] = 4797, + [4797] = 4672, [4798] = 4798, [4799] = 4799, [4800] = 4800, - [4801] = 4535, + [4801] = 4801, [4802] = 4802, [4803] = 4803, [4804] = 4804, - [4805] = 3731, + [4805] = 4805, [4806] = 4806, [4807] = 4807, - [4808] = 4808, + [4808] = 4531, [4809] = 4809, - [4810] = 4810, + [4810] = 4792, [4811] = 4811, [4812] = 4812, [4813] = 4813, - [4814] = 4814, - [4815] = 4815, + [4814] = 3559, + [4815] = 4802, [4816] = 4816, [4817] = 4817, [4818] = 4818, [4819] = 4819, [4820] = 4820, [4821] = 4821, - [4822] = 4629, + [4822] = 4822, [4823] = 4823, [4824] = 4824, [4825] = 4825, [4826] = 4826, [4827] = 4827, - [4828] = 4602, + [4828] = 4828, [4829] = 4829, - [4830] = 3714, + [4830] = 4830, [4831] = 4831, [4832] = 4832, [4833] = 4833, @@ -9388,7 +9338,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4863] = 4863, [4864] = 4864, [4865] = 4865, - [4866] = 4543, + [4866] = 4866, [4867] = 4867, [4868] = 4868, [4869] = 4869, @@ -9400,54 +9350,54 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4875] = 4875, [4876] = 4876, [4877] = 4877, - [4878] = 4878, + [4878] = 4531, [4879] = 4879, - [4880] = 4608, + [4880] = 4880, [4881] = 4881, [4882] = 4882, [4883] = 4883, - [4884] = 4525, + [4884] = 4884, [4885] = 4885, [4886] = 4886, - [4887] = 4777, + [4887] = 4887, [4888] = 4888, [4889] = 4889, [4890] = 4890, - [4891] = 4891, + [4891] = 4288, [4892] = 4892, [4893] = 4893, [4894] = 4894, [4895] = 4895, [4896] = 4896, - [4897] = 4897, + [4897] = 3807, [4898] = 4898, - [4899] = 4699, - [4900] = 4524, - [4901] = 4540, - [4902] = 4823, + [4899] = 4621, + [4900] = 4900, + [4901] = 4901, + [4902] = 4902, [4903] = 4903, [4904] = 4904, [4905] = 4905, [4906] = 4906, - [4907] = 4526, - [4908] = 4834, + [4907] = 4907, + [4908] = 4668, [4909] = 4909, - [4910] = 4910, + [4910] = 4576, [4911] = 4911, [4912] = 4912, - [4913] = 4609, - [4914] = 4674, + [4913] = 4913, + [4914] = 4914, [4915] = 4915, [4916] = 4916, [4917] = 4917, [4918] = 4918, - [4919] = 4664, + [4919] = 4919, [4920] = 4920, [4921] = 4921, [4922] = 4922, [4923] = 4923, - [4924] = 4535, - [4925] = 4925, + [4924] = 4924, + [4925] = 4734, [4926] = 4926, [4927] = 4927, [4928] = 4928, @@ -9456,114 +9406,114 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4931] = 4931, [4932] = 4932, [4933] = 4933, - [4934] = 3704, - [4935] = 4935, + [4934] = 4934, + [4935] = 3668, [4936] = 4936, [4937] = 4937, [4938] = 4938, - [4939] = 1542, + [4939] = 4621, [4940] = 4940, [4941] = 4941, - [4942] = 1576, - [4943] = 4823, + [4942] = 4942, + [4943] = 4943, [4944] = 4944, - [4945] = 4930, + [4945] = 4945, [4946] = 4946, [4947] = 4947, [4948] = 4948, - [4949] = 4864, - [4950] = 4950, + [4949] = 4949, + [4950] = 4531, [4951] = 4951, [4952] = 4952, - [4953] = 4721, + [4953] = 4953, [4954] = 4954, [4955] = 4955, - [4956] = 4956, - [4957] = 4724, + [4956] = 4540, + [4957] = 4957, [4958] = 4958, - [4959] = 4959, - [4960] = 4960, - [4961] = 4961, - [4962] = 4916, + [4959] = 4806, + [4960] = 4792, + [4961] = 4812, + [4962] = 4712, [4963] = 4963, - [4964] = 4964, - [4965] = 4930, - [4966] = 4966, + [4964] = 4869, + [4965] = 4812, + [4966] = 4716, [4967] = 4967, [4968] = 4968, - [4969] = 4969, + [4969] = 4927, [4970] = 4970, - [4971] = 4971, - [4972] = 4774, + [4971] = 4946, + [4972] = 4972, [4973] = 4973, - [4974] = 4530, - [4975] = 4975, - [4976] = 4526, + [4974] = 4974, + [4975] = 4955, + [4976] = 4976, [4977] = 4977, [4978] = 4978, [4979] = 4979, [4980] = 4980, - [4981] = 4981, + [4981] = 4541, [4982] = 4982, [4983] = 4983, - [4984] = 4530, + [4984] = 4984, [4985] = 4985, [4986] = 4986, - [4987] = 4987, + [4987] = 4879, [4988] = 4988, [4989] = 4989, - [4990] = 4990, + [4990] = 4890, [4991] = 4991, [4992] = 4992, [4993] = 4993, - [4994] = 4536, + [4994] = 4994, [4995] = 4995, - [4996] = 4529, - [4997] = 4997, - [4998] = 4864, - [4999] = 4999, - [5000] = 4543, - [5001] = 4544, + [4996] = 4678, + [4997] = 4700, + [4998] = 4998, + [4999] = 4540, + [5000] = 5000, + [5001] = 4541, [5002] = 5002, [5003] = 5003, - [5004] = 4579, - [5005] = 5005, - [5006] = 4580, - [5007] = 4537, - [5008] = 4547, + [5004] = 5004, + [5005] = 5000, + [5006] = 4542, + [5007] = 5007, + [5008] = 4544, [5009] = 5009, - [5010] = 4556, - [5011] = 5011, + [5010] = 5010, + [5011] = 4545, [5012] = 5012, - [5013] = 4574, - [5014] = 5014, - [5015] = 4587, - [5016] = 5016, + [5013] = 3707, + [5014] = 4869, + [5015] = 5015, + [5016] = 4542, [5017] = 5017, [5018] = 5018, - [5019] = 4530, + [5019] = 5003, [5020] = 5020, [5021] = 5021, - [5022] = 5022, - [5023] = 5023, + [5022] = 4541, + [5023] = 4977, [5024] = 5024, [5025] = 5025, - [5026] = 5026, - [5027] = 5027, + [5026] = 3792, + [5027] = 4533, [5028] = 5028, [5029] = 5029, - [5030] = 4554, + [5030] = 4537, [5031] = 5031, - [5032] = 5032, - [5033] = 5033, + [5032] = 4543, + [5033] = 4553, [5034] = 5034, [5035] = 5035, - [5036] = 4555, - [5037] = 4536, - [5038] = 5038, - [5039] = 5039, + [5036] = 5036, + [5037] = 5037, + [5038] = 4713, + [5039] = 4564, [5040] = 5040, - [5041] = 5041, + [5041] = 4566, [5042] = 5042, [5043] = 5043, [5044] = 5044, @@ -9574,17 +9524,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5049] = 5049, [5050] = 5050, [5051] = 5051, - [5052] = 5052, + [5052] = 4552, [5053] = 5053, [5054] = 5054, [5055] = 5055, [5056] = 5056, [5057] = 5057, - [5058] = 4548, + [5058] = 5058, [5059] = 5059, [5060] = 5060, [5061] = 5061, - [5062] = 5062, + [5062] = 4554, [5063] = 5063, [5064] = 5064, [5065] = 5065, @@ -9597,8 +9547,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5072] = 5072, [5073] = 5073, [5074] = 5074, - [5075] = 5075, - [5076] = 5076, + [5075] = 1626, + [5076] = 1545, [5077] = 5077, [5078] = 5078, [5079] = 5079, @@ -9618,7 +9568,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5093] = 5093, [5094] = 5094, [5095] = 5095, - [5096] = 5096, + [5096] = 3722, [5097] = 5097, [5098] = 5098, [5099] = 5099, @@ -9627,18 +9577,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5102] = 5102, [5103] = 5103, [5104] = 5104, - [5105] = 3739, - [5106] = 5106, - [5107] = 4560, - [5108] = 5108, + [5105] = 5105, + [5106] = 4164, + [5107] = 5107, + [5108] = 4780, [5109] = 5109, [5110] = 5110, [5111] = 5111, [5112] = 5112, [5113] = 5113, [5114] = 5114, - [5115] = 4358, - [5116] = 4679, + [5115] = 4544, + [5116] = 4545, [5117] = 5117, [5118] = 5118, [5119] = 5119, @@ -9646,17 +9596,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5121] = 5121, [5122] = 5122, [5123] = 5123, - [5124] = 4562, - [5125] = 5125, - [5126] = 4604, - [5127] = 4699, + [5124] = 5124, + [5125] = 3547, + [5126] = 5126, + [5127] = 5127, [5128] = 5128, [5129] = 5129, [5130] = 5130, [5131] = 5131, - [5132] = 4611, + [5132] = 5132, [5133] = 5133, - [5134] = 5134, + [5134] = 2650, [5135] = 5135, [5136] = 5136, [5137] = 5137, @@ -9669,741 +9619,729 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5144] = 5144, [5145] = 5145, [5146] = 5146, - [5147] = 5147, + [5147] = 2672, [5148] = 5148, [5149] = 5149, [5150] = 5150, [5151] = 5151, [5152] = 5152, [5153] = 5153, - [5154] = 5154, + [5154] = 5130, [5155] = 5155, [5156] = 5156, [5157] = 5157, [5158] = 5158, [5159] = 5159, [5160] = 5160, - [5161] = 2656, + [5161] = 5161, [5162] = 5162, [5163] = 5163, [5164] = 5164, [5165] = 5165, [5166] = 5166, - [5167] = 2684, + [5167] = 5167, [5168] = 5168, [5169] = 5169, [5170] = 5170, [5171] = 5171, - [5172] = 5150, - [5173] = 5173, - [5174] = 5174, + [5172] = 5172, + [5173] = 5130, + [5174] = 5163, [5175] = 5175, - [5176] = 5176, - [5177] = 2690, + [5176] = 5166, + [5177] = 5177, [5178] = 5178, - [5179] = 5179, + [5179] = 5167, [5180] = 5180, [5181] = 5181, [5182] = 5182, [5183] = 5183, [5184] = 5184, [5185] = 5185, - [5186] = 5170, + [5186] = 5186, [5187] = 5187, [5188] = 5188, [5189] = 5189, [5190] = 5190, [5191] = 5191, - [5192] = 3837, - [5193] = 5193, - [5194] = 5170, - [5195] = 5195, - [5196] = 5196, + [5192] = 5192, + [5193] = 3811, + [5194] = 1674, + [5195] = 1675, + [5196] = 3862, [5197] = 5197, - [5198] = 5198, - [5199] = 5199, - [5200] = 5200, - [5201] = 5201, + [5198] = 5182, + [5199] = 3886, + [5200] = 5184, + [5201] = 5149, [5202] = 5202, - [5203] = 5203, - [5204] = 5164, - [5205] = 5205, - [5206] = 5206, - [5207] = 5178, - [5208] = 2708, - [5209] = 5170, - [5210] = 2709, - [5211] = 2714, + [5203] = 5161, + [5204] = 5204, + [5205] = 5146, + [5206] = 5202, + [5207] = 5172, + [5208] = 5163, + [5209] = 5209, + [5210] = 5167, + [5211] = 5189, [5212] = 5212, - [5213] = 5157, - [5214] = 2682, + [5213] = 5213, + [5214] = 2655, [5215] = 5215, [5216] = 5216, - [5217] = 5217, - [5218] = 2657, - [5219] = 5159, + [5217] = 5127, + [5218] = 5218, + [5219] = 5219, [5220] = 5220, - [5221] = 5221, - [5222] = 5175, - [5223] = 5179, + [5221] = 2657, + [5222] = 5168, + [5223] = 5223, [5224] = 5224, [5225] = 5225, - [5226] = 5196, + [5226] = 5226, [5227] = 5227, - [5228] = 2716, - [5229] = 5229, - [5230] = 2663, - [5231] = 5179, + [5228] = 5228, + [5229] = 5138, + [5230] = 5230, + [5231] = 5219, [5232] = 5232, [5233] = 5233, [5234] = 5234, [5235] = 5235, - [5236] = 2715, - [5237] = 2688, - [5238] = 5238, - [5239] = 2704, - [5240] = 5155, - [5241] = 5241, - [5242] = 5242, - [5243] = 5174, + [5236] = 5236, + [5237] = 5183, + [5238] = 2662, + [5239] = 5239, + [5240] = 5128, + [5241] = 5228, + [5242] = 5133, + [5243] = 5146, [5244] = 5244, - [5245] = 2679, + [5245] = 5245, [5246] = 5246, [5247] = 5247, - [5248] = 5248, - [5249] = 5249, - [5250] = 5250, - [5251] = 5251, - [5252] = 5246, - [5253] = 5253, - [5254] = 5254, - [5255] = 5149, - [5256] = 5152, - [5257] = 2667, + [5248] = 5146, + [5249] = 5233, + [5250] = 5187, + [5251] = 5146, + [5252] = 5163, + [5253] = 5167, + [5254] = 5190, + [5255] = 5144, + [5256] = 5256, + [5257] = 5257, [5258] = 5258, - [5259] = 5259, - [5260] = 5258, - [5261] = 5261, - [5262] = 5262, - [5263] = 5159, - [5264] = 5264, + [5259] = 2708, + [5260] = 5260, + [5261] = 5137, + [5262] = 2693, + [5263] = 5263, + [5264] = 5162, [5265] = 5265, - [5266] = 5175, - [5267] = 5179, - [5268] = 5268, - [5269] = 5269, + [5266] = 5143, + [5267] = 5267, + [5268] = 5145, + [5269] = 5162, [5270] = 5270, - [5271] = 5271, + [5271] = 5191, [5272] = 5272, - [5273] = 5273, - [5274] = 5175, - [5275] = 5275, - [5276] = 5276, + [5273] = 5143, + [5274] = 5274, + [5275] = 5166, + [5276] = 5224, [5277] = 5277, - [5278] = 5159, - [5279] = 5279, + [5278] = 5278, + [5279] = 5184, [5280] = 5280, - [5281] = 5281, - [5282] = 5282, - [5283] = 1660, - [5284] = 5282, + [5281] = 5190, + [5282] = 5191, + [5283] = 5283, + [5284] = 5284, [5285] = 5285, - [5286] = 5286, + [5286] = 5280, [5287] = 5287, - [5288] = 5265, - [5289] = 5159, + [5288] = 5150, + [5289] = 5289, [5290] = 5290, - [5291] = 5232, - [5292] = 3852, - [5293] = 5201, - [5294] = 5294, + [5291] = 5158, + [5292] = 5163, + [5293] = 5293, + [5294] = 5283, [5295] = 5295, - [5296] = 5296, - [5297] = 5197, - [5298] = 5298, - [5299] = 5299, - [5300] = 5300, - [5301] = 5301, + [5296] = 5287, + [5297] = 2710, + [5298] = 5181, + [5299] = 5175, + [5300] = 5227, + [5301] = 5155, [5302] = 5302, [5303] = 5303, [5304] = 5304, [5305] = 5305, - [5306] = 5183, + [5306] = 3825, [5307] = 5307, - [5308] = 5308, + [5308] = 5162, [5309] = 5309, [5310] = 5310, - [5311] = 5203, + [5311] = 5143, [5312] = 5312, [5313] = 5313, - [5314] = 5206, - [5315] = 5212, - [5316] = 5224, - [5317] = 5144, - [5318] = 5244, - [5319] = 5185, - [5320] = 5320, - [5321] = 5321, - [5322] = 5198, - [5323] = 5323, + [5314] = 5314, + [5315] = 5315, + [5316] = 2669, + [5317] = 5191, + [5318] = 5318, + [5319] = 5319, + [5320] = 5283, + [5321] = 5130, + [5322] = 5322, + [5323] = 5283, [5324] = 5324, - [5325] = 5325, - [5326] = 5163, - [5327] = 5168, - [5328] = 5328, - [5329] = 5290, + [5325] = 5166, + [5326] = 5326, + [5327] = 5130, + [5328] = 5233, + [5329] = 5329, [5330] = 5330, [5331] = 5331, - [5332] = 2685, + [5332] = 5188, [5333] = 5333, - [5334] = 2696, + [5334] = 5334, [5335] = 5335, - [5336] = 5262, + [5336] = 5336, [5337] = 5337, - [5338] = 5175, - [5339] = 5339, - [5340] = 5158, - [5341] = 5341, - [5342] = 5277, + [5338] = 5184, + [5339] = 5190, + [5340] = 5303, + [5341] = 5304, + [5342] = 5342, [5343] = 5343, [5344] = 5344, - [5345] = 5345, + [5345] = 2712, [5346] = 5346, - [5347] = 1676, - [5348] = 1677, - [5349] = 5304, + [5347] = 5302, + [5348] = 2653, + [5349] = 5349, [5350] = 5350, - [5351] = 5203, - [5352] = 5352, - [5353] = 5206, - [5354] = 5224, - [5355] = 5193, - [5356] = 5304, - [5357] = 5357, - [5358] = 5203, - [5359] = 5206, + [5351] = 5218, + [5352] = 5166, + [5353] = 5353, + [5354] = 5184, + [5355] = 5355, + [5356] = 5356, + [5357] = 5190, + [5358] = 5358, + [5359] = 5359, [5360] = 5360, - [5361] = 5361, - [5362] = 5304, - [5363] = 5276, + [5361] = 5146, + [5362] = 5312, + [5363] = 5315, [5364] = 5364, - [5365] = 5365, - [5366] = 5248, - [5367] = 5153, - [5368] = 5144, - [5369] = 5369, - [5370] = 5221, - [5371] = 5305, - [5372] = 5372, - [5373] = 5155, - [5374] = 5374, - [5375] = 5375, - [5376] = 5159, - [5377] = 5158, - [5378] = 5378, + [5365] = 5318, + [5366] = 5324, + [5367] = 5367, + [5368] = 2690, + [5369] = 5326, + [5370] = 5370, + [5371] = 5197, + [5372] = 5344, + [5373] = 5373, + [5374] = 5183, + [5375] = 5163, + [5376] = 5293, + [5377] = 5224, + [5378] = 5167, [5379] = 5379, - [5380] = 5203, - [5381] = 5163, - [5382] = 5304, - [5383] = 5164, - [5384] = 5268, - [5385] = 5206, - [5386] = 5386, - [5387] = 5183, - [5388] = 2694, - [5389] = 5389, - [5390] = 5175, - [5391] = 5155, - [5392] = 5155, - [5393] = 5279, - [5394] = 5321, - [5395] = 2652, - [5396] = 5146, - [5397] = 2683, - [5398] = 3853, - [5399] = 5399, - [5400] = 5147, + [5380] = 5162, + [5381] = 5381, + [5382] = 5143, + [5383] = 1659, + [5384] = 5384, + [5385] = 5385, + [5386] = 5191, + [5387] = 5167, + [5388] = 5283, + [5389] = 2659, + [5390] = 5390, + [5391] = 5135, + [5392] = 2660, + [5393] = 5393, + [5394] = 5192, + [5395] = 5395, + [5396] = 5130, + [5397] = 5227, + [5398] = 5398, + [5399] = 5390, + [5400] = 5400, [5401] = 5401, - [5402] = 5324, - [5403] = 5403, - [5404] = 5158, - [5405] = 5405, - [5406] = 5179, - [5407] = 5170, - [5408] = 5158, - [5409] = 5331, - [5410] = 5156, - [5411] = 5163, - [5412] = 5333, - [5413] = 5220, - [5414] = 5270, - [5415] = 5179, - [5416] = 5335, - [5417] = 5163, - [5418] = 5164, - [5419] = 5276, - [5420] = 5339, - [5421] = 5164, - [5422] = 5422, - [5423] = 5341, - [5424] = 5170, - [5425] = 5425, - [5426] = 5244, - [5427] = 5427, + [5402] = 5402, + [5403] = 5364, + [5404] = 5274, + [5405] = 5310, + [5406] = 5406, + [5407] = 5239, + [5408] = 5204, + [5409] = 5175, + [5410] = 5228, + [5411] = 5411, + [5412] = 5412, + [5413] = 5413, + [5414] = 5234, + [5415] = 5415, + [5416] = 2687, + [5417] = 5417, + [5418] = 5418, + [5419] = 5419, + [5420] = 2707, + [5421] = 5235, + [5422] = 5395, + [5423] = 5423, + [5424] = 5424, + [5425] = 5424, + [5426] = 5426, + [5427] = 5130, [5428] = 5428, - [5429] = 5429, - [5430] = 5195, + [5429] = 5236, + [5430] = 5303, [5431] = 5431, - [5432] = 5233, - [5433] = 5433, - [5434] = 5434, - [5435] = 5281, - [5436] = 5328, - [5437] = 5321, - [5438] = 5438, + [5432] = 5212, + [5433] = 2695, + [5434] = 2688, + [5435] = 5426, + [5436] = 5436, + [5437] = 5437, + [5438] = 5213, [5439] = 5439, - [5440] = 5386, - [5441] = 5216, - [5442] = 5442, - [5443] = 5422, - [5444] = 5287, - [5445] = 5445, - [5446] = 5446, - [5447] = 5294, - [5448] = 5448, - [5449] = 5181, - [5450] = 5450, - [5451] = 5399, - [5452] = 2675, - [5453] = 5189, - [5454] = 5217, - [5455] = 5320, - [5456] = 5298, - [5457] = 5299, - [5458] = 2692, - [5459] = 5170, + [5440] = 5440, + [5441] = 2696, + [5442] = 5440, + [5443] = 5443, + [5444] = 5180, + [5445] = 5186, + [5446] = 5215, + [5447] = 5346, + [5448] = 5216, + [5449] = 5418, + [5450] = 5220, + [5451] = 5350, + [5452] = 5223, + [5453] = 5247, + [5454] = 5146, + [5455] = 5158, + [5456] = 5163, + [5457] = 5423, + [5458] = 5344, + [5459] = 5167, [5460] = 5460, - [5461] = 5159, - [5462] = 5300, - [5463] = 5262, - [5464] = 5175, - [5465] = 5301, - [5466] = 5156, - [5467] = 5179, - [5468] = 5303, - [5469] = 5248, - [5470] = 5309, - [5471] = 5235, - [5472] = 5269, - [5473] = 5242, + [5461] = 5428, + [5462] = 5462, + [5463] = 2702, + [5464] = 2704, + [5465] = 2668, + [5466] = 5466, + [5467] = 5467, + [5468] = 5468, + [5469] = 5469, + [5470] = 5470, + [5471] = 5471, + [5472] = 5472, + [5473] = 5471, [5474] = 5474, - [5475] = 3854, - [5476] = 5379, - [5477] = 5259, - [5478] = 5478, + [5475] = 5475, + [5476] = 5476, + [5477] = 5466, + [5478] = 5472, [5479] = 5479, [5480] = 5480, [5481] = 5481, [5482] = 5482, - [5483] = 5483, + [5483] = 5469, [5484] = 5484, - [5485] = 5485, - [5486] = 5486, + [5485] = 5467, + [5486] = 5474, [5487] = 5487, [5488] = 5488, [5489] = 5489, [5490] = 5490, - [5491] = 5491, + [5491] = 5472, [5492] = 5492, [5493] = 5493, - [5494] = 5494, + [5494] = 5482, [5495] = 5495, [5496] = 5496, - [5497] = 5492, - [5498] = 5481, - [5499] = 5499, + [5497] = 5497, + [5498] = 5498, + [5499] = 5469, [5500] = 5500, [5501] = 5501, [5502] = 5502, - [5503] = 5503, - [5504] = 5504, - [5505] = 5505, + [5503] = 5493, + [5504] = 5480, + [5505] = 5469, [5506] = 5506, - [5507] = 5507, - [5508] = 5508, + [5507] = 5476, + [5508] = 5466, [5509] = 5509, - [5510] = 5495, - [5511] = 5503, - [5512] = 5495, + [5510] = 5510, + [5511] = 5511, + [5512] = 5512, [5513] = 5513, - [5514] = 5483, + [5514] = 5512, [5515] = 5515, [5516] = 5516, - [5517] = 5517, - [5518] = 5518, - [5519] = 5519, - [5520] = 5481, + [5517] = 5495, + [5518] = 5472, + [5519] = 5475, + [5520] = 5495, [5521] = 5521, - [5522] = 5522, - [5523] = 5523, - [5524] = 5524, + [5522] = 5492, + [5523] = 5496, + [5524] = 5521, [5525] = 5525, - [5526] = 5488, - [5527] = 5527, - [5528] = 5528, - [5529] = 5529, + [5526] = 5526, + [5527] = 5475, + [5528] = 5476, + [5529] = 5466, [5530] = 5530, - [5531] = 5502, - [5532] = 5532, - [5533] = 5533, - [5534] = 5480, - [5535] = 5489, + [5531] = 5479, + [5532] = 5480, + [5533] = 5481, + [5534] = 5534, + [5535] = 5474, [5536] = 5536, - [5537] = 5537, - [5538] = 5536, + [5537] = 5521, + [5538] = 5538, [5539] = 5539, - [5540] = 5488, + [5540] = 5540, [5541] = 5489, [5542] = 5542, - [5543] = 5491, + [5543] = 5543, [5544] = 5492, - [5545] = 5493, + [5545] = 5545, [5546] = 5546, - [5547] = 5521, + [5547] = 5547, [5548] = 5548, - [5549] = 5539, + [5549] = 5493, [5550] = 5550, [5551] = 5551, - [5552] = 5552, - [5553] = 5501, + [5552] = 5547, + [5553] = 5553, [5554] = 5554, - [5555] = 5555, - [5556] = 5507, - [5557] = 5495, - [5558] = 5558, + [5555] = 5479, + [5556] = 5493, + [5557] = 5557, + [5558] = 5466, [5559] = 5559, - [5560] = 5560, + [5560] = 5547, [5561] = 5561, [5562] = 5562, - [5563] = 5555, - [5564] = 5561, + [5563] = 5563, + [5564] = 5471, [5565] = 5565, [5566] = 5566, - [5567] = 5493, - [5568] = 5568, - [5569] = 5569, - [5570] = 5570, - [5571] = 5501, - [5572] = 5572, - [5573] = 5536, - [5574] = 5487, - [5575] = 5483, - [5576] = 5569, - [5577] = 5577, - [5578] = 5539, + [5567] = 5474, + [5568] = 5467, + [5569] = 5475, + [5570] = 5501, + [5571] = 5484, + [5572] = 5521, + [5573] = 5548, + [5574] = 5476, + [5575] = 5513, + [5576] = 5557, + [5577] = 5472, + [5578] = 5480, [5579] = 5579, - [5580] = 5580, - [5581] = 5581, - [5582] = 5582, - [5583] = 5495, - [5584] = 5491, - [5585] = 5585, - [5586] = 5488, - [5587] = 5587, + [5580] = 5492, + [5581] = 5559, + [5582] = 5476, + [5583] = 5583, + [5584] = 5584, + [5585] = 5466, + [5586] = 5480, + [5587] = 5495, [5588] = 5588, - [5589] = 5589, - [5590] = 5489, - [5591] = 5591, - [5592] = 5559, - [5593] = 5593, - [5594] = 5594, - [5595] = 5490, + [5589] = 5479, + [5590] = 5480, + [5591] = 5481, + [5592] = 5521, + [5593] = 5495, + [5594] = 5481, + [5595] = 5595, [5596] = 5596, - [5597] = 5483, - [5598] = 5598, - [5599] = 5569, - [5600] = 5600, - [5601] = 5585, - [5602] = 5488, - [5603] = 5489, - [5604] = 5559, - [5605] = 5491, + [5597] = 5597, + [5598] = 5479, + [5599] = 5467, + [5600] = 5480, + [5601] = 5481, + [5602] = 5602, + [5603] = 5603, + [5604] = 5604, + [5605] = 5605, [5606] = 5606, - [5607] = 5492, - [5608] = 5493, - [5609] = 5483, - [5610] = 5491, + [5607] = 5607, + [5608] = 5608, + [5609] = 5609, + [5610] = 5489, [5611] = 5611, - [5612] = 5492, - [5613] = 5493, - [5614] = 5488, - [5615] = 5488, - [5616] = 5616, - [5617] = 5492, - [5618] = 5618, - [5619] = 5619, - [5620] = 5527, - [5621] = 5569, - [5622] = 5501, - [5623] = 5623, - [5624] = 5501, - [5625] = 5559, + [5612] = 5612, + [5613] = 5613, + [5614] = 5614, + [5615] = 5489, + [5616] = 5538, + [5617] = 5617, + [5618] = 5469, + [5619] = 5475, + [5620] = 5620, + [5621] = 5548, + [5622] = 5622, + [5623] = 5534, + [5624] = 5497, + [5625] = 5625, [5626] = 5626, - [5627] = 5616, - [5628] = 5628, - [5629] = 5629, - [5630] = 5630, + [5627] = 5482, + [5628] = 5614, + [5629] = 5626, + [5630] = 5470, [5631] = 5631, - [5632] = 5481, - [5633] = 5536, - [5634] = 5634, + [5632] = 5547, + [5633] = 5474, + [5634] = 5476, [5635] = 5635, - [5636] = 5500, + [5636] = 5470, [5637] = 5637, [5638] = 5638, - [5639] = 5487, - [5640] = 5618, - [5641] = 5493, - [5642] = 5539, - [5643] = 5503, - [5644] = 5581, + [5639] = 5475, + [5640] = 5640, + [5641] = 5596, + [5642] = 5642, + [5643] = 5643, + [5644] = 5644, [5645] = 5645, - [5646] = 5646, - [5647] = 5626, - [5648] = 5646, - [5649] = 5649, + [5646] = 5469, + [5647] = 5472, + [5648] = 5648, + [5649] = 5553, [5650] = 5650, - [5651] = 5483, - [5652] = 5581, - [5653] = 5529, - [5654] = 5654, - [5655] = 5655, + [5651] = 5493, + [5652] = 5617, + [5653] = 5547, + [5654] = 5469, + [5655] = 5482, [5656] = 5656, - [5657] = 5536, - [5658] = 5658, - [5659] = 5539, - [5660] = 5658, - [5661] = 5631, - [5662] = 5523, - [5663] = 5500, - [5664] = 5533, - [5665] = 5572, - [5666] = 5569, - [5667] = 5667, - [5668] = 5530, - [5669] = 5588, - [5670] = 5518, - [5671] = 5671, - [5672] = 5565, - [5673] = 5539, - [5674] = 5539, - [5675] = 5635, - [5676] = 5656, - [5677] = 5519, - [5678] = 5521, - [5679] = 5487, - [5680] = 5480, - [5681] = 5529, - [5682] = 5682, - [5683] = 5515, - [5684] = 5566, - [5685] = 5629, - [5686] = 5686, - [5687] = 5565, - [5688] = 5489, - [5689] = 5689, - [5690] = 5634, - [5691] = 5530, + [5657] = 5657, + [5658] = 5489, + [5659] = 5659, + [5660] = 5660, + [5661] = 5603, + [5662] = 5553, + [5663] = 5663, + [5664] = 5500, + [5665] = 5665, + [5666] = 5515, + [5667] = 5607, + [5668] = 5482, + [5669] = 5510, + [5670] = 5493, + [5671] = 5547, + [5672] = 5596, + [5673] = 5501, + [5674] = 5656, + [5675] = 5501, + [5676] = 5611, + [5677] = 5603, + [5678] = 5622, + [5679] = 5513, + [5680] = 5561, + [5681] = 5681, + [5682] = 5665, + [5683] = 5553, + [5684] = 5540, + [5685] = 5607, + [5686] = 5611, + [5687] = 5511, + [5688] = 5688, + [5689] = 5635, + [5690] = 5690, + [5691] = 5691, [5692] = 5645, - [5693] = 5682, - [5694] = 5490, - [5695] = 5528, - [5696] = 5548, - [5697] = 5682, - [5698] = 5515, - [5699] = 5478, - [5700] = 5532, - [5701] = 5487, - [5702] = 5491, - [5703] = 5703, - [5704] = 5515, - [5705] = 5631, - [5706] = 5548, - [5707] = 5655, - [5708] = 5682, - [5709] = 5565, - [5710] = 5559, - [5711] = 5565, - [5712] = 5712, - [5713] = 5507, - [5714] = 5561, - [5715] = 5570, - [5716] = 5565, - [5717] = 5572, - [5718] = 5655, - [5719] = 5525, - [5720] = 5720, - [5721] = 5569, - [5722] = 5572, - [5723] = 5501, - [5724] = 5724, - [5725] = 5611, - [5726] = 5570, - [5727] = 5682, - [5728] = 5629, - [5729] = 5515, - [5730] = 5501, - [5731] = 5569, - [5732] = 5732, - [5733] = 5629, - [5734] = 5478, - [5735] = 5518, - [5736] = 5631, - [5737] = 5488, - [5738] = 5519, - [5739] = 5565, - [5740] = 5489, - [5741] = 5521, - [5742] = 5551, - [5743] = 5529, - [5744] = 5572, - [5745] = 5490, - [5746] = 5491, - [5747] = 5525, - [5748] = 5518, - [5749] = 5492, - [5750] = 5502, - [5751] = 5530, - [5752] = 5533, - [5753] = 5548, - [5754] = 5519, - [5755] = 5478, - [5756] = 5493, - [5757] = 5537, - [5758] = 5507, - [5759] = 5521, - [5760] = 5561, - [5761] = 5529, - [5762] = 5579, - [5763] = 5491, - [5764] = 5570, - [5765] = 5582, - [5766] = 5508, - [5767] = 5767, - [5768] = 5530, - [5769] = 5490, - [5770] = 5546, - [5771] = 5548, - [5772] = 5555, - [5773] = 5566, - [5774] = 5585, - [5775] = 5626, - [5776] = 5478, - [5777] = 5484, - [5778] = 5492, - [5779] = 5507, - [5780] = 5488, - [5781] = 5561, - [5782] = 5782, + [5693] = 5481, + [5694] = 5510, + [5695] = 5642, + [5696] = 5681, + [5697] = 5583, + [5698] = 5492, + [5699] = 5540, + [5700] = 5635, + [5701] = 5497, + [5702] = 5502, + [5703] = 5512, + [5704] = 5665, + [5705] = 5648, + [5706] = 5546, + [5707] = 5638, + [5708] = 5489, + [5709] = 5493, + [5710] = 5710, + [5711] = 5547, + [5712] = 5650, + [5713] = 5659, + [5714] = 5660, + [5715] = 5691, + [5716] = 5645, + [5717] = 5583, + [5718] = 5583, + [5719] = 5497, + [5720] = 5502, + [5721] = 5512, + [5722] = 5722, + [5723] = 5562, + [5724] = 5501, + [5725] = 5642, + [5726] = 5565, + [5727] = 5650, + [5728] = 5546, + [5729] = 5729, + [5730] = 5730, + [5731] = 5617, + [5732] = 5484, + [5733] = 5602, + [5734] = 5490, + [5735] = 5735, + [5736] = 5736, + [5737] = 5596, + [5738] = 5530, + [5739] = 5739, + [5740] = 5603, + [5741] = 5470, + [5742] = 5607, + [5743] = 5659, + [5744] = 5645, + [5745] = 5611, + [5746] = 5484, + [5747] = 5501, + [5748] = 5748, + [5749] = 5546, + [5750] = 5750, + [5751] = 5542, + [5752] = 5476, + [5753] = 5635, + [5754] = 5638, + [5755] = 5466, + [5756] = 5691, + [5757] = 5642, + [5758] = 5489, + [5759] = 5596, + [5760] = 5479, + [5761] = 5603, + [5762] = 5480, + [5763] = 5607, + [5764] = 5481, + [5765] = 5650, + [5766] = 5659, + [5767] = 5660, + [5768] = 5476, + [5769] = 5472, + [5770] = 5496, + [5771] = 5466, + [5772] = 5660, + [5773] = 5492, + [5774] = 5476, + [5775] = 5665, + [5776] = 5479, + [5777] = 5495, + [5778] = 5480, + [5779] = 5481, + [5780] = 5513, + [5781] = 5611, + [5782] = 5644, [5783] = 5489, - [5784] = 5518, - [5785] = 5559, - [5786] = 5646, - [5787] = 5488, - [5788] = 5491, - [5789] = 5570, - [5790] = 5492, - [5791] = 5493, - [5792] = 5523, - [5793] = 5490, - [5794] = 5489, - [5795] = 5525, - [5796] = 5796, - [5797] = 5525, - [5798] = 5523, - [5799] = 5502, - [5800] = 5501, - [5801] = 5628, - [5802] = 5802, - [5803] = 5489, - [5804] = 5502, - [5805] = 5501, - [5806] = 5533, - [5807] = 5537, - [5808] = 5533, - [5809] = 5631, - [5810] = 5720, - [5811] = 5537, - [5812] = 5546, - [5813] = 5546, - [5814] = 5555, - [5815] = 5559, - [5816] = 5655, - [5817] = 5628, - [5818] = 5555, - [5819] = 5487, - [5820] = 5566, - [5821] = 5580, - [5822] = 5566, - [5823] = 5479, - [5824] = 5585, - [5825] = 5682, + [5784] = 5510, + [5785] = 5471, + [5786] = 5681, + [5787] = 5496, + [5788] = 5489, + [5789] = 5538, + [5790] = 5476, + [5791] = 5540, + [5792] = 5792, + [5793] = 5793, + [5794] = 5691, + [5795] = 5635, + [5796] = 5474, + [5797] = 5645, + [5798] = 5638, + [5799] = 5583, + [5800] = 5466, + [5801] = 5553, + [5802] = 5642, + [5803] = 5492, + [5804] = 5650, + [5805] = 5538, + [5806] = 5497, + [5807] = 5502, + [5808] = 5659, + [5809] = 5512, + [5810] = 5660, + [5811] = 5546, + [5812] = 5812, + [5813] = 5813, + [5814] = 5481, + [5815] = 5492, + [5816] = 5538, + [5817] = 5812, + [5818] = 5617, + [5819] = 5681, + [5820] = 5820, + [5821] = 5466, + [5822] = 5813, + [5823] = 5492, + [5824] = 5496, + [5825] = 5479, [5826] = 5826, - [5827] = 5559, - [5828] = 5628, - [5829] = 5626, - [5830] = 5495, - [5831] = 5646, - [5832] = 5629, - [5833] = 5585, - [5834] = 5686, - [5835] = 5559, - [5836] = 5626, - [5837] = 5481, - [5838] = 5631, - [5839] = 5559, - [5840] = 5491, - [5841] = 5492, - [5842] = 5593, - [5843] = 5646, - [5844] = 5493, - [5845] = 5493, - [5846] = 5655, - [5847] = 5638, - [5848] = 5515, - [5849] = 5649, - [5850] = 5850, - [5851] = 5506, - [5852] = 5500, - [5853] = 5581, - [5854] = 5628, - [5855] = 5629, - [5856] = 5503, - [5857] = 5523, - [5858] = 5629, - [5859] = 5554, - [5860] = 5682, - [5861] = 5550, - [5862] = 5480, - [5863] = 5546, - [5864] = 5628, - [5865] = 5552, - [5866] = 5826, - [5867] = 5499, - [5868] = 5501, - [5869] = 5631, - [5870] = 5537, - [5871] = 5712, - [5872] = 5490, - [5873] = 5515, - [5874] = 5500, - [5875] = 5503, - [5876] = 5850, - [5877] = 5628, - [5878] = 5519, - [5879] = 5879, - [5880] = 5517, - [5881] = 5881, + [5827] = 5492, + [5828] = 5521, + [5829] = 5479, + [5830] = 5617, + [5831] = 5480, + [5832] = 5665, + [5833] = 5471, + [5834] = 5481, + [5835] = 5498, + [5836] = 5729, + [5837] = 5487, + [5838] = 5750, + [5839] = 5488, + [5840] = 5475, + [5841] = 5665, + [5842] = 5538, + [5843] = 5617, + [5844] = 5844, + [5845] = 5845, + [5846] = 5510, + [5847] = 5739, + [5848] = 5548, + [5849] = 5597, + [5850] = 5793, + [5851] = 5710, + [5852] = 5681, + [5853] = 5484, + [5854] = 5826, + [5855] = 5516, + [5856] = 5617, + [5857] = 5584, + [5858] = 5665, + [5859] = 5479, + [5860] = 5467, + [5861] = 5501, + [5862] = 5540, + [5863] = 5863, + [5864] = 5691, + [5865] = 5538, + [5866] = 5502, + [5867] = 5489, + [5868] = 5548, + [5869] = 5638, }; static TSCharacterRange extras_character_set_1[] = { @@ -10426,1660 +10364,1413 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(97); + if (eof) ADVANCE(76); ADVANCE_MAP( - '!', 110, - '"', 199, - '#', 10, - '$', 236, - '%', 176, - '&', 155, - '\'', 200, - '(', 111, - ')', 113, - '*', 100, - '+', 168, - ',', 107, - '-', 172, - '.', 124, - '/', 222, - '0', 227, - ':', 114, - ';', 112, - '<', 181, - '=', 103, - '>', 192, - '?', 242, - '@', 239, - '[', 115, - '\\', 55, - ']', 116, - '^', 158, - '`', 220, - '{', 106, - '|', 161, - '}', 108, - '~', 196, + '!', 89, + '"', 169, + '#', 6, + '$', 206, + '%', 149, + '&', 128, + '\'', 170, + '(', 90, + ')', 92, + '*', 79, + '+', 141, + ',', 86, + '-', 145, + '.', 97, + '/', 192, + '0', 197, + ':', 93, + ';', 91, + '<', 153, + '=', 82, + '>', 162, + '?', 212, + '@', 209, + '[', 94, + '\\', 33, + ']', 95, + '^', 131, + '`', 190, + '{', 85, + '|', 134, + '}', 87, + '~', 166, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(94); - if (lookahead > '@') ADVANCE(237); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(198); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(73); + if (lookahead > '@') ADVANCE(207); END_STATE(); case 1: - if (lookahead == '\n') SKIP(1); - if (lookahead == '/') ADVANCE(118); - if (lookahead == '<') ADVANCE(120); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(119); - if (lookahead != 0) ADVANCE(117); + if (lookahead == '\n') SKIP(24); + if (lookahead == '/') ADVANCE(17); + if (lookahead == '[') ADVANCE(32); + if (lookahead == '\\') ADVANCE(72); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(193); + if (lookahead != 0) ADVANCE(194); END_STATE(); case 2: - if (lookahead == '\n') SKIP(29); - if (lookahead == '/') ADVANCE(22); - if (lookahead == '[') ADVANCE(39); - if (lookahead == '\\') ADVANCE(93); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(223); - if (lookahead != 0) ADVANCE(224); + ADVANCE_MAP( + '!', 89, + '"', 169, + '#', 31, + '%', 149, + '&', 128, + '\'', 170, + '(', 90, + ')', 92, + '*', 79, + '+', 140, + ',', 86, + '-', 144, + '.', 97, + '/', 147, + '0', 197, + ':', 93, + ';', 91, + '<', 153, + '=', 82, + '>', 162, + '?', 212, + '@', 209, + '[', 94, + '\\', 35, + ']', 95, + '^', 131, + '`', 190, + '{', 85, + '|', 134, + '}', 87, + '~', 166, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(198); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(2); + if (lookahead > '#') ADVANCE(207); END_STATE(); case 3: ADVANCE_MAP( - '!', 110, - '"', 199, - '#', 38, - '%', 176, - '&', 155, - '\'', 200, - '(', 111, - ')', 113, - '*', 100, - '+', 167, - ',', 107, - '-', 171, - '.', 124, - '/', 174, - '0', 227, - ':', 114, - ';', 112, - '<', 181, - '=', 103, - '>', 192, - '?', 242, - '@', 239, - '[', 115, - '\\', 57, - ']', 116, - '^', 158, - '`', 220, - '{', 105, - '|', 160, - '}', 108, - '~', 196, + '!', 89, + '"', 169, + '#', 31, + '%', 149, + '&', 128, + '\'', 170, + '(', 90, + ')', 92, + '*', 79, + '+', 140, + ',', 86, + '-', 144, + '.', 97, + '/', 147, + '0', 197, + ':', 93, + ';', 91, + '<', 153, + '=', 82, + '>', 162, + '?', 212, + '@', 209, + '[', 94, + '\\', 35, + ']', 95, + '^', 131, + '`', 190, + '{', 84, + '|', 133, + '}', 87, + '~', 166, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(198); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(3); - if (lookahead > '#') ADVANCE(237); + if (lookahead > '#') ADVANCE(207); END_STATE(); case 4: ADVANCE_MAP( - '!', 110, - '"', 199, - '#', 38, - '%', 176, - '&', 155, - '\'', 200, - '(', 111, - ')', 113, - '*', 100, - '+', 167, - ',', 107, - '-', 171, - '.', 124, - '/', 174, - '0', 227, - ':', 114, - '<', 181, - '=', 103, - '>', 192, - '?', 242, - '@', 239, - '[', 115, - '\\', 57, - '^', 158, - '`', 220, - '{', 106, - '|', 160, - '~', 196, + '!', 89, + '%', 148, + '&', 129, + '(', 90, + ')', 92, + '*', 80, + '+', 139, + ',', 86, + '-', 143, + '.', 96, + '/', 146, + ':', 93, + ';', 91, + '<', 154, + '=', 28, + '>', 163, + '?', 21, + '[', 94, + '\\', 35, + ']', 95, + '^', 130, + '`', 190, + '{', 84, + '|', 135, + '}', 87, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(4); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(195); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(5); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(237); + (lookahead < '`' || '~' < lookahead)) ADVANCE(207); END_STATE(); case 5: ADVANCE_MAP( - '!', 110, - '"', 199, - '#', 38, - '%', 176, - '&', 155, - '\'', 200, - '(', 111, - ')', 113, - '*', 100, - '+', 167, - ',', 107, - '-', 171, - '.', 125, - '/', 174, - '0', 227, - ':', 114, - ';', 112, - '<', 180, - '=', 103, - '>', 192, - '?', 242, - '@', 239, - '[', 115, - '\\', 57, - ']', 116, - '^', 158, - '`', 220, - '{', 106, - '|', 161, - '}', 108, + '!', 89, + '%', 148, + '&', 129, + '(', 90, + ')', 92, + '*', 80, + '+', 139, + ',', 86, + '-', 143, + '.', 96, + '/', 146, + ':', 93, + ';', 91, + '<', 154, + '=', 28, + '>', 163, + '?', 21, + '[', 94, + '\\', 35, + ']', 95, + '^', 130, + '`', 190, + '{', 84, + '|', 135, + '}', 87, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(5); if (lookahead > '#' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(237); + (lookahead < '%' || '@' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(207); END_STATE(); case 6: - ADVANCE_MAP( - '!', 110, - '"', 199, - '%', 176, - '&', 155, - '\'', 200, - '(', 111, - ')', 113, - '*', 100, - '+', 167, - ',', 107, - '-', 171, - '.', 123, - '/', 174, - ':', 114, - ';', 112, - '<', 180, - '=', 103, - '>', 192, - '?', 242, - '@', 239, - '[', 115, - '\\', 57, - ']', 116, - '^', 158, - '`', 220, - '{', 105, - '|', 160, - '}', 108, - ); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(6); - if (lookahead > '#' && - (lookahead < '%' || '@' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(237); + if (lookahead == '!') ADVANCE(77); + if (lookahead == '\\') ADVANCE(34); + if (set_contains(sym_identifier_character_set_1, 14, lookahead)) ADVANCE(208); END_STATE(); case 7: ADVANCE_MAP( - '!', 110, - '%', 175, - '&', 156, - '(', 111, - ')', 113, - '*', 101, - '+', 166, - ',', 107, - '-', 170, - '.', 123, - '/', 173, - ':', 114, - ';', 112, - '<', 182, - '=', 102, - '>', 193, - '?', 243, - '[', 115, - '\\', 57, - ']', 116, - '^', 157, - '`', 220, - '{', 105, - '|', 163, - '}', 108, + '!', 88, + '"', 169, + '#', 31, + '&', 127, + '\'', 170, + '(', 90, + ')', 92, + '*', 78, + '+', 139, + ',', 86, + '-', 143, + '.', 97, + '/', 146, + '0', 197, + ':', 93, + ';', 91, + '<', 152, + '=', 83, + '>', 161, + '?', 211, + '@', 209, + '[', 94, + '\\', 35, + ']', 95, + '`', 190, + '{', 84, + '|', 137, + '}', 87, + '~', 166, ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(198); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(7); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(237); + (lookahead < '[' || '^' < lookahead)) ADVANCE(207); END_STATE(); case 8: ADVANCE_MAP( - '!', 110, - '%', 175, - '&', 156, - '(', 111, - ')', 113, - '*', 101, - '+', 166, - ',', 107, - '-', 170, - '.', 123, - '/', 173, - ':', 114, - ';', 112, - '<', 182, - '=', 33, - '>', 193, - '?', 26, - '[', 115, - '\\', 57, - ']', 116, - '^', 157, - '`', 220, - '{', 105, - '|', 162, - '}', 108, + '!', 88, + '"', 169, + '#', 31, + '&', 127, + '\'', 170, + '(', 90, + ')', 92, + '*', 78, + '+', 139, + ',', 86, + '-', 143, + '.', 97, + '/', 146, + '0', 197, + '<', 152, + '?', 210, + '@', 209, + '[', 94, + '\\', 35, + ']', 95, + '`', 190, + '{', 85, + '|', 132, + '~', 166, ); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(225); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(9); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(198); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(8); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - (lookahead < '`' || '~' < lookahead)) ADVANCE(237); + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(207); END_STATE(); case 9: ADVANCE_MAP( - '!', 110, - '%', 175, - '&', 156, - '(', 111, - ')', 113, - '*', 101, - '+', 166, - ',', 107, - '-', 170, - '.', 123, - '/', 173, - ':', 114, - ';', 112, - '<', 182, - '=', 33, - '>', 193, - '?', 26, - '[', 115, - '\\', 57, - ']', 116, - '^', 157, - '`', 220, - '{', 105, - '|', 162, - '}', 108, + '"', 169, + '#', 31, + '&', 127, + '\'', 170, + '(', 90, + '*', 78, + '+', 138, + ',', 86, + '-', 142, + '.', 20, + '/', 17, + '0', 197, + ';', 91, + '<', 152, + '>', 161, + '?', 210, + '@', 209, + '[', 94, + '\\', 35, + ']', 95, + '`', 190, + '{', 85, + '|', 137, + '}', 87, ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(198); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(9); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(237); + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(207); END_STATE(); case 10: - if (lookahead == '!') ADVANCE(98); - if (lookahead == '\\') ADVANCE(56); - if (set_contains(sym_identifier_character_set_1, 14, lookahead)) ADVANCE(238); - END_STATE(); - case 11: ADVANCE_MAP( - '!', 109, - '"', 199, - '#', 38, - '&', 154, - '\'', 200, - '(', 111, - ')', 113, - '*', 99, - '+', 166, - ',', 107, - '-', 170, - '.', 25, - '/', 173, - '0', 227, - '<', 184, - '?', 240, - '@', 239, - '[', 115, - '\\', 57, - ']', 116, - '`', 220, - '{', 106, - '|', 159, - '~', 196, + '"', 169, + '#', 31, + '\'', 170, + '(', 90, + '*', 78, + '+', 138, + ',', 86, + '-', 142, + '.', 20, + '/', 17, + '0', 197, + ';', 91, + '<', 152, + '@', 209, + '[', 94, + '\\', 35, + '{', 84, + '|', 45, + '}', 87, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(11); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(198); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(10); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(237); + lookahead != '`' && + (lookahead < '{' || '~' < lookahead)) ADVANCE(207); + END_STATE(); + case 11: + if (lookahead == '"') ADVANCE(169); + if (lookahead == '/') ADVANCE(17); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(11); END_STATE(); case 12: - ADVANCE_MAP( - '!', 109, - '"', 199, - '#', 38, - '&', 154, - '\'', 200, - '(', 111, - ')', 113, - '*', 99, - '+', 165, - ',', 107, - '-', 169, - '.', 124, - '/', 22, - '0', 227, - ':', 114, - ';', 112, - '<', 179, - '=', 104, - '>', 191, - '?', 240, - '@', 239, - '[', 115, - '\\', 57, - ']', 116, - '`', 220, - '{', 106, - '|', 164, - '}', 108, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(12); - if (lookahead > '#' && - (lookahead < '%' || '@' < lookahead) && - (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(237); + if (lookahead == '"') ADVANCE(169); + if (lookahead == '/') ADVANCE(171); + if (lookahead == '\\') ADVANCE(36); + if (lookahead == '\n' || + lookahead == '\r') SKIP(11); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(174); + if (lookahead != 0) ADVANCE(176); END_STATE(); case 13: ADVANCE_MAP( - '!', 109, - '"', 199, - '#', 38, - '&', 154, - '\'', 200, - '(', 111, - ')', 113, - '*', 99, - '+', 165, - ',', 107, - '-', 169, - '.', 124, - '/', 22, - '0', 227, - ':', 114, - ';', 112, - '<', 179, - '=', 104, - '>', 191, - '?', 240, - '@', 239, - '[', 115, - '\\', 57, - ']', 116, - '{', 105, - '|', 164, - '}', 108, + '$', 37, + '+', 29, + '-', 30, + '/', 17, + ':', 93, + '?', 27, + '\\', 36, + '`', 190, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(13); - if (lookahead > '#' && - (lookahead < '%' || '@' < lookahead) && - (lookahead < '[' || '^' < lookahead) && - lookahead != '`' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(237); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(14); END_STATE(); case 14: - ADVANCE_MAP( - '!', 109, - '"', 199, - '#', 38, - '&', 154, - '\'', 200, - '(', 111, - ')', 113, - '+', 166, - ',', 107, - '-', 170, - '.', 124, - '/', 173, - '0', 227, - ':', 114, - ';', 112, - '<', 184, - '=', 104, - '>', 191, - '?', 241, - '@', 239, - '[', 115, - '\\', 57, - ']', 116, - '`', 220, - '{', 105, - '|', 164, - '}', 108, - '~', 196, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); + if (lookahead == '$') ADVANCE(37); + if (lookahead == '+') ADVANCE(29); + if (lookahead == '-') ADVANCE(30); + if (lookahead == '/') ADVANCE(17); + if (lookahead == ':') ADVANCE(93); + if (lookahead == '?') ADVANCE(27); + if (lookahead == '`') ADVANCE(190); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(14); - if (lookahead > '#' && - (lookahead < '%' || '@' < lookahead) && - (lookahead < '[' || '^' < lookahead)) ADVANCE(237); END_STATE(); case 15: - ADVANCE_MAP( - '"', 199, - '&', 154, - '\'', 200, - '(', 111, - ')', 113, - '*', 99, - ',', 107, - '.', 123, - '/', 22, - ':', 114, - ';', 112, - '<', 179, - '=', 104, - '>', 191, - '?', 241, - '[', 115, - '\\', 57, - ']', 116, - '{', 105, - '|', 164, - '}', 108, - ); + if (lookahead == '\'') ADVANCE(170); + if (lookahead == '/') ADVANCE(17); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(15); - if (lookahead > '#' && - (lookahead < '%' || '@' < lookahead) && - (lookahead < '[' || '^' < lookahead) && - lookahead != '`' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(237); END_STATE(); case 16: - if (lookahead == '"') ADVANCE(199); - if (lookahead == '/') ADVANCE(22); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(16); + if (lookahead == '\'') ADVANCE(170); + if (lookahead == '/') ADVANCE(177); + if (lookahead == '\\') ADVANCE(36); + if (lookahead == '\n' || + lookahead == '\r') SKIP(15); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(180); + if (lookahead != 0) ADVANCE(182); END_STATE(); case 17: - if (lookahead == '"') ADVANCE(199); - if (lookahead == '/') ADVANCE(201); - if (lookahead == '\\') ADVANCE(58); - if (lookahead == '\n' || - lookahead == '\r') SKIP(16); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(204); - if (lookahead != 0) ADVANCE(206); + if (lookahead == '*') ADVANCE(19); + if (lookahead == '/') ADVANCE(189); END_STATE(); case 18: - ADVANCE_MAP( - '$', 59, - '+', 36, - '-', 37, - '/', 22, - ':', 114, - '?', 32, - '\\', 58, - '`', 220, - ); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(19); + if (lookahead == '*') ADVANCE(18); + if (lookahead == '/') ADVANCE(188); + if (lookahead != 0) ADVANCE(19); END_STATE(); case 19: - if (lookahead == '$') ADVANCE(59); - if (lookahead == '+') ADVANCE(36); - if (lookahead == '-') ADVANCE(37); - if (lookahead == '/') ADVANCE(22); - if (lookahead == ':') ADVANCE(114); - if (lookahead == '?') ADVANCE(32); - if (lookahead == '`') ADVANCE(220); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(19); + if (lookahead == '*') ADVANCE(18); + if (lookahead != 0) ADVANCE(19); END_STATE(); case 20: - if (lookahead == '\'') ADVANCE(200); - if (lookahead == '/') ADVANCE(22); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(20); + if (lookahead == '.') ADVANCE(22); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(203); END_STATE(); case 21: - if (lookahead == '\'') ADVANCE(200); - if (lookahead == '/') ADVANCE(207); - if (lookahead == '\\') ADVANCE(58); - if (lookahead == '\n' || - lookahead == '\r') SKIP(20); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(210); - if (lookahead != 0) ADVANCE(212); + if (lookahead == '.') ADVANCE(100); + if (lookahead == '?') ADVANCE(164); END_STATE(); case 22: - if (lookahead == '*') ADVANCE(24); - if (lookahead == '/') ADVANCE(219); + if (lookahead == '.') ADVANCE(116); END_STATE(); case 23: - if (lookahead == '*') ADVANCE(23); - if (lookahead == '/') ADVANCE(218); - if (lookahead != 0) ADVANCE(24); + if (lookahead == '/') ADVANCE(192); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(24); END_STATE(); case 24: - if (lookahead == '*') ADVANCE(23); - if (lookahead != 0) ADVANCE(24); + if (lookahead == '/') ADVANCE(17); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(24); END_STATE(); case 25: - if (lookahead == '.') ADVANCE(27); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(233); + if (lookahead == ':') ADVANCE(215); END_STATE(); case 26: - if (lookahead == '.') ADVANCE(127); - if (lookahead == '?') ADVANCE(194); + if (lookahead == ':') ADVANCE(214); END_STATE(); case 27: - if (lookahead == '.') ADVANCE(143); + if (lookahead == ':') ADVANCE(216); END_STATE(); case 28: - if (lookahead == '/') ADVANCE(222); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(29); + if (lookahead == '=') ADVANCE(156); END_STATE(); case 29: - if (lookahead == '/') ADVANCE(22); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(29); + if (lookahead == '?') ADVANCE(25); END_STATE(); case 30: - if (lookahead == ':') ADVANCE(245); + if (lookahead == '?') ADVANCE(26); END_STATE(); case 31: - if (lookahead == ':') ADVANCE(244); + if (lookahead == '\\') ADVANCE(34); + if (set_contains(sym_identifier_character_set_1, 14, lookahead)) ADVANCE(208); END_STATE(); case 32: - if (lookahead == ':') ADVANCE(246); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == ']') ADVANCE(194); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(32); END_STATE(); case 33: - if (lookahead == '=') ADVANCE(186); + if (lookahead == 'u') ADVANCE(38); + if (lookahead == 'x') ADVANCE(63); + if (lookahead == '\r' || + lookahead == '?') ADVANCE(185); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(187); + if (lookahead != 0) ADVANCE(183); END_STATE(); case 34: - if (lookahead == '>') ADVANCE(121); + if (lookahead == 'u') ADVANCE(39); END_STATE(); case 35: - if (lookahead == '>') ADVANCE(122); + if (lookahead == 'u') ADVANCE(40); END_STATE(); case 36: - if (lookahead == '?') ADVANCE(30); + if (lookahead == 'u') ADVANCE(41); + if (lookahead == 'x') ADVANCE(63); + if (lookahead == '\r' || + lookahead == '?') ADVANCE(185); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(187); + if (lookahead != 0) ADVANCE(183); END_STATE(); case 37: - if (lookahead == '?') ADVANCE(31); + if (lookahead == '{') ADVANCE(191); END_STATE(); case 38: - if (lookahead == '\\') ADVANCE(56); - if (set_contains(sym_identifier_character_set_1, 14, lookahead)) ADVANCE(238); + if (lookahead == '{') ADVANCE(58); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(68); END_STATE(); case 39: - if (lookahead == '\\') ADVANCE(92); - if (lookahead == ']') ADVANCE(224); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(39); + if (lookahead == '{') ADVANCE(61); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(69); END_STATE(); case 40: - if (lookahead == 'a') ADVANCE(52); + if (lookahead == '{') ADVANCE(62); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(70); END_STATE(); case 41: - if (lookahead == 'a') ADVANCE(53); + if (lookahead == '{') ADVANCE(64); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(60); END_STATE(); case 42: - if (lookahead == 'e') ADVANCE(48); + if (lookahead == '}') ADVANCE(207); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(42); END_STATE(); case 43: - if (lookahead == 'e') ADVANCE(34); + if (lookahead == '}') ADVANCE(208); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(43); END_STATE(); case 44: - if (lookahead == 'e') ADVANCE(35); + if (lookahead == '}') ADVANCE(183); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(44); END_STATE(); case 45: - if (lookahead == 'e') ADVANCE(49); + if (lookahead == '}') ADVANCE(218); END_STATE(); case 46: - if (lookahead == 'l') ADVANCE(40); + if (lookahead == '}') ADVANCE(184); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(46); END_STATE(); case 47: - if (lookahead == 'l') ADVANCE(41); + if (lookahead == '+' || + lookahead == '-') ADVANCE(53); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(204); END_STATE(); case 48: - if (lookahead == 'm') ADVANCE(50); + if (lookahead == '0' || + lookahead == '1') ADVANCE(200); END_STATE(); case 49: - if (lookahead == 'm') ADVANCE(51); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(201); END_STATE(); case 50: - if (lookahead == 'p') ADVANCE(46); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(198); END_STATE(); case 51: - if (lookahead == 'p') ADVANCE(47); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(203); END_STATE(); case 52: - if (lookahead == 't') ADVANCE(43); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(199); END_STATE(); case 53: - if (lookahead == 't') ADVANCE(44); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(204); END_STATE(); case 54: - if (lookahead == 't') ADVANCE(45); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(207); END_STATE(); case 55: - if (lookahead == 'u') ADVANCE(60); - if (lookahead == 'x') ADVANCE(84); - if (lookahead == '\r' || - lookahead == '?') ADVANCE(215); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(217); - if (lookahead != 0) ADVANCE(213); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(208); END_STATE(); case 56: - if (lookahead == 'u') ADVANCE(61); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(183); END_STATE(); case 57: - if (lookahead == 'u') ADVANCE(62); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(202); END_STATE(); case 58: - if (lookahead == 'u') ADVANCE(63); - if (lookahead == 'x') ADVANCE(84); - if (lookahead == '\r' || - lookahead == '?') ADVANCE(215); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(217); - if (lookahead != 0) ADVANCE(213); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(46); END_STATE(); case 59: - if (lookahead == '{') ADVANCE(221); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(184); END_STATE(); case 60: - if (lookahead == '{') ADVANCE(79); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(89); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(63); END_STATE(); case 61: - if (lookahead == '{') ADVANCE(82); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(90); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(43); END_STATE(); case 62: - if (lookahead == '{') ADVANCE(83); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(91); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(42); END_STATE(); case 63: - if (lookahead == '{') ADVANCE(85); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(81); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(56); END_STATE(); case 64: - if (lookahead == '}') ADVANCE(237); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(64); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(44); END_STATE(); case 65: - if (lookahead == '}') ADVANCE(238); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(65); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(59); END_STATE(); case 66: - if (lookahead == '}') ADVANCE(213); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(66); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(55); END_STATE(); case 67: - if (lookahead == '}') ADVANCE(214); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(67); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(54); END_STATE(); case 68: - if (lookahead == '+' || - lookahead == '-') ADVANCE(74); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(234); - END_STATE(); - case 69: - if (lookahead == '0' || - lookahead == '1') ADVANCE(230); - END_STATE(); - case 70: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(231); - END_STATE(); - case 71: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(228); - END_STATE(); - case 72: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(233); - END_STATE(); - case 73: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(229); - END_STATE(); - case 74: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(234); - END_STATE(); - case 75: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(237); - END_STATE(); - case 76: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(238); - END_STATE(); - case 77: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(213); - END_STATE(); - case 78: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(232); - END_STATE(); - case 79: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(67); - END_STATE(); - case 80: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(214); - END_STATE(); - case 81: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(84); - END_STATE(); - case 82: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(65); END_STATE(); - case 83: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(64); - END_STATE(); - case 84: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(77); - END_STATE(); - case 85: + case 69: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(66); END_STATE(); - case 86: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(80); - END_STATE(); - case 87: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(76); - END_STATE(); - case 88: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(75); - END_STATE(); - case 89: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(86); - END_STATE(); - case 90: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(87); - END_STATE(); - case 91: + case 70: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(88); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(67); END_STATE(); - case 92: + case 71: if (lookahead != 0 && - lookahead != '\n') ADVANCE(39); + lookahead != '\n') ADVANCE(32); END_STATE(); - case 93: + case 72: if (lookahead != 0 && - lookahead != '\n') ADVANCE(224); + lookahead != '\n') ADVANCE(194); END_STATE(); - case 94: - if (eof) ADVANCE(97); + case 73: + if (eof) ADVANCE(76); ADVANCE_MAP( - '!', 110, - '"', 199, - '#', 10, - '$', 236, - '%', 176, - '&', 155, - '\'', 200, - '(', 111, - ')', 113, - '*', 100, - '+', 168, - ',', 107, - '-', 172, - '.', 124, - '/', 174, - '0', 227, - ':', 114, - ';', 112, - '<', 181, - '=', 103, - '>', 192, - '?', 242, - '@', 239, - '[', 115, - '\\', 57, - ']', 116, - '^', 158, - '`', 220, - '{', 106, - '|', 161, - '}', 108, - '~', 196, + '!', 89, + '"', 169, + '#', 6, + '$', 206, + '%', 149, + '&', 128, + '\'', 170, + '(', 90, + ')', 92, + '*', 79, + '+', 141, + ',', 86, + '-', 145, + '.', 97, + '/', 147, + '0', 197, + ':', 93, + ';', 91, + '<', 153, + '=', 82, + '>', 162, + '?', 212, + '@', 209, + '[', 94, + '\\', 35, + ']', 95, + '^', 131, + '`', 190, + '{', 85, + '|', 134, + '}', 87, + '~', 166, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(94); - if (lookahead > '@') ADVANCE(237); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(198); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(73); + if (lookahead > '@') ADVANCE(207); END_STATE(); - case 95: - if (eof) ADVANCE(97); + case 74: + if (eof) ADVANCE(76); ADVANCE_MAP( - '!', 110, - '"', 199, - '#', 38, - '%', 175, - '&', 156, - '\'', 200, - '(', 111, - ')', 113, - '*', 101, - '+', 166, - ',', 107, - '-', 170, - '.', 125, - '/', 173, - '0', 227, - ':', 114, - ';', 112, - '<', 183, - '=', 102, - '>', 193, - '?', 26, - '@', 239, - '[', 115, - '\\', 57, - ']', 116, - '^', 157, - '`', 220, - '{', 105, - '|', 162, - '}', 108, - '~', 196, + '!', 89, + '"', 169, + '#', 31, + '%', 148, + '&', 129, + '\'', 170, + '(', 90, + ')', 92, + '*', 80, + '+', 139, + ',', 86, + '-', 143, + '.', 98, + '/', 146, + '0', 197, + ':', 93, + ';', 91, + '<', 154, + '=', 81, + '>', 163, + '?', 213, + '@', 209, + '[', 94, + '\\', 35, + ']', 95, + '^', 130, + '`', 190, + '{', 84, + '|', 136, + '}', 87, + '~', 166, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(95); - if (lookahead > '#') ADVANCE(237); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(198); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(74); + if (lookahead > '#') ADVANCE(207); END_STATE(); - case 96: - if (eof) ADVANCE(97); + case 75: + if (eof) ADVANCE(76); ADVANCE_MAP( - '!', 109, - '"', 199, - '#', 10, - '&', 154, - '\'', 200, - '(', 111, - ')', 113, - '*', 99, - '+', 166, - ',', 107, - '-', 170, - '.', 124, - '/', 173, - '0', 227, - ':', 114, - ';', 112, - '<', 184, - '=', 104, - '>', 191, - '?', 240, - '@', 239, - '[', 115, - '\\', 57, - ']', 116, - '`', 220, - '{', 105, - '|', 164, - '}', 108, - '~', 196, + '!', 88, + '"', 169, + '#', 6, + '&', 127, + '\'', 170, + '(', 90, + ')', 92, + '*', 78, + '+', 139, + ',', 86, + '-', 143, + '.', 97, + '/', 146, + '0', 197, + ':', 93, + ';', 91, + '<', 152, + '=', 83, + '>', 161, + '?', 210, + '@', 209, + '[', 94, + '\\', 35, + ']', 95, + '`', 190, + '{', 84, + '|', 137, + '}', 87, + '~', 166, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(96); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(198); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(75); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - (lookahead < '[' || '^' < lookahead)) ADVANCE(237); + (lookahead < '[' || '^' < lookahead)) ADVANCE(207); END_STATE(); - case 97: + case 76: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 98: + case 77: ACCEPT_TOKEN(sym_hash_bang_line); if (lookahead != 0 && - lookahead != '\n') ADVANCE(98); + lookahead != '\n') ADVANCE(77); END_STATE(); - case 99: + case 78: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 100: + case 79: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(178); - if (lookahead == '=') ADVANCE(130); + if (lookahead == '*') ADVANCE(151); + if (lookahead == '=') ADVANCE(103); END_STATE(); - case 101: + case 80: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(177); + if (lookahead == '*') ADVANCE(150); END_STATE(); - case 102: + case 81: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(186); + if (lookahead == '=') ADVANCE(156); END_STATE(); - case 103: + case 82: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(186); - if (lookahead == '>') ADVANCE(126); + if (lookahead == '=') ADVANCE(156); + if (lookahead == '>') ADVANCE(99); END_STATE(); - case 104: + case 83: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '>') ADVANCE(126); + if (lookahead == '>') ADVANCE(99); END_STATE(); - case 105: + case 84: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 106: + case 85: ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '|') ADVANCE(247); + if (lookahead == '|') ADVANCE(217); END_STATE(); - case 107: + case 86: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 108: + case 87: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 109: + case 88: ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); - case 110: + case 89: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(188); + if (lookahead == '=') ADVANCE(158); END_STATE(); - case 111: + case 90: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 112: + case 91: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 113: + case 92: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 114: + case 93: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 115: + case 94: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 116: + case 95: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 117: - ACCEPT_TOKEN(sym__glimmer_template_content); - END_STATE(); - case 118: - ACCEPT_TOKEN(sym__glimmer_template_content); - if (lookahead == '*') ADVANCE(24); - if (lookahead == '/') ADVANCE(219); - END_STATE(); - case 119: - ACCEPT_TOKEN(sym__glimmer_template_content); - if (lookahead == '/') ADVANCE(118); - if (lookahead == '<') ADVANCE(120); - if ((set_contains(extras_character_set_1, 10, lookahead)) && - lookahead != '\n') ADVANCE(119); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(117); - END_STATE(); - case 120: - ACCEPT_TOKEN(sym__glimmer_template_content); - if (lookahead == '/') ADVANCE(54); - END_STATE(); - case 121: - ACCEPT_TOKEN(sym_glimmer_opening_tag); - END_STATE(); - case 122: - ACCEPT_TOKEN(sym_glimmer_closing_tag); - END_STATE(); - case 123: + case 96: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 124: + case 97: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(27); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(233); + if (lookahead == '.') ADVANCE(22); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(203); END_STATE(); - case 125: + case 98: ACCEPT_TOKEN(anon_sym_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(233); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(203); END_STATE(); - case 126: + case 99: ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); - case 127: + case 100: ACCEPT_TOKEN(anon_sym_QMARK_DOT); END_STATE(); - case 128: + case 101: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 129: + case 102: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 130: + case 103: ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); - case 131: + case 104: ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); - case 132: + case 105: ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); - case 133: + case 106: ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); - case 134: + case 107: ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); - case 135: + case 108: ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); - case 136: + case 109: ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); - case 137: + case 110: ACCEPT_TOKEN(anon_sym_GT_GT_GT_EQ); END_STATE(); - case 138: + case 111: ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); - case 139: + case 112: ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); END_STATE(); - case 140: + case 113: ACCEPT_TOKEN(anon_sym_AMP_AMP_EQ); END_STATE(); - case 141: + case 114: ACCEPT_TOKEN(anon_sym_PIPE_PIPE_EQ); END_STATE(); - case 142: + case 115: ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ); END_STATE(); - case 143: + case 116: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); - case 144: + case 117: ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); - case 145: + case 118: ACCEPT_TOKEN(anon_sym_AMP_AMP); - if (lookahead == '=') ADVANCE(140); + if (lookahead == '=') ADVANCE(113); END_STATE(); - case 146: + case 119: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); - case 147: + case 120: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); - if (lookahead == '=') ADVANCE(141); + if (lookahead == '=') ADVANCE(114); END_STATE(); - case 148: + case 121: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(136); - if (lookahead == '>') ADVANCE(151); + if (lookahead == '=') ADVANCE(109); + if (lookahead == '>') ADVANCE(124); END_STATE(); - case 149: + case 122: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '>') ADVANCE(150); + if (lookahead == '>') ADVANCE(123); END_STATE(); - case 150: + case 123: ACCEPT_TOKEN(anon_sym_GT_GT_GT); END_STATE(); - case 151: + case 124: ACCEPT_TOKEN(anon_sym_GT_GT_GT); - if (lookahead == '=') ADVANCE(137); + if (lookahead == '=') ADVANCE(110); END_STATE(); - case 152: + case 125: ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); - case 153: + case 126: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(138); + if (lookahead == '=') ADVANCE(111); END_STATE(); - case 154: + case 127: ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); - case 155: + case 128: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(145); - if (lookahead == '=') ADVANCE(134); + if (lookahead == '&') ADVANCE(118); + if (lookahead == '=') ADVANCE(107); END_STATE(); - case 156: + case 129: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(144); + if (lookahead == '&') ADVANCE(117); END_STATE(); - case 157: + case 130: ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 158: + case 131: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(133); + if (lookahead == '=') ADVANCE(106); END_STATE(); - case 159: + case 132: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 160: + case 133: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(135); - if (lookahead == '|') ADVANCE(147); + if (lookahead == '=') ADVANCE(108); + if (lookahead == '|') ADVANCE(120); END_STATE(); - case 161: + case 134: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(135); - if (lookahead == '|') ADVANCE(147); - if (lookahead == '}') ADVANCE(248); + if (lookahead == '=') ADVANCE(108); + if (lookahead == '|') ADVANCE(120); + if (lookahead == '}') ADVANCE(218); END_STATE(); - case 162: + case 135: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(146); + if (lookahead == '|') ADVANCE(119); END_STATE(); - case 163: + case 136: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(146); - if (lookahead == '}') ADVANCE(248); + if (lookahead == '|') ADVANCE(119); + if (lookahead == '}') ADVANCE(218); END_STATE(); - case 164: + case 137: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '}') ADVANCE(248); + if (lookahead == '}') ADVANCE(218); END_STATE(); - case 165: + case 138: ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); - case 166: + case 139: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(197); + if (lookahead == '+') ADVANCE(167); END_STATE(); - case 167: + case 140: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(197); - if (lookahead == '=') ADVANCE(128); + if (lookahead == '+') ADVANCE(167); + if (lookahead == '=') ADVANCE(101); END_STATE(); - case 168: + case 141: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(197); - if (lookahead == '=') ADVANCE(128); - if (lookahead == '?') ADVANCE(30); + if (lookahead == '+') ADVANCE(167); + if (lookahead == '=') ADVANCE(101); + if (lookahead == '?') ADVANCE(25); END_STATE(); - case 169: + case 142: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 170: + case 143: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(198); + if (lookahead == '-') ADVANCE(168); END_STATE(); - case 171: + case 144: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(198); - if (lookahead == '=') ADVANCE(129); + if (lookahead == '-') ADVANCE(168); + if (lookahead == '=') ADVANCE(102); END_STATE(); - case 172: + case 145: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(198); - if (lookahead == '=') ADVANCE(129); - if (lookahead == '?') ADVANCE(31); + if (lookahead == '-') ADVANCE(168); + if (lookahead == '=') ADVANCE(102); + if (lookahead == '?') ADVANCE(26); END_STATE(); - case 173: + case 146: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(24); - if (lookahead == '/') ADVANCE(219); + if (lookahead == '*') ADVANCE(19); + if (lookahead == '/') ADVANCE(189); END_STATE(); - case 174: + case 147: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(24); - if (lookahead == '/') ADVANCE(219); - if (lookahead == '=') ADVANCE(131); + if (lookahead == '*') ADVANCE(19); + if (lookahead == '/') ADVANCE(189); + if (lookahead == '=') ADVANCE(104); END_STATE(); - case 175: + case 148: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 176: + case 149: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(132); + if (lookahead == '=') ADVANCE(105); END_STATE(); - case 177: + case 150: ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); - case 178: + case 151: ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '=') ADVANCE(139); - END_STATE(); - case 179: - ACCEPT_TOKEN(anon_sym_LT); - END_STATE(); - case 180: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(153); - if (lookahead == '=') ADVANCE(185); - END_STATE(); - case 181: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(153); - if (lookahead == '=') ADVANCE(185); - if (lookahead == 't') ADVANCE(42); + if (lookahead == '=') ADVANCE(112); END_STATE(); - case 182: + case 152: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(152); - if (lookahead == '=') ADVANCE(185); END_STATE(); - case 183: + case 153: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(152); - if (lookahead == '=') ADVANCE(185); - if (lookahead == 't') ADVANCE(42); + if (lookahead == '<') ADVANCE(126); + if (lookahead == '=') ADVANCE(155); END_STATE(); - case 184: + case 154: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == 't') ADVANCE(42); + if (lookahead == '<') ADVANCE(125); + if (lookahead == '=') ADVANCE(155); END_STATE(); - case 185: + case 155: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 186: + case 156: ACCEPT_TOKEN(anon_sym_EQ_EQ); - if (lookahead == '=') ADVANCE(187); + if (lookahead == '=') ADVANCE(157); END_STATE(); - case 187: + case 157: ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); END_STATE(); - case 188: + case 158: ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == '=') ADVANCE(189); + if (lookahead == '=') ADVANCE(159); END_STATE(); - case 189: + case 159: ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); END_STATE(); - case 190: + case 160: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 191: + case 161: ACCEPT_TOKEN(anon_sym_GT); END_STATE(); - case 192: + case 162: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(190); - if (lookahead == '>') ADVANCE(148); + if (lookahead == '=') ADVANCE(160); + if (lookahead == '>') ADVANCE(121); END_STATE(); - case 193: + case 163: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(190); - if (lookahead == '>') ADVANCE(149); + if (lookahead == '=') ADVANCE(160); + if (lookahead == '>') ADVANCE(122); END_STATE(); - case 194: + case 164: ACCEPT_TOKEN(anon_sym_QMARK_QMARK); END_STATE(); - case 195: + case 165: ACCEPT_TOKEN(anon_sym_QMARK_QMARK); - if (lookahead == '=') ADVANCE(142); + if (lookahead == '=') ADVANCE(115); END_STATE(); - case 196: + case 166: ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); - case 197: + case 167: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); - case 198: + case 168: ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); - case 199: + case 169: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 200: + case 170: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 201: + case 171: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '*') ADVANCE(203); - if (lookahead == '/') ADVANCE(205); + if (lookahead == '*') ADVANCE(173); + if (lookahead == '/') ADVANCE(175); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && - lookahead != '\\') ADVANCE(206); + lookahead != '\\') ADVANCE(176); END_STATE(); - case 202: + case 172: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '*') ADVANCE(202); - if (lookahead == '/') ADVANCE(206); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '/') ADVANCE(176); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && - lookahead != '\\') ADVANCE(203); + lookahead != '\\') ADVANCE(173); END_STATE(); - case 203: + case 173: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '*') ADVANCE(202); + if (lookahead == '*') ADVANCE(172); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && - lookahead != '\\') ADVANCE(203); + lookahead != '\\') ADVANCE(173); END_STATE(); - case 204: + case 174: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '/') ADVANCE(201); + if (lookahead == '/') ADVANCE(171); if ((set_contains(extras_character_set_1, 10, lookahead)) && lookahead != '\n' && - lookahead != '\r') ADVANCE(204); + lookahead != '\r') ADVANCE(174); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '"' && - lookahead != '\\') ADVANCE(206); + lookahead != '\\') ADVANCE(176); END_STATE(); - case 205: + case 175: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); if (lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(206); + lookahead == 0x2029) ADVANCE(176); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && - lookahead != '\\') ADVANCE(205); + lookahead != '\\') ADVANCE(175); END_STATE(); - case 206: + case 176: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && - lookahead != '\\') ADVANCE(206); + lookahead != '\\') ADVANCE(176); END_STATE(); - case 207: + case 177: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '*') ADVANCE(209); - if (lookahead == '/') ADVANCE(211); + if (lookahead == '*') ADVANCE(179); + if (lookahead == '/') ADVANCE(181); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '\'' && - lookahead != '\\') ADVANCE(212); + lookahead != '\\') ADVANCE(182); END_STATE(); - case 208: + case 178: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '*') ADVANCE(208); - if (lookahead == '/') ADVANCE(212); + if (lookahead == '*') ADVANCE(178); + if (lookahead == '/') ADVANCE(182); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '\'' && - lookahead != '\\') ADVANCE(209); + lookahead != '\\') ADVANCE(179); END_STATE(); - case 209: + case 179: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '*') ADVANCE(208); + if (lookahead == '*') ADVANCE(178); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '\'' && - lookahead != '\\') ADVANCE(209); + lookahead != '\\') ADVANCE(179); END_STATE(); - case 210: + case 180: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '/') ADVANCE(207); + if (lookahead == '/') ADVANCE(177); if ((set_contains(extras_character_set_1, 10, lookahead)) && lookahead != '\n' && - lookahead != '\r') ADVANCE(210); + lookahead != '\r') ADVANCE(180); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '\'' && - lookahead != '\\') ADVANCE(212); + lookahead != '\\') ADVANCE(182); END_STATE(); - case 211: + case 181: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); if (lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(212); + lookahead == 0x2029) ADVANCE(182); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '\'' && - lookahead != '\\') ADVANCE(211); + lookahead != '\\') ADVANCE(181); END_STATE(); - case 212: + case 182: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '\'' && - lookahead != '\\') ADVANCE(212); + lookahead != '\\') ADVANCE(182); END_STATE(); - case 213: + case 183: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 214: + case 184: ACCEPT_TOKEN(sym_escape_sequence); - if (lookahead == '\\') ADVANCE(57); - if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(237); + if (lookahead == '\\') ADVANCE(35); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(207); END_STATE(); - case 215: + case 185: ACCEPT_TOKEN(sym_escape_sequence); if (lookahead == '\n' || lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(213); + lookahead == 0x2029) ADVANCE(183); END_STATE(); - case 216: + case 186: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(213); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(183); END_STATE(); - case 217: + case 187: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(216); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(186); END_STATE(); - case 218: + case 188: ACCEPT_TOKEN(sym_comment); END_STATE(); - case 219: + case 189: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != 0x2028 && - lookahead != 0x2029) ADVANCE(219); + lookahead != 0x2029) ADVANCE(189); END_STATE(); - case 220: + case 190: ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); - case 221: + case 191: ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); END_STATE(); - case 222: + case 192: ACCEPT_TOKEN(anon_sym_SLASH2); END_STATE(); - case 223: + case 193: ACCEPT_TOKEN(sym_regex_pattern); - if (lookahead == '\n') SKIP(29); - if (lookahead == '/') ADVANCE(22); - if (lookahead == '[') ADVANCE(39); - if (lookahead == '\\') ADVANCE(93); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(223); - if (lookahead != 0) ADVANCE(224); + if (lookahead == '\n') SKIP(24); + if (lookahead == '/') ADVANCE(17); + if (lookahead == '[') ADVANCE(32); + if (lookahead == '\\') ADVANCE(72); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(193); + if (lookahead != 0) ADVANCE(194); END_STATE(); - case 224: + case 194: ACCEPT_TOKEN(sym_regex_pattern); - if (lookahead == '[') ADVANCE(39); - if (lookahead == '\\') ADVANCE(93); + if (lookahead == '[') ADVANCE(32); + if (lookahead == '\\') ADVANCE(72); if (lookahead != 0 && lookahead != '\n' && - lookahead != '/') ADVANCE(224); + lookahead != '/') ADVANCE(194); END_STATE(); - case 225: + case 195: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == '\\') ADVANCE(57); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(225); - if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(237); + if (lookahead == '\\') ADVANCE(35); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(195); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(207); END_STATE(); - case 226: + case 196: ACCEPT_TOKEN(sym_number); END_STATE(); - case 227: + case 197: ACCEPT_TOKEN(sym_number); ADVANCE_MAP( - '.', 235, - '0', 229, - '_', 73, - 'n', 226, - 'B', 69, - 'b', 69, - 'E', 68, - 'e', 68, - 'O', 70, - 'o', 70, - 'X', 78, - 'x', 78, + '.', 205, + '0', 199, + '_', 52, + 'n', 196, + 'B', 48, + 'b', 48, + 'E', 47, + 'e', 47, + 'O', 49, + 'o', 49, + 'X', 57, + 'x', 57, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(198); END_STATE(); - case 228: + case 198: ACCEPT_TOKEN(sym_number); - if (lookahead == '.') ADVANCE(235); - if (lookahead == '_') ADVANCE(71); - if (lookahead == 'n') ADVANCE(226); + if (lookahead == '.') ADVANCE(205); + if (lookahead == '_') ADVANCE(50); + if (lookahead == 'n') ADVANCE(196); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(68); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(228); + lookahead == 'e') ADVANCE(47); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(198); END_STATE(); - case 229: + case 199: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(73); - if (lookahead == 'n') ADVANCE(226); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(229); + if (lookahead == '_') ADVANCE(52); + if (lookahead == 'n') ADVANCE(196); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(199); END_STATE(); - case 230: + case 200: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(69); - if (lookahead == 'n') ADVANCE(226); + if (lookahead == '_') ADVANCE(48); + if (lookahead == 'n') ADVANCE(196); if (lookahead == '0' || - lookahead == '1') ADVANCE(230); + lookahead == '1') ADVANCE(200); END_STATE(); - case 231: + case 201: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(70); - if (lookahead == 'n') ADVANCE(226); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(231); + if (lookahead == '_') ADVANCE(49); + if (lookahead == 'n') ADVANCE(196); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(201); END_STATE(); - case 232: + case 202: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(78); - if (lookahead == 'n') ADVANCE(226); + if (lookahead == '_') ADVANCE(57); + if (lookahead == 'n') ADVANCE(196); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(232); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(202); END_STATE(); - case 233: + case 203: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(72); + if (lookahead == '_') ADVANCE(51); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(68); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(233); + lookahead == 'e') ADVANCE(47); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(203); END_STATE(); - case 234: + case 204: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(74); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(234); + if (lookahead == '_') ADVANCE(53); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(204); END_STATE(); - case 235: + case 205: ACCEPT_TOKEN(sym_number); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(68); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(233); + lookahead == 'e') ADVANCE(47); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(203); END_STATE(); - case 236: + case 206: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(57); - if (lookahead == '{') ADVANCE(221); - if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(237); + if (lookahead == '\\') ADVANCE(35); + if (lookahead == '{') ADVANCE(191); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(207); END_STATE(); - case 237: + case 207: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(57); - if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(237); + if (lookahead == '\\') ADVANCE(35); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(207); END_STATE(); - case 238: + case 208: ACCEPT_TOKEN(sym_private_property_identifier); - if (lookahead == '\\') ADVANCE(56); - if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(238); + if (lookahead == '\\') ADVANCE(34); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(208); END_STATE(); - case 239: + case 209: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 240: + case 210: ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); - case 241: + case 211: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '.') ADVANCE(127); + if (lookahead == '.') ADVANCE(100); END_STATE(); - case 242: + case 212: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '.') ADVANCE(127); - if (lookahead == '?') ADVANCE(195); + if (lookahead == '.') ADVANCE(100); + if (lookahead == '?') ADVANCE(165); END_STATE(); - case 243: + case 213: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '.') ADVANCE(127); - if (lookahead == '?') ADVANCE(194); + if (lookahead == '.') ADVANCE(100); + if (lookahead == '?') ADVANCE(164); END_STATE(); - case 244: + case 214: ACCEPT_TOKEN(anon_sym_DASH_QMARK_COLON); END_STATE(); - case 245: + case 215: ACCEPT_TOKEN(anon_sym_PLUS_QMARK_COLON); END_STATE(); - case 246: + case 216: ACCEPT_TOKEN(anon_sym_QMARK_COLON); END_STATE(); - case 247: + case 217: ACCEPT_TOKEN(anon_sym_LBRACE_PIPE); END_STATE(); - case 248: + case 218: ACCEPT_TOKEN(anon_sym_PIPE_RBRACE); END_STATE(); default: @@ -13233,112 +12924,112 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 96, .external_lex_state = 2}, - [2] = {.lex_state = 4, .external_lex_state = 3}, - [3] = {.lex_state = 4, .external_lex_state = 3}, - [4] = {.lex_state = 96, .external_lex_state = 2}, - [5] = {.lex_state = 96, .external_lex_state = 2}, - [6] = {.lex_state = 96, .external_lex_state = 2}, - [7] = {.lex_state = 96, .external_lex_state = 2}, - [8] = {.lex_state = 96, .external_lex_state = 2}, - [9] = {.lex_state = 96, .external_lex_state = 2}, - [10] = {.lex_state = 96, .external_lex_state = 2}, - [11] = {.lex_state = 96, .external_lex_state = 2}, - [12] = {.lex_state = 96, .external_lex_state = 2}, - [13] = {.lex_state = 96, .external_lex_state = 2}, - [14] = {.lex_state = 96, .external_lex_state = 2}, - [15] = {.lex_state = 96, .external_lex_state = 2}, - [16] = {.lex_state = 96, .external_lex_state = 2}, - [17] = {.lex_state = 96, .external_lex_state = 2}, - [18] = {.lex_state = 96, .external_lex_state = 2}, - [19] = {.lex_state = 96, .external_lex_state = 2}, - [20] = {.lex_state = 96, .external_lex_state = 2}, - [21] = {.lex_state = 96, .external_lex_state = 2}, - [22] = {.lex_state = 96, .external_lex_state = 2}, - [23] = {.lex_state = 96, .external_lex_state = 2}, - [24] = {.lex_state = 96, .external_lex_state = 2}, - [25] = {.lex_state = 96, .external_lex_state = 2}, - [26] = {.lex_state = 96, .external_lex_state = 2}, - [27] = {.lex_state = 96, .external_lex_state = 2}, - [28] = {.lex_state = 96, .external_lex_state = 2}, - [29] = {.lex_state = 96, .external_lex_state = 2}, - [30] = {.lex_state = 96, .external_lex_state = 2}, - [31] = {.lex_state = 96, .external_lex_state = 2}, - [32] = {.lex_state = 96, .external_lex_state = 2}, - [33] = {.lex_state = 96, .external_lex_state = 2}, - [34] = {.lex_state = 96, .external_lex_state = 2}, - [35] = {.lex_state = 96, .external_lex_state = 2}, - [36] = {.lex_state = 96, .external_lex_state = 2}, - [37] = {.lex_state = 96, .external_lex_state = 2}, - [38] = {.lex_state = 11, .external_lex_state = 2}, - [39] = {.lex_state = 96, .external_lex_state = 2}, - [40] = {.lex_state = 96, .external_lex_state = 2}, - [41] = {.lex_state = 96, .external_lex_state = 2}, - [42] = {.lex_state = 96, .external_lex_state = 2}, - [43] = {.lex_state = 96, .external_lex_state = 2}, - [44] = {.lex_state = 96, .external_lex_state = 2}, - [45] = {.lex_state = 96, .external_lex_state = 2}, - [46] = {.lex_state = 96, .external_lex_state = 2}, - [47] = {.lex_state = 96, .external_lex_state = 2}, - [48] = {.lex_state = 96, .external_lex_state = 2}, - [49] = {.lex_state = 96, .external_lex_state = 2}, - [50] = {.lex_state = 96, .external_lex_state = 2}, - [51] = {.lex_state = 96, .external_lex_state = 2}, - [52] = {.lex_state = 96, .external_lex_state = 2}, - [53] = {.lex_state = 96, .external_lex_state = 2}, - [54] = {.lex_state = 96, .external_lex_state = 2}, - [55] = {.lex_state = 96, .external_lex_state = 2}, - [56] = {.lex_state = 11, .external_lex_state = 2}, - [57] = {.lex_state = 96, .external_lex_state = 2}, - [58] = {.lex_state = 96, .external_lex_state = 2}, - [59] = {.lex_state = 96, .external_lex_state = 2}, - [60] = {.lex_state = 11, .external_lex_state = 2}, - [61] = {.lex_state = 96, .external_lex_state = 2}, - [62] = {.lex_state = 96, .external_lex_state = 2}, - [63] = {.lex_state = 11, .external_lex_state = 2}, - [64] = {.lex_state = 11, .external_lex_state = 2}, - [65] = {.lex_state = 96, .external_lex_state = 2}, - [66] = {.lex_state = 11, .external_lex_state = 2}, - [67] = {.lex_state = 11, .external_lex_state = 2}, - [68] = {.lex_state = 11, .external_lex_state = 2}, - [69] = {.lex_state = 11, .external_lex_state = 2}, - [70] = {.lex_state = 96, .external_lex_state = 2}, - [71] = {.lex_state = 11, .external_lex_state = 2}, + [1] = {.lex_state = 75, .external_lex_state = 2}, + [2] = {.lex_state = 2, .external_lex_state = 3}, + [3] = {.lex_state = 2, .external_lex_state = 3}, + [4] = {.lex_state = 75, .external_lex_state = 2}, + [5] = {.lex_state = 75, .external_lex_state = 2}, + [6] = {.lex_state = 75, .external_lex_state = 2}, + [7] = {.lex_state = 75, .external_lex_state = 2}, + [8] = {.lex_state = 75, .external_lex_state = 2}, + [9] = {.lex_state = 75, .external_lex_state = 2}, + [10] = {.lex_state = 75, .external_lex_state = 2}, + [11] = {.lex_state = 75, .external_lex_state = 2}, + [12] = {.lex_state = 75, .external_lex_state = 2}, + [13] = {.lex_state = 75, .external_lex_state = 2}, + [14] = {.lex_state = 75, .external_lex_state = 2}, + [15] = {.lex_state = 75, .external_lex_state = 2}, + [16] = {.lex_state = 75, .external_lex_state = 2}, + [17] = {.lex_state = 75, .external_lex_state = 2}, + [18] = {.lex_state = 75, .external_lex_state = 2}, + [19] = {.lex_state = 75, .external_lex_state = 2}, + [20] = {.lex_state = 75, .external_lex_state = 2}, + [21] = {.lex_state = 75, .external_lex_state = 2}, + [22] = {.lex_state = 75, .external_lex_state = 2}, + [23] = {.lex_state = 75, .external_lex_state = 2}, + [24] = {.lex_state = 75, .external_lex_state = 2}, + [25] = {.lex_state = 75, .external_lex_state = 2}, + [26] = {.lex_state = 75, .external_lex_state = 2}, + [27] = {.lex_state = 75, .external_lex_state = 2}, + [28] = {.lex_state = 75, .external_lex_state = 2}, + [29] = {.lex_state = 75, .external_lex_state = 2}, + [30] = {.lex_state = 75, .external_lex_state = 2}, + [31] = {.lex_state = 8, .external_lex_state = 2}, + [32] = {.lex_state = 75, .external_lex_state = 2}, + [33] = {.lex_state = 75, .external_lex_state = 2}, + [34] = {.lex_state = 75, .external_lex_state = 2}, + [35] = {.lex_state = 75, .external_lex_state = 2}, + [36] = {.lex_state = 75, .external_lex_state = 2}, + [37] = {.lex_state = 75, .external_lex_state = 2}, + [38] = {.lex_state = 8, .external_lex_state = 2}, + [39] = {.lex_state = 75, .external_lex_state = 2}, + [40] = {.lex_state = 8, .external_lex_state = 2}, + [41] = {.lex_state = 75, .external_lex_state = 2}, + [42] = {.lex_state = 75, .external_lex_state = 2}, + [43] = {.lex_state = 75, .external_lex_state = 2}, + [44] = {.lex_state = 75, .external_lex_state = 2}, + [45] = {.lex_state = 75, .external_lex_state = 2}, + [46] = {.lex_state = 75, .external_lex_state = 2}, + [47] = {.lex_state = 75, .external_lex_state = 2}, + [48] = {.lex_state = 75, .external_lex_state = 2}, + [49] = {.lex_state = 75, .external_lex_state = 2}, + [50] = {.lex_state = 75, .external_lex_state = 2}, + [51] = {.lex_state = 75, .external_lex_state = 2}, + [52] = {.lex_state = 75, .external_lex_state = 2}, + [53] = {.lex_state = 8, .external_lex_state = 2}, + [54] = {.lex_state = 75, .external_lex_state = 2}, + [55] = {.lex_state = 75, .external_lex_state = 2}, + [56] = {.lex_state = 8, .external_lex_state = 2}, + [57] = {.lex_state = 75, .external_lex_state = 2}, + [58] = {.lex_state = 75, .external_lex_state = 2}, + [59] = {.lex_state = 75, .external_lex_state = 2}, + [60] = {.lex_state = 75, .external_lex_state = 2}, + [61] = {.lex_state = 75, .external_lex_state = 2}, + [62] = {.lex_state = 75, .external_lex_state = 2}, + [63] = {.lex_state = 8, .external_lex_state = 2}, + [64] = {.lex_state = 75, .external_lex_state = 2}, + [65] = {.lex_state = 75, .external_lex_state = 2}, + [66] = {.lex_state = 8, .external_lex_state = 2}, + [67] = {.lex_state = 8, .external_lex_state = 2}, + [68] = {.lex_state = 8, .external_lex_state = 2}, + [69] = {.lex_state = 8, .external_lex_state = 2}, + [70] = {.lex_state = 75, .external_lex_state = 2}, + [71] = {.lex_state = 75, .external_lex_state = 2}, [72] = {.lex_state = 3, .external_lex_state = 4}, [73] = {.lex_state = 3, .external_lex_state = 4}, [74] = {.lex_state = 3, .external_lex_state = 4}, [75] = {.lex_state = 3, .external_lex_state = 3}, - [76] = {.lex_state = 3, .external_lex_state = 3}, - [77] = {.lex_state = 11, .external_lex_state = 2}, + [76] = {.lex_state = 8, .external_lex_state = 2}, + [77] = {.lex_state = 8, .external_lex_state = 2}, [78] = {.lex_state = 3, .external_lex_state = 3}, [79] = {.lex_state = 3, .external_lex_state = 3}, [80] = {.lex_state = 3, .external_lex_state = 3}, - [81] = {.lex_state = 3, .external_lex_state = 3}, - [82] = {.lex_state = 11, .external_lex_state = 2}, + [81] = {.lex_state = 8, .external_lex_state = 2}, + [82] = {.lex_state = 3, .external_lex_state = 3}, [83] = {.lex_state = 3, .external_lex_state = 3}, [84] = {.lex_state = 3, .external_lex_state = 3}, - [85] = {.lex_state = 11, .external_lex_state = 2}, - [86] = {.lex_state = 11, .external_lex_state = 2}, + [85] = {.lex_state = 3, .external_lex_state = 3}, + [86] = {.lex_state = 8, .external_lex_state = 2}, [87] = {.lex_state = 3, .external_lex_state = 3}, - [88] = {.lex_state = 11, .external_lex_state = 2}, - [89] = {.lex_state = 3, .external_lex_state = 3}, - [90] = {.lex_state = 11, .external_lex_state = 2}, - [91] = {.lex_state = 11, .external_lex_state = 2}, - [92] = {.lex_state = 11, .external_lex_state = 2}, + [88] = {.lex_state = 3, .external_lex_state = 3}, + [89] = {.lex_state = 8, .external_lex_state = 2}, + [90] = {.lex_state = 8, .external_lex_state = 2}, + [91] = {.lex_state = 8, .external_lex_state = 2}, + [92] = {.lex_state = 8, .external_lex_state = 2}, [93] = {.lex_state = 3, .external_lex_state = 3}, [94] = {.lex_state = 3, .external_lex_state = 3}, [95] = {.lex_state = 3, .external_lex_state = 3}, - [96] = {.lex_state = 3, .external_lex_state = 4}, - [97] = {.lex_state = 3, .external_lex_state = 3}, + [96] = {.lex_state = 3, .external_lex_state = 3}, + [97] = {.lex_state = 3, .external_lex_state = 4}, [98] = {.lex_state = 3, .external_lex_state = 3}, [99] = {.lex_state = 3, .external_lex_state = 4}, [100] = {.lex_state = 3, .external_lex_state = 4}, - [101] = {.lex_state = 3, .external_lex_state = 4}, + [101] = {.lex_state = 3, .external_lex_state = 3}, [102] = {.lex_state = 3, .external_lex_state = 4}, [103] = {.lex_state = 3, .external_lex_state = 4}, [104] = {.lex_state = 3, .external_lex_state = 4}, [105] = {.lex_state = 3, .external_lex_state = 4}, - [106] = {.lex_state = 3, .external_lex_state = 3}, + [106] = {.lex_state = 3, .external_lex_state = 4}, [107] = {.lex_state = 3, .external_lex_state = 3}, [108] = {.lex_state = 3, .external_lex_state = 3}, [109] = {.lex_state = 3, .external_lex_state = 3}, @@ -13348,7 +13039,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [113] = {.lex_state = 3, .external_lex_state = 3}, [114] = {.lex_state = 3, .external_lex_state = 3}, [115] = {.lex_state = 3, .external_lex_state = 3}, - [116] = {.lex_state = 3, .external_lex_state = 3}, + [116] = {.lex_state = 3, .external_lex_state = 4}, [117] = {.lex_state = 3, .external_lex_state = 3}, [118] = {.lex_state = 3, .external_lex_state = 4}, [119] = {.lex_state = 3, .external_lex_state = 3}, @@ -13357,7 +13048,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [122] = {.lex_state = 3, .external_lex_state = 3}, [123] = {.lex_state = 3, .external_lex_state = 3}, [124] = {.lex_state = 3, .external_lex_state = 3}, - [125] = {.lex_state = 3, .external_lex_state = 4}, + [125] = {.lex_state = 3, .external_lex_state = 3}, [126] = {.lex_state = 3, .external_lex_state = 3}, [127] = {.lex_state = 3, .external_lex_state = 3}, [128] = {.lex_state = 3, .external_lex_state = 3}, @@ -13375,5745 +13066,5733 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [140] = {.lex_state = 3, .external_lex_state = 3}, [141] = {.lex_state = 3, .external_lex_state = 3}, [142] = {.lex_state = 3, .external_lex_state = 3}, - [143] = {.lex_state = 3, .external_lex_state = 3}, + [143] = {.lex_state = 8, .external_lex_state = 2}, [144] = {.lex_state = 3, .external_lex_state = 3}, [145] = {.lex_state = 3, .external_lex_state = 3}, [146] = {.lex_state = 3, .external_lex_state = 3}, - [147] = {.lex_state = 11, .external_lex_state = 2}, + [147] = {.lex_state = 3, .external_lex_state = 3}, [148] = {.lex_state = 3, .external_lex_state = 3}, [149] = {.lex_state = 3, .external_lex_state = 3}, - [150] = {.lex_state = 11, .external_lex_state = 2}, - [151] = {.lex_state = 11, .external_lex_state = 2}, - [152] = {.lex_state = 11, .external_lex_state = 2}, - [153] = {.lex_state = 11, .external_lex_state = 2}, - [154] = {.lex_state = 11, .external_lex_state = 2}, - [155] = {.lex_state = 11, .external_lex_state = 2}, - [156] = {.lex_state = 11, .external_lex_state = 2}, - [157] = {.lex_state = 11, .external_lex_state = 2}, - [158] = {.lex_state = 11, .external_lex_state = 2}, - [159] = {.lex_state = 11, .external_lex_state = 2}, - [160] = {.lex_state = 11, .external_lex_state = 2}, - [161] = {.lex_state = 11, .external_lex_state = 2}, - [162] = {.lex_state = 11, .external_lex_state = 2}, - [163] = {.lex_state = 95, .external_lex_state = 3}, - [164] = {.lex_state = 95, .external_lex_state = 4}, - [165] = {.lex_state = 95, .external_lex_state = 4}, - [166] = {.lex_state = 95, .external_lex_state = 3}, - [167] = {.lex_state = 95, .external_lex_state = 4}, - [168] = {.lex_state = 95, .external_lex_state = 3}, - [169] = {.lex_state = 95, .external_lex_state = 3}, - [170] = {.lex_state = 95, .external_lex_state = 3}, - [171] = {.lex_state = 95, .external_lex_state = 3}, - [172] = {.lex_state = 95, .external_lex_state = 3}, - [173] = {.lex_state = 5, .external_lex_state = 3}, - [174] = {.lex_state = 96, .external_lex_state = 2}, - [175] = {.lex_state = 96, .external_lex_state = 2}, - [176] = {.lex_state = 96, .external_lex_state = 2}, - [177] = {.lex_state = 5, .external_lex_state = 4}, - [178] = {.lex_state = 96, .external_lex_state = 2}, - [179] = {.lex_state = 5, .external_lex_state = 4}, - [180] = {.lex_state = 96, .external_lex_state = 2}, - [181] = {.lex_state = 96, .external_lex_state = 2}, - [182] = {.lex_state = 5, .external_lex_state = 3}, - [183] = {.lex_state = 5, .external_lex_state = 3}, - [184] = {.lex_state = 5, .external_lex_state = 3}, - [185] = {.lex_state = 5, .external_lex_state = 4}, - [186] = {.lex_state = 5, .external_lex_state = 3}, - [187] = {.lex_state = 5, .external_lex_state = 3}, - [188] = {.lex_state = 5, .external_lex_state = 3}, - [189] = {.lex_state = 5, .external_lex_state = 3}, - [190] = {.lex_state = 5, .external_lex_state = 3}, - [191] = {.lex_state = 5, .external_lex_state = 3}, - [192] = {.lex_state = 5, .external_lex_state = 3}, - [193] = {.lex_state = 5, .external_lex_state = 3}, - [194] = {.lex_state = 96, .external_lex_state = 2}, - [195] = {.lex_state = 96, .external_lex_state = 2}, - [196] = {.lex_state = 96, .external_lex_state = 2}, - [197] = {.lex_state = 96, .external_lex_state = 2}, - [198] = {.lex_state = 96, .external_lex_state = 2}, - [199] = {.lex_state = 96, .external_lex_state = 2}, - [200] = {.lex_state = 96, .external_lex_state = 2}, - [201] = {.lex_state = 96, .external_lex_state = 2}, - [202] = {.lex_state = 96, .external_lex_state = 2}, - [203] = {.lex_state = 96, .external_lex_state = 2}, - [204] = {.lex_state = 96, .external_lex_state = 2}, - [205] = {.lex_state = 96, .external_lex_state = 2}, - [206] = {.lex_state = 96, .external_lex_state = 2}, - [207] = {.lex_state = 95, .external_lex_state = 4}, - [208] = {.lex_state = 96, .external_lex_state = 2}, - [209] = {.lex_state = 95, .external_lex_state = 4}, - [210] = {.lex_state = 96, .external_lex_state = 2}, - [211] = {.lex_state = 95, .external_lex_state = 4}, - [212] = {.lex_state = 96, .external_lex_state = 2}, - [213] = {.lex_state = 95, .external_lex_state = 4}, - [214] = {.lex_state = 96, .external_lex_state = 2}, - [215] = {.lex_state = 96, .external_lex_state = 2}, - [216] = {.lex_state = 96, .external_lex_state = 2}, - [217] = {.lex_state = 95, .external_lex_state = 4}, - [218] = {.lex_state = 95, .external_lex_state = 4}, - [219] = {.lex_state = 95, .external_lex_state = 4}, - [220] = {.lex_state = 95, .external_lex_state = 4}, - [221] = {.lex_state = 95, .external_lex_state = 4}, - [222] = {.lex_state = 96, .external_lex_state = 2}, - [223] = {.lex_state = 95, .external_lex_state = 4}, - [224] = {.lex_state = 95, .external_lex_state = 4}, - [225] = {.lex_state = 95, .external_lex_state = 4}, - [226] = {.lex_state = 95, .external_lex_state = 4}, - [227] = {.lex_state = 95, .external_lex_state = 4}, - [228] = {.lex_state = 95, .external_lex_state = 4}, - [229] = {.lex_state = 95, .external_lex_state = 4}, - [230] = {.lex_state = 95, .external_lex_state = 4}, - [231] = {.lex_state = 96, .external_lex_state = 5}, - [232] = {.lex_state = 95, .external_lex_state = 4}, - [233] = {.lex_state = 95, .external_lex_state = 4}, - [234] = {.lex_state = 95, .external_lex_state = 4}, - [235] = {.lex_state = 95, .external_lex_state = 4}, - [236] = {.lex_state = 95, .external_lex_state = 4}, - [237] = {.lex_state = 95, .external_lex_state = 4}, - [238] = {.lex_state = 95, .external_lex_state = 4}, - [239] = {.lex_state = 95, .external_lex_state = 4}, - [240] = {.lex_state = 95, .external_lex_state = 4}, - [241] = {.lex_state = 95, .external_lex_state = 4}, - [242] = {.lex_state = 96, .external_lex_state = 2}, - [243] = {.lex_state = 95, .external_lex_state = 4}, - [244] = {.lex_state = 95, .external_lex_state = 4}, - [245] = {.lex_state = 96, .external_lex_state = 2}, - [246] = {.lex_state = 96, .external_lex_state = 2}, - [247] = {.lex_state = 96, .external_lex_state = 2}, - [248] = {.lex_state = 96, .external_lex_state = 2}, - [249] = {.lex_state = 96, .external_lex_state = 2}, - [250] = {.lex_state = 96, .external_lex_state = 2}, - [251] = {.lex_state = 96, .external_lex_state = 2}, - [252] = {.lex_state = 96, .external_lex_state = 2}, - [253] = {.lex_state = 96, .external_lex_state = 2}, - [254] = {.lex_state = 96, .external_lex_state = 2}, - [255] = {.lex_state = 96, .external_lex_state = 2}, - [256] = {.lex_state = 96, .external_lex_state = 2}, - [257] = {.lex_state = 96, .external_lex_state = 2}, - [258] = {.lex_state = 96, .external_lex_state = 2}, - [259] = {.lex_state = 96, .external_lex_state = 2}, - [260] = {.lex_state = 3, .external_lex_state = 3}, - [261] = {.lex_state = 96, .external_lex_state = 2}, - [262] = {.lex_state = 3, .external_lex_state = 3}, - [263] = {.lex_state = 96, .external_lex_state = 2}, - [264] = {.lex_state = 96, .external_lex_state = 2}, - [265] = {.lex_state = 96, .external_lex_state = 2}, - [266] = {.lex_state = 96, .external_lex_state = 2}, - [267] = {.lex_state = 96, .external_lex_state = 2}, - [268] = {.lex_state = 3, .external_lex_state = 3}, - [269] = {.lex_state = 3, .external_lex_state = 3}, - [270] = {.lex_state = 96, .external_lex_state = 2}, - [271] = {.lex_state = 96, .external_lex_state = 2}, - [272] = {.lex_state = 96, .external_lex_state = 2}, - [273] = {.lex_state = 96, .external_lex_state = 2}, - [274] = {.lex_state = 96, .external_lex_state = 2}, - [275] = {.lex_state = 96, .external_lex_state = 2}, - [276] = {.lex_state = 96, .external_lex_state = 2}, - [277] = {.lex_state = 96, .external_lex_state = 2}, - [278] = {.lex_state = 96, .external_lex_state = 2}, - [279] = {.lex_state = 96, .external_lex_state = 2}, - [280] = {.lex_state = 96, .external_lex_state = 2}, - [281] = {.lex_state = 96, .external_lex_state = 2}, - [282] = {.lex_state = 96, .external_lex_state = 2}, - [283] = {.lex_state = 96, .external_lex_state = 2}, - [284] = {.lex_state = 96, .external_lex_state = 2}, - [285] = {.lex_state = 96, .external_lex_state = 2}, - [286] = {.lex_state = 96, .external_lex_state = 2}, - [287] = {.lex_state = 96, .external_lex_state = 2}, - [288] = {.lex_state = 96, .external_lex_state = 2}, - [289] = {.lex_state = 96, .external_lex_state = 2}, - [290] = {.lex_state = 96, .external_lex_state = 2}, - [291] = {.lex_state = 96, .external_lex_state = 2}, - [292] = {.lex_state = 96, .external_lex_state = 2}, - [293] = {.lex_state = 96, .external_lex_state = 2}, - [294] = {.lex_state = 96, .external_lex_state = 2}, - [295] = {.lex_state = 96, .external_lex_state = 2}, - [296] = {.lex_state = 96, .external_lex_state = 2}, - [297] = {.lex_state = 96, .external_lex_state = 5}, - [298] = {.lex_state = 96, .external_lex_state = 2}, - [299] = {.lex_state = 96, .external_lex_state = 2}, - [300] = {.lex_state = 96, .external_lex_state = 2}, - [301] = {.lex_state = 96, .external_lex_state = 2}, - [302] = {.lex_state = 96, .external_lex_state = 2}, - [303] = {.lex_state = 96, .external_lex_state = 2}, - [304] = {.lex_state = 96, .external_lex_state = 2}, - [305] = {.lex_state = 96, .external_lex_state = 2}, - [306] = {.lex_state = 96, .external_lex_state = 2}, - [307] = {.lex_state = 96, .external_lex_state = 2}, - [308] = {.lex_state = 96, .external_lex_state = 2}, - [309] = {.lex_state = 96, .external_lex_state = 2}, - [310] = {.lex_state = 96, .external_lex_state = 2}, - [311] = {.lex_state = 96, .external_lex_state = 2}, - [312] = {.lex_state = 96, .external_lex_state = 2}, - [313] = {.lex_state = 96, .external_lex_state = 2}, - [314] = {.lex_state = 96, .external_lex_state = 2}, - [315] = {.lex_state = 96, .external_lex_state = 2}, - [316] = {.lex_state = 96, .external_lex_state = 2}, - [317] = {.lex_state = 96, .external_lex_state = 2}, - [318] = {.lex_state = 96, .external_lex_state = 2}, - [319] = {.lex_state = 96, .external_lex_state = 2}, - [320] = {.lex_state = 96, .external_lex_state = 2}, - [321] = {.lex_state = 96, .external_lex_state = 2}, - [322] = {.lex_state = 96, .external_lex_state = 2}, - [323] = {.lex_state = 96, .external_lex_state = 2}, - [324] = {.lex_state = 96, .external_lex_state = 2}, - [325] = {.lex_state = 96, .external_lex_state = 2}, - [326] = {.lex_state = 96, .external_lex_state = 2}, - [327] = {.lex_state = 96, .external_lex_state = 2}, - [328] = {.lex_state = 96, .external_lex_state = 2}, - [329] = {.lex_state = 96, .external_lex_state = 2}, - [330] = {.lex_state = 96, .external_lex_state = 2}, - [331] = {.lex_state = 96, .external_lex_state = 2}, - [332] = {.lex_state = 96, .external_lex_state = 2}, - [333] = {.lex_state = 96, .external_lex_state = 2}, - [334] = {.lex_state = 96, .external_lex_state = 2}, - [335] = {.lex_state = 96, .external_lex_state = 2}, - [336] = {.lex_state = 96, .external_lex_state = 2}, - [337] = {.lex_state = 96, .external_lex_state = 2}, - [338] = {.lex_state = 96, .external_lex_state = 2}, - [339] = {.lex_state = 96, .external_lex_state = 2}, - [340] = {.lex_state = 96, .external_lex_state = 2}, - [341] = {.lex_state = 96, .external_lex_state = 2}, - [342] = {.lex_state = 96, .external_lex_state = 2}, - [343] = {.lex_state = 96, .external_lex_state = 2}, - [344] = {.lex_state = 96, .external_lex_state = 2}, - [345] = {.lex_state = 96, .external_lex_state = 2}, - [346] = {.lex_state = 96, .external_lex_state = 2}, - [347] = {.lex_state = 96, .external_lex_state = 2}, - [348] = {.lex_state = 96, .external_lex_state = 2}, - [349] = {.lex_state = 96, .external_lex_state = 2}, - [350] = {.lex_state = 96, .external_lex_state = 2}, - [351] = {.lex_state = 96, .external_lex_state = 2}, - [352] = {.lex_state = 96, .external_lex_state = 2}, - [353] = {.lex_state = 96, .external_lex_state = 2}, - [354] = {.lex_state = 96, .external_lex_state = 2}, - [355] = {.lex_state = 96, .external_lex_state = 2}, - [356] = {.lex_state = 96, .external_lex_state = 2}, - [357] = {.lex_state = 96, .external_lex_state = 2}, - [358] = {.lex_state = 96, .external_lex_state = 2}, - [359] = {.lex_state = 96, .external_lex_state = 2}, - [360] = {.lex_state = 96, .external_lex_state = 2}, - [361] = {.lex_state = 96, .external_lex_state = 2}, - [362] = {.lex_state = 96, .external_lex_state = 2}, - [363] = {.lex_state = 96, .external_lex_state = 2}, - [364] = {.lex_state = 96, .external_lex_state = 2}, - [365] = {.lex_state = 96, .external_lex_state = 2}, - [366] = {.lex_state = 96, .external_lex_state = 2}, - [367] = {.lex_state = 96, .external_lex_state = 2}, - [368] = {.lex_state = 96, .external_lex_state = 2}, - [369] = {.lex_state = 96, .external_lex_state = 2}, - [370] = {.lex_state = 96, .external_lex_state = 2}, - [371] = {.lex_state = 96, .external_lex_state = 2}, - [372] = {.lex_state = 96, .external_lex_state = 2}, - [373] = {.lex_state = 96, .external_lex_state = 2}, - [374] = {.lex_state = 96, .external_lex_state = 2}, - [375] = {.lex_state = 96, .external_lex_state = 2}, - [376] = {.lex_state = 96, .external_lex_state = 2}, - [377] = {.lex_state = 96, .external_lex_state = 2}, - [378] = {.lex_state = 96, .external_lex_state = 2}, - [379] = {.lex_state = 96, .external_lex_state = 2}, - [380] = {.lex_state = 96, .external_lex_state = 2}, - [381] = {.lex_state = 96, .external_lex_state = 2}, - [382] = {.lex_state = 96, .external_lex_state = 2}, - [383] = {.lex_state = 96, .external_lex_state = 2}, - [384] = {.lex_state = 96, .external_lex_state = 2}, - [385] = {.lex_state = 96, .external_lex_state = 2}, - [386] = {.lex_state = 96, .external_lex_state = 2}, - [387] = {.lex_state = 96, .external_lex_state = 2}, - [388] = {.lex_state = 96, .external_lex_state = 2}, - [389] = {.lex_state = 96, .external_lex_state = 2}, - [390] = {.lex_state = 96, .external_lex_state = 2}, - [391] = {.lex_state = 96, .external_lex_state = 2}, - [392] = {.lex_state = 96, .external_lex_state = 2}, - [393] = {.lex_state = 96, .external_lex_state = 2}, - [394] = {.lex_state = 96, .external_lex_state = 2}, - [395] = {.lex_state = 96, .external_lex_state = 2}, - [396] = {.lex_state = 96, .external_lex_state = 2}, - [397] = {.lex_state = 96, .external_lex_state = 2}, - [398] = {.lex_state = 96, .external_lex_state = 2}, - [399] = {.lex_state = 96, .external_lex_state = 2}, - [400] = {.lex_state = 96, .external_lex_state = 2}, - [401] = {.lex_state = 96, .external_lex_state = 2}, - [402] = {.lex_state = 96, .external_lex_state = 2}, - [403] = {.lex_state = 96, .external_lex_state = 2}, - [404] = {.lex_state = 96, .external_lex_state = 2}, - [405] = {.lex_state = 96, .external_lex_state = 2}, - [406] = {.lex_state = 96, .external_lex_state = 2}, - [407] = {.lex_state = 96, .external_lex_state = 2}, - [408] = {.lex_state = 96, .external_lex_state = 2}, - [409] = {.lex_state = 96, .external_lex_state = 2}, - [410] = {.lex_state = 96, .external_lex_state = 2}, - [411] = {.lex_state = 96, .external_lex_state = 2}, - [412] = {.lex_state = 96, .external_lex_state = 2}, - [413] = {.lex_state = 96, .external_lex_state = 2}, - [414] = {.lex_state = 96, .external_lex_state = 2}, - [415] = {.lex_state = 96, .external_lex_state = 2}, - [416] = {.lex_state = 96, .external_lex_state = 2}, - [417] = {.lex_state = 96, .external_lex_state = 2}, - [418] = {.lex_state = 96, .external_lex_state = 2}, - [419] = {.lex_state = 96, .external_lex_state = 2}, - [420] = {.lex_state = 96, .external_lex_state = 2}, - [421] = {.lex_state = 96, .external_lex_state = 2}, - [422] = {.lex_state = 96, .external_lex_state = 2}, - [423] = {.lex_state = 96, .external_lex_state = 2}, - [424] = {.lex_state = 96, .external_lex_state = 2}, - [425] = {.lex_state = 96, .external_lex_state = 2}, - [426] = {.lex_state = 96, .external_lex_state = 2}, - [427] = {.lex_state = 96, .external_lex_state = 2}, - [428] = {.lex_state = 96, .external_lex_state = 2}, - [429] = {.lex_state = 96, .external_lex_state = 2}, - [430] = {.lex_state = 96, .external_lex_state = 2}, - [431] = {.lex_state = 96, .external_lex_state = 2}, - [432] = {.lex_state = 96, .external_lex_state = 2}, - [433] = {.lex_state = 96, .external_lex_state = 2}, - [434] = {.lex_state = 96, .external_lex_state = 2}, - [435] = {.lex_state = 96, .external_lex_state = 2}, - [436] = {.lex_state = 96, .external_lex_state = 2}, - [437] = {.lex_state = 96, .external_lex_state = 2}, - [438] = {.lex_state = 96, .external_lex_state = 2}, - [439] = {.lex_state = 96, .external_lex_state = 2}, - [440] = {.lex_state = 96, .external_lex_state = 2}, - [441] = {.lex_state = 96, .external_lex_state = 2}, - [442] = {.lex_state = 96, .external_lex_state = 2}, - [443] = {.lex_state = 96, .external_lex_state = 2}, - [444] = {.lex_state = 96, .external_lex_state = 2}, - [445] = {.lex_state = 96, .external_lex_state = 2}, - [446] = {.lex_state = 96, .external_lex_state = 2}, - [447] = {.lex_state = 96, .external_lex_state = 2}, - [448] = {.lex_state = 96, .external_lex_state = 2}, - [449] = {.lex_state = 96, .external_lex_state = 2}, - [450] = {.lex_state = 96, .external_lex_state = 2}, - [451] = {.lex_state = 96, .external_lex_state = 2}, - [452] = {.lex_state = 96, .external_lex_state = 2}, - [453] = {.lex_state = 96, .external_lex_state = 2}, - [454] = {.lex_state = 96, .external_lex_state = 2}, - [455] = {.lex_state = 96, .external_lex_state = 2}, - [456] = {.lex_state = 96, .external_lex_state = 2}, - [457] = {.lex_state = 96, .external_lex_state = 2}, - [458] = {.lex_state = 96, .external_lex_state = 2}, - [459] = {.lex_state = 96, .external_lex_state = 2}, - [460] = {.lex_state = 96, .external_lex_state = 2}, - [461] = {.lex_state = 96, .external_lex_state = 2}, - [462] = {.lex_state = 96, .external_lex_state = 2}, - [463] = {.lex_state = 96, .external_lex_state = 2}, - [464] = {.lex_state = 96, .external_lex_state = 2}, - [465] = {.lex_state = 96, .external_lex_state = 2}, - [466] = {.lex_state = 96, .external_lex_state = 2}, - [467] = {.lex_state = 96, .external_lex_state = 2}, - [468] = {.lex_state = 96, .external_lex_state = 2}, - [469] = {.lex_state = 96, .external_lex_state = 2}, - [470] = {.lex_state = 96, .external_lex_state = 2}, - [471] = {.lex_state = 96, .external_lex_state = 2}, - [472] = {.lex_state = 96, .external_lex_state = 2}, - [473] = {.lex_state = 96, .external_lex_state = 2}, - [474] = {.lex_state = 96, .external_lex_state = 2}, - [475] = {.lex_state = 96, .external_lex_state = 2}, - [476] = {.lex_state = 96, .external_lex_state = 2}, - [477] = {.lex_state = 96, .external_lex_state = 2}, - [478] = {.lex_state = 96, .external_lex_state = 2}, - [479] = {.lex_state = 96, .external_lex_state = 2}, - [480] = {.lex_state = 96, .external_lex_state = 2}, - [481] = {.lex_state = 96, .external_lex_state = 2}, - [482] = {.lex_state = 96, .external_lex_state = 2}, - [483] = {.lex_state = 96, .external_lex_state = 2}, - [484] = {.lex_state = 96, .external_lex_state = 2}, - [485] = {.lex_state = 96, .external_lex_state = 2}, - [486] = {.lex_state = 96, .external_lex_state = 2}, - [487] = {.lex_state = 96, .external_lex_state = 2}, - [488] = {.lex_state = 96, .external_lex_state = 2}, - [489] = {.lex_state = 96, .external_lex_state = 2}, - [490] = {.lex_state = 96, .external_lex_state = 2}, - [491] = {.lex_state = 96, .external_lex_state = 2}, - [492] = {.lex_state = 96, .external_lex_state = 2}, - [493] = {.lex_state = 96, .external_lex_state = 2}, - [494] = {.lex_state = 96, .external_lex_state = 2}, - [495] = {.lex_state = 96, .external_lex_state = 2}, - [496] = {.lex_state = 96, .external_lex_state = 2}, - [497] = {.lex_state = 96, .external_lex_state = 2}, - [498] = {.lex_state = 96, .external_lex_state = 2}, - [499] = {.lex_state = 96, .external_lex_state = 2}, - [500] = {.lex_state = 96, .external_lex_state = 2}, - [501] = {.lex_state = 96, .external_lex_state = 2}, - [502] = {.lex_state = 96, .external_lex_state = 2}, - [503] = {.lex_state = 96, .external_lex_state = 2}, - [504] = {.lex_state = 96, .external_lex_state = 2}, - [505] = {.lex_state = 96, .external_lex_state = 2}, - [506] = {.lex_state = 96, .external_lex_state = 2}, - [507] = {.lex_state = 96, .external_lex_state = 2}, - [508] = {.lex_state = 96, .external_lex_state = 2}, - [509] = {.lex_state = 96, .external_lex_state = 2}, - [510] = {.lex_state = 96, .external_lex_state = 2}, - [511] = {.lex_state = 96, .external_lex_state = 2}, - [512] = {.lex_state = 96, .external_lex_state = 2}, - [513] = {.lex_state = 96, .external_lex_state = 2}, - [514] = {.lex_state = 96, .external_lex_state = 2}, - [515] = {.lex_state = 96, .external_lex_state = 2}, - [516] = {.lex_state = 96, .external_lex_state = 2}, - [517] = {.lex_state = 96, .external_lex_state = 2}, - [518] = {.lex_state = 96, .external_lex_state = 2}, - [519] = {.lex_state = 96, .external_lex_state = 2}, - [520] = {.lex_state = 96, .external_lex_state = 2}, - [521] = {.lex_state = 96, .external_lex_state = 2}, - [522] = {.lex_state = 96, .external_lex_state = 2}, - [523] = {.lex_state = 96, .external_lex_state = 2}, - [524] = {.lex_state = 96, .external_lex_state = 2}, - [525] = {.lex_state = 96, .external_lex_state = 2}, - [526] = {.lex_state = 96, .external_lex_state = 2}, - [527] = {.lex_state = 96, .external_lex_state = 2}, - [528] = {.lex_state = 96, .external_lex_state = 2}, - [529] = {.lex_state = 96, .external_lex_state = 2}, - [530] = {.lex_state = 96, .external_lex_state = 2}, - [531] = {.lex_state = 96, .external_lex_state = 2}, - [532] = {.lex_state = 96, .external_lex_state = 2}, - [533] = {.lex_state = 96, .external_lex_state = 2}, - [534] = {.lex_state = 96, .external_lex_state = 2}, - [535] = {.lex_state = 96, .external_lex_state = 2}, - [536] = {.lex_state = 96, .external_lex_state = 2}, - [537] = {.lex_state = 96, .external_lex_state = 2}, - [538] = {.lex_state = 96, .external_lex_state = 2}, - [539] = {.lex_state = 96, .external_lex_state = 2}, - [540] = {.lex_state = 96, .external_lex_state = 2}, - [541] = {.lex_state = 96, .external_lex_state = 2}, - [542] = {.lex_state = 96, .external_lex_state = 2}, - [543] = {.lex_state = 96, .external_lex_state = 2}, - [544] = {.lex_state = 96, .external_lex_state = 2}, - [545] = {.lex_state = 96, .external_lex_state = 2}, - [546] = {.lex_state = 96, .external_lex_state = 2}, - [547] = {.lex_state = 96, .external_lex_state = 2}, - [548] = {.lex_state = 96, .external_lex_state = 2}, - [549] = {.lex_state = 96, .external_lex_state = 2}, - [550] = {.lex_state = 96, .external_lex_state = 2}, - [551] = {.lex_state = 96, .external_lex_state = 2}, - [552] = {.lex_state = 96, .external_lex_state = 2}, - [553] = {.lex_state = 96, .external_lex_state = 2}, - [554] = {.lex_state = 96, .external_lex_state = 2}, - [555] = {.lex_state = 96, .external_lex_state = 2}, - [556] = {.lex_state = 96, .external_lex_state = 2}, - [557] = {.lex_state = 96, .external_lex_state = 2}, - [558] = {.lex_state = 96, .external_lex_state = 2}, - [559] = {.lex_state = 96, .external_lex_state = 2}, - [560] = {.lex_state = 96, .external_lex_state = 2}, - [561] = {.lex_state = 96, .external_lex_state = 2}, - [562] = {.lex_state = 96, .external_lex_state = 2}, - [563] = {.lex_state = 96, .external_lex_state = 2}, - [564] = {.lex_state = 96, .external_lex_state = 2}, - [565] = {.lex_state = 96, .external_lex_state = 2}, - [566] = {.lex_state = 96, .external_lex_state = 2}, - [567] = {.lex_state = 96, .external_lex_state = 2}, - [568] = {.lex_state = 96, .external_lex_state = 2}, - [569] = {.lex_state = 96, .external_lex_state = 2}, - [570] = {.lex_state = 96, .external_lex_state = 2}, - [571] = {.lex_state = 96, .external_lex_state = 2}, - [572] = {.lex_state = 96, .external_lex_state = 2}, - [573] = {.lex_state = 96, .external_lex_state = 2}, - [574] = {.lex_state = 96, .external_lex_state = 2}, - [575] = {.lex_state = 96, .external_lex_state = 2}, - [576] = {.lex_state = 96, .external_lex_state = 2}, - [577] = {.lex_state = 96, .external_lex_state = 2}, - [578] = {.lex_state = 96, .external_lex_state = 2}, - [579] = {.lex_state = 96, .external_lex_state = 2}, - [580] = {.lex_state = 96, .external_lex_state = 2}, - [581] = {.lex_state = 96, .external_lex_state = 2}, - [582] = {.lex_state = 96, .external_lex_state = 2}, - [583] = {.lex_state = 96, .external_lex_state = 2}, - [584] = {.lex_state = 96, .external_lex_state = 2}, - [585] = {.lex_state = 96, .external_lex_state = 2}, - [586] = {.lex_state = 96, .external_lex_state = 2}, - [587] = {.lex_state = 96, .external_lex_state = 2}, - [588] = {.lex_state = 96, .external_lex_state = 2}, - [589] = {.lex_state = 96, .external_lex_state = 2}, - [590] = {.lex_state = 96, .external_lex_state = 2}, - [591] = {.lex_state = 96, .external_lex_state = 2}, - [592] = {.lex_state = 96, .external_lex_state = 2}, - [593] = {.lex_state = 96, .external_lex_state = 2}, - [594] = {.lex_state = 96, .external_lex_state = 2}, - [595] = {.lex_state = 96, .external_lex_state = 2}, - [596] = {.lex_state = 96, .external_lex_state = 2}, - [597] = {.lex_state = 96, .external_lex_state = 2}, - [598] = {.lex_state = 96, .external_lex_state = 2}, - [599] = {.lex_state = 96, .external_lex_state = 2}, - [600] = {.lex_state = 96, .external_lex_state = 2}, - [601] = {.lex_state = 96, .external_lex_state = 2}, - [602] = {.lex_state = 96, .external_lex_state = 2}, - [603] = {.lex_state = 96, .external_lex_state = 2}, - [604] = {.lex_state = 96, .external_lex_state = 2}, - [605] = {.lex_state = 96, .external_lex_state = 2}, - [606] = {.lex_state = 96, .external_lex_state = 2}, - [607] = {.lex_state = 96, .external_lex_state = 2}, - [608] = {.lex_state = 96, .external_lex_state = 2}, - [609] = {.lex_state = 96, .external_lex_state = 2}, - [610] = {.lex_state = 96, .external_lex_state = 2}, - [611] = {.lex_state = 96, .external_lex_state = 2}, - [612] = {.lex_state = 96, .external_lex_state = 2}, - [613] = {.lex_state = 96, .external_lex_state = 2}, - [614] = {.lex_state = 96, .external_lex_state = 2}, - [615] = {.lex_state = 96, .external_lex_state = 2}, - [616] = {.lex_state = 96, .external_lex_state = 2}, - [617] = {.lex_state = 96, .external_lex_state = 2}, - [618] = {.lex_state = 96, .external_lex_state = 2}, - [619] = {.lex_state = 96, .external_lex_state = 2}, - [620] = {.lex_state = 96, .external_lex_state = 2}, - [621] = {.lex_state = 96, .external_lex_state = 2}, - [622] = {.lex_state = 96, .external_lex_state = 2}, - [623] = {.lex_state = 96, .external_lex_state = 2}, - [624] = {.lex_state = 96, .external_lex_state = 2}, - [625] = {.lex_state = 96, .external_lex_state = 2}, - [626] = {.lex_state = 96, .external_lex_state = 2}, - [627] = {.lex_state = 96, .external_lex_state = 2}, - [628] = {.lex_state = 96, .external_lex_state = 2}, - [629] = {.lex_state = 96, .external_lex_state = 2}, - [630] = {.lex_state = 96, .external_lex_state = 2}, - [631] = {.lex_state = 96, .external_lex_state = 2}, - [632] = {.lex_state = 96, .external_lex_state = 2}, - [633] = {.lex_state = 96, .external_lex_state = 2}, - [634] = {.lex_state = 96, .external_lex_state = 2}, - [635] = {.lex_state = 96, .external_lex_state = 2}, - [636] = {.lex_state = 96, .external_lex_state = 2}, - [637] = {.lex_state = 96, .external_lex_state = 2}, - [638] = {.lex_state = 96, .external_lex_state = 2}, - [639] = {.lex_state = 96, .external_lex_state = 2}, - [640] = {.lex_state = 96, .external_lex_state = 2}, - [641] = {.lex_state = 96, .external_lex_state = 2}, - [642] = {.lex_state = 96, .external_lex_state = 2}, - [643] = {.lex_state = 96, .external_lex_state = 2}, - [644] = {.lex_state = 96, .external_lex_state = 2}, - [645] = {.lex_state = 96, .external_lex_state = 2}, - [646] = {.lex_state = 96, .external_lex_state = 2}, - [647] = {.lex_state = 96, .external_lex_state = 2}, - [648] = {.lex_state = 96, .external_lex_state = 2}, - [649] = {.lex_state = 96, .external_lex_state = 2}, - [650] = {.lex_state = 96, .external_lex_state = 2}, - [651] = {.lex_state = 96, .external_lex_state = 2}, - [652] = {.lex_state = 96, .external_lex_state = 2}, - [653] = {.lex_state = 96, .external_lex_state = 2}, - [654] = {.lex_state = 96, .external_lex_state = 2}, - [655] = {.lex_state = 96, .external_lex_state = 2}, - [656] = {.lex_state = 96, .external_lex_state = 2}, - [657] = {.lex_state = 96, .external_lex_state = 2}, - [658] = {.lex_state = 96, .external_lex_state = 2}, - [659] = {.lex_state = 96, .external_lex_state = 2}, - [660] = {.lex_state = 96, .external_lex_state = 2}, - [661] = {.lex_state = 96, .external_lex_state = 2}, - [662] = {.lex_state = 96, .external_lex_state = 2}, - [663] = {.lex_state = 96, .external_lex_state = 2}, - [664] = {.lex_state = 96, .external_lex_state = 2}, - [665] = {.lex_state = 96, .external_lex_state = 2}, - [666] = {.lex_state = 96, .external_lex_state = 2}, - [667] = {.lex_state = 96, .external_lex_state = 2}, - [668] = {.lex_state = 96, .external_lex_state = 2}, - [669] = {.lex_state = 96, .external_lex_state = 2}, - [670] = {.lex_state = 96, .external_lex_state = 2}, - [671] = {.lex_state = 96, .external_lex_state = 2}, - [672] = {.lex_state = 96, .external_lex_state = 2}, - [673] = {.lex_state = 96, .external_lex_state = 2}, - [674] = {.lex_state = 96, .external_lex_state = 2}, - [675] = {.lex_state = 96, .external_lex_state = 2}, - [676] = {.lex_state = 96, .external_lex_state = 2}, - [677] = {.lex_state = 96, .external_lex_state = 2}, - [678] = {.lex_state = 96, .external_lex_state = 2}, - [679] = {.lex_state = 96, .external_lex_state = 2}, - [680] = {.lex_state = 96, .external_lex_state = 2}, - [681] = {.lex_state = 96, .external_lex_state = 2}, - [682] = {.lex_state = 96, .external_lex_state = 2}, - [683] = {.lex_state = 96, .external_lex_state = 2}, - [684] = {.lex_state = 96, .external_lex_state = 2}, - [685] = {.lex_state = 96, .external_lex_state = 2}, - [686] = {.lex_state = 96, .external_lex_state = 2}, - [687] = {.lex_state = 6, .external_lex_state = 4}, - [688] = {.lex_state = 6, .external_lex_state = 4}, - [689] = {.lex_state = 6, .external_lex_state = 4}, - [690] = {.lex_state = 5, .external_lex_state = 4}, - [691] = {.lex_state = 5, .external_lex_state = 4}, - [692] = {.lex_state = 5, .external_lex_state = 4}, - [693] = {.lex_state = 5, .external_lex_state = 4}, - [694] = {.lex_state = 5, .external_lex_state = 4}, - [695] = {.lex_state = 5, .external_lex_state = 4}, - [696] = {.lex_state = 6, .external_lex_state = 4}, - [697] = {.lex_state = 6, .external_lex_state = 4}, - [698] = {.lex_state = 5, .external_lex_state = 4}, - [699] = {.lex_state = 5, .external_lex_state = 4}, - [700] = {.lex_state = 5, .external_lex_state = 4}, - [701] = {.lex_state = 5, .external_lex_state = 4}, - [702] = {.lex_state = 5, .external_lex_state = 4}, - [703] = {.lex_state = 5, .external_lex_state = 4}, - [704] = {.lex_state = 5, .external_lex_state = 4}, - [705] = {.lex_state = 96, .external_lex_state = 2}, - [706] = {.lex_state = 96, .external_lex_state = 2}, - [707] = {.lex_state = 5, .external_lex_state = 4}, - [708] = {.lex_state = 5, .external_lex_state = 4}, - [709] = {.lex_state = 96, .external_lex_state = 2}, - [710] = {.lex_state = 96, .external_lex_state = 2}, - [711] = {.lex_state = 5, .external_lex_state = 4}, - [712] = {.lex_state = 96, .external_lex_state = 2}, - [713] = {.lex_state = 96, .external_lex_state = 2}, - [714] = {.lex_state = 96, .external_lex_state = 2}, - [715] = {.lex_state = 5, .external_lex_state = 4}, - [716] = {.lex_state = 5, .external_lex_state = 4}, - [717] = {.lex_state = 5, .external_lex_state = 4}, - [718] = {.lex_state = 5, .external_lex_state = 4}, - [719] = {.lex_state = 5, .external_lex_state = 4}, - [720] = {.lex_state = 5, .external_lex_state = 4}, - [721] = {.lex_state = 5, .external_lex_state = 4}, - [722] = {.lex_state = 5, .external_lex_state = 4}, - [723] = {.lex_state = 5, .external_lex_state = 4}, - [724] = {.lex_state = 5, .external_lex_state = 3}, - [725] = {.lex_state = 5, .external_lex_state = 3}, - [726] = {.lex_state = 5, .external_lex_state = 3}, - [727] = {.lex_state = 5, .external_lex_state = 3}, - [728] = {.lex_state = 5, .external_lex_state = 3}, - [729] = {.lex_state = 5, .external_lex_state = 3}, - [730] = {.lex_state = 5, .external_lex_state = 4}, - [731] = {.lex_state = 5, .external_lex_state = 4}, - [732] = {.lex_state = 5, .external_lex_state = 4}, - [733] = {.lex_state = 5, .external_lex_state = 4}, - [734] = {.lex_state = 5, .external_lex_state = 4}, - [735] = {.lex_state = 5, .external_lex_state = 4}, - [736] = {.lex_state = 96, .external_lex_state = 5}, - [737] = {.lex_state = 96, .external_lex_state = 2}, - [738] = {.lex_state = 5, .external_lex_state = 3}, - [739] = {.lex_state = 96, .external_lex_state = 5}, - [740] = {.lex_state = 5, .external_lex_state = 3}, - [741] = {.lex_state = 6, .external_lex_state = 3}, - [742] = {.lex_state = 5, .external_lex_state = 3}, - [743] = {.lex_state = 5, .external_lex_state = 3}, - [744] = {.lex_state = 6, .external_lex_state = 3}, - [745] = {.lex_state = 5, .external_lex_state = 3}, - [746] = {.lex_state = 96, .external_lex_state = 5}, - [747] = {.lex_state = 5, .external_lex_state = 3}, - [748] = {.lex_state = 5, .external_lex_state = 4}, - [749] = {.lex_state = 5, .external_lex_state = 3}, - [750] = {.lex_state = 96, .external_lex_state = 5}, - [751] = {.lex_state = 96, .external_lex_state = 5}, - [752] = {.lex_state = 96, .external_lex_state = 2}, - [753] = {.lex_state = 96, .external_lex_state = 5}, - [754] = {.lex_state = 96, .external_lex_state = 5}, - [755] = {.lex_state = 96, .external_lex_state = 5}, - [756] = {.lex_state = 5, .external_lex_state = 4}, - [757] = {.lex_state = 5, .external_lex_state = 4}, - [758] = {.lex_state = 5, .external_lex_state = 3}, - [759] = {.lex_state = 5, .external_lex_state = 4}, - [760] = {.lex_state = 5, .external_lex_state = 4}, - [761] = {.lex_state = 96, .external_lex_state = 2}, - [762] = {.lex_state = 96, .external_lex_state = 2}, - [763] = {.lex_state = 96, .external_lex_state = 2}, - [764] = {.lex_state = 5, .external_lex_state = 3}, - [765] = {.lex_state = 5, .external_lex_state = 3}, - [766] = {.lex_state = 5, .external_lex_state = 3}, - [767] = {.lex_state = 5, .external_lex_state = 3}, - [768] = {.lex_state = 5, .external_lex_state = 3}, - [769] = {.lex_state = 5, .external_lex_state = 3}, - [770] = {.lex_state = 5, .external_lex_state = 3}, - [771] = {.lex_state = 96, .external_lex_state = 2}, - [772] = {.lex_state = 5, .external_lex_state = 3}, - [773] = {.lex_state = 96, .external_lex_state = 5}, - [774] = {.lex_state = 96, .external_lex_state = 5}, - [775] = {.lex_state = 5, .external_lex_state = 3}, - [776] = {.lex_state = 96, .external_lex_state = 5}, - [777] = {.lex_state = 96, .external_lex_state = 5}, - [778] = {.lex_state = 96, .external_lex_state = 5}, - [779] = {.lex_state = 96, .external_lex_state = 5}, - [780] = {.lex_state = 5, .external_lex_state = 3}, - [781] = {.lex_state = 96, .external_lex_state = 5}, - [782] = {.lex_state = 96, .external_lex_state = 2}, - [783] = {.lex_state = 96, .external_lex_state = 5}, - [784] = {.lex_state = 5, .external_lex_state = 3}, - [785] = {.lex_state = 96, .external_lex_state = 2}, - [786] = {.lex_state = 96, .external_lex_state = 2}, - [787] = {.lex_state = 96, .external_lex_state = 5}, - [788] = {.lex_state = 96, .external_lex_state = 5}, - [789] = {.lex_state = 5, .external_lex_state = 3}, - [790] = {.lex_state = 5, .external_lex_state = 3}, - [791] = {.lex_state = 96, .external_lex_state = 5}, - [792] = {.lex_state = 96, .external_lex_state = 2}, - [793] = {.lex_state = 96, .external_lex_state = 5}, - [794] = {.lex_state = 5, .external_lex_state = 3}, - [795] = {.lex_state = 96, .external_lex_state = 5}, - [796] = {.lex_state = 96, .external_lex_state = 2}, - [797] = {.lex_state = 5, .external_lex_state = 3}, - [798] = {.lex_state = 96, .external_lex_state = 2}, - [799] = {.lex_state = 5, .external_lex_state = 3}, - [800] = {.lex_state = 96, .external_lex_state = 2}, - [801] = {.lex_state = 5, .external_lex_state = 3}, - [802] = {.lex_state = 96, .external_lex_state = 5}, - [803] = {.lex_state = 96, .external_lex_state = 5}, - [804] = {.lex_state = 96, .external_lex_state = 2}, - [805] = {.lex_state = 5, .external_lex_state = 3}, - [806] = {.lex_state = 5, .external_lex_state = 3}, - [807] = {.lex_state = 96, .external_lex_state = 2}, - [808] = {.lex_state = 96, .external_lex_state = 2}, - [809] = {.lex_state = 96, .external_lex_state = 2}, - [810] = {.lex_state = 96, .external_lex_state = 2}, - [811] = {.lex_state = 96, .external_lex_state = 2}, - [812] = {.lex_state = 96, .external_lex_state = 2}, - [813] = {.lex_state = 96, .external_lex_state = 2}, - [814] = {.lex_state = 12, .external_lex_state = 2}, - [815] = {.lex_state = 96, .external_lex_state = 2}, - [816] = {.lex_state = 96, .external_lex_state = 2}, - [817] = {.lex_state = 96, .external_lex_state = 2}, - [818] = {.lex_state = 96, .external_lex_state = 2}, - [819] = {.lex_state = 96, .external_lex_state = 2}, - [820] = {.lex_state = 96, .external_lex_state = 2}, - [821] = {.lex_state = 96, .external_lex_state = 2}, - [822] = {.lex_state = 96, .external_lex_state = 2}, - [823] = {.lex_state = 96, .external_lex_state = 2}, - [824] = {.lex_state = 96, .external_lex_state = 2}, - [825] = {.lex_state = 96, .external_lex_state = 2}, - [826] = {.lex_state = 96, .external_lex_state = 2}, - [827] = {.lex_state = 96, .external_lex_state = 2}, - [828] = {.lex_state = 96, .external_lex_state = 2}, - [829] = {.lex_state = 96, .external_lex_state = 2}, - [830] = {.lex_state = 96, .external_lex_state = 2}, - [831] = {.lex_state = 96, .external_lex_state = 2}, - [832] = {.lex_state = 96, .external_lex_state = 2}, - [833] = {.lex_state = 96, .external_lex_state = 2}, - [834] = {.lex_state = 96, .external_lex_state = 2}, - [835] = {.lex_state = 96, .external_lex_state = 2}, - [836] = {.lex_state = 96, .external_lex_state = 2}, - [837] = {.lex_state = 96, .external_lex_state = 2}, - [838] = {.lex_state = 96, .external_lex_state = 2}, - [839] = {.lex_state = 96, .external_lex_state = 2}, - [840] = {.lex_state = 96, .external_lex_state = 2}, - [841] = {.lex_state = 12, .external_lex_state = 2}, - [842] = {.lex_state = 96, .external_lex_state = 2}, - [843] = {.lex_state = 96, .external_lex_state = 2}, - [844] = {.lex_state = 96, .external_lex_state = 2}, - [845] = {.lex_state = 96, .external_lex_state = 2}, - [846] = {.lex_state = 96, .external_lex_state = 2}, - [847] = {.lex_state = 96, .external_lex_state = 2}, - [848] = {.lex_state = 96, .external_lex_state = 2}, - [849] = {.lex_state = 96, .external_lex_state = 2}, - [850] = {.lex_state = 96, .external_lex_state = 2}, - [851] = {.lex_state = 96, .external_lex_state = 2}, - [852] = {.lex_state = 96, .external_lex_state = 2}, - [853] = {.lex_state = 96, .external_lex_state = 2}, - [854] = {.lex_state = 96, .external_lex_state = 2}, - [855] = {.lex_state = 96, .external_lex_state = 2}, - [856] = {.lex_state = 96, .external_lex_state = 2}, - [857] = {.lex_state = 96, .external_lex_state = 2}, - [858] = {.lex_state = 96, .external_lex_state = 2}, - [859] = {.lex_state = 96, .external_lex_state = 2}, - [860] = {.lex_state = 96, .external_lex_state = 2}, - [861] = {.lex_state = 96, .external_lex_state = 2}, - [862] = {.lex_state = 96, .external_lex_state = 2}, - [863] = {.lex_state = 96, .external_lex_state = 2}, - [864] = {.lex_state = 96, .external_lex_state = 2}, - [865] = {.lex_state = 96, .external_lex_state = 2}, - [866] = {.lex_state = 96, .external_lex_state = 2}, - [867] = {.lex_state = 96, .external_lex_state = 2}, - [868] = {.lex_state = 96, .external_lex_state = 2}, - [869] = {.lex_state = 96, .external_lex_state = 2}, - [870] = {.lex_state = 96, .external_lex_state = 2}, - [871] = {.lex_state = 96, .external_lex_state = 2}, - [872] = {.lex_state = 96, .external_lex_state = 2}, - [873] = {.lex_state = 96, .external_lex_state = 2}, - [874] = {.lex_state = 96, .external_lex_state = 2}, - [875] = {.lex_state = 96, .external_lex_state = 2}, - [876] = {.lex_state = 96, .external_lex_state = 2}, - [877] = {.lex_state = 96, .external_lex_state = 2}, - [878] = {.lex_state = 96, .external_lex_state = 2}, - [879] = {.lex_state = 12, .external_lex_state = 2}, - [880] = {.lex_state = 96, .external_lex_state = 2}, - [881] = {.lex_state = 96, .external_lex_state = 2}, - [882] = {.lex_state = 96, .external_lex_state = 2}, - [883] = {.lex_state = 96, .external_lex_state = 2}, - [884] = {.lex_state = 96, .external_lex_state = 2}, - [885] = {.lex_state = 96, .external_lex_state = 2}, - [886] = {.lex_state = 96, .external_lex_state = 2}, - [887] = {.lex_state = 96, .external_lex_state = 2}, - [888] = {.lex_state = 96, .external_lex_state = 2}, - [889] = {.lex_state = 96, .external_lex_state = 2}, - [890] = {.lex_state = 96, .external_lex_state = 2}, - [891] = {.lex_state = 96, .external_lex_state = 2}, - [892] = {.lex_state = 96, .external_lex_state = 2}, - [893] = {.lex_state = 96, .external_lex_state = 2}, - [894] = {.lex_state = 96, .external_lex_state = 2}, - [895] = {.lex_state = 96, .external_lex_state = 2}, - [896] = {.lex_state = 96, .external_lex_state = 2}, - [897] = {.lex_state = 96, .external_lex_state = 2}, - [898] = {.lex_state = 96, .external_lex_state = 2}, - [899] = {.lex_state = 96, .external_lex_state = 2}, - [900] = {.lex_state = 96, .external_lex_state = 2}, - [901] = {.lex_state = 96, .external_lex_state = 2}, - [902] = {.lex_state = 96, .external_lex_state = 2}, - [903] = {.lex_state = 96, .external_lex_state = 2}, - [904] = {.lex_state = 96, .external_lex_state = 2}, - [905] = {.lex_state = 96, .external_lex_state = 2}, - [906] = {.lex_state = 96, .external_lex_state = 2}, - [907] = {.lex_state = 96, .external_lex_state = 2}, - [908] = {.lex_state = 96, .external_lex_state = 2}, - [909] = {.lex_state = 96, .external_lex_state = 2}, - [910] = {.lex_state = 96, .external_lex_state = 2}, - [911] = {.lex_state = 96, .external_lex_state = 2}, - [912] = {.lex_state = 96, .external_lex_state = 2}, - [913] = {.lex_state = 96, .external_lex_state = 2}, - [914] = {.lex_state = 96, .external_lex_state = 2}, - [915] = {.lex_state = 96, .external_lex_state = 2}, - [916] = {.lex_state = 96, .external_lex_state = 2}, - [917] = {.lex_state = 96, .external_lex_state = 2}, - [918] = {.lex_state = 96, .external_lex_state = 2}, - [919] = {.lex_state = 96, .external_lex_state = 2}, - [920] = {.lex_state = 96, .external_lex_state = 2}, - [921] = {.lex_state = 96, .external_lex_state = 2}, - [922] = {.lex_state = 12, .external_lex_state = 2}, - [923] = {.lex_state = 96, .external_lex_state = 2}, - [924] = {.lex_state = 96, .external_lex_state = 2}, - [925] = {.lex_state = 12, .external_lex_state = 2}, - [926] = {.lex_state = 96, .external_lex_state = 2}, - [927] = {.lex_state = 96, .external_lex_state = 2}, - [928] = {.lex_state = 96, .external_lex_state = 2}, - [929] = {.lex_state = 96, .external_lex_state = 2}, - [930] = {.lex_state = 96, .external_lex_state = 2}, - [931] = {.lex_state = 96, .external_lex_state = 2}, - [932] = {.lex_state = 96, .external_lex_state = 2}, - [933] = {.lex_state = 96, .external_lex_state = 2}, - [934] = {.lex_state = 96, .external_lex_state = 2}, - [935] = {.lex_state = 12, .external_lex_state = 2}, - [936] = {.lex_state = 12, .external_lex_state = 2}, - [937] = {.lex_state = 12, .external_lex_state = 2}, - [938] = {.lex_state = 12, .external_lex_state = 2}, - [939] = {.lex_state = 12, .external_lex_state = 2}, - [940] = {.lex_state = 12, .external_lex_state = 2}, - [941] = {.lex_state = 12, .external_lex_state = 2}, - [942] = {.lex_state = 12, .external_lex_state = 2}, - [943] = {.lex_state = 12, .external_lex_state = 2}, - [944] = {.lex_state = 12, .external_lex_state = 2}, - [945] = {.lex_state = 12, .external_lex_state = 2}, - [946] = {.lex_state = 96, .external_lex_state = 2}, - [947] = {.lex_state = 96, .external_lex_state = 2}, - [948] = {.lex_state = 96, .external_lex_state = 2}, - [949] = {.lex_state = 96, .external_lex_state = 2}, - [950] = {.lex_state = 96, .external_lex_state = 2}, - [951] = {.lex_state = 96, .external_lex_state = 2}, - [952] = {.lex_state = 96, .external_lex_state = 2}, - [953] = {.lex_state = 96, .external_lex_state = 2}, - [954] = {.lex_state = 96, .external_lex_state = 2}, - [955] = {.lex_state = 96, .external_lex_state = 2}, - [956] = {.lex_state = 96, .external_lex_state = 2}, - [957] = {.lex_state = 96, .external_lex_state = 2}, - [958] = {.lex_state = 96, .external_lex_state = 2}, - [959] = {.lex_state = 96, .external_lex_state = 2}, - [960] = {.lex_state = 12, .external_lex_state = 2}, - [961] = {.lex_state = 12, .external_lex_state = 2}, - [962] = {.lex_state = 12, .external_lex_state = 2}, - [963] = {.lex_state = 12, .external_lex_state = 2}, - [964] = {.lex_state = 12, .external_lex_state = 2}, - [965] = {.lex_state = 12, .external_lex_state = 2}, - [966] = {.lex_state = 12, .external_lex_state = 2}, - [967] = {.lex_state = 12, .external_lex_state = 2}, - [968] = {.lex_state = 12, .external_lex_state = 2}, - [969] = {.lex_state = 12, .external_lex_state = 2}, - [970] = {.lex_state = 12, .external_lex_state = 2}, - [971] = {.lex_state = 12, .external_lex_state = 2}, - [972] = {.lex_state = 12, .external_lex_state = 2}, - [973] = {.lex_state = 12, .external_lex_state = 2}, - [974] = {.lex_state = 12, .external_lex_state = 2}, - [975] = {.lex_state = 12, .external_lex_state = 2}, - [976] = {.lex_state = 12, .external_lex_state = 2}, - [977] = {.lex_state = 14, .external_lex_state = 2}, - [978] = {.lex_state = 14, .external_lex_state = 2}, - [979] = {.lex_state = 14, .external_lex_state = 2}, - [980] = {.lex_state = 12, .external_lex_state = 2}, - [981] = {.lex_state = 12, .external_lex_state = 2}, - [982] = {.lex_state = 12, .external_lex_state = 2}, - [983] = {.lex_state = 12, .external_lex_state = 2}, - [984] = {.lex_state = 12, .external_lex_state = 2}, - [985] = {.lex_state = 12, .external_lex_state = 2}, - [986] = {.lex_state = 12, .external_lex_state = 2}, - [987] = {.lex_state = 12, .external_lex_state = 2}, - [988] = {.lex_state = 12, .external_lex_state = 2}, - [989] = {.lex_state = 12, .external_lex_state = 2}, - [990] = {.lex_state = 12, .external_lex_state = 2}, - [991] = {.lex_state = 12, .external_lex_state = 2}, - [992] = {.lex_state = 12, .external_lex_state = 2}, - [993] = {.lex_state = 12, .external_lex_state = 2}, - [994] = {.lex_state = 12, .external_lex_state = 2}, - [995] = {.lex_state = 12, .external_lex_state = 2}, - [996] = {.lex_state = 12, .external_lex_state = 2}, - [997] = {.lex_state = 12, .external_lex_state = 2}, - [998] = {.lex_state = 12, .external_lex_state = 2}, - [999] = {.lex_state = 12, .external_lex_state = 2}, - [1000] = {.lex_state = 12, .external_lex_state = 2}, - [1001] = {.lex_state = 12, .external_lex_state = 2}, - [1002] = {.lex_state = 12, .external_lex_state = 2}, - [1003] = {.lex_state = 12, .external_lex_state = 2}, - [1004] = {.lex_state = 12, .external_lex_state = 2}, - [1005] = {.lex_state = 12, .external_lex_state = 2}, - [1006] = {.lex_state = 12, .external_lex_state = 2}, - [1007] = {.lex_state = 12, .external_lex_state = 2}, - [1008] = {.lex_state = 12, .external_lex_state = 2}, - [1009] = {.lex_state = 12, .external_lex_state = 2}, - [1010] = {.lex_state = 12, .external_lex_state = 2}, - [1011] = {.lex_state = 12, .external_lex_state = 2}, - [1012] = {.lex_state = 12, .external_lex_state = 2}, - [1013] = {.lex_state = 12, .external_lex_state = 2}, - [1014] = {.lex_state = 12, .external_lex_state = 2}, - [1015] = {.lex_state = 12, .external_lex_state = 2}, - [1016] = {.lex_state = 12, .external_lex_state = 2}, - [1017] = {.lex_state = 12, .external_lex_state = 2}, - [1018] = {.lex_state = 12, .external_lex_state = 2}, - [1019] = {.lex_state = 12, .external_lex_state = 2}, - [1020] = {.lex_state = 12, .external_lex_state = 2}, - [1021] = {.lex_state = 12, .external_lex_state = 2}, - [1022] = {.lex_state = 12, .external_lex_state = 2}, - [1023] = {.lex_state = 12, .external_lex_state = 2}, - [1024] = {.lex_state = 12, .external_lex_state = 2}, - [1025] = {.lex_state = 12, .external_lex_state = 2}, - [1026] = {.lex_state = 12, .external_lex_state = 2}, - [1027] = {.lex_state = 12, .external_lex_state = 2}, - [1028] = {.lex_state = 12, .external_lex_state = 2}, - [1029] = {.lex_state = 12, .external_lex_state = 2}, - [1030] = {.lex_state = 12, .external_lex_state = 2}, - [1031] = {.lex_state = 12, .external_lex_state = 2}, - [1032] = {.lex_state = 12, .external_lex_state = 2}, - [1033] = {.lex_state = 12, .external_lex_state = 2}, - [1034] = {.lex_state = 12, .external_lex_state = 2}, - [1035] = {.lex_state = 12, .external_lex_state = 2}, - [1036] = {.lex_state = 12, .external_lex_state = 2}, - [1037] = {.lex_state = 12, .external_lex_state = 2}, - [1038] = {.lex_state = 12, .external_lex_state = 2}, - [1039] = {.lex_state = 12, .external_lex_state = 2}, - [1040] = {.lex_state = 12, .external_lex_state = 2}, - [1041] = {.lex_state = 12, .external_lex_state = 2}, - [1042] = {.lex_state = 12, .external_lex_state = 2}, - [1043] = {.lex_state = 12, .external_lex_state = 2}, - [1044] = {.lex_state = 12, .external_lex_state = 2}, - [1045] = {.lex_state = 12, .external_lex_state = 2}, - [1046] = {.lex_state = 12, .external_lex_state = 2}, - [1047] = {.lex_state = 12, .external_lex_state = 2}, - [1048] = {.lex_state = 12, .external_lex_state = 2}, - [1049] = {.lex_state = 12, .external_lex_state = 2}, - [1050] = {.lex_state = 12, .external_lex_state = 2}, - [1051] = {.lex_state = 12, .external_lex_state = 2}, - [1052] = {.lex_state = 12, .external_lex_state = 2}, - [1053] = {.lex_state = 12, .external_lex_state = 2}, - [1054] = {.lex_state = 12, .external_lex_state = 2}, - [1055] = {.lex_state = 12, .external_lex_state = 2}, - [1056] = {.lex_state = 12, .external_lex_state = 2}, - [1057] = {.lex_state = 12, .external_lex_state = 2}, - [1058] = {.lex_state = 12, .external_lex_state = 2}, - [1059] = {.lex_state = 12, .external_lex_state = 2}, - [1060] = {.lex_state = 12, .external_lex_state = 2}, - [1061] = {.lex_state = 12, .external_lex_state = 2}, - [1062] = {.lex_state = 12, .external_lex_state = 2}, - [1063] = {.lex_state = 12, .external_lex_state = 2}, - [1064] = {.lex_state = 12, .external_lex_state = 2}, - [1065] = {.lex_state = 12, .external_lex_state = 2}, - [1066] = {.lex_state = 12, .external_lex_state = 2}, - [1067] = {.lex_state = 12, .external_lex_state = 2}, - [1068] = {.lex_state = 12, .external_lex_state = 2}, - [1069] = {.lex_state = 12, .external_lex_state = 2}, - [1070] = {.lex_state = 12, .external_lex_state = 2}, - [1071] = {.lex_state = 12, .external_lex_state = 2}, - [1072] = {.lex_state = 12, .external_lex_state = 2}, - [1073] = {.lex_state = 12, .external_lex_state = 2}, - [1074] = {.lex_state = 12, .external_lex_state = 2}, - [1075] = {.lex_state = 12, .external_lex_state = 2}, - [1076] = {.lex_state = 12, .external_lex_state = 2}, - [1077] = {.lex_state = 12, .external_lex_state = 2}, - [1078] = {.lex_state = 12, .external_lex_state = 2}, - [1079] = {.lex_state = 12, .external_lex_state = 2}, - [1080] = {.lex_state = 12, .external_lex_state = 2}, - [1081] = {.lex_state = 12, .external_lex_state = 2}, - [1082] = {.lex_state = 12, .external_lex_state = 2}, - [1083] = {.lex_state = 12, .external_lex_state = 2}, - [1084] = {.lex_state = 12, .external_lex_state = 2}, - [1085] = {.lex_state = 12, .external_lex_state = 2}, - [1086] = {.lex_state = 12, .external_lex_state = 2}, - [1087] = {.lex_state = 12, .external_lex_state = 2}, - [1088] = {.lex_state = 12, .external_lex_state = 2}, - [1089] = {.lex_state = 12, .external_lex_state = 2}, - [1090] = {.lex_state = 12, .external_lex_state = 2}, - [1091] = {.lex_state = 12, .external_lex_state = 2}, - [1092] = {.lex_state = 12, .external_lex_state = 2}, - [1093] = {.lex_state = 12, .external_lex_state = 2}, - [1094] = {.lex_state = 12, .external_lex_state = 2}, - [1095] = {.lex_state = 12, .external_lex_state = 2}, - [1096] = {.lex_state = 12, .external_lex_state = 2}, - [1097] = {.lex_state = 12, .external_lex_state = 2}, - [1098] = {.lex_state = 12, .external_lex_state = 2}, - [1099] = {.lex_state = 12, .external_lex_state = 2}, - [1100] = {.lex_state = 12, .external_lex_state = 2}, - [1101] = {.lex_state = 12, .external_lex_state = 2}, - [1102] = {.lex_state = 12, .external_lex_state = 2}, - [1103] = {.lex_state = 12, .external_lex_state = 2}, - [1104] = {.lex_state = 12, .external_lex_state = 2}, - [1105] = {.lex_state = 12, .external_lex_state = 2}, - [1106] = {.lex_state = 12, .external_lex_state = 2}, - [1107] = {.lex_state = 12, .external_lex_state = 2}, - [1108] = {.lex_state = 12, .external_lex_state = 2}, - [1109] = {.lex_state = 12, .external_lex_state = 2}, - [1110] = {.lex_state = 12, .external_lex_state = 2}, - [1111] = {.lex_state = 12, .external_lex_state = 2}, - [1112] = {.lex_state = 12, .external_lex_state = 2}, - [1113] = {.lex_state = 12, .external_lex_state = 2}, - [1114] = {.lex_state = 12, .external_lex_state = 2}, - [1115] = {.lex_state = 12, .external_lex_state = 2}, - [1116] = {.lex_state = 12, .external_lex_state = 2}, - [1117] = {.lex_state = 12, .external_lex_state = 2}, - [1118] = {.lex_state = 12, .external_lex_state = 2}, - [1119] = {.lex_state = 12, .external_lex_state = 2}, - [1120] = {.lex_state = 12, .external_lex_state = 2}, - [1121] = {.lex_state = 12, .external_lex_state = 2}, - [1122] = {.lex_state = 12, .external_lex_state = 2}, - [1123] = {.lex_state = 12, .external_lex_state = 2}, - [1124] = {.lex_state = 12, .external_lex_state = 2}, - [1125] = {.lex_state = 12, .external_lex_state = 2}, - [1126] = {.lex_state = 12, .external_lex_state = 2}, - [1127] = {.lex_state = 12, .external_lex_state = 2}, - [1128] = {.lex_state = 12, .external_lex_state = 2}, - [1129] = {.lex_state = 12, .external_lex_state = 2}, - [1130] = {.lex_state = 12, .external_lex_state = 2}, - [1131] = {.lex_state = 12, .external_lex_state = 2}, - [1132] = {.lex_state = 12, .external_lex_state = 2}, - [1133] = {.lex_state = 12, .external_lex_state = 2}, - [1134] = {.lex_state = 12, .external_lex_state = 2}, - [1135] = {.lex_state = 12, .external_lex_state = 2}, - [1136] = {.lex_state = 12, .external_lex_state = 2}, - [1137] = {.lex_state = 12, .external_lex_state = 2}, - [1138] = {.lex_state = 12, .external_lex_state = 2}, - [1139] = {.lex_state = 12, .external_lex_state = 2}, - [1140] = {.lex_state = 12, .external_lex_state = 2}, - [1141] = {.lex_state = 12, .external_lex_state = 2}, - [1142] = {.lex_state = 12, .external_lex_state = 2}, - [1143] = {.lex_state = 12, .external_lex_state = 2}, - [1144] = {.lex_state = 12, .external_lex_state = 2}, - [1145] = {.lex_state = 12, .external_lex_state = 2}, - [1146] = {.lex_state = 12, .external_lex_state = 2}, - [1147] = {.lex_state = 12, .external_lex_state = 2}, - [1148] = {.lex_state = 12, .external_lex_state = 2}, - [1149] = {.lex_state = 12, .external_lex_state = 2}, - [1150] = {.lex_state = 12, .external_lex_state = 2}, - [1151] = {.lex_state = 13, .external_lex_state = 2}, - [1152] = {.lex_state = 13, .external_lex_state = 2}, - [1153] = {.lex_state = 96, .external_lex_state = 2}, - [1154] = {.lex_state = 13, .external_lex_state = 2}, - [1155] = {.lex_state = 13, .external_lex_state = 2}, - [1156] = {.lex_state = 96, .external_lex_state = 2}, - [1157] = {.lex_state = 13, .external_lex_state = 2}, - [1158] = {.lex_state = 13, .external_lex_state = 2}, - [1159] = {.lex_state = 13, .external_lex_state = 2}, - [1160] = {.lex_state = 13, .external_lex_state = 2}, - [1161] = {.lex_state = 13, .external_lex_state = 2}, - [1162] = {.lex_state = 96, .external_lex_state = 2}, - [1163] = {.lex_state = 13, .external_lex_state = 2}, - [1164] = {.lex_state = 13, .external_lex_state = 2}, - [1165] = {.lex_state = 13, .external_lex_state = 2}, - [1166] = {.lex_state = 6, .external_lex_state = 4}, - [1167] = {.lex_state = 5, .external_lex_state = 4}, - [1168] = {.lex_state = 5, .external_lex_state = 4}, - [1169] = {.lex_state = 5, .external_lex_state = 4}, - [1170] = {.lex_state = 6, .external_lex_state = 4}, - [1171] = {.lex_state = 6, .external_lex_state = 4}, - [1172] = {.lex_state = 5, .external_lex_state = 4}, - [1173] = {.lex_state = 5, .external_lex_state = 4}, - [1174] = {.lex_state = 5, .external_lex_state = 4}, - [1175] = {.lex_state = 5, .external_lex_state = 3}, - [1176] = {.lex_state = 5, .external_lex_state = 3}, - [1177] = {.lex_state = 13, .external_lex_state = 2}, - [1178] = {.lex_state = 5, .external_lex_state = 3}, - [1179] = {.lex_state = 13, .external_lex_state = 2}, - [1180] = {.lex_state = 5, .external_lex_state = 3}, - [1181] = {.lex_state = 5, .external_lex_state = 4}, - [1182] = {.lex_state = 5, .external_lex_state = 3}, - [1183] = {.lex_state = 5, .external_lex_state = 4}, - [1184] = {.lex_state = 5, .external_lex_state = 4}, - [1185] = {.lex_state = 5, .external_lex_state = 4}, - [1186] = {.lex_state = 6, .external_lex_state = 4}, - [1187] = {.lex_state = 6, .external_lex_state = 4}, - [1188] = {.lex_state = 5, .external_lex_state = 4}, - [1189] = {.lex_state = 5, .external_lex_state = 3}, - [1190] = {.lex_state = 5, .external_lex_state = 4}, - [1191] = {.lex_state = 5, .external_lex_state = 4}, - [1192] = {.lex_state = 5, .external_lex_state = 4}, - [1193] = {.lex_state = 5, .external_lex_state = 3}, - [1194] = {.lex_state = 5, .external_lex_state = 3}, - [1195] = {.lex_state = 6, .external_lex_state = 3}, - [1196] = {.lex_state = 6, .external_lex_state = 3}, - [1197] = {.lex_state = 6, .external_lex_state = 3}, - [1198] = {.lex_state = 6, .external_lex_state = 3}, - [1199] = {.lex_state = 5, .external_lex_state = 3}, - [1200] = {.lex_state = 6, .external_lex_state = 3}, - [1201] = {.lex_state = 6, .external_lex_state = 3}, - [1202] = {.lex_state = 5, .external_lex_state = 4}, - [1203] = {.lex_state = 6, .external_lex_state = 3}, - [1204] = {.lex_state = 6, .external_lex_state = 3}, - [1205] = {.lex_state = 6, .external_lex_state = 3}, - [1206] = {.lex_state = 5, .external_lex_state = 3}, - [1207] = {.lex_state = 5, .external_lex_state = 4}, - [1208] = {.lex_state = 5, .external_lex_state = 4}, - [1209] = {.lex_state = 6, .external_lex_state = 3}, - [1210] = {.lex_state = 6, .external_lex_state = 3}, - [1211] = {.lex_state = 6, .external_lex_state = 3}, - [1212] = {.lex_state = 5, .external_lex_state = 3}, - [1213] = {.lex_state = 5, .external_lex_state = 4}, - [1214] = {.lex_state = 5, .external_lex_state = 4}, - [1215] = {.lex_state = 5, .external_lex_state = 4}, - [1216] = {.lex_state = 5, .external_lex_state = 4}, - [1217] = {.lex_state = 5, .external_lex_state = 4}, - [1218] = {.lex_state = 5, .external_lex_state = 3}, - [1219] = {.lex_state = 5, .external_lex_state = 3}, - [1220] = {.lex_state = 5, .external_lex_state = 4}, - [1221] = {.lex_state = 5, .external_lex_state = 4}, - [1222] = {.lex_state = 6, .external_lex_state = 4}, - [1223] = {.lex_state = 6, .external_lex_state = 3}, - [1224] = {.lex_state = 5, .external_lex_state = 4}, - [1225] = {.lex_state = 5, .external_lex_state = 4}, - [1226] = {.lex_state = 6, .external_lex_state = 4}, - [1227] = {.lex_state = 5, .external_lex_state = 4}, - [1228] = {.lex_state = 6, .external_lex_state = 3}, - [1229] = {.lex_state = 6, .external_lex_state = 3}, - [1230] = {.lex_state = 5, .external_lex_state = 3}, - [1231] = {.lex_state = 5, .external_lex_state = 4}, - [1232] = {.lex_state = 5, .external_lex_state = 4}, - [1233] = {.lex_state = 5, .external_lex_state = 3}, - [1234] = {.lex_state = 5, .external_lex_state = 3}, - [1235] = {.lex_state = 5, .external_lex_state = 3}, - [1236] = {.lex_state = 5, .external_lex_state = 3}, - [1237] = {.lex_state = 5, .external_lex_state = 3}, - [1238] = {.lex_state = 5, .external_lex_state = 3}, - [1239] = {.lex_state = 5, .external_lex_state = 4}, - [1240] = {.lex_state = 5, .external_lex_state = 4}, - [1241] = {.lex_state = 5, .external_lex_state = 3}, - [1242] = {.lex_state = 5, .external_lex_state = 3}, - [1243] = {.lex_state = 96, .external_lex_state = 2}, - [1244] = {.lex_state = 5, .external_lex_state = 4}, - [1245] = {.lex_state = 5, .external_lex_state = 3}, - [1246] = {.lex_state = 5, .external_lex_state = 3}, - [1247] = {.lex_state = 5, .external_lex_state = 3}, - [1248] = {.lex_state = 5, .external_lex_state = 3}, - [1249] = {.lex_state = 5, .external_lex_state = 4}, - [1250] = {.lex_state = 5, .external_lex_state = 3}, - [1251] = {.lex_state = 5, .external_lex_state = 4}, - [1252] = {.lex_state = 5, .external_lex_state = 3}, - [1253] = {.lex_state = 5, .external_lex_state = 3}, - [1254] = {.lex_state = 5, .external_lex_state = 3}, - [1255] = {.lex_state = 6, .external_lex_state = 3}, - [1256] = {.lex_state = 96, .external_lex_state = 2}, - [1257] = {.lex_state = 5, .external_lex_state = 3}, - [1258] = {.lex_state = 5, .external_lex_state = 3}, - [1259] = {.lex_state = 5, .external_lex_state = 4}, - [1260] = {.lex_state = 96, .external_lex_state = 2}, - [1261] = {.lex_state = 6, .external_lex_state = 3}, - [1262] = {.lex_state = 5, .external_lex_state = 3}, - [1263] = {.lex_state = 5, .external_lex_state = 3}, - [1264] = {.lex_state = 5, .external_lex_state = 3}, - [1265] = {.lex_state = 5, .external_lex_state = 3}, - [1266] = {.lex_state = 5, .external_lex_state = 3}, - [1267] = {.lex_state = 5, .external_lex_state = 3}, - [1268] = {.lex_state = 5, .external_lex_state = 3}, - [1269] = {.lex_state = 5, .external_lex_state = 3}, - [1270] = {.lex_state = 5, .external_lex_state = 3}, - [1271] = {.lex_state = 96, .external_lex_state = 2}, - [1272] = {.lex_state = 5, .external_lex_state = 3}, - [1273] = {.lex_state = 5, .external_lex_state = 4}, - [1274] = {.lex_state = 5, .external_lex_state = 3}, - [1275] = {.lex_state = 96, .external_lex_state = 2}, - [1276] = {.lex_state = 5, .external_lex_state = 3}, - [1277] = {.lex_state = 5, .external_lex_state = 3}, - [1278] = {.lex_state = 5, .external_lex_state = 3}, - [1279] = {.lex_state = 5, .external_lex_state = 3}, - [1280] = {.lex_state = 5, .external_lex_state = 3}, - [1281] = {.lex_state = 96, .external_lex_state = 2}, - [1282] = {.lex_state = 5, .external_lex_state = 3}, - [1283] = {.lex_state = 96, .external_lex_state = 2}, - [1284] = {.lex_state = 5, .external_lex_state = 3}, - [1285] = {.lex_state = 96, .external_lex_state = 2}, - [1286] = {.lex_state = 5, .external_lex_state = 3}, - [1287] = {.lex_state = 5, .external_lex_state = 4}, - [1288] = {.lex_state = 5, .external_lex_state = 4}, - [1289] = {.lex_state = 5, .external_lex_state = 4}, - [1290] = {.lex_state = 5, .external_lex_state = 3}, - [1291] = {.lex_state = 5, .external_lex_state = 3}, - [1292] = {.lex_state = 5, .external_lex_state = 3}, - [1293] = {.lex_state = 5, .external_lex_state = 3}, - [1294] = {.lex_state = 5, .external_lex_state = 3}, - [1295] = {.lex_state = 5, .external_lex_state = 3}, - [1296] = {.lex_state = 5, .external_lex_state = 3}, - [1297] = {.lex_state = 5, .external_lex_state = 3}, - [1298] = {.lex_state = 5, .external_lex_state = 4}, - [1299] = {.lex_state = 5, .external_lex_state = 4}, - [1300] = {.lex_state = 5, .external_lex_state = 4}, - [1301] = {.lex_state = 96, .external_lex_state = 2}, - [1302] = {.lex_state = 5, .external_lex_state = 3}, - [1303] = {.lex_state = 5, .external_lex_state = 4}, - [1304] = {.lex_state = 5, .external_lex_state = 4}, - [1305] = {.lex_state = 6, .external_lex_state = 3}, - [1306] = {.lex_state = 5, .external_lex_state = 3}, - [1307] = {.lex_state = 5, .external_lex_state = 3}, - [1308] = {.lex_state = 5, .external_lex_state = 4}, - [1309] = {.lex_state = 5, .external_lex_state = 3}, - [1310] = {.lex_state = 5, .external_lex_state = 4}, - [1311] = {.lex_state = 5, .external_lex_state = 3}, - [1312] = {.lex_state = 5, .external_lex_state = 4}, - [1313] = {.lex_state = 5, .external_lex_state = 4}, - [1314] = {.lex_state = 5, .external_lex_state = 4}, - [1315] = {.lex_state = 5, .external_lex_state = 3}, - [1316] = {.lex_state = 5, .external_lex_state = 4}, - [1317] = {.lex_state = 5, .external_lex_state = 4}, - [1318] = {.lex_state = 5, .external_lex_state = 4}, - [1319] = {.lex_state = 5, .external_lex_state = 4}, - [1320] = {.lex_state = 5, .external_lex_state = 4}, - [1321] = {.lex_state = 5, .external_lex_state = 3}, - [1322] = {.lex_state = 5, .external_lex_state = 3}, - [1323] = {.lex_state = 5, .external_lex_state = 3}, - [1324] = {.lex_state = 5, .external_lex_state = 3}, - [1325] = {.lex_state = 5, .external_lex_state = 3}, - [1326] = {.lex_state = 5, .external_lex_state = 4}, - [1327] = {.lex_state = 5, .external_lex_state = 3}, - [1328] = {.lex_state = 5, .external_lex_state = 3}, - [1329] = {.lex_state = 5, .external_lex_state = 3}, - [1330] = {.lex_state = 5, .external_lex_state = 3}, - [1331] = {.lex_state = 6, .external_lex_state = 3}, - [1332] = {.lex_state = 5, .external_lex_state = 4}, - [1333] = {.lex_state = 5, .external_lex_state = 4}, - [1334] = {.lex_state = 5, .external_lex_state = 4}, - [1335] = {.lex_state = 5, .external_lex_state = 4}, - [1336] = {.lex_state = 5, .external_lex_state = 4}, - [1337] = {.lex_state = 5, .external_lex_state = 3}, - [1338] = {.lex_state = 5, .external_lex_state = 4}, - [1339] = {.lex_state = 5, .external_lex_state = 4}, - [1340] = {.lex_state = 5, .external_lex_state = 3}, - [1341] = {.lex_state = 5, .external_lex_state = 3}, - [1342] = {.lex_state = 5, .external_lex_state = 4}, - [1343] = {.lex_state = 5, .external_lex_state = 4}, - [1344] = {.lex_state = 5, .external_lex_state = 4}, - [1345] = {.lex_state = 5, .external_lex_state = 4}, - [1346] = {.lex_state = 5, .external_lex_state = 3}, - [1347] = {.lex_state = 5, .external_lex_state = 4}, - [1348] = {.lex_state = 5, .external_lex_state = 4}, - [1349] = {.lex_state = 5, .external_lex_state = 3}, - [1350] = {.lex_state = 5, .external_lex_state = 3}, - [1351] = {.lex_state = 5, .external_lex_state = 3}, - [1352] = {.lex_state = 5, .external_lex_state = 4}, - [1353] = {.lex_state = 5, .external_lex_state = 3}, - [1354] = {.lex_state = 5, .external_lex_state = 3}, - [1355] = {.lex_state = 5, .external_lex_state = 4}, - [1356] = {.lex_state = 5, .external_lex_state = 3}, - [1357] = {.lex_state = 5, .external_lex_state = 3}, - [1358] = {.lex_state = 5, .external_lex_state = 3}, - [1359] = {.lex_state = 5, .external_lex_state = 3}, - [1360] = {.lex_state = 5, .external_lex_state = 3}, - [1361] = {.lex_state = 5, .external_lex_state = 3}, - [1362] = {.lex_state = 5, .external_lex_state = 3}, - [1363] = {.lex_state = 5, .external_lex_state = 4}, - [1364] = {.lex_state = 5, .external_lex_state = 4}, - [1365] = {.lex_state = 5, .external_lex_state = 3}, - [1366] = {.lex_state = 5, .external_lex_state = 4}, - [1367] = {.lex_state = 5, .external_lex_state = 3}, - [1368] = {.lex_state = 6, .external_lex_state = 3}, - [1369] = {.lex_state = 5, .external_lex_state = 3}, - [1370] = {.lex_state = 5, .external_lex_state = 4}, - [1371] = {.lex_state = 5, .external_lex_state = 3}, - [1372] = {.lex_state = 5, .external_lex_state = 3}, - [1373] = {.lex_state = 5, .external_lex_state = 3}, - [1374] = {.lex_state = 5, .external_lex_state = 3}, - [1375] = {.lex_state = 6, .external_lex_state = 3}, - [1376] = {.lex_state = 6, .external_lex_state = 3}, - [1377] = {.lex_state = 5, .external_lex_state = 3}, - [1378] = {.lex_state = 6, .external_lex_state = 3}, - [1379] = {.lex_state = 5, .external_lex_state = 3}, - [1380] = {.lex_state = 5, .external_lex_state = 3}, - [1381] = {.lex_state = 12, .external_lex_state = 2}, - [1382] = {.lex_state = 5, .external_lex_state = 3}, - [1383] = {.lex_state = 12, .external_lex_state = 2}, - [1384] = {.lex_state = 5, .external_lex_state = 4}, - [1385] = {.lex_state = 5, .external_lex_state = 3}, - [1386] = {.lex_state = 5, .external_lex_state = 3}, - [1387] = {.lex_state = 5, .external_lex_state = 4}, - [1388] = {.lex_state = 5, .external_lex_state = 3}, - [1389] = {.lex_state = 6, .external_lex_state = 3}, - [1390] = {.lex_state = 5, .external_lex_state = 3}, - [1391] = {.lex_state = 12, .external_lex_state = 2}, - [1392] = {.lex_state = 5, .external_lex_state = 3}, - [1393] = {.lex_state = 12, .external_lex_state = 2}, - [1394] = {.lex_state = 5, .external_lex_state = 3}, - [1395] = {.lex_state = 5, .external_lex_state = 4}, - [1396] = {.lex_state = 5, .external_lex_state = 4}, - [1397] = {.lex_state = 5, .external_lex_state = 3}, - [1398] = {.lex_state = 5, .external_lex_state = 3}, - [1399] = {.lex_state = 12, .external_lex_state = 2}, - [1400] = {.lex_state = 5, .external_lex_state = 3}, - [1401] = {.lex_state = 12, .external_lex_state = 2}, - [1402] = {.lex_state = 5, .external_lex_state = 3}, - [1403] = {.lex_state = 5, .external_lex_state = 3}, - [1404] = {.lex_state = 5, .external_lex_state = 3}, - [1405] = {.lex_state = 5, .external_lex_state = 3}, - [1406] = {.lex_state = 5, .external_lex_state = 3}, - [1407] = {.lex_state = 5, .external_lex_state = 3}, - [1408] = {.lex_state = 5, .external_lex_state = 3}, - [1409] = {.lex_state = 5, .external_lex_state = 3}, - [1410] = {.lex_state = 5, .external_lex_state = 3}, - [1411] = {.lex_state = 5, .external_lex_state = 3}, - [1412] = {.lex_state = 5, .external_lex_state = 3}, - [1413] = {.lex_state = 5, .external_lex_state = 3}, - [1414] = {.lex_state = 5, .external_lex_state = 3}, - [1415] = {.lex_state = 5, .external_lex_state = 3}, - [1416] = {.lex_state = 5, .external_lex_state = 4}, - [1417] = {.lex_state = 5, .external_lex_state = 3}, - [1418] = {.lex_state = 5, .external_lex_state = 3}, - [1419] = {.lex_state = 12, .external_lex_state = 2}, - [1420] = {.lex_state = 5, .external_lex_state = 3}, - [1421] = {.lex_state = 5, .external_lex_state = 3}, - [1422] = {.lex_state = 5, .external_lex_state = 3}, - [1423] = {.lex_state = 12, .external_lex_state = 2}, - [1424] = {.lex_state = 5, .external_lex_state = 3}, - [1425] = {.lex_state = 5, .external_lex_state = 3}, - [1426] = {.lex_state = 5, .external_lex_state = 3}, - [1427] = {.lex_state = 5, .external_lex_state = 3}, - [1428] = {.lex_state = 5, .external_lex_state = 3}, - [1429] = {.lex_state = 12, .external_lex_state = 2}, - [1430] = {.lex_state = 12, .external_lex_state = 2}, - [1431] = {.lex_state = 12, .external_lex_state = 2}, - [1432] = {.lex_state = 12, .external_lex_state = 2}, - [1433] = {.lex_state = 5, .external_lex_state = 3}, - [1434] = {.lex_state = 12, .external_lex_state = 2}, - [1435] = {.lex_state = 5, .external_lex_state = 3}, - [1436] = {.lex_state = 5, .external_lex_state = 3}, - [1437] = {.lex_state = 12, .external_lex_state = 2}, - [1438] = {.lex_state = 12, .external_lex_state = 2}, - [1439] = {.lex_state = 5, .external_lex_state = 3}, - [1440] = {.lex_state = 5, .external_lex_state = 3}, - [1441] = {.lex_state = 12, .external_lex_state = 2}, - [1442] = {.lex_state = 5, .external_lex_state = 3}, - [1443] = {.lex_state = 12, .external_lex_state = 2}, - [1444] = {.lex_state = 5, .external_lex_state = 3}, - [1445] = {.lex_state = 5, .external_lex_state = 3}, - [1446] = {.lex_state = 5, .external_lex_state = 3}, - [1447] = {.lex_state = 12, .external_lex_state = 2}, - [1448] = {.lex_state = 5, .external_lex_state = 3}, - [1449] = {.lex_state = 5, .external_lex_state = 3}, - [1450] = {.lex_state = 5, .external_lex_state = 3}, - [1451] = {.lex_state = 12, .external_lex_state = 2}, - [1452] = {.lex_state = 5, .external_lex_state = 3}, - [1453] = {.lex_state = 5, .external_lex_state = 3}, - [1454] = {.lex_state = 5, .external_lex_state = 3}, - [1455] = {.lex_state = 5, .external_lex_state = 3}, - [1456] = {.lex_state = 5, .external_lex_state = 3}, - [1457] = {.lex_state = 5, .external_lex_state = 3}, - [1458] = {.lex_state = 5, .external_lex_state = 3}, - [1459] = {.lex_state = 12, .external_lex_state = 2}, - [1460] = {.lex_state = 12, .external_lex_state = 2}, - [1461] = {.lex_state = 12, .external_lex_state = 2}, - [1462] = {.lex_state = 12, .external_lex_state = 2}, - [1463] = {.lex_state = 12, .external_lex_state = 2}, - [1464] = {.lex_state = 5, .external_lex_state = 3}, - [1465] = {.lex_state = 5, .external_lex_state = 3}, - [1466] = {.lex_state = 5, .external_lex_state = 3}, - [1467] = {.lex_state = 5, .external_lex_state = 3}, - [1468] = {.lex_state = 5, .external_lex_state = 3}, - [1469] = {.lex_state = 5, .external_lex_state = 3}, - [1470] = {.lex_state = 5, .external_lex_state = 3}, - [1471] = {.lex_state = 5, .external_lex_state = 3}, - [1472] = {.lex_state = 5, .external_lex_state = 3}, - [1473] = {.lex_state = 5, .external_lex_state = 3}, - [1474] = {.lex_state = 12, .external_lex_state = 2}, - [1475] = {.lex_state = 12, .external_lex_state = 2}, - [1476] = {.lex_state = 12, .external_lex_state = 2}, - [1477] = {.lex_state = 12, .external_lex_state = 2}, - [1478] = {.lex_state = 12, .external_lex_state = 2}, - [1479] = {.lex_state = 12, .external_lex_state = 2}, - [1480] = {.lex_state = 12, .external_lex_state = 2}, - [1481] = {.lex_state = 13, .external_lex_state = 5}, - [1482] = {.lex_state = 12, .external_lex_state = 2}, - [1483] = {.lex_state = 13, .external_lex_state = 5}, - [1484] = {.lex_state = 12, .external_lex_state = 2}, - [1485] = {.lex_state = 12, .external_lex_state = 2}, - [1486] = {.lex_state = 12, .external_lex_state = 2}, - [1487] = {.lex_state = 13, .external_lex_state = 5}, - [1488] = {.lex_state = 13, .external_lex_state = 5}, - [1489] = {.lex_state = 12, .external_lex_state = 2}, - [1490] = {.lex_state = 12, .external_lex_state = 2}, - [1491] = {.lex_state = 12, .external_lex_state = 2}, - [1492] = {.lex_state = 12, .external_lex_state = 2}, - [1493] = {.lex_state = 12, .external_lex_state = 2}, - [1494] = {.lex_state = 12, .external_lex_state = 2}, - [1495] = {.lex_state = 13, .external_lex_state = 5}, - [1496] = {.lex_state = 12, .external_lex_state = 2}, - [1497] = {.lex_state = 96, .external_lex_state = 2}, - [1498] = {.lex_state = 7, .external_lex_state = 3}, - [1499] = {.lex_state = 96, .external_lex_state = 2}, - [1500] = {.lex_state = 96, .external_lex_state = 2}, - [1501] = {.lex_state = 96, .external_lex_state = 2}, - [1502] = {.lex_state = 96, .external_lex_state = 2}, - [1503] = {.lex_state = 96, .external_lex_state = 2}, - [1504] = {.lex_state = 7, .external_lex_state = 3}, - [1505] = {.lex_state = 7, .external_lex_state = 3}, - [1506] = {.lex_state = 13, .external_lex_state = 5}, - [1507] = {.lex_state = 13, .external_lex_state = 5}, - [1508] = {.lex_state = 7, .external_lex_state = 3}, - [1509] = {.lex_state = 7, .external_lex_state = 4}, - [1510] = {.lex_state = 7, .external_lex_state = 4}, - [1511] = {.lex_state = 7, .external_lex_state = 3}, - [1512] = {.lex_state = 7, .external_lex_state = 3}, - [1513] = {.lex_state = 7, .external_lex_state = 3}, - [1514] = {.lex_state = 7, .external_lex_state = 3}, - [1515] = {.lex_state = 7, .external_lex_state = 4}, - [1516] = {.lex_state = 7, .external_lex_state = 3}, - [1517] = {.lex_state = 7, .external_lex_state = 3}, - [1518] = {.lex_state = 7, .external_lex_state = 3}, - [1519] = {.lex_state = 7, .external_lex_state = 3}, - [1520] = {.lex_state = 7, .external_lex_state = 3}, - [1521] = {.lex_state = 7, .external_lex_state = 3}, - [1522] = {.lex_state = 96, .external_lex_state = 2}, - [1523] = {.lex_state = 7, .external_lex_state = 3}, - [1524] = {.lex_state = 7, .external_lex_state = 3}, - [1525] = {.lex_state = 7, .external_lex_state = 3}, - [1526] = {.lex_state = 7, .external_lex_state = 3}, - [1527] = {.lex_state = 7, .external_lex_state = 3}, - [1528] = {.lex_state = 7, .external_lex_state = 3}, - [1529] = {.lex_state = 7, .external_lex_state = 3}, - [1530] = {.lex_state = 7, .external_lex_state = 3}, - [1531] = {.lex_state = 7, .external_lex_state = 3}, - [1532] = {.lex_state = 7, .external_lex_state = 3}, - [1533] = {.lex_state = 7, .external_lex_state = 3}, - [1534] = {.lex_state = 7, .external_lex_state = 3}, - [1535] = {.lex_state = 7, .external_lex_state = 3}, - [1536] = {.lex_state = 7, .external_lex_state = 3}, - [1537] = {.lex_state = 7, .external_lex_state = 3}, - [1538] = {.lex_state = 7, .external_lex_state = 3}, - [1539] = {.lex_state = 7, .external_lex_state = 3}, - [1540] = {.lex_state = 7, .external_lex_state = 3}, - [1541] = {.lex_state = 7, .external_lex_state = 3}, - [1542] = {.lex_state = 7, .external_lex_state = 3}, - [1543] = {.lex_state = 7, .external_lex_state = 3}, - [1544] = {.lex_state = 7, .external_lex_state = 3}, - [1545] = {.lex_state = 7, .external_lex_state = 3}, - [1546] = {.lex_state = 7, .external_lex_state = 3}, - [1547] = {.lex_state = 7, .external_lex_state = 3}, - [1548] = {.lex_state = 7, .external_lex_state = 3}, - [1549] = {.lex_state = 7, .external_lex_state = 3}, - [1550] = {.lex_state = 7, .external_lex_state = 3}, - [1551] = {.lex_state = 7, .external_lex_state = 3}, - [1552] = {.lex_state = 7, .external_lex_state = 3}, - [1553] = {.lex_state = 7, .external_lex_state = 3}, - [1554] = {.lex_state = 7, .external_lex_state = 3}, - [1555] = {.lex_state = 7, .external_lex_state = 3}, - [1556] = {.lex_state = 7, .external_lex_state = 3}, - [1557] = {.lex_state = 7, .external_lex_state = 3}, - [1558] = {.lex_state = 7, .external_lex_state = 3}, - [1559] = {.lex_state = 7, .external_lex_state = 3}, - [1560] = {.lex_state = 7, .external_lex_state = 3}, - [1561] = {.lex_state = 7, .external_lex_state = 3}, - [1562] = {.lex_state = 7, .external_lex_state = 3}, - [1563] = {.lex_state = 7, .external_lex_state = 3}, - [1564] = {.lex_state = 7, .external_lex_state = 3}, - [1565] = {.lex_state = 7, .external_lex_state = 3}, - [1566] = {.lex_state = 7, .external_lex_state = 3}, - [1567] = {.lex_state = 7, .external_lex_state = 3}, - [1568] = {.lex_state = 7, .external_lex_state = 3}, - [1569] = {.lex_state = 7, .external_lex_state = 3}, - [1570] = {.lex_state = 7, .external_lex_state = 3}, - [1571] = {.lex_state = 7, .external_lex_state = 3}, - [1572] = {.lex_state = 7, .external_lex_state = 3}, - [1573] = {.lex_state = 7, .external_lex_state = 3}, - [1574] = {.lex_state = 7, .external_lex_state = 3}, - [1575] = {.lex_state = 7, .external_lex_state = 3}, - [1576] = {.lex_state = 7, .external_lex_state = 3}, - [1577] = {.lex_state = 7, .external_lex_state = 3}, - [1578] = {.lex_state = 7, .external_lex_state = 3}, - [1579] = {.lex_state = 7, .external_lex_state = 4}, - [1580] = {.lex_state = 7, .external_lex_state = 3}, - [1581] = {.lex_state = 7, .external_lex_state = 3}, - [1582] = {.lex_state = 7, .external_lex_state = 3}, - [1583] = {.lex_state = 7, .external_lex_state = 3}, - [1584] = {.lex_state = 7, .external_lex_state = 3}, - [1585] = {.lex_state = 7, .external_lex_state = 3}, - [1586] = {.lex_state = 7, .external_lex_state = 3}, - [1587] = {.lex_state = 7, .external_lex_state = 3}, - [1588] = {.lex_state = 7, .external_lex_state = 3}, - [1589] = {.lex_state = 7, .external_lex_state = 3}, - [1590] = {.lex_state = 7, .external_lex_state = 3}, - [1591] = {.lex_state = 7, .external_lex_state = 3}, - [1592] = {.lex_state = 7, .external_lex_state = 3}, - [1593] = {.lex_state = 7, .external_lex_state = 3}, - [1594] = {.lex_state = 7, .external_lex_state = 3}, - [1595] = {.lex_state = 7, .external_lex_state = 3}, - [1596] = {.lex_state = 7, .external_lex_state = 3}, - [1597] = {.lex_state = 7, .external_lex_state = 3}, - [1598] = {.lex_state = 7, .external_lex_state = 3}, - [1599] = {.lex_state = 7, .external_lex_state = 3}, - [1600] = {.lex_state = 7, .external_lex_state = 3}, - [1601] = {.lex_state = 7, .external_lex_state = 3}, - [1602] = {.lex_state = 7, .external_lex_state = 3}, - [1603] = {.lex_state = 7, .external_lex_state = 3}, - [1604] = {.lex_state = 7, .external_lex_state = 3}, - [1605] = {.lex_state = 7, .external_lex_state = 3}, - [1606] = {.lex_state = 7, .external_lex_state = 3}, - [1607] = {.lex_state = 7, .external_lex_state = 3}, - [1608] = {.lex_state = 7, .external_lex_state = 4}, - [1609] = {.lex_state = 7, .external_lex_state = 4}, - [1610] = {.lex_state = 7, .external_lex_state = 3}, - [1611] = {.lex_state = 7, .external_lex_state = 4}, - [1612] = {.lex_state = 7, .external_lex_state = 3}, - [1613] = {.lex_state = 7, .external_lex_state = 3}, - [1614] = {.lex_state = 7, .external_lex_state = 3}, - [1615] = {.lex_state = 7, .external_lex_state = 3}, - [1616] = {.lex_state = 7, .external_lex_state = 3}, - [1617] = {.lex_state = 7, .external_lex_state = 4}, - [1618] = {.lex_state = 7, .external_lex_state = 3}, - [1619] = {.lex_state = 7, .external_lex_state = 3}, - [1620] = {.lex_state = 7, .external_lex_state = 3}, - [1621] = {.lex_state = 7, .external_lex_state = 3}, - [1622] = {.lex_state = 7, .external_lex_state = 3}, - [1623] = {.lex_state = 7, .external_lex_state = 3}, - [1624] = {.lex_state = 7, .external_lex_state = 3}, - [1625] = {.lex_state = 7, .external_lex_state = 3}, - [1626] = {.lex_state = 7, .external_lex_state = 3}, - [1627] = {.lex_state = 7, .external_lex_state = 3}, - [1628] = {.lex_state = 7, .external_lex_state = 3}, - [1629] = {.lex_state = 7, .external_lex_state = 3}, - [1630] = {.lex_state = 7, .external_lex_state = 3}, - [1631] = {.lex_state = 7, .external_lex_state = 3}, - [1632] = {.lex_state = 7, .external_lex_state = 3}, - [1633] = {.lex_state = 7, .external_lex_state = 3}, - [1634] = {.lex_state = 7, .external_lex_state = 3}, - [1635] = {.lex_state = 7, .external_lex_state = 3}, - [1636] = {.lex_state = 7, .external_lex_state = 3}, - [1637] = {.lex_state = 7, .external_lex_state = 3}, - [1638] = {.lex_state = 7, .external_lex_state = 3}, - [1639] = {.lex_state = 7, .external_lex_state = 3}, - [1640] = {.lex_state = 7, .external_lex_state = 3}, - [1641] = {.lex_state = 7, .external_lex_state = 3}, - [1642] = {.lex_state = 7, .external_lex_state = 3}, - [1643] = {.lex_state = 7, .external_lex_state = 3}, - [1644] = {.lex_state = 7, .external_lex_state = 3}, - [1645] = {.lex_state = 7, .external_lex_state = 3}, - [1646] = {.lex_state = 7, .external_lex_state = 3}, - [1647] = {.lex_state = 7, .external_lex_state = 3}, - [1648] = {.lex_state = 7, .external_lex_state = 3}, - [1649] = {.lex_state = 7, .external_lex_state = 3}, - [1650] = {.lex_state = 7, .external_lex_state = 3}, - [1651] = {.lex_state = 7, .external_lex_state = 3}, - [1652] = {.lex_state = 7, .external_lex_state = 3}, - [1653] = {.lex_state = 7, .external_lex_state = 3}, - [1654] = {.lex_state = 7, .external_lex_state = 3}, - [1655] = {.lex_state = 7, .external_lex_state = 3}, - [1656] = {.lex_state = 7, .external_lex_state = 3}, - [1657] = {.lex_state = 7, .external_lex_state = 3}, - [1658] = {.lex_state = 7, .external_lex_state = 3}, - [1659] = {.lex_state = 7, .external_lex_state = 3}, - [1660] = {.lex_state = 7, .external_lex_state = 3}, - [1661] = {.lex_state = 7, .external_lex_state = 3}, - [1662] = {.lex_state = 7, .external_lex_state = 3}, - [1663] = {.lex_state = 7, .external_lex_state = 3}, - [1664] = {.lex_state = 7, .external_lex_state = 3}, - [1665] = {.lex_state = 7, .external_lex_state = 3}, - [1666] = {.lex_state = 7, .external_lex_state = 3}, - [1667] = {.lex_state = 7, .external_lex_state = 3}, - [1668] = {.lex_state = 7, .external_lex_state = 3}, - [1669] = {.lex_state = 7, .external_lex_state = 3}, - [1670] = {.lex_state = 7, .external_lex_state = 3}, - [1671] = {.lex_state = 7, .external_lex_state = 3}, - [1672] = {.lex_state = 7, .external_lex_state = 3}, - [1673] = {.lex_state = 7, .external_lex_state = 3}, - [1674] = {.lex_state = 7, .external_lex_state = 3}, - [1675] = {.lex_state = 7, .external_lex_state = 3}, - [1676] = {.lex_state = 7, .external_lex_state = 3}, - [1677] = {.lex_state = 7, .external_lex_state = 3}, - [1678] = {.lex_state = 7, .external_lex_state = 3}, - [1679] = {.lex_state = 7, .external_lex_state = 3}, - [1680] = {.lex_state = 7, .external_lex_state = 3}, - [1681] = {.lex_state = 7, .external_lex_state = 3}, - [1682] = {.lex_state = 7, .external_lex_state = 3}, - [1683] = {.lex_state = 7, .external_lex_state = 3}, - [1684] = {.lex_state = 7, .external_lex_state = 3}, - [1685] = {.lex_state = 7, .external_lex_state = 3}, - [1686] = {.lex_state = 7, .external_lex_state = 3}, - [1687] = {.lex_state = 7, .external_lex_state = 3}, - [1688] = {.lex_state = 7, .external_lex_state = 3}, - [1689] = {.lex_state = 12, .external_lex_state = 5}, - [1690] = {.lex_state = 7, .external_lex_state = 3}, - [1691] = {.lex_state = 7, .external_lex_state = 3}, - [1692] = {.lex_state = 7, .external_lex_state = 3}, - [1693] = {.lex_state = 7, .external_lex_state = 3}, - [1694] = {.lex_state = 7, .external_lex_state = 3}, - [1695] = {.lex_state = 7, .external_lex_state = 3}, - [1696] = {.lex_state = 7, .external_lex_state = 3}, - [1697] = {.lex_state = 7, .external_lex_state = 3}, - [1698] = {.lex_state = 7, .external_lex_state = 3}, - [1699] = {.lex_state = 7, .external_lex_state = 3}, - [1700] = {.lex_state = 7, .external_lex_state = 3}, - [1701] = {.lex_state = 7, .external_lex_state = 3}, - [1702] = {.lex_state = 7, .external_lex_state = 3}, - [1703] = {.lex_state = 7, .external_lex_state = 3}, - [1704] = {.lex_state = 7, .external_lex_state = 3}, - [1705] = {.lex_state = 7, .external_lex_state = 3}, - [1706] = {.lex_state = 7, .external_lex_state = 3}, - [1707] = {.lex_state = 7, .external_lex_state = 3}, - [1708] = {.lex_state = 7, .external_lex_state = 3}, - [1709] = {.lex_state = 7, .external_lex_state = 4}, - [1710] = {.lex_state = 7, .external_lex_state = 3}, - [1711] = {.lex_state = 7, .external_lex_state = 4}, - [1712] = {.lex_state = 7, .external_lex_state = 4}, - [1713] = {.lex_state = 7, .external_lex_state = 3}, - [1714] = {.lex_state = 7, .external_lex_state = 3}, - [1715] = {.lex_state = 7, .external_lex_state = 3}, - [1716] = {.lex_state = 7, .external_lex_state = 3}, - [1717] = {.lex_state = 7, .external_lex_state = 3}, - [1718] = {.lex_state = 7, .external_lex_state = 3}, - [1719] = {.lex_state = 12, .external_lex_state = 5}, - [1720] = {.lex_state = 12, .external_lex_state = 5}, - [1721] = {.lex_state = 12, .external_lex_state = 5}, - [1722] = {.lex_state = 12, .external_lex_state = 5}, - [1723] = {.lex_state = 7, .external_lex_state = 3}, - [1724] = {.lex_state = 12, .external_lex_state = 5}, - [1725] = {.lex_state = 13, .external_lex_state = 5}, - [1726] = {.lex_state = 7, .external_lex_state = 4}, - [1727] = {.lex_state = 7, .external_lex_state = 3}, - [1728] = {.lex_state = 7, .external_lex_state = 4}, - [1729] = {.lex_state = 12, .external_lex_state = 5}, - [1730] = {.lex_state = 7, .external_lex_state = 4}, - [1731] = {.lex_state = 7, .external_lex_state = 3}, - [1732] = {.lex_state = 7, .external_lex_state = 4}, - [1733] = {.lex_state = 12, .external_lex_state = 5}, - [1734] = {.lex_state = 7, .external_lex_state = 4}, - [1735] = {.lex_state = 7, .external_lex_state = 4}, - [1736] = {.lex_state = 12, .external_lex_state = 5}, - [1737] = {.lex_state = 7, .external_lex_state = 4}, - [1738] = {.lex_state = 12, .external_lex_state = 5}, - [1739] = {.lex_state = 7, .external_lex_state = 4}, - [1740] = {.lex_state = 12, .external_lex_state = 5}, - [1741] = {.lex_state = 7, .external_lex_state = 3}, - [1742] = {.lex_state = 7, .external_lex_state = 3}, - [1743] = {.lex_state = 7, .external_lex_state = 3}, - [1744] = {.lex_state = 7, .external_lex_state = 3}, - [1745] = {.lex_state = 7, .external_lex_state = 3}, - [1746] = {.lex_state = 7, .external_lex_state = 3}, - [1747] = {.lex_state = 7, .external_lex_state = 3}, - [1748] = {.lex_state = 7, .external_lex_state = 3}, - [1749] = {.lex_state = 7, .external_lex_state = 3}, - [1750] = {.lex_state = 7, .external_lex_state = 3}, - [1751] = {.lex_state = 7, .external_lex_state = 3}, - [1752] = {.lex_state = 7, .external_lex_state = 4}, - [1753] = {.lex_state = 7, .external_lex_state = 3}, - [1754] = {.lex_state = 7, .external_lex_state = 3}, - [1755] = {.lex_state = 7, .external_lex_state = 3}, - [1756] = {.lex_state = 7, .external_lex_state = 3}, - [1757] = {.lex_state = 7, .external_lex_state = 3}, - [1758] = {.lex_state = 7, .external_lex_state = 3}, - [1759] = {.lex_state = 7, .external_lex_state = 3}, - [1760] = {.lex_state = 7, .external_lex_state = 3}, - [1761] = {.lex_state = 7, .external_lex_state = 3}, - [1762] = {.lex_state = 7, .external_lex_state = 3}, - [1763] = {.lex_state = 7, .external_lex_state = 3}, - [1764] = {.lex_state = 7, .external_lex_state = 3}, - [1765] = {.lex_state = 7, .external_lex_state = 3}, - [1766] = {.lex_state = 12, .external_lex_state = 5}, - [1767] = {.lex_state = 7, .external_lex_state = 3}, - [1768] = {.lex_state = 7, .external_lex_state = 4}, - [1769] = {.lex_state = 12, .external_lex_state = 5}, - [1770] = {.lex_state = 7, .external_lex_state = 4}, - [1771] = {.lex_state = 7, .external_lex_state = 3}, - [1772] = {.lex_state = 12, .external_lex_state = 5}, - [1773] = {.lex_state = 7, .external_lex_state = 3}, - [1774] = {.lex_state = 12, .external_lex_state = 5}, - [1775] = {.lex_state = 12, .external_lex_state = 5}, - [1776] = {.lex_state = 7, .external_lex_state = 4}, - [1777] = {.lex_state = 12, .external_lex_state = 5}, - [1778] = {.lex_state = 7, .external_lex_state = 3}, - [1779] = {.lex_state = 7, .external_lex_state = 3}, - [1780] = {.lex_state = 7, .external_lex_state = 3}, - [1781] = {.lex_state = 7, .external_lex_state = 3}, - [1782] = {.lex_state = 7, .external_lex_state = 4}, - [1783] = {.lex_state = 7, .external_lex_state = 4}, - [1784] = {.lex_state = 7, .external_lex_state = 4}, - [1785] = {.lex_state = 12, .external_lex_state = 5}, - [1786] = {.lex_state = 12, .external_lex_state = 5}, - [1787] = {.lex_state = 7, .external_lex_state = 4}, - [1788] = {.lex_state = 7, .external_lex_state = 4}, - [1789] = {.lex_state = 7, .external_lex_state = 3}, - [1790] = {.lex_state = 7, .external_lex_state = 4}, - [1791] = {.lex_state = 12, .external_lex_state = 5}, - [1792] = {.lex_state = 7, .external_lex_state = 4}, - [1793] = {.lex_state = 7, .external_lex_state = 3}, - [1794] = {.lex_state = 7, .external_lex_state = 4}, - [1795] = {.lex_state = 7, .external_lex_state = 3}, - [1796] = {.lex_state = 7, .external_lex_state = 4}, - [1797] = {.lex_state = 7, .external_lex_state = 4}, - [1798] = {.lex_state = 7, .external_lex_state = 3}, - [1799] = {.lex_state = 7, .external_lex_state = 3}, - [1800] = {.lex_state = 7, .external_lex_state = 3}, - [1801] = {.lex_state = 7, .external_lex_state = 4}, - [1802] = {.lex_state = 7, .external_lex_state = 4}, - [1803] = {.lex_state = 7, .external_lex_state = 4}, - [1804] = {.lex_state = 7, .external_lex_state = 4}, - [1805] = {.lex_state = 7, .external_lex_state = 4}, - [1806] = {.lex_state = 7, .external_lex_state = 4}, - [1807] = {.lex_state = 7, .external_lex_state = 4}, - [1808] = {.lex_state = 7, .external_lex_state = 4}, - [1809] = {.lex_state = 7, .external_lex_state = 4}, - [1810] = {.lex_state = 7, .external_lex_state = 4}, - [1811] = {.lex_state = 7, .external_lex_state = 4}, - [1812] = {.lex_state = 7, .external_lex_state = 4}, - [1813] = {.lex_state = 7, .external_lex_state = 4}, - [1814] = {.lex_state = 7, .external_lex_state = 4}, - [1815] = {.lex_state = 7, .external_lex_state = 4}, - [1816] = {.lex_state = 7, .external_lex_state = 4}, - [1817] = {.lex_state = 7, .external_lex_state = 3}, - [1818] = {.lex_state = 7, .external_lex_state = 4}, - [1819] = {.lex_state = 7, .external_lex_state = 4}, - [1820] = {.lex_state = 7, .external_lex_state = 4}, - [1821] = {.lex_state = 7, .external_lex_state = 4}, - [1822] = {.lex_state = 7, .external_lex_state = 4}, - [1823] = {.lex_state = 7, .external_lex_state = 4}, - [1824] = {.lex_state = 8, .external_lex_state = 3}, - [1825] = {.lex_state = 12, .external_lex_state = 5}, - [1826] = {.lex_state = 7, .external_lex_state = 4}, - [1827] = {.lex_state = 7, .external_lex_state = 3}, - [1828] = {.lex_state = 7, .external_lex_state = 4}, - [1829] = {.lex_state = 7, .external_lex_state = 4}, - [1830] = {.lex_state = 7, .external_lex_state = 4}, - [1831] = {.lex_state = 12, .external_lex_state = 5}, - [1832] = {.lex_state = 7, .external_lex_state = 4}, - [1833] = {.lex_state = 7, .external_lex_state = 4}, - [1834] = {.lex_state = 7, .external_lex_state = 3}, - [1835] = {.lex_state = 12, .external_lex_state = 5}, - [1836] = {.lex_state = 7, .external_lex_state = 4}, - [1837] = {.lex_state = 7, .external_lex_state = 4}, - [1838] = {.lex_state = 7, .external_lex_state = 4}, - [1839] = {.lex_state = 7, .external_lex_state = 4}, - [1840] = {.lex_state = 7, .external_lex_state = 4}, - [1841] = {.lex_state = 7, .external_lex_state = 4}, - [1842] = {.lex_state = 7, .external_lex_state = 4}, - [1843] = {.lex_state = 7, .external_lex_state = 4}, - [1844] = {.lex_state = 7, .external_lex_state = 4}, - [1845] = {.lex_state = 7, .external_lex_state = 4}, - [1846] = {.lex_state = 7, .external_lex_state = 4}, - [1847] = {.lex_state = 7, .external_lex_state = 4}, - [1848] = {.lex_state = 7, .external_lex_state = 4}, - [1849] = {.lex_state = 7, .external_lex_state = 4}, - [1850] = {.lex_state = 7, .external_lex_state = 4}, - [1851] = {.lex_state = 7, .external_lex_state = 4}, - [1852] = {.lex_state = 7, .external_lex_state = 4}, - [1853] = {.lex_state = 7, .external_lex_state = 4}, - [1854] = {.lex_state = 7, .external_lex_state = 4}, - [1855] = {.lex_state = 7, .external_lex_state = 4}, - [1856] = {.lex_state = 7, .external_lex_state = 4}, - [1857] = {.lex_state = 7, .external_lex_state = 4}, - [1858] = {.lex_state = 7, .external_lex_state = 4}, - [1859] = {.lex_state = 7, .external_lex_state = 4}, - [1860] = {.lex_state = 7, .external_lex_state = 4}, - [1861] = {.lex_state = 7, .external_lex_state = 4}, - [1862] = {.lex_state = 7, .external_lex_state = 4}, - [1863] = {.lex_state = 7, .external_lex_state = 4}, - [1864] = {.lex_state = 7, .external_lex_state = 4}, - [1865] = {.lex_state = 7, .external_lex_state = 4}, - [1866] = {.lex_state = 7, .external_lex_state = 3}, - [1867] = {.lex_state = 7, .external_lex_state = 4}, - [1868] = {.lex_state = 7, .external_lex_state = 3}, - [1869] = {.lex_state = 7, .external_lex_state = 4}, - [1870] = {.lex_state = 7, .external_lex_state = 4}, - [1871] = {.lex_state = 12, .external_lex_state = 5}, - [1872] = {.lex_state = 12, .external_lex_state = 5}, - [1873] = {.lex_state = 7, .external_lex_state = 4}, - [1874] = {.lex_state = 7, .external_lex_state = 4}, - [1875] = {.lex_state = 7, .external_lex_state = 4}, - [1876] = {.lex_state = 7, .external_lex_state = 4}, - [1877] = {.lex_state = 7, .external_lex_state = 4}, - [1878] = {.lex_state = 7, .external_lex_state = 4}, - [1879] = {.lex_state = 12, .external_lex_state = 2}, - [1880] = {.lex_state = 7, .external_lex_state = 4}, - [1881] = {.lex_state = 7, .external_lex_state = 4}, - [1882] = {.lex_state = 7, .external_lex_state = 4}, - [1883] = {.lex_state = 7, .external_lex_state = 3}, - [1884] = {.lex_state = 7, .external_lex_state = 3}, - [1885] = {.lex_state = 7, .external_lex_state = 4}, - [1886] = {.lex_state = 7, .external_lex_state = 4}, - [1887] = {.lex_state = 7, .external_lex_state = 3}, - [1888] = {.lex_state = 7, .external_lex_state = 3}, - [1889] = {.lex_state = 7, .external_lex_state = 3}, - [1890] = {.lex_state = 7, .external_lex_state = 3}, - [1891] = {.lex_state = 12, .external_lex_state = 2}, - [1892] = {.lex_state = 7, .external_lex_state = 3}, - [1893] = {.lex_state = 7, .external_lex_state = 4}, - [1894] = {.lex_state = 7, .external_lex_state = 3}, - [1895] = {.lex_state = 7, .external_lex_state = 3}, - [1896] = {.lex_state = 7, .external_lex_state = 3}, - [1897] = {.lex_state = 7, .external_lex_state = 4}, - [1898] = {.lex_state = 7, .external_lex_state = 3}, - [1899] = {.lex_state = 7, .external_lex_state = 3}, - [1900] = {.lex_state = 7, .external_lex_state = 3}, - [1901] = {.lex_state = 7, .external_lex_state = 3}, - [1902] = {.lex_state = 7, .external_lex_state = 3}, - [1903] = {.lex_state = 7, .external_lex_state = 3}, - [1904] = {.lex_state = 7, .external_lex_state = 3}, - [1905] = {.lex_state = 7, .external_lex_state = 4}, - [1906] = {.lex_state = 12, .external_lex_state = 5}, - [1907] = {.lex_state = 7, .external_lex_state = 3}, - [1908] = {.lex_state = 7, .external_lex_state = 3}, - [1909] = {.lex_state = 7, .external_lex_state = 3}, - [1910] = {.lex_state = 7, .external_lex_state = 4}, - [1911] = {.lex_state = 7, .external_lex_state = 4}, - [1912] = {.lex_state = 7, .external_lex_state = 4}, - [1913] = {.lex_state = 7, .external_lex_state = 4}, - [1914] = {.lex_state = 7, .external_lex_state = 3}, - [1915] = {.lex_state = 7, .external_lex_state = 3}, - [1916] = {.lex_state = 7, .external_lex_state = 4}, - [1917] = {.lex_state = 12, .external_lex_state = 2}, - [1918] = {.lex_state = 7, .external_lex_state = 4}, - [1919] = {.lex_state = 7, .external_lex_state = 3}, - [1920] = {.lex_state = 7, .external_lex_state = 3}, - [1921] = {.lex_state = 7, .external_lex_state = 4}, - [1922] = {.lex_state = 7, .external_lex_state = 4}, - [1923] = {.lex_state = 7, .external_lex_state = 4}, - [1924] = {.lex_state = 7, .external_lex_state = 3}, - [1925] = {.lex_state = 7, .external_lex_state = 4}, - [1926] = {.lex_state = 7, .external_lex_state = 4}, - [1927] = {.lex_state = 7, .external_lex_state = 3}, - [1928] = {.lex_state = 12, .external_lex_state = 5}, - [1929] = {.lex_state = 7, .external_lex_state = 4}, - [1930] = {.lex_state = 7, .external_lex_state = 3}, - [1931] = {.lex_state = 7, .external_lex_state = 4}, - [1932] = {.lex_state = 12, .external_lex_state = 5}, - [1933] = {.lex_state = 7, .external_lex_state = 3}, - [1934] = {.lex_state = 7, .external_lex_state = 3}, - [1935] = {.lex_state = 7, .external_lex_state = 4}, - [1936] = {.lex_state = 7, .external_lex_state = 3}, - [1937] = {.lex_state = 7, .external_lex_state = 4}, - [1938] = {.lex_state = 7, .external_lex_state = 4}, - [1939] = {.lex_state = 7, .external_lex_state = 4}, - [1940] = {.lex_state = 7, .external_lex_state = 4}, - [1941] = {.lex_state = 7, .external_lex_state = 4}, - [1942] = {.lex_state = 7, .external_lex_state = 4}, - [1943] = {.lex_state = 7, .external_lex_state = 4}, - [1944] = {.lex_state = 7, .external_lex_state = 4}, - [1945] = {.lex_state = 7, .external_lex_state = 4}, - [1946] = {.lex_state = 7, .external_lex_state = 4}, - [1947] = {.lex_state = 7, .external_lex_state = 4}, - [1948] = {.lex_state = 12, .external_lex_state = 2}, - [1949] = {.lex_state = 7, .external_lex_state = 3}, - [1950] = {.lex_state = 7, .external_lex_state = 3}, - [1951] = {.lex_state = 7, .external_lex_state = 4}, - [1952] = {.lex_state = 7, .external_lex_state = 4}, - [1953] = {.lex_state = 12, .external_lex_state = 2}, - [1954] = {.lex_state = 7, .external_lex_state = 3}, - [1955] = {.lex_state = 7, .external_lex_state = 3}, - [1956] = {.lex_state = 7, .external_lex_state = 4}, - [1957] = {.lex_state = 7, .external_lex_state = 4}, - [1958] = {.lex_state = 7, .external_lex_state = 3}, - [1959] = {.lex_state = 7, .external_lex_state = 4}, - [1960] = {.lex_state = 7, .external_lex_state = 3}, - [1961] = {.lex_state = 7, .external_lex_state = 4}, - [1962] = {.lex_state = 7, .external_lex_state = 4}, - [1963] = {.lex_state = 7, .external_lex_state = 4}, - [1964] = {.lex_state = 96, .external_lex_state = 2}, - [1965] = {.lex_state = 7, .external_lex_state = 4}, - [1966] = {.lex_state = 7, .external_lex_state = 4}, - [1967] = {.lex_state = 7, .external_lex_state = 4}, - [1968] = {.lex_state = 7, .external_lex_state = 4}, - [1969] = {.lex_state = 7, .external_lex_state = 4}, - [1970] = {.lex_state = 12, .external_lex_state = 5}, - [1971] = {.lex_state = 12, .external_lex_state = 5}, - [1972] = {.lex_state = 7, .external_lex_state = 4}, - [1973] = {.lex_state = 7, .external_lex_state = 4}, - [1974] = {.lex_state = 7, .external_lex_state = 4}, - [1975] = {.lex_state = 7, .external_lex_state = 3}, - [1976] = {.lex_state = 7, .external_lex_state = 4}, - [1977] = {.lex_state = 12, .external_lex_state = 5}, - [1978] = {.lex_state = 7, .external_lex_state = 4}, - [1979] = {.lex_state = 7, .external_lex_state = 4}, - [1980] = {.lex_state = 7, .external_lex_state = 4}, - [1981] = {.lex_state = 7, .external_lex_state = 4}, - [1982] = {.lex_state = 7, .external_lex_state = 4}, - [1983] = {.lex_state = 7, .external_lex_state = 4}, - [1984] = {.lex_state = 7, .external_lex_state = 4}, - [1985] = {.lex_state = 7, .external_lex_state = 4}, - [1986] = {.lex_state = 7, .external_lex_state = 4}, - [1987] = {.lex_state = 7, .external_lex_state = 4}, - [1988] = {.lex_state = 7, .external_lex_state = 4}, - [1989] = {.lex_state = 7, .external_lex_state = 4}, - [1990] = {.lex_state = 7, .external_lex_state = 4}, - [1991] = {.lex_state = 7, .external_lex_state = 4}, - [1992] = {.lex_state = 7, .external_lex_state = 4}, - [1993] = {.lex_state = 7, .external_lex_state = 4}, - [1994] = {.lex_state = 7, .external_lex_state = 4}, - [1995] = {.lex_state = 12, .external_lex_state = 5}, - [1996] = {.lex_state = 7, .external_lex_state = 4}, - [1997] = {.lex_state = 7, .external_lex_state = 4}, - [1998] = {.lex_state = 7, .external_lex_state = 4}, - [1999] = {.lex_state = 7, .external_lex_state = 4}, - [2000] = {.lex_state = 7, .external_lex_state = 4}, - [2001] = {.lex_state = 7, .external_lex_state = 4}, - [2002] = {.lex_state = 7, .external_lex_state = 4}, - [2003] = {.lex_state = 7, .external_lex_state = 3}, - [2004] = {.lex_state = 7, .external_lex_state = 3}, - [2005] = {.lex_state = 7, .external_lex_state = 4}, - [2006] = {.lex_state = 7, .external_lex_state = 4}, - [2007] = {.lex_state = 7, .external_lex_state = 4}, - [2008] = {.lex_state = 7, .external_lex_state = 4}, - [2009] = {.lex_state = 7, .external_lex_state = 4}, - [2010] = {.lex_state = 7, .external_lex_state = 4}, - [2011] = {.lex_state = 7, .external_lex_state = 4}, - [2012] = {.lex_state = 7, .external_lex_state = 4}, - [2013] = {.lex_state = 7, .external_lex_state = 4}, - [2014] = {.lex_state = 7, .external_lex_state = 4}, - [2015] = {.lex_state = 7, .external_lex_state = 4}, - [2016] = {.lex_state = 12, .external_lex_state = 5}, - [2017] = {.lex_state = 7, .external_lex_state = 4}, - [2018] = {.lex_state = 7, .external_lex_state = 4}, - [2019] = {.lex_state = 7, .external_lex_state = 4}, - [2020] = {.lex_state = 7, .external_lex_state = 4}, - [2021] = {.lex_state = 7, .external_lex_state = 3}, - [2022] = {.lex_state = 7, .external_lex_state = 4}, - [2023] = {.lex_state = 7, .external_lex_state = 4}, - [2024] = {.lex_state = 7, .external_lex_state = 4}, - [2025] = {.lex_state = 7, .external_lex_state = 4}, - [2026] = {.lex_state = 7, .external_lex_state = 3}, - [2027] = {.lex_state = 7, .external_lex_state = 4}, - [2028] = {.lex_state = 7, .external_lex_state = 3}, - [2029] = {.lex_state = 7, .external_lex_state = 4}, - [2030] = {.lex_state = 7, .external_lex_state = 4}, - [2031] = {.lex_state = 7, .external_lex_state = 4}, - [2032] = {.lex_state = 7, .external_lex_state = 4}, - [2033] = {.lex_state = 7, .external_lex_state = 4}, - [2034] = {.lex_state = 7, .external_lex_state = 4}, - [2035] = {.lex_state = 7, .external_lex_state = 4}, - [2036] = {.lex_state = 7, .external_lex_state = 4}, - [2037] = {.lex_state = 7, .external_lex_state = 4}, - [2038] = {.lex_state = 96, .external_lex_state = 2}, - [2039] = {.lex_state = 7, .external_lex_state = 4}, - [2040] = {.lex_state = 7, .external_lex_state = 3}, - [2041] = {.lex_state = 7, .external_lex_state = 4}, - [2042] = {.lex_state = 7, .external_lex_state = 4}, - [2043] = {.lex_state = 7, .external_lex_state = 4}, - [2044] = {.lex_state = 7, .external_lex_state = 4}, - [2045] = {.lex_state = 7, .external_lex_state = 3}, - [2046] = {.lex_state = 7, .external_lex_state = 4}, - [2047] = {.lex_state = 7, .external_lex_state = 4}, - [2048] = {.lex_state = 7, .external_lex_state = 4}, - [2049] = {.lex_state = 7, .external_lex_state = 4}, - [2050] = {.lex_state = 7, .external_lex_state = 4}, - [2051] = {.lex_state = 7, .external_lex_state = 4}, - [2052] = {.lex_state = 7, .external_lex_state = 4}, - [2053] = {.lex_state = 7, .external_lex_state = 4}, - [2054] = {.lex_state = 7, .external_lex_state = 4}, - [2055] = {.lex_state = 7, .external_lex_state = 4}, - [2056] = {.lex_state = 7, .external_lex_state = 4}, - [2057] = {.lex_state = 7, .external_lex_state = 4}, - [2058] = {.lex_state = 7, .external_lex_state = 4}, - [2059] = {.lex_state = 7, .external_lex_state = 4}, - [2060] = {.lex_state = 7, .external_lex_state = 4}, - [2061] = {.lex_state = 7, .external_lex_state = 4}, - [2062] = {.lex_state = 7, .external_lex_state = 4}, - [2063] = {.lex_state = 7, .external_lex_state = 4}, - [2064] = {.lex_state = 7, .external_lex_state = 4}, - [2065] = {.lex_state = 7, .external_lex_state = 4}, - [2066] = {.lex_state = 7, .external_lex_state = 4}, - [2067] = {.lex_state = 12, .external_lex_state = 5}, - [2068] = {.lex_state = 12, .external_lex_state = 5}, - [2069] = {.lex_state = 7, .external_lex_state = 4}, - [2070] = {.lex_state = 12, .external_lex_state = 5}, - [2071] = {.lex_state = 7, .external_lex_state = 4}, - [2072] = {.lex_state = 12, .external_lex_state = 5}, - [2073] = {.lex_state = 12, .external_lex_state = 5}, - [2074] = {.lex_state = 7, .external_lex_state = 4}, - [2075] = {.lex_state = 7, .external_lex_state = 4}, - [2076] = {.lex_state = 7, .external_lex_state = 4}, - [2077] = {.lex_state = 12, .external_lex_state = 2}, - [2078] = {.lex_state = 7, .external_lex_state = 4}, - [2079] = {.lex_state = 7, .external_lex_state = 4}, - [2080] = {.lex_state = 7, .external_lex_state = 4}, - [2081] = {.lex_state = 7, .external_lex_state = 4}, - [2082] = {.lex_state = 7, .external_lex_state = 3}, - [2083] = {.lex_state = 7, .external_lex_state = 3}, - [2084] = {.lex_state = 7, .external_lex_state = 3}, - [2085] = {.lex_state = 7, .external_lex_state = 3}, - [2086] = {.lex_state = 7, .external_lex_state = 3}, - [2087] = {.lex_state = 7, .external_lex_state = 3}, - [2088] = {.lex_state = 7, .external_lex_state = 3}, - [2089] = {.lex_state = 7, .external_lex_state = 3}, - [2090] = {.lex_state = 7, .external_lex_state = 3}, - [2091] = {.lex_state = 7, .external_lex_state = 3}, - [2092] = {.lex_state = 7, .external_lex_state = 3}, - [2093] = {.lex_state = 7, .external_lex_state = 3}, - [2094] = {.lex_state = 7, .external_lex_state = 3}, - [2095] = {.lex_state = 7, .external_lex_state = 3}, - [2096] = {.lex_state = 7, .external_lex_state = 3}, - [2097] = {.lex_state = 7, .external_lex_state = 3}, - [2098] = {.lex_state = 7, .external_lex_state = 3}, - [2099] = {.lex_state = 7, .external_lex_state = 3}, - [2100] = {.lex_state = 7, .external_lex_state = 3}, - [2101] = {.lex_state = 7, .external_lex_state = 3}, - [2102] = {.lex_state = 7, .external_lex_state = 3}, - [2103] = {.lex_state = 7, .external_lex_state = 3}, - [2104] = {.lex_state = 7, .external_lex_state = 3}, - [2105] = {.lex_state = 7, .external_lex_state = 3}, - [2106] = {.lex_state = 7, .external_lex_state = 3}, - [2107] = {.lex_state = 7, .external_lex_state = 3}, - [2108] = {.lex_state = 7, .external_lex_state = 3}, - [2109] = {.lex_state = 7, .external_lex_state = 3}, - [2110] = {.lex_state = 7, .external_lex_state = 3}, - [2111] = {.lex_state = 7, .external_lex_state = 3}, - [2112] = {.lex_state = 7, .external_lex_state = 4}, - [2113] = {.lex_state = 7, .external_lex_state = 3}, - [2114] = {.lex_state = 7, .external_lex_state = 4}, - [2115] = {.lex_state = 7, .external_lex_state = 4}, - [2116] = {.lex_state = 7, .external_lex_state = 4}, - [2117] = {.lex_state = 7, .external_lex_state = 3}, - [2118] = {.lex_state = 7, .external_lex_state = 4}, - [2119] = {.lex_state = 7, .external_lex_state = 4}, - [2120] = {.lex_state = 12, .external_lex_state = 5}, - [2121] = {.lex_state = 7, .external_lex_state = 4}, - [2122] = {.lex_state = 7, .external_lex_state = 4}, - [2123] = {.lex_state = 12, .external_lex_state = 5}, - [2124] = {.lex_state = 12, .external_lex_state = 5}, - [2125] = {.lex_state = 7, .external_lex_state = 3}, - [2126] = {.lex_state = 7, .external_lex_state = 3}, - [2127] = {.lex_state = 7, .external_lex_state = 4}, - [2128] = {.lex_state = 7, .external_lex_state = 4}, - [2129] = {.lex_state = 7, .external_lex_state = 3}, - [2130] = {.lex_state = 7, .external_lex_state = 4}, - [2131] = {.lex_state = 7, .external_lex_state = 4}, - [2132] = {.lex_state = 7, .external_lex_state = 4}, - [2133] = {.lex_state = 7, .external_lex_state = 4}, - [2134] = {.lex_state = 7, .external_lex_state = 4}, - [2135] = {.lex_state = 7, .external_lex_state = 4}, - [2136] = {.lex_state = 7, .external_lex_state = 4}, - [2137] = {.lex_state = 12, .external_lex_state = 2}, - [2138] = {.lex_state = 7, .external_lex_state = 3}, - [2139] = {.lex_state = 12, .external_lex_state = 2}, - [2140] = {.lex_state = 7, .external_lex_state = 3}, - [2141] = {.lex_state = 7, .external_lex_state = 4}, - [2142] = {.lex_state = 7, .external_lex_state = 3}, - [2143] = {.lex_state = 7, .external_lex_state = 3}, - [2144] = {.lex_state = 7, .external_lex_state = 3}, - [2145] = {.lex_state = 7, .external_lex_state = 3}, - [2146] = {.lex_state = 7, .external_lex_state = 3}, - [2147] = {.lex_state = 12, .external_lex_state = 2}, - [2148] = {.lex_state = 7, .external_lex_state = 4}, - [2149] = {.lex_state = 12, .external_lex_state = 2}, - [2150] = {.lex_state = 12, .external_lex_state = 5}, - [2151] = {.lex_state = 12, .external_lex_state = 5}, - [2152] = {.lex_state = 7, .external_lex_state = 3}, - [2153] = {.lex_state = 7, .external_lex_state = 4}, - [2154] = {.lex_state = 7, .external_lex_state = 3}, - [2155] = {.lex_state = 7, .external_lex_state = 3}, - [2156] = {.lex_state = 96, .external_lex_state = 2}, - [2157] = {.lex_state = 12, .external_lex_state = 5}, - [2158] = {.lex_state = 12, .external_lex_state = 5}, - [2159] = {.lex_state = 7, .external_lex_state = 3}, - [2160] = {.lex_state = 7, .external_lex_state = 3}, - [2161] = {.lex_state = 7, .external_lex_state = 3}, - [2162] = {.lex_state = 7, .external_lex_state = 4}, - [2163] = {.lex_state = 7, .external_lex_state = 4}, - [2164] = {.lex_state = 12, .external_lex_state = 5}, - [2165] = {.lex_state = 12, .external_lex_state = 5}, - [2166] = {.lex_state = 12, .external_lex_state = 5}, - [2167] = {.lex_state = 12, .external_lex_state = 5}, - [2168] = {.lex_state = 12, .external_lex_state = 5}, - [2169] = {.lex_state = 12, .external_lex_state = 5}, - [2170] = {.lex_state = 7, .external_lex_state = 4}, - [2171] = {.lex_state = 7, .external_lex_state = 4}, - [2172] = {.lex_state = 8, .external_lex_state = 4}, - [2173] = {.lex_state = 7, .external_lex_state = 4}, - [2174] = {.lex_state = 7, .external_lex_state = 4}, - [2175] = {.lex_state = 7, .external_lex_state = 3}, - [2176] = {.lex_state = 12, .external_lex_state = 5}, - [2177] = {.lex_state = 7, .external_lex_state = 4}, - [2178] = {.lex_state = 7, .external_lex_state = 3}, - [2179] = {.lex_state = 7, .external_lex_state = 3}, - [2180] = {.lex_state = 7, .external_lex_state = 3}, - [2181] = {.lex_state = 7, .external_lex_state = 3}, - [2182] = {.lex_state = 7, .external_lex_state = 4}, - [2183] = {.lex_state = 7, .external_lex_state = 3}, - [2184] = {.lex_state = 7, .external_lex_state = 4}, - [2185] = {.lex_state = 7, .external_lex_state = 4}, - [2186] = {.lex_state = 7, .external_lex_state = 4}, - [2187] = {.lex_state = 7, .external_lex_state = 4}, - [2188] = {.lex_state = 7, .external_lex_state = 3}, - [2189] = {.lex_state = 7, .external_lex_state = 4}, - [2190] = {.lex_state = 7, .external_lex_state = 4}, - [2191] = {.lex_state = 7, .external_lex_state = 4}, - [2192] = {.lex_state = 7, .external_lex_state = 4}, - [2193] = {.lex_state = 7, .external_lex_state = 3}, - [2194] = {.lex_state = 7, .external_lex_state = 4}, - [2195] = {.lex_state = 7, .external_lex_state = 3}, - [2196] = {.lex_state = 7, .external_lex_state = 4}, - [2197] = {.lex_state = 7, .external_lex_state = 4}, - [2198] = {.lex_state = 7, .external_lex_state = 4}, - [2199] = {.lex_state = 7, .external_lex_state = 4}, - [2200] = {.lex_state = 7, .external_lex_state = 4}, - [2201] = {.lex_state = 7, .external_lex_state = 4}, - [2202] = {.lex_state = 7, .external_lex_state = 4}, - [2203] = {.lex_state = 7, .external_lex_state = 4}, - [2204] = {.lex_state = 7, .external_lex_state = 4}, - [2205] = {.lex_state = 7, .external_lex_state = 4}, - [2206] = {.lex_state = 7, .external_lex_state = 4}, - [2207] = {.lex_state = 7, .external_lex_state = 4}, - [2208] = {.lex_state = 7, .external_lex_state = 4}, - [2209] = {.lex_state = 7, .external_lex_state = 4}, - [2210] = {.lex_state = 7, .external_lex_state = 4}, - [2211] = {.lex_state = 7, .external_lex_state = 4}, - [2212] = {.lex_state = 7, .external_lex_state = 4}, - [2213] = {.lex_state = 12, .external_lex_state = 5}, - [2214] = {.lex_state = 12, .external_lex_state = 5}, - [2215] = {.lex_state = 7, .external_lex_state = 3}, - [2216] = {.lex_state = 7, .external_lex_state = 4}, - [2217] = {.lex_state = 7, .external_lex_state = 4}, - [2218] = {.lex_state = 7, .external_lex_state = 4}, - [2219] = {.lex_state = 12, .external_lex_state = 5}, - [2220] = {.lex_state = 12, .external_lex_state = 5}, - [2221] = {.lex_state = 12, .external_lex_state = 5}, - [2222] = {.lex_state = 12, .external_lex_state = 5}, - [2223] = {.lex_state = 7, .external_lex_state = 4}, - [2224] = {.lex_state = 7, .external_lex_state = 3}, - [2225] = {.lex_state = 7, .external_lex_state = 4}, - [2226] = {.lex_state = 12, .external_lex_state = 5}, - [2227] = {.lex_state = 12, .external_lex_state = 5}, - [2228] = {.lex_state = 12, .external_lex_state = 5}, - [2229] = {.lex_state = 12, .external_lex_state = 5}, - [2230] = {.lex_state = 12, .external_lex_state = 5}, - [2231] = {.lex_state = 12, .external_lex_state = 5}, - [2232] = {.lex_state = 7, .external_lex_state = 3}, - [2233] = {.lex_state = 7, .external_lex_state = 4}, - [2234] = {.lex_state = 7, .external_lex_state = 4}, - [2235] = {.lex_state = 7, .external_lex_state = 4}, - [2236] = {.lex_state = 7, .external_lex_state = 3}, - [2237] = {.lex_state = 7, .external_lex_state = 4}, - [2238] = {.lex_state = 7, .external_lex_state = 4}, - [2239] = {.lex_state = 7, .external_lex_state = 4}, - [2240] = {.lex_state = 7, .external_lex_state = 4}, - [2241] = {.lex_state = 7, .external_lex_state = 3}, - [2242] = {.lex_state = 7, .external_lex_state = 4}, - [2243] = {.lex_state = 7, .external_lex_state = 3}, - [2244] = {.lex_state = 7, .external_lex_state = 4}, - [2245] = {.lex_state = 7, .external_lex_state = 4}, - [2246] = {.lex_state = 12, .external_lex_state = 5}, - [2247] = {.lex_state = 12, .external_lex_state = 5}, - [2248] = {.lex_state = 7, .external_lex_state = 4}, - [2249] = {.lex_state = 7, .external_lex_state = 4}, - [2250] = {.lex_state = 7, .external_lex_state = 4}, - [2251] = {.lex_state = 7, .external_lex_state = 3}, - [2252] = {.lex_state = 7, .external_lex_state = 3}, - [2253] = {.lex_state = 7, .external_lex_state = 3}, - [2254] = {.lex_state = 7, .external_lex_state = 3}, - [2255] = {.lex_state = 7, .external_lex_state = 4}, - [2256] = {.lex_state = 7, .external_lex_state = 3}, - [2257] = {.lex_state = 7, .external_lex_state = 3}, - [2258] = {.lex_state = 7, .external_lex_state = 3}, - [2259] = {.lex_state = 7, .external_lex_state = 4}, - [2260] = {.lex_state = 7, .external_lex_state = 4}, - [2261] = {.lex_state = 7, .external_lex_state = 4}, - [2262] = {.lex_state = 7, .external_lex_state = 4}, - [2263] = {.lex_state = 7, .external_lex_state = 4}, - [2264] = {.lex_state = 7, .external_lex_state = 4}, - [2265] = {.lex_state = 7, .external_lex_state = 3}, - [2266] = {.lex_state = 7, .external_lex_state = 4}, - [2267] = {.lex_state = 12, .external_lex_state = 5}, - [2268] = {.lex_state = 12, .external_lex_state = 2}, - [2269] = {.lex_state = 12, .external_lex_state = 2}, - [2270] = {.lex_state = 7, .external_lex_state = 4}, - [2271] = {.lex_state = 7, .external_lex_state = 3}, - [2272] = {.lex_state = 7, .external_lex_state = 3}, - [2273] = {.lex_state = 7, .external_lex_state = 4}, - [2274] = {.lex_state = 12, .external_lex_state = 5}, - [2275] = {.lex_state = 12, .external_lex_state = 2}, - [2276] = {.lex_state = 12, .external_lex_state = 2}, - [2277] = {.lex_state = 7, .external_lex_state = 4}, - [2278] = {.lex_state = 7, .external_lex_state = 4}, - [2279] = {.lex_state = 7, .external_lex_state = 4}, - [2280] = {.lex_state = 7, .external_lex_state = 4}, - [2281] = {.lex_state = 7, .external_lex_state = 3}, - [2282] = {.lex_state = 12, .external_lex_state = 5}, - [2283] = {.lex_state = 7, .external_lex_state = 4}, - [2284] = {.lex_state = 7, .external_lex_state = 3}, - [2285] = {.lex_state = 7, .external_lex_state = 3}, - [2286] = {.lex_state = 12, .external_lex_state = 5}, - [2287] = {.lex_state = 7, .external_lex_state = 3}, - [2288] = {.lex_state = 12, .external_lex_state = 5}, - [2289] = {.lex_state = 7, .external_lex_state = 4}, - [2290] = {.lex_state = 7, .external_lex_state = 4}, - [2291] = {.lex_state = 7, .external_lex_state = 4}, - [2292] = {.lex_state = 7, .external_lex_state = 4}, - [2293] = {.lex_state = 7, .external_lex_state = 4}, - [2294] = {.lex_state = 7, .external_lex_state = 4}, - [2295] = {.lex_state = 7, .external_lex_state = 4}, - [2296] = {.lex_state = 7, .external_lex_state = 4}, - [2297] = {.lex_state = 7, .external_lex_state = 4}, - [2298] = {.lex_state = 7, .external_lex_state = 3}, - [2299] = {.lex_state = 7, .external_lex_state = 3}, - [2300] = {.lex_state = 7, .external_lex_state = 3}, - [2301] = {.lex_state = 7, .external_lex_state = 3}, - [2302] = {.lex_state = 7, .external_lex_state = 3}, - [2303] = {.lex_state = 7, .external_lex_state = 3}, - [2304] = {.lex_state = 7, .external_lex_state = 3}, - [2305] = {.lex_state = 7, .external_lex_state = 3}, - [2306] = {.lex_state = 7, .external_lex_state = 3}, - [2307] = {.lex_state = 7, .external_lex_state = 4}, - [2308] = {.lex_state = 12, .external_lex_state = 5}, - [2309] = {.lex_state = 12, .external_lex_state = 5}, - [2310] = {.lex_state = 7, .external_lex_state = 3}, - [2311] = {.lex_state = 12, .external_lex_state = 5}, - [2312] = {.lex_state = 7, .external_lex_state = 4}, - [2313] = {.lex_state = 7, .external_lex_state = 4}, - [2314] = {.lex_state = 7, .external_lex_state = 4}, - [2315] = {.lex_state = 12, .external_lex_state = 5}, - [2316] = {.lex_state = 7, .external_lex_state = 4}, - [2317] = {.lex_state = 12, .external_lex_state = 5}, - [2318] = {.lex_state = 12, .external_lex_state = 5}, - [2319] = {.lex_state = 12, .external_lex_state = 5}, - [2320] = {.lex_state = 7, .external_lex_state = 3}, - [2321] = {.lex_state = 7, .external_lex_state = 4}, - [2322] = {.lex_state = 12, .external_lex_state = 5}, - [2323] = {.lex_state = 12, .external_lex_state = 5}, - [2324] = {.lex_state = 7, .external_lex_state = 3}, - [2325] = {.lex_state = 96, .external_lex_state = 2}, - [2326] = {.lex_state = 7, .external_lex_state = 4}, - [2327] = {.lex_state = 7, .external_lex_state = 4}, - [2328] = {.lex_state = 7, .external_lex_state = 4}, - [2329] = {.lex_state = 7, .external_lex_state = 3}, - [2330] = {.lex_state = 7, .external_lex_state = 4}, - [2331] = {.lex_state = 7, .external_lex_state = 4}, - [2332] = {.lex_state = 7, .external_lex_state = 4}, - [2333] = {.lex_state = 7, .external_lex_state = 4}, - [2334] = {.lex_state = 7, .external_lex_state = 4}, - [2335] = {.lex_state = 12, .external_lex_state = 2}, - [2336] = {.lex_state = 7, .external_lex_state = 3}, - [2337] = {.lex_state = 12, .external_lex_state = 2}, - [2338] = {.lex_state = 7, .external_lex_state = 3}, - [2339] = {.lex_state = 7, .external_lex_state = 3}, - [2340] = {.lex_state = 7, .external_lex_state = 3}, - [2341] = {.lex_state = 7, .external_lex_state = 3}, - [2342] = {.lex_state = 7, .external_lex_state = 3}, - [2343] = {.lex_state = 7, .external_lex_state = 3}, - [2344] = {.lex_state = 12, .external_lex_state = 5}, - [2345] = {.lex_state = 12, .external_lex_state = 2}, - [2346] = {.lex_state = 7, .external_lex_state = 4}, - [2347] = {.lex_state = 12, .external_lex_state = 2}, - [2348] = {.lex_state = 7, .external_lex_state = 3}, - [2349] = {.lex_state = 8, .external_lex_state = 4}, - [2350] = {.lex_state = 7, .external_lex_state = 4}, - [2351] = {.lex_state = 7, .external_lex_state = 4}, - [2352] = {.lex_state = 7, .external_lex_state = 3}, - [2353] = {.lex_state = 7, .external_lex_state = 3}, - [2354] = {.lex_state = 7, .external_lex_state = 4}, - [2355] = {.lex_state = 7, .external_lex_state = 3}, - [2356] = {.lex_state = 7, .external_lex_state = 4}, - [2357] = {.lex_state = 12, .external_lex_state = 5}, - [2358] = {.lex_state = 12, .external_lex_state = 5}, - [2359] = {.lex_state = 7, .external_lex_state = 4}, - [2360] = {.lex_state = 12, .external_lex_state = 5}, - [2361] = {.lex_state = 7, .external_lex_state = 3}, - [2362] = {.lex_state = 7, .external_lex_state = 3}, - [2363] = {.lex_state = 12, .external_lex_state = 5}, - [2364] = {.lex_state = 7, .external_lex_state = 3}, - [2365] = {.lex_state = 12, .external_lex_state = 5}, - [2366] = {.lex_state = 12, .external_lex_state = 5}, - [2367] = {.lex_state = 7, .external_lex_state = 3}, - [2368] = {.lex_state = 7, .external_lex_state = 3}, - [2369] = {.lex_state = 7, .external_lex_state = 3}, - [2370] = {.lex_state = 7, .external_lex_state = 3}, - [2371] = {.lex_state = 7, .external_lex_state = 3}, - [2372] = {.lex_state = 7, .external_lex_state = 3}, - [2373] = {.lex_state = 7, .external_lex_state = 3}, - [2374] = {.lex_state = 7, .external_lex_state = 3}, - [2375] = {.lex_state = 7, .external_lex_state = 3}, - [2376] = {.lex_state = 7, .external_lex_state = 3}, - [2377] = {.lex_state = 7, .external_lex_state = 3}, - [2378] = {.lex_state = 7, .external_lex_state = 3}, - [2379] = {.lex_state = 7, .external_lex_state = 3}, - [2380] = {.lex_state = 7, .external_lex_state = 3}, - [2381] = {.lex_state = 7, .external_lex_state = 3}, - [2382] = {.lex_state = 7, .external_lex_state = 3}, - [2383] = {.lex_state = 7, .external_lex_state = 3}, - [2384] = {.lex_state = 7, .external_lex_state = 3}, - [2385] = {.lex_state = 7, .external_lex_state = 3}, - [2386] = {.lex_state = 7, .external_lex_state = 3}, - [2387] = {.lex_state = 7, .external_lex_state = 3}, - [2388] = {.lex_state = 7, .external_lex_state = 3}, - [2389] = {.lex_state = 7, .external_lex_state = 3}, - [2390] = {.lex_state = 7, .external_lex_state = 3}, - [2391] = {.lex_state = 7, .external_lex_state = 3}, - [2392] = {.lex_state = 7, .external_lex_state = 3}, - [2393] = {.lex_state = 7, .external_lex_state = 4}, - [2394] = {.lex_state = 7, .external_lex_state = 3}, - [2395] = {.lex_state = 7, .external_lex_state = 3}, - [2396] = {.lex_state = 7, .external_lex_state = 3}, - [2397] = {.lex_state = 7, .external_lex_state = 3}, - [2398] = {.lex_state = 7, .external_lex_state = 3}, - [2399] = {.lex_state = 7, .external_lex_state = 3}, - [2400] = {.lex_state = 7, .external_lex_state = 3}, - [2401] = {.lex_state = 7, .external_lex_state = 3}, - [2402] = {.lex_state = 7, .external_lex_state = 3}, - [2403] = {.lex_state = 7, .external_lex_state = 3}, - [2404] = {.lex_state = 7, .external_lex_state = 3}, - [2405] = {.lex_state = 7, .external_lex_state = 3}, - [2406] = {.lex_state = 7, .external_lex_state = 3}, - [2407] = {.lex_state = 7, .external_lex_state = 3}, - [2408] = {.lex_state = 7, .external_lex_state = 3}, - [2409] = {.lex_state = 7, .external_lex_state = 3}, - [2410] = {.lex_state = 7, .external_lex_state = 3}, - [2411] = {.lex_state = 7, .external_lex_state = 3}, - [2412] = {.lex_state = 7, .external_lex_state = 3}, - [2413] = {.lex_state = 7, .external_lex_state = 3}, - [2414] = {.lex_state = 7, .external_lex_state = 3}, - [2415] = {.lex_state = 7, .external_lex_state = 3}, - [2416] = {.lex_state = 7, .external_lex_state = 3}, - [2417] = {.lex_state = 7, .external_lex_state = 3}, - [2418] = {.lex_state = 7, .external_lex_state = 3}, - [2419] = {.lex_state = 7, .external_lex_state = 3}, - [2420] = {.lex_state = 7, .external_lex_state = 4}, - [2421] = {.lex_state = 12, .external_lex_state = 2}, - [2422] = {.lex_state = 12, .external_lex_state = 5}, - [2423] = {.lex_state = 7, .external_lex_state = 4}, - [2424] = {.lex_state = 96, .external_lex_state = 2}, - [2425] = {.lex_state = 7, .external_lex_state = 3}, - [2426] = {.lex_state = 7, .external_lex_state = 3}, - [2427] = {.lex_state = 7, .external_lex_state = 4}, - [2428] = {.lex_state = 7, .external_lex_state = 4}, - [2429] = {.lex_state = 12, .external_lex_state = 5}, - [2430] = {.lex_state = 12, .external_lex_state = 2}, - [2431] = {.lex_state = 12, .external_lex_state = 5}, - [2432] = {.lex_state = 8, .external_lex_state = 3}, - [2433] = {.lex_state = 7, .external_lex_state = 4}, - [2434] = {.lex_state = 7, .external_lex_state = 4}, - [2435] = {.lex_state = 7, .external_lex_state = 3}, - [2436] = {.lex_state = 7, .external_lex_state = 3}, - [2437] = {.lex_state = 7, .external_lex_state = 3}, - [2438] = {.lex_state = 7, .external_lex_state = 3}, - [2439] = {.lex_state = 7, .external_lex_state = 3}, - [2440] = {.lex_state = 7, .external_lex_state = 3}, - [2441] = {.lex_state = 7, .external_lex_state = 3}, - [2442] = {.lex_state = 7, .external_lex_state = 3}, - [2443] = {.lex_state = 7, .external_lex_state = 3}, - [2444] = {.lex_state = 7, .external_lex_state = 4}, - [2445] = {.lex_state = 12, .external_lex_state = 5}, - [2446] = {.lex_state = 12, .external_lex_state = 5}, - [2447] = {.lex_state = 12, .external_lex_state = 2}, - [2448] = {.lex_state = 7, .external_lex_state = 3}, - [2449] = {.lex_state = 12, .external_lex_state = 5}, - [2450] = {.lex_state = 12, .external_lex_state = 5}, - [2451] = {.lex_state = 7, .external_lex_state = 3}, - [2452] = {.lex_state = 7, .external_lex_state = 3}, - [2453] = {.lex_state = 7, .external_lex_state = 3}, - [2454] = {.lex_state = 7, .external_lex_state = 3}, - [2455] = {.lex_state = 7, .external_lex_state = 3}, - [2456] = {.lex_state = 12, .external_lex_state = 5}, - [2457] = {.lex_state = 12, .external_lex_state = 5}, - [2458] = {.lex_state = 12, .external_lex_state = 2}, - [2459] = {.lex_state = 7, .external_lex_state = 4}, - [2460] = {.lex_state = 12, .external_lex_state = 5}, - [2461] = {.lex_state = 12, .external_lex_state = 5}, - [2462] = {.lex_state = 7, .external_lex_state = 3}, - [2463] = {.lex_state = 7, .external_lex_state = 3}, - [2464] = {.lex_state = 7, .external_lex_state = 3}, - [2465] = {.lex_state = 7, .external_lex_state = 3}, - [2466] = {.lex_state = 7, .external_lex_state = 4}, - [2467] = {.lex_state = 7, .external_lex_state = 3}, - [2468] = {.lex_state = 12, .external_lex_state = 2}, - [2469] = {.lex_state = 7, .external_lex_state = 3}, - [2470] = {.lex_state = 7, .external_lex_state = 3}, - [2471] = {.lex_state = 12, .external_lex_state = 2}, - [2472] = {.lex_state = 12, .external_lex_state = 5}, - [2473] = {.lex_state = 96, .external_lex_state = 2}, - [2474] = {.lex_state = 12, .external_lex_state = 5}, - [2475] = {.lex_state = 7, .external_lex_state = 3}, - [2476] = {.lex_state = 12, .external_lex_state = 5}, - [2477] = {.lex_state = 7, .external_lex_state = 3}, - [2478] = {.lex_state = 12, .external_lex_state = 5}, - [2479] = {.lex_state = 12, .external_lex_state = 5}, - [2480] = {.lex_state = 12, .external_lex_state = 5}, - [2481] = {.lex_state = 12, .external_lex_state = 2}, - [2482] = {.lex_state = 12, .external_lex_state = 5}, - [2483] = {.lex_state = 12, .external_lex_state = 5}, - [2484] = {.lex_state = 7, .external_lex_state = 3}, - [2485] = {.lex_state = 7, .external_lex_state = 3}, - [2486] = {.lex_state = 12, .external_lex_state = 2}, - [2487] = {.lex_state = 7, .external_lex_state = 4}, - [2488] = {.lex_state = 7, .external_lex_state = 3}, - [2489] = {.lex_state = 12, .external_lex_state = 5}, - [2490] = {.lex_state = 7, .external_lex_state = 3}, - [2491] = {.lex_state = 7, .external_lex_state = 3}, - [2492] = {.lex_state = 7, .external_lex_state = 3}, - [2493] = {.lex_state = 7, .external_lex_state = 3}, - [2494] = {.lex_state = 7, .external_lex_state = 3}, - [2495] = {.lex_state = 7, .external_lex_state = 3}, - [2496] = {.lex_state = 7, .external_lex_state = 3}, - [2497] = {.lex_state = 7, .external_lex_state = 3}, - [2498] = {.lex_state = 7, .external_lex_state = 3}, - [2499] = {.lex_state = 7, .external_lex_state = 3}, - [2500] = {.lex_state = 7, .external_lex_state = 3}, - [2501] = {.lex_state = 7, .external_lex_state = 3}, - [2502] = {.lex_state = 7, .external_lex_state = 3}, - [2503] = {.lex_state = 7, .external_lex_state = 3}, - [2504] = {.lex_state = 7, .external_lex_state = 3}, - [2505] = {.lex_state = 7, .external_lex_state = 3}, - [2506] = {.lex_state = 7, .external_lex_state = 3}, - [2507] = {.lex_state = 7, .external_lex_state = 3}, - [2508] = {.lex_state = 7, .external_lex_state = 3}, - [2509] = {.lex_state = 7, .external_lex_state = 3}, - [2510] = {.lex_state = 7, .external_lex_state = 3}, - [2511] = {.lex_state = 7, .external_lex_state = 3}, - [2512] = {.lex_state = 7, .external_lex_state = 3}, - [2513] = {.lex_state = 7, .external_lex_state = 3}, - [2514] = {.lex_state = 7, .external_lex_state = 3}, - [2515] = {.lex_state = 7, .external_lex_state = 3}, - [2516] = {.lex_state = 7, .external_lex_state = 3}, - [2517] = {.lex_state = 7, .external_lex_state = 4}, - [2518] = {.lex_state = 7, .external_lex_state = 3}, - [2519] = {.lex_state = 7, .external_lex_state = 3}, - [2520] = {.lex_state = 7, .external_lex_state = 3}, - [2521] = {.lex_state = 7, .external_lex_state = 3}, - [2522] = {.lex_state = 7, .external_lex_state = 3}, - [2523] = {.lex_state = 12, .external_lex_state = 5}, - [2524] = {.lex_state = 7, .external_lex_state = 3}, - [2525] = {.lex_state = 7, .external_lex_state = 3}, - [2526] = {.lex_state = 7, .external_lex_state = 3}, - [2527] = {.lex_state = 7, .external_lex_state = 3}, - [2528] = {.lex_state = 7, .external_lex_state = 3}, - [2529] = {.lex_state = 7, .external_lex_state = 3}, - [2530] = {.lex_state = 96, .external_lex_state = 5}, - [2531] = {.lex_state = 7, .external_lex_state = 3}, - [2532] = {.lex_state = 96, .external_lex_state = 5}, - [2533] = {.lex_state = 96, .external_lex_state = 5}, - [2534] = {.lex_state = 7, .external_lex_state = 3}, - [2535] = {.lex_state = 7, .external_lex_state = 3}, - [2536] = {.lex_state = 7, .external_lex_state = 3}, - [2537] = {.lex_state = 7, .external_lex_state = 3}, - [2538] = {.lex_state = 12, .external_lex_state = 2}, - [2539] = {.lex_state = 7, .external_lex_state = 3}, - [2540] = {.lex_state = 12, .external_lex_state = 2}, - [2541] = {.lex_state = 7, .external_lex_state = 3}, - [2542] = {.lex_state = 7, .external_lex_state = 3}, - [2543] = {.lex_state = 7, .external_lex_state = 3}, - [2544] = {.lex_state = 7, .external_lex_state = 3}, - [2545] = {.lex_state = 7, .external_lex_state = 3}, - [2546] = {.lex_state = 7, .external_lex_state = 3}, - [2547] = {.lex_state = 7, .external_lex_state = 3}, - [2548] = {.lex_state = 7, .external_lex_state = 3}, - [2549] = {.lex_state = 7, .external_lex_state = 3}, - [2550] = {.lex_state = 7, .external_lex_state = 3}, - [2551] = {.lex_state = 7, .external_lex_state = 3}, - [2552] = {.lex_state = 7, .external_lex_state = 3}, - [2553] = {.lex_state = 96, .external_lex_state = 5}, - [2554] = {.lex_state = 96, .external_lex_state = 5}, - [2555] = {.lex_state = 7, .external_lex_state = 3}, - [2556] = {.lex_state = 96, .external_lex_state = 5}, - [2557] = {.lex_state = 96, .external_lex_state = 5}, - [2558] = {.lex_state = 7, .external_lex_state = 3}, - [2559] = {.lex_state = 7, .external_lex_state = 3}, - [2560] = {.lex_state = 7, .external_lex_state = 3}, - [2561] = {.lex_state = 7, .external_lex_state = 3}, - [2562] = {.lex_state = 7, .external_lex_state = 3}, - [2563] = {.lex_state = 7, .external_lex_state = 3}, - [2564] = {.lex_state = 7, .external_lex_state = 3}, - [2565] = {.lex_state = 12, .external_lex_state = 2}, - [2566] = {.lex_state = 7, .external_lex_state = 3}, - [2567] = {.lex_state = 7, .external_lex_state = 3}, - [2568] = {.lex_state = 12, .external_lex_state = 2}, - [2569] = {.lex_state = 7, .external_lex_state = 3}, - [2570] = {.lex_state = 7, .external_lex_state = 3}, - [2571] = {.lex_state = 7, .external_lex_state = 3}, - [2572] = {.lex_state = 7, .external_lex_state = 3}, - [2573] = {.lex_state = 7, .external_lex_state = 3}, - [2574] = {.lex_state = 7, .external_lex_state = 3}, - [2575] = {.lex_state = 7, .external_lex_state = 3}, - [2576] = {.lex_state = 7, .external_lex_state = 3}, - [2577] = {.lex_state = 7, .external_lex_state = 3}, - [2578] = {.lex_state = 7, .external_lex_state = 3}, - [2579] = {.lex_state = 7, .external_lex_state = 3}, - [2580] = {.lex_state = 7, .external_lex_state = 3}, - [2581] = {.lex_state = 96, .external_lex_state = 2}, - [2582] = {.lex_state = 7, .external_lex_state = 3}, - [2583] = {.lex_state = 7, .external_lex_state = 3}, - [2584] = {.lex_state = 7, .external_lex_state = 3}, - [2585] = {.lex_state = 7, .external_lex_state = 3}, - [2586] = {.lex_state = 7, .external_lex_state = 3}, - [2587] = {.lex_state = 12, .external_lex_state = 2}, - [2588] = {.lex_state = 7, .external_lex_state = 4}, - [2589] = {.lex_state = 7, .external_lex_state = 3}, - [2590] = {.lex_state = 7, .external_lex_state = 3}, - [2591] = {.lex_state = 7, .external_lex_state = 3}, - [2592] = {.lex_state = 7, .external_lex_state = 3}, - [2593] = {.lex_state = 96, .external_lex_state = 5}, - [2594] = {.lex_state = 7, .external_lex_state = 3}, - [2595] = {.lex_state = 7, .external_lex_state = 3}, - [2596] = {.lex_state = 96, .external_lex_state = 5}, - [2597] = {.lex_state = 7, .external_lex_state = 3}, - [2598] = {.lex_state = 7, .external_lex_state = 3}, - [2599] = {.lex_state = 96, .external_lex_state = 2}, - [2600] = {.lex_state = 7, .external_lex_state = 3}, - [2601] = {.lex_state = 96, .external_lex_state = 2}, - [2602] = {.lex_state = 7, .external_lex_state = 3}, - [2603] = {.lex_state = 7, .external_lex_state = 3}, - [2604] = {.lex_state = 7, .external_lex_state = 3}, - [2605] = {.lex_state = 7, .external_lex_state = 3}, - [2606] = {.lex_state = 7, .external_lex_state = 3}, - [2607] = {.lex_state = 12, .external_lex_state = 5}, - [2608] = {.lex_state = 7, .external_lex_state = 3}, - [2609] = {.lex_state = 7, .external_lex_state = 3}, - [2610] = {.lex_state = 12, .external_lex_state = 5}, - [2611] = {.lex_state = 96, .external_lex_state = 5}, - [2612] = {.lex_state = 7, .external_lex_state = 3}, - [2613] = {.lex_state = 7, .external_lex_state = 3}, - [2614] = {.lex_state = 12, .external_lex_state = 2}, - [2615] = {.lex_state = 12, .external_lex_state = 2}, - [2616] = {.lex_state = 12, .external_lex_state = 2}, - [2617] = {.lex_state = 96, .external_lex_state = 5}, - [2618] = {.lex_state = 96, .external_lex_state = 5}, - [2619] = {.lex_state = 96, .external_lex_state = 5}, - [2620] = {.lex_state = 12, .external_lex_state = 2}, - [2621] = {.lex_state = 96, .external_lex_state = 5}, - [2622] = {.lex_state = 12, .external_lex_state = 2}, - [2623] = {.lex_state = 12, .external_lex_state = 2}, - [2624] = {.lex_state = 12, .external_lex_state = 2}, - [2625] = {.lex_state = 12, .external_lex_state = 2}, - [2626] = {.lex_state = 12, .external_lex_state = 2}, - [2627] = {.lex_state = 12, .external_lex_state = 2}, - [2628] = {.lex_state = 96, .external_lex_state = 5}, - [2629] = {.lex_state = 12, .external_lex_state = 2}, - [2630] = {.lex_state = 8, .external_lex_state = 3}, - [2631] = {.lex_state = 96, .external_lex_state = 5}, - [2632] = {.lex_state = 12, .external_lex_state = 2}, - [2633] = {.lex_state = 12, .external_lex_state = 2}, - [2634] = {.lex_state = 96, .external_lex_state = 5}, - [2635] = {.lex_state = 96, .external_lex_state = 5}, - [2636] = {.lex_state = 12, .external_lex_state = 2}, - [2637] = {.lex_state = 12, .external_lex_state = 2}, - [2638] = {.lex_state = 7, .external_lex_state = 3}, - [2639] = {.lex_state = 96, .external_lex_state = 5}, - [2640] = {.lex_state = 96, .external_lex_state = 5}, - [2641] = {.lex_state = 96, .external_lex_state = 5}, - [2642] = {.lex_state = 96, .external_lex_state = 5}, - [2643] = {.lex_state = 7, .external_lex_state = 3}, - [2644] = {.lex_state = 96, .external_lex_state = 5}, - [2645] = {.lex_state = 96, .external_lex_state = 5}, - [2646] = {.lex_state = 7, .external_lex_state = 3}, - [2647] = {.lex_state = 96, .external_lex_state = 5}, - [2648] = {.lex_state = 7, .external_lex_state = 3}, - [2649] = {.lex_state = 7, .external_lex_state = 3}, - [2650] = {.lex_state = 12, .external_lex_state = 2}, - [2651] = {.lex_state = 96, .external_lex_state = 5}, - [2652] = {.lex_state = 12, .external_lex_state = 5}, - [2653] = {.lex_state = 7, .external_lex_state = 3}, - [2654] = {.lex_state = 12, .external_lex_state = 5}, - [2655] = {.lex_state = 12, .external_lex_state = 5}, - [2656] = {.lex_state = 12, .external_lex_state = 5}, - [2657] = {.lex_state = 12, .external_lex_state = 5}, - [2658] = {.lex_state = 12, .external_lex_state = 5}, - [2659] = {.lex_state = 12, .external_lex_state = 5}, - [2660] = {.lex_state = 7, .external_lex_state = 3}, - [2661] = {.lex_state = 7, .external_lex_state = 3}, - [2662] = {.lex_state = 7, .external_lex_state = 3}, - [2663] = {.lex_state = 12, .external_lex_state = 5}, - [2664] = {.lex_state = 7, .external_lex_state = 3}, - [2665] = {.lex_state = 12, .external_lex_state = 5}, - [2666] = {.lex_state = 7, .external_lex_state = 3}, - [2667] = {.lex_state = 12, .external_lex_state = 5}, - [2668] = {.lex_state = 12, .external_lex_state = 2}, - [2669] = {.lex_state = 12, .external_lex_state = 5}, - [2670] = {.lex_state = 12, .external_lex_state = 5}, - [2671] = {.lex_state = 12, .external_lex_state = 5}, - [2672] = {.lex_state = 12, .external_lex_state = 5}, - [2673] = {.lex_state = 12, .external_lex_state = 5}, - [2674] = {.lex_state = 12, .external_lex_state = 5}, - [2675] = {.lex_state = 12, .external_lex_state = 5}, - [2676] = {.lex_state = 12, .external_lex_state = 5}, - [2677] = {.lex_state = 12, .external_lex_state = 5}, - [2678] = {.lex_state = 12, .external_lex_state = 5}, - [2679] = {.lex_state = 12, .external_lex_state = 5}, - [2680] = {.lex_state = 12, .external_lex_state = 5}, - [2681] = {.lex_state = 12, .external_lex_state = 5}, - [2682] = {.lex_state = 12, .external_lex_state = 5}, - [2683] = {.lex_state = 12, .external_lex_state = 5}, - [2684] = {.lex_state = 12, .external_lex_state = 5}, - [2685] = {.lex_state = 12, .external_lex_state = 5}, - [2686] = {.lex_state = 12, .external_lex_state = 2}, - [2687] = {.lex_state = 12, .external_lex_state = 5}, - [2688] = {.lex_state = 12, .external_lex_state = 5}, - [2689] = {.lex_state = 12, .external_lex_state = 2}, - [2690] = {.lex_state = 12, .external_lex_state = 5}, - [2691] = {.lex_state = 12, .external_lex_state = 5}, - [2692] = {.lex_state = 12, .external_lex_state = 5}, - [2693] = {.lex_state = 12, .external_lex_state = 5}, - [2694] = {.lex_state = 12, .external_lex_state = 5}, - [2695] = {.lex_state = 12, .external_lex_state = 5}, - [2696] = {.lex_state = 12, .external_lex_state = 5}, - [2697] = {.lex_state = 12, .external_lex_state = 5}, - [2698] = {.lex_state = 12, .external_lex_state = 5}, - [2699] = {.lex_state = 12, .external_lex_state = 5}, - [2700] = {.lex_state = 12, .external_lex_state = 5}, - [2701] = {.lex_state = 12, .external_lex_state = 5}, - [2702] = {.lex_state = 12, .external_lex_state = 5}, - [2703] = {.lex_state = 12, .external_lex_state = 5}, - [2704] = {.lex_state = 12, .external_lex_state = 5}, - [2705] = {.lex_state = 7, .external_lex_state = 3}, - [2706] = {.lex_state = 7, .external_lex_state = 3}, - [2707] = {.lex_state = 7, .external_lex_state = 3}, - [2708] = {.lex_state = 12, .external_lex_state = 5}, - [2709] = {.lex_state = 12, .external_lex_state = 5}, - [2710] = {.lex_state = 7, .external_lex_state = 3}, - [2711] = {.lex_state = 12, .external_lex_state = 5}, - [2712] = {.lex_state = 12, .external_lex_state = 5}, - [2713] = {.lex_state = 12, .external_lex_state = 5}, - [2714] = {.lex_state = 12, .external_lex_state = 5}, - [2715] = {.lex_state = 12, .external_lex_state = 5}, - [2716] = {.lex_state = 12, .external_lex_state = 5}, - [2717] = {.lex_state = 7, .external_lex_state = 3}, - [2718] = {.lex_state = 12, .external_lex_state = 2}, - [2719] = {.lex_state = 12, .external_lex_state = 2}, - [2720] = {.lex_state = 7, .external_lex_state = 3}, - [2721] = {.lex_state = 12, .external_lex_state = 2}, - [2722] = {.lex_state = 12, .external_lex_state = 2}, - [2723] = {.lex_state = 12, .external_lex_state = 2}, - [2724] = {.lex_state = 12, .external_lex_state = 2}, - [2725] = {.lex_state = 12, .external_lex_state = 2}, - [2726] = {.lex_state = 12, .external_lex_state = 2}, - [2727] = {.lex_state = 12, .external_lex_state = 2}, - [2728] = {.lex_state = 12, .external_lex_state = 2}, - [2729] = {.lex_state = 12, .external_lex_state = 2}, - [2730] = {.lex_state = 12, .external_lex_state = 2}, - [2731] = {.lex_state = 12, .external_lex_state = 2}, - [2732] = {.lex_state = 96, .external_lex_state = 2}, - [2733] = {.lex_state = 96, .external_lex_state = 2}, - [2734] = {.lex_state = 12, .external_lex_state = 2}, - [2735] = {.lex_state = 12, .external_lex_state = 2}, - [2736] = {.lex_state = 12, .external_lex_state = 2}, - [2737] = {.lex_state = 12, .external_lex_state = 2}, - [2738] = {.lex_state = 12, .external_lex_state = 2}, - [2739] = {.lex_state = 12, .external_lex_state = 2}, - [2740] = {.lex_state = 12, .external_lex_state = 2}, - [2741] = {.lex_state = 12, .external_lex_state = 2}, - [2742] = {.lex_state = 12, .external_lex_state = 2}, - [2743] = {.lex_state = 12, .external_lex_state = 2}, - [2744] = {.lex_state = 12, .external_lex_state = 2}, - [2745] = {.lex_state = 12, .external_lex_state = 2}, - [2746] = {.lex_state = 96, .external_lex_state = 2}, - [2747] = {.lex_state = 12, .external_lex_state = 2}, - [2748] = {.lex_state = 96, .external_lex_state = 2}, - [2749] = {.lex_state = 12, .external_lex_state = 2}, - [2750] = {.lex_state = 12, .external_lex_state = 2}, - [2751] = {.lex_state = 12, .external_lex_state = 2}, - [2752] = {.lex_state = 12, .external_lex_state = 2}, - [2753] = {.lex_state = 12, .external_lex_state = 2}, - [2754] = {.lex_state = 12, .external_lex_state = 2}, - [2755] = {.lex_state = 12, .external_lex_state = 2}, - [2756] = {.lex_state = 12, .external_lex_state = 2}, - [2757] = {.lex_state = 12, .external_lex_state = 2}, - [2758] = {.lex_state = 12, .external_lex_state = 2}, - [2759] = {.lex_state = 12, .external_lex_state = 2}, - [2760] = {.lex_state = 12, .external_lex_state = 2}, - [2761] = {.lex_state = 12, .external_lex_state = 2}, - [2762] = {.lex_state = 96, .external_lex_state = 2}, - [2763] = {.lex_state = 12, .external_lex_state = 2}, - [2764] = {.lex_state = 12, .external_lex_state = 2}, - [2765] = {.lex_state = 12, .external_lex_state = 2}, - [2766] = {.lex_state = 12, .external_lex_state = 2}, - [2767] = {.lex_state = 12, .external_lex_state = 2}, - [2768] = {.lex_state = 12, .external_lex_state = 2}, - [2769] = {.lex_state = 12, .external_lex_state = 2}, - [2770] = {.lex_state = 12, .external_lex_state = 2}, - [2771] = {.lex_state = 12, .external_lex_state = 2}, - [2772] = {.lex_state = 12, .external_lex_state = 2}, - [2773] = {.lex_state = 96, .external_lex_state = 2}, - [2774] = {.lex_state = 96, .external_lex_state = 2}, - [2775] = {.lex_state = 96, .external_lex_state = 2}, - [2776] = {.lex_state = 96, .external_lex_state = 2}, - [2777] = {.lex_state = 96, .external_lex_state = 2}, - [2778] = {.lex_state = 96, .external_lex_state = 2}, - [2779] = {.lex_state = 96, .external_lex_state = 2}, - [2780] = {.lex_state = 96, .external_lex_state = 2}, - [2781] = {.lex_state = 96, .external_lex_state = 2}, - [2782] = {.lex_state = 96, .external_lex_state = 2}, - [2783] = {.lex_state = 96, .external_lex_state = 2}, - [2784] = {.lex_state = 96, .external_lex_state = 2}, - [2785] = {.lex_state = 96, .external_lex_state = 2}, - [2786] = {.lex_state = 96, .external_lex_state = 2}, - [2787] = {.lex_state = 96, .external_lex_state = 2}, - [2788] = {.lex_state = 96, .external_lex_state = 2}, - [2789] = {.lex_state = 96, .external_lex_state = 2}, - [2790] = {.lex_state = 96, .external_lex_state = 2}, - [2791] = {.lex_state = 96, .external_lex_state = 2}, - [2792] = {.lex_state = 96, .external_lex_state = 2}, - [2793] = {.lex_state = 96, .external_lex_state = 2}, - [2794] = {.lex_state = 96, .external_lex_state = 2}, - [2795] = {.lex_state = 96, .external_lex_state = 2}, - [2796] = {.lex_state = 96, .external_lex_state = 2}, - [2797] = {.lex_state = 96, .external_lex_state = 2}, - [2798] = {.lex_state = 96, .external_lex_state = 2}, - [2799] = {.lex_state = 96, .external_lex_state = 2}, - [2800] = {.lex_state = 96, .external_lex_state = 2}, - [2801] = {.lex_state = 96, .external_lex_state = 2}, - [2802] = {.lex_state = 96, .external_lex_state = 2}, - [2803] = {.lex_state = 96, .external_lex_state = 2}, - [2804] = {.lex_state = 96, .external_lex_state = 2}, - [2805] = {.lex_state = 96, .external_lex_state = 2}, - [2806] = {.lex_state = 96, .external_lex_state = 2}, - [2807] = {.lex_state = 96, .external_lex_state = 2}, - [2808] = {.lex_state = 96, .external_lex_state = 2}, - [2809] = {.lex_state = 96, .external_lex_state = 2}, - [2810] = {.lex_state = 96, .external_lex_state = 2}, - [2811] = {.lex_state = 96, .external_lex_state = 2}, - [2812] = {.lex_state = 96, .external_lex_state = 2}, - [2813] = {.lex_state = 12, .external_lex_state = 2}, - [2814] = {.lex_state = 96, .external_lex_state = 2}, - [2815] = {.lex_state = 96, .external_lex_state = 2}, - [2816] = {.lex_state = 96, .external_lex_state = 2}, - [2817] = {.lex_state = 96, .external_lex_state = 2}, - [2818] = {.lex_state = 96, .external_lex_state = 2}, - [2819] = {.lex_state = 96, .external_lex_state = 2}, - [2820] = {.lex_state = 96, .external_lex_state = 2}, - [2821] = {.lex_state = 96, .external_lex_state = 2}, - [2822] = {.lex_state = 96, .external_lex_state = 2}, - [2823] = {.lex_state = 96, .external_lex_state = 2}, - [2824] = {.lex_state = 96, .external_lex_state = 2}, - [2825] = {.lex_state = 96, .external_lex_state = 2}, - [2826] = {.lex_state = 96, .external_lex_state = 2}, - [2827] = {.lex_state = 96, .external_lex_state = 2}, - [2828] = {.lex_state = 96, .external_lex_state = 2}, - [2829] = {.lex_state = 96, .external_lex_state = 2}, - [2830] = {.lex_state = 96, .external_lex_state = 2}, - [2831] = {.lex_state = 96, .external_lex_state = 2}, - [2832] = {.lex_state = 96, .external_lex_state = 2}, - [2833] = {.lex_state = 96, .external_lex_state = 2}, - [2834] = {.lex_state = 96, .external_lex_state = 2}, - [2835] = {.lex_state = 96, .external_lex_state = 2}, - [2836] = {.lex_state = 96, .external_lex_state = 2}, - [2837] = {.lex_state = 96, .external_lex_state = 2}, - [2838] = {.lex_state = 96, .external_lex_state = 2}, - [2839] = {.lex_state = 96, .external_lex_state = 2}, - [2840] = {.lex_state = 96, .external_lex_state = 2}, - [2841] = {.lex_state = 96, .external_lex_state = 2}, - [2842] = {.lex_state = 96, .external_lex_state = 2}, - [2843] = {.lex_state = 96, .external_lex_state = 2}, - [2844] = {.lex_state = 96, .external_lex_state = 2}, - [2845] = {.lex_state = 96, .external_lex_state = 2}, - [2846] = {.lex_state = 96, .external_lex_state = 2}, - [2847] = {.lex_state = 96, .external_lex_state = 2}, - [2848] = {.lex_state = 96, .external_lex_state = 2}, - [2849] = {.lex_state = 96, .external_lex_state = 2}, - [2850] = {.lex_state = 96, .external_lex_state = 2}, - [2851] = {.lex_state = 96, .external_lex_state = 2}, - [2852] = {.lex_state = 96, .external_lex_state = 2}, - [2853] = {.lex_state = 96, .external_lex_state = 2}, - [2854] = {.lex_state = 96, .external_lex_state = 2}, - [2855] = {.lex_state = 96, .external_lex_state = 2}, - [2856] = {.lex_state = 96, .external_lex_state = 2}, - [2857] = {.lex_state = 96, .external_lex_state = 2}, - [2858] = {.lex_state = 96, .external_lex_state = 2}, - [2859] = {.lex_state = 96, .external_lex_state = 2}, - [2860] = {.lex_state = 96, .external_lex_state = 2}, - [2861] = {.lex_state = 96, .external_lex_state = 2}, - [2862] = {.lex_state = 96, .external_lex_state = 2}, - [2863] = {.lex_state = 96, .external_lex_state = 2}, - [2864] = {.lex_state = 96, .external_lex_state = 2}, - [2865] = {.lex_state = 96, .external_lex_state = 2}, - [2866] = {.lex_state = 96, .external_lex_state = 2}, - [2867] = {.lex_state = 96, .external_lex_state = 2}, - [2868] = {.lex_state = 96, .external_lex_state = 2}, - [2869] = {.lex_state = 96, .external_lex_state = 2}, - [2870] = {.lex_state = 96, .external_lex_state = 2}, - [2871] = {.lex_state = 96, .external_lex_state = 2}, - [2872] = {.lex_state = 96, .external_lex_state = 2}, - [2873] = {.lex_state = 96, .external_lex_state = 2}, - [2874] = {.lex_state = 96, .external_lex_state = 2}, - [2875] = {.lex_state = 96, .external_lex_state = 2}, - [2876] = {.lex_state = 96, .external_lex_state = 2}, - [2877] = {.lex_state = 96, .external_lex_state = 2}, - [2878] = {.lex_state = 96, .external_lex_state = 2}, - [2879] = {.lex_state = 96, .external_lex_state = 2}, - [2880] = {.lex_state = 15, .external_lex_state = 2}, - [2881] = {.lex_state = 15, .external_lex_state = 2}, - [2882] = {.lex_state = 15, .external_lex_state = 2}, - [2883] = {.lex_state = 15, .external_lex_state = 2}, - [2884] = {.lex_state = 15, .external_lex_state = 2}, - [2885] = {.lex_state = 15, .external_lex_state = 2}, - [2886] = {.lex_state = 15, .external_lex_state = 2}, - [2887] = {.lex_state = 15, .external_lex_state = 2}, - [2888] = {.lex_state = 15, .external_lex_state = 2}, - [2889] = {.lex_state = 15, .external_lex_state = 2}, - [2890] = {.lex_state = 15, .external_lex_state = 2}, - [2891] = {.lex_state = 15, .external_lex_state = 2}, - [2892] = {.lex_state = 15, .external_lex_state = 2}, - [2893] = {.lex_state = 15, .external_lex_state = 2}, - [2894] = {.lex_state = 15, .external_lex_state = 2}, - [2895] = {.lex_state = 15, .external_lex_state = 2}, - [2896] = {.lex_state = 15, .external_lex_state = 2}, - [2897] = {.lex_state = 15, .external_lex_state = 2}, - [2898] = {.lex_state = 15, .external_lex_state = 2}, - [2899] = {.lex_state = 15, .external_lex_state = 2}, - [2900] = {.lex_state = 15, .external_lex_state = 2}, - [2901] = {.lex_state = 15, .external_lex_state = 2}, - [2902] = {.lex_state = 15, .external_lex_state = 2}, - [2903] = {.lex_state = 15, .external_lex_state = 2}, - [2904] = {.lex_state = 15, .external_lex_state = 2}, - [2905] = {.lex_state = 15, .external_lex_state = 2}, - [2906] = {.lex_state = 15, .external_lex_state = 2}, - [2907] = {.lex_state = 15, .external_lex_state = 2}, - [2908] = {.lex_state = 15, .external_lex_state = 2}, - [2909] = {.lex_state = 15, .external_lex_state = 2}, - [2910] = {.lex_state = 15, .external_lex_state = 2}, - [2911] = {.lex_state = 15, .external_lex_state = 2}, - [2912] = {.lex_state = 15, .external_lex_state = 2}, - [2913] = {.lex_state = 15, .external_lex_state = 2}, - [2914] = {.lex_state = 15, .external_lex_state = 2}, - [2915] = {.lex_state = 15, .external_lex_state = 2}, - [2916] = {.lex_state = 15, .external_lex_state = 2}, - [2917] = {.lex_state = 13, .external_lex_state = 5}, - [2918] = {.lex_state = 13, .external_lex_state = 5}, - [2919] = {.lex_state = 96, .external_lex_state = 2}, - [2920] = {.lex_state = 13, .external_lex_state = 2}, - [2921] = {.lex_state = 96, .external_lex_state = 2}, - [2922] = {.lex_state = 14, .external_lex_state = 2}, - [2923] = {.lex_state = 96, .external_lex_state = 2}, - [2924] = {.lex_state = 13, .external_lex_state = 2}, - [2925] = {.lex_state = 14, .external_lex_state = 2}, - [2926] = {.lex_state = 13, .external_lex_state = 2}, - [2927] = {.lex_state = 14, .external_lex_state = 2}, - [2928] = {.lex_state = 13, .external_lex_state = 2}, - [2929] = {.lex_state = 96, .external_lex_state = 2}, - [2930] = {.lex_state = 96, .external_lex_state = 2}, - [2931] = {.lex_state = 15, .external_lex_state = 2}, - [2932] = {.lex_state = 14, .external_lex_state = 2}, - [2933] = {.lex_state = 96, .external_lex_state = 2}, - [2934] = {.lex_state = 15, .external_lex_state = 5}, - [2935] = {.lex_state = 15, .external_lex_state = 5}, - [2936] = {.lex_state = 14, .external_lex_state = 2}, - [2937] = {.lex_state = 15, .external_lex_state = 5}, - [2938] = {.lex_state = 96, .external_lex_state = 2}, - [2939] = {.lex_state = 96, .external_lex_state = 2}, - [2940] = {.lex_state = 96, .external_lex_state = 2}, - [2941] = {.lex_state = 96, .external_lex_state = 2}, - [2942] = {.lex_state = 96, .external_lex_state = 2}, - [2943] = {.lex_state = 96, .external_lex_state = 2}, - [2944] = {.lex_state = 13, .external_lex_state = 2}, - [2945] = {.lex_state = 96, .external_lex_state = 2}, - [2946] = {.lex_state = 96, .external_lex_state = 2}, - [2947] = {.lex_state = 96, .external_lex_state = 2}, - [2948] = {.lex_state = 96, .external_lex_state = 2}, - [2949] = {.lex_state = 96, .external_lex_state = 2}, - [2950] = {.lex_state = 96, .external_lex_state = 2}, - [2951] = {.lex_state = 96, .external_lex_state = 2}, - [2952] = {.lex_state = 96, .external_lex_state = 2}, - [2953] = {.lex_state = 96, .external_lex_state = 2}, - [2954] = {.lex_state = 96, .external_lex_state = 2}, - [2955] = {.lex_state = 96, .external_lex_state = 2}, - [2956] = {.lex_state = 15, .external_lex_state = 5}, - [2957] = {.lex_state = 15, .external_lex_state = 5}, - [2958] = {.lex_state = 15, .external_lex_state = 5}, - [2959] = {.lex_state = 96, .external_lex_state = 2}, - [2960] = {.lex_state = 15, .external_lex_state = 5}, - [2961] = {.lex_state = 96, .external_lex_state = 2}, - [2962] = {.lex_state = 15, .external_lex_state = 5}, - [2963] = {.lex_state = 96, .external_lex_state = 2}, - [2964] = {.lex_state = 15, .external_lex_state = 5}, - [2965] = {.lex_state = 15, .external_lex_state = 5}, - [2966] = {.lex_state = 15, .external_lex_state = 5}, - [2967] = {.lex_state = 15, .external_lex_state = 5}, - [2968] = {.lex_state = 15, .external_lex_state = 5}, - [2969] = {.lex_state = 15, .external_lex_state = 5}, - [2970] = {.lex_state = 15, .external_lex_state = 5}, - [2971] = {.lex_state = 96, .external_lex_state = 2}, - [2972] = {.lex_state = 15, .external_lex_state = 5}, - [2973] = {.lex_state = 15, .external_lex_state = 5}, - [2974] = {.lex_state = 96, .external_lex_state = 2}, - [2975] = {.lex_state = 96, .external_lex_state = 2}, - [2976] = {.lex_state = 96, .external_lex_state = 2}, - [2977] = {.lex_state = 96, .external_lex_state = 2}, - [2978] = {.lex_state = 13, .external_lex_state = 5}, - [2979] = {.lex_state = 15, .external_lex_state = 6}, - [2980] = {.lex_state = 15, .external_lex_state = 6}, - [2981] = {.lex_state = 15, .external_lex_state = 6}, - [2982] = {.lex_state = 4, .external_lex_state = 2}, - [2983] = {.lex_state = 96, .external_lex_state = 2}, - [2984] = {.lex_state = 96, .external_lex_state = 2}, - [2985] = {.lex_state = 96, .external_lex_state = 2}, - [2986] = {.lex_state = 96, .external_lex_state = 2}, - [2987] = {.lex_state = 96, .external_lex_state = 2}, - [2988] = {.lex_state = 15, .external_lex_state = 5}, - [2989] = {.lex_state = 15, .external_lex_state = 5}, - [2990] = {.lex_state = 15, .external_lex_state = 5}, - [2991] = {.lex_state = 15, .external_lex_state = 5}, - [2992] = {.lex_state = 15, .external_lex_state = 5}, - [2993] = {.lex_state = 4, .external_lex_state = 2}, - [2994] = {.lex_state = 15, .external_lex_state = 5}, - [2995] = {.lex_state = 15, .external_lex_state = 5}, - [2996] = {.lex_state = 15, .external_lex_state = 5}, - [2997] = {.lex_state = 96, .external_lex_state = 2}, - [2998] = {.lex_state = 96, .external_lex_state = 2}, - [2999] = {.lex_state = 96, .external_lex_state = 2}, - [3000] = {.lex_state = 96, .external_lex_state = 2}, - [3001] = {.lex_state = 96, .external_lex_state = 2}, - [3002] = {.lex_state = 96, .external_lex_state = 2}, - [3003] = {.lex_state = 15, .external_lex_state = 5}, - [3004] = {.lex_state = 4, .external_lex_state = 2}, - [3005] = {.lex_state = 96, .external_lex_state = 2}, - [3006] = {.lex_state = 96, .external_lex_state = 2}, - [3007] = {.lex_state = 96, .external_lex_state = 2}, - [3008] = {.lex_state = 96, .external_lex_state = 2}, - [3009] = {.lex_state = 96, .external_lex_state = 2}, - [3010] = {.lex_state = 15, .external_lex_state = 5}, - [3011] = {.lex_state = 15, .external_lex_state = 5}, - [3012] = {.lex_state = 96, .external_lex_state = 2}, - [3013] = {.lex_state = 15, .external_lex_state = 5}, - [3014] = {.lex_state = 15, .external_lex_state = 5}, - [3015] = {.lex_state = 15, .external_lex_state = 5}, - [3016] = {.lex_state = 15, .external_lex_state = 5}, - [3017] = {.lex_state = 96, .external_lex_state = 2}, - [3018] = {.lex_state = 15, .external_lex_state = 5}, - [3019] = {.lex_state = 15, .external_lex_state = 5}, - [3020] = {.lex_state = 15, .external_lex_state = 5}, - [3021] = {.lex_state = 15, .external_lex_state = 5}, - [3022] = {.lex_state = 96, .external_lex_state = 2}, - [3023] = {.lex_state = 4, .external_lex_state = 2}, - [3024] = {.lex_state = 96, .external_lex_state = 2}, - [3025] = {.lex_state = 96, .external_lex_state = 2}, - [3026] = {.lex_state = 96, .external_lex_state = 2}, - [3027] = {.lex_state = 96, .external_lex_state = 2}, - [3028] = {.lex_state = 4, .external_lex_state = 2}, - [3029] = {.lex_state = 96, .external_lex_state = 2}, - [3030] = {.lex_state = 4, .external_lex_state = 2}, - [3031] = {.lex_state = 4, .external_lex_state = 2}, - [3032] = {.lex_state = 96, .external_lex_state = 2}, - [3033] = {.lex_state = 96, .external_lex_state = 2}, - [3034] = {.lex_state = 96, .external_lex_state = 2}, - [3035] = {.lex_state = 96, .external_lex_state = 2}, - [3036] = {.lex_state = 96, .external_lex_state = 2}, - [3037] = {.lex_state = 96, .external_lex_state = 2}, - [3038] = {.lex_state = 96, .external_lex_state = 2}, - [3039] = {.lex_state = 96, .external_lex_state = 2}, - [3040] = {.lex_state = 96, .external_lex_state = 2}, - [3041] = {.lex_state = 4, .external_lex_state = 2}, - [3042] = {.lex_state = 4, .external_lex_state = 2}, - [3043] = {.lex_state = 4, .external_lex_state = 2}, - [3044] = {.lex_state = 96, .external_lex_state = 2}, - [3045] = {.lex_state = 96, .external_lex_state = 2}, - [3046] = {.lex_state = 15, .external_lex_state = 5}, - [3047] = {.lex_state = 96, .external_lex_state = 2}, - [3048] = {.lex_state = 12, .external_lex_state = 5}, - [3049] = {.lex_state = 12, .external_lex_state = 5}, - [3050] = {.lex_state = 12, .external_lex_state = 5}, - [3051] = {.lex_state = 12, .external_lex_state = 5}, - [3052] = {.lex_state = 12, .external_lex_state = 5}, - [3053] = {.lex_state = 12, .external_lex_state = 5}, - [3054] = {.lex_state = 96, .external_lex_state = 2}, - [3055] = {.lex_state = 12, .external_lex_state = 5}, - [3056] = {.lex_state = 96, .external_lex_state = 2}, - [3057] = {.lex_state = 12, .external_lex_state = 5}, - [3058] = {.lex_state = 12, .external_lex_state = 5}, - [3059] = {.lex_state = 12, .external_lex_state = 5}, - [3060] = {.lex_state = 12, .external_lex_state = 5}, - [3061] = {.lex_state = 96, .external_lex_state = 2}, - [3062] = {.lex_state = 12, .external_lex_state = 5}, - [3063] = {.lex_state = 12, .external_lex_state = 5}, - [3064] = {.lex_state = 96, .external_lex_state = 2}, - [3065] = {.lex_state = 12, .external_lex_state = 5}, - [3066] = {.lex_state = 96, .external_lex_state = 2}, - [3067] = {.lex_state = 13, .external_lex_state = 5}, - [3068] = {.lex_state = 12, .external_lex_state = 5}, - [3069] = {.lex_state = 96, .external_lex_state = 2}, - [3070] = {.lex_state = 12, .external_lex_state = 5}, - [3071] = {.lex_state = 12, .external_lex_state = 5}, - [3072] = {.lex_state = 12, .external_lex_state = 5}, - [3073] = {.lex_state = 12, .external_lex_state = 5}, - [3074] = {.lex_state = 96, .external_lex_state = 2}, - [3075] = {.lex_state = 12, .external_lex_state = 5}, - [3076] = {.lex_state = 96, .external_lex_state = 2}, - [3077] = {.lex_state = 12, .external_lex_state = 5}, - [3078] = {.lex_state = 12, .external_lex_state = 5}, - [3079] = {.lex_state = 12, .external_lex_state = 5}, - [3080] = {.lex_state = 96, .external_lex_state = 2}, - [3081] = {.lex_state = 96, .external_lex_state = 5}, - [3082] = {.lex_state = 12, .external_lex_state = 5}, - [3083] = {.lex_state = 12, .external_lex_state = 5}, - [3084] = {.lex_state = 12, .external_lex_state = 5}, - [3085] = {.lex_state = 12, .external_lex_state = 5}, - [3086] = {.lex_state = 12, .external_lex_state = 5}, - [3087] = {.lex_state = 96, .external_lex_state = 2}, - [3088] = {.lex_state = 96, .external_lex_state = 2}, - [3089] = {.lex_state = 96, .external_lex_state = 2}, - [3090] = {.lex_state = 13, .external_lex_state = 5}, - [3091] = {.lex_state = 14, .external_lex_state = 5}, - [3092] = {.lex_state = 15, .external_lex_state = 6}, - [3093] = {.lex_state = 15, .external_lex_state = 6}, - [3094] = {.lex_state = 15, .external_lex_state = 6}, - [3095] = {.lex_state = 96, .external_lex_state = 5}, - [3096] = {.lex_state = 15, .external_lex_state = 6}, - [3097] = {.lex_state = 12, .external_lex_state = 5}, - [3098] = {.lex_state = 15, .external_lex_state = 6}, - [3099] = {.lex_state = 15, .external_lex_state = 6}, - [3100] = {.lex_state = 15, .external_lex_state = 6}, - [3101] = {.lex_state = 96, .external_lex_state = 5}, - [3102] = {.lex_state = 96, .external_lex_state = 5}, - [3103] = {.lex_state = 15, .external_lex_state = 6}, - [3104] = {.lex_state = 15, .external_lex_state = 6}, - [3105] = {.lex_state = 15, .external_lex_state = 6}, - [3106] = {.lex_state = 15, .external_lex_state = 6}, - [3107] = {.lex_state = 96, .external_lex_state = 5}, - [3108] = {.lex_state = 12, .external_lex_state = 5}, - [3109] = {.lex_state = 96, .external_lex_state = 2}, - [3110] = {.lex_state = 96, .external_lex_state = 5}, - [3111] = {.lex_state = 15, .external_lex_state = 6}, - [3112] = {.lex_state = 15, .external_lex_state = 6}, - [3113] = {.lex_state = 15, .external_lex_state = 6}, - [3114] = {.lex_state = 12, .external_lex_state = 5}, - [3115] = {.lex_state = 12, .external_lex_state = 2}, - [3116] = {.lex_state = 96, .external_lex_state = 2}, - [3117] = {.lex_state = 14, .external_lex_state = 5}, - [3118] = {.lex_state = 12, .external_lex_state = 5}, - [3119] = {.lex_state = 15, .external_lex_state = 6}, - [3120] = {.lex_state = 15, .external_lex_state = 6}, - [3121] = {.lex_state = 15, .external_lex_state = 6}, - [3122] = {.lex_state = 15, .external_lex_state = 6}, - [3123] = {.lex_state = 15, .external_lex_state = 6}, - [3124] = {.lex_state = 96, .external_lex_state = 2}, - [3125] = {.lex_state = 96, .external_lex_state = 2}, - [3126] = {.lex_state = 15, .external_lex_state = 6}, - [3127] = {.lex_state = 15, .external_lex_state = 6}, - [3128] = {.lex_state = 14, .external_lex_state = 5}, - [3129] = {.lex_state = 15, .external_lex_state = 6}, - [3130] = {.lex_state = 15, .external_lex_state = 6}, - [3131] = {.lex_state = 15, .external_lex_state = 6}, - [3132] = {.lex_state = 15, .external_lex_state = 6}, - [3133] = {.lex_state = 15, .external_lex_state = 6}, - [3134] = {.lex_state = 15, .external_lex_state = 6}, - [3135] = {.lex_state = 15, .external_lex_state = 6}, - [3136] = {.lex_state = 15, .external_lex_state = 6}, - [3137] = {.lex_state = 15, .external_lex_state = 6}, - [3138] = {.lex_state = 15, .external_lex_state = 6}, - [3139] = {.lex_state = 15, .external_lex_state = 6}, - [3140] = {.lex_state = 15, .external_lex_state = 6}, - [3141] = {.lex_state = 12, .external_lex_state = 5}, - [3142] = {.lex_state = 12, .external_lex_state = 5}, - [3143] = {.lex_state = 14, .external_lex_state = 5}, - [3144] = {.lex_state = 12, .external_lex_state = 5}, - [3145] = {.lex_state = 12, .external_lex_state = 5}, - [3146] = {.lex_state = 14, .external_lex_state = 5}, - [3147] = {.lex_state = 14, .external_lex_state = 5}, - [3148] = {.lex_state = 96, .external_lex_state = 2}, - [3149] = {.lex_state = 13, .external_lex_state = 6}, - [3150] = {.lex_state = 96, .external_lex_state = 2}, - [3151] = {.lex_state = 14, .external_lex_state = 5}, - [3152] = {.lex_state = 96, .external_lex_state = 2}, - [3153] = {.lex_state = 13, .external_lex_state = 5}, - [3154] = {.lex_state = 96, .external_lex_state = 2}, - [3155] = {.lex_state = 96, .external_lex_state = 5}, - [3156] = {.lex_state = 13, .external_lex_state = 5}, - [3157] = {.lex_state = 12, .external_lex_state = 5}, - [3158] = {.lex_state = 12, .external_lex_state = 5}, - [3159] = {.lex_state = 14, .external_lex_state = 5}, - [3160] = {.lex_state = 15, .external_lex_state = 6}, - [3161] = {.lex_state = 12, .external_lex_state = 5}, - [3162] = {.lex_state = 96, .external_lex_state = 5}, - [3163] = {.lex_state = 12, .external_lex_state = 5}, - [3164] = {.lex_state = 12, .external_lex_state = 5}, - [3165] = {.lex_state = 12, .external_lex_state = 5}, - [3166] = {.lex_state = 12, .external_lex_state = 5}, - [3167] = {.lex_state = 12, .external_lex_state = 5}, - [3168] = {.lex_state = 15, .external_lex_state = 2}, - [3169] = {.lex_state = 12, .external_lex_state = 5}, - [3170] = {.lex_state = 96, .external_lex_state = 5}, - [3171] = {.lex_state = 96, .external_lex_state = 5}, - [3172] = {.lex_state = 12, .external_lex_state = 5}, - [3173] = {.lex_state = 12, .external_lex_state = 5}, - [3174] = {.lex_state = 12, .external_lex_state = 5}, - [3175] = {.lex_state = 12, .external_lex_state = 5}, - [3176] = {.lex_state = 12, .external_lex_state = 5}, - [3177] = {.lex_state = 12, .external_lex_state = 5}, - [3178] = {.lex_state = 12, .external_lex_state = 5}, - [3179] = {.lex_state = 12, .external_lex_state = 5}, - [3180] = {.lex_state = 12, .external_lex_state = 5}, - [3181] = {.lex_state = 12, .external_lex_state = 5}, - [3182] = {.lex_state = 12, .external_lex_state = 5}, - [3183] = {.lex_state = 12, .external_lex_state = 5}, - [3184] = {.lex_state = 12, .external_lex_state = 5}, - [3185] = {.lex_state = 96, .external_lex_state = 2}, - [3186] = {.lex_state = 12, .external_lex_state = 5}, - [3187] = {.lex_state = 96, .external_lex_state = 6}, - [3188] = {.lex_state = 12, .external_lex_state = 5}, - [3189] = {.lex_state = 96, .external_lex_state = 5}, - [3190] = {.lex_state = 12, .external_lex_state = 2}, - [3191] = {.lex_state = 96, .external_lex_state = 5}, - [3192] = {.lex_state = 12, .external_lex_state = 2}, - [3193] = {.lex_state = 12, .external_lex_state = 2}, - [3194] = {.lex_state = 96, .external_lex_state = 5}, - [3195] = {.lex_state = 12, .external_lex_state = 5}, - [3196] = {.lex_state = 12, .external_lex_state = 5}, - [3197] = {.lex_state = 96, .external_lex_state = 5}, - [3198] = {.lex_state = 12, .external_lex_state = 5}, - [3199] = {.lex_state = 12, .external_lex_state = 5}, - [3200] = {.lex_state = 96, .external_lex_state = 5}, - [3201] = {.lex_state = 12, .external_lex_state = 5}, - [3202] = {.lex_state = 96, .external_lex_state = 5}, - [3203] = {.lex_state = 96, .external_lex_state = 5}, - [3204] = {.lex_state = 12, .external_lex_state = 5}, - [3205] = {.lex_state = 12, .external_lex_state = 5}, - [3206] = {.lex_state = 15, .external_lex_state = 2}, - [3207] = {.lex_state = 12, .external_lex_state = 5}, - [3208] = {.lex_state = 12, .external_lex_state = 5}, - [3209] = {.lex_state = 12, .external_lex_state = 5}, - [3210] = {.lex_state = 15, .external_lex_state = 2}, - [3211] = {.lex_state = 12, .external_lex_state = 5}, - [3212] = {.lex_state = 12, .external_lex_state = 5}, - [3213] = {.lex_state = 13, .external_lex_state = 6}, - [3214] = {.lex_state = 12, .external_lex_state = 5}, - [3215] = {.lex_state = 12, .external_lex_state = 5}, - [3216] = {.lex_state = 12, .external_lex_state = 5}, - [3217] = {.lex_state = 96, .external_lex_state = 2}, - [3218] = {.lex_state = 12, .external_lex_state = 5}, - [3219] = {.lex_state = 96, .external_lex_state = 5}, - [3220] = {.lex_state = 12, .external_lex_state = 5}, - [3221] = {.lex_state = 14, .external_lex_state = 6}, - [3222] = {.lex_state = 96, .external_lex_state = 5}, - [3223] = {.lex_state = 96, .external_lex_state = 5}, - [3224] = {.lex_state = 96, .external_lex_state = 5}, - [3225] = {.lex_state = 96, .external_lex_state = 5}, - [3226] = {.lex_state = 96, .external_lex_state = 5}, - [3227] = {.lex_state = 96, .external_lex_state = 5}, - [3228] = {.lex_state = 96, .external_lex_state = 5}, - [3229] = {.lex_state = 96, .external_lex_state = 5}, - [3230] = {.lex_state = 96, .external_lex_state = 5}, - [3231] = {.lex_state = 96, .external_lex_state = 5}, - [3232] = {.lex_state = 96, .external_lex_state = 5}, - [3233] = {.lex_state = 13, .external_lex_state = 6}, - [3234] = {.lex_state = 96, .external_lex_state = 5}, - [3235] = {.lex_state = 96, .external_lex_state = 5}, - [3236] = {.lex_state = 96, .external_lex_state = 2}, - [3237] = {.lex_state = 96, .external_lex_state = 5}, - [3238] = {.lex_state = 96, .external_lex_state = 5}, - [3239] = {.lex_state = 14, .external_lex_state = 6}, - [3240] = {.lex_state = 96, .external_lex_state = 5}, - [3241] = {.lex_state = 14, .external_lex_state = 6}, - [3242] = {.lex_state = 96, .external_lex_state = 5}, - [3243] = {.lex_state = 96, .external_lex_state = 5}, - [3244] = {.lex_state = 96, .external_lex_state = 5}, - [3245] = {.lex_state = 13, .external_lex_state = 6}, - [3246] = {.lex_state = 96, .external_lex_state = 5}, - [3247] = {.lex_state = 96, .external_lex_state = 5}, - [3248] = {.lex_state = 96, .external_lex_state = 6}, - [3249] = {.lex_state = 14, .external_lex_state = 6}, - [3250] = {.lex_state = 96, .external_lex_state = 5}, - [3251] = {.lex_state = 96, .external_lex_state = 5}, - [3252] = {.lex_state = 96, .external_lex_state = 5}, - [3253] = {.lex_state = 96, .external_lex_state = 5}, - [3254] = {.lex_state = 14, .external_lex_state = 6}, - [3255] = {.lex_state = 96, .external_lex_state = 5}, - [3256] = {.lex_state = 96, .external_lex_state = 5}, - [3257] = {.lex_state = 96, .external_lex_state = 5}, - [3258] = {.lex_state = 96, .external_lex_state = 5}, - [3259] = {.lex_state = 12, .external_lex_state = 5}, - [3260] = {.lex_state = 96, .external_lex_state = 5}, - [3261] = {.lex_state = 96, .external_lex_state = 5}, - [3262] = {.lex_state = 12, .external_lex_state = 5}, - [3263] = {.lex_state = 96, .external_lex_state = 6}, - [3264] = {.lex_state = 96, .external_lex_state = 6}, - [3265] = {.lex_state = 96, .external_lex_state = 5}, - [3266] = {.lex_state = 96, .external_lex_state = 5}, - [3267] = {.lex_state = 96, .external_lex_state = 6}, - [3268] = {.lex_state = 96, .external_lex_state = 5}, - [3269] = {.lex_state = 13, .external_lex_state = 6}, - [3270] = {.lex_state = 96, .external_lex_state = 5}, - [3271] = {.lex_state = 96, .external_lex_state = 5}, - [3272] = {.lex_state = 96, .external_lex_state = 6}, - [3273] = {.lex_state = 96, .external_lex_state = 5}, - [3274] = {.lex_state = 96, .external_lex_state = 5}, - [3275] = {.lex_state = 96, .external_lex_state = 5}, - [3276] = {.lex_state = 96, .external_lex_state = 5}, - [3277] = {.lex_state = 12, .external_lex_state = 2}, - [3278] = {.lex_state = 96, .external_lex_state = 5}, - [3279] = {.lex_state = 96, .external_lex_state = 5}, - [3280] = {.lex_state = 14, .external_lex_state = 6}, - [3281] = {.lex_state = 12, .external_lex_state = 5}, - [3282] = {.lex_state = 96, .external_lex_state = 5}, - [3283] = {.lex_state = 96, .external_lex_state = 5}, - [3284] = {.lex_state = 96, .external_lex_state = 5}, - [3285] = {.lex_state = 96, .external_lex_state = 5}, - [3286] = {.lex_state = 96, .external_lex_state = 5}, - [3287] = {.lex_state = 96, .external_lex_state = 5}, - [3288] = {.lex_state = 96, .external_lex_state = 5}, - [3289] = {.lex_state = 96, .external_lex_state = 5}, - [3290] = {.lex_state = 14, .external_lex_state = 6}, - [3291] = {.lex_state = 96, .external_lex_state = 6}, - [3292] = {.lex_state = 14, .external_lex_state = 6}, - [3293] = {.lex_state = 96, .external_lex_state = 5}, - [3294] = {.lex_state = 13, .external_lex_state = 2}, - [3295] = {.lex_state = 96, .external_lex_state = 2}, - [3296] = {.lex_state = 96, .external_lex_state = 2}, - [3297] = {.lex_state = 13, .external_lex_state = 2}, - [3298] = {.lex_state = 96, .external_lex_state = 6}, - [3299] = {.lex_state = 96, .external_lex_state = 2}, - [3300] = {.lex_state = 96, .external_lex_state = 6}, - [3301] = {.lex_state = 96, .external_lex_state = 6}, - [3302] = {.lex_state = 13, .external_lex_state = 2}, - [3303] = {.lex_state = 13, .external_lex_state = 2}, - [3304] = {.lex_state = 96, .external_lex_state = 2}, - [3305] = {.lex_state = 13, .external_lex_state = 2}, - [3306] = {.lex_state = 13, .external_lex_state = 2}, - [3307] = {.lex_state = 13, .external_lex_state = 2}, - [3308] = {.lex_state = 12, .external_lex_state = 2}, - [3309] = {.lex_state = 13, .external_lex_state = 2}, - [3310] = {.lex_state = 96, .external_lex_state = 6}, - [3311] = {.lex_state = 13, .external_lex_state = 2}, - [3312] = {.lex_state = 96, .external_lex_state = 5}, - [3313] = {.lex_state = 96, .external_lex_state = 6}, - [3314] = {.lex_state = 96, .external_lex_state = 6}, - [3315] = {.lex_state = 96, .external_lex_state = 2}, - [3316] = {.lex_state = 12, .external_lex_state = 5}, - [3317] = {.lex_state = 96, .external_lex_state = 5}, - [3318] = {.lex_state = 96, .external_lex_state = 6}, - [3319] = {.lex_state = 96, .external_lex_state = 6}, - [3320] = {.lex_state = 96, .external_lex_state = 5}, - [3321] = {.lex_state = 96, .external_lex_state = 5}, - [3322] = {.lex_state = 13, .external_lex_state = 2}, - [3323] = {.lex_state = 13, .external_lex_state = 2}, - [3324] = {.lex_state = 96, .external_lex_state = 5}, - [3325] = {.lex_state = 96, .external_lex_state = 5}, - [3326] = {.lex_state = 96, .external_lex_state = 6}, - [3327] = {.lex_state = 96, .external_lex_state = 6}, - [3328] = {.lex_state = 11, .external_lex_state = 2}, - [3329] = {.lex_state = 96, .external_lex_state = 6}, - [3330] = {.lex_state = 96, .external_lex_state = 6}, - [3331] = {.lex_state = 13, .external_lex_state = 2}, - [3332] = {.lex_state = 96, .external_lex_state = 2}, - [3333] = {.lex_state = 96, .external_lex_state = 6}, - [3334] = {.lex_state = 96, .external_lex_state = 6}, - [3335] = {.lex_state = 96, .external_lex_state = 5}, - [3336] = {.lex_state = 96, .external_lex_state = 5}, - [3337] = {.lex_state = 96, .external_lex_state = 2}, - [3338] = {.lex_state = 96, .external_lex_state = 6}, - [3339] = {.lex_state = 96, .external_lex_state = 6}, - [3340] = {.lex_state = 96, .external_lex_state = 6}, - [3341] = {.lex_state = 96, .external_lex_state = 6}, - [3342] = {.lex_state = 96, .external_lex_state = 6}, - [3343] = {.lex_state = 96, .external_lex_state = 6}, - [3344] = {.lex_state = 96, .external_lex_state = 6}, - [3345] = {.lex_state = 13, .external_lex_state = 2}, - [3346] = {.lex_state = 12, .external_lex_state = 2}, - [3347] = {.lex_state = 96, .external_lex_state = 6}, - [3348] = {.lex_state = 96, .external_lex_state = 2}, - [3349] = {.lex_state = 12, .external_lex_state = 2}, - [3350] = {.lex_state = 96, .external_lex_state = 5}, - [3351] = {.lex_state = 96, .external_lex_state = 5}, - [3352] = {.lex_state = 11, .external_lex_state = 2}, - [3353] = {.lex_state = 96, .external_lex_state = 5}, - [3354] = {.lex_state = 96, .external_lex_state = 6}, - [3355] = {.lex_state = 96, .external_lex_state = 6}, - [3356] = {.lex_state = 13, .external_lex_state = 2}, - [3357] = {.lex_state = 96, .external_lex_state = 6}, - [3358] = {.lex_state = 96, .external_lex_state = 5}, - [3359] = {.lex_state = 96, .external_lex_state = 6}, - [3360] = {.lex_state = 96, .external_lex_state = 5}, - [3361] = {.lex_state = 96, .external_lex_state = 5}, - [3362] = {.lex_state = 96, .external_lex_state = 2}, - [3363] = {.lex_state = 96, .external_lex_state = 5}, - [3364] = {.lex_state = 96, .external_lex_state = 6}, - [3365] = {.lex_state = 96, .external_lex_state = 6}, - [3366] = {.lex_state = 96, .external_lex_state = 6}, - [3367] = {.lex_state = 96, .external_lex_state = 6}, - [3368] = {.lex_state = 96, .external_lex_state = 6}, - [3369] = {.lex_state = 96, .external_lex_state = 6}, - [3370] = {.lex_state = 96, .external_lex_state = 6}, - [3371] = {.lex_state = 13, .external_lex_state = 2}, - [3372] = {.lex_state = 96, .external_lex_state = 5}, - [3373] = {.lex_state = 96, .external_lex_state = 5}, - [3374] = {.lex_state = 96, .external_lex_state = 6}, - [3375] = {.lex_state = 96, .external_lex_state = 5}, - [3376] = {.lex_state = 96, .external_lex_state = 5}, - [3377] = {.lex_state = 96, .external_lex_state = 2}, - [3378] = {.lex_state = 96, .external_lex_state = 5}, - [3379] = {.lex_state = 96, .external_lex_state = 6}, - [3380] = {.lex_state = 96, .external_lex_state = 6}, - [3381] = {.lex_state = 96, .external_lex_state = 6}, - [3382] = {.lex_state = 96, .external_lex_state = 6}, - [3383] = {.lex_state = 96, .external_lex_state = 6}, - [3384] = {.lex_state = 96, .external_lex_state = 6}, - [3385] = {.lex_state = 96, .external_lex_state = 6}, - [3386] = {.lex_state = 96, .external_lex_state = 5}, - [3387] = {.lex_state = 96, .external_lex_state = 5}, - [3388] = {.lex_state = 96, .external_lex_state = 5}, - [3389] = {.lex_state = 96, .external_lex_state = 5}, - [3390] = {.lex_state = 96, .external_lex_state = 6}, - [3391] = {.lex_state = 96, .external_lex_state = 5}, - [3392] = {.lex_state = 96, .external_lex_state = 6}, - [3393] = {.lex_state = 96, .external_lex_state = 6}, - [3394] = {.lex_state = 96, .external_lex_state = 5}, - [3395] = {.lex_state = 96, .external_lex_state = 5}, - [3396] = {.lex_state = 13, .external_lex_state = 2}, - [3397] = {.lex_state = 96, .external_lex_state = 6}, - [3398] = {.lex_state = 96, .external_lex_state = 5}, - [3399] = {.lex_state = 96, .external_lex_state = 6}, - [3400] = {.lex_state = 96, .external_lex_state = 5}, - [3401] = {.lex_state = 96, .external_lex_state = 5}, - [3402] = {.lex_state = 96, .external_lex_state = 6}, - [3403] = {.lex_state = 96, .external_lex_state = 5}, - [3404] = {.lex_state = 96, .external_lex_state = 6}, - [3405] = {.lex_state = 96, .external_lex_state = 6}, - [3406] = {.lex_state = 96, .external_lex_state = 5}, - [3407] = {.lex_state = 96, .external_lex_state = 6}, - [3408] = {.lex_state = 96, .external_lex_state = 6}, - [3409] = {.lex_state = 96, .external_lex_state = 6}, - [3410] = {.lex_state = 96, .external_lex_state = 5}, - [3411] = {.lex_state = 96, .external_lex_state = 5}, - [3412] = {.lex_state = 12, .external_lex_state = 2}, - [3413] = {.lex_state = 96, .external_lex_state = 6}, - [3414] = {.lex_state = 12, .external_lex_state = 2}, - [3415] = {.lex_state = 96, .external_lex_state = 2}, - [3416] = {.lex_state = 96, .external_lex_state = 5}, - [3417] = {.lex_state = 13, .external_lex_state = 2}, - [3418] = {.lex_state = 13, .external_lex_state = 2}, - [3419] = {.lex_state = 13, .external_lex_state = 2}, - [3420] = {.lex_state = 13, .external_lex_state = 2}, - [3421] = {.lex_state = 11, .external_lex_state = 2}, - [3422] = {.lex_state = 96, .external_lex_state = 6}, - [3423] = {.lex_state = 96, .external_lex_state = 6}, - [3424] = {.lex_state = 96, .external_lex_state = 6}, - [3425] = {.lex_state = 96, .external_lex_state = 6}, - [3426] = {.lex_state = 96, .external_lex_state = 6}, - [3427] = {.lex_state = 96, .external_lex_state = 6}, - [3428] = {.lex_state = 96, .external_lex_state = 6}, - [3429] = {.lex_state = 13, .external_lex_state = 2}, - [3430] = {.lex_state = 13, .external_lex_state = 2}, - [3431] = {.lex_state = 96, .external_lex_state = 5}, - [3432] = {.lex_state = 96, .external_lex_state = 6}, - [3433] = {.lex_state = 12, .external_lex_state = 2}, - [3434] = {.lex_state = 96, .external_lex_state = 5}, - [3435] = {.lex_state = 96, .external_lex_state = 2}, - [3436] = {.lex_state = 13, .external_lex_state = 2}, - [3437] = {.lex_state = 12, .external_lex_state = 2}, - [3438] = {.lex_state = 96, .external_lex_state = 5}, - [3439] = {.lex_state = 96, .external_lex_state = 5}, - [3440] = {.lex_state = 13, .external_lex_state = 2}, - [3441] = {.lex_state = 96, .external_lex_state = 5}, - [3442] = {.lex_state = 96, .external_lex_state = 6}, - [3443] = {.lex_state = 96, .external_lex_state = 5}, - [3444] = {.lex_state = 12, .external_lex_state = 2}, - [3445] = {.lex_state = 96, .external_lex_state = 2}, - [3446] = {.lex_state = 96, .external_lex_state = 6}, - [3447] = {.lex_state = 96, .external_lex_state = 5}, - [3448] = {.lex_state = 12, .external_lex_state = 2}, - [3449] = {.lex_state = 13, .external_lex_state = 2}, - [3450] = {.lex_state = 13, .external_lex_state = 2}, - [3451] = {.lex_state = 96, .external_lex_state = 5}, - [3452] = {.lex_state = 13, .external_lex_state = 2}, - [3453] = {.lex_state = 13, .external_lex_state = 2}, - [3454] = {.lex_state = 96, .external_lex_state = 5}, - [3455] = {.lex_state = 96, .external_lex_state = 5}, - [3456] = {.lex_state = 96, .external_lex_state = 2}, - [3457] = {.lex_state = 13, .external_lex_state = 2}, - [3458] = {.lex_state = 96, .external_lex_state = 5}, - [3459] = {.lex_state = 13, .external_lex_state = 2}, - [3460] = {.lex_state = 96, .external_lex_state = 5}, - [3461] = {.lex_state = 96, .external_lex_state = 5}, - [3462] = {.lex_state = 96, .external_lex_state = 2}, - [3463] = {.lex_state = 96, .external_lex_state = 5}, - [3464] = {.lex_state = 96, .external_lex_state = 5}, - [3465] = {.lex_state = 96, .external_lex_state = 5}, - [3466] = {.lex_state = 96, .external_lex_state = 5}, - [3467] = {.lex_state = 96, .external_lex_state = 6}, - [3468] = {.lex_state = 96, .external_lex_state = 5}, - [3469] = {.lex_state = 96, .external_lex_state = 5}, - [3470] = {.lex_state = 96, .external_lex_state = 5}, - [3471] = {.lex_state = 96, .external_lex_state = 2}, - [3472] = {.lex_state = 96, .external_lex_state = 5}, - [3473] = {.lex_state = 96, .external_lex_state = 5}, - [3474] = {.lex_state = 18, .external_lex_state = 7}, - [3475] = {.lex_state = 18, .external_lex_state = 7}, - [3476] = {.lex_state = 18, .external_lex_state = 7}, - [3477] = {.lex_state = 18, .external_lex_state = 2}, - [3478] = {.lex_state = 18, .external_lex_state = 7}, - [3479] = {.lex_state = 96, .external_lex_state = 5}, - [3480] = {.lex_state = 96, .external_lex_state = 2}, - [3481] = {.lex_state = 14, .external_lex_state = 2}, - [3482] = {.lex_state = 96, .external_lex_state = 5}, - [3483] = {.lex_state = 18, .external_lex_state = 2}, - [3484] = {.lex_state = 96, .external_lex_state = 2}, - [3485] = {.lex_state = 18, .external_lex_state = 7}, - [3486] = {.lex_state = 96, .external_lex_state = 2}, - [3487] = {.lex_state = 96, .external_lex_state = 2}, - [3488] = {.lex_state = 18, .external_lex_state = 7}, - [3489] = {.lex_state = 96, .external_lex_state = 2}, - [3490] = {.lex_state = 18, .external_lex_state = 7}, - [3491] = {.lex_state = 96, .external_lex_state = 5}, - [3492] = {.lex_state = 96, .external_lex_state = 2}, - [3493] = {.lex_state = 96, .external_lex_state = 2}, - [3494] = {.lex_state = 14, .external_lex_state = 2}, - [3495] = {.lex_state = 12, .external_lex_state = 2}, - [3496] = {.lex_state = 96, .external_lex_state = 6}, - [3497] = {.lex_state = 18, .external_lex_state = 2}, - [3498] = {.lex_state = 14, .external_lex_state = 2}, - [3499] = {.lex_state = 18, .external_lex_state = 2}, - [3500] = {.lex_state = 96, .external_lex_state = 5}, - [3501] = {.lex_state = 96, .external_lex_state = 2}, - [3502] = {.lex_state = 18, .external_lex_state = 2}, - [3503] = {.lex_state = 96, .external_lex_state = 2}, - [3504] = {.lex_state = 96, .external_lex_state = 2}, - [3505] = {.lex_state = 18, .external_lex_state = 2}, - [3506] = {.lex_state = 96, .external_lex_state = 2}, - [3507] = {.lex_state = 18, .external_lex_state = 7}, - [3508] = {.lex_state = 18, .external_lex_state = 2}, - [3509] = {.lex_state = 18, .external_lex_state = 2}, - [3510] = {.lex_state = 18, .external_lex_state = 2}, - [3511] = {.lex_state = 96, .external_lex_state = 2}, - [3512] = {.lex_state = 12, .external_lex_state = 2}, - [3513] = {.lex_state = 96, .external_lex_state = 2}, - [3514] = {.lex_state = 15, .external_lex_state = 2}, - [3515] = {.lex_state = 96, .external_lex_state = 5}, - [3516] = {.lex_state = 96, .external_lex_state = 5}, - [3517] = {.lex_state = 96, .external_lex_state = 5}, - [3518] = {.lex_state = 96, .external_lex_state = 2}, - [3519] = {.lex_state = 96, .external_lex_state = 5}, - [3520] = {.lex_state = 96, .external_lex_state = 5}, - [3521] = {.lex_state = 96, .external_lex_state = 2}, - [3522] = {.lex_state = 96, .external_lex_state = 5}, - [3523] = {.lex_state = 96, .external_lex_state = 5}, - [3524] = {.lex_state = 96, .external_lex_state = 5}, - [3525] = {.lex_state = 96, .external_lex_state = 5}, - [3526] = {.lex_state = 96, .external_lex_state = 5}, - [3527] = {.lex_state = 96, .external_lex_state = 5}, - [3528] = {.lex_state = 12, .external_lex_state = 2}, - [3529] = {.lex_state = 96, .external_lex_state = 5}, - [3530] = {.lex_state = 96, .external_lex_state = 5}, - [3531] = {.lex_state = 96, .external_lex_state = 5}, - [3532] = {.lex_state = 96, .external_lex_state = 5}, - [3533] = {.lex_state = 96, .external_lex_state = 2}, - [3534] = {.lex_state = 96, .external_lex_state = 5}, - [3535] = {.lex_state = 96, .external_lex_state = 5}, - [3536] = {.lex_state = 96, .external_lex_state = 5}, - [3537] = {.lex_state = 96, .external_lex_state = 5}, - [3538] = {.lex_state = 96, .external_lex_state = 5}, - [3539] = {.lex_state = 96, .external_lex_state = 5}, - [3540] = {.lex_state = 96, .external_lex_state = 5}, - [3541] = {.lex_state = 15, .external_lex_state = 2}, - [3542] = {.lex_state = 96, .external_lex_state = 5}, - [3543] = {.lex_state = 96, .external_lex_state = 5}, - [3544] = {.lex_state = 96, .external_lex_state = 2}, - [3545] = {.lex_state = 96, .external_lex_state = 2}, - [3546] = {.lex_state = 96, .external_lex_state = 2}, - [3547] = {.lex_state = 96, .external_lex_state = 2}, - [3548] = {.lex_state = 12, .external_lex_state = 2}, - [3549] = {.lex_state = 12, .external_lex_state = 2}, - [3550] = {.lex_state = 96, .external_lex_state = 5}, - [3551] = {.lex_state = 96, .external_lex_state = 5}, - [3552] = {.lex_state = 12, .external_lex_state = 2}, - [3553] = {.lex_state = 96, .external_lex_state = 2}, - [3554] = {.lex_state = 96, .external_lex_state = 5}, - [3555] = {.lex_state = 96, .external_lex_state = 5}, - [3556] = {.lex_state = 15, .external_lex_state = 2}, - [3557] = {.lex_state = 96, .external_lex_state = 5}, - [3558] = {.lex_state = 96, .external_lex_state = 5}, - [3559] = {.lex_state = 96, .external_lex_state = 5}, - [3560] = {.lex_state = 96, .external_lex_state = 5}, - [3561] = {.lex_state = 96, .external_lex_state = 2}, - [3562] = {.lex_state = 96, .external_lex_state = 2}, - [3563] = {.lex_state = 96, .external_lex_state = 2}, - [3564] = {.lex_state = 96, .external_lex_state = 5}, - [3565] = {.lex_state = 96, .external_lex_state = 5}, - [3566] = {.lex_state = 15, .external_lex_state = 2}, - [3567] = {.lex_state = 96, .external_lex_state = 5}, - [3568] = {.lex_state = 96, .external_lex_state = 5}, - [3569] = {.lex_state = 96, .external_lex_state = 2}, - [3570] = {.lex_state = 96, .external_lex_state = 5}, - [3571] = {.lex_state = 96, .external_lex_state = 2}, - [3572] = {.lex_state = 96, .external_lex_state = 2}, - [3573] = {.lex_state = 96, .external_lex_state = 5}, - [3574] = {.lex_state = 96, .external_lex_state = 2}, - [3575] = {.lex_state = 96, .external_lex_state = 2}, - [3576] = {.lex_state = 96, .external_lex_state = 2}, - [3577] = {.lex_state = 96, .external_lex_state = 5}, - [3578] = {.lex_state = 96, .external_lex_state = 5}, - [3579] = {.lex_state = 96, .external_lex_state = 2}, - [3580] = {.lex_state = 96, .external_lex_state = 5}, - [3581] = {.lex_state = 96, .external_lex_state = 5}, - [3582] = {.lex_state = 96, .external_lex_state = 2}, - [3583] = {.lex_state = 96, .external_lex_state = 5}, - [3584] = {.lex_state = 96, .external_lex_state = 5}, - [3585] = {.lex_state = 96, .external_lex_state = 5}, - [3586] = {.lex_state = 96, .external_lex_state = 5}, - [3587] = {.lex_state = 96, .external_lex_state = 5}, - [3588] = {.lex_state = 96, .external_lex_state = 5}, - [3589] = {.lex_state = 96, .external_lex_state = 5}, - [3590] = {.lex_state = 96, .external_lex_state = 5}, - [3591] = {.lex_state = 96, .external_lex_state = 5}, - [3592] = {.lex_state = 96, .external_lex_state = 2}, - [3593] = {.lex_state = 96, .external_lex_state = 2}, - [3594] = {.lex_state = 12, .external_lex_state = 2}, - [3595] = {.lex_state = 96, .external_lex_state = 5}, - [3596] = {.lex_state = 15, .external_lex_state = 2}, - [3597] = {.lex_state = 12, .external_lex_state = 2}, - [3598] = {.lex_state = 96, .external_lex_state = 5}, - [3599] = {.lex_state = 15, .external_lex_state = 2}, - [3600] = {.lex_state = 96, .external_lex_state = 2}, - [3601] = {.lex_state = 96, .external_lex_state = 5}, - [3602] = {.lex_state = 96, .external_lex_state = 5}, - [3603] = {.lex_state = 96, .external_lex_state = 5}, - [3604] = {.lex_state = 96, .external_lex_state = 5}, - [3605] = {.lex_state = 15, .external_lex_state = 2}, - [3606] = {.lex_state = 96, .external_lex_state = 2}, - [3607] = {.lex_state = 96, .external_lex_state = 2}, - [3608] = {.lex_state = 15, .external_lex_state = 2}, - [3609] = {.lex_state = 96, .external_lex_state = 2}, - [3610] = {.lex_state = 96, .external_lex_state = 2}, - [3611] = {.lex_state = 96, .external_lex_state = 5}, - [3612] = {.lex_state = 96, .external_lex_state = 5}, - [3613] = {.lex_state = 96, .external_lex_state = 2}, - [3614] = {.lex_state = 96, .external_lex_state = 5}, - [3615] = {.lex_state = 96, .external_lex_state = 5}, - [3616] = {.lex_state = 15, .external_lex_state = 2}, - [3617] = {.lex_state = 15, .external_lex_state = 2}, - [3618] = {.lex_state = 15, .external_lex_state = 2}, - [3619] = {.lex_state = 12, .external_lex_state = 2}, - [3620] = {.lex_state = 96, .external_lex_state = 5}, - [3621] = {.lex_state = 96, .external_lex_state = 2}, - [3622] = {.lex_state = 15, .external_lex_state = 2}, - [3623] = {.lex_state = 15, .external_lex_state = 2}, - [3624] = {.lex_state = 15, .external_lex_state = 2}, - [3625] = {.lex_state = 15, .external_lex_state = 2}, - [3626] = {.lex_state = 96, .external_lex_state = 2}, - [3627] = {.lex_state = 96, .external_lex_state = 5}, - [3628] = {.lex_state = 96, .external_lex_state = 2}, - [3629] = {.lex_state = 12, .external_lex_state = 2}, - [3630] = {.lex_state = 96, .external_lex_state = 2}, - [3631] = {.lex_state = 12, .external_lex_state = 2}, - [3632] = {.lex_state = 96, .external_lex_state = 2}, - [3633] = {.lex_state = 12, .external_lex_state = 2}, - [3634] = {.lex_state = 96, .external_lex_state = 2}, - [3635] = {.lex_state = 96, .external_lex_state = 5}, - [3636] = {.lex_state = 96, .external_lex_state = 5}, - [3637] = {.lex_state = 15, .external_lex_state = 2}, - [3638] = {.lex_state = 96, .external_lex_state = 5}, - [3639] = {.lex_state = 96, .external_lex_state = 5}, - [3640] = {.lex_state = 96, .external_lex_state = 5}, - [3641] = {.lex_state = 96, .external_lex_state = 5}, - [3642] = {.lex_state = 96, .external_lex_state = 2}, - [3643] = {.lex_state = 96, .external_lex_state = 5}, - [3644] = {.lex_state = 96, .external_lex_state = 2}, - [3645] = {.lex_state = 96, .external_lex_state = 5}, - [3646] = {.lex_state = 96, .external_lex_state = 2}, - [3647] = {.lex_state = 96, .external_lex_state = 5}, - [3648] = {.lex_state = 96, .external_lex_state = 2}, - [3649] = {.lex_state = 96, .external_lex_state = 2}, - [3650] = {.lex_state = 96, .external_lex_state = 5}, - [3651] = {.lex_state = 96, .external_lex_state = 5}, - [3652] = {.lex_state = 96, .external_lex_state = 2}, - [3653] = {.lex_state = 96, .external_lex_state = 2}, - [3654] = {.lex_state = 96, .external_lex_state = 2}, - [3655] = {.lex_state = 96, .external_lex_state = 2}, - [3656] = {.lex_state = 12, .external_lex_state = 2}, - [3657] = {.lex_state = 96, .external_lex_state = 5}, - [3658] = {.lex_state = 96, .external_lex_state = 2}, - [3659] = {.lex_state = 96, .external_lex_state = 2}, - [3660] = {.lex_state = 12, .external_lex_state = 2}, - [3661] = {.lex_state = 96, .external_lex_state = 5}, - [3662] = {.lex_state = 96, .external_lex_state = 2}, - [3663] = {.lex_state = 96, .external_lex_state = 5}, - [3664] = {.lex_state = 96, .external_lex_state = 5}, - [3665] = {.lex_state = 12, .external_lex_state = 2}, - [3666] = {.lex_state = 96, .external_lex_state = 5}, - [3667] = {.lex_state = 96, .external_lex_state = 5}, - [3668] = {.lex_state = 96, .external_lex_state = 5}, - [3669] = {.lex_state = 96, .external_lex_state = 5}, - [3670] = {.lex_state = 96, .external_lex_state = 5}, - [3671] = {.lex_state = 96, .external_lex_state = 5}, - [3672] = {.lex_state = 96, .external_lex_state = 5}, - [3673] = {.lex_state = 96, .external_lex_state = 5}, - [3674] = {.lex_state = 96, .external_lex_state = 2}, - [3675] = {.lex_state = 96, .external_lex_state = 5}, - [3676] = {.lex_state = 96, .external_lex_state = 5}, - [3677] = {.lex_state = 96, .external_lex_state = 5}, - [3678] = {.lex_state = 96, .external_lex_state = 5}, - [3679] = {.lex_state = 96, .external_lex_state = 5}, - [3680] = {.lex_state = 96, .external_lex_state = 5}, - [3681] = {.lex_state = 96, .external_lex_state = 5}, - [3682] = {.lex_state = 96, .external_lex_state = 5}, - [3683] = {.lex_state = 96, .external_lex_state = 5}, - [3684] = {.lex_state = 96, .external_lex_state = 5}, - [3685] = {.lex_state = 96, .external_lex_state = 5}, - [3686] = {.lex_state = 96, .external_lex_state = 5}, - [3687] = {.lex_state = 96, .external_lex_state = 5}, - [3688] = {.lex_state = 96, .external_lex_state = 5}, - [3689] = {.lex_state = 96, .external_lex_state = 5}, - [3690] = {.lex_state = 96, .external_lex_state = 5}, - [3691] = {.lex_state = 96, .external_lex_state = 5}, - [3692] = {.lex_state = 96, .external_lex_state = 5}, - [3693] = {.lex_state = 96, .external_lex_state = 5}, - [3694] = {.lex_state = 96, .external_lex_state = 5}, - [3695] = {.lex_state = 96, .external_lex_state = 5}, - [3696] = {.lex_state = 12, .external_lex_state = 2}, - [3697] = {.lex_state = 96, .external_lex_state = 5}, - [3698] = {.lex_state = 96, .external_lex_state = 5}, - [3699] = {.lex_state = 96, .external_lex_state = 5}, - [3700] = {.lex_state = 96, .external_lex_state = 5}, - [3701] = {.lex_state = 96, .external_lex_state = 5}, - [3702] = {.lex_state = 15, .external_lex_state = 2}, - [3703] = {.lex_state = 96, .external_lex_state = 5}, - [3704] = {.lex_state = 96, .external_lex_state = 5}, - [3705] = {.lex_state = 96, .external_lex_state = 5}, - [3706] = {.lex_state = 96, .external_lex_state = 5}, - [3707] = {.lex_state = 96, .external_lex_state = 5}, - [3708] = {.lex_state = 96, .external_lex_state = 5}, - [3709] = {.lex_state = 96, .external_lex_state = 5}, - [3710] = {.lex_state = 96, .external_lex_state = 5}, - [3711] = {.lex_state = 96, .external_lex_state = 5}, - [3712] = {.lex_state = 96, .external_lex_state = 5}, - [3713] = {.lex_state = 96, .external_lex_state = 5}, - [3714] = {.lex_state = 96, .external_lex_state = 5}, - [3715] = {.lex_state = 96, .external_lex_state = 5}, - [3716] = {.lex_state = 96, .external_lex_state = 5}, - [3717] = {.lex_state = 96, .external_lex_state = 5}, - [3718] = {.lex_state = 96, .external_lex_state = 5}, - [3719] = {.lex_state = 96, .external_lex_state = 2}, - [3720] = {.lex_state = 96, .external_lex_state = 5}, - [3721] = {.lex_state = 96, .external_lex_state = 2}, - [3722] = {.lex_state = 96, .external_lex_state = 5}, - [3723] = {.lex_state = 12, .external_lex_state = 2}, - [3724] = {.lex_state = 12, .external_lex_state = 2}, - [3725] = {.lex_state = 12, .external_lex_state = 2}, - [3726] = {.lex_state = 96, .external_lex_state = 5}, - [3727] = {.lex_state = 96, .external_lex_state = 2}, - [3728] = {.lex_state = 96, .external_lex_state = 2}, - [3729] = {.lex_state = 96, .external_lex_state = 2}, - [3730] = {.lex_state = 96, .external_lex_state = 2}, - [3731] = {.lex_state = 96, .external_lex_state = 5}, - [3732] = {.lex_state = 96, .external_lex_state = 5}, - [3733] = {.lex_state = 96, .external_lex_state = 5}, - [3734] = {.lex_state = 96, .external_lex_state = 5}, - [3735] = {.lex_state = 96, .external_lex_state = 5}, - [3736] = {.lex_state = 96, .external_lex_state = 5}, - [3737] = {.lex_state = 96, .external_lex_state = 5}, - [3738] = {.lex_state = 12, .external_lex_state = 2}, - [3739] = {.lex_state = 96, .external_lex_state = 2}, - [3740] = {.lex_state = 12, .external_lex_state = 2}, - [3741] = {.lex_state = 96, .external_lex_state = 5}, - [3742] = {.lex_state = 96, .external_lex_state = 5}, - [3743] = {.lex_state = 96, .external_lex_state = 5}, - [3744] = {.lex_state = 96, .external_lex_state = 5}, - [3745] = {.lex_state = 96, .external_lex_state = 5}, - [3746] = {.lex_state = 96, .external_lex_state = 5}, - [3747] = {.lex_state = 96, .external_lex_state = 5}, - [3748] = {.lex_state = 96, .external_lex_state = 5}, - [3749] = {.lex_state = 96, .external_lex_state = 5}, - [3750] = {.lex_state = 96, .external_lex_state = 5}, - [3751] = {.lex_state = 96, .external_lex_state = 5}, - [3752] = {.lex_state = 96, .external_lex_state = 5}, - [3753] = {.lex_state = 96, .external_lex_state = 5}, - [3754] = {.lex_state = 96, .external_lex_state = 5}, - [3755] = {.lex_state = 12, .external_lex_state = 2}, - [3756] = {.lex_state = 12, .external_lex_state = 2}, - [3757] = {.lex_state = 96, .external_lex_state = 5}, - [3758] = {.lex_state = 96, .external_lex_state = 5}, - [3759] = {.lex_state = 96, .external_lex_state = 5}, - [3760] = {.lex_state = 12, .external_lex_state = 2}, - [3761] = {.lex_state = 12, .external_lex_state = 2}, - [3762] = {.lex_state = 96, .external_lex_state = 2}, - [3763] = {.lex_state = 12, .external_lex_state = 2}, - [3764] = {.lex_state = 96, .external_lex_state = 6}, - [3765] = {.lex_state = 96, .external_lex_state = 6}, - [3766] = {.lex_state = 12, .external_lex_state = 2}, - [3767] = {.lex_state = 96, .external_lex_state = 5}, - [3768] = {.lex_state = 96, .external_lex_state = 5}, - [3769] = {.lex_state = 96, .external_lex_state = 2}, - [3770] = {.lex_state = 12, .external_lex_state = 2}, - [3771] = {.lex_state = 12, .external_lex_state = 2}, - [3772] = {.lex_state = 96, .external_lex_state = 2}, - [3773] = {.lex_state = 12, .external_lex_state = 2}, - [3774] = {.lex_state = 96, .external_lex_state = 6}, - [3775] = {.lex_state = 96, .external_lex_state = 2}, - [3776] = {.lex_state = 12, .external_lex_state = 2}, - [3777] = {.lex_state = 96, .external_lex_state = 2}, - [3778] = {.lex_state = 96, .external_lex_state = 6}, - [3779] = {.lex_state = 96, .external_lex_state = 2}, - [3780] = {.lex_state = 96, .external_lex_state = 5}, - [3781] = {.lex_state = 96, .external_lex_state = 2}, - [3782] = {.lex_state = 96, .external_lex_state = 5}, - [3783] = {.lex_state = 96, .external_lex_state = 2}, - [3784] = {.lex_state = 96, .external_lex_state = 2}, - [3785] = {.lex_state = 96, .external_lex_state = 5}, - [3786] = {.lex_state = 96, .external_lex_state = 5}, - [3787] = {.lex_state = 18, .external_lex_state = 7}, - [3788] = {.lex_state = 96, .external_lex_state = 2}, - [3789] = {.lex_state = 96, .external_lex_state = 2}, - [3790] = {.lex_state = 96, .external_lex_state = 5}, - [3791] = {.lex_state = 12, .external_lex_state = 2}, - [3792] = {.lex_state = 96, .external_lex_state = 6}, - [3793] = {.lex_state = 96, .external_lex_state = 2}, - [3794] = {.lex_state = 12, .external_lex_state = 2}, - [3795] = {.lex_state = 96, .external_lex_state = 2}, - [3796] = {.lex_state = 96, .external_lex_state = 5}, - [3797] = {.lex_state = 96, .external_lex_state = 6}, - [3798] = {.lex_state = 12, .external_lex_state = 2}, - [3799] = {.lex_state = 12, .external_lex_state = 2}, - [3800] = {.lex_state = 12, .external_lex_state = 2}, - [3801] = {.lex_state = 96, .external_lex_state = 2}, - [3802] = {.lex_state = 12, .external_lex_state = 2}, - [3803] = {.lex_state = 12, .external_lex_state = 2}, - [3804] = {.lex_state = 96, .external_lex_state = 6}, - [3805] = {.lex_state = 96, .external_lex_state = 5}, - [3806] = {.lex_state = 96, .external_lex_state = 6}, - [3807] = {.lex_state = 12, .external_lex_state = 2}, - [3808] = {.lex_state = 96, .external_lex_state = 2}, - [3809] = {.lex_state = 96, .external_lex_state = 2}, - [3810] = {.lex_state = 96, .external_lex_state = 5}, - [3811] = {.lex_state = 96, .external_lex_state = 2}, - [3812] = {.lex_state = 96, .external_lex_state = 2}, - [3813] = {.lex_state = 96, .external_lex_state = 5}, - [3814] = {.lex_state = 96, .external_lex_state = 2}, - [3815] = {.lex_state = 96, .external_lex_state = 5}, - [3816] = {.lex_state = 96, .external_lex_state = 6}, - [3817] = {.lex_state = 96, .external_lex_state = 5}, - [3818] = {.lex_state = 12, .external_lex_state = 2}, - [3819] = {.lex_state = 96, .external_lex_state = 6}, - [3820] = {.lex_state = 96, .external_lex_state = 6}, - [3821] = {.lex_state = 12, .external_lex_state = 2}, - [3822] = {.lex_state = 96, .external_lex_state = 5}, - [3823] = {.lex_state = 12, .external_lex_state = 2}, - [3824] = {.lex_state = 96, .external_lex_state = 6}, - [3825] = {.lex_state = 96, .external_lex_state = 2}, - [3826] = {.lex_state = 96, .external_lex_state = 2}, - [3827] = {.lex_state = 96, .external_lex_state = 6}, - [3828] = {.lex_state = 96, .external_lex_state = 6}, - [3829] = {.lex_state = 96, .external_lex_state = 5}, - [3830] = {.lex_state = 96, .external_lex_state = 2}, - [3831] = {.lex_state = 96, .external_lex_state = 5}, - [3832] = {.lex_state = 96, .external_lex_state = 6}, - [3833] = {.lex_state = 12, .external_lex_state = 2}, - [3834] = {.lex_state = 96, .external_lex_state = 6}, - [3835] = {.lex_state = 96, .external_lex_state = 5}, - [3836] = {.lex_state = 96, .external_lex_state = 5}, - [3837] = {.lex_state = 96, .external_lex_state = 5}, - [3838] = {.lex_state = 12, .external_lex_state = 2}, - [3839] = {.lex_state = 96, .external_lex_state = 5}, - [3840] = {.lex_state = 96, .external_lex_state = 2}, - [3841] = {.lex_state = 12, .external_lex_state = 2}, - [3842] = {.lex_state = 96, .external_lex_state = 2}, - [3843] = {.lex_state = 96, .external_lex_state = 2}, - [3844] = {.lex_state = 96, .external_lex_state = 6}, - [3845] = {.lex_state = 96, .external_lex_state = 2}, - [3846] = {.lex_state = 96, .external_lex_state = 2}, - [3847] = {.lex_state = 96, .external_lex_state = 2}, - [3848] = {.lex_state = 12, .external_lex_state = 2}, - [3849] = {.lex_state = 96, .external_lex_state = 2}, - [3850] = {.lex_state = 96, .external_lex_state = 5}, - [3851] = {.lex_state = 12, .external_lex_state = 2}, - [3852] = {.lex_state = 96, .external_lex_state = 5}, - [3853] = {.lex_state = 96, .external_lex_state = 5}, - [3854] = {.lex_state = 96, .external_lex_state = 5}, - [3855] = {.lex_state = 96, .external_lex_state = 2}, - [3856] = {.lex_state = 18, .external_lex_state = 7}, - [3857] = {.lex_state = 12, .external_lex_state = 2}, - [3858] = {.lex_state = 96, .external_lex_state = 6}, - [3859] = {.lex_state = 12, .external_lex_state = 2}, - [3860] = {.lex_state = 12, .external_lex_state = 2}, - [3861] = {.lex_state = 12, .external_lex_state = 2}, - [3862] = {.lex_state = 96, .external_lex_state = 6}, - [3863] = {.lex_state = 96, .external_lex_state = 6}, - [3864] = {.lex_state = 12, .external_lex_state = 2}, - [3865] = {.lex_state = 18, .external_lex_state = 7}, - [3866] = {.lex_state = 12, .external_lex_state = 2}, - [3867] = {.lex_state = 96, .external_lex_state = 6}, - [3868] = {.lex_state = 12, .external_lex_state = 2}, - [3869] = {.lex_state = 96, .external_lex_state = 6}, - [3870] = {.lex_state = 12, .external_lex_state = 2}, - [3871] = {.lex_state = 12, .external_lex_state = 2}, - [3872] = {.lex_state = 96, .external_lex_state = 2}, - [3873] = {.lex_state = 96, .external_lex_state = 6}, - [3874] = {.lex_state = 96, .external_lex_state = 6}, - [3875] = {.lex_state = 12, .external_lex_state = 2}, - [3876] = {.lex_state = 12, .external_lex_state = 2}, - [3877] = {.lex_state = 96, .external_lex_state = 2}, - [3878] = {.lex_state = 12, .external_lex_state = 2}, - [3879] = {.lex_state = 96, .external_lex_state = 6}, - [3880] = {.lex_state = 96, .external_lex_state = 2}, - [3881] = {.lex_state = 96, .external_lex_state = 2}, - [3882] = {.lex_state = 96, .external_lex_state = 2}, - [3883] = {.lex_state = 96, .external_lex_state = 2}, - [3884] = {.lex_state = 12, .external_lex_state = 2}, - [3885] = {.lex_state = 96, .external_lex_state = 2}, - [3886] = {.lex_state = 12, .external_lex_state = 2}, - [3887] = {.lex_state = 96, .external_lex_state = 6}, - [3888] = {.lex_state = 12, .external_lex_state = 2}, - [3889] = {.lex_state = 12, .external_lex_state = 2}, - [3890] = {.lex_state = 96, .external_lex_state = 2}, - [3891] = {.lex_state = 12, .external_lex_state = 2}, - [3892] = {.lex_state = 18, .external_lex_state = 7}, - [3893] = {.lex_state = 96, .external_lex_state = 2}, - [3894] = {.lex_state = 18, .external_lex_state = 7}, - [3895] = {.lex_state = 12, .external_lex_state = 2}, - [3896] = {.lex_state = 12, .external_lex_state = 2}, - [3897] = {.lex_state = 96, .external_lex_state = 2}, - [3898] = {.lex_state = 96, .external_lex_state = 2}, - [3899] = {.lex_state = 96, .external_lex_state = 5}, - [3900] = {.lex_state = 12, .external_lex_state = 2}, - [3901] = {.lex_state = 12, .external_lex_state = 2}, - [3902] = {.lex_state = 96, .external_lex_state = 2}, - [3903] = {.lex_state = 12, .external_lex_state = 2}, - [3904] = {.lex_state = 12, .external_lex_state = 2}, - [3905] = {.lex_state = 96, .external_lex_state = 2}, - [3906] = {.lex_state = 96, .external_lex_state = 5}, - [3907] = {.lex_state = 96, .external_lex_state = 5}, - [3908] = {.lex_state = 96, .external_lex_state = 5}, - [3909] = {.lex_state = 96, .external_lex_state = 2}, - [3910] = {.lex_state = 96, .external_lex_state = 5}, - [3911] = {.lex_state = 96, .external_lex_state = 5}, - [3912] = {.lex_state = 96, .external_lex_state = 5}, - [3913] = {.lex_state = 96, .external_lex_state = 5}, - [3914] = {.lex_state = 96, .external_lex_state = 5}, - [3915] = {.lex_state = 96, .external_lex_state = 5}, - [3916] = {.lex_state = 96, .external_lex_state = 5}, - [3917] = {.lex_state = 96, .external_lex_state = 2}, - [3918] = {.lex_state = 96, .external_lex_state = 5}, - [3919] = {.lex_state = 96, .external_lex_state = 5}, - [3920] = {.lex_state = 96, .external_lex_state = 2}, - [3921] = {.lex_state = 18, .external_lex_state = 8}, - [3922] = {.lex_state = 96, .external_lex_state = 5}, - [3923] = {.lex_state = 96, .external_lex_state = 5}, - [3924] = {.lex_state = 96, .external_lex_state = 5}, - [3925] = {.lex_state = 96, .external_lex_state = 2}, - [3926] = {.lex_state = 96, .external_lex_state = 2}, - [3927] = {.lex_state = 96, .external_lex_state = 5}, - [3928] = {.lex_state = 96, .external_lex_state = 2}, - [3929] = {.lex_state = 96, .external_lex_state = 5}, - [3930] = {.lex_state = 96, .external_lex_state = 5}, - [3931] = {.lex_state = 96, .external_lex_state = 2}, - [3932] = {.lex_state = 96, .external_lex_state = 6}, - [3933] = {.lex_state = 96, .external_lex_state = 5}, - [3934] = {.lex_state = 96, .external_lex_state = 5}, - [3935] = {.lex_state = 96, .external_lex_state = 2}, - [3936] = {.lex_state = 18, .external_lex_state = 8}, - [3937] = {.lex_state = 96, .external_lex_state = 5}, - [3938] = {.lex_state = 4, .external_lex_state = 2}, - [3939] = {.lex_state = 96, .external_lex_state = 5}, - [3940] = {.lex_state = 96, .external_lex_state = 5}, - [3941] = {.lex_state = 96, .external_lex_state = 5}, - [3942] = {.lex_state = 96, .external_lex_state = 5}, - [3943] = {.lex_state = 96, .external_lex_state = 5}, - [3944] = {.lex_state = 96, .external_lex_state = 5}, - [3945] = {.lex_state = 96, .external_lex_state = 5}, - [3946] = {.lex_state = 96, .external_lex_state = 6}, - [3947] = {.lex_state = 96, .external_lex_state = 5}, - [3948] = {.lex_state = 96, .external_lex_state = 5}, - [3949] = {.lex_state = 96, .external_lex_state = 5}, - [3950] = {.lex_state = 12, .external_lex_state = 2}, - [3951] = {.lex_state = 96, .external_lex_state = 6}, - [3952] = {.lex_state = 96, .external_lex_state = 5}, - [3953] = {.lex_state = 96, .external_lex_state = 5}, - [3954] = {.lex_state = 96, .external_lex_state = 2}, - [3955] = {.lex_state = 96, .external_lex_state = 2}, - [3956] = {.lex_state = 96, .external_lex_state = 5}, - [3957] = {.lex_state = 96, .external_lex_state = 2}, - [3958] = {.lex_state = 96, .external_lex_state = 5}, - [3959] = {.lex_state = 96, .external_lex_state = 2}, - [3960] = {.lex_state = 96, .external_lex_state = 6}, - [3961] = {.lex_state = 96, .external_lex_state = 6}, - [3962] = {.lex_state = 96, .external_lex_state = 5}, - [3963] = {.lex_state = 96, .external_lex_state = 5}, - [3964] = {.lex_state = 12, .external_lex_state = 2}, - [3965] = {.lex_state = 12, .external_lex_state = 2}, - [3966] = {.lex_state = 96, .external_lex_state = 5}, - [3967] = {.lex_state = 12, .external_lex_state = 2}, - [3968] = {.lex_state = 96, .external_lex_state = 5}, - [3969] = {.lex_state = 96, .external_lex_state = 2}, - [3970] = {.lex_state = 96, .external_lex_state = 5}, - [3971] = {.lex_state = 96, .external_lex_state = 5}, - [3972] = {.lex_state = 96, .external_lex_state = 5}, - [3973] = {.lex_state = 96, .external_lex_state = 6}, - [3974] = {.lex_state = 96, .external_lex_state = 5}, - [3975] = {.lex_state = 96, .external_lex_state = 5}, - [3976] = {.lex_state = 96, .external_lex_state = 5}, - [3977] = {.lex_state = 96, .external_lex_state = 5}, - [3978] = {.lex_state = 12, .external_lex_state = 2}, - [3979] = {.lex_state = 96, .external_lex_state = 5}, - [3980] = {.lex_state = 96, .external_lex_state = 5}, - [3981] = {.lex_state = 96, .external_lex_state = 5}, - [3982] = {.lex_state = 96, .external_lex_state = 5}, - [3983] = {.lex_state = 12, .external_lex_state = 2}, - [3984] = {.lex_state = 96, .external_lex_state = 5}, - [3985] = {.lex_state = 12, .external_lex_state = 2}, - [3986] = {.lex_state = 12, .external_lex_state = 2}, - [3987] = {.lex_state = 12, .external_lex_state = 2}, - [3988] = {.lex_state = 96, .external_lex_state = 5}, - [3989] = {.lex_state = 96, .external_lex_state = 5}, - [3990] = {.lex_state = 96, .external_lex_state = 5}, - [3991] = {.lex_state = 96, .external_lex_state = 5}, - [3992] = {.lex_state = 96, .external_lex_state = 5}, - [3993] = {.lex_state = 96, .external_lex_state = 5}, - [3994] = {.lex_state = 96, .external_lex_state = 2}, - [3995] = {.lex_state = 96, .external_lex_state = 2}, - [3996] = {.lex_state = 96, .external_lex_state = 5}, - [3997] = {.lex_state = 96, .external_lex_state = 5}, - [3998] = {.lex_state = 96, .external_lex_state = 5}, - [3999] = {.lex_state = 96, .external_lex_state = 2}, - [4000] = {.lex_state = 96, .external_lex_state = 5}, - [4001] = {.lex_state = 12, .external_lex_state = 2}, - [4002] = {.lex_state = 96, .external_lex_state = 5}, - [4003] = {.lex_state = 96, .external_lex_state = 5}, - [4004] = {.lex_state = 96, .external_lex_state = 5}, - [4005] = {.lex_state = 96, .external_lex_state = 2}, - [4006] = {.lex_state = 96, .external_lex_state = 5}, - [4007] = {.lex_state = 96, .external_lex_state = 5}, - [4008] = {.lex_state = 96, .external_lex_state = 5}, - [4009] = {.lex_state = 96, .external_lex_state = 5}, - [4010] = {.lex_state = 12, .external_lex_state = 2}, - [4011] = {.lex_state = 12, .external_lex_state = 2}, - [4012] = {.lex_state = 96, .external_lex_state = 6}, - [4013] = {.lex_state = 18, .external_lex_state = 8}, - [4014] = {.lex_state = 96, .external_lex_state = 5}, - [4015] = {.lex_state = 12, .external_lex_state = 2}, - [4016] = {.lex_state = 12, .external_lex_state = 2}, - [4017] = {.lex_state = 96, .external_lex_state = 6}, - [4018] = {.lex_state = 96, .external_lex_state = 5}, - [4019] = {.lex_state = 96, .external_lex_state = 5}, - [4020] = {.lex_state = 96, .external_lex_state = 5}, - [4021] = {.lex_state = 18, .external_lex_state = 8}, - [4022] = {.lex_state = 96, .external_lex_state = 5}, - [4023] = {.lex_state = 96, .external_lex_state = 5}, - [4024] = {.lex_state = 96, .external_lex_state = 6}, - [4025] = {.lex_state = 96, .external_lex_state = 5}, - [4026] = {.lex_state = 96, .external_lex_state = 5}, - [4027] = {.lex_state = 96, .external_lex_state = 5}, - [4028] = {.lex_state = 96, .external_lex_state = 5}, - [4029] = {.lex_state = 96, .external_lex_state = 5}, - [4030] = {.lex_state = 96, .external_lex_state = 6}, - [4031] = {.lex_state = 96, .external_lex_state = 5}, - [4032] = {.lex_state = 96, .external_lex_state = 5}, - [4033] = {.lex_state = 96, .external_lex_state = 5}, - [4034] = {.lex_state = 12, .external_lex_state = 2}, - [4035] = {.lex_state = 96, .external_lex_state = 5}, - [4036] = {.lex_state = 96, .external_lex_state = 5}, - [4037] = {.lex_state = 96, .external_lex_state = 5}, - [4038] = {.lex_state = 96, .external_lex_state = 5}, - [4039] = {.lex_state = 96, .external_lex_state = 2}, - [4040] = {.lex_state = 96, .external_lex_state = 5}, - [4041] = {.lex_state = 96, .external_lex_state = 5}, - [4042] = {.lex_state = 96, .external_lex_state = 5}, - [4043] = {.lex_state = 96, .external_lex_state = 5}, - [4044] = {.lex_state = 96, .external_lex_state = 5}, - [4045] = {.lex_state = 96, .external_lex_state = 5}, - [4046] = {.lex_state = 96, .external_lex_state = 5}, - [4047] = {.lex_state = 96, .external_lex_state = 5}, - [4048] = {.lex_state = 96, .external_lex_state = 5}, - [4049] = {.lex_state = 18, .external_lex_state = 8}, - [4050] = {.lex_state = 96, .external_lex_state = 5}, - [4051] = {.lex_state = 96, .external_lex_state = 5}, - [4052] = {.lex_state = 96, .external_lex_state = 5}, - [4053] = {.lex_state = 18, .external_lex_state = 8}, - [4054] = {.lex_state = 96, .external_lex_state = 5}, - [4055] = {.lex_state = 96, .external_lex_state = 5}, - [4056] = {.lex_state = 96, .external_lex_state = 2}, - [4057] = {.lex_state = 96, .external_lex_state = 5}, - [4058] = {.lex_state = 96, .external_lex_state = 6}, - [4059] = {.lex_state = 96, .external_lex_state = 5}, - [4060] = {.lex_state = 96, .external_lex_state = 6}, - [4061] = {.lex_state = 96, .external_lex_state = 6}, - [4062] = {.lex_state = 96, .external_lex_state = 5}, - [4063] = {.lex_state = 96, .external_lex_state = 5}, - [4064] = {.lex_state = 96, .external_lex_state = 5}, - [4065] = {.lex_state = 96, .external_lex_state = 5}, - [4066] = {.lex_state = 96, .external_lex_state = 5}, - [4067] = {.lex_state = 96, .external_lex_state = 5}, - [4068] = {.lex_state = 96, .external_lex_state = 5}, - [4069] = {.lex_state = 96, .external_lex_state = 5}, - [4070] = {.lex_state = 96, .external_lex_state = 5}, - [4071] = {.lex_state = 96, .external_lex_state = 5}, - [4072] = {.lex_state = 96, .external_lex_state = 5}, - [4073] = {.lex_state = 12, .external_lex_state = 2}, - [4074] = {.lex_state = 96, .external_lex_state = 2}, - [4075] = {.lex_state = 96, .external_lex_state = 5}, - [4076] = {.lex_state = 96, .external_lex_state = 5}, - [4077] = {.lex_state = 96, .external_lex_state = 5}, - [4078] = {.lex_state = 96, .external_lex_state = 5}, - [4079] = {.lex_state = 96, .external_lex_state = 5}, - [4080] = {.lex_state = 18, .external_lex_state = 8}, - [4081] = {.lex_state = 96, .external_lex_state = 5}, - [4082] = {.lex_state = 96, .external_lex_state = 5}, - [4083] = {.lex_state = 96, .external_lex_state = 5}, - [4084] = {.lex_state = 18, .external_lex_state = 8}, - [4085] = {.lex_state = 96, .external_lex_state = 2}, - [4086] = {.lex_state = 96, .external_lex_state = 2}, - [4087] = {.lex_state = 96, .external_lex_state = 5}, - [4088] = {.lex_state = 12, .external_lex_state = 2}, - [4089] = {.lex_state = 96, .external_lex_state = 2}, - [4090] = {.lex_state = 96, .external_lex_state = 5}, - [4091] = {.lex_state = 96, .external_lex_state = 5}, - [4092] = {.lex_state = 96, .external_lex_state = 5}, - [4093] = {.lex_state = 96, .external_lex_state = 5}, - [4094] = {.lex_state = 96, .external_lex_state = 5}, - [4095] = {.lex_state = 12, .external_lex_state = 2}, - [4096] = {.lex_state = 96, .external_lex_state = 5}, - [4097] = {.lex_state = 12, .external_lex_state = 2}, - [4098] = {.lex_state = 96, .external_lex_state = 5}, - [4099] = {.lex_state = 96, .external_lex_state = 5}, - [4100] = {.lex_state = 96, .external_lex_state = 2}, - [4101] = {.lex_state = 96, .external_lex_state = 5}, - [4102] = {.lex_state = 96, .external_lex_state = 2}, - [4103] = {.lex_state = 96, .external_lex_state = 5}, - [4104] = {.lex_state = 96, .external_lex_state = 5}, - [4105] = {.lex_state = 96, .external_lex_state = 5}, - [4106] = {.lex_state = 96, .external_lex_state = 2}, - [4107] = {.lex_state = 12, .external_lex_state = 2}, - [4108] = {.lex_state = 96, .external_lex_state = 5}, - [4109] = {.lex_state = 96, .external_lex_state = 5}, - [4110] = {.lex_state = 96, .external_lex_state = 2}, - [4111] = {.lex_state = 96, .external_lex_state = 5}, - [4112] = {.lex_state = 96, .external_lex_state = 5}, - [4113] = {.lex_state = 96, .external_lex_state = 2}, - [4114] = {.lex_state = 96, .external_lex_state = 5}, - [4115] = {.lex_state = 18, .external_lex_state = 8}, - [4116] = {.lex_state = 96, .external_lex_state = 2}, - [4117] = {.lex_state = 12, .external_lex_state = 2}, - [4118] = {.lex_state = 96, .external_lex_state = 5}, - [4119] = {.lex_state = 96, .external_lex_state = 5}, - [4120] = {.lex_state = 96, .external_lex_state = 5}, - [4121] = {.lex_state = 96, .external_lex_state = 5}, - [4122] = {.lex_state = 96, .external_lex_state = 5}, - [4123] = {.lex_state = 12, .external_lex_state = 2}, - [4124] = {.lex_state = 96, .external_lex_state = 5}, - [4125] = {.lex_state = 12, .external_lex_state = 2}, - [4126] = {.lex_state = 96, .external_lex_state = 5}, - [4127] = {.lex_state = 96, .external_lex_state = 5}, - [4128] = {.lex_state = 96, .external_lex_state = 5}, - [4129] = {.lex_state = 96, .external_lex_state = 5}, - [4130] = {.lex_state = 96, .external_lex_state = 2}, - [4131] = {.lex_state = 96, .external_lex_state = 2}, - [4132] = {.lex_state = 96, .external_lex_state = 5}, - [4133] = {.lex_state = 12, .external_lex_state = 2}, - [4134] = {.lex_state = 96, .external_lex_state = 2}, - [4135] = {.lex_state = 12, .external_lex_state = 2}, - [4136] = {.lex_state = 96, .external_lex_state = 5}, - [4137] = {.lex_state = 12, .external_lex_state = 2}, - [4138] = {.lex_state = 15, .external_lex_state = 2}, - [4139] = {.lex_state = 96, .external_lex_state = 5}, - [4140] = {.lex_state = 96, .external_lex_state = 5}, - [4141] = {.lex_state = 96, .external_lex_state = 2}, - [4142] = {.lex_state = 12, .external_lex_state = 2}, - [4143] = {.lex_state = 12, .external_lex_state = 2}, - [4144] = {.lex_state = 12, .external_lex_state = 2}, - [4145] = {.lex_state = 96, .external_lex_state = 5}, - [4146] = {.lex_state = 96, .external_lex_state = 5}, - [4147] = {.lex_state = 96, .external_lex_state = 5}, - [4148] = {.lex_state = 96, .external_lex_state = 5}, - [4149] = {.lex_state = 96, .external_lex_state = 5}, - [4150] = {.lex_state = 96, .external_lex_state = 5}, - [4151] = {.lex_state = 96, .external_lex_state = 5}, - [4152] = {.lex_state = 96, .external_lex_state = 5}, - [4153] = {.lex_state = 96, .external_lex_state = 5}, - [4154] = {.lex_state = 96, .external_lex_state = 5}, - [4155] = {.lex_state = 96, .external_lex_state = 5}, - [4156] = {.lex_state = 96, .external_lex_state = 5}, - [4157] = {.lex_state = 96, .external_lex_state = 5}, - [4158] = {.lex_state = 96, .external_lex_state = 5}, - [4159] = {.lex_state = 12, .external_lex_state = 2}, - [4160] = {.lex_state = 96, .external_lex_state = 5}, - [4161] = {.lex_state = 96, .external_lex_state = 2}, - [4162] = {.lex_state = 96, .external_lex_state = 5}, - [4163] = {.lex_state = 96, .external_lex_state = 5}, - [4164] = {.lex_state = 96, .external_lex_state = 5}, - [4165] = {.lex_state = 12, .external_lex_state = 2}, - [4166] = {.lex_state = 96, .external_lex_state = 5}, - [4167] = {.lex_state = 12, .external_lex_state = 2}, - [4168] = {.lex_state = 12, .external_lex_state = 2}, - [4169] = {.lex_state = 12, .external_lex_state = 2}, - [4170] = {.lex_state = 96, .external_lex_state = 5}, - [4171] = {.lex_state = 96, .external_lex_state = 5}, - [4172] = {.lex_state = 12, .external_lex_state = 2}, - [4173] = {.lex_state = 96, .external_lex_state = 5}, - [4174] = {.lex_state = 96, .external_lex_state = 5}, - [4175] = {.lex_state = 96, .external_lex_state = 5}, - [4176] = {.lex_state = 96, .external_lex_state = 5}, - [4177] = {.lex_state = 96, .external_lex_state = 2}, - [4178] = {.lex_state = 12, .external_lex_state = 2}, - [4179] = {.lex_state = 96, .external_lex_state = 5}, - [4180] = {.lex_state = 12, .external_lex_state = 2}, - [4181] = {.lex_state = 96, .external_lex_state = 5}, - [4182] = {.lex_state = 96, .external_lex_state = 5}, - [4183] = {.lex_state = 96, .external_lex_state = 5}, - [4184] = {.lex_state = 96, .external_lex_state = 5}, - [4185] = {.lex_state = 96, .external_lex_state = 2}, - [4186] = {.lex_state = 96, .external_lex_state = 5}, - [4187] = {.lex_state = 96, .external_lex_state = 5}, - [4188] = {.lex_state = 12, .external_lex_state = 2}, - [4189] = {.lex_state = 96, .external_lex_state = 5}, - [4190] = {.lex_state = 12, .external_lex_state = 2}, - [4191] = {.lex_state = 12, .external_lex_state = 2}, - [4192] = {.lex_state = 96, .external_lex_state = 5}, - [4193] = {.lex_state = 96, .external_lex_state = 6}, - [4194] = {.lex_state = 12, .external_lex_state = 2}, - [4195] = {.lex_state = 96, .external_lex_state = 5}, - [4196] = {.lex_state = 12, .external_lex_state = 2}, - [4197] = {.lex_state = 96, .external_lex_state = 5}, - [4198] = {.lex_state = 96, .external_lex_state = 5}, - [4199] = {.lex_state = 96, .external_lex_state = 5}, - [4200] = {.lex_state = 96, .external_lex_state = 5}, - [4201] = {.lex_state = 96, .external_lex_state = 5}, - [4202] = {.lex_state = 12, .external_lex_state = 2}, - [4203] = {.lex_state = 96, .external_lex_state = 5}, - [4204] = {.lex_state = 96, .external_lex_state = 5}, - [4205] = {.lex_state = 96, .external_lex_state = 5}, - [4206] = {.lex_state = 12, .external_lex_state = 2}, - [4207] = {.lex_state = 96, .external_lex_state = 5}, - [4208] = {.lex_state = 96, .external_lex_state = 5}, - [4209] = {.lex_state = 96, .external_lex_state = 5}, - [4210] = {.lex_state = 96, .external_lex_state = 5}, - [4211] = {.lex_state = 12, .external_lex_state = 2}, - [4212] = {.lex_state = 96, .external_lex_state = 5}, - [4213] = {.lex_state = 96, .external_lex_state = 5}, - [4214] = {.lex_state = 96, .external_lex_state = 5}, - [4215] = {.lex_state = 96, .external_lex_state = 5}, - [4216] = {.lex_state = 96, .external_lex_state = 5}, - [4217] = {.lex_state = 96, .external_lex_state = 5}, - [4218] = {.lex_state = 96, .external_lex_state = 5}, - [4219] = {.lex_state = 96, .external_lex_state = 5}, - [4220] = {.lex_state = 96, .external_lex_state = 5}, - [4221] = {.lex_state = 96, .external_lex_state = 5}, - [4222] = {.lex_state = 96, .external_lex_state = 5}, - [4223] = {.lex_state = 12, .external_lex_state = 2}, - [4224] = {.lex_state = 96, .external_lex_state = 5}, - [4225] = {.lex_state = 96, .external_lex_state = 2}, - [4226] = {.lex_state = 96, .external_lex_state = 5}, - [4227] = {.lex_state = 96, .external_lex_state = 5}, - [4228] = {.lex_state = 96, .external_lex_state = 2}, - [4229] = {.lex_state = 12, .external_lex_state = 2}, - [4230] = {.lex_state = 12, .external_lex_state = 2}, - [4231] = {.lex_state = 96, .external_lex_state = 5}, - [4232] = {.lex_state = 96, .external_lex_state = 2}, - [4233] = {.lex_state = 96, .external_lex_state = 5}, - [4234] = {.lex_state = 96, .external_lex_state = 2}, - [4235] = {.lex_state = 96, .external_lex_state = 2}, - [4236] = {.lex_state = 12, .external_lex_state = 2}, - [4237] = {.lex_state = 12, .external_lex_state = 2}, - [4238] = {.lex_state = 96, .external_lex_state = 5}, - [4239] = {.lex_state = 96, .external_lex_state = 5}, - [4240] = {.lex_state = 96, .external_lex_state = 5}, - [4241] = {.lex_state = 96, .external_lex_state = 5}, - [4242] = {.lex_state = 96, .external_lex_state = 5}, - [4243] = {.lex_state = 96, .external_lex_state = 5}, - [4244] = {.lex_state = 96, .external_lex_state = 5}, - [4245] = {.lex_state = 96, .external_lex_state = 5}, - [4246] = {.lex_state = 96, .external_lex_state = 5}, - [4247] = {.lex_state = 96, .external_lex_state = 5}, - [4248] = {.lex_state = 96, .external_lex_state = 5}, - [4249] = {.lex_state = 96, .external_lex_state = 5}, - [4250] = {.lex_state = 96, .external_lex_state = 5}, - [4251] = {.lex_state = 96, .external_lex_state = 5}, - [4252] = {.lex_state = 96, .external_lex_state = 5}, - [4253] = {.lex_state = 96, .external_lex_state = 5}, - [4254] = {.lex_state = 96, .external_lex_state = 5}, - [4255] = {.lex_state = 96, .external_lex_state = 5}, - [4256] = {.lex_state = 96, .external_lex_state = 5}, - [4257] = {.lex_state = 96, .external_lex_state = 5}, - [4258] = {.lex_state = 96, .external_lex_state = 5}, - [4259] = {.lex_state = 96, .external_lex_state = 5}, - [4260] = {.lex_state = 96, .external_lex_state = 5}, - [4261] = {.lex_state = 96, .external_lex_state = 5}, - [4262] = {.lex_state = 96, .external_lex_state = 5}, - [4263] = {.lex_state = 96, .external_lex_state = 5}, - [4264] = {.lex_state = 96, .external_lex_state = 5}, - [4265] = {.lex_state = 96, .external_lex_state = 5}, - [4266] = {.lex_state = 96, .external_lex_state = 5}, - [4267] = {.lex_state = 96, .external_lex_state = 5}, - [4268] = {.lex_state = 96, .external_lex_state = 5}, - [4269] = {.lex_state = 96, .external_lex_state = 5}, - [4270] = {.lex_state = 96, .external_lex_state = 5}, - [4271] = {.lex_state = 12, .external_lex_state = 2}, - [4272] = {.lex_state = 96, .external_lex_state = 5}, - [4273] = {.lex_state = 96, .external_lex_state = 5}, - [4274] = {.lex_state = 96, .external_lex_state = 5}, - [4275] = {.lex_state = 12, .external_lex_state = 2}, - [4276] = {.lex_state = 96, .external_lex_state = 5}, - [4277] = {.lex_state = 96, .external_lex_state = 2}, - [4278] = {.lex_state = 96, .external_lex_state = 5}, - [4279] = {.lex_state = 96, .external_lex_state = 5}, - [4280] = {.lex_state = 96, .external_lex_state = 5}, - [4281] = {.lex_state = 96, .external_lex_state = 5}, - [4282] = {.lex_state = 96, .external_lex_state = 5}, - [4283] = {.lex_state = 96, .external_lex_state = 5}, - [4284] = {.lex_state = 96, .external_lex_state = 5}, - [4285] = {.lex_state = 96, .external_lex_state = 5}, - [4286] = {.lex_state = 96, .external_lex_state = 5}, - [4287] = {.lex_state = 96, .external_lex_state = 5}, - [4288] = {.lex_state = 96, .external_lex_state = 5}, - [4289] = {.lex_state = 96, .external_lex_state = 5}, - [4290] = {.lex_state = 96, .external_lex_state = 5}, - [4291] = {.lex_state = 96, .external_lex_state = 5}, - [4292] = {.lex_state = 96, .external_lex_state = 5}, - [4293] = {.lex_state = 96, .external_lex_state = 5}, - [4294] = {.lex_state = 96, .external_lex_state = 5}, - [4295] = {.lex_state = 96, .external_lex_state = 5}, - [4296] = {.lex_state = 18, .external_lex_state = 8}, - [4297] = {.lex_state = 96, .external_lex_state = 2}, - [4298] = {.lex_state = 96, .external_lex_state = 5}, - [4299] = {.lex_state = 96, .external_lex_state = 5}, - [4300] = {.lex_state = 96, .external_lex_state = 2}, - [4301] = {.lex_state = 96, .external_lex_state = 5}, - [4302] = {.lex_state = 96, .external_lex_state = 2}, - [4303] = {.lex_state = 96, .external_lex_state = 5}, - [4304] = {.lex_state = 96, .external_lex_state = 5}, - [4305] = {.lex_state = 96, .external_lex_state = 5}, - [4306] = {.lex_state = 96, .external_lex_state = 5}, - [4307] = {.lex_state = 96, .external_lex_state = 5}, - [4308] = {.lex_state = 96, .external_lex_state = 5}, - [4309] = {.lex_state = 96, .external_lex_state = 5}, - [4310] = {.lex_state = 12, .external_lex_state = 2}, - [4311] = {.lex_state = 12, .external_lex_state = 2}, - [4312] = {.lex_state = 96, .external_lex_state = 5}, - [4313] = {.lex_state = 96, .external_lex_state = 5}, - [4314] = {.lex_state = 96, .external_lex_state = 5}, - [4315] = {.lex_state = 96, .external_lex_state = 5}, - [4316] = {.lex_state = 96, .external_lex_state = 5}, - [4317] = {.lex_state = 12, .external_lex_state = 2}, - [4318] = {.lex_state = 12, .external_lex_state = 2}, - [4319] = {.lex_state = 12, .external_lex_state = 2}, - [4320] = {.lex_state = 96, .external_lex_state = 5}, - [4321] = {.lex_state = 12, .external_lex_state = 2}, - [4322] = {.lex_state = 96, .external_lex_state = 5}, - [4323] = {.lex_state = 96, .external_lex_state = 2}, - [4324] = {.lex_state = 96, .external_lex_state = 5}, - [4325] = {.lex_state = 96, .external_lex_state = 5}, - [4326] = {.lex_state = 96, .external_lex_state = 2}, - [4327] = {.lex_state = 12, .external_lex_state = 2}, - [4328] = {.lex_state = 96, .external_lex_state = 5}, - [4329] = {.lex_state = 18, .external_lex_state = 8}, - [4330] = {.lex_state = 96, .external_lex_state = 2}, - [4331] = {.lex_state = 96, .external_lex_state = 5}, - [4332] = {.lex_state = 96, .external_lex_state = 5}, - [4333] = {.lex_state = 96, .external_lex_state = 5}, - [4334] = {.lex_state = 12, .external_lex_state = 2}, - [4335] = {.lex_state = 96, .external_lex_state = 5}, - [4336] = {.lex_state = 96, .external_lex_state = 5}, - [4337] = {.lex_state = 96, .external_lex_state = 5}, - [4338] = {.lex_state = 12, .external_lex_state = 2}, - [4339] = {.lex_state = 96, .external_lex_state = 5}, - [4340] = {.lex_state = 96, .external_lex_state = 5}, - [4341] = {.lex_state = 96, .external_lex_state = 5}, - [4342] = {.lex_state = 96, .external_lex_state = 2}, - [4343] = {.lex_state = 12, .external_lex_state = 2}, - [4344] = {.lex_state = 12, .external_lex_state = 2}, - [4345] = {.lex_state = 96, .external_lex_state = 2}, - [4346] = {.lex_state = 96, .external_lex_state = 2}, - [4347] = {.lex_state = 12, .external_lex_state = 2}, - [4348] = {.lex_state = 12, .external_lex_state = 2}, - [4349] = {.lex_state = 96, .external_lex_state = 2}, - [4350] = {.lex_state = 96, .external_lex_state = 5}, - [4351] = {.lex_state = 96, .external_lex_state = 5}, - [4352] = {.lex_state = 96, .external_lex_state = 5}, - [4353] = {.lex_state = 96, .external_lex_state = 5}, - [4354] = {.lex_state = 96, .external_lex_state = 5}, - [4355] = {.lex_state = 96, .external_lex_state = 5}, - [4356] = {.lex_state = 96, .external_lex_state = 5}, - [4357] = {.lex_state = 96, .external_lex_state = 5}, - [4358] = {.lex_state = 96, .external_lex_state = 2}, - [4359] = {.lex_state = 12, .external_lex_state = 2}, - [4360] = {.lex_state = 96, .external_lex_state = 5}, - [4361] = {.lex_state = 96, .external_lex_state = 5}, - [4362] = {.lex_state = 96, .external_lex_state = 5}, - [4363] = {.lex_state = 96, .external_lex_state = 5}, - [4364] = {.lex_state = 96, .external_lex_state = 5}, - [4365] = {.lex_state = 96, .external_lex_state = 5}, - [4366] = {.lex_state = 96, .external_lex_state = 5}, - [4367] = {.lex_state = 96, .external_lex_state = 5}, - [4368] = {.lex_state = 96, .external_lex_state = 5}, - [4369] = {.lex_state = 96, .external_lex_state = 5}, - [4370] = {.lex_state = 96, .external_lex_state = 5}, - [4371] = {.lex_state = 96, .external_lex_state = 5}, - [4372] = {.lex_state = 96, .external_lex_state = 5}, - [4373] = {.lex_state = 96, .external_lex_state = 5}, - [4374] = {.lex_state = 96, .external_lex_state = 5}, - [4375] = {.lex_state = 96, .external_lex_state = 5}, - [4376] = {.lex_state = 96, .external_lex_state = 5}, - [4377] = {.lex_state = 4, .external_lex_state = 2}, - [4378] = {.lex_state = 96, .external_lex_state = 5}, - [4379] = {.lex_state = 96, .external_lex_state = 5}, - [4380] = {.lex_state = 96, .external_lex_state = 5}, - [4381] = {.lex_state = 96, .external_lex_state = 5}, - [4382] = {.lex_state = 15, .external_lex_state = 2}, - [4383] = {.lex_state = 96, .external_lex_state = 5}, - [4384] = {.lex_state = 96, .external_lex_state = 5}, - [4385] = {.lex_state = 96, .external_lex_state = 5}, - [4386] = {.lex_state = 96, .external_lex_state = 5}, - [4387] = {.lex_state = 17, .external_lex_state = 9}, - [4388] = {.lex_state = 96, .external_lex_state = 2}, - [4389] = {.lex_state = 12, .external_lex_state = 2}, - [4390] = {.lex_state = 96, .external_lex_state = 5}, - [4391] = {.lex_state = 96, .external_lex_state = 2}, - [4392] = {.lex_state = 17, .external_lex_state = 9}, - [4393] = {.lex_state = 21, .external_lex_state = 9}, - [4394] = {.lex_state = 17, .external_lex_state = 9}, - [4395] = {.lex_state = 96, .external_lex_state = 2}, - [4396] = {.lex_state = 21, .external_lex_state = 9}, - [4397] = {.lex_state = 96, .external_lex_state = 2}, - [4398] = {.lex_state = 12, .external_lex_state = 2}, - [4399] = {.lex_state = 96, .external_lex_state = 2}, - [4400] = {.lex_state = 96, .external_lex_state = 2}, - [4401] = {.lex_state = 12, .external_lex_state = 2}, - [4402] = {.lex_state = 12, .external_lex_state = 2}, - [4403] = {.lex_state = 96, .external_lex_state = 2}, - [4404] = {.lex_state = 21, .external_lex_state = 9}, - [4405] = {.lex_state = 96, .external_lex_state = 2}, - [4406] = {.lex_state = 96, .external_lex_state = 2}, - [4407] = {.lex_state = 96, .external_lex_state = 5}, - [4408] = {.lex_state = 96, .external_lex_state = 2}, - [4409] = {.lex_state = 12, .external_lex_state = 2}, - [4410] = {.lex_state = 96, .external_lex_state = 2}, - [4411] = {.lex_state = 96, .external_lex_state = 5}, - [4412] = {.lex_state = 21, .external_lex_state = 9}, - [4413] = {.lex_state = 17, .external_lex_state = 9}, - [4414] = {.lex_state = 96, .external_lex_state = 5}, - [4415] = {.lex_state = 96, .external_lex_state = 2}, - [4416] = {.lex_state = 4, .external_lex_state = 2}, - [4417] = {.lex_state = 4, .external_lex_state = 2}, - [4418] = {.lex_state = 4, .external_lex_state = 2}, - [4419] = {.lex_state = 15, .external_lex_state = 2}, - [4420] = {.lex_state = 96, .external_lex_state = 2}, - [4421] = {.lex_state = 96, .external_lex_state = 2}, - [4422] = {.lex_state = 96, .external_lex_state = 2}, - [4423] = {.lex_state = 96, .external_lex_state = 2}, - [4424] = {.lex_state = 96, .external_lex_state = 2}, - [4425] = {.lex_state = 96, .external_lex_state = 5}, - [4426] = {.lex_state = 96, .external_lex_state = 5}, - [4427] = {.lex_state = 96, .external_lex_state = 2}, - [4428] = {.lex_state = 17, .external_lex_state = 9}, - [4429] = {.lex_state = 12, .external_lex_state = 2}, - [4430] = {.lex_state = 96, .external_lex_state = 2}, - [4431] = {.lex_state = 12, .external_lex_state = 2}, - [4432] = {.lex_state = 96, .external_lex_state = 2}, - [4433] = {.lex_state = 96, .external_lex_state = 5}, - [4434] = {.lex_state = 96, .external_lex_state = 2}, - [4435] = {.lex_state = 96, .external_lex_state = 2}, - [4436] = {.lex_state = 17, .external_lex_state = 9}, - [4437] = {.lex_state = 96, .external_lex_state = 2}, - [4438] = {.lex_state = 18, .external_lex_state = 7}, - [4439] = {.lex_state = 12, .external_lex_state = 2}, - [4440] = {.lex_state = 96, .external_lex_state = 5}, - [4441] = {.lex_state = 96, .external_lex_state = 2}, - [4442] = {.lex_state = 21, .external_lex_state = 9}, - [4443] = {.lex_state = 96, .external_lex_state = 2}, - [4444] = {.lex_state = 96, .external_lex_state = 6}, - [4445] = {.lex_state = 96, .external_lex_state = 2}, - [4446] = {.lex_state = 4, .external_lex_state = 2}, - [4447] = {.lex_state = 12, .external_lex_state = 2}, - [4448] = {.lex_state = 96, .external_lex_state = 2}, - [4449] = {.lex_state = 96, .external_lex_state = 2}, - [4450] = {.lex_state = 4, .external_lex_state = 2}, - [4451] = {.lex_state = 96, .external_lex_state = 2}, - [4452] = {.lex_state = 96, .external_lex_state = 5}, - [4453] = {.lex_state = 12, .external_lex_state = 2}, - [4454] = {.lex_state = 17, .external_lex_state = 9}, - [4455] = {.lex_state = 17, .external_lex_state = 9}, - [4456] = {.lex_state = 21, .external_lex_state = 9}, - [4457] = {.lex_state = 12, .external_lex_state = 2}, - [4458] = {.lex_state = 96, .external_lex_state = 5}, - [4459] = {.lex_state = 96, .external_lex_state = 2}, - [4460] = {.lex_state = 12, .external_lex_state = 2}, - [4461] = {.lex_state = 96, .external_lex_state = 5}, - [4462] = {.lex_state = 12, .external_lex_state = 2}, - [4463] = {.lex_state = 96, .external_lex_state = 2}, - [4464] = {.lex_state = 96, .external_lex_state = 2}, - [4465] = {.lex_state = 12, .external_lex_state = 2}, - [4466] = {.lex_state = 15, .external_lex_state = 2}, - [4467] = {.lex_state = 17, .external_lex_state = 9}, - [4468] = {.lex_state = 21, .external_lex_state = 9}, - [4469] = {.lex_state = 96, .external_lex_state = 2}, - [4470] = {.lex_state = 96, .external_lex_state = 2}, - [4471] = {.lex_state = 12, .external_lex_state = 2}, - [4472] = {.lex_state = 96, .external_lex_state = 2}, - [4473] = {.lex_state = 96, .external_lex_state = 2}, - [4474] = {.lex_state = 96, .external_lex_state = 2}, - [4475] = {.lex_state = 96, .external_lex_state = 2}, - [4476] = {.lex_state = 96, .external_lex_state = 5}, - [4477] = {.lex_state = 96, .external_lex_state = 5}, - [4478] = {.lex_state = 96, .external_lex_state = 2}, - [4479] = {.lex_state = 21, .external_lex_state = 9}, - [4480] = {.lex_state = 96, .external_lex_state = 2}, - [4481] = {.lex_state = 96, .external_lex_state = 5}, - [4482] = {.lex_state = 96, .external_lex_state = 2}, - [4483] = {.lex_state = 96, .external_lex_state = 2}, - [4484] = {.lex_state = 96, .external_lex_state = 2}, - [4485] = {.lex_state = 17, .external_lex_state = 9}, - [4486] = {.lex_state = 96, .external_lex_state = 2}, - [4487] = {.lex_state = 12, .external_lex_state = 2}, - [4488] = {.lex_state = 96, .external_lex_state = 2}, - [4489] = {.lex_state = 21, .external_lex_state = 9}, - [4490] = {.lex_state = 12, .external_lex_state = 2}, - [4491] = {.lex_state = 12, .external_lex_state = 2}, - [4492] = {.lex_state = 96, .external_lex_state = 2}, - [4493] = {.lex_state = 17, .external_lex_state = 9}, - [4494] = {.lex_state = 96, .external_lex_state = 2}, - [4495] = {.lex_state = 17, .external_lex_state = 9}, - [4496] = {.lex_state = 17, .external_lex_state = 9}, - [4497] = {.lex_state = 21, .external_lex_state = 9}, - [4498] = {.lex_state = 21, .external_lex_state = 9}, - [4499] = {.lex_state = 21, .external_lex_state = 9}, - [4500] = {.lex_state = 96, .external_lex_state = 2}, - [4501] = {.lex_state = 96, .external_lex_state = 5}, - [4502] = {.lex_state = 96, .external_lex_state = 2}, - [4503] = {.lex_state = 96, .external_lex_state = 2}, - [4504] = {.lex_state = 17, .external_lex_state = 9}, - [4505] = {.lex_state = 21, .external_lex_state = 9}, - [4506] = {.lex_state = 96, .external_lex_state = 2}, - [4507] = {.lex_state = 18, .external_lex_state = 7}, - [4508] = {.lex_state = 96, .external_lex_state = 2}, - [4509] = {.lex_state = 96, .external_lex_state = 5}, - [4510] = {.lex_state = 12, .external_lex_state = 2}, - [4511] = {.lex_state = 17, .external_lex_state = 9}, - [4512] = {.lex_state = 21, .external_lex_state = 9}, - [4513] = {.lex_state = 96, .external_lex_state = 2}, - [4514] = {.lex_state = 12, .external_lex_state = 2}, - [4515] = {.lex_state = 12, .external_lex_state = 2}, - [4516] = {.lex_state = 12, .external_lex_state = 2}, - [4517] = {.lex_state = 96, .external_lex_state = 2}, - [4518] = {.lex_state = 96, .external_lex_state = 2}, - [4519] = {.lex_state = 12, .external_lex_state = 2}, - [4520] = {.lex_state = 96, .external_lex_state = 2}, - [4521] = {.lex_state = 96, .external_lex_state = 5}, - [4522] = {.lex_state = 21, .external_lex_state = 9}, - [4523] = {.lex_state = 96, .external_lex_state = 5}, - [4524] = {.lex_state = 96, .external_lex_state = 2}, - [4525] = {.lex_state = 96, .external_lex_state = 2}, - [4526] = {.lex_state = 96, .external_lex_state = 2}, - [4527] = {.lex_state = 96, .external_lex_state = 5}, - [4528] = {.lex_state = 96, .external_lex_state = 2}, - [4529] = {.lex_state = 12, .external_lex_state = 2}, - [4530] = {.lex_state = 96, .external_lex_state = 2}, - [4531] = {.lex_state = 96, .external_lex_state = 2}, - [4532] = {.lex_state = 96, .external_lex_state = 5}, - [4533] = {.lex_state = 96, .external_lex_state = 5}, - [4534] = {.lex_state = 96, .external_lex_state = 5}, - [4535] = {.lex_state = 96, .external_lex_state = 2}, - [4536] = {.lex_state = 96, .external_lex_state = 2}, - [4537] = {.lex_state = 96, .external_lex_state = 2}, - [4538] = {.lex_state = 96, .external_lex_state = 2}, - [4539] = {.lex_state = 96, .external_lex_state = 2}, - [4540] = {.lex_state = 96, .external_lex_state = 2}, - [4541] = {.lex_state = 96, .external_lex_state = 2}, - [4542] = {.lex_state = 96, .external_lex_state = 5}, - [4543] = {.lex_state = 96, .external_lex_state = 2}, - [4544] = {.lex_state = 96, .external_lex_state = 2}, - [4545] = {.lex_state = 96, .external_lex_state = 2}, - [4546] = {.lex_state = 96, .external_lex_state = 5}, - [4547] = {.lex_state = 96, .external_lex_state = 2}, - [4548] = {.lex_state = 96, .external_lex_state = 2}, - [4549] = {.lex_state = 96, .external_lex_state = 5}, - [4550] = {.lex_state = 96, .external_lex_state = 5}, - [4551] = {.lex_state = 96, .external_lex_state = 5}, - [4552] = {.lex_state = 96, .external_lex_state = 2}, - [4553] = {.lex_state = 96, .external_lex_state = 5}, - [4554] = {.lex_state = 96, .external_lex_state = 2}, - [4555] = {.lex_state = 96, .external_lex_state = 2}, - [4556] = {.lex_state = 96, .external_lex_state = 2}, - [4557] = {.lex_state = 96, .external_lex_state = 5}, - [4558] = {.lex_state = 96, .external_lex_state = 5}, - [4559] = {.lex_state = 96, .external_lex_state = 5}, - [4560] = {.lex_state = 4, .external_lex_state = 2}, - [4561] = {.lex_state = 96, .external_lex_state = 5}, - [4562] = {.lex_state = 96, .external_lex_state = 2}, - [4563] = {.lex_state = 96, .external_lex_state = 2}, - [4564] = {.lex_state = 96, .external_lex_state = 2}, - [4565] = {.lex_state = 96, .external_lex_state = 2}, - [4566] = {.lex_state = 96, .external_lex_state = 5}, - [4567] = {.lex_state = 96, .external_lex_state = 5}, - [4568] = {.lex_state = 96, .external_lex_state = 5}, - [4569] = {.lex_state = 96, .external_lex_state = 5}, - [4570] = {.lex_state = 96, .external_lex_state = 5}, - [4571] = {.lex_state = 96, .external_lex_state = 5}, - [4572] = {.lex_state = 96, .external_lex_state = 5}, - [4573] = {.lex_state = 96, .external_lex_state = 5}, - [4574] = {.lex_state = 96, .external_lex_state = 2}, - [4575] = {.lex_state = 96, .external_lex_state = 5}, - [4576] = {.lex_state = 96, .external_lex_state = 5}, - [4577] = {.lex_state = 96, .external_lex_state = 5}, - [4578] = {.lex_state = 96, .external_lex_state = 5}, - [4579] = {.lex_state = 96, .external_lex_state = 2}, - [4580] = {.lex_state = 96, .external_lex_state = 2}, - [4581] = {.lex_state = 96, .external_lex_state = 2}, - [4582] = {.lex_state = 96, .external_lex_state = 2}, - [4583] = {.lex_state = 96, .external_lex_state = 2}, - [4584] = {.lex_state = 96, .external_lex_state = 5}, - [4585] = {.lex_state = 96, .external_lex_state = 2}, - [4586] = {.lex_state = 96, .external_lex_state = 2}, - [4587] = {.lex_state = 96, .external_lex_state = 2}, - [4588] = {.lex_state = 96, .external_lex_state = 5}, - [4589] = {.lex_state = 96, .external_lex_state = 2}, - [4590] = {.lex_state = 96, .external_lex_state = 2}, - [4591] = {.lex_state = 96, .external_lex_state = 2}, - [4592] = {.lex_state = 96, .external_lex_state = 2}, - [4593] = {.lex_state = 96, .external_lex_state = 2}, - [4594] = {.lex_state = 96, .external_lex_state = 5}, - [4595] = {.lex_state = 96, .external_lex_state = 5}, - [4596] = {.lex_state = 96, .external_lex_state = 5}, - [4597] = {.lex_state = 96, .external_lex_state = 2}, - [4598] = {.lex_state = 96, .external_lex_state = 2}, - [4599] = {.lex_state = 96, .external_lex_state = 2}, - [4600] = {.lex_state = 96, .external_lex_state = 2}, - [4601] = {.lex_state = 96, .external_lex_state = 5}, - [4602] = {.lex_state = 96, .external_lex_state = 2}, - [4603] = {.lex_state = 96, .external_lex_state = 2}, - [4604] = {.lex_state = 96, .external_lex_state = 2}, - [4605] = {.lex_state = 96, .external_lex_state = 2}, - [4606] = {.lex_state = 96, .external_lex_state = 5}, - [4607] = {.lex_state = 96, .external_lex_state = 5}, - [4608] = {.lex_state = 96, .external_lex_state = 5}, - [4609] = {.lex_state = 96, .external_lex_state = 5}, - [4610] = {.lex_state = 96, .external_lex_state = 2}, - [4611] = {.lex_state = 96, .external_lex_state = 2}, - [4612] = {.lex_state = 1, .external_lex_state = 2}, - [4613] = {.lex_state = 96, .external_lex_state = 5}, - [4614] = {.lex_state = 96, .external_lex_state = 5}, - [4615] = {.lex_state = 4, .external_lex_state = 2}, - [4616] = {.lex_state = 96, .external_lex_state = 5}, - [4617] = {.lex_state = 96, .external_lex_state = 2}, - [4618] = {.lex_state = 96, .external_lex_state = 5}, - [4619] = {.lex_state = 96, .external_lex_state = 2}, - [4620] = {.lex_state = 96, .external_lex_state = 5}, - [4621] = {.lex_state = 96, .external_lex_state = 5}, - [4622] = {.lex_state = 96, .external_lex_state = 5}, - [4623] = {.lex_state = 96, .external_lex_state = 5}, - [4624] = {.lex_state = 96, .external_lex_state = 5}, - [4625] = {.lex_state = 96, .external_lex_state = 2}, - [4626] = {.lex_state = 96, .external_lex_state = 5}, - [4627] = {.lex_state = 96, .external_lex_state = 5}, - [4628] = {.lex_state = 96, .external_lex_state = 5}, - [4629] = {.lex_state = 1, .external_lex_state = 2}, - [4630] = {.lex_state = 96, .external_lex_state = 5}, - [4631] = {.lex_state = 96, .external_lex_state = 2}, - [4632] = {.lex_state = 96, .external_lex_state = 5}, - [4633] = {.lex_state = 96, .external_lex_state = 2}, - [4634] = {.lex_state = 96, .external_lex_state = 2}, - [4635] = {.lex_state = 96, .external_lex_state = 2}, - [4636] = {.lex_state = 96, .external_lex_state = 2}, - [4637] = {.lex_state = 96, .external_lex_state = 5}, - [4638] = {.lex_state = 96, .external_lex_state = 2}, - [4639] = {.lex_state = 96, .external_lex_state = 5}, - [4640] = {.lex_state = 96, .external_lex_state = 5}, - [4641] = {.lex_state = 96, .external_lex_state = 2}, - [4642] = {.lex_state = 96, .external_lex_state = 2}, - [4643] = {.lex_state = 96, .external_lex_state = 5}, - [4644] = {.lex_state = 96, .external_lex_state = 2}, - [4645] = {.lex_state = 96, .external_lex_state = 2}, - [4646] = {.lex_state = 96, .external_lex_state = 2}, - [4647] = {.lex_state = 96, .external_lex_state = 5}, - [4648] = {.lex_state = 96, .external_lex_state = 2}, - [4649] = {.lex_state = 96, .external_lex_state = 5}, - [4650] = {.lex_state = 96, .external_lex_state = 2}, - [4651] = {.lex_state = 96, .external_lex_state = 5}, - [4652] = {.lex_state = 96, .external_lex_state = 5}, - [4653] = {.lex_state = 96, .external_lex_state = 2}, - [4654] = {.lex_state = 96, .external_lex_state = 5}, - [4655] = {.lex_state = 96, .external_lex_state = 2}, - [4656] = {.lex_state = 96, .external_lex_state = 5}, - [4657] = {.lex_state = 96, .external_lex_state = 5}, - [4658] = {.lex_state = 96, .external_lex_state = 5}, - [4659] = {.lex_state = 96, .external_lex_state = 2}, - [4660] = {.lex_state = 96, .external_lex_state = 5}, - [4661] = {.lex_state = 4, .external_lex_state = 2}, - [4662] = {.lex_state = 96, .external_lex_state = 5}, - [4663] = {.lex_state = 96, .external_lex_state = 2}, - [4664] = {.lex_state = 96, .external_lex_state = 2}, - [4665] = {.lex_state = 96, .external_lex_state = 5}, - [4666] = {.lex_state = 96, .external_lex_state = 5}, - [4667] = {.lex_state = 96, .external_lex_state = 5}, - [4668] = {.lex_state = 96, .external_lex_state = 2}, - [4669] = {.lex_state = 96, .external_lex_state = 2}, - [4670] = {.lex_state = 96, .external_lex_state = 5}, - [4671] = {.lex_state = 4, .external_lex_state = 2}, - [4672] = {.lex_state = 96, .external_lex_state = 5}, - [4673] = {.lex_state = 96, .external_lex_state = 5}, - [4674] = {.lex_state = 96, .external_lex_state = 2}, - [4675] = {.lex_state = 96, .external_lex_state = 5}, - [4676] = {.lex_state = 96, .external_lex_state = 2}, - [4677] = {.lex_state = 96, .external_lex_state = 5}, - [4678] = {.lex_state = 96, .external_lex_state = 5}, - [4679] = {.lex_state = 96, .external_lex_state = 2}, - [4680] = {.lex_state = 96, .external_lex_state = 5}, - [4681] = {.lex_state = 96, .external_lex_state = 2}, - [4682] = {.lex_state = 96, .external_lex_state = 5}, - [4683] = {.lex_state = 96, .external_lex_state = 2}, - [4684] = {.lex_state = 96, .external_lex_state = 2}, - [4685] = {.lex_state = 96, .external_lex_state = 5}, - [4686] = {.lex_state = 96, .external_lex_state = 5}, - [4687] = {.lex_state = 96, .external_lex_state = 5}, - [4688] = {.lex_state = 96, .external_lex_state = 5}, - [4689] = {.lex_state = 4, .external_lex_state = 2}, - [4690] = {.lex_state = 96, .external_lex_state = 5}, - [4691] = {.lex_state = 96, .external_lex_state = 2}, - [4692] = {.lex_state = 96, .external_lex_state = 2}, - [4693] = {.lex_state = 96, .external_lex_state = 5}, - [4694] = {.lex_state = 96, .external_lex_state = 5}, - [4695] = {.lex_state = 96, .external_lex_state = 2}, - [4696] = {.lex_state = 96, .external_lex_state = 5}, - [4697] = {.lex_state = 96, .external_lex_state = 2}, - [4698] = {.lex_state = 96, .external_lex_state = 5}, - [4699] = {.lex_state = 96, .external_lex_state = 2}, - [4700] = {.lex_state = 96, .external_lex_state = 2}, - [4701] = {.lex_state = 96, .external_lex_state = 5}, - [4702] = {.lex_state = 96, .external_lex_state = 5}, - [4703] = {.lex_state = 96, .external_lex_state = 2}, - [4704] = {.lex_state = 96, .external_lex_state = 5}, - [4705] = {.lex_state = 96, .external_lex_state = 5}, - [4706] = {.lex_state = 96, .external_lex_state = 5}, - [4707] = {.lex_state = 96, .external_lex_state = 5}, - [4708] = {.lex_state = 96, .external_lex_state = 5}, - [4709] = {.lex_state = 96, .external_lex_state = 5}, - [4710] = {.lex_state = 96, .external_lex_state = 5}, - [4711] = {.lex_state = 96, .external_lex_state = 5}, - [4712] = {.lex_state = 96, .external_lex_state = 5}, - [4713] = {.lex_state = 96, .external_lex_state = 5}, - [4714] = {.lex_state = 96, .external_lex_state = 5}, - [4715] = {.lex_state = 96, .external_lex_state = 5}, - [4716] = {.lex_state = 96, .external_lex_state = 5}, - [4717] = {.lex_state = 96, .external_lex_state = 5}, - [4718] = {.lex_state = 96, .external_lex_state = 5}, - [4719] = {.lex_state = 96, .external_lex_state = 5}, - [4720] = {.lex_state = 96, .external_lex_state = 5}, - [4721] = {.lex_state = 96, .external_lex_state = 2}, - [4722] = {.lex_state = 96, .external_lex_state = 5}, - [4723] = {.lex_state = 96, .external_lex_state = 5}, - [4724] = {.lex_state = 96, .external_lex_state = 2}, - [4725] = {.lex_state = 96, .external_lex_state = 5}, - [4726] = {.lex_state = 96, .external_lex_state = 5}, - [4727] = {.lex_state = 96, .external_lex_state = 2}, - [4728] = {.lex_state = 96, .external_lex_state = 5}, - [4729] = {.lex_state = 96, .external_lex_state = 5}, - [4730] = {.lex_state = 96, .external_lex_state = 5}, - [4731] = {.lex_state = 96, .external_lex_state = 5}, - [4732] = {.lex_state = 96, .external_lex_state = 5}, - [4733] = {.lex_state = 96, .external_lex_state = 5}, - [4734] = {.lex_state = 96, .external_lex_state = 5}, - [4735] = {.lex_state = 96, .external_lex_state = 5}, - [4736] = {.lex_state = 96, .external_lex_state = 5}, - [4737] = {.lex_state = 96, .external_lex_state = 5}, - [4738] = {.lex_state = 96, .external_lex_state = 5}, - [4739] = {.lex_state = 96, .external_lex_state = 5}, - [4740] = {.lex_state = 96, .external_lex_state = 5}, - [4741] = {.lex_state = 96, .external_lex_state = 5}, - [4742] = {.lex_state = 96, .external_lex_state = 5}, - [4743] = {.lex_state = 96, .external_lex_state = 5}, - [4744] = {.lex_state = 96, .external_lex_state = 2}, - [4745] = {.lex_state = 96, .external_lex_state = 5}, - [4746] = {.lex_state = 96, .external_lex_state = 5}, - [4747] = {.lex_state = 96, .external_lex_state = 5}, - [4748] = {.lex_state = 96, .external_lex_state = 5}, - [4749] = {.lex_state = 96, .external_lex_state = 5}, - [4750] = {.lex_state = 96, .external_lex_state = 5}, - [4751] = {.lex_state = 96, .external_lex_state = 5}, - [4752] = {.lex_state = 96, .external_lex_state = 5}, - [4753] = {.lex_state = 96, .external_lex_state = 5}, - [4754] = {.lex_state = 96, .external_lex_state = 5}, - [4755] = {.lex_state = 96, .external_lex_state = 5}, - [4756] = {.lex_state = 96, .external_lex_state = 5}, - [4757] = {.lex_state = 96, .external_lex_state = 5}, - [4758] = {.lex_state = 96, .external_lex_state = 5}, - [4759] = {.lex_state = 96, .external_lex_state = 5}, - [4760] = {.lex_state = 96, .external_lex_state = 5}, - [4761] = {.lex_state = 96, .external_lex_state = 2}, - [4762] = {.lex_state = 96, .external_lex_state = 2}, - [4763] = {.lex_state = 96, .external_lex_state = 2}, - [4764] = {.lex_state = 96, .external_lex_state = 5}, - [4765] = {.lex_state = 96, .external_lex_state = 2}, - [4766] = {.lex_state = 4, .external_lex_state = 2}, - [4767] = {.lex_state = 96, .external_lex_state = 5}, - [4768] = {.lex_state = 96, .external_lex_state = 2}, - [4769] = {.lex_state = 96, .external_lex_state = 5}, - [4770] = {.lex_state = 96, .external_lex_state = 5}, - [4771] = {.lex_state = 96, .external_lex_state = 5}, - [4772] = {.lex_state = 96, .external_lex_state = 5}, - [4773] = {.lex_state = 96, .external_lex_state = 5}, - [4774] = {.lex_state = 96, .external_lex_state = 2}, - [4775] = {.lex_state = 96, .external_lex_state = 5}, - [4776] = {.lex_state = 96, .external_lex_state = 5}, - [4777] = {.lex_state = 1, .external_lex_state = 2}, - [4778] = {.lex_state = 96, .external_lex_state = 2}, - [4779] = {.lex_state = 96, .external_lex_state = 2}, - [4780] = {.lex_state = 96, .external_lex_state = 2}, - [4781] = {.lex_state = 96, .external_lex_state = 5}, - [4782] = {.lex_state = 96, .external_lex_state = 5}, - [4783] = {.lex_state = 96, .external_lex_state = 5}, - [4784] = {.lex_state = 96, .external_lex_state = 2}, - [4785] = {.lex_state = 96, .external_lex_state = 5}, - [4786] = {.lex_state = 96, .external_lex_state = 2}, - [4787] = {.lex_state = 96, .external_lex_state = 5}, - [4788] = {.lex_state = 96, .external_lex_state = 5}, - [4789] = {.lex_state = 96, .external_lex_state = 5}, - [4790] = {.lex_state = 96, .external_lex_state = 2}, - [4791] = {.lex_state = 96, .external_lex_state = 5}, - [4792] = {.lex_state = 96, .external_lex_state = 5}, - [4793] = {.lex_state = 96, .external_lex_state = 5}, - [4794] = {.lex_state = 96, .external_lex_state = 5}, - [4795] = {.lex_state = 96, .external_lex_state = 5}, - [4796] = {.lex_state = 96, .external_lex_state = 5}, - [4797] = {.lex_state = 96, .external_lex_state = 5}, - [4798] = {.lex_state = 96, .external_lex_state = 5}, - [4799] = {.lex_state = 96, .external_lex_state = 5}, - [4800] = {.lex_state = 96, .external_lex_state = 5}, - [4801] = {.lex_state = 96, .external_lex_state = 2}, - [4802] = {.lex_state = 96, .external_lex_state = 5}, - [4803] = {.lex_state = 96, .external_lex_state = 5}, - [4804] = {.lex_state = 96, .external_lex_state = 5}, - [4805] = {.lex_state = 96, .external_lex_state = 2}, - [4806] = {.lex_state = 96, .external_lex_state = 5}, - [4807] = {.lex_state = 96, .external_lex_state = 5}, - [4808] = {.lex_state = 96, .external_lex_state = 5}, - [4809] = {.lex_state = 96, .external_lex_state = 2}, - [4810] = {.lex_state = 96, .external_lex_state = 5}, - [4811] = {.lex_state = 96, .external_lex_state = 5}, - [4812] = {.lex_state = 96, .external_lex_state = 5}, - [4813] = {.lex_state = 96, .external_lex_state = 5}, - [4814] = {.lex_state = 96, .external_lex_state = 5}, - [4815] = {.lex_state = 96, .external_lex_state = 5}, - [4816] = {.lex_state = 96, .external_lex_state = 5}, - [4817] = {.lex_state = 96, .external_lex_state = 5}, - [4818] = {.lex_state = 96, .external_lex_state = 5}, - [4819] = {.lex_state = 96, .external_lex_state = 5}, - [4820] = {.lex_state = 96, .external_lex_state = 2}, - [4821] = {.lex_state = 96, .external_lex_state = 2}, - [4822] = {.lex_state = 1, .external_lex_state = 2}, - [4823] = {.lex_state = 96, .external_lex_state = 2}, - [4824] = {.lex_state = 96, .external_lex_state = 5}, - [4825] = {.lex_state = 96, .external_lex_state = 5}, - [4826] = {.lex_state = 96, .external_lex_state = 5}, - [4827] = {.lex_state = 96, .external_lex_state = 5}, - [4828] = {.lex_state = 96, .external_lex_state = 2}, - [4829] = {.lex_state = 96, .external_lex_state = 5}, - [4830] = {.lex_state = 96, .external_lex_state = 2}, - [4831] = {.lex_state = 96, .external_lex_state = 5}, - [4832] = {.lex_state = 96, .external_lex_state = 5}, - [4833] = {.lex_state = 96, .external_lex_state = 5}, - [4834] = {.lex_state = 96, .external_lex_state = 2}, - [4835] = {.lex_state = 96, .external_lex_state = 5}, - [4836] = {.lex_state = 96, .external_lex_state = 5}, - [4837] = {.lex_state = 96, .external_lex_state = 5}, - [4838] = {.lex_state = 96, .external_lex_state = 5}, - [4839] = {.lex_state = 96, .external_lex_state = 5}, - [4840] = {.lex_state = 96, .external_lex_state = 5}, - [4841] = {.lex_state = 96, .external_lex_state = 5}, - [4842] = {.lex_state = 96, .external_lex_state = 2}, - [4843] = {.lex_state = 96, .external_lex_state = 5}, - [4844] = {.lex_state = 96, .external_lex_state = 5}, - [4845] = {.lex_state = 96, .external_lex_state = 5}, - [4846] = {.lex_state = 96, .external_lex_state = 5}, - [4847] = {.lex_state = 96, .external_lex_state = 5}, - [4848] = {.lex_state = 96, .external_lex_state = 5}, - [4849] = {.lex_state = 96, .external_lex_state = 5}, - [4850] = {.lex_state = 96, .external_lex_state = 5}, - [4851] = {.lex_state = 96, .external_lex_state = 5}, - [4852] = {.lex_state = 96, .external_lex_state = 5}, - [4853] = {.lex_state = 96, .external_lex_state = 5}, - [4854] = {.lex_state = 96, .external_lex_state = 5}, - [4855] = {.lex_state = 96, .external_lex_state = 5}, - [4856] = {.lex_state = 96, .external_lex_state = 5}, - [4857] = {.lex_state = 96, .external_lex_state = 5}, - [4858] = {.lex_state = 96, .external_lex_state = 5}, - [4859] = {.lex_state = 96, .external_lex_state = 5}, - [4860] = {.lex_state = 96, .external_lex_state = 5}, - [4861] = {.lex_state = 96, .external_lex_state = 5}, - [4862] = {.lex_state = 96, .external_lex_state = 5}, - [4863] = {.lex_state = 96, .external_lex_state = 5}, - [4864] = {.lex_state = 96, .external_lex_state = 2}, - [4865] = {.lex_state = 96, .external_lex_state = 5}, - [4866] = {.lex_state = 96, .external_lex_state = 2}, - [4867] = {.lex_state = 96, .external_lex_state = 5}, - [4868] = {.lex_state = 96, .external_lex_state = 5}, - [4869] = {.lex_state = 96, .external_lex_state = 5}, - [4870] = {.lex_state = 96, .external_lex_state = 5}, - [4871] = {.lex_state = 96, .external_lex_state = 5}, - [4872] = {.lex_state = 96, .external_lex_state = 5}, - [4873] = {.lex_state = 96, .external_lex_state = 5}, - [4874] = {.lex_state = 96, .external_lex_state = 5}, - [4875] = {.lex_state = 96, .external_lex_state = 5}, - [4876] = {.lex_state = 96, .external_lex_state = 2}, - [4877] = {.lex_state = 96, .external_lex_state = 5}, - [4878] = {.lex_state = 96, .external_lex_state = 5}, - [4879] = {.lex_state = 96, .external_lex_state = 5}, - [4880] = {.lex_state = 96, .external_lex_state = 5}, - [4881] = {.lex_state = 96, .external_lex_state = 5}, - [4882] = {.lex_state = 96, .external_lex_state = 5}, - [4883] = {.lex_state = 96, .external_lex_state = 5}, - [4884] = {.lex_state = 96, .external_lex_state = 2}, - [4885] = {.lex_state = 96, .external_lex_state = 5}, - [4886] = {.lex_state = 96, .external_lex_state = 2}, - [4887] = {.lex_state = 1, .external_lex_state = 2}, - [4888] = {.lex_state = 96, .external_lex_state = 5}, - [4889] = {.lex_state = 96, .external_lex_state = 5}, - [4890] = {.lex_state = 96, .external_lex_state = 5}, - [4891] = {.lex_state = 96, .external_lex_state = 5}, - [4892] = {.lex_state = 96, .external_lex_state = 5}, - [4893] = {.lex_state = 96, .external_lex_state = 5}, - [4894] = {.lex_state = 96, .external_lex_state = 5}, - [4895] = {.lex_state = 96, .external_lex_state = 2}, - [4896] = {.lex_state = 96, .external_lex_state = 5}, - [4897] = {.lex_state = 96, .external_lex_state = 5}, - [4898] = {.lex_state = 96, .external_lex_state = 5}, - [4899] = {.lex_state = 96, .external_lex_state = 2}, - [4900] = {.lex_state = 96, .external_lex_state = 2}, - [4901] = {.lex_state = 96, .external_lex_state = 2}, - [4902] = {.lex_state = 96, .external_lex_state = 2}, - [4903] = {.lex_state = 96, .external_lex_state = 5}, - [4904] = {.lex_state = 96, .external_lex_state = 5}, - [4905] = {.lex_state = 96, .external_lex_state = 5}, - [4906] = {.lex_state = 96, .external_lex_state = 5}, - [4907] = {.lex_state = 96, .external_lex_state = 2}, - [4908] = {.lex_state = 96, .external_lex_state = 2}, - [4909] = {.lex_state = 96, .external_lex_state = 5}, - [4910] = {.lex_state = 96, .external_lex_state = 5}, - [4911] = {.lex_state = 96, .external_lex_state = 5}, - [4912] = {.lex_state = 96, .external_lex_state = 5}, - [4913] = {.lex_state = 96, .external_lex_state = 5}, - [4914] = {.lex_state = 96, .external_lex_state = 2}, - [4915] = {.lex_state = 96, .external_lex_state = 5}, - [4916] = {.lex_state = 96, .external_lex_state = 2}, - [4917] = {.lex_state = 96, .external_lex_state = 5}, - [4918] = {.lex_state = 96, .external_lex_state = 5}, - [4919] = {.lex_state = 96, .external_lex_state = 2}, - [4920] = {.lex_state = 96, .external_lex_state = 5}, - [4921] = {.lex_state = 96, .external_lex_state = 5}, - [4922] = {.lex_state = 96, .external_lex_state = 5}, - [4923] = {.lex_state = 96, .external_lex_state = 5}, - [4924] = {.lex_state = 96, .external_lex_state = 2}, - [4925] = {.lex_state = 96, .external_lex_state = 5}, - [4926] = {.lex_state = 96, .external_lex_state = 5}, - [4927] = {.lex_state = 96, .external_lex_state = 5}, - [4928] = {.lex_state = 96, .external_lex_state = 5}, - [4929] = {.lex_state = 96, .external_lex_state = 5}, - [4930] = {.lex_state = 96, .external_lex_state = 2}, - [4931] = {.lex_state = 96, .external_lex_state = 5}, - [4932] = {.lex_state = 96, .external_lex_state = 5}, - [4933] = {.lex_state = 96, .external_lex_state = 5}, - [4934] = {.lex_state = 96, .external_lex_state = 2}, - [4935] = {.lex_state = 96, .external_lex_state = 5}, - [4936] = {.lex_state = 96, .external_lex_state = 5}, - [4937] = {.lex_state = 96, .external_lex_state = 2}, - [4938] = {.lex_state = 96, .external_lex_state = 5}, - [4939] = {.lex_state = 4, .external_lex_state = 2}, - [4940] = {.lex_state = 18, .external_lex_state = 8}, - [4941] = {.lex_state = 96, .external_lex_state = 5}, - [4942] = {.lex_state = 4, .external_lex_state = 2}, - [4943] = {.lex_state = 96, .external_lex_state = 2}, - [4944] = {.lex_state = 96, .external_lex_state = 5}, - [4945] = {.lex_state = 96, .external_lex_state = 2}, - [4946] = {.lex_state = 96, .external_lex_state = 2}, - [4947] = {.lex_state = 96, .external_lex_state = 5}, - [4948] = {.lex_state = 96, .external_lex_state = 5}, - [4949] = {.lex_state = 96, .external_lex_state = 2}, - [4950] = {.lex_state = 96, .external_lex_state = 5}, - [4951] = {.lex_state = 96, .external_lex_state = 5}, - [4952] = {.lex_state = 96, .external_lex_state = 5}, - [4953] = {.lex_state = 96, .external_lex_state = 2}, - [4954] = {.lex_state = 96, .external_lex_state = 5}, - [4955] = {.lex_state = 96, .external_lex_state = 5}, - [4956] = {.lex_state = 96, .external_lex_state = 5}, - [4957] = {.lex_state = 96, .external_lex_state = 2}, - [4958] = {.lex_state = 96, .external_lex_state = 5}, - [4959] = {.lex_state = 96, .external_lex_state = 5}, - [4960] = {.lex_state = 96, .external_lex_state = 5}, - [4961] = {.lex_state = 96, .external_lex_state = 5}, - [4962] = {.lex_state = 96, .external_lex_state = 2}, - [4963] = {.lex_state = 96, .external_lex_state = 5}, - [4964] = {.lex_state = 96, .external_lex_state = 5}, - [4965] = {.lex_state = 96, .external_lex_state = 2}, - [4966] = {.lex_state = 96, .external_lex_state = 5}, - [4967] = {.lex_state = 96, .external_lex_state = 5}, - [4968] = {.lex_state = 96, .external_lex_state = 5}, - [4969] = {.lex_state = 96, .external_lex_state = 5}, - [4970] = {.lex_state = 96, .external_lex_state = 2}, - [4971] = {.lex_state = 96, .external_lex_state = 2}, - [4972] = {.lex_state = 96, .external_lex_state = 2}, - [4973] = {.lex_state = 96, .external_lex_state = 5}, - [4974] = {.lex_state = 96, .external_lex_state = 2}, - [4975] = {.lex_state = 96, .external_lex_state = 5}, - [4976] = {.lex_state = 96, .external_lex_state = 2}, - [4977] = {.lex_state = 96, .external_lex_state = 2}, - [4978] = {.lex_state = 96, .external_lex_state = 5}, - [4979] = {.lex_state = 96, .external_lex_state = 5}, - [4980] = {.lex_state = 96, .external_lex_state = 5}, - [4981] = {.lex_state = 96, .external_lex_state = 5}, - [4982] = {.lex_state = 96, .external_lex_state = 5}, - [4983] = {.lex_state = 96, .external_lex_state = 5}, - [4984] = {.lex_state = 96, .external_lex_state = 2}, - [4985] = {.lex_state = 96, .external_lex_state = 5}, - [4986] = {.lex_state = 96, .external_lex_state = 5}, - [4987] = {.lex_state = 96, .external_lex_state = 5}, - [4988] = {.lex_state = 96, .external_lex_state = 5}, - [4989] = {.lex_state = 96, .external_lex_state = 5}, - [4990] = {.lex_state = 96, .external_lex_state = 2}, - [4991] = {.lex_state = 96, .external_lex_state = 2}, - [4992] = {.lex_state = 96, .external_lex_state = 5}, - [4993] = {.lex_state = 96, .external_lex_state = 2}, - [4994] = {.lex_state = 96, .external_lex_state = 2}, - [4995] = {.lex_state = 96, .external_lex_state = 5}, - [4996] = {.lex_state = 12, .external_lex_state = 2}, - [4997] = {.lex_state = 96, .external_lex_state = 5}, - [4998] = {.lex_state = 96, .external_lex_state = 2}, - [4999] = {.lex_state = 96, .external_lex_state = 5}, - [5000] = {.lex_state = 96, .external_lex_state = 2}, - [5001] = {.lex_state = 96, .external_lex_state = 2}, - [5002] = {.lex_state = 96, .external_lex_state = 5}, - [5003] = {.lex_state = 96, .external_lex_state = 5}, - [5004] = {.lex_state = 96, .external_lex_state = 2}, - [5005] = {.lex_state = 96, .external_lex_state = 5}, - [5006] = {.lex_state = 96, .external_lex_state = 2}, - [5007] = {.lex_state = 96, .external_lex_state = 2}, - [5008] = {.lex_state = 96, .external_lex_state = 2}, - [5009] = {.lex_state = 96, .external_lex_state = 5}, - [5010] = {.lex_state = 96, .external_lex_state = 2}, - [5011] = {.lex_state = 96, .external_lex_state = 5}, - [5012] = {.lex_state = 96, .external_lex_state = 5}, - [5013] = {.lex_state = 96, .external_lex_state = 2}, - [5014] = {.lex_state = 96, .external_lex_state = 5}, - [5015] = {.lex_state = 96, .external_lex_state = 2}, - [5016] = {.lex_state = 96, .external_lex_state = 5}, - [5017] = {.lex_state = 96, .external_lex_state = 5}, - [5018] = {.lex_state = 96, .external_lex_state = 5}, - [5019] = {.lex_state = 96, .external_lex_state = 2}, - [5020] = {.lex_state = 96, .external_lex_state = 5}, - [5021] = {.lex_state = 96, .external_lex_state = 5}, - [5022] = {.lex_state = 96, .external_lex_state = 5}, - [5023] = {.lex_state = 96, .external_lex_state = 5}, - [5024] = {.lex_state = 96, .external_lex_state = 5}, - [5025] = {.lex_state = 96, .external_lex_state = 5}, - [5026] = {.lex_state = 96, .external_lex_state = 5}, - [5027] = {.lex_state = 96, .external_lex_state = 5}, - [5028] = {.lex_state = 96, .external_lex_state = 2}, - [5029] = {.lex_state = 96, .external_lex_state = 5}, - [5030] = {.lex_state = 96, .external_lex_state = 2}, - [5031] = {.lex_state = 96, .external_lex_state = 5}, - [5032] = {.lex_state = 96, .external_lex_state = 5}, - [5033] = {.lex_state = 96, .external_lex_state = 5}, - [5034] = {.lex_state = 96, .external_lex_state = 5}, - [5035] = {.lex_state = 96, .external_lex_state = 5}, - [5036] = {.lex_state = 96, .external_lex_state = 2}, - [5037] = {.lex_state = 96, .external_lex_state = 2}, - [5038] = {.lex_state = 96, .external_lex_state = 5}, - [5039] = {.lex_state = 96, .external_lex_state = 5}, - [5040] = {.lex_state = 96, .external_lex_state = 5}, - [5041] = {.lex_state = 96, .external_lex_state = 5}, - [5042] = {.lex_state = 96, .external_lex_state = 5}, - [5043] = {.lex_state = 96, .external_lex_state = 5}, - [5044] = {.lex_state = 96, .external_lex_state = 5}, - [5045] = {.lex_state = 96, .external_lex_state = 5}, - [5046] = {.lex_state = 96, .external_lex_state = 5}, - [5047] = {.lex_state = 96, .external_lex_state = 5}, - [5048] = {.lex_state = 96, .external_lex_state = 5}, - [5049] = {.lex_state = 96, .external_lex_state = 5}, - [5050] = {.lex_state = 96, .external_lex_state = 5}, - [5051] = {.lex_state = 96, .external_lex_state = 5}, - [5052] = {.lex_state = 96, .external_lex_state = 5}, - [5053] = {.lex_state = 96, .external_lex_state = 5}, - [5054] = {.lex_state = 96, .external_lex_state = 5}, - [5055] = {.lex_state = 96, .external_lex_state = 5}, - [5056] = {.lex_state = 96, .external_lex_state = 5}, - [5057] = {.lex_state = 96, .external_lex_state = 5}, - [5058] = {.lex_state = 96, .external_lex_state = 2}, - [5059] = {.lex_state = 96, .external_lex_state = 5}, - [5060] = {.lex_state = 96, .external_lex_state = 5}, - [5061] = {.lex_state = 96, .external_lex_state = 5}, - [5062] = {.lex_state = 96, .external_lex_state = 5}, - [5063] = {.lex_state = 96, .external_lex_state = 5}, - [5064] = {.lex_state = 96, .external_lex_state = 5}, - [5065] = {.lex_state = 96, .external_lex_state = 5}, - [5066] = {.lex_state = 96, .external_lex_state = 5}, - [5067] = {.lex_state = 96, .external_lex_state = 5}, - [5068] = {.lex_state = 96, .external_lex_state = 5}, - [5069] = {.lex_state = 96, .external_lex_state = 5}, - [5070] = {.lex_state = 96, .external_lex_state = 5}, - [5071] = {.lex_state = 96, .external_lex_state = 5}, - [5072] = {.lex_state = 96, .external_lex_state = 5}, - [5073] = {.lex_state = 96, .external_lex_state = 5}, - [5074] = {.lex_state = 96, .external_lex_state = 5}, - [5075] = {.lex_state = 96, .external_lex_state = 5}, - [5076] = {.lex_state = 96, .external_lex_state = 5}, - [5077] = {.lex_state = 96, .external_lex_state = 5}, - [5078] = {.lex_state = 96, .external_lex_state = 5}, - [5079] = {.lex_state = 96, .external_lex_state = 5}, - [5080] = {.lex_state = 96, .external_lex_state = 5}, - [5081] = {.lex_state = 96, .external_lex_state = 5}, - [5082] = {.lex_state = 96, .external_lex_state = 5}, - [5083] = {.lex_state = 96, .external_lex_state = 5}, - [5084] = {.lex_state = 96, .external_lex_state = 5}, - [5085] = {.lex_state = 96, .external_lex_state = 5}, - [5086] = {.lex_state = 96, .external_lex_state = 5}, - [5087] = {.lex_state = 96, .external_lex_state = 5}, - [5088] = {.lex_state = 96, .external_lex_state = 5}, - [5089] = {.lex_state = 96, .external_lex_state = 5}, - [5090] = {.lex_state = 96, .external_lex_state = 5}, - [5091] = {.lex_state = 96, .external_lex_state = 5}, - [5092] = {.lex_state = 96, .external_lex_state = 5}, - [5093] = {.lex_state = 96, .external_lex_state = 5}, - [5094] = {.lex_state = 96, .external_lex_state = 5}, - [5095] = {.lex_state = 96, .external_lex_state = 5}, - [5096] = {.lex_state = 96, .external_lex_state = 5}, - [5097] = {.lex_state = 96, .external_lex_state = 5}, - [5098] = {.lex_state = 96, .external_lex_state = 5}, - [5099] = {.lex_state = 96, .external_lex_state = 5}, - [5100] = {.lex_state = 96, .external_lex_state = 5}, - [5101] = {.lex_state = 96, .external_lex_state = 5}, - [5102] = {.lex_state = 96, .external_lex_state = 5}, - [5103] = {.lex_state = 96, .external_lex_state = 5}, - [5104] = {.lex_state = 96, .external_lex_state = 5}, - [5105] = {.lex_state = 96, .external_lex_state = 2}, - [5106] = {.lex_state = 96, .external_lex_state = 5}, - [5107] = {.lex_state = 4, .external_lex_state = 2}, - [5108] = {.lex_state = 96, .external_lex_state = 5}, - [5109] = {.lex_state = 96, .external_lex_state = 5}, - [5110] = {.lex_state = 96, .external_lex_state = 5}, - [5111] = {.lex_state = 96, .external_lex_state = 5}, - [5112] = {.lex_state = 12, .external_lex_state = 2}, - [5113] = {.lex_state = 96, .external_lex_state = 5}, - [5114] = {.lex_state = 96, .external_lex_state = 5}, - [5115] = {.lex_state = 4, .external_lex_state = 2}, - [5116] = {.lex_state = 96, .external_lex_state = 2}, - [5117] = {.lex_state = 96, .external_lex_state = 5}, - [5118] = {.lex_state = 96, .external_lex_state = 5}, - [5119] = {.lex_state = 96, .external_lex_state = 5}, - [5120] = {.lex_state = 96, .external_lex_state = 5}, - [5121] = {.lex_state = 96, .external_lex_state = 5}, - [5122] = {.lex_state = 96, .external_lex_state = 5}, - [5123] = {.lex_state = 96, .external_lex_state = 5}, - [5124] = {.lex_state = 96, .external_lex_state = 2}, - [5125] = {.lex_state = 96, .external_lex_state = 5}, - [5126] = {.lex_state = 96, .external_lex_state = 2}, - [5127] = {.lex_state = 96, .external_lex_state = 2}, - [5128] = {.lex_state = 96, .external_lex_state = 5}, - [5129] = {.lex_state = 96, .external_lex_state = 5}, - [5130] = {.lex_state = 96, .external_lex_state = 5}, - [5131] = {.lex_state = 96, .external_lex_state = 5}, - [5132] = {.lex_state = 96, .external_lex_state = 2}, - [5133] = {.lex_state = 96, .external_lex_state = 5}, - [5134] = {.lex_state = 96, .external_lex_state = 5}, - [5135] = {.lex_state = 96, .external_lex_state = 5}, - [5136] = {.lex_state = 96, .external_lex_state = 5}, - [5137] = {.lex_state = 96, .external_lex_state = 5}, - [5138] = {.lex_state = 96, .external_lex_state = 2}, - [5139] = {.lex_state = 96, .external_lex_state = 2}, - [5140] = {.lex_state = 96, .external_lex_state = 2}, - [5141] = {.lex_state = 96, .external_lex_state = 2}, - [5142] = {.lex_state = 96, .external_lex_state = 2}, - [5143] = {.lex_state = 96, .external_lex_state = 2}, - [5144] = {.lex_state = 96, .external_lex_state = 2}, - [5145] = {.lex_state = 96, .external_lex_state = 5}, - [5146] = {.lex_state = 96, .external_lex_state = 2}, - [5147] = {.lex_state = 96, .external_lex_state = 2}, - [5148] = {.lex_state = 96, .external_lex_state = 5}, - [5149] = {.lex_state = 96, .external_lex_state = 5}, - [5150] = {.lex_state = 96, .external_lex_state = 2}, - [5151] = {.lex_state = 96, .external_lex_state = 2}, - [5152] = {.lex_state = 96, .external_lex_state = 5}, - [5153] = {.lex_state = 96, .external_lex_state = 2}, - [5154] = {.lex_state = 96, .external_lex_state = 2}, - [5155] = {.lex_state = 96, .external_lex_state = 2}, - [5156] = {.lex_state = 96, .external_lex_state = 2}, - [5157] = {.lex_state = 96, .external_lex_state = 2}, - [5158] = {.lex_state = 96, .external_lex_state = 2}, - [5159] = {.lex_state = 96, .external_lex_state = 2}, - [5160] = {.lex_state = 96, .external_lex_state = 5}, - [5161] = {.lex_state = 96, .external_lex_state = 2}, - [5162] = {.lex_state = 96, .external_lex_state = 2}, - [5163] = {.lex_state = 96, .external_lex_state = 2}, - [5164] = {.lex_state = 96, .external_lex_state = 2}, - [5165] = {.lex_state = 96, .external_lex_state = 2}, - [5166] = {.lex_state = 96, .external_lex_state = 2}, - [5167] = {.lex_state = 96, .external_lex_state = 2}, - [5168] = {.lex_state = 96, .external_lex_state = 2}, - [5169] = {.lex_state = 96, .external_lex_state = 2}, - [5170] = {.lex_state = 96, .external_lex_state = 2}, - [5171] = {.lex_state = 96, .external_lex_state = 2}, - [5172] = {.lex_state = 96, .external_lex_state = 2}, - [5173] = {.lex_state = 96, .external_lex_state = 2}, - [5174] = {.lex_state = 96, .external_lex_state = 2}, - [5175] = {.lex_state = 96, .external_lex_state = 2}, - [5176] = {.lex_state = 96, .external_lex_state = 5}, - [5177] = {.lex_state = 96, .external_lex_state = 2}, - [5178] = {.lex_state = 96, .external_lex_state = 2}, - [5179] = {.lex_state = 96, .external_lex_state = 2}, - [5180] = {.lex_state = 96, .external_lex_state = 2}, - [5181] = {.lex_state = 96, .external_lex_state = 2}, - [5182] = {.lex_state = 96, .external_lex_state = 5}, - [5183] = {.lex_state = 96, .external_lex_state = 2}, - [5184] = {.lex_state = 96, .external_lex_state = 2}, - [5185] = {.lex_state = 96, .external_lex_state = 5}, - [5186] = {.lex_state = 96, .external_lex_state = 2}, - [5187] = {.lex_state = 96, .external_lex_state = 2}, - [5188] = {.lex_state = 96, .external_lex_state = 2}, - [5189] = {.lex_state = 96, .external_lex_state = 2}, - [5190] = {.lex_state = 96, .external_lex_state = 2}, - [5191] = {.lex_state = 96, .external_lex_state = 2}, - [5192] = {.lex_state = 96, .external_lex_state = 2}, - [5193] = {.lex_state = 96, .external_lex_state = 2}, - [5194] = {.lex_state = 96, .external_lex_state = 2}, - [5195] = {.lex_state = 96, .external_lex_state = 2}, - [5196] = {.lex_state = 96, .external_lex_state = 2}, - [5197] = {.lex_state = 96, .external_lex_state = 2}, - [5198] = {.lex_state = 96, .external_lex_state = 5}, - [5199] = {.lex_state = 96, .external_lex_state = 2}, - [5200] = {.lex_state = 96, .external_lex_state = 2}, - [5201] = {.lex_state = 96, .external_lex_state = 5}, - [5202] = {.lex_state = 96, .external_lex_state = 2}, - [5203] = {.lex_state = 96, .external_lex_state = 2}, - [5204] = {.lex_state = 96, .external_lex_state = 2}, - [5205] = {.lex_state = 96, .external_lex_state = 2}, - [5206] = {.lex_state = 96, .external_lex_state = 2}, - [5207] = {.lex_state = 96, .external_lex_state = 2}, - [5208] = {.lex_state = 96, .external_lex_state = 2}, - [5209] = {.lex_state = 96, .external_lex_state = 2}, - [5210] = {.lex_state = 96, .external_lex_state = 2}, - [5211] = {.lex_state = 96, .external_lex_state = 2}, - [5212] = {.lex_state = 96, .external_lex_state = 2}, - [5213] = {.lex_state = 96, .external_lex_state = 2}, - [5214] = {.lex_state = 96, .external_lex_state = 2}, - [5215] = {.lex_state = 96, .external_lex_state = 2}, - [5216] = {.lex_state = 96, .external_lex_state = 2}, - [5217] = {.lex_state = 96, .external_lex_state = 2}, - [5218] = {.lex_state = 96, .external_lex_state = 2}, - [5219] = {.lex_state = 96, .external_lex_state = 2}, - [5220] = {.lex_state = 96, .external_lex_state = 2}, - [5221] = {.lex_state = 96, .external_lex_state = 2}, - [5222] = {.lex_state = 96, .external_lex_state = 2}, - [5223] = {.lex_state = 96, .external_lex_state = 2}, - [5224] = {.lex_state = 96, .external_lex_state = 2}, - [5225] = {.lex_state = 96, .external_lex_state = 2}, - [5226] = {.lex_state = 96, .external_lex_state = 2}, - [5227] = {.lex_state = 96, .external_lex_state = 5}, - [5228] = {.lex_state = 96, .external_lex_state = 2}, - [5229] = {.lex_state = 96, .external_lex_state = 2}, - [5230] = {.lex_state = 96, .external_lex_state = 2}, - [5231] = {.lex_state = 96, .external_lex_state = 2}, - [5232] = {.lex_state = 96, .external_lex_state = 2}, - [5233] = {.lex_state = 96, .external_lex_state = 2}, - [5234] = {.lex_state = 96, .external_lex_state = 2}, - [5235] = {.lex_state = 96, .external_lex_state = 2}, - [5236] = {.lex_state = 96, .external_lex_state = 2}, - [5237] = {.lex_state = 96, .external_lex_state = 2}, - [5238] = {.lex_state = 96, .external_lex_state = 2}, - [5239] = {.lex_state = 96, .external_lex_state = 2}, - [5240] = {.lex_state = 96, .external_lex_state = 2}, - [5241] = {.lex_state = 96, .external_lex_state = 2}, - [5242] = {.lex_state = 96, .external_lex_state = 2}, - [5243] = {.lex_state = 96, .external_lex_state = 2}, - [5244] = {.lex_state = 96, .external_lex_state = 2}, - [5245] = {.lex_state = 96, .external_lex_state = 2}, - [5246] = {.lex_state = 96, .external_lex_state = 2}, - [5247] = {.lex_state = 96, .external_lex_state = 2}, - [5248] = {.lex_state = 96, .external_lex_state = 2}, - [5249] = {.lex_state = 96, .external_lex_state = 2}, - [5250] = {.lex_state = 96, .external_lex_state = 2}, - [5251] = {.lex_state = 96, .external_lex_state = 2}, - [5252] = {.lex_state = 96, .external_lex_state = 2}, - [5253] = {.lex_state = 96, .external_lex_state = 2}, - [5254] = {.lex_state = 96, .external_lex_state = 2}, - [5255] = {.lex_state = 96, .external_lex_state = 5}, - [5256] = {.lex_state = 96, .external_lex_state = 5}, - [5257] = {.lex_state = 96, .external_lex_state = 2}, - [5258] = {.lex_state = 96, .external_lex_state = 2}, - [5259] = {.lex_state = 96, .external_lex_state = 2}, - [5260] = {.lex_state = 96, .external_lex_state = 2}, - [5261] = {.lex_state = 96, .external_lex_state = 2}, - [5262] = {.lex_state = 96, .external_lex_state = 2}, - [5263] = {.lex_state = 96, .external_lex_state = 2}, - [5264] = {.lex_state = 96, .external_lex_state = 2}, - [5265] = {.lex_state = 96, .external_lex_state = 2}, - [5266] = {.lex_state = 96, .external_lex_state = 2}, - [5267] = {.lex_state = 96, .external_lex_state = 2}, - [5268] = {.lex_state = 96, .external_lex_state = 2}, - [5269] = {.lex_state = 96, .external_lex_state = 2}, - [5270] = {.lex_state = 96, .external_lex_state = 2}, - [5271] = {.lex_state = 96, .external_lex_state = 2}, - [5272] = {.lex_state = 96, .external_lex_state = 2}, - [5273] = {.lex_state = 96, .external_lex_state = 2}, - [5274] = {.lex_state = 96, .external_lex_state = 2}, - [5275] = {.lex_state = 96, .external_lex_state = 2}, - [5276] = {.lex_state = 96, .external_lex_state = 2}, - [5277] = {.lex_state = 96, .external_lex_state = 2}, - [5278] = {.lex_state = 96, .external_lex_state = 2}, - [5279] = {.lex_state = 96, .external_lex_state = 2}, - [5280] = {.lex_state = 96, .external_lex_state = 2}, - [5281] = {.lex_state = 96, .external_lex_state = 2}, - [5282] = {.lex_state = 96, .external_lex_state = 2}, - [5283] = {.lex_state = 96, .external_lex_state = 5}, - [5284] = {.lex_state = 96, .external_lex_state = 2}, - [5285] = {.lex_state = 96, .external_lex_state = 2}, - [5286] = {.lex_state = 96, .external_lex_state = 2}, - [5287] = {.lex_state = 96, .external_lex_state = 2}, - [5288] = {.lex_state = 96, .external_lex_state = 2}, - [5289] = {.lex_state = 96, .external_lex_state = 2}, - [5290] = {.lex_state = 96, .external_lex_state = 2}, - [5291] = {.lex_state = 96, .external_lex_state = 2}, - [5292] = {.lex_state = 96, .external_lex_state = 2}, - [5293] = {.lex_state = 96, .external_lex_state = 5}, - [5294] = {.lex_state = 96, .external_lex_state = 2}, - [5295] = {.lex_state = 96, .external_lex_state = 2}, - [5296] = {.lex_state = 96, .external_lex_state = 2}, - [5297] = {.lex_state = 96, .external_lex_state = 2}, - [5298] = {.lex_state = 96, .external_lex_state = 2}, - [5299] = {.lex_state = 96, .external_lex_state = 2}, - [5300] = {.lex_state = 96, .external_lex_state = 2}, - [5301] = {.lex_state = 96, .external_lex_state = 2}, - [5302] = {.lex_state = 96, .external_lex_state = 2}, - [5303] = {.lex_state = 96, .external_lex_state = 2}, - [5304] = {.lex_state = 96, .external_lex_state = 2}, - [5305] = {.lex_state = 96, .external_lex_state = 2}, - [5306] = {.lex_state = 96, .external_lex_state = 2}, - [5307] = {.lex_state = 96, .external_lex_state = 5}, - [5308] = {.lex_state = 96, .external_lex_state = 5}, - [5309] = {.lex_state = 96, .external_lex_state = 2}, - [5310] = {.lex_state = 96, .external_lex_state = 2}, - [5311] = {.lex_state = 96, .external_lex_state = 2}, - [5312] = {.lex_state = 96, .external_lex_state = 2}, - [5313] = {.lex_state = 96, .external_lex_state = 2}, - [5314] = {.lex_state = 96, .external_lex_state = 2}, - [5315] = {.lex_state = 96, .external_lex_state = 2}, - [5316] = {.lex_state = 96, .external_lex_state = 2}, - [5317] = {.lex_state = 96, .external_lex_state = 2}, - [5318] = {.lex_state = 96, .external_lex_state = 2}, - [5319] = {.lex_state = 96, .external_lex_state = 5}, - [5320] = {.lex_state = 96, .external_lex_state = 2}, - [5321] = {.lex_state = 96, .external_lex_state = 2}, - [5322] = {.lex_state = 96, .external_lex_state = 5}, - [5323] = {.lex_state = 96, .external_lex_state = 2}, - [5324] = {.lex_state = 96, .external_lex_state = 2}, - [5325] = {.lex_state = 96, .external_lex_state = 2}, - [5326] = {.lex_state = 96, .external_lex_state = 2}, - [5327] = {.lex_state = 96, .external_lex_state = 2}, - [5328] = {.lex_state = 96, .external_lex_state = 2}, - [5329] = {.lex_state = 96, .external_lex_state = 2}, - [5330] = {.lex_state = 96, .external_lex_state = 2}, - [5331] = {.lex_state = 96, .external_lex_state = 2}, - [5332] = {.lex_state = 96, .external_lex_state = 2}, - [5333] = {.lex_state = 96, .external_lex_state = 2}, - [5334] = {.lex_state = 96, .external_lex_state = 2}, - [5335] = {.lex_state = 96, .external_lex_state = 2}, - [5336] = {.lex_state = 96, .external_lex_state = 2}, - [5337] = {.lex_state = 96, .external_lex_state = 2}, - [5338] = {.lex_state = 96, .external_lex_state = 2}, - [5339] = {.lex_state = 96, .external_lex_state = 2}, - [5340] = {.lex_state = 96, .external_lex_state = 2}, - [5341] = {.lex_state = 96, .external_lex_state = 2}, - [5342] = {.lex_state = 96, .external_lex_state = 2}, - [5343] = {.lex_state = 96, .external_lex_state = 2}, - [5344] = {.lex_state = 96, .external_lex_state = 2}, - [5345] = {.lex_state = 96, .external_lex_state = 5}, - [5346] = {.lex_state = 96, .external_lex_state = 2}, - [5347] = {.lex_state = 96, .external_lex_state = 5}, - [5348] = {.lex_state = 96, .external_lex_state = 5}, - [5349] = {.lex_state = 96, .external_lex_state = 2}, - [5350] = {.lex_state = 96, .external_lex_state = 2}, - [5351] = {.lex_state = 96, .external_lex_state = 2}, - [5352] = {.lex_state = 96, .external_lex_state = 2}, - [5353] = {.lex_state = 96, .external_lex_state = 2}, - [5354] = {.lex_state = 96, .external_lex_state = 2}, - [5355] = {.lex_state = 96, .external_lex_state = 2}, - [5356] = {.lex_state = 96, .external_lex_state = 2}, - [5357] = {.lex_state = 96, .external_lex_state = 2}, - [5358] = {.lex_state = 96, .external_lex_state = 2}, - [5359] = {.lex_state = 96, .external_lex_state = 2}, - [5360] = {.lex_state = 96, .external_lex_state = 2}, - [5361] = {.lex_state = 96, .external_lex_state = 2}, - [5362] = {.lex_state = 96, .external_lex_state = 2}, - [5363] = {.lex_state = 96, .external_lex_state = 2}, - [5364] = {.lex_state = 96, .external_lex_state = 2}, - [5365] = {.lex_state = 96, .external_lex_state = 2}, - [5366] = {.lex_state = 96, .external_lex_state = 2}, - [5367] = {.lex_state = 96, .external_lex_state = 2}, - [5368] = {.lex_state = 96, .external_lex_state = 2}, - [5369] = {.lex_state = 96, .external_lex_state = 2}, - [5370] = {.lex_state = 96, .external_lex_state = 2}, - [5371] = {.lex_state = 96, .external_lex_state = 2}, - [5372] = {.lex_state = 96, .external_lex_state = 2}, - [5373] = {.lex_state = 96, .external_lex_state = 2}, - [5374] = {.lex_state = 96, .external_lex_state = 2}, - [5375] = {.lex_state = 96, .external_lex_state = 5}, - [5376] = {.lex_state = 96, .external_lex_state = 2}, - [5377] = {.lex_state = 96, .external_lex_state = 2}, - [5378] = {.lex_state = 96, .external_lex_state = 2}, - [5379] = {.lex_state = 96, .external_lex_state = 2}, - [5380] = {.lex_state = 96, .external_lex_state = 2}, - [5381] = {.lex_state = 96, .external_lex_state = 2}, - [5382] = {.lex_state = 96, .external_lex_state = 2}, - [5383] = {.lex_state = 96, .external_lex_state = 2}, - [5384] = {.lex_state = 96, .external_lex_state = 2}, - [5385] = {.lex_state = 96, .external_lex_state = 2}, - [5386] = {.lex_state = 96, .external_lex_state = 2}, - [5387] = {.lex_state = 96, .external_lex_state = 2}, - [5388] = {.lex_state = 96, .external_lex_state = 2}, - [5389] = {.lex_state = 96, .external_lex_state = 2}, - [5390] = {.lex_state = 96, .external_lex_state = 2}, - [5391] = {.lex_state = 96, .external_lex_state = 2}, - [5392] = {.lex_state = 96, .external_lex_state = 2}, - [5393] = {.lex_state = 96, .external_lex_state = 2}, - [5394] = {.lex_state = 96, .external_lex_state = 2}, - [5395] = {.lex_state = 96, .external_lex_state = 2}, - [5396] = {.lex_state = 96, .external_lex_state = 2}, - [5397] = {.lex_state = 96, .external_lex_state = 2}, - [5398] = {.lex_state = 96, .external_lex_state = 2}, - [5399] = {.lex_state = 96, .external_lex_state = 2}, - [5400] = {.lex_state = 96, .external_lex_state = 2}, - [5401] = {.lex_state = 96, .external_lex_state = 5}, - [5402] = {.lex_state = 96, .external_lex_state = 2}, - [5403] = {.lex_state = 96, .external_lex_state = 5}, - [5404] = {.lex_state = 96, .external_lex_state = 2}, - [5405] = {.lex_state = 96, .external_lex_state = 2}, - [5406] = {.lex_state = 96, .external_lex_state = 2}, - [5407] = {.lex_state = 96, .external_lex_state = 2}, - [5408] = {.lex_state = 96, .external_lex_state = 2}, - [5409] = {.lex_state = 96, .external_lex_state = 2}, - [5410] = {.lex_state = 96, .external_lex_state = 2}, - [5411] = {.lex_state = 96, .external_lex_state = 2}, - [5412] = {.lex_state = 96, .external_lex_state = 2}, - [5413] = {.lex_state = 96, .external_lex_state = 2}, - [5414] = {.lex_state = 96, .external_lex_state = 2}, - [5415] = {.lex_state = 96, .external_lex_state = 2}, - [5416] = {.lex_state = 96, .external_lex_state = 2}, - [5417] = {.lex_state = 96, .external_lex_state = 2}, - [5418] = {.lex_state = 96, .external_lex_state = 2}, - [5419] = {.lex_state = 96, .external_lex_state = 2}, - [5420] = {.lex_state = 96, .external_lex_state = 2}, - [5421] = {.lex_state = 96, .external_lex_state = 2}, - [5422] = {.lex_state = 96, .external_lex_state = 2}, - [5423] = {.lex_state = 96, .external_lex_state = 2}, - [5424] = {.lex_state = 96, .external_lex_state = 2}, - [5425] = {.lex_state = 96, .external_lex_state = 2}, - [5426] = {.lex_state = 96, .external_lex_state = 2}, - [5427] = {.lex_state = 96, .external_lex_state = 2}, - [5428] = {.lex_state = 96, .external_lex_state = 2}, - [5429] = {.lex_state = 96, .external_lex_state = 2}, - [5430] = {.lex_state = 96, .external_lex_state = 2}, - [5431] = {.lex_state = 96, .external_lex_state = 2}, - [5432] = {.lex_state = 96, .external_lex_state = 2}, - [5433] = {.lex_state = 96, .external_lex_state = 2}, - [5434] = {.lex_state = 96, .external_lex_state = 2}, - [5435] = {.lex_state = 96, .external_lex_state = 2}, - [5436] = {.lex_state = 96, .external_lex_state = 2}, - [5437] = {.lex_state = 96, .external_lex_state = 2}, - [5438] = {.lex_state = 96, .external_lex_state = 2}, - [5439] = {.lex_state = 96, .external_lex_state = 5}, - [5440] = {.lex_state = 96, .external_lex_state = 2}, - [5441] = {.lex_state = 96, .external_lex_state = 2}, - [5442] = {.lex_state = 96, .external_lex_state = 2}, - [5443] = {.lex_state = 96, .external_lex_state = 2}, - [5444] = {.lex_state = 96, .external_lex_state = 2}, - [5445] = {.lex_state = 96, .external_lex_state = 2}, - [5446] = {.lex_state = 96, .external_lex_state = 5}, - [5447] = {.lex_state = 96, .external_lex_state = 2}, - [5448] = {.lex_state = 96, .external_lex_state = 2}, - [5449] = {.lex_state = 96, .external_lex_state = 2}, - [5450] = {.lex_state = 96, .external_lex_state = 2}, - [5451] = {.lex_state = 96, .external_lex_state = 2}, - [5452] = {.lex_state = 96, .external_lex_state = 2}, - [5453] = {.lex_state = 96, .external_lex_state = 2}, - [5454] = {.lex_state = 96, .external_lex_state = 2}, - [5455] = {.lex_state = 96, .external_lex_state = 2}, - [5456] = {.lex_state = 96, .external_lex_state = 2}, - [5457] = {.lex_state = 96, .external_lex_state = 2}, - [5458] = {.lex_state = 96, .external_lex_state = 2}, - [5459] = {.lex_state = 96, .external_lex_state = 2}, - [5460] = {.lex_state = 96, .external_lex_state = 2}, - [5461] = {.lex_state = 96, .external_lex_state = 2}, - [5462] = {.lex_state = 96, .external_lex_state = 2}, - [5463] = {.lex_state = 96, .external_lex_state = 2}, - [5464] = {.lex_state = 96, .external_lex_state = 2}, - [5465] = {.lex_state = 96, .external_lex_state = 2}, - [5466] = {.lex_state = 96, .external_lex_state = 2}, - [5467] = {.lex_state = 96, .external_lex_state = 2}, - [5468] = {.lex_state = 96, .external_lex_state = 2}, - [5469] = {.lex_state = 96, .external_lex_state = 2}, - [5470] = {.lex_state = 96, .external_lex_state = 2}, - [5471] = {.lex_state = 96, .external_lex_state = 2}, - [5472] = {.lex_state = 96, .external_lex_state = 2}, - [5473] = {.lex_state = 96, .external_lex_state = 2}, - [5474] = {.lex_state = 96, .external_lex_state = 5}, - [5475] = {.lex_state = 96, .external_lex_state = 2}, - [5476] = {.lex_state = 96, .external_lex_state = 2}, - [5477] = {.lex_state = 96, .external_lex_state = 2}, - [5478] = {.lex_state = 96, .external_lex_state = 2}, - [5479] = {.lex_state = 96, .external_lex_state = 2}, - [5480] = {.lex_state = 96, .external_lex_state = 2}, - [5481] = {.lex_state = 2, .external_lex_state = 10}, - [5482] = {.lex_state = 96, .external_lex_state = 2}, - [5483] = {.lex_state = 96, .external_lex_state = 2}, - [5484] = {.lex_state = 96, .external_lex_state = 2}, - [5485] = {.lex_state = 96, .external_lex_state = 2}, - [5486] = {.lex_state = 96, .external_lex_state = 2}, - [5487] = {.lex_state = 96, .external_lex_state = 2}, - [5488] = {.lex_state = 96, .external_lex_state = 2}, - [5489] = {.lex_state = 96, .external_lex_state = 2}, - [5490] = {.lex_state = 96, .external_lex_state = 2}, - [5491] = {.lex_state = 96, .external_lex_state = 2}, - [5492] = {.lex_state = 96, .external_lex_state = 2}, - [5493] = {.lex_state = 96, .external_lex_state = 2}, - [5494] = {.lex_state = 96, .external_lex_state = 2}, - [5495] = {.lex_state = 96, .external_lex_state = 2}, - [5496] = {.lex_state = 96, .external_lex_state = 2}, - [5497] = {.lex_state = 96, .external_lex_state = 2}, - [5498] = {.lex_state = 2, .external_lex_state = 10}, - [5499] = {.lex_state = 96, .external_lex_state = 2}, - [5500] = {.lex_state = 96, .external_lex_state = 2}, - [5501] = {.lex_state = 96, .external_lex_state = 2}, - [5502] = {.lex_state = 96, .external_lex_state = 2}, - [5503] = {.lex_state = 96, .external_lex_state = 2}, - [5504] = {.lex_state = 96, .external_lex_state = 2}, - [5505] = {.lex_state = 96, .external_lex_state = 2}, - [5506] = {.lex_state = 96, .external_lex_state = 2}, - [5507] = {.lex_state = 96, .external_lex_state = 2}, - [5508] = {.lex_state = 96, .external_lex_state = 2}, - [5509] = {.lex_state = 96, .external_lex_state = 2}, - [5510] = {.lex_state = 96, .external_lex_state = 2}, - [5511] = {.lex_state = 96, .external_lex_state = 2}, - [5512] = {.lex_state = 96, .external_lex_state = 2}, - [5513] = {.lex_state = 96, .external_lex_state = 2}, - [5514] = {.lex_state = 96, .external_lex_state = 2}, - [5515] = {.lex_state = 96, .external_lex_state = 2}, - [5516] = {.lex_state = 96, .external_lex_state = 2}, - [5517] = {.lex_state = 96, .external_lex_state = 2}, - [5518] = {.lex_state = 96, .external_lex_state = 2}, - [5519] = {.lex_state = 96, .external_lex_state = 2}, - [5520] = {.lex_state = 2, .external_lex_state = 10}, - [5521] = {.lex_state = 96, .external_lex_state = 2}, - [5522] = {.lex_state = 96, .external_lex_state = 2}, - [5523] = {.lex_state = 96, .external_lex_state = 2}, - [5524] = {.lex_state = 96, .external_lex_state = 2}, - [5525] = {.lex_state = 96, .external_lex_state = 2}, - [5526] = {.lex_state = 96, .external_lex_state = 2}, - [5527] = {.lex_state = 96, .external_lex_state = 2}, - [5528] = {.lex_state = 96, .external_lex_state = 2}, - [5529] = {.lex_state = 96, .external_lex_state = 2}, - [5530] = {.lex_state = 96, .external_lex_state = 2}, - [5531] = {.lex_state = 96, .external_lex_state = 2}, - [5532] = {.lex_state = 96, .external_lex_state = 2}, - [5533] = {.lex_state = 96, .external_lex_state = 2}, - [5534] = {.lex_state = 96, .external_lex_state = 2}, - [5535] = {.lex_state = 96, .external_lex_state = 2}, - [5536] = {.lex_state = 96, .external_lex_state = 2}, - [5537] = {.lex_state = 96, .external_lex_state = 2}, - [5538] = {.lex_state = 96, .external_lex_state = 2}, - [5539] = {.lex_state = 96, .external_lex_state = 2}, - [5540] = {.lex_state = 96, .external_lex_state = 2}, - [5541] = {.lex_state = 96, .external_lex_state = 2}, - [5542] = {.lex_state = 96, .external_lex_state = 2}, - [5543] = {.lex_state = 96, .external_lex_state = 2}, - [5544] = {.lex_state = 96, .external_lex_state = 2}, - [5545] = {.lex_state = 96, .external_lex_state = 2}, - [5546] = {.lex_state = 96, .external_lex_state = 2}, - [5547] = {.lex_state = 96, .external_lex_state = 2}, - [5548] = {.lex_state = 96, .external_lex_state = 2}, - [5549] = {.lex_state = 96, .external_lex_state = 2}, - [5550] = {.lex_state = 96, .external_lex_state = 2}, - [5551] = {.lex_state = 96, .external_lex_state = 2}, - [5552] = {.lex_state = 96, .external_lex_state = 2}, - [5553] = {.lex_state = 96, .external_lex_state = 2}, - [5554] = {.lex_state = 96, .external_lex_state = 2}, - [5555] = {.lex_state = 96, .external_lex_state = 2}, - [5556] = {.lex_state = 96, .external_lex_state = 2}, - [5557] = {.lex_state = 96, .external_lex_state = 2}, - [5558] = {.lex_state = 96, .external_lex_state = 2}, - [5559] = {.lex_state = 96, .external_lex_state = 2}, - [5560] = {.lex_state = 96, .external_lex_state = 2}, - [5561] = {.lex_state = 96, .external_lex_state = 2}, - [5562] = {.lex_state = 96, .external_lex_state = 2}, - [5563] = {.lex_state = 96, .external_lex_state = 2}, - [5564] = {.lex_state = 96, .external_lex_state = 2}, - [5565] = {.lex_state = 96, .external_lex_state = 2}, - [5566] = {.lex_state = 96, .external_lex_state = 2}, - [5567] = {.lex_state = 96, .external_lex_state = 2}, - [5568] = {.lex_state = 96, .external_lex_state = 2}, - [5569] = {.lex_state = 96, .external_lex_state = 2}, - [5570] = {.lex_state = 96, .external_lex_state = 2}, - [5571] = {.lex_state = 96, .external_lex_state = 2}, - [5572] = {.lex_state = 28, .external_lex_state = 2}, - [5573] = {.lex_state = 96, .external_lex_state = 2}, - [5574] = {.lex_state = 96, .external_lex_state = 2}, - [5575] = {.lex_state = 96, .external_lex_state = 2}, - [5576] = {.lex_state = 96, .external_lex_state = 2}, - [5577] = {.lex_state = 96, .external_lex_state = 2}, - [5578] = {.lex_state = 96, .external_lex_state = 2}, - [5579] = {.lex_state = 96, .external_lex_state = 2}, - [5580] = {.lex_state = 96, .external_lex_state = 2}, - [5581] = {.lex_state = 96, .external_lex_state = 2}, - [5582] = {.lex_state = 96, .external_lex_state = 2}, - [5583] = {.lex_state = 96, .external_lex_state = 2}, - [5584] = {.lex_state = 96, .external_lex_state = 2}, - [5585] = {.lex_state = 96, .external_lex_state = 2}, - [5586] = {.lex_state = 96, .external_lex_state = 2}, - [5587] = {.lex_state = 96, .external_lex_state = 2}, - [5588] = {.lex_state = 96, .external_lex_state = 2}, - [5589] = {.lex_state = 96, .external_lex_state = 2}, - [5590] = {.lex_state = 96, .external_lex_state = 2}, - [5591] = {.lex_state = 96, .external_lex_state = 2}, - [5592] = {.lex_state = 96, .external_lex_state = 2}, - [5593] = {.lex_state = 96, .external_lex_state = 2}, - [5594] = {.lex_state = 96, .external_lex_state = 2}, - [5595] = {.lex_state = 96, .external_lex_state = 2}, - [5596] = {.lex_state = 96, .external_lex_state = 2}, - [5597] = {.lex_state = 96, .external_lex_state = 2}, - [5598] = {.lex_state = 96, .external_lex_state = 2}, - [5599] = {.lex_state = 96, .external_lex_state = 2}, - [5600] = {.lex_state = 96, .external_lex_state = 2}, - [5601] = {.lex_state = 96, .external_lex_state = 2}, - [5602] = {.lex_state = 96, .external_lex_state = 2}, - [5603] = {.lex_state = 96, .external_lex_state = 2}, - [5604] = {.lex_state = 96, .external_lex_state = 2}, - [5605] = {.lex_state = 96, .external_lex_state = 2}, - [5606] = {.lex_state = 96, .external_lex_state = 2}, - [5607] = {.lex_state = 96, .external_lex_state = 2}, - [5608] = {.lex_state = 96, .external_lex_state = 2}, - [5609] = {.lex_state = 96, .external_lex_state = 2}, - [5610] = {.lex_state = 96, .external_lex_state = 2}, - [5611] = {.lex_state = 96, .external_lex_state = 2}, - [5612] = {.lex_state = 96, .external_lex_state = 2}, - [5613] = {.lex_state = 96, .external_lex_state = 2}, - [5614] = {.lex_state = 96, .external_lex_state = 2}, - [5615] = {.lex_state = 96, .external_lex_state = 2}, - [5616] = {.lex_state = 96, .external_lex_state = 2}, - [5617] = {.lex_state = 96, .external_lex_state = 2}, - [5618] = {.lex_state = 96, .external_lex_state = 2}, - [5619] = {.lex_state = 96, .external_lex_state = 2}, - [5620] = {.lex_state = 96, .external_lex_state = 2}, - [5621] = {.lex_state = 96, .external_lex_state = 2}, - [5622] = {.lex_state = 96, .external_lex_state = 2}, - [5623] = {.lex_state = 96, .external_lex_state = 2}, - [5624] = {.lex_state = 96, .external_lex_state = 2}, - [5625] = {.lex_state = 96, .external_lex_state = 2}, - [5626] = {.lex_state = 96, .external_lex_state = 2}, - [5627] = {.lex_state = 96, .external_lex_state = 2}, - [5628] = {.lex_state = 96, .external_lex_state = 2}, - [5629] = {.lex_state = 96, .external_lex_state = 2}, - [5630] = {.lex_state = 96, .external_lex_state = 2}, - [5631] = {.lex_state = 96, .external_lex_state = 2}, - [5632] = {.lex_state = 2, .external_lex_state = 10}, - [5633] = {.lex_state = 96, .external_lex_state = 2}, - [5634] = {.lex_state = 96, .external_lex_state = 2}, - [5635] = {.lex_state = 96, .external_lex_state = 2}, - [5636] = {.lex_state = 96, .external_lex_state = 2}, - [5637] = {.lex_state = 96, .external_lex_state = 2}, - [5638] = {.lex_state = 96, .external_lex_state = 2}, - [5639] = {.lex_state = 96, .external_lex_state = 2}, - [5640] = {.lex_state = 96, .external_lex_state = 2}, - [5641] = {.lex_state = 96, .external_lex_state = 2}, - [5642] = {.lex_state = 96, .external_lex_state = 2}, - [5643] = {.lex_state = 96, .external_lex_state = 2}, - [5644] = {.lex_state = 96, .external_lex_state = 2}, - [5645] = {.lex_state = 96, .external_lex_state = 2}, - [5646] = {.lex_state = 96, .external_lex_state = 2}, - [5647] = {.lex_state = 96, .external_lex_state = 2}, - [5648] = {.lex_state = 96, .external_lex_state = 2}, - [5649] = {.lex_state = 96, .external_lex_state = 2}, - [5650] = {.lex_state = 96, .external_lex_state = 2}, - [5651] = {.lex_state = 96, .external_lex_state = 2}, - [5652] = {.lex_state = 96, .external_lex_state = 2}, - [5653] = {.lex_state = 96, .external_lex_state = 2}, - [5654] = {.lex_state = 96, .external_lex_state = 2}, - [5655] = {.lex_state = 96, .external_lex_state = 2}, - [5656] = {.lex_state = 96, .external_lex_state = 2}, - [5657] = {.lex_state = 96, .external_lex_state = 2}, - [5658] = {.lex_state = 96, .external_lex_state = 2}, - [5659] = {.lex_state = 96, .external_lex_state = 2}, - [5660] = {.lex_state = 96, .external_lex_state = 2}, - [5661] = {.lex_state = 96, .external_lex_state = 2}, - [5662] = {.lex_state = 96, .external_lex_state = 2}, - [5663] = {.lex_state = 96, .external_lex_state = 2}, - [5664] = {.lex_state = 96, .external_lex_state = 2}, - [5665] = {.lex_state = 28, .external_lex_state = 2}, - [5666] = {.lex_state = 96, .external_lex_state = 2}, - [5667] = {.lex_state = 96, .external_lex_state = 2}, - [5668] = {.lex_state = 96, .external_lex_state = 2}, - [5669] = {.lex_state = 96, .external_lex_state = 2}, - [5670] = {.lex_state = 96, .external_lex_state = 2}, - [5671] = {.lex_state = 96, .external_lex_state = 2}, - [5672] = {.lex_state = 96, .external_lex_state = 2}, - [5673] = {.lex_state = 96, .external_lex_state = 2}, - [5674] = {.lex_state = 96, .external_lex_state = 2}, - [5675] = {.lex_state = 96, .external_lex_state = 2}, - [5676] = {.lex_state = 96, .external_lex_state = 2}, - [5677] = {.lex_state = 96, .external_lex_state = 2}, - [5678] = {.lex_state = 96, .external_lex_state = 2}, - [5679] = {.lex_state = 96, .external_lex_state = 2}, - [5680] = {.lex_state = 96, .external_lex_state = 2}, - [5681] = {.lex_state = 96, .external_lex_state = 2}, - [5682] = {.lex_state = 96, .external_lex_state = 2}, - [5683] = {.lex_state = 96, .external_lex_state = 2}, - [5684] = {.lex_state = 96, .external_lex_state = 2}, - [5685] = {.lex_state = 96, .external_lex_state = 2}, - [5686] = {.lex_state = 96, .external_lex_state = 2}, - [5687] = {.lex_state = 96, .external_lex_state = 2}, - [5688] = {.lex_state = 96, .external_lex_state = 2}, - [5689] = {.lex_state = 96, .external_lex_state = 2}, - [5690] = {.lex_state = 96, .external_lex_state = 2}, - [5691] = {.lex_state = 96, .external_lex_state = 2}, - [5692] = {.lex_state = 96, .external_lex_state = 2}, - [5693] = {.lex_state = 96, .external_lex_state = 2}, - [5694] = {.lex_state = 96, .external_lex_state = 2}, - [5695] = {.lex_state = 96, .external_lex_state = 2}, - [5696] = {.lex_state = 96, .external_lex_state = 2}, - [5697] = {.lex_state = 96, .external_lex_state = 2}, - [5698] = {.lex_state = 96, .external_lex_state = 2}, - [5699] = {.lex_state = 96, .external_lex_state = 2}, - [5700] = {.lex_state = 96, .external_lex_state = 2}, - [5701] = {.lex_state = 96, .external_lex_state = 2}, - [5702] = {.lex_state = 96, .external_lex_state = 2}, - [5703] = {.lex_state = 96, .external_lex_state = 2}, - [5704] = {.lex_state = 96, .external_lex_state = 2}, - [5705] = {.lex_state = 96, .external_lex_state = 2}, - [5706] = {.lex_state = 96, .external_lex_state = 2}, - [5707] = {.lex_state = 96, .external_lex_state = 2}, - [5708] = {.lex_state = 96, .external_lex_state = 2}, - [5709] = {.lex_state = 96, .external_lex_state = 2}, - [5710] = {.lex_state = 96, .external_lex_state = 2}, - [5711] = {.lex_state = 96, .external_lex_state = 2}, - [5712] = {.lex_state = 96, .external_lex_state = 2}, - [5713] = {.lex_state = 96, .external_lex_state = 2}, - [5714] = {.lex_state = 96, .external_lex_state = 2}, - [5715] = {.lex_state = 96, .external_lex_state = 2}, - [5716] = {.lex_state = 96, .external_lex_state = 2}, - [5717] = {.lex_state = 28, .external_lex_state = 2}, - [5718] = {.lex_state = 96, .external_lex_state = 2}, - [5719] = {.lex_state = 96, .external_lex_state = 2}, - [5720] = {.lex_state = 96, .external_lex_state = 2}, - [5721] = {.lex_state = 96, .external_lex_state = 2}, - [5722] = {.lex_state = 28, .external_lex_state = 2}, - [5723] = {.lex_state = 96, .external_lex_state = 2}, - [5724] = {.lex_state = 96, .external_lex_state = 2}, - [5725] = {.lex_state = 96, .external_lex_state = 2}, - [5726] = {.lex_state = 96, .external_lex_state = 2}, - [5727] = {.lex_state = 96, .external_lex_state = 2}, - [5728] = {.lex_state = 96, .external_lex_state = 2}, - [5729] = {.lex_state = 96, .external_lex_state = 2}, - [5730] = {.lex_state = 96, .external_lex_state = 2}, - [5731] = {.lex_state = 96, .external_lex_state = 2}, - [5732] = {.lex_state = 96, .external_lex_state = 2}, - [5733] = {.lex_state = 96, .external_lex_state = 2}, - [5734] = {.lex_state = 96, .external_lex_state = 2}, - [5735] = {.lex_state = 96, .external_lex_state = 2}, - [5736] = {.lex_state = 96, .external_lex_state = 2}, - [5737] = {.lex_state = 96, .external_lex_state = 2}, - [5738] = {.lex_state = 96, .external_lex_state = 2}, - [5739] = {.lex_state = 96, .external_lex_state = 2}, - [5740] = {.lex_state = 96, .external_lex_state = 2}, - [5741] = {.lex_state = 96, .external_lex_state = 2}, - [5742] = {.lex_state = 96, .external_lex_state = 2}, - [5743] = {.lex_state = 96, .external_lex_state = 2}, - [5744] = {.lex_state = 28, .external_lex_state = 2}, - [5745] = {.lex_state = 96, .external_lex_state = 2}, - [5746] = {.lex_state = 96, .external_lex_state = 2}, - [5747] = {.lex_state = 96, .external_lex_state = 2}, - [5748] = {.lex_state = 96, .external_lex_state = 2}, - [5749] = {.lex_state = 96, .external_lex_state = 2}, - [5750] = {.lex_state = 96, .external_lex_state = 2}, - [5751] = {.lex_state = 96, .external_lex_state = 2}, - [5752] = {.lex_state = 96, .external_lex_state = 2}, - [5753] = {.lex_state = 96, .external_lex_state = 2}, - [5754] = {.lex_state = 96, .external_lex_state = 2}, - [5755] = {.lex_state = 96, .external_lex_state = 2}, - [5756] = {.lex_state = 96, .external_lex_state = 2}, - [5757] = {.lex_state = 96, .external_lex_state = 2}, - [5758] = {.lex_state = 96, .external_lex_state = 2}, - [5759] = {.lex_state = 96, .external_lex_state = 2}, - [5760] = {.lex_state = 96, .external_lex_state = 2}, - [5761] = {.lex_state = 96, .external_lex_state = 2}, - [5762] = {.lex_state = 96, .external_lex_state = 2}, - [5763] = {.lex_state = 96, .external_lex_state = 2}, - [5764] = {.lex_state = 96, .external_lex_state = 2}, - [5765] = {.lex_state = 96, .external_lex_state = 2}, - [5766] = {.lex_state = 96, .external_lex_state = 2}, - [5767] = {.lex_state = 96, .external_lex_state = 2}, - [5768] = {.lex_state = 96, .external_lex_state = 2}, - [5769] = {.lex_state = 96, .external_lex_state = 2}, - [5770] = {.lex_state = 96, .external_lex_state = 2}, - [5771] = {.lex_state = 96, .external_lex_state = 2}, - [5772] = {.lex_state = 96, .external_lex_state = 2}, - [5773] = {.lex_state = 96, .external_lex_state = 2}, - [5774] = {.lex_state = 96, .external_lex_state = 2}, - [5775] = {.lex_state = 96, .external_lex_state = 2}, - [5776] = {.lex_state = 96, .external_lex_state = 2}, - [5777] = {.lex_state = 96, .external_lex_state = 2}, - [5778] = {.lex_state = 96, .external_lex_state = 2}, - [5779] = {.lex_state = 96, .external_lex_state = 2}, - [5780] = {.lex_state = 96, .external_lex_state = 2}, - [5781] = {.lex_state = 96, .external_lex_state = 2}, - [5782] = {.lex_state = 96, .external_lex_state = 2}, - [5783] = {.lex_state = 96, .external_lex_state = 2}, - [5784] = {.lex_state = 96, .external_lex_state = 2}, - [5785] = {.lex_state = 96, .external_lex_state = 2}, - [5786] = {.lex_state = 96, .external_lex_state = 2}, - [5787] = {.lex_state = 96, .external_lex_state = 2}, - [5788] = {.lex_state = 96, .external_lex_state = 2}, - [5789] = {.lex_state = 96, .external_lex_state = 2}, - [5790] = {.lex_state = 96, .external_lex_state = 2}, - [5791] = {.lex_state = 96, .external_lex_state = 2}, - [5792] = {.lex_state = 96, .external_lex_state = 2}, - [5793] = {.lex_state = 96, .external_lex_state = 2}, - [5794] = {.lex_state = 96, .external_lex_state = 2}, - [5795] = {.lex_state = 96, .external_lex_state = 2}, - [5796] = {.lex_state = 96, .external_lex_state = 2}, - [5797] = {.lex_state = 96, .external_lex_state = 2}, - [5798] = {.lex_state = 96, .external_lex_state = 2}, - [5799] = {.lex_state = 96, .external_lex_state = 2}, - [5800] = {.lex_state = 96, .external_lex_state = 2}, - [5801] = {.lex_state = 96, .external_lex_state = 2}, - [5802] = {.lex_state = 96, .external_lex_state = 2}, - [5803] = {.lex_state = 96, .external_lex_state = 2}, - [5804] = {.lex_state = 96, .external_lex_state = 2}, - [5805] = {.lex_state = 96, .external_lex_state = 2}, - [5806] = {.lex_state = 96, .external_lex_state = 2}, - [5807] = {.lex_state = 96, .external_lex_state = 2}, - [5808] = {.lex_state = 96, .external_lex_state = 2}, - [5809] = {.lex_state = 96, .external_lex_state = 2}, - [5810] = {.lex_state = 96, .external_lex_state = 2}, - [5811] = {.lex_state = 96, .external_lex_state = 2}, - [5812] = {.lex_state = 96, .external_lex_state = 2}, - [5813] = {.lex_state = 96, .external_lex_state = 2}, - [5814] = {.lex_state = 96, .external_lex_state = 2}, - [5815] = {.lex_state = 96, .external_lex_state = 2}, - [5816] = {.lex_state = 96, .external_lex_state = 2}, - [5817] = {.lex_state = 96, .external_lex_state = 2}, - [5818] = {.lex_state = 96, .external_lex_state = 2}, - [5819] = {.lex_state = 96, .external_lex_state = 2}, - [5820] = {.lex_state = 96, .external_lex_state = 2}, - [5821] = {.lex_state = 96, .external_lex_state = 2}, - [5822] = {.lex_state = 96, .external_lex_state = 2}, - [5823] = {.lex_state = 96, .external_lex_state = 2}, - [5824] = {.lex_state = 96, .external_lex_state = 2}, - [5825] = {.lex_state = 96, .external_lex_state = 2}, - [5826] = {.lex_state = 96, .external_lex_state = 2}, - [5827] = {.lex_state = 96, .external_lex_state = 2}, - [5828] = {.lex_state = 96, .external_lex_state = 2}, - [5829] = {.lex_state = 96, .external_lex_state = 2}, - [5830] = {.lex_state = 96, .external_lex_state = 2}, - [5831] = {.lex_state = 96, .external_lex_state = 2}, - [5832] = {.lex_state = 96, .external_lex_state = 2}, - [5833] = {.lex_state = 96, .external_lex_state = 2}, - [5834] = {.lex_state = 96, .external_lex_state = 2}, - [5835] = {.lex_state = 96, .external_lex_state = 2}, - [5836] = {.lex_state = 96, .external_lex_state = 2}, - [5837] = {.lex_state = 2, .external_lex_state = 10}, - [5838] = {.lex_state = 96, .external_lex_state = 2}, - [5839] = {.lex_state = 96, .external_lex_state = 2}, - [5840] = {.lex_state = 96, .external_lex_state = 2}, - [5841] = {.lex_state = 96, .external_lex_state = 2}, - [5842] = {.lex_state = 96, .external_lex_state = 2}, - [5843] = {.lex_state = 96, .external_lex_state = 2}, - [5844] = {.lex_state = 96, .external_lex_state = 2}, - [5845] = {.lex_state = 96, .external_lex_state = 2}, - [5846] = {.lex_state = 96, .external_lex_state = 2}, - [5847] = {.lex_state = 96, .external_lex_state = 2}, - [5848] = {.lex_state = 96, .external_lex_state = 2}, - [5849] = {.lex_state = 96, .external_lex_state = 2}, - [5850] = {.lex_state = 96, .external_lex_state = 2}, - [5851] = {.lex_state = 96, .external_lex_state = 2}, - [5852] = {.lex_state = 96, .external_lex_state = 2}, - [5853] = {.lex_state = 96, .external_lex_state = 2}, - [5854] = {.lex_state = 96, .external_lex_state = 2}, - [5855] = {.lex_state = 96, .external_lex_state = 2}, - [5856] = {.lex_state = 96, .external_lex_state = 2}, - [5857] = {.lex_state = 96, .external_lex_state = 2}, - [5858] = {.lex_state = 96, .external_lex_state = 2}, - [5859] = {.lex_state = 96, .external_lex_state = 2}, - [5860] = {.lex_state = 96, .external_lex_state = 2}, - [5861] = {.lex_state = 96, .external_lex_state = 2}, - [5862] = {.lex_state = 96, .external_lex_state = 2}, - [5863] = {.lex_state = 96, .external_lex_state = 2}, - [5864] = {.lex_state = 96, .external_lex_state = 2}, - [5865] = {.lex_state = 96, .external_lex_state = 2}, - [5866] = {.lex_state = 96, .external_lex_state = 2}, - [5867] = {.lex_state = 96, .external_lex_state = 2}, - [5868] = {.lex_state = 96, .external_lex_state = 2}, - [5869] = {.lex_state = 96, .external_lex_state = 2}, - [5870] = {.lex_state = 96, .external_lex_state = 2}, - [5871] = {.lex_state = 96, .external_lex_state = 2}, - [5872] = {.lex_state = 96, .external_lex_state = 2}, - [5873] = {.lex_state = 96, .external_lex_state = 2}, - [5874] = {.lex_state = 96, .external_lex_state = 2}, - [5875] = {.lex_state = 96, .external_lex_state = 2}, - [5876] = {.lex_state = 96, .external_lex_state = 2}, - [5877] = {.lex_state = 96, .external_lex_state = 2}, - [5878] = {.lex_state = 96, .external_lex_state = 2}, - [5879] = {.lex_state = 96, .external_lex_state = 2}, - [5880] = {.lex_state = 96, .external_lex_state = 2}, - [5881] = {.lex_state = 96, .external_lex_state = 2}, + [150] = {.lex_state = 8, .external_lex_state = 2}, + [151] = {.lex_state = 8, .external_lex_state = 2}, + [152] = {.lex_state = 8, .external_lex_state = 2}, + [153] = {.lex_state = 8, .external_lex_state = 2}, + [154] = {.lex_state = 8, .external_lex_state = 2}, + [155] = {.lex_state = 8, .external_lex_state = 2}, + [156] = {.lex_state = 8, .external_lex_state = 2}, + [157] = {.lex_state = 8, .external_lex_state = 2}, + [158] = {.lex_state = 8, .external_lex_state = 2}, + [159] = {.lex_state = 8, .external_lex_state = 2}, + [160] = {.lex_state = 8, .external_lex_state = 2}, + [161] = {.lex_state = 8, .external_lex_state = 2}, + [162] = {.lex_state = 8, .external_lex_state = 2}, + [163] = {.lex_state = 74, .external_lex_state = 3}, + [164] = {.lex_state = 74, .external_lex_state = 4}, + [165] = {.lex_state = 74, .external_lex_state = 4}, + [166] = {.lex_state = 74, .external_lex_state = 3}, + [167] = {.lex_state = 74, .external_lex_state = 3}, + [168] = {.lex_state = 74, .external_lex_state = 4}, + [169] = {.lex_state = 74, .external_lex_state = 3}, + [170] = {.lex_state = 74, .external_lex_state = 3}, + [171] = {.lex_state = 74, .external_lex_state = 3}, + [172] = {.lex_state = 74, .external_lex_state = 3}, + [173] = {.lex_state = 2, .external_lex_state = 3}, + [174] = {.lex_state = 2, .external_lex_state = 4}, + [175] = {.lex_state = 2, .external_lex_state = 4}, + [176] = {.lex_state = 2, .external_lex_state = 3}, + [177] = {.lex_state = 2, .external_lex_state = 3}, + [178] = {.lex_state = 2, .external_lex_state = 3}, + [179] = {.lex_state = 75, .external_lex_state = 2}, + [180] = {.lex_state = 75, .external_lex_state = 2}, + [181] = {.lex_state = 75, .external_lex_state = 2}, + [182] = {.lex_state = 2, .external_lex_state = 3}, + [183] = {.lex_state = 2, .external_lex_state = 4}, + [184] = {.lex_state = 75, .external_lex_state = 2}, + [185] = {.lex_state = 2, .external_lex_state = 3}, + [186] = {.lex_state = 75, .external_lex_state = 2}, + [187] = {.lex_state = 2, .external_lex_state = 3}, + [188] = {.lex_state = 75, .external_lex_state = 2}, + [189] = {.lex_state = 2, .external_lex_state = 3}, + [190] = {.lex_state = 2, .external_lex_state = 3}, + [191] = {.lex_state = 2, .external_lex_state = 3}, + [192] = {.lex_state = 2, .external_lex_state = 3}, + [193] = {.lex_state = 2, .external_lex_state = 3}, + [194] = {.lex_state = 75, .external_lex_state = 2}, + [195] = {.lex_state = 75, .external_lex_state = 2}, + [196] = {.lex_state = 75, .external_lex_state = 2}, + [197] = {.lex_state = 75, .external_lex_state = 2}, + [198] = {.lex_state = 75, .external_lex_state = 2}, + [199] = {.lex_state = 75, .external_lex_state = 2}, + [200] = {.lex_state = 74, .external_lex_state = 4}, + [201] = {.lex_state = 74, .external_lex_state = 4}, + [202] = {.lex_state = 75, .external_lex_state = 2}, + [203] = {.lex_state = 74, .external_lex_state = 4}, + [204] = {.lex_state = 75, .external_lex_state = 2}, + [205] = {.lex_state = 75, .external_lex_state = 2}, + [206] = {.lex_state = 74, .external_lex_state = 4}, + [207] = {.lex_state = 75, .external_lex_state = 2}, + [208] = {.lex_state = 75, .external_lex_state = 2}, + [209] = {.lex_state = 74, .external_lex_state = 4}, + [210] = {.lex_state = 74, .external_lex_state = 4}, + [211] = {.lex_state = 74, .external_lex_state = 4}, + [212] = {.lex_state = 74, .external_lex_state = 4}, + [213] = {.lex_state = 74, .external_lex_state = 4}, + [214] = {.lex_state = 74, .external_lex_state = 4}, + [215] = {.lex_state = 75, .external_lex_state = 2}, + [216] = {.lex_state = 75, .external_lex_state = 2}, + [217] = {.lex_state = 74, .external_lex_state = 4}, + [218] = {.lex_state = 75, .external_lex_state = 2}, + [219] = {.lex_state = 74, .external_lex_state = 4}, + [220] = {.lex_state = 74, .external_lex_state = 4}, + [221] = {.lex_state = 75, .external_lex_state = 2}, + [222] = {.lex_state = 74, .external_lex_state = 4}, + [223] = {.lex_state = 74, .external_lex_state = 4}, + [224] = {.lex_state = 74, .external_lex_state = 4}, + [225] = {.lex_state = 74, .external_lex_state = 4}, + [226] = {.lex_state = 74, .external_lex_state = 4}, + [227] = {.lex_state = 74, .external_lex_state = 4}, + [228] = {.lex_state = 74, .external_lex_state = 4}, + [229] = {.lex_state = 75, .external_lex_state = 2}, + [230] = {.lex_state = 74, .external_lex_state = 4}, + [231] = {.lex_state = 74, .external_lex_state = 4}, + [232] = {.lex_state = 74, .external_lex_state = 4}, + [233] = {.lex_state = 74, .external_lex_state = 4}, + [234] = {.lex_state = 75, .external_lex_state = 2}, + [235] = {.lex_state = 74, .external_lex_state = 4}, + [236] = {.lex_state = 74, .external_lex_state = 4}, + [237] = {.lex_state = 75, .external_lex_state = 2}, + [238] = {.lex_state = 74, .external_lex_state = 4}, + [239] = {.lex_state = 74, .external_lex_state = 4}, + [240] = {.lex_state = 74, .external_lex_state = 4}, + [241] = {.lex_state = 75, .external_lex_state = 2}, + [242] = {.lex_state = 75, .external_lex_state = 5}, + [243] = {.lex_state = 75, .external_lex_state = 2}, + [244] = {.lex_state = 75, .external_lex_state = 2}, + [245] = {.lex_state = 75, .external_lex_state = 2}, + [246] = {.lex_state = 75, .external_lex_state = 2}, + [247] = {.lex_state = 75, .external_lex_state = 2}, + [248] = {.lex_state = 75, .external_lex_state = 2}, + [249] = {.lex_state = 75, .external_lex_state = 2}, + [250] = {.lex_state = 75, .external_lex_state = 2}, + [251] = {.lex_state = 75, .external_lex_state = 2}, + [252] = {.lex_state = 75, .external_lex_state = 2}, + [253] = {.lex_state = 75, .external_lex_state = 2}, + [254] = {.lex_state = 75, .external_lex_state = 2}, + [255] = {.lex_state = 75, .external_lex_state = 2}, + [256] = {.lex_state = 3, .external_lex_state = 3}, + [257] = {.lex_state = 3, .external_lex_state = 3}, + [258] = {.lex_state = 3, .external_lex_state = 3}, + [259] = {.lex_state = 3, .external_lex_state = 3}, + [260] = {.lex_state = 75, .external_lex_state = 2}, + [261] = {.lex_state = 75, .external_lex_state = 2}, + [262] = {.lex_state = 75, .external_lex_state = 2}, + [263] = {.lex_state = 75, .external_lex_state = 2}, + [264] = {.lex_state = 75, .external_lex_state = 2}, + [265] = {.lex_state = 75, .external_lex_state = 2}, + [266] = {.lex_state = 75, .external_lex_state = 2}, + [267] = {.lex_state = 75, .external_lex_state = 2}, + [268] = {.lex_state = 75, .external_lex_state = 2}, + [269] = {.lex_state = 75, .external_lex_state = 2}, + [270] = {.lex_state = 75, .external_lex_state = 2}, + [271] = {.lex_state = 75, .external_lex_state = 2}, + [272] = {.lex_state = 75, .external_lex_state = 2}, + [273] = {.lex_state = 75, .external_lex_state = 2}, + [274] = {.lex_state = 75, .external_lex_state = 2}, + [275] = {.lex_state = 75, .external_lex_state = 2}, + [276] = {.lex_state = 75, .external_lex_state = 2}, + [277] = {.lex_state = 75, .external_lex_state = 2}, + [278] = {.lex_state = 75, .external_lex_state = 2}, + [279] = {.lex_state = 75, .external_lex_state = 2}, + [280] = {.lex_state = 75, .external_lex_state = 2}, + [281] = {.lex_state = 75, .external_lex_state = 2}, + [282] = {.lex_state = 75, .external_lex_state = 2}, + [283] = {.lex_state = 75, .external_lex_state = 2}, + [284] = {.lex_state = 75, .external_lex_state = 2}, + [285] = {.lex_state = 75, .external_lex_state = 2}, + [286] = {.lex_state = 75, .external_lex_state = 2}, + [287] = {.lex_state = 75, .external_lex_state = 2}, + [288] = {.lex_state = 75, .external_lex_state = 2}, + [289] = {.lex_state = 75, .external_lex_state = 2}, + [290] = {.lex_state = 75, .external_lex_state = 2}, + [291] = {.lex_state = 75, .external_lex_state = 2}, + [292] = {.lex_state = 75, .external_lex_state = 2}, + [293] = {.lex_state = 75, .external_lex_state = 2}, + [294] = {.lex_state = 75, .external_lex_state = 2}, + [295] = {.lex_state = 75, .external_lex_state = 2}, + [296] = {.lex_state = 75, .external_lex_state = 2}, + [297] = {.lex_state = 75, .external_lex_state = 5}, + [298] = {.lex_state = 75, .external_lex_state = 2}, + [299] = {.lex_state = 75, .external_lex_state = 2}, + [300] = {.lex_state = 75, .external_lex_state = 2}, + [301] = {.lex_state = 75, .external_lex_state = 2}, + [302] = {.lex_state = 75, .external_lex_state = 2}, + [303] = {.lex_state = 75, .external_lex_state = 2}, + [304] = {.lex_state = 75, .external_lex_state = 2}, + [305] = {.lex_state = 75, .external_lex_state = 2}, + [306] = {.lex_state = 75, .external_lex_state = 2}, + [307] = {.lex_state = 75, .external_lex_state = 2}, + [308] = {.lex_state = 75, .external_lex_state = 2}, + [309] = {.lex_state = 75, .external_lex_state = 2}, + [310] = {.lex_state = 75, .external_lex_state = 2}, + [311] = {.lex_state = 75, .external_lex_state = 2}, + [312] = {.lex_state = 75, .external_lex_state = 2}, + [313] = {.lex_state = 75, .external_lex_state = 2}, + [314] = {.lex_state = 75, .external_lex_state = 2}, + [315] = {.lex_state = 75, .external_lex_state = 2}, + [316] = {.lex_state = 75, .external_lex_state = 2}, + [317] = {.lex_state = 75, .external_lex_state = 2}, + [318] = {.lex_state = 75, .external_lex_state = 2}, + [319] = {.lex_state = 75, .external_lex_state = 2}, + [320] = {.lex_state = 75, .external_lex_state = 2}, + [321] = {.lex_state = 75, .external_lex_state = 2}, + [322] = {.lex_state = 75, .external_lex_state = 2}, + [323] = {.lex_state = 75, .external_lex_state = 2}, + [324] = {.lex_state = 75, .external_lex_state = 2}, + [325] = {.lex_state = 75, .external_lex_state = 2}, + [326] = {.lex_state = 75, .external_lex_state = 2}, + [327] = {.lex_state = 75, .external_lex_state = 2}, + [328] = {.lex_state = 75, .external_lex_state = 2}, + [329] = {.lex_state = 75, .external_lex_state = 2}, + [330] = {.lex_state = 75, .external_lex_state = 2}, + [331] = {.lex_state = 75, .external_lex_state = 2}, + [332] = {.lex_state = 75, .external_lex_state = 2}, + [333] = {.lex_state = 75, .external_lex_state = 2}, + [334] = {.lex_state = 75, .external_lex_state = 2}, + [335] = {.lex_state = 75, .external_lex_state = 2}, + [336] = {.lex_state = 75, .external_lex_state = 2}, + [337] = {.lex_state = 75, .external_lex_state = 2}, + [338] = {.lex_state = 75, .external_lex_state = 2}, + [339] = {.lex_state = 75, .external_lex_state = 2}, + [340] = {.lex_state = 75, .external_lex_state = 2}, + [341] = {.lex_state = 75, .external_lex_state = 2}, + [342] = {.lex_state = 75, .external_lex_state = 2}, + [343] = {.lex_state = 75, .external_lex_state = 2}, + [344] = {.lex_state = 75, .external_lex_state = 2}, + [345] = {.lex_state = 75, .external_lex_state = 2}, + [346] = {.lex_state = 75, .external_lex_state = 2}, + [347] = {.lex_state = 75, .external_lex_state = 2}, + [348] = {.lex_state = 75, .external_lex_state = 2}, + [349] = {.lex_state = 75, .external_lex_state = 2}, + [350] = {.lex_state = 75, .external_lex_state = 2}, + [351] = {.lex_state = 75, .external_lex_state = 2}, + [352] = {.lex_state = 75, .external_lex_state = 2}, + [353] = {.lex_state = 75, .external_lex_state = 2}, + [354] = {.lex_state = 75, .external_lex_state = 2}, + [355] = {.lex_state = 75, .external_lex_state = 2}, + [356] = {.lex_state = 75, .external_lex_state = 2}, + [357] = {.lex_state = 75, .external_lex_state = 2}, + [358] = {.lex_state = 75, .external_lex_state = 2}, + [359] = {.lex_state = 75, .external_lex_state = 2}, + [360] = {.lex_state = 75, .external_lex_state = 2}, + [361] = {.lex_state = 75, .external_lex_state = 2}, + [362] = {.lex_state = 75, .external_lex_state = 2}, + [363] = {.lex_state = 75, .external_lex_state = 2}, + [364] = {.lex_state = 75, .external_lex_state = 2}, + [365] = {.lex_state = 75, .external_lex_state = 2}, + [366] = {.lex_state = 75, .external_lex_state = 2}, + [367] = {.lex_state = 75, .external_lex_state = 2}, + [368] = {.lex_state = 75, .external_lex_state = 2}, + [369] = {.lex_state = 75, .external_lex_state = 2}, + [370] = {.lex_state = 75, .external_lex_state = 2}, + [371] = {.lex_state = 75, .external_lex_state = 2}, + [372] = {.lex_state = 75, .external_lex_state = 2}, + [373] = {.lex_state = 75, .external_lex_state = 2}, + [374] = {.lex_state = 75, .external_lex_state = 2}, + [375] = {.lex_state = 75, .external_lex_state = 2}, + [376] = {.lex_state = 75, .external_lex_state = 2}, + [377] = {.lex_state = 75, .external_lex_state = 2}, + [378] = {.lex_state = 75, .external_lex_state = 2}, + [379] = {.lex_state = 75, .external_lex_state = 2}, + [380] = {.lex_state = 75, .external_lex_state = 2}, + [381] = {.lex_state = 75, .external_lex_state = 2}, + [382] = {.lex_state = 75, .external_lex_state = 2}, + [383] = {.lex_state = 75, .external_lex_state = 2}, + [384] = {.lex_state = 75, .external_lex_state = 2}, + [385] = {.lex_state = 75, .external_lex_state = 2}, + [386] = {.lex_state = 75, .external_lex_state = 2}, + [387] = {.lex_state = 75, .external_lex_state = 2}, + [388] = {.lex_state = 75, .external_lex_state = 2}, + [389] = {.lex_state = 75, .external_lex_state = 2}, + [390] = {.lex_state = 75, .external_lex_state = 2}, + [391] = {.lex_state = 75, .external_lex_state = 2}, + [392] = {.lex_state = 75, .external_lex_state = 2}, + [393] = {.lex_state = 75, .external_lex_state = 2}, + [394] = {.lex_state = 75, .external_lex_state = 2}, + [395] = {.lex_state = 75, .external_lex_state = 2}, + [396] = {.lex_state = 75, .external_lex_state = 2}, + [397] = {.lex_state = 75, .external_lex_state = 2}, + [398] = {.lex_state = 75, .external_lex_state = 2}, + [399] = {.lex_state = 75, .external_lex_state = 2}, + [400] = {.lex_state = 75, .external_lex_state = 2}, + [401] = {.lex_state = 75, .external_lex_state = 2}, + [402] = {.lex_state = 75, .external_lex_state = 2}, + [403] = {.lex_state = 75, .external_lex_state = 2}, + [404] = {.lex_state = 75, .external_lex_state = 2}, + [405] = {.lex_state = 75, .external_lex_state = 2}, + [406] = {.lex_state = 75, .external_lex_state = 2}, + [407] = {.lex_state = 75, .external_lex_state = 2}, + [408] = {.lex_state = 75, .external_lex_state = 2}, + [409] = {.lex_state = 75, .external_lex_state = 2}, + [410] = {.lex_state = 75, .external_lex_state = 2}, + [411] = {.lex_state = 75, .external_lex_state = 2}, + [412] = {.lex_state = 75, .external_lex_state = 2}, + [413] = {.lex_state = 75, .external_lex_state = 2}, + [414] = {.lex_state = 75, .external_lex_state = 2}, + [415] = {.lex_state = 75, .external_lex_state = 2}, + [416] = {.lex_state = 75, .external_lex_state = 2}, + [417] = {.lex_state = 75, .external_lex_state = 2}, + [418] = {.lex_state = 75, .external_lex_state = 2}, + [419] = {.lex_state = 75, .external_lex_state = 2}, + [420] = {.lex_state = 75, .external_lex_state = 2}, + [421] = {.lex_state = 75, .external_lex_state = 2}, + [422] = {.lex_state = 75, .external_lex_state = 2}, + [423] = {.lex_state = 75, .external_lex_state = 2}, + [424] = {.lex_state = 75, .external_lex_state = 2}, + [425] = {.lex_state = 75, .external_lex_state = 2}, + [426] = {.lex_state = 75, .external_lex_state = 2}, + [427] = {.lex_state = 3, .external_lex_state = 4}, + [428] = {.lex_state = 75, .external_lex_state = 2}, + [429] = {.lex_state = 75, .external_lex_state = 2}, + [430] = {.lex_state = 75, .external_lex_state = 2}, + [431] = {.lex_state = 75, .external_lex_state = 2}, + [432] = {.lex_state = 75, .external_lex_state = 2}, + [433] = {.lex_state = 75, .external_lex_state = 2}, + [434] = {.lex_state = 75, .external_lex_state = 2}, + [435] = {.lex_state = 75, .external_lex_state = 2}, + [436] = {.lex_state = 75, .external_lex_state = 2}, + [437] = {.lex_state = 75, .external_lex_state = 2}, + [438] = {.lex_state = 75, .external_lex_state = 2}, + [439] = {.lex_state = 75, .external_lex_state = 2}, + [440] = {.lex_state = 3, .external_lex_state = 4}, + [441] = {.lex_state = 75, .external_lex_state = 2}, + [442] = {.lex_state = 75, .external_lex_state = 2}, + [443] = {.lex_state = 75, .external_lex_state = 2}, + [444] = {.lex_state = 75, .external_lex_state = 2}, + [445] = {.lex_state = 75, .external_lex_state = 2}, + [446] = {.lex_state = 75, .external_lex_state = 2}, + [447] = {.lex_state = 75, .external_lex_state = 2}, + [448] = {.lex_state = 75, .external_lex_state = 2}, + [449] = {.lex_state = 75, .external_lex_state = 2}, + [450] = {.lex_state = 75, .external_lex_state = 2}, + [451] = {.lex_state = 75, .external_lex_state = 2}, + [452] = {.lex_state = 75, .external_lex_state = 2}, + [453] = {.lex_state = 75, .external_lex_state = 2}, + [454] = {.lex_state = 75, .external_lex_state = 2}, + [455] = {.lex_state = 75, .external_lex_state = 2}, + [456] = {.lex_state = 75, .external_lex_state = 2}, + [457] = {.lex_state = 75, .external_lex_state = 2}, + [458] = {.lex_state = 75, .external_lex_state = 2}, + [459] = {.lex_state = 75, .external_lex_state = 2}, + [460] = {.lex_state = 75, .external_lex_state = 2}, + [461] = {.lex_state = 75, .external_lex_state = 2}, + [462] = {.lex_state = 75, .external_lex_state = 2}, + [463] = {.lex_state = 75, .external_lex_state = 2}, + [464] = {.lex_state = 75, .external_lex_state = 2}, + [465] = {.lex_state = 75, .external_lex_state = 2}, + [466] = {.lex_state = 75, .external_lex_state = 2}, + [467] = {.lex_state = 75, .external_lex_state = 2}, + [468] = {.lex_state = 75, .external_lex_state = 2}, + [469] = {.lex_state = 75, .external_lex_state = 2}, + [470] = {.lex_state = 75, .external_lex_state = 2}, + [471] = {.lex_state = 75, .external_lex_state = 2}, + [472] = {.lex_state = 75, .external_lex_state = 2}, + [473] = {.lex_state = 75, .external_lex_state = 2}, + [474] = {.lex_state = 75, .external_lex_state = 2}, + [475] = {.lex_state = 75, .external_lex_state = 2}, + [476] = {.lex_state = 75, .external_lex_state = 2}, + [477] = {.lex_state = 75, .external_lex_state = 2}, + [478] = {.lex_state = 75, .external_lex_state = 2}, + [479] = {.lex_state = 75, .external_lex_state = 2}, + [480] = {.lex_state = 75, .external_lex_state = 2}, + [481] = {.lex_state = 75, .external_lex_state = 2}, + [482] = {.lex_state = 75, .external_lex_state = 2}, + [483] = {.lex_state = 75, .external_lex_state = 2}, + [484] = {.lex_state = 75, .external_lex_state = 2}, + [485] = {.lex_state = 75, .external_lex_state = 2}, + [486] = {.lex_state = 75, .external_lex_state = 2}, + [487] = {.lex_state = 75, .external_lex_state = 2}, + [488] = {.lex_state = 75, .external_lex_state = 2}, + [489] = {.lex_state = 75, .external_lex_state = 2}, + [490] = {.lex_state = 75, .external_lex_state = 2}, + [491] = {.lex_state = 75, .external_lex_state = 2}, + [492] = {.lex_state = 75, .external_lex_state = 2}, + [493] = {.lex_state = 75, .external_lex_state = 2}, + [494] = {.lex_state = 75, .external_lex_state = 2}, + [495] = {.lex_state = 75, .external_lex_state = 2}, + [496] = {.lex_state = 75, .external_lex_state = 2}, + [497] = {.lex_state = 75, .external_lex_state = 2}, + [498] = {.lex_state = 75, .external_lex_state = 2}, + [499] = {.lex_state = 75, .external_lex_state = 2}, + [500] = {.lex_state = 75, .external_lex_state = 2}, + [501] = {.lex_state = 75, .external_lex_state = 2}, + [502] = {.lex_state = 75, .external_lex_state = 2}, + [503] = {.lex_state = 75, .external_lex_state = 2}, + [504] = {.lex_state = 75, .external_lex_state = 2}, + [505] = {.lex_state = 75, .external_lex_state = 2}, + [506] = {.lex_state = 75, .external_lex_state = 2}, + [507] = {.lex_state = 75, .external_lex_state = 2}, + [508] = {.lex_state = 75, .external_lex_state = 2}, + [509] = {.lex_state = 75, .external_lex_state = 2}, + [510] = {.lex_state = 75, .external_lex_state = 2}, + [511] = {.lex_state = 75, .external_lex_state = 2}, + [512] = {.lex_state = 75, .external_lex_state = 2}, + [513] = {.lex_state = 75, .external_lex_state = 2}, + [514] = {.lex_state = 75, .external_lex_state = 2}, + [515] = {.lex_state = 75, .external_lex_state = 2}, + [516] = {.lex_state = 75, .external_lex_state = 2}, + [517] = {.lex_state = 75, .external_lex_state = 2}, + [518] = {.lex_state = 75, .external_lex_state = 2}, + [519] = {.lex_state = 75, .external_lex_state = 2}, + [520] = {.lex_state = 75, .external_lex_state = 2}, + [521] = {.lex_state = 75, .external_lex_state = 2}, + [522] = {.lex_state = 75, .external_lex_state = 2}, + [523] = {.lex_state = 75, .external_lex_state = 2}, + [524] = {.lex_state = 75, .external_lex_state = 2}, + [525] = {.lex_state = 75, .external_lex_state = 2}, + [526] = {.lex_state = 75, .external_lex_state = 2}, + [527] = {.lex_state = 75, .external_lex_state = 2}, + [528] = {.lex_state = 75, .external_lex_state = 2}, + [529] = {.lex_state = 75, .external_lex_state = 2}, + [530] = {.lex_state = 75, .external_lex_state = 2}, + [531] = {.lex_state = 75, .external_lex_state = 2}, + [532] = {.lex_state = 75, .external_lex_state = 2}, + [533] = {.lex_state = 75, .external_lex_state = 2}, + [534] = {.lex_state = 75, .external_lex_state = 2}, + [535] = {.lex_state = 75, .external_lex_state = 2}, + [536] = {.lex_state = 75, .external_lex_state = 2}, + [537] = {.lex_state = 75, .external_lex_state = 2}, + [538] = {.lex_state = 75, .external_lex_state = 2}, + [539] = {.lex_state = 75, .external_lex_state = 2}, + [540] = {.lex_state = 75, .external_lex_state = 2}, + [541] = {.lex_state = 75, .external_lex_state = 2}, + [542] = {.lex_state = 75, .external_lex_state = 2}, + [543] = {.lex_state = 75, .external_lex_state = 2}, + [544] = {.lex_state = 75, .external_lex_state = 2}, + [545] = {.lex_state = 75, .external_lex_state = 2}, + [546] = {.lex_state = 75, .external_lex_state = 2}, + [547] = {.lex_state = 75, .external_lex_state = 2}, + [548] = {.lex_state = 75, .external_lex_state = 2}, + [549] = {.lex_state = 75, .external_lex_state = 2}, + [550] = {.lex_state = 75, .external_lex_state = 2}, + [551] = {.lex_state = 75, .external_lex_state = 2}, + [552] = {.lex_state = 75, .external_lex_state = 2}, + [553] = {.lex_state = 75, .external_lex_state = 2}, + [554] = {.lex_state = 75, .external_lex_state = 2}, + [555] = {.lex_state = 75, .external_lex_state = 2}, + [556] = {.lex_state = 75, .external_lex_state = 2}, + [557] = {.lex_state = 75, .external_lex_state = 2}, + [558] = {.lex_state = 75, .external_lex_state = 2}, + [559] = {.lex_state = 75, .external_lex_state = 2}, + [560] = {.lex_state = 75, .external_lex_state = 2}, + [561] = {.lex_state = 75, .external_lex_state = 2}, + [562] = {.lex_state = 75, .external_lex_state = 2}, + [563] = {.lex_state = 75, .external_lex_state = 2}, + [564] = {.lex_state = 75, .external_lex_state = 2}, + [565] = {.lex_state = 75, .external_lex_state = 2}, + [566] = {.lex_state = 75, .external_lex_state = 2}, + [567] = {.lex_state = 75, .external_lex_state = 2}, + [568] = {.lex_state = 75, .external_lex_state = 2}, + [569] = {.lex_state = 75, .external_lex_state = 2}, + [570] = {.lex_state = 75, .external_lex_state = 2}, + [571] = {.lex_state = 75, .external_lex_state = 2}, + [572] = {.lex_state = 75, .external_lex_state = 2}, + [573] = {.lex_state = 75, .external_lex_state = 2}, + [574] = {.lex_state = 75, .external_lex_state = 2}, + [575] = {.lex_state = 75, .external_lex_state = 2}, + [576] = {.lex_state = 75, .external_lex_state = 2}, + [577] = {.lex_state = 75, .external_lex_state = 2}, + [578] = {.lex_state = 75, .external_lex_state = 2}, + [579] = {.lex_state = 75, .external_lex_state = 2}, + [580] = {.lex_state = 75, .external_lex_state = 2}, + [581] = {.lex_state = 75, .external_lex_state = 2}, + [582] = {.lex_state = 75, .external_lex_state = 2}, + [583] = {.lex_state = 75, .external_lex_state = 2}, + [584] = {.lex_state = 75, .external_lex_state = 2}, + [585] = {.lex_state = 75, .external_lex_state = 2}, + [586] = {.lex_state = 75, .external_lex_state = 2}, + [587] = {.lex_state = 75, .external_lex_state = 2}, + [588] = {.lex_state = 75, .external_lex_state = 2}, + [589] = {.lex_state = 75, .external_lex_state = 2}, + [590] = {.lex_state = 3, .external_lex_state = 4}, + [591] = {.lex_state = 75, .external_lex_state = 2}, + [592] = {.lex_state = 75, .external_lex_state = 2}, + [593] = {.lex_state = 75, .external_lex_state = 2}, + [594] = {.lex_state = 75, .external_lex_state = 2}, + [595] = {.lex_state = 75, .external_lex_state = 2}, + [596] = {.lex_state = 75, .external_lex_state = 2}, + [597] = {.lex_state = 75, .external_lex_state = 2}, + [598] = {.lex_state = 75, .external_lex_state = 2}, + [599] = {.lex_state = 75, .external_lex_state = 2}, + [600] = {.lex_state = 75, .external_lex_state = 2}, + [601] = {.lex_state = 75, .external_lex_state = 2}, + [602] = {.lex_state = 75, .external_lex_state = 2}, + [603] = {.lex_state = 75, .external_lex_state = 2}, + [604] = {.lex_state = 75, .external_lex_state = 2}, + [605] = {.lex_state = 75, .external_lex_state = 2}, + [606] = {.lex_state = 75, .external_lex_state = 2}, + [607] = {.lex_state = 75, .external_lex_state = 2}, + [608] = {.lex_state = 75, .external_lex_state = 2}, + [609] = {.lex_state = 75, .external_lex_state = 2}, + [610] = {.lex_state = 75, .external_lex_state = 2}, + [611] = {.lex_state = 75, .external_lex_state = 2}, + [612] = {.lex_state = 75, .external_lex_state = 2}, + [613] = {.lex_state = 75, .external_lex_state = 2}, + [614] = {.lex_state = 75, .external_lex_state = 2}, + [615] = {.lex_state = 75, .external_lex_state = 2}, + [616] = {.lex_state = 75, .external_lex_state = 2}, + [617] = {.lex_state = 75, .external_lex_state = 2}, + [618] = {.lex_state = 75, .external_lex_state = 2}, + [619] = {.lex_state = 75, .external_lex_state = 2}, + [620] = {.lex_state = 75, .external_lex_state = 2}, + [621] = {.lex_state = 75, .external_lex_state = 2}, + [622] = {.lex_state = 75, .external_lex_state = 2}, + [623] = {.lex_state = 75, .external_lex_state = 2}, + [624] = {.lex_state = 75, .external_lex_state = 2}, + [625] = {.lex_state = 75, .external_lex_state = 2}, + [626] = {.lex_state = 75, .external_lex_state = 2}, + [627] = {.lex_state = 75, .external_lex_state = 2}, + [628] = {.lex_state = 75, .external_lex_state = 2}, + [629] = {.lex_state = 75, .external_lex_state = 2}, + [630] = {.lex_state = 75, .external_lex_state = 2}, + [631] = {.lex_state = 75, .external_lex_state = 2}, + [632] = {.lex_state = 75, .external_lex_state = 2}, + [633] = {.lex_state = 75, .external_lex_state = 2}, + [634] = {.lex_state = 75, .external_lex_state = 2}, + [635] = {.lex_state = 75, .external_lex_state = 2}, + [636] = {.lex_state = 75, .external_lex_state = 2}, + [637] = {.lex_state = 75, .external_lex_state = 2}, + [638] = {.lex_state = 75, .external_lex_state = 2}, + [639] = {.lex_state = 75, .external_lex_state = 2}, + [640] = {.lex_state = 75, .external_lex_state = 2}, + [641] = {.lex_state = 75, .external_lex_state = 2}, + [642] = {.lex_state = 75, .external_lex_state = 2}, + [643] = {.lex_state = 75, .external_lex_state = 2}, + [644] = {.lex_state = 75, .external_lex_state = 2}, + [645] = {.lex_state = 75, .external_lex_state = 2}, + [646] = {.lex_state = 75, .external_lex_state = 2}, + [647] = {.lex_state = 75, .external_lex_state = 2}, + [648] = {.lex_state = 75, .external_lex_state = 2}, + [649] = {.lex_state = 75, .external_lex_state = 2}, + [650] = {.lex_state = 75, .external_lex_state = 2}, + [651] = {.lex_state = 75, .external_lex_state = 2}, + [652] = {.lex_state = 75, .external_lex_state = 2}, + [653] = {.lex_state = 75, .external_lex_state = 2}, + [654] = {.lex_state = 75, .external_lex_state = 2}, + [655] = {.lex_state = 75, .external_lex_state = 2}, + [656] = {.lex_state = 75, .external_lex_state = 2}, + [657] = {.lex_state = 75, .external_lex_state = 2}, + [658] = {.lex_state = 75, .external_lex_state = 2}, + [659] = {.lex_state = 75, .external_lex_state = 2}, + [660] = {.lex_state = 75, .external_lex_state = 2}, + [661] = {.lex_state = 75, .external_lex_state = 2}, + [662] = {.lex_state = 75, .external_lex_state = 2}, + [663] = {.lex_state = 75, .external_lex_state = 2}, + [664] = {.lex_state = 75, .external_lex_state = 2}, + [665] = {.lex_state = 75, .external_lex_state = 2}, + [666] = {.lex_state = 75, .external_lex_state = 2}, + [667] = {.lex_state = 75, .external_lex_state = 2}, + [668] = {.lex_state = 75, .external_lex_state = 2}, + [669] = {.lex_state = 75, .external_lex_state = 2}, + [670] = {.lex_state = 75, .external_lex_state = 2}, + [671] = {.lex_state = 75, .external_lex_state = 2}, + [672] = {.lex_state = 75, .external_lex_state = 2}, + [673] = {.lex_state = 75, .external_lex_state = 2}, + [674] = {.lex_state = 75, .external_lex_state = 2}, + [675] = {.lex_state = 75, .external_lex_state = 2}, + [676] = {.lex_state = 75, .external_lex_state = 2}, + [677] = {.lex_state = 75, .external_lex_state = 2}, + [678] = {.lex_state = 75, .external_lex_state = 2}, + [679] = {.lex_state = 75, .external_lex_state = 2}, + [680] = {.lex_state = 75, .external_lex_state = 2}, + [681] = {.lex_state = 75, .external_lex_state = 2}, + [682] = {.lex_state = 75, .external_lex_state = 2}, + [683] = {.lex_state = 75, .external_lex_state = 2}, + [684] = {.lex_state = 75, .external_lex_state = 2}, + [685] = {.lex_state = 75, .external_lex_state = 2}, + [686] = {.lex_state = 75, .external_lex_state = 2}, + [687] = {.lex_state = 75, .external_lex_state = 2}, + [688] = {.lex_state = 75, .external_lex_state = 2}, + [689] = {.lex_state = 75, .external_lex_state = 2}, + [690] = {.lex_state = 2, .external_lex_state = 4}, + [691] = {.lex_state = 2, .external_lex_state = 4}, + [692] = {.lex_state = 2, .external_lex_state = 4}, + [693] = {.lex_state = 2, .external_lex_state = 4}, + [694] = {.lex_state = 2, .external_lex_state = 4}, + [695] = {.lex_state = 2, .external_lex_state = 4}, + [696] = {.lex_state = 3, .external_lex_state = 4}, + [697] = {.lex_state = 3, .external_lex_state = 4}, + [698] = {.lex_state = 2, .external_lex_state = 4}, + [699] = {.lex_state = 2, .external_lex_state = 4}, + [700] = {.lex_state = 2, .external_lex_state = 4}, + [701] = {.lex_state = 2, .external_lex_state = 4}, + [702] = {.lex_state = 2, .external_lex_state = 4}, + [703] = {.lex_state = 2, .external_lex_state = 4}, + [704] = {.lex_state = 2, .external_lex_state = 4}, + [705] = {.lex_state = 2, .external_lex_state = 4}, + [706] = {.lex_state = 2, .external_lex_state = 4}, + [707] = {.lex_state = 2, .external_lex_state = 4}, + [708] = {.lex_state = 75, .external_lex_state = 2}, + [709] = {.lex_state = 75, .external_lex_state = 2}, + [710] = {.lex_state = 2, .external_lex_state = 4}, + [711] = {.lex_state = 75, .external_lex_state = 2}, + [712] = {.lex_state = 75, .external_lex_state = 2}, + [713] = {.lex_state = 75, .external_lex_state = 2}, + [714] = {.lex_state = 75, .external_lex_state = 2}, + [715] = {.lex_state = 75, .external_lex_state = 2}, + [716] = {.lex_state = 2, .external_lex_state = 4}, + [717] = {.lex_state = 2, .external_lex_state = 4}, + [718] = {.lex_state = 2, .external_lex_state = 4}, + [719] = {.lex_state = 2, .external_lex_state = 4}, + [720] = {.lex_state = 2, .external_lex_state = 4}, + [721] = {.lex_state = 2, .external_lex_state = 4}, + [722] = {.lex_state = 2, .external_lex_state = 4}, + [723] = {.lex_state = 2, .external_lex_state = 4}, + [724] = {.lex_state = 2, .external_lex_state = 3}, + [725] = {.lex_state = 2, .external_lex_state = 3}, + [726] = {.lex_state = 2, .external_lex_state = 3}, + [727] = {.lex_state = 2, .external_lex_state = 3}, + [728] = {.lex_state = 2, .external_lex_state = 4}, + [729] = {.lex_state = 2, .external_lex_state = 4}, + [730] = {.lex_state = 2, .external_lex_state = 4}, + [731] = {.lex_state = 2, .external_lex_state = 3}, + [732] = {.lex_state = 2, .external_lex_state = 4}, + [733] = {.lex_state = 2, .external_lex_state = 3}, + [734] = {.lex_state = 2, .external_lex_state = 4}, + [735] = {.lex_state = 2, .external_lex_state = 4}, + [736] = {.lex_state = 2, .external_lex_state = 3}, + [737] = {.lex_state = 3, .external_lex_state = 3}, + [738] = {.lex_state = 2, .external_lex_state = 3}, + [739] = {.lex_state = 2, .external_lex_state = 3}, + [740] = {.lex_state = 3, .external_lex_state = 3}, + [741] = {.lex_state = 2, .external_lex_state = 3}, + [742] = {.lex_state = 2, .external_lex_state = 3}, + [743] = {.lex_state = 2, .external_lex_state = 4}, + [744] = {.lex_state = 2, .external_lex_state = 3}, + [745] = {.lex_state = 75, .external_lex_state = 2}, + [746] = {.lex_state = 2, .external_lex_state = 3}, + [747] = {.lex_state = 75, .external_lex_state = 5}, + [748] = {.lex_state = 2, .external_lex_state = 4}, + [749] = {.lex_state = 2, .external_lex_state = 4}, + [750] = {.lex_state = 2, .external_lex_state = 4}, + [751] = {.lex_state = 2, .external_lex_state = 3}, + [752] = {.lex_state = 2, .external_lex_state = 4}, + [753] = {.lex_state = 75, .external_lex_state = 5}, + [754] = {.lex_state = 75, .external_lex_state = 5}, + [755] = {.lex_state = 75, .external_lex_state = 2}, + [756] = {.lex_state = 75, .external_lex_state = 5}, + [757] = {.lex_state = 75, .external_lex_state = 5}, + [758] = {.lex_state = 75, .external_lex_state = 5}, + [759] = {.lex_state = 75, .external_lex_state = 5}, + [760] = {.lex_state = 75, .external_lex_state = 5}, + [761] = {.lex_state = 2, .external_lex_state = 3}, + [762] = {.lex_state = 2, .external_lex_state = 3}, + [763] = {.lex_state = 2, .external_lex_state = 3}, + [764] = {.lex_state = 2, .external_lex_state = 3}, + [765] = {.lex_state = 2, .external_lex_state = 3}, + [766] = {.lex_state = 2, .external_lex_state = 3}, + [767] = {.lex_state = 2, .external_lex_state = 3}, + [768] = {.lex_state = 2, .external_lex_state = 3}, + [769] = {.lex_state = 75, .external_lex_state = 2}, + [770] = {.lex_state = 75, .external_lex_state = 2}, + [771] = {.lex_state = 2, .external_lex_state = 3}, + [772] = {.lex_state = 2, .external_lex_state = 3}, + [773] = {.lex_state = 2, .external_lex_state = 3}, + [774] = {.lex_state = 2, .external_lex_state = 3}, + [775] = {.lex_state = 2, .external_lex_state = 3}, + [776] = {.lex_state = 2, .external_lex_state = 3}, + [777] = {.lex_state = 2, .external_lex_state = 3}, + [778] = {.lex_state = 2, .external_lex_state = 3}, + [779] = {.lex_state = 2, .external_lex_state = 3}, + [780] = {.lex_state = 75, .external_lex_state = 2}, + [781] = {.lex_state = 2, .external_lex_state = 3}, + [782] = {.lex_state = 2, .external_lex_state = 3}, + [783] = {.lex_state = 75, .external_lex_state = 2}, + [784] = {.lex_state = 9, .external_lex_state = 2}, + [785] = {.lex_state = 75, .external_lex_state = 5}, + [786] = {.lex_state = 75, .external_lex_state = 5}, + [787] = {.lex_state = 75, .external_lex_state = 5}, + [788] = {.lex_state = 75, .external_lex_state = 5}, + [789] = {.lex_state = 75, .external_lex_state = 2}, + [790] = {.lex_state = 75, .external_lex_state = 2}, + [791] = {.lex_state = 75, .external_lex_state = 5}, + [792] = {.lex_state = 75, .external_lex_state = 5}, + [793] = {.lex_state = 9, .external_lex_state = 2}, + [794] = {.lex_state = 75, .external_lex_state = 5}, + [795] = {.lex_state = 9, .external_lex_state = 2}, + [796] = {.lex_state = 75, .external_lex_state = 5}, + [797] = {.lex_state = 75, .external_lex_state = 5}, + [798] = {.lex_state = 75, .external_lex_state = 2}, + [799] = {.lex_state = 75, .external_lex_state = 5}, + [800] = {.lex_state = 9, .external_lex_state = 2}, + [801] = {.lex_state = 75, .external_lex_state = 5}, + [802] = {.lex_state = 75, .external_lex_state = 2}, + [803] = {.lex_state = 75, .external_lex_state = 5}, + [804] = {.lex_state = 75, .external_lex_state = 5}, + [805] = {.lex_state = 9, .external_lex_state = 2}, + [806] = {.lex_state = 75, .external_lex_state = 5}, + [807] = {.lex_state = 75, .external_lex_state = 2}, + [808] = {.lex_state = 75, .external_lex_state = 2}, + [809] = {.lex_state = 75, .external_lex_state = 2}, + [810] = {.lex_state = 75, .external_lex_state = 2}, + [811] = {.lex_state = 75, .external_lex_state = 5}, + [812] = {.lex_state = 75, .external_lex_state = 2}, + [813] = {.lex_state = 75, .external_lex_state = 2}, + [814] = {.lex_state = 75, .external_lex_state = 2}, + [815] = {.lex_state = 75, .external_lex_state = 2}, + [816] = {.lex_state = 75, .external_lex_state = 2}, + [817] = {.lex_state = 75, .external_lex_state = 2}, + [818] = {.lex_state = 75, .external_lex_state = 2}, + [819] = {.lex_state = 75, .external_lex_state = 2}, + [820] = {.lex_state = 9, .external_lex_state = 2}, + [821] = {.lex_state = 9, .external_lex_state = 2}, + [822] = {.lex_state = 75, .external_lex_state = 2}, + [823] = {.lex_state = 75, .external_lex_state = 2}, + [824] = {.lex_state = 75, .external_lex_state = 2}, + [825] = {.lex_state = 75, .external_lex_state = 2}, + [826] = {.lex_state = 75, .external_lex_state = 2}, + [827] = {.lex_state = 75, .external_lex_state = 2}, + [828] = {.lex_state = 75, .external_lex_state = 2}, + [829] = {.lex_state = 75, .external_lex_state = 2}, + [830] = {.lex_state = 75, .external_lex_state = 2}, + [831] = {.lex_state = 75, .external_lex_state = 2}, + [832] = {.lex_state = 75, .external_lex_state = 2}, + [833] = {.lex_state = 75, .external_lex_state = 2}, + [834] = {.lex_state = 75, .external_lex_state = 2}, + [835] = {.lex_state = 75, .external_lex_state = 2}, + [836] = {.lex_state = 75, .external_lex_state = 2}, + [837] = {.lex_state = 75, .external_lex_state = 2}, + [838] = {.lex_state = 75, .external_lex_state = 2}, + [839] = {.lex_state = 75, .external_lex_state = 2}, + [840] = {.lex_state = 75, .external_lex_state = 2}, + [841] = {.lex_state = 75, .external_lex_state = 2}, + [842] = {.lex_state = 75, .external_lex_state = 2}, + [843] = {.lex_state = 75, .external_lex_state = 2}, + [844] = {.lex_state = 75, .external_lex_state = 2}, + [845] = {.lex_state = 75, .external_lex_state = 2}, + [846] = {.lex_state = 75, .external_lex_state = 2}, + [847] = {.lex_state = 75, .external_lex_state = 2}, + [848] = {.lex_state = 9, .external_lex_state = 2}, + [849] = {.lex_state = 75, .external_lex_state = 2}, + [850] = {.lex_state = 75, .external_lex_state = 2}, + [851] = {.lex_state = 75, .external_lex_state = 2}, + [852] = {.lex_state = 75, .external_lex_state = 2}, + [853] = {.lex_state = 75, .external_lex_state = 2}, + [854] = {.lex_state = 75, .external_lex_state = 2}, + [855] = {.lex_state = 75, .external_lex_state = 2}, + [856] = {.lex_state = 75, .external_lex_state = 2}, + [857] = {.lex_state = 75, .external_lex_state = 2}, + [858] = {.lex_state = 75, .external_lex_state = 2}, + [859] = {.lex_state = 75, .external_lex_state = 2}, + [860] = {.lex_state = 75, .external_lex_state = 2}, + [861] = {.lex_state = 75, .external_lex_state = 2}, + [862] = {.lex_state = 75, .external_lex_state = 2}, + [863] = {.lex_state = 75, .external_lex_state = 2}, + [864] = {.lex_state = 75, .external_lex_state = 2}, + [865] = {.lex_state = 75, .external_lex_state = 2}, + [866] = {.lex_state = 75, .external_lex_state = 2}, + [867] = {.lex_state = 75, .external_lex_state = 2}, + [868] = {.lex_state = 9, .external_lex_state = 2}, + [869] = {.lex_state = 75, .external_lex_state = 2}, + [870] = {.lex_state = 75, .external_lex_state = 2}, + [871] = {.lex_state = 75, .external_lex_state = 2}, + [872] = {.lex_state = 75, .external_lex_state = 2}, + [873] = {.lex_state = 75, .external_lex_state = 2}, + [874] = {.lex_state = 75, .external_lex_state = 2}, + [875] = {.lex_state = 75, .external_lex_state = 2}, + [876] = {.lex_state = 9, .external_lex_state = 2}, + [877] = {.lex_state = 75, .external_lex_state = 2}, + [878] = {.lex_state = 75, .external_lex_state = 2}, + [879] = {.lex_state = 75, .external_lex_state = 2}, + [880] = {.lex_state = 75, .external_lex_state = 2}, + [881] = {.lex_state = 75, .external_lex_state = 2}, + [882] = {.lex_state = 75, .external_lex_state = 2}, + [883] = {.lex_state = 75, .external_lex_state = 2}, + [884] = {.lex_state = 75, .external_lex_state = 2}, + [885] = {.lex_state = 75, .external_lex_state = 2}, + [886] = {.lex_state = 75, .external_lex_state = 2}, + [887] = {.lex_state = 75, .external_lex_state = 2}, + [888] = {.lex_state = 75, .external_lex_state = 2}, + [889] = {.lex_state = 9, .external_lex_state = 2}, + [890] = {.lex_state = 75, .external_lex_state = 2}, + [891] = {.lex_state = 75, .external_lex_state = 2}, + [892] = {.lex_state = 75, .external_lex_state = 2}, + [893] = {.lex_state = 75, .external_lex_state = 2}, + [894] = {.lex_state = 75, .external_lex_state = 2}, + [895] = {.lex_state = 75, .external_lex_state = 2}, + [896] = {.lex_state = 75, .external_lex_state = 2}, + [897] = {.lex_state = 75, .external_lex_state = 2}, + [898] = {.lex_state = 75, .external_lex_state = 2}, + [899] = {.lex_state = 75, .external_lex_state = 2}, + [900] = {.lex_state = 9, .external_lex_state = 2}, + [901] = {.lex_state = 75, .external_lex_state = 2}, + [902] = {.lex_state = 75, .external_lex_state = 2}, + [903] = {.lex_state = 75, .external_lex_state = 2}, + [904] = {.lex_state = 75, .external_lex_state = 2}, + [905] = {.lex_state = 75, .external_lex_state = 2}, + [906] = {.lex_state = 9, .external_lex_state = 2}, + [907] = {.lex_state = 75, .external_lex_state = 2}, + [908] = {.lex_state = 75, .external_lex_state = 2}, + [909] = {.lex_state = 75, .external_lex_state = 2}, + [910] = {.lex_state = 75, .external_lex_state = 2}, + [911] = {.lex_state = 75, .external_lex_state = 2}, + [912] = {.lex_state = 75, .external_lex_state = 2}, + [913] = {.lex_state = 75, .external_lex_state = 2}, + [914] = {.lex_state = 75, .external_lex_state = 2}, + [915] = {.lex_state = 75, .external_lex_state = 2}, + [916] = {.lex_state = 75, .external_lex_state = 2}, + [917] = {.lex_state = 75, .external_lex_state = 2}, + [918] = {.lex_state = 75, .external_lex_state = 2}, + [919] = {.lex_state = 75, .external_lex_state = 2}, + [920] = {.lex_state = 75, .external_lex_state = 2}, + [921] = {.lex_state = 75, .external_lex_state = 2}, + [922] = {.lex_state = 75, .external_lex_state = 2}, + [923] = {.lex_state = 75, .external_lex_state = 2}, + [924] = {.lex_state = 75, .external_lex_state = 2}, + [925] = {.lex_state = 75, .external_lex_state = 2}, + [926] = {.lex_state = 75, .external_lex_state = 2}, + [927] = {.lex_state = 75, .external_lex_state = 2}, + [928] = {.lex_state = 75, .external_lex_state = 2}, + [929] = {.lex_state = 75, .external_lex_state = 2}, + [930] = {.lex_state = 75, .external_lex_state = 2}, + [931] = {.lex_state = 75, .external_lex_state = 2}, + [932] = {.lex_state = 75, .external_lex_state = 2}, + [933] = {.lex_state = 9, .external_lex_state = 2}, + [934] = {.lex_state = 75, .external_lex_state = 2}, + [935] = {.lex_state = 9, .external_lex_state = 2}, + [936] = {.lex_state = 75, .external_lex_state = 2}, + [937] = {.lex_state = 75, .external_lex_state = 2}, + [938] = {.lex_state = 75, .external_lex_state = 2}, + [939] = {.lex_state = 75, .external_lex_state = 2}, + [940] = {.lex_state = 75, .external_lex_state = 2}, + [941] = {.lex_state = 75, .external_lex_state = 2}, + [942] = {.lex_state = 75, .external_lex_state = 2}, + [943] = {.lex_state = 75, .external_lex_state = 2}, + [944] = {.lex_state = 75, .external_lex_state = 2}, + [945] = {.lex_state = 9, .external_lex_state = 2}, + [946] = {.lex_state = 9, .external_lex_state = 2}, + [947] = {.lex_state = 75, .external_lex_state = 2}, + [948] = {.lex_state = 9, .external_lex_state = 2}, + [949] = {.lex_state = 9, .external_lex_state = 2}, + [950] = {.lex_state = 75, .external_lex_state = 2}, + [951] = {.lex_state = 9, .external_lex_state = 2}, + [952] = {.lex_state = 75, .external_lex_state = 2}, + [953] = {.lex_state = 9, .external_lex_state = 2}, + [954] = {.lex_state = 75, .external_lex_state = 2}, + [955] = {.lex_state = 75, .external_lex_state = 2}, + [956] = {.lex_state = 75, .external_lex_state = 2}, + [957] = {.lex_state = 9, .external_lex_state = 2}, + [958] = {.lex_state = 75, .external_lex_state = 2}, + [959] = {.lex_state = 9, .external_lex_state = 2}, + [960] = {.lex_state = 75, .external_lex_state = 2}, + [961] = {.lex_state = 9, .external_lex_state = 2}, + [962] = {.lex_state = 9, .external_lex_state = 2}, + [963] = {.lex_state = 9, .external_lex_state = 2}, + [964] = {.lex_state = 9, .external_lex_state = 2}, + [965] = {.lex_state = 75, .external_lex_state = 2}, + [966] = {.lex_state = 75, .external_lex_state = 2}, + [967] = {.lex_state = 9, .external_lex_state = 2}, + [968] = {.lex_state = 9, .external_lex_state = 2}, + [969] = {.lex_state = 75, .external_lex_state = 2}, + [970] = {.lex_state = 75, .external_lex_state = 2}, + [971] = {.lex_state = 9, .external_lex_state = 2}, + [972] = {.lex_state = 75, .external_lex_state = 2}, + [973] = {.lex_state = 9, .external_lex_state = 2}, + [974] = {.lex_state = 9, .external_lex_state = 2}, + [975] = {.lex_state = 75, .external_lex_state = 2}, + [976] = {.lex_state = 9, .external_lex_state = 2}, + [977] = {.lex_state = 9, .external_lex_state = 2}, + [978] = {.lex_state = 9, .external_lex_state = 2}, + [979] = {.lex_state = 9, .external_lex_state = 2}, + [980] = {.lex_state = 9, .external_lex_state = 2}, + [981] = {.lex_state = 9, .external_lex_state = 2}, + [982] = {.lex_state = 9, .external_lex_state = 2}, + [983] = {.lex_state = 9, .external_lex_state = 2}, + [984] = {.lex_state = 9, .external_lex_state = 2}, + [985] = {.lex_state = 9, .external_lex_state = 2}, + [986] = {.lex_state = 9, .external_lex_state = 2}, + [987] = {.lex_state = 9, .external_lex_state = 2}, + [988] = {.lex_state = 7, .external_lex_state = 2}, + [989] = {.lex_state = 9, .external_lex_state = 2}, + [990] = {.lex_state = 9, .external_lex_state = 2}, + [991] = {.lex_state = 7, .external_lex_state = 2}, + [992] = {.lex_state = 7, .external_lex_state = 2}, + [993] = {.lex_state = 9, .external_lex_state = 2}, + [994] = {.lex_state = 9, .external_lex_state = 2}, + [995] = {.lex_state = 9, .external_lex_state = 2}, + [996] = {.lex_state = 9, .external_lex_state = 2}, + [997] = {.lex_state = 9, .external_lex_state = 2}, + [998] = {.lex_state = 9, .external_lex_state = 2}, + [999] = {.lex_state = 9, .external_lex_state = 2}, + [1000] = {.lex_state = 9, .external_lex_state = 2}, + [1001] = {.lex_state = 9, .external_lex_state = 2}, + [1002] = {.lex_state = 9, .external_lex_state = 2}, + [1003] = {.lex_state = 9, .external_lex_state = 2}, + [1004] = {.lex_state = 9, .external_lex_state = 2}, + [1005] = {.lex_state = 9, .external_lex_state = 2}, + [1006] = {.lex_state = 9, .external_lex_state = 2}, + [1007] = {.lex_state = 9, .external_lex_state = 2}, + [1008] = {.lex_state = 9, .external_lex_state = 2}, + [1009] = {.lex_state = 9, .external_lex_state = 2}, + [1010] = {.lex_state = 9, .external_lex_state = 2}, + [1011] = {.lex_state = 9, .external_lex_state = 2}, + [1012] = {.lex_state = 9, .external_lex_state = 2}, + [1013] = {.lex_state = 9, .external_lex_state = 2}, + [1014] = {.lex_state = 9, .external_lex_state = 2}, + [1015] = {.lex_state = 9, .external_lex_state = 2}, + [1016] = {.lex_state = 9, .external_lex_state = 2}, + [1017] = {.lex_state = 9, .external_lex_state = 2}, + [1018] = {.lex_state = 9, .external_lex_state = 2}, + [1019] = {.lex_state = 9, .external_lex_state = 2}, + [1020] = {.lex_state = 9, .external_lex_state = 2}, + [1021] = {.lex_state = 9, .external_lex_state = 2}, + [1022] = {.lex_state = 9, .external_lex_state = 2}, + [1023] = {.lex_state = 9, .external_lex_state = 2}, + [1024] = {.lex_state = 9, .external_lex_state = 2}, + [1025] = {.lex_state = 9, .external_lex_state = 2}, + [1026] = {.lex_state = 9, .external_lex_state = 2}, + [1027] = {.lex_state = 9, .external_lex_state = 2}, + [1028] = {.lex_state = 9, .external_lex_state = 2}, + [1029] = {.lex_state = 9, .external_lex_state = 2}, + [1030] = {.lex_state = 9, .external_lex_state = 2}, + [1031] = {.lex_state = 9, .external_lex_state = 2}, + [1032] = {.lex_state = 9, .external_lex_state = 2}, + [1033] = {.lex_state = 9, .external_lex_state = 2}, + [1034] = {.lex_state = 9, .external_lex_state = 2}, + [1035] = {.lex_state = 9, .external_lex_state = 2}, + [1036] = {.lex_state = 9, .external_lex_state = 2}, + [1037] = {.lex_state = 9, .external_lex_state = 2}, + [1038] = {.lex_state = 9, .external_lex_state = 2}, + [1039] = {.lex_state = 9, .external_lex_state = 2}, + [1040] = {.lex_state = 9, .external_lex_state = 2}, + [1041] = {.lex_state = 9, .external_lex_state = 2}, + [1042] = {.lex_state = 9, .external_lex_state = 2}, + [1043] = {.lex_state = 9, .external_lex_state = 2}, + [1044] = {.lex_state = 9, .external_lex_state = 2}, + [1045] = {.lex_state = 9, .external_lex_state = 2}, + [1046] = {.lex_state = 9, .external_lex_state = 2}, + [1047] = {.lex_state = 9, .external_lex_state = 2}, + [1048] = {.lex_state = 9, .external_lex_state = 2}, + [1049] = {.lex_state = 9, .external_lex_state = 2}, + [1050] = {.lex_state = 9, .external_lex_state = 2}, + [1051] = {.lex_state = 9, .external_lex_state = 2}, + [1052] = {.lex_state = 9, .external_lex_state = 2}, + [1053] = {.lex_state = 9, .external_lex_state = 2}, + [1054] = {.lex_state = 9, .external_lex_state = 2}, + [1055] = {.lex_state = 9, .external_lex_state = 2}, + [1056] = {.lex_state = 9, .external_lex_state = 2}, + [1057] = {.lex_state = 9, .external_lex_state = 2}, + [1058] = {.lex_state = 9, .external_lex_state = 2}, + [1059] = {.lex_state = 9, .external_lex_state = 2}, + [1060] = {.lex_state = 9, .external_lex_state = 2}, + [1061] = {.lex_state = 9, .external_lex_state = 2}, + [1062] = {.lex_state = 9, .external_lex_state = 2}, + [1063] = {.lex_state = 9, .external_lex_state = 2}, + [1064] = {.lex_state = 9, .external_lex_state = 2}, + [1065] = {.lex_state = 9, .external_lex_state = 2}, + [1066] = {.lex_state = 9, .external_lex_state = 2}, + [1067] = {.lex_state = 9, .external_lex_state = 2}, + [1068] = {.lex_state = 9, .external_lex_state = 2}, + [1069] = {.lex_state = 9, .external_lex_state = 2}, + [1070] = {.lex_state = 9, .external_lex_state = 2}, + [1071] = {.lex_state = 9, .external_lex_state = 2}, + [1072] = {.lex_state = 9, .external_lex_state = 2}, + [1073] = {.lex_state = 9, .external_lex_state = 2}, + [1074] = {.lex_state = 9, .external_lex_state = 2}, + [1075] = {.lex_state = 9, .external_lex_state = 2}, + [1076] = {.lex_state = 9, .external_lex_state = 2}, + [1077] = {.lex_state = 9, .external_lex_state = 2}, + [1078] = {.lex_state = 9, .external_lex_state = 2}, + [1079] = {.lex_state = 9, .external_lex_state = 2}, + [1080] = {.lex_state = 9, .external_lex_state = 2}, + [1081] = {.lex_state = 9, .external_lex_state = 2}, + [1082] = {.lex_state = 9, .external_lex_state = 2}, + [1083] = {.lex_state = 9, .external_lex_state = 2}, + [1084] = {.lex_state = 9, .external_lex_state = 2}, + [1085] = {.lex_state = 9, .external_lex_state = 2}, + [1086] = {.lex_state = 9, .external_lex_state = 2}, + [1087] = {.lex_state = 9, .external_lex_state = 2}, + [1088] = {.lex_state = 9, .external_lex_state = 2}, + [1089] = {.lex_state = 9, .external_lex_state = 2}, + [1090] = {.lex_state = 9, .external_lex_state = 2}, + [1091] = {.lex_state = 9, .external_lex_state = 2}, + [1092] = {.lex_state = 9, .external_lex_state = 2}, + [1093] = {.lex_state = 9, .external_lex_state = 2}, + [1094] = {.lex_state = 9, .external_lex_state = 2}, + [1095] = {.lex_state = 9, .external_lex_state = 2}, + [1096] = {.lex_state = 9, .external_lex_state = 2}, + [1097] = {.lex_state = 9, .external_lex_state = 2}, + [1098] = {.lex_state = 9, .external_lex_state = 2}, + [1099] = {.lex_state = 9, .external_lex_state = 2}, + [1100] = {.lex_state = 9, .external_lex_state = 2}, + [1101] = {.lex_state = 9, .external_lex_state = 2}, + [1102] = {.lex_state = 9, .external_lex_state = 2}, + [1103] = {.lex_state = 9, .external_lex_state = 2}, + [1104] = {.lex_state = 9, .external_lex_state = 2}, + [1105] = {.lex_state = 9, .external_lex_state = 2}, + [1106] = {.lex_state = 9, .external_lex_state = 2}, + [1107] = {.lex_state = 9, .external_lex_state = 2}, + [1108] = {.lex_state = 9, .external_lex_state = 2}, + [1109] = {.lex_state = 9, .external_lex_state = 2}, + [1110] = {.lex_state = 9, .external_lex_state = 2}, + [1111] = {.lex_state = 9, .external_lex_state = 2}, + [1112] = {.lex_state = 9, .external_lex_state = 2}, + [1113] = {.lex_state = 9, .external_lex_state = 2}, + [1114] = {.lex_state = 9, .external_lex_state = 2}, + [1115] = {.lex_state = 9, .external_lex_state = 2}, + [1116] = {.lex_state = 9, .external_lex_state = 2}, + [1117] = {.lex_state = 9, .external_lex_state = 2}, + [1118] = {.lex_state = 9, .external_lex_state = 2}, + [1119] = {.lex_state = 9, .external_lex_state = 2}, + [1120] = {.lex_state = 9, .external_lex_state = 2}, + [1121] = {.lex_state = 9, .external_lex_state = 2}, + [1122] = {.lex_state = 9, .external_lex_state = 2}, + [1123] = {.lex_state = 9, .external_lex_state = 2}, + [1124] = {.lex_state = 9, .external_lex_state = 2}, + [1125] = {.lex_state = 9, .external_lex_state = 2}, + [1126] = {.lex_state = 9, .external_lex_state = 2}, + [1127] = {.lex_state = 9, .external_lex_state = 2}, + [1128] = {.lex_state = 9, .external_lex_state = 2}, + [1129] = {.lex_state = 9, .external_lex_state = 2}, + [1130] = {.lex_state = 9, .external_lex_state = 2}, + [1131] = {.lex_state = 9, .external_lex_state = 2}, + [1132] = {.lex_state = 9, .external_lex_state = 2}, + [1133] = {.lex_state = 9, .external_lex_state = 2}, + [1134] = {.lex_state = 9, .external_lex_state = 2}, + [1135] = {.lex_state = 9, .external_lex_state = 2}, + [1136] = {.lex_state = 9, .external_lex_state = 2}, + [1137] = {.lex_state = 9, .external_lex_state = 2}, + [1138] = {.lex_state = 9, .external_lex_state = 2}, + [1139] = {.lex_state = 9, .external_lex_state = 2}, + [1140] = {.lex_state = 9, .external_lex_state = 2}, + [1141] = {.lex_state = 9, .external_lex_state = 2}, + [1142] = {.lex_state = 9, .external_lex_state = 2}, + [1143] = {.lex_state = 9, .external_lex_state = 2}, + [1144] = {.lex_state = 9, .external_lex_state = 2}, + [1145] = {.lex_state = 9, .external_lex_state = 2}, + [1146] = {.lex_state = 9, .external_lex_state = 2}, + [1147] = {.lex_state = 9, .external_lex_state = 2}, + [1148] = {.lex_state = 9, .external_lex_state = 2}, + [1149] = {.lex_state = 9, .external_lex_state = 2}, + [1150] = {.lex_state = 9, .external_lex_state = 2}, + [1151] = {.lex_state = 10, .external_lex_state = 2}, + [1152] = {.lex_state = 10, .external_lex_state = 2}, + [1153] = {.lex_state = 10, .external_lex_state = 2}, + [1154] = {.lex_state = 10, .external_lex_state = 2}, + [1155] = {.lex_state = 10, .external_lex_state = 2}, + [1156] = {.lex_state = 10, .external_lex_state = 2}, + [1157] = {.lex_state = 10, .external_lex_state = 2}, + [1158] = {.lex_state = 10, .external_lex_state = 2}, + [1159] = {.lex_state = 10, .external_lex_state = 2}, + [1160] = {.lex_state = 10, .external_lex_state = 2}, + [1161] = {.lex_state = 10, .external_lex_state = 2}, + [1162] = {.lex_state = 10, .external_lex_state = 2}, + [1163] = {.lex_state = 3, .external_lex_state = 4}, + [1164] = {.lex_state = 2, .external_lex_state = 4}, + [1165] = {.lex_state = 3, .external_lex_state = 4}, + [1166] = {.lex_state = 75, .external_lex_state = 2}, + [1167] = {.lex_state = 2, .external_lex_state = 4}, + [1168] = {.lex_state = 2, .external_lex_state = 4}, + [1169] = {.lex_state = 3, .external_lex_state = 4}, + [1170] = {.lex_state = 75, .external_lex_state = 2}, + [1171] = {.lex_state = 75, .external_lex_state = 2}, + [1172] = {.lex_state = 2, .external_lex_state = 4}, + [1173] = {.lex_state = 2, .external_lex_state = 4}, + [1174] = {.lex_state = 2, .external_lex_state = 4}, + [1175] = {.lex_state = 2, .external_lex_state = 3}, + [1176] = {.lex_state = 2, .external_lex_state = 3}, + [1177] = {.lex_state = 2, .external_lex_state = 3}, + [1178] = {.lex_state = 2, .external_lex_state = 3}, + [1179] = {.lex_state = 10, .external_lex_state = 2}, + [1180] = {.lex_state = 10, .external_lex_state = 2}, + [1181] = {.lex_state = 2, .external_lex_state = 4}, + [1182] = {.lex_state = 3, .external_lex_state = 4}, + [1183] = {.lex_state = 2, .external_lex_state = 4}, + [1184] = {.lex_state = 2, .external_lex_state = 4}, + [1185] = {.lex_state = 2, .external_lex_state = 3}, + [1186] = {.lex_state = 2, .external_lex_state = 3}, + [1187] = {.lex_state = 2, .external_lex_state = 4}, + [1188] = {.lex_state = 2, .external_lex_state = 4}, + [1189] = {.lex_state = 2, .external_lex_state = 4}, + [1190] = {.lex_state = 2, .external_lex_state = 4}, + [1191] = {.lex_state = 2, .external_lex_state = 4}, + [1192] = {.lex_state = 3, .external_lex_state = 4}, + [1193] = {.lex_state = 2, .external_lex_state = 4}, + [1194] = {.lex_state = 2, .external_lex_state = 4}, + [1195] = {.lex_state = 2, .external_lex_state = 3}, + [1196] = {.lex_state = 2, .external_lex_state = 4}, + [1197] = {.lex_state = 3, .external_lex_state = 3}, + [1198] = {.lex_state = 3, .external_lex_state = 3}, + [1199] = {.lex_state = 3, .external_lex_state = 3}, + [1200] = {.lex_state = 3, .external_lex_state = 3}, + [1201] = {.lex_state = 3, .external_lex_state = 3}, + [1202] = {.lex_state = 3, .external_lex_state = 3}, + [1203] = {.lex_state = 2, .external_lex_state = 3}, + [1204] = {.lex_state = 3, .external_lex_state = 3}, + [1205] = {.lex_state = 3, .external_lex_state = 3}, + [1206] = {.lex_state = 3, .external_lex_state = 3}, + [1207] = {.lex_state = 3, .external_lex_state = 3}, + [1208] = {.lex_state = 2, .external_lex_state = 3}, + [1209] = {.lex_state = 3, .external_lex_state = 3}, + [1210] = {.lex_state = 2, .external_lex_state = 3}, + [1211] = {.lex_state = 2, .external_lex_state = 3}, + [1212] = {.lex_state = 3, .external_lex_state = 3}, + [1213] = {.lex_state = 3, .external_lex_state = 3}, + [1214] = {.lex_state = 2, .external_lex_state = 3}, + [1215] = {.lex_state = 2, .external_lex_state = 4}, + [1216] = {.lex_state = 2, .external_lex_state = 4}, + [1217] = {.lex_state = 3, .external_lex_state = 3}, + [1218] = {.lex_state = 2, .external_lex_state = 4}, + [1219] = {.lex_state = 3, .external_lex_state = 3}, + [1220] = {.lex_state = 2, .external_lex_state = 4}, + [1221] = {.lex_state = 3, .external_lex_state = 4}, + [1222] = {.lex_state = 3, .external_lex_state = 4}, + [1223] = {.lex_state = 2, .external_lex_state = 3}, + [1224] = {.lex_state = 2, .external_lex_state = 4}, + [1225] = {.lex_state = 2, .external_lex_state = 3}, + [1226] = {.lex_state = 2, .external_lex_state = 4}, + [1227] = {.lex_state = 2, .external_lex_state = 4}, + [1228] = {.lex_state = 2, .external_lex_state = 4}, + [1229] = {.lex_state = 2, .external_lex_state = 3}, + [1230] = {.lex_state = 2, .external_lex_state = 4}, + [1231] = {.lex_state = 2, .external_lex_state = 4}, + [1232] = {.lex_state = 2, .external_lex_state = 4}, + [1233] = {.lex_state = 2, .external_lex_state = 4}, + [1234] = {.lex_state = 2, .external_lex_state = 3}, + [1235] = {.lex_state = 2, .external_lex_state = 3}, + [1236] = {.lex_state = 2, .external_lex_state = 3}, + [1237] = {.lex_state = 2, .external_lex_state = 3}, + [1238] = {.lex_state = 2, .external_lex_state = 3}, + [1239] = {.lex_state = 2, .external_lex_state = 3}, + [1240] = {.lex_state = 2, .external_lex_state = 3}, + [1241] = {.lex_state = 2, .external_lex_state = 3}, + [1242] = {.lex_state = 2, .external_lex_state = 3}, + [1243] = {.lex_state = 2, .external_lex_state = 3}, + [1244] = {.lex_state = 2, .external_lex_state = 4}, + [1245] = {.lex_state = 2, .external_lex_state = 4}, + [1246] = {.lex_state = 75, .external_lex_state = 2}, + [1247] = {.lex_state = 2, .external_lex_state = 4}, + [1248] = {.lex_state = 2, .external_lex_state = 3}, + [1249] = {.lex_state = 2, .external_lex_state = 4}, + [1250] = {.lex_state = 2, .external_lex_state = 3}, + [1251] = {.lex_state = 2, .external_lex_state = 3}, + [1252] = {.lex_state = 2, .external_lex_state = 3}, + [1253] = {.lex_state = 2, .external_lex_state = 3}, + [1254] = {.lex_state = 3, .external_lex_state = 3}, + [1255] = {.lex_state = 3, .external_lex_state = 3}, + [1256] = {.lex_state = 2, .external_lex_state = 4}, + [1257] = {.lex_state = 2, .external_lex_state = 3}, + [1258] = {.lex_state = 2, .external_lex_state = 3}, + [1259] = {.lex_state = 2, .external_lex_state = 3}, + [1260] = {.lex_state = 2, .external_lex_state = 3}, + [1261] = {.lex_state = 2, .external_lex_state = 3}, + [1262] = {.lex_state = 2, .external_lex_state = 4}, + [1263] = {.lex_state = 2, .external_lex_state = 3}, + [1264] = {.lex_state = 2, .external_lex_state = 3}, + [1265] = {.lex_state = 2, .external_lex_state = 3}, + [1266] = {.lex_state = 2, .external_lex_state = 3}, + [1267] = {.lex_state = 2, .external_lex_state = 3}, + [1268] = {.lex_state = 2, .external_lex_state = 3}, + [1269] = {.lex_state = 75, .external_lex_state = 2}, + [1270] = {.lex_state = 2, .external_lex_state = 4}, + [1271] = {.lex_state = 2, .external_lex_state = 3}, + [1272] = {.lex_state = 75, .external_lex_state = 2}, + [1273] = {.lex_state = 2, .external_lex_state = 3}, + [1274] = {.lex_state = 2, .external_lex_state = 3}, + [1275] = {.lex_state = 2, .external_lex_state = 3}, + [1276] = {.lex_state = 2, .external_lex_state = 3}, + [1277] = {.lex_state = 2, .external_lex_state = 3}, + [1278] = {.lex_state = 2, .external_lex_state = 3}, + [1279] = {.lex_state = 2, .external_lex_state = 3}, + [1280] = {.lex_state = 2, .external_lex_state = 3}, + [1281] = {.lex_state = 2, .external_lex_state = 3}, + [1282] = {.lex_state = 2, .external_lex_state = 4}, + [1283] = {.lex_state = 2, .external_lex_state = 3}, + [1284] = {.lex_state = 2, .external_lex_state = 4}, + [1285] = {.lex_state = 2, .external_lex_state = 4}, + [1286] = {.lex_state = 2, .external_lex_state = 3}, + [1287] = {.lex_state = 75, .external_lex_state = 2}, + [1288] = {.lex_state = 75, .external_lex_state = 2}, + [1289] = {.lex_state = 2, .external_lex_state = 3}, + [1290] = {.lex_state = 2, .external_lex_state = 4}, + [1291] = {.lex_state = 2, .external_lex_state = 4}, + [1292] = {.lex_state = 2, .external_lex_state = 4}, + [1293] = {.lex_state = 2, .external_lex_state = 3}, + [1294] = {.lex_state = 2, .external_lex_state = 4}, + [1295] = {.lex_state = 2, .external_lex_state = 3}, + [1296] = {.lex_state = 2, .external_lex_state = 3}, + [1297] = {.lex_state = 75, .external_lex_state = 2}, + [1298] = {.lex_state = 2, .external_lex_state = 3}, + [1299] = {.lex_state = 2, .external_lex_state = 3}, + [1300] = {.lex_state = 2, .external_lex_state = 4}, + [1301] = {.lex_state = 2, .external_lex_state = 3}, + [1302] = {.lex_state = 3, .external_lex_state = 3}, + [1303] = {.lex_state = 2, .external_lex_state = 4}, + [1304] = {.lex_state = 2, .external_lex_state = 3}, + [1305] = {.lex_state = 2, .external_lex_state = 3}, + [1306] = {.lex_state = 2, .external_lex_state = 3}, + [1307] = {.lex_state = 2, .external_lex_state = 4}, + [1308] = {.lex_state = 2, .external_lex_state = 4}, + [1309] = {.lex_state = 2, .external_lex_state = 3}, + [1310] = {.lex_state = 2, .external_lex_state = 4}, + [1311] = {.lex_state = 2, .external_lex_state = 4}, + [1312] = {.lex_state = 2, .external_lex_state = 4}, + [1313] = {.lex_state = 2, .external_lex_state = 4}, + [1314] = {.lex_state = 2, .external_lex_state = 3}, + [1315] = {.lex_state = 2, .external_lex_state = 4}, + [1316] = {.lex_state = 2, .external_lex_state = 4}, + [1317] = {.lex_state = 75, .external_lex_state = 2}, + [1318] = {.lex_state = 2, .external_lex_state = 3}, + [1319] = {.lex_state = 2, .external_lex_state = 3}, + [1320] = {.lex_state = 2, .external_lex_state = 4}, + [1321] = {.lex_state = 2, .external_lex_state = 4}, + [1322] = {.lex_state = 2, .external_lex_state = 3}, + [1323] = {.lex_state = 2, .external_lex_state = 3}, + [1324] = {.lex_state = 2, .external_lex_state = 4}, + [1325] = {.lex_state = 2, .external_lex_state = 4}, + [1326] = {.lex_state = 2, .external_lex_state = 4}, + [1327] = {.lex_state = 2, .external_lex_state = 3}, + [1328] = {.lex_state = 2, .external_lex_state = 4}, + [1329] = {.lex_state = 2, .external_lex_state = 4}, + [1330] = {.lex_state = 2, .external_lex_state = 4}, + [1331] = {.lex_state = 2, .external_lex_state = 4}, + [1332] = {.lex_state = 75, .external_lex_state = 2}, + [1333] = {.lex_state = 2, .external_lex_state = 3}, + [1334] = {.lex_state = 2, .external_lex_state = 4}, + [1335] = {.lex_state = 2, .external_lex_state = 4}, + [1336] = {.lex_state = 2, .external_lex_state = 3}, + [1337] = {.lex_state = 2, .external_lex_state = 4}, + [1338] = {.lex_state = 2, .external_lex_state = 3}, + [1339] = {.lex_state = 2, .external_lex_state = 3}, + [1340] = {.lex_state = 2, .external_lex_state = 3}, + [1341] = {.lex_state = 2, .external_lex_state = 3}, + [1342] = {.lex_state = 2, .external_lex_state = 4}, + [1343] = {.lex_state = 3, .external_lex_state = 3}, + [1344] = {.lex_state = 75, .external_lex_state = 2}, + [1345] = {.lex_state = 2, .external_lex_state = 3}, + [1346] = {.lex_state = 2, .external_lex_state = 3}, + [1347] = {.lex_state = 2, .external_lex_state = 4}, + [1348] = {.lex_state = 2, .external_lex_state = 4}, + [1349] = {.lex_state = 2, .external_lex_state = 3}, + [1350] = {.lex_state = 2, .external_lex_state = 4}, + [1351] = {.lex_state = 2, .external_lex_state = 4}, + [1352] = {.lex_state = 2, .external_lex_state = 3}, + [1353] = {.lex_state = 3, .external_lex_state = 3}, + [1354] = {.lex_state = 2, .external_lex_state = 3}, + [1355] = {.lex_state = 3, .external_lex_state = 3}, + [1356] = {.lex_state = 2, .external_lex_state = 3}, + [1357] = {.lex_state = 2, .external_lex_state = 3}, + [1358] = {.lex_state = 2, .external_lex_state = 3}, + [1359] = {.lex_state = 2, .external_lex_state = 4}, + [1360] = {.lex_state = 2, .external_lex_state = 3}, + [1361] = {.lex_state = 2, .external_lex_state = 3}, + [1362] = {.lex_state = 2, .external_lex_state = 4}, + [1363] = {.lex_state = 2, .external_lex_state = 3}, + [1364] = {.lex_state = 2, .external_lex_state = 4}, + [1365] = {.lex_state = 2, .external_lex_state = 3}, + [1366] = {.lex_state = 2, .external_lex_state = 3}, + [1367] = {.lex_state = 2, .external_lex_state = 4}, + [1368] = {.lex_state = 2, .external_lex_state = 3}, + [1369] = {.lex_state = 2, .external_lex_state = 3}, + [1370] = {.lex_state = 2, .external_lex_state = 3}, + [1371] = {.lex_state = 2, .external_lex_state = 3}, + [1372] = {.lex_state = 2, .external_lex_state = 3}, + [1373] = {.lex_state = 2, .external_lex_state = 3}, + [1374] = {.lex_state = 3, .external_lex_state = 3}, + [1375] = {.lex_state = 3, .external_lex_state = 3}, + [1376] = {.lex_state = 2, .external_lex_state = 3}, + [1377] = {.lex_state = 2, .external_lex_state = 3}, + [1378] = {.lex_state = 2, .external_lex_state = 3}, + [1379] = {.lex_state = 2, .external_lex_state = 3}, + [1380] = {.lex_state = 9, .external_lex_state = 2}, + [1381] = {.lex_state = 2, .external_lex_state = 3}, + [1382] = {.lex_state = 9, .external_lex_state = 2}, + [1383] = {.lex_state = 2, .external_lex_state = 4}, + [1384] = {.lex_state = 2, .external_lex_state = 4}, + [1385] = {.lex_state = 2, .external_lex_state = 4}, + [1386] = {.lex_state = 9, .external_lex_state = 2}, + [1387] = {.lex_state = 3, .external_lex_state = 3}, + [1388] = {.lex_state = 2, .external_lex_state = 3}, + [1389] = {.lex_state = 9, .external_lex_state = 2}, + [1390] = {.lex_state = 2, .external_lex_state = 3}, + [1391] = {.lex_state = 2, .external_lex_state = 3}, + [1392] = {.lex_state = 2, .external_lex_state = 3}, + [1393] = {.lex_state = 2, .external_lex_state = 3}, + [1394] = {.lex_state = 9, .external_lex_state = 2}, + [1395] = {.lex_state = 9, .external_lex_state = 2}, + [1396] = {.lex_state = 2, .external_lex_state = 3}, + [1397] = {.lex_state = 2, .external_lex_state = 3}, + [1398] = {.lex_state = 2, .external_lex_state = 3}, + [1399] = {.lex_state = 2, .external_lex_state = 3}, + [1400] = {.lex_state = 2, .external_lex_state = 4}, + [1401] = {.lex_state = 2, .external_lex_state = 3}, + [1402] = {.lex_state = 2, .external_lex_state = 3}, + [1403] = {.lex_state = 2, .external_lex_state = 3}, + [1404] = {.lex_state = 2, .external_lex_state = 3}, + [1405] = {.lex_state = 2, .external_lex_state = 3}, + [1406] = {.lex_state = 2, .external_lex_state = 3}, + [1407] = {.lex_state = 2, .external_lex_state = 3}, + [1408] = {.lex_state = 2, .external_lex_state = 3}, + [1409] = {.lex_state = 2, .external_lex_state = 3}, + [1410] = {.lex_state = 2, .external_lex_state = 4}, + [1411] = {.lex_state = 2, .external_lex_state = 3}, + [1412] = {.lex_state = 2, .external_lex_state = 3}, + [1413] = {.lex_state = 2, .external_lex_state = 3}, + [1414] = {.lex_state = 2, .external_lex_state = 3}, + [1415] = {.lex_state = 2, .external_lex_state = 3}, + [1416] = {.lex_state = 2, .external_lex_state = 3}, + [1417] = {.lex_state = 2, .external_lex_state = 3}, + [1418] = {.lex_state = 2, .external_lex_state = 3}, + [1419] = {.lex_state = 9, .external_lex_state = 2}, + [1420] = {.lex_state = 2, .external_lex_state = 3}, + [1421] = {.lex_state = 2, .external_lex_state = 3}, + [1422] = {.lex_state = 2, .external_lex_state = 3}, + [1423] = {.lex_state = 9, .external_lex_state = 2}, + [1424] = {.lex_state = 9, .external_lex_state = 2}, + [1425] = {.lex_state = 2, .external_lex_state = 3}, + [1426] = {.lex_state = 9, .external_lex_state = 2}, + [1427] = {.lex_state = 2, .external_lex_state = 3}, + [1428] = {.lex_state = 2, .external_lex_state = 3}, + [1429] = {.lex_state = 2, .external_lex_state = 3}, + [1430] = {.lex_state = 2, .external_lex_state = 3}, + [1431] = {.lex_state = 2, .external_lex_state = 3}, + [1432] = {.lex_state = 9, .external_lex_state = 2}, + [1433] = {.lex_state = 9, .external_lex_state = 2}, + [1434] = {.lex_state = 2, .external_lex_state = 3}, + [1435] = {.lex_state = 2, .external_lex_state = 3}, + [1436] = {.lex_state = 9, .external_lex_state = 2}, + [1437] = {.lex_state = 9, .external_lex_state = 2}, + [1438] = {.lex_state = 2, .external_lex_state = 3}, + [1439] = {.lex_state = 9, .external_lex_state = 2}, + [1440] = {.lex_state = 2, .external_lex_state = 3}, + [1441] = {.lex_state = 9, .external_lex_state = 2}, + [1442] = {.lex_state = 9, .external_lex_state = 2}, + [1443] = {.lex_state = 9, .external_lex_state = 2}, + [1444] = {.lex_state = 2, .external_lex_state = 3}, + [1445] = {.lex_state = 2, .external_lex_state = 3}, + [1446] = {.lex_state = 2, .external_lex_state = 3}, + [1447] = {.lex_state = 2, .external_lex_state = 3}, + [1448] = {.lex_state = 2, .external_lex_state = 3}, + [1449] = {.lex_state = 2, .external_lex_state = 3}, + [1450] = {.lex_state = 9, .external_lex_state = 2}, + [1451] = {.lex_state = 2, .external_lex_state = 3}, + [1452] = {.lex_state = 2, .external_lex_state = 3}, + [1453] = {.lex_state = 2, .external_lex_state = 3}, + [1454] = {.lex_state = 9, .external_lex_state = 2}, + [1455] = {.lex_state = 9, .external_lex_state = 2}, + [1456] = {.lex_state = 2, .external_lex_state = 3}, + [1457] = {.lex_state = 2, .external_lex_state = 3}, + [1458] = {.lex_state = 2, .external_lex_state = 3}, + [1459] = {.lex_state = 2, .external_lex_state = 3}, + [1460] = {.lex_state = 9, .external_lex_state = 2}, + [1461] = {.lex_state = 2, .external_lex_state = 3}, + [1462] = {.lex_state = 9, .external_lex_state = 2}, + [1463] = {.lex_state = 9, .external_lex_state = 2}, + [1464] = {.lex_state = 2, .external_lex_state = 3}, + [1465] = {.lex_state = 2, .external_lex_state = 3}, + [1466] = {.lex_state = 2, .external_lex_state = 3}, + [1467] = {.lex_state = 2, .external_lex_state = 3}, + [1468] = {.lex_state = 2, .external_lex_state = 3}, + [1469] = {.lex_state = 2, .external_lex_state = 3}, + [1470] = {.lex_state = 2, .external_lex_state = 3}, + [1471] = {.lex_state = 2, .external_lex_state = 3}, + [1472] = {.lex_state = 2, .external_lex_state = 3}, + [1473] = {.lex_state = 2, .external_lex_state = 3}, + [1474] = {.lex_state = 9, .external_lex_state = 2}, + [1475] = {.lex_state = 9, .external_lex_state = 2}, + [1476] = {.lex_state = 9, .external_lex_state = 2}, + [1477] = {.lex_state = 9, .external_lex_state = 2}, + [1478] = {.lex_state = 9, .external_lex_state = 2}, + [1479] = {.lex_state = 9, .external_lex_state = 2}, + [1480] = {.lex_state = 9, .external_lex_state = 2}, + [1481] = {.lex_state = 75, .external_lex_state = 5}, + [1482] = {.lex_state = 9, .external_lex_state = 2}, + [1483] = {.lex_state = 9, .external_lex_state = 2}, + [1484] = {.lex_state = 9, .external_lex_state = 2}, + [1485] = {.lex_state = 9, .external_lex_state = 2}, + [1486] = {.lex_state = 75, .external_lex_state = 5}, + [1487] = {.lex_state = 75, .external_lex_state = 5}, + [1488] = {.lex_state = 75, .external_lex_state = 5}, + [1489] = {.lex_state = 9, .external_lex_state = 2}, + [1490] = {.lex_state = 9, .external_lex_state = 2}, + [1491] = {.lex_state = 9, .external_lex_state = 2}, + [1492] = {.lex_state = 9, .external_lex_state = 2}, + [1493] = {.lex_state = 75, .external_lex_state = 5}, + [1494] = {.lex_state = 9, .external_lex_state = 2}, + [1495] = {.lex_state = 9, .external_lex_state = 2}, + [1496] = {.lex_state = 9, .external_lex_state = 2}, + [1497] = {.lex_state = 75, .external_lex_state = 2}, + [1498] = {.lex_state = 75, .external_lex_state = 2}, + [1499] = {.lex_state = 75, .external_lex_state = 2}, + [1500] = {.lex_state = 75, .external_lex_state = 2}, + [1501] = {.lex_state = 74, .external_lex_state = 3}, + [1502] = {.lex_state = 75, .external_lex_state = 2}, + [1503] = {.lex_state = 75, .external_lex_state = 2}, + [1504] = {.lex_state = 74, .external_lex_state = 3}, + [1505] = {.lex_state = 74, .external_lex_state = 3}, + [1506] = {.lex_state = 74, .external_lex_state = 3}, + [1507] = {.lex_state = 75, .external_lex_state = 5}, + [1508] = {.lex_state = 74, .external_lex_state = 4}, + [1509] = {.lex_state = 74, .external_lex_state = 3}, + [1510] = {.lex_state = 75, .external_lex_state = 5}, + [1511] = {.lex_state = 74, .external_lex_state = 4}, + [1512] = {.lex_state = 74, .external_lex_state = 3}, + [1513] = {.lex_state = 74, .external_lex_state = 3}, + [1514] = {.lex_state = 74, .external_lex_state = 3}, + [1515] = {.lex_state = 74, .external_lex_state = 3}, + [1516] = {.lex_state = 74, .external_lex_state = 3}, + [1517] = {.lex_state = 74, .external_lex_state = 3}, + [1518] = {.lex_state = 74, .external_lex_state = 3}, + [1519] = {.lex_state = 74, .external_lex_state = 3}, + [1520] = {.lex_state = 75, .external_lex_state = 2}, + [1521] = {.lex_state = 74, .external_lex_state = 4}, + [1522] = {.lex_state = 74, .external_lex_state = 3}, + [1523] = {.lex_state = 74, .external_lex_state = 3}, + [1524] = {.lex_state = 74, .external_lex_state = 3}, + [1525] = {.lex_state = 74, .external_lex_state = 3}, + [1526] = {.lex_state = 74, .external_lex_state = 3}, + [1527] = {.lex_state = 74, .external_lex_state = 3}, + [1528] = {.lex_state = 74, .external_lex_state = 3}, + [1529] = {.lex_state = 74, .external_lex_state = 3}, + [1530] = {.lex_state = 74, .external_lex_state = 3}, + [1531] = {.lex_state = 74, .external_lex_state = 3}, + [1532] = {.lex_state = 74, .external_lex_state = 3}, + [1533] = {.lex_state = 74, .external_lex_state = 3}, + [1534] = {.lex_state = 74, .external_lex_state = 4}, + [1535] = {.lex_state = 74, .external_lex_state = 3}, + [1536] = {.lex_state = 74, .external_lex_state = 3}, + [1537] = {.lex_state = 74, .external_lex_state = 3}, + [1538] = {.lex_state = 74, .external_lex_state = 3}, + [1539] = {.lex_state = 74, .external_lex_state = 3}, + [1540] = {.lex_state = 74, .external_lex_state = 3}, + [1541] = {.lex_state = 74, .external_lex_state = 3}, + [1542] = {.lex_state = 74, .external_lex_state = 3}, + [1543] = {.lex_state = 74, .external_lex_state = 3}, + [1544] = {.lex_state = 74, .external_lex_state = 3}, + [1545] = {.lex_state = 74, .external_lex_state = 3}, + [1546] = {.lex_state = 74, .external_lex_state = 3}, + [1547] = {.lex_state = 74, .external_lex_state = 3}, + [1548] = {.lex_state = 74, .external_lex_state = 3}, + [1549] = {.lex_state = 74, .external_lex_state = 3}, + [1550] = {.lex_state = 74, .external_lex_state = 3}, + [1551] = {.lex_state = 74, .external_lex_state = 3}, + [1552] = {.lex_state = 74, .external_lex_state = 3}, + [1553] = {.lex_state = 74, .external_lex_state = 3}, + [1554] = {.lex_state = 74, .external_lex_state = 3}, + [1555] = {.lex_state = 74, .external_lex_state = 3}, + [1556] = {.lex_state = 74, .external_lex_state = 3}, + [1557] = {.lex_state = 74, .external_lex_state = 3}, + [1558] = {.lex_state = 74, .external_lex_state = 3}, + [1559] = {.lex_state = 74, .external_lex_state = 3}, + [1560] = {.lex_state = 74, .external_lex_state = 3}, + [1561] = {.lex_state = 74, .external_lex_state = 3}, + [1562] = {.lex_state = 74, .external_lex_state = 3}, + [1563] = {.lex_state = 74, .external_lex_state = 3}, + [1564] = {.lex_state = 74, .external_lex_state = 3}, + [1565] = {.lex_state = 74, .external_lex_state = 3}, + [1566] = {.lex_state = 74, .external_lex_state = 3}, + [1567] = {.lex_state = 74, .external_lex_state = 3}, + [1568] = {.lex_state = 74, .external_lex_state = 3}, + [1569] = {.lex_state = 74, .external_lex_state = 3}, + [1570] = {.lex_state = 74, .external_lex_state = 3}, + [1571] = {.lex_state = 74, .external_lex_state = 3}, + [1572] = {.lex_state = 74, .external_lex_state = 3}, + [1573] = {.lex_state = 74, .external_lex_state = 3}, + [1574] = {.lex_state = 74, .external_lex_state = 3}, + [1575] = {.lex_state = 74, .external_lex_state = 3}, + [1576] = {.lex_state = 74, .external_lex_state = 3}, + [1577] = {.lex_state = 74, .external_lex_state = 3}, + [1578] = {.lex_state = 74, .external_lex_state = 3}, + [1579] = {.lex_state = 74, .external_lex_state = 4}, + [1580] = {.lex_state = 74, .external_lex_state = 3}, + [1581] = {.lex_state = 74, .external_lex_state = 3}, + [1582] = {.lex_state = 74, .external_lex_state = 3}, + [1583] = {.lex_state = 74, .external_lex_state = 3}, + [1584] = {.lex_state = 74, .external_lex_state = 3}, + [1585] = {.lex_state = 74, .external_lex_state = 3}, + [1586] = {.lex_state = 74, .external_lex_state = 3}, + [1587] = {.lex_state = 74, .external_lex_state = 3}, + [1588] = {.lex_state = 74, .external_lex_state = 3}, + [1589] = {.lex_state = 74, .external_lex_state = 3}, + [1590] = {.lex_state = 74, .external_lex_state = 3}, + [1591] = {.lex_state = 74, .external_lex_state = 3}, + [1592] = {.lex_state = 74, .external_lex_state = 3}, + [1593] = {.lex_state = 74, .external_lex_state = 3}, + [1594] = {.lex_state = 74, .external_lex_state = 3}, + [1595] = {.lex_state = 74, .external_lex_state = 3}, + [1596] = {.lex_state = 74, .external_lex_state = 3}, + [1597] = {.lex_state = 74, .external_lex_state = 3}, + [1598] = {.lex_state = 74, .external_lex_state = 3}, + [1599] = {.lex_state = 74, .external_lex_state = 3}, + [1600] = {.lex_state = 74, .external_lex_state = 3}, + [1601] = {.lex_state = 74, .external_lex_state = 3}, + [1602] = {.lex_state = 74, .external_lex_state = 3}, + [1603] = {.lex_state = 74, .external_lex_state = 3}, + [1604] = {.lex_state = 74, .external_lex_state = 3}, + [1605] = {.lex_state = 74, .external_lex_state = 3}, + [1606] = {.lex_state = 74, .external_lex_state = 4}, + [1607] = {.lex_state = 74, .external_lex_state = 3}, + [1608] = {.lex_state = 74, .external_lex_state = 4}, + [1609] = {.lex_state = 74, .external_lex_state = 3}, + [1610] = {.lex_state = 74, .external_lex_state = 3}, + [1611] = {.lex_state = 74, .external_lex_state = 3}, + [1612] = {.lex_state = 74, .external_lex_state = 4}, + [1613] = {.lex_state = 74, .external_lex_state = 3}, + [1614] = {.lex_state = 74, .external_lex_state = 3}, + [1615] = {.lex_state = 74, .external_lex_state = 3}, + [1616] = {.lex_state = 74, .external_lex_state = 3}, + [1617] = {.lex_state = 74, .external_lex_state = 3}, + [1618] = {.lex_state = 74, .external_lex_state = 3}, + [1619] = {.lex_state = 74, .external_lex_state = 3}, + [1620] = {.lex_state = 74, .external_lex_state = 3}, + [1621] = {.lex_state = 74, .external_lex_state = 3}, + [1622] = {.lex_state = 74, .external_lex_state = 3}, + [1623] = {.lex_state = 74, .external_lex_state = 3}, + [1624] = {.lex_state = 74, .external_lex_state = 3}, + [1625] = {.lex_state = 74, .external_lex_state = 3}, + [1626] = {.lex_state = 74, .external_lex_state = 3}, + [1627] = {.lex_state = 74, .external_lex_state = 3}, + [1628] = {.lex_state = 74, .external_lex_state = 3}, + [1629] = {.lex_state = 74, .external_lex_state = 3}, + [1630] = {.lex_state = 74, .external_lex_state = 3}, + [1631] = {.lex_state = 74, .external_lex_state = 3}, + [1632] = {.lex_state = 74, .external_lex_state = 3}, + [1633] = {.lex_state = 74, .external_lex_state = 3}, + [1634] = {.lex_state = 74, .external_lex_state = 3}, + [1635] = {.lex_state = 74, .external_lex_state = 3}, + [1636] = {.lex_state = 74, .external_lex_state = 3}, + [1637] = {.lex_state = 74, .external_lex_state = 3}, + [1638] = {.lex_state = 74, .external_lex_state = 3}, + [1639] = {.lex_state = 74, .external_lex_state = 3}, + [1640] = {.lex_state = 74, .external_lex_state = 3}, + [1641] = {.lex_state = 74, .external_lex_state = 3}, + [1642] = {.lex_state = 74, .external_lex_state = 3}, + [1643] = {.lex_state = 74, .external_lex_state = 3}, + [1644] = {.lex_state = 74, .external_lex_state = 3}, + [1645] = {.lex_state = 74, .external_lex_state = 3}, + [1646] = {.lex_state = 74, .external_lex_state = 3}, + [1647] = {.lex_state = 74, .external_lex_state = 3}, + [1648] = {.lex_state = 74, .external_lex_state = 3}, + [1649] = {.lex_state = 74, .external_lex_state = 3}, + [1650] = {.lex_state = 74, .external_lex_state = 3}, + [1651] = {.lex_state = 74, .external_lex_state = 3}, + [1652] = {.lex_state = 74, .external_lex_state = 3}, + [1653] = {.lex_state = 74, .external_lex_state = 3}, + [1654] = {.lex_state = 74, .external_lex_state = 3}, + [1655] = {.lex_state = 74, .external_lex_state = 3}, + [1656] = {.lex_state = 74, .external_lex_state = 3}, + [1657] = {.lex_state = 74, .external_lex_state = 3}, + [1658] = {.lex_state = 74, .external_lex_state = 3}, + [1659] = {.lex_state = 74, .external_lex_state = 3}, + [1660] = {.lex_state = 74, .external_lex_state = 3}, + [1661] = {.lex_state = 74, .external_lex_state = 3}, + [1662] = {.lex_state = 74, .external_lex_state = 3}, + [1663] = {.lex_state = 74, .external_lex_state = 3}, + [1664] = {.lex_state = 74, .external_lex_state = 3}, + [1665] = {.lex_state = 74, .external_lex_state = 3}, + [1666] = {.lex_state = 74, .external_lex_state = 3}, + [1667] = {.lex_state = 74, .external_lex_state = 3}, + [1668] = {.lex_state = 74, .external_lex_state = 3}, + [1669] = {.lex_state = 74, .external_lex_state = 3}, + [1670] = {.lex_state = 74, .external_lex_state = 3}, + [1671] = {.lex_state = 74, .external_lex_state = 3}, + [1672] = {.lex_state = 74, .external_lex_state = 3}, + [1673] = {.lex_state = 74, .external_lex_state = 3}, + [1674] = {.lex_state = 74, .external_lex_state = 3}, + [1675] = {.lex_state = 74, .external_lex_state = 3}, + [1676] = {.lex_state = 74, .external_lex_state = 3}, + [1677] = {.lex_state = 74, .external_lex_state = 3}, + [1678] = {.lex_state = 74, .external_lex_state = 3}, + [1679] = {.lex_state = 74, .external_lex_state = 3}, + [1680] = {.lex_state = 74, .external_lex_state = 3}, + [1681] = {.lex_state = 74, .external_lex_state = 3}, + [1682] = {.lex_state = 74, .external_lex_state = 3}, + [1683] = {.lex_state = 74, .external_lex_state = 3}, + [1684] = {.lex_state = 74, .external_lex_state = 3}, + [1685] = {.lex_state = 74, .external_lex_state = 3}, + [1686] = {.lex_state = 74, .external_lex_state = 3}, + [1687] = {.lex_state = 74, .external_lex_state = 3}, + [1688] = {.lex_state = 74, .external_lex_state = 3}, + [1689] = {.lex_state = 74, .external_lex_state = 3}, + [1690] = {.lex_state = 74, .external_lex_state = 3}, + [1691] = {.lex_state = 74, .external_lex_state = 3}, + [1692] = {.lex_state = 74, .external_lex_state = 3}, + [1693] = {.lex_state = 74, .external_lex_state = 3}, + [1694] = {.lex_state = 74, .external_lex_state = 3}, + [1695] = {.lex_state = 74, .external_lex_state = 3}, + [1696] = {.lex_state = 74, .external_lex_state = 4}, + [1697] = {.lex_state = 74, .external_lex_state = 3}, + [1698] = {.lex_state = 74, .external_lex_state = 3}, + [1699] = {.lex_state = 74, .external_lex_state = 3}, + [1700] = {.lex_state = 74, .external_lex_state = 3}, + [1701] = {.lex_state = 74, .external_lex_state = 3}, + [1702] = {.lex_state = 74, .external_lex_state = 3}, + [1703] = {.lex_state = 74, .external_lex_state = 3}, + [1704] = {.lex_state = 74, .external_lex_state = 3}, + [1705] = {.lex_state = 74, .external_lex_state = 3}, + [1706] = {.lex_state = 74, .external_lex_state = 3}, + [1707] = {.lex_state = 74, .external_lex_state = 3}, + [1708] = {.lex_state = 74, .external_lex_state = 4}, + [1709] = {.lex_state = 74, .external_lex_state = 4}, + [1710] = {.lex_state = 74, .external_lex_state = 3}, + [1711] = {.lex_state = 74, .external_lex_state = 3}, + [1712] = {.lex_state = 74, .external_lex_state = 3}, + [1713] = {.lex_state = 74, .external_lex_state = 3}, + [1714] = {.lex_state = 74, .external_lex_state = 3}, + [1715] = {.lex_state = 74, .external_lex_state = 3}, + [1716] = {.lex_state = 74, .external_lex_state = 3}, + [1717] = {.lex_state = 75, .external_lex_state = 5}, + [1718] = {.lex_state = 75, .external_lex_state = 5}, + [1719] = {.lex_state = 75, .external_lex_state = 5}, + [1720] = {.lex_state = 75, .external_lex_state = 5}, + [1721] = {.lex_state = 75, .external_lex_state = 5}, + [1722] = {.lex_state = 74, .external_lex_state = 3}, + [1723] = {.lex_state = 74, .external_lex_state = 3}, + [1724] = {.lex_state = 74, .external_lex_state = 4}, + [1725] = {.lex_state = 75, .external_lex_state = 5}, + [1726] = {.lex_state = 74, .external_lex_state = 3}, + [1727] = {.lex_state = 74, .external_lex_state = 4}, + [1728] = {.lex_state = 75, .external_lex_state = 5}, + [1729] = {.lex_state = 74, .external_lex_state = 4}, + [1730] = {.lex_state = 74, .external_lex_state = 4}, + [1731] = {.lex_state = 75, .external_lex_state = 5}, + [1732] = {.lex_state = 74, .external_lex_state = 4}, + [1733] = {.lex_state = 74, .external_lex_state = 4}, + [1734] = {.lex_state = 75, .external_lex_state = 5}, + [1735] = {.lex_state = 74, .external_lex_state = 4}, + [1736] = {.lex_state = 75, .external_lex_state = 5}, + [1737] = {.lex_state = 74, .external_lex_state = 4}, + [1738] = {.lex_state = 75, .external_lex_state = 5}, + [1739] = {.lex_state = 74, .external_lex_state = 3}, + [1740] = {.lex_state = 74, .external_lex_state = 3}, + [1741] = {.lex_state = 74, .external_lex_state = 3}, + [1742] = {.lex_state = 75, .external_lex_state = 5}, + [1743] = {.lex_state = 74, .external_lex_state = 3}, + [1744] = {.lex_state = 74, .external_lex_state = 3}, + [1745] = {.lex_state = 74, .external_lex_state = 3}, + [1746] = {.lex_state = 74, .external_lex_state = 3}, + [1747] = {.lex_state = 74, .external_lex_state = 3}, + [1748] = {.lex_state = 74, .external_lex_state = 3}, + [1749] = {.lex_state = 74, .external_lex_state = 3}, + [1750] = {.lex_state = 74, .external_lex_state = 4}, + [1751] = {.lex_state = 74, .external_lex_state = 3}, + [1752] = {.lex_state = 74, .external_lex_state = 3}, + [1753] = {.lex_state = 74, .external_lex_state = 3}, + [1754] = {.lex_state = 74, .external_lex_state = 3}, + [1755] = {.lex_state = 74, .external_lex_state = 3}, + [1756] = {.lex_state = 74, .external_lex_state = 3}, + [1757] = {.lex_state = 74, .external_lex_state = 3}, + [1758] = {.lex_state = 74, .external_lex_state = 3}, + [1759] = {.lex_state = 74, .external_lex_state = 3}, + [1760] = {.lex_state = 74, .external_lex_state = 3}, + [1761] = {.lex_state = 74, .external_lex_state = 3}, + [1762] = {.lex_state = 74, .external_lex_state = 3}, + [1763] = {.lex_state = 74, .external_lex_state = 3}, + [1764] = {.lex_state = 74, .external_lex_state = 3}, + [1765] = {.lex_state = 74, .external_lex_state = 3}, + [1766] = {.lex_state = 74, .external_lex_state = 4}, + [1767] = {.lex_state = 75, .external_lex_state = 5}, + [1768] = {.lex_state = 74, .external_lex_state = 3}, + [1769] = {.lex_state = 75, .external_lex_state = 5}, + [1770] = {.lex_state = 75, .external_lex_state = 5}, + [1771] = {.lex_state = 74, .external_lex_state = 4}, + [1772] = {.lex_state = 75, .external_lex_state = 5}, + [1773] = {.lex_state = 75, .external_lex_state = 5}, + [1774] = {.lex_state = 74, .external_lex_state = 4}, + [1775] = {.lex_state = 75, .external_lex_state = 5}, + [1776] = {.lex_state = 74, .external_lex_state = 3}, + [1777] = {.lex_state = 74, .external_lex_state = 3}, + [1778] = {.lex_state = 74, .external_lex_state = 3}, + [1779] = {.lex_state = 74, .external_lex_state = 3}, + [1780] = {.lex_state = 74, .external_lex_state = 4}, + [1781] = {.lex_state = 74, .external_lex_state = 4}, + [1782] = {.lex_state = 74, .external_lex_state = 4}, + [1783] = {.lex_state = 75, .external_lex_state = 5}, + [1784] = {.lex_state = 75, .external_lex_state = 5}, + [1785] = {.lex_state = 74, .external_lex_state = 4}, + [1786] = {.lex_state = 74, .external_lex_state = 4}, + [1787] = {.lex_state = 74, .external_lex_state = 3}, + [1788] = {.lex_state = 74, .external_lex_state = 4}, + [1789] = {.lex_state = 74, .external_lex_state = 4}, + [1790] = {.lex_state = 74, .external_lex_state = 4}, + [1791] = {.lex_state = 74, .external_lex_state = 4}, + [1792] = {.lex_state = 75, .external_lex_state = 5}, + [1793] = {.lex_state = 74, .external_lex_state = 3}, + [1794] = {.lex_state = 74, .external_lex_state = 3}, + [1795] = {.lex_state = 74, .external_lex_state = 4}, + [1796] = {.lex_state = 74, .external_lex_state = 4}, + [1797] = {.lex_state = 74, .external_lex_state = 3}, + [1798] = {.lex_state = 74, .external_lex_state = 4}, + [1799] = {.lex_state = 74, .external_lex_state = 3}, + [1800] = {.lex_state = 74, .external_lex_state = 4}, + [1801] = {.lex_state = 74, .external_lex_state = 4}, + [1802] = {.lex_state = 74, .external_lex_state = 4}, + [1803] = {.lex_state = 74, .external_lex_state = 4}, + [1804] = {.lex_state = 74, .external_lex_state = 4}, + [1805] = {.lex_state = 74, .external_lex_state = 4}, + [1806] = {.lex_state = 74, .external_lex_state = 4}, + [1807] = {.lex_state = 74, .external_lex_state = 4}, + [1808] = {.lex_state = 74, .external_lex_state = 4}, + [1809] = {.lex_state = 74, .external_lex_state = 4}, + [1810] = {.lex_state = 74, .external_lex_state = 4}, + [1811] = {.lex_state = 74, .external_lex_state = 4}, + [1812] = {.lex_state = 74, .external_lex_state = 4}, + [1813] = {.lex_state = 74, .external_lex_state = 3}, + [1814] = {.lex_state = 74, .external_lex_state = 4}, + [1815] = {.lex_state = 74, .external_lex_state = 4}, + [1816] = {.lex_state = 74, .external_lex_state = 3}, + [1817] = {.lex_state = 74, .external_lex_state = 4}, + [1818] = {.lex_state = 74, .external_lex_state = 4}, + [1819] = {.lex_state = 74, .external_lex_state = 4}, + [1820] = {.lex_state = 74, .external_lex_state = 4}, + [1821] = {.lex_state = 74, .external_lex_state = 4}, + [1822] = {.lex_state = 74, .external_lex_state = 4}, + [1823] = {.lex_state = 74, .external_lex_state = 4}, + [1824] = {.lex_state = 75, .external_lex_state = 5}, + [1825] = {.lex_state = 74, .external_lex_state = 3}, + [1826] = {.lex_state = 74, .external_lex_state = 4}, + [1827] = {.lex_state = 4, .external_lex_state = 3}, + [1828] = {.lex_state = 74, .external_lex_state = 4}, + [1829] = {.lex_state = 75, .external_lex_state = 5}, + [1830] = {.lex_state = 74, .external_lex_state = 4}, + [1831] = {.lex_state = 74, .external_lex_state = 4}, + [1832] = {.lex_state = 74, .external_lex_state = 3}, + [1833] = {.lex_state = 75, .external_lex_state = 5}, + [1834] = {.lex_state = 74, .external_lex_state = 4}, + [1835] = {.lex_state = 74, .external_lex_state = 4}, + [1836] = {.lex_state = 74, .external_lex_state = 4}, + [1837] = {.lex_state = 74, .external_lex_state = 4}, + [1838] = {.lex_state = 74, .external_lex_state = 4}, + [1839] = {.lex_state = 74, .external_lex_state = 4}, + [1840] = {.lex_state = 74, .external_lex_state = 4}, + [1841] = {.lex_state = 74, .external_lex_state = 4}, + [1842] = {.lex_state = 74, .external_lex_state = 4}, + [1843] = {.lex_state = 74, .external_lex_state = 4}, + [1844] = {.lex_state = 74, .external_lex_state = 4}, + [1845] = {.lex_state = 74, .external_lex_state = 4}, + [1846] = {.lex_state = 74, .external_lex_state = 4}, + [1847] = {.lex_state = 74, .external_lex_state = 4}, + [1848] = {.lex_state = 74, .external_lex_state = 4}, + [1849] = {.lex_state = 74, .external_lex_state = 4}, + [1850] = {.lex_state = 74, .external_lex_state = 4}, + [1851] = {.lex_state = 74, .external_lex_state = 4}, + [1852] = {.lex_state = 74, .external_lex_state = 4}, + [1853] = {.lex_state = 74, .external_lex_state = 4}, + [1854] = {.lex_state = 74, .external_lex_state = 4}, + [1855] = {.lex_state = 74, .external_lex_state = 4}, + [1856] = {.lex_state = 74, .external_lex_state = 4}, + [1857] = {.lex_state = 74, .external_lex_state = 4}, + [1858] = {.lex_state = 74, .external_lex_state = 4}, + [1859] = {.lex_state = 74, .external_lex_state = 4}, + [1860] = {.lex_state = 74, .external_lex_state = 4}, + [1861] = {.lex_state = 74, .external_lex_state = 4}, + [1862] = {.lex_state = 74, .external_lex_state = 4}, + [1863] = {.lex_state = 74, .external_lex_state = 4}, + [1864] = {.lex_state = 74, .external_lex_state = 3}, + [1865] = {.lex_state = 74, .external_lex_state = 4}, + [1866] = {.lex_state = 74, .external_lex_state = 4}, + [1867] = {.lex_state = 74, .external_lex_state = 3}, + [1868] = {.lex_state = 74, .external_lex_state = 4}, + [1869] = {.lex_state = 75, .external_lex_state = 5}, + [1870] = {.lex_state = 75, .external_lex_state = 5}, + [1871] = {.lex_state = 74, .external_lex_state = 4}, + [1872] = {.lex_state = 74, .external_lex_state = 4}, + [1873] = {.lex_state = 74, .external_lex_state = 4}, + [1874] = {.lex_state = 74, .external_lex_state = 4}, + [1875] = {.lex_state = 74, .external_lex_state = 4}, + [1876] = {.lex_state = 74, .external_lex_state = 4}, + [1877] = {.lex_state = 75, .external_lex_state = 2}, + [1878] = {.lex_state = 74, .external_lex_state = 4}, + [1879] = {.lex_state = 74, .external_lex_state = 4}, + [1880] = {.lex_state = 74, .external_lex_state = 4}, + [1881] = {.lex_state = 74, .external_lex_state = 4}, + [1882] = {.lex_state = 74, .external_lex_state = 4}, + [1883] = {.lex_state = 74, .external_lex_state = 4}, + [1884] = {.lex_state = 74, .external_lex_state = 4}, + [1885] = {.lex_state = 74, .external_lex_state = 4}, + [1886] = {.lex_state = 74, .external_lex_state = 3}, + [1887] = {.lex_state = 74, .external_lex_state = 3}, + [1888] = {.lex_state = 74, .external_lex_state = 3}, + [1889] = {.lex_state = 75, .external_lex_state = 2}, + [1890] = {.lex_state = 74, .external_lex_state = 3}, + [1891] = {.lex_state = 74, .external_lex_state = 3}, + [1892] = {.lex_state = 75, .external_lex_state = 5}, + [1893] = {.lex_state = 74, .external_lex_state = 4}, + [1894] = {.lex_state = 74, .external_lex_state = 4}, + [1895] = {.lex_state = 74, .external_lex_state = 3}, + [1896] = {.lex_state = 74, .external_lex_state = 3}, + [1897] = {.lex_state = 74, .external_lex_state = 3}, + [1898] = {.lex_state = 74, .external_lex_state = 3}, + [1899] = {.lex_state = 74, .external_lex_state = 3}, + [1900] = {.lex_state = 74, .external_lex_state = 3}, + [1901] = {.lex_state = 74, .external_lex_state = 3}, + [1902] = {.lex_state = 74, .external_lex_state = 4}, + [1903] = {.lex_state = 74, .external_lex_state = 3}, + [1904] = {.lex_state = 74, .external_lex_state = 3}, + [1905] = {.lex_state = 74, .external_lex_state = 4}, + [1906] = {.lex_state = 74, .external_lex_state = 3}, + [1907] = {.lex_state = 74, .external_lex_state = 3}, + [1908] = {.lex_state = 74, .external_lex_state = 3}, + [1909] = {.lex_state = 74, .external_lex_state = 4}, + [1910] = {.lex_state = 74, .external_lex_state = 4}, + [1911] = {.lex_state = 74, .external_lex_state = 4}, + [1912] = {.lex_state = 74, .external_lex_state = 4}, + [1913] = {.lex_state = 74, .external_lex_state = 3}, + [1914] = {.lex_state = 74, .external_lex_state = 3}, + [1915] = {.lex_state = 74, .external_lex_state = 4}, + [1916] = {.lex_state = 74, .external_lex_state = 4}, + [1917] = {.lex_state = 75, .external_lex_state = 2}, + [1918] = {.lex_state = 74, .external_lex_state = 4}, + [1919] = {.lex_state = 74, .external_lex_state = 3}, + [1920] = {.lex_state = 74, .external_lex_state = 4}, + [1921] = {.lex_state = 74, .external_lex_state = 4}, + [1922] = {.lex_state = 74, .external_lex_state = 3}, + [1923] = {.lex_state = 74, .external_lex_state = 3}, + [1924] = {.lex_state = 74, .external_lex_state = 3}, + [1925] = {.lex_state = 74, .external_lex_state = 4}, + [1926] = {.lex_state = 74, .external_lex_state = 4}, + [1927] = {.lex_state = 74, .external_lex_state = 3}, + [1928] = {.lex_state = 74, .external_lex_state = 4}, + [1929] = {.lex_state = 75, .external_lex_state = 5}, + [1930] = {.lex_state = 74, .external_lex_state = 3}, + [1931] = {.lex_state = 74, .external_lex_state = 4}, + [1932] = {.lex_state = 74, .external_lex_state = 3}, + [1933] = {.lex_state = 75, .external_lex_state = 5}, + [1934] = {.lex_state = 74, .external_lex_state = 3}, + [1935] = {.lex_state = 74, .external_lex_state = 4}, + [1936] = {.lex_state = 74, .external_lex_state = 3}, + [1937] = {.lex_state = 74, .external_lex_state = 4}, + [1938] = {.lex_state = 74, .external_lex_state = 4}, + [1939] = {.lex_state = 74, .external_lex_state = 4}, + [1940] = {.lex_state = 74, .external_lex_state = 4}, + [1941] = {.lex_state = 74, .external_lex_state = 4}, + [1942] = {.lex_state = 74, .external_lex_state = 4}, + [1943] = {.lex_state = 74, .external_lex_state = 4}, + [1944] = {.lex_state = 74, .external_lex_state = 4}, + [1945] = {.lex_state = 74, .external_lex_state = 4}, + [1946] = {.lex_state = 74, .external_lex_state = 3}, + [1947] = {.lex_state = 75, .external_lex_state = 2}, + [1948] = {.lex_state = 74, .external_lex_state = 4}, + [1949] = {.lex_state = 74, .external_lex_state = 3}, + [1950] = {.lex_state = 74, .external_lex_state = 3}, + [1951] = {.lex_state = 74, .external_lex_state = 4}, + [1952] = {.lex_state = 74, .external_lex_state = 4}, + [1953] = {.lex_state = 75, .external_lex_state = 2}, + [1954] = {.lex_state = 74, .external_lex_state = 3}, + [1955] = {.lex_state = 74, .external_lex_state = 3}, + [1956] = {.lex_state = 74, .external_lex_state = 4}, + [1957] = {.lex_state = 74, .external_lex_state = 4}, + [1958] = {.lex_state = 74, .external_lex_state = 4}, + [1959] = {.lex_state = 74, .external_lex_state = 3}, + [1960] = {.lex_state = 74, .external_lex_state = 3}, + [1961] = {.lex_state = 74, .external_lex_state = 4}, + [1962] = {.lex_state = 75, .external_lex_state = 2}, + [1963] = {.lex_state = 74, .external_lex_state = 4}, + [1964] = {.lex_state = 74, .external_lex_state = 4}, + [1965] = {.lex_state = 74, .external_lex_state = 4}, + [1966] = {.lex_state = 74, .external_lex_state = 4}, + [1967] = {.lex_state = 74, .external_lex_state = 4}, + [1968] = {.lex_state = 75, .external_lex_state = 5}, + [1969] = {.lex_state = 75, .external_lex_state = 5}, + [1970] = {.lex_state = 74, .external_lex_state = 4}, + [1971] = {.lex_state = 75, .external_lex_state = 5}, + [1972] = {.lex_state = 75, .external_lex_state = 5}, + [1973] = {.lex_state = 74, .external_lex_state = 4}, + [1974] = {.lex_state = 74, .external_lex_state = 4}, + [1975] = {.lex_state = 74, .external_lex_state = 4}, + [1976] = {.lex_state = 74, .external_lex_state = 3}, + [1977] = {.lex_state = 74, .external_lex_state = 4}, + [1978] = {.lex_state = 74, .external_lex_state = 4}, + [1979] = {.lex_state = 74, .external_lex_state = 4}, + [1980] = {.lex_state = 74, .external_lex_state = 4}, + [1981] = {.lex_state = 74, .external_lex_state = 4}, + [1982] = {.lex_state = 74, .external_lex_state = 4}, + [1983] = {.lex_state = 74, .external_lex_state = 4}, + [1984] = {.lex_state = 74, .external_lex_state = 4}, + [1985] = {.lex_state = 74, .external_lex_state = 4}, + [1986] = {.lex_state = 74, .external_lex_state = 4}, + [1987] = {.lex_state = 74, .external_lex_state = 4}, + [1988] = {.lex_state = 74, .external_lex_state = 4}, + [1989] = {.lex_state = 74, .external_lex_state = 4}, + [1990] = {.lex_state = 74, .external_lex_state = 4}, + [1991] = {.lex_state = 74, .external_lex_state = 4}, + [1992] = {.lex_state = 74, .external_lex_state = 4}, + [1993] = {.lex_state = 74, .external_lex_state = 4}, + [1994] = {.lex_state = 74, .external_lex_state = 4}, + [1995] = {.lex_state = 74, .external_lex_state = 4}, + [1996] = {.lex_state = 74, .external_lex_state = 4}, + [1997] = {.lex_state = 74, .external_lex_state = 4}, + [1998] = {.lex_state = 74, .external_lex_state = 4}, + [1999] = {.lex_state = 74, .external_lex_state = 4}, + [2000] = {.lex_state = 74, .external_lex_state = 4}, + [2001] = {.lex_state = 74, .external_lex_state = 4}, + [2002] = {.lex_state = 74, .external_lex_state = 3}, + [2003] = {.lex_state = 74, .external_lex_state = 3}, + [2004] = {.lex_state = 74, .external_lex_state = 4}, + [2005] = {.lex_state = 74, .external_lex_state = 4}, + [2006] = {.lex_state = 74, .external_lex_state = 4}, + [2007] = {.lex_state = 74, .external_lex_state = 4}, + [2008] = {.lex_state = 74, .external_lex_state = 4}, + [2009] = {.lex_state = 74, .external_lex_state = 4}, + [2010] = {.lex_state = 74, .external_lex_state = 4}, + [2011] = {.lex_state = 74, .external_lex_state = 4}, + [2012] = {.lex_state = 74, .external_lex_state = 4}, + [2013] = {.lex_state = 74, .external_lex_state = 4}, + [2014] = {.lex_state = 75, .external_lex_state = 5}, + [2015] = {.lex_state = 74, .external_lex_state = 4}, + [2016] = {.lex_state = 74, .external_lex_state = 4}, + [2017] = {.lex_state = 74, .external_lex_state = 4}, + [2018] = {.lex_state = 74, .external_lex_state = 4}, + [2019] = {.lex_state = 74, .external_lex_state = 4}, + [2020] = {.lex_state = 74, .external_lex_state = 3}, + [2021] = {.lex_state = 74, .external_lex_state = 4}, + [2022] = {.lex_state = 74, .external_lex_state = 4}, + [2023] = {.lex_state = 74, .external_lex_state = 4}, + [2024] = {.lex_state = 74, .external_lex_state = 4}, + [2025] = {.lex_state = 74, .external_lex_state = 3}, + [2026] = {.lex_state = 74, .external_lex_state = 4}, + [2027] = {.lex_state = 74, .external_lex_state = 3}, + [2028] = {.lex_state = 75, .external_lex_state = 2}, + [2029] = {.lex_state = 74, .external_lex_state = 4}, + [2030] = {.lex_state = 74, .external_lex_state = 4}, + [2031] = {.lex_state = 74, .external_lex_state = 4}, + [2032] = {.lex_state = 74, .external_lex_state = 4}, + [2033] = {.lex_state = 74, .external_lex_state = 4}, + [2034] = {.lex_state = 74, .external_lex_state = 3}, + [2035] = {.lex_state = 74, .external_lex_state = 3}, + [2036] = {.lex_state = 74, .external_lex_state = 4}, + [2037] = {.lex_state = 74, .external_lex_state = 4}, + [2038] = {.lex_state = 74, .external_lex_state = 4}, + [2039] = {.lex_state = 74, .external_lex_state = 4}, + [2040] = {.lex_state = 74, .external_lex_state = 4}, + [2041] = {.lex_state = 74, .external_lex_state = 3}, + [2042] = {.lex_state = 74, .external_lex_state = 4}, + [2043] = {.lex_state = 74, .external_lex_state = 4}, + [2044] = {.lex_state = 74, .external_lex_state = 4}, + [2045] = {.lex_state = 74, .external_lex_state = 4}, + [2046] = {.lex_state = 74, .external_lex_state = 4}, + [2047] = {.lex_state = 74, .external_lex_state = 4}, + [2048] = {.lex_state = 74, .external_lex_state = 4}, + [2049] = {.lex_state = 74, .external_lex_state = 4}, + [2050] = {.lex_state = 74, .external_lex_state = 4}, + [2051] = {.lex_state = 74, .external_lex_state = 4}, + [2052] = {.lex_state = 74, .external_lex_state = 4}, + [2053] = {.lex_state = 74, .external_lex_state = 4}, + [2054] = {.lex_state = 74, .external_lex_state = 4}, + [2055] = {.lex_state = 74, .external_lex_state = 4}, + [2056] = {.lex_state = 74, .external_lex_state = 4}, + [2057] = {.lex_state = 74, .external_lex_state = 4}, + [2058] = {.lex_state = 74, .external_lex_state = 4}, + [2059] = {.lex_state = 74, .external_lex_state = 4}, + [2060] = {.lex_state = 74, .external_lex_state = 4}, + [2061] = {.lex_state = 74, .external_lex_state = 4}, + [2062] = {.lex_state = 74, .external_lex_state = 4}, + [2063] = {.lex_state = 74, .external_lex_state = 4}, + [2064] = {.lex_state = 74, .external_lex_state = 4}, + [2065] = {.lex_state = 75, .external_lex_state = 5}, + [2066] = {.lex_state = 75, .external_lex_state = 5}, + [2067] = {.lex_state = 74, .external_lex_state = 4}, + [2068] = {.lex_state = 75, .external_lex_state = 5}, + [2069] = {.lex_state = 74, .external_lex_state = 4}, + [2070] = {.lex_state = 75, .external_lex_state = 5}, + [2071] = {.lex_state = 75, .external_lex_state = 5}, + [2072] = {.lex_state = 74, .external_lex_state = 4}, + [2073] = {.lex_state = 74, .external_lex_state = 4}, + [2074] = {.lex_state = 74, .external_lex_state = 4}, + [2075] = {.lex_state = 75, .external_lex_state = 2}, + [2076] = {.lex_state = 74, .external_lex_state = 4}, + [2077] = {.lex_state = 74, .external_lex_state = 4}, + [2078] = {.lex_state = 74, .external_lex_state = 4}, + [2079] = {.lex_state = 74, .external_lex_state = 4}, + [2080] = {.lex_state = 74, .external_lex_state = 3}, + [2081] = {.lex_state = 74, .external_lex_state = 3}, + [2082] = {.lex_state = 74, .external_lex_state = 3}, + [2083] = {.lex_state = 74, .external_lex_state = 3}, + [2084] = {.lex_state = 74, .external_lex_state = 3}, + [2085] = {.lex_state = 74, .external_lex_state = 3}, + [2086] = {.lex_state = 74, .external_lex_state = 3}, + [2087] = {.lex_state = 74, .external_lex_state = 3}, + [2088] = {.lex_state = 74, .external_lex_state = 3}, + [2089] = {.lex_state = 74, .external_lex_state = 3}, + [2090] = {.lex_state = 74, .external_lex_state = 3}, + [2091] = {.lex_state = 74, .external_lex_state = 3}, + [2092] = {.lex_state = 74, .external_lex_state = 3}, + [2093] = {.lex_state = 74, .external_lex_state = 3}, + [2094] = {.lex_state = 74, .external_lex_state = 3}, + [2095] = {.lex_state = 74, .external_lex_state = 3}, + [2096] = {.lex_state = 74, .external_lex_state = 3}, + [2097] = {.lex_state = 74, .external_lex_state = 3}, + [2098] = {.lex_state = 74, .external_lex_state = 3}, + [2099] = {.lex_state = 74, .external_lex_state = 3}, + [2100] = {.lex_state = 74, .external_lex_state = 3}, + [2101] = {.lex_state = 74, .external_lex_state = 3}, + [2102] = {.lex_state = 74, .external_lex_state = 3}, + [2103] = {.lex_state = 74, .external_lex_state = 3}, + [2104] = {.lex_state = 74, .external_lex_state = 3}, + [2105] = {.lex_state = 74, .external_lex_state = 3}, + [2106] = {.lex_state = 74, .external_lex_state = 3}, + [2107] = {.lex_state = 74, .external_lex_state = 3}, + [2108] = {.lex_state = 74, .external_lex_state = 3}, + [2109] = {.lex_state = 74, .external_lex_state = 3}, + [2110] = {.lex_state = 74, .external_lex_state = 4}, + [2111] = {.lex_state = 75, .external_lex_state = 5}, + [2112] = {.lex_state = 74, .external_lex_state = 3}, + [2113] = {.lex_state = 74, .external_lex_state = 3}, + [2114] = {.lex_state = 75, .external_lex_state = 5}, + [2115] = {.lex_state = 74, .external_lex_state = 4}, + [2116] = {.lex_state = 74, .external_lex_state = 4}, + [2117] = {.lex_state = 75, .external_lex_state = 5}, + [2118] = {.lex_state = 75, .external_lex_state = 5}, + [2119] = {.lex_state = 75, .external_lex_state = 5}, + [2120] = {.lex_state = 75, .external_lex_state = 5}, + [2121] = {.lex_state = 74, .external_lex_state = 3}, + [2122] = {.lex_state = 75, .external_lex_state = 5}, + [2123] = {.lex_state = 75, .external_lex_state = 5}, + [2124] = {.lex_state = 74, .external_lex_state = 3}, + [2125] = {.lex_state = 74, .external_lex_state = 3}, + [2126] = {.lex_state = 74, .external_lex_state = 3}, + [2127] = {.lex_state = 74, .external_lex_state = 3}, + [2128] = {.lex_state = 74, .external_lex_state = 3}, + [2129] = {.lex_state = 74, .external_lex_state = 3}, + [2130] = {.lex_state = 74, .external_lex_state = 4}, + [2131] = {.lex_state = 74, .external_lex_state = 4}, + [2132] = {.lex_state = 74, .external_lex_state = 4}, + [2133] = {.lex_state = 74, .external_lex_state = 4}, + [2134] = {.lex_state = 74, .external_lex_state = 4}, + [2135] = {.lex_state = 74, .external_lex_state = 3}, + [2136] = {.lex_state = 74, .external_lex_state = 4}, + [2137] = {.lex_state = 75, .external_lex_state = 5}, + [2138] = {.lex_state = 75, .external_lex_state = 5}, + [2139] = {.lex_state = 74, .external_lex_state = 4}, + [2140] = {.lex_state = 74, .external_lex_state = 4}, + [2141] = {.lex_state = 74, .external_lex_state = 4}, + [2142] = {.lex_state = 74, .external_lex_state = 3}, + [2143] = {.lex_state = 74, .external_lex_state = 4}, + [2144] = {.lex_state = 74, .external_lex_state = 3}, + [2145] = {.lex_state = 74, .external_lex_state = 4}, + [2146] = {.lex_state = 74, .external_lex_state = 4}, + [2147] = {.lex_state = 74, .external_lex_state = 4}, + [2148] = {.lex_state = 74, .external_lex_state = 4}, + [2149] = {.lex_state = 74, .external_lex_state = 4}, + [2150] = {.lex_state = 74, .external_lex_state = 4}, + [2151] = {.lex_state = 74, .external_lex_state = 4}, + [2152] = {.lex_state = 74, .external_lex_state = 4}, + [2153] = {.lex_state = 74, .external_lex_state = 4}, + [2154] = {.lex_state = 74, .external_lex_state = 4}, + [2155] = {.lex_state = 74, .external_lex_state = 4}, + [2156] = {.lex_state = 74, .external_lex_state = 4}, + [2157] = {.lex_state = 75, .external_lex_state = 5}, + [2158] = {.lex_state = 74, .external_lex_state = 4}, + [2159] = {.lex_state = 74, .external_lex_state = 4}, + [2160] = {.lex_state = 74, .external_lex_state = 4}, + [2161] = {.lex_state = 74, .external_lex_state = 4}, + [2162] = {.lex_state = 74, .external_lex_state = 4}, + [2163] = {.lex_state = 74, .external_lex_state = 4}, + [2164] = {.lex_state = 74, .external_lex_state = 4}, + [2165] = {.lex_state = 74, .external_lex_state = 4}, + [2166] = {.lex_state = 74, .external_lex_state = 3}, + [2167] = {.lex_state = 74, .external_lex_state = 4}, + [2168] = {.lex_state = 74, .external_lex_state = 4}, + [2169] = {.lex_state = 75, .external_lex_state = 2}, + [2170] = {.lex_state = 74, .external_lex_state = 4}, + [2171] = {.lex_state = 75, .external_lex_state = 5}, + [2172] = {.lex_state = 75, .external_lex_state = 2}, + [2173] = {.lex_state = 74, .external_lex_state = 4}, + [2174] = {.lex_state = 74, .external_lex_state = 3}, + [2175] = {.lex_state = 74, .external_lex_state = 3}, + [2176] = {.lex_state = 74, .external_lex_state = 3}, + [2177] = {.lex_state = 75, .external_lex_state = 5}, + [2178] = {.lex_state = 75, .external_lex_state = 5}, + [2179] = {.lex_state = 75, .external_lex_state = 5}, + [2180] = {.lex_state = 74, .external_lex_state = 4}, + [2181] = {.lex_state = 74, .external_lex_state = 4}, + [2182] = {.lex_state = 74, .external_lex_state = 4}, + [2183] = {.lex_state = 74, .external_lex_state = 3}, + [2184] = {.lex_state = 74, .external_lex_state = 4}, + [2185] = {.lex_state = 74, .external_lex_state = 4}, + [2186] = {.lex_state = 74, .external_lex_state = 4}, + [2187] = {.lex_state = 74, .external_lex_state = 4}, + [2188] = {.lex_state = 74, .external_lex_state = 3}, + [2189] = {.lex_state = 74, .external_lex_state = 4}, + [2190] = {.lex_state = 74, .external_lex_state = 4}, + [2191] = {.lex_state = 74, .external_lex_state = 4}, + [2192] = {.lex_state = 74, .external_lex_state = 4}, + [2193] = {.lex_state = 74, .external_lex_state = 4}, + [2194] = {.lex_state = 74, .external_lex_state = 4}, + [2195] = {.lex_state = 74, .external_lex_state = 4}, + [2196] = {.lex_state = 75, .external_lex_state = 5}, + [2197] = {.lex_state = 74, .external_lex_state = 4}, + [2198] = {.lex_state = 74, .external_lex_state = 4}, + [2199] = {.lex_state = 74, .external_lex_state = 4}, + [2200] = {.lex_state = 74, .external_lex_state = 4}, + [2201] = {.lex_state = 74, .external_lex_state = 4}, + [2202] = {.lex_state = 74, .external_lex_state = 4}, + [2203] = {.lex_state = 75, .external_lex_state = 5}, + [2204] = {.lex_state = 74, .external_lex_state = 4}, + [2205] = {.lex_state = 75, .external_lex_state = 5}, + [2206] = {.lex_state = 74, .external_lex_state = 4}, + [2207] = {.lex_state = 74, .external_lex_state = 4}, + [2208] = {.lex_state = 74, .external_lex_state = 3}, + [2209] = {.lex_state = 4, .external_lex_state = 4}, + [2210] = {.lex_state = 74, .external_lex_state = 4}, + [2211] = {.lex_state = 74, .external_lex_state = 4}, + [2212] = {.lex_state = 74, .external_lex_state = 3}, + [2213] = {.lex_state = 74, .external_lex_state = 3}, + [2214] = {.lex_state = 75, .external_lex_state = 2}, + [2215] = {.lex_state = 75, .external_lex_state = 5}, + [2216] = {.lex_state = 75, .external_lex_state = 5}, + [2217] = {.lex_state = 75, .external_lex_state = 2}, + [2218] = {.lex_state = 75, .external_lex_state = 2}, + [2219] = {.lex_state = 74, .external_lex_state = 3}, + [2220] = {.lex_state = 74, .external_lex_state = 4}, + [2221] = {.lex_state = 4, .external_lex_state = 4}, + [2222] = {.lex_state = 74, .external_lex_state = 4}, + [2223] = {.lex_state = 75, .external_lex_state = 2}, + [2224] = {.lex_state = 74, .external_lex_state = 4}, + [2225] = {.lex_state = 74, .external_lex_state = 3}, + [2226] = {.lex_state = 74, .external_lex_state = 3}, + [2227] = {.lex_state = 74, .external_lex_state = 3}, + [2228] = {.lex_state = 74, .external_lex_state = 4}, + [2229] = {.lex_state = 74, .external_lex_state = 3}, + [2230] = {.lex_state = 74, .external_lex_state = 4}, + [2231] = {.lex_state = 74, .external_lex_state = 3}, + [2232] = {.lex_state = 74, .external_lex_state = 3}, + [2233] = {.lex_state = 74, .external_lex_state = 3}, + [2234] = {.lex_state = 74, .external_lex_state = 4}, + [2235] = {.lex_state = 75, .external_lex_state = 5}, + [2236] = {.lex_state = 74, .external_lex_state = 3}, + [2237] = {.lex_state = 74, .external_lex_state = 3}, + [2238] = {.lex_state = 74, .external_lex_state = 3}, + [2239] = {.lex_state = 74, .external_lex_state = 4}, + [2240] = {.lex_state = 74, .external_lex_state = 4}, + [2241] = {.lex_state = 74, .external_lex_state = 4}, + [2242] = {.lex_state = 74, .external_lex_state = 4}, + [2243] = {.lex_state = 74, .external_lex_state = 3}, + [2244] = {.lex_state = 75, .external_lex_state = 5}, + [2245] = {.lex_state = 74, .external_lex_state = 4}, + [2246] = {.lex_state = 74, .external_lex_state = 4}, + [2247] = {.lex_state = 74, .external_lex_state = 4}, + [2248] = {.lex_state = 75, .external_lex_state = 5}, + [2249] = {.lex_state = 74, .external_lex_state = 4}, + [2250] = {.lex_state = 74, .external_lex_state = 3}, + [2251] = {.lex_state = 74, .external_lex_state = 4}, + [2252] = {.lex_state = 75, .external_lex_state = 5}, + [2253] = {.lex_state = 75, .external_lex_state = 5}, + [2254] = {.lex_state = 74, .external_lex_state = 4}, + [2255] = {.lex_state = 74, .external_lex_state = 4}, + [2256] = {.lex_state = 74, .external_lex_state = 4}, + [2257] = {.lex_state = 75, .external_lex_state = 5}, + [2258] = {.lex_state = 74, .external_lex_state = 4}, + [2259] = {.lex_state = 74, .external_lex_state = 4}, + [2260] = {.lex_state = 74, .external_lex_state = 4}, + [2261] = {.lex_state = 74, .external_lex_state = 3}, + [2262] = {.lex_state = 74, .external_lex_state = 4}, + [2263] = {.lex_state = 75, .external_lex_state = 5}, + [2264] = {.lex_state = 74, .external_lex_state = 3}, + [2265] = {.lex_state = 74, .external_lex_state = 4}, + [2266] = {.lex_state = 74, .external_lex_state = 4}, + [2267] = {.lex_state = 74, .external_lex_state = 4}, + [2268] = {.lex_state = 75, .external_lex_state = 5}, + [2269] = {.lex_state = 74, .external_lex_state = 3}, + [2270] = {.lex_state = 75, .external_lex_state = 5}, + [2271] = {.lex_state = 74, .external_lex_state = 3}, + [2272] = {.lex_state = 74, .external_lex_state = 3}, + [2273] = {.lex_state = 74, .external_lex_state = 3}, + [2274] = {.lex_state = 75, .external_lex_state = 5}, + [2275] = {.lex_state = 74, .external_lex_state = 3}, + [2276] = {.lex_state = 75, .external_lex_state = 5}, + [2277] = {.lex_state = 74, .external_lex_state = 4}, + [2278] = {.lex_state = 74, .external_lex_state = 3}, + [2279] = {.lex_state = 74, .external_lex_state = 4}, + [2280] = {.lex_state = 74, .external_lex_state = 4}, + [2281] = {.lex_state = 74, .external_lex_state = 4}, + [2282] = {.lex_state = 74, .external_lex_state = 4}, + [2283] = {.lex_state = 74, .external_lex_state = 4}, + [2284] = {.lex_state = 74, .external_lex_state = 4}, + [2285] = {.lex_state = 74, .external_lex_state = 3}, + [2286] = {.lex_state = 74, .external_lex_state = 4}, + [2287] = {.lex_state = 74, .external_lex_state = 3}, + [2288] = {.lex_state = 74, .external_lex_state = 3}, + [2289] = {.lex_state = 74, .external_lex_state = 3}, + [2290] = {.lex_state = 74, .external_lex_state = 3}, + [2291] = {.lex_state = 74, .external_lex_state = 3}, + [2292] = {.lex_state = 74, .external_lex_state = 3}, + [2293] = {.lex_state = 74, .external_lex_state = 3}, + [2294] = {.lex_state = 74, .external_lex_state = 3}, + [2295] = {.lex_state = 74, .external_lex_state = 3}, + [2296] = {.lex_state = 74, .external_lex_state = 3}, + [2297] = {.lex_state = 75, .external_lex_state = 5}, + [2298] = {.lex_state = 75, .external_lex_state = 5}, + [2299] = {.lex_state = 74, .external_lex_state = 3}, + [2300] = {.lex_state = 75, .external_lex_state = 5}, + [2301] = {.lex_state = 74, .external_lex_state = 3}, + [2302] = {.lex_state = 74, .external_lex_state = 4}, + [2303] = {.lex_state = 75, .external_lex_state = 5}, + [2304] = {.lex_state = 74, .external_lex_state = 4}, + [2305] = {.lex_state = 74, .external_lex_state = 3}, + [2306] = {.lex_state = 75, .external_lex_state = 5}, + [2307] = {.lex_state = 75, .external_lex_state = 5}, + [2308] = {.lex_state = 74, .external_lex_state = 3}, + [2309] = {.lex_state = 74, .external_lex_state = 4}, + [2310] = {.lex_state = 74, .external_lex_state = 4}, + [2311] = {.lex_state = 74, .external_lex_state = 3}, + [2312] = {.lex_state = 74, .external_lex_state = 3}, + [2313] = {.lex_state = 75, .external_lex_state = 5}, + [2314] = {.lex_state = 74, .external_lex_state = 3}, + [2315] = {.lex_state = 75, .external_lex_state = 2}, + [2316] = {.lex_state = 74, .external_lex_state = 3}, + [2317] = {.lex_state = 74, .external_lex_state = 4}, + [2318] = {.lex_state = 74, .external_lex_state = 4}, + [2319] = {.lex_state = 74, .external_lex_state = 4}, + [2320] = {.lex_state = 74, .external_lex_state = 4}, + [2321] = {.lex_state = 75, .external_lex_state = 2}, + [2322] = {.lex_state = 75, .external_lex_state = 2}, + [2323] = {.lex_state = 74, .external_lex_state = 4}, + [2324] = {.lex_state = 74, .external_lex_state = 4}, + [2325] = {.lex_state = 74, .external_lex_state = 4}, + [2326] = {.lex_state = 74, .external_lex_state = 4}, + [2327] = {.lex_state = 74, .external_lex_state = 4}, + [2328] = {.lex_state = 74, .external_lex_state = 3}, + [2329] = {.lex_state = 74, .external_lex_state = 3}, + [2330] = {.lex_state = 74, .external_lex_state = 3}, + [2331] = {.lex_state = 74, .external_lex_state = 3}, + [2332] = {.lex_state = 75, .external_lex_state = 2}, + [2333] = {.lex_state = 74, .external_lex_state = 4}, + [2334] = {.lex_state = 75, .external_lex_state = 2}, + [2335] = {.lex_state = 75, .external_lex_state = 5}, + [2336] = {.lex_state = 74, .external_lex_state = 3}, + [2337] = {.lex_state = 74, .external_lex_state = 3}, + [2338] = {.lex_state = 74, .external_lex_state = 3}, + [2339] = {.lex_state = 74, .external_lex_state = 3}, + [2340] = {.lex_state = 75, .external_lex_state = 5}, + [2341] = {.lex_state = 74, .external_lex_state = 3}, + [2342] = {.lex_state = 74, .external_lex_state = 4}, + [2343] = {.lex_state = 75, .external_lex_state = 2}, + [2344] = {.lex_state = 75, .external_lex_state = 2}, + [2345] = {.lex_state = 74, .external_lex_state = 4}, + [2346] = {.lex_state = 75, .external_lex_state = 2}, + [2347] = {.lex_state = 75, .external_lex_state = 5}, + [2348] = {.lex_state = 75, .external_lex_state = 5}, + [2349] = {.lex_state = 74, .external_lex_state = 3}, + [2350] = {.lex_state = 74, .external_lex_state = 3}, + [2351] = {.lex_state = 74, .external_lex_state = 3}, + [2352] = {.lex_state = 75, .external_lex_state = 5}, + [2353] = {.lex_state = 74, .external_lex_state = 4}, + [2354] = {.lex_state = 75, .external_lex_state = 5}, + [2355] = {.lex_state = 75, .external_lex_state = 5}, + [2356] = {.lex_state = 74, .external_lex_state = 4}, + [2357] = {.lex_state = 75, .external_lex_state = 5}, + [2358] = {.lex_state = 74, .external_lex_state = 4}, + [2359] = {.lex_state = 74, .external_lex_state = 3}, + [2360] = {.lex_state = 74, .external_lex_state = 3}, + [2361] = {.lex_state = 74, .external_lex_state = 3}, + [2362] = {.lex_state = 74, .external_lex_state = 3}, + [2363] = {.lex_state = 74, .external_lex_state = 3}, + [2364] = {.lex_state = 74, .external_lex_state = 3}, + [2365] = {.lex_state = 74, .external_lex_state = 3}, + [2366] = {.lex_state = 74, .external_lex_state = 3}, + [2367] = {.lex_state = 74, .external_lex_state = 3}, + [2368] = {.lex_state = 74, .external_lex_state = 3}, + [2369] = {.lex_state = 74, .external_lex_state = 3}, + [2370] = {.lex_state = 74, .external_lex_state = 3}, + [2371] = {.lex_state = 74, .external_lex_state = 3}, + [2372] = {.lex_state = 74, .external_lex_state = 4}, + [2373] = {.lex_state = 74, .external_lex_state = 3}, + [2374] = {.lex_state = 75, .external_lex_state = 2}, + [2375] = {.lex_state = 75, .external_lex_state = 5}, + [2376] = {.lex_state = 74, .external_lex_state = 3}, + [2377] = {.lex_state = 74, .external_lex_state = 4}, + [2378] = {.lex_state = 75, .external_lex_state = 2}, + [2379] = {.lex_state = 75, .external_lex_state = 5}, + [2380] = {.lex_state = 75, .external_lex_state = 5}, + [2381] = {.lex_state = 74, .external_lex_state = 4}, + [2382] = {.lex_state = 74, .external_lex_state = 3}, + [2383] = {.lex_state = 75, .external_lex_state = 5}, + [2384] = {.lex_state = 75, .external_lex_state = 2}, + [2385] = {.lex_state = 4, .external_lex_state = 3}, + [2386] = {.lex_state = 74, .external_lex_state = 3}, + [2387] = {.lex_state = 74, .external_lex_state = 3}, + [2388] = {.lex_state = 74, .external_lex_state = 3}, + [2389] = {.lex_state = 74, .external_lex_state = 3}, + [2390] = {.lex_state = 74, .external_lex_state = 3}, + [2391] = {.lex_state = 74, .external_lex_state = 3}, + [2392] = {.lex_state = 74, .external_lex_state = 3}, + [2393] = {.lex_state = 74, .external_lex_state = 3}, + [2394] = {.lex_state = 74, .external_lex_state = 3}, + [2395] = {.lex_state = 74, .external_lex_state = 3}, + [2396] = {.lex_state = 74, .external_lex_state = 3}, + [2397] = {.lex_state = 75, .external_lex_state = 2}, + [2398] = {.lex_state = 75, .external_lex_state = 5}, + [2399] = {.lex_state = 74, .external_lex_state = 3}, + [2400] = {.lex_state = 74, .external_lex_state = 3}, + [2401] = {.lex_state = 75, .external_lex_state = 5}, + [2402] = {.lex_state = 74, .external_lex_state = 3}, + [2403] = {.lex_state = 74, .external_lex_state = 3}, + [2404] = {.lex_state = 74, .external_lex_state = 3}, + [2405] = {.lex_state = 74, .external_lex_state = 3}, + [2406] = {.lex_state = 74, .external_lex_state = 3}, + [2407] = {.lex_state = 74, .external_lex_state = 3}, + [2408] = {.lex_state = 74, .external_lex_state = 3}, + [2409] = {.lex_state = 74, .external_lex_state = 3}, + [2410] = {.lex_state = 74, .external_lex_state = 3}, + [2411] = {.lex_state = 74, .external_lex_state = 4}, + [2412] = {.lex_state = 74, .external_lex_state = 3}, + [2413] = {.lex_state = 74, .external_lex_state = 3}, + [2414] = {.lex_state = 74, .external_lex_state = 3}, + [2415] = {.lex_state = 74, .external_lex_state = 3}, + [2416] = {.lex_state = 74, .external_lex_state = 3}, + [2417] = {.lex_state = 74, .external_lex_state = 3}, + [2418] = {.lex_state = 74, .external_lex_state = 3}, + [2419] = {.lex_state = 74, .external_lex_state = 3}, + [2420] = {.lex_state = 74, .external_lex_state = 3}, + [2421] = {.lex_state = 74, .external_lex_state = 3}, + [2422] = {.lex_state = 74, .external_lex_state = 3}, + [2423] = {.lex_state = 74, .external_lex_state = 3}, + [2424] = {.lex_state = 74, .external_lex_state = 3}, + [2425] = {.lex_state = 74, .external_lex_state = 3}, + [2426] = {.lex_state = 74, .external_lex_state = 3}, + [2427] = {.lex_state = 74, .external_lex_state = 3}, + [2428] = {.lex_state = 75, .external_lex_state = 5}, + [2429] = {.lex_state = 75, .external_lex_state = 2}, + [2430] = {.lex_state = 74, .external_lex_state = 3}, + [2431] = {.lex_state = 75, .external_lex_state = 5}, + [2432] = {.lex_state = 74, .external_lex_state = 3}, + [2433] = {.lex_state = 74, .external_lex_state = 3}, + [2434] = {.lex_state = 75, .external_lex_state = 5}, + [2435] = {.lex_state = 74, .external_lex_state = 4}, + [2436] = {.lex_state = 74, .external_lex_state = 3}, + [2437] = {.lex_state = 75, .external_lex_state = 5}, + [2438] = {.lex_state = 75, .external_lex_state = 2}, + [2439] = {.lex_state = 74, .external_lex_state = 3}, + [2440] = {.lex_state = 75, .external_lex_state = 5}, + [2441] = {.lex_state = 74, .external_lex_state = 4}, + [2442] = {.lex_state = 74, .external_lex_state = 3}, + [2443] = {.lex_state = 75, .external_lex_state = 5}, + [2444] = {.lex_state = 75, .external_lex_state = 5}, + [2445] = {.lex_state = 75, .external_lex_state = 2}, + [2446] = {.lex_state = 74, .external_lex_state = 3}, + [2447] = {.lex_state = 74, .external_lex_state = 3}, + [2448] = {.lex_state = 74, .external_lex_state = 3}, + [2449] = {.lex_state = 74, .external_lex_state = 3}, + [2450] = {.lex_state = 74, .external_lex_state = 3}, + [2451] = {.lex_state = 75, .external_lex_state = 5}, + [2452] = {.lex_state = 75, .external_lex_state = 5}, + [2453] = {.lex_state = 74, .external_lex_state = 4}, + [2454] = {.lex_state = 74, .external_lex_state = 4}, + [2455] = {.lex_state = 75, .external_lex_state = 5}, + [2456] = {.lex_state = 74, .external_lex_state = 3}, + [2457] = {.lex_state = 75, .external_lex_state = 2}, + [2458] = {.lex_state = 74, .external_lex_state = 3}, + [2459] = {.lex_state = 75, .external_lex_state = 5}, + [2460] = {.lex_state = 74, .external_lex_state = 3}, + [2461] = {.lex_state = 75, .external_lex_state = 5}, + [2462] = {.lex_state = 74, .external_lex_state = 3}, + [2463] = {.lex_state = 75, .external_lex_state = 5}, + [2464] = {.lex_state = 74, .external_lex_state = 3}, + [2465] = {.lex_state = 74, .external_lex_state = 3}, + [2466] = {.lex_state = 75, .external_lex_state = 5}, + [2467] = {.lex_state = 74, .external_lex_state = 3}, + [2468] = {.lex_state = 74, .external_lex_state = 3}, + [2469] = {.lex_state = 74, .external_lex_state = 3}, + [2470] = {.lex_state = 74, .external_lex_state = 3}, + [2471] = {.lex_state = 74, .external_lex_state = 3}, + [2472] = {.lex_state = 74, .external_lex_state = 3}, + [2473] = {.lex_state = 75, .external_lex_state = 2}, + [2474] = {.lex_state = 74, .external_lex_state = 3}, + [2475] = {.lex_state = 75, .external_lex_state = 5}, + [2476] = {.lex_state = 74, .external_lex_state = 4}, + [2477] = {.lex_state = 74, .external_lex_state = 4}, + [2478] = {.lex_state = 75, .external_lex_state = 2}, + [2479] = {.lex_state = 74, .external_lex_state = 3}, + [2480] = {.lex_state = 74, .external_lex_state = 4}, + [2481] = {.lex_state = 74, .external_lex_state = 3}, + [2482] = {.lex_state = 74, .external_lex_state = 3}, + [2483] = {.lex_state = 74, .external_lex_state = 3}, + [2484] = {.lex_state = 74, .external_lex_state = 3}, + [2485] = {.lex_state = 74, .external_lex_state = 3}, + [2486] = {.lex_state = 74, .external_lex_state = 3}, + [2487] = {.lex_state = 74, .external_lex_state = 3}, + [2488] = {.lex_state = 74, .external_lex_state = 3}, + [2489] = {.lex_state = 74, .external_lex_state = 3}, + [2490] = {.lex_state = 74, .external_lex_state = 3}, + [2491] = {.lex_state = 74, .external_lex_state = 3}, + [2492] = {.lex_state = 74, .external_lex_state = 3}, + [2493] = {.lex_state = 74, .external_lex_state = 3}, + [2494] = {.lex_state = 74, .external_lex_state = 3}, + [2495] = {.lex_state = 74, .external_lex_state = 3}, + [2496] = {.lex_state = 74, .external_lex_state = 3}, + [2497] = {.lex_state = 74, .external_lex_state = 3}, + [2498] = {.lex_state = 74, .external_lex_state = 3}, + [2499] = {.lex_state = 74, .external_lex_state = 3}, + [2500] = {.lex_state = 74, .external_lex_state = 3}, + [2501] = {.lex_state = 74, .external_lex_state = 3}, + [2502] = {.lex_state = 74, .external_lex_state = 3}, + [2503] = {.lex_state = 74, .external_lex_state = 3}, + [2504] = {.lex_state = 74, .external_lex_state = 3}, + [2505] = {.lex_state = 74, .external_lex_state = 3}, + [2506] = {.lex_state = 74, .external_lex_state = 3}, + [2507] = {.lex_state = 74, .external_lex_state = 3}, + [2508] = {.lex_state = 74, .external_lex_state = 3}, + [2509] = {.lex_state = 74, .external_lex_state = 3}, + [2510] = {.lex_state = 75, .external_lex_state = 5}, + [2511] = {.lex_state = 74, .external_lex_state = 3}, + [2512] = {.lex_state = 74, .external_lex_state = 3}, + [2513] = {.lex_state = 74, .external_lex_state = 4}, + [2514] = {.lex_state = 74, .external_lex_state = 3}, + [2515] = {.lex_state = 74, .external_lex_state = 3}, + [2516] = {.lex_state = 74, .external_lex_state = 3}, + [2517] = {.lex_state = 74, .external_lex_state = 3}, + [2518] = {.lex_state = 74, .external_lex_state = 3}, + [2519] = {.lex_state = 74, .external_lex_state = 3}, + [2520] = {.lex_state = 75, .external_lex_state = 5}, + [2521] = {.lex_state = 74, .external_lex_state = 3}, + [2522] = {.lex_state = 74, .external_lex_state = 3}, + [2523] = {.lex_state = 74, .external_lex_state = 3}, + [2524] = {.lex_state = 75, .external_lex_state = 5}, + [2525] = {.lex_state = 75, .external_lex_state = 2}, + [2526] = {.lex_state = 75, .external_lex_state = 5}, + [2527] = {.lex_state = 74, .external_lex_state = 3}, + [2528] = {.lex_state = 74, .external_lex_state = 3}, + [2529] = {.lex_state = 74, .external_lex_state = 3}, + [2530] = {.lex_state = 74, .external_lex_state = 3}, + [2531] = {.lex_state = 74, .external_lex_state = 3}, + [2532] = {.lex_state = 74, .external_lex_state = 3}, + [2533] = {.lex_state = 74, .external_lex_state = 3}, + [2534] = {.lex_state = 74, .external_lex_state = 3}, + [2535] = {.lex_state = 74, .external_lex_state = 3}, + [2536] = {.lex_state = 74, .external_lex_state = 3}, + [2537] = {.lex_state = 74, .external_lex_state = 3}, + [2538] = {.lex_state = 74, .external_lex_state = 3}, + [2539] = {.lex_state = 74, .external_lex_state = 3}, + [2540] = {.lex_state = 74, .external_lex_state = 3}, + [2541] = {.lex_state = 74, .external_lex_state = 3}, + [2542] = {.lex_state = 74, .external_lex_state = 3}, + [2543] = {.lex_state = 74, .external_lex_state = 3}, + [2544] = {.lex_state = 74, .external_lex_state = 3}, + [2545] = {.lex_state = 74, .external_lex_state = 3}, + [2546] = {.lex_state = 74, .external_lex_state = 3}, + [2547] = {.lex_state = 74, .external_lex_state = 3}, + [2548] = {.lex_state = 74, .external_lex_state = 3}, + [2549] = {.lex_state = 74, .external_lex_state = 3}, + [2550] = {.lex_state = 74, .external_lex_state = 3}, + [2551] = {.lex_state = 74, .external_lex_state = 3}, + [2552] = {.lex_state = 74, .external_lex_state = 3}, + [2553] = {.lex_state = 74, .external_lex_state = 3}, + [2554] = {.lex_state = 75, .external_lex_state = 5}, + [2555] = {.lex_state = 75, .external_lex_state = 5}, + [2556] = {.lex_state = 75, .external_lex_state = 2}, + [2557] = {.lex_state = 74, .external_lex_state = 3}, + [2558] = {.lex_state = 74, .external_lex_state = 3}, + [2559] = {.lex_state = 74, .external_lex_state = 3}, + [2560] = {.lex_state = 74, .external_lex_state = 3}, + [2561] = {.lex_state = 75, .external_lex_state = 2}, + [2562] = {.lex_state = 74, .external_lex_state = 3}, + [2563] = {.lex_state = 75, .external_lex_state = 2}, + [2564] = {.lex_state = 74, .external_lex_state = 3}, + [2565] = {.lex_state = 74, .external_lex_state = 3}, + [2566] = {.lex_state = 74, .external_lex_state = 3}, + [2567] = {.lex_state = 74, .external_lex_state = 3}, + [2568] = {.lex_state = 74, .external_lex_state = 3}, + [2569] = {.lex_state = 75, .external_lex_state = 2}, + [2570] = {.lex_state = 75, .external_lex_state = 2}, + [2571] = {.lex_state = 74, .external_lex_state = 3}, + [2572] = {.lex_state = 74, .external_lex_state = 3}, + [2573] = {.lex_state = 74, .external_lex_state = 3}, + [2574] = {.lex_state = 74, .external_lex_state = 3}, + [2575] = {.lex_state = 74, .external_lex_state = 3}, + [2576] = {.lex_state = 74, .external_lex_state = 3}, + [2577] = {.lex_state = 74, .external_lex_state = 3}, + [2578] = {.lex_state = 74, .external_lex_state = 3}, + [2579] = {.lex_state = 74, .external_lex_state = 3}, + [2580] = {.lex_state = 74, .external_lex_state = 3}, + [2581] = {.lex_state = 75, .external_lex_state = 2}, + [2582] = {.lex_state = 75, .external_lex_state = 2}, + [2583] = {.lex_state = 75, .external_lex_state = 5}, + [2584] = {.lex_state = 75, .external_lex_state = 5}, + [2585] = {.lex_state = 75, .external_lex_state = 5}, + [2586] = {.lex_state = 75, .external_lex_state = 5}, + [2587] = {.lex_state = 74, .external_lex_state = 3}, + [2588] = {.lex_state = 74, .external_lex_state = 3}, + [2589] = {.lex_state = 74, .external_lex_state = 3}, + [2590] = {.lex_state = 74, .external_lex_state = 3}, + [2591] = {.lex_state = 74, .external_lex_state = 3}, + [2592] = {.lex_state = 74, .external_lex_state = 3}, + [2593] = {.lex_state = 75, .external_lex_state = 5}, + [2594] = {.lex_state = 75, .external_lex_state = 5}, + [2595] = {.lex_state = 74, .external_lex_state = 3}, + [2596] = {.lex_state = 74, .external_lex_state = 3}, + [2597] = {.lex_state = 74, .external_lex_state = 3}, + [2598] = {.lex_state = 74, .external_lex_state = 3}, + [2599] = {.lex_state = 74, .external_lex_state = 4}, + [2600] = {.lex_state = 75, .external_lex_state = 5}, + [2601] = {.lex_state = 74, .external_lex_state = 3}, + [2602] = {.lex_state = 75, .external_lex_state = 5}, + [2603] = {.lex_state = 74, .external_lex_state = 3}, + [2604] = {.lex_state = 74, .external_lex_state = 3}, + [2605] = {.lex_state = 74, .external_lex_state = 3}, + [2606] = {.lex_state = 74, .external_lex_state = 3}, + [2607] = {.lex_state = 75, .external_lex_state = 5}, + [2608] = {.lex_state = 74, .external_lex_state = 3}, + [2609] = {.lex_state = 75, .external_lex_state = 2}, + [2610] = {.lex_state = 75, .external_lex_state = 2}, + [2611] = {.lex_state = 74, .external_lex_state = 3}, + [2612] = {.lex_state = 75, .external_lex_state = 5}, + [2613] = {.lex_state = 75, .external_lex_state = 2}, + [2614] = {.lex_state = 75, .external_lex_state = 2}, + [2615] = {.lex_state = 75, .external_lex_state = 2}, + [2616] = {.lex_state = 75, .external_lex_state = 2}, + [2617] = {.lex_state = 75, .external_lex_state = 2}, + [2618] = {.lex_state = 75, .external_lex_state = 2}, + [2619] = {.lex_state = 75, .external_lex_state = 5}, + [2620] = {.lex_state = 75, .external_lex_state = 2}, + [2621] = {.lex_state = 75, .external_lex_state = 2}, + [2622] = {.lex_state = 74, .external_lex_state = 3}, + [2623] = {.lex_state = 75, .external_lex_state = 2}, + [2624] = {.lex_state = 75, .external_lex_state = 5}, + [2625] = {.lex_state = 75, .external_lex_state = 5}, + [2626] = {.lex_state = 75, .external_lex_state = 2}, + [2627] = {.lex_state = 75, .external_lex_state = 2}, + [2628] = {.lex_state = 75, .external_lex_state = 2}, + [2629] = {.lex_state = 75, .external_lex_state = 2}, + [2630] = {.lex_state = 75, .external_lex_state = 2}, + [2631] = {.lex_state = 75, .external_lex_state = 5}, + [2632] = {.lex_state = 75, .external_lex_state = 5}, + [2633] = {.lex_state = 75, .external_lex_state = 5}, + [2634] = {.lex_state = 75, .external_lex_state = 5}, + [2635] = {.lex_state = 75, .external_lex_state = 5}, + [2636] = {.lex_state = 75, .external_lex_state = 5}, + [2637] = {.lex_state = 75, .external_lex_state = 5}, + [2638] = {.lex_state = 4, .external_lex_state = 3}, + [2639] = {.lex_state = 75, .external_lex_state = 5}, + [2640] = {.lex_state = 75, .external_lex_state = 5}, + [2641] = {.lex_state = 75, .external_lex_state = 5}, + [2642] = {.lex_state = 74, .external_lex_state = 3}, + [2643] = {.lex_state = 74, .external_lex_state = 3}, + [2644] = {.lex_state = 74, .external_lex_state = 3}, + [2645] = {.lex_state = 75, .external_lex_state = 5}, + [2646] = {.lex_state = 74, .external_lex_state = 3}, + [2647] = {.lex_state = 75, .external_lex_state = 5}, + [2648] = {.lex_state = 9, .external_lex_state = 5}, + [2649] = {.lex_state = 9, .external_lex_state = 5}, + [2650] = {.lex_state = 9, .external_lex_state = 5}, + [2651] = {.lex_state = 9, .external_lex_state = 5}, + [2652] = {.lex_state = 74, .external_lex_state = 3}, + [2653] = {.lex_state = 9, .external_lex_state = 5}, + [2654] = {.lex_state = 9, .external_lex_state = 5}, + [2655] = {.lex_state = 9, .external_lex_state = 5}, + [2656] = {.lex_state = 9, .external_lex_state = 5}, + [2657] = {.lex_state = 9, .external_lex_state = 5}, + [2658] = {.lex_state = 9, .external_lex_state = 5}, + [2659] = {.lex_state = 9, .external_lex_state = 5}, + [2660] = {.lex_state = 9, .external_lex_state = 5}, + [2661] = {.lex_state = 9, .external_lex_state = 5}, + [2662] = {.lex_state = 9, .external_lex_state = 5}, + [2663] = {.lex_state = 9, .external_lex_state = 5}, + [2664] = {.lex_state = 9, .external_lex_state = 5}, + [2665] = {.lex_state = 9, .external_lex_state = 5}, + [2666] = {.lex_state = 9, .external_lex_state = 5}, + [2667] = {.lex_state = 74, .external_lex_state = 3}, + [2668] = {.lex_state = 9, .external_lex_state = 5}, + [2669] = {.lex_state = 9, .external_lex_state = 5}, + [2670] = {.lex_state = 9, .external_lex_state = 5}, + [2671] = {.lex_state = 9, .external_lex_state = 5}, + [2672] = {.lex_state = 9, .external_lex_state = 5}, + [2673] = {.lex_state = 9, .external_lex_state = 5}, + [2674] = {.lex_state = 9, .external_lex_state = 5}, + [2675] = {.lex_state = 74, .external_lex_state = 3}, + [2676] = {.lex_state = 74, .external_lex_state = 3}, + [2677] = {.lex_state = 74, .external_lex_state = 3}, + [2678] = {.lex_state = 9, .external_lex_state = 5}, + [2679] = {.lex_state = 9, .external_lex_state = 5}, + [2680] = {.lex_state = 9, .external_lex_state = 5}, + [2681] = {.lex_state = 9, .external_lex_state = 5}, + [2682] = {.lex_state = 74, .external_lex_state = 3}, + [2683] = {.lex_state = 75, .external_lex_state = 2}, + [2684] = {.lex_state = 9, .external_lex_state = 5}, + [2685] = {.lex_state = 9, .external_lex_state = 5}, + [2686] = {.lex_state = 74, .external_lex_state = 3}, + [2687] = {.lex_state = 9, .external_lex_state = 5}, + [2688] = {.lex_state = 9, .external_lex_state = 5}, + [2689] = {.lex_state = 74, .external_lex_state = 3}, + [2690] = {.lex_state = 9, .external_lex_state = 5}, + [2691] = {.lex_state = 9, .external_lex_state = 5}, + [2692] = {.lex_state = 9, .external_lex_state = 5}, + [2693] = {.lex_state = 9, .external_lex_state = 5}, + [2694] = {.lex_state = 74, .external_lex_state = 3}, + [2695] = {.lex_state = 9, .external_lex_state = 5}, + [2696] = {.lex_state = 9, .external_lex_state = 5}, + [2697] = {.lex_state = 9, .external_lex_state = 5}, + [2698] = {.lex_state = 9, .external_lex_state = 5}, + [2699] = {.lex_state = 9, .external_lex_state = 5}, + [2700] = {.lex_state = 9, .external_lex_state = 5}, + [2701] = {.lex_state = 9, .external_lex_state = 5}, + [2702] = {.lex_state = 9, .external_lex_state = 5}, + [2703] = {.lex_state = 9, .external_lex_state = 5}, + [2704] = {.lex_state = 9, .external_lex_state = 5}, + [2705] = {.lex_state = 9, .external_lex_state = 5}, + [2706] = {.lex_state = 74, .external_lex_state = 3}, + [2707] = {.lex_state = 9, .external_lex_state = 5}, + [2708] = {.lex_state = 9, .external_lex_state = 5}, + [2709] = {.lex_state = 74, .external_lex_state = 3}, + [2710] = {.lex_state = 9, .external_lex_state = 5}, + [2711] = {.lex_state = 75, .external_lex_state = 2}, + [2712] = {.lex_state = 9, .external_lex_state = 5}, + [2713] = {.lex_state = 75, .external_lex_state = 2}, + [2714] = {.lex_state = 75, .external_lex_state = 2}, + [2715] = {.lex_state = 9, .external_lex_state = 2}, + [2716] = {.lex_state = 9, .external_lex_state = 2}, + [2717] = {.lex_state = 9, .external_lex_state = 2}, + [2718] = {.lex_state = 9, .external_lex_state = 2}, + [2719] = {.lex_state = 74, .external_lex_state = 3}, + [2720] = {.lex_state = 9, .external_lex_state = 2}, + [2721] = {.lex_state = 9, .external_lex_state = 2}, + [2722] = {.lex_state = 75, .external_lex_state = 2}, + [2723] = {.lex_state = 9, .external_lex_state = 2}, + [2724] = {.lex_state = 75, .external_lex_state = 2}, + [2725] = {.lex_state = 75, .external_lex_state = 2}, + [2726] = {.lex_state = 75, .external_lex_state = 2}, + [2727] = {.lex_state = 75, .external_lex_state = 2}, + [2728] = {.lex_state = 75, .external_lex_state = 2}, + [2729] = {.lex_state = 75, .external_lex_state = 2}, + [2730] = {.lex_state = 75, .external_lex_state = 2}, + [2731] = {.lex_state = 75, .external_lex_state = 2}, + [2732] = {.lex_state = 75, .external_lex_state = 2}, + [2733] = {.lex_state = 75, .external_lex_state = 2}, + [2734] = {.lex_state = 75, .external_lex_state = 2}, + [2735] = {.lex_state = 75, .external_lex_state = 2}, + [2736] = {.lex_state = 75, .external_lex_state = 2}, + [2737] = {.lex_state = 75, .external_lex_state = 2}, + [2738] = {.lex_state = 75, .external_lex_state = 2}, + [2739] = {.lex_state = 75, .external_lex_state = 2}, + [2740] = {.lex_state = 75, .external_lex_state = 2}, + [2741] = {.lex_state = 75, .external_lex_state = 2}, + [2742] = {.lex_state = 75, .external_lex_state = 2}, + [2743] = {.lex_state = 75, .external_lex_state = 2}, + [2744] = {.lex_state = 75, .external_lex_state = 2}, + [2745] = {.lex_state = 75, .external_lex_state = 2}, + [2746] = {.lex_state = 75, .external_lex_state = 2}, + [2747] = {.lex_state = 75, .external_lex_state = 2}, + [2748] = {.lex_state = 75, .external_lex_state = 2}, + [2749] = {.lex_state = 75, .external_lex_state = 2}, + [2750] = {.lex_state = 75, .external_lex_state = 2}, + [2751] = {.lex_state = 75, .external_lex_state = 2}, + [2752] = {.lex_state = 75, .external_lex_state = 2}, + [2753] = {.lex_state = 75, .external_lex_state = 2}, + [2754] = {.lex_state = 75, .external_lex_state = 2}, + [2755] = {.lex_state = 75, .external_lex_state = 2}, + [2756] = {.lex_state = 75, .external_lex_state = 2}, + [2757] = {.lex_state = 75, .external_lex_state = 2}, + [2758] = {.lex_state = 75, .external_lex_state = 2}, + [2759] = {.lex_state = 75, .external_lex_state = 2}, + [2760] = {.lex_state = 75, .external_lex_state = 2}, + [2761] = {.lex_state = 75, .external_lex_state = 2}, + [2762] = {.lex_state = 75, .external_lex_state = 2}, + [2763] = {.lex_state = 75, .external_lex_state = 2}, + [2764] = {.lex_state = 75, .external_lex_state = 2}, + [2765] = {.lex_state = 75, .external_lex_state = 2}, + [2766] = {.lex_state = 75, .external_lex_state = 2}, + [2767] = {.lex_state = 75, .external_lex_state = 2}, + [2768] = {.lex_state = 75, .external_lex_state = 2}, + [2769] = {.lex_state = 75, .external_lex_state = 2}, + [2770] = {.lex_state = 75, .external_lex_state = 2}, + [2771] = {.lex_state = 75, .external_lex_state = 2}, + [2772] = {.lex_state = 75, .external_lex_state = 2}, + [2773] = {.lex_state = 75, .external_lex_state = 2}, + [2774] = {.lex_state = 75, .external_lex_state = 2}, + [2775] = {.lex_state = 75, .external_lex_state = 2}, + [2776] = {.lex_state = 75, .external_lex_state = 2}, + [2777] = {.lex_state = 75, .external_lex_state = 2}, + [2778] = {.lex_state = 75, .external_lex_state = 2}, + [2779] = {.lex_state = 75, .external_lex_state = 2}, + [2780] = {.lex_state = 75, .external_lex_state = 2}, + [2781] = {.lex_state = 75, .external_lex_state = 2}, + [2782] = {.lex_state = 75, .external_lex_state = 2}, + [2783] = {.lex_state = 75, .external_lex_state = 2}, + [2784] = {.lex_state = 75, .external_lex_state = 2}, + [2785] = {.lex_state = 75, .external_lex_state = 2}, + [2786] = {.lex_state = 75, .external_lex_state = 2}, + [2787] = {.lex_state = 75, .external_lex_state = 2}, + [2788] = {.lex_state = 75, .external_lex_state = 2}, + [2789] = {.lex_state = 75, .external_lex_state = 2}, + [2790] = {.lex_state = 75, .external_lex_state = 2}, + [2791] = {.lex_state = 75, .external_lex_state = 2}, + [2792] = {.lex_state = 75, .external_lex_state = 2}, + [2793] = {.lex_state = 75, .external_lex_state = 2}, + [2794] = {.lex_state = 75, .external_lex_state = 2}, + [2795] = {.lex_state = 75, .external_lex_state = 2}, + [2796] = {.lex_state = 75, .external_lex_state = 2}, + [2797] = {.lex_state = 75, .external_lex_state = 2}, + [2798] = {.lex_state = 75, .external_lex_state = 2}, + [2799] = {.lex_state = 75, .external_lex_state = 2}, + [2800] = {.lex_state = 75, .external_lex_state = 2}, + [2801] = {.lex_state = 75, .external_lex_state = 2}, + [2802] = {.lex_state = 75, .external_lex_state = 2}, + [2803] = {.lex_state = 75, .external_lex_state = 2}, + [2804] = {.lex_state = 75, .external_lex_state = 2}, + [2805] = {.lex_state = 75, .external_lex_state = 2}, + [2806] = {.lex_state = 75, .external_lex_state = 2}, + [2807] = {.lex_state = 75, .external_lex_state = 2}, + [2808] = {.lex_state = 75, .external_lex_state = 2}, + [2809] = {.lex_state = 75, .external_lex_state = 2}, + [2810] = {.lex_state = 75, .external_lex_state = 2}, + [2811] = {.lex_state = 75, .external_lex_state = 2}, + [2812] = {.lex_state = 75, .external_lex_state = 2}, + [2813] = {.lex_state = 75, .external_lex_state = 2}, + [2814] = {.lex_state = 75, .external_lex_state = 2}, + [2815] = {.lex_state = 75, .external_lex_state = 2}, + [2816] = {.lex_state = 75, .external_lex_state = 2}, + [2817] = {.lex_state = 75, .external_lex_state = 2}, + [2818] = {.lex_state = 75, .external_lex_state = 2}, + [2819] = {.lex_state = 75, .external_lex_state = 2}, + [2820] = {.lex_state = 75, .external_lex_state = 2}, + [2821] = {.lex_state = 75, .external_lex_state = 2}, + [2822] = {.lex_state = 75, .external_lex_state = 2}, + [2823] = {.lex_state = 75, .external_lex_state = 2}, + [2824] = {.lex_state = 75, .external_lex_state = 2}, + [2825] = {.lex_state = 75, .external_lex_state = 2}, + [2826] = {.lex_state = 75, .external_lex_state = 2}, + [2827] = {.lex_state = 75, .external_lex_state = 2}, + [2828] = {.lex_state = 75, .external_lex_state = 2}, + [2829] = {.lex_state = 75, .external_lex_state = 2}, + [2830] = {.lex_state = 75, .external_lex_state = 2}, + [2831] = {.lex_state = 75, .external_lex_state = 2}, + [2832] = {.lex_state = 75, .external_lex_state = 2}, + [2833] = {.lex_state = 75, .external_lex_state = 2}, + [2834] = {.lex_state = 75, .external_lex_state = 2}, + [2835] = {.lex_state = 75, .external_lex_state = 2}, + [2836] = {.lex_state = 75, .external_lex_state = 2}, + [2837] = {.lex_state = 75, .external_lex_state = 2}, + [2838] = {.lex_state = 75, .external_lex_state = 2}, + [2839] = {.lex_state = 75, .external_lex_state = 2}, + [2840] = {.lex_state = 75, .external_lex_state = 2}, + [2841] = {.lex_state = 75, .external_lex_state = 2}, + [2842] = {.lex_state = 75, .external_lex_state = 2}, + [2843] = {.lex_state = 75, .external_lex_state = 2}, + [2844] = {.lex_state = 75, .external_lex_state = 2}, + [2845] = {.lex_state = 75, .external_lex_state = 2}, + [2846] = {.lex_state = 75, .external_lex_state = 2}, + [2847] = {.lex_state = 75, .external_lex_state = 2}, + [2848] = {.lex_state = 75, .external_lex_state = 2}, + [2849] = {.lex_state = 75, .external_lex_state = 2}, + [2850] = {.lex_state = 75, .external_lex_state = 2}, + [2851] = {.lex_state = 75, .external_lex_state = 2}, + [2852] = {.lex_state = 75, .external_lex_state = 2}, + [2853] = {.lex_state = 75, .external_lex_state = 2}, + [2854] = {.lex_state = 75, .external_lex_state = 2}, + [2855] = {.lex_state = 75, .external_lex_state = 2}, + [2856] = {.lex_state = 75, .external_lex_state = 2}, + [2857] = {.lex_state = 75, .external_lex_state = 2}, + [2858] = {.lex_state = 75, .external_lex_state = 2}, + [2859] = {.lex_state = 75, .external_lex_state = 2}, + [2860] = {.lex_state = 75, .external_lex_state = 2}, + [2861] = {.lex_state = 75, .external_lex_state = 2}, + [2862] = {.lex_state = 75, .external_lex_state = 2}, + [2863] = {.lex_state = 75, .external_lex_state = 2}, + [2864] = {.lex_state = 75, .external_lex_state = 2}, + [2865] = {.lex_state = 75, .external_lex_state = 2}, + [2866] = {.lex_state = 75, .external_lex_state = 2}, + [2867] = {.lex_state = 75, .external_lex_state = 2}, + [2868] = {.lex_state = 75, .external_lex_state = 2}, + [2869] = {.lex_state = 75, .external_lex_state = 2}, + [2870] = {.lex_state = 75, .external_lex_state = 2}, + [2871] = {.lex_state = 75, .external_lex_state = 2}, + [2872] = {.lex_state = 75, .external_lex_state = 2}, + [2873] = {.lex_state = 75, .external_lex_state = 2}, + [2874] = {.lex_state = 75, .external_lex_state = 2}, + [2875] = {.lex_state = 75, .external_lex_state = 2}, + [2876] = {.lex_state = 7, .external_lex_state = 2}, + [2877] = {.lex_state = 7, .external_lex_state = 2}, + [2878] = {.lex_state = 7, .external_lex_state = 2}, + [2879] = {.lex_state = 7, .external_lex_state = 2}, + [2880] = {.lex_state = 7, .external_lex_state = 2}, + [2881] = {.lex_state = 7, .external_lex_state = 2}, + [2882] = {.lex_state = 7, .external_lex_state = 2}, + [2883] = {.lex_state = 7, .external_lex_state = 2}, + [2884] = {.lex_state = 7, .external_lex_state = 2}, + [2885] = {.lex_state = 7, .external_lex_state = 2}, + [2886] = {.lex_state = 7, .external_lex_state = 2}, + [2887] = {.lex_state = 7, .external_lex_state = 2}, + [2888] = {.lex_state = 7, .external_lex_state = 2}, + [2889] = {.lex_state = 7, .external_lex_state = 2}, + [2890] = {.lex_state = 7, .external_lex_state = 2}, + [2891] = {.lex_state = 7, .external_lex_state = 2}, + [2892] = {.lex_state = 7, .external_lex_state = 2}, + [2893] = {.lex_state = 7, .external_lex_state = 2}, + [2894] = {.lex_state = 7, .external_lex_state = 2}, + [2895] = {.lex_state = 7, .external_lex_state = 2}, + [2896] = {.lex_state = 7, .external_lex_state = 2}, + [2897] = {.lex_state = 7, .external_lex_state = 2}, + [2898] = {.lex_state = 7, .external_lex_state = 2}, + [2899] = {.lex_state = 7, .external_lex_state = 2}, + [2900] = {.lex_state = 7, .external_lex_state = 2}, + [2901] = {.lex_state = 7, .external_lex_state = 2}, + [2902] = {.lex_state = 7, .external_lex_state = 2}, + [2903] = {.lex_state = 7, .external_lex_state = 2}, + [2904] = {.lex_state = 7, .external_lex_state = 2}, + [2905] = {.lex_state = 7, .external_lex_state = 2}, + [2906] = {.lex_state = 7, .external_lex_state = 2}, + [2907] = {.lex_state = 7, .external_lex_state = 2}, + [2908] = {.lex_state = 7, .external_lex_state = 2}, + [2909] = {.lex_state = 7, .external_lex_state = 2}, + [2910] = {.lex_state = 7, .external_lex_state = 2}, + [2911] = {.lex_state = 7, .external_lex_state = 2}, + [2912] = {.lex_state = 7, .external_lex_state = 2}, + [2913] = {.lex_state = 75, .external_lex_state = 5}, + [2914] = {.lex_state = 75, .external_lex_state = 5}, + [2915] = {.lex_state = 75, .external_lex_state = 2}, + [2916] = {.lex_state = 7, .external_lex_state = 2}, + [2917] = {.lex_state = 7, .external_lex_state = 2}, + [2918] = {.lex_state = 7, .external_lex_state = 2}, + [2919] = {.lex_state = 75, .external_lex_state = 2}, + [2920] = {.lex_state = 7, .external_lex_state = 2}, + [2921] = {.lex_state = 7, .external_lex_state = 2}, + [2922] = {.lex_state = 7, .external_lex_state = 2}, + [2923] = {.lex_state = 75, .external_lex_state = 2}, + [2924] = {.lex_state = 75, .external_lex_state = 2}, + [2925] = {.lex_state = 7, .external_lex_state = 5}, + [2926] = {.lex_state = 75, .external_lex_state = 2}, + [2927] = {.lex_state = 75, .external_lex_state = 2}, + [2928] = {.lex_state = 75, .external_lex_state = 2}, + [2929] = {.lex_state = 75, .external_lex_state = 2}, + [2930] = {.lex_state = 75, .external_lex_state = 2}, + [2931] = {.lex_state = 7, .external_lex_state = 5}, + [2932] = {.lex_state = 75, .external_lex_state = 2}, + [2933] = {.lex_state = 7, .external_lex_state = 5}, + [2934] = {.lex_state = 75, .external_lex_state = 2}, + [2935] = {.lex_state = 75, .external_lex_state = 2}, + [2936] = {.lex_state = 75, .external_lex_state = 2}, + [2937] = {.lex_state = 75, .external_lex_state = 2}, + [2938] = {.lex_state = 75, .external_lex_state = 2}, + [2939] = {.lex_state = 75, .external_lex_state = 2}, + [2940] = {.lex_state = 75, .external_lex_state = 2}, + [2941] = {.lex_state = 7, .external_lex_state = 5}, + [2942] = {.lex_state = 75, .external_lex_state = 2}, + [2943] = {.lex_state = 7, .external_lex_state = 5}, + [2944] = {.lex_state = 75, .external_lex_state = 2}, + [2945] = {.lex_state = 75, .external_lex_state = 2}, + [2946] = {.lex_state = 7, .external_lex_state = 5}, + [2947] = {.lex_state = 75, .external_lex_state = 2}, + [2948] = {.lex_state = 75, .external_lex_state = 2}, + [2949] = {.lex_state = 75, .external_lex_state = 2}, + [2950] = {.lex_state = 7, .external_lex_state = 5}, + [2951] = {.lex_state = 7, .external_lex_state = 6}, + [2952] = {.lex_state = 7, .external_lex_state = 5}, + [2953] = {.lex_state = 7, .external_lex_state = 5}, + [2954] = {.lex_state = 7, .external_lex_state = 5}, + [2955] = {.lex_state = 75, .external_lex_state = 2}, + [2956] = {.lex_state = 7, .external_lex_state = 5}, + [2957] = {.lex_state = 75, .external_lex_state = 2}, + [2958] = {.lex_state = 7, .external_lex_state = 5}, + [2959] = {.lex_state = 7, .external_lex_state = 5}, + [2960] = {.lex_state = 7, .external_lex_state = 5}, + [2961] = {.lex_state = 7, .external_lex_state = 5}, + [2962] = {.lex_state = 75, .external_lex_state = 2}, + [2963] = {.lex_state = 7, .external_lex_state = 5}, + [2964] = {.lex_state = 75, .external_lex_state = 2}, + [2965] = {.lex_state = 7, .external_lex_state = 5}, + [2966] = {.lex_state = 7, .external_lex_state = 5}, + [2967] = {.lex_state = 7, .external_lex_state = 5}, + [2968] = {.lex_state = 75, .external_lex_state = 2}, + [2969] = {.lex_state = 7, .external_lex_state = 5}, + [2970] = {.lex_state = 75, .external_lex_state = 2}, + [2971] = {.lex_state = 75, .external_lex_state = 2}, + [2972] = {.lex_state = 75, .external_lex_state = 2}, + [2973] = {.lex_state = 75, .external_lex_state = 2}, + [2974] = {.lex_state = 75, .external_lex_state = 2}, + [2975] = {.lex_state = 75, .external_lex_state = 2}, + [2976] = {.lex_state = 75, .external_lex_state = 2}, + [2977] = {.lex_state = 75, .external_lex_state = 2}, + [2978] = {.lex_state = 75, .external_lex_state = 2}, + [2979] = {.lex_state = 2, .external_lex_state = 2}, + [2980] = {.lex_state = 2, .external_lex_state = 2}, + [2981] = {.lex_state = 75, .external_lex_state = 2}, + [2982] = {.lex_state = 75, .external_lex_state = 2}, + [2983] = {.lex_state = 7, .external_lex_state = 5}, + [2984] = {.lex_state = 75, .external_lex_state = 2}, + [2985] = {.lex_state = 75, .external_lex_state = 2}, + [2986] = {.lex_state = 2, .external_lex_state = 2}, + [2987] = {.lex_state = 7, .external_lex_state = 5}, + [2988] = {.lex_state = 75, .external_lex_state = 2}, + [2989] = {.lex_state = 7, .external_lex_state = 5}, + [2990] = {.lex_state = 7, .external_lex_state = 5}, + [2991] = {.lex_state = 75, .external_lex_state = 2}, + [2992] = {.lex_state = 75, .external_lex_state = 2}, + [2993] = {.lex_state = 7, .external_lex_state = 5}, + [2994] = {.lex_state = 75, .external_lex_state = 2}, + [2995] = {.lex_state = 7, .external_lex_state = 5}, + [2996] = {.lex_state = 75, .external_lex_state = 2}, + [2997] = {.lex_state = 7, .external_lex_state = 5}, + [2998] = {.lex_state = 75, .external_lex_state = 2}, + [2999] = {.lex_state = 75, .external_lex_state = 2}, + [3000] = {.lex_state = 75, .external_lex_state = 2}, + [3001] = {.lex_state = 75, .external_lex_state = 2}, + [3002] = {.lex_state = 75, .external_lex_state = 2}, + [3003] = {.lex_state = 2, .external_lex_state = 2}, + [3004] = {.lex_state = 2, .external_lex_state = 2}, + [3005] = {.lex_state = 7, .external_lex_state = 5}, + [3006] = {.lex_state = 75, .external_lex_state = 2}, + [3007] = {.lex_state = 75, .external_lex_state = 2}, + [3008] = {.lex_state = 75, .external_lex_state = 2}, + [3009] = {.lex_state = 2, .external_lex_state = 2}, + [3010] = {.lex_state = 75, .external_lex_state = 2}, + [3011] = {.lex_state = 75, .external_lex_state = 2}, + [3012] = {.lex_state = 7, .external_lex_state = 5}, + [3013] = {.lex_state = 2, .external_lex_state = 2}, + [3014] = {.lex_state = 7, .external_lex_state = 5}, + [3015] = {.lex_state = 75, .external_lex_state = 2}, + [3016] = {.lex_state = 75, .external_lex_state = 5}, + [3017] = {.lex_state = 7, .external_lex_state = 5}, + [3018] = {.lex_state = 75, .external_lex_state = 2}, + [3019] = {.lex_state = 75, .external_lex_state = 2}, + [3020] = {.lex_state = 2, .external_lex_state = 2}, + [3021] = {.lex_state = 75, .external_lex_state = 2}, + [3022] = {.lex_state = 7, .external_lex_state = 5}, + [3023] = {.lex_state = 75, .external_lex_state = 2}, + [3024] = {.lex_state = 75, .external_lex_state = 2}, + [3025] = {.lex_state = 2, .external_lex_state = 2}, + [3026] = {.lex_state = 7, .external_lex_state = 6}, + [3027] = {.lex_state = 7, .external_lex_state = 5}, + [3028] = {.lex_state = 7, .external_lex_state = 5}, + [3029] = {.lex_state = 2, .external_lex_state = 2}, + [3030] = {.lex_state = 75, .external_lex_state = 2}, + [3031] = {.lex_state = 7, .external_lex_state = 5}, + [3032] = {.lex_state = 75, .external_lex_state = 2}, + [3033] = {.lex_state = 7, .external_lex_state = 5}, + [3034] = {.lex_state = 75, .external_lex_state = 2}, + [3035] = {.lex_state = 75, .external_lex_state = 2}, + [3036] = {.lex_state = 75, .external_lex_state = 2}, + [3037] = {.lex_state = 7, .external_lex_state = 6}, + [3038] = {.lex_state = 7, .external_lex_state = 5}, + [3039] = {.lex_state = 75, .external_lex_state = 2}, + [3040] = {.lex_state = 75, .external_lex_state = 2}, + [3041] = {.lex_state = 75, .external_lex_state = 2}, + [3042] = {.lex_state = 75, .external_lex_state = 2}, + [3043] = {.lex_state = 75, .external_lex_state = 5}, + [3044] = {.lex_state = 75, .external_lex_state = 5}, + [3045] = {.lex_state = 75, .external_lex_state = 5}, + [3046] = {.lex_state = 75, .external_lex_state = 2}, + [3047] = {.lex_state = 75, .external_lex_state = 2}, + [3048] = {.lex_state = 75, .external_lex_state = 5}, + [3049] = {.lex_state = 75, .external_lex_state = 2}, + [3050] = {.lex_state = 75, .external_lex_state = 5}, + [3051] = {.lex_state = 75, .external_lex_state = 5}, + [3052] = {.lex_state = 75, .external_lex_state = 5}, + [3053] = {.lex_state = 75, .external_lex_state = 2}, + [3054] = {.lex_state = 75, .external_lex_state = 2}, + [3055] = {.lex_state = 75, .external_lex_state = 2}, + [3056] = {.lex_state = 75, .external_lex_state = 2}, + [3057] = {.lex_state = 75, .external_lex_state = 5}, + [3058] = {.lex_state = 75, .external_lex_state = 5}, + [3059] = {.lex_state = 75, .external_lex_state = 2}, + [3060] = {.lex_state = 75, .external_lex_state = 5}, + [3061] = {.lex_state = 75, .external_lex_state = 2}, + [3062] = {.lex_state = 75, .external_lex_state = 5}, + [3063] = {.lex_state = 75, .external_lex_state = 5}, + [3064] = {.lex_state = 75, .external_lex_state = 5}, + [3065] = {.lex_state = 75, .external_lex_state = 5}, + [3066] = {.lex_state = 75, .external_lex_state = 5}, + [3067] = {.lex_state = 75, .external_lex_state = 5}, + [3068] = {.lex_state = 75, .external_lex_state = 5}, + [3069] = {.lex_state = 75, .external_lex_state = 5}, + [3070] = {.lex_state = 75, .external_lex_state = 5}, + [3071] = {.lex_state = 75, .external_lex_state = 5}, + [3072] = {.lex_state = 75, .external_lex_state = 5}, + [3073] = {.lex_state = 75, .external_lex_state = 5}, + [3074] = {.lex_state = 75, .external_lex_state = 5}, + [3075] = {.lex_state = 75, .external_lex_state = 2}, + [3076] = {.lex_state = 75, .external_lex_state = 5}, + [3077] = {.lex_state = 75, .external_lex_state = 5}, + [3078] = {.lex_state = 75, .external_lex_state = 2}, + [3079] = {.lex_state = 75, .external_lex_state = 5}, + [3080] = {.lex_state = 75, .external_lex_state = 5}, + [3081] = {.lex_state = 75, .external_lex_state = 5}, + [3082] = {.lex_state = 75, .external_lex_state = 5}, + [3083] = {.lex_state = 75, .external_lex_state = 5}, + [3084] = {.lex_state = 7, .external_lex_state = 6}, + [3085] = {.lex_state = 75, .external_lex_state = 5}, + [3086] = {.lex_state = 7, .external_lex_state = 5}, + [3087] = {.lex_state = 75, .external_lex_state = 2}, + [3088] = {.lex_state = 7, .external_lex_state = 5}, + [3089] = {.lex_state = 7, .external_lex_state = 5}, + [3090] = {.lex_state = 7, .external_lex_state = 5}, + [3091] = {.lex_state = 75, .external_lex_state = 5}, + [3092] = {.lex_state = 75, .external_lex_state = 5}, + [3093] = {.lex_state = 75, .external_lex_state = 5}, + [3094] = {.lex_state = 7, .external_lex_state = 5}, + [3095] = {.lex_state = 75, .external_lex_state = 2}, + [3096] = {.lex_state = 75, .external_lex_state = 2}, + [3097] = {.lex_state = 75, .external_lex_state = 5}, + [3098] = {.lex_state = 75, .external_lex_state = 5}, + [3099] = {.lex_state = 7, .external_lex_state = 5}, + [3100] = {.lex_state = 75, .external_lex_state = 5}, + [3101] = {.lex_state = 75, .external_lex_state = 5}, + [3102] = {.lex_state = 75, .external_lex_state = 5}, + [3103] = {.lex_state = 75, .external_lex_state = 5}, + [3104] = {.lex_state = 75, .external_lex_state = 5}, + [3105] = {.lex_state = 75, .external_lex_state = 5}, + [3106] = {.lex_state = 75, .external_lex_state = 2}, + [3107] = {.lex_state = 7, .external_lex_state = 6}, + [3108] = {.lex_state = 7, .external_lex_state = 6}, + [3109] = {.lex_state = 7, .external_lex_state = 6}, + [3110] = {.lex_state = 7, .external_lex_state = 6}, + [3111] = {.lex_state = 75, .external_lex_state = 5}, + [3112] = {.lex_state = 7, .external_lex_state = 6}, + [3113] = {.lex_state = 7, .external_lex_state = 6}, + [3114] = {.lex_state = 7, .external_lex_state = 6}, + [3115] = {.lex_state = 7, .external_lex_state = 6}, + [3116] = {.lex_state = 7, .external_lex_state = 6}, + [3117] = {.lex_state = 7, .external_lex_state = 6}, + [3118] = {.lex_state = 7, .external_lex_state = 6}, + [3119] = {.lex_state = 7, .external_lex_state = 6}, + [3120] = {.lex_state = 7, .external_lex_state = 6}, + [3121] = {.lex_state = 7, .external_lex_state = 6}, + [3122] = {.lex_state = 7, .external_lex_state = 6}, + [3123] = {.lex_state = 7, .external_lex_state = 6}, + [3124] = {.lex_state = 7, .external_lex_state = 5}, + [3125] = {.lex_state = 7, .external_lex_state = 6}, + [3126] = {.lex_state = 7, .external_lex_state = 6}, + [3127] = {.lex_state = 7, .external_lex_state = 6}, + [3128] = {.lex_state = 7, .external_lex_state = 6}, + [3129] = {.lex_state = 75, .external_lex_state = 6}, + [3130] = {.lex_state = 7, .external_lex_state = 6}, + [3131] = {.lex_state = 7, .external_lex_state = 6}, + [3132] = {.lex_state = 7, .external_lex_state = 6}, + [3133] = {.lex_state = 7, .external_lex_state = 6}, + [3134] = {.lex_state = 7, .external_lex_state = 6}, + [3135] = {.lex_state = 75, .external_lex_state = 5}, + [3136] = {.lex_state = 7, .external_lex_state = 6}, + [3137] = {.lex_state = 7, .external_lex_state = 6}, + [3138] = {.lex_state = 7, .external_lex_state = 6}, + [3139] = {.lex_state = 7, .external_lex_state = 6}, + [3140] = {.lex_state = 7, .external_lex_state = 6}, + [3141] = {.lex_state = 7, .external_lex_state = 6}, + [3142] = {.lex_state = 7, .external_lex_state = 6}, + [3143] = {.lex_state = 75, .external_lex_state = 5}, + [3144] = {.lex_state = 75, .external_lex_state = 5}, + [3145] = {.lex_state = 75, .external_lex_state = 2}, + [3146] = {.lex_state = 75, .external_lex_state = 2}, + [3147] = {.lex_state = 75, .external_lex_state = 5}, + [3148] = {.lex_state = 75, .external_lex_state = 2}, + [3149] = {.lex_state = 75, .external_lex_state = 2}, + [3150] = {.lex_state = 75, .external_lex_state = 2}, + [3151] = {.lex_state = 75, .external_lex_state = 5}, + [3152] = {.lex_state = 75, .external_lex_state = 5}, + [3153] = {.lex_state = 75, .external_lex_state = 2}, + [3154] = {.lex_state = 75, .external_lex_state = 2}, + [3155] = {.lex_state = 7, .external_lex_state = 5}, + [3156] = {.lex_state = 7, .external_lex_state = 6}, + [3157] = {.lex_state = 75, .external_lex_state = 5}, + [3158] = {.lex_state = 75, .external_lex_state = 6}, + [3159] = {.lex_state = 75, .external_lex_state = 5}, + [3160] = {.lex_state = 75, .external_lex_state = 5}, + [3161] = {.lex_state = 75, .external_lex_state = 5}, + [3162] = {.lex_state = 75, .external_lex_state = 5}, + [3163] = {.lex_state = 75, .external_lex_state = 5}, + [3164] = {.lex_state = 75, .external_lex_state = 5}, + [3165] = {.lex_state = 75, .external_lex_state = 5}, + [3166] = {.lex_state = 75, .external_lex_state = 5}, + [3167] = {.lex_state = 75, .external_lex_state = 5}, + [3168] = {.lex_state = 75, .external_lex_state = 5}, + [3169] = {.lex_state = 75, .external_lex_state = 5}, + [3170] = {.lex_state = 75, .external_lex_state = 5}, + [3171] = {.lex_state = 75, .external_lex_state = 5}, + [3172] = {.lex_state = 75, .external_lex_state = 5}, + [3173] = {.lex_state = 75, .external_lex_state = 5}, + [3174] = {.lex_state = 75, .external_lex_state = 2}, + [3175] = {.lex_state = 75, .external_lex_state = 5}, + [3176] = {.lex_state = 75, .external_lex_state = 5}, + [3177] = {.lex_state = 75, .external_lex_state = 2}, + [3178] = {.lex_state = 75, .external_lex_state = 5}, + [3179] = {.lex_state = 75, .external_lex_state = 5}, + [3180] = {.lex_state = 75, .external_lex_state = 5}, + [3181] = {.lex_state = 75, .external_lex_state = 6}, + [3182] = {.lex_state = 75, .external_lex_state = 5}, + [3183] = {.lex_state = 75, .external_lex_state = 5}, + [3184] = {.lex_state = 75, .external_lex_state = 5}, + [3185] = {.lex_state = 75, .external_lex_state = 5}, + [3186] = {.lex_state = 75, .external_lex_state = 5}, + [3187] = {.lex_state = 75, .external_lex_state = 5}, + [3188] = {.lex_state = 75, .external_lex_state = 5}, + [3189] = {.lex_state = 75, .external_lex_state = 2}, + [3190] = {.lex_state = 75, .external_lex_state = 5}, + [3191] = {.lex_state = 75, .external_lex_state = 5}, + [3192] = {.lex_state = 75, .external_lex_state = 5}, + [3193] = {.lex_state = 75, .external_lex_state = 5}, + [3194] = {.lex_state = 75, .external_lex_state = 5}, + [3195] = {.lex_state = 75, .external_lex_state = 5}, + [3196] = {.lex_state = 7, .external_lex_state = 2}, + [3197] = {.lex_state = 7, .external_lex_state = 2}, + [3198] = {.lex_state = 7, .external_lex_state = 2}, + [3199] = {.lex_state = 75, .external_lex_state = 5}, + [3200] = {.lex_state = 75, .external_lex_state = 5}, + [3201] = {.lex_state = 75, .external_lex_state = 5}, + [3202] = {.lex_state = 75, .external_lex_state = 5}, + [3203] = {.lex_state = 75, .external_lex_state = 5}, + [3204] = {.lex_state = 75, .external_lex_state = 5}, + [3205] = {.lex_state = 75, .external_lex_state = 5}, + [3206] = {.lex_state = 75, .external_lex_state = 5}, + [3207] = {.lex_state = 75, .external_lex_state = 5}, + [3208] = {.lex_state = 75, .external_lex_state = 5}, + [3209] = {.lex_state = 75, .external_lex_state = 5}, + [3210] = {.lex_state = 75, .external_lex_state = 5}, + [3211] = {.lex_state = 75, .external_lex_state = 5}, + [3212] = {.lex_state = 75, .external_lex_state = 5}, + [3213] = {.lex_state = 75, .external_lex_state = 5}, + [3214] = {.lex_state = 75, .external_lex_state = 5}, + [3215] = {.lex_state = 75, .external_lex_state = 5}, + [3216] = {.lex_state = 75, .external_lex_state = 5}, + [3217] = {.lex_state = 75, .external_lex_state = 5}, + [3218] = {.lex_state = 75, .external_lex_state = 5}, + [3219] = {.lex_state = 75, .external_lex_state = 5}, + [3220] = {.lex_state = 7, .external_lex_state = 6}, + [3221] = {.lex_state = 7, .external_lex_state = 6}, + [3222] = {.lex_state = 75, .external_lex_state = 5}, + [3223] = {.lex_state = 7, .external_lex_state = 6}, + [3224] = {.lex_state = 7, .external_lex_state = 6}, + [3225] = {.lex_state = 7, .external_lex_state = 6}, + [3226] = {.lex_state = 7, .external_lex_state = 6}, + [3227] = {.lex_state = 75, .external_lex_state = 5}, + [3228] = {.lex_state = 75, .external_lex_state = 6}, + [3229] = {.lex_state = 75, .external_lex_state = 5}, + [3230] = {.lex_state = 75, .external_lex_state = 6}, + [3231] = {.lex_state = 75, .external_lex_state = 6}, + [3232] = {.lex_state = 75, .external_lex_state = 5}, + [3233] = {.lex_state = 75, .external_lex_state = 6}, + [3234] = {.lex_state = 75, .external_lex_state = 6}, + [3235] = {.lex_state = 75, .external_lex_state = 6}, + [3236] = {.lex_state = 75, .external_lex_state = 6}, + [3237] = {.lex_state = 75, .external_lex_state = 6}, + [3238] = {.lex_state = 7, .external_lex_state = 6}, + [3239] = {.lex_state = 75, .external_lex_state = 5}, + [3240] = {.lex_state = 75, .external_lex_state = 5}, + [3241] = {.lex_state = 75, .external_lex_state = 5}, + [3242] = {.lex_state = 75, .external_lex_state = 5}, + [3243] = {.lex_state = 75, .external_lex_state = 5}, + [3244] = {.lex_state = 75, .external_lex_state = 5}, + [3245] = {.lex_state = 75, .external_lex_state = 5}, + [3246] = {.lex_state = 75, .external_lex_state = 5}, + [3247] = {.lex_state = 7, .external_lex_state = 6}, + [3248] = {.lex_state = 75, .external_lex_state = 5}, + [3249] = {.lex_state = 75, .external_lex_state = 5}, + [3250] = {.lex_state = 75, .external_lex_state = 5}, + [3251] = {.lex_state = 75, .external_lex_state = 5}, + [3252] = {.lex_state = 75, .external_lex_state = 5}, + [3253] = {.lex_state = 75, .external_lex_state = 5}, + [3254] = {.lex_state = 75, .external_lex_state = 5}, + [3255] = {.lex_state = 75, .external_lex_state = 5}, + [3256] = {.lex_state = 75, .external_lex_state = 2}, + [3257] = {.lex_state = 75, .external_lex_state = 5}, + [3258] = {.lex_state = 75, .external_lex_state = 5}, + [3259] = {.lex_state = 75, .external_lex_state = 5}, + [3260] = {.lex_state = 75, .external_lex_state = 5}, + [3261] = {.lex_state = 75, .external_lex_state = 5}, + [3262] = {.lex_state = 75, .external_lex_state = 2}, + [3263] = {.lex_state = 75, .external_lex_state = 5}, + [3264] = {.lex_state = 75, .external_lex_state = 5}, + [3265] = {.lex_state = 75, .external_lex_state = 5}, + [3266] = {.lex_state = 75, .external_lex_state = 5}, + [3267] = {.lex_state = 75, .external_lex_state = 5}, + [3268] = {.lex_state = 75, .external_lex_state = 5}, + [3269] = {.lex_state = 75, .external_lex_state = 5}, + [3270] = {.lex_state = 75, .external_lex_state = 5}, + [3271] = {.lex_state = 75, .external_lex_state = 5}, + [3272] = {.lex_state = 75, .external_lex_state = 5}, + [3273] = {.lex_state = 75, .external_lex_state = 5}, + [3274] = {.lex_state = 75, .external_lex_state = 5}, + [3275] = {.lex_state = 75, .external_lex_state = 5}, + [3276] = {.lex_state = 75, .external_lex_state = 5}, + [3277] = {.lex_state = 75, .external_lex_state = 5}, + [3278] = {.lex_state = 75, .external_lex_state = 6}, + [3279] = {.lex_state = 75, .external_lex_state = 5}, + [3280] = {.lex_state = 75, .external_lex_state = 5}, + [3281] = {.lex_state = 75, .external_lex_state = 5}, + [3282] = {.lex_state = 75, .external_lex_state = 5}, + [3283] = {.lex_state = 75, .external_lex_state = 5}, + [3284] = {.lex_state = 75, .external_lex_state = 5}, + [3285] = {.lex_state = 75, .external_lex_state = 5}, + [3286] = {.lex_state = 75, .external_lex_state = 5}, + [3287] = {.lex_state = 75, .external_lex_state = 6}, + [3288] = {.lex_state = 75, .external_lex_state = 6}, + [3289] = {.lex_state = 75, .external_lex_state = 6}, + [3290] = {.lex_state = 75, .external_lex_state = 2}, + [3291] = {.lex_state = 75, .external_lex_state = 2}, + [3292] = {.lex_state = 75, .external_lex_state = 2}, + [3293] = {.lex_state = 75, .external_lex_state = 2}, + [3294] = {.lex_state = 75, .external_lex_state = 2}, + [3295] = {.lex_state = 75, .external_lex_state = 2}, + [3296] = {.lex_state = 75, .external_lex_state = 2}, + [3297] = {.lex_state = 75, .external_lex_state = 2}, + [3298] = {.lex_state = 75, .external_lex_state = 2}, + [3299] = {.lex_state = 75, .external_lex_state = 5}, + [3300] = {.lex_state = 75, .external_lex_state = 2}, + [3301] = {.lex_state = 75, .external_lex_state = 6}, + [3302] = {.lex_state = 75, .external_lex_state = 5}, + [3303] = {.lex_state = 75, .external_lex_state = 2}, + [3304] = {.lex_state = 75, .external_lex_state = 5}, + [3305] = {.lex_state = 75, .external_lex_state = 6}, + [3306] = {.lex_state = 75, .external_lex_state = 2}, + [3307] = {.lex_state = 75, .external_lex_state = 2}, + [3308] = {.lex_state = 75, .external_lex_state = 2}, + [3309] = {.lex_state = 75, .external_lex_state = 6}, + [3310] = {.lex_state = 75, .external_lex_state = 2}, + [3311] = {.lex_state = 75, .external_lex_state = 6}, + [3312] = {.lex_state = 75, .external_lex_state = 2}, + [3313] = {.lex_state = 75, .external_lex_state = 5}, + [3314] = {.lex_state = 75, .external_lex_state = 5}, + [3315] = {.lex_state = 75, .external_lex_state = 5}, + [3316] = {.lex_state = 75, .external_lex_state = 2}, + [3317] = {.lex_state = 75, .external_lex_state = 6}, + [3318] = {.lex_state = 75, .external_lex_state = 2}, + [3319] = {.lex_state = 75, .external_lex_state = 6}, + [3320] = {.lex_state = 75, .external_lex_state = 5}, + [3321] = {.lex_state = 75, .external_lex_state = 5}, + [3322] = {.lex_state = 75, .external_lex_state = 6}, + [3323] = {.lex_state = 75, .external_lex_state = 5}, + [3324] = {.lex_state = 75, .external_lex_state = 5}, + [3325] = {.lex_state = 75, .external_lex_state = 6}, + [3326] = {.lex_state = 75, .external_lex_state = 5}, + [3327] = {.lex_state = 75, .external_lex_state = 6}, + [3328] = {.lex_state = 75, .external_lex_state = 6}, + [3329] = {.lex_state = 75, .external_lex_state = 6}, + [3330] = {.lex_state = 75, .external_lex_state = 6}, + [3331] = {.lex_state = 75, .external_lex_state = 6}, + [3332] = {.lex_state = 75, .external_lex_state = 6}, + [3333] = {.lex_state = 75, .external_lex_state = 5}, + [3334] = {.lex_state = 75, .external_lex_state = 5}, + [3335] = {.lex_state = 75, .external_lex_state = 6}, + [3336] = {.lex_state = 75, .external_lex_state = 6}, + [3337] = {.lex_state = 75, .external_lex_state = 6}, + [3338] = {.lex_state = 75, .external_lex_state = 6}, + [3339] = {.lex_state = 75, .external_lex_state = 6}, + [3340] = {.lex_state = 75, .external_lex_state = 2}, + [3341] = {.lex_state = 75, .external_lex_state = 2}, + [3342] = {.lex_state = 75, .external_lex_state = 5}, + [3343] = {.lex_state = 75, .external_lex_state = 5}, + [3344] = {.lex_state = 75, .external_lex_state = 6}, + [3345] = {.lex_state = 75, .external_lex_state = 6}, + [3346] = {.lex_state = 75, .external_lex_state = 6}, + [3347] = {.lex_state = 75, .external_lex_state = 6}, + [3348] = {.lex_state = 75, .external_lex_state = 5}, + [3349] = {.lex_state = 75, .external_lex_state = 2}, + [3350] = {.lex_state = 75, .external_lex_state = 5}, + [3351] = {.lex_state = 75, .external_lex_state = 6}, + [3352] = {.lex_state = 75, .external_lex_state = 6}, + [3353] = {.lex_state = 75, .external_lex_state = 2}, + [3354] = {.lex_state = 75, .external_lex_state = 6}, + [3355] = {.lex_state = 75, .external_lex_state = 6}, + [3356] = {.lex_state = 75, .external_lex_state = 6}, + [3357] = {.lex_state = 75, .external_lex_state = 6}, + [3358] = {.lex_state = 75, .external_lex_state = 5}, + [3359] = {.lex_state = 75, .external_lex_state = 6}, + [3360] = {.lex_state = 75, .external_lex_state = 5}, + [3361] = {.lex_state = 75, .external_lex_state = 6}, + [3362] = {.lex_state = 75, .external_lex_state = 2}, + [3363] = {.lex_state = 75, .external_lex_state = 6}, + [3364] = {.lex_state = 75, .external_lex_state = 2}, + [3365] = {.lex_state = 75, .external_lex_state = 2}, + [3366] = {.lex_state = 75, .external_lex_state = 2}, + [3367] = {.lex_state = 75, .external_lex_state = 5}, + [3368] = {.lex_state = 75, .external_lex_state = 5}, + [3369] = {.lex_state = 75, .external_lex_state = 5}, + [3370] = {.lex_state = 75, .external_lex_state = 2}, + [3371] = {.lex_state = 75, .external_lex_state = 2}, + [3372] = {.lex_state = 8, .external_lex_state = 2}, + [3373] = {.lex_state = 75, .external_lex_state = 6}, + [3374] = {.lex_state = 75, .external_lex_state = 2}, + [3375] = {.lex_state = 75, .external_lex_state = 6}, + [3376] = {.lex_state = 75, .external_lex_state = 5}, + [3377] = {.lex_state = 75, .external_lex_state = 2}, + [3378] = {.lex_state = 75, .external_lex_state = 6}, + [3379] = {.lex_state = 75, .external_lex_state = 5}, + [3380] = {.lex_state = 75, .external_lex_state = 2}, + [3381] = {.lex_state = 75, .external_lex_state = 2}, + [3382] = {.lex_state = 8, .external_lex_state = 2}, + [3383] = {.lex_state = 75, .external_lex_state = 6}, + [3384] = {.lex_state = 75, .external_lex_state = 6}, + [3385] = {.lex_state = 75, .external_lex_state = 5}, + [3386] = {.lex_state = 75, .external_lex_state = 6}, + [3387] = {.lex_state = 75, .external_lex_state = 5}, + [3388] = {.lex_state = 75, .external_lex_state = 2}, + [3389] = {.lex_state = 75, .external_lex_state = 2}, + [3390] = {.lex_state = 75, .external_lex_state = 6}, + [3391] = {.lex_state = 75, .external_lex_state = 5}, + [3392] = {.lex_state = 75, .external_lex_state = 5}, + [3393] = {.lex_state = 75, .external_lex_state = 5}, + [3394] = {.lex_state = 75, .external_lex_state = 5}, + [3395] = {.lex_state = 75, .external_lex_state = 2}, + [3396] = {.lex_state = 75, .external_lex_state = 2}, + [3397] = {.lex_state = 75, .external_lex_state = 5}, + [3398] = {.lex_state = 75, .external_lex_state = 6}, + [3399] = {.lex_state = 75, .external_lex_state = 5}, + [3400] = {.lex_state = 75, .external_lex_state = 5}, + [3401] = {.lex_state = 75, .external_lex_state = 6}, + [3402] = {.lex_state = 75, .external_lex_state = 5}, + [3403] = {.lex_state = 75, .external_lex_state = 5}, + [3404] = {.lex_state = 75, .external_lex_state = 2}, + [3405] = {.lex_state = 75, .external_lex_state = 5}, + [3406] = {.lex_state = 75, .external_lex_state = 6}, + [3407] = {.lex_state = 75, .external_lex_state = 2}, + [3408] = {.lex_state = 75, .external_lex_state = 5}, + [3409] = {.lex_state = 75, .external_lex_state = 2}, + [3410] = {.lex_state = 75, .external_lex_state = 2}, + [3411] = {.lex_state = 75, .external_lex_state = 2}, + [3412] = {.lex_state = 75, .external_lex_state = 2}, + [3413] = {.lex_state = 75, .external_lex_state = 2}, + [3414] = {.lex_state = 75, .external_lex_state = 5}, + [3415] = {.lex_state = 75, .external_lex_state = 5}, + [3416] = {.lex_state = 75, .external_lex_state = 2}, + [3417] = {.lex_state = 75, .external_lex_state = 2}, + [3418] = {.lex_state = 75, .external_lex_state = 5}, + [3419] = {.lex_state = 75, .external_lex_state = 5}, + [3420] = {.lex_state = 75, .external_lex_state = 6}, + [3421] = {.lex_state = 75, .external_lex_state = 2}, + [3422] = {.lex_state = 75, .external_lex_state = 5}, + [3423] = {.lex_state = 75, .external_lex_state = 5}, + [3424] = {.lex_state = 75, .external_lex_state = 2}, + [3425] = {.lex_state = 75, .external_lex_state = 5}, + [3426] = {.lex_state = 75, .external_lex_state = 5}, + [3427] = {.lex_state = 75, .external_lex_state = 2}, + [3428] = {.lex_state = 75, .external_lex_state = 5}, + [3429] = {.lex_state = 75, .external_lex_state = 5}, + [3430] = {.lex_state = 75, .external_lex_state = 6}, + [3431] = {.lex_state = 75, .external_lex_state = 6}, + [3432] = {.lex_state = 75, .external_lex_state = 6}, + [3433] = {.lex_state = 75, .external_lex_state = 6}, + [3434] = {.lex_state = 75, .external_lex_state = 2}, + [3435] = {.lex_state = 75, .external_lex_state = 2}, + [3436] = {.lex_state = 75, .external_lex_state = 6}, + [3437] = {.lex_state = 75, .external_lex_state = 6}, + [3438] = {.lex_state = 75, .external_lex_state = 2}, + [3439] = {.lex_state = 75, .external_lex_state = 6}, + [3440] = {.lex_state = 75, .external_lex_state = 2}, + [3441] = {.lex_state = 75, .external_lex_state = 2}, + [3442] = {.lex_state = 75, .external_lex_state = 5}, + [3443] = {.lex_state = 8, .external_lex_state = 2}, + [3444] = {.lex_state = 75, .external_lex_state = 6}, + [3445] = {.lex_state = 75, .external_lex_state = 6}, + [3446] = {.lex_state = 75, .external_lex_state = 5}, + [3447] = {.lex_state = 75, .external_lex_state = 6}, + [3448] = {.lex_state = 75, .external_lex_state = 6}, + [3449] = {.lex_state = 75, .external_lex_state = 5}, + [3450] = {.lex_state = 75, .external_lex_state = 6}, + [3451] = {.lex_state = 75, .external_lex_state = 5}, + [3452] = {.lex_state = 75, .external_lex_state = 5}, + [3453] = {.lex_state = 75, .external_lex_state = 6}, + [3454] = {.lex_state = 75, .external_lex_state = 6}, + [3455] = {.lex_state = 75, .external_lex_state = 6}, + [3456] = {.lex_state = 75, .external_lex_state = 6}, + [3457] = {.lex_state = 75, .external_lex_state = 6}, + [3458] = {.lex_state = 75, .external_lex_state = 5}, + [3459] = {.lex_state = 75, .external_lex_state = 5}, + [3460] = {.lex_state = 75, .external_lex_state = 5}, + [3461] = {.lex_state = 75, .external_lex_state = 5}, + [3462] = {.lex_state = 75, .external_lex_state = 5}, + [3463] = {.lex_state = 75, .external_lex_state = 6}, + [3464] = {.lex_state = 75, .external_lex_state = 5}, + [3465] = {.lex_state = 13, .external_lex_state = 2}, + [3466] = {.lex_state = 75, .external_lex_state = 5}, + [3467] = {.lex_state = 75, .external_lex_state = 5}, + [3468] = {.lex_state = 13, .external_lex_state = 2}, + [3469] = {.lex_state = 75, .external_lex_state = 2}, + [3470] = {.lex_state = 13, .external_lex_state = 2}, + [3471] = {.lex_state = 75, .external_lex_state = 2}, + [3472] = {.lex_state = 75, .external_lex_state = 2}, + [3473] = {.lex_state = 13, .external_lex_state = 7}, + [3474] = {.lex_state = 75, .external_lex_state = 2}, + [3475] = {.lex_state = 13, .external_lex_state = 7}, + [3476] = {.lex_state = 13, .external_lex_state = 7}, + [3477] = {.lex_state = 13, .external_lex_state = 7}, + [3478] = {.lex_state = 13, .external_lex_state = 7}, + [3479] = {.lex_state = 13, .external_lex_state = 7}, + [3480] = {.lex_state = 75, .external_lex_state = 2}, + [3481] = {.lex_state = 75, .external_lex_state = 2}, + [3482] = {.lex_state = 75, .external_lex_state = 2}, + [3483] = {.lex_state = 75, .external_lex_state = 2}, + [3484] = {.lex_state = 13, .external_lex_state = 7}, + [3485] = {.lex_state = 13, .external_lex_state = 2}, + [3486] = {.lex_state = 75, .external_lex_state = 2}, + [3487] = {.lex_state = 75, .external_lex_state = 2}, + [3488] = {.lex_state = 13, .external_lex_state = 2}, + [3489] = {.lex_state = 7, .external_lex_state = 2}, + [3490] = {.lex_state = 7, .external_lex_state = 2}, + [3491] = {.lex_state = 75, .external_lex_state = 5}, + [3492] = {.lex_state = 75, .external_lex_state = 2}, + [3493] = {.lex_state = 75, .external_lex_state = 2}, + [3494] = {.lex_state = 75, .external_lex_state = 2}, + [3495] = {.lex_state = 13, .external_lex_state = 2}, + [3496] = {.lex_state = 75, .external_lex_state = 2}, + [3497] = {.lex_state = 13, .external_lex_state = 2}, + [3498] = {.lex_state = 13, .external_lex_state = 2}, + [3499] = {.lex_state = 75, .external_lex_state = 5}, + [3500] = {.lex_state = 75, .external_lex_state = 5}, + [3501] = {.lex_state = 13, .external_lex_state = 7}, + [3502] = {.lex_state = 75, .external_lex_state = 6}, + [3503] = {.lex_state = 75, .external_lex_state = 2}, + [3504] = {.lex_state = 75, .external_lex_state = 2}, + [3505] = {.lex_state = 13, .external_lex_state = 2}, + [3506] = {.lex_state = 7, .external_lex_state = 2}, + [3507] = {.lex_state = 75, .external_lex_state = 2}, + [3508] = {.lex_state = 7, .external_lex_state = 2}, + [3509] = {.lex_state = 75, .external_lex_state = 5}, + [3510] = {.lex_state = 75, .external_lex_state = 5}, + [3511] = {.lex_state = 75, .external_lex_state = 5}, + [3512] = {.lex_state = 75, .external_lex_state = 5}, + [3513] = {.lex_state = 75, .external_lex_state = 2}, + [3514] = {.lex_state = 75, .external_lex_state = 5}, + [3515] = {.lex_state = 75, .external_lex_state = 5}, + [3516] = {.lex_state = 75, .external_lex_state = 5}, + [3517] = {.lex_state = 75, .external_lex_state = 5}, + [3518] = {.lex_state = 75, .external_lex_state = 5}, + [3519] = {.lex_state = 75, .external_lex_state = 5}, + [3520] = {.lex_state = 75, .external_lex_state = 5}, + [3521] = {.lex_state = 75, .external_lex_state = 5}, + [3522] = {.lex_state = 75, .external_lex_state = 5}, + [3523] = {.lex_state = 75, .external_lex_state = 5}, + [3524] = {.lex_state = 75, .external_lex_state = 5}, + [3525] = {.lex_state = 75, .external_lex_state = 2}, + [3526] = {.lex_state = 75, .external_lex_state = 2}, + [3527] = {.lex_state = 75, .external_lex_state = 5}, + [3528] = {.lex_state = 75, .external_lex_state = 5}, + [3529] = {.lex_state = 75, .external_lex_state = 5}, + [3530] = {.lex_state = 75, .external_lex_state = 5}, + [3531] = {.lex_state = 75, .external_lex_state = 5}, + [3532] = {.lex_state = 75, .external_lex_state = 2}, + [3533] = {.lex_state = 75, .external_lex_state = 5}, + [3534] = {.lex_state = 75, .external_lex_state = 5}, + [3535] = {.lex_state = 75, .external_lex_state = 2}, + [3536] = {.lex_state = 75, .external_lex_state = 5}, + [3537] = {.lex_state = 75, .external_lex_state = 5}, + [3538] = {.lex_state = 75, .external_lex_state = 5}, + [3539] = {.lex_state = 75, .external_lex_state = 5}, + [3540] = {.lex_state = 7, .external_lex_state = 2}, + [3541] = {.lex_state = 75, .external_lex_state = 5}, + [3542] = {.lex_state = 75, .external_lex_state = 2}, + [3543] = {.lex_state = 7, .external_lex_state = 2}, + [3544] = {.lex_state = 75, .external_lex_state = 5}, + [3545] = {.lex_state = 75, .external_lex_state = 2}, + [3546] = {.lex_state = 7, .external_lex_state = 2}, + [3547] = {.lex_state = 75, .external_lex_state = 5}, + [3548] = {.lex_state = 75, .external_lex_state = 5}, + [3549] = {.lex_state = 75, .external_lex_state = 2}, + [3550] = {.lex_state = 75, .external_lex_state = 5}, + [3551] = {.lex_state = 75, .external_lex_state = 5}, + [3552] = {.lex_state = 75, .external_lex_state = 5}, + [3553] = {.lex_state = 75, .external_lex_state = 5}, + [3554] = {.lex_state = 75, .external_lex_state = 5}, + [3555] = {.lex_state = 75, .external_lex_state = 2}, + [3556] = {.lex_state = 75, .external_lex_state = 5}, + [3557] = {.lex_state = 75, .external_lex_state = 5}, + [3558] = {.lex_state = 75, .external_lex_state = 2}, + [3559] = {.lex_state = 75, .external_lex_state = 5}, + [3560] = {.lex_state = 75, .external_lex_state = 5}, + [3561] = {.lex_state = 75, .external_lex_state = 5}, + [3562] = {.lex_state = 75, .external_lex_state = 5}, + [3563] = {.lex_state = 7, .external_lex_state = 2}, + [3564] = {.lex_state = 75, .external_lex_state = 5}, + [3565] = {.lex_state = 75, .external_lex_state = 5}, + [3566] = {.lex_state = 75, .external_lex_state = 5}, + [3567] = {.lex_state = 75, .external_lex_state = 5}, + [3568] = {.lex_state = 75, .external_lex_state = 2}, + [3569] = {.lex_state = 75, .external_lex_state = 5}, + [3570] = {.lex_state = 7, .external_lex_state = 2}, + [3571] = {.lex_state = 75, .external_lex_state = 5}, + [3572] = {.lex_state = 7, .external_lex_state = 2}, + [3573] = {.lex_state = 75, .external_lex_state = 5}, + [3574] = {.lex_state = 7, .external_lex_state = 2}, + [3575] = {.lex_state = 7, .external_lex_state = 2}, + [3576] = {.lex_state = 75, .external_lex_state = 5}, + [3577] = {.lex_state = 75, .external_lex_state = 2}, + [3578] = {.lex_state = 75, .external_lex_state = 2}, + [3579] = {.lex_state = 75, .external_lex_state = 2}, + [3580] = {.lex_state = 75, .external_lex_state = 5}, + [3581] = {.lex_state = 75, .external_lex_state = 2}, + [3582] = {.lex_state = 75, .external_lex_state = 5}, + [3583] = {.lex_state = 75, .external_lex_state = 5}, + [3584] = {.lex_state = 75, .external_lex_state = 5}, + [3585] = {.lex_state = 75, .external_lex_state = 5}, + [3586] = {.lex_state = 75, .external_lex_state = 5}, + [3587] = {.lex_state = 75, .external_lex_state = 5}, + [3588] = {.lex_state = 75, .external_lex_state = 5}, + [3589] = {.lex_state = 75, .external_lex_state = 5}, + [3590] = {.lex_state = 75, .external_lex_state = 2}, + [3591] = {.lex_state = 75, .external_lex_state = 5}, + [3592] = {.lex_state = 75, .external_lex_state = 5}, + [3593] = {.lex_state = 7, .external_lex_state = 2}, + [3594] = {.lex_state = 75, .external_lex_state = 2}, + [3595] = {.lex_state = 75, .external_lex_state = 2}, + [3596] = {.lex_state = 75, .external_lex_state = 2}, + [3597] = {.lex_state = 75, .external_lex_state = 5}, + [3598] = {.lex_state = 75, .external_lex_state = 5}, + [3599] = {.lex_state = 7, .external_lex_state = 2}, + [3600] = {.lex_state = 75, .external_lex_state = 2}, + [3601] = {.lex_state = 75, .external_lex_state = 5}, + [3602] = {.lex_state = 75, .external_lex_state = 5}, + [3603] = {.lex_state = 75, .external_lex_state = 5}, + [3604] = {.lex_state = 75, .external_lex_state = 5}, + [3605] = {.lex_state = 75, .external_lex_state = 2}, + [3606] = {.lex_state = 75, .external_lex_state = 5}, + [3607] = {.lex_state = 75, .external_lex_state = 5}, + [3608] = {.lex_state = 75, .external_lex_state = 5}, + [3609] = {.lex_state = 7, .external_lex_state = 2}, + [3610] = {.lex_state = 75, .external_lex_state = 2}, + [3611] = {.lex_state = 75, .external_lex_state = 5}, + [3612] = {.lex_state = 75, .external_lex_state = 5}, + [3613] = {.lex_state = 75, .external_lex_state = 5}, + [3614] = {.lex_state = 75, .external_lex_state = 5}, + [3615] = {.lex_state = 75, .external_lex_state = 5}, + [3616] = {.lex_state = 75, .external_lex_state = 2}, + [3617] = {.lex_state = 75, .external_lex_state = 5}, + [3618] = {.lex_state = 75, .external_lex_state = 2}, + [3619] = {.lex_state = 75, .external_lex_state = 2}, + [3620] = {.lex_state = 8, .external_lex_state = 2}, + [3621] = {.lex_state = 75, .external_lex_state = 2}, + [3622] = {.lex_state = 75, .external_lex_state = 5}, + [3623] = {.lex_state = 75, .external_lex_state = 5}, + [3624] = {.lex_state = 75, .external_lex_state = 2}, + [3625] = {.lex_state = 75, .external_lex_state = 5}, + [3626] = {.lex_state = 75, .external_lex_state = 5}, + [3627] = {.lex_state = 75, .external_lex_state = 5}, + [3628] = {.lex_state = 75, .external_lex_state = 5}, + [3629] = {.lex_state = 75, .external_lex_state = 5}, + [3630] = {.lex_state = 75, .external_lex_state = 5}, + [3631] = {.lex_state = 75, .external_lex_state = 5}, + [3632] = {.lex_state = 75, .external_lex_state = 5}, + [3633] = {.lex_state = 75, .external_lex_state = 5}, + [3634] = {.lex_state = 75, .external_lex_state = 2}, + [3635] = {.lex_state = 75, .external_lex_state = 5}, + [3636] = {.lex_state = 7, .external_lex_state = 2}, + [3637] = {.lex_state = 75, .external_lex_state = 5}, + [3638] = {.lex_state = 75, .external_lex_state = 2}, + [3639] = {.lex_state = 7, .external_lex_state = 2}, + [3640] = {.lex_state = 75, .external_lex_state = 5}, + [3641] = {.lex_state = 75, .external_lex_state = 5}, + [3642] = {.lex_state = 75, .external_lex_state = 2}, + [3643] = {.lex_state = 75, .external_lex_state = 2}, + [3644] = {.lex_state = 75, .external_lex_state = 5}, + [3645] = {.lex_state = 75, .external_lex_state = 2}, + [3646] = {.lex_state = 75, .external_lex_state = 5}, + [3647] = {.lex_state = 75, .external_lex_state = 2}, + [3648] = {.lex_state = 75, .external_lex_state = 2}, + [3649] = {.lex_state = 75, .external_lex_state = 5}, + [3650] = {.lex_state = 75, .external_lex_state = 2}, + [3651] = {.lex_state = 75, .external_lex_state = 5}, + [3652] = {.lex_state = 8, .external_lex_state = 2}, + [3653] = {.lex_state = 75, .external_lex_state = 5}, + [3654] = {.lex_state = 75, .external_lex_state = 2}, + [3655] = {.lex_state = 75, .external_lex_state = 5}, + [3656] = {.lex_state = 75, .external_lex_state = 5}, + [3657] = {.lex_state = 75, .external_lex_state = 5}, + [3658] = {.lex_state = 75, .external_lex_state = 5}, + [3659] = {.lex_state = 75, .external_lex_state = 5}, + [3660] = {.lex_state = 75, .external_lex_state = 2}, + [3661] = {.lex_state = 75, .external_lex_state = 2}, + [3662] = {.lex_state = 75, .external_lex_state = 2}, + [3663] = {.lex_state = 7, .external_lex_state = 2}, + [3664] = {.lex_state = 75, .external_lex_state = 5}, + [3665] = {.lex_state = 75, .external_lex_state = 5}, + [3666] = {.lex_state = 75, .external_lex_state = 2}, + [3667] = {.lex_state = 75, .external_lex_state = 5}, + [3668] = {.lex_state = 75, .external_lex_state = 5}, + [3669] = {.lex_state = 75, .external_lex_state = 5}, + [3670] = {.lex_state = 75, .external_lex_state = 2}, + [3671] = {.lex_state = 75, .external_lex_state = 5}, + [3672] = {.lex_state = 75, .external_lex_state = 5}, + [3673] = {.lex_state = 75, .external_lex_state = 5}, + [3674] = {.lex_state = 75, .external_lex_state = 5}, + [3675] = {.lex_state = 75, .external_lex_state = 2}, + [3676] = {.lex_state = 75, .external_lex_state = 2}, + [3677] = {.lex_state = 8, .external_lex_state = 2}, + [3678] = {.lex_state = 75, .external_lex_state = 5}, + [3679] = {.lex_state = 75, .external_lex_state = 5}, + [3680] = {.lex_state = 75, .external_lex_state = 2}, + [3681] = {.lex_state = 75, .external_lex_state = 5}, + [3682] = {.lex_state = 75, .external_lex_state = 5}, + [3683] = {.lex_state = 75, .external_lex_state = 5}, + [3684] = {.lex_state = 75, .external_lex_state = 2}, + [3685] = {.lex_state = 75, .external_lex_state = 2}, + [3686] = {.lex_state = 75, .external_lex_state = 5}, + [3687] = {.lex_state = 75, .external_lex_state = 5}, + [3688] = {.lex_state = 75, .external_lex_state = 2}, + [3689] = {.lex_state = 75, .external_lex_state = 2}, + [3690] = {.lex_state = 75, .external_lex_state = 5}, + [3691] = {.lex_state = 75, .external_lex_state = 5}, + [3692] = {.lex_state = 75, .external_lex_state = 2}, + [3693] = {.lex_state = 75, .external_lex_state = 2}, + [3694] = {.lex_state = 75, .external_lex_state = 2}, + [3695] = {.lex_state = 7, .external_lex_state = 2}, + [3696] = {.lex_state = 75, .external_lex_state = 2}, + [3697] = {.lex_state = 75, .external_lex_state = 2}, + [3698] = {.lex_state = 75, .external_lex_state = 5}, + [3699] = {.lex_state = 75, .external_lex_state = 2}, + [3700] = {.lex_state = 75, .external_lex_state = 5}, + [3701] = {.lex_state = 75, .external_lex_state = 5}, + [3702] = {.lex_state = 75, .external_lex_state = 5}, + [3703] = {.lex_state = 75, .external_lex_state = 5}, + [3704] = {.lex_state = 75, .external_lex_state = 5}, + [3705] = {.lex_state = 75, .external_lex_state = 5}, + [3706] = {.lex_state = 75, .external_lex_state = 5}, + [3707] = {.lex_state = 75, .external_lex_state = 5}, + [3708] = {.lex_state = 75, .external_lex_state = 5}, + [3709] = {.lex_state = 75, .external_lex_state = 2}, + [3710] = {.lex_state = 75, .external_lex_state = 5}, + [3711] = {.lex_state = 75, .external_lex_state = 2}, + [3712] = {.lex_state = 75, .external_lex_state = 5}, + [3713] = {.lex_state = 75, .external_lex_state = 2}, + [3714] = {.lex_state = 75, .external_lex_state = 5}, + [3715] = {.lex_state = 75, .external_lex_state = 2}, + [3716] = {.lex_state = 75, .external_lex_state = 2}, + [3717] = {.lex_state = 75, .external_lex_state = 2}, + [3718] = {.lex_state = 75, .external_lex_state = 5}, + [3719] = {.lex_state = 75, .external_lex_state = 2}, + [3720] = {.lex_state = 75, .external_lex_state = 2}, + [3721] = {.lex_state = 75, .external_lex_state = 5}, + [3722] = {.lex_state = 75, .external_lex_state = 2}, + [3723] = {.lex_state = 75, .external_lex_state = 2}, + [3724] = {.lex_state = 75, .external_lex_state = 5}, + [3725] = {.lex_state = 75, .external_lex_state = 5}, + [3726] = {.lex_state = 75, .external_lex_state = 5}, + [3727] = {.lex_state = 75, .external_lex_state = 5}, + [3728] = {.lex_state = 75, .external_lex_state = 5}, + [3729] = {.lex_state = 75, .external_lex_state = 5}, + [3730] = {.lex_state = 75, .external_lex_state = 2}, + [3731] = {.lex_state = 75, .external_lex_state = 2}, + [3732] = {.lex_state = 75, .external_lex_state = 2}, + [3733] = {.lex_state = 75, .external_lex_state = 2}, + [3734] = {.lex_state = 75, .external_lex_state = 5}, + [3735] = {.lex_state = 75, .external_lex_state = 5}, + [3736] = {.lex_state = 75, .external_lex_state = 5}, + [3737] = {.lex_state = 75, .external_lex_state = 5}, + [3738] = {.lex_state = 75, .external_lex_state = 5}, + [3739] = {.lex_state = 7, .external_lex_state = 2}, + [3740] = {.lex_state = 75, .external_lex_state = 5}, + [3741] = {.lex_state = 75, .external_lex_state = 5}, + [3742] = {.lex_state = 75, .external_lex_state = 2}, + [3743] = {.lex_state = 75, .external_lex_state = 5}, + [3744] = {.lex_state = 75, .external_lex_state = 2}, + [3745] = {.lex_state = 75, .external_lex_state = 5}, + [3746] = {.lex_state = 75, .external_lex_state = 5}, + [3747] = {.lex_state = 75, .external_lex_state = 5}, + [3748] = {.lex_state = 75, .external_lex_state = 5}, + [3749] = {.lex_state = 75, .external_lex_state = 5}, + [3750] = {.lex_state = 75, .external_lex_state = 5}, + [3751] = {.lex_state = 75, .external_lex_state = 6}, + [3752] = {.lex_state = 75, .external_lex_state = 2}, + [3753] = {.lex_state = 75, .external_lex_state = 2}, + [3754] = {.lex_state = 75, .external_lex_state = 6}, + [3755] = {.lex_state = 75, .external_lex_state = 2}, + [3756] = {.lex_state = 75, .external_lex_state = 6}, + [3757] = {.lex_state = 75, .external_lex_state = 6}, + [3758] = {.lex_state = 75, .external_lex_state = 2}, + [3759] = {.lex_state = 75, .external_lex_state = 6}, + [3760] = {.lex_state = 75, .external_lex_state = 2}, + [3761] = {.lex_state = 75, .external_lex_state = 2}, + [3762] = {.lex_state = 75, .external_lex_state = 6}, + [3763] = {.lex_state = 75, .external_lex_state = 2}, + [3764] = {.lex_state = 13, .external_lex_state = 7}, + [3765] = {.lex_state = 75, .external_lex_state = 2}, + [3766] = {.lex_state = 75, .external_lex_state = 2}, + [3767] = {.lex_state = 75, .external_lex_state = 2}, + [3768] = {.lex_state = 75, .external_lex_state = 2}, + [3769] = {.lex_state = 75, .external_lex_state = 2}, + [3770] = {.lex_state = 75, .external_lex_state = 6}, + [3771] = {.lex_state = 75, .external_lex_state = 2}, + [3772] = {.lex_state = 75, .external_lex_state = 2}, + [3773] = {.lex_state = 75, .external_lex_state = 2}, + [3774] = {.lex_state = 75, .external_lex_state = 2}, + [3775] = {.lex_state = 75, .external_lex_state = 2}, + [3776] = {.lex_state = 75, .external_lex_state = 2}, + [3777] = {.lex_state = 75, .external_lex_state = 5}, + [3778] = {.lex_state = 75, .external_lex_state = 2}, + [3779] = {.lex_state = 75, .external_lex_state = 2}, + [3780] = {.lex_state = 75, .external_lex_state = 2}, + [3781] = {.lex_state = 75, .external_lex_state = 2}, + [3782] = {.lex_state = 75, .external_lex_state = 2}, + [3783] = {.lex_state = 75, .external_lex_state = 6}, + [3784] = {.lex_state = 75, .external_lex_state = 2}, + [3785] = {.lex_state = 13, .external_lex_state = 7}, + [3786] = {.lex_state = 75, .external_lex_state = 5}, + [3787] = {.lex_state = 75, .external_lex_state = 2}, + [3788] = {.lex_state = 75, .external_lex_state = 2}, + [3789] = {.lex_state = 75, .external_lex_state = 6}, + [3790] = {.lex_state = 75, .external_lex_state = 5}, + [3791] = {.lex_state = 75, .external_lex_state = 2}, + [3792] = {.lex_state = 75, .external_lex_state = 2}, + [3793] = {.lex_state = 75, .external_lex_state = 5}, + [3794] = {.lex_state = 75, .external_lex_state = 5}, + [3795] = {.lex_state = 75, .external_lex_state = 2}, + [3796] = {.lex_state = 75, .external_lex_state = 6}, + [3797] = {.lex_state = 75, .external_lex_state = 5}, + [3798] = {.lex_state = 75, .external_lex_state = 2}, + [3799] = {.lex_state = 75, .external_lex_state = 6}, + [3800] = {.lex_state = 75, .external_lex_state = 6}, + [3801] = {.lex_state = 75, .external_lex_state = 5}, + [3802] = {.lex_state = 75, .external_lex_state = 2}, + [3803] = {.lex_state = 75, .external_lex_state = 5}, + [3804] = {.lex_state = 75, .external_lex_state = 2}, + [3805] = {.lex_state = 75, .external_lex_state = 6}, + [3806] = {.lex_state = 75, .external_lex_state = 2}, + [3807] = {.lex_state = 75, .external_lex_state = 2}, + [3808] = {.lex_state = 75, .external_lex_state = 5}, + [3809] = {.lex_state = 75, .external_lex_state = 5}, + [3810] = {.lex_state = 75, .external_lex_state = 5}, + [3811] = {.lex_state = 75, .external_lex_state = 5}, + [3812] = {.lex_state = 75, .external_lex_state = 2}, + [3813] = {.lex_state = 75, .external_lex_state = 6}, + [3814] = {.lex_state = 75, .external_lex_state = 5}, + [3815] = {.lex_state = 75, .external_lex_state = 5}, + [3816] = {.lex_state = 75, .external_lex_state = 2}, + [3817] = {.lex_state = 75, .external_lex_state = 2}, + [3818] = {.lex_state = 8, .external_lex_state = 2}, + [3819] = {.lex_state = 75, .external_lex_state = 6}, + [3820] = {.lex_state = 75, .external_lex_state = 6}, + [3821] = {.lex_state = 75, .external_lex_state = 2}, + [3822] = {.lex_state = 75, .external_lex_state = 2}, + [3823] = {.lex_state = 75, .external_lex_state = 2}, + [3824] = {.lex_state = 75, .external_lex_state = 2}, + [3825] = {.lex_state = 75, .external_lex_state = 5}, + [3826] = {.lex_state = 75, .external_lex_state = 2}, + [3827] = {.lex_state = 75, .external_lex_state = 2}, + [3828] = {.lex_state = 75, .external_lex_state = 2}, + [3829] = {.lex_state = 75, .external_lex_state = 2}, + [3830] = {.lex_state = 75, .external_lex_state = 2}, + [3831] = {.lex_state = 75, .external_lex_state = 2}, + [3832] = {.lex_state = 13, .external_lex_state = 7}, + [3833] = {.lex_state = 75, .external_lex_state = 2}, + [3834] = {.lex_state = 75, .external_lex_state = 5}, + [3835] = {.lex_state = 75, .external_lex_state = 2}, + [3836] = {.lex_state = 75, .external_lex_state = 2}, + [3837] = {.lex_state = 75, .external_lex_state = 2}, + [3838] = {.lex_state = 75, .external_lex_state = 2}, + [3839] = {.lex_state = 75, .external_lex_state = 6}, + [3840] = {.lex_state = 75, .external_lex_state = 2}, + [3841] = {.lex_state = 75, .external_lex_state = 2}, + [3842] = {.lex_state = 75, .external_lex_state = 2}, + [3843] = {.lex_state = 75, .external_lex_state = 2}, + [3844] = {.lex_state = 75, .external_lex_state = 5}, + [3845] = {.lex_state = 75, .external_lex_state = 2}, + [3846] = {.lex_state = 75, .external_lex_state = 2}, + [3847] = {.lex_state = 75, .external_lex_state = 6}, + [3848] = {.lex_state = 75, .external_lex_state = 6}, + [3849] = {.lex_state = 75, .external_lex_state = 2}, + [3850] = {.lex_state = 75, .external_lex_state = 2}, + [3851] = {.lex_state = 75, .external_lex_state = 2}, + [3852] = {.lex_state = 13, .external_lex_state = 7}, + [3853] = {.lex_state = 75, .external_lex_state = 2}, + [3854] = {.lex_state = 75, .external_lex_state = 2}, + [3855] = {.lex_state = 75, .external_lex_state = 6}, + [3856] = {.lex_state = 75, .external_lex_state = 2}, + [3857] = {.lex_state = 75, .external_lex_state = 2}, + [3858] = {.lex_state = 75, .external_lex_state = 2}, + [3859] = {.lex_state = 75, .external_lex_state = 2}, + [3860] = {.lex_state = 75, .external_lex_state = 2}, + [3861] = {.lex_state = 13, .external_lex_state = 7}, + [3862] = {.lex_state = 75, .external_lex_state = 5}, + [3863] = {.lex_state = 75, .external_lex_state = 2}, + [3864] = {.lex_state = 75, .external_lex_state = 5}, + [3865] = {.lex_state = 75, .external_lex_state = 2}, + [3866] = {.lex_state = 75, .external_lex_state = 2}, + [3867] = {.lex_state = 75, .external_lex_state = 2}, + [3868] = {.lex_state = 75, .external_lex_state = 5}, + [3869] = {.lex_state = 8, .external_lex_state = 2}, + [3870] = {.lex_state = 75, .external_lex_state = 6}, + [3871] = {.lex_state = 75, .external_lex_state = 2}, + [3872] = {.lex_state = 75, .external_lex_state = 2}, + [3873] = {.lex_state = 75, .external_lex_state = 2}, + [3874] = {.lex_state = 75, .external_lex_state = 2}, + [3875] = {.lex_state = 75, .external_lex_state = 5}, + [3876] = {.lex_state = 75, .external_lex_state = 2}, + [3877] = {.lex_state = 75, .external_lex_state = 2}, + [3878] = {.lex_state = 75, .external_lex_state = 2}, + [3879] = {.lex_state = 75, .external_lex_state = 5}, + [3880] = {.lex_state = 75, .external_lex_state = 2}, + [3881] = {.lex_state = 75, .external_lex_state = 6}, + [3882] = {.lex_state = 75, .external_lex_state = 2}, + [3883] = {.lex_state = 75, .external_lex_state = 2}, + [3884] = {.lex_state = 75, .external_lex_state = 5}, + [3885] = {.lex_state = 75, .external_lex_state = 6}, + [3886] = {.lex_state = 75, .external_lex_state = 5}, + [3887] = {.lex_state = 75, .external_lex_state = 5}, + [3888] = {.lex_state = 75, .external_lex_state = 2}, + [3889] = {.lex_state = 75, .external_lex_state = 5}, + [3890] = {.lex_state = 75, .external_lex_state = 2}, + [3891] = {.lex_state = 75, .external_lex_state = 5}, + [3892] = {.lex_state = 75, .external_lex_state = 2}, + [3893] = {.lex_state = 75, .external_lex_state = 6}, + [3894] = {.lex_state = 75, .external_lex_state = 2}, + [3895] = {.lex_state = 75, .external_lex_state = 6}, + [3896] = {.lex_state = 75, .external_lex_state = 5}, + [3897] = {.lex_state = 75, .external_lex_state = 2}, + [3898] = {.lex_state = 75, .external_lex_state = 2}, + [3899] = {.lex_state = 75, .external_lex_state = 2}, + [3900] = {.lex_state = 75, .external_lex_state = 6}, + [3901] = {.lex_state = 13, .external_lex_state = 8}, + [3902] = {.lex_state = 75, .external_lex_state = 5}, + [3903] = {.lex_state = 75, .external_lex_state = 2}, + [3904] = {.lex_state = 75, .external_lex_state = 5}, + [3905] = {.lex_state = 75, .external_lex_state = 5}, + [3906] = {.lex_state = 75, .external_lex_state = 2}, + [3907] = {.lex_state = 75, .external_lex_state = 5}, + [3908] = {.lex_state = 75, .external_lex_state = 5}, + [3909] = {.lex_state = 75, .external_lex_state = 5}, + [3910] = {.lex_state = 75, .external_lex_state = 5}, + [3911] = {.lex_state = 75, .external_lex_state = 5}, + [3912] = {.lex_state = 75, .external_lex_state = 5}, + [3913] = {.lex_state = 75, .external_lex_state = 5}, + [3914] = {.lex_state = 75, .external_lex_state = 2}, + [3915] = {.lex_state = 75, .external_lex_state = 5}, + [3916] = {.lex_state = 75, .external_lex_state = 5}, + [3917] = {.lex_state = 75, .external_lex_state = 5}, + [3918] = {.lex_state = 75, .external_lex_state = 6}, + [3919] = {.lex_state = 75, .external_lex_state = 6}, + [3920] = {.lex_state = 75, .external_lex_state = 5}, + [3921] = {.lex_state = 75, .external_lex_state = 6}, + [3922] = {.lex_state = 75, .external_lex_state = 2}, + [3923] = {.lex_state = 13, .external_lex_state = 8}, + [3924] = {.lex_state = 75, .external_lex_state = 2}, + [3925] = {.lex_state = 75, .external_lex_state = 5}, + [3926] = {.lex_state = 75, .external_lex_state = 5}, + [3927] = {.lex_state = 75, .external_lex_state = 5}, + [3928] = {.lex_state = 75, .external_lex_state = 5}, + [3929] = {.lex_state = 75, .external_lex_state = 5}, + [3930] = {.lex_state = 75, .external_lex_state = 2}, + [3931] = {.lex_state = 75, .external_lex_state = 5}, + [3932] = {.lex_state = 75, .external_lex_state = 5}, + [3933] = {.lex_state = 75, .external_lex_state = 5}, + [3934] = {.lex_state = 75, .external_lex_state = 5}, + [3935] = {.lex_state = 75, .external_lex_state = 5}, + [3936] = {.lex_state = 75, .external_lex_state = 5}, + [3937] = {.lex_state = 75, .external_lex_state = 5}, + [3938] = {.lex_state = 75, .external_lex_state = 5}, + [3939] = {.lex_state = 75, .external_lex_state = 2}, + [3940] = {.lex_state = 75, .external_lex_state = 5}, + [3941] = {.lex_state = 75, .external_lex_state = 2}, + [3942] = {.lex_state = 75, .external_lex_state = 5}, + [3943] = {.lex_state = 75, .external_lex_state = 5}, + [3944] = {.lex_state = 75, .external_lex_state = 6}, + [3945] = {.lex_state = 75, .external_lex_state = 5}, + [3946] = {.lex_state = 75, .external_lex_state = 5}, + [3947] = {.lex_state = 75, .external_lex_state = 5}, + [3948] = {.lex_state = 75, .external_lex_state = 2}, + [3949] = {.lex_state = 75, .external_lex_state = 5}, + [3950] = {.lex_state = 75, .external_lex_state = 5}, + [3951] = {.lex_state = 2, .external_lex_state = 2}, + [3952] = {.lex_state = 75, .external_lex_state = 5}, + [3953] = {.lex_state = 75, .external_lex_state = 5}, + [3954] = {.lex_state = 75, .external_lex_state = 5}, + [3955] = {.lex_state = 75, .external_lex_state = 5}, + [3956] = {.lex_state = 75, .external_lex_state = 5}, + [3957] = {.lex_state = 75, .external_lex_state = 5}, + [3958] = {.lex_state = 75, .external_lex_state = 5}, + [3959] = {.lex_state = 75, .external_lex_state = 5}, + [3960] = {.lex_state = 75, .external_lex_state = 5}, + [3961] = {.lex_state = 75, .external_lex_state = 6}, + [3962] = {.lex_state = 75, .external_lex_state = 5}, + [3963] = {.lex_state = 75, .external_lex_state = 5}, + [3964] = {.lex_state = 75, .external_lex_state = 6}, + [3965] = {.lex_state = 75, .external_lex_state = 5}, + [3966] = {.lex_state = 75, .external_lex_state = 5}, + [3967] = {.lex_state = 75, .external_lex_state = 5}, + [3968] = {.lex_state = 75, .external_lex_state = 5}, + [3969] = {.lex_state = 75, .external_lex_state = 5}, + [3970] = {.lex_state = 75, .external_lex_state = 5}, + [3971] = {.lex_state = 75, .external_lex_state = 2}, + [3972] = {.lex_state = 75, .external_lex_state = 2}, + [3973] = {.lex_state = 75, .external_lex_state = 5}, + [3974] = {.lex_state = 75, .external_lex_state = 5}, + [3975] = {.lex_state = 75, .external_lex_state = 5}, + [3976] = {.lex_state = 75, .external_lex_state = 2}, + [3977] = {.lex_state = 75, .external_lex_state = 5}, + [3978] = {.lex_state = 75, .external_lex_state = 5}, + [3979] = {.lex_state = 75, .external_lex_state = 5}, + [3980] = {.lex_state = 75, .external_lex_state = 6}, + [3981] = {.lex_state = 75, .external_lex_state = 5}, + [3982] = {.lex_state = 75, .external_lex_state = 5}, + [3983] = {.lex_state = 75, .external_lex_state = 5}, + [3984] = {.lex_state = 75, .external_lex_state = 5}, + [3985] = {.lex_state = 75, .external_lex_state = 5}, + [3986] = {.lex_state = 75, .external_lex_state = 2}, + [3987] = {.lex_state = 75, .external_lex_state = 2}, + [3988] = {.lex_state = 75, .external_lex_state = 5}, + [3989] = {.lex_state = 75, .external_lex_state = 2}, + [3990] = {.lex_state = 75, .external_lex_state = 5}, + [3991] = {.lex_state = 75, .external_lex_state = 5}, + [3992] = {.lex_state = 75, .external_lex_state = 5}, + [3993] = {.lex_state = 75, .external_lex_state = 5}, + [3994] = {.lex_state = 75, .external_lex_state = 5}, + [3995] = {.lex_state = 75, .external_lex_state = 5}, + [3996] = {.lex_state = 75, .external_lex_state = 5}, + [3997] = {.lex_state = 75, .external_lex_state = 5}, + [3998] = {.lex_state = 75, .external_lex_state = 5}, + [3999] = {.lex_state = 75, .external_lex_state = 5}, + [4000] = {.lex_state = 75, .external_lex_state = 5}, + [4001] = {.lex_state = 75, .external_lex_state = 2}, + [4002] = {.lex_state = 75, .external_lex_state = 5}, + [4003] = {.lex_state = 75, .external_lex_state = 5}, + [4004] = {.lex_state = 75, .external_lex_state = 5}, + [4005] = {.lex_state = 75, .external_lex_state = 5}, + [4006] = {.lex_state = 75, .external_lex_state = 5}, + [4007] = {.lex_state = 75, .external_lex_state = 5}, + [4008] = {.lex_state = 75, .external_lex_state = 5}, + [4009] = {.lex_state = 75, .external_lex_state = 2}, + [4010] = {.lex_state = 75, .external_lex_state = 2}, + [4011] = {.lex_state = 75, .external_lex_state = 5}, + [4012] = {.lex_state = 75, .external_lex_state = 2}, + [4013] = {.lex_state = 75, .external_lex_state = 2}, + [4014] = {.lex_state = 75, .external_lex_state = 5}, + [4015] = {.lex_state = 75, .external_lex_state = 5}, + [4016] = {.lex_state = 75, .external_lex_state = 5}, + [4017] = {.lex_state = 75, .external_lex_state = 5}, + [4018] = {.lex_state = 75, .external_lex_state = 5}, + [4019] = {.lex_state = 75, .external_lex_state = 5}, + [4020] = {.lex_state = 75, .external_lex_state = 5}, + [4021] = {.lex_state = 75, .external_lex_state = 5}, + [4022] = {.lex_state = 75, .external_lex_state = 5}, + [4023] = {.lex_state = 75, .external_lex_state = 5}, + [4024] = {.lex_state = 75, .external_lex_state = 2}, + [4025] = {.lex_state = 75, .external_lex_state = 5}, + [4026] = {.lex_state = 75, .external_lex_state = 5}, + [4027] = {.lex_state = 75, .external_lex_state = 5}, + [4028] = {.lex_state = 75, .external_lex_state = 5}, + [4029] = {.lex_state = 75, .external_lex_state = 5}, + [4030] = {.lex_state = 75, .external_lex_state = 5}, + [4031] = {.lex_state = 75, .external_lex_state = 2}, + [4032] = {.lex_state = 75, .external_lex_state = 5}, + [4033] = {.lex_state = 75, .external_lex_state = 5}, + [4034] = {.lex_state = 75, .external_lex_state = 5}, + [4035] = {.lex_state = 75, .external_lex_state = 5}, + [4036] = {.lex_state = 75, .external_lex_state = 5}, + [4037] = {.lex_state = 75, .external_lex_state = 5}, + [4038] = {.lex_state = 75, .external_lex_state = 2}, + [4039] = {.lex_state = 75, .external_lex_state = 6}, + [4040] = {.lex_state = 75, .external_lex_state = 5}, + [4041] = {.lex_state = 75, .external_lex_state = 5}, + [4042] = {.lex_state = 75, .external_lex_state = 2}, + [4043] = {.lex_state = 75, .external_lex_state = 5}, + [4044] = {.lex_state = 75, .external_lex_state = 5}, + [4045] = {.lex_state = 75, .external_lex_state = 5}, + [4046] = {.lex_state = 13, .external_lex_state = 8}, + [4047] = {.lex_state = 75, .external_lex_state = 5}, + [4048] = {.lex_state = 75, .external_lex_state = 5}, + [4049] = {.lex_state = 75, .external_lex_state = 5}, + [4050] = {.lex_state = 75, .external_lex_state = 5}, + [4051] = {.lex_state = 75, .external_lex_state = 5}, + [4052] = {.lex_state = 75, .external_lex_state = 5}, + [4053] = {.lex_state = 75, .external_lex_state = 6}, + [4054] = {.lex_state = 75, .external_lex_state = 5}, + [4055] = {.lex_state = 75, .external_lex_state = 5}, + [4056] = {.lex_state = 75, .external_lex_state = 5}, + [4057] = {.lex_state = 13, .external_lex_state = 8}, + [4058] = {.lex_state = 75, .external_lex_state = 5}, + [4059] = {.lex_state = 75, .external_lex_state = 5}, + [4060] = {.lex_state = 75, .external_lex_state = 5}, + [4061] = {.lex_state = 75, .external_lex_state = 5}, + [4062] = {.lex_state = 75, .external_lex_state = 6}, + [4063] = {.lex_state = 75, .external_lex_state = 5}, + [4064] = {.lex_state = 75, .external_lex_state = 5}, + [4065] = {.lex_state = 75, .external_lex_state = 5}, + [4066] = {.lex_state = 75, .external_lex_state = 5}, + [4067] = {.lex_state = 75, .external_lex_state = 5}, + [4068] = {.lex_state = 75, .external_lex_state = 5}, + [4069] = {.lex_state = 75, .external_lex_state = 5}, + [4070] = {.lex_state = 75, .external_lex_state = 5}, + [4071] = {.lex_state = 75, .external_lex_state = 5}, + [4072] = {.lex_state = 75, .external_lex_state = 5}, + [4073] = {.lex_state = 75, .external_lex_state = 5}, + [4074] = {.lex_state = 75, .external_lex_state = 5}, + [4075] = {.lex_state = 75, .external_lex_state = 5}, + [4076] = {.lex_state = 75, .external_lex_state = 5}, + [4077] = {.lex_state = 75, .external_lex_state = 5}, + [4078] = {.lex_state = 75, .external_lex_state = 5}, + [4079] = {.lex_state = 75, .external_lex_state = 5}, + [4080] = {.lex_state = 75, .external_lex_state = 5}, + [4081] = {.lex_state = 75, .external_lex_state = 5}, + [4082] = {.lex_state = 75, .external_lex_state = 5}, + [4083] = {.lex_state = 75, .external_lex_state = 5}, + [4084] = {.lex_state = 75, .external_lex_state = 5}, + [4085] = {.lex_state = 13, .external_lex_state = 8}, + [4086] = {.lex_state = 75, .external_lex_state = 5}, + [4087] = {.lex_state = 75, .external_lex_state = 2}, + [4088] = {.lex_state = 75, .external_lex_state = 5}, + [4089] = {.lex_state = 75, .external_lex_state = 5}, + [4090] = {.lex_state = 75, .external_lex_state = 5}, + [4091] = {.lex_state = 75, .external_lex_state = 5}, + [4092] = {.lex_state = 13, .external_lex_state = 8}, + [4093] = {.lex_state = 75, .external_lex_state = 5}, + [4094] = {.lex_state = 75, .external_lex_state = 2}, + [4095] = {.lex_state = 75, .external_lex_state = 5}, + [4096] = {.lex_state = 75, .external_lex_state = 5}, + [4097] = {.lex_state = 75, .external_lex_state = 5}, + [4098] = {.lex_state = 75, .external_lex_state = 5}, + [4099] = {.lex_state = 75, .external_lex_state = 5}, + [4100] = {.lex_state = 75, .external_lex_state = 5}, + [4101] = {.lex_state = 75, .external_lex_state = 5}, + [4102] = {.lex_state = 75, .external_lex_state = 5}, + [4103] = {.lex_state = 75, .external_lex_state = 5}, + [4104] = {.lex_state = 75, .external_lex_state = 5}, + [4105] = {.lex_state = 75, .external_lex_state = 5}, + [4106] = {.lex_state = 75, .external_lex_state = 5}, + [4107] = {.lex_state = 13, .external_lex_state = 8}, + [4108] = {.lex_state = 13, .external_lex_state = 8}, + [4109] = {.lex_state = 75, .external_lex_state = 5}, + [4110] = {.lex_state = 75, .external_lex_state = 5}, + [4111] = {.lex_state = 75, .external_lex_state = 5}, + [4112] = {.lex_state = 13, .external_lex_state = 8}, + [4113] = {.lex_state = 75, .external_lex_state = 5}, + [4114] = {.lex_state = 75, .external_lex_state = 5}, + [4115] = {.lex_state = 75, .external_lex_state = 2}, + [4116] = {.lex_state = 75, .external_lex_state = 2}, + [4117] = {.lex_state = 75, .external_lex_state = 5}, + [4118] = {.lex_state = 75, .external_lex_state = 5}, + [4119] = {.lex_state = 75, .external_lex_state = 5}, + [4120] = {.lex_state = 75, .external_lex_state = 5}, + [4121] = {.lex_state = 75, .external_lex_state = 5}, + [4122] = {.lex_state = 75, .external_lex_state = 5}, + [4123] = {.lex_state = 75, .external_lex_state = 5}, + [4124] = {.lex_state = 75, .external_lex_state = 5}, + [4125] = {.lex_state = 75, .external_lex_state = 2}, + [4126] = {.lex_state = 75, .external_lex_state = 5}, + [4127] = {.lex_state = 75, .external_lex_state = 5}, + [4128] = {.lex_state = 75, .external_lex_state = 5}, + [4129] = {.lex_state = 75, .external_lex_state = 2}, + [4130] = {.lex_state = 75, .external_lex_state = 5}, + [4131] = {.lex_state = 75, .external_lex_state = 5}, + [4132] = {.lex_state = 75, .external_lex_state = 2}, + [4133] = {.lex_state = 75, .external_lex_state = 2}, + [4134] = {.lex_state = 75, .external_lex_state = 5}, + [4135] = {.lex_state = 75, .external_lex_state = 5}, + [4136] = {.lex_state = 13, .external_lex_state = 8}, + [4137] = {.lex_state = 75, .external_lex_state = 2}, + [4138] = {.lex_state = 75, .external_lex_state = 5}, + [4139] = {.lex_state = 75, .external_lex_state = 5}, + [4140] = {.lex_state = 75, .external_lex_state = 5}, + [4141] = {.lex_state = 75, .external_lex_state = 5}, + [4142] = {.lex_state = 75, .external_lex_state = 5}, + [4143] = {.lex_state = 8, .external_lex_state = 2}, + [4144] = {.lex_state = 75, .external_lex_state = 5}, + [4145] = {.lex_state = 7, .external_lex_state = 2}, + [4146] = {.lex_state = 75, .external_lex_state = 5}, + [4147] = {.lex_state = 75, .external_lex_state = 2}, + [4148] = {.lex_state = 75, .external_lex_state = 2}, + [4149] = {.lex_state = 75, .external_lex_state = 5}, + [4150] = {.lex_state = 75, .external_lex_state = 2}, + [4151] = {.lex_state = 75, .external_lex_state = 2}, + [4152] = {.lex_state = 75, .external_lex_state = 5}, + [4153] = {.lex_state = 75, .external_lex_state = 2}, + [4154] = {.lex_state = 75, .external_lex_state = 2}, + [4155] = {.lex_state = 75, .external_lex_state = 5}, + [4156] = {.lex_state = 75, .external_lex_state = 5}, + [4157] = {.lex_state = 75, .external_lex_state = 2}, + [4158] = {.lex_state = 75, .external_lex_state = 5}, + [4159] = {.lex_state = 75, .external_lex_state = 5}, + [4160] = {.lex_state = 75, .external_lex_state = 2}, + [4161] = {.lex_state = 75, .external_lex_state = 2}, + [4162] = {.lex_state = 75, .external_lex_state = 5}, + [4163] = {.lex_state = 75, .external_lex_state = 2}, + [4164] = {.lex_state = 75, .external_lex_state = 2}, + [4165] = {.lex_state = 75, .external_lex_state = 5}, + [4166] = {.lex_state = 75, .external_lex_state = 5}, + [4167] = {.lex_state = 75, .external_lex_state = 5}, + [4168] = {.lex_state = 75, .external_lex_state = 5}, + [4169] = {.lex_state = 75, .external_lex_state = 5}, + [4170] = {.lex_state = 75, .external_lex_state = 5}, + [4171] = {.lex_state = 75, .external_lex_state = 2}, + [4172] = {.lex_state = 75, .external_lex_state = 2}, + [4173] = {.lex_state = 75, .external_lex_state = 2}, + [4174] = {.lex_state = 75, .external_lex_state = 2}, + [4175] = {.lex_state = 75, .external_lex_state = 2}, + [4176] = {.lex_state = 75, .external_lex_state = 2}, + [4177] = {.lex_state = 75, .external_lex_state = 5}, + [4178] = {.lex_state = 75, .external_lex_state = 2}, + [4179] = {.lex_state = 75, .external_lex_state = 5}, + [4180] = {.lex_state = 75, .external_lex_state = 2}, + [4181] = {.lex_state = 75, .external_lex_state = 5}, + [4182] = {.lex_state = 75, .external_lex_state = 5}, + [4183] = {.lex_state = 75, .external_lex_state = 5}, + [4184] = {.lex_state = 75, .external_lex_state = 2}, + [4185] = {.lex_state = 75, .external_lex_state = 2}, + [4186] = {.lex_state = 75, .external_lex_state = 5}, + [4187] = {.lex_state = 75, .external_lex_state = 5}, + [4188] = {.lex_state = 75, .external_lex_state = 5}, + [4189] = {.lex_state = 75, .external_lex_state = 2}, + [4190] = {.lex_state = 75, .external_lex_state = 2}, + [4191] = {.lex_state = 75, .external_lex_state = 6}, + [4192] = {.lex_state = 75, .external_lex_state = 5}, + [4193] = {.lex_state = 75, .external_lex_state = 2}, + [4194] = {.lex_state = 75, .external_lex_state = 5}, + [4195] = {.lex_state = 75, .external_lex_state = 5}, + [4196] = {.lex_state = 75, .external_lex_state = 2}, + [4197] = {.lex_state = 75, .external_lex_state = 2}, + [4198] = {.lex_state = 75, .external_lex_state = 5}, + [4199] = {.lex_state = 75, .external_lex_state = 5}, + [4200] = {.lex_state = 75, .external_lex_state = 2}, + [4201] = {.lex_state = 75, .external_lex_state = 2}, + [4202] = {.lex_state = 75, .external_lex_state = 5}, + [4203] = {.lex_state = 75, .external_lex_state = 2}, + [4204] = {.lex_state = 75, .external_lex_state = 5}, + [4205] = {.lex_state = 75, .external_lex_state = 5}, + [4206] = {.lex_state = 75, .external_lex_state = 5}, + [4207] = {.lex_state = 75, .external_lex_state = 2}, + [4208] = {.lex_state = 2, .external_lex_state = 2}, + [4209] = {.lex_state = 75, .external_lex_state = 5}, + [4210] = {.lex_state = 75, .external_lex_state = 2}, + [4211] = {.lex_state = 75, .external_lex_state = 5}, + [4212] = {.lex_state = 75, .external_lex_state = 5}, + [4213] = {.lex_state = 75, .external_lex_state = 5}, + [4214] = {.lex_state = 75, .external_lex_state = 5}, + [4215] = {.lex_state = 75, .external_lex_state = 5}, + [4216] = {.lex_state = 75, .external_lex_state = 5}, + [4217] = {.lex_state = 75, .external_lex_state = 2}, + [4218] = {.lex_state = 13, .external_lex_state = 8}, + [4219] = {.lex_state = 75, .external_lex_state = 5}, + [4220] = {.lex_state = 75, .external_lex_state = 2}, + [4221] = {.lex_state = 75, .external_lex_state = 5}, + [4222] = {.lex_state = 75, .external_lex_state = 2}, + [4223] = {.lex_state = 75, .external_lex_state = 2}, + [4224] = {.lex_state = 75, .external_lex_state = 2}, + [4225] = {.lex_state = 75, .external_lex_state = 2}, + [4226] = {.lex_state = 75, .external_lex_state = 2}, + [4227] = {.lex_state = 75, .external_lex_state = 2}, + [4228] = {.lex_state = 75, .external_lex_state = 2}, + [4229] = {.lex_state = 75, .external_lex_state = 2}, + [4230] = {.lex_state = 75, .external_lex_state = 5}, + [4231] = {.lex_state = 75, .external_lex_state = 5}, + [4232] = {.lex_state = 75, .external_lex_state = 5}, + [4233] = {.lex_state = 75, .external_lex_state = 5}, + [4234] = {.lex_state = 75, .external_lex_state = 5}, + [4235] = {.lex_state = 75, .external_lex_state = 5}, + [4236] = {.lex_state = 75, .external_lex_state = 5}, + [4237] = {.lex_state = 75, .external_lex_state = 5}, + [4238] = {.lex_state = 75, .external_lex_state = 5}, + [4239] = {.lex_state = 75, .external_lex_state = 5}, + [4240] = {.lex_state = 75, .external_lex_state = 5}, + [4241] = {.lex_state = 75, .external_lex_state = 5}, + [4242] = {.lex_state = 75, .external_lex_state = 5}, + [4243] = {.lex_state = 75, .external_lex_state = 5}, + [4244] = {.lex_state = 75, .external_lex_state = 5}, + [4245] = {.lex_state = 75, .external_lex_state = 5}, + [4246] = {.lex_state = 75, .external_lex_state = 5}, + [4247] = {.lex_state = 75, .external_lex_state = 2}, + [4248] = {.lex_state = 75, .external_lex_state = 2}, + [4249] = {.lex_state = 75, .external_lex_state = 2}, + [4250] = {.lex_state = 75, .external_lex_state = 6}, + [4251] = {.lex_state = 75, .external_lex_state = 5}, + [4252] = {.lex_state = 75, .external_lex_state = 5}, + [4253] = {.lex_state = 75, .external_lex_state = 2}, + [4254] = {.lex_state = 75, .external_lex_state = 5}, + [4255] = {.lex_state = 75, .external_lex_state = 5}, + [4256] = {.lex_state = 75, .external_lex_state = 2}, + [4257] = {.lex_state = 75, .external_lex_state = 5}, + [4258] = {.lex_state = 75, .external_lex_state = 2}, + [4259] = {.lex_state = 75, .external_lex_state = 5}, + [4260] = {.lex_state = 75, .external_lex_state = 2}, + [4261] = {.lex_state = 75, .external_lex_state = 5}, + [4262] = {.lex_state = 75, .external_lex_state = 5}, + [4263] = {.lex_state = 75, .external_lex_state = 5}, + [4264] = {.lex_state = 75, .external_lex_state = 5}, + [4265] = {.lex_state = 75, .external_lex_state = 5}, + [4266] = {.lex_state = 75, .external_lex_state = 5}, + [4267] = {.lex_state = 75, .external_lex_state = 5}, + [4268] = {.lex_state = 75, .external_lex_state = 5}, + [4269] = {.lex_state = 75, .external_lex_state = 5}, + [4270] = {.lex_state = 75, .external_lex_state = 5}, + [4271] = {.lex_state = 75, .external_lex_state = 5}, + [4272] = {.lex_state = 75, .external_lex_state = 5}, + [4273] = {.lex_state = 75, .external_lex_state = 2}, + [4274] = {.lex_state = 75, .external_lex_state = 5}, + [4275] = {.lex_state = 75, .external_lex_state = 5}, + [4276] = {.lex_state = 75, .external_lex_state = 2}, + [4277] = {.lex_state = 75, .external_lex_state = 2}, + [4278] = {.lex_state = 75, .external_lex_state = 5}, + [4279] = {.lex_state = 75, .external_lex_state = 2}, + [4280] = {.lex_state = 75, .external_lex_state = 5}, + [4281] = {.lex_state = 75, .external_lex_state = 5}, + [4282] = {.lex_state = 75, .external_lex_state = 5}, + [4283] = {.lex_state = 75, .external_lex_state = 5}, + [4284] = {.lex_state = 75, .external_lex_state = 5}, + [4285] = {.lex_state = 75, .external_lex_state = 2}, + [4286] = {.lex_state = 75, .external_lex_state = 5}, + [4287] = {.lex_state = 75, .external_lex_state = 5}, + [4288] = {.lex_state = 75, .external_lex_state = 2}, + [4289] = {.lex_state = 75, .external_lex_state = 5}, + [4290] = {.lex_state = 75, .external_lex_state = 2}, + [4291] = {.lex_state = 75, .external_lex_state = 2}, + [4292] = {.lex_state = 75, .external_lex_state = 2}, + [4293] = {.lex_state = 75, .external_lex_state = 2}, + [4294] = {.lex_state = 75, .external_lex_state = 5}, + [4295] = {.lex_state = 75, .external_lex_state = 5}, + [4296] = {.lex_state = 75, .external_lex_state = 5}, + [4297] = {.lex_state = 75, .external_lex_state = 5}, + [4298] = {.lex_state = 75, .external_lex_state = 2}, + [4299] = {.lex_state = 75, .external_lex_state = 5}, + [4300] = {.lex_state = 75, .external_lex_state = 5}, + [4301] = {.lex_state = 75, .external_lex_state = 2}, + [4302] = {.lex_state = 75, .external_lex_state = 5}, + [4303] = {.lex_state = 75, .external_lex_state = 2}, + [4304] = {.lex_state = 75, .external_lex_state = 2}, + [4305] = {.lex_state = 75, .external_lex_state = 2}, + [4306] = {.lex_state = 75, .external_lex_state = 2}, + [4307] = {.lex_state = 75, .external_lex_state = 5}, + [4308] = {.lex_state = 75, .external_lex_state = 2}, + [4309] = {.lex_state = 75, .external_lex_state = 2}, + [4310] = {.lex_state = 75, .external_lex_state = 5}, + [4311] = {.lex_state = 75, .external_lex_state = 5}, + [4312] = {.lex_state = 75, .external_lex_state = 2}, + [4313] = {.lex_state = 75, .external_lex_state = 5}, + [4314] = {.lex_state = 75, .external_lex_state = 5}, + [4315] = {.lex_state = 75, .external_lex_state = 5}, + [4316] = {.lex_state = 75, .external_lex_state = 5}, + [4317] = {.lex_state = 75, .external_lex_state = 2}, + [4318] = {.lex_state = 75, .external_lex_state = 5}, + [4319] = {.lex_state = 75, .external_lex_state = 2}, + [4320] = {.lex_state = 75, .external_lex_state = 2}, + [4321] = {.lex_state = 75, .external_lex_state = 2}, + [4322] = {.lex_state = 75, .external_lex_state = 2}, + [4323] = {.lex_state = 75, .external_lex_state = 2}, + [4324] = {.lex_state = 75, .external_lex_state = 6}, + [4325] = {.lex_state = 75, .external_lex_state = 5}, + [4326] = {.lex_state = 75, .external_lex_state = 2}, + [4327] = {.lex_state = 75, .external_lex_state = 5}, + [4328] = {.lex_state = 75, .external_lex_state = 5}, + [4329] = {.lex_state = 75, .external_lex_state = 2}, + [4330] = {.lex_state = 75, .external_lex_state = 5}, + [4331] = {.lex_state = 75, .external_lex_state = 5}, + [4332] = {.lex_state = 75, .external_lex_state = 5}, + [4333] = {.lex_state = 75, .external_lex_state = 5}, + [4334] = {.lex_state = 75, .external_lex_state = 5}, + [4335] = {.lex_state = 75, .external_lex_state = 2}, + [4336] = {.lex_state = 75, .external_lex_state = 5}, + [4337] = {.lex_state = 75, .external_lex_state = 5}, + [4338] = {.lex_state = 75, .external_lex_state = 5}, + [4339] = {.lex_state = 75, .external_lex_state = 2}, + [4340] = {.lex_state = 75, .external_lex_state = 2}, + [4341] = {.lex_state = 75, .external_lex_state = 2}, + [4342] = {.lex_state = 75, .external_lex_state = 5}, + [4343] = {.lex_state = 75, .external_lex_state = 5}, + [4344] = {.lex_state = 75, .external_lex_state = 5}, + [4345] = {.lex_state = 75, .external_lex_state = 5}, + [4346] = {.lex_state = 75, .external_lex_state = 5}, + [4347] = {.lex_state = 75, .external_lex_state = 5}, + [4348] = {.lex_state = 75, .external_lex_state = 2}, + [4349] = {.lex_state = 75, .external_lex_state = 5}, + [4350] = {.lex_state = 8, .external_lex_state = 2}, + [4351] = {.lex_state = 8, .external_lex_state = 2}, + [4352] = {.lex_state = 75, .external_lex_state = 5}, + [4353] = {.lex_state = 75, .external_lex_state = 5}, + [4354] = {.lex_state = 75, .external_lex_state = 2}, + [4355] = {.lex_state = 75, .external_lex_state = 6}, + [4356] = {.lex_state = 75, .external_lex_state = 5}, + [4357] = {.lex_state = 75, .external_lex_state = 5}, + [4358] = {.lex_state = 75, .external_lex_state = 5}, + [4359] = {.lex_state = 75, .external_lex_state = 2}, + [4360] = {.lex_state = 75, .external_lex_state = 5}, + [4361] = {.lex_state = 75, .external_lex_state = 5}, + [4362] = {.lex_state = 75, .external_lex_state = 5}, + [4363] = {.lex_state = 75, .external_lex_state = 5}, + [4364] = {.lex_state = 75, .external_lex_state = 5}, + [4365] = {.lex_state = 75, .external_lex_state = 5}, + [4366] = {.lex_state = 75, .external_lex_state = 5}, + [4367] = {.lex_state = 75, .external_lex_state = 5}, + [4368] = {.lex_state = 75, .external_lex_state = 5}, + [4369] = {.lex_state = 75, .external_lex_state = 5}, + [4370] = {.lex_state = 75, .external_lex_state = 5}, + [4371] = {.lex_state = 75, .external_lex_state = 5}, + [4372] = {.lex_state = 75, .external_lex_state = 5}, + [4373] = {.lex_state = 7, .external_lex_state = 2}, + [4374] = {.lex_state = 75, .external_lex_state = 5}, + [4375] = {.lex_state = 75, .external_lex_state = 5}, + [4376] = {.lex_state = 75, .external_lex_state = 5}, + [4377] = {.lex_state = 75, .external_lex_state = 5}, + [4378] = {.lex_state = 75, .external_lex_state = 5}, + [4379] = {.lex_state = 75, .external_lex_state = 5}, + [4380] = {.lex_state = 16, .external_lex_state = 9}, + [4381] = {.lex_state = 16, .external_lex_state = 9}, + [4382] = {.lex_state = 75, .external_lex_state = 2}, + [4383] = {.lex_state = 75, .external_lex_state = 2}, + [4384] = {.lex_state = 75, .external_lex_state = 2}, + [4385] = {.lex_state = 75, .external_lex_state = 5}, + [4386] = {.lex_state = 75, .external_lex_state = 2}, + [4387] = {.lex_state = 75, .external_lex_state = 2}, + [4388] = {.lex_state = 75, .external_lex_state = 2}, + [4389] = {.lex_state = 7, .external_lex_state = 2}, + [4390] = {.lex_state = 12, .external_lex_state = 9}, + [4391] = {.lex_state = 75, .external_lex_state = 2}, + [4392] = {.lex_state = 16, .external_lex_state = 9}, + [4393] = {.lex_state = 12, .external_lex_state = 9}, + [4394] = {.lex_state = 12, .external_lex_state = 9}, + [4395] = {.lex_state = 16, .external_lex_state = 9}, + [4396] = {.lex_state = 16, .external_lex_state = 9}, + [4397] = {.lex_state = 75, .external_lex_state = 2}, + [4398] = {.lex_state = 75, .external_lex_state = 2}, + [4399] = {.lex_state = 2, .external_lex_state = 2}, + [4400] = {.lex_state = 2, .external_lex_state = 2}, + [4401] = {.lex_state = 2, .external_lex_state = 2}, + [4402] = {.lex_state = 12, .external_lex_state = 9}, + [4403] = {.lex_state = 75, .external_lex_state = 2}, + [4404] = {.lex_state = 12, .external_lex_state = 9}, + [4405] = {.lex_state = 75, .external_lex_state = 2}, + [4406] = {.lex_state = 75, .external_lex_state = 2}, + [4407] = {.lex_state = 75, .external_lex_state = 2}, + [4408] = {.lex_state = 75, .external_lex_state = 2}, + [4409] = {.lex_state = 75, .external_lex_state = 2}, + [4410] = {.lex_state = 75, .external_lex_state = 2}, + [4411] = {.lex_state = 16, .external_lex_state = 9}, + [4412] = {.lex_state = 12, .external_lex_state = 9}, + [4413] = {.lex_state = 75, .external_lex_state = 2}, + [4414] = {.lex_state = 75, .external_lex_state = 2}, + [4415] = {.lex_state = 75, .external_lex_state = 2}, + [4416] = {.lex_state = 75, .external_lex_state = 5}, + [4417] = {.lex_state = 75, .external_lex_state = 5}, + [4418] = {.lex_state = 75, .external_lex_state = 2}, + [4419] = {.lex_state = 75, .external_lex_state = 2}, + [4420] = {.lex_state = 75, .external_lex_state = 2}, + [4421] = {.lex_state = 7, .external_lex_state = 2}, + [4422] = {.lex_state = 75, .external_lex_state = 2}, + [4423] = {.lex_state = 75, .external_lex_state = 2}, + [4424] = {.lex_state = 75, .external_lex_state = 2}, + [4425] = {.lex_state = 75, .external_lex_state = 2}, + [4426] = {.lex_state = 75, .external_lex_state = 5}, + [4427] = {.lex_state = 75, .external_lex_state = 5}, + [4428] = {.lex_state = 75, .external_lex_state = 2}, + [4429] = {.lex_state = 75, .external_lex_state = 2}, + [4430] = {.lex_state = 75, .external_lex_state = 2}, + [4431] = {.lex_state = 75, .external_lex_state = 2}, + [4432] = {.lex_state = 75, .external_lex_state = 2}, + [4433] = {.lex_state = 75, .external_lex_state = 2}, + [4434] = {.lex_state = 75, .external_lex_state = 2}, + [4435] = {.lex_state = 75, .external_lex_state = 2}, + [4436] = {.lex_state = 75, .external_lex_state = 2}, + [4437] = {.lex_state = 75, .external_lex_state = 2}, + [4438] = {.lex_state = 75, .external_lex_state = 2}, + [4439] = {.lex_state = 75, .external_lex_state = 2}, + [4440] = {.lex_state = 75, .external_lex_state = 6}, + [4441] = {.lex_state = 75, .external_lex_state = 2}, + [4442] = {.lex_state = 75, .external_lex_state = 2}, + [4443] = {.lex_state = 16, .external_lex_state = 9}, + [4444] = {.lex_state = 75, .external_lex_state = 2}, + [4445] = {.lex_state = 13, .external_lex_state = 7}, + [4446] = {.lex_state = 75, .external_lex_state = 2}, + [4447] = {.lex_state = 2, .external_lex_state = 2}, + [4448] = {.lex_state = 75, .external_lex_state = 2}, + [4449] = {.lex_state = 75, .external_lex_state = 2}, + [4450] = {.lex_state = 75, .external_lex_state = 5}, + [4451] = {.lex_state = 75, .external_lex_state = 5}, + [4452] = {.lex_state = 16, .external_lex_state = 9}, + [4453] = {.lex_state = 12, .external_lex_state = 9}, + [4454] = {.lex_state = 75, .external_lex_state = 2}, + [4455] = {.lex_state = 75, .external_lex_state = 5}, + [4456] = {.lex_state = 16, .external_lex_state = 9}, + [4457] = {.lex_state = 75, .external_lex_state = 5}, + [4458] = {.lex_state = 75, .external_lex_state = 5}, + [4459] = {.lex_state = 75, .external_lex_state = 5}, + [4460] = {.lex_state = 75, .external_lex_state = 5}, + [4461] = {.lex_state = 75, .external_lex_state = 2}, + [4462] = {.lex_state = 75, .external_lex_state = 2}, + [4463] = {.lex_state = 75, .external_lex_state = 2}, + [4464] = {.lex_state = 75, .external_lex_state = 5}, + [4465] = {.lex_state = 12, .external_lex_state = 9}, + [4466] = {.lex_state = 16, .external_lex_state = 9}, + [4467] = {.lex_state = 75, .external_lex_state = 5}, + [4468] = {.lex_state = 75, .external_lex_state = 2}, + [4469] = {.lex_state = 75, .external_lex_state = 5}, + [4470] = {.lex_state = 75, .external_lex_state = 2}, + [4471] = {.lex_state = 12, .external_lex_state = 9}, + [4472] = {.lex_state = 75, .external_lex_state = 2}, + [4473] = {.lex_state = 75, .external_lex_state = 2}, + [4474] = {.lex_state = 75, .external_lex_state = 2}, + [4475] = {.lex_state = 75, .external_lex_state = 2}, + [4476] = {.lex_state = 12, .external_lex_state = 9}, + [4477] = {.lex_state = 75, .external_lex_state = 2}, + [4478] = {.lex_state = 16, .external_lex_state = 9}, + [4479] = {.lex_state = 75, .external_lex_state = 2}, + [4480] = {.lex_state = 75, .external_lex_state = 2}, + [4481] = {.lex_state = 75, .external_lex_state = 2}, + [4482] = {.lex_state = 16, .external_lex_state = 9}, + [4483] = {.lex_state = 75, .external_lex_state = 2}, + [4484] = {.lex_state = 75, .external_lex_state = 2}, + [4485] = {.lex_state = 2, .external_lex_state = 2}, + [4486] = {.lex_state = 75, .external_lex_state = 2}, + [4487] = {.lex_state = 13, .external_lex_state = 7}, + [4488] = {.lex_state = 75, .external_lex_state = 2}, + [4489] = {.lex_state = 75, .external_lex_state = 2}, + [4490] = {.lex_state = 75, .external_lex_state = 2}, + [4491] = {.lex_state = 75, .external_lex_state = 2}, + [4492] = {.lex_state = 75, .external_lex_state = 2}, + [4493] = {.lex_state = 12, .external_lex_state = 9}, + [4494] = {.lex_state = 12, .external_lex_state = 9}, + [4495] = {.lex_state = 16, .external_lex_state = 9}, + [4496] = {.lex_state = 16, .external_lex_state = 9}, + [4497] = {.lex_state = 75, .external_lex_state = 2}, + [4498] = {.lex_state = 75, .external_lex_state = 2}, + [4499] = {.lex_state = 75, .external_lex_state = 2}, + [4500] = {.lex_state = 75, .external_lex_state = 2}, + [4501] = {.lex_state = 75, .external_lex_state = 2}, + [4502] = {.lex_state = 75, .external_lex_state = 2}, + [4503] = {.lex_state = 75, .external_lex_state = 2}, + [4504] = {.lex_state = 75, .external_lex_state = 2}, + [4505] = {.lex_state = 75, .external_lex_state = 2}, + [4506] = {.lex_state = 75, .external_lex_state = 5}, + [4507] = {.lex_state = 75, .external_lex_state = 2}, + [4508] = {.lex_state = 75, .external_lex_state = 2}, + [4509] = {.lex_state = 12, .external_lex_state = 9}, + [4510] = {.lex_state = 75, .external_lex_state = 2}, + [4511] = {.lex_state = 16, .external_lex_state = 9}, + [4512] = {.lex_state = 12, .external_lex_state = 9}, + [4513] = {.lex_state = 12, .external_lex_state = 9}, + [4514] = {.lex_state = 75, .external_lex_state = 2}, + [4515] = {.lex_state = 75, .external_lex_state = 5}, + [4516] = {.lex_state = 75, .external_lex_state = 5}, + [4517] = {.lex_state = 75, .external_lex_state = 5}, + [4518] = {.lex_state = 75, .external_lex_state = 5}, + [4519] = {.lex_state = 75, .external_lex_state = 5}, + [4520] = {.lex_state = 75, .external_lex_state = 5}, + [4521] = {.lex_state = 75, .external_lex_state = 5}, + [4522] = {.lex_state = 75, .external_lex_state = 5}, + [4523] = {.lex_state = 75, .external_lex_state = 2}, + [4524] = {.lex_state = 75, .external_lex_state = 2}, + [4525] = {.lex_state = 75, .external_lex_state = 5}, + [4526] = {.lex_state = 75, .external_lex_state = 5}, + [4527] = {.lex_state = 75, .external_lex_state = 5}, + [4528] = {.lex_state = 75, .external_lex_state = 5}, + [4529] = {.lex_state = 75, .external_lex_state = 5}, + [4530] = {.lex_state = 75, .external_lex_state = 5}, + [4531] = {.lex_state = 75, .external_lex_state = 2}, + [4532] = {.lex_state = 75, .external_lex_state = 5}, + [4533] = {.lex_state = 75, .external_lex_state = 2}, + [4534] = {.lex_state = 75, .external_lex_state = 5}, + [4535] = {.lex_state = 75, .external_lex_state = 5}, + [4536] = {.lex_state = 75, .external_lex_state = 5}, + [4537] = {.lex_state = 75, .external_lex_state = 2}, + [4538] = {.lex_state = 75, .external_lex_state = 5}, + [4539] = {.lex_state = 75, .external_lex_state = 5}, + [4540] = {.lex_state = 75, .external_lex_state = 2}, + [4541] = {.lex_state = 75, .external_lex_state = 2}, + [4542] = {.lex_state = 75, .external_lex_state = 2}, + [4543] = {.lex_state = 75, .external_lex_state = 2}, + [4544] = {.lex_state = 75, .external_lex_state = 2}, + [4545] = {.lex_state = 75, .external_lex_state = 2}, + [4546] = {.lex_state = 75, .external_lex_state = 5}, + [4547] = {.lex_state = 75, .external_lex_state = 5}, + [4548] = {.lex_state = 75, .external_lex_state = 5}, + [4549] = {.lex_state = 75, .external_lex_state = 5}, + [4550] = {.lex_state = 75, .external_lex_state = 5}, + [4551] = {.lex_state = 75, .external_lex_state = 5}, + [4552] = {.lex_state = 75, .external_lex_state = 2}, + [4553] = {.lex_state = 75, .external_lex_state = 2}, + [4554] = {.lex_state = 75, .external_lex_state = 2}, + [4555] = {.lex_state = 75, .external_lex_state = 2}, + [4556] = {.lex_state = 75, .external_lex_state = 5}, + [4557] = {.lex_state = 75, .external_lex_state = 5}, + [4558] = {.lex_state = 75, .external_lex_state = 5}, + [4559] = {.lex_state = 75, .external_lex_state = 5}, + [4560] = {.lex_state = 75, .external_lex_state = 5}, + [4561] = {.lex_state = 75, .external_lex_state = 5}, + [4562] = {.lex_state = 75, .external_lex_state = 5}, + [4563] = {.lex_state = 75, .external_lex_state = 5}, + [4564] = {.lex_state = 75, .external_lex_state = 5}, + [4565] = {.lex_state = 75, .external_lex_state = 5}, + [4566] = {.lex_state = 75, .external_lex_state = 5}, + [4567] = {.lex_state = 75, .external_lex_state = 5}, + [4568] = {.lex_state = 75, .external_lex_state = 2}, + [4569] = {.lex_state = 75, .external_lex_state = 5}, + [4570] = {.lex_state = 75, .external_lex_state = 5}, + [4571] = {.lex_state = 75, .external_lex_state = 5}, + [4572] = {.lex_state = 75, .external_lex_state = 5}, + [4573] = {.lex_state = 75, .external_lex_state = 5}, + [4574] = {.lex_state = 75, .external_lex_state = 5}, + [4575] = {.lex_state = 75, .external_lex_state = 5}, + [4576] = {.lex_state = 75, .external_lex_state = 2}, + [4577] = {.lex_state = 75, .external_lex_state = 5}, + [4578] = {.lex_state = 75, .external_lex_state = 2}, + [4579] = {.lex_state = 75, .external_lex_state = 5}, + [4580] = {.lex_state = 75, .external_lex_state = 5}, + [4581] = {.lex_state = 75, .external_lex_state = 5}, + [4582] = {.lex_state = 75, .external_lex_state = 5}, + [4583] = {.lex_state = 75, .external_lex_state = 5}, + [4584] = {.lex_state = 75, .external_lex_state = 5}, + [4585] = {.lex_state = 75, .external_lex_state = 5}, + [4586] = {.lex_state = 75, .external_lex_state = 2}, + [4587] = {.lex_state = 75, .external_lex_state = 2}, + [4588] = {.lex_state = 75, .external_lex_state = 2}, + [4589] = {.lex_state = 75, .external_lex_state = 5}, + [4590] = {.lex_state = 75, .external_lex_state = 2}, + [4591] = {.lex_state = 75, .external_lex_state = 2}, + [4592] = {.lex_state = 75, .external_lex_state = 5}, + [4593] = {.lex_state = 75, .external_lex_state = 5}, + [4594] = {.lex_state = 75, .external_lex_state = 2}, + [4595] = {.lex_state = 75, .external_lex_state = 2}, + [4596] = {.lex_state = 75, .external_lex_state = 2}, + [4597] = {.lex_state = 75, .external_lex_state = 2}, + [4598] = {.lex_state = 75, .external_lex_state = 5}, + [4599] = {.lex_state = 75, .external_lex_state = 2}, + [4600] = {.lex_state = 75, .external_lex_state = 5}, + [4601] = {.lex_state = 75, .external_lex_state = 5}, + [4602] = {.lex_state = 75, .external_lex_state = 2}, + [4603] = {.lex_state = 75, .external_lex_state = 5}, + [4604] = {.lex_state = 75, .external_lex_state = 5}, + [4605] = {.lex_state = 75, .external_lex_state = 5}, + [4606] = {.lex_state = 75, .external_lex_state = 5}, + [4607] = {.lex_state = 75, .external_lex_state = 5}, + [4608] = {.lex_state = 75, .external_lex_state = 5}, + [4609] = {.lex_state = 75, .external_lex_state = 5}, + [4610] = {.lex_state = 75, .external_lex_state = 5}, + [4611] = {.lex_state = 75, .external_lex_state = 5}, + [4612] = {.lex_state = 75, .external_lex_state = 5}, + [4613] = {.lex_state = 75, .external_lex_state = 5}, + [4614] = {.lex_state = 75, .external_lex_state = 5}, + [4615] = {.lex_state = 75, .external_lex_state = 5}, + [4616] = {.lex_state = 75, .external_lex_state = 5}, + [4617] = {.lex_state = 75, .external_lex_state = 5}, + [4618] = {.lex_state = 75, .external_lex_state = 5}, + [4619] = {.lex_state = 75, .external_lex_state = 5}, + [4620] = {.lex_state = 75, .external_lex_state = 2}, + [4621] = {.lex_state = 75, .external_lex_state = 2}, + [4622] = {.lex_state = 75, .external_lex_state = 2}, + [4623] = {.lex_state = 75, .external_lex_state = 5}, + [4624] = {.lex_state = 75, .external_lex_state = 5}, + [4625] = {.lex_state = 75, .external_lex_state = 5}, + [4626] = {.lex_state = 75, .external_lex_state = 5}, + [4627] = {.lex_state = 75, .external_lex_state = 5}, + [4628] = {.lex_state = 75, .external_lex_state = 5}, + [4629] = {.lex_state = 75, .external_lex_state = 2}, + [4630] = {.lex_state = 75, .external_lex_state = 5}, + [4631] = {.lex_state = 75, .external_lex_state = 5}, + [4632] = {.lex_state = 75, .external_lex_state = 5}, + [4633] = {.lex_state = 75, .external_lex_state = 5}, + [4634] = {.lex_state = 75, .external_lex_state = 5}, + [4635] = {.lex_state = 75, .external_lex_state = 5}, + [4636] = {.lex_state = 75, .external_lex_state = 2}, + [4637] = {.lex_state = 75, .external_lex_state = 5}, + [4638] = {.lex_state = 75, .external_lex_state = 2}, + [4639] = {.lex_state = 75, .external_lex_state = 2}, + [4640] = {.lex_state = 75, .external_lex_state = 5}, + [4641] = {.lex_state = 75, .external_lex_state = 5}, + [4642] = {.lex_state = 75, .external_lex_state = 5}, + [4643] = {.lex_state = 2, .external_lex_state = 2}, + [4644] = {.lex_state = 75, .external_lex_state = 2}, + [4645] = {.lex_state = 75, .external_lex_state = 5}, + [4646] = {.lex_state = 75, .external_lex_state = 2}, + [4647] = {.lex_state = 75, .external_lex_state = 2}, + [4648] = {.lex_state = 75, .external_lex_state = 5}, + [4649] = {.lex_state = 75, .external_lex_state = 2}, + [4650] = {.lex_state = 75, .external_lex_state = 2}, + [4651] = {.lex_state = 2, .external_lex_state = 2}, + [4652] = {.lex_state = 75, .external_lex_state = 5}, + [4653] = {.lex_state = 75, .external_lex_state = 2}, + [4654] = {.lex_state = 75, .external_lex_state = 2}, + [4655] = {.lex_state = 75, .external_lex_state = 5}, + [4656] = {.lex_state = 75, .external_lex_state = 2}, + [4657] = {.lex_state = 75, .external_lex_state = 5}, + [4658] = {.lex_state = 75, .external_lex_state = 5}, + [4659] = {.lex_state = 75, .external_lex_state = 5}, + [4660] = {.lex_state = 75, .external_lex_state = 5}, + [4661] = {.lex_state = 75, .external_lex_state = 2}, + [4662] = {.lex_state = 75, .external_lex_state = 5}, + [4663] = {.lex_state = 75, .external_lex_state = 2}, + [4664] = {.lex_state = 75, .external_lex_state = 5}, + [4665] = {.lex_state = 75, .external_lex_state = 5}, + [4666] = {.lex_state = 75, .external_lex_state = 5}, + [4667] = {.lex_state = 75, .external_lex_state = 5}, + [4668] = {.lex_state = 75, .external_lex_state = 2}, + [4669] = {.lex_state = 75, .external_lex_state = 5}, + [4670] = {.lex_state = 75, .external_lex_state = 5}, + [4671] = {.lex_state = 75, .external_lex_state = 2}, + [4672] = {.lex_state = 75, .external_lex_state = 2}, + [4673] = {.lex_state = 75, .external_lex_state = 5}, + [4674] = {.lex_state = 75, .external_lex_state = 5}, + [4675] = {.lex_state = 75, .external_lex_state = 5}, + [4676] = {.lex_state = 75, .external_lex_state = 5}, + [4677] = {.lex_state = 75, .external_lex_state = 5}, + [4678] = {.lex_state = 75, .external_lex_state = 2}, + [4679] = {.lex_state = 75, .external_lex_state = 5}, + [4680] = {.lex_state = 75, .external_lex_state = 5}, + [4681] = {.lex_state = 75, .external_lex_state = 2}, + [4682] = {.lex_state = 75, .external_lex_state = 5}, + [4683] = {.lex_state = 2, .external_lex_state = 2}, + [4684] = {.lex_state = 75, .external_lex_state = 2}, + [4685] = {.lex_state = 75, .external_lex_state = 2}, + [4686] = {.lex_state = 75, .external_lex_state = 2}, + [4687] = {.lex_state = 75, .external_lex_state = 2}, + [4688] = {.lex_state = 2, .external_lex_state = 2}, + [4689] = {.lex_state = 75, .external_lex_state = 5}, + [4690] = {.lex_state = 75, .external_lex_state = 5}, + [4691] = {.lex_state = 75, .external_lex_state = 5}, + [4692] = {.lex_state = 75, .external_lex_state = 2}, + [4693] = {.lex_state = 75, .external_lex_state = 2}, + [4694] = {.lex_state = 75, .external_lex_state = 5}, + [4695] = {.lex_state = 75, .external_lex_state = 2}, + [4696] = {.lex_state = 75, .external_lex_state = 5}, + [4697] = {.lex_state = 75, .external_lex_state = 2}, + [4698] = {.lex_state = 75, .external_lex_state = 2}, + [4699] = {.lex_state = 75, .external_lex_state = 5}, + [4700] = {.lex_state = 75, .external_lex_state = 2}, + [4701] = {.lex_state = 75, .external_lex_state = 5}, + [4702] = {.lex_state = 75, .external_lex_state = 5}, + [4703] = {.lex_state = 75, .external_lex_state = 5}, + [4704] = {.lex_state = 75, .external_lex_state = 5}, + [4705] = {.lex_state = 75, .external_lex_state = 5}, + [4706] = {.lex_state = 75, .external_lex_state = 5}, + [4707] = {.lex_state = 75, .external_lex_state = 5}, + [4708] = {.lex_state = 75, .external_lex_state = 2}, + [4709] = {.lex_state = 75, .external_lex_state = 5}, + [4710] = {.lex_state = 75, .external_lex_state = 5}, + [4711] = {.lex_state = 75, .external_lex_state = 5}, + [4712] = {.lex_state = 75, .external_lex_state = 2}, + [4713] = {.lex_state = 75, .external_lex_state = 2}, + [4714] = {.lex_state = 75, .external_lex_state = 2}, + [4715] = {.lex_state = 75, .external_lex_state = 5}, + [4716] = {.lex_state = 75, .external_lex_state = 2}, + [4717] = {.lex_state = 75, .external_lex_state = 5}, + [4718] = {.lex_state = 75, .external_lex_state = 5}, + [4719] = {.lex_state = 75, .external_lex_state = 5}, + [4720] = {.lex_state = 75, .external_lex_state = 5}, + [4721] = {.lex_state = 75, .external_lex_state = 2}, + [4722] = {.lex_state = 75, .external_lex_state = 5}, + [4723] = {.lex_state = 75, .external_lex_state = 5}, + [4724] = {.lex_state = 75, .external_lex_state = 5}, + [4725] = {.lex_state = 75, .external_lex_state = 5}, + [4726] = {.lex_state = 75, .external_lex_state = 5}, + [4727] = {.lex_state = 75, .external_lex_state = 5}, + [4728] = {.lex_state = 75, .external_lex_state = 5}, + [4729] = {.lex_state = 75, .external_lex_state = 5}, + [4730] = {.lex_state = 75, .external_lex_state = 2}, + [4731] = {.lex_state = 75, .external_lex_state = 5}, + [4732] = {.lex_state = 75, .external_lex_state = 5}, + [4733] = {.lex_state = 75, .external_lex_state = 2}, + [4734] = {.lex_state = 75, .external_lex_state = 2}, + [4735] = {.lex_state = 75, .external_lex_state = 2}, + [4736] = {.lex_state = 75, .external_lex_state = 2}, + [4737] = {.lex_state = 75, .external_lex_state = 5}, + [4738] = {.lex_state = 75, .external_lex_state = 5}, + [4739] = {.lex_state = 75, .external_lex_state = 5}, + [4740] = {.lex_state = 75, .external_lex_state = 2}, + [4741] = {.lex_state = 75, .external_lex_state = 5}, + [4742] = {.lex_state = 75, .external_lex_state = 5}, + [4743] = {.lex_state = 75, .external_lex_state = 5}, + [4744] = {.lex_state = 75, .external_lex_state = 2}, + [4745] = {.lex_state = 75, .external_lex_state = 2}, + [4746] = {.lex_state = 75, .external_lex_state = 2}, + [4747] = {.lex_state = 75, .external_lex_state = 5}, + [4748] = {.lex_state = 75, .external_lex_state = 5}, + [4749] = {.lex_state = 75, .external_lex_state = 5}, + [4750] = {.lex_state = 75, .external_lex_state = 5}, + [4751] = {.lex_state = 75, .external_lex_state = 5}, + [4752] = {.lex_state = 75, .external_lex_state = 5}, + [4753] = {.lex_state = 75, .external_lex_state = 5}, + [4754] = {.lex_state = 75, .external_lex_state = 5}, + [4755] = {.lex_state = 75, .external_lex_state = 5}, + [4756] = {.lex_state = 75, .external_lex_state = 5}, + [4757] = {.lex_state = 75, .external_lex_state = 5}, + [4758] = {.lex_state = 75, .external_lex_state = 5}, + [4759] = {.lex_state = 75, .external_lex_state = 5}, + [4760] = {.lex_state = 75, .external_lex_state = 5}, + [4761] = {.lex_state = 75, .external_lex_state = 5}, + [4762] = {.lex_state = 75, .external_lex_state = 5}, + [4763] = {.lex_state = 75, .external_lex_state = 5}, + [4764] = {.lex_state = 75, .external_lex_state = 5}, + [4765] = {.lex_state = 75, .external_lex_state = 5}, + [4766] = {.lex_state = 75, .external_lex_state = 5}, + [4767] = {.lex_state = 75, .external_lex_state = 5}, + [4768] = {.lex_state = 75, .external_lex_state = 5}, + [4769] = {.lex_state = 75, .external_lex_state = 5}, + [4770] = {.lex_state = 75, .external_lex_state = 5}, + [4771] = {.lex_state = 75, .external_lex_state = 5}, + [4772] = {.lex_state = 75, .external_lex_state = 5}, + [4773] = {.lex_state = 75, .external_lex_state = 5}, + [4774] = {.lex_state = 75, .external_lex_state = 5}, + [4775] = {.lex_state = 75, .external_lex_state = 5}, + [4776] = {.lex_state = 75, .external_lex_state = 5}, + [4777] = {.lex_state = 75, .external_lex_state = 5}, + [4778] = {.lex_state = 75, .external_lex_state = 5}, + [4779] = {.lex_state = 75, .external_lex_state = 5}, + [4780] = {.lex_state = 2, .external_lex_state = 2}, + [4781] = {.lex_state = 75, .external_lex_state = 5}, + [4782] = {.lex_state = 75, .external_lex_state = 5}, + [4783] = {.lex_state = 75, .external_lex_state = 2}, + [4784] = {.lex_state = 75, .external_lex_state = 2}, + [4785] = {.lex_state = 75, .external_lex_state = 2}, + [4786] = {.lex_state = 75, .external_lex_state = 5}, + [4787] = {.lex_state = 75, .external_lex_state = 2}, + [4788] = {.lex_state = 75, .external_lex_state = 5}, + [4789] = {.lex_state = 75, .external_lex_state = 2}, + [4790] = {.lex_state = 75, .external_lex_state = 2}, + [4791] = {.lex_state = 75, .external_lex_state = 5}, + [4792] = {.lex_state = 75, .external_lex_state = 2}, + [4793] = {.lex_state = 75, .external_lex_state = 5}, + [4794] = {.lex_state = 75, .external_lex_state = 5}, + [4795] = {.lex_state = 75, .external_lex_state = 5}, + [4796] = {.lex_state = 75, .external_lex_state = 5}, + [4797] = {.lex_state = 75, .external_lex_state = 2}, + [4798] = {.lex_state = 75, .external_lex_state = 5}, + [4799] = {.lex_state = 75, .external_lex_state = 5}, + [4800] = {.lex_state = 75, .external_lex_state = 5}, + [4801] = {.lex_state = 75, .external_lex_state = 5}, + [4802] = {.lex_state = 75, .external_lex_state = 2}, + [4803] = {.lex_state = 75, .external_lex_state = 5}, + [4804] = {.lex_state = 75, .external_lex_state = 5}, + [4805] = {.lex_state = 75, .external_lex_state = 5}, + [4806] = {.lex_state = 75, .external_lex_state = 2}, + [4807] = {.lex_state = 75, .external_lex_state = 5}, + [4808] = {.lex_state = 75, .external_lex_state = 2}, + [4809] = {.lex_state = 75, .external_lex_state = 5}, + [4810] = {.lex_state = 75, .external_lex_state = 2}, + [4811] = {.lex_state = 75, .external_lex_state = 5}, + [4812] = {.lex_state = 75, .external_lex_state = 2}, + [4813] = {.lex_state = 75, .external_lex_state = 5}, + [4814] = {.lex_state = 75, .external_lex_state = 2}, + [4815] = {.lex_state = 75, .external_lex_state = 2}, + [4816] = {.lex_state = 75, .external_lex_state = 5}, + [4817] = {.lex_state = 75, .external_lex_state = 5}, + [4818] = {.lex_state = 75, .external_lex_state = 5}, + [4819] = {.lex_state = 75, .external_lex_state = 5}, + [4820] = {.lex_state = 75, .external_lex_state = 5}, + [4821] = {.lex_state = 75, .external_lex_state = 5}, + [4822] = {.lex_state = 75, .external_lex_state = 5}, + [4823] = {.lex_state = 75, .external_lex_state = 5}, + [4824] = {.lex_state = 75, .external_lex_state = 5}, + [4825] = {.lex_state = 75, .external_lex_state = 5}, + [4826] = {.lex_state = 75, .external_lex_state = 5}, + [4827] = {.lex_state = 75, .external_lex_state = 5}, + [4828] = {.lex_state = 75, .external_lex_state = 5}, + [4829] = {.lex_state = 75, .external_lex_state = 2}, + [4830] = {.lex_state = 75, .external_lex_state = 5}, + [4831] = {.lex_state = 75, .external_lex_state = 5}, + [4832] = {.lex_state = 75, .external_lex_state = 5}, + [4833] = {.lex_state = 75, .external_lex_state = 5}, + [4834] = {.lex_state = 75, .external_lex_state = 5}, + [4835] = {.lex_state = 75, .external_lex_state = 5}, + [4836] = {.lex_state = 75, .external_lex_state = 5}, + [4837] = {.lex_state = 75, .external_lex_state = 5}, + [4838] = {.lex_state = 75, .external_lex_state = 5}, + [4839] = {.lex_state = 75, .external_lex_state = 5}, + [4840] = {.lex_state = 75, .external_lex_state = 5}, + [4841] = {.lex_state = 75, .external_lex_state = 5}, + [4842] = {.lex_state = 75, .external_lex_state = 5}, + [4843] = {.lex_state = 75, .external_lex_state = 5}, + [4844] = {.lex_state = 75, .external_lex_state = 5}, + [4845] = {.lex_state = 75, .external_lex_state = 5}, + [4846] = {.lex_state = 75, .external_lex_state = 5}, + [4847] = {.lex_state = 75, .external_lex_state = 5}, + [4848] = {.lex_state = 75, .external_lex_state = 5}, + [4849] = {.lex_state = 75, .external_lex_state = 5}, + [4850] = {.lex_state = 75, .external_lex_state = 5}, + [4851] = {.lex_state = 75, .external_lex_state = 5}, + [4852] = {.lex_state = 75, .external_lex_state = 5}, + [4853] = {.lex_state = 75, .external_lex_state = 5}, + [4854] = {.lex_state = 75, .external_lex_state = 5}, + [4855] = {.lex_state = 75, .external_lex_state = 5}, + [4856] = {.lex_state = 75, .external_lex_state = 5}, + [4857] = {.lex_state = 75, .external_lex_state = 5}, + [4858] = {.lex_state = 75, .external_lex_state = 5}, + [4859] = {.lex_state = 75, .external_lex_state = 5}, + [4860] = {.lex_state = 75, .external_lex_state = 5}, + [4861] = {.lex_state = 75, .external_lex_state = 5}, + [4862] = {.lex_state = 75, .external_lex_state = 5}, + [4863] = {.lex_state = 75, .external_lex_state = 5}, + [4864] = {.lex_state = 75, .external_lex_state = 5}, + [4865] = {.lex_state = 75, .external_lex_state = 5}, + [4866] = {.lex_state = 75, .external_lex_state = 5}, + [4867] = {.lex_state = 75, .external_lex_state = 5}, + [4868] = {.lex_state = 75, .external_lex_state = 5}, + [4869] = {.lex_state = 75, .external_lex_state = 2}, + [4870] = {.lex_state = 75, .external_lex_state = 5}, + [4871] = {.lex_state = 75, .external_lex_state = 5}, + [4872] = {.lex_state = 75, .external_lex_state = 5}, + [4873] = {.lex_state = 75, .external_lex_state = 5}, + [4874] = {.lex_state = 75, .external_lex_state = 5}, + [4875] = {.lex_state = 75, .external_lex_state = 5}, + [4876] = {.lex_state = 75, .external_lex_state = 5}, + [4877] = {.lex_state = 75, .external_lex_state = 5}, + [4878] = {.lex_state = 75, .external_lex_state = 2}, + [4879] = {.lex_state = 75, .external_lex_state = 2}, + [4880] = {.lex_state = 75, .external_lex_state = 5}, + [4881] = {.lex_state = 75, .external_lex_state = 2}, + [4882] = {.lex_state = 75, .external_lex_state = 5}, + [4883] = {.lex_state = 75, .external_lex_state = 5}, + [4884] = {.lex_state = 75, .external_lex_state = 5}, + [4885] = {.lex_state = 75, .external_lex_state = 5}, + [4886] = {.lex_state = 75, .external_lex_state = 5}, + [4887] = {.lex_state = 75, .external_lex_state = 2}, + [4888] = {.lex_state = 75, .external_lex_state = 5}, + [4889] = {.lex_state = 75, .external_lex_state = 5}, + [4890] = {.lex_state = 75, .external_lex_state = 2}, + [4891] = {.lex_state = 2, .external_lex_state = 2}, + [4892] = {.lex_state = 75, .external_lex_state = 5}, + [4893] = {.lex_state = 75, .external_lex_state = 5}, + [4894] = {.lex_state = 75, .external_lex_state = 2}, + [4895] = {.lex_state = 75, .external_lex_state = 5}, + [4896] = {.lex_state = 75, .external_lex_state = 2}, + [4897] = {.lex_state = 75, .external_lex_state = 2}, + [4898] = {.lex_state = 75, .external_lex_state = 5}, + [4899] = {.lex_state = 75, .external_lex_state = 2}, + [4900] = {.lex_state = 75, .external_lex_state = 5}, + [4901] = {.lex_state = 75, .external_lex_state = 5}, + [4902] = {.lex_state = 75, .external_lex_state = 5}, + [4903] = {.lex_state = 75, .external_lex_state = 5}, + [4904] = {.lex_state = 75, .external_lex_state = 5}, + [4905] = {.lex_state = 75, .external_lex_state = 2}, + [4906] = {.lex_state = 75, .external_lex_state = 5}, + [4907] = {.lex_state = 75, .external_lex_state = 5}, + [4908] = {.lex_state = 75, .external_lex_state = 2}, + [4909] = {.lex_state = 75, .external_lex_state = 5}, + [4910] = {.lex_state = 75, .external_lex_state = 2}, + [4911] = {.lex_state = 75, .external_lex_state = 5}, + [4912] = {.lex_state = 75, .external_lex_state = 5}, + [4913] = {.lex_state = 75, .external_lex_state = 5}, + [4914] = {.lex_state = 75, .external_lex_state = 5}, + [4915] = {.lex_state = 75, .external_lex_state = 5}, + [4916] = {.lex_state = 75, .external_lex_state = 5}, + [4917] = {.lex_state = 75, .external_lex_state = 5}, + [4918] = {.lex_state = 75, .external_lex_state = 5}, + [4919] = {.lex_state = 75, .external_lex_state = 5}, + [4920] = {.lex_state = 75, .external_lex_state = 5}, + [4921] = {.lex_state = 75, .external_lex_state = 5}, + [4922] = {.lex_state = 75, .external_lex_state = 5}, + [4923] = {.lex_state = 75, .external_lex_state = 5}, + [4924] = {.lex_state = 75, .external_lex_state = 5}, + [4925] = {.lex_state = 75, .external_lex_state = 2}, + [4926] = {.lex_state = 75, .external_lex_state = 5}, + [4927] = {.lex_state = 75, .external_lex_state = 2}, + [4928] = {.lex_state = 75, .external_lex_state = 5}, + [4929] = {.lex_state = 75, .external_lex_state = 5}, + [4930] = {.lex_state = 75, .external_lex_state = 2}, + [4931] = {.lex_state = 75, .external_lex_state = 5}, + [4932] = {.lex_state = 75, .external_lex_state = 5}, + [4933] = {.lex_state = 75, .external_lex_state = 5}, + [4934] = {.lex_state = 75, .external_lex_state = 5}, + [4935] = {.lex_state = 75, .external_lex_state = 2}, + [4936] = {.lex_state = 75, .external_lex_state = 5}, + [4937] = {.lex_state = 75, .external_lex_state = 5}, + [4938] = {.lex_state = 75, .external_lex_state = 5}, + [4939] = {.lex_state = 75, .external_lex_state = 2}, + [4940] = {.lex_state = 75, .external_lex_state = 5}, + [4941] = {.lex_state = 75, .external_lex_state = 5}, + [4942] = {.lex_state = 75, .external_lex_state = 5}, + [4943] = {.lex_state = 75, .external_lex_state = 5}, + [4944] = {.lex_state = 75, .external_lex_state = 5}, + [4945] = {.lex_state = 75, .external_lex_state = 5}, + [4946] = {.lex_state = 75, .external_lex_state = 2}, + [4947] = {.lex_state = 75, .external_lex_state = 5}, + [4948] = {.lex_state = 75, .external_lex_state = 5}, + [4949] = {.lex_state = 75, .external_lex_state = 2}, + [4950] = {.lex_state = 75, .external_lex_state = 2}, + [4951] = {.lex_state = 75, .external_lex_state = 5}, + [4952] = {.lex_state = 13, .external_lex_state = 8}, + [4953] = {.lex_state = 75, .external_lex_state = 5}, + [4954] = {.lex_state = 75, .external_lex_state = 5}, + [4955] = {.lex_state = 75, .external_lex_state = 2}, + [4956] = {.lex_state = 75, .external_lex_state = 2}, + [4957] = {.lex_state = 75, .external_lex_state = 5}, + [4958] = {.lex_state = 75, .external_lex_state = 2}, + [4959] = {.lex_state = 75, .external_lex_state = 2}, + [4960] = {.lex_state = 75, .external_lex_state = 2}, + [4961] = {.lex_state = 75, .external_lex_state = 2}, + [4962] = {.lex_state = 75, .external_lex_state = 2}, + [4963] = {.lex_state = 75, .external_lex_state = 5}, + [4964] = {.lex_state = 75, .external_lex_state = 2}, + [4965] = {.lex_state = 75, .external_lex_state = 2}, + [4966] = {.lex_state = 75, .external_lex_state = 2}, + [4967] = {.lex_state = 75, .external_lex_state = 2}, + [4968] = {.lex_state = 75, .external_lex_state = 5}, + [4969] = {.lex_state = 75, .external_lex_state = 2}, + [4970] = {.lex_state = 75, .external_lex_state = 5}, + [4971] = {.lex_state = 75, .external_lex_state = 2}, + [4972] = {.lex_state = 75, .external_lex_state = 2}, + [4973] = {.lex_state = 75, .external_lex_state = 2}, + [4974] = {.lex_state = 75, .external_lex_state = 2}, + [4975] = {.lex_state = 75, .external_lex_state = 2}, + [4976] = {.lex_state = 75, .external_lex_state = 5}, + [4977] = {.lex_state = 75, .external_lex_state = 2}, + [4978] = {.lex_state = 75, .external_lex_state = 5}, + [4979] = {.lex_state = 75, .external_lex_state = 5}, + [4980] = {.lex_state = 75, .external_lex_state = 2}, + [4981] = {.lex_state = 75, .external_lex_state = 2}, + [4982] = {.lex_state = 75, .external_lex_state = 2}, + [4983] = {.lex_state = 75, .external_lex_state = 5}, + [4984] = {.lex_state = 75, .external_lex_state = 5}, + [4985] = {.lex_state = 75, .external_lex_state = 5}, + [4986] = {.lex_state = 75, .external_lex_state = 5}, + [4987] = {.lex_state = 75, .external_lex_state = 2}, + [4988] = {.lex_state = 75, .external_lex_state = 5}, + [4989] = {.lex_state = 75, .external_lex_state = 2}, + [4990] = {.lex_state = 75, .external_lex_state = 2}, + [4991] = {.lex_state = 75, .external_lex_state = 5}, + [4992] = {.lex_state = 75, .external_lex_state = 2}, + [4993] = {.lex_state = 75, .external_lex_state = 2}, + [4994] = {.lex_state = 75, .external_lex_state = 2}, + [4995] = {.lex_state = 75, .external_lex_state = 5}, + [4996] = {.lex_state = 75, .external_lex_state = 2}, + [4997] = {.lex_state = 75, .external_lex_state = 2}, + [4998] = {.lex_state = 75, .external_lex_state = 2}, + [4999] = {.lex_state = 75, .external_lex_state = 2}, + [5000] = {.lex_state = 75, .external_lex_state = 2}, + [5001] = {.lex_state = 75, .external_lex_state = 2}, + [5002] = {.lex_state = 75, .external_lex_state = 5}, + [5003] = {.lex_state = 75, .external_lex_state = 2}, + [5004] = {.lex_state = 75, .external_lex_state = 2}, + [5005] = {.lex_state = 75, .external_lex_state = 2}, + [5006] = {.lex_state = 75, .external_lex_state = 2}, + [5007] = {.lex_state = 75, .external_lex_state = 5}, + [5008] = {.lex_state = 75, .external_lex_state = 2}, + [5009] = {.lex_state = 75, .external_lex_state = 5}, + [5010] = {.lex_state = 75, .external_lex_state = 5}, + [5011] = {.lex_state = 75, .external_lex_state = 2}, + [5012] = {.lex_state = 75, .external_lex_state = 5}, + [5013] = {.lex_state = 75, .external_lex_state = 2}, + [5014] = {.lex_state = 75, .external_lex_state = 2}, + [5015] = {.lex_state = 75, .external_lex_state = 5}, + [5016] = {.lex_state = 75, .external_lex_state = 2}, + [5017] = {.lex_state = 75, .external_lex_state = 5}, + [5018] = {.lex_state = 75, .external_lex_state = 2}, + [5019] = {.lex_state = 75, .external_lex_state = 2}, + [5020] = {.lex_state = 75, .external_lex_state = 2}, + [5021] = {.lex_state = 75, .external_lex_state = 5}, + [5022] = {.lex_state = 75, .external_lex_state = 2}, + [5023] = {.lex_state = 75, .external_lex_state = 2}, + [5024] = {.lex_state = 75, .external_lex_state = 5}, + [5025] = {.lex_state = 75, .external_lex_state = 5}, + [5026] = {.lex_state = 75, .external_lex_state = 2}, + [5027] = {.lex_state = 75, .external_lex_state = 2}, + [5028] = {.lex_state = 75, .external_lex_state = 5}, + [5029] = {.lex_state = 75, .external_lex_state = 2}, + [5030] = {.lex_state = 75, .external_lex_state = 2}, + [5031] = {.lex_state = 75, .external_lex_state = 5}, + [5032] = {.lex_state = 75, .external_lex_state = 2}, + [5033] = {.lex_state = 75, .external_lex_state = 2}, + [5034] = {.lex_state = 75, .external_lex_state = 5}, + [5035] = {.lex_state = 75, .external_lex_state = 5}, + [5036] = {.lex_state = 75, .external_lex_state = 5}, + [5037] = {.lex_state = 75, .external_lex_state = 5}, + [5038] = {.lex_state = 75, .external_lex_state = 2}, + [5039] = {.lex_state = 75, .external_lex_state = 5}, + [5040] = {.lex_state = 75, .external_lex_state = 5}, + [5041] = {.lex_state = 75, .external_lex_state = 5}, + [5042] = {.lex_state = 75, .external_lex_state = 5}, + [5043] = {.lex_state = 75, .external_lex_state = 5}, + [5044] = {.lex_state = 75, .external_lex_state = 5}, + [5045] = {.lex_state = 75, .external_lex_state = 5}, + [5046] = {.lex_state = 75, .external_lex_state = 5}, + [5047] = {.lex_state = 75, .external_lex_state = 5}, + [5048] = {.lex_state = 75, .external_lex_state = 5}, + [5049] = {.lex_state = 75, .external_lex_state = 5}, + [5050] = {.lex_state = 75, .external_lex_state = 5}, + [5051] = {.lex_state = 75, .external_lex_state = 5}, + [5052] = {.lex_state = 75, .external_lex_state = 2}, + [5053] = {.lex_state = 75, .external_lex_state = 5}, + [5054] = {.lex_state = 75, .external_lex_state = 5}, + [5055] = {.lex_state = 75, .external_lex_state = 5}, + [5056] = {.lex_state = 75, .external_lex_state = 5}, + [5057] = {.lex_state = 75, .external_lex_state = 5}, + [5058] = {.lex_state = 75, .external_lex_state = 5}, + [5059] = {.lex_state = 75, .external_lex_state = 5}, + [5060] = {.lex_state = 75, .external_lex_state = 5}, + [5061] = {.lex_state = 75, .external_lex_state = 5}, + [5062] = {.lex_state = 75, .external_lex_state = 2}, + [5063] = {.lex_state = 75, .external_lex_state = 5}, + [5064] = {.lex_state = 75, .external_lex_state = 5}, + [5065] = {.lex_state = 75, .external_lex_state = 5}, + [5066] = {.lex_state = 75, .external_lex_state = 5}, + [5067] = {.lex_state = 75, .external_lex_state = 5}, + [5068] = {.lex_state = 75, .external_lex_state = 5}, + [5069] = {.lex_state = 75, .external_lex_state = 5}, + [5070] = {.lex_state = 75, .external_lex_state = 5}, + [5071] = {.lex_state = 75, .external_lex_state = 5}, + [5072] = {.lex_state = 75, .external_lex_state = 5}, + [5073] = {.lex_state = 75, .external_lex_state = 5}, + [5074] = {.lex_state = 75, .external_lex_state = 5}, + [5075] = {.lex_state = 2, .external_lex_state = 2}, + [5076] = {.lex_state = 2, .external_lex_state = 2}, + [5077] = {.lex_state = 75, .external_lex_state = 5}, + [5078] = {.lex_state = 75, .external_lex_state = 5}, + [5079] = {.lex_state = 75, .external_lex_state = 5}, + [5080] = {.lex_state = 75, .external_lex_state = 2}, + [5081] = {.lex_state = 75, .external_lex_state = 5}, + [5082] = {.lex_state = 75, .external_lex_state = 5}, + [5083] = {.lex_state = 75, .external_lex_state = 5}, + [5084] = {.lex_state = 75, .external_lex_state = 5}, + [5085] = {.lex_state = 75, .external_lex_state = 5}, + [5086] = {.lex_state = 75, .external_lex_state = 5}, + [5087] = {.lex_state = 75, .external_lex_state = 5}, + [5088] = {.lex_state = 75, .external_lex_state = 5}, + [5089] = {.lex_state = 75, .external_lex_state = 5}, + [5090] = {.lex_state = 75, .external_lex_state = 5}, + [5091] = {.lex_state = 75, .external_lex_state = 5}, + [5092] = {.lex_state = 75, .external_lex_state = 5}, + [5093] = {.lex_state = 75, .external_lex_state = 5}, + [5094] = {.lex_state = 75, .external_lex_state = 5}, + [5095] = {.lex_state = 75, .external_lex_state = 5}, + [5096] = {.lex_state = 75, .external_lex_state = 2}, + [5097] = {.lex_state = 75, .external_lex_state = 5}, + [5098] = {.lex_state = 75, .external_lex_state = 5}, + [5099] = {.lex_state = 75, .external_lex_state = 5}, + [5100] = {.lex_state = 75, .external_lex_state = 5}, + [5101] = {.lex_state = 75, .external_lex_state = 5}, + [5102] = {.lex_state = 75, .external_lex_state = 5}, + [5103] = {.lex_state = 75, .external_lex_state = 5}, + [5104] = {.lex_state = 75, .external_lex_state = 5}, + [5105] = {.lex_state = 75, .external_lex_state = 5}, + [5106] = {.lex_state = 2, .external_lex_state = 2}, + [5107] = {.lex_state = 75, .external_lex_state = 5}, + [5108] = {.lex_state = 2, .external_lex_state = 2}, + [5109] = {.lex_state = 75, .external_lex_state = 5}, + [5110] = {.lex_state = 75, .external_lex_state = 5}, + [5111] = {.lex_state = 75, .external_lex_state = 5}, + [5112] = {.lex_state = 75, .external_lex_state = 5}, + [5113] = {.lex_state = 75, .external_lex_state = 5}, + [5114] = {.lex_state = 75, .external_lex_state = 5}, + [5115] = {.lex_state = 75, .external_lex_state = 2}, + [5116] = {.lex_state = 75, .external_lex_state = 2}, + [5117] = {.lex_state = 75, .external_lex_state = 5}, + [5118] = {.lex_state = 75, .external_lex_state = 5}, + [5119] = {.lex_state = 75, .external_lex_state = 5}, + [5120] = {.lex_state = 75, .external_lex_state = 5}, + [5121] = {.lex_state = 75, .external_lex_state = 2}, + [5122] = {.lex_state = 75, .external_lex_state = 5}, + [5123] = {.lex_state = 75, .external_lex_state = 5}, + [5124] = {.lex_state = 75, .external_lex_state = 5}, + [5125] = {.lex_state = 75, .external_lex_state = 2}, + [5126] = {.lex_state = 75, .external_lex_state = 2}, + [5127] = {.lex_state = 75, .external_lex_state = 2}, + [5128] = {.lex_state = 75, .external_lex_state = 2}, + [5129] = {.lex_state = 75, .external_lex_state = 5}, + [5130] = {.lex_state = 75, .external_lex_state = 2}, + [5131] = {.lex_state = 75, .external_lex_state = 2}, + [5132] = {.lex_state = 75, .external_lex_state = 2}, + [5133] = {.lex_state = 75, .external_lex_state = 2}, + [5134] = {.lex_state = 75, .external_lex_state = 2}, + [5135] = {.lex_state = 75, .external_lex_state = 2}, + [5136] = {.lex_state = 75, .external_lex_state = 2}, + [5137] = {.lex_state = 75, .external_lex_state = 2}, + [5138] = {.lex_state = 75, .external_lex_state = 2}, + [5139] = {.lex_state = 75, .external_lex_state = 2}, + [5140] = {.lex_state = 75, .external_lex_state = 2}, + [5141] = {.lex_state = 75, .external_lex_state = 2}, + [5142] = {.lex_state = 75, .external_lex_state = 2}, + [5143] = {.lex_state = 75, .external_lex_state = 2}, + [5144] = {.lex_state = 75, .external_lex_state = 2}, + [5145] = {.lex_state = 75, .external_lex_state = 2}, + [5146] = {.lex_state = 75, .external_lex_state = 2}, + [5147] = {.lex_state = 75, .external_lex_state = 2}, + [5148] = {.lex_state = 75, .external_lex_state = 2}, + [5149] = {.lex_state = 75, .external_lex_state = 2}, + [5150] = {.lex_state = 75, .external_lex_state = 2}, + [5151] = {.lex_state = 75, .external_lex_state = 2}, + [5152] = {.lex_state = 75, .external_lex_state = 2}, + [5153] = {.lex_state = 75, .external_lex_state = 2}, + [5154] = {.lex_state = 75, .external_lex_state = 2}, + [5155] = {.lex_state = 75, .external_lex_state = 2}, + [5156] = {.lex_state = 75, .external_lex_state = 2}, + [5157] = {.lex_state = 75, .external_lex_state = 2}, + [5158] = {.lex_state = 75, .external_lex_state = 2}, + [5159] = {.lex_state = 75, .external_lex_state = 2}, + [5160] = {.lex_state = 75, .external_lex_state = 2}, + [5161] = {.lex_state = 75, .external_lex_state = 5}, + [5162] = {.lex_state = 75, .external_lex_state = 2}, + [5163] = {.lex_state = 75, .external_lex_state = 2}, + [5164] = {.lex_state = 75, .external_lex_state = 2}, + [5165] = {.lex_state = 75, .external_lex_state = 2}, + [5166] = {.lex_state = 75, .external_lex_state = 2}, + [5167] = {.lex_state = 75, .external_lex_state = 2}, + [5168] = {.lex_state = 75, .external_lex_state = 2}, + [5169] = {.lex_state = 75, .external_lex_state = 2}, + [5170] = {.lex_state = 75, .external_lex_state = 2}, + [5171] = {.lex_state = 75, .external_lex_state = 2}, + [5172] = {.lex_state = 75, .external_lex_state = 5}, + [5173] = {.lex_state = 75, .external_lex_state = 2}, + [5174] = {.lex_state = 75, .external_lex_state = 2}, + [5175] = {.lex_state = 75, .external_lex_state = 2}, + [5176] = {.lex_state = 75, .external_lex_state = 2}, + [5177] = {.lex_state = 75, .external_lex_state = 2}, + [5178] = {.lex_state = 75, .external_lex_state = 2}, + [5179] = {.lex_state = 75, .external_lex_state = 2}, + [5180] = {.lex_state = 75, .external_lex_state = 2}, + [5181] = {.lex_state = 75, .external_lex_state = 2}, + [5182] = {.lex_state = 75, .external_lex_state = 2}, + [5183] = {.lex_state = 75, .external_lex_state = 2}, + [5184] = {.lex_state = 75, .external_lex_state = 2}, + [5185] = {.lex_state = 75, .external_lex_state = 2}, + [5186] = {.lex_state = 75, .external_lex_state = 2}, + [5187] = {.lex_state = 75, .external_lex_state = 2}, + [5188] = {.lex_state = 75, .external_lex_state = 2}, + [5189] = {.lex_state = 75, .external_lex_state = 2}, + [5190] = {.lex_state = 75, .external_lex_state = 2}, + [5191] = {.lex_state = 75, .external_lex_state = 2}, + [5192] = {.lex_state = 75, .external_lex_state = 2}, + [5193] = {.lex_state = 75, .external_lex_state = 2}, + [5194] = {.lex_state = 75, .external_lex_state = 5}, + [5195] = {.lex_state = 75, .external_lex_state = 5}, + [5196] = {.lex_state = 75, .external_lex_state = 2}, + [5197] = {.lex_state = 75, .external_lex_state = 5}, + [5198] = {.lex_state = 75, .external_lex_state = 2}, + [5199] = {.lex_state = 75, .external_lex_state = 2}, + [5200] = {.lex_state = 75, .external_lex_state = 2}, + [5201] = {.lex_state = 75, .external_lex_state = 2}, + [5202] = {.lex_state = 75, .external_lex_state = 2}, + [5203] = {.lex_state = 75, .external_lex_state = 5}, + [5204] = {.lex_state = 75, .external_lex_state = 2}, + [5205] = {.lex_state = 75, .external_lex_state = 2}, + [5206] = {.lex_state = 75, .external_lex_state = 2}, + [5207] = {.lex_state = 75, .external_lex_state = 5}, + [5208] = {.lex_state = 75, .external_lex_state = 2}, + [5209] = {.lex_state = 75, .external_lex_state = 2}, + [5210] = {.lex_state = 75, .external_lex_state = 2}, + [5211] = {.lex_state = 75, .external_lex_state = 2}, + [5212] = {.lex_state = 75, .external_lex_state = 2}, + [5213] = {.lex_state = 75, .external_lex_state = 2}, + [5214] = {.lex_state = 75, .external_lex_state = 2}, + [5215] = {.lex_state = 75, .external_lex_state = 2}, + [5216] = {.lex_state = 75, .external_lex_state = 2}, + [5217] = {.lex_state = 75, .external_lex_state = 2}, + [5218] = {.lex_state = 75, .external_lex_state = 2}, + [5219] = {.lex_state = 75, .external_lex_state = 2}, + [5220] = {.lex_state = 75, .external_lex_state = 2}, + [5221] = {.lex_state = 75, .external_lex_state = 2}, + [5222] = {.lex_state = 75, .external_lex_state = 2}, + [5223] = {.lex_state = 75, .external_lex_state = 2}, + [5224] = {.lex_state = 75, .external_lex_state = 2}, + [5225] = {.lex_state = 75, .external_lex_state = 2}, + [5226] = {.lex_state = 75, .external_lex_state = 2}, + [5227] = {.lex_state = 75, .external_lex_state = 2}, + [5228] = {.lex_state = 75, .external_lex_state = 2}, + [5229] = {.lex_state = 75, .external_lex_state = 2}, + [5230] = {.lex_state = 75, .external_lex_state = 2}, + [5231] = {.lex_state = 75, .external_lex_state = 2}, + [5232] = {.lex_state = 75, .external_lex_state = 2}, + [5233] = {.lex_state = 75, .external_lex_state = 2}, + [5234] = {.lex_state = 75, .external_lex_state = 2}, + [5235] = {.lex_state = 75, .external_lex_state = 2}, + [5236] = {.lex_state = 75, .external_lex_state = 2}, + [5237] = {.lex_state = 75, .external_lex_state = 2}, + [5238] = {.lex_state = 75, .external_lex_state = 2}, + [5239] = {.lex_state = 75, .external_lex_state = 2}, + [5240] = {.lex_state = 75, .external_lex_state = 2}, + [5241] = {.lex_state = 75, .external_lex_state = 2}, + [5242] = {.lex_state = 75, .external_lex_state = 2}, + [5243] = {.lex_state = 75, .external_lex_state = 2}, + [5244] = {.lex_state = 75, .external_lex_state = 2}, + [5245] = {.lex_state = 75, .external_lex_state = 5}, + [5246] = {.lex_state = 75, .external_lex_state = 2}, + [5247] = {.lex_state = 75, .external_lex_state = 2}, + [5248] = {.lex_state = 75, .external_lex_state = 2}, + [5249] = {.lex_state = 75, .external_lex_state = 2}, + [5250] = {.lex_state = 75, .external_lex_state = 2}, + [5251] = {.lex_state = 75, .external_lex_state = 2}, + [5252] = {.lex_state = 75, .external_lex_state = 2}, + [5253] = {.lex_state = 75, .external_lex_state = 2}, + [5254] = {.lex_state = 75, .external_lex_state = 2}, + [5255] = {.lex_state = 75, .external_lex_state = 2}, + [5256] = {.lex_state = 75, .external_lex_state = 2}, + [5257] = {.lex_state = 75, .external_lex_state = 2}, + [5258] = {.lex_state = 75, .external_lex_state = 2}, + [5259] = {.lex_state = 75, .external_lex_state = 2}, + [5260] = {.lex_state = 75, .external_lex_state = 2}, + [5261] = {.lex_state = 75, .external_lex_state = 2}, + [5262] = {.lex_state = 75, .external_lex_state = 2}, + [5263] = {.lex_state = 75, .external_lex_state = 2}, + [5264] = {.lex_state = 75, .external_lex_state = 2}, + [5265] = {.lex_state = 75, .external_lex_state = 2}, + [5266] = {.lex_state = 75, .external_lex_state = 2}, + [5267] = {.lex_state = 75, .external_lex_state = 2}, + [5268] = {.lex_state = 75, .external_lex_state = 2}, + [5269] = {.lex_state = 75, .external_lex_state = 2}, + [5270] = {.lex_state = 75, .external_lex_state = 2}, + [5271] = {.lex_state = 75, .external_lex_state = 2}, + [5272] = {.lex_state = 75, .external_lex_state = 2}, + [5273] = {.lex_state = 75, .external_lex_state = 2}, + [5274] = {.lex_state = 75, .external_lex_state = 2}, + [5275] = {.lex_state = 75, .external_lex_state = 2}, + [5276] = {.lex_state = 75, .external_lex_state = 2}, + [5277] = {.lex_state = 75, .external_lex_state = 2}, + [5278] = {.lex_state = 75, .external_lex_state = 2}, + [5279] = {.lex_state = 75, .external_lex_state = 2}, + [5280] = {.lex_state = 75, .external_lex_state = 2}, + [5281] = {.lex_state = 75, .external_lex_state = 2}, + [5282] = {.lex_state = 75, .external_lex_state = 2}, + [5283] = {.lex_state = 75, .external_lex_state = 2}, + [5284] = {.lex_state = 75, .external_lex_state = 5}, + [5285] = {.lex_state = 75, .external_lex_state = 2}, + [5286] = {.lex_state = 75, .external_lex_state = 2}, + [5287] = {.lex_state = 75, .external_lex_state = 2}, + [5288] = {.lex_state = 75, .external_lex_state = 2}, + [5289] = {.lex_state = 75, .external_lex_state = 2}, + [5290] = {.lex_state = 75, .external_lex_state = 2}, + [5291] = {.lex_state = 75, .external_lex_state = 2}, + [5292] = {.lex_state = 75, .external_lex_state = 2}, + [5293] = {.lex_state = 75, .external_lex_state = 2}, + [5294] = {.lex_state = 75, .external_lex_state = 2}, + [5295] = {.lex_state = 75, .external_lex_state = 2}, + [5296] = {.lex_state = 75, .external_lex_state = 2}, + [5297] = {.lex_state = 75, .external_lex_state = 2}, + [5298] = {.lex_state = 75, .external_lex_state = 2}, + [5299] = {.lex_state = 75, .external_lex_state = 2}, + [5300] = {.lex_state = 75, .external_lex_state = 2}, + [5301] = {.lex_state = 75, .external_lex_state = 2}, + [5302] = {.lex_state = 75, .external_lex_state = 2}, + [5303] = {.lex_state = 75, .external_lex_state = 2}, + [5304] = {.lex_state = 75, .external_lex_state = 2}, + [5305] = {.lex_state = 75, .external_lex_state = 5}, + [5306] = {.lex_state = 75, .external_lex_state = 2}, + [5307] = {.lex_state = 75, .external_lex_state = 2}, + [5308] = {.lex_state = 75, .external_lex_state = 2}, + [5309] = {.lex_state = 75, .external_lex_state = 5}, + [5310] = {.lex_state = 75, .external_lex_state = 2}, + [5311] = {.lex_state = 75, .external_lex_state = 2}, + [5312] = {.lex_state = 75, .external_lex_state = 2}, + [5313] = {.lex_state = 75, .external_lex_state = 2}, + [5314] = {.lex_state = 75, .external_lex_state = 2}, + [5315] = {.lex_state = 75, .external_lex_state = 2}, + [5316] = {.lex_state = 75, .external_lex_state = 2}, + [5317] = {.lex_state = 75, .external_lex_state = 2}, + [5318] = {.lex_state = 75, .external_lex_state = 2}, + [5319] = {.lex_state = 75, .external_lex_state = 2}, + [5320] = {.lex_state = 75, .external_lex_state = 2}, + [5321] = {.lex_state = 75, .external_lex_state = 2}, + [5322] = {.lex_state = 75, .external_lex_state = 2}, + [5323] = {.lex_state = 75, .external_lex_state = 2}, + [5324] = {.lex_state = 75, .external_lex_state = 2}, + [5325] = {.lex_state = 75, .external_lex_state = 2}, + [5326] = {.lex_state = 75, .external_lex_state = 2}, + [5327] = {.lex_state = 75, .external_lex_state = 2}, + [5328] = {.lex_state = 75, .external_lex_state = 2}, + [5329] = {.lex_state = 75, .external_lex_state = 2}, + [5330] = {.lex_state = 75, .external_lex_state = 2}, + [5331] = {.lex_state = 75, .external_lex_state = 5}, + [5332] = {.lex_state = 75, .external_lex_state = 2}, + [5333] = {.lex_state = 75, .external_lex_state = 5}, + [5334] = {.lex_state = 75, .external_lex_state = 5}, + [5335] = {.lex_state = 75, .external_lex_state = 2}, + [5336] = {.lex_state = 75, .external_lex_state = 2}, + [5337] = {.lex_state = 75, .external_lex_state = 2}, + [5338] = {.lex_state = 75, .external_lex_state = 2}, + [5339] = {.lex_state = 75, .external_lex_state = 2}, + [5340] = {.lex_state = 75, .external_lex_state = 2}, + [5341] = {.lex_state = 75, .external_lex_state = 2}, + [5342] = {.lex_state = 75, .external_lex_state = 2}, + [5343] = {.lex_state = 75, .external_lex_state = 2}, + [5344] = {.lex_state = 75, .external_lex_state = 2}, + [5345] = {.lex_state = 75, .external_lex_state = 2}, + [5346] = {.lex_state = 75, .external_lex_state = 2}, + [5347] = {.lex_state = 75, .external_lex_state = 2}, + [5348] = {.lex_state = 75, .external_lex_state = 2}, + [5349] = {.lex_state = 75, .external_lex_state = 2}, + [5350] = {.lex_state = 75, .external_lex_state = 2}, + [5351] = {.lex_state = 75, .external_lex_state = 2}, + [5352] = {.lex_state = 75, .external_lex_state = 2}, + [5353] = {.lex_state = 75, .external_lex_state = 2}, + [5354] = {.lex_state = 75, .external_lex_state = 2}, + [5355] = {.lex_state = 75, .external_lex_state = 2}, + [5356] = {.lex_state = 75, .external_lex_state = 5}, + [5357] = {.lex_state = 75, .external_lex_state = 2}, + [5358] = {.lex_state = 75, .external_lex_state = 2}, + [5359] = {.lex_state = 75, .external_lex_state = 5}, + [5360] = {.lex_state = 75, .external_lex_state = 2}, + [5361] = {.lex_state = 75, .external_lex_state = 2}, + [5362] = {.lex_state = 75, .external_lex_state = 2}, + [5363] = {.lex_state = 75, .external_lex_state = 2}, + [5364] = {.lex_state = 75, .external_lex_state = 2}, + [5365] = {.lex_state = 75, .external_lex_state = 2}, + [5366] = {.lex_state = 75, .external_lex_state = 2}, + [5367] = {.lex_state = 75, .external_lex_state = 2}, + [5368] = {.lex_state = 75, .external_lex_state = 2}, + [5369] = {.lex_state = 75, .external_lex_state = 2}, + [5370] = {.lex_state = 75, .external_lex_state = 2}, + [5371] = {.lex_state = 75, .external_lex_state = 5}, + [5372] = {.lex_state = 75, .external_lex_state = 2}, + [5373] = {.lex_state = 75, .external_lex_state = 2}, + [5374] = {.lex_state = 75, .external_lex_state = 2}, + [5375] = {.lex_state = 75, .external_lex_state = 2}, + [5376] = {.lex_state = 75, .external_lex_state = 2}, + [5377] = {.lex_state = 75, .external_lex_state = 2}, + [5378] = {.lex_state = 75, .external_lex_state = 2}, + [5379] = {.lex_state = 75, .external_lex_state = 2}, + [5380] = {.lex_state = 75, .external_lex_state = 2}, + [5381] = {.lex_state = 75, .external_lex_state = 2}, + [5382] = {.lex_state = 75, .external_lex_state = 2}, + [5383] = {.lex_state = 75, .external_lex_state = 5}, + [5384] = {.lex_state = 75, .external_lex_state = 2}, + [5385] = {.lex_state = 75, .external_lex_state = 2}, + [5386] = {.lex_state = 75, .external_lex_state = 2}, + [5387] = {.lex_state = 75, .external_lex_state = 2}, + [5388] = {.lex_state = 75, .external_lex_state = 2}, + [5389] = {.lex_state = 75, .external_lex_state = 2}, + [5390] = {.lex_state = 75, .external_lex_state = 2}, + [5391] = {.lex_state = 75, .external_lex_state = 2}, + [5392] = {.lex_state = 75, .external_lex_state = 2}, + [5393] = {.lex_state = 75, .external_lex_state = 2}, + [5394] = {.lex_state = 75, .external_lex_state = 2}, + [5395] = {.lex_state = 75, .external_lex_state = 2}, + [5396] = {.lex_state = 75, .external_lex_state = 2}, + [5397] = {.lex_state = 75, .external_lex_state = 2}, + [5398] = {.lex_state = 75, .external_lex_state = 5}, + [5399] = {.lex_state = 75, .external_lex_state = 2}, + [5400] = {.lex_state = 75, .external_lex_state = 5}, + [5401] = {.lex_state = 75, .external_lex_state = 2}, + [5402] = {.lex_state = 75, .external_lex_state = 2}, + [5403] = {.lex_state = 75, .external_lex_state = 2}, + [5404] = {.lex_state = 75, .external_lex_state = 2}, + [5405] = {.lex_state = 75, .external_lex_state = 2}, + [5406] = {.lex_state = 75, .external_lex_state = 2}, + [5407] = {.lex_state = 75, .external_lex_state = 2}, + [5408] = {.lex_state = 75, .external_lex_state = 2}, + [5409] = {.lex_state = 75, .external_lex_state = 2}, + [5410] = {.lex_state = 75, .external_lex_state = 2}, + [5411] = {.lex_state = 75, .external_lex_state = 2}, + [5412] = {.lex_state = 75, .external_lex_state = 2}, + [5413] = {.lex_state = 75, .external_lex_state = 5}, + [5414] = {.lex_state = 75, .external_lex_state = 2}, + [5415] = {.lex_state = 75, .external_lex_state = 2}, + [5416] = {.lex_state = 75, .external_lex_state = 2}, + [5417] = {.lex_state = 75, .external_lex_state = 2}, + [5418] = {.lex_state = 75, .external_lex_state = 2}, + [5419] = {.lex_state = 75, .external_lex_state = 2}, + [5420] = {.lex_state = 75, .external_lex_state = 2}, + [5421] = {.lex_state = 75, .external_lex_state = 2}, + [5422] = {.lex_state = 75, .external_lex_state = 2}, + [5423] = {.lex_state = 75, .external_lex_state = 5}, + [5424] = {.lex_state = 75, .external_lex_state = 2}, + [5425] = {.lex_state = 75, .external_lex_state = 2}, + [5426] = {.lex_state = 75, .external_lex_state = 2}, + [5427] = {.lex_state = 75, .external_lex_state = 2}, + [5428] = {.lex_state = 75, .external_lex_state = 5}, + [5429] = {.lex_state = 75, .external_lex_state = 2}, + [5430] = {.lex_state = 75, .external_lex_state = 2}, + [5431] = {.lex_state = 75, .external_lex_state = 2}, + [5432] = {.lex_state = 75, .external_lex_state = 2}, + [5433] = {.lex_state = 75, .external_lex_state = 2}, + [5434] = {.lex_state = 75, .external_lex_state = 2}, + [5435] = {.lex_state = 75, .external_lex_state = 2}, + [5436] = {.lex_state = 75, .external_lex_state = 2}, + [5437] = {.lex_state = 75, .external_lex_state = 5}, + [5438] = {.lex_state = 75, .external_lex_state = 2}, + [5439] = {.lex_state = 75, .external_lex_state = 2}, + [5440] = {.lex_state = 75, .external_lex_state = 2}, + [5441] = {.lex_state = 75, .external_lex_state = 2}, + [5442] = {.lex_state = 75, .external_lex_state = 2}, + [5443] = {.lex_state = 75, .external_lex_state = 2}, + [5444] = {.lex_state = 75, .external_lex_state = 2}, + [5445] = {.lex_state = 75, .external_lex_state = 2}, + [5446] = {.lex_state = 75, .external_lex_state = 2}, + [5447] = {.lex_state = 75, .external_lex_state = 2}, + [5448] = {.lex_state = 75, .external_lex_state = 2}, + [5449] = {.lex_state = 75, .external_lex_state = 2}, + [5450] = {.lex_state = 75, .external_lex_state = 2}, + [5451] = {.lex_state = 75, .external_lex_state = 2}, + [5452] = {.lex_state = 75, .external_lex_state = 2}, + [5453] = {.lex_state = 75, .external_lex_state = 2}, + [5454] = {.lex_state = 75, .external_lex_state = 2}, + [5455] = {.lex_state = 75, .external_lex_state = 2}, + [5456] = {.lex_state = 75, .external_lex_state = 2}, + [5457] = {.lex_state = 75, .external_lex_state = 5}, + [5458] = {.lex_state = 75, .external_lex_state = 2}, + [5459] = {.lex_state = 75, .external_lex_state = 2}, + [5460] = {.lex_state = 75, .external_lex_state = 5}, + [5461] = {.lex_state = 75, .external_lex_state = 5}, + [5462] = {.lex_state = 75, .external_lex_state = 2}, + [5463] = {.lex_state = 75, .external_lex_state = 2}, + [5464] = {.lex_state = 75, .external_lex_state = 2}, + [5465] = {.lex_state = 75, .external_lex_state = 2}, + [5466] = {.lex_state = 75, .external_lex_state = 2}, + [5467] = {.lex_state = 75, .external_lex_state = 2}, + [5468] = {.lex_state = 75, .external_lex_state = 2}, + [5469] = {.lex_state = 75, .external_lex_state = 2}, + [5470] = {.lex_state = 75, .external_lex_state = 2}, + [5471] = {.lex_state = 75, .external_lex_state = 2}, + [5472] = {.lex_state = 75, .external_lex_state = 2}, + [5473] = {.lex_state = 75, .external_lex_state = 2}, + [5474] = {.lex_state = 75, .external_lex_state = 2}, + [5475] = {.lex_state = 75, .external_lex_state = 2}, + [5476] = {.lex_state = 75, .external_lex_state = 2}, + [5477] = {.lex_state = 75, .external_lex_state = 2}, + [5478] = {.lex_state = 75, .external_lex_state = 2}, + [5479] = {.lex_state = 75, .external_lex_state = 2}, + [5480] = {.lex_state = 75, .external_lex_state = 2}, + [5481] = {.lex_state = 75, .external_lex_state = 2}, + [5482] = {.lex_state = 1, .external_lex_state = 10}, + [5483] = {.lex_state = 75, .external_lex_state = 2}, + [5484] = {.lex_state = 75, .external_lex_state = 2}, + [5485] = {.lex_state = 75, .external_lex_state = 2}, + [5486] = {.lex_state = 75, .external_lex_state = 2}, + [5487] = {.lex_state = 75, .external_lex_state = 2}, + [5488] = {.lex_state = 75, .external_lex_state = 2}, + [5489] = {.lex_state = 75, .external_lex_state = 2}, + [5490] = {.lex_state = 75, .external_lex_state = 2}, + [5491] = {.lex_state = 75, .external_lex_state = 2}, + [5492] = {.lex_state = 75, .external_lex_state = 2}, + [5493] = {.lex_state = 75, .external_lex_state = 2}, + [5494] = {.lex_state = 1, .external_lex_state = 10}, + [5495] = {.lex_state = 75, .external_lex_state = 2}, + [5496] = {.lex_state = 75, .external_lex_state = 2}, + [5497] = {.lex_state = 75, .external_lex_state = 2}, + [5498] = {.lex_state = 75, .external_lex_state = 2}, + [5499] = {.lex_state = 75, .external_lex_state = 2}, + [5500] = {.lex_state = 75, .external_lex_state = 2}, + [5501] = {.lex_state = 75, .external_lex_state = 2}, + [5502] = {.lex_state = 75, .external_lex_state = 2}, + [5503] = {.lex_state = 75, .external_lex_state = 2}, + [5504] = {.lex_state = 75, .external_lex_state = 2}, + [5505] = {.lex_state = 75, .external_lex_state = 2}, + [5506] = {.lex_state = 75, .external_lex_state = 2}, + [5507] = {.lex_state = 75, .external_lex_state = 2}, + [5508] = {.lex_state = 75, .external_lex_state = 2}, + [5509] = {.lex_state = 75, .external_lex_state = 2}, + [5510] = {.lex_state = 75, .external_lex_state = 2}, + [5511] = {.lex_state = 75, .external_lex_state = 2}, + [5512] = {.lex_state = 75, .external_lex_state = 2}, + [5513] = {.lex_state = 75, .external_lex_state = 2}, + [5514] = {.lex_state = 75, .external_lex_state = 2}, + [5515] = {.lex_state = 75, .external_lex_state = 2}, + [5516] = {.lex_state = 75, .external_lex_state = 2}, + [5517] = {.lex_state = 75, .external_lex_state = 2}, + [5518] = {.lex_state = 75, .external_lex_state = 2}, + [5519] = {.lex_state = 75, .external_lex_state = 2}, + [5520] = {.lex_state = 75, .external_lex_state = 2}, + [5521] = {.lex_state = 75, .external_lex_state = 2}, + [5522] = {.lex_state = 75, .external_lex_state = 2}, + [5523] = {.lex_state = 75, .external_lex_state = 2}, + [5524] = {.lex_state = 75, .external_lex_state = 2}, + [5525] = {.lex_state = 75, .external_lex_state = 2}, + [5526] = {.lex_state = 75, .external_lex_state = 2}, + [5527] = {.lex_state = 75, .external_lex_state = 2}, + [5528] = {.lex_state = 75, .external_lex_state = 2}, + [5529] = {.lex_state = 75, .external_lex_state = 2}, + [5530] = {.lex_state = 75, .external_lex_state = 2}, + [5531] = {.lex_state = 75, .external_lex_state = 2}, + [5532] = {.lex_state = 75, .external_lex_state = 2}, + [5533] = {.lex_state = 75, .external_lex_state = 2}, + [5534] = {.lex_state = 75, .external_lex_state = 2}, + [5535] = {.lex_state = 75, .external_lex_state = 2}, + [5536] = {.lex_state = 75, .external_lex_state = 2}, + [5537] = {.lex_state = 75, .external_lex_state = 2}, + [5538] = {.lex_state = 75, .external_lex_state = 2}, + [5539] = {.lex_state = 75, .external_lex_state = 2}, + [5540] = {.lex_state = 75, .external_lex_state = 2}, + [5541] = {.lex_state = 75, .external_lex_state = 2}, + [5542] = {.lex_state = 75, .external_lex_state = 2}, + [5543] = {.lex_state = 75, .external_lex_state = 2}, + [5544] = {.lex_state = 75, .external_lex_state = 2}, + [5545] = {.lex_state = 75, .external_lex_state = 2}, + [5546] = {.lex_state = 75, .external_lex_state = 2}, + [5547] = {.lex_state = 75, .external_lex_state = 2}, + [5548] = {.lex_state = 75, .external_lex_state = 2}, + [5549] = {.lex_state = 75, .external_lex_state = 2}, + [5550] = {.lex_state = 75, .external_lex_state = 2}, + [5551] = {.lex_state = 75, .external_lex_state = 2}, + [5552] = {.lex_state = 75, .external_lex_state = 2}, + [5553] = {.lex_state = 23, .external_lex_state = 2}, + [5554] = {.lex_state = 75, .external_lex_state = 2}, + [5555] = {.lex_state = 75, .external_lex_state = 2}, + [5556] = {.lex_state = 75, .external_lex_state = 2}, + [5557] = {.lex_state = 75, .external_lex_state = 2}, + [5558] = {.lex_state = 75, .external_lex_state = 2}, + [5559] = {.lex_state = 75, .external_lex_state = 2}, + [5560] = {.lex_state = 75, .external_lex_state = 2}, + [5561] = {.lex_state = 75, .external_lex_state = 2}, + [5562] = {.lex_state = 75, .external_lex_state = 2}, + [5563] = {.lex_state = 75, .external_lex_state = 2}, + [5564] = {.lex_state = 75, .external_lex_state = 2}, + [5565] = {.lex_state = 75, .external_lex_state = 2}, + [5566] = {.lex_state = 75, .external_lex_state = 2}, + [5567] = {.lex_state = 75, .external_lex_state = 2}, + [5568] = {.lex_state = 75, .external_lex_state = 2}, + [5569] = {.lex_state = 75, .external_lex_state = 2}, + [5570] = {.lex_state = 75, .external_lex_state = 2}, + [5571] = {.lex_state = 75, .external_lex_state = 2}, + [5572] = {.lex_state = 75, .external_lex_state = 2}, + [5573] = {.lex_state = 75, .external_lex_state = 2}, + [5574] = {.lex_state = 75, .external_lex_state = 2}, + [5575] = {.lex_state = 75, .external_lex_state = 2}, + [5576] = {.lex_state = 75, .external_lex_state = 2}, + [5577] = {.lex_state = 75, .external_lex_state = 2}, + [5578] = {.lex_state = 75, .external_lex_state = 2}, + [5579] = {.lex_state = 75, .external_lex_state = 2}, + [5580] = {.lex_state = 75, .external_lex_state = 2}, + [5581] = {.lex_state = 75, .external_lex_state = 2}, + [5582] = {.lex_state = 75, .external_lex_state = 2}, + [5583] = {.lex_state = 75, .external_lex_state = 2}, + [5584] = {.lex_state = 75, .external_lex_state = 2}, + [5585] = {.lex_state = 75, .external_lex_state = 2}, + [5586] = {.lex_state = 75, .external_lex_state = 2}, + [5587] = {.lex_state = 75, .external_lex_state = 2}, + [5588] = {.lex_state = 75, .external_lex_state = 2}, + [5589] = {.lex_state = 75, .external_lex_state = 2}, + [5590] = {.lex_state = 75, .external_lex_state = 2}, + [5591] = {.lex_state = 75, .external_lex_state = 2}, + [5592] = {.lex_state = 75, .external_lex_state = 2}, + [5593] = {.lex_state = 75, .external_lex_state = 2}, + [5594] = {.lex_state = 75, .external_lex_state = 2}, + [5595] = {.lex_state = 75, .external_lex_state = 2}, + [5596] = {.lex_state = 75, .external_lex_state = 2}, + [5597] = {.lex_state = 75, .external_lex_state = 2}, + [5598] = {.lex_state = 75, .external_lex_state = 2}, + [5599] = {.lex_state = 75, .external_lex_state = 2}, + [5600] = {.lex_state = 75, .external_lex_state = 2}, + [5601] = {.lex_state = 75, .external_lex_state = 2}, + [5602] = {.lex_state = 75, .external_lex_state = 2}, + [5603] = {.lex_state = 75, .external_lex_state = 2}, + [5604] = {.lex_state = 75, .external_lex_state = 2}, + [5605] = {.lex_state = 75, .external_lex_state = 2}, + [5606] = {.lex_state = 75, .external_lex_state = 2}, + [5607] = {.lex_state = 75, .external_lex_state = 2}, + [5608] = {.lex_state = 75, .external_lex_state = 2}, + [5609] = {.lex_state = 75, .external_lex_state = 2}, + [5610] = {.lex_state = 75, .external_lex_state = 2}, + [5611] = {.lex_state = 75, .external_lex_state = 2}, + [5612] = {.lex_state = 75, .external_lex_state = 2}, + [5613] = {.lex_state = 75, .external_lex_state = 2}, + [5614] = {.lex_state = 75, .external_lex_state = 2}, + [5615] = {.lex_state = 75, .external_lex_state = 2}, + [5616] = {.lex_state = 75, .external_lex_state = 2}, + [5617] = {.lex_state = 75, .external_lex_state = 2}, + [5618] = {.lex_state = 75, .external_lex_state = 2}, + [5619] = {.lex_state = 75, .external_lex_state = 2}, + [5620] = {.lex_state = 75, .external_lex_state = 2}, + [5621] = {.lex_state = 75, .external_lex_state = 2}, + [5622] = {.lex_state = 75, .external_lex_state = 2}, + [5623] = {.lex_state = 75, .external_lex_state = 2}, + [5624] = {.lex_state = 75, .external_lex_state = 2}, + [5625] = {.lex_state = 75, .external_lex_state = 2}, + [5626] = {.lex_state = 75, .external_lex_state = 2}, + [5627] = {.lex_state = 1, .external_lex_state = 10}, + [5628] = {.lex_state = 75, .external_lex_state = 2}, + [5629] = {.lex_state = 75, .external_lex_state = 2}, + [5630] = {.lex_state = 75, .external_lex_state = 2}, + [5631] = {.lex_state = 75, .external_lex_state = 2}, + [5632] = {.lex_state = 75, .external_lex_state = 2}, + [5633] = {.lex_state = 75, .external_lex_state = 2}, + [5634] = {.lex_state = 75, .external_lex_state = 2}, + [5635] = {.lex_state = 75, .external_lex_state = 2}, + [5636] = {.lex_state = 75, .external_lex_state = 2}, + [5637] = {.lex_state = 75, .external_lex_state = 2}, + [5638] = {.lex_state = 75, .external_lex_state = 2}, + [5639] = {.lex_state = 75, .external_lex_state = 2}, + [5640] = {.lex_state = 75, .external_lex_state = 2}, + [5641] = {.lex_state = 75, .external_lex_state = 2}, + [5642] = {.lex_state = 75, .external_lex_state = 2}, + [5643] = {.lex_state = 75, .external_lex_state = 2}, + [5644] = {.lex_state = 75, .external_lex_state = 2}, + [5645] = {.lex_state = 75, .external_lex_state = 2}, + [5646] = {.lex_state = 75, .external_lex_state = 2}, + [5647] = {.lex_state = 75, .external_lex_state = 2}, + [5648] = {.lex_state = 75, .external_lex_state = 2}, + [5649] = {.lex_state = 23, .external_lex_state = 2}, + [5650] = {.lex_state = 75, .external_lex_state = 2}, + [5651] = {.lex_state = 75, .external_lex_state = 2}, + [5652] = {.lex_state = 75, .external_lex_state = 2}, + [5653] = {.lex_state = 75, .external_lex_state = 2}, + [5654] = {.lex_state = 75, .external_lex_state = 2}, + [5655] = {.lex_state = 1, .external_lex_state = 10}, + [5656] = {.lex_state = 75, .external_lex_state = 2}, + [5657] = {.lex_state = 75, .external_lex_state = 2}, + [5658] = {.lex_state = 75, .external_lex_state = 2}, + [5659] = {.lex_state = 75, .external_lex_state = 2}, + [5660] = {.lex_state = 75, .external_lex_state = 2}, + [5661] = {.lex_state = 75, .external_lex_state = 2}, + [5662] = {.lex_state = 23, .external_lex_state = 2}, + [5663] = {.lex_state = 75, .external_lex_state = 2}, + [5664] = {.lex_state = 75, .external_lex_state = 2}, + [5665] = {.lex_state = 75, .external_lex_state = 2}, + [5666] = {.lex_state = 75, .external_lex_state = 2}, + [5667] = {.lex_state = 75, .external_lex_state = 2}, + [5668] = {.lex_state = 1, .external_lex_state = 10}, + [5669] = {.lex_state = 75, .external_lex_state = 2}, + [5670] = {.lex_state = 75, .external_lex_state = 2}, + [5671] = {.lex_state = 75, .external_lex_state = 2}, + [5672] = {.lex_state = 75, .external_lex_state = 2}, + [5673] = {.lex_state = 75, .external_lex_state = 2}, + [5674] = {.lex_state = 75, .external_lex_state = 2}, + [5675] = {.lex_state = 75, .external_lex_state = 2}, + [5676] = {.lex_state = 75, .external_lex_state = 2}, + [5677] = {.lex_state = 75, .external_lex_state = 2}, + [5678] = {.lex_state = 75, .external_lex_state = 2}, + [5679] = {.lex_state = 75, .external_lex_state = 2}, + [5680] = {.lex_state = 75, .external_lex_state = 2}, + [5681] = {.lex_state = 75, .external_lex_state = 2}, + [5682] = {.lex_state = 75, .external_lex_state = 2}, + [5683] = {.lex_state = 23, .external_lex_state = 2}, + [5684] = {.lex_state = 75, .external_lex_state = 2}, + [5685] = {.lex_state = 75, .external_lex_state = 2}, + [5686] = {.lex_state = 75, .external_lex_state = 2}, + [5687] = {.lex_state = 75, .external_lex_state = 2}, + [5688] = {.lex_state = 75, .external_lex_state = 2}, + [5689] = {.lex_state = 75, .external_lex_state = 2}, + [5690] = {.lex_state = 75, .external_lex_state = 2}, + [5691] = {.lex_state = 75, .external_lex_state = 2}, + [5692] = {.lex_state = 75, .external_lex_state = 2}, + [5693] = {.lex_state = 75, .external_lex_state = 2}, + [5694] = {.lex_state = 75, .external_lex_state = 2}, + [5695] = {.lex_state = 75, .external_lex_state = 2}, + [5696] = {.lex_state = 75, .external_lex_state = 2}, + [5697] = {.lex_state = 75, .external_lex_state = 2}, + [5698] = {.lex_state = 75, .external_lex_state = 2}, + [5699] = {.lex_state = 75, .external_lex_state = 2}, + [5700] = {.lex_state = 75, .external_lex_state = 2}, + [5701] = {.lex_state = 75, .external_lex_state = 2}, + [5702] = {.lex_state = 75, .external_lex_state = 2}, + [5703] = {.lex_state = 75, .external_lex_state = 2}, + [5704] = {.lex_state = 75, .external_lex_state = 2}, + [5705] = {.lex_state = 75, .external_lex_state = 2}, + [5706] = {.lex_state = 75, .external_lex_state = 2}, + [5707] = {.lex_state = 75, .external_lex_state = 2}, + [5708] = {.lex_state = 75, .external_lex_state = 2}, + [5709] = {.lex_state = 75, .external_lex_state = 2}, + [5710] = {.lex_state = 75, .external_lex_state = 2}, + [5711] = {.lex_state = 75, .external_lex_state = 2}, + [5712] = {.lex_state = 75, .external_lex_state = 2}, + [5713] = {.lex_state = 75, .external_lex_state = 2}, + [5714] = {.lex_state = 75, .external_lex_state = 2}, + [5715] = {.lex_state = 75, .external_lex_state = 2}, + [5716] = {.lex_state = 75, .external_lex_state = 2}, + [5717] = {.lex_state = 75, .external_lex_state = 2}, + [5718] = {.lex_state = 75, .external_lex_state = 2}, + [5719] = {.lex_state = 75, .external_lex_state = 2}, + [5720] = {.lex_state = 75, .external_lex_state = 2}, + [5721] = {.lex_state = 75, .external_lex_state = 2}, + [5722] = {.lex_state = 75, .external_lex_state = 2}, + [5723] = {.lex_state = 75, .external_lex_state = 2}, + [5724] = {.lex_state = 75, .external_lex_state = 2}, + [5725] = {.lex_state = 75, .external_lex_state = 2}, + [5726] = {.lex_state = 75, .external_lex_state = 2}, + [5727] = {.lex_state = 75, .external_lex_state = 2}, + [5728] = {.lex_state = 75, .external_lex_state = 2}, + [5729] = {.lex_state = 75, .external_lex_state = 2}, + [5730] = {.lex_state = 75, .external_lex_state = 2}, + [5731] = {.lex_state = 75, .external_lex_state = 2}, + [5732] = {.lex_state = 75, .external_lex_state = 2}, + [5733] = {.lex_state = 75, .external_lex_state = 2}, + [5734] = {.lex_state = 75, .external_lex_state = 2}, + [5735] = {.lex_state = 75, .external_lex_state = 2}, + [5736] = {.lex_state = 75, .external_lex_state = 2}, + [5737] = {.lex_state = 75, .external_lex_state = 2}, + [5738] = {.lex_state = 75, .external_lex_state = 2}, + [5739] = {.lex_state = 75, .external_lex_state = 2}, + [5740] = {.lex_state = 75, .external_lex_state = 2}, + [5741] = {.lex_state = 75, .external_lex_state = 2}, + [5742] = {.lex_state = 75, .external_lex_state = 2}, + [5743] = {.lex_state = 75, .external_lex_state = 2}, + [5744] = {.lex_state = 75, .external_lex_state = 2}, + [5745] = {.lex_state = 75, .external_lex_state = 2}, + [5746] = {.lex_state = 75, .external_lex_state = 2}, + [5747] = {.lex_state = 75, .external_lex_state = 2}, + [5748] = {.lex_state = 75, .external_lex_state = 2}, + [5749] = {.lex_state = 75, .external_lex_state = 2}, + [5750] = {.lex_state = 75, .external_lex_state = 2}, + [5751] = {.lex_state = 75, .external_lex_state = 2}, + [5752] = {.lex_state = 75, .external_lex_state = 2}, + [5753] = {.lex_state = 75, .external_lex_state = 2}, + [5754] = {.lex_state = 75, .external_lex_state = 2}, + [5755] = {.lex_state = 75, .external_lex_state = 2}, + [5756] = {.lex_state = 75, .external_lex_state = 2}, + [5757] = {.lex_state = 75, .external_lex_state = 2}, + [5758] = {.lex_state = 75, .external_lex_state = 2}, + [5759] = {.lex_state = 75, .external_lex_state = 2}, + [5760] = {.lex_state = 75, .external_lex_state = 2}, + [5761] = {.lex_state = 75, .external_lex_state = 2}, + [5762] = {.lex_state = 75, .external_lex_state = 2}, + [5763] = {.lex_state = 75, .external_lex_state = 2}, + [5764] = {.lex_state = 75, .external_lex_state = 2}, + [5765] = {.lex_state = 75, .external_lex_state = 2}, + [5766] = {.lex_state = 75, .external_lex_state = 2}, + [5767] = {.lex_state = 75, .external_lex_state = 2}, + [5768] = {.lex_state = 75, .external_lex_state = 2}, + [5769] = {.lex_state = 75, .external_lex_state = 2}, + [5770] = {.lex_state = 75, .external_lex_state = 2}, + [5771] = {.lex_state = 75, .external_lex_state = 2}, + [5772] = {.lex_state = 75, .external_lex_state = 2}, + [5773] = {.lex_state = 75, .external_lex_state = 2}, + [5774] = {.lex_state = 75, .external_lex_state = 2}, + [5775] = {.lex_state = 75, .external_lex_state = 2}, + [5776] = {.lex_state = 75, .external_lex_state = 2}, + [5777] = {.lex_state = 75, .external_lex_state = 2}, + [5778] = {.lex_state = 75, .external_lex_state = 2}, + [5779] = {.lex_state = 75, .external_lex_state = 2}, + [5780] = {.lex_state = 75, .external_lex_state = 2}, + [5781] = {.lex_state = 75, .external_lex_state = 2}, + [5782] = {.lex_state = 75, .external_lex_state = 2}, + [5783] = {.lex_state = 75, .external_lex_state = 2}, + [5784] = {.lex_state = 75, .external_lex_state = 2}, + [5785] = {.lex_state = 75, .external_lex_state = 2}, + [5786] = {.lex_state = 75, .external_lex_state = 2}, + [5787] = {.lex_state = 75, .external_lex_state = 2}, + [5788] = {.lex_state = 75, .external_lex_state = 2}, + [5789] = {.lex_state = 75, .external_lex_state = 2}, + [5790] = {.lex_state = 75, .external_lex_state = 2}, + [5791] = {.lex_state = 75, .external_lex_state = 2}, + [5792] = {.lex_state = 75, .external_lex_state = 2}, + [5793] = {.lex_state = 75, .external_lex_state = 2}, + [5794] = {.lex_state = 75, .external_lex_state = 2}, + [5795] = {.lex_state = 75, .external_lex_state = 2}, + [5796] = {.lex_state = 75, .external_lex_state = 2}, + [5797] = {.lex_state = 75, .external_lex_state = 2}, + [5798] = {.lex_state = 75, .external_lex_state = 2}, + [5799] = {.lex_state = 75, .external_lex_state = 2}, + [5800] = {.lex_state = 75, .external_lex_state = 2}, + [5801] = {.lex_state = 23, .external_lex_state = 2}, + [5802] = {.lex_state = 75, .external_lex_state = 2}, + [5803] = {.lex_state = 75, .external_lex_state = 2}, + [5804] = {.lex_state = 75, .external_lex_state = 2}, + [5805] = {.lex_state = 75, .external_lex_state = 2}, + [5806] = {.lex_state = 75, .external_lex_state = 2}, + [5807] = {.lex_state = 75, .external_lex_state = 2}, + [5808] = {.lex_state = 75, .external_lex_state = 2}, + [5809] = {.lex_state = 75, .external_lex_state = 2}, + [5810] = {.lex_state = 75, .external_lex_state = 2}, + [5811] = {.lex_state = 75, .external_lex_state = 2}, + [5812] = {.lex_state = 75, .external_lex_state = 2}, + [5813] = {.lex_state = 75, .external_lex_state = 2}, + [5814] = {.lex_state = 75, .external_lex_state = 2}, + [5815] = {.lex_state = 75, .external_lex_state = 2}, + [5816] = {.lex_state = 75, .external_lex_state = 2}, + [5817] = {.lex_state = 75, .external_lex_state = 2}, + [5818] = {.lex_state = 75, .external_lex_state = 2}, + [5819] = {.lex_state = 75, .external_lex_state = 2}, + [5820] = {.lex_state = 75, .external_lex_state = 2}, + [5821] = {.lex_state = 75, .external_lex_state = 2}, + [5822] = {.lex_state = 75, .external_lex_state = 2}, + [5823] = {.lex_state = 75, .external_lex_state = 2}, + [5824] = {.lex_state = 75, .external_lex_state = 2}, + [5825] = {.lex_state = 75, .external_lex_state = 2}, + [5826] = {.lex_state = 75, .external_lex_state = 2}, + [5827] = {.lex_state = 75, .external_lex_state = 2}, + [5828] = {.lex_state = 75, .external_lex_state = 2}, + [5829] = {.lex_state = 75, .external_lex_state = 2}, + [5830] = {.lex_state = 75, .external_lex_state = 2}, + [5831] = {.lex_state = 75, .external_lex_state = 2}, + [5832] = {.lex_state = 75, .external_lex_state = 2}, + [5833] = {.lex_state = 75, .external_lex_state = 2}, + [5834] = {.lex_state = 75, .external_lex_state = 2}, + [5835] = {.lex_state = 75, .external_lex_state = 2}, + [5836] = {.lex_state = 75, .external_lex_state = 2}, + [5837] = {.lex_state = 75, .external_lex_state = 2}, + [5838] = {.lex_state = 75, .external_lex_state = 2}, + [5839] = {.lex_state = 75, .external_lex_state = 2}, + [5840] = {.lex_state = 75, .external_lex_state = 2}, + [5841] = {.lex_state = 75, .external_lex_state = 2}, + [5842] = {.lex_state = 75, .external_lex_state = 2}, + [5843] = {.lex_state = 75, .external_lex_state = 2}, + [5844] = {.lex_state = 75, .external_lex_state = 2}, + [5845] = {.lex_state = 75, .external_lex_state = 2}, + [5846] = {.lex_state = 75, .external_lex_state = 2}, + [5847] = {.lex_state = 75, .external_lex_state = 2}, + [5848] = {.lex_state = 75, .external_lex_state = 2}, + [5849] = {.lex_state = 75, .external_lex_state = 2}, + [5850] = {.lex_state = 75, .external_lex_state = 2}, + [5851] = {.lex_state = 75, .external_lex_state = 2}, + [5852] = {.lex_state = 75, .external_lex_state = 2}, + [5853] = {.lex_state = 75, .external_lex_state = 2}, + [5854] = {.lex_state = 75, .external_lex_state = 2}, + [5855] = {.lex_state = 75, .external_lex_state = 2}, + [5856] = {.lex_state = 75, .external_lex_state = 2}, + [5857] = {.lex_state = 75, .external_lex_state = 2}, + [5858] = {.lex_state = 75, .external_lex_state = 2}, + [5859] = {.lex_state = 75, .external_lex_state = 2}, + [5860] = {.lex_state = 75, .external_lex_state = 2}, + [5861] = {.lex_state = 75, .external_lex_state = 2}, + [5862] = {.lex_state = 75, .external_lex_state = 2}, + [5863] = {.lex_state = 75, .external_lex_state = 2}, + [5864] = {.lex_state = 75, .external_lex_state = 2}, + [5865] = {.lex_state = 75, .external_lex_state = 2}, + [5866] = {.lex_state = 75, .external_lex_state = 2}, + [5867] = {.lex_state = 75, .external_lex_state = 2}, + [5868] = {.lex_state = 75, .external_lex_state = 2}, + [5869] = {.lex_state = 75, .external_lex_state = 2}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -19165,7 +18844,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1), [anon_sym_LBRACK] = ACTIONS(1), [anon_sym_RBRACK] = ACTIONS(1), - [sym_glimmer_opening_tag] = ACTIONS(1), [anon_sym_DOT] = ACTIONS(1), [anon_sym_class] = ACTIONS(1), [anon_sym_async] = ACTIONS(1), @@ -19282,86 +18960,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___error_recovery] = ACTIONS(1), }, [1] = { - [sym_program] = STATE(5881), - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), - [sym_statement] = STATE(17), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(3877), + [sym_program] = STATE(5657), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(16), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_program_repeat1] = STATE(16), + [aux_sym_export_statement_repeat1] = STATE(3774), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [sym_hash_bang_line] = ACTIONS(11), @@ -19392,536 +19069,530 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_new] = ACTIONS(75), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [2] = { - [sym_import] = STATE(3702), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3593), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5679), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1284), - [sym_subscript_expression] = STATE(1284), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2232), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(4277), - [sym_pattern] = STATE(4086), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1284), + [sym_string] = STATE(2213), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4087), + [sym_pattern] = STATE(4312), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3154), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_type_arguments] = STATE(537), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(113), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_type] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(126), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(130), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(145), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(155), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_DOT_DOT_DOT] = ACTIONS(165), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_SLASH] = ACTIONS(173), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(178), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(182), - [anon_sym_DASH_DASH] = ACTIONS(182), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(189), - [sym_number] = ACTIONS(191), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(195), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(203), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(205), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(207), - [anon_sym_number] = ACTIONS(207), - [anon_sym_boolean] = ACTIONS(207), - [anon_sym_string] = ACTIONS(207), - [anon_sym_symbol] = ACTIONS(207), - [anon_sym_object] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__ternary_qmark] = ACTIONS(157), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3153), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(539), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5158), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(111), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(129), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(144), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(152), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(156), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(170), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(181), + [anon_sym_DASH_DASH] = ACTIONS(181), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(188), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(194), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(200), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(202), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(204), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(206), + [anon_sym_number] = ACTIONS(206), + [anon_sym_boolean] = ACTIONS(206), + [anon_sym_string] = ACTIONS(206), + [anon_sym_symbol] = ACTIONS(206), + [anon_sym_object] = ACTIONS(206), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [3] = { - [sym_import] = STATE(3702), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3593), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5679), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1284), - [sym_subscript_expression] = STATE(1284), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2232), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(4277), - [sym_pattern] = STATE(4086), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1284), + [sym_string] = STATE(2213), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4087), + [sym_pattern] = STATE(4312), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3154), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_type_arguments] = STATE(537), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(113), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_type] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(221), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(126), - [anon_sym_COMMA] = ACTIONS(224), - [anon_sym_typeof] = ACTIONS(130), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(224), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(224), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(145), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(227), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(159), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_DOT_DOT_DOT] = ACTIONS(165), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_SLASH] = ACTIONS(173), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(178), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(182), - [anon_sym_DASH_DASH] = ACTIONS(182), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(189), - [sym_number] = ACTIONS(191), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(195), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(203), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(205), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(207), - [anon_sym_number] = ACTIONS(207), - [anon_sym_boolean] = ACTIONS(207), - [anon_sym_string] = ACTIONS(207), - [anon_sym_symbol] = ACTIONS(207), - [anon_sym_object] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__ternary_qmark] = ACTIONS(157), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3153), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(539), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5158), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(111), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(220), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_typeof] = ACTIONS(129), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(223), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(223), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(144), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(156), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(170), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(181), + [anon_sym_DASH_DASH] = ACTIONS(181), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(188), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(194), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(200), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(202), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(204), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(206), + [anon_sym_number] = ACTIONS(206), + [anon_sym_boolean] = ACTIONS(206), + [anon_sym_string] = ACTIONS(206), + [anon_sym_symbol] = ACTIONS(206), + [anon_sym_object] = ACTIONS(206), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [4] = { - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), [sym_statement] = STATE(14), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5802), - [sym_object_assignment_pattern] = STATE(4562), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5802), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5802), - [sym_spread_element] = STATE(4699), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2350), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_rest_pattern] = STATE(4562), - [sym_method_definition] = STATE(4699), - [sym_pair] = STATE(4699), - [sym_pair_pattern] = STATE(4562), - [sym__property_name] = STATE(3552), - [sym_computed_property_name] = STATE(3552), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_accessibility_modifier] = STATE(2785), - [sym_override_modifier] = STATE(2801), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5637), + [sym_object_assignment_pattern] = STATE(4555), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5637), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5637), + [sym_spread_element] = STATE(4576), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2202), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_rest_pattern] = STATE(4555), + [sym_method_definition] = STATE(4576), + [sym_pair] = STATE(4576), + [sym_pair_pattern] = STATE(4555), + [sym__property_name] = STATE(3648), + [sym_computed_property_name] = STATE(3648), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_accessibility_modifier] = STATE(2786), + [sym_override_modifier] = STATE(2808), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), [aux_sym_program_repeat1] = STATE(14), - [aux_sym_export_statement_repeat1] = STATE(3877), - [aux_sym_object_repeat1] = STATE(4653), - [aux_sym_object_pattern_repeat1] = STATE(4884), - [sym_identifier] = ACTIONS(229), - [anon_sym_export] = ACTIONS(231), - [anon_sym_STAR] = ACTIONS(233), - [anon_sym_type] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), + [aux_sym_export_statement_repeat1] = STATE(3774), + [aux_sym_object_repeat1] = STATE(4744), + [aux_sym_object_pattern_repeat1] = STATE(4745), + [sym_identifier] = ACTIONS(227), + [anon_sym_export] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_type] = ACTIONS(233), + [anon_sym_namespace] = ACTIONS(235), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_COMMA] = ACTIONS(239), - [anon_sym_RBRACE] = ACTIONS(241), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_RBRACE] = ACTIONS(239), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(243), + [anon_sym_let] = ACTIONS(241), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), [anon_sym_if] = ACTIONS(35), @@ -19939,162 +19610,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(59), [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(245), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(247), - [anon_sym_function] = ACTIONS(73), - [anon_sym_new] = ACTIONS(249), - [anon_sym_using] = ACTIONS(77), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(243), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(245), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(247), + [anon_sym_using] = ACTIONS(75), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(253), - [sym_private_property_identifier] = ACTIONS(255), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(257), - [anon_sym_readonly] = ACTIONS(259), - [anon_sym_get] = ACTIONS(261), - [anon_sym_set] = ACTIONS(261), - [anon_sym_declare] = ACTIONS(263), - [anon_sym_public] = ACTIONS(265), - [anon_sym_private] = ACTIONS(265), - [anon_sym_protected] = ACTIONS(265), - [anon_sym_override] = ACTIONS(267), - [anon_sym_module] = ACTIONS(269), - [anon_sym_any] = ACTIONS(271), - [anon_sym_number] = ACTIONS(271), - [anon_sym_boolean] = ACTIONS(271), - [anon_sym_string] = ACTIONS(271), - [anon_sym_symbol] = ACTIONS(271), - [anon_sym_object] = ACTIONS(271), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(251), + [sym_private_property_identifier] = ACTIONS(253), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(255), + [anon_sym_readonly] = ACTIONS(257), + [anon_sym_get] = ACTIONS(259), + [anon_sym_set] = ACTIONS(259), + [anon_sym_declare] = ACTIONS(261), + [anon_sym_public] = ACTIONS(263), + [anon_sym_private] = ACTIONS(263), + [anon_sym_protected] = ACTIONS(263), + [anon_sym_override] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_any] = ACTIONS(269), + [anon_sym_number] = ACTIONS(269), + [anon_sym_boolean] = ACTIONS(269), + [anon_sym_string] = ACTIONS(269), + [anon_sym_symbol] = ACTIONS(269), + [anon_sym_object] = ACTIONS(269), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [5] = { - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), - [sym_statement] = STATE(14), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5802), - [sym_object_assignment_pattern] = STATE(4562), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5802), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5802), - [sym_spread_element] = STATE(4699), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2350), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_rest_pattern] = STATE(4562), - [sym_method_definition] = STATE(4699), - [sym_pair] = STATE(4699), - [sym_pair_pattern] = STATE(4562), - [sym__property_name] = STATE(3552), - [sym_computed_property_name] = STATE(3552), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_accessibility_modifier] = STATE(2785), - [sym_override_modifier] = STATE(2801), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_program_repeat1] = STATE(14), - [aux_sym_export_statement_repeat1] = STATE(3877), - [aux_sym_object_repeat1] = STATE(4653), - [aux_sym_object_pattern_repeat1] = STATE(4884), - [sym_identifier] = ACTIONS(229), - [anon_sym_export] = ACTIONS(231), - [anon_sym_STAR] = ACTIONS(233), - [anon_sym_type] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(18), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5637), + [sym_object_assignment_pattern] = STATE(4555), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5637), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5637), + [sym_spread_element] = STATE(4576), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2202), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_rest_pattern] = STATE(4555), + [sym_method_definition] = STATE(4576), + [sym_pair] = STATE(4576), + [sym_pair_pattern] = STATE(4555), + [sym__property_name] = STATE(3648), + [sym_computed_property_name] = STATE(3648), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_accessibility_modifier] = STATE(2786), + [sym_override_modifier] = STATE(2808), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_program_repeat1] = STATE(18), + [aux_sym_export_statement_repeat1] = STATE(3774), + [aux_sym_object_repeat1] = STATE(4744), + [aux_sym_object_pattern_repeat1] = STATE(4745), + [sym_identifier] = ACTIONS(227), + [anon_sym_export] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_type] = ACTIONS(233), + [anon_sym_namespace] = ACTIONS(235), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_COMMA] = ACTIONS(239), - [anon_sym_RBRACE] = ACTIONS(273), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_RBRACE] = ACTIONS(271), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(243), + [anon_sym_let] = ACTIONS(241), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), [anon_sym_if] = ACTIONS(35), @@ -20112,162 +19781,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(59), [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(245), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(247), - [anon_sym_function] = ACTIONS(73), - [anon_sym_new] = ACTIONS(249), - [anon_sym_using] = ACTIONS(77), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(243), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(245), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(247), + [anon_sym_using] = ACTIONS(75), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(253), - [sym_private_property_identifier] = ACTIONS(255), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(257), - [anon_sym_readonly] = ACTIONS(259), - [anon_sym_get] = ACTIONS(261), - [anon_sym_set] = ACTIONS(261), - [anon_sym_declare] = ACTIONS(263), - [anon_sym_public] = ACTIONS(265), - [anon_sym_private] = ACTIONS(265), - [anon_sym_protected] = ACTIONS(265), - [anon_sym_override] = ACTIONS(267), - [anon_sym_module] = ACTIONS(269), - [anon_sym_any] = ACTIONS(271), - [anon_sym_number] = ACTIONS(271), - [anon_sym_boolean] = ACTIONS(271), - [anon_sym_string] = ACTIONS(271), - [anon_sym_symbol] = ACTIONS(271), - [anon_sym_object] = ACTIONS(271), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(251), + [sym_private_property_identifier] = ACTIONS(253), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(255), + [anon_sym_readonly] = ACTIONS(257), + [anon_sym_get] = ACTIONS(259), + [anon_sym_set] = ACTIONS(259), + [anon_sym_declare] = ACTIONS(261), + [anon_sym_public] = ACTIONS(263), + [anon_sym_private] = ACTIONS(263), + [anon_sym_protected] = ACTIONS(263), + [anon_sym_override] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_any] = ACTIONS(269), + [anon_sym_number] = ACTIONS(269), + [anon_sym_boolean] = ACTIONS(269), + [anon_sym_string] = ACTIONS(269), + [anon_sym_symbol] = ACTIONS(269), + [anon_sym_object] = ACTIONS(269), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [6] = { - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), - [sym_statement] = STATE(18), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5802), - [sym_object_assignment_pattern] = STATE(4562), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5802), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5802), - [sym_spread_element] = STATE(4699), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2350), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_rest_pattern] = STATE(4562), - [sym_method_definition] = STATE(4699), - [sym_pair] = STATE(4699), - [sym_pair_pattern] = STATE(4562), - [sym__property_name] = STATE(3552), - [sym_computed_property_name] = STATE(3552), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_accessibility_modifier] = STATE(2785), - [sym_override_modifier] = STATE(2801), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_program_repeat1] = STATE(18), - [aux_sym_export_statement_repeat1] = STATE(3877), - [aux_sym_object_repeat1] = STATE(4653), - [aux_sym_object_pattern_repeat1] = STATE(4884), - [sym_identifier] = ACTIONS(229), - [anon_sym_export] = ACTIONS(231), - [anon_sym_STAR] = ACTIONS(233), - [anon_sym_type] = ACTIONS(235), - [anon_sym_namespace] = ACTIONS(237), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(22), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5637), + [sym_object_assignment_pattern] = STATE(4555), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5637), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5637), + [sym_spread_element] = STATE(4721), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2202), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_rest_pattern] = STATE(4555), + [sym_method_definition] = STATE(4721), + [sym_pair] = STATE(4721), + [sym_pair_pattern] = STATE(4555), + [sym__property_name] = STATE(3648), + [sym_computed_property_name] = STATE(3648), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_accessibility_modifier] = STATE(2786), + [sym_override_modifier] = STATE(2808), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_program_repeat1] = STATE(22), + [aux_sym_export_statement_repeat1] = STATE(3774), + [aux_sym_object_repeat1] = STATE(4734), + [aux_sym_object_pattern_repeat1] = STATE(4745), + [sym_identifier] = ACTIONS(273), + [anon_sym_export] = ACTIONS(275), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_type] = ACTIONS(277), + [anon_sym_namespace] = ACTIONS(279), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_COMMA] = ACTIONS(239), - [anon_sym_RBRACE] = ACTIONS(275), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_RBRACE] = ACTIONS(281), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(243), + [anon_sym_let] = ACTIONS(283), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), [anon_sym_if] = ACTIONS(35), @@ -20285,162 +19952,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(59), [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(245), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(247), - [anon_sym_function] = ACTIONS(73), - [anon_sym_new] = ACTIONS(249), - [anon_sym_using] = ACTIONS(77), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(243), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(285), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(287), + [anon_sym_using] = ACTIONS(75), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(253), - [sym_private_property_identifier] = ACTIONS(255), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(257), - [anon_sym_readonly] = ACTIONS(259), - [anon_sym_get] = ACTIONS(261), - [anon_sym_set] = ACTIONS(261), - [anon_sym_declare] = ACTIONS(263), - [anon_sym_public] = ACTIONS(265), - [anon_sym_private] = ACTIONS(265), - [anon_sym_protected] = ACTIONS(265), - [anon_sym_override] = ACTIONS(267), - [anon_sym_module] = ACTIONS(269), - [anon_sym_any] = ACTIONS(271), - [anon_sym_number] = ACTIONS(271), - [anon_sym_boolean] = ACTIONS(271), - [anon_sym_string] = ACTIONS(271), - [anon_sym_symbol] = ACTIONS(271), - [anon_sym_object] = ACTIONS(271), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(251), + [sym_private_property_identifier] = ACTIONS(253), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(289), + [anon_sym_readonly] = ACTIONS(291), + [anon_sym_get] = ACTIONS(293), + [anon_sym_set] = ACTIONS(293), + [anon_sym_declare] = ACTIONS(295), + [anon_sym_public] = ACTIONS(297), + [anon_sym_private] = ACTIONS(297), + [anon_sym_protected] = ACTIONS(297), + [anon_sym_override] = ACTIONS(299), + [anon_sym_module] = ACTIONS(301), + [anon_sym_any] = ACTIONS(303), + [anon_sym_number] = ACTIONS(303), + [anon_sym_boolean] = ACTIONS(303), + [anon_sym_string] = ACTIONS(303), + [anon_sym_symbol] = ACTIONS(303), + [anon_sym_object] = ACTIONS(303), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [7] = { - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), - [sym_statement] = STATE(23), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5802), - [sym_object_assignment_pattern] = STATE(4562), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5802), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5802), - [sym_spread_element] = STATE(5127), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2350), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_rest_pattern] = STATE(4562), - [sym_method_definition] = STATE(5127), - [sym_pair] = STATE(5127), - [sym_pair_pattern] = STATE(4562), - [sym__property_name] = STATE(3552), - [sym_computed_property_name] = STATE(3552), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_accessibility_modifier] = STATE(2785), - [sym_override_modifier] = STATE(2801), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_program_repeat1] = STATE(23), - [aux_sym_export_statement_repeat1] = STATE(3877), - [aux_sym_object_repeat1] = STATE(4524), - [aux_sym_object_pattern_repeat1] = STATE(4884), - [sym_identifier] = ACTIONS(277), - [anon_sym_export] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(233), - [anon_sym_type] = ACTIONS(281), - [anon_sym_namespace] = ACTIONS(283), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(14), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5637), + [sym_object_assignment_pattern] = STATE(4555), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5637), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5637), + [sym_spread_element] = STATE(4576), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2202), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_rest_pattern] = STATE(4555), + [sym_method_definition] = STATE(4576), + [sym_pair] = STATE(4576), + [sym_pair_pattern] = STATE(4555), + [sym__property_name] = STATE(3648), + [sym_computed_property_name] = STATE(3648), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_accessibility_modifier] = STATE(2786), + [sym_override_modifier] = STATE(2808), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_program_repeat1] = STATE(14), + [aux_sym_export_statement_repeat1] = STATE(3774), + [aux_sym_object_repeat1] = STATE(4744), + [aux_sym_object_pattern_repeat1] = STATE(4745), + [sym_identifier] = ACTIONS(227), + [anon_sym_export] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_type] = ACTIONS(233), + [anon_sym_namespace] = ACTIONS(235), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_COMMA] = ACTIONS(239), - [anon_sym_RBRACE] = ACTIONS(285), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_RBRACE] = ACTIONS(305), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(287), + [anon_sym_let] = ACTIONS(241), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), [anon_sym_if] = ACTIONS(35), @@ -20458,162 +20123,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(59), [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(245), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(289), - [anon_sym_function] = ACTIONS(73), - [anon_sym_new] = ACTIONS(291), - [anon_sym_using] = ACTIONS(77), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(243), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(245), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(247), + [anon_sym_using] = ACTIONS(75), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(253), - [sym_private_property_identifier] = ACTIONS(255), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(293), - [anon_sym_readonly] = ACTIONS(295), - [anon_sym_get] = ACTIONS(297), - [anon_sym_set] = ACTIONS(297), - [anon_sym_declare] = ACTIONS(299), - [anon_sym_public] = ACTIONS(301), - [anon_sym_private] = ACTIONS(301), - [anon_sym_protected] = ACTIONS(301), - [anon_sym_override] = ACTIONS(303), - [anon_sym_module] = ACTIONS(305), - [anon_sym_any] = ACTIONS(307), - [anon_sym_number] = ACTIONS(307), - [anon_sym_boolean] = ACTIONS(307), - [anon_sym_string] = ACTIONS(307), - [anon_sym_symbol] = ACTIONS(307), - [anon_sym_object] = ACTIONS(307), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(251), + [sym_private_property_identifier] = ACTIONS(253), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(255), + [anon_sym_readonly] = ACTIONS(257), + [anon_sym_get] = ACTIONS(259), + [anon_sym_set] = ACTIONS(259), + [anon_sym_declare] = ACTIONS(261), + [anon_sym_public] = ACTIONS(263), + [anon_sym_private] = ACTIONS(263), + [anon_sym_protected] = ACTIONS(263), + [anon_sym_override] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_any] = ACTIONS(269), + [anon_sym_number] = ACTIONS(269), + [anon_sym_boolean] = ACTIONS(269), + [anon_sym_string] = ACTIONS(269), + [anon_sym_symbol] = ACTIONS(269), + [anon_sym_object] = ACTIONS(269), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [8] = { - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), - [sym_statement] = STATE(23), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5802), - [sym_object_assignment_pattern] = STATE(4562), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5802), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5802), - [sym_spread_element] = STATE(5127), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2350), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_rest_pattern] = STATE(4562), - [sym_method_definition] = STATE(5127), - [sym_pair] = STATE(5127), - [sym_pair_pattern] = STATE(4562), - [sym__property_name] = STATE(3552), - [sym_computed_property_name] = STATE(3552), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_accessibility_modifier] = STATE(2785), - [sym_override_modifier] = STATE(2801), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_program_repeat1] = STATE(23), - [aux_sym_export_statement_repeat1] = STATE(3877), - [aux_sym_object_repeat1] = STATE(4524), - [aux_sym_object_pattern_repeat1] = STATE(4884), - [sym_identifier] = ACTIONS(309), - [anon_sym_export] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(233), - [anon_sym_type] = ACTIONS(313), - [anon_sym_namespace] = ACTIONS(315), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(22), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5637), + [sym_object_assignment_pattern] = STATE(4555), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5637), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5637), + [sym_spread_element] = STATE(4721), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2202), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_rest_pattern] = STATE(4555), + [sym_method_definition] = STATE(4721), + [sym_pair] = STATE(4721), + [sym_pair_pattern] = STATE(4555), + [sym__property_name] = STATE(3648), + [sym_computed_property_name] = STATE(3648), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_accessibility_modifier] = STATE(2786), + [sym_override_modifier] = STATE(2808), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_program_repeat1] = STATE(22), + [aux_sym_export_statement_repeat1] = STATE(3774), + [aux_sym_object_repeat1] = STATE(4734), + [aux_sym_object_pattern_repeat1] = STATE(4745), + [sym_identifier] = ACTIONS(307), + [anon_sym_export] = ACTIONS(309), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_type] = ACTIONS(311), + [anon_sym_namespace] = ACTIONS(313), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_COMMA] = ACTIONS(239), - [anon_sym_RBRACE] = ACTIONS(285), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_RBRACE] = ACTIONS(281), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(317), + [anon_sym_let] = ACTIONS(315), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), [anon_sym_if] = ACTIONS(35), @@ -20631,305 +20294,301 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(59), [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(245), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(319), - [anon_sym_function] = ACTIONS(73), - [anon_sym_new] = ACTIONS(321), - [anon_sym_using] = ACTIONS(77), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(243), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(317), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(319), + [anon_sym_using] = ACTIONS(75), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(253), - [sym_private_property_identifier] = ACTIONS(255), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(323), - [anon_sym_readonly] = ACTIONS(325), - [anon_sym_get] = ACTIONS(327), - [anon_sym_set] = ACTIONS(327), - [anon_sym_declare] = ACTIONS(329), - [anon_sym_public] = ACTIONS(331), - [anon_sym_private] = ACTIONS(331), - [anon_sym_protected] = ACTIONS(331), - [anon_sym_override] = ACTIONS(333), - [anon_sym_module] = ACTIONS(335), - [anon_sym_any] = ACTIONS(337), - [anon_sym_number] = ACTIONS(337), - [anon_sym_boolean] = ACTIONS(337), - [anon_sym_string] = ACTIONS(337), - [anon_sym_symbol] = ACTIONS(337), - [anon_sym_object] = ACTIONS(337), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(251), + [sym_private_property_identifier] = ACTIONS(253), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(321), + [anon_sym_readonly] = ACTIONS(323), + [anon_sym_get] = ACTIONS(325), + [anon_sym_set] = ACTIONS(325), + [anon_sym_declare] = ACTIONS(327), + [anon_sym_public] = ACTIONS(329), + [anon_sym_private] = ACTIONS(329), + [anon_sym_protected] = ACTIONS(329), + [anon_sym_override] = ACTIONS(331), + [anon_sym_module] = ACTIONS(333), + [anon_sym_any] = ACTIONS(335), + [anon_sym_number] = ACTIONS(335), + [anon_sym_boolean] = ACTIONS(335), + [anon_sym_string] = ACTIONS(335), + [anon_sym_symbol] = ACTIONS(335), + [anon_sym_object] = ACTIONS(335), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [9] = { - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3877), - [ts_builtin_sym_end] = ACTIONS(339), - [sym_identifier] = ACTIONS(341), - [anon_sym_export] = ACTIONS(344), - [anon_sym_default] = ACTIONS(347), - [anon_sym_type] = ACTIONS(349), - [anon_sym_namespace] = ACTIONS(352), - [anon_sym_LBRACE] = ACTIONS(355), - [anon_sym_RBRACE] = ACTIONS(339), - [anon_sym_typeof] = ACTIONS(358), - [anon_sym_import] = ACTIONS(361), - [anon_sym_with] = ACTIONS(364), - [anon_sym_var] = ACTIONS(367), - [anon_sym_let] = ACTIONS(370), - [anon_sym_const] = ACTIONS(373), - [anon_sym_BANG] = ACTIONS(376), - [anon_sym_if] = ACTIONS(379), - [anon_sym_switch] = ACTIONS(382), - [anon_sym_for] = ACTIONS(385), - [anon_sym_LPAREN] = ACTIONS(388), - [anon_sym_SEMI] = ACTIONS(391), - [anon_sym_await] = ACTIONS(394), - [anon_sym_while] = ACTIONS(397), - [anon_sym_do] = ACTIONS(400), - [anon_sym_try] = ACTIONS(403), - [anon_sym_break] = ACTIONS(406), - [anon_sym_continue] = ACTIONS(409), - [anon_sym_debugger] = ACTIONS(412), - [anon_sym_return] = ACTIONS(415), - [anon_sym_throw] = ACTIONS(418), - [anon_sym_case] = ACTIONS(347), - [anon_sym_yield] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(424), - [sym_glimmer_opening_tag] = ACTIONS(427), - [anon_sym_class] = ACTIONS(430), - [anon_sym_async] = ACTIONS(433), - [anon_sym_function] = ACTIONS(436), - [anon_sym_new] = ACTIONS(439), - [anon_sym_using] = ACTIONS(442), - [anon_sym_PLUS] = ACTIONS(358), - [anon_sym_DASH] = ACTIONS(358), - [anon_sym_SLASH] = ACTIONS(445), - [anon_sym_LT] = ACTIONS(448), - [anon_sym_TILDE] = ACTIONS(376), - [anon_sym_void] = ACTIONS(358), - [anon_sym_delete] = ACTIONS(358), - [anon_sym_PLUS_PLUS] = ACTIONS(451), - [anon_sym_DASH_DASH] = ACTIONS(451), - [anon_sym_DQUOTE] = ACTIONS(454), - [anon_sym_SQUOTE] = ACTIONS(457), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(460), - [sym_number] = ACTIONS(463), - [sym_private_property_identifier] = ACTIONS(466), - [sym_this] = ACTIONS(469), - [sym_super] = ACTIONS(469), - [sym_true] = ACTIONS(469), - [sym_false] = ACTIONS(469), - [sym_null] = ACTIONS(469), - [sym_undefined] = ACTIONS(472), - [anon_sym_AT] = ACTIONS(475), - [anon_sym_static] = ACTIONS(478), - [anon_sym_readonly] = ACTIONS(478), - [anon_sym_get] = ACTIONS(478), - [anon_sym_set] = ACTIONS(478), - [anon_sym_declare] = ACTIONS(481), - [anon_sym_public] = ACTIONS(478), - [anon_sym_private] = ACTIONS(478), - [anon_sym_protected] = ACTIONS(478), - [anon_sym_override] = ACTIONS(478), - [anon_sym_module] = ACTIONS(484), - [anon_sym_any] = ACTIONS(478), - [anon_sym_number] = ACTIONS(478), - [anon_sym_boolean] = ACTIONS(478), - [anon_sym_string] = ACTIONS(478), - [anon_sym_symbol] = ACTIONS(478), - [anon_sym_object] = ACTIONS(478), - [anon_sym_abstract] = ACTIONS(487), - [anon_sym_interface] = ACTIONS(490), - [anon_sym_enum] = ACTIONS(493), + [aux_sym_export_statement_repeat1] = STATE(3774), + [ts_builtin_sym_end] = ACTIONS(337), + [sym_identifier] = ACTIONS(339), + [anon_sym_export] = ACTIONS(342), + [anon_sym_default] = ACTIONS(345), + [anon_sym_type] = ACTIONS(347), + [anon_sym_namespace] = ACTIONS(350), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(337), + [anon_sym_typeof] = ACTIONS(356), + [anon_sym_import] = ACTIONS(359), + [anon_sym_with] = ACTIONS(362), + [anon_sym_var] = ACTIONS(365), + [anon_sym_let] = ACTIONS(368), + [anon_sym_const] = ACTIONS(371), + [anon_sym_BANG] = ACTIONS(374), + [anon_sym_if] = ACTIONS(377), + [anon_sym_switch] = ACTIONS(380), + [anon_sym_for] = ACTIONS(383), + [anon_sym_LPAREN] = ACTIONS(386), + [anon_sym_SEMI] = ACTIONS(389), + [anon_sym_await] = ACTIONS(392), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(398), + [anon_sym_try] = ACTIONS(401), + [anon_sym_break] = ACTIONS(404), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_debugger] = ACTIONS(410), + [anon_sym_return] = ACTIONS(413), + [anon_sym_throw] = ACTIONS(416), + [anon_sym_case] = ACTIONS(345), + [anon_sym_yield] = ACTIONS(419), + [anon_sym_LBRACK] = ACTIONS(422), + [anon_sym_class] = ACTIONS(425), + [anon_sym_async] = ACTIONS(428), + [anon_sym_function] = ACTIONS(431), + [anon_sym_new] = ACTIONS(434), + [anon_sym_using] = ACTIONS(437), + [anon_sym_PLUS] = ACTIONS(356), + [anon_sym_DASH] = ACTIONS(356), + [anon_sym_SLASH] = ACTIONS(440), + [anon_sym_LT] = ACTIONS(443), + [anon_sym_TILDE] = ACTIONS(374), + [anon_sym_void] = ACTIONS(356), + [anon_sym_delete] = ACTIONS(356), + [anon_sym_PLUS_PLUS] = ACTIONS(446), + [anon_sym_DASH_DASH] = ACTIONS(446), + [anon_sym_DQUOTE] = ACTIONS(449), + [anon_sym_SQUOTE] = ACTIONS(452), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(455), + [sym_number] = ACTIONS(458), + [sym_private_property_identifier] = ACTIONS(461), + [sym_this] = ACTIONS(464), + [sym_super] = ACTIONS(464), + [sym_true] = ACTIONS(464), + [sym_false] = ACTIONS(464), + [sym_null] = ACTIONS(464), + [sym_undefined] = ACTIONS(467), + [anon_sym_AT] = ACTIONS(470), + [anon_sym_static] = ACTIONS(473), + [anon_sym_readonly] = ACTIONS(473), + [anon_sym_get] = ACTIONS(473), + [anon_sym_set] = ACTIONS(473), + [anon_sym_declare] = ACTIONS(476), + [anon_sym_public] = ACTIONS(473), + [anon_sym_private] = ACTIONS(473), + [anon_sym_protected] = ACTIONS(473), + [anon_sym_override] = ACTIONS(473), + [anon_sym_module] = ACTIONS(479), + [anon_sym_any] = ACTIONS(473), + [anon_sym_number] = ACTIONS(473), + [anon_sym_boolean] = ACTIONS(473), + [anon_sym_string] = ACTIONS(473), + [anon_sym_symbol] = ACTIONS(473), + [anon_sym_object] = ACTIONS(473), + [anon_sym_abstract] = ACTIONS(482), + [anon_sym_interface] = ACTIONS(485), + [anon_sym_enum] = ACTIONS(488), [sym_html_comment] = ACTIONS(5), }, [10] = { - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), - [sym_statement] = STATE(13), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_program_repeat1] = STATE(13), - [aux_sym_export_statement_repeat1] = STATE(3877), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(3774), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), - [anon_sym_default] = ACTIONS(496), + [anon_sym_default] = ACTIONS(491), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(498), + [anon_sym_RBRACE] = ACTIONS(493), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -20951,145 +20610,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_debugger] = ACTIONS(57), [anon_sym_return] = ACTIONS(59), [anon_sym_throw] = ACTIONS(61), - [anon_sym_case] = ACTIONS(496), + [anon_sym_case] = ACTIONS(491), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_new] = ACTIONS(75), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [11] = { - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3877), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(10), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_program_repeat1] = STATE(10), + [aux_sym_export_statement_repeat1] = STATE(3774), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), - [anon_sym_default] = ACTIONS(500), + [anon_sym_default] = ACTIONS(495), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(502), + [anon_sym_RBRACE] = ACTIONS(497), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -21111,145 +20768,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_debugger] = ACTIONS(57), [anon_sym_return] = ACTIONS(59), [anon_sym_throw] = ACTIONS(61), - [anon_sym_case] = ACTIONS(500), + [anon_sym_case] = ACTIONS(495), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_new] = ACTIONS(75), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [12] = { - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), - [sym_statement] = STATE(11), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_program_repeat1] = STATE(11), - [aux_sym_export_statement_repeat1] = STATE(3877), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(13), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_program_repeat1] = STATE(13), + [aux_sym_export_statement_repeat1] = STATE(3774), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), - [anon_sym_default] = ACTIONS(504), + [anon_sym_default] = ACTIONS(499), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(506), + [anon_sym_RBRACE] = ACTIONS(501), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -21271,145 +20926,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_debugger] = ACTIONS(57), [anon_sym_return] = ACTIONS(59), [anon_sym_throw] = ACTIONS(61), - [anon_sym_case] = ACTIONS(504), + [anon_sym_case] = ACTIONS(499), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_new] = ACTIONS(75), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [13] = { - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3877), + [aux_sym_export_statement_repeat1] = STATE(3774), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), - [anon_sym_default] = ACTIONS(508), + [anon_sym_default] = ACTIONS(503), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(510), + [anon_sym_RBRACE] = ACTIONS(505), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -21431,144 +21084,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_debugger] = ACTIONS(57), [anon_sym_return] = ACTIONS(59), [anon_sym_throw] = ACTIONS(61), - [anon_sym_case] = ACTIONS(508), + [anon_sym_case] = ACTIONS(503), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_new] = ACTIONS(75), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [14] = { - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3877), + [aux_sym_export_statement_repeat1] = STATE(3774), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(512), + [anon_sym_RBRACE] = ACTIONS(507), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -21592,141 +21243,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_new] = ACTIONS(75), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [15] = { - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3877), - [ts_builtin_sym_end] = ACTIONS(514), + [aux_sym_export_statement_repeat1] = STATE(3774), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(509), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -21750,141 +21399,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_new] = ACTIONS(75), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [16] = { - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), - [sym_statement] = STATE(14), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_program_repeat1] = STATE(14), - [aux_sym_export_statement_repeat1] = STATE(3877), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(3774), + [ts_builtin_sym_end] = ACTIONS(511), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(516), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -21908,136 +21555,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_new] = ACTIONS(75), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [17] = { - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3877), - [ts_builtin_sym_end] = ACTIONS(518), + [aux_sym_export_statement_repeat1] = STATE(3774), + [ts_builtin_sym_end] = ACTIONS(513), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -22066,141 +21711,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_new] = ACTIONS(75), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [18] = { - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3877), + [aux_sym_export_statement_repeat1] = STATE(3774), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(520), + [anon_sym_RBRACE] = ACTIONS(515), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -22224,141 +21867,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_new] = ACTIONS(75), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [19] = { - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), [sym_statement] = STATE(20), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), [aux_sym_program_repeat1] = STATE(20), - [aux_sym_export_statement_repeat1] = STATE(3877), + [aux_sym_export_statement_repeat1] = STATE(3774), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(522), + [anon_sym_RBRACE] = ACTIONS(517), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -22382,141 +22023,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_new] = ACTIONS(75), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [20] = { - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3877), + [aux_sym_export_statement_repeat1] = STATE(3774), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(524), + [anon_sym_RBRACE] = ACTIONS(519), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -22540,141 +22179,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_new] = ACTIONS(75), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [21] = { - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), [sym_statement] = STATE(18), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), [aux_sym_program_repeat1] = STATE(18), - [aux_sym_export_statement_repeat1] = STATE(3877), + [aux_sym_export_statement_repeat1] = STATE(3774), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(526), + [anon_sym_RBRACE] = ACTIONS(521), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -22698,141 +22335,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_new] = ACTIONS(75), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [22] = { - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), - [sym_statement] = STATE(23), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_program_repeat1] = STATE(23), - [aux_sym_export_statement_repeat1] = STATE(3877), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(3774), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(528), + [anon_sym_RBRACE] = ACTIONS(523), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -22856,141 +22491,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_new] = ACTIONS(75), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [23] = { - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3877), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(22), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_program_repeat1] = STATE(22), + [aux_sym_export_statement_repeat1] = STATE(3774), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(530), + [anon_sym_RBRACE] = ACTIONS(525), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -23014,141 +22647,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_new] = ACTIONS(75), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [24] = { - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3877), + [aux_sym_export_statement_repeat1] = STATE(3774), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(532), + [anon_sym_RBRACE] = ACTIONS(527), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -23172,141 +22803,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_new] = ACTIONS(75), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [25] = { - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), [sym_statement] = STATE(24), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), [aux_sym_program_repeat1] = STATE(24), - [aux_sym_export_statement_repeat1] = STATE(3877), + [aux_sym_export_statement_repeat1] = STATE(3774), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(534), + [anon_sym_RBRACE] = ACTIONS(529), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -23330,141 +22959,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_new] = ACTIONS(75), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [26] = { - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3877), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(14), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_program_repeat1] = STATE(14), + [aux_sym_export_statement_repeat1] = STATE(3774), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(531), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -23488,141 +23115,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_new] = ACTIONS(75), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [27] = { - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), - [sym_statement] = STATE(30), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_program_repeat1] = STATE(30), - [aux_sym_export_statement_repeat1] = STATE(3877), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(3774), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(538), + [anon_sym_RBRACE] = ACTIONS(533), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -23646,141 +23271,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_new] = ACTIONS(75), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [28] = { - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), - [sym_statement] = STATE(26), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_program_repeat1] = STATE(26), - [aux_sym_export_statement_repeat1] = STATE(3877), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(15), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(3774), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(540), + [anon_sym_RBRACE] = ACTIONS(535), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -23804,141 +23427,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_new] = ACTIONS(75), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [29] = { - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), - [sym_statement] = STATE(15), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(3877), - [ts_builtin_sym_end] = ACTIONS(518), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(27), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_program_repeat1] = STATE(27), + [aux_sym_export_statement_repeat1] = STATE(3774), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(537), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -23962,141 +23583,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_new] = ACTIONS(75), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [30] = { - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3877), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(17), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(3774), + [ts_builtin_sym_end] = ACTIONS(511), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(542), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -24120,309 +23739,305 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_new] = ACTIONS(75), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [31] = { - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), - [sym_statement] = STATE(920), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(2487), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(3847), - [sym_identifier] = ACTIONS(544), - [anon_sym_export] = ACTIONS(546), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(552), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(554), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(556), - [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(558), - [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(562), - [anon_sym_do] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_break] = ACTIONS(53), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_debugger] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(564), - [anon_sym_async] = ACTIONS(566), - [anon_sym_function] = ACTIONS(568), - [anon_sym_new] = ACTIONS(570), - [anon_sym_using] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(572), - [anon_sym_readonly] = ACTIONS(572), - [anon_sym_get] = ACTIONS(572), - [anon_sym_set] = ACTIONS(572), - [anon_sym_declare] = ACTIONS(574), - [anon_sym_public] = ACTIONS(572), - [anon_sym_private] = ACTIONS(572), - [anon_sym_protected] = ACTIONS(572), - [anon_sym_override] = ACTIONS(572), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(572), - [anon_sym_number] = ACTIONS(572), - [anon_sym_boolean] = ACTIONS(572), - [anon_sym_string] = ACTIONS(572), - [anon_sym_symbol] = ACTIONS(572), - [anon_sym_object] = ACTIONS(572), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [sym_import] = STATE(3663), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2126), + [sym_primary_expression] = STATE(1515), + [sym_yield_expression] = STATE(1652), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(4425), + [sym_assignment_pattern] = STATE(4969), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(4425), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), + [sym_await_expression] = STATE(1652), + [sym_member_expression] = STATE(1396), + [sym_subscript_expression] = STATE(1396), + [sym_assignment_expression] = STATE(1652), + [sym__augmented_assignment_lhs] = STATE(3003), + [sym_augmented_assignment_expression] = STATE(1652), + [sym__destructuring_pattern] = STATE(4425), + [sym_spread_element] = STATE(4946), + [sym_ternary_expression] = STATE(1652), + [sym_binary_expression] = STATE(1652), + [sym_unary_expression] = STATE(1652), + [sym_update_expression] = STATE(1652), + [sym_string] = STATE(2213), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4317), + [sym_pattern] = STATE(4406), + [sym_rest_pattern] = STATE(4115), + [sym_non_null_expression] = STATE(1396), + [sym_type_assertion] = STATE(1652), + [sym_as_expression] = STATE(1652), + [sym_satisfies_expression] = STATE(1652), + [sym_instantiation_expression] = STATE(1652), + [sym_internal_module] = STATE(1652), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3773), + [sym_tuple_parameter] = STATE(4568), + [sym_optional_tuple_parameter] = STATE(4568), + [sym_optional_type] = STATE(4568), + [sym_rest_type] = STATE(4568), + [sym__tuple_type_member] = STATE(4568), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(484), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5455), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(4429), + [aux_sym_array_repeat1] = STATE(4955), + [aux_sym_array_pattern_repeat1] = STATE(4977), + [sym_identifier] = ACTIONS(539), + [anon_sym_export] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(547), + [anon_sym_COMMA] = ACTIONS(549), + [anon_sym_typeof] = ACTIONS(551), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(541), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_RBRACK] = ACTIONS(561), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(565), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(575), + [anon_sym_DASH] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(579), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(188), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(587), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(589), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(591), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(595), + [anon_sym_number] = ACTIONS(595), + [anon_sym_boolean] = ACTIONS(595), + [anon_sym_string] = ACTIONS(595), + [anon_sym_symbol] = ACTIONS(595), + [anon_sym_object] = ACTIONS(595), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [32] = { - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), - [sym_statement] = STATE(849), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(2487), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(3847), - [sym_identifier] = ACTIONS(544), - [anon_sym_export] = ACTIONS(546), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(552), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(940), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(2513), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3830), + [sym_identifier] = ACTIONS(603), + [anon_sym_export] = ACTIONS(605), + [anon_sym_type] = ACTIONS(607), + [anon_sym_namespace] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(554), + [anon_sym_with] = ACTIONS(613), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(556), + [anon_sym_let] = ACTIONS(615), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(558), + [anon_sym_if] = ACTIONS(617), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(560), + [anon_sym_for] = ACTIONS(619), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(562), + [anon_sym_while] = ACTIONS(621), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -24432,153 +24047,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(564), - [anon_sym_async] = ACTIONS(566), - [anon_sym_function] = ACTIONS(568), - [anon_sym_new] = ACTIONS(570), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(623), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(627), + [anon_sym_new] = ACTIONS(629), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(572), - [anon_sym_readonly] = ACTIONS(572), - [anon_sym_get] = ACTIONS(572), - [anon_sym_set] = ACTIONS(572), - [anon_sym_declare] = ACTIONS(574), - [anon_sym_public] = ACTIONS(572), - [anon_sym_private] = ACTIONS(572), - [anon_sym_protected] = ACTIONS(572), - [anon_sym_override] = ACTIONS(572), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(572), - [anon_sym_number] = ACTIONS(572), - [anon_sym_boolean] = ACTIONS(572), - [anon_sym_string] = ACTIONS(572), - [anon_sym_symbol] = ACTIONS(572), - [anon_sym_object] = ACTIONS(572), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(631), + [anon_sym_readonly] = ACTIONS(631), + [anon_sym_get] = ACTIONS(631), + [anon_sym_set] = ACTIONS(631), + [anon_sym_declare] = ACTIONS(633), + [anon_sym_public] = ACTIONS(631), + [anon_sym_private] = ACTIONS(631), + [anon_sym_protected] = ACTIONS(631), + [anon_sym_override] = ACTIONS(631), + [anon_sym_module] = ACTIONS(635), + [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_object] = ACTIONS(631), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [33] = { - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), - [sym_statement] = STATE(4692), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(2487), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(3847), - [sym_identifier] = ACTIONS(544), - [anon_sym_export] = ACTIONS(546), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(552), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(928), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3774), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(554), + [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(556), + [anon_sym_let] = ACTIONS(29), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(558), + [anon_sym_if] = ACTIONS(35), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(560), + [anon_sym_for] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(562), + [anon_sym_while] = ACTIONS(47), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -24588,153 +24201,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(564), - [anon_sym_async] = ACTIONS(566), - [anon_sym_function] = ACTIONS(568), - [anon_sym_new] = ACTIONS(570), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(572), - [anon_sym_readonly] = ACTIONS(572), - [anon_sym_get] = ACTIONS(572), - [anon_sym_set] = ACTIONS(572), - [anon_sym_declare] = ACTIONS(574), - [anon_sym_public] = ACTIONS(572), - [anon_sym_private] = ACTIONS(572), - [anon_sym_protected] = ACTIONS(572), - [anon_sym_override] = ACTIONS(572), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(572), - [anon_sym_number] = ACTIONS(572), - [anon_sym_boolean] = ACTIONS(572), - [anon_sym_string] = ACTIONS(572), - [anon_sym_symbol] = ACTIONS(572), - [anon_sym_object] = ACTIONS(572), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [34] = { - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), - [sym_statement] = STATE(931), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(2487), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(3847), - [sym_identifier] = ACTIONS(544), - [anon_sym_export] = ACTIONS(546), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(552), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(832), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(2513), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3830), + [sym_identifier] = ACTIONS(603), + [anon_sym_export] = ACTIONS(605), + [anon_sym_type] = ACTIONS(607), + [anon_sym_namespace] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(554), + [anon_sym_with] = ACTIONS(613), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(556), + [anon_sym_let] = ACTIONS(615), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(558), + [anon_sym_if] = ACTIONS(617), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(560), + [anon_sym_for] = ACTIONS(619), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(562), + [anon_sym_while] = ACTIONS(621), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -24744,153 +24355,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(564), - [anon_sym_async] = ACTIONS(566), - [anon_sym_function] = ACTIONS(568), - [anon_sym_new] = ACTIONS(570), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(623), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(627), + [anon_sym_new] = ACTIONS(629), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(572), - [anon_sym_readonly] = ACTIONS(572), - [anon_sym_get] = ACTIONS(572), - [anon_sym_set] = ACTIONS(572), - [anon_sym_declare] = ACTIONS(574), - [anon_sym_public] = ACTIONS(572), - [anon_sym_private] = ACTIONS(572), - [anon_sym_protected] = ACTIONS(572), - [anon_sym_override] = ACTIONS(572), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(572), - [anon_sym_number] = ACTIONS(572), - [anon_sym_boolean] = ACTIONS(572), - [anon_sym_string] = ACTIONS(572), - [anon_sym_symbol] = ACTIONS(572), - [anon_sym_object] = ACTIONS(572), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(631), + [anon_sym_readonly] = ACTIONS(631), + [anon_sym_get] = ACTIONS(631), + [anon_sym_set] = ACTIONS(631), + [anon_sym_declare] = ACTIONS(633), + [anon_sym_public] = ACTIONS(631), + [anon_sym_private] = ACTIONS(631), + [anon_sym_protected] = ACTIONS(631), + [anon_sym_override] = ACTIONS(631), + [anon_sym_module] = ACTIONS(635), + [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_object] = ACTIONS(631), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [35] = { - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), - [sym_statement] = STATE(866), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(2487), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(3847), - [sym_identifier] = ACTIONS(544), - [anon_sym_export] = ACTIONS(546), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(552), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(4697), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(2513), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3830), + [sym_identifier] = ACTIONS(603), + [anon_sym_export] = ACTIONS(605), + [anon_sym_type] = ACTIONS(607), + [anon_sym_namespace] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(554), + [anon_sym_with] = ACTIONS(613), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(556), + [anon_sym_let] = ACTIONS(615), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(558), + [anon_sym_if] = ACTIONS(617), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(560), + [anon_sym_for] = ACTIONS(619), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(562), + [anon_sym_while] = ACTIONS(621), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -24900,153 +24509,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(564), - [anon_sym_async] = ACTIONS(566), - [anon_sym_function] = ACTIONS(568), - [anon_sym_new] = ACTIONS(570), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(623), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(627), + [anon_sym_new] = ACTIONS(629), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(572), - [anon_sym_readonly] = ACTIONS(572), - [anon_sym_get] = ACTIONS(572), - [anon_sym_set] = ACTIONS(572), - [anon_sym_declare] = ACTIONS(574), - [anon_sym_public] = ACTIONS(572), - [anon_sym_private] = ACTIONS(572), - [anon_sym_protected] = ACTIONS(572), - [anon_sym_override] = ACTIONS(572), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(572), - [anon_sym_number] = ACTIONS(572), - [anon_sym_boolean] = ACTIONS(572), - [anon_sym_string] = ACTIONS(572), - [anon_sym_symbol] = ACTIONS(572), - [anon_sym_object] = ACTIONS(572), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(631), + [anon_sym_readonly] = ACTIONS(631), + [anon_sym_get] = ACTIONS(631), + [anon_sym_set] = ACTIONS(631), + [anon_sym_declare] = ACTIONS(633), + [anon_sym_public] = ACTIONS(631), + [anon_sym_private] = ACTIONS(631), + [anon_sym_protected] = ACTIONS(631), + [anon_sym_override] = ACTIONS(631), + [anon_sym_module] = ACTIONS(635), + [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_object] = ACTIONS(631), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [36] = { - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), [sym_statement] = STATE(931), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(3877), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(2513), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3830), + [sym_identifier] = ACTIONS(603), + [anon_sym_export] = ACTIONS(605), + [anon_sym_type] = ACTIONS(607), + [anon_sym_namespace] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(25), + [anon_sym_with] = ACTIONS(613), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), + [anon_sym_let] = ACTIONS(615), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(35), + [anon_sym_if] = ACTIONS(617), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), + [anon_sym_for] = ACTIONS(619), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(47), + [anon_sym_while] = ACTIONS(621), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -25056,153 +24663,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_new] = ACTIONS(75), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(623), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(627), + [anon_sym_new] = ACTIONS(629), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(631), + [anon_sym_readonly] = ACTIONS(631), + [anon_sym_get] = ACTIONS(631), + [anon_sym_set] = ACTIONS(631), + [anon_sym_declare] = ACTIONS(633), + [anon_sym_public] = ACTIONS(631), + [anon_sym_private] = ACTIONS(631), + [anon_sym_protected] = ACTIONS(631), + [anon_sym_override] = ACTIONS(631), + [anon_sym_module] = ACTIONS(635), + [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_object] = ACTIONS(631), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [37] = { - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), - [sym_statement] = STATE(884), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(2487), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(3847), - [sym_identifier] = ACTIONS(544), - [anon_sym_export] = ACTIONS(546), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(552), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(943), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(2513), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3830), + [sym_identifier] = ACTIONS(603), + [anon_sym_export] = ACTIONS(605), + [anon_sym_type] = ACTIONS(607), + [anon_sym_namespace] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(554), + [anon_sym_with] = ACTIONS(613), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(556), + [anon_sym_let] = ACTIONS(615), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(558), + [anon_sym_if] = ACTIONS(617), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(560), + [anon_sym_for] = ACTIONS(619), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(562), + [anon_sym_while] = ACTIONS(621), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -25212,309 +24817,305 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(564), - [anon_sym_async] = ACTIONS(566), - [anon_sym_function] = ACTIONS(568), - [anon_sym_new] = ACTIONS(570), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(623), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(627), + [anon_sym_new] = ACTIONS(629), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(572), - [anon_sym_readonly] = ACTIONS(572), - [anon_sym_get] = ACTIONS(572), - [anon_sym_set] = ACTIONS(572), - [anon_sym_declare] = ACTIONS(574), - [anon_sym_public] = ACTIONS(572), - [anon_sym_private] = ACTIONS(572), - [anon_sym_protected] = ACTIONS(572), - [anon_sym_override] = ACTIONS(572), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(572), - [anon_sym_number] = ACTIONS(572), - [anon_sym_boolean] = ACTIONS(572), - [anon_sym_string] = ACTIONS(572), - [anon_sym_symbol] = ACTIONS(572), - [anon_sym_object] = ACTIONS(572), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(631), + [anon_sym_readonly] = ACTIONS(631), + [anon_sym_get] = ACTIONS(631), + [anon_sym_set] = ACTIONS(631), + [anon_sym_declare] = ACTIONS(633), + [anon_sym_public] = ACTIONS(631), + [anon_sym_private] = ACTIONS(631), + [anon_sym_protected] = ACTIONS(631), + [anon_sym_override] = ACTIONS(631), + [anon_sym_module] = ACTIONS(635), + [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_object] = ACTIONS(631), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [38] = { - [sym_import] = STATE(3637), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(2138), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3663), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2126), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4445), - [sym_assignment_pattern] = STATE(5126), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4445), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5679), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(4425), + [sym_assignment_pattern] = STATE(4969), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(4425), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1379), - [sym_subscript_expression] = STATE(1379), + [sym_member_expression] = STATE(1396), + [sym_subscript_expression] = STATE(1396), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4445), - [sym_spread_element] = STATE(5132), + [sym__destructuring_pattern] = STATE(4425), + [sym_spread_element] = STATE(4946), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2232), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(4342), - [sym_pattern] = STATE(4388), - [sym_rest_pattern] = STATE(4089), - [sym_non_null_expression] = STATE(1379), + [sym_string] = STATE(2213), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4317), + [sym_pattern] = STATE(4406), + [sym_rest_pattern] = STATE(4115), + [sym_non_null_expression] = STATE(1396), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(3304), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3830), - [sym_tuple_parameter] = STATE(4907), - [sym_optional_tuple_parameter] = STATE(4907), - [sym_optional_type] = STATE(4907), - [sym_rest_type] = STATE(4907), - [sym__tuple_type_member] = STATE(4907), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_type_arguments] = STATE(482), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5463), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [aux_sym_export_statement_repeat1] = STATE(4421), - [aux_sym_array_repeat1] = STATE(4582), - [aux_sym_array_pattern_repeat1] = STATE(4619), - [sym_identifier] = ACTIONS(578), - [anon_sym_export] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COMMA] = ACTIONS(588), - [anon_sym_typeof] = ACTIONS(590), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_RBRACK] = ACTIONS(600), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(604), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(618), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(189), - [sym_number] = ACTIONS(191), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(628), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(630), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(634), - [anon_sym_number] = ACTIONS(634), - [anon_sym_boolean] = ACTIONS(634), - [anon_sym_string] = ACTIONS(634), - [anon_sym_symbol] = ACTIONS(634), - [anon_sym_object] = ACTIONS(634), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3773), + [sym_tuple_parameter] = STATE(4568), + [sym_optional_tuple_parameter] = STATE(4568), + [sym_optional_type] = STATE(4568), + [sym_rest_type] = STATE(4568), + [sym__tuple_type_member] = STATE(4568), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(484), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5455), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(4429), + [aux_sym_array_repeat1] = STATE(4955), + [aux_sym_array_pattern_repeat1] = STATE(4977), + [sym_identifier] = ACTIONS(539), + [anon_sym_export] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(547), + [anon_sym_COMMA] = ACTIONS(549), + [anon_sym_typeof] = ACTIONS(551), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(541), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_RBRACK] = ACTIONS(637), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(565), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(575), + [anon_sym_DASH] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(579), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(188), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(587), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(589), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(591), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(595), + [anon_sym_number] = ACTIONS(595), + [anon_sym_boolean] = ACTIONS(595), + [anon_sym_string] = ACTIONS(595), + [anon_sym_symbol] = ACTIONS(595), + [anon_sym_object] = ACTIONS(595), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [39] = { - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), - [sym_statement] = STATE(5513), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(2487), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(3847), - [sym_identifier] = ACTIONS(544), - [anon_sym_export] = ACTIONS(546), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(552), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(884), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(2513), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3830), + [sym_identifier] = ACTIONS(603), + [anon_sym_export] = ACTIONS(605), + [anon_sym_type] = ACTIONS(607), + [anon_sym_namespace] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(554), + [anon_sym_with] = ACTIONS(613), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(556), + [anon_sym_let] = ACTIONS(615), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(558), + [anon_sym_if] = ACTIONS(617), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(560), + [anon_sym_for] = ACTIONS(619), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(562), + [anon_sym_while] = ACTIONS(621), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -25524,309 +25125,305 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(564), - [anon_sym_async] = ACTIONS(566), - [anon_sym_function] = ACTIONS(568), - [anon_sym_new] = ACTIONS(570), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(623), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(627), + [anon_sym_new] = ACTIONS(629), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(572), - [anon_sym_readonly] = ACTIONS(572), - [anon_sym_get] = ACTIONS(572), - [anon_sym_set] = ACTIONS(572), - [anon_sym_declare] = ACTIONS(574), - [anon_sym_public] = ACTIONS(572), - [anon_sym_private] = ACTIONS(572), - [anon_sym_protected] = ACTIONS(572), - [anon_sym_override] = ACTIONS(572), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(572), - [anon_sym_number] = ACTIONS(572), - [anon_sym_boolean] = ACTIONS(572), - [anon_sym_string] = ACTIONS(572), - [anon_sym_symbol] = ACTIONS(572), - [anon_sym_object] = ACTIONS(572), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(631), + [anon_sym_readonly] = ACTIONS(631), + [anon_sym_get] = ACTIONS(631), + [anon_sym_set] = ACTIONS(631), + [anon_sym_declare] = ACTIONS(633), + [anon_sym_public] = ACTIONS(631), + [anon_sym_private] = ACTIONS(631), + [anon_sym_protected] = ACTIONS(631), + [anon_sym_override] = ACTIONS(631), + [anon_sym_module] = ACTIONS(635), + [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_object] = ACTIONS(631), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [40] = { - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), - [sym_statement] = STATE(877), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(2487), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(3847), - [sym_identifier] = ACTIONS(544), - [anon_sym_export] = ACTIONS(546), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(552), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(554), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(556), - [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(558), - [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(562), - [anon_sym_do] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_break] = ACTIONS(53), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_debugger] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(564), - [anon_sym_async] = ACTIONS(566), - [anon_sym_function] = ACTIONS(568), - [anon_sym_new] = ACTIONS(570), - [anon_sym_using] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(572), - [anon_sym_readonly] = ACTIONS(572), - [anon_sym_get] = ACTIONS(572), - [anon_sym_set] = ACTIONS(572), - [anon_sym_declare] = ACTIONS(574), - [anon_sym_public] = ACTIONS(572), - [anon_sym_private] = ACTIONS(572), - [anon_sym_protected] = ACTIONS(572), - [anon_sym_override] = ACTIONS(572), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(572), - [anon_sym_number] = ACTIONS(572), - [anon_sym_boolean] = ACTIONS(572), - [anon_sym_string] = ACTIONS(572), - [anon_sym_symbol] = ACTIONS(572), - [anon_sym_object] = ACTIONS(572), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [sym_import] = STATE(3663), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2301), + [sym_primary_expression] = STATE(1515), + [sym_yield_expression] = STATE(1652), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(4425), + [sym_assignment_pattern] = STATE(4969), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(4425), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), + [sym_await_expression] = STATE(1652), + [sym_member_expression] = STATE(1396), + [sym_subscript_expression] = STATE(1396), + [sym_assignment_expression] = STATE(1652), + [sym__augmented_assignment_lhs] = STATE(3003), + [sym_augmented_assignment_expression] = STATE(1652), + [sym__destructuring_pattern] = STATE(4425), + [sym_spread_element] = STATE(4971), + [sym_ternary_expression] = STATE(1652), + [sym_binary_expression] = STATE(1652), + [sym_unary_expression] = STATE(1652), + [sym_update_expression] = STATE(1652), + [sym_string] = STATE(2213), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4317), + [sym_pattern] = STATE(4406), + [sym_rest_pattern] = STATE(4115), + [sym_non_null_expression] = STATE(1396), + [sym_type_assertion] = STATE(1652), + [sym_as_expression] = STATE(1652), + [sym_satisfies_expression] = STATE(1652), + [sym_instantiation_expression] = STATE(1652), + [sym_internal_module] = STATE(1652), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3773), + [sym_tuple_parameter] = STATE(4568), + [sym_optional_tuple_parameter] = STATE(4568), + [sym_optional_type] = STATE(4568), + [sym_rest_type] = STATE(4568), + [sym__tuple_type_member] = STATE(4568), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(484), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5455), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(4429), + [aux_sym_array_repeat1] = STATE(4975), + [aux_sym_array_pattern_repeat1] = STATE(4977), + [sym_identifier] = ACTIONS(539), + [anon_sym_export] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(547), + [anon_sym_COMMA] = ACTIONS(549), + [anon_sym_typeof] = ACTIONS(551), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(541), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_RBRACK] = ACTIONS(639), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(565), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(575), + [anon_sym_DASH] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(579), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(188), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(587), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(589), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(591), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(595), + [anon_sym_number] = ACTIONS(595), + [anon_sym_boolean] = ACTIONS(595), + [anon_sym_string] = ACTIONS(595), + [anon_sym_symbol] = ACTIONS(595), + [anon_sym_object] = ACTIONS(595), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [41] = { - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), - [sym_statement] = STATE(820), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(2487), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(3847), - [sym_identifier] = ACTIONS(544), - [anon_sym_export] = ACTIONS(546), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(552), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(928), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(2513), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3830), + [sym_identifier] = ACTIONS(603), + [anon_sym_export] = ACTIONS(605), + [anon_sym_type] = ACTIONS(607), + [anon_sym_namespace] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(554), + [anon_sym_with] = ACTIONS(613), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(556), + [anon_sym_let] = ACTIONS(615), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(558), + [anon_sym_if] = ACTIONS(617), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(560), + [anon_sym_for] = ACTIONS(619), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(562), + [anon_sym_while] = ACTIONS(621), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -25836,153 +25433,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(564), - [anon_sym_async] = ACTIONS(566), - [anon_sym_function] = ACTIONS(568), - [anon_sym_new] = ACTIONS(570), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(623), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(627), + [anon_sym_new] = ACTIONS(629), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(572), - [anon_sym_readonly] = ACTIONS(572), - [anon_sym_get] = ACTIONS(572), - [anon_sym_set] = ACTIONS(572), - [anon_sym_declare] = ACTIONS(574), - [anon_sym_public] = ACTIONS(572), - [anon_sym_private] = ACTIONS(572), - [anon_sym_protected] = ACTIONS(572), - [anon_sym_override] = ACTIONS(572), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(572), - [anon_sym_number] = ACTIONS(572), - [anon_sym_boolean] = ACTIONS(572), - [anon_sym_string] = ACTIONS(572), - [anon_sym_symbol] = ACTIONS(572), - [anon_sym_object] = ACTIONS(572), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(631), + [anon_sym_readonly] = ACTIONS(631), + [anon_sym_get] = ACTIONS(631), + [anon_sym_set] = ACTIONS(631), + [anon_sym_declare] = ACTIONS(633), + [anon_sym_public] = ACTIONS(631), + [anon_sym_private] = ACTIONS(631), + [anon_sym_protected] = ACTIONS(631), + [anon_sym_override] = ACTIONS(631), + [anon_sym_module] = ACTIONS(635), + [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_object] = ACTIONS(631), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [42] = { - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), - [sym_statement] = STATE(822), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(2487), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(3847), - [sym_identifier] = ACTIONS(544), - [anon_sym_export] = ACTIONS(546), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(552), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(874), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(2513), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3830), + [sym_identifier] = ACTIONS(603), + [anon_sym_export] = ACTIONS(605), + [anon_sym_type] = ACTIONS(607), + [anon_sym_namespace] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(554), + [anon_sym_with] = ACTIONS(613), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(556), + [anon_sym_let] = ACTIONS(615), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(558), + [anon_sym_if] = ACTIONS(617), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(560), + [anon_sym_for] = ACTIONS(619), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(562), + [anon_sym_while] = ACTIONS(621), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -25992,153 +25587,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(564), - [anon_sym_async] = ACTIONS(566), - [anon_sym_function] = ACTIONS(568), - [anon_sym_new] = ACTIONS(570), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(623), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(627), + [anon_sym_new] = ACTIONS(629), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(572), - [anon_sym_readonly] = ACTIONS(572), - [anon_sym_get] = ACTIONS(572), - [anon_sym_set] = ACTIONS(572), - [anon_sym_declare] = ACTIONS(574), - [anon_sym_public] = ACTIONS(572), - [anon_sym_private] = ACTIONS(572), - [anon_sym_protected] = ACTIONS(572), - [anon_sym_override] = ACTIONS(572), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(572), - [anon_sym_number] = ACTIONS(572), - [anon_sym_boolean] = ACTIONS(572), - [anon_sym_string] = ACTIONS(572), - [anon_sym_symbol] = ACTIONS(572), - [anon_sym_object] = ACTIONS(572), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(631), + [anon_sym_readonly] = ACTIONS(631), + [anon_sym_get] = ACTIONS(631), + [anon_sym_set] = ACTIONS(631), + [anon_sym_declare] = ACTIONS(633), + [anon_sym_public] = ACTIONS(631), + [anon_sym_private] = ACTIONS(631), + [anon_sym_protected] = ACTIONS(631), + [anon_sym_override] = ACTIONS(631), + [anon_sym_module] = ACTIONS(635), + [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_object] = ACTIONS(631), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [43] = { - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), - [sym_statement] = STATE(828), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(2487), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(3847), - [sym_identifier] = ACTIONS(544), - [anon_sym_export] = ACTIONS(546), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(552), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(815), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(2513), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3830), + [sym_identifier] = ACTIONS(603), + [anon_sym_export] = ACTIONS(605), + [anon_sym_type] = ACTIONS(607), + [anon_sym_namespace] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(554), + [anon_sym_with] = ACTIONS(613), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(556), + [anon_sym_let] = ACTIONS(615), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(558), + [anon_sym_if] = ACTIONS(617), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(560), + [anon_sym_for] = ACTIONS(619), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(562), + [anon_sym_while] = ACTIONS(621), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -26148,153 +25741,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(564), - [anon_sym_async] = ACTIONS(566), - [anon_sym_function] = ACTIONS(568), - [anon_sym_new] = ACTIONS(570), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(623), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(627), + [anon_sym_new] = ACTIONS(629), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(572), - [anon_sym_readonly] = ACTIONS(572), - [anon_sym_get] = ACTIONS(572), - [anon_sym_set] = ACTIONS(572), - [anon_sym_declare] = ACTIONS(574), - [anon_sym_public] = ACTIONS(572), - [anon_sym_private] = ACTIONS(572), - [anon_sym_protected] = ACTIONS(572), - [anon_sym_override] = ACTIONS(572), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(572), - [anon_sym_number] = ACTIONS(572), - [anon_sym_boolean] = ACTIONS(572), - [anon_sym_string] = ACTIONS(572), - [anon_sym_symbol] = ACTIONS(572), - [anon_sym_object] = ACTIONS(572), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(631), + [anon_sym_readonly] = ACTIONS(631), + [anon_sym_get] = ACTIONS(631), + [anon_sym_set] = ACTIONS(631), + [anon_sym_declare] = ACTIONS(633), + [anon_sym_public] = ACTIONS(631), + [anon_sym_private] = ACTIONS(631), + [anon_sym_protected] = ACTIONS(631), + [anon_sym_override] = ACTIONS(631), + [anon_sym_module] = ACTIONS(635), + [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_object] = ACTIONS(631), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [44] = { - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), - [sym_statement] = STATE(827), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(2487), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(3847), - [sym_identifier] = ACTIONS(544), - [anon_sym_export] = ACTIONS(546), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(552), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(819), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(2513), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3830), + [sym_identifier] = ACTIONS(603), + [anon_sym_export] = ACTIONS(605), + [anon_sym_type] = ACTIONS(607), + [anon_sym_namespace] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(554), + [anon_sym_with] = ACTIONS(613), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(556), + [anon_sym_let] = ACTIONS(615), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(558), + [anon_sym_if] = ACTIONS(617), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(560), + [anon_sym_for] = ACTIONS(619), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(562), + [anon_sym_while] = ACTIONS(621), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -26304,153 +25895,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(564), - [anon_sym_async] = ACTIONS(566), - [anon_sym_function] = ACTIONS(568), - [anon_sym_new] = ACTIONS(570), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(623), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(627), + [anon_sym_new] = ACTIONS(629), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(572), - [anon_sym_readonly] = ACTIONS(572), - [anon_sym_get] = ACTIONS(572), - [anon_sym_set] = ACTIONS(572), - [anon_sym_declare] = ACTIONS(574), - [anon_sym_public] = ACTIONS(572), - [anon_sym_private] = ACTIONS(572), - [anon_sym_protected] = ACTIONS(572), - [anon_sym_override] = ACTIONS(572), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(572), - [anon_sym_number] = ACTIONS(572), - [anon_sym_boolean] = ACTIONS(572), - [anon_sym_string] = ACTIONS(572), - [anon_sym_symbol] = ACTIONS(572), - [anon_sym_object] = ACTIONS(572), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(631), + [anon_sym_readonly] = ACTIONS(631), + [anon_sym_get] = ACTIONS(631), + [anon_sym_set] = ACTIONS(631), + [anon_sym_declare] = ACTIONS(633), + [anon_sym_public] = ACTIONS(631), + [anon_sym_private] = ACTIONS(631), + [anon_sym_protected] = ACTIONS(631), + [anon_sym_override] = ACTIONS(631), + [anon_sym_module] = ACTIONS(635), + [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_object] = ACTIONS(631), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [45] = { - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), - [sym_statement] = STATE(807), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(2487), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(3847), - [sym_identifier] = ACTIONS(544), - [anon_sym_export] = ACTIONS(546), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(552), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(823), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(2513), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3830), + [sym_identifier] = ACTIONS(603), + [anon_sym_export] = ACTIONS(605), + [anon_sym_type] = ACTIONS(607), + [anon_sym_namespace] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(554), + [anon_sym_with] = ACTIONS(613), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(556), + [anon_sym_let] = ACTIONS(615), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(558), + [anon_sym_if] = ACTIONS(617), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(560), + [anon_sym_for] = ACTIONS(619), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(562), + [anon_sym_while] = ACTIONS(621), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -26460,153 +26049,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(564), - [anon_sym_async] = ACTIONS(566), - [anon_sym_function] = ACTIONS(568), - [anon_sym_new] = ACTIONS(570), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(623), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(627), + [anon_sym_new] = ACTIONS(629), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(572), - [anon_sym_readonly] = ACTIONS(572), - [anon_sym_get] = ACTIONS(572), - [anon_sym_set] = ACTIONS(572), - [anon_sym_declare] = ACTIONS(574), - [anon_sym_public] = ACTIONS(572), - [anon_sym_private] = ACTIONS(572), - [anon_sym_protected] = ACTIONS(572), - [anon_sym_override] = ACTIONS(572), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(572), - [anon_sym_number] = ACTIONS(572), - [anon_sym_boolean] = ACTIONS(572), - [anon_sym_string] = ACTIONS(572), - [anon_sym_symbol] = ACTIONS(572), - [anon_sym_object] = ACTIONS(572), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(631), + [anon_sym_readonly] = ACTIONS(631), + [anon_sym_get] = ACTIONS(631), + [anon_sym_set] = ACTIONS(631), + [anon_sym_declare] = ACTIONS(633), + [anon_sym_public] = ACTIONS(631), + [anon_sym_private] = ACTIONS(631), + [anon_sym_protected] = ACTIONS(631), + [anon_sym_override] = ACTIONS(631), + [anon_sym_module] = ACTIONS(635), + [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_object] = ACTIONS(631), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [46] = { - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), - [sym_statement] = STATE(839), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(2487), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(3847), - [sym_identifier] = ACTIONS(544), - [anon_sym_export] = ACTIONS(546), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(552), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(830), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(2513), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3830), + [sym_identifier] = ACTIONS(603), + [anon_sym_export] = ACTIONS(605), + [anon_sym_type] = ACTIONS(607), + [anon_sym_namespace] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(554), + [anon_sym_with] = ACTIONS(613), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(556), + [anon_sym_let] = ACTIONS(615), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(558), + [anon_sym_if] = ACTIONS(617), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(560), + [anon_sym_for] = ACTIONS(619), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(562), + [anon_sym_while] = ACTIONS(621), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -26616,153 +26203,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(564), - [anon_sym_async] = ACTIONS(566), - [anon_sym_function] = ACTIONS(568), - [anon_sym_new] = ACTIONS(570), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(623), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(627), + [anon_sym_new] = ACTIONS(629), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(572), - [anon_sym_readonly] = ACTIONS(572), - [anon_sym_get] = ACTIONS(572), - [anon_sym_set] = ACTIONS(572), - [anon_sym_declare] = ACTIONS(574), - [anon_sym_public] = ACTIONS(572), - [anon_sym_private] = ACTIONS(572), - [anon_sym_protected] = ACTIONS(572), - [anon_sym_override] = ACTIONS(572), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(572), - [anon_sym_number] = ACTIONS(572), - [anon_sym_boolean] = ACTIONS(572), - [anon_sym_string] = ACTIONS(572), - [anon_sym_symbol] = ACTIONS(572), - [anon_sym_object] = ACTIONS(572), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(631), + [anon_sym_readonly] = ACTIONS(631), + [anon_sym_get] = ACTIONS(631), + [anon_sym_set] = ACTIONS(631), + [anon_sym_declare] = ACTIONS(633), + [anon_sym_public] = ACTIONS(631), + [anon_sym_private] = ACTIONS(631), + [anon_sym_protected] = ACTIONS(631), + [anon_sym_override] = ACTIONS(631), + [anon_sym_module] = ACTIONS(635), + [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_object] = ACTIONS(631), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [47] = { - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), - [sym_statement] = STATE(854), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(2487), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(3847), - [sym_identifier] = ACTIONS(544), - [anon_sym_export] = ACTIONS(546), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(552), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(841), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(2513), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3830), + [sym_identifier] = ACTIONS(603), + [anon_sym_export] = ACTIONS(605), + [anon_sym_type] = ACTIONS(607), + [anon_sym_namespace] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(554), + [anon_sym_with] = ACTIONS(613), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(556), + [anon_sym_let] = ACTIONS(615), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(558), + [anon_sym_if] = ACTIONS(617), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(560), + [anon_sym_for] = ACTIONS(619), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(562), + [anon_sym_while] = ACTIONS(621), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -26772,153 +26357,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(564), - [anon_sym_async] = ACTIONS(566), - [anon_sym_function] = ACTIONS(568), - [anon_sym_new] = ACTIONS(570), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(623), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(627), + [anon_sym_new] = ACTIONS(629), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(572), - [anon_sym_readonly] = ACTIONS(572), - [anon_sym_get] = ACTIONS(572), - [anon_sym_set] = ACTIONS(572), - [anon_sym_declare] = ACTIONS(574), - [anon_sym_public] = ACTIONS(572), - [anon_sym_private] = ACTIONS(572), - [anon_sym_protected] = ACTIONS(572), - [anon_sym_override] = ACTIONS(572), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(572), - [anon_sym_number] = ACTIONS(572), - [anon_sym_boolean] = ACTIONS(572), - [anon_sym_string] = ACTIONS(572), - [anon_sym_symbol] = ACTIONS(572), - [anon_sym_object] = ACTIONS(572), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(631), + [anon_sym_readonly] = ACTIONS(631), + [anon_sym_get] = ACTIONS(631), + [anon_sym_set] = ACTIONS(631), + [anon_sym_declare] = ACTIONS(633), + [anon_sym_public] = ACTIONS(631), + [anon_sym_private] = ACTIONS(631), + [anon_sym_protected] = ACTIONS(631), + [anon_sym_override] = ACTIONS(631), + [anon_sym_module] = ACTIONS(635), + [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_object] = ACTIONS(631), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [48] = { - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), - [sym_statement] = STATE(877), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(3877), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(843), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(2513), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3830), + [sym_identifier] = ACTIONS(603), + [anon_sym_export] = ACTIONS(605), + [anon_sym_type] = ACTIONS(607), + [anon_sym_namespace] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(25), + [anon_sym_with] = ACTIONS(613), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), + [anon_sym_let] = ACTIONS(615), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(35), + [anon_sym_if] = ACTIONS(617), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), + [anon_sym_for] = ACTIONS(619), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(47), + [anon_sym_while] = ACTIONS(621), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -26928,153 +26511,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_new] = ACTIONS(75), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(623), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(627), + [anon_sym_new] = ACTIONS(629), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(631), + [anon_sym_readonly] = ACTIONS(631), + [anon_sym_get] = ACTIONS(631), + [anon_sym_set] = ACTIONS(631), + [anon_sym_declare] = ACTIONS(633), + [anon_sym_public] = ACTIONS(631), + [anon_sym_private] = ACTIONS(631), + [anon_sym_protected] = ACTIONS(631), + [anon_sym_override] = ACTIONS(631), + [anon_sym_module] = ACTIONS(635), + [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_object] = ACTIONS(631), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [49] = { - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), - [sym_statement] = STATE(866), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(3877), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(853), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(2513), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3830), + [sym_identifier] = ACTIONS(603), + [anon_sym_export] = ACTIONS(605), + [anon_sym_type] = ACTIONS(607), + [anon_sym_namespace] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(25), + [anon_sym_with] = ACTIONS(613), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), + [anon_sym_let] = ACTIONS(615), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(35), + [anon_sym_if] = ACTIONS(617), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), + [anon_sym_for] = ACTIONS(619), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(47), + [anon_sym_while] = ACTIONS(621), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -27084,134 +26665,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_new] = ACTIONS(75), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(623), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(627), + [anon_sym_new] = ACTIONS(629), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(631), + [anon_sym_readonly] = ACTIONS(631), + [anon_sym_get] = ACTIONS(631), + [anon_sym_set] = ACTIONS(631), + [anon_sym_declare] = ACTIONS(633), + [anon_sym_public] = ACTIONS(631), + [anon_sym_private] = ACTIONS(631), + [anon_sym_protected] = ACTIONS(631), + [anon_sym_override] = ACTIONS(631), + [anon_sym_module] = ACTIONS(635), + [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_object] = ACTIONS(631), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [50] = { - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), - [sym_statement] = STATE(932), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(3877), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(884), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3774), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -27240,134 +26819,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_new] = ACTIONS(75), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [51] = { - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), - [sym_statement] = STATE(920), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(3877), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(874), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3774), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -27396,134 +26973,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_new] = ACTIONS(75), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [52] = { - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), - [sym_statement] = STATE(820), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(3877), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(940), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3774), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -27552,153 +27127,305 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_new] = ACTIONS(75), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [53] = { - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), - [sym_statement] = STATE(822), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(3877), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), + [sym_import] = STATE(3663), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2126), + [sym_primary_expression] = STATE(1515), + [sym_yield_expression] = STATE(1652), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(4425), + [sym_assignment_pattern] = STATE(4969), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(4425), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), + [sym_await_expression] = STATE(1652), + [sym_member_expression] = STATE(1396), + [sym_subscript_expression] = STATE(1396), + [sym_assignment_expression] = STATE(1652), + [sym__augmented_assignment_lhs] = STATE(3003), + [sym_augmented_assignment_expression] = STATE(1652), + [sym__destructuring_pattern] = STATE(4425), + [sym_spread_element] = STATE(4946), + [sym_ternary_expression] = STATE(1652), + [sym_binary_expression] = STATE(1652), + [sym_unary_expression] = STATE(1652), + [sym_update_expression] = STATE(1652), + [sym_string] = STATE(2213), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4317), + [sym_pattern] = STATE(4406), + [sym_rest_pattern] = STATE(4115), + [sym_non_null_expression] = STATE(1396), + [sym_type_assertion] = STATE(1652), + [sym_as_expression] = STATE(1652), + [sym_satisfies_expression] = STATE(1652), + [sym_instantiation_expression] = STATE(1652), + [sym_internal_module] = STATE(1652), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3773), + [sym_tuple_parameter] = STATE(4568), + [sym_optional_tuple_parameter] = STATE(4568), + [sym_optional_type] = STATE(4568), + [sym_rest_type] = STATE(4568), + [sym__tuple_type_member] = STATE(4568), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(484), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5455), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(4429), + [aux_sym_array_repeat1] = STATE(4955), + [aux_sym_array_pattern_repeat1] = STATE(4977), + [sym_identifier] = ACTIONS(539), + [anon_sym_export] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(547), + [anon_sym_COMMA] = ACTIONS(549), + [anon_sym_typeof] = ACTIONS(551), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(541), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_RBRACK] = ACTIONS(641), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(565), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(575), + [anon_sym_DASH] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(579), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(188), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(587), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(589), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(591), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(595), + [anon_sym_number] = ACTIONS(595), + [anon_sym_boolean] = ACTIONS(595), + [anon_sym_string] = ACTIONS(595), + [anon_sym_symbol] = ACTIONS(595), + [anon_sym_object] = ACTIONS(595), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [sym_html_comment] = ACTIONS(5), + }, + [54] = { + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(5539), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(2513), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3830), + [sym_identifier] = ACTIONS(603), + [anon_sym_export] = ACTIONS(605), + [anon_sym_type] = ACTIONS(607), + [anon_sym_namespace] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(611), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(25), + [anon_sym_with] = ACTIONS(613), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), + [anon_sym_let] = ACTIONS(615), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(35), + [anon_sym_if] = ACTIONS(617), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), + [anon_sym_for] = ACTIONS(619), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(47), + [anon_sym_while] = ACTIONS(621), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -27708,134 +27435,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_new] = ACTIONS(75), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(623), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(627), + [anon_sym_new] = ACTIONS(629), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(631), + [anon_sym_readonly] = ACTIONS(631), + [anon_sym_get] = ACTIONS(631), + [anon_sym_set] = ACTIONS(631), + [anon_sym_declare] = ACTIONS(633), + [anon_sym_public] = ACTIONS(631), + [anon_sym_private] = ACTIONS(631), + [anon_sym_protected] = ACTIONS(631), + [anon_sym_override] = ACTIONS(631), + [anon_sym_module] = ACTIONS(635), + [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_object] = ACTIONS(631), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [54] = { - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), - [sym_statement] = STATE(828), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(3877), + [55] = { + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(815), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3774), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -27864,134 +27589,286 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_new] = ACTIONS(75), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [55] = { - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), - [sym_statement] = STATE(849), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(3877), + [56] = { + [sym_import] = STATE(3663), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2126), + [sym_primary_expression] = STATE(1515), + [sym_yield_expression] = STATE(1652), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(4425), + [sym_assignment_pattern] = STATE(4969), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(4425), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), + [sym_await_expression] = STATE(1652), + [sym_member_expression] = STATE(1396), + [sym_subscript_expression] = STATE(1396), + [sym_assignment_expression] = STATE(1652), + [sym__augmented_assignment_lhs] = STATE(3003), + [sym_augmented_assignment_expression] = STATE(1652), + [sym__destructuring_pattern] = STATE(4425), + [sym_spread_element] = STATE(4946), + [sym_ternary_expression] = STATE(1652), + [sym_binary_expression] = STATE(1652), + [sym_unary_expression] = STATE(1652), + [sym_update_expression] = STATE(1652), + [sym_string] = STATE(2213), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4317), + [sym_pattern] = STATE(4406), + [sym_rest_pattern] = STATE(4115), + [sym_non_null_expression] = STATE(1396), + [sym_type_assertion] = STATE(1652), + [sym_as_expression] = STATE(1652), + [sym_satisfies_expression] = STATE(1652), + [sym_instantiation_expression] = STATE(1652), + [sym_internal_module] = STATE(1652), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3773), + [sym_tuple_parameter] = STATE(4568), + [sym_optional_tuple_parameter] = STATE(4568), + [sym_optional_type] = STATE(4568), + [sym_rest_type] = STATE(4568), + [sym__tuple_type_member] = STATE(4568), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(484), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5455), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(4429), + [aux_sym_array_repeat1] = STATE(4955), + [aux_sym_array_pattern_repeat1] = STATE(4977), + [sym_identifier] = ACTIONS(539), + [anon_sym_export] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(547), + [anon_sym_COMMA] = ACTIONS(549), + [anon_sym_typeof] = ACTIONS(551), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(541), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_RBRACK] = ACTIONS(643), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(565), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(575), + [anon_sym_DASH] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(579), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(188), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(587), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(589), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(591), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(595), + [anon_sym_number] = ACTIONS(595), + [anon_sym_boolean] = ACTIONS(595), + [anon_sym_string] = ACTIONS(595), + [anon_sym_symbol] = ACTIONS(595), + [anon_sym_object] = ACTIONS(595), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [sym_html_comment] = ACTIONS(5), + }, + [57] = { + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(943), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3774), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -28020,290 +27897,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_new] = ACTIONS(75), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [56] = { - [sym_import] = STATE(3637), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(2178), - [sym_primary_expression] = STATE(1512), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4445), - [sym_assignment_pattern] = STATE(5126), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4445), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5679), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1379), - [sym_subscript_expression] = STATE(1379), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4445), - [sym_spread_element] = STATE(4611), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2232), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(4342), - [sym_pattern] = STATE(4388), - [sym_rest_pattern] = STATE(4089), - [sym_non_null_expression] = STATE(1379), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(3304), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3830), - [sym_tuple_parameter] = STATE(4907), - [sym_optional_tuple_parameter] = STATE(4907), - [sym_optional_type] = STATE(4907), - [sym_rest_type] = STATE(4907), - [sym__tuple_type_member] = STATE(4907), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_type_arguments] = STATE(482), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5463), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [aux_sym_export_statement_repeat1] = STATE(4421), - [aux_sym_array_repeat1] = STATE(4617), - [aux_sym_array_pattern_repeat1] = STATE(4619), - [sym_identifier] = ACTIONS(578), - [anon_sym_export] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COMMA] = ACTIONS(588), - [anon_sym_typeof] = ACTIONS(590), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_RBRACK] = ACTIONS(642), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(604), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(618), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(189), - [sym_number] = ACTIONS(191), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(628), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(630), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(634), - [anon_sym_number] = ACTIONS(634), - [anon_sym_boolean] = ACTIONS(634), - [anon_sym_string] = ACTIONS(634), - [anon_sym_symbol] = ACTIONS(634), - [anon_sym_object] = ACTIONS(634), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym_html_comment] = ACTIONS(5), - }, - [57] = { - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), - [sym_statement] = STATE(827), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(3877), + [58] = { + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(819), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3774), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -28332,134 +28051,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_new] = ACTIONS(75), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [58] = { - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), - [sym_statement] = STATE(807), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(3877), + [59] = { + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(823), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3774), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -28488,134 +28205,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_new] = ACTIONS(75), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [59] = { - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), - [sym_statement] = STATE(839), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(3877), + [60] = { + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(830), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3774), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -28644,290 +28359,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_new] = ACTIONS(75), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), - [sym_html_comment] = ACTIONS(5), - }, - [60] = { - [sym_import] = STATE(3637), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(2178), - [sym_primary_expression] = STATE(1512), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4445), - [sym_assignment_pattern] = STATE(5126), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4445), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5679), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1379), - [sym_subscript_expression] = STATE(1379), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4445), - [sym_spread_element] = STATE(4611), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2232), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(4342), - [sym_pattern] = STATE(4388), - [sym_rest_pattern] = STATE(4089), - [sym_non_null_expression] = STATE(1379), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(3304), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3830), - [sym_tuple_parameter] = STATE(4907), - [sym_optional_tuple_parameter] = STATE(4907), - [sym_optional_type] = STATE(4907), - [sym_rest_type] = STATE(4907), - [sym__tuple_type_member] = STATE(4907), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_type_arguments] = STATE(482), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5463), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [aux_sym_export_statement_repeat1] = STATE(4421), - [aux_sym_array_repeat1] = STATE(4617), - [aux_sym_array_pattern_repeat1] = STATE(4619), - [sym_identifier] = ACTIONS(578), - [anon_sym_export] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COMMA] = ACTIONS(588), - [anon_sym_typeof] = ACTIONS(590), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_RBRACK] = ACTIONS(644), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(604), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(618), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(189), - [sym_number] = ACTIONS(191), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(628), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(630), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(634), - [anon_sym_number] = ACTIONS(634), - [anon_sym_boolean] = ACTIONS(634), - [anon_sym_string] = ACTIONS(634), - [anon_sym_symbol] = ACTIONS(634), - [anon_sym_object] = ACTIONS(634), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [61] = { - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), - [sym_statement] = STATE(854), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(3877), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(841), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3774), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -28956,134 +28513,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_new] = ACTIONS(75), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [62] = { - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), - [sym_statement] = STATE(884), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(3877), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(843), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3774), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -29112,446 +28667,440 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_new] = ACTIONS(75), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [63] = { - [sym_import] = STATE(3637), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(2178), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3663), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2126), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4445), - [sym_assignment_pattern] = STATE(5126), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4445), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5679), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(4425), + [sym_assignment_pattern] = STATE(4969), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(4425), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1379), - [sym_subscript_expression] = STATE(1379), + [sym_member_expression] = STATE(1396), + [sym_subscript_expression] = STATE(1396), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4445), - [sym_spread_element] = STATE(4611), + [sym__destructuring_pattern] = STATE(4425), + [sym_spread_element] = STATE(4946), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2232), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(4342), - [sym_pattern] = STATE(4388), - [sym_rest_pattern] = STATE(4089), - [sym_non_null_expression] = STATE(1379), + [sym_string] = STATE(2213), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4317), + [sym_pattern] = STATE(4406), + [sym_rest_pattern] = STATE(4115), + [sym_non_null_expression] = STATE(1396), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(3304), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3830), - [sym_tuple_parameter] = STATE(4907), - [sym_optional_tuple_parameter] = STATE(4907), - [sym_optional_type] = STATE(4907), - [sym_rest_type] = STATE(4907), - [sym__tuple_type_member] = STATE(4907), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_type_arguments] = STATE(482), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5463), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [aux_sym_export_statement_repeat1] = STATE(4421), - [aux_sym_array_repeat1] = STATE(4617), - [aux_sym_array_pattern_repeat1] = STATE(4619), - [sym_identifier] = ACTIONS(578), - [anon_sym_export] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COMMA] = ACTIONS(588), - [anon_sym_typeof] = ACTIONS(590), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_RBRACK] = ACTIONS(646), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(604), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(618), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(189), - [sym_number] = ACTIONS(191), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(628), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(630), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(634), - [anon_sym_number] = ACTIONS(634), - [anon_sym_boolean] = ACTIONS(634), - [anon_sym_string] = ACTIONS(634), - [anon_sym_symbol] = ACTIONS(634), - [anon_sym_object] = ACTIONS(634), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3773), + [sym_tuple_parameter] = STATE(4568), + [sym_optional_tuple_parameter] = STATE(4568), + [sym_optional_type] = STATE(4568), + [sym_rest_type] = STATE(4568), + [sym__tuple_type_member] = STATE(4568), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(484), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5455), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(4429), + [aux_sym_array_repeat1] = STATE(4955), + [aux_sym_array_pattern_repeat1] = STATE(4977), + [sym_identifier] = ACTIONS(539), + [anon_sym_export] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(547), + [anon_sym_COMMA] = ACTIONS(549), + [anon_sym_typeof] = ACTIONS(551), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(541), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_RBRACK] = ACTIONS(645), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(565), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(575), + [anon_sym_DASH] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(579), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(188), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(587), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(589), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(591), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(595), + [anon_sym_number] = ACTIONS(595), + [anon_sym_boolean] = ACTIONS(595), + [anon_sym_string] = ACTIONS(595), + [anon_sym_symbol] = ACTIONS(595), + [anon_sym_object] = ACTIONS(595), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [64] = { - [sym_import] = STATE(3637), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(2178), - [sym_primary_expression] = STATE(1512), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4445), - [sym_assignment_pattern] = STATE(5126), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4445), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5679), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1379), - [sym_subscript_expression] = STATE(1379), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4445), - [sym_spread_element] = STATE(4611), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2232), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(4342), - [sym_pattern] = STATE(4388), - [sym_rest_pattern] = STATE(4089), - [sym_non_null_expression] = STATE(1379), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(3304), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3830), - [sym_tuple_parameter] = STATE(4907), - [sym_optional_tuple_parameter] = STATE(4907), - [sym_optional_type] = STATE(4907), - [sym_rest_type] = STATE(4907), - [sym__tuple_type_member] = STATE(4907), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_type_arguments] = STATE(482), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5463), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [aux_sym_export_statement_repeat1] = STATE(4421), - [aux_sym_array_repeat1] = STATE(4617), - [aux_sym_array_pattern_repeat1] = STATE(4619), - [sym_identifier] = ACTIONS(578), - [anon_sym_export] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COMMA] = ACTIONS(588), - [anon_sym_typeof] = ACTIONS(590), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_RBRACK] = ACTIONS(648), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(604), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(618), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(189), - [sym_number] = ACTIONS(191), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(628), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(630), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(634), - [anon_sym_number] = ACTIONS(634), - [anon_sym_boolean] = ACTIONS(634), - [anon_sym_string] = ACTIONS(634), - [anon_sym_symbol] = ACTIONS(634), - [anon_sym_object] = ACTIONS(634), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(853), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3774), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [65] = { - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), - [sym_statement] = STATE(792), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(3877), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(832), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3774), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -29580,777 +29129,767 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_new] = ACTIONS(75), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_get] = ACTIONS(101), - [anon_sym_set] = ACTIONS(101), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_public] = ACTIONS(101), - [anon_sym_private] = ACTIONS(101), - [anon_sym_protected] = ACTIONS(101), - [anon_sym_override] = ACTIONS(101), - [anon_sym_module] = ACTIONS(105), - [anon_sym_any] = ACTIONS(101), - [anon_sym_number] = ACTIONS(101), - [anon_sym_boolean] = ACTIONS(101), - [anon_sym_string] = ACTIONS(101), - [anon_sym_symbol] = ACTIONS(101), - [anon_sym_object] = ACTIONS(101), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [66] = { - [sym_import] = STATE(3637), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(2178), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3663), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2126), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4445), - [sym_assignment_pattern] = STATE(5126), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4445), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5679), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(4425), + [sym_assignment_pattern] = STATE(4969), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(4425), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1379), - [sym_subscript_expression] = STATE(1379), + [sym_member_expression] = STATE(1396), + [sym_subscript_expression] = STATE(1396), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4445), - [sym_spread_element] = STATE(4611), + [sym__destructuring_pattern] = STATE(4425), + [sym_spread_element] = STATE(4946), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2232), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(4342), - [sym_pattern] = STATE(4388), - [sym_rest_pattern] = STATE(4089), - [sym_non_null_expression] = STATE(1379), + [sym_string] = STATE(2213), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4317), + [sym_pattern] = STATE(4406), + [sym_rest_pattern] = STATE(4115), + [sym_non_null_expression] = STATE(1396), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(3304), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3830), - [sym_tuple_parameter] = STATE(4907), - [sym_optional_tuple_parameter] = STATE(4907), - [sym_optional_type] = STATE(4907), - [sym_rest_type] = STATE(4907), - [sym__tuple_type_member] = STATE(4907), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_type_arguments] = STATE(482), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5463), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [aux_sym_export_statement_repeat1] = STATE(4421), - [aux_sym_array_repeat1] = STATE(4617), - [aux_sym_array_pattern_repeat1] = STATE(4619), - [sym_identifier] = ACTIONS(578), - [anon_sym_export] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COMMA] = ACTIONS(588), - [anon_sym_typeof] = ACTIONS(590), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_RBRACK] = ACTIONS(650), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(604), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(618), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(189), - [sym_number] = ACTIONS(191), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(628), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(630), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(634), - [anon_sym_number] = ACTIONS(634), - [anon_sym_boolean] = ACTIONS(634), - [anon_sym_string] = ACTIONS(634), - [anon_sym_symbol] = ACTIONS(634), - [anon_sym_object] = ACTIONS(634), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3773), + [sym_tuple_parameter] = STATE(4568), + [sym_optional_tuple_parameter] = STATE(4568), + [sym_optional_type] = STATE(4568), + [sym_rest_type] = STATE(4568), + [sym__tuple_type_member] = STATE(4568), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(484), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5455), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(4429), + [aux_sym_array_repeat1] = STATE(4955), + [aux_sym_array_pattern_repeat1] = STATE(4977), + [sym_identifier] = ACTIONS(539), + [anon_sym_export] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(547), + [anon_sym_COMMA] = ACTIONS(549), + [anon_sym_typeof] = ACTIONS(551), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(541), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_RBRACK] = ACTIONS(647), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(565), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(575), + [anon_sym_DASH] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(579), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(188), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(587), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(589), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(591), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(595), + [anon_sym_number] = ACTIONS(595), + [anon_sym_boolean] = ACTIONS(595), + [anon_sym_string] = ACTIONS(595), + [anon_sym_symbol] = ACTIONS(595), + [anon_sym_object] = ACTIONS(595), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [67] = { - [sym_import] = STATE(3637), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(2138), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3663), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2301), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4445), - [sym_assignment_pattern] = STATE(5126), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4445), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5679), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(4425), + [sym_assignment_pattern] = STATE(4969), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(4425), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1379), - [sym_subscript_expression] = STATE(1379), + [sym_member_expression] = STATE(1396), + [sym_subscript_expression] = STATE(1396), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4445), - [sym_spread_element] = STATE(5132), + [sym__destructuring_pattern] = STATE(4425), + [sym_spread_element] = STATE(4971), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2232), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(4342), - [sym_pattern] = STATE(4388), - [sym_rest_pattern] = STATE(4089), - [sym_non_null_expression] = STATE(1379), + [sym_string] = STATE(2213), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4317), + [sym_pattern] = STATE(4406), + [sym_rest_pattern] = STATE(4115), + [sym_non_null_expression] = STATE(1396), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(3304), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3830), - [sym_tuple_parameter] = STATE(4907), - [sym_optional_tuple_parameter] = STATE(4907), - [sym_optional_type] = STATE(4907), - [sym_rest_type] = STATE(4907), - [sym__tuple_type_member] = STATE(4907), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_type_arguments] = STATE(482), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5463), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [aux_sym_export_statement_repeat1] = STATE(4421), - [aux_sym_array_repeat1] = STATE(4582), - [aux_sym_array_pattern_repeat1] = STATE(4619), - [sym_identifier] = ACTIONS(578), - [anon_sym_export] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COMMA] = ACTIONS(588), - [anon_sym_typeof] = ACTIONS(590), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_RBRACK] = ACTIONS(652), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(604), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(618), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(189), - [sym_number] = ACTIONS(191), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(628), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(630), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(634), - [anon_sym_number] = ACTIONS(634), - [anon_sym_boolean] = ACTIONS(634), - [anon_sym_string] = ACTIONS(634), - [anon_sym_symbol] = ACTIONS(634), - [anon_sym_object] = ACTIONS(634), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3773), + [sym_tuple_parameter] = STATE(4568), + [sym_optional_tuple_parameter] = STATE(4568), + [sym_optional_type] = STATE(4568), + [sym_rest_type] = STATE(4568), + [sym__tuple_type_member] = STATE(4568), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(484), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5455), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(4429), + [aux_sym_array_repeat1] = STATE(4975), + [aux_sym_array_pattern_repeat1] = STATE(4977), + [sym_identifier] = ACTIONS(539), + [anon_sym_export] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(547), + [anon_sym_COMMA] = ACTIONS(549), + [anon_sym_typeof] = ACTIONS(551), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(541), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_RBRACK] = ACTIONS(649), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(565), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(575), + [anon_sym_DASH] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(579), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(188), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(587), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(589), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(591), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(595), + [anon_sym_number] = ACTIONS(595), + [anon_sym_boolean] = ACTIONS(595), + [anon_sym_string] = ACTIONS(595), + [anon_sym_symbol] = ACTIONS(595), + [anon_sym_object] = ACTIONS(595), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [68] = { - [sym_import] = STATE(3637), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(2178), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3663), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2126), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4445), - [sym_assignment_pattern] = STATE(5126), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4445), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5679), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(4425), + [sym_assignment_pattern] = STATE(4969), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(4425), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1379), - [sym_subscript_expression] = STATE(1379), + [sym_member_expression] = STATE(1396), + [sym_subscript_expression] = STATE(1396), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4445), - [sym_spread_element] = STATE(4611), + [sym__destructuring_pattern] = STATE(4425), + [sym_spread_element] = STATE(4946), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2232), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(4342), - [sym_pattern] = STATE(4388), - [sym_rest_pattern] = STATE(4089), - [sym_non_null_expression] = STATE(1379), + [sym_string] = STATE(2213), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4317), + [sym_pattern] = STATE(4406), + [sym_rest_pattern] = STATE(4115), + [sym_non_null_expression] = STATE(1396), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(3304), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3830), - [sym_tuple_parameter] = STATE(4907), - [sym_optional_tuple_parameter] = STATE(4907), - [sym_optional_type] = STATE(4907), - [sym_rest_type] = STATE(4907), - [sym__tuple_type_member] = STATE(4907), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_type_arguments] = STATE(482), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5463), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [aux_sym_export_statement_repeat1] = STATE(4421), - [aux_sym_array_repeat1] = STATE(4617), - [aux_sym_array_pattern_repeat1] = STATE(4619), - [sym_identifier] = ACTIONS(578), - [anon_sym_export] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COMMA] = ACTIONS(588), - [anon_sym_typeof] = ACTIONS(590), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_RBRACK] = ACTIONS(654), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(604), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(618), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(189), - [sym_number] = ACTIONS(191), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(628), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(630), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(634), - [anon_sym_number] = ACTIONS(634), - [anon_sym_boolean] = ACTIONS(634), - [anon_sym_string] = ACTIONS(634), - [anon_sym_symbol] = ACTIONS(634), - [anon_sym_object] = ACTIONS(634), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3773), + [sym_tuple_parameter] = STATE(4568), + [sym_optional_tuple_parameter] = STATE(4568), + [sym_optional_type] = STATE(4568), + [sym_rest_type] = STATE(4568), + [sym__tuple_type_member] = STATE(4568), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(484), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5455), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(4429), + [aux_sym_array_repeat1] = STATE(4955), + [aux_sym_array_pattern_repeat1] = STATE(4977), + [sym_identifier] = ACTIONS(539), + [anon_sym_export] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(547), + [anon_sym_COMMA] = ACTIONS(549), + [anon_sym_typeof] = ACTIONS(551), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(541), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_RBRACK] = ACTIONS(651), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(565), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(575), + [anon_sym_DASH] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(579), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(188), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(587), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(589), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(591), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(595), + [anon_sym_number] = ACTIONS(595), + [anon_sym_boolean] = ACTIONS(595), + [anon_sym_string] = ACTIONS(595), + [anon_sym_symbol] = ACTIONS(595), + [anon_sym_object] = ACTIONS(595), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [69] = { - [sym_import] = STATE(3637), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(2178), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3663), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2126), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4445), - [sym_assignment_pattern] = STATE(5126), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4445), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5679), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(4425), + [sym_assignment_pattern] = STATE(4969), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(4425), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1379), - [sym_subscript_expression] = STATE(1379), + [sym_member_expression] = STATE(1396), + [sym_subscript_expression] = STATE(1396), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4445), - [sym_spread_element] = STATE(4611), + [sym__destructuring_pattern] = STATE(4425), + [sym_spread_element] = STATE(4946), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2232), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(4342), - [sym_pattern] = STATE(4388), - [sym_rest_pattern] = STATE(4089), - [sym_non_null_expression] = STATE(1379), + [sym_string] = STATE(2213), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4317), + [sym_pattern] = STATE(4406), + [sym_rest_pattern] = STATE(4115), + [sym_non_null_expression] = STATE(1396), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(3304), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3830), - [sym_tuple_parameter] = STATE(4976), - [sym_optional_tuple_parameter] = STATE(4976), - [sym_optional_type] = STATE(4976), - [sym_rest_type] = STATE(4976), - [sym__tuple_type_member] = STATE(4976), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_type_arguments] = STATE(482), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5463), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [aux_sym_export_statement_repeat1] = STATE(4421), - [aux_sym_array_repeat1] = STATE(4617), - [aux_sym_array_pattern_repeat1] = STATE(4619), - [sym_identifier] = ACTIONS(578), - [anon_sym_export] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COMMA] = ACTIONS(656), - [anon_sym_typeof] = ACTIONS(590), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_RBRACK] = ACTIONS(658), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(604), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(618), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(189), - [sym_number] = ACTIONS(191), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(628), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(630), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(634), - [anon_sym_number] = ACTIONS(634), - [anon_sym_boolean] = ACTIONS(634), - [anon_sym_string] = ACTIONS(634), - [anon_sym_symbol] = ACTIONS(634), - [anon_sym_object] = ACTIONS(634), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3773), + [sym_tuple_parameter] = STATE(4999), + [sym_optional_tuple_parameter] = STATE(4999), + [sym_optional_type] = STATE(4999), + [sym_rest_type] = STATE(4999), + [sym__tuple_type_member] = STATE(4999), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(484), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5455), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(4429), + [aux_sym_array_repeat1] = STATE(4955), + [aux_sym_array_pattern_repeat1] = STATE(4977), + [sym_identifier] = ACTIONS(539), + [anon_sym_export] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(547), + [anon_sym_COMMA] = ACTIONS(653), + [anon_sym_typeof] = ACTIONS(551), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(541), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_RBRACK] = ACTIONS(655), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(565), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(575), + [anon_sym_DASH] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(579), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(188), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(587), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(589), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(591), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(595), + [anon_sym_number] = ACTIONS(595), + [anon_sym_boolean] = ACTIONS(595), + [anon_sym_string] = ACTIONS(595), + [anon_sym_symbol] = ACTIONS(595), + [anon_sym_object] = ACTIONS(595), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [70] = { - [sym_export_statement] = STATE(889), - [sym_declaration] = STATE(889), - [sym_import] = STATE(3514), - [sym_import_statement] = STATE(889), - [sym_statement] = STATE(932), - [sym_expression_statement] = STATE(889), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_statement_block] = STATE(889), - [sym_if_statement] = STATE(889), - [sym_switch_statement] = STATE(889), - [sym_for_statement] = STATE(889), - [sym_for_in_statement] = STATE(889), - [sym_while_statement] = STATE(889), - [sym_do_statement] = STATE(889), - [sym_try_statement] = STATE(889), - [sym_with_statement] = STATE(889), - [sym_break_statement] = STATE(889), - [sym_continue_statement] = STATE(889), - [sym_debugger_statement] = STATE(889), - [sym_return_statement] = STATE(889), - [sym_throw_statement] = STATE(889), - [sym_empty_statement] = STATE(889), - [sym_labeled_statement] = STATE(889), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5227), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(2487), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(3847), - [sym_identifier] = ACTIONS(544), - [anon_sym_export] = ACTIONS(546), - [anon_sym_type] = ACTIONS(548), - [anon_sym_namespace] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(552), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(790), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3774), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(554), + [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(556), + [anon_sym_let] = ACTIONS(29), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(558), + [anon_sym_if] = ACTIONS(35), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(560), + [anon_sym_for] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(562), + [anon_sym_while] = ACTIONS(47), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -30360,17594 +29899,17376 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(61), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(564), - [anon_sym_async] = ACTIONS(566), - [anon_sym_function] = ACTIONS(568), - [anon_sym_new] = ACTIONS(570), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(572), - [anon_sym_readonly] = ACTIONS(572), - [anon_sym_get] = ACTIONS(572), - [anon_sym_set] = ACTIONS(572), - [anon_sym_declare] = ACTIONS(574), - [anon_sym_public] = ACTIONS(572), - [anon_sym_private] = ACTIONS(572), - [anon_sym_protected] = ACTIONS(572), - [anon_sym_override] = ACTIONS(572), - [anon_sym_module] = ACTIONS(576), - [anon_sym_any] = ACTIONS(572), - [anon_sym_number] = ACTIONS(572), - [anon_sym_boolean] = ACTIONS(572), - [anon_sym_string] = ACTIONS(572), - [anon_sym_symbol] = ACTIONS(572), - [anon_sym_object] = ACTIONS(572), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [71] = { - [sym_import] = STATE(3637), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(2178), - [sym_primary_expression] = STATE(1512), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4445), - [sym_assignment_pattern] = STATE(5126), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4445), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5679), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1379), - [sym_subscript_expression] = STATE(1379), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4445), - [sym_spread_element] = STATE(4611), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2232), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(4342), - [sym_pattern] = STATE(4388), - [sym_rest_pattern] = STATE(4089), - [sym_non_null_expression] = STATE(1379), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(3304), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3830), - [sym_tuple_parameter] = STATE(4907), - [sym_optional_tuple_parameter] = STATE(4907), - [sym_optional_type] = STATE(4907), - [sym_rest_type] = STATE(4907), - [sym__tuple_type_member] = STATE(4907), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_type_arguments] = STATE(482), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5463), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [aux_sym_export_statement_repeat1] = STATE(4421), - [aux_sym_array_repeat1] = STATE(4617), - [aux_sym_array_pattern_repeat1] = STATE(4619), - [sym_identifier] = ACTIONS(578), - [anon_sym_export] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COMMA] = ACTIONS(588), - [anon_sym_typeof] = ACTIONS(590), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_RBRACK] = ACTIONS(660), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(604), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(618), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(189), - [sym_number] = ACTIONS(191), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(628), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(630), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(634), - [anon_sym_number] = ACTIONS(634), - [anon_sym_boolean] = ACTIONS(634), - [anon_sym_string] = ACTIONS(634), - [anon_sym_symbol] = ACTIONS(634), - [anon_sym_object] = ACTIONS(634), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_export_statement] = STATE(892), + [sym_declaration] = STATE(892), + [sym_import] = STATE(3636), + [sym_import_statement] = STATE(892), + [sym_statement] = STATE(931), + [sym_expression_statement] = STATE(892), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_statement_block] = STATE(892), + [sym_if_statement] = STATE(892), + [sym_switch_statement] = STATE(892), + [sym_for_statement] = STATE(892), + [sym_for_in_statement] = STATE(892), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(892), + [sym_try_statement] = STATE(892), + [sym_with_statement] = STATE(892), + [sym_break_statement] = STATE(892), + [sym_continue_statement] = STATE(892), + [sym_debugger_statement] = STATE(892), + [sym_return_statement] = STATE(892), + [sym_throw_statement] = STATE(892), + [sym_empty_statement] = STATE(892), + [sym_labeled_statement] = STATE(892), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1902), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5305), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(3774), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_using] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [72] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(2638), - [sym_primary_expression] = STATE(1709), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1334), + [sym_expression] = STATE(2611), + [sym_primary_expression] = STATE(1696), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2710), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(2694), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), + [sym_member_expression] = STATE(1334), + [sym_subscript_expression] = STATE(1334), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1335), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1334), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [aux_sym_object_repeat1] = STATE(4823), - [aux_sym_object_pattern_repeat1] = STATE(4834), - [sym_identifier] = ACTIONS(662), - [anon_sym_export] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(664), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(668), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_RBRACE] = ACTIONS(672), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(180), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [aux_sym_object_repeat1] = STATE(4792), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(657), + [anon_sym_export] = ACTIONS(659), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(659), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(667), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(659), + [anon_sym_BANG] = ACTIONS(179), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_yield] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_yield] = ACTIONS(142), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(679), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(683), - [anon_sym_function] = ACTIONS(685), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(689), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(693), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(664), - [anon_sym_readonly] = ACTIONS(664), - [anon_sym_get] = ACTIONS(664), - [anon_sym_set] = ACTIONS(664), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(664), - [anon_sym_public] = ACTIONS(664), - [anon_sym_private] = ACTIONS(664), - [anon_sym_protected] = ACTIONS(664), - [anon_sym_override] = ACTIONS(664), - [anon_sym_module] = ACTIONS(664), - [anon_sym_any] = ACTIONS(664), - [anon_sym_number] = ACTIONS(664), - [anon_sym_boolean] = ACTIONS(664), - [anon_sym_string] = ACTIONS(664), - [anon_sym_symbol] = ACTIONS(664), - [anon_sym_object] = ACTIONS(664), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(674), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(678), + [anon_sym_function] = ACTIONS(680), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(684), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(688), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(659), + [anon_sym_readonly] = ACTIONS(659), + [anon_sym_get] = ACTIONS(659), + [anon_sym_set] = ACTIONS(659), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_declare] = ACTIONS(659), + [anon_sym_public] = ACTIONS(659), + [anon_sym_private] = ACTIONS(659), + [anon_sym_protected] = ACTIONS(659), + [anon_sym_override] = ACTIONS(659), + [anon_sym_module] = ACTIONS(659), + [anon_sym_any] = ACTIONS(659), + [anon_sym_number] = ACTIONS(659), + [anon_sym_boolean] = ACTIONS(659), + [anon_sym_string] = ACTIONS(659), + [anon_sym_symbol] = ACTIONS(659), + [anon_sym_object] = ACTIONS(659), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [73] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(2638), - [sym_primary_expression] = STATE(1709), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1334), + [sym_expression] = STATE(2611), + [sym_primary_expression] = STATE(1696), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2710), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(2694), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), + [sym_member_expression] = STATE(1334), + [sym_subscript_expression] = STATE(1334), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1335), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1334), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [aux_sym_object_repeat1] = STATE(4902), - [aux_sym_object_pattern_repeat1] = STATE(4834), - [sym_identifier] = ACTIONS(662), - [anon_sym_export] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(664), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(668), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(180), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [aux_sym_object_repeat1] = STATE(4810), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(657), + [anon_sym_export] = ACTIONS(659), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(659), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(692), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(659), + [anon_sym_BANG] = ACTIONS(179), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_yield] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_yield] = ACTIONS(142), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(679), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(683), - [anon_sym_function] = ACTIONS(685), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(689), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(693), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(664), - [anon_sym_readonly] = ACTIONS(664), - [anon_sym_get] = ACTIONS(664), - [anon_sym_set] = ACTIONS(664), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(664), - [anon_sym_public] = ACTIONS(664), - [anon_sym_private] = ACTIONS(664), - [anon_sym_protected] = ACTIONS(664), - [anon_sym_override] = ACTIONS(664), - [anon_sym_module] = ACTIONS(664), - [anon_sym_any] = ACTIONS(664), - [anon_sym_number] = ACTIONS(664), - [anon_sym_boolean] = ACTIONS(664), - [anon_sym_string] = ACTIONS(664), - [anon_sym_symbol] = ACTIONS(664), - [anon_sym_object] = ACTIONS(664), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(674), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(678), + [anon_sym_function] = ACTIONS(680), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(684), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(688), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(659), + [anon_sym_readonly] = ACTIONS(659), + [anon_sym_get] = ACTIONS(659), + [anon_sym_set] = ACTIONS(659), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_declare] = ACTIONS(659), + [anon_sym_public] = ACTIONS(659), + [anon_sym_private] = ACTIONS(659), + [anon_sym_protected] = ACTIONS(659), + [anon_sym_override] = ACTIONS(659), + [anon_sym_module] = ACTIONS(659), + [anon_sym_any] = ACTIONS(659), + [anon_sym_number] = ACTIONS(659), + [anon_sym_boolean] = ACTIONS(659), + [anon_sym_string] = ACTIONS(659), + [anon_sym_symbol] = ACTIONS(659), + [anon_sym_object] = ACTIONS(659), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [74] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(2638), - [sym_primary_expression] = STATE(1709), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1334), + [sym_expression] = STATE(2611), + [sym_primary_expression] = STATE(1696), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2710), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(2694), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), + [sym_member_expression] = STATE(1334), + [sym_subscript_expression] = STATE(1334), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1335), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1334), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [aux_sym_object_repeat1] = STATE(4902), - [aux_sym_object_pattern_repeat1] = STATE(4834), - [sym_identifier] = ACTIONS(662), - [anon_sym_export] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(664), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(668), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_RBRACE] = ACTIONS(699), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(180), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [aux_sym_object_repeat1] = STATE(4792), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(657), + [anon_sym_export] = ACTIONS(659), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(659), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(694), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(659), + [anon_sym_BANG] = ACTIONS(179), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_yield] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_yield] = ACTIONS(142), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(679), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(683), - [anon_sym_function] = ACTIONS(685), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(689), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(693), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(664), - [anon_sym_readonly] = ACTIONS(664), - [anon_sym_get] = ACTIONS(664), - [anon_sym_set] = ACTIONS(664), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(664), - [anon_sym_public] = ACTIONS(664), - [anon_sym_private] = ACTIONS(664), - [anon_sym_protected] = ACTIONS(664), - [anon_sym_override] = ACTIONS(664), - [anon_sym_module] = ACTIONS(664), - [anon_sym_any] = ACTIONS(664), - [anon_sym_number] = ACTIONS(664), - [anon_sym_boolean] = ACTIONS(664), - [anon_sym_string] = ACTIONS(664), - [anon_sym_symbol] = ACTIONS(664), - [anon_sym_object] = ACTIONS(664), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(674), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(678), + [anon_sym_function] = ACTIONS(680), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(684), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(688), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(659), + [anon_sym_readonly] = ACTIONS(659), + [anon_sym_get] = ACTIONS(659), + [anon_sym_set] = ACTIONS(659), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_declare] = ACTIONS(659), + [anon_sym_public] = ACTIONS(659), + [anon_sym_private] = ACTIONS(659), + [anon_sym_protected] = ACTIONS(659), + [anon_sym_override] = ACTIONS(659), + [anon_sym_module] = ACTIONS(659), + [anon_sym_any] = ACTIONS(659), + [anon_sym_number] = ACTIONS(659), + [anon_sym_boolean] = ACTIONS(659), + [anon_sym_string] = ACTIONS(659), + [anon_sym_symbol] = ACTIONS(659), + [anon_sym_object] = ACTIONS(659), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [75] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1284), - [sym_subscript_expression] = STATE(1284), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_pattern] = STATE(4232), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1284), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4312), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(708), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(155), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_DOT_DOT_DOT] = ACTIONS(165), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(136), - [anon_sym_DASH] = ACTIONS(136), - [anon_sym_SLASH] = ACTIONS(173), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(713), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(182), - [anon_sym_DASH_DASH] = ACTIONS(182), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(716), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(721), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(115), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(700), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(703), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(152), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(170), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(708), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(181), + [anon_sym_DASH_DASH] = ACTIONS(181), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(711), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(716), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [76] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3563), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(1816), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(4309), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(4309), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym__formal_parameter] = STATE(4621), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1284), - [sym_subscript_expression] = STATE(1284), + [sym_member_expression] = STATE(1352), + [sym_subscript_expression] = STATE(1352), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(4309), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_pattern] = STATE(4235), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1284), + [sym_sequence_expression] = STATE(5780), + [sym_string] = STATE(2338), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4087), + [sym_pattern] = STATE(4339), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1352), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(708), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(155), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_DOT_DOT_DOT] = ACTIONS(165), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(136), - [anon_sym_DASH] = ACTIONS(136), - [anon_sym_SLASH] = ACTIONS(173), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(713), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(182), - [anon_sym_DASH_DASH] = ACTIONS(182), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(716), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(727), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(115), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_nested_type_identifier] = STATE(2939), + [sym_accessibility_modifier] = STATE(288), + [sym_override_modifier] = STATE(303), + [sym_required_parameter] = STATE(4621), + [sym_optional_parameter] = STATE(4621), + [sym__parameter_name] = STATE(3624), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4387), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(638), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5158), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(267), + [sym_identifier] = ACTIONS(722), + [anon_sym_export] = ACTIONS(724), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(724), + [anon_sym_namespace] = ACTIONS(726), + [anon_sym_LBRACE] = ACTIONS(728), + [anon_sym_typeof] = ACTIONS(730), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(724), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(734), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(740), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(742), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(744), + [anon_sym_using] = ACTIONS(746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(754), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(760), + [sym_number] = ACTIONS(762), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(766), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(768), + [sym_false] = ACTIONS(768), + [sym_null] = ACTIONS(768), + [sym_undefined] = ACTIONS(770), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(724), + [anon_sym_readonly] = ACTIONS(772), + [anon_sym_get] = ACTIONS(724), + [anon_sym_set] = ACTIONS(724), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(724), + [anon_sym_public] = ACTIONS(776), + [anon_sym_private] = ACTIONS(776), + [anon_sym_protected] = ACTIONS(776), + [anon_sym_override] = ACTIONS(778), + [anon_sym_module] = ACTIONS(724), + [anon_sym_any] = ACTIONS(780), + [anon_sym_number] = ACTIONS(780), + [anon_sym_boolean] = ACTIONS(780), + [anon_sym_string] = ACTIONS(780), + [anon_sym_symbol] = ACTIONS(780), + [anon_sym_object] = ACTIONS(780), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [77] = { - [sym_import] = STATE(3596), + [sym_import] = STATE(3563), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1834), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(1832), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4100), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4100), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5679), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym__formal_parameter] = STATE(4540), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(4309), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(4309), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym__formal_parameter] = STATE(4621), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1357), - [sym_subscript_expression] = STATE(1357), + [sym_member_expression] = STATE(1352), + [sym_subscript_expression] = STATE(1352), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4100), + [sym__destructuring_pattern] = STATE(4309), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5853), - [sym_string] = STATE(2140), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(4277), - [sym_pattern] = STATE(4056), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1357), + [sym_sequence_expression] = STATE(5679), + [sym_string] = STATE(2338), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4087), + [sym_pattern] = STATE(4339), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1352), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2944), + [sym_nested_type_identifier] = STATE(2939), [sym_accessibility_modifier] = STATE(288), [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(4540), - [sym_optional_parameter] = STATE(4540), - [sym__parameter_name] = STATE(3613), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(4517), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_type_arguments] = STATE(635), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [aux_sym_export_statement_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(729), - [anon_sym_export] = ACTIONS(731), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(731), - [anon_sym_namespace] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(735), - [anon_sym_typeof] = ACTIONS(737), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(731), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(741), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(747), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(749), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(751), - [anon_sym_using] = ACTIONS(753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(761), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(767), - [sym_number] = ACTIONS(769), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(773), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(775), - [sym_false] = ACTIONS(775), - [sym_null] = ACTIONS(775), - [sym_undefined] = ACTIONS(777), - [anon_sym_AT] = ACTIONS(779), - [anon_sym_static] = ACTIONS(731), - [anon_sym_readonly] = ACTIONS(781), - [anon_sym_get] = ACTIONS(731), - [anon_sym_set] = ACTIONS(731), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_declare] = ACTIONS(731), - [anon_sym_public] = ACTIONS(785), - [anon_sym_private] = ACTIONS(785), - [anon_sym_protected] = ACTIONS(785), - [anon_sym_override] = ACTIONS(787), - [anon_sym_module] = ACTIONS(731), - [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_object] = ACTIONS(789), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_required_parameter] = STATE(4621), + [sym_optional_parameter] = STATE(4621), + [sym__parameter_name] = STATE(3624), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4434), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(638), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5158), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(267), + [sym_identifier] = ACTIONS(722), + [anon_sym_export] = ACTIONS(724), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(724), + [anon_sym_namespace] = ACTIONS(726), + [anon_sym_LBRACE] = ACTIONS(728), + [anon_sym_typeof] = ACTIONS(730), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(724), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(734), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(740), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(742), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(744), + [anon_sym_using] = ACTIONS(746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(754), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(760), + [sym_number] = ACTIONS(762), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(766), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(768), + [sym_false] = ACTIONS(768), + [sym_null] = ACTIONS(768), + [sym_undefined] = ACTIONS(770), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(724), + [anon_sym_readonly] = ACTIONS(772), + [anon_sym_get] = ACTIONS(724), + [anon_sym_set] = ACTIONS(724), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(724), + [anon_sym_public] = ACTIONS(776), + [anon_sym_private] = ACTIONS(776), + [anon_sym_protected] = ACTIONS(776), + [anon_sym_override] = ACTIONS(778), + [anon_sym_module] = ACTIONS(724), + [anon_sym_any] = ACTIONS(780), + [anon_sym_number] = ACTIONS(780), + [anon_sym_boolean] = ACTIONS(780), + [anon_sym_string] = ACTIONS(780), + [anon_sym_symbol] = ACTIONS(780), + [anon_sym_object] = ACTIONS(780), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [78] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1284), - [sym_subscript_expression] = STATE(1284), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_pattern] = STATE(4326), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1284), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4303), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(708), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(155), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_DOT_DOT_DOT] = ACTIONS(165), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(136), - [anon_sym_DASH] = ACTIONS(136), - [anon_sym_SLASH] = ACTIONS(173), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(713), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(182), - [anon_sym_DASH_DASH] = ACTIONS(182), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(716), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(791), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(115), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(220), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(700), + [anon_sym_RPAREN] = ACTIONS(223), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(223), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(703), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(170), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(708), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(181), + [anon_sym_DASH_DASH] = ACTIONS(181), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(711), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(782), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [79] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1284), - [sym_subscript_expression] = STATE(1284), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_pattern] = STATE(3917), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1284), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(3914), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(708), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(155), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_DOT_DOT_DOT] = ACTIONS(165), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(136), - [anon_sym_DASH] = ACTIONS(136), - [anon_sym_SLASH] = ACTIONS(173), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(713), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(182), - [anon_sym_DASH_DASH] = ACTIONS(182), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(716), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(793), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(115), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(220), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(700), + [anon_sym_RPAREN] = ACTIONS(223), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(223), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(703), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(170), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(708), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(181), + [anon_sym_DASH_DASH] = ACTIONS(181), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(711), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(784), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [80] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1284), - [sym_subscript_expression] = STATE(1284), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_pattern] = STATE(4225), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1284), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(3922), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(708), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(155), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_DOT_DOT_DOT] = ACTIONS(165), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(136), - [anon_sym_DASH] = ACTIONS(136), - [anon_sym_SLASH] = ACTIONS(173), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(713), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(182), - [anon_sym_DASH_DASH] = ACTIONS(182), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(716), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(795), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(115), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(220), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(700), + [anon_sym_RPAREN] = ACTIONS(223), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(223), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(703), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(170), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(708), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(181), + [anon_sym_DASH_DASH] = ACTIONS(181), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(711), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(786), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [81] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3563), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(1816), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(4309), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(4309), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym__formal_parameter] = STATE(4621), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1284), - [sym_subscript_expression] = STATE(1284), + [sym_member_expression] = STATE(1352), + [sym_subscript_expression] = STATE(1352), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(4309), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_pattern] = STATE(3925), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1284), + [sym_sequence_expression] = STATE(5780), + [sym_string] = STATE(2338), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4087), + [sym_pattern] = STATE(4339), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1352), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(708), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(155), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_DOT_DOT_DOT] = ACTIONS(165), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(136), - [anon_sym_DASH] = ACTIONS(136), - [anon_sym_SLASH] = ACTIONS(173), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(713), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(182), - [anon_sym_DASH_DASH] = ACTIONS(182), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(716), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(797), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(115), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_nested_type_identifier] = STATE(2939), + [sym_accessibility_modifier] = STATE(288), + [sym_override_modifier] = STATE(303), + [sym_required_parameter] = STATE(4621), + [sym_optional_parameter] = STATE(4621), + [sym__parameter_name] = STATE(3624), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4434), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(638), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5158), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(267), + [sym_identifier] = ACTIONS(722), + [anon_sym_export] = ACTIONS(724), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(724), + [anon_sym_namespace] = ACTIONS(726), + [anon_sym_LBRACE] = ACTIONS(728), + [anon_sym_typeof] = ACTIONS(730), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(724), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(734), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(740), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(742), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(744), + [anon_sym_using] = ACTIONS(746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(754), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(760), + [sym_number] = ACTIONS(762), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(766), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(768), + [sym_false] = ACTIONS(768), + [sym_null] = ACTIONS(768), + [sym_undefined] = ACTIONS(770), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(724), + [anon_sym_readonly] = ACTIONS(772), + [anon_sym_get] = ACTIONS(724), + [anon_sym_set] = ACTIONS(724), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(724), + [anon_sym_public] = ACTIONS(776), + [anon_sym_private] = ACTIONS(776), + [anon_sym_protected] = ACTIONS(776), + [anon_sym_override] = ACTIONS(778), + [anon_sym_module] = ACTIONS(724), + [anon_sym_any] = ACTIONS(780), + [anon_sym_number] = ACTIONS(780), + [anon_sym_boolean] = ACTIONS(780), + [anon_sym_string] = ACTIONS(780), + [anon_sym_symbol] = ACTIONS(780), + [anon_sym_object] = ACTIONS(780), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [82] = { - [sym_import] = STATE(3596), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1817), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4100), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4100), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5679), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym__formal_parameter] = STATE(4540), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1357), - [sym_subscript_expression] = STATE(1357), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4100), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5652), - [sym_string] = STATE(2140), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(4277), - [sym_pattern] = STATE(4056), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1357), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4312), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2944), - [sym_accessibility_modifier] = STATE(288), - [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(4540), - [sym_optional_parameter] = STATE(4540), - [sym__parameter_name] = STATE(3613), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(4517), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_type_arguments] = STATE(635), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [aux_sym_export_statement_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(729), - [anon_sym_export] = ACTIONS(731), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(731), - [anon_sym_namespace] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(735), - [anon_sym_typeof] = ACTIONS(737), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(731), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(741), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(747), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(749), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(751), - [anon_sym_using] = ACTIONS(753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(761), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(767), - [sym_number] = ACTIONS(769), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(773), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(775), - [sym_false] = ACTIONS(775), - [sym_null] = ACTIONS(775), - [sym_undefined] = ACTIONS(777), - [anon_sym_AT] = ACTIONS(779), - [anon_sym_static] = ACTIONS(731), - [anon_sym_readonly] = ACTIONS(781), - [anon_sym_get] = ACTIONS(731), - [anon_sym_set] = ACTIONS(731), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_declare] = ACTIONS(731), - [anon_sym_public] = ACTIONS(785), - [anon_sym_private] = ACTIONS(785), - [anon_sym_protected] = ACTIONS(785), - [anon_sym_override] = ACTIONS(787), - [anon_sym_module] = ACTIONS(731), - [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_object] = ACTIONS(789), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(220), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(700), + [anon_sym_RPAREN] = ACTIONS(223), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(223), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(703), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(170), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(708), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(181), + [anon_sym_DASH_DASH] = ACTIONS(181), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(711), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(716), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [83] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1284), - [sym_subscript_expression] = STATE(1284), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_pattern] = STATE(4086), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1284), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4220), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(221), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_COMMA] = ACTIONS(224), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_RPAREN] = ACTIONS(224), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(224), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(708), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(227), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_DOT_DOT_DOT] = ACTIONS(165), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(136), - [anon_sym_DASH] = ACTIONS(136), - [anon_sym_SLASH] = ACTIONS(173), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(713), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(182), - [anon_sym_DASH_DASH] = ACTIONS(182), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(716), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(799), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(115), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(220), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(700), + [anon_sym_RPAREN] = ACTIONS(223), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(223), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(703), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(170), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(708), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(181), + [anon_sym_DASH_DASH] = ACTIONS(181), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(711), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(788), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [84] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1284), - [sym_subscript_expression] = STATE(1284), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_pattern] = STATE(4086), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1284), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4223), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(708), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(155), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_DOT_DOT_DOT] = ACTIONS(165), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(136), - [anon_sym_DASH] = ACTIONS(136), - [anon_sym_SLASH] = ACTIONS(173), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(713), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(182), - [anon_sym_DASH_DASH] = ACTIONS(182), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(716), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(799), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(115), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(220), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(700), + [anon_sym_RPAREN] = ACTIONS(223), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(223), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(703), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(170), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(708), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(181), + [anon_sym_DASH_DASH] = ACTIONS(181), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(711), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(790), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [85] = { - [sym_import] = STATE(3596), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1817), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4100), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4100), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5679), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym__formal_parameter] = STATE(4540), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1357), - [sym_subscript_expression] = STATE(1357), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4100), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5652), - [sym_string] = STATE(2140), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(4277), - [sym_pattern] = STATE(4056), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1357), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4227), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2944), - [sym_accessibility_modifier] = STATE(288), - [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(4540), - [sym_optional_parameter] = STATE(4540), - [sym__parameter_name] = STATE(3613), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(4406), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_type_arguments] = STATE(635), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [aux_sym_export_statement_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(729), - [anon_sym_export] = ACTIONS(731), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(731), - [anon_sym_namespace] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(735), - [anon_sym_typeof] = ACTIONS(737), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(731), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(741), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(747), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(749), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(751), - [anon_sym_using] = ACTIONS(753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(761), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(767), - [sym_number] = ACTIONS(769), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(773), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(775), - [sym_false] = ACTIONS(775), - [sym_null] = ACTIONS(775), - [sym_undefined] = ACTIONS(777), - [anon_sym_AT] = ACTIONS(779), - [anon_sym_static] = ACTIONS(731), - [anon_sym_readonly] = ACTIONS(781), - [anon_sym_get] = ACTIONS(731), - [anon_sym_set] = ACTIONS(731), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_declare] = ACTIONS(731), - [anon_sym_public] = ACTIONS(785), - [anon_sym_private] = ACTIONS(785), - [anon_sym_protected] = ACTIONS(785), - [anon_sym_override] = ACTIONS(787), - [anon_sym_module] = ACTIONS(731), - [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_object] = ACTIONS(789), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(220), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(700), + [anon_sym_RPAREN] = ACTIONS(223), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(223), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(703), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(170), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(708), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(181), + [anon_sym_DASH_DASH] = ACTIONS(181), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(711), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(792), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [86] = { - [sym_import] = STATE(3702), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3593), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5679), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym__formal_parameter] = STATE(4540), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym__formal_parameter] = STATE(4621), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1284), - [sym_subscript_expression] = STATE(1284), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2232), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(4277), - [sym_pattern] = STATE(4056), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1284), + [sym_string] = STATE(2213), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4087), + [sym_pattern] = STATE(4339), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2944), + [sym_nested_type_identifier] = STATE(2939), [sym_accessibility_modifier] = STATE(288), [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(4540), - [sym_optional_parameter] = STATE(4540), - [sym__parameter_name] = STATE(3613), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(4517), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_type_arguments] = STATE(537), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [aux_sym_export_statement_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(113), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(126), - [anon_sym_typeof] = ACTIONS(130), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(741), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(145), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(159), - [anon_sym_using] = ACTIONS(161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(178), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(189), - [sym_number] = ACTIONS(191), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(801), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(779), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(803), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(805), - [anon_sym_private] = ACTIONS(805), - [anon_sym_protected] = ACTIONS(805), - [anon_sym_override] = ACTIONS(807), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(207), - [anon_sym_number] = ACTIONS(207), - [anon_sym_boolean] = ACTIONS(207), - [anon_sym_string] = ACTIONS(207), - [anon_sym_symbol] = ACTIONS(207), - [anon_sym_object] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_required_parameter] = STATE(4621), + [sym_optional_parameter] = STATE(4621), + [sym__parameter_name] = STATE(3624), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4477), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(539), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5158), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(267), + [sym_identifier] = ACTIONS(111), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(129), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(734), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(144), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(156), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(188), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(794), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(200), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(798), + [anon_sym_private] = ACTIONS(798), + [anon_sym_protected] = ACTIONS(798), + [anon_sym_override] = ACTIONS(800), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(206), + [anon_sym_number] = ACTIONS(206), + [anon_sym_boolean] = ACTIONS(206), + [anon_sym_string] = ACTIONS(206), + [anon_sym_symbol] = ACTIONS(206), + [anon_sym_object] = ACTIONS(206), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [87] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1498), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_RBRACE] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [anon_sym_RBRACK] = ACTIONS(128), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(155), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(220), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_RBRACE] = ACTIONS(223), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(223), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(223), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_RBRACK] = ACTIONS(223), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [88] = { - [sym_import] = STATE(3702), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5679), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym__formal_parameter] = STATE(4540), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1284), - [sym_subscript_expression] = STATE(1284), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2232), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(4277), - [sym_pattern] = STATE(4056), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1284), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2944), - [sym_accessibility_modifier] = STATE(288), - [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(4540), - [sym_optional_parameter] = STATE(4540), - [sym__parameter_name] = STATE(3613), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(4475), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_type_arguments] = STATE(537), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [aux_sym_export_statement_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(113), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(126), - [anon_sym_typeof] = ACTIONS(130), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(741), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(145), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(159), - [anon_sym_using] = ACTIONS(161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(178), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(189), - [sym_number] = ACTIONS(191), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(801), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(779), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(803), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(805), - [anon_sym_private] = ACTIONS(805), - [anon_sym_protected] = ACTIONS(805), - [anon_sym_override] = ACTIONS(807), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(207), - [anon_sym_number] = ACTIONS(207), - [anon_sym_boolean] = ACTIONS(207), - [anon_sym_string] = ACTIONS(207), - [anon_sym_symbol] = ACTIONS(207), - [anon_sym_object] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_COMMA] = ACTIONS(826), + [anon_sym_RBRACE] = ACTIONS(826), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(826), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_RBRACK] = ACTIONS(826), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_QMARK] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [89] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1498), + [sym_import] = STATE(3593), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym__formal_parameter] = STATE(4621), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(2213), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4087), + [sym_pattern] = STATE(4339), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(833), - [anon_sym_RBRACE] = ACTIONS(833), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(833), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(833), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [anon_sym_RBRACK] = ACTIONS(833), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(155), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_QMARK] = ACTIONS(835), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_nested_type_identifier] = STATE(2939), + [sym_accessibility_modifier] = STATE(288), + [sym_override_modifier] = STATE(303), + [sym_required_parameter] = STATE(4621), + [sym_optional_parameter] = STATE(4621), + [sym__parameter_name] = STATE(3624), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4397), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(539), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5158), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(267), + [sym_identifier] = ACTIONS(111), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(129), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(734), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(144), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(156), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(188), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(794), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(200), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(798), + [anon_sym_private] = ACTIONS(798), + [anon_sym_protected] = ACTIONS(798), + [anon_sym_override] = ACTIONS(800), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(206), + [anon_sym_number] = ACTIONS(206), + [anon_sym_boolean] = ACTIONS(206), + [anon_sym_string] = ACTIONS(206), + [anon_sym_symbol] = ACTIONS(206), + [anon_sym_object] = ACTIONS(206), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [90] = { - [sym_import] = STATE(3702), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3593), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5679), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym__formal_parameter] = STATE(4540), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym__formal_parameter] = STATE(4621), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1284), - [sym_subscript_expression] = STATE(1284), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2232), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(4277), - [sym_pattern] = STATE(4056), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1284), + [sym_string] = STATE(2213), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4087), + [sym_pattern] = STATE(4339), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2944), + [sym_nested_type_identifier] = STATE(2939), [sym_accessibility_modifier] = STATE(288), [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(4540), - [sym_optional_parameter] = STATE(4540), - [sym__parameter_name] = STATE(3613), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(4406), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_type_arguments] = STATE(537), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [aux_sym_export_statement_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(113), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(126), - [anon_sym_typeof] = ACTIONS(130), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(741), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(145), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(159), - [anon_sym_using] = ACTIONS(161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(178), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(189), - [sym_number] = ACTIONS(191), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(801), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(779), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(803), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(805), - [anon_sym_private] = ACTIONS(805), - [anon_sym_protected] = ACTIONS(805), - [anon_sym_override] = ACTIONS(807), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(207), - [anon_sym_number] = ACTIONS(207), - [anon_sym_boolean] = ACTIONS(207), - [anon_sym_string] = ACTIONS(207), - [anon_sym_symbol] = ACTIONS(207), - [anon_sym_object] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_required_parameter] = STATE(4621), + [sym_optional_parameter] = STATE(4621), + [sym__parameter_name] = STATE(3624), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4405), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(539), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5158), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(267), + [sym_identifier] = ACTIONS(111), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(129), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(734), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(144), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(156), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(188), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(794), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(200), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(798), + [anon_sym_private] = ACTIONS(798), + [anon_sym_protected] = ACTIONS(798), + [anon_sym_override] = ACTIONS(800), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(206), + [anon_sym_number] = ACTIONS(206), + [anon_sym_boolean] = ACTIONS(206), + [anon_sym_string] = ACTIONS(206), + [anon_sym_symbol] = ACTIONS(206), + [anon_sym_object] = ACTIONS(206), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [91] = { - [sym_import] = STATE(3702), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3593), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5679), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym__formal_parameter] = STATE(4540), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym__formal_parameter] = STATE(4621), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1284), - [sym_subscript_expression] = STATE(1284), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2232), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(4277), - [sym_pattern] = STATE(4056), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1284), + [sym_string] = STATE(2213), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4087), + [sym_pattern] = STATE(4339), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2944), + [sym_nested_type_identifier] = STATE(2939), [sym_accessibility_modifier] = STATE(288), [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(4540), - [sym_optional_parameter] = STATE(4540), - [sym__parameter_name] = STATE(3613), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(4513), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_type_arguments] = STATE(537), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [aux_sym_export_statement_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(113), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(126), - [anon_sym_typeof] = ACTIONS(130), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(741), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(145), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(159), - [anon_sym_using] = ACTIONS(161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(178), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(189), - [sym_number] = ACTIONS(191), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(801), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(779), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(803), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(805), - [anon_sym_private] = ACTIONS(805), - [anon_sym_protected] = ACTIONS(805), - [anon_sym_override] = ACTIONS(807), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(207), - [anon_sym_number] = ACTIONS(207), - [anon_sym_boolean] = ACTIONS(207), - [anon_sym_string] = ACTIONS(207), - [anon_sym_symbol] = ACTIONS(207), - [anon_sym_object] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_required_parameter] = STATE(4621), + [sym_optional_parameter] = STATE(4621), + [sym__parameter_name] = STATE(3624), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4434), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(539), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5158), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(267), + [sym_identifier] = ACTIONS(111), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(129), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(734), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(144), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(156), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(188), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(794), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(200), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(798), + [anon_sym_private] = ACTIONS(798), + [anon_sym_protected] = ACTIONS(798), + [anon_sym_override] = ACTIONS(800), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(206), + [anon_sym_number] = ACTIONS(206), + [anon_sym_boolean] = ACTIONS(206), + [anon_sym_string] = ACTIONS(206), + [anon_sym_symbol] = ACTIONS(206), + [anon_sym_object] = ACTIONS(206), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [92] = { - [sym_import] = STATE(3702), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3593), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5679), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym__formal_parameter] = STATE(4540), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym__formal_parameter] = STATE(4621), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1284), - [sym_subscript_expression] = STATE(1284), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2232), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(4277), - [sym_pattern] = STATE(4056), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1284), + [sym_string] = STATE(2213), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4087), + [sym_pattern] = STATE(4339), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2944), + [sym_nested_type_identifier] = STATE(2939), [sym_accessibility_modifier] = STATE(288), [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(4540), - [sym_optional_parameter] = STATE(4540), - [sym__parameter_name] = STATE(3613), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(4464), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_type_arguments] = STATE(537), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [aux_sym_export_statement_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(113), - [anon_sym_export] = ACTIONS(115), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(126), - [anon_sym_typeof] = ACTIONS(130), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(741), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(145), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(159), - [anon_sym_using] = ACTIONS(161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(178), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(189), - [sym_number] = ACTIONS(191), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(801), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(201), - [anon_sym_AT] = ACTIONS(779), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(803), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(805), - [anon_sym_private] = ACTIONS(805), - [anon_sym_protected] = ACTIONS(805), - [anon_sym_override] = ACTIONS(807), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(207), - [anon_sym_number] = ACTIONS(207), - [anon_sym_boolean] = ACTIONS(207), - [anon_sym_string] = ACTIONS(207), - [anon_sym_symbol] = ACTIONS(207), - [anon_sym_object] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_required_parameter] = STATE(4621), + [sym_optional_parameter] = STATE(4621), + [sym__parameter_name] = STATE(3624), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4387), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(539), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5158), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(267), + [sym_identifier] = ACTIONS(111), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(129), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(734), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(144), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(156), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(188), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(794), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(200), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(796), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(798), + [anon_sym_private] = ACTIONS(798), + [anon_sym_protected] = ACTIONS(798), + [anon_sym_override] = ACTIONS(800), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(206), + [anon_sym_number] = ACTIONS(206), + [anon_sym_boolean] = ACTIONS(206), + [anon_sym_string] = ACTIONS(206), + [anon_sym_symbol] = ACTIONS(206), + [anon_sym_object] = ACTIONS(206), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [93] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1498), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(4102), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4116), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5156), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(841), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_RBRACE] = ACTIONS(157), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(157), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(157), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(849), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(853), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5344), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(830), + [anon_sym_export] = ACTIONS(832), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(832), + [anon_sym_EQ] = ACTIONS(834), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(836), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(154), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(154), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_RBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(842), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(844), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(846), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(832), + [anon_sym_readonly] = ACTIONS(832), + [anon_sym_get] = ACTIONS(832), + [anon_sym_set] = ACTIONS(832), + [anon_sym_declare] = ACTIONS(832), + [anon_sym_public] = ACTIONS(832), + [anon_sym_private] = ACTIONS(832), + [anon_sym_protected] = ACTIONS(832), + [anon_sym_override] = ACTIONS(832), + [anon_sym_module] = ACTIONS(832), + [anon_sym_any] = ACTIONS(832), + [anon_sym_number] = ACTIONS(832), + [anon_sym_boolean] = ACTIONS(832), + [anon_sym_string] = ACTIONS(832), + [anon_sym_symbol] = ACTIONS(832), + [anon_sym_object] = ACTIONS(832), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [94] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1498), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(841), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_RBRACE] = ACTIONS(157), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(157), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(157), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(849), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(853), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(154), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(154), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_RBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(844), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [95] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1498), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_RBRACE] = ACTIONS(157), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(157), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [anon_sym_RBRACK] = ACTIONS(157), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(830), + [anon_sym_export] = ACTIONS(832), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(832), + [anon_sym_EQ] = ACTIONS(834), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(836), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(154), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(154), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_RBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(842), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(844), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(846), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(832), + [anon_sym_readonly] = ACTIONS(832), + [anon_sym_get] = ACTIONS(832), + [anon_sym_set] = ACTIONS(832), + [anon_sym_declare] = ACTIONS(832), + [anon_sym_public] = ACTIONS(832), + [anon_sym_private] = ACTIONS(832), + [anon_sym_protected] = ACTIONS(832), + [anon_sym_override] = ACTIONS(832), + [anon_sym_module] = ACTIONS(832), + [anon_sym_any] = ACTIONS(832), + [anon_sym_number] = ACTIONS(832), + [anon_sym_boolean] = ACTIONS(832), + [anon_sym_string] = ACTIONS(832), + [anon_sym_symbol] = ACTIONS(832), + [anon_sym_object] = ACTIONS(832), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [96] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(2638), - [sym_primary_expression] = STATE(1709), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2710), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1335), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(662), - [anon_sym_export] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(664), - [anon_sym_EQ] = ACTIONS(855), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(668), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(857), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(679), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(683), - [anon_sym_function] = ACTIONS(685), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(689), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(693), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(664), - [anon_sym_readonly] = ACTIONS(664), - [anon_sym_get] = ACTIONS(664), - [anon_sym_set] = ACTIONS(664), - [anon_sym_declare] = ACTIONS(664), - [anon_sym_public] = ACTIONS(664), - [anon_sym_private] = ACTIONS(664), - [anon_sym_protected] = ACTIONS(664), - [anon_sym_override] = ACTIONS(664), - [anon_sym_module] = ACTIONS(664), - [anon_sym_any] = ACTIONS(664), - [anon_sym_number] = ACTIONS(664), - [anon_sym_boolean] = ACTIONS(664), - [anon_sym_string] = ACTIONS(664), - [anon_sym_symbol] = ACTIONS(664), - [anon_sym_object] = ACTIONS(664), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(848), + [anon_sym_export] = ACTIONS(850), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(850), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(852), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(850), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(854), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(152), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(856), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(850), + [anon_sym_readonly] = ACTIONS(850), + [anon_sym_get] = ACTIONS(850), + [anon_sym_set] = ACTIONS(850), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(850), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(850), + [anon_sym_module] = ACTIONS(850), + [anon_sym_any] = ACTIONS(850), + [anon_sym_number] = ACTIONS(850), + [anon_sym_boolean] = ACTIONS(850), + [anon_sym_string] = ACTIONS(850), + [anon_sym_symbol] = ACTIONS(850), + [anon_sym_object] = ACTIONS(850), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [97] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1498), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(4102), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5156), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(155), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(154), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(674), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [98] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1498), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(4102), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4116), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5156), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(859), - [anon_sym_export] = ACTIONS(861), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(861), - [anon_sym_EQ] = ACTIONS(221), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(863), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(224), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(861), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(224), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(224), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(865), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(227), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(867), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(861), - [anon_sym_readonly] = ACTIONS(861), - [anon_sym_get] = ACTIONS(861), - [anon_sym_set] = ACTIONS(861), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(861), - [anon_sym_public] = ACTIONS(861), - [anon_sym_private] = ACTIONS(861), - [anon_sym_protected] = ACTIONS(861), - [anon_sym_override] = ACTIONS(861), - [anon_sym_module] = ACTIONS(861), - [anon_sym_any] = ACTIONS(861), - [anon_sym_number] = ACTIONS(861), - [anon_sym_boolean] = ACTIONS(861), - [anon_sym_string] = ACTIONS(861), - [anon_sym_symbol] = ACTIONS(861), - [anon_sym_object] = ACTIONS(861), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5344), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(220), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(223), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(223), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [99] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(2638), - [sym_primary_expression] = STATE(1709), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1334), + [sym_expression] = STATE(2611), + [sym_primary_expression] = STATE(1696), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2710), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(2694), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), + [sym_member_expression] = STATE(1334), + [sym_subscript_expression] = STATE(1334), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1335), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1334), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(662), - [anon_sym_export] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(664), - [anon_sym_EQ] = ACTIONS(855), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(668), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(180), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(657), + [anon_sym_export] = ACTIONS(659), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(659), + [anon_sym_EQ] = ACTIONS(858), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(659), + [anon_sym_BANG] = ACTIONS(179), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(869), - [anon_sym_yield] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(860), + [anon_sym_yield] = ACTIONS(142), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(679), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(683), - [anon_sym_function] = ACTIONS(685), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(689), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(693), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(664), - [anon_sym_readonly] = ACTIONS(664), - [anon_sym_get] = ACTIONS(664), - [anon_sym_set] = ACTIONS(664), - [anon_sym_declare] = ACTIONS(664), - [anon_sym_public] = ACTIONS(664), - [anon_sym_private] = ACTIONS(664), - [anon_sym_protected] = ACTIONS(664), - [anon_sym_override] = ACTIONS(664), - [anon_sym_module] = ACTIONS(664), - [anon_sym_any] = ACTIONS(664), - [anon_sym_number] = ACTIONS(664), - [anon_sym_boolean] = ACTIONS(664), - [anon_sym_string] = ACTIONS(664), - [anon_sym_symbol] = ACTIONS(664), - [anon_sym_object] = ACTIONS(664), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(674), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(678), + [anon_sym_function] = ACTIONS(680), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(684), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(688), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(659), + [anon_sym_readonly] = ACTIONS(659), + [anon_sym_get] = ACTIONS(659), + [anon_sym_set] = ACTIONS(659), + [anon_sym_declare] = ACTIONS(659), + [anon_sym_public] = ACTIONS(659), + [anon_sym_private] = ACTIONS(659), + [anon_sym_protected] = ACTIONS(659), + [anon_sym_override] = ACTIONS(659), + [anon_sym_module] = ACTIONS(659), + [anon_sym_any] = ACTIONS(659), + [anon_sym_number] = ACTIONS(659), + [anon_sym_boolean] = ACTIONS(659), + [anon_sym_string] = ACTIONS(659), + [anon_sym_symbol] = ACTIONS(659), + [anon_sym_object] = ACTIONS(659), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [100] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(2638), - [sym_primary_expression] = STATE(1709), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1334), + [sym_expression] = STATE(2611), + [sym_primary_expression] = STATE(1696), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2710), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(2694), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), + [sym_member_expression] = STATE(1334), + [sym_subscript_expression] = STATE(1334), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(4102), - [sym_non_null_expression] = STATE(1335), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4116), + [sym_non_null_expression] = STATE(1334), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5156), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(662), - [anon_sym_export] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(664), - [anon_sym_EQ] = ACTIONS(855), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(668), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_RBRACE] = ACTIONS(157), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(180), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5344), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(657), + [anon_sym_export] = ACTIONS(659), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(659), + [anon_sym_EQ] = ACTIONS(858), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(154), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(659), + [anon_sym_BANG] = ACTIONS(179), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(679), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(683), - [anon_sym_function] = ACTIONS(685), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(689), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(693), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(664), - [anon_sym_readonly] = ACTIONS(664), - [anon_sym_get] = ACTIONS(664), - [anon_sym_set] = ACTIONS(664), - [anon_sym_declare] = ACTIONS(664), - [anon_sym_public] = ACTIONS(664), - [anon_sym_private] = ACTIONS(664), - [anon_sym_protected] = ACTIONS(664), - [anon_sym_override] = ACTIONS(664), - [anon_sym_module] = ACTIONS(664), - [anon_sym_any] = ACTIONS(664), - [anon_sym_number] = ACTIONS(664), - [anon_sym_boolean] = ACTIONS(664), - [anon_sym_string] = ACTIONS(664), - [anon_sym_symbol] = ACTIONS(664), - [anon_sym_object] = ACTIONS(664), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(674), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(678), + [anon_sym_function] = ACTIONS(680), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(684), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(688), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(659), + [anon_sym_readonly] = ACTIONS(659), + [anon_sym_get] = ACTIONS(659), + [anon_sym_set] = ACTIONS(659), + [anon_sym_declare] = ACTIONS(659), + [anon_sym_public] = ACTIONS(659), + [anon_sym_private] = ACTIONS(659), + [anon_sym_protected] = ACTIONS(659), + [anon_sym_override] = ACTIONS(659), + [anon_sym_module] = ACTIONS(659), + [anon_sym_any] = ACTIONS(659), + [anon_sym_number] = ACTIONS(659), + [anon_sym_boolean] = ACTIONS(659), + [anon_sym_string] = ACTIONS(659), + [anon_sym_symbol] = ACTIONS(659), + [anon_sym_object] = ACTIONS(659), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [101] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(2638), - [sym_primary_expression] = STATE(1709), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2710), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(4102), - [sym_non_null_expression] = STATE(1335), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4116), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5156), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(871), - [anon_sym_export] = ACTIONS(873), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(873), - [anon_sym_EQ] = ACTIONS(875), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(877), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(873), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(679), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(879), - [anon_sym_function] = ACTIONS(685), - [anon_sym_EQ_GT] = ACTIONS(881), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(883), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(693), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_get] = ACTIONS(873), - [anon_sym_set] = ACTIONS(873), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_public] = ACTIONS(873), - [anon_sym_private] = ACTIONS(873), - [anon_sym_protected] = ACTIONS(873), - [anon_sym_override] = ACTIONS(873), - [anon_sym_module] = ACTIONS(873), - [anon_sym_any] = ACTIONS(873), - [anon_sym_number] = ACTIONS(873), - [anon_sym_boolean] = ACTIONS(873), - [anon_sym_string] = ACTIONS(873), - [anon_sym_symbol] = ACTIONS(873), - [anon_sym_object] = ACTIONS(873), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5344), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(848), + [anon_sym_export] = ACTIONS(850), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(850), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(852), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(850), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(854), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(152), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(856), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(850), + [anon_sym_readonly] = ACTIONS(850), + [anon_sym_get] = ACTIONS(850), + [anon_sym_set] = ACTIONS(850), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(850), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(850), + [anon_sym_module] = ACTIONS(850), + [anon_sym_any] = ACTIONS(850), + [anon_sym_number] = ACTIONS(850), + [anon_sym_boolean] = ACTIONS(850), + [anon_sym_string] = ACTIONS(850), + [anon_sym_symbol] = ACTIONS(850), + [anon_sym_object] = ACTIONS(850), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [102] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1498), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1334), + [sym_expression] = STATE(2611), + [sym_primary_expression] = STATE(1696), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(2694), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1334), + [sym_subscript_expression] = STATE(1334), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1334), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_RBRACE] = ACTIONS(157), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(679), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(657), + [anon_sym_export] = ACTIONS(659), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(659), + [anon_sym_EQ] = ACTIONS(858), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(154), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(659), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DOT] = ACTIONS(674), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(678), + [anon_sym_function] = ACTIONS(680), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(684), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(688), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(659), + [anon_sym_readonly] = ACTIONS(659), + [anon_sym_get] = ACTIONS(659), + [anon_sym_set] = ACTIONS(659), + [anon_sym_declare] = ACTIONS(659), + [anon_sym_public] = ACTIONS(659), + [anon_sym_private] = ACTIONS(659), + [anon_sym_protected] = ACTIONS(659), + [anon_sym_override] = ACTIONS(659), + [anon_sym_module] = ACTIONS(659), + [anon_sym_any] = ACTIONS(659), + [anon_sym_number] = ACTIONS(659), + [anon_sym_boolean] = ACTIONS(659), + [anon_sym_string] = ACTIONS(659), + [anon_sym_symbol] = ACTIONS(659), + [anon_sym_object] = ACTIONS(659), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [103] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(2638), - [sym_primary_expression] = STATE(1709), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1334), + [sym_expression] = STATE(2611), + [sym_primary_expression] = STATE(1696), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2710), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(2694), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), + [sym_member_expression] = STATE(1334), + [sym_subscript_expression] = STATE(1334), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1335), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1334), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(871), - [anon_sym_export] = ACTIONS(873), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(873), - [anon_sym_EQ] = ACTIONS(875), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(877), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(873), - [anon_sym_BANG] = ACTIONS(180), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(862), + [anon_sym_export] = ACTIONS(864), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(864), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(179), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(679), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(879), - [anon_sym_function] = ACTIONS(685), - [anon_sym_EQ_GT] = ACTIONS(881), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(883), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(693), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(873), - [anon_sym_readonly] = ACTIONS(873), - [anon_sym_get] = ACTIONS(873), - [anon_sym_set] = ACTIONS(873), - [anon_sym_declare] = ACTIONS(873), - [anon_sym_public] = ACTIONS(873), - [anon_sym_private] = ACTIONS(873), - [anon_sym_protected] = ACTIONS(873), - [anon_sym_override] = ACTIONS(873), - [anon_sym_module] = ACTIONS(873), - [anon_sym_any] = ACTIONS(873), - [anon_sym_number] = ACTIONS(873), - [anon_sym_boolean] = ACTIONS(873), - [anon_sym_string] = ACTIONS(873), - [anon_sym_symbol] = ACTIONS(873), - [anon_sym_object] = ACTIONS(873), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(674), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(870), + [anon_sym_function] = ACTIONS(680), + [anon_sym_EQ_GT] = ACTIONS(872), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(874), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(688), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(864), + [anon_sym_readonly] = ACTIONS(864), + [anon_sym_get] = ACTIONS(864), + [anon_sym_set] = ACTIONS(864), + [anon_sym_declare] = ACTIONS(864), + [anon_sym_public] = ACTIONS(864), + [anon_sym_private] = ACTIONS(864), + [anon_sym_protected] = ACTIONS(864), + [anon_sym_override] = ACTIONS(864), + [anon_sym_module] = ACTIONS(864), + [anon_sym_any] = ACTIONS(864), + [anon_sym_number] = ACTIONS(864), + [anon_sym_boolean] = ACTIONS(864), + [anon_sym_string] = ACTIONS(864), + [anon_sym_symbol] = ACTIONS(864), + [anon_sym_object] = ACTIONS(864), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [104] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(2638), - [sym_primary_expression] = STATE(1709), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2710), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1335), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(662), - [anon_sym_export] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(664), - [anon_sym_EQ] = ACTIONS(855), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(668), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_RBRACE] = ACTIONS(157), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(679), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(683), - [anon_sym_function] = ACTIONS(685), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(689), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(693), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(664), - [anon_sym_readonly] = ACTIONS(664), - [anon_sym_get] = ACTIONS(664), - [anon_sym_set] = ACTIONS(664), - [anon_sym_declare] = ACTIONS(664), - [anon_sym_public] = ACTIONS(664), - [anon_sym_private] = ACTIONS(664), - [anon_sym_protected] = ACTIONS(664), - [anon_sym_override] = ACTIONS(664), - [anon_sym_module] = ACTIONS(664), - [anon_sym_any] = ACTIONS(664), - [anon_sym_number] = ACTIONS(664), - [anon_sym_boolean] = ACTIONS(664), - [anon_sym_string] = ACTIONS(664), - [anon_sym_symbol] = ACTIONS(664), - [anon_sym_object] = ACTIONS(664), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(674), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(872), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [105] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1498), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1334), + [sym_expression] = STATE(2611), + [sym_primary_expression] = STATE(1696), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(2694), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1334), + [sym_subscript_expression] = STATE(1334), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4116), + [sym_non_null_expression] = STATE(1334), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(679), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(881), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5344), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(862), + [anon_sym_export] = ACTIONS(864), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(864), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DOT] = ACTIONS(674), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(870), + [anon_sym_function] = ACTIONS(680), + [anon_sym_EQ_GT] = ACTIONS(872), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(874), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(688), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(864), + [anon_sym_readonly] = ACTIONS(864), + [anon_sym_get] = ACTIONS(864), + [anon_sym_set] = ACTIONS(864), + [anon_sym_declare] = ACTIONS(864), + [anon_sym_public] = ACTIONS(864), + [anon_sym_private] = ACTIONS(864), + [anon_sym_protected] = ACTIONS(864), + [anon_sym_override] = ACTIONS(864), + [anon_sym_module] = ACTIONS(864), + [anon_sym_any] = ACTIONS(864), + [anon_sym_number] = ACTIONS(864), + [anon_sym_boolean] = ACTIONS(864), + [anon_sym_string] = ACTIONS(864), + [anon_sym_symbol] = ACTIONS(864), + [anon_sym_object] = ACTIONS(864), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [106] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1498), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1334), + [sym_expression] = STATE(2611), + [sym_primary_expression] = STATE(1696), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(2694), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1334), + [sym_subscript_expression] = STATE(1334), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1334), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(859), - [anon_sym_export] = ACTIONS(861), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(861), - [anon_sym_EQ] = ACTIONS(221), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(863), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(224), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(861), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(224), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(224), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(865), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(227), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(867), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(861), - [anon_sym_readonly] = ACTIONS(861), - [anon_sym_get] = ACTIONS(861), - [anon_sym_set] = ACTIONS(861), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(861), - [anon_sym_public] = ACTIONS(861), - [anon_sym_private] = ACTIONS(861), - [anon_sym_protected] = ACTIONS(861), - [anon_sym_override] = ACTIONS(861), - [anon_sym_module] = ACTIONS(861), - [anon_sym_any] = ACTIONS(861), - [anon_sym_number] = ACTIONS(861), - [anon_sym_boolean] = ACTIONS(861), - [anon_sym_string] = ACTIONS(861), - [anon_sym_symbol] = ACTIONS(861), - [anon_sym_object] = ACTIONS(861), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(657), + [anon_sym_export] = ACTIONS(659), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(659), + [anon_sym_EQ] = ACTIONS(858), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(663), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(659), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(878), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DOT] = ACTIONS(674), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(678), + [anon_sym_function] = ACTIONS(680), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(684), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(688), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(659), + [anon_sym_readonly] = ACTIONS(659), + [anon_sym_get] = ACTIONS(659), + [anon_sym_set] = ACTIONS(659), + [anon_sym_declare] = ACTIONS(659), + [anon_sym_public] = ACTIONS(659), + [anon_sym_private] = ACTIONS(659), + [anon_sym_protected] = ACTIONS(659), + [anon_sym_override] = ACTIONS(659), + [anon_sym_module] = ACTIONS(659), + [anon_sym_any] = ACTIONS(659), + [anon_sym_number] = ACTIONS(659), + [anon_sym_boolean] = ACTIONS(659), + [anon_sym_string] = ACTIONS(659), + [anon_sym_symbol] = ACTIONS(659), + [anon_sym_object] = ACTIONS(659), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [107] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1498), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4116), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(887), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(224), - [anon_sym_RBRACE] = ACTIONS(224), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(224), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(849), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(853), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5344), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(848), + [anon_sym_export] = ACTIONS(850), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(850), + [anon_sym_EQ] = ACTIONS(880), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(852), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(850), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(154), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(154), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(854), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(152), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(856), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(850), + [anon_sym_readonly] = ACTIONS(850), + [anon_sym_get] = ACTIONS(850), + [anon_sym_set] = ACTIONS(850), + [anon_sym_declare] = ACTIONS(850), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(850), + [anon_sym_module] = ACTIONS(850), + [anon_sym_any] = ACTIONS(850), + [anon_sym_number] = ACTIONS(850), + [anon_sym_boolean] = ACTIONS(850), + [anon_sym_string] = ACTIONS(850), + [anon_sym_symbol] = ACTIONS(850), + [anon_sym_object] = ACTIONS(850), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [108] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1498), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(859), - [anon_sym_export] = ACTIONS(861), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(861), - [anon_sym_EQ] = ACTIONS(890), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(863), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(861), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(157), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(157), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(865), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(227), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(867), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(861), - [anon_sym_readonly] = ACTIONS(861), - [anon_sym_get] = ACTIONS(861), - [anon_sym_set] = ACTIONS(861), - [anon_sym_declare] = ACTIONS(861), - [anon_sym_public] = ACTIONS(861), - [anon_sym_private] = ACTIONS(861), - [anon_sym_protected] = ACTIONS(861), - [anon_sym_override] = ACTIONS(861), - [anon_sym_module] = ACTIONS(861), - [anon_sym_any] = ACTIONS(861), - [anon_sym_number] = ACTIONS(861), - [anon_sym_boolean] = ACTIONS(861), - [anon_sym_string] = ACTIONS(861), - [anon_sym_symbol] = ACTIONS(861), - [anon_sym_object] = ACTIONS(861), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(848), + [anon_sym_export] = ACTIONS(850), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(850), + [anon_sym_EQ] = ACTIONS(880), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(852), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(850), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(154), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(154), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(854), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(152), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(856), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(850), + [anon_sym_readonly] = ACTIONS(850), + [anon_sym_get] = ACTIONS(850), + [anon_sym_set] = ACTIONS(850), + [anon_sym_declare] = ACTIONS(850), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(850), + [anon_sym_module] = ACTIONS(850), + [anon_sym_any] = ACTIONS(850), + [anon_sym_number] = ACTIONS(850), + [anon_sym_boolean] = ACTIONS(850), + [anon_sym_string] = ACTIONS(850), + [anon_sym_symbol] = ACTIONS(850), + [anon_sym_object] = ACTIONS(850), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [109] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1498), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(4102), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5156), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(859), - [anon_sym_export] = ACTIONS(861), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(861), - [anon_sym_EQ] = ACTIONS(890), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(863), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(861), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(157), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(157), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(865), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(227), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(867), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(861), - [anon_sym_readonly] = ACTIONS(861), - [anon_sym_get] = ACTIONS(861), - [anon_sym_set] = ACTIONS(861), - [anon_sym_declare] = ACTIONS(861), - [anon_sym_public] = ACTIONS(861), - [anon_sym_private] = ACTIONS(861), - [anon_sym_protected] = ACTIONS(861), - [anon_sym_override] = ACTIONS(861), - [anon_sym_module] = ACTIONS(861), - [anon_sym_any] = ACTIONS(861), - [anon_sym_number] = ACTIONS(861), - [anon_sym_boolean] = ACTIONS(861), - [anon_sym_string] = ACTIONS(861), - [anon_sym_symbol] = ACTIONS(861), - [anon_sym_object] = ACTIONS(861), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(882), + [anon_sym_export] = ACTIONS(884), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(884), + [anon_sym_EQ] = ACTIONS(886), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(889), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(884), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(891), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_RBRACK] = ACTIONS(126), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(893), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(895), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(897), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(884), + [anon_sym_readonly] = ACTIONS(884), + [anon_sym_get] = ACTIONS(884), + [anon_sym_set] = ACTIONS(884), + [anon_sym_declare] = ACTIONS(884), + [anon_sym_public] = ACTIONS(884), + [anon_sym_private] = ACTIONS(884), + [anon_sym_protected] = ACTIONS(884), + [anon_sym_override] = ACTIONS(884), + [anon_sym_module] = ACTIONS(884), + [anon_sym_any] = ACTIONS(884), + [anon_sym_number] = ACTIONS(884), + [anon_sym_boolean] = ACTIONS(884), + [anon_sym_string] = ACTIONS(884), + [anon_sym_symbol] = ACTIONS(884), + [anon_sym_object] = ACTIONS(884), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [110] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1498), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(841), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(892), - [anon_sym_RBRACE] = ACTIONS(892), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(892), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(849), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(853), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(830), + [anon_sym_export] = ACTIONS(832), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(832), + [anon_sym_EQ] = ACTIONS(834), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(836), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(899), + [anon_sym_RBRACE] = ACTIONS(899), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_RBRACK] = ACTIONS(899), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(842), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(844), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(846), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(832), + [anon_sym_readonly] = ACTIONS(832), + [anon_sym_get] = ACTIONS(832), + [anon_sym_set] = ACTIONS(832), + [anon_sym_declare] = ACTIONS(832), + [anon_sym_public] = ACTIONS(832), + [anon_sym_private] = ACTIONS(832), + [anon_sym_protected] = ACTIONS(832), + [anon_sym_override] = ACTIONS(832), + [anon_sym_module] = ACTIONS(832), + [anon_sym_any] = ACTIONS(832), + [anon_sym_number] = ACTIONS(832), + [anon_sym_boolean] = ACTIONS(832), + [anon_sym_string] = ACTIONS(832), + [anon_sym_symbol] = ACTIONS(832), + [anon_sym_object] = ACTIONS(832), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [111] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1498), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(841), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(895), - [anon_sym_of] = ACTIONS(898), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(849), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(853), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(830), + [anon_sym_export] = ACTIONS(832), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(832), + [anon_sym_EQ] = ACTIONS(834), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(836), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(902), + [anon_sym_of] = ACTIONS(905), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(842), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(844), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(846), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(832), + [anon_sym_readonly] = ACTIONS(832), + [anon_sym_get] = ACTIONS(832), + [anon_sym_set] = ACTIONS(832), + [anon_sym_declare] = ACTIONS(832), + [anon_sym_public] = ACTIONS(832), + [anon_sym_private] = ACTIONS(832), + [anon_sym_protected] = ACTIONS(832), + [anon_sym_override] = ACTIONS(832), + [anon_sym_module] = ACTIONS(832), + [anon_sym_any] = ACTIONS(832), + [anon_sym_number] = ACTIONS(832), + [anon_sym_boolean] = ACTIONS(832), + [anon_sym_string] = ACTIONS(832), + [anon_sym_symbol] = ACTIONS(832), + [anon_sym_object] = ACTIONS(832), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [112] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1498), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4116), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(900), - [anon_sym_export] = ACTIONS(902), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(902), - [anon_sym_EQ] = ACTIONS(904), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(907), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(902), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(909), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(224), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(911), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(913), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(915), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(902), - [anon_sym_readonly] = ACTIONS(902), - [anon_sym_get] = ACTIONS(902), - [anon_sym_set] = ACTIONS(902), - [anon_sym_declare] = ACTIONS(902), - [anon_sym_public] = ACTIONS(902), - [anon_sym_private] = ACTIONS(902), - [anon_sym_protected] = ACTIONS(902), - [anon_sym_override] = ACTIONS(902), - [anon_sym_module] = ACTIONS(902), - [anon_sym_any] = ACTIONS(902), - [anon_sym_number] = ACTIONS(902), - [anon_sym_boolean] = ACTIONS(902), - [anon_sym_string] = ACTIONS(902), - [anon_sym_symbol] = ACTIONS(902), - [anon_sym_object] = ACTIONS(902), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5344), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(830), + [anon_sym_export] = ACTIONS(832), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(832), + [anon_sym_EQ] = ACTIONS(834), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(836), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(899), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_RBRACK] = ACTIONS(899), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(842), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(844), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(846), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(832), + [anon_sym_readonly] = ACTIONS(832), + [anon_sym_get] = ACTIONS(832), + [anon_sym_set] = ACTIONS(832), + [anon_sym_declare] = ACTIONS(832), + [anon_sym_public] = ACTIONS(832), + [anon_sym_private] = ACTIONS(832), + [anon_sym_protected] = ACTIONS(832), + [anon_sym_override] = ACTIONS(832), + [anon_sym_module] = ACTIONS(832), + [anon_sym_any] = ACTIONS(832), + [anon_sym_number] = ACTIONS(832), + [anon_sym_boolean] = ACTIONS(832), + [anon_sym_string] = ACTIONS(832), + [anon_sym_symbol] = ACTIONS(832), + [anon_sym_object] = ACTIONS(832), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [113] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1498), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(157), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(157), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(227), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(154), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(154), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(152), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [114] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1498), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(4102), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5156), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(841), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(892), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(833), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(892), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(849), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(853), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(830), + [anon_sym_export] = ACTIONS(832), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(832), + [anon_sym_EQ] = ACTIONS(907), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(836), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_RBRACE] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_RBRACK] = ACTIONS(126), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(842), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(844), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(846), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(832), + [anon_sym_readonly] = ACTIONS(832), + [anon_sym_get] = ACTIONS(832), + [anon_sym_set] = ACTIONS(832), + [anon_sym_declare] = ACTIONS(832), + [anon_sym_public] = ACTIONS(832), + [anon_sym_private] = ACTIONS(832), + [anon_sym_protected] = ACTIONS(832), + [anon_sym_override] = ACTIONS(832), + [anon_sym_module] = ACTIONS(832), + [anon_sym_any] = ACTIONS(832), + [anon_sym_number] = ACTIONS(832), + [anon_sym_boolean] = ACTIONS(832), + [anon_sym_string] = ACTIONS(832), + [anon_sym_symbol] = ACTIONS(832), + [anon_sym_object] = ACTIONS(832), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [115] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1498), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3954), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5410), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(887), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(224), - [anon_sym_RBRACE] = ACTIONS(224), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(849), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(853), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(882), + [anon_sym_export] = ACTIONS(884), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(884), + [anon_sym_EQ] = ACTIONS(910), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(889), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(884), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(912), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_RBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(893), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(895), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(897), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(884), + [anon_sym_readonly] = ACTIONS(884), + [anon_sym_get] = ACTIONS(884), + [anon_sym_set] = ACTIONS(884), + [anon_sym_declare] = ACTIONS(884), + [anon_sym_public] = ACTIONS(884), + [anon_sym_private] = ACTIONS(884), + [anon_sym_protected] = ACTIONS(884), + [anon_sym_override] = ACTIONS(884), + [anon_sym_module] = ACTIONS(884), + [anon_sym_any] = ACTIONS(884), + [anon_sym_number] = ACTIONS(884), + [anon_sym_boolean] = ACTIONS(884), + [anon_sym_string] = ACTIONS(884), + [anon_sym_symbol] = ACTIONS(884), + [anon_sym_object] = ACTIONS(884), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [116] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1498), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1334), + [sym_expression] = STATE(2611), + [sym_primary_expression] = STATE(1696), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(2694), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1334), + [sym_subscript_expression] = STATE(1334), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4116), + [sym_non_null_expression] = STATE(1334), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(900), - [anon_sym_export] = ACTIONS(902), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(902), - [anon_sym_EQ] = ACTIONS(904), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(907), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(902), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(224), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(911), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(913), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(915), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(902), - [anon_sym_readonly] = ACTIONS(902), - [anon_sym_get] = ACTIONS(902), - [anon_sym_set] = ACTIONS(902), - [anon_sym_declare] = ACTIONS(902), - [anon_sym_public] = ACTIONS(902), - [anon_sym_private] = ACTIONS(902), - [anon_sym_protected] = ACTIONS(902), - [anon_sym_override] = ACTIONS(902), - [anon_sym_module] = ACTIONS(902), - [anon_sym_any] = ACTIONS(902), - [anon_sym_number] = ACTIONS(902), - [anon_sym_boolean] = ACTIONS(902), - [anon_sym_string] = ACTIONS(902), - [anon_sym_symbol] = ACTIONS(902), - [anon_sym_object] = ACTIONS(902), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5344), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(914), + [anon_sym_export] = ACTIONS(916), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(916), + [anon_sym_EQ] = ACTIONS(918), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(916), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DOT] = ACTIONS(674), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(922), + [anon_sym_function] = ACTIONS(680), + [anon_sym_EQ_GT] = ACTIONS(924), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(926), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(688), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(916), + [anon_sym_readonly] = ACTIONS(916), + [anon_sym_get] = ACTIONS(916), + [anon_sym_set] = ACTIONS(916), + [anon_sym_declare] = ACTIONS(916), + [anon_sym_public] = ACTIONS(916), + [anon_sym_private] = ACTIONS(916), + [anon_sym_protected] = ACTIONS(916), + [anon_sym_override] = ACTIONS(916), + [anon_sym_module] = ACTIONS(916), + [anon_sym_any] = ACTIONS(916), + [anon_sym_number] = ACTIONS(916), + [anon_sym_boolean] = ACTIONS(916), + [anon_sym_string] = ACTIONS(916), + [anon_sym_symbol] = ACTIONS(916), + [anon_sym_object] = ACTIONS(916), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [117] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1498), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(900), - [anon_sym_export] = ACTIONS(902), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(902), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(907), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(902), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(919), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(157), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(911), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(913), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(915), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(902), - [anon_sym_readonly] = ACTIONS(902), - [anon_sym_get] = ACTIONS(902), - [anon_sym_set] = ACTIONS(902), - [anon_sym_declare] = ACTIONS(902), - [anon_sym_public] = ACTIONS(902), - [anon_sym_private] = ACTIONS(902), - [anon_sym_protected] = ACTIONS(902), - [anon_sym_override] = ACTIONS(902), - [anon_sym_module] = ACTIONS(902), - [anon_sym_any] = ACTIONS(902), - [anon_sym_number] = ACTIONS(902), - [anon_sym_boolean] = ACTIONS(902), - [anon_sym_string] = ACTIONS(902), - [anon_sym_symbol] = ACTIONS(902), - [anon_sym_object] = ACTIONS(902), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(882), + [anon_sym_export] = ACTIONS(884), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(884), + [anon_sym_EQ] = ACTIONS(910), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(889), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(884), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(891), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_RBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(893), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(895), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(897), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(884), + [anon_sym_readonly] = ACTIONS(884), + [anon_sym_get] = ACTIONS(884), + [anon_sym_set] = ACTIONS(884), + [anon_sym_declare] = ACTIONS(884), + [anon_sym_public] = ACTIONS(884), + [anon_sym_private] = ACTIONS(884), + [anon_sym_protected] = ACTIONS(884), + [anon_sym_override] = ACTIONS(884), + [anon_sym_module] = ACTIONS(884), + [anon_sym_any] = ACTIONS(884), + [anon_sym_number] = ACTIONS(884), + [anon_sym_boolean] = ACTIONS(884), + [anon_sym_string] = ACTIONS(884), + [anon_sym_symbol] = ACTIONS(884), + [anon_sym_object] = ACTIONS(884), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [118] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(2638), - [sym_primary_expression] = STATE(1709), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5590), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2710), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(4102), - [sym_non_null_expression] = STATE(1335), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5156), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(921), - [anon_sym_export] = ACTIONS(923), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(923), - [anon_sym_EQ] = ACTIONS(925), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(927), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(679), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(929), - [anon_sym_function] = ACTIONS(685), - [anon_sym_EQ_GT] = ACTIONS(931), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(933), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(693), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(923), - [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(923), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(674), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(924), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [119] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1498), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(4102), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4321), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5156), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(935), - [anon_sym_export] = ACTIONS(937), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(937), - [anon_sym_EQ] = ACTIONS(939), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(941), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(937), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(943), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(945), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(947), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(937), - [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(937), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_implements] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5458), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(830), + [anon_sym_export] = ACTIONS(832), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(832), + [anon_sym_EQ] = ACTIONS(907), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(836), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_RBRACK] = ACTIONS(126), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(842), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(844), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(846), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(832), + [anon_sym_readonly] = ACTIONS(832), + [anon_sym_get] = ACTIONS(832), + [anon_sym_set] = ACTIONS(832), + [anon_sym_declare] = ACTIONS(832), + [anon_sym_public] = ACTIONS(832), + [anon_sym_private] = ACTIONS(832), + [anon_sym_protected] = ACTIONS(832), + [anon_sym_override] = ACTIONS(832), + [anon_sym_module] = ACTIONS(832), + [anon_sym_any] = ACTIONS(832), + [anon_sym_number] = ACTIONS(832), + [anon_sym_boolean] = ACTIONS(832), + [anon_sym_string] = ACTIONS(832), + [anon_sym_symbol] = ACTIONS(832), + [anon_sym_object] = ACTIONS(832), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [120] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1498), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1334), + [sym_expression] = STATE(2611), + [sym_primary_expression] = STATE(1696), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(2694), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1334), + [sym_subscript_expression] = STATE(1334), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1334), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(679), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(931), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(914), + [anon_sym_export] = ACTIONS(916), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(916), + [anon_sym_EQ] = ACTIONS(918), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(916), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DOT] = ACTIONS(674), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(922), + [anon_sym_function] = ACTIONS(680), + [anon_sym_EQ_GT] = ACTIONS(924), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(926), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(688), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(916), + [anon_sym_readonly] = ACTIONS(916), + [anon_sym_get] = ACTIONS(916), + [anon_sym_set] = ACTIONS(916), + [anon_sym_declare] = ACTIONS(916), + [anon_sym_public] = ACTIONS(916), + [anon_sym_private] = ACTIONS(916), + [anon_sym_protected] = ACTIONS(916), + [anon_sym_override] = ACTIONS(916), + [anon_sym_module] = ACTIONS(916), + [anon_sym_any] = ACTIONS(916), + [anon_sym_number] = ACTIONS(916), + [anon_sym_boolean] = ACTIONS(916), + [anon_sym_string] = ACTIONS(916), + [anon_sym_symbol] = ACTIONS(916), + [anon_sym_object] = ACTIONS(916), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [121] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1498), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(4345), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4116), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5466), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(837), - [anon_sym_export] = ACTIONS(839), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(887), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(224), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(224), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(849), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(853), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(839), - [anon_sym_readonly] = ACTIONS(839), - [anon_sym_get] = ACTIONS(839), - [anon_sym_set] = ACTIONS(839), - [anon_sym_declare] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_override] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_any] = ACTIONS(839), - [anon_sym_number] = ACTIONS(839), - [anon_sym_boolean] = ACTIONS(839), - [anon_sym_string] = ACTIONS(839), - [anon_sym_symbol] = ACTIONS(839), - [anon_sym_object] = ACTIONS(839), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5344), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(928), + [anon_sym_export] = ACTIONS(930), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(930), + [anon_sym_EQ] = ACTIONS(932), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(934), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(930), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(936), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(938), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(940), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(930), + [anon_sym_readonly] = ACTIONS(930), + [anon_sym_get] = ACTIONS(930), + [anon_sym_set] = ACTIONS(930), + [anon_sym_declare] = ACTIONS(930), + [anon_sym_public] = ACTIONS(930), + [anon_sym_private] = ACTIONS(930), + [anon_sym_protected] = ACTIONS(930), + [anon_sym_override] = ACTIONS(930), + [anon_sym_module] = ACTIONS(930), + [anon_sym_any] = ACTIONS(930), + [anon_sym_number] = ACTIONS(930), + [anon_sym_boolean] = ACTIONS(930), + [anon_sym_string] = ACTIONS(930), + [anon_sym_symbol] = ACTIONS(930), + [anon_sym_object] = ACTIONS(930), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_implements] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [122] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1498), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3971), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(900), - [anon_sym_export] = ACTIONS(902), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(902), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(907), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(902), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(909), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(157), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(911), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(913), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(915), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(902), - [anon_sym_readonly] = ACTIONS(902), - [anon_sym_get] = ACTIONS(902), - [anon_sym_set] = ACTIONS(902), - [anon_sym_declare] = ACTIONS(902), - [anon_sym_public] = ACTIONS(902), - [anon_sym_private] = ACTIONS(902), - [anon_sym_protected] = ACTIONS(902), - [anon_sym_override] = ACTIONS(902), - [anon_sym_module] = ACTIONS(902), - [anon_sym_any] = ACTIONS(902), - [anon_sym_number] = ACTIONS(902), - [anon_sym_boolean] = ACTIONS(902), - [anon_sym_string] = ACTIONS(902), - [anon_sym_symbol] = ACTIONS(902), - [anon_sym_object] = ACTIONS(902), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5372), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(830), + [anon_sym_export] = ACTIONS(832), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(832), + [anon_sym_EQ] = ACTIONS(907), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(836), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_RBRACE] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(842), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(844), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(846), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(832), + [anon_sym_readonly] = ACTIONS(832), + [anon_sym_get] = ACTIONS(832), + [anon_sym_set] = ACTIONS(832), + [anon_sym_declare] = ACTIONS(832), + [anon_sym_public] = ACTIONS(832), + [anon_sym_private] = ACTIONS(832), + [anon_sym_protected] = ACTIONS(832), + [anon_sym_override] = ACTIONS(832), + [anon_sym_module] = ACTIONS(832), + [anon_sym_any] = ACTIONS(832), + [anon_sym_number] = ACTIONS(832), + [anon_sym_boolean] = ACTIONS(832), + [anon_sym_string] = ACTIONS(832), + [anon_sym_symbol] = ACTIONS(832), + [anon_sym_object] = ACTIONS(832), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [123] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1498), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(935), - [anon_sym_export] = ACTIONS(937), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(937), - [anon_sym_EQ] = ACTIONS(939), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(941), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(937), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(943), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(945), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(947), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(937), - [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(937), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_implements] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(882), + [anon_sym_export] = ACTIONS(884), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(884), + [anon_sym_EQ] = ACTIONS(886), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(889), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(884), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_RBRACK] = ACTIONS(126), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(893), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(895), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(897), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(884), + [anon_sym_readonly] = ACTIONS(884), + [anon_sym_get] = ACTIONS(884), + [anon_sym_set] = ACTIONS(884), + [anon_sym_declare] = ACTIONS(884), + [anon_sym_public] = ACTIONS(884), + [anon_sym_private] = ACTIONS(884), + [anon_sym_protected] = ACTIONS(884), + [anon_sym_override] = ACTIONS(884), + [anon_sym_module] = ACTIONS(884), + [anon_sym_any] = ACTIONS(884), + [anon_sym_number] = ACTIONS(884), + [anon_sym_boolean] = ACTIONS(884), + [anon_sym_string] = ACTIONS(884), + [anon_sym_symbol] = ACTIONS(884), + [anon_sym_object] = ACTIONS(884), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [124] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1498), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(945), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_implements] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(928), + [anon_sym_export] = ACTIONS(930), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(930), + [anon_sym_EQ] = ACTIONS(932), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(934), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(930), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(936), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(938), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(940), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(930), + [anon_sym_readonly] = ACTIONS(930), + [anon_sym_get] = ACTIONS(930), + [anon_sym_set] = ACTIONS(930), + [anon_sym_declare] = ACTIONS(930), + [anon_sym_public] = ACTIONS(930), + [anon_sym_private] = ACTIONS(930), + [anon_sym_protected] = ACTIONS(930), + [anon_sym_override] = ACTIONS(930), + [anon_sym_module] = ACTIONS(930), + [anon_sym_any] = ACTIONS(930), + [anon_sym_number] = ACTIONS(930), + [anon_sym_boolean] = ACTIONS(930), + [anon_sym_string] = ACTIONS(930), + [anon_sym_symbol] = ACTIONS(930), + [anon_sym_object] = ACTIONS(930), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_implements] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [125] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(2638), - [sym_primary_expression] = STATE(1709), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5590), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2710), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1335), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(921), - [anon_sym_export] = ACTIONS(923), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(923), - [anon_sym_EQ] = ACTIONS(925), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(927), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(679), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(929), - [anon_sym_function] = ACTIONS(685), - [anon_sym_EQ_GT] = ACTIONS(931), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(933), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(693), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(923), - [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(923), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(938), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_implements] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [126] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1498), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(4102), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4116), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5156), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(833), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(155), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5344), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(944), + [anon_sym_export] = ACTIONS(946), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(946), + [anon_sym_EQ] = ACTIONS(948), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(950), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(946), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(952), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(954), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(956), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(946), + [anon_sym_readonly] = ACTIONS(946), + [anon_sym_get] = ACTIONS(946), + [anon_sym_set] = ACTIONS(946), + [anon_sym_declare] = ACTIONS(946), + [anon_sym_public] = ACTIONS(946), + [anon_sym_private] = ACTIONS(946), + [anon_sym_protected] = ACTIONS(946), + [anon_sym_override] = ACTIONS(946), + [anon_sym_module] = ACTIONS(946), + [anon_sym_any] = ACTIONS(946), + [anon_sym_number] = ACTIONS(946), + [anon_sym_boolean] = ACTIONS(946), + [anon_sym_string] = ACTIONS(946), + [anon_sym_symbol] = ACTIONS(946), + [anon_sym_object] = ACTIONS(946), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [127] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1498), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(895), - [anon_sym_of] = ACTIONS(898), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(155), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(902), + [anon_sym_of] = ACTIONS(905), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [128] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1498), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5740), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(4102), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4116), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5156), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(951), - [anon_sym_export] = ACTIONS(953), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(953), - [anon_sym_EQ] = ACTIONS(955), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(953), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(157), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(959), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(961), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(963), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(953), - [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(953), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5344), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(882), + [anon_sym_export] = ACTIONS(884), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(884), + [anon_sym_EQ] = ACTIONS(910), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(889), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(884), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_RBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(893), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(895), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(897), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(884), + [anon_sym_readonly] = ACTIONS(884), + [anon_sym_get] = ACTIONS(884), + [anon_sym_set] = ACTIONS(884), + [anon_sym_declare] = ACTIONS(884), + [anon_sym_public] = ACTIONS(884), + [anon_sym_private] = ACTIONS(884), + [anon_sym_protected] = ACTIONS(884), + [anon_sym_override] = ACTIONS(884), + [anon_sym_module] = ACTIONS(884), + [anon_sym_any] = ACTIONS(884), + [anon_sym_number] = ACTIONS(884), + [anon_sym_boolean] = ACTIONS(884), + [anon_sym_string] = ACTIONS(884), + [anon_sym_symbol] = ACTIONS(884), + [anon_sym_object] = ACTIONS(884), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [129] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1498), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(4102), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4116), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5156), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(900), - [anon_sym_export] = ACTIONS(902), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(902), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(907), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(902), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(157), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(911), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(913), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(915), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(902), - [anon_sym_readonly] = ACTIONS(902), - [anon_sym_get] = ACTIONS(902), - [anon_sym_set] = ACTIONS(902), - [anon_sym_declare] = ACTIONS(902), - [anon_sym_public] = ACTIONS(902), - [anon_sym_private] = ACTIONS(902), - [anon_sym_protected] = ACTIONS(902), - [anon_sym_override] = ACTIONS(902), - [anon_sym_module] = ACTIONS(902), - [anon_sym_any] = ACTIONS(902), - [anon_sym_number] = ACTIONS(902), - [anon_sym_boolean] = ACTIONS(902), - [anon_sym_string] = ACTIONS(902), - [anon_sym_symbol] = ACTIONS(902), - [anon_sym_object] = ACTIONS(902), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5344), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [130] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1498), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5740), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(951), - [anon_sym_export] = ACTIONS(953), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(953), - [anon_sym_EQ] = ACTIONS(955), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(953), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(157), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(959), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(961), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(963), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(953), - [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(953), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(960), + [anon_sym_export] = ACTIONS(962), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(962), + [anon_sym_EQ] = ACTIONS(964), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(966), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(962), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(154), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(968), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(970), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(972), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(962), + [anon_sym_readonly] = ACTIONS(962), + [anon_sym_get] = ACTIONS(962), + [anon_sym_set] = ACTIONS(962), + [anon_sym_declare] = ACTIONS(962), + [anon_sym_public] = ACTIONS(962), + [anon_sym_private] = ACTIONS(962), + [anon_sym_protected] = ACTIONS(962), + [anon_sym_override] = ACTIONS(962), + [anon_sym_module] = ACTIONS(962), + [anon_sym_any] = ACTIONS(962), + [anon_sym_number] = ACTIONS(962), + [anon_sym_boolean] = ACTIONS(962), + [anon_sym_string] = ACTIONS(962), + [anon_sym_symbol] = ACTIONS(962), + [anon_sym_object] = ACTIONS(962), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [131] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1498), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(900), - [anon_sym_export] = ACTIONS(902), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(902), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(907), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(902), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(157), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(911), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(913), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(915), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(902), - [anon_sym_readonly] = ACTIONS(902), - [anon_sym_get] = ACTIONS(902), - [anon_sym_set] = ACTIONS(902), - [anon_sym_declare] = ACTIONS(902), - [anon_sym_public] = ACTIONS(902), - [anon_sym_private] = ACTIONS(902), - [anon_sym_protected] = ACTIONS(902), - [anon_sym_override] = ACTIONS(902), - [anon_sym_module] = ACTIONS(902), - [anon_sym_any] = ACTIONS(902), - [anon_sym_number] = ACTIONS(902), - [anon_sym_boolean] = ACTIONS(902), - [anon_sym_string] = ACTIONS(902), - [anon_sym_symbol] = ACTIONS(902), - [anon_sym_object] = ACTIONS(902), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(882), + [anon_sym_export] = ACTIONS(884), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(884), + [anon_sym_EQ] = ACTIONS(910), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(889), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(884), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_RBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(893), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(895), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(897), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(884), + [anon_sym_readonly] = ACTIONS(884), + [anon_sym_get] = ACTIONS(884), + [anon_sym_set] = ACTIONS(884), + [anon_sym_declare] = ACTIONS(884), + [anon_sym_public] = ACTIONS(884), + [anon_sym_private] = ACTIONS(884), + [anon_sym_protected] = ACTIONS(884), + [anon_sym_override] = ACTIONS(884), + [anon_sym_module] = ACTIONS(884), + [anon_sym_any] = ACTIONS(884), + [anon_sym_number] = ACTIONS(884), + [anon_sym_boolean] = ACTIONS(884), + [anon_sym_string] = ACTIONS(884), + [anon_sym_symbol] = ACTIONS(884), + [anon_sym_object] = ACTIONS(884), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [132] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1498), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(4102), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4116), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5156), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(965), - [anon_sym_export] = ACTIONS(967), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(967), - [anon_sym_EQ] = ACTIONS(969), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(971), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(967), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(973), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(975), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(977), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(967), - [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(967), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5344), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(960), + [anon_sym_export] = ACTIONS(962), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(962), + [anon_sym_EQ] = ACTIONS(964), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(966), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(962), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(154), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(968), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(970), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(972), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(962), + [anon_sym_readonly] = ACTIONS(962), + [anon_sym_get] = ACTIONS(962), + [anon_sym_set] = ACTIONS(962), + [anon_sym_declare] = ACTIONS(962), + [anon_sym_public] = ACTIONS(962), + [anon_sym_private] = ACTIONS(962), + [anon_sym_protected] = ACTIONS(962), + [anon_sym_override] = ACTIONS(962), + [anon_sym_module] = ACTIONS(962), + [anon_sym_any] = ACTIONS(962), + [anon_sym_number] = ACTIONS(962), + [anon_sym_boolean] = ACTIONS(962), + [anon_sym_string] = ACTIONS(962), + [anon_sym_symbol] = ACTIONS(962), + [anon_sym_object] = ACTIONS(962), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [133] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1498), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(157), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(961), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(154), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(970), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [134] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1498), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [anon_sym_RBRACK] = ACTIONS(157), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(913), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_RBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(895), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [135] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1498), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(965), - [anon_sym_export] = ACTIONS(967), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(967), - [anon_sym_EQ] = ACTIONS(969), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(971), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(967), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(973), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(975), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(977), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(967), - [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(967), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(944), + [anon_sym_export] = ACTIONS(946), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(946), + [anon_sym_EQ] = ACTIONS(948), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(950), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(946), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(952), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(954), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(956), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(946), + [anon_sym_readonly] = ACTIONS(946), + [anon_sym_get] = ACTIONS(946), + [anon_sym_set] = ACTIONS(946), + [anon_sym_declare] = ACTIONS(946), + [anon_sym_public] = ACTIONS(946), + [anon_sym_private] = ACTIONS(946), + [anon_sym_protected] = ACTIONS(946), + [anon_sym_override] = ACTIONS(946), + [anon_sym_module] = ACTIONS(946), + [anon_sym_any] = ACTIONS(946), + [anon_sym_number] = ACTIONS(946), + [anon_sym_boolean] = ACTIONS(946), + [anon_sym_string] = ACTIONS(946), + [anon_sym_symbol] = ACTIONS(946), + [anon_sym_object] = ACTIONS(946), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [136] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1498), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(975), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(954), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [137] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1498), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(981), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(155), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(974), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [138] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1498), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(983), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(155), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(976), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [139] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1498), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4116), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(985), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(155), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5344), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [140] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1498), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(987), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(155), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(978), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [141] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1498), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(4102), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5156), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(155), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(980), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [142] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1498), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(989), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(155), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(982), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [143] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1498), + [sym_import] = STATE(3574), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2425), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(4425), + [sym_assignment_pattern] = STATE(5260), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(4425), + [sym_nested_identifier] = STATE(5535), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1396), + [sym_subscript_expression] = STATE(1396), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(4425), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1956), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3948), + [sym_pattern] = STATE(4930), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1396), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(991), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(155), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(3076), + [sym__type_query_call_expression_in_type_annotation] = STATE(3200), + [sym_type] = STATE(3302), + [sym_constructor_type] = STATE(3271), + [sym_primary_type] = STATE(3272), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3271), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3273), + [sym_type_arguments] = STATE(484), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5291), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3271), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3271), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(984), + [anon_sym_export] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(988), + [anon_sym_typeof] = ACTIONS(990), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(541), + [anon_sym_const] = ACTIONS(992), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(994), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(996), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(998), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(1006), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1008), + [sym_number] = ACTIONS(1010), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(1012), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(1014), + [sym_false] = ACTIONS(1014), + [sym_null] = ACTIONS(1014), + [sym_undefined] = ACTIONS(1016), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(1018), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(1022), + [anon_sym_number] = ACTIONS(1022), + [anon_sym_boolean] = ACTIONS(1022), + [anon_sym_string] = ACTIONS(1022), + [anon_sym_symbol] = ACTIONS(1022), + [anon_sym_object] = ACTIONS(1022), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_infer] = ACTIONS(1026), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), [sym_html_comment] = ACTIONS(5), }, [144] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1498), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(993), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(155), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(1036), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [145] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1498), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(155), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [146] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1498), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(995), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(155), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(1038), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [147] = { - [sym_import] = STATE(3624), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(2436), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4445), - [sym_assignment_pattern] = STATE(5143), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4445), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5574), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1379), - [sym_subscript_expression] = STATE(1379), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4445), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1956), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3935), - [sym_pattern] = STATE(4528), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1379), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(3153), - [sym__type_query_member_expression_in_type_annotation] = STATE(3081), - [sym__type_query_call_expression_in_type_annotation] = STATE(3197), - [sym_type] = STATE(3312), - [sym_constructor_type] = STATE(3250), - [sym_primary_type] = STATE(3251), - [sym_template_literal_type] = STATE(3252), - [sym_infer_type] = STATE(3250), - [sym_conditional_type] = STATE(3252), - [sym_generic_type] = STATE(3252), - [sym_type_query] = STATE(3252), - [sym_index_type_query] = STATE(3252), - [sym_lookup_type] = STATE(3252), - [sym_literal_type] = STATE(3252), - [sym__number] = STATE(3253), - [sym_existential_type] = STATE(3252), - [sym_flow_maybe_type] = STATE(3252), - [sym_parenthesized_type] = STATE(3252), - [sym_predefined_type] = STATE(3252), - [sym_type_arguments] = STATE(482), - [sym_object_type] = STATE(3252), - [sym_type_parameters] = STATE(5336), - [sym_array_type] = STATE(3252), - [sym_tuple_type] = STATE(3252), - [sym_readonly_type] = STATE(3250), - [sym_union_type] = STATE(3252), - [sym_intersection_type] = STATE(3252), - [sym_function_type] = STATE(3250), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(997), - [anon_sym_export] = ACTIONS(580), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(1001), - [anon_sym_typeof] = ACTIONS(1003), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(1009), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1011), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(1017), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(1019), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1021), - [sym_number] = ACTIONS(1023), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(1025), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(1027), - [sym_false] = ACTIONS(1027), - [sym_null] = ACTIONS(1027), - [sym_undefined] = ACTIONS(1029), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(1031), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(1035), - [anon_sym_number] = ACTIONS(1035), - [anon_sym_boolean] = ACTIONS(1035), - [anon_sym_string] = ACTIONS(1035), - [anon_sym_symbol] = ACTIONS(1035), - [anon_sym_object] = ACTIONS(1035), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(1040), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [148] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1498), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(1049), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(155), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(1042), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [149] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1498), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1501), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(1051), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(122), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(821), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_EQ_GT] = ACTIONS(155), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(1044), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(814), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [150] = { - [sym_import] = STATE(3702), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(2320), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3593), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2188), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5679), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5796), - [sym_string] = STATE(2140), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(4277), - [sym_non_null_expression] = STATE(1328), + [sym_sequence_expression] = STATE(5640), + [sym_string] = STATE(2338), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4087), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(4974), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(4113), - [sym_template_literal_type] = STATE(2987), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4622), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(4133), + [sym_template_literal_type] = STATE(3039), [sym_infer_type] = STATE(4403), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_type_arguments] = STATE(482), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1053), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_typeof] = ACTIONS(1061), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(1063), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1067), - [anon_sym_using] = ACTIONS(606), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(1069), - [anon_sym_DASH] = ACTIONS(1069), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(618), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(767), - [sym_number] = ACTIONS(769), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(1071), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(775), - [sym_false] = ACTIONS(775), - [sym_null] = ACTIONS(775), - [sym_undefined] = ACTIONS(1073), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1075), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1077), - [anon_sym_number] = ACTIONS(1077), - [anon_sym_boolean] = ACTIONS(1077), - [anon_sym_string] = ACTIONS(1077), - [anon_sym_symbol] = ACTIONS(1077), - [anon_sym_object] = ACTIONS(1077), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(484), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5158), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1046), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(1052), + [anon_sym_typeof] = ACTIONS(1054), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1060), + [anon_sym_using] = ACTIONS(567), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1062), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(579), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(760), + [sym_number] = ACTIONS(762), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(1064), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(768), + [sym_false] = ACTIONS(768), + [sym_null] = ACTIONS(768), + [sym_undefined] = ACTIONS(1066), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1068), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1070), + [anon_sym_number] = ACTIONS(1070), + [anon_sym_boolean] = ACTIONS(1070), + [anon_sym_string] = ACTIONS(1070), + [anon_sym_symbol] = ACTIONS(1070), + [anon_sym_object] = ACTIONS(1070), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [151] = { - [sym_import] = STATE(3622), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2400), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3508), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2490), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5679), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3028), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2352), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(4277), - [sym_non_null_expression] = STATE(1456), + [sym_string] = STATE(2226), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4087), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3897), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_type_arguments] = STATE(617), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1079), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(1095), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1099), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(1103), - [anon_sym_DASH] = ACTIONS(1103), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1105), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(1113), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(1117), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(1119), - [sym_false] = ACTIONS(1119), - [sym_null] = ACTIONS(1119), - [sym_undefined] = ACTIONS(1121), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1123), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1125), - [anon_sym_number] = ACTIONS(1125), - [anon_sym_boolean] = ACTIONS(1125), - [anon_sym_string] = ACTIONS(1125), - [anon_sym_symbol] = ACTIONS(1125), - [anon_sym_object] = ACTIONS(1125), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3788), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(647), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5158), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1072), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1078), + [anon_sym_typeof] = ACTIONS(1080), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(1088), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1092), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(1096), + [anon_sym_DASH] = ACTIONS(1096), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1098), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1104), + [sym_number] = ACTIONS(1106), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(1110), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(1112), + [sym_false] = ACTIONS(1112), + [sym_null] = ACTIONS(1112), + [sym_undefined] = ACTIONS(1114), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1116), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1118), + [anon_sym_number] = ACTIONS(1118), + [anon_sym_boolean] = ACTIONS(1118), + [anon_sym_string] = ACTIONS(1118), + [anon_sym_symbol] = ACTIONS(1118), + [anon_sym_object] = ACTIONS(1118), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [152] = { - [sym_import] = STATE(3616), - [sym_parenthesized_expression] = STATE(1416), - [sym_expression] = STATE(2192), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2170), - [sym_nested_identifier] = STATE(5679), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5590), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1416), - [sym_subscript_expression] = STATE(1416), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3031), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2423), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(4277), - [sym_non_null_expression] = STATE(1416), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3784), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_type_arguments] = STATE(450), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1127), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(1133), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(1137), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_LBRACK] = ACTIONS(1145), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1149), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(1153), - [anon_sym_DASH] = ACTIONS(1153), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1155), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1161), - [sym_number] = ACTIONS(1163), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(1167), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(1169), - [sym_false] = ACTIONS(1169), - [sym_null] = ACTIONS(1169), - [sym_undefined] = ACTIONS(1171), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1173), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1175), - [anon_sym_number] = ACTIONS(1175), - [anon_sym_boolean] = ACTIONS(1175), - [anon_sym_string] = ACTIONS(1175), - [anon_sym_symbol] = ACTIONS(1175), - [anon_sym_object] = ACTIONS(1175), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym_html_comment] = ACTIONS(5), - }, - [153] = { - [sym_import] = STATE(3605), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2551), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3508), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2532), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5679), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2352), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(4277), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(2226), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4087), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3897), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_type_arguments] = STATE(537), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1177), - [anon_sym_export] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_typeof] = ACTIONS(1181), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1095), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1183), - [anon_sym_using] = ACTIONS(161), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(178), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(1113), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(1117), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(1119), - [sym_false] = ACTIONS(1119), - [sym_null] = ACTIONS(1119), - [sym_undefined] = ACTIONS(1187), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(1189), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(1191), - [anon_sym_number] = ACTIONS(1191), - [anon_sym_boolean] = ACTIONS(1191), - [anon_sym_string] = ACTIONS(1191), - [anon_sym_symbol] = ACTIONS(1191), - [anon_sym_object] = ACTIONS(1191), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3788), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(539), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5158), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1120), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(1078), + [anon_sym_typeof] = ACTIONS(1122), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1088), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1124), + [anon_sym_using] = ACTIONS(158), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(1126), + [anon_sym_DASH] = ACTIONS(1126), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1104), + [sym_number] = ACTIONS(1106), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(1110), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(1112), + [sym_false] = ACTIONS(1112), + [sym_null] = ACTIONS(1112), + [sym_undefined] = ACTIONS(1128), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(1130), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(1132), + [anon_sym_number] = ACTIONS(1132), + [anon_sym_boolean] = ACTIONS(1132), + [anon_sym_string] = ACTIONS(1132), + [anon_sym_symbol] = ACTIONS(1132), + [anon_sym_object] = ACTIONS(1132), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, - [154] = { - [sym_import] = STATE(3605), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1512), + [153] = { + [sym_import] = STATE(3593), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1746), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3727), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3727), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5679), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1446), - [sym_subscript_expression] = STATE(1446), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3727), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2546), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(4277), - [sym_non_null_expression] = STATE(1446), + [sym_string] = STATE(1707), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4087), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(4110), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_type_arguments] = STATE(537), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1193), - [anon_sym_export] = ACTIONS(1195), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(1195), - [anon_sym_namespace] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(1199), - [anon_sym_typeof] = ACTIONS(1201), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1195), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1203), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1205), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1207), - [anon_sym_using] = ACTIONS(161), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(1209), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(178), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1211), - [sym_number] = ACTIONS(1213), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(1215), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_null] = ACTIONS(1217), - [sym_undefined] = ACTIONS(1219), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1195), - [anon_sym_readonly] = ACTIONS(1221), - [anon_sym_get] = ACTIONS(1195), - [anon_sym_set] = ACTIONS(1195), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_declare] = ACTIONS(1195), - [anon_sym_public] = ACTIONS(1195), - [anon_sym_private] = ACTIONS(1195), - [anon_sym_protected] = ACTIONS(1195), - [anon_sym_override] = ACTIONS(1195), - [anon_sym_module] = ACTIONS(1195), - [anon_sym_any] = ACTIONS(1223), - [anon_sym_number] = ACTIONS(1223), - [anon_sym_boolean] = ACTIONS(1223), - [anon_sym_string] = ACTIONS(1223), - [anon_sym_symbol] = ACTIONS(1223), - [anon_sym_object] = ACTIONS(1223), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3788), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(484), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5158), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1134), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(1136), + [anon_sym_typeof] = ACTIONS(1138), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(1140), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1060), + [anon_sym_using] = ACTIONS(567), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(1142), + [anon_sym_DASH] = ACTIONS(1142), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(579), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1144), + [sym_number] = ACTIONS(1146), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(1148), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(1150), + [sym_false] = ACTIONS(1150), + [sym_null] = ACTIONS(1150), + [sym_undefined] = ACTIONS(1152), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1068), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1154), + [anon_sym_number] = ACTIONS(1154), + [anon_sym_boolean] = ACTIONS(1154), + [anon_sym_string] = ACTIONS(1154), + [anon_sym_symbol] = ACTIONS(1154), + [anon_sym_object] = ACTIONS(1154), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, - [155] = { - [sym_import] = STATE(3556), - [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1844), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2170), - [sym_nested_identifier] = STATE(5679), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1364), - [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3043), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(1981), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(4277), - [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3784), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_type_arguments] = STATE(511), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1225), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(1231), - [anon_sym_typeof] = ACTIONS(1233), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), - [anon_sym_LBRACK] = ACTIONS(1241), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1245), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(1249), - [anon_sym_DASH] = ACTIONS(1249), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1251), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1257), - [sym_number] = ACTIONS(1259), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(1263), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(1265), - [sym_false] = ACTIONS(1265), - [sym_null] = ACTIONS(1265), - [sym_undefined] = ACTIONS(1267), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1271), - [anon_sym_number] = ACTIONS(1271), - [anon_sym_boolean] = ACTIONS(1271), - [anon_sym_string] = ACTIONS(1271), - [anon_sym_symbol] = ACTIONS(1271), - [anon_sym_object] = ACTIONS(1271), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym_html_comment] = ACTIONS(5), - }, - [156] = { - [sym_import] = STATE(3596), + [154] = { + [sym_import] = STATE(3563), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1892), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(1891), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5679), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1710), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(4277), + [sym_string] = STATE(1707), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4087), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3897), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_type_arguments] = STATE(635), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1273), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(1283), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1287), - [anon_sym_using] = ACTIONS(753), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(1289), - [anon_sym_DASH] = ACTIONS(1289), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(761), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1291), - [sym_number] = ACTIONS(1293), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(1295), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(1297), - [sym_false] = ACTIONS(1297), - [sym_null] = ACTIONS(1297), - [sym_undefined] = ACTIONS(1299), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1301), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1303), - [anon_sym_number] = ACTIONS(1303), - [anon_sym_boolean] = ACTIONS(1303), - [anon_sym_string] = ACTIONS(1303), - [anon_sym_symbol] = ACTIONS(1303), - [anon_sym_object] = ACTIONS(1303), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3788), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(638), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5158), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1156), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(1136), + [anon_sym_typeof] = ACTIONS(1162), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(1140), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1166), + [anon_sym_using] = ACTIONS(746), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(1168), + [anon_sym_DASH] = ACTIONS(1168), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(754), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1144), + [sym_number] = ACTIONS(1146), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(1148), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(1150), + [sym_false] = ACTIONS(1150), + [sym_null] = ACTIONS(1150), + [sym_undefined] = ACTIONS(1170), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1172), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1174), + [anon_sym_number] = ACTIONS(1174), + [anon_sym_boolean] = ACTIONS(1174), + [anon_sym_string] = ACTIONS(1174), + [anon_sym_symbol] = ACTIONS(1174), + [anon_sym_object] = ACTIONS(1174), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, - [157] = { - [sym_import] = STATE(3702), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(2324), - [sym_primary_expression] = STATE(1512), + [155] = { + [sym_import] = STATE(3570), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2393), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4300), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4300), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5679), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4300), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2232), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(4277), - [sym_non_null_expression] = STATE(1354), + [sym_string] = STATE(2226), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4087), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(4110), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_type_arguments] = STATE(482), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1305), - [anon_sym_export] = ACTIONS(1307), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(1307), - [anon_sym_namespace] = ACTIONS(1309), - [anon_sym_LBRACE] = ACTIONS(1311), - [anon_sym_typeof] = ACTIONS(590), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1307), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(598), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1313), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1315), - [anon_sym_using] = ACTIONS(606), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(614), - [anon_sym_DASH] = ACTIONS(614), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(618), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(189), - [sym_number] = ACTIONS(191), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_null] = ACTIONS(199), - [sym_undefined] = ACTIONS(1317), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1307), - [anon_sym_readonly] = ACTIONS(1319), - [anon_sym_get] = ACTIONS(1307), - [anon_sym_set] = ACTIONS(1307), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_declare] = ACTIONS(1307), - [anon_sym_public] = ACTIONS(1307), - [anon_sym_private] = ACTIONS(1307), - [anon_sym_protected] = ACTIONS(1307), - [anon_sym_override] = ACTIONS(1307), - [anon_sym_module] = ACTIONS(1307), - [anon_sym_any] = ACTIONS(1321), - [anon_sym_number] = ACTIONS(1321), - [anon_sym_boolean] = ACTIONS(1321), - [anon_sym_string] = ACTIONS(1321), - [anon_sym_symbol] = ACTIONS(1321), - [anon_sym_object] = ACTIONS(1321), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3788), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(620), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5158), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1176), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(1182), + [anon_sym_typeof] = ACTIONS(1184), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(1088), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1194), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1198), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1200), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1104), + [sym_number] = ACTIONS(1106), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(1110), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(1112), + [sym_false] = ACTIONS(1112), + [sym_null] = ACTIONS(1112), + [sym_undefined] = ACTIONS(1208), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1210), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1212), + [anon_sym_number] = ACTIONS(1212), + [anon_sym_boolean] = ACTIONS(1212), + [anon_sym_string] = ACTIONS(1212), + [anon_sym_symbol] = ACTIONS(1212), + [anon_sym_object] = ACTIONS(1212), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, - [158] = { - [sym_import] = STATE(3702), - [sym_parenthesized_expression] = STATE(1389), - [sym_expression] = STATE(2088), - [sym_primary_expression] = STATE(1512), + [156] = { + [sym_import] = STATE(3593), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2312), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5679), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(4276), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1389), - [sym_subscript_expression] = STATE(1389), + [sym_member_expression] = STATE(1363), + [sym_subscript_expression] = STATE(1363), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(4276), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1710), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(4277), - [sym_non_null_expression] = STATE(1389), + [sym_string] = STATE(2213), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4087), + [sym_non_null_expression] = STATE(1363), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3897), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_type_arguments] = STATE(564), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1323), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1329), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(1283), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1339), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(1343), - [anon_sym_DASH] = ACTIONS(1343), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1345), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1291), - [sym_number] = ACTIONS(1293), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(1295), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(1297), - [sym_false] = ACTIONS(1297), - [sym_null] = ACTIONS(1297), - [sym_undefined] = ACTIONS(1353), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1355), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1357), - [anon_sym_number] = ACTIONS(1357), - [anon_sym_boolean] = ACTIONS(1357), - [anon_sym_string] = ACTIONS(1357), - [anon_sym_symbol] = ACTIONS(1357), - [anon_sym_object] = ACTIONS(1357), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4129), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(484), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5158), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1214), + [anon_sym_export] = ACTIONS(1216), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(1216), + [anon_sym_namespace] = ACTIONS(1218), + [anon_sym_LBRACE] = ACTIONS(1220), + [anon_sym_typeof] = ACTIONS(551), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1216), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1224), + [anon_sym_using] = ACTIONS(567), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(575), + [anon_sym_DASH] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(579), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(188), + [sym_number] = ACTIONS(190), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(587), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(198), + [sym_false] = ACTIONS(198), + [sym_null] = ACTIONS(198), + [sym_undefined] = ACTIONS(1226), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1216), + [anon_sym_readonly] = ACTIONS(1228), + [anon_sym_get] = ACTIONS(1216), + [anon_sym_set] = ACTIONS(1216), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(1216), + [anon_sym_public] = ACTIONS(1216), + [anon_sym_private] = ACTIONS(1216), + [anon_sym_protected] = ACTIONS(1216), + [anon_sym_override] = ACTIONS(1216), + [anon_sym_module] = ACTIONS(1216), + [anon_sym_any] = ACTIONS(1230), + [anon_sym_number] = ACTIONS(1230), + [anon_sym_boolean] = ACTIONS(1230), + [anon_sym_string] = ACTIONS(1230), + [anon_sym_symbol] = ACTIONS(1230), + [anon_sym_object] = ACTIONS(1230), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, - [159] = { - [sym_import] = STATE(3605), - [sym_parenthesized_expression] = STATE(1455), - [sym_expression] = STATE(2373), - [sym_primary_expression] = STATE(1512), + [157] = { + [sym_import] = STATE(3508), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5679), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5740), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1455), - [sym_subscript_expression] = STATE(1455), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3023), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2352), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(4277), - [sym_non_null_expression] = STATE(1455), + [sym_string] = STATE(2226), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4087), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3897), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_type_arguments] = STATE(591), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1359), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(1085), - [anon_sym_typeof] = ACTIONS(1365), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(1095), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1375), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(1379), - [anon_sym_DASH] = ACTIONS(1379), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1381), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(1113), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(1117), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(1119), - [sym_false] = ACTIONS(1119), - [sym_null] = ACTIONS(1119), - [sym_undefined] = ACTIONS(1389), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1393), - [anon_sym_number] = ACTIONS(1393), - [anon_sym_boolean] = ACTIONS(1393), - [anon_sym_string] = ACTIONS(1393), - [anon_sym_symbol] = ACTIONS(1393), - [anon_sym_object] = ACTIONS(1393), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3788), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(594), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5158), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1232), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(1182), + [anon_sym_typeof] = ACTIONS(1238), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(1088), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1248), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1252), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1254), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1104), + [sym_number] = ACTIONS(1106), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(1110), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(1112), + [sym_false] = ACTIONS(1112), + [sym_null] = ACTIONS(1112), + [sym_undefined] = ACTIONS(1262), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1264), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1266), + [anon_sym_number] = ACTIONS(1266), + [anon_sym_boolean] = ACTIONS(1266), + [anon_sym_string] = ACTIONS(1266), + [anon_sym_symbol] = ACTIONS(1266), + [anon_sym_object] = ACTIONS(1266), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, - [160] = { - [sym_import] = STATE(3702), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1747), - [sym_primary_expression] = STATE(1512), + [158] = { + [sym_import] = STATE(3543), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2141), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2476), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4087), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3784), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(452), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5158), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1268), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1274), + [anon_sym_typeof] = ACTIONS(1276), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1290), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(1294), + [anon_sym_DASH] = ACTIONS(1294), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1296), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1302), + [sym_number] = ACTIONS(1304), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(1308), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(1310), + [sym_false] = ACTIONS(1310), + [sym_null] = ACTIONS(1310), + [sym_undefined] = ACTIONS(1312), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1314), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1316), + [anon_sym_number] = ACTIONS(1316), + [anon_sym_boolean] = ACTIONS(1316), + [anon_sym_string] = ACTIONS(1316), + [anon_sym_symbol] = ACTIONS(1316), + [anon_sym_object] = ACTIONS(1316), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [sym_html_comment] = ACTIONS(5), + }, + [159] = { + [sym_import] = STATE(3508), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5679), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3654), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3654), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1446), + [sym_subscript_expression] = STATE(1446), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(3654), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1710), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(4277), - [sym_non_null_expression] = STATE(1328), + [sym_string] = STATE(2567), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4087), + [sym_non_null_expression] = STATE(1446), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3897), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_type_arguments] = STATE(482), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1395), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1397), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(1283), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1067), - [anon_sym_using] = ACTIONS(606), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(1399), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(618), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1291), - [sym_number] = ACTIONS(1293), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(1295), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(1297), - [sym_false] = ACTIONS(1297), - [sym_null] = ACTIONS(1297), - [sym_undefined] = ACTIONS(1401), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1075), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1403), - [anon_sym_number] = ACTIONS(1403), - [anon_sym_boolean] = ACTIONS(1403), - [anon_sym_string] = ACTIONS(1403), - [anon_sym_symbol] = ACTIONS(1403), - [anon_sym_object] = ACTIONS(1403), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4129), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(539), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5158), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1318), + [anon_sym_export] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(1320), + [anon_sym_namespace] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_typeof] = ACTIONS(1326), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1328), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1330), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1332), + [anon_sym_using] = ACTIONS(158), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(1334), + [anon_sym_DASH] = ACTIONS(1334), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(177), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1336), + [sym_number] = ACTIONS(1338), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(1340), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(1342), + [sym_false] = ACTIONS(1342), + [sym_null] = ACTIONS(1342), + [sym_undefined] = ACTIONS(1344), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_readonly] = ACTIONS(1346), + [anon_sym_get] = ACTIONS(1320), + [anon_sym_set] = ACTIONS(1320), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(1320), + [anon_sym_public] = ACTIONS(1320), + [anon_sym_private] = ACTIONS(1320), + [anon_sym_protected] = ACTIONS(1320), + [anon_sym_override] = ACTIONS(1320), + [anon_sym_module] = ACTIONS(1320), + [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), + [anon_sym_object] = ACTIONS(1348), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [sym_html_comment] = ACTIONS(5), + }, + [160] = { + [sym_import] = STATE(3695), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1791), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(1980), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4087), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3784), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(428), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5158), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1350), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(1356), + [anon_sym_typeof] = ACTIONS(1358), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(1360), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1364), + [anon_sym_using] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(1368), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1370), + [sym_number] = ACTIONS(1372), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(1374), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(1376), + [sym_false] = ACTIONS(1376), + [sym_null] = ACTIONS(1376), + [sym_undefined] = ACTIONS(1378), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_readonly] = ACTIONS(1380), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1382), + [anon_sym_number] = ACTIONS(1382), + [anon_sym_boolean] = ACTIONS(1382), + [anon_sym_string] = ACTIONS(1382), + [anon_sym_symbol] = ACTIONS(1382), + [anon_sym_object] = ACTIONS(1382), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [161] = { - [sym_import] = STATE(3605), - [sym_parenthesized_expression] = STATE(1458), - [sym_expression] = STATE(2497), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3695), + [sym_parenthesized_expression] = STATE(1364), + [sym_expression] = STATE(1842), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1364), + [sym_subscript_expression] = STATE(1364), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(1980), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4087), + [sym_non_null_expression] = STATE(1364), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3784), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(513), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5158), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1384), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(1356), + [anon_sym_typeof] = ACTIONS(1390), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), + [anon_sym_LBRACK] = ACTIONS(1360), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1400), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(1404), + [anon_sym_DASH] = ACTIONS(1404), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1406), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1370), + [sym_number] = ACTIONS(1372), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(1374), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(1376), + [sym_false] = ACTIONS(1376), + [sym_null] = ACTIONS(1376), + [sym_undefined] = ACTIONS(1414), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1416), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1418), + [anon_sym_number] = ACTIONS(1418), + [anon_sym_boolean] = ACTIONS(1418), + [anon_sym_string] = ACTIONS(1418), + [anon_sym_symbol] = ACTIONS(1418), + [anon_sym_object] = ACTIONS(1418), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [sym_html_comment] = ACTIONS(5), + }, + [162] = { + [sym_import] = STATE(3593), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2086), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5679), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_nested_identifier] = STATE(5474), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1458), - [sym_subscript_expression] = STATE(1458), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3030), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2352), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(4277), - [sym_non_null_expression] = STATE(1458), + [sym_string] = STATE(1707), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(4087), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3897), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_type_arguments] = STATE(644), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1405), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_typeof] = ACTIONS(1411), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(1095), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1421), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(1425), - [anon_sym_DASH] = ACTIONS(1425), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1427), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(1113), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(1117), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(1119), - [sym_false] = ACTIONS(1119), - [sym_null] = ACTIONS(1119), - [sym_undefined] = ACTIONS(1435), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1437), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [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_object] = ACTIONS(1439), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym_html_comment] = ACTIONS(5), - }, - [162] = { - [sym_import] = STATE(3556), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1796), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_nested_identifier] = STATE(5679), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(1981), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(4277), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3784), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_type_arguments] = STATE(427), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1441), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(1231), - [anon_sym_typeof] = ACTIONS(1447), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1139), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(1241), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1451), - [anon_sym_using] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(1455), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1257), - [sym_number] = ACTIONS(1259), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(1263), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(1265), - [sym_false] = ACTIONS(1265), - [sym_null] = ACTIONS(1265), - [sym_undefined] = ACTIONS(1457), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = ACTIONS(1459), - [anon_sym_get] = ACTIONS(1443), - [anon_sym_set] = ACTIONS(1443), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_declare] = ACTIONS(1443), - [anon_sym_public] = ACTIONS(1443), - [anon_sym_private] = ACTIONS(1443), - [anon_sym_protected] = ACTIONS(1443), - [anon_sym_override] = ACTIONS(1443), - [anon_sym_module] = ACTIONS(1443), - [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_object] = ACTIONS(1461), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3788), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_type_arguments] = STATE(566), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5158), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1420), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(1136), + [anon_sym_typeof] = ACTIONS(1426), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(1140), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1436), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1442), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1144), + [sym_number] = ACTIONS(1146), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(1148), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(1150), + [sym_false] = ACTIONS(1150), + [sym_null] = ACTIONS(1150), + [sym_undefined] = ACTIONS(1450), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1452), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1454), + [anon_sym_number] = ACTIONS(1454), + [anon_sym_boolean] = ACTIONS(1454), + [anon_sym_string] = ACTIONS(1454), + [anon_sym_symbol] = ACTIONS(1454), + [anon_sym_object] = ACTIONS(1454), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [163] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1780), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1778), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1328), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_STAR] = ACTIONS(1465), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_as] = ACTIONS(1467), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1469), - [anon_sym_RBRACE] = ACTIONS(1469), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(620), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_SEMI] = ACTIONS(1469), - [anon_sym_await] = ACTIONS(594), - [anon_sym_in] = ACTIONS(1467), - [anon_sym_COLON] = ACTIONS(1469), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(1469), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(1467), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(1469), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_AMP_AMP] = ACTIONS(1469), - [anon_sym_PIPE_PIPE] = ACTIONS(1469), - [anon_sym_GT_GT] = ACTIONS(1467), - [anon_sym_GT_GT_GT] = ACTIONS(1469), - [anon_sym_LT_LT] = ACTIONS(1469), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_CARET] = ACTIONS(1469), - [anon_sym_PIPE] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(1469), - [anon_sym_STAR_STAR] = ACTIONS(1469), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(1469), - [anon_sym_EQ_EQ] = ACTIONS(1467), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1469), - [anon_sym_BANG_EQ] = ACTIONS(1467), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1469), - [anon_sym_GT_EQ] = ACTIONS(1469), - [anon_sym_GT] = ACTIONS(1467), - [anon_sym_QMARK_QMARK] = ACTIONS(1469), - [anon_sym_instanceof] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), - [anon_sym_satisfies] = ACTIONS(1467), - [sym__ternary_qmark] = ACTIONS(1469), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_STAR] = ACTIONS(1458), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_as] = ACTIONS(1460), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(1462), + [anon_sym_RBRACE] = ACTIONS(1462), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(581), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym_await] = ACTIONS(555), + [anon_sym_in] = ACTIONS(1460), + [anon_sym_COLON] = ACTIONS(1462), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_RBRACK] = ACTIONS(1462), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_QMARK_DOT] = ACTIONS(1462), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_AMP_AMP] = ACTIONS(1462), + [anon_sym_PIPE_PIPE] = ACTIONS(1462), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_GT_GT_GT] = ACTIONS(1462), + [anon_sym_LT_LT] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1460), + [anon_sym_CARET] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(1462), + [anon_sym_STAR_STAR] = ACTIONS(1462), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(1462), + [anon_sym_EQ_EQ] = ACTIONS(1460), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1462), + [anon_sym_BANG_EQ] = ACTIONS(1460), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1462), + [anon_sym_GT_EQ] = ACTIONS(1462), + [anon_sym_GT] = ACTIONS(1460), + [anon_sym_QMARK_QMARK] = ACTIONS(1462), + [anon_sym_instanceof] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), + [anon_sym_satisfies] = ACTIONS(1460), + [sym__ternary_qmark] = ACTIONS(1462), [sym_html_comment] = ACTIONS(5), }, [164] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1784), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_as] = ACTIONS(1467), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(1469), - [anon_sym_RBRACE] = ACTIONS(1469), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1823), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_STAR] = ACTIONS(1470), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_as] = ACTIONS(1460), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_COMMA] = ACTIONS(1462), + [anon_sym_RBRACE] = ACTIONS(1462), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_SEMI] = ACTIONS(1462), [anon_sym_await] = ACTIONS(45), - [anon_sym_in] = ACTIONS(1467), + [anon_sym_in] = ACTIONS(1460), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1467), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(1469), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(1469), - [anon_sym_PIPE_PIPE] = ACTIONS(1469), - [anon_sym_GT_GT] = ACTIONS(1467), - [anon_sym_GT_GT_GT] = ACTIONS(1469), - [anon_sym_LT_LT] = ACTIONS(1469), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_CARET] = ACTIONS(1469), - [anon_sym_PIPE] = ACTIONS(1467), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_QMARK_DOT] = ACTIONS(1462), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), + [anon_sym_AMP_AMP] = ACTIONS(1462), + [anon_sym_PIPE_PIPE] = ACTIONS(1462), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_GT_GT_GT] = ACTIONS(1462), + [anon_sym_LT_LT] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1460), + [anon_sym_CARET] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1460), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(1469), - [anon_sym_STAR_STAR] = ACTIONS(1469), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(1469), - [anon_sym_EQ_EQ] = ACTIONS(1467), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1469), - [anon_sym_BANG_EQ] = ACTIONS(1467), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1469), - [anon_sym_GT_EQ] = ACTIONS(1469), - [anon_sym_GT] = ACTIONS(1467), - [anon_sym_QMARK_QMARK] = ACTIONS(1469), - [anon_sym_instanceof] = ACTIONS(1467), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_PERCENT] = ACTIONS(1462), + [anon_sym_STAR_STAR] = ACTIONS(1462), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(1462), + [anon_sym_EQ_EQ] = ACTIONS(1460), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1462), + [anon_sym_BANG_EQ] = ACTIONS(1460), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1462), + [anon_sym_GT_EQ] = ACTIONS(1462), + [anon_sym_GT] = ACTIONS(1460), + [anon_sym_QMARK_QMARK] = ACTIONS(1462), + [anon_sym_instanceof] = ACTIONS(1460), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1443), - [anon_sym_satisfies] = ACTIONS(1467), - [sym__automatic_semicolon] = ACTIONS(1469), - [sym__ternary_qmark] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), + [anon_sym_satisfies] = ACTIONS(1460), + [sym__automatic_semicolon] = ACTIONS(1462), + [sym__ternary_qmark] = ACTIONS(1462), [sym_html_comment] = ACTIONS(5), }, [165] = { - [sym_import] = STATE(3514), + [sym_import] = STATE(3636), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1877), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), + [sym_expression] = STATE(1875), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3043), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(1483), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_as] = ACTIONS(1467), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(1469), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1253), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1476), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_as] = ACTIONS(1460), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_COMMA] = ACTIONS(1462), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1408), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(1469), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_in] = ACTIONS(1467), - [anon_sym_of] = ACTIONS(1467), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_in] = ACTIONS(1460), + [anon_sym_of] = ACTIONS(1460), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1467), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(1469), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_AMP_AMP] = ACTIONS(1469), - [anon_sym_PIPE_PIPE] = ACTIONS(1469), - [anon_sym_GT_GT] = ACTIONS(1467), - [anon_sym_GT_GT_GT] = ACTIONS(1469), - [anon_sym_LT_LT] = ACTIONS(1469), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_CARET] = ACTIONS(1469), - [anon_sym_PIPE] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_PERCENT] = ACTIONS(1469), - [anon_sym_STAR_STAR] = ACTIONS(1469), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(1469), - [anon_sym_EQ_EQ] = ACTIONS(1467), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1469), - [anon_sym_BANG_EQ] = ACTIONS(1467), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1469), - [anon_sym_GT_EQ] = ACTIONS(1469), - [anon_sym_GT] = ACTIONS(1467), - [anon_sym_QMARK_QMARK] = ACTIONS(1469), - [anon_sym_instanceof] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), - [anon_sym_satisfies] = ACTIONS(1467), - [sym__automatic_semicolon] = ACTIONS(1469), - [sym__ternary_qmark] = ACTIONS(1469), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_QMARK_DOT] = ACTIONS(1462), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_AMP_AMP] = ACTIONS(1462), + [anon_sym_PIPE_PIPE] = ACTIONS(1462), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_GT_GT_GT] = ACTIONS(1462), + [anon_sym_LT_LT] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1460), + [anon_sym_CARET] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_PERCENT] = ACTIONS(1462), + [anon_sym_STAR_STAR] = ACTIONS(1462), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(1462), + [anon_sym_EQ_EQ] = ACTIONS(1460), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1462), + [anon_sym_BANG_EQ] = ACTIONS(1460), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1462), + [anon_sym_GT_EQ] = ACTIONS(1462), + [anon_sym_GT] = ACTIONS(1460), + [anon_sym_QMARK_QMARK] = ACTIONS(1462), + [anon_sym_instanceof] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), + [anon_sym_satisfies] = ACTIONS(1460), + [sym__automatic_semicolon] = ACTIONS(1462), + [sym__ternary_qmark] = ACTIONS(1462), [sym_html_comment] = ACTIONS(5), }, [166] = { - [sym_import] = STATE(3541), + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1894), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(1924), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_STAR] = ACTIONS(1491), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_as] = ACTIONS(1467), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1469), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(763), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(1469), - [anon_sym_await] = ACTIONS(743), - [anon_sym_in] = ACTIONS(1467), - [anon_sym_COLON] = ACTIONS(1469), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(1467), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(1469), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_AMP_AMP] = ACTIONS(1469), - [anon_sym_PIPE_PIPE] = ACTIONS(1469), - [anon_sym_GT_GT] = ACTIONS(1467), - [anon_sym_GT_GT_GT] = ACTIONS(1469), - [anon_sym_LT_LT] = ACTIONS(1469), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_CARET] = ACTIONS(1469), - [anon_sym_PIPE] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(1469), - [anon_sym_STAR_STAR] = ACTIONS(1469), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(1469), - [anon_sym_EQ_EQ] = ACTIONS(1467), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1469), - [anon_sym_BANG_EQ] = ACTIONS(1467), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1469), - [anon_sym_GT_EQ] = ACTIONS(1469), - [anon_sym_GT] = ACTIONS(1467), - [anon_sym_QMARK_QMARK] = ACTIONS(1469), - [anon_sym_instanceof] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), - [anon_sym_satisfies] = ACTIONS(1467), - [sym__ternary_qmark] = ACTIONS(1469), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_STAR] = ACTIONS(1484), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_as] = ACTIONS(1460), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(1462), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(756), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(1462), + [anon_sym_await] = ACTIONS(736), + [anon_sym_in] = ACTIONS(1460), + [anon_sym_COLON] = ACTIONS(1462), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_QMARK_DOT] = ACTIONS(1462), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_AMP_AMP] = ACTIONS(1462), + [anon_sym_PIPE_PIPE] = ACTIONS(1462), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_GT_GT_GT] = ACTIONS(1462), + [anon_sym_LT_LT] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1460), + [anon_sym_CARET] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(1462), + [anon_sym_STAR_STAR] = ACTIONS(1462), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(1462), + [anon_sym_EQ_EQ] = ACTIONS(1460), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1462), + [anon_sym_BANG_EQ] = ACTIONS(1460), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1462), + [anon_sym_GT_EQ] = ACTIONS(1462), + [anon_sym_GT] = ACTIONS(1460), + [anon_sym_QMARK_QMARK] = ACTIONS(1462), + [anon_sym_instanceof] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), + [anon_sym_satisfies] = ACTIONS(1460), + [sym__ternary_qmark] = ACTIONS(1462), [sym_html_comment] = ACTIONS(5), }, [167] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1416), - [sym_expression] = STATE(2261), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5590), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1416), - [sym_subscript_expression] = STATE(1416), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3031), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1416), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_STAR] = ACTIONS(1499), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_as] = ACTIONS(1467), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1157), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(1469), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_in] = ACTIONS(1467), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1467), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_QMARK_DOT] = ACTIONS(1469), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_AMP_AMP] = ACTIONS(1469), - [anon_sym_PIPE_PIPE] = ACTIONS(1469), - [anon_sym_GT_GT] = ACTIONS(1467), - [anon_sym_GT_GT_GT] = ACTIONS(1469), - [anon_sym_LT_LT] = ACTIONS(1469), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_CARET] = ACTIONS(1469), - [anon_sym_PIPE] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(1469), - [anon_sym_STAR_STAR] = ACTIONS(1469), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(1469), - [anon_sym_EQ_EQ] = ACTIONS(1467), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1469), - [anon_sym_BANG_EQ] = ACTIONS(1467), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1469), - [anon_sym_GT_EQ] = ACTIONS(1469), - [anon_sym_GT] = ACTIONS(1467), - [anon_sym_QMARK_QMARK] = ACTIONS(1469), - [anon_sym_instanceof] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), - [anon_sym_satisfies] = ACTIONS(1467), - [sym__automatic_semicolon] = ACTIONS(1469), - [sym__ternary_qmark] = ACTIONS(1469), - [sym_html_comment] = ACTIONS(5), - }, - [168] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1389), - [sym_expression] = STATE(2110), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2108), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1389), - [sym_subscript_expression] = STATE(1389), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1389), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(1507), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_as] = ACTIONS(1467), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1469), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1347), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_in] = ACTIONS(1467), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(1467), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(1469), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_AMP_AMP] = ACTIONS(1469), - [anon_sym_PIPE_PIPE] = ACTIONS(1469), - [anon_sym_GT_GT] = ACTIONS(1467), - [anon_sym_GT_GT_GT] = ACTIONS(1469), - [anon_sym_LT_LT] = ACTIONS(1469), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_CARET] = ACTIONS(1469), - [anon_sym_PIPE] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_PERCENT] = ACTIONS(1469), - [anon_sym_STAR_STAR] = ACTIONS(1469), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(1469), - [anon_sym_EQ_EQ] = ACTIONS(1467), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1469), - [anon_sym_BANG_EQ] = ACTIONS(1467), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1469), - [anon_sym_GT_EQ] = ACTIONS(1469), - [anon_sym_GT] = ACTIONS(1467), - [anon_sym_QMARK_QMARK] = ACTIONS(1469), - [anon_sym_instanceof] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), - [anon_sym_satisfies] = ACTIONS(1467), - [anon_sym_implements] = ACTIONS(1467), - [sym__ternary_qmark] = ACTIONS(1469), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_STAR] = ACTIONS(1492), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_as] = ACTIONS(1460), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(1462), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_in] = ACTIONS(1460), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_QMARK_DOT] = ACTIONS(1462), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_AMP_AMP] = ACTIONS(1462), + [anon_sym_PIPE_PIPE] = ACTIONS(1462), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_GT_GT_GT] = ACTIONS(1462), + [anon_sym_LT_LT] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1460), + [anon_sym_CARET] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_PERCENT] = ACTIONS(1462), + [anon_sym_STAR_STAR] = ACTIONS(1462), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(1462), + [anon_sym_EQ_EQ] = ACTIONS(1460), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1462), + [anon_sym_BANG_EQ] = ACTIONS(1460), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1462), + [anon_sym_GT_EQ] = ACTIONS(1462), + [anon_sym_GT] = ACTIONS(1460), + [anon_sym_QMARK_QMARK] = ACTIONS(1462), + [anon_sym_instanceof] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), + [anon_sym_satisfies] = ACTIONS(1460), + [anon_sym_implements] = ACTIONS(1460), + [sym__ternary_qmark] = ACTIONS(1462), + [sym_html_comment] = ACTIONS(5), + }, + [168] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2241), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_STAR] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_as] = ACTIONS(1460), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_in] = ACTIONS(1460), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_QMARK_DOT] = ACTIONS(1462), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_AMP_AMP] = ACTIONS(1462), + [anon_sym_PIPE_PIPE] = ACTIONS(1462), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_GT_GT_GT] = ACTIONS(1462), + [anon_sym_LT_LT] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1460), + [anon_sym_CARET] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_PERCENT] = ACTIONS(1462), + [anon_sym_STAR_STAR] = ACTIONS(1462), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(1462), + [anon_sym_EQ_EQ] = ACTIONS(1460), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1462), + [anon_sym_BANG_EQ] = ACTIONS(1460), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1462), + [anon_sym_GT_EQ] = ACTIONS(1462), + [anon_sym_GT] = ACTIONS(1460), + [anon_sym_QMARK_QMARK] = ACTIONS(1462), + [anon_sym_instanceof] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), + [anon_sym_satisfies] = ACTIONS(1460), + [sym__automatic_semicolon] = ACTIONS(1462), + [sym__ternary_qmark] = ACTIONS(1462), [sym_html_comment] = ACTIONS(5), }, [169] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1458), - [sym_expression] = STATE(2521), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2406), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1458), - [sym_subscript_expression] = STATE(1458), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3030), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1458), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_STAR] = ACTIONS(1515), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_as] = ACTIONS(1467), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1429), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_in] = ACTIONS(1467), - [anon_sym_of] = ACTIONS(1467), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(1467), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(1469), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_AMP_AMP] = ACTIONS(1469), - [anon_sym_PIPE_PIPE] = ACTIONS(1469), - [anon_sym_GT_GT] = ACTIONS(1467), - [anon_sym_GT_GT_GT] = ACTIONS(1469), - [anon_sym_LT_LT] = ACTIONS(1469), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_CARET] = ACTIONS(1469), - [anon_sym_PIPE] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_PERCENT] = ACTIONS(1469), - [anon_sym_STAR_STAR] = ACTIONS(1469), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(1469), - [anon_sym_EQ_EQ] = ACTIONS(1467), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1469), - [anon_sym_BANG_EQ] = ACTIONS(1467), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1469), - [anon_sym_GT_EQ] = ACTIONS(1469), - [anon_sym_GT] = ACTIONS(1467), - [anon_sym_QMARK_QMARK] = ACTIONS(1469), - [anon_sym_instanceof] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), - [anon_sym_satisfies] = ACTIONS(1467), - [sym__ternary_qmark] = ACTIONS(1469), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_STAR] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_as] = ACTIONS(1460), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1256), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_in] = ACTIONS(1460), + [anon_sym_COLON] = ACTIONS(1462), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_QMARK_DOT] = ACTIONS(1462), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_AMP_AMP] = ACTIONS(1462), + [anon_sym_PIPE_PIPE] = ACTIONS(1462), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_GT_GT_GT] = ACTIONS(1462), + [anon_sym_LT_LT] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1460), + [anon_sym_CARET] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(1462), + [anon_sym_STAR_STAR] = ACTIONS(1462), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(1462), + [anon_sym_EQ_EQ] = ACTIONS(1460), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1462), + [anon_sym_BANG_EQ] = ACTIONS(1460), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1462), + [anon_sym_GT_EQ] = ACTIONS(1462), + [anon_sym_GT] = ACTIONS(1460), + [anon_sym_QMARK_QMARK] = ACTIONS(1462), + [anon_sym_instanceof] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), + [anon_sym_satisfies] = ACTIONS(1460), + [sym__ternary_qmark] = ACTIONS(1462), [sym_html_comment] = ACTIONS(5), }, [170] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1455), - [sym_expression] = STATE(2454), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2516), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), + [sym_object] = STATE(1687), [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), + [sym_array] = STATE(1687), [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5740), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1455), - [sym_subscript_expression] = STATE(1455), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3023), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1455), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_as] = ACTIONS(1467), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1383), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_in] = ACTIONS(1467), - [anon_sym_COLON] = ACTIONS(1469), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(1467), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(1469), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_AMP_AMP] = ACTIONS(1469), - [anon_sym_PIPE_PIPE] = ACTIONS(1469), - [anon_sym_GT_GT] = ACTIONS(1467), - [anon_sym_GT_GT_GT] = ACTIONS(1469), - [anon_sym_LT_LT] = ACTIONS(1469), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_CARET] = ACTIONS(1469), - [anon_sym_PIPE] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(1469), - [anon_sym_STAR_STAR] = ACTIONS(1469), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(1469), - [anon_sym_EQ_EQ] = ACTIONS(1467), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1469), - [anon_sym_BANG_EQ] = ACTIONS(1467), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1469), - [anon_sym_GT_EQ] = ACTIONS(1469), - [anon_sym_GT] = ACTIONS(1467), - [anon_sym_QMARK_QMARK] = ACTIONS(1469), - [anon_sym_instanceof] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), - [anon_sym_satisfies] = ACTIONS(1467), - [sym__ternary_qmark] = ACTIONS(1469), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_STAR] = ACTIONS(1516), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_as] = ACTIONS(1460), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1100), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_in] = ACTIONS(1460), + [anon_sym_of] = ACTIONS(1460), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_QMARK_DOT] = ACTIONS(1462), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_AMP_AMP] = ACTIONS(1462), + [anon_sym_PIPE_PIPE] = ACTIONS(1462), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_GT_GT_GT] = ACTIONS(1462), + [anon_sym_LT_LT] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1460), + [anon_sym_CARET] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_PERCENT] = ACTIONS(1462), + [anon_sym_STAR_STAR] = ACTIONS(1462), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(1462), + [anon_sym_EQ_EQ] = ACTIONS(1460), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1462), + [anon_sym_BANG_EQ] = ACTIONS(1460), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1462), + [anon_sym_GT_EQ] = ACTIONS(1462), + [anon_sym_GT] = ACTIONS(1460), + [anon_sym_QMARK_QMARK] = ACTIONS(1462), + [anon_sym_instanceof] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), + [anon_sym_satisfies] = ACTIONS(1460), + [sym__ternary_qmark] = ACTIONS(1462), [sym_html_comment] = ACTIONS(5), }, [171] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2464), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2416), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3028), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1456), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_STAR] = ACTIONS(1531), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_as] = ACTIONS(1467), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_in] = ACTIONS(1467), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(1469), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(1467), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(1469), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_AMP_AMP] = ACTIONS(1469), - [anon_sym_PIPE_PIPE] = ACTIONS(1469), - [anon_sym_GT_GT] = ACTIONS(1467), - [anon_sym_GT_GT_GT] = ACTIONS(1469), - [anon_sym_LT_LT] = ACTIONS(1469), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_CARET] = ACTIONS(1469), - [anon_sym_PIPE] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(1469), - [anon_sym_STAR_STAR] = ACTIONS(1469), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(1469), - [anon_sym_EQ_EQ] = ACTIONS(1467), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1469), - [anon_sym_BANG_EQ] = ACTIONS(1467), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1469), - [anon_sym_GT_EQ] = ACTIONS(1469), - [anon_sym_GT] = ACTIONS(1467), - [anon_sym_QMARK_QMARK] = ACTIONS(1469), - [anon_sym_instanceof] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), - [anon_sym_satisfies] = ACTIONS(1467), - [sym__ternary_qmark] = ACTIONS(1469), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_as] = ACTIONS(1460), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_in] = ACTIONS(1460), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_RBRACK] = ACTIONS(1462), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_QMARK_DOT] = ACTIONS(1462), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_AMP_AMP] = ACTIONS(1462), + [anon_sym_PIPE_PIPE] = ACTIONS(1462), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_GT_GT_GT] = ACTIONS(1462), + [anon_sym_LT_LT] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1460), + [anon_sym_CARET] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(1462), + [anon_sym_STAR_STAR] = ACTIONS(1462), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(1462), + [anon_sym_EQ_EQ] = ACTIONS(1460), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1462), + [anon_sym_BANG_EQ] = ACTIONS(1460), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1462), + [anon_sym_GT_EQ] = ACTIONS(1462), + [anon_sym_GT] = ACTIONS(1460), + [anon_sym_QMARK_QMARK] = ACTIONS(1462), + [anon_sym_instanceof] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), + [anon_sym_satisfies] = ACTIONS(1460), + [sym__ternary_qmark] = ACTIONS(1462), [sym_html_comment] = ACTIONS(5), }, [172] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2549), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2579), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_type] = ACTIONS(811), - [anon_sym_as] = ACTIONS(1467), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_in] = ACTIONS(1467), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DOT] = ACTIONS(1467), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(1469), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_AMP_AMP] = ACTIONS(1469), - [anon_sym_PIPE_PIPE] = ACTIONS(1469), - [anon_sym_GT_GT] = ACTIONS(1467), - [anon_sym_GT_GT_GT] = ACTIONS(1469), - [anon_sym_LT_LT] = ACTIONS(1469), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_CARET] = ACTIONS(1469), - [anon_sym_PIPE] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(1469), - [anon_sym_STAR_STAR] = ACTIONS(1469), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_LT_EQ] = ACTIONS(1469), - [anon_sym_EQ_EQ] = ACTIONS(1467), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1469), - [anon_sym_BANG_EQ] = ACTIONS(1467), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1469), - [anon_sym_GT_EQ] = ACTIONS(1469), - [anon_sym_GT] = ACTIONS(1467), - [anon_sym_QMARK_QMARK] = ACTIONS(1469), - [anon_sym_instanceof] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), - [anon_sym_satisfies] = ACTIONS(1467), - [sym__ternary_qmark] = ACTIONS(1469), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(1530), + [anon_sym_type] = ACTIONS(804), + [anon_sym_as] = ACTIONS(1460), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_in] = ACTIONS(1460), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_QMARK_DOT] = ACTIONS(1462), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_AMP_AMP] = ACTIONS(1462), + [anon_sym_PIPE_PIPE] = ACTIONS(1462), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_GT_GT_GT] = ACTIONS(1462), + [anon_sym_LT_LT] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1460), + [anon_sym_CARET] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(1462), + [anon_sym_STAR_STAR] = ACTIONS(1462), + [anon_sym_LT] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(1462), + [anon_sym_EQ_EQ] = ACTIONS(1460), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1462), + [anon_sym_BANG_EQ] = ACTIONS(1460), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1462), + [anon_sym_GT_EQ] = ACTIONS(1462), + [anon_sym_GT] = ACTIONS(1460), + [anon_sym_QMARK_QMARK] = ACTIONS(1462), + [anon_sym_instanceof] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), + [anon_sym_satisfies] = ACTIONS(1460), + [sym__ternary_qmark] = ACTIONS(1462), [sym_html_comment] = ACTIONS(5), }, [173] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3154), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(841), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_RBRACE] = ACTIONS(157), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_RBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1553), - [anon_sym_DASH] = ACTIONS(1553), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1555), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(205), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__ternary_qmark] = ACTIONS(157), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3153), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(834), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(154), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(154), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_EQ_GT] = ACTIONS(844), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1546), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1548), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(204), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [174] = { - [sym_declaration] = STATE(3968), - [sym_import] = STATE(3514), - [sym_variable_declaration] = STATE(3912), - [sym_lexical_declaration] = STATE(3912), - [sym_parenthesized_expression] = STATE(1416), - [sym_expression] = STATE(2393), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(3912), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(3912), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(3912), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5590), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1416), - [sym_subscript_expression] = STATE(1416), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3031), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1416), - [sym_function_signature] = STATE(3912), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(3912), - [sym_abstract_class_declaration] = STATE(3912), - [sym_module] = STATE(3912), - [sym_internal_module] = STATE(2420), - [sym_import_alias] = STATE(3912), - [sym_interface_declaration] = STATE(3912), - [sym_enum_declaration] = STATE(3912), - [sym_type_alias_declaration] = STATE(3912), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4228), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1571), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(1573), - [anon_sym_var] = ACTIONS(1575), - [anon_sym_let] = ACTIONS(1577), - [anon_sym_const] = ACTIONS(1579), - [anon_sym_BANG] = ACTIONS(1137), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(1581), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1587), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1589), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), - [anon_sym_abstract] = ACTIONS(1591), - [anon_sym_interface] = ACTIONS(1593), - [anon_sym_enum] = ACTIONS(1595), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3153), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_EQ_GT] = ACTIONS(872), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1546), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1548), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(204), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [175] = { - [sym_declaration] = STATE(929), - [sym_import] = STATE(3514), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_parenthesized_expression] = STATE(1416), - [sym_expression] = STATE(2433), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5590), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1416), - [sym_subscript_expression] = STATE(1416), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3031), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1416), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4161), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1597), - [anon_sym_namespace] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(1601), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1137), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(1605), - [anon_sym_function] = ACTIONS(73), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1607), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1609), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3153), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(858), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(154), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1546), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1548), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(204), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [176] = { - [sym_declaration] = STATE(4140), - [sym_import] = STATE(3514), - [sym_variable_declaration] = STATE(3912), - [sym_lexical_declaration] = STATE(3912), - [sym_parenthesized_expression] = STATE(1416), - [sym_expression] = STATE(2444), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(3912), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(3912), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(3912), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5590), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1416), - [sym_subscript_expression] = STATE(1416), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3031), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1416), - [sym_function_signature] = STATE(3912), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(3912), - [sym_abstract_class_declaration] = STATE(3912), - [sym_module] = STATE(3912), - [sym_internal_module] = STATE(2420), - [sym_import_alias] = STATE(3912), - [sym_interface_declaration] = STATE(3912), - [sym_enum_declaration] = STATE(3912), - [sym_type_alias_declaration] = STATE(3912), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4228), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1571), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(1573), - [anon_sym_var] = ACTIONS(1575), - [anon_sym_let] = ACTIONS(1577), - [anon_sym_const] = ACTIONS(1579), - [anon_sym_BANG] = ACTIONS(1137), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(1581), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_function] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1587), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1589), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), - [anon_sym_abstract] = ACTIONS(1591), - [anon_sym_interface] = ACTIONS(1593), - [anon_sym_enum] = ACTIONS(1595), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3153), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(220), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_RPAREN] = ACTIONS(223), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(223), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1546), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1548), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(204), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [177] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3154), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(855), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_RBRACE] = ACTIONS(157), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1553), - [anon_sym_DASH] = ACTIONS(1553), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1555), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(205), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3153), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(880), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_RPAREN] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(154), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_EQ_GT] = ACTIONS(152), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1546), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1548), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(204), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [178] = { - [sym_declaration] = STATE(934), - [sym_import] = STATE(3514), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_parenthesized_expression] = STATE(1416), - [sym_expression] = STATE(2434), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5590), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1416), - [sym_subscript_expression] = STATE(1416), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3031), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1416), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(2487), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4134), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1597), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(1601), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1603), - [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1137), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(564), - [anon_sym_async] = ACTIONS(1611), - [anon_sym_function] = ACTIONS(568), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1607), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1609), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3153), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(834), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_COMMA] = ACTIONS(899), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(899), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_EQ_GT] = ACTIONS(844), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1546), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1548), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(204), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [179] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3154), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(875), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_EQ_GT] = ACTIONS(881), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1553), - [anon_sym_DASH] = ACTIONS(1553), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1555), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(205), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [sym_declaration] = STATE(3992), + [sym_import] = STATE(3636), + [sym_variable_declaration] = STATE(4275), + [sym_lexical_declaration] = STATE(4275), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2435), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(4275), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(4275), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(4275), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_function_signature] = STATE(4275), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(4275), + [sym_abstract_class_declaration] = STATE(4275), + [sym_module] = STATE(4275), + [sym_internal_module] = STATE(2453), + [sym_import_alias] = STATE(4275), + [sym_interface_declaration] = STATE(4275), + [sym_enum_declaration] = STATE(4275), + [sym_type_alias_declaration] = STATE(4275), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4222), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1564), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(1566), + [anon_sym_var] = ACTIONS(1568), + [anon_sym_let] = ACTIONS(1570), + [anon_sym_const] = ACTIONS(1572), + [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(1574), + [anon_sym_async] = ACTIONS(1576), + [anon_sym_function] = ACTIONS(1578), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1580), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1582), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), + [anon_sym_abstract] = ACTIONS(1584), + [anon_sym_interface] = ACTIONS(1586), + [anon_sym_enum] = ACTIONS(1588), [sym_html_comment] = ACTIONS(5), }, [180] = { - [sym_declaration] = STATE(934), - [sym_import] = STATE(3514), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_parenthesized_expression] = STATE(1416), - [sym_expression] = STATE(2434), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5590), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1416), - [sym_subscript_expression] = STATE(1416), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3031), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1416), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4161), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1597), - [anon_sym_namespace] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(1601), + [sym_declaration] = STATE(937), + [sym_import] = STATE(3636), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2441), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4150), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1590), + [anon_sym_namespace] = ACTIONS(1592), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(1594), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1596), [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(1605), - [anon_sym_function] = ACTIONS(73), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1607), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1609), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(1598), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1600), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1602), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [181] = { - [sym_declaration] = STATE(929), - [sym_import] = STATE(3514), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_parenthesized_expression] = STATE(1416), - [sym_expression] = STATE(2433), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(837), - [sym_function_expression] = STATE(2118), - [sym_function_declaration] = STATE(837), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(837), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5590), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1416), - [sym_subscript_expression] = STATE(1416), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3031), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1416), - [sym_function_signature] = STATE(837), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(2487), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4134), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1597), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(1601), + [sym_declaration] = STATE(937), + [sym_import] = STATE(3636), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2441), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(2513), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4153), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1590), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(1594), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1603), + [anon_sym_let] = ACTIONS(1596), [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(564), - [anon_sym_async] = ACTIONS(1611), - [anon_sym_function] = ACTIONS(568), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1607), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1609), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), - [anon_sym_abstract] = ACTIONS(107), - [anon_sym_interface] = ACTIONS(109), - [anon_sym_enum] = ACTIONS(111), + [anon_sym_class] = ACTIONS(623), + [anon_sym_async] = ACTIONS(1604), + [anon_sym_function] = ACTIONS(627), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1600), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1602), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [182] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3154), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(841), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_COMMA] = ACTIONS(892), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(833), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_RBRACK] = ACTIONS(892), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1553), - [anon_sym_DASH] = ACTIONS(1553), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1555), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(205), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__ternary_qmark] = ACTIONS(157), + [sym_import] = STATE(4950), + [sym_nested_identifier] = STATE(5535), + [sym_string] = STATE(3265), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(3076), + [sym__type_query_call_expression_in_type_annotation] = STATE(3200), + [sym_type] = STATE(3222), + [sym_constructor_type] = STATE(3271), + [sym_primary_type] = STATE(3272), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3271), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3273), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5146), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3271), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3271), + [sym_identifier] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(1608), + [anon_sym_EQ] = ACTIONS(907), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_RBRACE] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(992), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_EQ_GT] = ACTIONS(844), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1618), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(1620), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1624), + [anon_sym_DASH] = ACTIONS(1624), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1548), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_this] = ACTIONS(1634), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1640), + [anon_sym_any] = ACTIONS(1032), + [anon_sym_number] = ACTIONS(1032), + [anon_sym_boolean] = ACTIONS(1032), + [anon_sym_string] = ACTIONS(1032), + [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_object] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(1026), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [183] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3154), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_EQ_GT] = ACTIONS(155), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1553), - [anon_sym_DASH] = ACTIONS(1553), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1555), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(205), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__ternary_qmark] = ACTIONS(157), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3153), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(918), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_EQ_GT] = ACTIONS(924), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1546), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1548), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(204), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [184] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3154), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(890), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_RPAREN] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_EQ_GT] = ACTIONS(227), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1553), - [anon_sym_DASH] = ACTIONS(1553), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1555), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(205), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__ternary_qmark] = ACTIONS(157), + [sym_declaration] = STATE(873), + [sym_import] = STATE(3636), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2454), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(2513), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4153), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1590), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(1594), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(1596), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(623), + [anon_sym_async] = ACTIONS(1604), + [anon_sym_function] = ACTIONS(627), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1600), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1602), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [185] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3154), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(925), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_EQ_GT] = ACTIONS(931), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1553), - [anon_sym_DASH] = ACTIONS(1553), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1555), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(205), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3661), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(907), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(126), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_EQ_GT] = ACTIONS(844), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(1644), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1546), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1548), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(1650), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [186] = { - [sym_import] = STATE(4676), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(3304), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3729), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5461), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(887), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_COMMA] = ACTIONS(224), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_RBRACK] = ACTIONS(224), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(1615), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1553), - [anon_sym_DASH] = ACTIONS(1553), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1555), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1621), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__ternary_qmark] = ACTIONS(157), + [sym_declaration] = STATE(4327), + [sym_import] = STATE(3636), + [sym_variable_declaration] = STATE(4275), + [sym_lexical_declaration] = STATE(4275), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2377), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(4275), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(4275), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(4275), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_function_signature] = STATE(4275), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(4275), + [sym_abstract_class_declaration] = STATE(4275), + [sym_module] = STATE(4275), + [sym_internal_module] = STATE(2453), + [sym_import_alias] = STATE(4275), + [sym_interface_declaration] = STATE(4275), + [sym_enum_declaration] = STATE(4275), + [sym_type_alias_declaration] = STATE(4275), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4222), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1564), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(1566), + [anon_sym_var] = ACTIONS(1568), + [anon_sym_let] = ACTIONS(1570), + [anon_sym_const] = ACTIONS(1572), + [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(1574), + [anon_sym_async] = ACTIONS(1576), + [anon_sym_function] = ACTIONS(1578), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1580), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1582), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), + [anon_sym_abstract] = ACTIONS(1584), + [anon_sym_interface] = ACTIONS(1586), + [anon_sym_enum] = ACTIONS(1588), [sym_html_comment] = ACTIONS(5), }, [187] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5574), - [sym_string] = STATE(3242), - [sym_formal_parameters] = STATE(5809), - [sym_nested_type_identifier] = STATE(3153), - [sym__type_query_member_expression_in_type_annotation] = STATE(3081), - [sym__type_query_call_expression_in_type_annotation] = STATE(3197), - [sym_type] = STATE(3257), - [sym_constructor_type] = STATE(3250), - [sym_primary_type] = STATE(3251), - [sym_template_literal_type] = STATE(3252), - [sym_infer_type] = STATE(3250), - [sym_conditional_type] = STATE(3252), - [sym_generic_type] = STATE(3252), - [sym_type_query] = STATE(3252), - [sym_index_type_query] = STATE(3252), - [sym_lookup_type] = STATE(3252), - [sym_literal_type] = STATE(3252), - [sym__number] = STATE(3253), - [sym_existential_type] = STATE(3252), - [sym_flow_maybe_type] = STATE(3252), - [sym_parenthesized_type] = STATE(3252), - [sym_predefined_type] = STATE(3252), - [sym_object_type] = STATE(3252), - [sym_type_parameters] = STATE(5159), - [sym_array_type] = STATE(3252), - [sym_tuple_type] = STATE(3252), - [sym_readonly_type] = STATE(3250), - [sym_union_type] = STATE(3252), - [sym_intersection_type] = STATE(3252), - [sym_function_type] = STATE(3250), - [sym_identifier] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_EQ] = ACTIONS(887), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_COMMA] = ACTIONS(224), - [anon_sym_RBRACE] = ACTIONS(224), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1635), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(1637), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(1639), - [anon_sym_PLUS] = ACTIONS(1641), - [anon_sym_DASH] = ACTIONS(1641), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1555), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(1045), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(1651), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1657), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), - [sym__ternary_qmark] = ACTIONS(157), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3153), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(932), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_EQ_GT] = ACTIONS(938), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1546), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1548), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(204), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_implements] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [188] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3154), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(939), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_EQ_GT] = ACTIONS(945), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1553), - [anon_sym_DASH] = ACTIONS(1553), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1555), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(205), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_implements] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__ternary_qmark] = ACTIONS(157), + [sym_declaration] = STATE(873), + [sym_import] = STATE(3636), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2454), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_class_declaration] = STATE(831), + [sym_function_expression] = STATE(2222), + [sym_function_declaration] = STATE(831), + [sym_generator_function] = STATE(2222), + [sym_generator_function_declaration] = STATE(831), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_function_signature] = STATE(831), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(214), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4150), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1590), + [anon_sym_namespace] = ACTIONS(1592), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(1594), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(1596), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(1598), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1600), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1602), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, [189] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3154), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(833), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_EQ_GT] = ACTIONS(155), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1553), - [anon_sym_DASH] = ACTIONS(1553), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1555), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(205), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__ternary_qmark] = ACTIONS(157), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3153), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1546), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1548), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(204), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [190] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3154), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_RBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_EQ_GT] = ACTIONS(913), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1553), - [anon_sym_DASH] = ACTIONS(1553), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1555), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(205), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__ternary_qmark] = ACTIONS(157), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3153), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(964), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(154), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_EQ_GT] = ACTIONS(970), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1546), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1548), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(204), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [191] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3154), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(955), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_EQ_GT] = ACTIONS(961), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1553), - [anon_sym_DASH] = ACTIONS(1553), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1555), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(205), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__ternary_qmark] = ACTIONS(157), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3153), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(910), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_EQ_GT] = ACTIONS(895), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1546), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1548), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(204), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [192] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3154), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(969), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_EQ_GT] = ACTIONS(975), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1553), - [anon_sym_DASH] = ACTIONS(1553), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1555), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(205), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__ternary_qmark] = ACTIONS(157), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3153), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(948), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_EQ_GT] = ACTIONS(954), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1546), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1548), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(204), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [193] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3154), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_EQ_GT] = ACTIONS(155), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(167), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(1553), - [anon_sym_DASH] = ACTIONS(1553), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1555), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_void] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(205), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__ternary_qmark] = ACTIONS(157), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3153), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1546), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1548), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(204), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [194] = { - [sym_import] = STATE(3541), + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1817), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(1832), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4100), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4100), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym__formal_parameter] = STATE(4540), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(4309), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(4309), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym__formal_parameter] = STATE(4621), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1357), - [sym_subscript_expression] = STATE(1357), + [sym_member_expression] = STATE(1352), + [sym_subscript_expression] = STATE(1352), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4100), + [sym__destructuring_pattern] = STATE(4309), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_pattern] = STATE(4056), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1357), + [sym_sequence_expression] = STATE(5679), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4339), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1352), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), @@ -47955,113 +47276,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_internal_module] = STATE(1652), [sym_accessibility_modifier] = STATE(288), [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(4540), - [sym_optional_parameter] = STATE(4540), - [sym__parameter_name] = STATE(3613), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(1659), - [anon_sym_export] = ACTIONS(731), - [anon_sym_type] = ACTIONS(731), - [anon_sym_namespace] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(731), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(741), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(749), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1661), - [anon_sym_using] = ACTIONS(753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(1663), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1665), - [anon_sym_AT] = ACTIONS(779), - [anon_sym_static] = ACTIONS(731), - [anon_sym_readonly] = ACTIONS(1667), - [anon_sym_get] = ACTIONS(731), - [anon_sym_set] = ACTIONS(731), - [anon_sym_declare] = ACTIONS(731), - [anon_sym_public] = ACTIONS(785), - [anon_sym_private] = ACTIONS(785), - [anon_sym_protected] = ACTIONS(785), - [anon_sym_override] = ACTIONS(787), - [anon_sym_module] = ACTIONS(731), - [anon_sym_any] = ACTIONS(731), - [anon_sym_number] = ACTIONS(731), - [anon_sym_boolean] = ACTIONS(731), - [anon_sym_string] = ACTIONS(731), - [anon_sym_symbol] = ACTIONS(731), - [anon_sym_object] = ACTIONS(731), + [sym_required_parameter] = STATE(4621), + [sym_optional_parameter] = STATE(4621), + [sym__parameter_name] = STATE(3624), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(267), + [sym_identifier] = ACTIONS(1652), + [anon_sym_export] = ACTIONS(724), + [anon_sym_type] = ACTIONS(724), + [anon_sym_namespace] = ACTIONS(726), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(724), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(734), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(742), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1654), + [anon_sym_using] = ACTIONS(746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(1656), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1658), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(724), + [anon_sym_readonly] = ACTIONS(1660), + [anon_sym_get] = ACTIONS(724), + [anon_sym_set] = ACTIONS(724), + [anon_sym_declare] = ACTIONS(724), + [anon_sym_public] = ACTIONS(776), + [anon_sym_private] = ACTIONS(776), + [anon_sym_protected] = ACTIONS(776), + [anon_sym_override] = ACTIONS(778), + [anon_sym_module] = ACTIONS(724), + [anon_sym_any] = ACTIONS(724), + [anon_sym_number] = ACTIONS(724), + [anon_sym_boolean] = ACTIONS(724), + [anon_sym_string] = ACTIONS(724), + [anon_sym_symbol] = ACTIONS(724), + [anon_sym_object] = ACTIONS(724), [sym_html_comment] = ACTIONS(5), }, [195] = { - [sym_import] = STATE(3541), + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1834), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(1816), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4100), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4100), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym__formal_parameter] = STATE(4540), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(4309), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(4309), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym__formal_parameter] = STATE(4621), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1357), - [sym_subscript_expression] = STATE(1357), + [sym_member_expression] = STATE(1352), + [sym_subscript_expression] = STATE(1352), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4100), + [sym__destructuring_pattern] = STATE(4309), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5853), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_pattern] = STATE(4056), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1357), + [sym_sequence_expression] = STATE(5780), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4339), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1352), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), @@ -48069,112 +47388,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_internal_module] = STATE(1652), [sym_accessibility_modifier] = STATE(288), [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(4540), - [sym_optional_parameter] = STATE(4540), - [sym__parameter_name] = STATE(3613), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(1659), - [anon_sym_export] = ACTIONS(731), - [anon_sym_type] = ACTIONS(731), - [anon_sym_namespace] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(731), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(741), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(749), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1661), - [anon_sym_using] = ACTIONS(753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(1663), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1665), - [anon_sym_AT] = ACTIONS(779), - [anon_sym_static] = ACTIONS(731), - [anon_sym_readonly] = ACTIONS(1667), - [anon_sym_get] = ACTIONS(731), - [anon_sym_set] = ACTIONS(731), - [anon_sym_declare] = ACTIONS(731), - [anon_sym_public] = ACTIONS(785), - [anon_sym_private] = ACTIONS(785), - [anon_sym_protected] = ACTIONS(785), - [anon_sym_override] = ACTIONS(787), - [anon_sym_module] = ACTIONS(731), - [anon_sym_any] = ACTIONS(731), - [anon_sym_number] = ACTIONS(731), - [anon_sym_boolean] = ACTIONS(731), - [anon_sym_string] = ACTIONS(731), - [anon_sym_symbol] = ACTIONS(731), - [anon_sym_object] = ACTIONS(731), + [sym_required_parameter] = STATE(4621), + [sym_optional_parameter] = STATE(4621), + [sym__parameter_name] = STATE(3624), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(267), + [sym_identifier] = ACTIONS(1652), + [anon_sym_export] = ACTIONS(724), + [anon_sym_type] = ACTIONS(724), + [anon_sym_namespace] = ACTIONS(726), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(724), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(734), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(742), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1654), + [anon_sym_using] = ACTIONS(746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(1656), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1658), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(724), + [anon_sym_readonly] = ACTIONS(1660), + [anon_sym_get] = ACTIONS(724), + [anon_sym_set] = ACTIONS(724), + [anon_sym_declare] = ACTIONS(724), + [anon_sym_public] = ACTIONS(776), + [anon_sym_private] = ACTIONS(776), + [anon_sym_protected] = ACTIONS(776), + [anon_sym_override] = ACTIONS(778), + [anon_sym_module] = ACTIONS(724), + [anon_sym_any] = ACTIONS(724), + [anon_sym_number] = ACTIONS(724), + [anon_sym_boolean] = ACTIONS(724), + [anon_sym_string] = ACTIONS(724), + [anon_sym_symbol] = ACTIONS(724), + [anon_sym_object] = ACTIONS(724), [sym_html_comment] = ACTIONS(5), }, [196] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym__formal_parameter] = STATE(4585), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym__formal_parameter] = STATE(5169), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1284), - [sym_subscript_expression] = STATE(1284), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_pattern] = STATE(4056), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1284), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4339), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), @@ -48182,112 +47499,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_internal_module] = STATE(1652), [sym_accessibility_modifier] = STATE(288), [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(4585), - [sym_optional_parameter] = STATE(4585), - [sym__parameter_name] = STATE(3613), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(1669), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1671), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(1673), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(779), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(805), - [anon_sym_private] = ACTIONS(805), - [anon_sym_protected] = ACTIONS(805), - [anon_sym_override] = ACTIONS(807), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_required_parameter] = STATE(5169), + [sym_optional_parameter] = STATE(5169), + [sym__parameter_name] = STATE(3624), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(267), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(1662), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(1666), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1668), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(798), + [anon_sym_private] = ACTIONS(798), + [anon_sym_protected] = ACTIONS(798), + [anon_sym_override] = ACTIONS(800), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, [197] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym__formal_parameter] = STATE(4901), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym__formal_parameter] = STATE(4899), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1284), - [sym_subscript_expression] = STATE(1284), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_pattern] = STATE(4056), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1284), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4339), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), @@ -48295,112 +47610,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_internal_module] = STATE(1652), [sym_accessibility_modifier] = STATE(288), [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(4901), - [sym_optional_parameter] = STATE(4901), - [sym__parameter_name] = STATE(3613), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(1677), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1671), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(1673), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(779), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(805), - [anon_sym_private] = ACTIONS(805), - [anon_sym_protected] = ACTIONS(805), - [anon_sym_override] = ACTIONS(807), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_required_parameter] = STATE(4899), + [sym_optional_parameter] = STATE(4899), + [sym__parameter_name] = STATE(3624), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(267), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(1670), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(1666), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1668), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(798), + [anon_sym_private] = ACTIONS(798), + [anon_sym_protected] = ACTIONS(798), + [anon_sym_override] = ACTIONS(800), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, [198] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym__formal_parameter] = STATE(5285), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym__formal_parameter] = STATE(4939), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1284), - [sym_subscript_expression] = STATE(1284), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_pattern] = STATE(4056), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1284), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4339), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), @@ -48408,112 +47721,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_internal_module] = STATE(1652), [sym_accessibility_modifier] = STATE(288), [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(5285), - [sym_optional_parameter] = STATE(5285), - [sym__parameter_name] = STATE(3613), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(1679), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1671), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(1673), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(779), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(805), - [anon_sym_private] = ACTIONS(805), - [anon_sym_protected] = ACTIONS(805), - [anon_sym_override] = ACTIONS(807), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_required_parameter] = STATE(4939), + [sym_optional_parameter] = STATE(4939), + [sym__parameter_name] = STATE(3624), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(267), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(1672), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(1666), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1668), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(798), + [anon_sym_private] = ACTIONS(798), + [anon_sym_protected] = ACTIONS(798), + [anon_sym_override] = ACTIONS(800), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, [199] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym__formal_parameter] = STATE(5285), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym__formal_parameter] = STATE(4621), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1284), - [sym_subscript_expression] = STATE(1284), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_pattern] = STATE(4056), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1284), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4339), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), @@ -48521,338 +47832,332 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_internal_module] = STATE(1652), [sym_accessibility_modifier] = STATE(288), [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(5285), - [sym_optional_parameter] = STATE(5285), - [sym__parameter_name] = STATE(3613), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(1681), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1671), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(1673), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(779), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(805), - [anon_sym_private] = ACTIONS(805), - [anon_sym_protected] = ACTIONS(805), - [anon_sym_override] = ACTIONS(807), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_required_parameter] = STATE(4621), + [sym_optional_parameter] = STATE(4621), + [sym__parameter_name] = STATE(3624), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(267), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(734), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(1666), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1668), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(798), + [anon_sym_private] = ACTIONS(798), + [anon_sym_protected] = ACTIONS(798), + [anon_sym_override] = ACTIONS(800), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, [200] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1512), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym__formal_parameter] = STATE(5285), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1284), - [sym_subscript_expression] = STATE(1284), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_pattern] = STATE(4056), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1284), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_accessibility_modifier] = STATE(288), - [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(5285), - [sym_optional_parameter] = STATE(5285), - [sym__parameter_name] = STATE(3613), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(1683), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1671), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(1673), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(779), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(805), - [anon_sym_private] = ACTIONS(805), - [anon_sym_protected] = ACTIONS(805), - [anon_sym_override] = ACTIONS(807), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_statement_block] = STATE(217), + [ts_builtin_sym_end] = ACTIONS(1674), + [sym_identifier] = ACTIONS(1676), + [anon_sym_export] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_type] = ACTIONS(1676), + [anon_sym_as] = ACTIONS(1676), + [anon_sym_namespace] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_COMMA] = ACTIONS(1674), + [anon_sym_RBRACE] = ACTIONS(1674), + [anon_sym_typeof] = ACTIONS(1676), + [anon_sym_import] = ACTIONS(1676), + [anon_sym_with] = ACTIONS(1676), + [anon_sym_var] = ACTIONS(1676), + [anon_sym_let] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_BANG] = ACTIONS(1676), + [anon_sym_else] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_LPAREN] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_await] = ACTIONS(1676), + [anon_sym_in] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_try] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_debugger] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_throw] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_yield] = ACTIONS(1676), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_DOT] = ACTIONS(1680), + [anon_sym_class] = ACTIONS(1676), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_function] = ACTIONS(1676), + [anon_sym_QMARK_DOT] = ACTIONS(1674), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_using] = ACTIONS(1676), + [anon_sym_AMP_AMP] = ACTIONS(1674), + [anon_sym_PIPE_PIPE] = ACTIONS(1674), + [anon_sym_GT_GT] = ACTIONS(1676), + [anon_sym_GT_GT_GT] = ACTIONS(1674), + [anon_sym_LT_LT] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1676), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym_PIPE] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_SLASH] = ACTIONS(1676), + [anon_sym_PERCENT] = ACTIONS(1674), + [anon_sym_STAR_STAR] = ACTIONS(1674), + [anon_sym_LT] = ACTIONS(1676), + [anon_sym_LT_EQ] = ACTIONS(1674), + [anon_sym_EQ_EQ] = ACTIONS(1676), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1674), + [anon_sym_BANG_EQ] = ACTIONS(1676), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1674), + [anon_sym_GT_EQ] = ACTIONS(1674), + [anon_sym_GT] = ACTIONS(1676), + [anon_sym_QMARK_QMARK] = ACTIONS(1674), + [anon_sym_instanceof] = ACTIONS(1676), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_void] = ACTIONS(1676), + [anon_sym_delete] = ACTIONS(1676), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1674), + [sym_number] = ACTIONS(1674), + [sym_private_property_identifier] = ACTIONS(1674), + [sym_this] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_true] = ACTIONS(1676), + [sym_false] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [sym_undefined] = ACTIONS(1676), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_readonly] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1676), + [anon_sym_set] = ACTIONS(1676), + [anon_sym_declare] = ACTIONS(1676), + [anon_sym_public] = ACTIONS(1676), + [anon_sym_private] = ACTIONS(1676), + [anon_sym_protected] = ACTIONS(1676), + [anon_sym_override] = ACTIONS(1676), + [anon_sym_module] = ACTIONS(1676), + [anon_sym_any] = ACTIONS(1676), + [anon_sym_number] = ACTIONS(1676), + [anon_sym_boolean] = ACTIONS(1676), + [anon_sym_string] = ACTIONS(1676), + [anon_sym_symbol] = ACTIONS(1676), + [anon_sym_object] = ACTIONS(1676), + [anon_sym_abstract] = ACTIONS(1676), + [anon_sym_satisfies] = ACTIONS(1676), + [anon_sym_interface] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), + [sym__automatic_semicolon] = ACTIONS(1674), + [sym__ternary_qmark] = ACTIONS(1674), [sym_html_comment] = ACTIONS(5), }, [201] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1512), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym__formal_parameter] = STATE(4540), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1284), - [sym_subscript_expression] = STATE(1284), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_pattern] = STATE(4056), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1284), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_accessibility_modifier] = STATE(288), - [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(4540), - [sym_optional_parameter] = STATE(4540), - [sym__parameter_name] = STATE(3613), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(741), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1671), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(1673), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(779), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(805), - [anon_sym_private] = ACTIONS(805), - [anon_sym_protected] = ACTIONS(805), - [anon_sym_override] = ACTIONS(807), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_statement_block] = STATE(217), + [ts_builtin_sym_end] = ACTIONS(1674), + [sym_identifier] = ACTIONS(1676), + [anon_sym_export] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_type] = ACTIONS(1676), + [anon_sym_as] = ACTIONS(1676), + [anon_sym_namespace] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_COMMA] = ACTIONS(1674), + [anon_sym_RBRACE] = ACTIONS(1674), + [anon_sym_typeof] = ACTIONS(1676), + [anon_sym_import] = ACTIONS(1676), + [anon_sym_with] = ACTIONS(1676), + [anon_sym_var] = ACTIONS(1676), + [anon_sym_let] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_BANG] = ACTIONS(1676), + [anon_sym_else] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_LPAREN] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_await] = ACTIONS(1676), + [anon_sym_in] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_try] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_debugger] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_throw] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_yield] = ACTIONS(1676), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_class] = ACTIONS(1676), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_function] = ACTIONS(1676), + [anon_sym_QMARK_DOT] = ACTIONS(1674), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_using] = ACTIONS(1676), + [anon_sym_AMP_AMP] = ACTIONS(1674), + [anon_sym_PIPE_PIPE] = ACTIONS(1674), + [anon_sym_GT_GT] = ACTIONS(1676), + [anon_sym_GT_GT_GT] = ACTIONS(1674), + [anon_sym_LT_LT] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1676), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym_PIPE] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_SLASH] = ACTIONS(1676), + [anon_sym_PERCENT] = ACTIONS(1674), + [anon_sym_STAR_STAR] = ACTIONS(1674), + [anon_sym_LT] = ACTIONS(1676), + [anon_sym_LT_EQ] = ACTIONS(1674), + [anon_sym_EQ_EQ] = ACTIONS(1676), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1674), + [anon_sym_BANG_EQ] = ACTIONS(1676), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1674), + [anon_sym_GT_EQ] = ACTIONS(1674), + [anon_sym_GT] = ACTIONS(1676), + [anon_sym_QMARK_QMARK] = ACTIONS(1674), + [anon_sym_instanceof] = ACTIONS(1676), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_void] = ACTIONS(1676), + [anon_sym_delete] = ACTIONS(1676), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1674), + [sym_number] = ACTIONS(1674), + [sym_private_property_identifier] = ACTIONS(1674), + [sym_this] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_true] = ACTIONS(1676), + [sym_false] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [sym_undefined] = ACTIONS(1676), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_readonly] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1676), + [anon_sym_set] = ACTIONS(1676), + [anon_sym_declare] = ACTIONS(1676), + [anon_sym_public] = ACTIONS(1676), + [anon_sym_private] = ACTIONS(1676), + [anon_sym_protected] = ACTIONS(1676), + [anon_sym_override] = ACTIONS(1676), + [anon_sym_module] = ACTIONS(1676), + [anon_sym_any] = ACTIONS(1676), + [anon_sym_number] = ACTIONS(1676), + [anon_sym_boolean] = ACTIONS(1676), + [anon_sym_string] = ACTIONS(1676), + [anon_sym_symbol] = ACTIONS(1676), + [anon_sym_object] = ACTIONS(1676), + [anon_sym_abstract] = ACTIONS(1676), + [anon_sym_satisfies] = ACTIONS(1676), + [anon_sym_interface] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), + [sym__automatic_semicolon] = ACTIONS(1674), + [sym__ternary_qmark] = ACTIONS(1674), [sym_html_comment] = ACTIONS(5), }, [202] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym__formal_parameter] = STATE(5285), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym__formal_parameter] = STATE(5169), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1284), - [sym_subscript_expression] = STATE(1284), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_pattern] = STATE(4056), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1284), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4339), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), @@ -48860,225 +48165,221 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_internal_module] = STATE(1652), [sym_accessibility_modifier] = STATE(288), [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(5285), - [sym_optional_parameter] = STATE(5285), - [sym__parameter_name] = STATE(3613), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(1685), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1671), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(1673), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(779), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(805), - [anon_sym_private] = ACTIONS(805), - [anon_sym_protected] = ACTIONS(805), - [anon_sym_override] = ACTIONS(807), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_required_parameter] = STATE(5169), + [sym_optional_parameter] = STATE(5169), + [sym__parameter_name] = STATE(3624), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(267), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(1684), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(1666), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1668), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(798), + [anon_sym_private] = ACTIONS(798), + [anon_sym_protected] = ACTIONS(798), + [anon_sym_override] = ACTIONS(800), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, [203] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1512), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym__formal_parameter] = STATE(5285), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1284), - [sym_subscript_expression] = STATE(1284), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_pattern] = STATE(4056), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1284), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_accessibility_modifier] = STATE(288), - [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(5285), - [sym_optional_parameter] = STATE(5285), - [sym__parameter_name] = STATE(3613), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(1687), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1671), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(1673), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(779), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(805), - [anon_sym_private] = ACTIONS(805), - [anon_sym_protected] = ACTIONS(805), - [anon_sym_override] = ACTIONS(807), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_statement_block] = STATE(217), + [ts_builtin_sym_end] = ACTIONS(1674), + [sym_identifier] = ACTIONS(1676), + [anon_sym_export] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_type] = ACTIONS(1676), + [anon_sym_as] = ACTIONS(1676), + [anon_sym_namespace] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_COMMA] = ACTIONS(1674), + [anon_sym_RBRACE] = ACTIONS(1674), + [anon_sym_typeof] = ACTIONS(1676), + [anon_sym_import] = ACTIONS(1676), + [anon_sym_with] = ACTIONS(1676), + [anon_sym_var] = ACTIONS(1676), + [anon_sym_let] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_BANG] = ACTIONS(1676), + [anon_sym_else] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_LPAREN] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_await] = ACTIONS(1676), + [anon_sym_in] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_try] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_debugger] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_throw] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_yield] = ACTIONS(1676), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_DOT] = ACTIONS(1676), + [anon_sym_class] = ACTIONS(1676), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_function] = ACTIONS(1676), + [anon_sym_QMARK_DOT] = ACTIONS(1674), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_using] = ACTIONS(1676), + [anon_sym_AMP_AMP] = ACTIONS(1674), + [anon_sym_PIPE_PIPE] = ACTIONS(1674), + [anon_sym_GT_GT] = ACTIONS(1676), + [anon_sym_GT_GT_GT] = ACTIONS(1674), + [anon_sym_LT_LT] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1676), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym_PIPE] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_SLASH] = ACTIONS(1676), + [anon_sym_PERCENT] = ACTIONS(1674), + [anon_sym_STAR_STAR] = ACTIONS(1674), + [anon_sym_LT] = ACTIONS(1676), + [anon_sym_LT_EQ] = ACTIONS(1674), + [anon_sym_EQ_EQ] = ACTIONS(1676), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1674), + [anon_sym_BANG_EQ] = ACTIONS(1676), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1674), + [anon_sym_GT_EQ] = ACTIONS(1674), + [anon_sym_GT] = ACTIONS(1676), + [anon_sym_QMARK_QMARK] = ACTIONS(1674), + [anon_sym_instanceof] = ACTIONS(1676), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_void] = ACTIONS(1676), + [anon_sym_delete] = ACTIONS(1676), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1674), + [sym_number] = ACTIONS(1674), + [sym_private_property_identifier] = ACTIONS(1674), + [sym_this] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_true] = ACTIONS(1676), + [sym_false] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [sym_undefined] = ACTIONS(1676), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_readonly] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1676), + [anon_sym_set] = ACTIONS(1676), + [anon_sym_declare] = ACTIONS(1676), + [anon_sym_public] = ACTIONS(1676), + [anon_sym_private] = ACTIONS(1676), + [anon_sym_protected] = ACTIONS(1676), + [anon_sym_override] = ACTIONS(1676), + [anon_sym_module] = ACTIONS(1676), + [anon_sym_any] = ACTIONS(1676), + [anon_sym_number] = ACTIONS(1676), + [anon_sym_boolean] = ACTIONS(1676), + [anon_sym_string] = ACTIONS(1676), + [anon_sym_symbol] = ACTIONS(1676), + [anon_sym_object] = ACTIONS(1676), + [anon_sym_abstract] = ACTIONS(1676), + [anon_sym_satisfies] = ACTIONS(1676), + [anon_sym_interface] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), + [sym__automatic_semicolon] = ACTIONS(1674), + [sym__ternary_qmark] = ACTIONS(1674), [sym_html_comment] = ACTIONS(5), }, [204] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym__formal_parameter] = STATE(5285), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym__formal_parameter] = STATE(5169), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1284), - [sym_subscript_expression] = STATE(1284), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_pattern] = STATE(4056), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1284), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4339), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), @@ -49086,77691 +48387,76723 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_internal_module] = STATE(1652), [sym_accessibility_modifier] = STATE(288), [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(5285), - [sym_optional_parameter] = STATE(5285), - [sym__parameter_name] = STATE(3613), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(1689), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1671), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(1673), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(779), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(805), - [anon_sym_private] = ACTIONS(805), - [anon_sym_protected] = ACTIONS(805), - [anon_sym_override] = ACTIONS(807), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_required_parameter] = STATE(5169), + [sym_optional_parameter] = STATE(5169), + [sym__parameter_name] = STATE(3624), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(267), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(1686), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(1666), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1668), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(798), + [anon_sym_private] = ACTIONS(798), + [anon_sym_protected] = ACTIONS(798), + [anon_sym_override] = ACTIONS(800), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, [205] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(2138), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4445), - [sym_assignment_pattern] = STATE(5126), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4445), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym__formal_parameter] = STATE(5169), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1379), - [sym_subscript_expression] = STATE(1379), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4445), - [sym_spread_element] = STATE(5132), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_pattern] = STATE(4388), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1379), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4339), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [aux_sym_array_repeat1] = STATE(4582), - [aux_sym_array_pattern_repeat1] = STATE(4619), - [sym_identifier] = ACTIONS(1691), - [anon_sym_export] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(1693), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(819), - [anon_sym_RBRACK] = ACTIONS(1695), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1697), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1699), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(580), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(580), - [anon_sym_number] = ACTIONS(580), - [anon_sym_boolean] = ACTIONS(580), - [anon_sym_string] = ACTIONS(580), - [anon_sym_symbol] = ACTIONS(580), - [anon_sym_object] = ACTIONS(580), + [sym_accessibility_modifier] = STATE(288), + [sym_override_modifier] = STATE(303), + [sym_required_parameter] = STATE(5169), + [sym_optional_parameter] = STATE(5169), + [sym__parameter_name] = STATE(3624), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(267), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(1688), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(1666), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1668), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(798), + [anon_sym_private] = ACTIONS(798), + [anon_sym_protected] = ACTIONS(798), + [anon_sym_override] = ACTIONS(800), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, [206] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(2178), - [sym_primary_expression] = STATE(1512), + [ts_builtin_sym_end] = ACTIONS(1690), + [sym_identifier] = ACTIONS(1692), + [anon_sym_export] = ACTIONS(1692), + [anon_sym_STAR] = ACTIONS(1694), + [anon_sym_default] = ACTIONS(1692), + [anon_sym_type] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(1696), + [anon_sym_as] = ACTIONS(1694), + [anon_sym_namespace] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1690), + [anon_sym_COMMA] = ACTIONS(1698), + [anon_sym_RBRACE] = ACTIONS(1690), + [anon_sym_typeof] = ACTIONS(1692), + [anon_sym_import] = ACTIONS(1692), + [anon_sym_with] = ACTIONS(1692), + [anon_sym_var] = ACTIONS(1692), + [anon_sym_let] = ACTIONS(1692), + [anon_sym_const] = ACTIONS(1692), + [anon_sym_BANG] = ACTIONS(1692), + [anon_sym_else] = ACTIONS(1692), + [anon_sym_if] = ACTIONS(1692), + [anon_sym_switch] = ACTIONS(1692), + [anon_sym_for] = ACTIONS(1692), + [anon_sym_LPAREN] = ACTIONS(1690), + [anon_sym_SEMI] = ACTIONS(1690), + [anon_sym_await] = ACTIONS(1692), + [anon_sym_in] = ACTIONS(1694), + [anon_sym_while] = ACTIONS(1692), + [anon_sym_do] = ACTIONS(1692), + [anon_sym_try] = ACTIONS(1692), + [anon_sym_break] = ACTIONS(1692), + [anon_sym_continue] = ACTIONS(1692), + [anon_sym_debugger] = ACTIONS(1692), + [anon_sym_return] = ACTIONS(1692), + [anon_sym_throw] = ACTIONS(1692), + [anon_sym_case] = ACTIONS(1692), + [anon_sym_yield] = ACTIONS(1692), + [anon_sym_LBRACK] = ACTIONS(1690), + [anon_sym_DOT] = ACTIONS(1694), + [anon_sym_class] = ACTIONS(1692), + [anon_sym_async] = ACTIONS(1692), + [anon_sym_function] = ACTIONS(1692), + [anon_sym_QMARK_DOT] = ACTIONS(1698), + [anon_sym_new] = ACTIONS(1692), + [anon_sym_using] = ACTIONS(1692), + [anon_sym_AMP_AMP] = ACTIONS(1698), + [anon_sym_PIPE_PIPE] = ACTIONS(1698), + [anon_sym_GT_GT] = ACTIONS(1694), + [anon_sym_GT_GT_GT] = ACTIONS(1698), + [anon_sym_LT_LT] = ACTIONS(1698), + [anon_sym_AMP] = ACTIONS(1694), + [anon_sym_CARET] = ACTIONS(1698), + [anon_sym_PIPE] = ACTIONS(1694), + [anon_sym_PLUS] = ACTIONS(1692), + [anon_sym_DASH] = ACTIONS(1692), + [anon_sym_SLASH] = ACTIONS(1692), + [anon_sym_PERCENT] = ACTIONS(1698), + [anon_sym_STAR_STAR] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1692), + [anon_sym_LT_EQ] = ACTIONS(1698), + [anon_sym_EQ_EQ] = ACTIONS(1694), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1698), + [anon_sym_BANG_EQ] = ACTIONS(1694), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1698), + [anon_sym_GT_EQ] = ACTIONS(1698), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_QMARK_QMARK] = ACTIONS(1698), + [anon_sym_instanceof] = ACTIONS(1694), + [anon_sym_TILDE] = ACTIONS(1690), + [anon_sym_void] = ACTIONS(1692), + [anon_sym_delete] = ACTIONS(1692), + [anon_sym_PLUS_PLUS] = ACTIONS(1690), + [anon_sym_DASH_DASH] = ACTIONS(1690), + [anon_sym_DQUOTE] = ACTIONS(1690), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1690), + [sym_number] = ACTIONS(1690), + [sym_private_property_identifier] = ACTIONS(1690), + [sym_this] = ACTIONS(1692), + [sym_super] = ACTIONS(1692), + [sym_true] = ACTIONS(1692), + [sym_false] = ACTIONS(1692), + [sym_null] = ACTIONS(1692), + [sym_undefined] = ACTIONS(1692), + [anon_sym_AT] = ACTIONS(1690), + [anon_sym_static] = ACTIONS(1692), + [anon_sym_readonly] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1692), + [anon_sym_set] = ACTIONS(1692), + [anon_sym_declare] = ACTIONS(1692), + [anon_sym_public] = ACTIONS(1692), + [anon_sym_private] = ACTIONS(1692), + [anon_sym_protected] = ACTIONS(1692), + [anon_sym_override] = ACTIONS(1692), + [anon_sym_module] = ACTIONS(1692), + [anon_sym_any] = ACTIONS(1692), + [anon_sym_number] = ACTIONS(1692), + [anon_sym_boolean] = ACTIONS(1692), + [anon_sym_string] = ACTIONS(1692), + [anon_sym_symbol] = ACTIONS(1692), + [anon_sym_object] = ACTIONS(1692), + [anon_sym_abstract] = ACTIONS(1692), + [anon_sym_satisfies] = ACTIONS(1694), + [anon_sym_interface] = ACTIONS(1692), + [anon_sym_enum] = ACTIONS(1692), + [sym__automatic_semicolon] = ACTIONS(1700), + [sym__ternary_qmark] = ACTIONS(1698), + [sym_html_comment] = ACTIONS(5), + }, + [207] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4445), - [sym_assignment_pattern] = STATE(5126), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4445), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym__formal_parameter] = STATE(5169), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1379), - [sym_subscript_expression] = STATE(1379), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4445), - [sym_spread_element] = STATE(4611), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_pattern] = STATE(4388), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1379), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4339), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [aux_sym_array_repeat1] = STATE(4617), - [aux_sym_array_pattern_repeat1] = STATE(4619), - [sym_identifier] = ACTIONS(1691), - [anon_sym_export] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(1693), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(819), - [anon_sym_RBRACK] = ACTIONS(1701), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1697), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1699), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(580), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(580), - [anon_sym_number] = ACTIONS(580), - [anon_sym_boolean] = ACTIONS(580), - [anon_sym_string] = ACTIONS(580), - [anon_sym_symbol] = ACTIONS(580), - [anon_sym_object] = ACTIONS(580), - [sym_html_comment] = ACTIONS(5), - }, - [207] = { - [ts_builtin_sym_end] = ACTIONS(1703), - [sym_identifier] = ACTIONS(1705), - [anon_sym_export] = ACTIONS(1705), - [anon_sym_STAR] = ACTIONS(1707), - [anon_sym_default] = ACTIONS(1705), - [anon_sym_type] = ACTIONS(1705), - [anon_sym_EQ] = ACTIONS(1709), - [anon_sym_as] = ACTIONS(1707), - [anon_sym_namespace] = ACTIONS(1705), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_COMMA] = ACTIONS(1711), - [anon_sym_RBRACE] = ACTIONS(1703), - [anon_sym_typeof] = ACTIONS(1705), - [anon_sym_import] = ACTIONS(1705), - [anon_sym_with] = ACTIONS(1705), - [anon_sym_var] = ACTIONS(1705), - [anon_sym_let] = ACTIONS(1705), - [anon_sym_const] = ACTIONS(1705), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_else] = ACTIONS(1705), - [anon_sym_if] = ACTIONS(1705), - [anon_sym_switch] = ACTIONS(1705), - [anon_sym_for] = ACTIONS(1705), - [anon_sym_LPAREN] = ACTIONS(1703), - [anon_sym_SEMI] = ACTIONS(1703), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_in] = ACTIONS(1707), - [anon_sym_while] = ACTIONS(1705), - [anon_sym_do] = ACTIONS(1705), - [anon_sym_try] = 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_case] = ACTIONS(1705), - [anon_sym_yield] = ACTIONS(1705), - [anon_sym_LBRACK] = ACTIONS(1703), - [sym_glimmer_opening_tag] = ACTIONS(1703), - [anon_sym_DOT] = ACTIONS(1707), - [anon_sym_class] = ACTIONS(1705), - [anon_sym_async] = ACTIONS(1705), - [anon_sym_function] = ACTIONS(1705), - [anon_sym_QMARK_DOT] = ACTIONS(1711), - [anon_sym_new] = ACTIONS(1705), - [anon_sym_using] = ACTIONS(1705), - [anon_sym_AMP_AMP] = ACTIONS(1711), - [anon_sym_PIPE_PIPE] = ACTIONS(1711), - [anon_sym_GT_GT] = ACTIONS(1707), - [anon_sym_GT_GT_GT] = ACTIONS(1711), - [anon_sym_LT_LT] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1707), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_PIPE] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_SLASH] = ACTIONS(1705), - [anon_sym_PERCENT] = ACTIONS(1711), - [anon_sym_STAR_STAR] = ACTIONS(1711), - [anon_sym_LT] = ACTIONS(1705), - [anon_sym_LT_EQ] = ACTIONS(1711), - [anon_sym_EQ_EQ] = ACTIONS(1707), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1711), - [anon_sym_BANG_EQ] = ACTIONS(1707), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1711), - [anon_sym_GT_EQ] = ACTIONS(1711), - [anon_sym_GT] = ACTIONS(1707), - [anon_sym_QMARK_QMARK] = ACTIONS(1711), - [anon_sym_instanceof] = ACTIONS(1707), - [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(5), - [anon_sym_BQUOTE] = ACTIONS(1703), - [sym_number] = ACTIONS(1703), - [sym_private_property_identifier] = 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_readonly] = 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_override] = 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_object] = ACTIONS(1705), - [anon_sym_abstract] = ACTIONS(1705), - [anon_sym_satisfies] = ACTIONS(1707), - [anon_sym_interface] = ACTIONS(1705), - [anon_sym_enum] = ACTIONS(1705), - [sym__automatic_semicolon] = ACTIONS(1713), - [sym__ternary_qmark] = ACTIONS(1711), + [sym_accessibility_modifier] = STATE(288), + [sym_override_modifier] = STATE(303), + [sym_required_parameter] = STATE(5169), + [sym_optional_parameter] = STATE(5169), + [sym__parameter_name] = STATE(3624), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(267), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(1702), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(1666), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1668), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(798), + [anon_sym_private] = ACTIONS(798), + [anon_sym_protected] = ACTIONS(798), + [anon_sym_override] = ACTIONS(800), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, [208] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(2178), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4445), - [sym_assignment_pattern] = STATE(5126), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4445), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym__formal_parameter] = STATE(5169), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1379), - [sym_subscript_expression] = STATE(1379), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4445), - [sym_spread_element] = STATE(4611), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_pattern] = STATE(4388), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1379), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4339), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [aux_sym_array_repeat1] = STATE(4617), - [aux_sym_array_pattern_repeat1] = STATE(4619), - [sym_identifier] = ACTIONS(1691), - [anon_sym_export] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(1693), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(819), - [anon_sym_RBRACK] = ACTIONS(1715), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1697), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1699), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(580), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(580), - [anon_sym_number] = ACTIONS(580), - [anon_sym_boolean] = ACTIONS(580), - [anon_sym_string] = ACTIONS(580), - [anon_sym_symbol] = ACTIONS(580), - [anon_sym_object] = ACTIONS(580), + [sym_accessibility_modifier] = STATE(288), + [sym_override_modifier] = STATE(303), + [sym_required_parameter] = STATE(5169), + [sym_optional_parameter] = STATE(5169), + [sym__parameter_name] = STATE(3624), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(267), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(1704), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(1666), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1668), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(798), + [anon_sym_private] = ACTIONS(798), + [anon_sym_protected] = ACTIONS(798), + [anon_sym_override] = ACTIONS(800), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, [209] = { - [sym_statement_block] = STATE(244), - [ts_builtin_sym_end] = ACTIONS(1717), - [sym_identifier] = ACTIONS(1719), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_default] = ACTIONS(1719), - [anon_sym_type] = ACTIONS(1719), - [anon_sym_as] = ACTIONS(1719), - [anon_sym_namespace] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1721), - [anon_sym_COMMA] = ACTIONS(1717), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_typeof] = ACTIONS(1719), - [anon_sym_import] = ACTIONS(1719), - [anon_sym_with] = ACTIONS(1719), - [anon_sym_var] = ACTIONS(1719), - [anon_sym_let] = ACTIONS(1719), - [anon_sym_const] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1719), - [anon_sym_else] = ACTIONS(1719), - [anon_sym_if] = ACTIONS(1719), - [anon_sym_switch] = ACTIONS(1719), - [anon_sym_for] = ACTIONS(1719), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1717), - [anon_sym_await] = ACTIONS(1719), - [anon_sym_in] = ACTIONS(1719), - [anon_sym_while] = ACTIONS(1719), - [anon_sym_do] = ACTIONS(1719), - [anon_sym_try] = ACTIONS(1719), - [anon_sym_break] = ACTIONS(1719), - [anon_sym_continue] = ACTIONS(1719), - [anon_sym_debugger] = ACTIONS(1719), - [anon_sym_return] = ACTIONS(1719), - [anon_sym_throw] = ACTIONS(1719), - [anon_sym_case] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1719), - [anon_sym_LBRACK] = ACTIONS(1717), - [sym_glimmer_opening_tag] = ACTIONS(1717), - [anon_sym_DOT] = ACTIONS(1719), - [anon_sym_class] = ACTIONS(1719), - [anon_sym_async] = ACTIONS(1719), - [anon_sym_function] = ACTIONS(1719), - [anon_sym_QMARK_DOT] = ACTIONS(1717), - [anon_sym_new] = ACTIONS(1719), - [anon_sym_using] = ACTIONS(1719), - [anon_sym_AMP_AMP] = ACTIONS(1717), - [anon_sym_PIPE_PIPE] = ACTIONS(1717), - [anon_sym_GT_GT] = ACTIONS(1719), - [anon_sym_GT_GT_GT] = ACTIONS(1717), - [anon_sym_LT_LT] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1719), - [anon_sym_CARET] = ACTIONS(1717), - [anon_sym_PIPE] = ACTIONS(1719), - [anon_sym_PLUS] = ACTIONS(1719), - [anon_sym_DASH] = ACTIONS(1719), - [anon_sym_SLASH] = ACTIONS(1719), - [anon_sym_PERCENT] = ACTIONS(1717), - [anon_sym_STAR_STAR] = ACTIONS(1717), - [anon_sym_LT] = ACTIONS(1719), - [anon_sym_LT_EQ] = ACTIONS(1717), - [anon_sym_EQ_EQ] = ACTIONS(1719), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1717), - [anon_sym_BANG_EQ] = ACTIONS(1719), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1717), - [anon_sym_GT_EQ] = ACTIONS(1717), - [anon_sym_GT] = ACTIONS(1719), - [anon_sym_QMARK_QMARK] = ACTIONS(1717), - [anon_sym_instanceof] = ACTIONS(1719), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_void] = ACTIONS(1719), - [anon_sym_delete] = ACTIONS(1719), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1717), - [anon_sym_SQUOTE] = ACTIONS(1717), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1717), - [sym_number] = ACTIONS(1717), - [sym_private_property_identifier] = ACTIONS(1717), - [sym_this] = ACTIONS(1719), - [sym_super] = ACTIONS(1719), - [sym_true] = ACTIONS(1719), - [sym_false] = ACTIONS(1719), - [sym_null] = ACTIONS(1719), - [sym_undefined] = ACTIONS(1719), - [anon_sym_AT] = ACTIONS(1717), - [anon_sym_static] = ACTIONS(1719), - [anon_sym_readonly] = ACTIONS(1719), - [anon_sym_get] = ACTIONS(1719), - [anon_sym_set] = ACTIONS(1719), - [anon_sym_declare] = ACTIONS(1719), - [anon_sym_public] = ACTIONS(1719), - [anon_sym_private] = ACTIONS(1719), - [anon_sym_protected] = ACTIONS(1719), - [anon_sym_override] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(1719), - [anon_sym_any] = ACTIONS(1719), - [anon_sym_number] = ACTIONS(1719), - [anon_sym_boolean] = ACTIONS(1719), - [anon_sym_string] = ACTIONS(1719), - [anon_sym_symbol] = ACTIONS(1719), - [anon_sym_object] = ACTIONS(1719), - [anon_sym_abstract] = ACTIONS(1719), - [anon_sym_satisfies] = ACTIONS(1719), - [anon_sym_interface] = ACTIONS(1719), - [anon_sym_enum] = ACTIONS(1719), - [sym__automatic_semicolon] = ACTIONS(1717), - [sym__ternary_qmark] = ACTIONS(1717), + [ts_builtin_sym_end] = ACTIONS(1706), + [sym_identifier] = ACTIONS(1708), + [anon_sym_export] = ACTIONS(1708), + [anon_sym_STAR] = ACTIONS(1710), + [anon_sym_default] = ACTIONS(1708), + [anon_sym_type] = ACTIONS(1708), + [anon_sym_as] = ACTIONS(1710), + [anon_sym_namespace] = ACTIONS(1708), + [anon_sym_LBRACE] = ACTIONS(1706), + [anon_sym_COMMA] = ACTIONS(1712), + [anon_sym_RBRACE] = ACTIONS(1706), + [anon_sym_typeof] = ACTIONS(1708), + [anon_sym_import] = ACTIONS(1708), + [anon_sym_with] = ACTIONS(1708), + [anon_sym_var] = ACTIONS(1708), + [anon_sym_let] = ACTIONS(1708), + [anon_sym_const] = ACTIONS(1708), + [anon_sym_BANG] = ACTIONS(1708), + [anon_sym_else] = ACTIONS(1708), + [anon_sym_if] = ACTIONS(1708), + [anon_sym_switch] = ACTIONS(1708), + [anon_sym_for] = ACTIONS(1708), + [anon_sym_LPAREN] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1706), + [anon_sym_await] = ACTIONS(1708), + [anon_sym_in] = ACTIONS(1710), + [anon_sym_while] = ACTIONS(1708), + [anon_sym_do] = ACTIONS(1708), + [anon_sym_try] = ACTIONS(1708), + [anon_sym_break] = ACTIONS(1708), + [anon_sym_continue] = ACTIONS(1708), + [anon_sym_debugger] = ACTIONS(1708), + [anon_sym_return] = ACTIONS(1708), + [anon_sym_throw] = ACTIONS(1708), + [anon_sym_case] = ACTIONS(1708), + [anon_sym_yield] = ACTIONS(1708), + [anon_sym_LBRACK] = ACTIONS(1706), + [anon_sym_DOT] = ACTIONS(1710), + [anon_sym_class] = ACTIONS(1708), + [anon_sym_async] = ACTIONS(1708), + [anon_sym_function] = ACTIONS(1708), + [anon_sym_QMARK_DOT] = ACTIONS(1712), + [anon_sym_new] = ACTIONS(1708), + [anon_sym_using] = ACTIONS(1708), + [anon_sym_AMP_AMP] = ACTIONS(1712), + [anon_sym_PIPE_PIPE] = ACTIONS(1712), + [anon_sym_GT_GT] = ACTIONS(1710), + [anon_sym_GT_GT_GT] = ACTIONS(1712), + [anon_sym_LT_LT] = ACTIONS(1712), + [anon_sym_AMP] = ACTIONS(1710), + [anon_sym_CARET] = ACTIONS(1712), + [anon_sym_PIPE] = ACTIONS(1710), + [anon_sym_PLUS] = ACTIONS(1708), + [anon_sym_DASH] = ACTIONS(1708), + [anon_sym_SLASH] = ACTIONS(1708), + [anon_sym_PERCENT] = ACTIONS(1712), + [anon_sym_STAR_STAR] = ACTIONS(1712), + [anon_sym_LT] = ACTIONS(1708), + [anon_sym_LT_EQ] = ACTIONS(1712), + [anon_sym_EQ_EQ] = ACTIONS(1710), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1712), + [anon_sym_BANG_EQ] = ACTIONS(1710), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1712), + [anon_sym_GT_EQ] = ACTIONS(1712), + [anon_sym_GT] = ACTIONS(1710), + [anon_sym_QMARK_QMARK] = ACTIONS(1712), + [anon_sym_instanceof] = ACTIONS(1710), + [anon_sym_TILDE] = ACTIONS(1706), + [anon_sym_void] = ACTIONS(1708), + [anon_sym_delete] = ACTIONS(1708), + [anon_sym_PLUS_PLUS] = ACTIONS(1706), + [anon_sym_DASH_DASH] = ACTIONS(1706), + [anon_sym_DQUOTE] = ACTIONS(1706), + [anon_sym_SQUOTE] = ACTIONS(1706), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1706), + [sym_number] = ACTIONS(1706), + [sym_private_property_identifier] = ACTIONS(1706), + [sym_this] = ACTIONS(1708), + [sym_super] = ACTIONS(1708), + [sym_true] = ACTIONS(1708), + [sym_false] = ACTIONS(1708), + [sym_null] = ACTIONS(1708), + [sym_undefined] = ACTIONS(1708), + [anon_sym_AT] = ACTIONS(1706), + [anon_sym_static] = ACTIONS(1708), + [anon_sym_readonly] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1708), + [anon_sym_set] = ACTIONS(1708), + [anon_sym_declare] = ACTIONS(1708), + [anon_sym_public] = ACTIONS(1708), + [anon_sym_private] = ACTIONS(1708), + [anon_sym_protected] = ACTIONS(1708), + [anon_sym_override] = ACTIONS(1708), + [anon_sym_module] = ACTIONS(1708), + [anon_sym_any] = ACTIONS(1708), + [anon_sym_number] = ACTIONS(1708), + [anon_sym_boolean] = ACTIONS(1708), + [anon_sym_string] = ACTIONS(1708), + [anon_sym_symbol] = ACTIONS(1708), + [anon_sym_object] = ACTIONS(1708), + [anon_sym_abstract] = ACTIONS(1708), + [anon_sym_satisfies] = ACTIONS(1710), + [anon_sym_interface] = ACTIONS(1708), + [anon_sym_enum] = ACTIONS(1708), + [sym__automatic_semicolon] = ACTIONS(1714), + [sym__ternary_qmark] = ACTIONS(1712), [sym_html_comment] = ACTIONS(5), }, [210] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(2178), - [sym_primary_expression] = STATE(1512), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4445), - [sym_assignment_pattern] = STATE(5126), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4445), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1379), - [sym_subscript_expression] = STATE(1379), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4445), - [sym_spread_element] = STATE(4611), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_pattern] = STATE(4388), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1379), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [aux_sym_array_repeat1] = STATE(4617), - [aux_sym_array_pattern_repeat1] = STATE(4619), - [sym_identifier] = ACTIONS(1691), - [anon_sym_export] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(1693), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(819), - [anon_sym_RBRACK] = ACTIONS(1723), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1697), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1699), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(580), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(580), - [anon_sym_number] = ACTIONS(580), - [anon_sym_boolean] = ACTIONS(580), - [anon_sym_string] = ACTIONS(580), - [anon_sym_symbol] = ACTIONS(580), - [anon_sym_object] = ACTIONS(580), + [ts_builtin_sym_end] = ACTIONS(1716), + [sym_identifier] = ACTIONS(1718), + [anon_sym_export] = ACTIONS(1718), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_default] = ACTIONS(1718), + [anon_sym_type] = ACTIONS(1718), + [anon_sym_as] = ACTIONS(1718), + [anon_sym_namespace] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(1716), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_RBRACE] = ACTIONS(1716), + [anon_sym_typeof] = ACTIONS(1718), + [anon_sym_import] = ACTIONS(1718), + [anon_sym_with] = ACTIONS(1718), + [anon_sym_var] = ACTIONS(1718), + [anon_sym_let] = ACTIONS(1718), + [anon_sym_const] = ACTIONS(1718), + [anon_sym_BANG] = ACTIONS(1718), + [anon_sym_else] = ACTIONS(1718), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_switch] = ACTIONS(1718), + [anon_sym_for] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(1716), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_await] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1718), + [anon_sym_while] = ACTIONS(1718), + [anon_sym_do] = ACTIONS(1718), + [anon_sym_try] = ACTIONS(1718), + [anon_sym_break] = ACTIONS(1718), + [anon_sym_continue] = ACTIONS(1718), + [anon_sym_debugger] = ACTIONS(1718), + [anon_sym_return] = ACTIONS(1718), + [anon_sym_throw] = ACTIONS(1718), + [anon_sym_case] = ACTIONS(1718), + [anon_sym_yield] = ACTIONS(1718), + [anon_sym_LBRACK] = ACTIONS(1716), + [anon_sym_DOT] = ACTIONS(1718), + [anon_sym_class] = ACTIONS(1718), + [anon_sym_async] = ACTIONS(1718), + [anon_sym_function] = ACTIONS(1718), + [anon_sym_QMARK_DOT] = ACTIONS(1716), + [anon_sym_new] = ACTIONS(1718), + [anon_sym_using] = ACTIONS(1718), + [anon_sym_AMP_AMP] = ACTIONS(1716), + [anon_sym_PIPE_PIPE] = ACTIONS(1716), + [anon_sym_GT_GT] = ACTIONS(1718), + [anon_sym_GT_GT_GT] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_STAR_STAR] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_LT_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_BANG_EQ] = ACTIONS(1718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [anon_sym_GT_EQ] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1718), + [anon_sym_QMARK_QMARK] = ACTIONS(1716), + [anon_sym_instanceof] = ACTIONS(1718), + [anon_sym_TILDE] = ACTIONS(1716), + [anon_sym_void] = ACTIONS(1718), + [anon_sym_delete] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [anon_sym_DQUOTE] = ACTIONS(1716), + [anon_sym_SQUOTE] = ACTIONS(1716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1716), + [sym_number] = ACTIONS(1716), + [sym_private_property_identifier] = ACTIONS(1716), + [sym_this] = ACTIONS(1718), + [sym_super] = ACTIONS(1718), + [sym_true] = ACTIONS(1718), + [sym_false] = ACTIONS(1718), + [sym_null] = ACTIONS(1718), + [sym_undefined] = ACTIONS(1718), + [anon_sym_AT] = ACTIONS(1716), + [anon_sym_static] = ACTIONS(1718), + [anon_sym_readonly] = ACTIONS(1718), + [anon_sym_get] = ACTIONS(1718), + [anon_sym_set] = ACTIONS(1718), + [anon_sym_declare] = ACTIONS(1718), + [anon_sym_public] = ACTIONS(1718), + [anon_sym_private] = ACTIONS(1718), + [anon_sym_protected] = ACTIONS(1718), + [anon_sym_override] = ACTIONS(1718), + [anon_sym_module] = ACTIONS(1718), + [anon_sym_any] = ACTIONS(1718), + [anon_sym_number] = ACTIONS(1718), + [anon_sym_boolean] = ACTIONS(1718), + [anon_sym_string] = ACTIONS(1718), + [anon_sym_symbol] = ACTIONS(1718), + [anon_sym_object] = ACTIONS(1718), + [anon_sym_abstract] = ACTIONS(1718), + [anon_sym_satisfies] = ACTIONS(1718), + [anon_sym_interface] = ACTIONS(1718), + [anon_sym_enum] = ACTIONS(1718), + [sym__automatic_semicolon] = ACTIONS(1716), + [sym__ternary_qmark] = ACTIONS(1716), [sym_html_comment] = ACTIONS(5), }, [211] = { - [sym_statement_block] = STATE(244), - [ts_builtin_sym_end] = ACTIONS(1717), - [sym_identifier] = ACTIONS(1719), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_default] = ACTIONS(1719), - [anon_sym_type] = ACTIONS(1719), - [anon_sym_as] = ACTIONS(1719), - [anon_sym_namespace] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1721), - [anon_sym_COMMA] = ACTIONS(1717), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_typeof] = ACTIONS(1719), - [anon_sym_import] = ACTIONS(1719), - [anon_sym_with] = ACTIONS(1719), - [anon_sym_var] = ACTIONS(1719), - [anon_sym_let] = ACTIONS(1719), - [anon_sym_const] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1719), - [anon_sym_else] = ACTIONS(1719), - [anon_sym_if] = ACTIONS(1719), - [anon_sym_switch] = ACTIONS(1719), - [anon_sym_for] = ACTIONS(1719), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1717), - [anon_sym_await] = ACTIONS(1719), - [anon_sym_in] = ACTIONS(1719), - [anon_sym_while] = ACTIONS(1719), - [anon_sym_do] = ACTIONS(1719), - [anon_sym_try] = ACTIONS(1719), - [anon_sym_break] = ACTIONS(1719), - [anon_sym_continue] = ACTIONS(1719), - [anon_sym_debugger] = ACTIONS(1719), - [anon_sym_return] = ACTIONS(1719), - [anon_sym_throw] = ACTIONS(1719), - [anon_sym_case] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1719), - [anon_sym_LBRACK] = ACTIONS(1717), - [sym_glimmer_opening_tag] = ACTIONS(1717), - [anon_sym_DOT] = ACTIONS(1725), - [anon_sym_class] = ACTIONS(1719), - [anon_sym_async] = ACTIONS(1719), - [anon_sym_function] = ACTIONS(1719), - [anon_sym_QMARK_DOT] = ACTIONS(1717), - [anon_sym_new] = ACTIONS(1719), - [anon_sym_using] = ACTIONS(1719), - [anon_sym_AMP_AMP] = ACTIONS(1717), - [anon_sym_PIPE_PIPE] = ACTIONS(1717), - [anon_sym_GT_GT] = ACTIONS(1719), - [anon_sym_GT_GT_GT] = ACTIONS(1717), - [anon_sym_LT_LT] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1719), - [anon_sym_CARET] = ACTIONS(1717), - [anon_sym_PIPE] = ACTIONS(1719), - [anon_sym_PLUS] = ACTIONS(1719), - [anon_sym_DASH] = ACTIONS(1719), - [anon_sym_SLASH] = ACTIONS(1719), - [anon_sym_PERCENT] = ACTIONS(1717), - [anon_sym_STAR_STAR] = ACTIONS(1717), - [anon_sym_LT] = ACTIONS(1719), - [anon_sym_LT_EQ] = ACTIONS(1717), - [anon_sym_EQ_EQ] = ACTIONS(1719), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1717), - [anon_sym_BANG_EQ] = ACTIONS(1719), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1717), - [anon_sym_GT_EQ] = ACTIONS(1717), - [anon_sym_GT] = ACTIONS(1719), - [anon_sym_QMARK_QMARK] = ACTIONS(1717), - [anon_sym_instanceof] = ACTIONS(1719), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_void] = ACTIONS(1719), - [anon_sym_delete] = ACTIONS(1719), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1717), - [anon_sym_SQUOTE] = ACTIONS(1717), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1717), - [sym_number] = ACTIONS(1717), - [sym_private_property_identifier] = ACTIONS(1717), - [sym_this] = ACTIONS(1719), - [sym_super] = ACTIONS(1719), - [sym_true] = ACTIONS(1719), - [sym_false] = ACTIONS(1719), - [sym_null] = ACTIONS(1719), - [sym_undefined] = ACTIONS(1719), - [anon_sym_AT] = ACTIONS(1717), - [anon_sym_static] = ACTIONS(1719), - [anon_sym_readonly] = ACTIONS(1719), - [anon_sym_get] = ACTIONS(1719), - [anon_sym_set] = ACTIONS(1719), - [anon_sym_declare] = ACTIONS(1719), - [anon_sym_public] = ACTIONS(1719), - [anon_sym_private] = ACTIONS(1719), - [anon_sym_protected] = ACTIONS(1719), - [anon_sym_override] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(1719), - [anon_sym_any] = ACTIONS(1719), - [anon_sym_number] = ACTIONS(1719), - [anon_sym_boolean] = ACTIONS(1719), - [anon_sym_string] = ACTIONS(1719), - [anon_sym_symbol] = ACTIONS(1719), - [anon_sym_object] = ACTIONS(1719), - [anon_sym_abstract] = ACTIONS(1719), - [anon_sym_satisfies] = ACTIONS(1719), - [anon_sym_interface] = ACTIONS(1719), - [anon_sym_enum] = ACTIONS(1719), - [sym__automatic_semicolon] = ACTIONS(1717), - [sym__ternary_qmark] = ACTIONS(1717), + [ts_builtin_sym_end] = ACTIONS(1720), + [sym_identifier] = ACTIONS(1722), + [anon_sym_export] = ACTIONS(1722), + [anon_sym_STAR] = ACTIONS(1722), + [anon_sym_default] = ACTIONS(1722), + [anon_sym_type] = ACTIONS(1722), + [anon_sym_as] = ACTIONS(1722), + [anon_sym_namespace] = ACTIONS(1722), + [anon_sym_LBRACE] = ACTIONS(1720), + [anon_sym_COMMA] = ACTIONS(1720), + [anon_sym_RBRACE] = ACTIONS(1720), + [anon_sym_typeof] = ACTIONS(1722), + [anon_sym_import] = ACTIONS(1722), + [anon_sym_with] = ACTIONS(1722), + [anon_sym_var] = ACTIONS(1722), + [anon_sym_let] = ACTIONS(1722), + [anon_sym_const] = ACTIONS(1722), + [anon_sym_BANG] = ACTIONS(1722), + [anon_sym_else] = ACTIONS(1722), + [anon_sym_if] = ACTIONS(1722), + [anon_sym_switch] = ACTIONS(1722), + [anon_sym_for] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(1720), + [anon_sym_await] = ACTIONS(1722), + [anon_sym_in] = ACTIONS(1722), + [anon_sym_while] = ACTIONS(1722), + [anon_sym_do] = ACTIONS(1722), + [anon_sym_try] = ACTIONS(1722), + [anon_sym_break] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(1722), + [anon_sym_debugger] = ACTIONS(1722), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_throw] = ACTIONS(1722), + [anon_sym_case] = ACTIONS(1722), + [anon_sym_yield] = ACTIONS(1722), + [anon_sym_LBRACK] = ACTIONS(1720), + [anon_sym_DOT] = ACTIONS(1722), + [anon_sym_class] = ACTIONS(1722), + [anon_sym_async] = ACTIONS(1722), + [anon_sym_function] = ACTIONS(1722), + [anon_sym_QMARK_DOT] = ACTIONS(1720), + [anon_sym_new] = ACTIONS(1722), + [anon_sym_using] = ACTIONS(1722), + [anon_sym_AMP_AMP] = ACTIONS(1720), + [anon_sym_PIPE_PIPE] = ACTIONS(1720), + [anon_sym_GT_GT] = ACTIONS(1722), + [anon_sym_GT_GT_GT] = ACTIONS(1720), + [anon_sym_LT_LT] = ACTIONS(1720), + [anon_sym_AMP] = ACTIONS(1722), + [anon_sym_CARET] = ACTIONS(1720), + [anon_sym_PIPE] = ACTIONS(1722), + [anon_sym_PLUS] = ACTIONS(1722), + [anon_sym_DASH] = ACTIONS(1722), + [anon_sym_SLASH] = ACTIONS(1722), + [anon_sym_PERCENT] = ACTIONS(1720), + [anon_sym_STAR_STAR] = ACTIONS(1720), + [anon_sym_LT] = ACTIONS(1722), + [anon_sym_LT_EQ] = ACTIONS(1720), + [anon_sym_EQ_EQ] = ACTIONS(1722), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1720), + [anon_sym_BANG_EQ] = ACTIONS(1722), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1720), + [anon_sym_GT_EQ] = ACTIONS(1720), + [anon_sym_GT] = ACTIONS(1722), + [anon_sym_QMARK_QMARK] = ACTIONS(1720), + [anon_sym_instanceof] = ACTIONS(1722), + [anon_sym_TILDE] = ACTIONS(1720), + [anon_sym_void] = ACTIONS(1722), + [anon_sym_delete] = ACTIONS(1722), + [anon_sym_PLUS_PLUS] = ACTIONS(1720), + [anon_sym_DASH_DASH] = ACTIONS(1720), + [anon_sym_DQUOTE] = ACTIONS(1720), + [anon_sym_SQUOTE] = ACTIONS(1720), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1720), + [sym_number] = ACTIONS(1720), + [sym_private_property_identifier] = ACTIONS(1720), + [sym_this] = ACTIONS(1722), + [sym_super] = ACTIONS(1722), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_null] = ACTIONS(1722), + [sym_undefined] = ACTIONS(1722), + [anon_sym_AT] = ACTIONS(1720), + [anon_sym_static] = ACTIONS(1722), + [anon_sym_readonly] = ACTIONS(1722), + [anon_sym_get] = ACTIONS(1722), + [anon_sym_set] = ACTIONS(1722), + [anon_sym_declare] = ACTIONS(1722), + [anon_sym_public] = ACTIONS(1722), + [anon_sym_private] = ACTIONS(1722), + [anon_sym_protected] = ACTIONS(1722), + [anon_sym_override] = ACTIONS(1722), + [anon_sym_module] = ACTIONS(1722), + [anon_sym_any] = ACTIONS(1722), + [anon_sym_number] = ACTIONS(1722), + [anon_sym_boolean] = ACTIONS(1722), + [anon_sym_string] = ACTIONS(1722), + [anon_sym_symbol] = ACTIONS(1722), + [anon_sym_object] = ACTIONS(1722), + [anon_sym_abstract] = ACTIONS(1722), + [anon_sym_satisfies] = ACTIONS(1722), + [anon_sym_interface] = ACTIONS(1722), + [anon_sym_enum] = ACTIONS(1722), + [sym__automatic_semicolon] = ACTIONS(1720), + [sym__ternary_qmark] = ACTIONS(1720), [sym_html_comment] = ACTIONS(5), }, [212] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1512), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym__formal_parameter] = STATE(5285), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1284), - [sym_subscript_expression] = STATE(1284), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_pattern] = STATE(4056), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1284), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_accessibility_modifier] = STATE(288), - [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(5285), - [sym_optional_parameter] = STATE(5285), - [sym__parameter_name] = STATE(3613), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1671), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(1673), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(779), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(805), - [anon_sym_private] = ACTIONS(805), - [anon_sym_protected] = ACTIONS(805), - [anon_sym_override] = ACTIONS(807), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [ts_builtin_sym_end] = ACTIONS(1690), + [sym_identifier] = ACTIONS(1692), + [anon_sym_export] = ACTIONS(1692), + [anon_sym_STAR] = ACTIONS(1692), + [anon_sym_default] = ACTIONS(1692), + [anon_sym_type] = ACTIONS(1692), + [anon_sym_as] = ACTIONS(1692), + [anon_sym_namespace] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1690), + [anon_sym_COMMA] = ACTIONS(1690), + [anon_sym_RBRACE] = ACTIONS(1690), + [anon_sym_typeof] = ACTIONS(1692), + [anon_sym_import] = ACTIONS(1692), + [anon_sym_with] = ACTIONS(1692), + [anon_sym_var] = ACTIONS(1692), + [anon_sym_let] = ACTIONS(1692), + [anon_sym_const] = ACTIONS(1692), + [anon_sym_BANG] = ACTIONS(1692), + [anon_sym_else] = ACTIONS(1692), + [anon_sym_if] = ACTIONS(1692), + [anon_sym_switch] = ACTIONS(1692), + [anon_sym_for] = ACTIONS(1692), + [anon_sym_LPAREN] = ACTIONS(1690), + [anon_sym_SEMI] = ACTIONS(1690), + [anon_sym_await] = ACTIONS(1692), + [anon_sym_in] = ACTIONS(1692), + [anon_sym_while] = ACTIONS(1692), + [anon_sym_do] = ACTIONS(1692), + [anon_sym_try] = ACTIONS(1692), + [anon_sym_break] = ACTIONS(1692), + [anon_sym_continue] = ACTIONS(1692), + [anon_sym_debugger] = ACTIONS(1692), + [anon_sym_return] = ACTIONS(1692), + [anon_sym_throw] = ACTIONS(1692), + [anon_sym_case] = ACTIONS(1692), + [anon_sym_yield] = ACTIONS(1692), + [anon_sym_LBRACK] = ACTIONS(1690), + [anon_sym_DOT] = ACTIONS(1692), + [anon_sym_class] = ACTIONS(1692), + [anon_sym_async] = ACTIONS(1692), + [anon_sym_function] = ACTIONS(1692), + [anon_sym_QMARK_DOT] = ACTIONS(1690), + [anon_sym_new] = ACTIONS(1692), + [anon_sym_using] = ACTIONS(1692), + [anon_sym_AMP_AMP] = ACTIONS(1690), + [anon_sym_PIPE_PIPE] = ACTIONS(1690), + [anon_sym_GT_GT] = ACTIONS(1692), + [anon_sym_GT_GT_GT] = ACTIONS(1690), + [anon_sym_LT_LT] = ACTIONS(1690), + [anon_sym_AMP] = ACTIONS(1692), + [anon_sym_CARET] = ACTIONS(1690), + [anon_sym_PIPE] = ACTIONS(1692), + [anon_sym_PLUS] = ACTIONS(1692), + [anon_sym_DASH] = ACTIONS(1692), + [anon_sym_SLASH] = ACTIONS(1692), + [anon_sym_PERCENT] = ACTIONS(1690), + [anon_sym_STAR_STAR] = ACTIONS(1690), + [anon_sym_LT] = ACTIONS(1692), + [anon_sym_LT_EQ] = ACTIONS(1690), + [anon_sym_EQ_EQ] = ACTIONS(1692), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1690), + [anon_sym_BANG_EQ] = ACTIONS(1692), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1690), + [anon_sym_GT_EQ] = ACTIONS(1690), + [anon_sym_GT] = ACTIONS(1692), + [anon_sym_QMARK_QMARK] = ACTIONS(1690), + [anon_sym_instanceof] = ACTIONS(1692), + [anon_sym_TILDE] = ACTIONS(1690), + [anon_sym_void] = ACTIONS(1692), + [anon_sym_delete] = ACTIONS(1692), + [anon_sym_PLUS_PLUS] = ACTIONS(1690), + [anon_sym_DASH_DASH] = ACTIONS(1690), + [anon_sym_DQUOTE] = ACTIONS(1690), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1690), + [sym_number] = ACTIONS(1690), + [sym_private_property_identifier] = ACTIONS(1690), + [sym_this] = ACTIONS(1692), + [sym_super] = ACTIONS(1692), + [sym_true] = ACTIONS(1692), + [sym_false] = ACTIONS(1692), + [sym_null] = ACTIONS(1692), + [sym_undefined] = ACTIONS(1692), + [anon_sym_AT] = ACTIONS(1690), + [anon_sym_static] = ACTIONS(1692), + [anon_sym_readonly] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1692), + [anon_sym_set] = ACTIONS(1692), + [anon_sym_declare] = ACTIONS(1692), + [anon_sym_public] = ACTIONS(1692), + [anon_sym_private] = ACTIONS(1692), + [anon_sym_protected] = ACTIONS(1692), + [anon_sym_override] = ACTIONS(1692), + [anon_sym_module] = ACTIONS(1692), + [anon_sym_any] = ACTIONS(1692), + [anon_sym_number] = ACTIONS(1692), + [anon_sym_boolean] = ACTIONS(1692), + [anon_sym_string] = ACTIONS(1692), + [anon_sym_symbol] = ACTIONS(1692), + [anon_sym_object] = ACTIONS(1692), + [anon_sym_abstract] = ACTIONS(1692), + [anon_sym_satisfies] = ACTIONS(1692), + [anon_sym_interface] = ACTIONS(1692), + [anon_sym_enum] = ACTIONS(1692), + [sym__automatic_semicolon] = ACTIONS(1724), + [sym__ternary_qmark] = ACTIONS(1690), [sym_html_comment] = ACTIONS(5), }, [213] = { - [sym_statement_block] = STATE(244), - [ts_builtin_sym_end] = ACTIONS(1717), - [sym_identifier] = ACTIONS(1719), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_default] = ACTIONS(1719), - [anon_sym_type] = ACTIONS(1719), - [anon_sym_as] = ACTIONS(1719), - [anon_sym_namespace] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1721), - [anon_sym_COMMA] = ACTIONS(1717), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_typeof] = ACTIONS(1719), - [anon_sym_import] = ACTIONS(1719), - [anon_sym_with] = ACTIONS(1719), - [anon_sym_var] = ACTIONS(1719), - [anon_sym_let] = ACTIONS(1719), - [anon_sym_const] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1719), - [anon_sym_else] = ACTIONS(1719), - [anon_sym_if] = ACTIONS(1719), - [anon_sym_switch] = ACTIONS(1719), - [anon_sym_for] = ACTIONS(1719), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1717), - [anon_sym_await] = ACTIONS(1719), - [anon_sym_in] = ACTIONS(1719), - [anon_sym_while] = ACTIONS(1719), - [anon_sym_do] = ACTIONS(1719), - [anon_sym_try] = ACTIONS(1719), - [anon_sym_break] = ACTIONS(1719), - [anon_sym_continue] = ACTIONS(1719), - [anon_sym_debugger] = ACTIONS(1719), - [anon_sym_return] = ACTIONS(1719), - [anon_sym_throw] = ACTIONS(1719), - [anon_sym_case] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1719), - [anon_sym_LBRACK] = ACTIONS(1717), - [sym_glimmer_opening_tag] = ACTIONS(1717), - [anon_sym_DOT] = ACTIONS(1727), - [anon_sym_class] = ACTIONS(1719), - [anon_sym_async] = ACTIONS(1719), - [anon_sym_function] = ACTIONS(1719), - [anon_sym_QMARK_DOT] = ACTIONS(1717), - [anon_sym_new] = ACTIONS(1719), - [anon_sym_using] = ACTIONS(1719), - [anon_sym_AMP_AMP] = ACTIONS(1717), - [anon_sym_PIPE_PIPE] = ACTIONS(1717), - [anon_sym_GT_GT] = ACTIONS(1719), - [anon_sym_GT_GT_GT] = ACTIONS(1717), - [anon_sym_LT_LT] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1719), - [anon_sym_CARET] = ACTIONS(1717), - [anon_sym_PIPE] = ACTIONS(1719), - [anon_sym_PLUS] = ACTIONS(1719), - [anon_sym_DASH] = ACTIONS(1719), - [anon_sym_SLASH] = ACTIONS(1719), - [anon_sym_PERCENT] = ACTIONS(1717), - [anon_sym_STAR_STAR] = ACTIONS(1717), - [anon_sym_LT] = ACTIONS(1719), - [anon_sym_LT_EQ] = ACTIONS(1717), - [anon_sym_EQ_EQ] = ACTIONS(1719), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1717), - [anon_sym_BANG_EQ] = ACTIONS(1719), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1717), - [anon_sym_GT_EQ] = ACTIONS(1717), - [anon_sym_GT] = ACTIONS(1719), - [anon_sym_QMARK_QMARK] = ACTIONS(1717), - [anon_sym_instanceof] = ACTIONS(1719), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_void] = ACTIONS(1719), - [anon_sym_delete] = ACTIONS(1719), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1717), - [anon_sym_SQUOTE] = ACTIONS(1717), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1717), - [sym_number] = ACTIONS(1717), - [sym_private_property_identifier] = ACTIONS(1717), - [sym_this] = ACTIONS(1719), - [sym_super] = ACTIONS(1719), - [sym_true] = ACTIONS(1719), - [sym_false] = ACTIONS(1719), - [sym_null] = ACTIONS(1719), - [sym_undefined] = ACTIONS(1719), - [anon_sym_AT] = ACTIONS(1717), - [anon_sym_static] = ACTIONS(1719), - [anon_sym_readonly] = ACTIONS(1719), - [anon_sym_get] = ACTIONS(1719), - [anon_sym_set] = ACTIONS(1719), - [anon_sym_declare] = ACTIONS(1719), - [anon_sym_public] = ACTIONS(1719), - [anon_sym_private] = ACTIONS(1719), - [anon_sym_protected] = ACTIONS(1719), - [anon_sym_override] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(1719), - [anon_sym_any] = ACTIONS(1719), - [anon_sym_number] = ACTIONS(1719), - [anon_sym_boolean] = ACTIONS(1719), - [anon_sym_string] = ACTIONS(1719), - [anon_sym_symbol] = ACTIONS(1719), - [anon_sym_object] = ACTIONS(1719), - [anon_sym_abstract] = ACTIONS(1719), - [anon_sym_satisfies] = ACTIONS(1719), - [anon_sym_interface] = ACTIONS(1719), - [anon_sym_enum] = ACTIONS(1719), - [sym__automatic_semicolon] = ACTIONS(1717), - [sym__ternary_qmark] = ACTIONS(1717), + [ts_builtin_sym_end] = ACTIONS(1726), + [sym_identifier] = ACTIONS(1728), + [anon_sym_export] = ACTIONS(1728), + [anon_sym_STAR] = ACTIONS(1728), + [anon_sym_default] = ACTIONS(1728), + [anon_sym_type] = ACTIONS(1728), + [anon_sym_as] = ACTIONS(1728), + [anon_sym_namespace] = ACTIONS(1728), + [anon_sym_LBRACE] = ACTIONS(1726), + [anon_sym_COMMA] = ACTIONS(1726), + [anon_sym_RBRACE] = ACTIONS(1726), + [anon_sym_typeof] = ACTIONS(1728), + [anon_sym_import] = ACTIONS(1728), + [anon_sym_with] = ACTIONS(1728), + [anon_sym_var] = ACTIONS(1728), + [anon_sym_let] = ACTIONS(1728), + [anon_sym_const] = ACTIONS(1728), + [anon_sym_BANG] = ACTIONS(1728), + [anon_sym_else] = ACTIONS(1728), + [anon_sym_if] = ACTIONS(1728), + [anon_sym_switch] = ACTIONS(1728), + [anon_sym_for] = ACTIONS(1728), + [anon_sym_LPAREN] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_await] = ACTIONS(1728), + [anon_sym_in] = ACTIONS(1728), + [anon_sym_while] = ACTIONS(1728), + [anon_sym_do] = ACTIONS(1728), + [anon_sym_try] = ACTIONS(1728), + [anon_sym_break] = ACTIONS(1728), + [anon_sym_continue] = ACTIONS(1728), + [anon_sym_debugger] = ACTIONS(1728), + [anon_sym_return] = ACTIONS(1728), + [anon_sym_throw] = ACTIONS(1728), + [anon_sym_case] = ACTIONS(1728), + [anon_sym_yield] = ACTIONS(1728), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_DOT] = ACTIONS(1728), + [anon_sym_class] = ACTIONS(1728), + [anon_sym_async] = ACTIONS(1728), + [anon_sym_function] = ACTIONS(1728), + [anon_sym_QMARK_DOT] = ACTIONS(1726), + [anon_sym_new] = ACTIONS(1728), + [anon_sym_using] = ACTIONS(1728), + [anon_sym_AMP_AMP] = ACTIONS(1726), + [anon_sym_PIPE_PIPE] = ACTIONS(1726), + [anon_sym_GT_GT] = ACTIONS(1728), + [anon_sym_GT_GT_GT] = ACTIONS(1726), + [anon_sym_LT_LT] = ACTIONS(1726), + [anon_sym_AMP] = ACTIONS(1728), + [anon_sym_CARET] = ACTIONS(1726), + [anon_sym_PIPE] = ACTIONS(1728), + [anon_sym_PLUS] = ACTIONS(1728), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_SLASH] = ACTIONS(1728), + [anon_sym_PERCENT] = ACTIONS(1726), + [anon_sym_STAR_STAR] = ACTIONS(1726), + [anon_sym_LT] = ACTIONS(1728), + [anon_sym_LT_EQ] = ACTIONS(1726), + [anon_sym_EQ_EQ] = ACTIONS(1728), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1726), + [anon_sym_BANG_EQ] = ACTIONS(1728), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1726), + [anon_sym_GT_EQ] = ACTIONS(1726), + [anon_sym_GT] = ACTIONS(1728), + [anon_sym_QMARK_QMARK] = ACTIONS(1726), + [anon_sym_instanceof] = ACTIONS(1728), + [anon_sym_TILDE] = ACTIONS(1726), + [anon_sym_void] = ACTIONS(1728), + [anon_sym_delete] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1726), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1726), + [anon_sym_SQUOTE] = ACTIONS(1726), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1726), + [sym_number] = ACTIONS(1726), + [sym_private_property_identifier] = ACTIONS(1726), + [sym_this] = ACTIONS(1728), + [sym_super] = ACTIONS(1728), + [sym_true] = ACTIONS(1728), + [sym_false] = ACTIONS(1728), + [sym_null] = ACTIONS(1728), + [sym_undefined] = ACTIONS(1728), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_static] = ACTIONS(1728), + [anon_sym_readonly] = ACTIONS(1728), + [anon_sym_get] = ACTIONS(1728), + [anon_sym_set] = ACTIONS(1728), + [anon_sym_declare] = ACTIONS(1728), + [anon_sym_public] = ACTIONS(1728), + [anon_sym_private] = ACTIONS(1728), + [anon_sym_protected] = ACTIONS(1728), + [anon_sym_override] = ACTIONS(1728), + [anon_sym_module] = ACTIONS(1728), + [anon_sym_any] = ACTIONS(1728), + [anon_sym_number] = ACTIONS(1728), + [anon_sym_boolean] = ACTIONS(1728), + [anon_sym_string] = ACTIONS(1728), + [anon_sym_symbol] = ACTIONS(1728), + [anon_sym_object] = ACTIONS(1728), + [anon_sym_abstract] = ACTIONS(1728), + [anon_sym_satisfies] = ACTIONS(1728), + [anon_sym_interface] = ACTIONS(1728), + [anon_sym_enum] = ACTIONS(1728), + [sym__automatic_semicolon] = ACTIONS(1726), + [sym__ternary_qmark] = ACTIONS(1726), [sym_html_comment] = ACTIONS(5), }, [214] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(2113), - [sym_primary_expression] = STATE(1512), + [ts_builtin_sym_end] = ACTIONS(1730), + [sym_identifier] = ACTIONS(1732), + [anon_sym_export] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1734), + [anon_sym_default] = ACTIONS(1732), + [anon_sym_type] = ACTIONS(1732), + [anon_sym_as] = ACTIONS(1734), + [anon_sym_namespace] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_COMMA] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1730), + [anon_sym_typeof] = ACTIONS(1732), + [anon_sym_import] = ACTIONS(1732), + [anon_sym_with] = ACTIONS(1732), + [anon_sym_var] = ACTIONS(1732), + [anon_sym_let] = ACTIONS(1732), + [anon_sym_const] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_switch] = ACTIONS(1732), + [anon_sym_for] = ACTIONS(1732), + [anon_sym_LPAREN] = ACTIONS(1730), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_await] = ACTIONS(1732), + [anon_sym_in] = ACTIONS(1734), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_do] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_debugger] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_case] = ACTIONS(1732), + [anon_sym_yield] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_DOT] = ACTIONS(1734), + [anon_sym_class] = ACTIONS(1732), + [anon_sym_async] = ACTIONS(1732), + [anon_sym_function] = ACTIONS(1732), + [anon_sym_QMARK_DOT] = ACTIONS(1736), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_using] = ACTIONS(1732), + [anon_sym_AMP_AMP] = ACTIONS(1736), + [anon_sym_PIPE_PIPE] = ACTIONS(1736), + [anon_sym_GT_GT] = ACTIONS(1734), + [anon_sym_GT_GT_GT] = ACTIONS(1736), + [anon_sym_LT_LT] = ACTIONS(1736), + [anon_sym_AMP] = ACTIONS(1734), + [anon_sym_CARET] = ACTIONS(1736), + [anon_sym_PIPE] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1736), + [anon_sym_STAR_STAR] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_LT_EQ] = ACTIONS(1736), + [anon_sym_EQ_EQ] = ACTIONS(1734), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), + [anon_sym_BANG_EQ] = ACTIONS(1734), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), + [anon_sym_GT_EQ] = ACTIONS(1736), + [anon_sym_GT] = ACTIONS(1734), + [anon_sym_QMARK_QMARK] = ACTIONS(1736), + [anon_sym_instanceof] = ACTIONS(1734), + [anon_sym_TILDE] = ACTIONS(1730), + [anon_sym_void] = ACTIONS(1732), + [anon_sym_delete] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1730), + [anon_sym_SQUOTE] = ACTIONS(1730), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(1730), + [sym_private_property_identifier] = ACTIONS(1730), + [sym_this] = ACTIONS(1732), + [sym_super] = ACTIONS(1732), + [sym_true] = ACTIONS(1732), + [sym_false] = ACTIONS(1732), + [sym_null] = ACTIONS(1732), + [sym_undefined] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(1732), + [anon_sym_readonly] = ACTIONS(1732), + [anon_sym_get] = ACTIONS(1732), + [anon_sym_set] = ACTIONS(1732), + [anon_sym_declare] = ACTIONS(1732), + [anon_sym_public] = ACTIONS(1732), + [anon_sym_private] = ACTIONS(1732), + [anon_sym_protected] = ACTIONS(1732), + [anon_sym_override] = ACTIONS(1732), + [anon_sym_module] = ACTIONS(1732), + [anon_sym_any] = ACTIONS(1732), + [anon_sym_number] = ACTIONS(1732), + [anon_sym_boolean] = ACTIONS(1732), + [anon_sym_string] = ACTIONS(1732), + [anon_sym_symbol] = ACTIONS(1732), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_abstract] = ACTIONS(1732), + [anon_sym_satisfies] = ACTIONS(1734), + [anon_sym_interface] = ACTIONS(1732), + [anon_sym_enum] = ACTIONS(1732), + [sym__automatic_semicolon] = ACTIONS(1736), + [sym__ternary_qmark] = ACTIONS(1736), + [sym_html_comment] = ACTIONS(5), + }, + [215] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2126), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4445), - [sym_assignment_pattern] = STATE(5126), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4445), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(4425), + [sym_assignment_pattern] = STATE(4969), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(4425), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1379), - [sym_subscript_expression] = STATE(1379), + [sym_member_expression] = STATE(1396), + [sym_subscript_expression] = STATE(1396), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4445), - [sym_spread_element] = STATE(5132), + [sym__destructuring_pattern] = STATE(4425), + [sym_spread_element] = STATE(4946), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_pattern] = STATE(4388), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1379), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4406), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1396), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [aux_sym_array_repeat1] = STATE(4582), - [aux_sym_array_pattern_repeat1] = STATE(4619), - [sym_identifier] = ACTIONS(1691), - [anon_sym_export] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(1693), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(819), - [anon_sym_RBRACK] = ACTIONS(1695), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1697), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1699), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(580), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(580), - [anon_sym_number] = ACTIONS(580), - [anon_sym_boolean] = ACTIONS(580), - [anon_sym_string] = ACTIONS(580), - [anon_sym_symbol] = ACTIONS(580), - [anon_sym_object] = ACTIONS(580), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [aux_sym_array_repeat1] = STATE(4955), + [aux_sym_array_pattern_repeat1] = STATE(4977), + [sym_identifier] = ACTIONS(1738), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_RBRACK] = ACTIONS(1742), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1744), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1746), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(541), + [anon_sym_number] = ACTIONS(541), + [anon_sym_boolean] = ACTIONS(541), + [anon_sym_string] = ACTIONS(541), + [anon_sym_symbol] = ACTIONS(541), + [anon_sym_object] = ACTIONS(541), [sym_html_comment] = ACTIONS(5), }, - [215] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(2178), - [sym_primary_expression] = STATE(1512), + [216] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2126), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4445), - [sym_assignment_pattern] = STATE(5126), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4445), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(4425), + [sym_assignment_pattern] = STATE(4969), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(4425), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1379), - [sym_subscript_expression] = STATE(1379), + [sym_member_expression] = STATE(1396), + [sym_subscript_expression] = STATE(1396), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4445), - [sym_spread_element] = STATE(4611), + [sym__destructuring_pattern] = STATE(4425), + [sym_spread_element] = STATE(4946), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_pattern] = STATE(4388), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1379), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4406), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1396), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [aux_sym_array_repeat1] = STATE(4617), - [aux_sym_array_pattern_repeat1] = STATE(4619), - [sym_identifier] = ACTIONS(1691), - [anon_sym_export] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(1693), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(819), - [anon_sym_RBRACK] = ACTIONS(1729), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1697), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1699), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(580), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(580), - [anon_sym_number] = ACTIONS(580), - [anon_sym_boolean] = ACTIONS(580), - [anon_sym_string] = ACTIONS(580), - [anon_sym_symbol] = ACTIONS(580), - [anon_sym_object] = ACTIONS(580), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [aux_sym_array_repeat1] = STATE(4955), + [aux_sym_array_pattern_repeat1] = STATE(4977), + [sym_identifier] = ACTIONS(1738), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_RBRACK] = ACTIONS(1748), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1744), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1746), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(541), + [anon_sym_number] = ACTIONS(541), + [anon_sym_boolean] = ACTIONS(541), + [anon_sym_string] = ACTIONS(541), + [anon_sym_symbol] = ACTIONS(541), + [anon_sym_object] = ACTIONS(541), [sym_html_comment] = ACTIONS(5), }, - [216] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(2178), - [sym_primary_expression] = STATE(1512), + [217] = { + [ts_builtin_sym_end] = ACTIONS(1750), + [sym_identifier] = ACTIONS(1752), + [anon_sym_export] = ACTIONS(1752), + [anon_sym_STAR] = ACTIONS(1752), + [anon_sym_default] = ACTIONS(1752), + [anon_sym_type] = ACTIONS(1752), + [anon_sym_as] = ACTIONS(1752), + [anon_sym_namespace] = ACTIONS(1752), + [anon_sym_LBRACE] = ACTIONS(1750), + [anon_sym_COMMA] = ACTIONS(1750), + [anon_sym_RBRACE] = ACTIONS(1750), + [anon_sym_typeof] = ACTIONS(1752), + [anon_sym_import] = ACTIONS(1752), + [anon_sym_with] = ACTIONS(1752), + [anon_sym_var] = ACTIONS(1752), + [anon_sym_let] = ACTIONS(1752), + [anon_sym_const] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1752), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1752), + [anon_sym_switch] = ACTIONS(1752), + [anon_sym_for] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1750), + [anon_sym_await] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1752), + [anon_sym_while] = ACTIONS(1752), + [anon_sym_do] = ACTIONS(1752), + [anon_sym_try] = ACTIONS(1752), + [anon_sym_break] = ACTIONS(1752), + [anon_sym_continue] = ACTIONS(1752), + [anon_sym_debugger] = ACTIONS(1752), + [anon_sym_return] = ACTIONS(1752), + [anon_sym_throw] = ACTIONS(1752), + [anon_sym_case] = ACTIONS(1752), + [anon_sym_yield] = ACTIONS(1752), + [anon_sym_LBRACK] = ACTIONS(1750), + [anon_sym_DOT] = ACTIONS(1752), + [anon_sym_class] = ACTIONS(1752), + [anon_sym_async] = ACTIONS(1752), + [anon_sym_function] = ACTIONS(1752), + [anon_sym_QMARK_DOT] = ACTIONS(1750), + [anon_sym_new] = ACTIONS(1752), + [anon_sym_using] = ACTIONS(1752), + [anon_sym_AMP_AMP] = ACTIONS(1750), + [anon_sym_PIPE_PIPE] = ACTIONS(1750), + [anon_sym_GT_GT] = ACTIONS(1752), + [anon_sym_GT_GT_GT] = ACTIONS(1750), + [anon_sym_LT_LT] = ACTIONS(1750), + [anon_sym_AMP] = ACTIONS(1752), + [anon_sym_CARET] = ACTIONS(1750), + [anon_sym_PIPE] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_SLASH] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1750), + [anon_sym_STAR_STAR] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_LT_EQ] = ACTIONS(1750), + [anon_sym_EQ_EQ] = ACTIONS(1752), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1750), + [anon_sym_BANG_EQ] = ACTIONS(1752), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1750), + [anon_sym_GT_EQ] = ACTIONS(1750), + [anon_sym_GT] = ACTIONS(1752), + [anon_sym_QMARK_QMARK] = ACTIONS(1750), + [anon_sym_instanceof] = ACTIONS(1752), + [anon_sym_TILDE] = ACTIONS(1750), + [anon_sym_void] = ACTIONS(1752), + [anon_sym_delete] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1750), + [anon_sym_DASH_DASH] = ACTIONS(1750), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1750), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1750), + [sym_number] = ACTIONS(1750), + [sym_private_property_identifier] = ACTIONS(1750), + [sym_this] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_true] = ACTIONS(1752), + [sym_false] = ACTIONS(1752), + [sym_null] = ACTIONS(1752), + [sym_undefined] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(1750), + [anon_sym_static] = ACTIONS(1752), + [anon_sym_readonly] = ACTIONS(1752), + [anon_sym_get] = ACTIONS(1752), + [anon_sym_set] = ACTIONS(1752), + [anon_sym_declare] = ACTIONS(1752), + [anon_sym_public] = ACTIONS(1752), + [anon_sym_private] = ACTIONS(1752), + [anon_sym_protected] = ACTIONS(1752), + [anon_sym_override] = ACTIONS(1752), + [anon_sym_module] = ACTIONS(1752), + [anon_sym_any] = ACTIONS(1752), + [anon_sym_number] = ACTIONS(1752), + [anon_sym_boolean] = ACTIONS(1752), + [anon_sym_string] = ACTIONS(1752), + [anon_sym_symbol] = ACTIONS(1752), + [anon_sym_object] = ACTIONS(1752), + [anon_sym_abstract] = ACTIONS(1752), + [anon_sym_satisfies] = ACTIONS(1752), + [anon_sym_interface] = ACTIONS(1752), + [anon_sym_enum] = ACTIONS(1752), + [sym__automatic_semicolon] = ACTIONS(1750), + [sym__ternary_qmark] = ACTIONS(1750), + [sym_html_comment] = ACTIONS(5), + }, + [218] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4445), - [sym_assignment_pattern] = STATE(5126), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4445), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym__formal_parameter] = STATE(5169), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1379), - [sym_subscript_expression] = STATE(1379), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4445), - [sym_spread_element] = STATE(4611), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_pattern] = STATE(4388), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1379), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4339), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [aux_sym_array_repeat1] = STATE(4617), - [aux_sym_array_pattern_repeat1] = STATE(4619), - [sym_identifier] = ACTIONS(1691), - [anon_sym_export] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(1693), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(819), - [anon_sym_RBRACK] = ACTIONS(1731), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1697), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1699), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(580), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(580), - [anon_sym_number] = ACTIONS(580), - [anon_sym_boolean] = ACTIONS(580), - [anon_sym_string] = ACTIONS(580), - [anon_sym_symbol] = ACTIONS(580), - [anon_sym_object] = ACTIONS(580), - [sym_html_comment] = ACTIONS(5), - }, - [217] = { - [ts_builtin_sym_end] = ACTIONS(1733), - [sym_identifier] = ACTIONS(1735), - [anon_sym_export] = ACTIONS(1735), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_default] = ACTIONS(1735), - [anon_sym_type] = ACTIONS(1735), - [anon_sym_as] = ACTIONS(1737), - [anon_sym_namespace] = ACTIONS(1735), - [anon_sym_LBRACE] = ACTIONS(1733), - [anon_sym_COMMA] = ACTIONS(1739), - [anon_sym_RBRACE] = ACTIONS(1733), - [anon_sym_typeof] = ACTIONS(1735), - [anon_sym_import] = ACTIONS(1735), - [anon_sym_with] = ACTIONS(1735), - [anon_sym_var] = ACTIONS(1735), - [anon_sym_let] = ACTIONS(1735), - [anon_sym_const] = ACTIONS(1735), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_else] = ACTIONS(1735), - [anon_sym_if] = ACTIONS(1735), - [anon_sym_switch] = ACTIONS(1735), - [anon_sym_for] = ACTIONS(1735), - [anon_sym_LPAREN] = ACTIONS(1733), - [anon_sym_SEMI] = ACTIONS(1733), - [anon_sym_await] = ACTIONS(1735), - [anon_sym_in] = ACTIONS(1737), - [anon_sym_while] = ACTIONS(1735), - [anon_sym_do] = ACTIONS(1735), - [anon_sym_try] = 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_case] = ACTIONS(1735), - [anon_sym_yield] = ACTIONS(1735), - [anon_sym_LBRACK] = ACTIONS(1733), - [sym_glimmer_opening_tag] = ACTIONS(1733), - [anon_sym_DOT] = ACTIONS(1737), - [anon_sym_class] = ACTIONS(1735), - [anon_sym_async] = ACTIONS(1735), - [anon_sym_function] = ACTIONS(1735), - [anon_sym_QMARK_DOT] = ACTIONS(1739), - [anon_sym_new] = ACTIONS(1735), - [anon_sym_using] = ACTIONS(1735), - [anon_sym_AMP_AMP] = ACTIONS(1739), - [anon_sym_PIPE_PIPE] = ACTIONS(1739), - [anon_sym_GT_GT] = ACTIONS(1737), - [anon_sym_GT_GT_GT] = ACTIONS(1739), - [anon_sym_LT_LT] = ACTIONS(1739), - [anon_sym_AMP] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(1739), - [anon_sym_PIPE] = ACTIONS(1737), - [anon_sym_PLUS] = ACTIONS(1735), - [anon_sym_DASH] = ACTIONS(1735), - [anon_sym_SLASH] = ACTIONS(1735), - [anon_sym_PERCENT] = ACTIONS(1739), - [anon_sym_STAR_STAR] = ACTIONS(1739), - [anon_sym_LT] = ACTIONS(1735), - [anon_sym_LT_EQ] = ACTIONS(1739), - [anon_sym_EQ_EQ] = ACTIONS(1737), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1739), - [anon_sym_BANG_EQ] = ACTIONS(1737), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1739), - [anon_sym_GT_EQ] = ACTIONS(1739), - [anon_sym_GT] = ACTIONS(1737), - [anon_sym_QMARK_QMARK] = ACTIONS(1739), - [anon_sym_instanceof] = ACTIONS(1737), - [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(5), - [anon_sym_BQUOTE] = ACTIONS(1733), - [sym_number] = ACTIONS(1733), - [sym_private_property_identifier] = 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_readonly] = 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_override] = 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_object] = ACTIONS(1735), - [anon_sym_abstract] = ACTIONS(1735), - [anon_sym_satisfies] = ACTIONS(1737), - [anon_sym_interface] = ACTIONS(1735), - [anon_sym_enum] = ACTIONS(1735), - [sym__automatic_semicolon] = ACTIONS(1741), - [sym__ternary_qmark] = ACTIONS(1739), - [sym_html_comment] = ACTIONS(5), - }, - [218] = { - [ts_builtin_sym_end] = ACTIONS(1743), - [sym_identifier] = ACTIONS(1745), - [anon_sym_export] = ACTIONS(1745), - [anon_sym_STAR] = ACTIONS(1745), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_type] = ACTIONS(1745), - [anon_sym_as] = ACTIONS(1745), - [anon_sym_namespace] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1743), - [anon_sym_COMMA] = ACTIONS(1743), - [anon_sym_RBRACE] = ACTIONS(1743), - [anon_sym_typeof] = ACTIONS(1745), - [anon_sym_import] = ACTIONS(1745), - [anon_sym_with] = ACTIONS(1745), - [anon_sym_var] = ACTIONS(1745), - [anon_sym_let] = ACTIONS(1745), - [anon_sym_const] = ACTIONS(1745), - [anon_sym_BANG] = ACTIONS(1745), - [anon_sym_else] = ACTIONS(1745), - [anon_sym_if] = ACTIONS(1745), - [anon_sym_switch] = ACTIONS(1745), - [anon_sym_for] = ACTIONS(1745), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_SEMI] = ACTIONS(1743), - [anon_sym_await] = ACTIONS(1745), - [anon_sym_in] = ACTIONS(1745), - [anon_sym_while] = ACTIONS(1745), - [anon_sym_do] = ACTIONS(1745), - [anon_sym_try] = ACTIONS(1745), - [anon_sym_break] = ACTIONS(1745), - [anon_sym_continue] = ACTIONS(1745), - [anon_sym_debugger] = ACTIONS(1745), - [anon_sym_return] = ACTIONS(1745), - [anon_sym_throw] = ACTIONS(1745), - [anon_sym_case] = ACTIONS(1745), - [anon_sym_yield] = ACTIONS(1745), - [anon_sym_LBRACK] = ACTIONS(1743), - [sym_glimmer_opening_tag] = ACTIONS(1743), - [anon_sym_DOT] = ACTIONS(1745), - [anon_sym_class] = ACTIONS(1745), - [anon_sym_async] = ACTIONS(1745), - [anon_sym_function] = ACTIONS(1745), - [anon_sym_QMARK_DOT] = ACTIONS(1743), - [anon_sym_new] = ACTIONS(1745), - [anon_sym_using] = ACTIONS(1745), - [anon_sym_AMP_AMP] = ACTIONS(1743), - [anon_sym_PIPE_PIPE] = ACTIONS(1743), - [anon_sym_GT_GT] = ACTIONS(1745), - [anon_sym_GT_GT_GT] = ACTIONS(1743), - [anon_sym_LT_LT] = ACTIONS(1743), - [anon_sym_AMP] = ACTIONS(1745), - [anon_sym_CARET] = ACTIONS(1743), - [anon_sym_PIPE] = ACTIONS(1745), - [anon_sym_PLUS] = ACTIONS(1745), - [anon_sym_DASH] = ACTIONS(1745), - [anon_sym_SLASH] = ACTIONS(1745), - [anon_sym_PERCENT] = ACTIONS(1743), - [anon_sym_STAR_STAR] = ACTIONS(1743), - [anon_sym_LT] = ACTIONS(1745), - [anon_sym_LT_EQ] = ACTIONS(1743), - [anon_sym_EQ_EQ] = ACTIONS(1745), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1743), - [anon_sym_BANG_EQ] = ACTIONS(1745), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1743), - [anon_sym_GT_EQ] = ACTIONS(1743), - [anon_sym_GT] = ACTIONS(1745), - [anon_sym_QMARK_QMARK] = ACTIONS(1743), - [anon_sym_instanceof] = ACTIONS(1745), - [anon_sym_TILDE] = ACTIONS(1743), - [anon_sym_void] = ACTIONS(1745), - [anon_sym_delete] = ACTIONS(1745), - [anon_sym_PLUS_PLUS] = ACTIONS(1743), - [anon_sym_DASH_DASH] = ACTIONS(1743), - [anon_sym_DQUOTE] = ACTIONS(1743), - [anon_sym_SQUOTE] = ACTIONS(1743), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1743), - [sym_number] = ACTIONS(1743), - [sym_private_property_identifier] = ACTIONS(1743), - [sym_this] = ACTIONS(1745), - [sym_super] = ACTIONS(1745), - [sym_true] = ACTIONS(1745), - [sym_false] = ACTIONS(1745), - [sym_null] = ACTIONS(1745), - [sym_undefined] = ACTIONS(1745), - [anon_sym_AT] = ACTIONS(1743), - [anon_sym_static] = ACTIONS(1745), - [anon_sym_readonly] = ACTIONS(1745), - [anon_sym_get] = ACTIONS(1745), - [anon_sym_set] = ACTIONS(1745), - [anon_sym_declare] = ACTIONS(1745), - [anon_sym_public] = ACTIONS(1745), - [anon_sym_private] = ACTIONS(1745), - [anon_sym_protected] = ACTIONS(1745), - [anon_sym_override] = ACTIONS(1745), - [anon_sym_module] = ACTIONS(1745), - [anon_sym_any] = ACTIONS(1745), - [anon_sym_number] = ACTIONS(1745), - [anon_sym_boolean] = ACTIONS(1745), - [anon_sym_string] = ACTIONS(1745), - [anon_sym_symbol] = ACTIONS(1745), - [anon_sym_object] = ACTIONS(1745), - [anon_sym_abstract] = ACTIONS(1745), - [anon_sym_satisfies] = ACTIONS(1745), - [anon_sym_interface] = ACTIONS(1745), - [anon_sym_enum] = ACTIONS(1745), - [sym__automatic_semicolon] = ACTIONS(1743), - [sym__ternary_qmark] = ACTIONS(1743), + [sym_accessibility_modifier] = STATE(288), + [sym_override_modifier] = STATE(303), + [sym_required_parameter] = STATE(5169), + [sym_optional_parameter] = STATE(5169), + [sym__parameter_name] = STATE(3624), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(267), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(1666), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1668), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(798), + [anon_sym_private] = ACTIONS(798), + [anon_sym_protected] = ACTIONS(798), + [anon_sym_override] = ACTIONS(800), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, [219] = { - [ts_builtin_sym_end] = ACTIONS(1747), - [sym_identifier] = ACTIONS(1749), - [anon_sym_export] = ACTIONS(1749), - [anon_sym_STAR] = ACTIONS(1749), - [anon_sym_default] = ACTIONS(1749), - [anon_sym_type] = ACTIONS(1749), - [anon_sym_as] = ACTIONS(1749), - [anon_sym_namespace] = ACTIONS(1749), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_COMMA] = ACTIONS(1747), - [anon_sym_RBRACE] = ACTIONS(1747), - [anon_sym_typeof] = ACTIONS(1749), - [anon_sym_import] = ACTIONS(1749), - [anon_sym_with] = ACTIONS(1749), - [anon_sym_var] = ACTIONS(1749), - [anon_sym_let] = ACTIONS(1749), - [anon_sym_const] = ACTIONS(1749), - [anon_sym_BANG] = ACTIONS(1749), - [anon_sym_else] = ACTIONS(1749), - [anon_sym_if] = ACTIONS(1749), - [anon_sym_switch] = ACTIONS(1749), - [anon_sym_for] = ACTIONS(1749), - [anon_sym_LPAREN] = ACTIONS(1747), - [anon_sym_SEMI] = ACTIONS(1747), - [anon_sym_await] = ACTIONS(1749), - [anon_sym_in] = ACTIONS(1749), - [anon_sym_while] = ACTIONS(1749), - [anon_sym_do] = ACTIONS(1749), - [anon_sym_try] = ACTIONS(1749), - [anon_sym_break] = ACTIONS(1749), - [anon_sym_continue] = ACTIONS(1749), - [anon_sym_debugger] = ACTIONS(1749), - [anon_sym_return] = ACTIONS(1749), - [anon_sym_throw] = ACTIONS(1749), - [anon_sym_case] = ACTIONS(1749), - [anon_sym_yield] = ACTIONS(1749), - [anon_sym_LBRACK] = ACTIONS(1747), - [sym_glimmer_opening_tag] = ACTIONS(1747), - [anon_sym_DOT] = ACTIONS(1749), - [anon_sym_class] = ACTIONS(1749), - [anon_sym_async] = ACTIONS(1749), - [anon_sym_function] = ACTIONS(1749), - [anon_sym_QMARK_DOT] = ACTIONS(1747), - [anon_sym_new] = ACTIONS(1749), - [anon_sym_using] = ACTIONS(1749), - [anon_sym_AMP_AMP] = ACTIONS(1747), - [anon_sym_PIPE_PIPE] = ACTIONS(1747), - [anon_sym_GT_GT] = ACTIONS(1749), - [anon_sym_GT_GT_GT] = ACTIONS(1747), - [anon_sym_LT_LT] = ACTIONS(1747), - [anon_sym_AMP] = ACTIONS(1749), - [anon_sym_CARET] = ACTIONS(1747), - [anon_sym_PIPE] = ACTIONS(1749), - [anon_sym_PLUS] = ACTIONS(1749), - [anon_sym_DASH] = ACTIONS(1749), - [anon_sym_SLASH] = ACTIONS(1749), - [anon_sym_PERCENT] = ACTIONS(1747), - [anon_sym_STAR_STAR] = ACTIONS(1747), - [anon_sym_LT] = ACTIONS(1749), - [anon_sym_LT_EQ] = ACTIONS(1747), - [anon_sym_EQ_EQ] = ACTIONS(1749), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1747), - [anon_sym_BANG_EQ] = ACTIONS(1749), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1747), - [anon_sym_GT_EQ] = ACTIONS(1747), - [anon_sym_GT] = ACTIONS(1749), - [anon_sym_QMARK_QMARK] = ACTIONS(1747), - [anon_sym_instanceof] = ACTIONS(1749), - [anon_sym_TILDE] = ACTIONS(1747), - [anon_sym_void] = ACTIONS(1749), - [anon_sym_delete] = ACTIONS(1749), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1747), - [anon_sym_DQUOTE] = ACTIONS(1747), - [anon_sym_SQUOTE] = ACTIONS(1747), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1747), - [sym_number] = ACTIONS(1747), - [sym_private_property_identifier] = ACTIONS(1747), - [sym_this] = ACTIONS(1749), - [sym_super] = ACTIONS(1749), - [sym_true] = ACTIONS(1749), - [sym_false] = ACTIONS(1749), - [sym_null] = ACTIONS(1749), - [sym_undefined] = ACTIONS(1749), - [anon_sym_AT] = ACTIONS(1747), - [anon_sym_static] = ACTIONS(1749), - [anon_sym_readonly] = ACTIONS(1749), - [anon_sym_get] = ACTIONS(1749), - [anon_sym_set] = ACTIONS(1749), - [anon_sym_declare] = ACTIONS(1749), - [anon_sym_public] = ACTIONS(1749), - [anon_sym_private] = ACTIONS(1749), - [anon_sym_protected] = ACTIONS(1749), - [anon_sym_override] = ACTIONS(1749), - [anon_sym_module] = ACTIONS(1749), - [anon_sym_any] = ACTIONS(1749), - [anon_sym_number] = ACTIONS(1749), - [anon_sym_boolean] = ACTIONS(1749), - [anon_sym_string] = ACTIONS(1749), - [anon_sym_symbol] = ACTIONS(1749), - [anon_sym_object] = ACTIONS(1749), - [anon_sym_abstract] = ACTIONS(1749), - [anon_sym_satisfies] = ACTIONS(1749), - [anon_sym_interface] = ACTIONS(1749), - [anon_sym_enum] = ACTIONS(1749), - [sym__automatic_semicolon] = ACTIONS(1747), - [sym__ternary_qmark] = ACTIONS(1747), + [ts_builtin_sym_end] = ACTIONS(1754), + [sym_identifier] = ACTIONS(1756), + [anon_sym_export] = ACTIONS(1756), + [anon_sym_STAR] = ACTIONS(1756), + [anon_sym_default] = ACTIONS(1756), + [anon_sym_type] = ACTIONS(1756), + [anon_sym_as] = ACTIONS(1756), + [anon_sym_namespace] = ACTIONS(1756), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_COMMA] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_typeof] = ACTIONS(1756), + [anon_sym_import] = ACTIONS(1756), + [anon_sym_with] = ACTIONS(1756), + [anon_sym_var] = ACTIONS(1756), + [anon_sym_let] = ACTIONS(1756), + [anon_sym_const] = ACTIONS(1756), + [anon_sym_BANG] = ACTIONS(1756), + [anon_sym_else] = ACTIONS(1756), + [anon_sym_if] = ACTIONS(1756), + [anon_sym_switch] = ACTIONS(1756), + [anon_sym_for] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_await] = ACTIONS(1756), + [anon_sym_in] = ACTIONS(1756), + [anon_sym_while] = ACTIONS(1756), + [anon_sym_do] = ACTIONS(1756), + [anon_sym_try] = ACTIONS(1756), + [anon_sym_break] = ACTIONS(1756), + [anon_sym_continue] = ACTIONS(1756), + [anon_sym_debugger] = ACTIONS(1756), + [anon_sym_return] = ACTIONS(1756), + [anon_sym_throw] = ACTIONS(1756), + [anon_sym_case] = ACTIONS(1756), + [anon_sym_yield] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_DOT] = ACTIONS(1756), + [anon_sym_class] = ACTIONS(1756), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_function] = ACTIONS(1756), + [anon_sym_QMARK_DOT] = ACTIONS(1754), + [anon_sym_new] = ACTIONS(1756), + [anon_sym_using] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1754), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_GT_GT] = ACTIONS(1756), + [anon_sym_GT_GT_GT] = ACTIONS(1754), + [anon_sym_LT_LT] = ACTIONS(1754), + [anon_sym_AMP] = ACTIONS(1756), + [anon_sym_CARET] = ACTIONS(1754), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1756), + [anon_sym_DASH] = ACTIONS(1756), + [anon_sym_SLASH] = ACTIONS(1756), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_STAR_STAR] = ACTIONS(1754), + [anon_sym_LT] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ] = ACTIONS(1756), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1754), + [anon_sym_GT_EQ] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1756), + [anon_sym_QMARK_QMARK] = ACTIONS(1754), + [anon_sym_instanceof] = ACTIONS(1756), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_void] = ACTIONS(1756), + [anon_sym_delete] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_DQUOTE] = ACTIONS(1754), + [anon_sym_SQUOTE] = ACTIONS(1754), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1754), + [sym_number] = ACTIONS(1754), + [sym_private_property_identifier] = ACTIONS(1754), + [sym_this] = ACTIONS(1756), + [sym_super] = ACTIONS(1756), + [sym_true] = ACTIONS(1756), + [sym_false] = ACTIONS(1756), + [sym_null] = ACTIONS(1756), + [sym_undefined] = ACTIONS(1756), + [anon_sym_AT] = ACTIONS(1754), + [anon_sym_static] = ACTIONS(1756), + [anon_sym_readonly] = ACTIONS(1756), + [anon_sym_get] = ACTIONS(1756), + [anon_sym_set] = ACTIONS(1756), + [anon_sym_declare] = ACTIONS(1756), + [anon_sym_public] = ACTIONS(1756), + [anon_sym_private] = ACTIONS(1756), + [anon_sym_protected] = ACTIONS(1756), + [anon_sym_override] = ACTIONS(1756), + [anon_sym_module] = ACTIONS(1756), + [anon_sym_any] = ACTIONS(1756), + [anon_sym_number] = ACTIONS(1756), + [anon_sym_boolean] = ACTIONS(1756), + [anon_sym_string] = ACTIONS(1756), + [anon_sym_symbol] = ACTIONS(1756), + [anon_sym_object] = ACTIONS(1756), + [anon_sym_abstract] = ACTIONS(1756), + [anon_sym_satisfies] = ACTIONS(1756), + [anon_sym_interface] = ACTIONS(1756), + [anon_sym_enum] = ACTIONS(1756), + [sym__automatic_semicolon] = ACTIONS(1754), + [sym__ternary_qmark] = ACTIONS(1754), [sym_html_comment] = ACTIONS(5), }, [220] = { - [ts_builtin_sym_end] = ACTIONS(1751), - [sym_identifier] = ACTIONS(1753), - [anon_sym_export] = ACTIONS(1753), - [anon_sym_STAR] = ACTIONS(1753), - [anon_sym_default] = ACTIONS(1753), - [anon_sym_type] = ACTIONS(1753), - [anon_sym_as] = ACTIONS(1753), - [anon_sym_namespace] = ACTIONS(1753), - [anon_sym_LBRACE] = ACTIONS(1751), - [anon_sym_COMMA] = ACTIONS(1751), - [anon_sym_RBRACE] = ACTIONS(1751), - [anon_sym_typeof] = ACTIONS(1753), - [anon_sym_import] = ACTIONS(1753), - [anon_sym_with] = ACTIONS(1753), - [anon_sym_var] = ACTIONS(1753), - [anon_sym_let] = ACTIONS(1753), - [anon_sym_const] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(1753), - [anon_sym_else] = ACTIONS(1753), - [anon_sym_if] = ACTIONS(1753), - [anon_sym_switch] = ACTIONS(1753), - [anon_sym_for] = ACTIONS(1753), - [anon_sym_LPAREN] = ACTIONS(1751), - [anon_sym_SEMI] = ACTIONS(1751), - [anon_sym_await] = ACTIONS(1753), - [anon_sym_in] = ACTIONS(1753), - [anon_sym_while] = ACTIONS(1753), - [anon_sym_do] = ACTIONS(1753), - [anon_sym_try] = ACTIONS(1753), - [anon_sym_break] = ACTIONS(1753), - [anon_sym_continue] = ACTIONS(1753), - [anon_sym_debugger] = ACTIONS(1753), - [anon_sym_return] = ACTIONS(1753), - [anon_sym_throw] = ACTIONS(1753), - [anon_sym_case] = ACTIONS(1753), - [anon_sym_yield] = ACTIONS(1753), - [anon_sym_LBRACK] = ACTIONS(1751), - [sym_glimmer_opening_tag] = ACTIONS(1751), - [anon_sym_DOT] = ACTIONS(1753), - [anon_sym_class] = ACTIONS(1753), - [anon_sym_async] = ACTIONS(1753), - [anon_sym_function] = ACTIONS(1753), - [anon_sym_QMARK_DOT] = ACTIONS(1751), - [anon_sym_new] = ACTIONS(1753), - [anon_sym_using] = ACTIONS(1753), - [anon_sym_AMP_AMP] = ACTIONS(1751), - [anon_sym_PIPE_PIPE] = ACTIONS(1751), - [anon_sym_GT_GT] = ACTIONS(1753), - [anon_sym_GT_GT_GT] = ACTIONS(1751), - [anon_sym_LT_LT] = ACTIONS(1751), - [anon_sym_AMP] = ACTIONS(1753), - [anon_sym_CARET] = ACTIONS(1751), - [anon_sym_PIPE] = ACTIONS(1753), - [anon_sym_PLUS] = ACTIONS(1753), - [anon_sym_DASH] = ACTIONS(1753), - [anon_sym_SLASH] = ACTIONS(1753), - [anon_sym_PERCENT] = ACTIONS(1751), - [anon_sym_STAR_STAR] = ACTIONS(1751), - [anon_sym_LT] = ACTIONS(1753), - [anon_sym_LT_EQ] = ACTIONS(1751), - [anon_sym_EQ_EQ] = ACTIONS(1753), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1751), - [anon_sym_BANG_EQ] = ACTIONS(1753), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1751), - [anon_sym_GT_EQ] = ACTIONS(1751), - [anon_sym_GT] = ACTIONS(1753), - [anon_sym_QMARK_QMARK] = ACTIONS(1751), - [anon_sym_instanceof] = ACTIONS(1753), - [anon_sym_TILDE] = ACTIONS(1751), - [anon_sym_void] = ACTIONS(1753), - [anon_sym_delete] = ACTIONS(1753), - [anon_sym_PLUS_PLUS] = ACTIONS(1751), - [anon_sym_DASH_DASH] = ACTIONS(1751), - [anon_sym_DQUOTE] = ACTIONS(1751), - [anon_sym_SQUOTE] = ACTIONS(1751), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1751), - [sym_number] = ACTIONS(1751), - [sym_private_property_identifier] = ACTIONS(1751), - [sym_this] = ACTIONS(1753), - [sym_super] = ACTIONS(1753), - [sym_true] = ACTIONS(1753), - [sym_false] = ACTIONS(1753), - [sym_null] = ACTIONS(1753), - [sym_undefined] = ACTIONS(1753), - [anon_sym_AT] = ACTIONS(1751), - [anon_sym_static] = ACTIONS(1753), - [anon_sym_readonly] = ACTIONS(1753), - [anon_sym_get] = ACTIONS(1753), - [anon_sym_set] = ACTIONS(1753), - [anon_sym_declare] = ACTIONS(1753), - [anon_sym_public] = ACTIONS(1753), - [anon_sym_private] = ACTIONS(1753), - [anon_sym_protected] = ACTIONS(1753), - [anon_sym_override] = ACTIONS(1753), - [anon_sym_module] = ACTIONS(1753), - [anon_sym_any] = ACTIONS(1753), - [anon_sym_number] = ACTIONS(1753), - [anon_sym_boolean] = ACTIONS(1753), - [anon_sym_string] = ACTIONS(1753), - [anon_sym_symbol] = ACTIONS(1753), - [anon_sym_object] = ACTIONS(1753), - [anon_sym_abstract] = ACTIONS(1753), - [anon_sym_satisfies] = ACTIONS(1753), - [anon_sym_interface] = ACTIONS(1753), - [anon_sym_enum] = ACTIONS(1753), - [sym__automatic_semicolon] = ACTIONS(1751), - [sym__ternary_qmark] = ACTIONS(1751), + [ts_builtin_sym_end] = ACTIONS(1758), + [sym_identifier] = ACTIONS(1760), + [anon_sym_export] = ACTIONS(1760), + [anon_sym_STAR] = ACTIONS(1762), + [anon_sym_default] = ACTIONS(1760), + [anon_sym_type] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1762), + [anon_sym_namespace] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1758), + [anon_sym_COMMA] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1758), + [anon_sym_typeof] = ACTIONS(1760), + [anon_sym_import] = ACTIONS(1760), + [anon_sym_with] = ACTIONS(1760), + [anon_sym_var] = ACTIONS(1760), + [anon_sym_let] = ACTIONS(1760), + [anon_sym_const] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(1760), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_switch] = ACTIONS(1760), + [anon_sym_for] = ACTIONS(1760), + [anon_sym_LPAREN] = ACTIONS(1758), + [anon_sym_SEMI] = ACTIONS(1758), + [anon_sym_await] = ACTIONS(1760), + [anon_sym_in] = ACTIONS(1762), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_do] = ACTIONS(1760), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_debugger] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_throw] = ACTIONS(1760), + [anon_sym_case] = ACTIONS(1760), + [anon_sym_yield] = ACTIONS(1760), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_DOT] = ACTIONS(1762), + [anon_sym_class] = ACTIONS(1760), + [anon_sym_async] = ACTIONS(1760), + [anon_sym_function] = ACTIONS(1760), + [anon_sym_QMARK_DOT] = ACTIONS(1764), + [anon_sym_new] = ACTIONS(1760), + [anon_sym_using] = ACTIONS(1760), + [anon_sym_AMP_AMP] = ACTIONS(1764), + [anon_sym_PIPE_PIPE] = ACTIONS(1764), + [anon_sym_GT_GT] = ACTIONS(1762), + [anon_sym_GT_GT_GT] = ACTIONS(1764), + [anon_sym_LT_LT] = ACTIONS(1764), + [anon_sym_AMP] = ACTIONS(1762), + [anon_sym_CARET] = ACTIONS(1764), + [anon_sym_PIPE] = ACTIONS(1762), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1764), + [anon_sym_STAR_STAR] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_LT_EQ] = ACTIONS(1764), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1764), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1764), + [anon_sym_GT_EQ] = ACTIONS(1764), + [anon_sym_GT] = ACTIONS(1762), + [anon_sym_QMARK_QMARK] = ACTIONS(1764), + [anon_sym_instanceof] = ACTIONS(1762), + [anon_sym_TILDE] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(1760), + [anon_sym_delete] = ACTIONS(1760), + [anon_sym_PLUS_PLUS] = ACTIONS(1758), + [anon_sym_DASH_DASH] = ACTIONS(1758), + [anon_sym_DQUOTE] = ACTIONS(1758), + [anon_sym_SQUOTE] = ACTIONS(1758), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1758), + [sym_number] = ACTIONS(1758), + [sym_private_property_identifier] = ACTIONS(1758), + [sym_this] = ACTIONS(1760), + [sym_super] = ACTIONS(1760), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_null] = ACTIONS(1760), + [sym_undefined] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(1758), + [anon_sym_static] = ACTIONS(1760), + [anon_sym_readonly] = ACTIONS(1760), + [anon_sym_get] = ACTIONS(1760), + [anon_sym_set] = ACTIONS(1760), + [anon_sym_declare] = ACTIONS(1760), + [anon_sym_public] = ACTIONS(1760), + [anon_sym_private] = ACTIONS(1760), + [anon_sym_protected] = ACTIONS(1760), + [anon_sym_override] = ACTIONS(1760), + [anon_sym_module] = ACTIONS(1760), + [anon_sym_any] = ACTIONS(1760), + [anon_sym_number] = ACTIONS(1760), + [anon_sym_boolean] = ACTIONS(1760), + [anon_sym_string] = ACTIONS(1760), + [anon_sym_symbol] = ACTIONS(1760), + [anon_sym_object] = ACTIONS(1760), + [anon_sym_abstract] = ACTIONS(1760), + [anon_sym_satisfies] = ACTIONS(1762), + [anon_sym_interface] = ACTIONS(1760), + [anon_sym_enum] = ACTIONS(1760), + [sym__automatic_semicolon] = ACTIONS(1766), + [sym__ternary_qmark] = ACTIONS(1764), [sym_html_comment] = ACTIONS(5), }, [221] = { - [ts_builtin_sym_end] = ACTIONS(1755), - [sym_identifier] = ACTIONS(1757), - [anon_sym_export] = ACTIONS(1757), - [anon_sym_STAR] = ACTIONS(1759), - [anon_sym_default] = ACTIONS(1757), - [anon_sym_type] = ACTIONS(1757), - [anon_sym_as] = ACTIONS(1759), - [anon_sym_namespace] = ACTIONS(1757), - [anon_sym_LBRACE] = ACTIONS(1755), - [anon_sym_COMMA] = ACTIONS(1761), - [anon_sym_RBRACE] = ACTIONS(1755), - [anon_sym_typeof] = ACTIONS(1757), - [anon_sym_import] = ACTIONS(1757), - [anon_sym_with] = ACTIONS(1757), - [anon_sym_var] = ACTIONS(1757), - [anon_sym_let] = ACTIONS(1757), - [anon_sym_const] = ACTIONS(1757), - [anon_sym_BANG] = ACTIONS(1757), - [anon_sym_else] = ACTIONS(1757), - [anon_sym_if] = ACTIONS(1757), - [anon_sym_switch] = ACTIONS(1757), - [anon_sym_for] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1755), - [anon_sym_SEMI] = ACTIONS(1755), - [anon_sym_await] = ACTIONS(1757), - [anon_sym_in] = ACTIONS(1759), - [anon_sym_while] = ACTIONS(1757), - [anon_sym_do] = ACTIONS(1757), - [anon_sym_try] = ACTIONS(1757), - [anon_sym_break] = ACTIONS(1757), - [anon_sym_continue] = ACTIONS(1757), - [anon_sym_debugger] = ACTIONS(1757), - [anon_sym_return] = ACTIONS(1757), - [anon_sym_throw] = ACTIONS(1757), - [anon_sym_case] = ACTIONS(1757), - [anon_sym_yield] = ACTIONS(1757), - [anon_sym_LBRACK] = ACTIONS(1755), - [sym_glimmer_opening_tag] = ACTIONS(1755), - [anon_sym_DOT] = ACTIONS(1759), - [anon_sym_class] = ACTIONS(1757), - [anon_sym_async] = ACTIONS(1757), - [anon_sym_function] = ACTIONS(1757), - [anon_sym_QMARK_DOT] = ACTIONS(1761), - [anon_sym_new] = ACTIONS(1757), - [anon_sym_using] = ACTIONS(1757), - [anon_sym_AMP_AMP] = ACTIONS(1761), - [anon_sym_PIPE_PIPE] = ACTIONS(1761), - [anon_sym_GT_GT] = ACTIONS(1759), - [anon_sym_GT_GT_GT] = ACTIONS(1761), - [anon_sym_LT_LT] = ACTIONS(1761), - [anon_sym_AMP] = ACTIONS(1759), - [anon_sym_CARET] = ACTIONS(1761), - [anon_sym_PIPE] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1757), - [anon_sym_DASH] = ACTIONS(1757), - [anon_sym_SLASH] = ACTIONS(1757), - [anon_sym_PERCENT] = ACTIONS(1761), - [anon_sym_STAR_STAR] = ACTIONS(1761), - [anon_sym_LT] = ACTIONS(1757), - [anon_sym_LT_EQ] = ACTIONS(1761), - [anon_sym_EQ_EQ] = ACTIONS(1759), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1761), - [anon_sym_BANG_EQ] = ACTIONS(1759), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1761), - [anon_sym_GT_EQ] = ACTIONS(1761), - [anon_sym_GT] = ACTIONS(1759), - [anon_sym_QMARK_QMARK] = ACTIONS(1761), - [anon_sym_instanceof] = ACTIONS(1759), - [anon_sym_TILDE] = ACTIONS(1755), - [anon_sym_void] = ACTIONS(1757), - [anon_sym_delete] = ACTIONS(1757), - [anon_sym_PLUS_PLUS] = ACTIONS(1755), - [anon_sym_DASH_DASH] = ACTIONS(1755), - [anon_sym_DQUOTE] = ACTIONS(1755), - [anon_sym_SQUOTE] = ACTIONS(1755), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1755), - [sym_number] = ACTIONS(1755), - [sym_private_property_identifier] = ACTIONS(1755), - [sym_this] = ACTIONS(1757), - [sym_super] = ACTIONS(1757), - [sym_true] = ACTIONS(1757), - [sym_false] = ACTIONS(1757), - [sym_null] = ACTIONS(1757), - [sym_undefined] = ACTIONS(1757), - [anon_sym_AT] = ACTIONS(1755), - [anon_sym_static] = ACTIONS(1757), - [anon_sym_readonly] = ACTIONS(1757), - [anon_sym_get] = ACTIONS(1757), - [anon_sym_set] = ACTIONS(1757), - [anon_sym_declare] = ACTIONS(1757), - [anon_sym_public] = ACTIONS(1757), - [anon_sym_private] = ACTIONS(1757), - [anon_sym_protected] = ACTIONS(1757), - [anon_sym_override] = ACTIONS(1757), - [anon_sym_module] = ACTIONS(1757), - [anon_sym_any] = ACTIONS(1757), - [anon_sym_number] = ACTIONS(1757), - [anon_sym_boolean] = ACTIONS(1757), - [anon_sym_string] = ACTIONS(1757), - [anon_sym_symbol] = ACTIONS(1757), - [anon_sym_object] = ACTIONS(1757), - [anon_sym_abstract] = ACTIONS(1757), - [anon_sym_satisfies] = ACTIONS(1759), - [anon_sym_interface] = ACTIONS(1757), - [anon_sym_enum] = ACTIONS(1757), - [sym__automatic_semicolon] = ACTIONS(1763), - [sym__ternary_qmark] = ACTIONS(1761), - [sym_html_comment] = ACTIONS(5), - }, - [222] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1778), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2126), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(4425), + [sym_assignment_pattern] = STATE(4969), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(4425), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1396), + [sym_subscript_expression] = STATE(1396), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(4425), + [sym_spread_element] = STATE(4946), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1328), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4406), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1396), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1765), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(1765), - [anon_sym_RBRACK] = ACTIONS(1765), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_QMARK] = ACTIONS(1765), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), - [anon_sym_extends] = ACTIONS(1767), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [aux_sym_array_repeat1] = STATE(4955), + [aux_sym_array_pattern_repeat1] = STATE(4977), + [sym_identifier] = ACTIONS(1738), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_RBRACK] = ACTIONS(1768), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1744), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1746), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(541), + [anon_sym_number] = ACTIONS(541), + [anon_sym_boolean] = ACTIONS(541), + [anon_sym_string] = ACTIONS(541), + [anon_sym_symbol] = ACTIONS(541), + [anon_sym_object] = ACTIONS(541), + [sym_html_comment] = ACTIONS(5), + }, + [222] = { + [ts_builtin_sym_end] = ACTIONS(1770), + [sym_identifier] = ACTIONS(1772), + [anon_sym_export] = ACTIONS(1772), + [anon_sym_STAR] = ACTIONS(1774), + [anon_sym_default] = ACTIONS(1772), + [anon_sym_type] = ACTIONS(1772), + [anon_sym_as] = ACTIONS(1774), + [anon_sym_namespace] = ACTIONS(1772), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_typeof] = ACTIONS(1772), + [anon_sym_import] = ACTIONS(1772), + [anon_sym_with] = ACTIONS(1772), + [anon_sym_var] = ACTIONS(1772), + [anon_sym_let] = ACTIONS(1772), + [anon_sym_const] = ACTIONS(1772), + [anon_sym_BANG] = ACTIONS(1772), + [anon_sym_else] = ACTIONS(1772), + [anon_sym_if] = ACTIONS(1772), + [anon_sym_switch] = ACTIONS(1772), + [anon_sym_for] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_await] = ACTIONS(1772), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1772), + [anon_sym_do] = ACTIONS(1772), + [anon_sym_try] = 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_case] = ACTIONS(1772), + [anon_sym_yield] = ACTIONS(1772), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_class] = ACTIONS(1772), + [anon_sym_async] = ACTIONS(1772), + [anon_sym_function] = ACTIONS(1772), + [anon_sym_QMARK_DOT] = ACTIONS(1776), + [anon_sym_new] = ACTIONS(1772), + [anon_sym_using] = ACTIONS(1772), + [anon_sym_AMP_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1776), + [anon_sym_GT_GT] = ACTIONS(1774), + [anon_sym_GT_GT_GT] = ACTIONS(1776), + [anon_sym_LT_LT] = ACTIONS(1776), + [anon_sym_AMP] = ACTIONS(1774), + [anon_sym_CARET] = ACTIONS(1776), + [anon_sym_PIPE] = ACTIONS(1774), + [anon_sym_PLUS] = ACTIONS(1772), + [anon_sym_DASH] = ACTIONS(1772), + [anon_sym_SLASH] = ACTIONS(1772), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_STAR_STAR] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1772), + [anon_sym_LT_EQ] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1776), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1776), + [anon_sym_GT_EQ] = ACTIONS(1776), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_QMARK_QMARK] = ACTIONS(1776), + [anon_sym_instanceof] = ACTIONS(1774), + [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(5), + [anon_sym_BQUOTE] = ACTIONS(1770), + [sym_number] = ACTIONS(1770), + [sym_private_property_identifier] = 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_readonly] = 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_override] = 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_object] = ACTIONS(1772), + [anon_sym_abstract] = ACTIONS(1772), + [anon_sym_satisfies] = ACTIONS(1774), + [anon_sym_interface] = ACTIONS(1772), + [anon_sym_enum] = ACTIONS(1772), + [sym__automatic_semicolon] = ACTIONS(1778), + [sym__ternary_qmark] = ACTIONS(1776), [sym_html_comment] = ACTIONS(5), }, [223] = { - [ts_builtin_sym_end] = ACTIONS(1769), - [sym_identifier] = ACTIONS(1771), - [anon_sym_export] = ACTIONS(1771), - [anon_sym_STAR] = ACTIONS(1773), - [anon_sym_default] = ACTIONS(1771), - [anon_sym_type] = ACTIONS(1771), - [anon_sym_as] = ACTIONS(1773), - [anon_sym_namespace] = ACTIONS(1771), - [anon_sym_LBRACE] = ACTIONS(1769), - [anon_sym_COMMA] = ACTIONS(1775), - [anon_sym_RBRACE] = ACTIONS(1769), - [anon_sym_typeof] = ACTIONS(1771), - [anon_sym_import] = ACTIONS(1771), - [anon_sym_with] = ACTIONS(1771), - [anon_sym_var] = ACTIONS(1771), - [anon_sym_let] = ACTIONS(1771), - [anon_sym_const] = ACTIONS(1771), - [anon_sym_BANG] = ACTIONS(1771), - [anon_sym_else] = ACTIONS(1771), - [anon_sym_if] = ACTIONS(1771), - [anon_sym_switch] = ACTIONS(1771), - [anon_sym_for] = ACTIONS(1771), - [anon_sym_LPAREN] = ACTIONS(1769), - [anon_sym_SEMI] = ACTIONS(1769), - [anon_sym_await] = ACTIONS(1771), - [anon_sym_in] = ACTIONS(1773), - [anon_sym_while] = ACTIONS(1771), - [anon_sym_do] = ACTIONS(1771), - [anon_sym_try] = ACTIONS(1771), - [anon_sym_break] = ACTIONS(1771), - [anon_sym_continue] = ACTIONS(1771), - [anon_sym_debugger] = ACTIONS(1771), - [anon_sym_return] = ACTIONS(1771), - [anon_sym_throw] = ACTIONS(1771), - [anon_sym_case] = ACTIONS(1771), - [anon_sym_yield] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1769), - [sym_glimmer_opening_tag] = ACTIONS(1769), - [anon_sym_DOT] = ACTIONS(1773), - [anon_sym_class] = ACTIONS(1771), - [anon_sym_async] = ACTIONS(1771), - [anon_sym_function] = ACTIONS(1771), - [anon_sym_QMARK_DOT] = ACTIONS(1775), - [anon_sym_new] = ACTIONS(1771), - [anon_sym_using] = ACTIONS(1771), - [anon_sym_AMP_AMP] = ACTIONS(1775), - [anon_sym_PIPE_PIPE] = ACTIONS(1775), - [anon_sym_GT_GT] = ACTIONS(1773), - [anon_sym_GT_GT_GT] = ACTIONS(1775), - [anon_sym_LT_LT] = ACTIONS(1775), - [anon_sym_AMP] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1775), - [anon_sym_PIPE] = ACTIONS(1773), - [anon_sym_PLUS] = ACTIONS(1771), - [anon_sym_DASH] = ACTIONS(1771), - [anon_sym_SLASH] = ACTIONS(1771), - [anon_sym_PERCENT] = ACTIONS(1775), - [anon_sym_STAR_STAR] = ACTIONS(1775), - [anon_sym_LT] = ACTIONS(1771), - [anon_sym_LT_EQ] = ACTIONS(1775), - [anon_sym_EQ_EQ] = ACTIONS(1773), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1775), - [anon_sym_BANG_EQ] = ACTIONS(1773), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1775), - [anon_sym_GT_EQ] = ACTIONS(1775), - [anon_sym_GT] = ACTIONS(1773), - [anon_sym_QMARK_QMARK] = ACTIONS(1775), - [anon_sym_instanceof] = ACTIONS(1773), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_void] = ACTIONS(1771), - [anon_sym_delete] = ACTIONS(1771), - [anon_sym_PLUS_PLUS] = ACTIONS(1769), - [anon_sym_DASH_DASH] = ACTIONS(1769), - [anon_sym_DQUOTE] = ACTIONS(1769), - [anon_sym_SQUOTE] = ACTIONS(1769), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1769), - [sym_number] = ACTIONS(1769), - [sym_private_property_identifier] = ACTIONS(1769), - [sym_this] = ACTIONS(1771), - [sym_super] = ACTIONS(1771), - [sym_true] = ACTIONS(1771), - [sym_false] = ACTIONS(1771), - [sym_null] = ACTIONS(1771), - [sym_undefined] = ACTIONS(1771), - [anon_sym_AT] = ACTIONS(1769), - [anon_sym_static] = ACTIONS(1771), - [anon_sym_readonly] = ACTIONS(1771), - [anon_sym_get] = ACTIONS(1771), - [anon_sym_set] = ACTIONS(1771), - [anon_sym_declare] = ACTIONS(1771), - [anon_sym_public] = ACTIONS(1771), - [anon_sym_private] = ACTIONS(1771), - [anon_sym_protected] = ACTIONS(1771), - [anon_sym_override] = ACTIONS(1771), - [anon_sym_module] = ACTIONS(1771), - [anon_sym_any] = ACTIONS(1771), - [anon_sym_number] = ACTIONS(1771), - [anon_sym_boolean] = ACTIONS(1771), - [anon_sym_string] = ACTIONS(1771), - [anon_sym_symbol] = ACTIONS(1771), - [anon_sym_object] = ACTIONS(1771), - [anon_sym_abstract] = ACTIONS(1771), - [anon_sym_satisfies] = ACTIONS(1773), - [anon_sym_interface] = ACTIONS(1771), - [anon_sym_enum] = ACTIONS(1771), - [sym__automatic_semicolon] = ACTIONS(1777), - [sym__ternary_qmark] = ACTIONS(1775), + [ts_builtin_sym_end] = ACTIONS(1780), + [sym_identifier] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(1782), + [anon_sym_STAR] = ACTIONS(1784), + [anon_sym_default] = ACTIONS(1782), + [anon_sym_type] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1784), + [anon_sym_namespace] = ACTIONS(1782), + [anon_sym_LBRACE] = ACTIONS(1780), + [anon_sym_COMMA] = ACTIONS(1786), + [anon_sym_RBRACE] = ACTIONS(1780), + [anon_sym_typeof] = ACTIONS(1782), + [anon_sym_import] = ACTIONS(1782), + [anon_sym_with] = ACTIONS(1782), + [anon_sym_var] = ACTIONS(1782), + [anon_sym_let] = ACTIONS(1782), + [anon_sym_const] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1782), + [anon_sym_if] = ACTIONS(1782), + [anon_sym_switch] = ACTIONS(1782), + [anon_sym_for] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1780), + [anon_sym_await] = ACTIONS(1782), + [anon_sym_in] = ACTIONS(1784), + [anon_sym_while] = ACTIONS(1782), + [anon_sym_do] = ACTIONS(1782), + [anon_sym_try] = ACTIONS(1782), + [anon_sym_break] = ACTIONS(1782), + [anon_sym_continue] = ACTIONS(1782), + [anon_sym_debugger] = ACTIONS(1782), + [anon_sym_return] = ACTIONS(1782), + [anon_sym_throw] = ACTIONS(1782), + [anon_sym_case] = ACTIONS(1782), + [anon_sym_yield] = ACTIONS(1782), + [anon_sym_LBRACK] = ACTIONS(1780), + [anon_sym_DOT] = ACTIONS(1784), + [anon_sym_class] = ACTIONS(1782), + [anon_sym_async] = ACTIONS(1782), + [anon_sym_function] = ACTIONS(1782), + [anon_sym_QMARK_DOT] = ACTIONS(1786), + [anon_sym_new] = ACTIONS(1782), + [anon_sym_using] = ACTIONS(1782), + [anon_sym_AMP_AMP] = ACTIONS(1786), + [anon_sym_PIPE_PIPE] = ACTIONS(1786), + [anon_sym_GT_GT] = ACTIONS(1784), + [anon_sym_GT_GT_GT] = ACTIONS(1786), + [anon_sym_LT_LT] = ACTIONS(1786), + [anon_sym_AMP] = ACTIONS(1784), + [anon_sym_CARET] = ACTIONS(1786), + [anon_sym_PIPE] = ACTIONS(1784), + [anon_sym_PLUS] = ACTIONS(1782), + [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_SLASH] = ACTIONS(1782), + [anon_sym_PERCENT] = ACTIONS(1786), + [anon_sym_STAR_STAR] = ACTIONS(1786), + [anon_sym_LT] = ACTIONS(1782), + [anon_sym_LT_EQ] = ACTIONS(1786), + [anon_sym_EQ_EQ] = ACTIONS(1784), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1786), + [anon_sym_BANG_EQ] = ACTIONS(1784), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1786), + [anon_sym_GT_EQ] = ACTIONS(1786), + [anon_sym_GT] = ACTIONS(1784), + [anon_sym_QMARK_QMARK] = ACTIONS(1786), + [anon_sym_instanceof] = ACTIONS(1784), + [anon_sym_TILDE] = ACTIONS(1780), + [anon_sym_void] = ACTIONS(1782), + [anon_sym_delete] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1780), + [anon_sym_DASH_DASH] = ACTIONS(1780), + [anon_sym_DQUOTE] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1780), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1780), + [sym_number] = ACTIONS(1780), + [sym_private_property_identifier] = ACTIONS(1780), + [sym_this] = ACTIONS(1782), + [sym_super] = ACTIONS(1782), + [sym_true] = ACTIONS(1782), + [sym_false] = ACTIONS(1782), + [sym_null] = ACTIONS(1782), + [sym_undefined] = ACTIONS(1782), + [anon_sym_AT] = ACTIONS(1780), + [anon_sym_static] = ACTIONS(1782), + [anon_sym_readonly] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(1782), + [anon_sym_set] = ACTIONS(1782), + [anon_sym_declare] = ACTIONS(1782), + [anon_sym_public] = ACTIONS(1782), + [anon_sym_private] = ACTIONS(1782), + [anon_sym_protected] = ACTIONS(1782), + [anon_sym_override] = ACTIONS(1782), + [anon_sym_module] = ACTIONS(1782), + [anon_sym_any] = ACTIONS(1782), + [anon_sym_number] = ACTIONS(1782), + [anon_sym_boolean] = ACTIONS(1782), + [anon_sym_string] = ACTIONS(1782), + [anon_sym_symbol] = ACTIONS(1782), + [anon_sym_object] = ACTIONS(1782), + [anon_sym_abstract] = ACTIONS(1782), + [anon_sym_satisfies] = ACTIONS(1784), + [anon_sym_interface] = ACTIONS(1782), + [anon_sym_enum] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1788), + [sym__ternary_qmark] = ACTIONS(1786), [sym_html_comment] = ACTIONS(5), }, [224] = { - [ts_builtin_sym_end] = ACTIONS(1779), - [sym_identifier] = ACTIONS(1781), - [anon_sym_export] = ACTIONS(1781), - [anon_sym_STAR] = ACTIONS(1783), - [anon_sym_default] = ACTIONS(1781), - [anon_sym_type] = ACTIONS(1781), - [anon_sym_as] = ACTIONS(1783), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1779), - [anon_sym_COMMA] = ACTIONS(1785), - [anon_sym_RBRACE] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym_import] = ACTIONS(1781), - [anon_sym_with] = ACTIONS(1781), - [anon_sym_var] = ACTIONS(1781), - [anon_sym_let] = ACTIONS(1781), - [anon_sym_const] = ACTIONS(1781), - [anon_sym_BANG] = ACTIONS(1781), - [anon_sym_else] = ACTIONS(1781), - [anon_sym_if] = ACTIONS(1781), - [anon_sym_switch] = ACTIONS(1781), - [anon_sym_for] = ACTIONS(1781), - [anon_sym_LPAREN] = ACTIONS(1779), - [anon_sym_SEMI] = ACTIONS(1779), - [anon_sym_await] = ACTIONS(1781), - [anon_sym_in] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1781), - [anon_sym_do] = ACTIONS(1781), - [anon_sym_try] = ACTIONS(1781), - [anon_sym_break] = ACTIONS(1781), - [anon_sym_continue] = ACTIONS(1781), - [anon_sym_debugger] = ACTIONS(1781), - [anon_sym_return] = ACTIONS(1781), - [anon_sym_throw] = ACTIONS(1781), - [anon_sym_case] = ACTIONS(1781), - [anon_sym_yield] = ACTIONS(1781), - [anon_sym_LBRACK] = ACTIONS(1779), - [sym_glimmer_opening_tag] = ACTIONS(1779), - [anon_sym_DOT] = ACTIONS(1783), - [anon_sym_class] = ACTIONS(1781), - [anon_sym_async] = ACTIONS(1781), - [anon_sym_function] = ACTIONS(1781), - [anon_sym_QMARK_DOT] = ACTIONS(1785), - [anon_sym_new] = ACTIONS(1781), - [anon_sym_using] = ACTIONS(1781), - [anon_sym_AMP_AMP] = ACTIONS(1785), - [anon_sym_PIPE_PIPE] = ACTIONS(1785), - [anon_sym_GT_GT] = ACTIONS(1783), - [anon_sym_GT_GT_GT] = ACTIONS(1785), - [anon_sym_LT_LT] = ACTIONS(1785), - [anon_sym_AMP] = ACTIONS(1783), - [anon_sym_CARET] = ACTIONS(1785), - [anon_sym_PIPE] = ACTIONS(1783), - [anon_sym_PLUS] = ACTIONS(1781), - [anon_sym_DASH] = ACTIONS(1781), - [anon_sym_SLASH] = ACTIONS(1781), - [anon_sym_PERCENT] = ACTIONS(1785), - [anon_sym_STAR_STAR] = ACTIONS(1785), - [anon_sym_LT] = ACTIONS(1781), - [anon_sym_LT_EQ] = ACTIONS(1785), - [anon_sym_EQ_EQ] = ACTIONS(1783), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1785), - [anon_sym_BANG_EQ] = ACTIONS(1783), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1785), - [anon_sym_GT_EQ] = ACTIONS(1785), - [anon_sym_GT] = ACTIONS(1783), - [anon_sym_QMARK_QMARK] = ACTIONS(1785), - [anon_sym_instanceof] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1779), - [anon_sym_void] = ACTIONS(1781), - [anon_sym_delete] = ACTIONS(1781), - [anon_sym_PLUS_PLUS] = ACTIONS(1779), - [anon_sym_DASH_DASH] = ACTIONS(1779), - [anon_sym_DQUOTE] = ACTIONS(1779), - [anon_sym_SQUOTE] = ACTIONS(1779), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1779), - [sym_number] = ACTIONS(1779), - [sym_private_property_identifier] = ACTIONS(1779), - [sym_this] = ACTIONS(1781), - [sym_super] = ACTIONS(1781), - [sym_true] = ACTIONS(1781), - [sym_false] = ACTIONS(1781), - [sym_null] = ACTIONS(1781), - [sym_undefined] = ACTIONS(1781), - [anon_sym_AT] = ACTIONS(1779), - [anon_sym_static] = ACTIONS(1781), - [anon_sym_readonly] = ACTIONS(1781), - [anon_sym_get] = ACTIONS(1781), - [anon_sym_set] = ACTIONS(1781), - [anon_sym_declare] = ACTIONS(1781), - [anon_sym_public] = ACTIONS(1781), - [anon_sym_private] = ACTIONS(1781), - [anon_sym_protected] = ACTIONS(1781), - [anon_sym_override] = ACTIONS(1781), - [anon_sym_module] = ACTIONS(1781), - [anon_sym_any] = ACTIONS(1781), - [anon_sym_number] = ACTIONS(1781), - [anon_sym_boolean] = ACTIONS(1781), - [anon_sym_string] = ACTIONS(1781), - [anon_sym_symbol] = ACTIONS(1781), - [anon_sym_object] = ACTIONS(1781), - [anon_sym_abstract] = ACTIONS(1781), - [anon_sym_satisfies] = ACTIONS(1783), - [anon_sym_interface] = ACTIONS(1781), - [anon_sym_enum] = ACTIONS(1781), - [sym__automatic_semicolon] = ACTIONS(1787), - [sym__ternary_qmark] = ACTIONS(1785), + [ts_builtin_sym_end] = ACTIONS(1790), + [sym_identifier] = ACTIONS(1792), + [anon_sym_export] = ACTIONS(1792), + [anon_sym_STAR] = ACTIONS(1794), + [anon_sym_default] = ACTIONS(1792), + [anon_sym_type] = ACTIONS(1792), + [anon_sym_as] = ACTIONS(1794), + [anon_sym_namespace] = ACTIONS(1792), + [anon_sym_LBRACE] = ACTIONS(1790), + [anon_sym_COMMA] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(1790), + [anon_sym_typeof] = ACTIONS(1792), + [anon_sym_import] = ACTIONS(1792), + [anon_sym_with] = ACTIONS(1792), + [anon_sym_var] = ACTIONS(1792), + [anon_sym_let] = ACTIONS(1792), + [anon_sym_const] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_else] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1792), + [anon_sym_switch] = ACTIONS(1792), + [anon_sym_for] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_await] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1794), + [anon_sym_while] = ACTIONS(1792), + [anon_sym_do] = ACTIONS(1792), + [anon_sym_try] = ACTIONS(1792), + [anon_sym_break] = ACTIONS(1792), + [anon_sym_continue] = ACTIONS(1792), + [anon_sym_debugger] = ACTIONS(1792), + [anon_sym_return] = ACTIONS(1792), + [anon_sym_throw] = ACTIONS(1792), + [anon_sym_case] = ACTIONS(1792), + [anon_sym_yield] = ACTIONS(1792), + [anon_sym_LBRACK] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1794), + [anon_sym_class] = ACTIONS(1792), + [anon_sym_async] = ACTIONS(1792), + [anon_sym_function] = ACTIONS(1792), + [anon_sym_QMARK_DOT] = ACTIONS(1796), + [anon_sym_new] = ACTIONS(1792), + [anon_sym_using] = ACTIONS(1792), + [anon_sym_AMP_AMP] = ACTIONS(1796), + [anon_sym_PIPE_PIPE] = ACTIONS(1796), + [anon_sym_GT_GT] = ACTIONS(1794), + [anon_sym_GT_GT_GT] = ACTIONS(1796), + [anon_sym_LT_LT] = ACTIONS(1796), + [anon_sym_AMP] = ACTIONS(1794), + [anon_sym_CARET] = ACTIONS(1796), + [anon_sym_PIPE] = ACTIONS(1794), + [anon_sym_PLUS] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1792), + [anon_sym_SLASH] = ACTIONS(1792), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_STAR_STAR] = ACTIONS(1796), + [anon_sym_LT] = ACTIONS(1792), + [anon_sym_LT_EQ] = ACTIONS(1796), + [anon_sym_EQ_EQ] = ACTIONS(1794), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1796), + [anon_sym_BANG_EQ] = ACTIONS(1794), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1796), + [anon_sym_GT_EQ] = ACTIONS(1796), + [anon_sym_GT] = ACTIONS(1794), + [anon_sym_QMARK_QMARK] = ACTIONS(1796), + [anon_sym_instanceof] = ACTIONS(1794), + [anon_sym_TILDE] = ACTIONS(1790), + [anon_sym_void] = ACTIONS(1792), + [anon_sym_delete] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1790), + [anon_sym_DASH_DASH] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1790), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1790), + [sym_number] = ACTIONS(1790), + [sym_private_property_identifier] = ACTIONS(1790), + [sym_this] = ACTIONS(1792), + [sym_super] = ACTIONS(1792), + [sym_true] = ACTIONS(1792), + [sym_false] = ACTIONS(1792), + [sym_null] = ACTIONS(1792), + [sym_undefined] = ACTIONS(1792), + [anon_sym_AT] = ACTIONS(1790), + [anon_sym_static] = ACTIONS(1792), + [anon_sym_readonly] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(1792), + [anon_sym_set] = ACTIONS(1792), + [anon_sym_declare] = ACTIONS(1792), + [anon_sym_public] = ACTIONS(1792), + [anon_sym_private] = ACTIONS(1792), + [anon_sym_protected] = ACTIONS(1792), + [anon_sym_override] = ACTIONS(1792), + [anon_sym_module] = ACTIONS(1792), + [anon_sym_any] = ACTIONS(1792), + [anon_sym_number] = ACTIONS(1792), + [anon_sym_boolean] = ACTIONS(1792), + [anon_sym_string] = ACTIONS(1792), + [anon_sym_symbol] = ACTIONS(1792), + [anon_sym_object] = ACTIONS(1792), + [anon_sym_abstract] = ACTIONS(1792), + [anon_sym_satisfies] = ACTIONS(1794), + [anon_sym_interface] = ACTIONS(1792), + [anon_sym_enum] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1798), + [sym__ternary_qmark] = ACTIONS(1796), [sym_html_comment] = ACTIONS(5), }, [225] = { - [ts_builtin_sym_end] = ACTIONS(1789), - [sym_identifier] = ACTIONS(1791), - [anon_sym_export] = ACTIONS(1791), - [anon_sym_STAR] = ACTIONS(1791), - [anon_sym_default] = ACTIONS(1791), - [anon_sym_type] = ACTIONS(1791), - [anon_sym_as] = ACTIONS(1791), - [anon_sym_namespace] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1789), - [anon_sym_COMMA] = ACTIONS(1789), - [anon_sym_RBRACE] = ACTIONS(1789), - [anon_sym_typeof] = ACTIONS(1791), - [anon_sym_import] = ACTIONS(1791), - [anon_sym_with] = ACTIONS(1791), - [anon_sym_var] = ACTIONS(1791), - [anon_sym_let] = ACTIONS(1791), - [anon_sym_const] = ACTIONS(1791), - [anon_sym_BANG] = ACTIONS(1791), - [anon_sym_else] = ACTIONS(1791), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_switch] = ACTIONS(1791), - [anon_sym_for] = ACTIONS(1791), - [anon_sym_LPAREN] = ACTIONS(1789), - [anon_sym_SEMI] = ACTIONS(1789), - [anon_sym_await] = ACTIONS(1791), - [anon_sym_in] = ACTIONS(1791), - [anon_sym_while] = ACTIONS(1791), - [anon_sym_do] = ACTIONS(1791), - [anon_sym_try] = ACTIONS(1791), - [anon_sym_break] = ACTIONS(1791), - [anon_sym_continue] = ACTIONS(1791), - [anon_sym_debugger] = ACTIONS(1791), - [anon_sym_return] = ACTIONS(1791), - [anon_sym_throw] = ACTIONS(1791), - [anon_sym_case] = ACTIONS(1791), - [anon_sym_yield] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(1789), - [sym_glimmer_opening_tag] = ACTIONS(1789), - [anon_sym_DOT] = ACTIONS(1791), - [anon_sym_class] = ACTIONS(1791), - [anon_sym_async] = ACTIONS(1791), - [anon_sym_function] = ACTIONS(1791), - [anon_sym_QMARK_DOT] = ACTIONS(1789), - [anon_sym_new] = ACTIONS(1791), - [anon_sym_using] = ACTIONS(1791), - [anon_sym_AMP_AMP] = ACTIONS(1789), - [anon_sym_PIPE_PIPE] = ACTIONS(1789), - [anon_sym_GT_GT] = ACTIONS(1791), - [anon_sym_GT_GT_GT] = ACTIONS(1789), - [anon_sym_LT_LT] = ACTIONS(1789), - [anon_sym_AMP] = ACTIONS(1791), - [anon_sym_CARET] = ACTIONS(1789), - [anon_sym_PIPE] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(1791), - [anon_sym_DASH] = ACTIONS(1791), - [anon_sym_SLASH] = ACTIONS(1791), - [anon_sym_PERCENT] = ACTIONS(1789), - [anon_sym_STAR_STAR] = ACTIONS(1789), - [anon_sym_LT] = ACTIONS(1791), - [anon_sym_LT_EQ] = ACTIONS(1789), - [anon_sym_EQ_EQ] = ACTIONS(1791), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1789), - [anon_sym_BANG_EQ] = ACTIONS(1791), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1789), - [anon_sym_GT_EQ] = ACTIONS(1789), - [anon_sym_GT] = ACTIONS(1791), - [anon_sym_QMARK_QMARK] = ACTIONS(1789), - [anon_sym_instanceof] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1789), - [anon_sym_void] = ACTIONS(1791), - [anon_sym_delete] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1789), - [anon_sym_DASH_DASH] = ACTIONS(1789), - [anon_sym_DQUOTE] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1789), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1789), - [sym_number] = ACTIONS(1789), - [sym_private_property_identifier] = ACTIONS(1789), - [sym_this] = ACTIONS(1791), - [sym_super] = ACTIONS(1791), - [sym_true] = ACTIONS(1791), - [sym_false] = ACTIONS(1791), - [sym_null] = ACTIONS(1791), - [sym_undefined] = ACTIONS(1791), - [anon_sym_AT] = ACTIONS(1789), - [anon_sym_static] = ACTIONS(1791), - [anon_sym_readonly] = ACTIONS(1791), - [anon_sym_get] = ACTIONS(1791), - [anon_sym_set] = ACTIONS(1791), - [anon_sym_declare] = ACTIONS(1791), - [anon_sym_public] = ACTIONS(1791), - [anon_sym_private] = ACTIONS(1791), - [anon_sym_protected] = ACTIONS(1791), - [anon_sym_override] = ACTIONS(1791), - [anon_sym_module] = ACTIONS(1791), - [anon_sym_any] = ACTIONS(1791), - [anon_sym_number] = ACTIONS(1791), - [anon_sym_boolean] = ACTIONS(1791), - [anon_sym_string] = ACTIONS(1791), - [anon_sym_symbol] = ACTIONS(1791), - [anon_sym_object] = ACTIONS(1791), - [anon_sym_abstract] = ACTIONS(1791), - [anon_sym_satisfies] = ACTIONS(1791), - [anon_sym_interface] = ACTIONS(1791), - [anon_sym_enum] = ACTIONS(1791), - [sym__automatic_semicolon] = ACTIONS(1789), - [sym__ternary_qmark] = ACTIONS(1789), + [ts_builtin_sym_end] = ACTIONS(1800), + [sym_identifier] = ACTIONS(1802), + [anon_sym_export] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1802), + [anon_sym_type] = ACTIONS(1802), + [anon_sym_as] = ACTIONS(1804), + [anon_sym_namespace] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1800), + [anon_sym_COMMA] = ACTIONS(1806), + [anon_sym_RBRACE] = ACTIONS(1800), + [anon_sym_typeof] = ACTIONS(1802), + [anon_sym_import] = ACTIONS(1802), + [anon_sym_with] = ACTIONS(1802), + [anon_sym_var] = ACTIONS(1802), + [anon_sym_let] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_switch] = ACTIONS(1802), + [anon_sym_for] = ACTIONS(1802), + [anon_sym_LPAREN] = ACTIONS(1800), + [anon_sym_SEMI] = ACTIONS(1800), + [anon_sym_await] = ACTIONS(1802), + [anon_sym_in] = ACTIONS(1804), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_do] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_debugger] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_case] = ACTIONS(1802), + [anon_sym_yield] = ACTIONS(1802), + [anon_sym_LBRACK] = ACTIONS(1800), + [anon_sym_DOT] = ACTIONS(1804), + [anon_sym_class] = ACTIONS(1802), + [anon_sym_async] = ACTIONS(1802), + [anon_sym_function] = ACTIONS(1802), + [anon_sym_QMARK_DOT] = ACTIONS(1806), + [anon_sym_new] = ACTIONS(1802), + [anon_sym_using] = ACTIONS(1802), + [anon_sym_AMP_AMP] = ACTIONS(1806), + [anon_sym_PIPE_PIPE] = ACTIONS(1806), + [anon_sym_GT_GT] = ACTIONS(1804), + [anon_sym_GT_GT_GT] = ACTIONS(1806), + [anon_sym_LT_LT] = ACTIONS(1806), + [anon_sym_AMP] = ACTIONS(1804), + [anon_sym_CARET] = ACTIONS(1806), + [anon_sym_PIPE] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1806), + [anon_sym_STAR_STAR] = ACTIONS(1806), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_LT_EQ] = ACTIONS(1806), + [anon_sym_EQ_EQ] = ACTIONS(1804), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1806), + [anon_sym_BANG_EQ] = ACTIONS(1804), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1806), + [anon_sym_GT_EQ] = ACTIONS(1806), + [anon_sym_GT] = ACTIONS(1804), + [anon_sym_QMARK_QMARK] = ACTIONS(1806), + [anon_sym_instanceof] = ACTIONS(1804), + [anon_sym_TILDE] = ACTIONS(1800), + [anon_sym_void] = ACTIONS(1802), + [anon_sym_delete] = ACTIONS(1802), + [anon_sym_PLUS_PLUS] = ACTIONS(1800), + [anon_sym_DASH_DASH] = ACTIONS(1800), + [anon_sym_DQUOTE] = ACTIONS(1800), + [anon_sym_SQUOTE] = ACTIONS(1800), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1800), + [sym_number] = ACTIONS(1800), + [sym_private_property_identifier] = ACTIONS(1800), + [sym_this] = ACTIONS(1802), + [sym_super] = ACTIONS(1802), + [sym_true] = ACTIONS(1802), + [sym_false] = ACTIONS(1802), + [sym_null] = ACTIONS(1802), + [sym_undefined] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(1800), + [anon_sym_static] = ACTIONS(1802), + [anon_sym_readonly] = ACTIONS(1802), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_declare] = ACTIONS(1802), + [anon_sym_public] = ACTIONS(1802), + [anon_sym_private] = ACTIONS(1802), + [anon_sym_protected] = ACTIONS(1802), + [anon_sym_override] = ACTIONS(1802), + [anon_sym_module] = ACTIONS(1802), + [anon_sym_any] = ACTIONS(1802), + [anon_sym_number] = ACTIONS(1802), + [anon_sym_boolean] = ACTIONS(1802), + [anon_sym_string] = ACTIONS(1802), + [anon_sym_symbol] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_abstract] = ACTIONS(1802), + [anon_sym_satisfies] = ACTIONS(1804), + [anon_sym_interface] = ACTIONS(1802), + [anon_sym_enum] = ACTIONS(1802), + [sym__automatic_semicolon] = ACTIONS(1808), + [sym__ternary_qmark] = ACTIONS(1806), [sym_html_comment] = ACTIONS(5), }, [226] = { - [ts_builtin_sym_end] = ACTIONS(1789), - [sym_identifier] = ACTIONS(1791), - [anon_sym_export] = ACTIONS(1791), - [anon_sym_STAR] = ACTIONS(1791), - [anon_sym_default] = ACTIONS(1791), - [anon_sym_type] = ACTIONS(1791), - [anon_sym_as] = ACTIONS(1791), - [anon_sym_namespace] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1789), - [anon_sym_COMMA] = ACTIONS(1789), - [anon_sym_RBRACE] = ACTIONS(1789), - [anon_sym_typeof] = ACTIONS(1791), - [anon_sym_import] = ACTIONS(1791), - [anon_sym_with] = ACTIONS(1791), - [anon_sym_var] = ACTIONS(1791), - [anon_sym_let] = ACTIONS(1791), - [anon_sym_const] = ACTIONS(1791), - [anon_sym_BANG] = ACTIONS(1791), - [anon_sym_else] = ACTIONS(1791), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_switch] = ACTIONS(1791), - [anon_sym_for] = ACTIONS(1791), - [anon_sym_LPAREN] = ACTIONS(1789), - [anon_sym_SEMI] = ACTIONS(1789), - [anon_sym_await] = ACTIONS(1791), - [anon_sym_in] = ACTIONS(1791), - [anon_sym_while] = ACTIONS(1791), - [anon_sym_do] = ACTIONS(1791), - [anon_sym_try] = ACTIONS(1791), - [anon_sym_break] = ACTIONS(1791), - [anon_sym_continue] = ACTIONS(1791), - [anon_sym_debugger] = ACTIONS(1791), - [anon_sym_return] = ACTIONS(1791), - [anon_sym_throw] = ACTIONS(1791), - [anon_sym_case] = ACTIONS(1791), - [anon_sym_yield] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(1789), - [sym_glimmer_opening_tag] = ACTIONS(1789), - [anon_sym_DOT] = ACTIONS(1791), - [anon_sym_class] = ACTIONS(1791), - [anon_sym_async] = ACTIONS(1791), - [anon_sym_function] = ACTIONS(1791), - [anon_sym_QMARK_DOT] = ACTIONS(1789), - [anon_sym_new] = ACTIONS(1791), - [anon_sym_using] = ACTIONS(1791), - [anon_sym_AMP_AMP] = ACTIONS(1789), - [anon_sym_PIPE_PIPE] = ACTIONS(1789), - [anon_sym_GT_GT] = ACTIONS(1791), - [anon_sym_GT_GT_GT] = ACTIONS(1789), - [anon_sym_LT_LT] = ACTIONS(1789), - [anon_sym_AMP] = ACTIONS(1791), - [anon_sym_CARET] = ACTIONS(1789), - [anon_sym_PIPE] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(1791), - [anon_sym_DASH] = ACTIONS(1791), - [anon_sym_SLASH] = ACTIONS(1791), - [anon_sym_PERCENT] = ACTIONS(1789), - [anon_sym_STAR_STAR] = ACTIONS(1789), - [anon_sym_LT] = ACTIONS(1791), - [anon_sym_LT_EQ] = ACTIONS(1789), - [anon_sym_EQ_EQ] = ACTIONS(1791), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1789), - [anon_sym_BANG_EQ] = ACTIONS(1791), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1789), - [anon_sym_GT_EQ] = ACTIONS(1789), - [anon_sym_GT] = ACTIONS(1791), - [anon_sym_QMARK_QMARK] = ACTIONS(1789), - [anon_sym_instanceof] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1789), - [anon_sym_void] = ACTIONS(1791), - [anon_sym_delete] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1789), - [anon_sym_DASH_DASH] = ACTIONS(1789), - [anon_sym_DQUOTE] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1789), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1789), - [sym_number] = ACTIONS(1789), - [sym_private_property_identifier] = ACTIONS(1789), - [sym_this] = ACTIONS(1791), - [sym_super] = ACTIONS(1791), - [sym_true] = ACTIONS(1791), - [sym_false] = ACTIONS(1791), - [sym_null] = ACTIONS(1791), - [sym_undefined] = ACTIONS(1791), - [anon_sym_AT] = ACTIONS(1789), - [anon_sym_static] = ACTIONS(1791), - [anon_sym_readonly] = ACTIONS(1791), - [anon_sym_get] = ACTIONS(1791), - [anon_sym_set] = ACTIONS(1791), - [anon_sym_declare] = ACTIONS(1791), - [anon_sym_public] = ACTIONS(1791), - [anon_sym_private] = ACTIONS(1791), - [anon_sym_protected] = ACTIONS(1791), - [anon_sym_override] = ACTIONS(1791), - [anon_sym_module] = ACTIONS(1791), - [anon_sym_any] = ACTIONS(1791), - [anon_sym_number] = ACTIONS(1791), - [anon_sym_boolean] = ACTIONS(1791), - [anon_sym_string] = ACTIONS(1791), - [anon_sym_symbol] = ACTIONS(1791), - [anon_sym_object] = ACTIONS(1791), - [anon_sym_abstract] = ACTIONS(1791), - [anon_sym_satisfies] = ACTIONS(1791), - [anon_sym_interface] = ACTIONS(1791), - [anon_sym_enum] = ACTIONS(1791), - [sym__automatic_semicolon] = ACTIONS(1793), - [sym__ternary_qmark] = ACTIONS(1789), + [ts_builtin_sym_end] = ACTIONS(1810), + [sym_identifier] = ACTIONS(1812), + [anon_sym_export] = ACTIONS(1812), + [anon_sym_STAR] = ACTIONS(1814), + [anon_sym_default] = ACTIONS(1812), + [anon_sym_type] = ACTIONS(1812), + [anon_sym_as] = ACTIONS(1814), + [anon_sym_namespace] = ACTIONS(1812), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_typeof] = ACTIONS(1812), + [anon_sym_import] = ACTIONS(1812), + [anon_sym_with] = ACTIONS(1812), + [anon_sym_var] = ACTIONS(1812), + [anon_sym_let] = ACTIONS(1812), + [anon_sym_const] = ACTIONS(1812), + [anon_sym_BANG] = ACTIONS(1812), + [anon_sym_else] = ACTIONS(1812), + [anon_sym_if] = ACTIONS(1812), + [anon_sym_switch] = ACTIONS(1812), + [anon_sym_for] = ACTIONS(1812), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_await] = ACTIONS(1812), + [anon_sym_in] = ACTIONS(1814), + [anon_sym_while] = ACTIONS(1812), + [anon_sym_do] = ACTIONS(1812), + [anon_sym_try] = ACTIONS(1812), + [anon_sym_break] = ACTIONS(1812), + [anon_sym_continue] = ACTIONS(1812), + [anon_sym_debugger] = ACTIONS(1812), + [anon_sym_return] = ACTIONS(1812), + [anon_sym_throw] = ACTIONS(1812), + [anon_sym_case] = ACTIONS(1812), + [anon_sym_yield] = ACTIONS(1812), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_class] = ACTIONS(1812), + [anon_sym_async] = ACTIONS(1812), + [anon_sym_function] = ACTIONS(1812), + [anon_sym_QMARK_DOT] = ACTIONS(1816), + [anon_sym_new] = ACTIONS(1812), + [anon_sym_using] = ACTIONS(1812), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_GT_GT] = ACTIONS(1814), + [anon_sym_GT_GT_GT] = ACTIONS(1816), + [anon_sym_LT_LT] = ACTIONS(1816), + [anon_sym_AMP] = ACTIONS(1814), + [anon_sym_CARET] = ACTIONS(1816), + [anon_sym_PIPE] = ACTIONS(1814), + [anon_sym_PLUS] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_SLASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1816), + [anon_sym_STAR_STAR] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1812), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ] = ACTIONS(1814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1816), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_GT] = ACTIONS(1814), + [anon_sym_QMARK_QMARK] = ACTIONS(1816), + [anon_sym_instanceof] = ACTIONS(1814), + [anon_sym_TILDE] = ACTIONS(1810), + [anon_sym_void] = ACTIONS(1812), + [anon_sym_delete] = ACTIONS(1812), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_DQUOTE] = ACTIONS(1810), + [anon_sym_SQUOTE] = ACTIONS(1810), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1810), + [sym_number] = ACTIONS(1810), + [sym_private_property_identifier] = ACTIONS(1810), + [sym_this] = ACTIONS(1812), + [sym_super] = ACTIONS(1812), + [sym_true] = ACTIONS(1812), + [sym_false] = ACTIONS(1812), + [sym_null] = ACTIONS(1812), + [sym_undefined] = ACTIONS(1812), + [anon_sym_AT] = ACTIONS(1810), + [anon_sym_static] = ACTIONS(1812), + [anon_sym_readonly] = ACTIONS(1812), + [anon_sym_get] = ACTIONS(1812), + [anon_sym_set] = ACTIONS(1812), + [anon_sym_declare] = ACTIONS(1812), + [anon_sym_public] = ACTIONS(1812), + [anon_sym_private] = ACTIONS(1812), + [anon_sym_protected] = ACTIONS(1812), + [anon_sym_override] = ACTIONS(1812), + [anon_sym_module] = ACTIONS(1812), + [anon_sym_any] = ACTIONS(1812), + [anon_sym_number] = ACTIONS(1812), + [anon_sym_boolean] = ACTIONS(1812), + [anon_sym_string] = ACTIONS(1812), + [anon_sym_symbol] = ACTIONS(1812), + [anon_sym_object] = ACTIONS(1812), + [anon_sym_abstract] = ACTIONS(1812), + [anon_sym_satisfies] = ACTIONS(1814), + [anon_sym_interface] = ACTIONS(1812), + [anon_sym_enum] = ACTIONS(1812), + [sym__automatic_semicolon] = ACTIONS(1818), + [sym__ternary_qmark] = ACTIONS(1816), [sym_html_comment] = ACTIONS(5), }, [227] = { - [ts_builtin_sym_end] = ACTIONS(1795), - [sym_identifier] = ACTIONS(1797), - [anon_sym_export] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1797), - [anon_sym_default] = ACTIONS(1797), - [anon_sym_type] = ACTIONS(1797), - [anon_sym_as] = ACTIONS(1797), - [anon_sym_namespace] = ACTIONS(1797), - [anon_sym_LBRACE] = ACTIONS(1795), - [anon_sym_COMMA] = ACTIONS(1795), - [anon_sym_RBRACE] = ACTIONS(1795), - [anon_sym_typeof] = ACTIONS(1797), - [anon_sym_import] = ACTIONS(1797), - [anon_sym_with] = ACTIONS(1797), - [anon_sym_var] = ACTIONS(1797), - [anon_sym_let] = ACTIONS(1797), - [anon_sym_const] = ACTIONS(1797), - [anon_sym_BANG] = ACTIONS(1797), - [anon_sym_else] = ACTIONS(1797), - [anon_sym_if] = ACTIONS(1797), - [anon_sym_switch] = ACTIONS(1797), - [anon_sym_for] = ACTIONS(1797), - [anon_sym_LPAREN] = ACTIONS(1795), - [anon_sym_SEMI] = ACTIONS(1795), - [anon_sym_await] = ACTIONS(1797), - [anon_sym_in] = ACTIONS(1797), - [anon_sym_while] = ACTIONS(1797), - [anon_sym_do] = ACTIONS(1797), - [anon_sym_try] = ACTIONS(1797), - [anon_sym_break] = ACTIONS(1797), - [anon_sym_continue] = ACTIONS(1797), - [anon_sym_debugger] = ACTIONS(1797), - [anon_sym_return] = ACTIONS(1797), - [anon_sym_throw] = ACTIONS(1797), - [anon_sym_case] = ACTIONS(1797), - [anon_sym_yield] = ACTIONS(1797), - [anon_sym_LBRACK] = ACTIONS(1795), - [sym_glimmer_opening_tag] = ACTIONS(1795), - [anon_sym_DOT] = ACTIONS(1797), - [anon_sym_class] = ACTIONS(1797), - [anon_sym_async] = ACTIONS(1797), - [anon_sym_function] = ACTIONS(1797), - [anon_sym_QMARK_DOT] = ACTIONS(1795), - [anon_sym_new] = ACTIONS(1797), - [anon_sym_using] = ACTIONS(1797), - [anon_sym_AMP_AMP] = ACTIONS(1795), - [anon_sym_PIPE_PIPE] = ACTIONS(1795), - [anon_sym_GT_GT] = ACTIONS(1797), - [anon_sym_GT_GT_GT] = ACTIONS(1795), - [anon_sym_LT_LT] = ACTIONS(1795), - [anon_sym_AMP] = ACTIONS(1797), - [anon_sym_CARET] = ACTIONS(1795), - [anon_sym_PIPE] = ACTIONS(1797), - [anon_sym_PLUS] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1797), - [anon_sym_SLASH] = ACTIONS(1797), - [anon_sym_PERCENT] = ACTIONS(1795), - [anon_sym_STAR_STAR] = ACTIONS(1795), - [anon_sym_LT] = ACTIONS(1797), - [anon_sym_LT_EQ] = ACTIONS(1795), - [anon_sym_EQ_EQ] = ACTIONS(1797), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1795), - [anon_sym_BANG_EQ] = ACTIONS(1797), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1795), - [anon_sym_GT_EQ] = ACTIONS(1795), - [anon_sym_GT] = ACTIONS(1797), - [anon_sym_QMARK_QMARK] = ACTIONS(1795), - [anon_sym_instanceof] = ACTIONS(1797), - [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_void] = ACTIONS(1797), - [anon_sym_delete] = ACTIONS(1797), - [anon_sym_PLUS_PLUS] = ACTIONS(1795), - [anon_sym_DASH_DASH] = ACTIONS(1795), - [anon_sym_DQUOTE] = ACTIONS(1795), - [anon_sym_SQUOTE] = ACTIONS(1795), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1795), - [sym_number] = ACTIONS(1795), - [sym_private_property_identifier] = ACTIONS(1795), - [sym_this] = ACTIONS(1797), - [sym_super] = ACTIONS(1797), - [sym_true] = ACTIONS(1797), - [sym_false] = ACTIONS(1797), - [sym_null] = ACTIONS(1797), - [sym_undefined] = ACTIONS(1797), - [anon_sym_AT] = ACTIONS(1795), - [anon_sym_static] = ACTIONS(1797), - [anon_sym_readonly] = ACTIONS(1797), - [anon_sym_get] = ACTIONS(1797), - [anon_sym_set] = ACTIONS(1797), - [anon_sym_declare] = ACTIONS(1797), - [anon_sym_public] = ACTIONS(1797), - [anon_sym_private] = ACTIONS(1797), - [anon_sym_protected] = ACTIONS(1797), - [anon_sym_override] = ACTIONS(1797), - [anon_sym_module] = ACTIONS(1797), - [anon_sym_any] = ACTIONS(1797), - [anon_sym_number] = ACTIONS(1797), - [anon_sym_boolean] = ACTIONS(1797), - [anon_sym_string] = ACTIONS(1797), - [anon_sym_symbol] = ACTIONS(1797), - [anon_sym_object] = ACTIONS(1797), - [anon_sym_abstract] = ACTIONS(1797), - [anon_sym_satisfies] = ACTIONS(1797), - [anon_sym_interface] = ACTIONS(1797), - [anon_sym_enum] = ACTIONS(1797), - [sym__automatic_semicolon] = ACTIONS(1795), - [sym__ternary_qmark] = ACTIONS(1795), + [ts_builtin_sym_end] = ACTIONS(1820), + [sym_identifier] = ACTIONS(1822), + [anon_sym_export] = ACTIONS(1822), + [anon_sym_STAR] = ACTIONS(1824), + [anon_sym_default] = ACTIONS(1822), + [anon_sym_type] = ACTIONS(1822), + [anon_sym_as] = ACTIONS(1824), + [anon_sym_namespace] = ACTIONS(1822), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_COMMA] = ACTIONS(1826), + [anon_sym_RBRACE] = ACTIONS(1820), + [anon_sym_typeof] = ACTIONS(1822), + [anon_sym_import] = ACTIONS(1822), + [anon_sym_with] = ACTIONS(1822), + [anon_sym_var] = ACTIONS(1822), + [anon_sym_let] = ACTIONS(1822), + [anon_sym_const] = ACTIONS(1822), + [anon_sym_BANG] = ACTIONS(1822), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1822), + [anon_sym_switch] = ACTIONS(1822), + [anon_sym_for] = ACTIONS(1822), + [anon_sym_LPAREN] = ACTIONS(1820), + [anon_sym_SEMI] = ACTIONS(1820), + [anon_sym_await] = ACTIONS(1822), + [anon_sym_in] = ACTIONS(1824), + [anon_sym_while] = ACTIONS(1822), + [anon_sym_do] = ACTIONS(1822), + [anon_sym_try] = ACTIONS(1822), + [anon_sym_break] = ACTIONS(1822), + [anon_sym_continue] = ACTIONS(1822), + [anon_sym_debugger] = ACTIONS(1822), + [anon_sym_return] = ACTIONS(1822), + [anon_sym_throw] = ACTIONS(1822), + [anon_sym_case] = ACTIONS(1822), + [anon_sym_yield] = ACTIONS(1822), + [anon_sym_LBRACK] = ACTIONS(1820), + [anon_sym_DOT] = ACTIONS(1824), + [anon_sym_class] = ACTIONS(1822), + [anon_sym_async] = ACTIONS(1822), + [anon_sym_function] = ACTIONS(1822), + [anon_sym_QMARK_DOT] = ACTIONS(1826), + [anon_sym_new] = ACTIONS(1822), + [anon_sym_using] = ACTIONS(1822), + [anon_sym_AMP_AMP] = ACTIONS(1826), + [anon_sym_PIPE_PIPE] = ACTIONS(1826), + [anon_sym_GT_GT] = ACTIONS(1824), + [anon_sym_GT_GT_GT] = ACTIONS(1826), + [anon_sym_LT_LT] = ACTIONS(1826), + [anon_sym_AMP] = ACTIONS(1824), + [anon_sym_CARET] = ACTIONS(1826), + [anon_sym_PIPE] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_SLASH] = ACTIONS(1822), + [anon_sym_PERCENT] = ACTIONS(1826), + [anon_sym_STAR_STAR] = ACTIONS(1826), + [anon_sym_LT] = ACTIONS(1822), + [anon_sym_LT_EQ] = ACTIONS(1826), + [anon_sym_EQ_EQ] = ACTIONS(1824), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1826), + [anon_sym_BANG_EQ] = ACTIONS(1824), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1826), + [anon_sym_GT_EQ] = ACTIONS(1826), + [anon_sym_GT] = ACTIONS(1824), + [anon_sym_QMARK_QMARK] = ACTIONS(1826), + [anon_sym_instanceof] = ACTIONS(1824), + [anon_sym_TILDE] = ACTIONS(1820), + [anon_sym_void] = ACTIONS(1822), + [anon_sym_delete] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1820), + [anon_sym_DASH_DASH] = ACTIONS(1820), + [anon_sym_DQUOTE] = ACTIONS(1820), + [anon_sym_SQUOTE] = ACTIONS(1820), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1820), + [sym_number] = ACTIONS(1820), + [sym_private_property_identifier] = ACTIONS(1820), + [sym_this] = ACTIONS(1822), + [sym_super] = ACTIONS(1822), + [sym_true] = ACTIONS(1822), + [sym_false] = ACTIONS(1822), + [sym_null] = ACTIONS(1822), + [sym_undefined] = ACTIONS(1822), + [anon_sym_AT] = ACTIONS(1820), + [anon_sym_static] = ACTIONS(1822), + [anon_sym_readonly] = ACTIONS(1822), + [anon_sym_get] = ACTIONS(1822), + [anon_sym_set] = ACTIONS(1822), + [anon_sym_declare] = ACTIONS(1822), + [anon_sym_public] = ACTIONS(1822), + [anon_sym_private] = ACTIONS(1822), + [anon_sym_protected] = ACTIONS(1822), + [anon_sym_override] = ACTIONS(1822), + [anon_sym_module] = ACTIONS(1822), + [anon_sym_any] = ACTIONS(1822), + [anon_sym_number] = ACTIONS(1822), + [anon_sym_boolean] = ACTIONS(1822), + [anon_sym_string] = ACTIONS(1822), + [anon_sym_symbol] = ACTIONS(1822), + [anon_sym_object] = ACTIONS(1822), + [anon_sym_abstract] = ACTIONS(1822), + [anon_sym_satisfies] = ACTIONS(1824), + [anon_sym_interface] = ACTIONS(1822), + [anon_sym_enum] = ACTIONS(1822), + [sym__automatic_semicolon] = ACTIONS(1828), + [sym__ternary_qmark] = ACTIONS(1826), [sym_html_comment] = ACTIONS(5), }, [228] = { - [ts_builtin_sym_end] = ACTIONS(1799), - [sym_identifier] = ACTIONS(1801), - [anon_sym_export] = ACTIONS(1801), - [anon_sym_STAR] = ACTIONS(1803), - [anon_sym_default] = ACTIONS(1801), - [anon_sym_type] = ACTIONS(1801), - [anon_sym_as] = ACTIONS(1803), - [anon_sym_namespace] = ACTIONS(1801), - [anon_sym_LBRACE] = ACTIONS(1799), - [anon_sym_COMMA] = ACTIONS(1805), - [anon_sym_RBRACE] = ACTIONS(1799), - [anon_sym_typeof] = ACTIONS(1801), - [anon_sym_import] = ACTIONS(1801), - [anon_sym_with] = ACTIONS(1801), - [anon_sym_var] = ACTIONS(1801), - [anon_sym_let] = ACTIONS(1801), - [anon_sym_const] = ACTIONS(1801), - [anon_sym_BANG] = ACTIONS(1801), - [anon_sym_else] = ACTIONS(1801), - [anon_sym_if] = ACTIONS(1801), - [anon_sym_switch] = ACTIONS(1801), - [anon_sym_for] = ACTIONS(1801), - [anon_sym_LPAREN] = ACTIONS(1799), - [anon_sym_SEMI] = ACTIONS(1799), - [anon_sym_await] = ACTIONS(1801), - [anon_sym_in] = ACTIONS(1803), - [anon_sym_while] = ACTIONS(1801), - [anon_sym_do] = ACTIONS(1801), - [anon_sym_try] = ACTIONS(1801), - [anon_sym_break] = ACTIONS(1801), - [anon_sym_continue] = ACTIONS(1801), - [anon_sym_debugger] = ACTIONS(1801), - [anon_sym_return] = ACTIONS(1801), - [anon_sym_throw] = ACTIONS(1801), - [anon_sym_case] = ACTIONS(1801), - [anon_sym_yield] = ACTIONS(1801), - [anon_sym_LBRACK] = ACTIONS(1799), - [sym_glimmer_opening_tag] = ACTIONS(1799), - [anon_sym_DOT] = ACTIONS(1803), - [anon_sym_class] = ACTIONS(1801), - [anon_sym_async] = ACTIONS(1801), - [anon_sym_function] = ACTIONS(1801), - [anon_sym_QMARK_DOT] = ACTIONS(1805), - [anon_sym_new] = ACTIONS(1801), - [anon_sym_using] = ACTIONS(1801), - [anon_sym_AMP_AMP] = ACTIONS(1805), - [anon_sym_PIPE_PIPE] = ACTIONS(1805), - [anon_sym_GT_GT] = ACTIONS(1803), - [anon_sym_GT_GT_GT] = ACTIONS(1805), - [anon_sym_LT_LT] = ACTIONS(1805), - [anon_sym_AMP] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1805), - [anon_sym_PIPE] = ACTIONS(1803), - [anon_sym_PLUS] = ACTIONS(1801), - [anon_sym_DASH] = ACTIONS(1801), - [anon_sym_SLASH] = ACTIONS(1801), - [anon_sym_PERCENT] = ACTIONS(1805), - [anon_sym_STAR_STAR] = ACTIONS(1805), - [anon_sym_LT] = ACTIONS(1801), - [anon_sym_LT_EQ] = ACTIONS(1805), - [anon_sym_EQ_EQ] = ACTIONS(1803), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1805), - [anon_sym_BANG_EQ] = ACTIONS(1803), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1805), - [anon_sym_GT_EQ] = ACTIONS(1805), - [anon_sym_GT] = ACTIONS(1803), - [anon_sym_QMARK_QMARK] = ACTIONS(1805), - [anon_sym_instanceof] = ACTIONS(1803), - [anon_sym_TILDE] = ACTIONS(1799), - [anon_sym_void] = ACTIONS(1801), - [anon_sym_delete] = ACTIONS(1801), - [anon_sym_PLUS_PLUS] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1799), - [anon_sym_DQUOTE] = ACTIONS(1799), - [anon_sym_SQUOTE] = ACTIONS(1799), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1799), - [sym_number] = ACTIONS(1799), - [sym_private_property_identifier] = ACTIONS(1799), - [sym_this] = ACTIONS(1801), - [sym_super] = ACTIONS(1801), - [sym_true] = ACTIONS(1801), - [sym_false] = ACTIONS(1801), - [sym_null] = ACTIONS(1801), - [sym_undefined] = ACTIONS(1801), - [anon_sym_AT] = ACTIONS(1799), - [anon_sym_static] = ACTIONS(1801), - [anon_sym_readonly] = ACTIONS(1801), - [anon_sym_get] = ACTIONS(1801), - [anon_sym_set] = ACTIONS(1801), - [anon_sym_declare] = ACTIONS(1801), - [anon_sym_public] = ACTIONS(1801), - [anon_sym_private] = ACTIONS(1801), - [anon_sym_protected] = ACTIONS(1801), - [anon_sym_override] = ACTIONS(1801), - [anon_sym_module] = ACTIONS(1801), - [anon_sym_any] = ACTIONS(1801), - [anon_sym_number] = ACTIONS(1801), - [anon_sym_boolean] = ACTIONS(1801), - [anon_sym_string] = ACTIONS(1801), - [anon_sym_symbol] = ACTIONS(1801), - [anon_sym_object] = ACTIONS(1801), - [anon_sym_abstract] = ACTIONS(1801), - [anon_sym_satisfies] = ACTIONS(1803), - [anon_sym_interface] = ACTIONS(1801), - [anon_sym_enum] = ACTIONS(1801), - [sym__automatic_semicolon] = ACTIONS(1807), - [sym__ternary_qmark] = ACTIONS(1805), + [ts_builtin_sym_end] = ACTIONS(1830), + [sym_identifier] = ACTIONS(1832), + [anon_sym_export] = ACTIONS(1832), + [anon_sym_STAR] = ACTIONS(1834), + [anon_sym_default] = ACTIONS(1832), + [anon_sym_type] = ACTIONS(1832), + [anon_sym_as] = ACTIONS(1834), + [anon_sym_namespace] = ACTIONS(1832), + [anon_sym_LBRACE] = ACTIONS(1830), + [anon_sym_COMMA] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(1830), + [anon_sym_typeof] = ACTIONS(1832), + [anon_sym_import] = ACTIONS(1832), + [anon_sym_with] = ACTIONS(1832), + [anon_sym_var] = ACTIONS(1832), + [anon_sym_let] = ACTIONS(1832), + [anon_sym_const] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1832), + [anon_sym_else] = ACTIONS(1832), + [anon_sym_if] = ACTIONS(1832), + [anon_sym_switch] = ACTIONS(1832), + [anon_sym_for] = ACTIONS(1832), + [anon_sym_LPAREN] = ACTIONS(1830), + [anon_sym_SEMI] = ACTIONS(1830), + [anon_sym_await] = ACTIONS(1832), + [anon_sym_in] = ACTIONS(1834), + [anon_sym_while] = ACTIONS(1832), + [anon_sym_do] = ACTIONS(1832), + [anon_sym_try] = ACTIONS(1832), + [anon_sym_break] = ACTIONS(1832), + [anon_sym_continue] = ACTIONS(1832), + [anon_sym_debugger] = ACTIONS(1832), + [anon_sym_return] = ACTIONS(1832), + [anon_sym_throw] = ACTIONS(1832), + [anon_sym_case] = ACTIONS(1832), + [anon_sym_yield] = ACTIONS(1832), + [anon_sym_LBRACK] = ACTIONS(1830), + [anon_sym_DOT] = ACTIONS(1834), + [anon_sym_class] = ACTIONS(1832), + [anon_sym_async] = ACTIONS(1832), + [anon_sym_function] = ACTIONS(1832), + [anon_sym_QMARK_DOT] = ACTIONS(1836), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_using] = ACTIONS(1832), + [anon_sym_AMP_AMP] = ACTIONS(1836), + [anon_sym_PIPE_PIPE] = ACTIONS(1836), + [anon_sym_GT_GT] = ACTIONS(1834), + [anon_sym_GT_GT_GT] = ACTIONS(1836), + [anon_sym_LT_LT] = ACTIONS(1836), + [anon_sym_AMP] = ACTIONS(1834), + [anon_sym_CARET] = ACTIONS(1836), + [anon_sym_PIPE] = ACTIONS(1834), + [anon_sym_PLUS] = ACTIONS(1832), + [anon_sym_DASH] = ACTIONS(1832), + [anon_sym_SLASH] = ACTIONS(1832), + [anon_sym_PERCENT] = ACTIONS(1836), + [anon_sym_STAR_STAR] = ACTIONS(1836), + [anon_sym_LT] = ACTIONS(1832), + [anon_sym_LT_EQ] = ACTIONS(1836), + [anon_sym_EQ_EQ] = ACTIONS(1834), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1836), + [anon_sym_BANG_EQ] = ACTIONS(1834), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1836), + [anon_sym_GT_EQ] = ACTIONS(1836), + [anon_sym_GT] = ACTIONS(1834), + [anon_sym_QMARK_QMARK] = ACTIONS(1836), + [anon_sym_instanceof] = ACTIONS(1834), + [anon_sym_TILDE] = ACTIONS(1830), + [anon_sym_void] = ACTIONS(1832), + [anon_sym_delete] = ACTIONS(1832), + [anon_sym_PLUS_PLUS] = ACTIONS(1830), + [anon_sym_DASH_DASH] = ACTIONS(1830), + [anon_sym_DQUOTE] = ACTIONS(1830), + [anon_sym_SQUOTE] = ACTIONS(1830), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1830), + [sym_number] = ACTIONS(1830), + [sym_private_property_identifier] = ACTIONS(1830), + [sym_this] = ACTIONS(1832), + [sym_super] = ACTIONS(1832), + [sym_true] = ACTIONS(1832), + [sym_false] = ACTIONS(1832), + [sym_null] = ACTIONS(1832), + [sym_undefined] = ACTIONS(1832), + [anon_sym_AT] = ACTIONS(1830), + [anon_sym_static] = ACTIONS(1832), + [anon_sym_readonly] = ACTIONS(1832), + [anon_sym_get] = ACTIONS(1832), + [anon_sym_set] = ACTIONS(1832), + [anon_sym_declare] = ACTIONS(1832), + [anon_sym_public] = ACTIONS(1832), + [anon_sym_private] = ACTIONS(1832), + [anon_sym_protected] = ACTIONS(1832), + [anon_sym_override] = ACTIONS(1832), + [anon_sym_module] = ACTIONS(1832), + [anon_sym_any] = ACTIONS(1832), + [anon_sym_number] = ACTIONS(1832), + [anon_sym_boolean] = ACTIONS(1832), + [anon_sym_string] = ACTIONS(1832), + [anon_sym_symbol] = ACTIONS(1832), + [anon_sym_object] = ACTIONS(1832), + [anon_sym_abstract] = ACTIONS(1832), + [anon_sym_satisfies] = ACTIONS(1834), + [anon_sym_interface] = ACTIONS(1832), + [anon_sym_enum] = ACTIONS(1832), + [sym__automatic_semicolon] = ACTIONS(1838), + [sym__ternary_qmark] = ACTIONS(1836), [sym_html_comment] = ACTIONS(5), }, [229] = { - [ts_builtin_sym_end] = ACTIONS(1703), - [sym_identifier] = ACTIONS(1705), - [anon_sym_export] = ACTIONS(1705), - [anon_sym_STAR] = ACTIONS(1705), - [anon_sym_default] = ACTIONS(1705), - [anon_sym_type] = ACTIONS(1705), - [anon_sym_as] = ACTIONS(1705), - [anon_sym_namespace] = ACTIONS(1705), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_COMMA] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(1703), - [anon_sym_typeof] = ACTIONS(1705), - [anon_sym_import] = ACTIONS(1705), - [anon_sym_with] = ACTIONS(1705), - [anon_sym_var] = ACTIONS(1705), - [anon_sym_let] = ACTIONS(1705), - [anon_sym_const] = ACTIONS(1705), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_else] = ACTIONS(1705), - [anon_sym_if] = ACTIONS(1705), - [anon_sym_switch] = ACTIONS(1705), - [anon_sym_for] = ACTIONS(1705), - [anon_sym_LPAREN] = ACTIONS(1703), - [anon_sym_SEMI] = ACTIONS(1703), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_in] = ACTIONS(1705), - [anon_sym_while] = ACTIONS(1705), - [anon_sym_do] = ACTIONS(1705), - [anon_sym_try] = 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_case] = ACTIONS(1705), - [anon_sym_yield] = ACTIONS(1705), - [anon_sym_LBRACK] = ACTIONS(1703), - [sym_glimmer_opening_tag] = ACTIONS(1703), - [anon_sym_DOT] = ACTIONS(1705), - [anon_sym_class] = ACTIONS(1705), - [anon_sym_async] = ACTIONS(1705), - [anon_sym_function] = ACTIONS(1705), - [anon_sym_QMARK_DOT] = ACTIONS(1703), - [anon_sym_new] = ACTIONS(1705), - [anon_sym_using] = ACTIONS(1705), - [anon_sym_AMP_AMP] = ACTIONS(1703), - [anon_sym_PIPE_PIPE] = ACTIONS(1703), - [anon_sym_GT_GT] = ACTIONS(1705), - [anon_sym_GT_GT_GT] = ACTIONS(1703), - [anon_sym_LT_LT] = ACTIONS(1703), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_CARET] = ACTIONS(1703), - [anon_sym_PIPE] = ACTIONS(1705), - [anon_sym_PLUS] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_SLASH] = ACTIONS(1705), - [anon_sym_PERCENT] = ACTIONS(1703), - [anon_sym_STAR_STAR] = ACTIONS(1703), - [anon_sym_LT] = ACTIONS(1705), - [anon_sym_LT_EQ] = ACTIONS(1703), - [anon_sym_EQ_EQ] = ACTIONS(1705), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1703), - [anon_sym_BANG_EQ] = ACTIONS(1705), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1703), - [anon_sym_GT_EQ] = ACTIONS(1703), - [anon_sym_GT] = ACTIONS(1705), - [anon_sym_QMARK_QMARK] = ACTIONS(1703), - [anon_sym_instanceof] = 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(5), - [anon_sym_BQUOTE] = ACTIONS(1703), - [sym_number] = ACTIONS(1703), - [sym_private_property_identifier] = 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_readonly] = 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_override] = 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_object] = ACTIONS(1705), - [anon_sym_abstract] = ACTIONS(1705), - [anon_sym_satisfies] = ACTIONS(1705), - [anon_sym_interface] = ACTIONS(1705), - [anon_sym_enum] = ACTIONS(1705), - [sym__automatic_semicolon] = ACTIONS(1809), - [sym__ternary_qmark] = ACTIONS(1703), - [sym_html_comment] = ACTIONS(5), - }, - [230] = { - [ts_builtin_sym_end] = ACTIONS(1811), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_default] = ACTIONS(1813), - [anon_sym_type] = ACTIONS(1813), - [anon_sym_as] = ACTIONS(1815), - [anon_sym_namespace] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(1811), - [anon_sym_COMMA] = ACTIONS(1817), - [anon_sym_RBRACE] = ACTIONS(1811), - [anon_sym_typeof] = ACTIONS(1813), - [anon_sym_import] = ACTIONS(1813), - [anon_sym_with] = ACTIONS(1813), - [anon_sym_var] = ACTIONS(1813), - [anon_sym_let] = ACTIONS(1813), - [anon_sym_const] = ACTIONS(1813), - [anon_sym_BANG] = ACTIONS(1813), - [anon_sym_else] = ACTIONS(1813), - [anon_sym_if] = ACTIONS(1813), - [anon_sym_switch] = ACTIONS(1813), - [anon_sym_for] = ACTIONS(1813), - [anon_sym_LPAREN] = ACTIONS(1811), - [anon_sym_SEMI] = ACTIONS(1811), - [anon_sym_await] = ACTIONS(1813), - [anon_sym_in] = ACTIONS(1815), - [anon_sym_while] = ACTIONS(1813), - [anon_sym_do] = ACTIONS(1813), - [anon_sym_try] = ACTIONS(1813), - [anon_sym_break] = ACTIONS(1813), - [anon_sym_continue] = ACTIONS(1813), - [anon_sym_debugger] = ACTIONS(1813), - [anon_sym_return] = ACTIONS(1813), - [anon_sym_throw] = ACTIONS(1813), - [anon_sym_case] = ACTIONS(1813), - [anon_sym_yield] = ACTIONS(1813), - [anon_sym_LBRACK] = ACTIONS(1811), - [sym_glimmer_opening_tag] = ACTIONS(1811), - [anon_sym_DOT] = ACTIONS(1815), - [anon_sym_class] = ACTIONS(1813), - [anon_sym_async] = ACTIONS(1813), - [anon_sym_function] = ACTIONS(1813), - [anon_sym_QMARK_DOT] = ACTIONS(1817), - [anon_sym_new] = ACTIONS(1813), - [anon_sym_using] = ACTIONS(1813), - [anon_sym_AMP_AMP] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1817), - [anon_sym_GT_GT] = ACTIONS(1815), - [anon_sym_GT_GT_GT] = ACTIONS(1817), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1815), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_SLASH] = ACTIONS(1813), - [anon_sym_PERCENT] = ACTIONS(1817), - [anon_sym_STAR_STAR] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1813), - [anon_sym_LT_EQ] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1815), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ] = ACTIONS(1815), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1817), - [anon_sym_GT_EQ] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1815), - [anon_sym_QMARK_QMARK] = ACTIONS(1817), - [anon_sym_instanceof] = ACTIONS(1815), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_void] = ACTIONS(1813), - [anon_sym_delete] = ACTIONS(1813), - [anon_sym_PLUS_PLUS] = ACTIONS(1811), - [anon_sym_DASH_DASH] = ACTIONS(1811), - [anon_sym_DQUOTE] = ACTIONS(1811), - [anon_sym_SQUOTE] = ACTIONS(1811), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1811), - [sym_number] = ACTIONS(1811), - [sym_private_property_identifier] = ACTIONS(1811), - [sym_this] = ACTIONS(1813), - [sym_super] = ACTIONS(1813), - [sym_true] = ACTIONS(1813), - [sym_false] = ACTIONS(1813), - [sym_null] = ACTIONS(1813), - [sym_undefined] = ACTIONS(1813), - [anon_sym_AT] = ACTIONS(1811), - [anon_sym_static] = ACTIONS(1813), - [anon_sym_readonly] = ACTIONS(1813), - [anon_sym_get] = ACTIONS(1813), - [anon_sym_set] = ACTIONS(1813), - [anon_sym_declare] = ACTIONS(1813), - [anon_sym_public] = ACTIONS(1813), - [anon_sym_private] = ACTIONS(1813), - [anon_sym_protected] = ACTIONS(1813), - [anon_sym_override] = ACTIONS(1813), - [anon_sym_module] = ACTIONS(1813), - [anon_sym_any] = ACTIONS(1813), - [anon_sym_number] = ACTIONS(1813), - [anon_sym_boolean] = ACTIONS(1813), - [anon_sym_string] = ACTIONS(1813), - [anon_sym_symbol] = ACTIONS(1813), - [anon_sym_object] = ACTIONS(1813), - [anon_sym_abstract] = ACTIONS(1813), - [anon_sym_satisfies] = ACTIONS(1815), - [anon_sym_interface] = ACTIONS(1813), - [anon_sym_enum] = ACTIONS(1813), - [sym__automatic_semicolon] = ACTIONS(1819), - [sym__ternary_qmark] = ACTIONS(1817), - [sym_html_comment] = ACTIONS(5), - }, - [231] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1778), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2301), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(4425), + [sym_assignment_pattern] = STATE(4969), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(4425), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1396), + [sym_subscript_expression] = STATE(1396), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(4425), + [sym_spread_element] = STATE(4971), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1328), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4406), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1396), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1765), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(1765), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), - [anon_sym_extends] = ACTIONS(1767), - [anon_sym_PIPE_RBRACE] = ACTIONS(1765), - [sym__automatic_semicolon] = ACTIONS(1765), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [aux_sym_array_repeat1] = STATE(4975), + [aux_sym_array_pattern_repeat1] = STATE(4977), + [sym_identifier] = ACTIONS(1738), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_RBRACK] = ACTIONS(1840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1744), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1746), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(541), + [anon_sym_number] = ACTIONS(541), + [anon_sym_boolean] = ACTIONS(541), + [anon_sym_string] = ACTIONS(541), + [anon_sym_symbol] = ACTIONS(541), + [anon_sym_object] = ACTIONS(541), + [sym_html_comment] = ACTIONS(5), + }, + [230] = { + [ts_builtin_sym_end] = ACTIONS(1842), + [sym_identifier] = ACTIONS(1844), + [anon_sym_export] = ACTIONS(1844), + [anon_sym_STAR] = ACTIONS(1846), + [anon_sym_default] = ACTIONS(1844), + [anon_sym_type] = ACTIONS(1844), + [anon_sym_as] = ACTIONS(1846), + [anon_sym_namespace] = ACTIONS(1844), + [anon_sym_LBRACE] = ACTIONS(1842), + [anon_sym_COMMA] = ACTIONS(1848), + [anon_sym_RBRACE] = ACTIONS(1842), + [anon_sym_typeof] = ACTIONS(1844), + [anon_sym_import] = ACTIONS(1844), + [anon_sym_with] = ACTIONS(1844), + [anon_sym_var] = ACTIONS(1844), + [anon_sym_let] = ACTIONS(1844), + [anon_sym_const] = ACTIONS(1844), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_else] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1844), + [anon_sym_switch] = ACTIONS(1844), + [anon_sym_for] = ACTIONS(1844), + [anon_sym_LPAREN] = ACTIONS(1842), + [anon_sym_SEMI] = ACTIONS(1842), + [anon_sym_await] = ACTIONS(1844), + [anon_sym_in] = ACTIONS(1846), + [anon_sym_while] = ACTIONS(1844), + [anon_sym_do] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(1844), + [anon_sym_break] = ACTIONS(1844), + [anon_sym_continue] = ACTIONS(1844), + [anon_sym_debugger] = ACTIONS(1844), + [anon_sym_return] = ACTIONS(1844), + [anon_sym_throw] = ACTIONS(1844), + [anon_sym_case] = ACTIONS(1844), + [anon_sym_yield] = ACTIONS(1844), + [anon_sym_LBRACK] = ACTIONS(1842), + [anon_sym_DOT] = ACTIONS(1846), + [anon_sym_class] = ACTIONS(1844), + [anon_sym_async] = ACTIONS(1844), + [anon_sym_function] = ACTIONS(1844), + [anon_sym_QMARK_DOT] = ACTIONS(1848), + [anon_sym_new] = ACTIONS(1844), + [anon_sym_using] = ACTIONS(1844), + [anon_sym_AMP_AMP] = ACTIONS(1848), + [anon_sym_PIPE_PIPE] = ACTIONS(1848), + [anon_sym_GT_GT] = ACTIONS(1846), + [anon_sym_GT_GT_GT] = ACTIONS(1848), + [anon_sym_LT_LT] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1846), + [anon_sym_CARET] = ACTIONS(1848), + [anon_sym_PIPE] = ACTIONS(1846), + [anon_sym_PLUS] = ACTIONS(1844), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_SLASH] = ACTIONS(1844), + [anon_sym_PERCENT] = ACTIONS(1848), + [anon_sym_STAR_STAR] = ACTIONS(1848), + [anon_sym_LT] = ACTIONS(1844), + [anon_sym_LT_EQ] = ACTIONS(1848), + [anon_sym_EQ_EQ] = ACTIONS(1846), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1848), + [anon_sym_BANG_EQ] = ACTIONS(1846), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1848), + [anon_sym_GT_EQ] = ACTIONS(1848), + [anon_sym_GT] = ACTIONS(1846), + [anon_sym_QMARK_QMARK] = ACTIONS(1848), + [anon_sym_instanceof] = ACTIONS(1846), + [anon_sym_TILDE] = ACTIONS(1842), + [anon_sym_void] = ACTIONS(1844), + [anon_sym_delete] = ACTIONS(1844), + [anon_sym_PLUS_PLUS] = ACTIONS(1842), + [anon_sym_DASH_DASH] = ACTIONS(1842), + [anon_sym_DQUOTE] = ACTIONS(1842), + [anon_sym_SQUOTE] = ACTIONS(1842), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1842), + [sym_number] = ACTIONS(1842), + [sym_private_property_identifier] = ACTIONS(1842), + [sym_this] = ACTIONS(1844), + [sym_super] = ACTIONS(1844), + [sym_true] = ACTIONS(1844), + [sym_false] = ACTIONS(1844), + [sym_null] = ACTIONS(1844), + [sym_undefined] = ACTIONS(1844), + [anon_sym_AT] = ACTIONS(1842), + [anon_sym_static] = ACTIONS(1844), + [anon_sym_readonly] = ACTIONS(1844), + [anon_sym_get] = ACTIONS(1844), + [anon_sym_set] = ACTIONS(1844), + [anon_sym_declare] = ACTIONS(1844), + [anon_sym_public] = ACTIONS(1844), + [anon_sym_private] = ACTIONS(1844), + [anon_sym_protected] = ACTIONS(1844), + [anon_sym_override] = ACTIONS(1844), + [anon_sym_module] = ACTIONS(1844), + [anon_sym_any] = ACTIONS(1844), + [anon_sym_number] = ACTIONS(1844), + [anon_sym_boolean] = ACTIONS(1844), + [anon_sym_string] = ACTIONS(1844), + [anon_sym_symbol] = ACTIONS(1844), + [anon_sym_object] = ACTIONS(1844), + [anon_sym_abstract] = ACTIONS(1844), + [anon_sym_satisfies] = ACTIONS(1846), + [anon_sym_interface] = ACTIONS(1844), + [anon_sym_enum] = ACTIONS(1844), + [sym__automatic_semicolon] = ACTIONS(1850), + [sym__ternary_qmark] = ACTIONS(1848), + [sym_html_comment] = ACTIONS(5), + }, + [231] = { + [ts_builtin_sym_end] = ACTIONS(1852), + [sym_identifier] = ACTIONS(1854), + [anon_sym_export] = ACTIONS(1854), + [anon_sym_STAR] = ACTIONS(1854), + [anon_sym_default] = ACTIONS(1854), + [anon_sym_type] = ACTIONS(1854), + [anon_sym_as] = ACTIONS(1854), + [anon_sym_namespace] = ACTIONS(1854), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_COMMA] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(1852), + [anon_sym_typeof] = ACTIONS(1854), + [anon_sym_import] = ACTIONS(1854), + [anon_sym_with] = ACTIONS(1854), + [anon_sym_var] = ACTIONS(1854), + [anon_sym_let] = ACTIONS(1854), + [anon_sym_const] = ACTIONS(1854), + [anon_sym_BANG] = ACTIONS(1854), + [anon_sym_else] = ACTIONS(1854), + [anon_sym_if] = ACTIONS(1854), + [anon_sym_switch] = ACTIONS(1854), + [anon_sym_for] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(1852), + [anon_sym_SEMI] = ACTIONS(1852), + [anon_sym_await] = ACTIONS(1854), + [anon_sym_in] = ACTIONS(1854), + [anon_sym_while] = ACTIONS(1854), + [anon_sym_do] = ACTIONS(1854), + [anon_sym_try] = ACTIONS(1854), + [anon_sym_break] = ACTIONS(1854), + [anon_sym_continue] = ACTIONS(1854), + [anon_sym_debugger] = ACTIONS(1854), + [anon_sym_return] = ACTIONS(1854), + [anon_sym_throw] = ACTIONS(1854), + [anon_sym_case] = ACTIONS(1854), + [anon_sym_yield] = ACTIONS(1854), + [anon_sym_LBRACK] = ACTIONS(1852), + [anon_sym_DOT] = ACTIONS(1854), + [anon_sym_class] = ACTIONS(1854), + [anon_sym_async] = ACTIONS(1854), + [anon_sym_function] = ACTIONS(1854), + [anon_sym_QMARK_DOT] = ACTIONS(1852), + [anon_sym_new] = ACTIONS(1854), + [anon_sym_using] = ACTIONS(1854), + [anon_sym_AMP_AMP] = ACTIONS(1852), + [anon_sym_PIPE_PIPE] = ACTIONS(1852), + [anon_sym_GT_GT] = ACTIONS(1854), + [anon_sym_GT_GT_GT] = ACTIONS(1852), + [anon_sym_LT_LT] = ACTIONS(1852), + [anon_sym_AMP] = ACTIONS(1854), + [anon_sym_CARET] = ACTIONS(1852), + [anon_sym_PIPE] = ACTIONS(1854), + [anon_sym_PLUS] = ACTIONS(1854), + [anon_sym_DASH] = ACTIONS(1854), + [anon_sym_SLASH] = ACTIONS(1854), + [anon_sym_PERCENT] = ACTIONS(1852), + [anon_sym_STAR_STAR] = ACTIONS(1852), + [anon_sym_LT] = ACTIONS(1854), + [anon_sym_LT_EQ] = ACTIONS(1852), + [anon_sym_EQ_EQ] = ACTIONS(1854), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1852), + [anon_sym_BANG_EQ] = ACTIONS(1854), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1852), + [anon_sym_GT_EQ] = ACTIONS(1852), + [anon_sym_GT] = ACTIONS(1854), + [anon_sym_QMARK_QMARK] = ACTIONS(1852), + [anon_sym_instanceof] = ACTIONS(1854), + [anon_sym_TILDE] = ACTIONS(1852), + [anon_sym_void] = ACTIONS(1854), + [anon_sym_delete] = ACTIONS(1854), + [anon_sym_PLUS_PLUS] = ACTIONS(1852), + [anon_sym_DASH_DASH] = ACTIONS(1852), + [anon_sym_DQUOTE] = ACTIONS(1852), + [anon_sym_SQUOTE] = ACTIONS(1852), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1852), + [sym_number] = ACTIONS(1852), + [sym_private_property_identifier] = ACTIONS(1852), + [sym_this] = ACTIONS(1854), + [sym_super] = ACTIONS(1854), + [sym_true] = ACTIONS(1854), + [sym_false] = ACTIONS(1854), + [sym_null] = ACTIONS(1854), + [sym_undefined] = ACTIONS(1854), + [anon_sym_AT] = ACTIONS(1852), + [anon_sym_static] = ACTIONS(1854), + [anon_sym_readonly] = ACTIONS(1854), + [anon_sym_get] = ACTIONS(1854), + [anon_sym_set] = ACTIONS(1854), + [anon_sym_declare] = ACTIONS(1854), + [anon_sym_public] = ACTIONS(1854), + [anon_sym_private] = ACTIONS(1854), + [anon_sym_protected] = ACTIONS(1854), + [anon_sym_override] = ACTIONS(1854), + [anon_sym_module] = ACTIONS(1854), + [anon_sym_any] = ACTIONS(1854), + [anon_sym_number] = ACTIONS(1854), + [anon_sym_boolean] = ACTIONS(1854), + [anon_sym_string] = ACTIONS(1854), + [anon_sym_symbol] = ACTIONS(1854), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_abstract] = ACTIONS(1854), + [anon_sym_satisfies] = ACTIONS(1854), + [anon_sym_interface] = ACTIONS(1854), + [anon_sym_enum] = ACTIONS(1854), + [sym__automatic_semicolon] = ACTIONS(1852), + [sym__ternary_qmark] = ACTIONS(1852), [sym_html_comment] = ACTIONS(5), }, [232] = { - [ts_builtin_sym_end] = ACTIONS(1821), - [sym_identifier] = ACTIONS(1823), - [anon_sym_export] = ACTIONS(1823), - [anon_sym_STAR] = ACTIONS(1825), - [anon_sym_default] = ACTIONS(1823), - [anon_sym_type] = ACTIONS(1823), - [anon_sym_as] = ACTIONS(1825), - [anon_sym_namespace] = ACTIONS(1823), - [anon_sym_LBRACE] = ACTIONS(1821), - [anon_sym_COMMA] = ACTIONS(1827), - [anon_sym_RBRACE] = ACTIONS(1821), - [anon_sym_typeof] = ACTIONS(1823), - [anon_sym_import] = ACTIONS(1823), - [anon_sym_with] = ACTIONS(1823), - [anon_sym_var] = ACTIONS(1823), - [anon_sym_let] = ACTIONS(1823), - [anon_sym_const] = ACTIONS(1823), - [anon_sym_BANG] = ACTIONS(1823), - [anon_sym_else] = ACTIONS(1823), - [anon_sym_if] = ACTIONS(1823), - [anon_sym_switch] = ACTIONS(1823), - [anon_sym_for] = ACTIONS(1823), - [anon_sym_LPAREN] = ACTIONS(1821), - [anon_sym_SEMI] = ACTIONS(1821), - [anon_sym_await] = ACTIONS(1823), - [anon_sym_in] = ACTIONS(1825), - [anon_sym_while] = ACTIONS(1823), - [anon_sym_do] = ACTIONS(1823), - [anon_sym_try] = ACTIONS(1823), - [anon_sym_break] = ACTIONS(1823), - [anon_sym_continue] = ACTIONS(1823), - [anon_sym_debugger] = ACTIONS(1823), - [anon_sym_return] = ACTIONS(1823), - [anon_sym_throw] = ACTIONS(1823), - [anon_sym_case] = ACTIONS(1823), - [anon_sym_yield] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1821), - [sym_glimmer_opening_tag] = ACTIONS(1821), - [anon_sym_DOT] = ACTIONS(1825), - [anon_sym_class] = ACTIONS(1823), - [anon_sym_async] = ACTIONS(1823), - [anon_sym_function] = ACTIONS(1823), - [anon_sym_QMARK_DOT] = ACTIONS(1827), - [anon_sym_new] = ACTIONS(1823), - [anon_sym_using] = ACTIONS(1823), - [anon_sym_AMP_AMP] = ACTIONS(1827), - [anon_sym_PIPE_PIPE] = ACTIONS(1827), - [anon_sym_GT_GT] = ACTIONS(1825), - [anon_sym_GT_GT_GT] = ACTIONS(1827), - [anon_sym_LT_LT] = ACTIONS(1827), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_CARET] = ACTIONS(1827), - [anon_sym_PIPE] = ACTIONS(1825), - [anon_sym_PLUS] = ACTIONS(1823), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_SLASH] = ACTIONS(1823), - [anon_sym_PERCENT] = ACTIONS(1827), - [anon_sym_STAR_STAR] = ACTIONS(1827), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_LT_EQ] = ACTIONS(1827), - [anon_sym_EQ_EQ] = ACTIONS(1825), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1827), - [anon_sym_BANG_EQ] = ACTIONS(1825), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1827), - [anon_sym_GT_EQ] = ACTIONS(1827), - [anon_sym_GT] = ACTIONS(1825), - [anon_sym_QMARK_QMARK] = ACTIONS(1827), - [anon_sym_instanceof] = ACTIONS(1825), - [anon_sym_TILDE] = ACTIONS(1821), - [anon_sym_void] = ACTIONS(1823), - [anon_sym_delete] = ACTIONS(1823), - [anon_sym_PLUS_PLUS] = ACTIONS(1821), - [anon_sym_DASH_DASH] = ACTIONS(1821), - [anon_sym_DQUOTE] = ACTIONS(1821), - [anon_sym_SQUOTE] = ACTIONS(1821), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1821), - [sym_number] = ACTIONS(1821), - [sym_private_property_identifier] = ACTIONS(1821), - [sym_this] = ACTIONS(1823), - [sym_super] = ACTIONS(1823), - [sym_true] = ACTIONS(1823), - [sym_false] = ACTIONS(1823), - [sym_null] = ACTIONS(1823), - [sym_undefined] = ACTIONS(1823), - [anon_sym_AT] = ACTIONS(1821), - [anon_sym_static] = ACTIONS(1823), - [anon_sym_readonly] = ACTIONS(1823), - [anon_sym_get] = ACTIONS(1823), - [anon_sym_set] = ACTIONS(1823), - [anon_sym_declare] = ACTIONS(1823), - [anon_sym_public] = ACTIONS(1823), - [anon_sym_private] = ACTIONS(1823), - [anon_sym_protected] = ACTIONS(1823), - [anon_sym_override] = ACTIONS(1823), - [anon_sym_module] = ACTIONS(1823), - [anon_sym_any] = ACTIONS(1823), - [anon_sym_number] = ACTIONS(1823), - [anon_sym_boolean] = ACTIONS(1823), - [anon_sym_string] = ACTIONS(1823), - [anon_sym_symbol] = ACTIONS(1823), - [anon_sym_object] = ACTIONS(1823), - [anon_sym_abstract] = ACTIONS(1823), - [anon_sym_satisfies] = ACTIONS(1825), - [anon_sym_interface] = ACTIONS(1823), - [anon_sym_enum] = ACTIONS(1823), - [sym__automatic_semicolon] = ACTIONS(1829), - [sym__ternary_qmark] = ACTIONS(1827), + [ts_builtin_sym_end] = ACTIONS(1856), + [sym_identifier] = ACTIONS(1858), + [anon_sym_export] = ACTIONS(1858), + [anon_sym_STAR] = ACTIONS(1860), + [anon_sym_default] = ACTIONS(1858), + [anon_sym_type] = ACTIONS(1858), + [anon_sym_as] = ACTIONS(1860), + [anon_sym_namespace] = ACTIONS(1858), + [anon_sym_LBRACE] = ACTIONS(1856), + [anon_sym_COMMA] = ACTIONS(1862), + [anon_sym_RBRACE] = ACTIONS(1856), + [anon_sym_typeof] = ACTIONS(1858), + [anon_sym_import] = ACTIONS(1858), + [anon_sym_with] = ACTIONS(1858), + [anon_sym_var] = ACTIONS(1858), + [anon_sym_let] = ACTIONS(1858), + [anon_sym_const] = ACTIONS(1858), + [anon_sym_BANG] = ACTIONS(1858), + [anon_sym_else] = ACTIONS(1858), + [anon_sym_if] = ACTIONS(1858), + [anon_sym_switch] = ACTIONS(1858), + [anon_sym_for] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1856), + [anon_sym_SEMI] = ACTIONS(1856), + [anon_sym_await] = ACTIONS(1858), + [anon_sym_in] = ACTIONS(1860), + [anon_sym_while] = ACTIONS(1858), + [anon_sym_do] = ACTIONS(1858), + [anon_sym_try] = ACTIONS(1858), + [anon_sym_break] = ACTIONS(1858), + [anon_sym_continue] = ACTIONS(1858), + [anon_sym_debugger] = ACTIONS(1858), + [anon_sym_return] = ACTIONS(1858), + [anon_sym_throw] = ACTIONS(1858), + [anon_sym_case] = ACTIONS(1858), + [anon_sym_yield] = ACTIONS(1858), + [anon_sym_LBRACK] = ACTIONS(1856), + [anon_sym_DOT] = ACTIONS(1860), + [anon_sym_class] = ACTIONS(1858), + [anon_sym_async] = ACTIONS(1858), + [anon_sym_function] = ACTIONS(1858), + [anon_sym_QMARK_DOT] = ACTIONS(1862), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_using] = ACTIONS(1858), + [anon_sym_AMP_AMP] = ACTIONS(1862), + [anon_sym_PIPE_PIPE] = ACTIONS(1862), + [anon_sym_GT_GT] = ACTIONS(1860), + [anon_sym_GT_GT_GT] = ACTIONS(1862), + [anon_sym_LT_LT] = ACTIONS(1862), + [anon_sym_AMP] = ACTIONS(1860), + [anon_sym_CARET] = ACTIONS(1862), + [anon_sym_PIPE] = ACTIONS(1860), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_SLASH] = ACTIONS(1858), + [anon_sym_PERCENT] = ACTIONS(1862), + [anon_sym_STAR_STAR] = ACTIONS(1862), + [anon_sym_LT] = ACTIONS(1858), + [anon_sym_LT_EQ] = ACTIONS(1862), + [anon_sym_EQ_EQ] = ACTIONS(1860), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1862), + [anon_sym_BANG_EQ] = ACTIONS(1860), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1862), + [anon_sym_GT_EQ] = ACTIONS(1862), + [anon_sym_GT] = ACTIONS(1860), + [anon_sym_QMARK_QMARK] = ACTIONS(1862), + [anon_sym_instanceof] = ACTIONS(1860), + [anon_sym_TILDE] = ACTIONS(1856), + [anon_sym_void] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(1858), + [anon_sym_PLUS_PLUS] = ACTIONS(1856), + [anon_sym_DASH_DASH] = ACTIONS(1856), + [anon_sym_DQUOTE] = ACTIONS(1856), + [anon_sym_SQUOTE] = ACTIONS(1856), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1856), + [sym_number] = ACTIONS(1856), + [sym_private_property_identifier] = ACTIONS(1856), + [sym_this] = ACTIONS(1858), + [sym_super] = ACTIONS(1858), + [sym_true] = ACTIONS(1858), + [sym_false] = ACTIONS(1858), + [sym_null] = ACTIONS(1858), + [sym_undefined] = ACTIONS(1858), + [anon_sym_AT] = ACTIONS(1856), + [anon_sym_static] = ACTIONS(1858), + [anon_sym_readonly] = ACTIONS(1858), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_declare] = ACTIONS(1858), + [anon_sym_public] = ACTIONS(1858), + [anon_sym_private] = ACTIONS(1858), + [anon_sym_protected] = ACTIONS(1858), + [anon_sym_override] = ACTIONS(1858), + [anon_sym_module] = ACTIONS(1858), + [anon_sym_any] = ACTIONS(1858), + [anon_sym_number] = ACTIONS(1858), + [anon_sym_boolean] = ACTIONS(1858), + [anon_sym_string] = ACTIONS(1858), + [anon_sym_symbol] = ACTIONS(1858), + [anon_sym_object] = ACTIONS(1858), + [anon_sym_abstract] = ACTIONS(1858), + [anon_sym_satisfies] = ACTIONS(1860), + [anon_sym_interface] = ACTIONS(1858), + [anon_sym_enum] = ACTIONS(1858), + [sym__automatic_semicolon] = ACTIONS(1864), + [sym__ternary_qmark] = ACTIONS(1862), [sym_html_comment] = ACTIONS(5), }, [233] = { - [ts_builtin_sym_end] = ACTIONS(1831), - [sym_identifier] = ACTIONS(1833), - [anon_sym_export] = ACTIONS(1833), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym_default] = ACTIONS(1833), - [anon_sym_type] = ACTIONS(1833), - [anon_sym_as] = ACTIONS(1833), - [anon_sym_namespace] = ACTIONS(1833), - [anon_sym_LBRACE] = ACTIONS(1831), - [anon_sym_COMMA] = ACTIONS(1831), - [anon_sym_RBRACE] = ACTIONS(1831), - [anon_sym_typeof] = ACTIONS(1833), - [anon_sym_import] = ACTIONS(1833), - [anon_sym_with] = ACTIONS(1833), - [anon_sym_var] = ACTIONS(1833), - [anon_sym_let] = ACTIONS(1833), - [anon_sym_const] = ACTIONS(1833), - [anon_sym_BANG] = ACTIONS(1833), - [anon_sym_else] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_switch] = ACTIONS(1833), - [anon_sym_for] = ACTIONS(1833), - [anon_sym_LPAREN] = ACTIONS(1831), - [anon_sym_SEMI] = ACTIONS(1831), - [anon_sym_await] = ACTIONS(1833), - [anon_sym_in] = ACTIONS(1833), - [anon_sym_while] = ACTIONS(1833), - [anon_sym_do] = ACTIONS(1833), - [anon_sym_try] = ACTIONS(1833), - [anon_sym_break] = ACTIONS(1833), - [anon_sym_continue] = ACTIONS(1833), - [anon_sym_debugger] = ACTIONS(1833), - [anon_sym_return] = ACTIONS(1833), - [anon_sym_throw] = ACTIONS(1833), - [anon_sym_case] = ACTIONS(1833), - [anon_sym_yield] = ACTIONS(1833), - [anon_sym_LBRACK] = ACTIONS(1831), - [sym_glimmer_opening_tag] = ACTIONS(1831), - [anon_sym_DOT] = ACTIONS(1833), - [anon_sym_class] = ACTIONS(1833), - [anon_sym_async] = ACTIONS(1833), - [anon_sym_function] = ACTIONS(1833), - [anon_sym_QMARK_DOT] = ACTIONS(1831), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1833), - [anon_sym_AMP_AMP] = ACTIONS(1831), - [anon_sym_PIPE_PIPE] = ACTIONS(1831), - [anon_sym_GT_GT] = ACTIONS(1833), - [anon_sym_GT_GT_GT] = ACTIONS(1831), - [anon_sym_LT_LT] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1833), - [anon_sym_CARET] = ACTIONS(1831), - [anon_sym_PIPE] = ACTIONS(1833), - [anon_sym_PLUS] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1833), - [anon_sym_SLASH] = ACTIONS(1833), - [anon_sym_PERCENT] = ACTIONS(1831), - [anon_sym_STAR_STAR] = ACTIONS(1831), - [anon_sym_LT] = ACTIONS(1833), - [anon_sym_LT_EQ] = ACTIONS(1831), - [anon_sym_EQ_EQ] = ACTIONS(1833), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1831), - [anon_sym_BANG_EQ] = ACTIONS(1833), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1831), - [anon_sym_GT_EQ] = ACTIONS(1831), - [anon_sym_GT] = ACTIONS(1833), - [anon_sym_QMARK_QMARK] = ACTIONS(1831), - [anon_sym_instanceof] = ACTIONS(1833), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_void] = ACTIONS(1833), - [anon_sym_delete] = ACTIONS(1833), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_DQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE] = ACTIONS(1831), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1831), - [sym_number] = ACTIONS(1831), - [sym_private_property_identifier] = ACTIONS(1831), - [sym_this] = ACTIONS(1833), - [sym_super] = ACTIONS(1833), - [sym_true] = ACTIONS(1833), - [sym_false] = ACTIONS(1833), - [sym_null] = ACTIONS(1833), - [sym_undefined] = ACTIONS(1833), - [anon_sym_AT] = ACTIONS(1831), - [anon_sym_static] = ACTIONS(1833), - [anon_sym_readonly] = ACTIONS(1833), - [anon_sym_get] = ACTIONS(1833), - [anon_sym_set] = ACTIONS(1833), - [anon_sym_declare] = ACTIONS(1833), - [anon_sym_public] = ACTIONS(1833), - [anon_sym_private] = ACTIONS(1833), - [anon_sym_protected] = ACTIONS(1833), - [anon_sym_override] = ACTIONS(1833), - [anon_sym_module] = ACTIONS(1833), - [anon_sym_any] = ACTIONS(1833), - [anon_sym_number] = ACTIONS(1833), - [anon_sym_boolean] = ACTIONS(1833), - [anon_sym_string] = ACTIONS(1833), - [anon_sym_symbol] = ACTIONS(1833), - [anon_sym_object] = ACTIONS(1833), - [anon_sym_abstract] = ACTIONS(1833), - [anon_sym_satisfies] = ACTIONS(1833), - [anon_sym_interface] = ACTIONS(1833), - [anon_sym_enum] = ACTIONS(1833), - [sym__automatic_semicolon] = ACTIONS(1831), - [sym__ternary_qmark] = ACTIONS(1831), + [ts_builtin_sym_end] = ACTIONS(1866), + [sym_identifier] = ACTIONS(1868), + [anon_sym_export] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1870), + [anon_sym_default] = ACTIONS(1868), + [anon_sym_type] = ACTIONS(1868), + [anon_sym_as] = ACTIONS(1870), + [anon_sym_namespace] = ACTIONS(1868), + [anon_sym_LBRACE] = ACTIONS(1866), + [anon_sym_COMMA] = ACTIONS(1872), + [anon_sym_RBRACE] = ACTIONS(1866), + [anon_sym_typeof] = ACTIONS(1868), + [anon_sym_import] = ACTIONS(1868), + [anon_sym_with] = ACTIONS(1868), + [anon_sym_var] = ACTIONS(1868), + [anon_sym_let] = ACTIONS(1868), + [anon_sym_const] = ACTIONS(1868), + [anon_sym_BANG] = ACTIONS(1868), + [anon_sym_else] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(1868), + [anon_sym_switch] = ACTIONS(1868), + [anon_sym_for] = ACTIONS(1868), + [anon_sym_LPAREN] = ACTIONS(1866), + [anon_sym_SEMI] = ACTIONS(1866), + [anon_sym_await] = ACTIONS(1868), + [anon_sym_in] = ACTIONS(1870), + [anon_sym_while] = ACTIONS(1868), + [anon_sym_do] = ACTIONS(1868), + [anon_sym_try] = ACTIONS(1868), + [anon_sym_break] = ACTIONS(1868), + [anon_sym_continue] = ACTIONS(1868), + [anon_sym_debugger] = ACTIONS(1868), + [anon_sym_return] = ACTIONS(1868), + [anon_sym_throw] = ACTIONS(1868), + [anon_sym_case] = ACTIONS(1868), + [anon_sym_yield] = ACTIONS(1868), + [anon_sym_LBRACK] = ACTIONS(1866), + [anon_sym_DOT] = ACTIONS(1870), + [anon_sym_class] = ACTIONS(1868), + [anon_sym_async] = ACTIONS(1868), + [anon_sym_function] = ACTIONS(1868), + [anon_sym_QMARK_DOT] = ACTIONS(1872), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_using] = ACTIONS(1868), + [anon_sym_AMP_AMP] = ACTIONS(1872), + [anon_sym_PIPE_PIPE] = ACTIONS(1872), + [anon_sym_GT_GT] = ACTIONS(1870), + [anon_sym_GT_GT_GT] = ACTIONS(1872), + [anon_sym_LT_LT] = ACTIONS(1872), + [anon_sym_AMP] = ACTIONS(1870), + [anon_sym_CARET] = ACTIONS(1872), + [anon_sym_PIPE] = ACTIONS(1870), + [anon_sym_PLUS] = ACTIONS(1868), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_SLASH] = ACTIONS(1868), + [anon_sym_PERCENT] = ACTIONS(1872), + [anon_sym_STAR_STAR] = ACTIONS(1872), + [anon_sym_LT] = ACTIONS(1868), + [anon_sym_LT_EQ] = ACTIONS(1872), + [anon_sym_EQ_EQ] = ACTIONS(1870), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1872), + [anon_sym_BANG_EQ] = ACTIONS(1870), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1872), + [anon_sym_GT_EQ] = ACTIONS(1872), + [anon_sym_GT] = ACTIONS(1870), + [anon_sym_QMARK_QMARK] = ACTIONS(1872), + [anon_sym_instanceof] = ACTIONS(1870), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_void] = ACTIONS(1868), + [anon_sym_delete] = ACTIONS(1868), + [anon_sym_PLUS_PLUS] = ACTIONS(1866), + [anon_sym_DASH_DASH] = ACTIONS(1866), + [anon_sym_DQUOTE] = ACTIONS(1866), + [anon_sym_SQUOTE] = ACTIONS(1866), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1866), + [sym_number] = ACTIONS(1866), + [sym_private_property_identifier] = ACTIONS(1866), + [sym_this] = ACTIONS(1868), + [sym_super] = ACTIONS(1868), + [sym_true] = ACTIONS(1868), + [sym_false] = ACTIONS(1868), + [sym_null] = ACTIONS(1868), + [sym_undefined] = ACTIONS(1868), + [anon_sym_AT] = ACTIONS(1866), + [anon_sym_static] = ACTIONS(1868), + [anon_sym_readonly] = ACTIONS(1868), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), + [anon_sym_declare] = ACTIONS(1868), + [anon_sym_public] = ACTIONS(1868), + [anon_sym_private] = ACTIONS(1868), + [anon_sym_protected] = ACTIONS(1868), + [anon_sym_override] = ACTIONS(1868), + [anon_sym_module] = ACTIONS(1868), + [anon_sym_any] = ACTIONS(1868), + [anon_sym_number] = ACTIONS(1868), + [anon_sym_boolean] = ACTIONS(1868), + [anon_sym_string] = ACTIONS(1868), + [anon_sym_symbol] = ACTIONS(1868), + [anon_sym_object] = ACTIONS(1868), + [anon_sym_abstract] = ACTIONS(1868), + [anon_sym_satisfies] = ACTIONS(1870), + [anon_sym_interface] = ACTIONS(1868), + [anon_sym_enum] = ACTIONS(1868), + [sym__automatic_semicolon] = ACTIONS(1874), + [sym__ternary_qmark] = ACTIONS(1872), [sym_html_comment] = ACTIONS(5), }, [234] = { - [ts_builtin_sym_end] = ACTIONS(1835), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1837), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_type] = ACTIONS(1837), - [anon_sym_as] = ACTIONS(1837), - [anon_sym_namespace] = ACTIONS(1837), - [anon_sym_LBRACE] = ACTIONS(1835), - [anon_sym_COMMA] = ACTIONS(1835), - [anon_sym_RBRACE] = ACTIONS(1835), - [anon_sym_typeof] = ACTIONS(1837), - [anon_sym_import] = ACTIONS(1837), - [anon_sym_with] = ACTIONS(1837), - [anon_sym_var] = ACTIONS(1837), - [anon_sym_let] = ACTIONS(1837), - [anon_sym_const] = ACTIONS(1837), - [anon_sym_BANG] = ACTIONS(1837), - [anon_sym_else] = ACTIONS(1837), - [anon_sym_if] = ACTIONS(1837), - [anon_sym_switch] = ACTIONS(1837), - [anon_sym_for] = ACTIONS(1837), - [anon_sym_LPAREN] = ACTIONS(1835), - [anon_sym_SEMI] = ACTIONS(1835), - [anon_sym_await] = ACTIONS(1837), - [anon_sym_in] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1837), - [anon_sym_do] = ACTIONS(1837), - [anon_sym_try] = ACTIONS(1837), - [anon_sym_break] = ACTIONS(1837), - [anon_sym_continue] = ACTIONS(1837), - [anon_sym_debugger] = ACTIONS(1837), - [anon_sym_return] = ACTIONS(1837), - [anon_sym_throw] = ACTIONS(1837), - [anon_sym_case] = ACTIONS(1837), - [anon_sym_yield] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1835), - [sym_glimmer_opening_tag] = ACTIONS(1835), - [anon_sym_DOT] = ACTIONS(1837), - [anon_sym_class] = ACTIONS(1837), - [anon_sym_async] = ACTIONS(1837), - [anon_sym_function] = ACTIONS(1837), - [anon_sym_QMARK_DOT] = ACTIONS(1835), - [anon_sym_new] = ACTIONS(1837), - [anon_sym_using] = ACTIONS(1837), - [anon_sym_AMP_AMP] = ACTIONS(1835), - [anon_sym_PIPE_PIPE] = ACTIONS(1835), - [anon_sym_GT_GT] = ACTIONS(1837), - [anon_sym_GT_GT_GT] = ACTIONS(1835), - [anon_sym_LT_LT] = ACTIONS(1835), - [anon_sym_AMP] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(1835), - [anon_sym_PIPE] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1837), - [anon_sym_DASH] = ACTIONS(1837), - [anon_sym_SLASH] = ACTIONS(1837), - [anon_sym_PERCENT] = ACTIONS(1835), - [anon_sym_STAR_STAR] = ACTIONS(1835), - [anon_sym_LT] = ACTIONS(1837), - [anon_sym_LT_EQ] = ACTIONS(1835), - [anon_sym_EQ_EQ] = ACTIONS(1837), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1835), - [anon_sym_BANG_EQ] = ACTIONS(1837), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1835), - [anon_sym_GT_EQ] = ACTIONS(1835), - [anon_sym_GT] = ACTIONS(1837), - [anon_sym_QMARK_QMARK] = ACTIONS(1835), - [anon_sym_instanceof] = ACTIONS(1837), - [anon_sym_TILDE] = ACTIONS(1835), - [anon_sym_void] = ACTIONS(1837), - [anon_sym_delete] = ACTIONS(1837), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), - [anon_sym_DQUOTE] = ACTIONS(1835), - [anon_sym_SQUOTE] = ACTIONS(1835), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1835), - [sym_number] = ACTIONS(1835), - [sym_private_property_identifier] = ACTIONS(1835), - [sym_this] = ACTIONS(1837), - [sym_super] = ACTIONS(1837), - [sym_true] = ACTIONS(1837), - [sym_false] = ACTIONS(1837), - [sym_null] = ACTIONS(1837), - [sym_undefined] = ACTIONS(1837), - [anon_sym_AT] = ACTIONS(1835), - [anon_sym_static] = ACTIONS(1837), - [anon_sym_readonly] = ACTIONS(1837), - [anon_sym_get] = ACTIONS(1837), - [anon_sym_set] = ACTIONS(1837), - [anon_sym_declare] = ACTIONS(1837), - [anon_sym_public] = ACTIONS(1837), - [anon_sym_private] = ACTIONS(1837), - [anon_sym_protected] = ACTIONS(1837), - [anon_sym_override] = ACTIONS(1837), - [anon_sym_module] = ACTIONS(1837), - [anon_sym_any] = ACTIONS(1837), - [anon_sym_number] = ACTIONS(1837), - [anon_sym_boolean] = ACTIONS(1837), - [anon_sym_string] = ACTIONS(1837), - [anon_sym_symbol] = ACTIONS(1837), - [anon_sym_object] = ACTIONS(1837), - [anon_sym_abstract] = ACTIONS(1837), - [anon_sym_satisfies] = ACTIONS(1837), - [anon_sym_interface] = ACTIONS(1837), - [anon_sym_enum] = ACTIONS(1837), - [sym__automatic_semicolon] = ACTIONS(1835), - [sym__ternary_qmark] = ACTIONS(1835), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2126), + [sym_primary_expression] = STATE(1515), + [sym_yield_expression] = STATE(1652), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(4425), + [sym_assignment_pattern] = STATE(4969), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(4425), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), + [sym_await_expression] = STATE(1652), + [sym_member_expression] = STATE(1396), + [sym_subscript_expression] = STATE(1396), + [sym_assignment_expression] = STATE(1652), + [sym__augmented_assignment_lhs] = STATE(3003), + [sym_augmented_assignment_expression] = STATE(1652), + [sym__destructuring_pattern] = STATE(4425), + [sym_spread_element] = STATE(4946), + [sym_ternary_expression] = STATE(1652), + [sym_binary_expression] = STATE(1652), + [sym_unary_expression] = STATE(1652), + [sym_update_expression] = STATE(1652), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4406), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1396), + [sym_type_assertion] = STATE(1652), + [sym_as_expression] = STATE(1652), + [sym_satisfies_expression] = STATE(1652), + [sym_instantiation_expression] = STATE(1652), + [sym_internal_module] = STATE(1652), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [aux_sym_array_repeat1] = STATE(4955), + [aux_sym_array_pattern_repeat1] = STATE(4977), + [sym_identifier] = ACTIONS(1738), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_RBRACK] = ACTIONS(1876), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1744), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1746), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(541), + [anon_sym_number] = ACTIONS(541), + [anon_sym_boolean] = ACTIONS(541), + [anon_sym_string] = ACTIONS(541), + [anon_sym_symbol] = ACTIONS(541), + [anon_sym_object] = ACTIONS(541), [sym_html_comment] = ACTIONS(5), }, [235] = { - [ts_builtin_sym_end] = ACTIONS(1839), - [sym_identifier] = ACTIONS(1841), - [anon_sym_export] = ACTIONS(1841), - [anon_sym_STAR] = ACTIONS(1843), - [anon_sym_default] = ACTIONS(1841), - [anon_sym_type] = ACTIONS(1841), - [anon_sym_as] = ACTIONS(1843), - [anon_sym_namespace] = ACTIONS(1841), - [anon_sym_LBRACE] = ACTIONS(1839), - [anon_sym_COMMA] = ACTIONS(1845), - [anon_sym_RBRACE] = ACTIONS(1839), - [anon_sym_typeof] = ACTIONS(1841), - [anon_sym_import] = ACTIONS(1841), - [anon_sym_with] = ACTIONS(1841), - [anon_sym_var] = ACTIONS(1841), - [anon_sym_let] = ACTIONS(1841), - [anon_sym_const] = ACTIONS(1841), - [anon_sym_BANG] = ACTIONS(1841), - [anon_sym_else] = ACTIONS(1841), - [anon_sym_if] = ACTIONS(1841), - [anon_sym_switch] = ACTIONS(1841), - [anon_sym_for] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_SEMI] = ACTIONS(1839), - [anon_sym_await] = ACTIONS(1841), - [anon_sym_in] = ACTIONS(1843), - [anon_sym_while] = ACTIONS(1841), - [anon_sym_do] = ACTIONS(1841), - [anon_sym_try] = ACTIONS(1841), - [anon_sym_break] = ACTIONS(1841), - [anon_sym_continue] = ACTIONS(1841), - [anon_sym_debugger] = ACTIONS(1841), - [anon_sym_return] = ACTIONS(1841), - [anon_sym_throw] = ACTIONS(1841), - [anon_sym_case] = ACTIONS(1841), - [anon_sym_yield] = ACTIONS(1841), - [anon_sym_LBRACK] = ACTIONS(1839), - [sym_glimmer_opening_tag] = ACTIONS(1839), - [anon_sym_DOT] = ACTIONS(1843), - [anon_sym_class] = ACTIONS(1841), - [anon_sym_async] = ACTIONS(1841), - [anon_sym_function] = ACTIONS(1841), - [anon_sym_QMARK_DOT] = ACTIONS(1845), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1841), - [anon_sym_AMP_AMP] = ACTIONS(1845), - [anon_sym_PIPE_PIPE] = ACTIONS(1845), - [anon_sym_GT_GT] = ACTIONS(1843), - [anon_sym_GT_GT_GT] = ACTIONS(1845), - [anon_sym_LT_LT] = ACTIONS(1845), - [anon_sym_AMP] = ACTIONS(1843), - [anon_sym_CARET] = ACTIONS(1845), - [anon_sym_PIPE] = ACTIONS(1843), - [anon_sym_PLUS] = ACTIONS(1841), - [anon_sym_DASH] = ACTIONS(1841), - [anon_sym_SLASH] = ACTIONS(1841), - [anon_sym_PERCENT] = ACTIONS(1845), - [anon_sym_STAR_STAR] = ACTIONS(1845), - [anon_sym_LT] = ACTIONS(1841), - [anon_sym_LT_EQ] = ACTIONS(1845), - [anon_sym_EQ_EQ] = ACTIONS(1843), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1845), - [anon_sym_BANG_EQ] = ACTIONS(1843), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1845), - [anon_sym_GT_EQ] = ACTIONS(1845), - [anon_sym_GT] = ACTIONS(1843), - [anon_sym_QMARK_QMARK] = ACTIONS(1845), - [anon_sym_instanceof] = ACTIONS(1843), - [anon_sym_TILDE] = ACTIONS(1839), - [anon_sym_void] = ACTIONS(1841), - [anon_sym_delete] = ACTIONS(1841), - [anon_sym_PLUS_PLUS] = ACTIONS(1839), - [anon_sym_DASH_DASH] = ACTIONS(1839), - [anon_sym_DQUOTE] = ACTIONS(1839), - [anon_sym_SQUOTE] = ACTIONS(1839), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1839), - [sym_number] = ACTIONS(1839), - [sym_private_property_identifier] = ACTIONS(1839), - [sym_this] = ACTIONS(1841), - [sym_super] = ACTIONS(1841), - [sym_true] = ACTIONS(1841), - [sym_false] = ACTIONS(1841), - [sym_null] = ACTIONS(1841), - [sym_undefined] = ACTIONS(1841), - [anon_sym_AT] = ACTIONS(1839), - [anon_sym_static] = ACTIONS(1841), - [anon_sym_readonly] = ACTIONS(1841), - [anon_sym_get] = ACTIONS(1841), - [anon_sym_set] = ACTIONS(1841), - [anon_sym_declare] = ACTIONS(1841), - [anon_sym_public] = ACTIONS(1841), - [anon_sym_private] = ACTIONS(1841), - [anon_sym_protected] = ACTIONS(1841), - [anon_sym_override] = ACTIONS(1841), - [anon_sym_module] = ACTIONS(1841), - [anon_sym_any] = ACTIONS(1841), - [anon_sym_number] = ACTIONS(1841), - [anon_sym_boolean] = ACTIONS(1841), - [anon_sym_string] = ACTIONS(1841), - [anon_sym_symbol] = ACTIONS(1841), - [anon_sym_object] = ACTIONS(1841), - [anon_sym_abstract] = ACTIONS(1841), - [anon_sym_satisfies] = ACTIONS(1843), - [anon_sym_interface] = ACTIONS(1841), - [anon_sym_enum] = ACTIONS(1841), - [sym__automatic_semicolon] = ACTIONS(1847), - [sym__ternary_qmark] = ACTIONS(1845), + [ts_builtin_sym_end] = ACTIONS(1878), + [sym_identifier] = ACTIONS(1880), + [anon_sym_export] = ACTIONS(1880), + [anon_sym_STAR] = ACTIONS(1880), + [anon_sym_default] = ACTIONS(1880), + [anon_sym_type] = ACTIONS(1880), + [anon_sym_as] = ACTIONS(1880), + [anon_sym_namespace] = ACTIONS(1880), + [anon_sym_LBRACE] = ACTIONS(1878), + [anon_sym_COMMA] = ACTIONS(1878), + [anon_sym_RBRACE] = ACTIONS(1878), + [anon_sym_typeof] = ACTIONS(1880), + [anon_sym_import] = ACTIONS(1880), + [anon_sym_with] = ACTIONS(1880), + [anon_sym_var] = ACTIONS(1880), + [anon_sym_let] = ACTIONS(1880), + [anon_sym_const] = ACTIONS(1880), + [anon_sym_BANG] = ACTIONS(1880), + [anon_sym_else] = ACTIONS(1880), + [anon_sym_if] = ACTIONS(1880), + [anon_sym_switch] = ACTIONS(1880), + [anon_sym_for] = ACTIONS(1880), + [anon_sym_LPAREN] = ACTIONS(1878), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym_await] = ACTIONS(1880), + [anon_sym_in] = ACTIONS(1880), + [anon_sym_while] = ACTIONS(1880), + [anon_sym_do] = ACTIONS(1880), + [anon_sym_try] = ACTIONS(1880), + [anon_sym_break] = ACTIONS(1880), + [anon_sym_continue] = ACTIONS(1880), + [anon_sym_debugger] = ACTIONS(1880), + [anon_sym_return] = ACTIONS(1880), + [anon_sym_throw] = ACTIONS(1880), + [anon_sym_case] = ACTIONS(1880), + [anon_sym_yield] = ACTIONS(1880), + [anon_sym_LBRACK] = ACTIONS(1878), + [anon_sym_DOT] = ACTIONS(1880), + [anon_sym_class] = ACTIONS(1880), + [anon_sym_async] = ACTIONS(1880), + [anon_sym_function] = ACTIONS(1880), + [anon_sym_QMARK_DOT] = ACTIONS(1878), + [anon_sym_new] = ACTIONS(1880), + [anon_sym_using] = ACTIONS(1880), + [anon_sym_AMP_AMP] = ACTIONS(1878), + [anon_sym_PIPE_PIPE] = ACTIONS(1878), + [anon_sym_GT_GT] = ACTIONS(1880), + [anon_sym_GT_GT_GT] = ACTIONS(1878), + [anon_sym_LT_LT] = ACTIONS(1878), + [anon_sym_AMP] = ACTIONS(1880), + [anon_sym_CARET] = ACTIONS(1878), + [anon_sym_PIPE] = ACTIONS(1880), + [anon_sym_PLUS] = ACTIONS(1880), + [anon_sym_DASH] = ACTIONS(1880), + [anon_sym_SLASH] = ACTIONS(1880), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_STAR_STAR] = ACTIONS(1878), + [anon_sym_LT] = ACTIONS(1880), + [anon_sym_LT_EQ] = ACTIONS(1878), + [anon_sym_EQ_EQ] = ACTIONS(1880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1878), + [anon_sym_BANG_EQ] = ACTIONS(1880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1878), + [anon_sym_GT_EQ] = ACTIONS(1878), + [anon_sym_GT] = ACTIONS(1880), + [anon_sym_QMARK_QMARK] = ACTIONS(1878), + [anon_sym_instanceof] = ACTIONS(1880), + [anon_sym_TILDE] = ACTIONS(1878), + [anon_sym_void] = ACTIONS(1880), + [anon_sym_delete] = ACTIONS(1880), + [anon_sym_PLUS_PLUS] = ACTIONS(1878), + [anon_sym_DASH_DASH] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1878), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1878), + [sym_number] = ACTIONS(1878), + [sym_private_property_identifier] = ACTIONS(1878), + [sym_this] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_true] = ACTIONS(1880), + [sym_false] = ACTIONS(1880), + [sym_null] = ACTIONS(1880), + [sym_undefined] = ACTIONS(1880), + [anon_sym_AT] = ACTIONS(1878), + [anon_sym_static] = ACTIONS(1880), + [anon_sym_readonly] = ACTIONS(1880), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_declare] = ACTIONS(1880), + [anon_sym_public] = ACTIONS(1880), + [anon_sym_private] = ACTIONS(1880), + [anon_sym_protected] = ACTIONS(1880), + [anon_sym_override] = ACTIONS(1880), + [anon_sym_module] = ACTIONS(1880), + [anon_sym_any] = ACTIONS(1880), + [anon_sym_number] = ACTIONS(1880), + [anon_sym_boolean] = ACTIONS(1880), + [anon_sym_string] = ACTIONS(1880), + [anon_sym_symbol] = ACTIONS(1880), + [anon_sym_object] = ACTIONS(1880), + [anon_sym_abstract] = ACTIONS(1880), + [anon_sym_satisfies] = ACTIONS(1880), + [anon_sym_interface] = ACTIONS(1880), + [anon_sym_enum] = ACTIONS(1880), + [sym__automatic_semicolon] = ACTIONS(1878), + [sym__ternary_qmark] = ACTIONS(1878), [sym_html_comment] = ACTIONS(5), }, [236] = { - [ts_builtin_sym_end] = ACTIONS(1849), - [sym_identifier] = ACTIONS(1851), - [anon_sym_export] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1853), - [anon_sym_default] = ACTIONS(1851), - [anon_sym_type] = ACTIONS(1851), - [anon_sym_as] = ACTIONS(1853), - [anon_sym_namespace] = ACTIONS(1851), - [anon_sym_LBRACE] = ACTIONS(1849), - [anon_sym_COMMA] = ACTIONS(1855), - [anon_sym_RBRACE] = ACTIONS(1849), - [anon_sym_typeof] = ACTIONS(1851), - [anon_sym_import] = ACTIONS(1851), - [anon_sym_with] = ACTIONS(1851), - [anon_sym_var] = ACTIONS(1851), - [anon_sym_let] = ACTIONS(1851), - [anon_sym_const] = ACTIONS(1851), - [anon_sym_BANG] = ACTIONS(1851), - [anon_sym_else] = ACTIONS(1851), - [anon_sym_if] = ACTIONS(1851), - [anon_sym_switch] = ACTIONS(1851), - [anon_sym_for] = ACTIONS(1851), - [anon_sym_LPAREN] = ACTIONS(1849), - [anon_sym_SEMI] = ACTIONS(1849), - [anon_sym_await] = ACTIONS(1851), - [anon_sym_in] = ACTIONS(1853), - [anon_sym_while] = ACTIONS(1851), - [anon_sym_do] = ACTIONS(1851), - [anon_sym_try] = ACTIONS(1851), - [anon_sym_break] = ACTIONS(1851), - [anon_sym_continue] = ACTIONS(1851), - [anon_sym_debugger] = ACTIONS(1851), - [anon_sym_return] = ACTIONS(1851), - [anon_sym_throw] = ACTIONS(1851), - [anon_sym_case] = ACTIONS(1851), - [anon_sym_yield] = ACTIONS(1851), - [anon_sym_LBRACK] = ACTIONS(1849), - [sym_glimmer_opening_tag] = ACTIONS(1849), - [anon_sym_DOT] = ACTIONS(1853), - [anon_sym_class] = ACTIONS(1851), - [anon_sym_async] = ACTIONS(1851), - [anon_sym_function] = ACTIONS(1851), - [anon_sym_QMARK_DOT] = ACTIONS(1855), - [anon_sym_new] = ACTIONS(1851), - [anon_sym_using] = ACTIONS(1851), - [anon_sym_AMP_AMP] = ACTIONS(1855), - [anon_sym_PIPE_PIPE] = ACTIONS(1855), - [anon_sym_GT_GT] = ACTIONS(1853), - [anon_sym_GT_GT_GT] = ACTIONS(1855), - [anon_sym_LT_LT] = ACTIONS(1855), - [anon_sym_AMP] = ACTIONS(1853), - [anon_sym_CARET] = ACTIONS(1855), - [anon_sym_PIPE] = ACTIONS(1853), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_SLASH] = ACTIONS(1851), - [anon_sym_PERCENT] = ACTIONS(1855), - [anon_sym_STAR_STAR] = ACTIONS(1855), - [anon_sym_LT] = ACTIONS(1851), - [anon_sym_LT_EQ] = ACTIONS(1855), - [anon_sym_EQ_EQ] = ACTIONS(1853), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1855), - [anon_sym_BANG_EQ] = ACTIONS(1853), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1855), - [anon_sym_GT_EQ] = ACTIONS(1855), - [anon_sym_GT] = ACTIONS(1853), - [anon_sym_QMARK_QMARK] = ACTIONS(1855), - [anon_sym_instanceof] = ACTIONS(1853), - [anon_sym_TILDE] = ACTIONS(1849), - [anon_sym_void] = ACTIONS(1851), - [anon_sym_delete] = ACTIONS(1851), - [anon_sym_PLUS_PLUS] = ACTIONS(1849), - [anon_sym_DASH_DASH] = ACTIONS(1849), - [anon_sym_DQUOTE] = ACTIONS(1849), - [anon_sym_SQUOTE] = ACTIONS(1849), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1849), - [sym_number] = ACTIONS(1849), - [sym_private_property_identifier] = ACTIONS(1849), - [sym_this] = ACTIONS(1851), - [sym_super] = ACTIONS(1851), - [sym_true] = ACTIONS(1851), - [sym_false] = ACTIONS(1851), - [sym_null] = ACTIONS(1851), - [sym_undefined] = ACTIONS(1851), - [anon_sym_AT] = ACTIONS(1849), - [anon_sym_static] = ACTIONS(1851), - [anon_sym_readonly] = ACTIONS(1851), - [anon_sym_get] = ACTIONS(1851), - [anon_sym_set] = ACTIONS(1851), - [anon_sym_declare] = ACTIONS(1851), - [anon_sym_public] = ACTIONS(1851), - [anon_sym_private] = ACTIONS(1851), - [anon_sym_protected] = ACTIONS(1851), - [anon_sym_override] = ACTIONS(1851), - [anon_sym_module] = ACTIONS(1851), - [anon_sym_any] = ACTIONS(1851), - [anon_sym_number] = ACTIONS(1851), - [anon_sym_boolean] = ACTIONS(1851), - [anon_sym_string] = ACTIONS(1851), - [anon_sym_symbol] = ACTIONS(1851), - [anon_sym_object] = ACTIONS(1851), - [anon_sym_abstract] = ACTIONS(1851), - [anon_sym_satisfies] = ACTIONS(1853), - [anon_sym_interface] = ACTIONS(1851), - [anon_sym_enum] = ACTIONS(1851), - [sym__automatic_semicolon] = ACTIONS(1857), - [sym__ternary_qmark] = ACTIONS(1855), + [ts_builtin_sym_end] = ACTIONS(1878), + [sym_identifier] = ACTIONS(1880), + [anon_sym_export] = ACTIONS(1880), + [anon_sym_STAR] = ACTIONS(1880), + [anon_sym_default] = ACTIONS(1880), + [anon_sym_type] = ACTIONS(1880), + [anon_sym_as] = ACTIONS(1880), + [anon_sym_namespace] = ACTIONS(1880), + [anon_sym_LBRACE] = ACTIONS(1878), + [anon_sym_COMMA] = ACTIONS(1878), + [anon_sym_RBRACE] = ACTIONS(1878), + [anon_sym_typeof] = ACTIONS(1880), + [anon_sym_import] = ACTIONS(1880), + [anon_sym_with] = ACTIONS(1880), + [anon_sym_var] = ACTIONS(1880), + [anon_sym_let] = ACTIONS(1880), + [anon_sym_const] = ACTIONS(1880), + [anon_sym_BANG] = ACTIONS(1880), + [anon_sym_else] = ACTIONS(1880), + [anon_sym_if] = ACTIONS(1880), + [anon_sym_switch] = ACTIONS(1880), + [anon_sym_for] = ACTIONS(1880), + [anon_sym_LPAREN] = ACTIONS(1878), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym_await] = ACTIONS(1880), + [anon_sym_in] = ACTIONS(1880), + [anon_sym_while] = ACTIONS(1880), + [anon_sym_do] = ACTIONS(1880), + [anon_sym_try] = ACTIONS(1880), + [anon_sym_break] = ACTIONS(1880), + [anon_sym_continue] = ACTIONS(1880), + [anon_sym_debugger] = ACTIONS(1880), + [anon_sym_return] = ACTIONS(1880), + [anon_sym_throw] = ACTIONS(1880), + [anon_sym_case] = ACTIONS(1880), + [anon_sym_yield] = ACTIONS(1880), + [anon_sym_LBRACK] = ACTIONS(1878), + [anon_sym_DOT] = ACTIONS(1880), + [anon_sym_class] = ACTIONS(1880), + [anon_sym_async] = ACTIONS(1880), + [anon_sym_function] = ACTIONS(1880), + [anon_sym_QMARK_DOT] = ACTIONS(1878), + [anon_sym_new] = ACTIONS(1880), + [anon_sym_using] = ACTIONS(1880), + [anon_sym_AMP_AMP] = ACTIONS(1878), + [anon_sym_PIPE_PIPE] = ACTIONS(1878), + [anon_sym_GT_GT] = ACTIONS(1880), + [anon_sym_GT_GT_GT] = ACTIONS(1878), + [anon_sym_LT_LT] = ACTIONS(1878), + [anon_sym_AMP] = ACTIONS(1880), + [anon_sym_CARET] = ACTIONS(1878), + [anon_sym_PIPE] = ACTIONS(1880), + [anon_sym_PLUS] = ACTIONS(1880), + [anon_sym_DASH] = ACTIONS(1880), + [anon_sym_SLASH] = ACTIONS(1880), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_STAR_STAR] = ACTIONS(1878), + [anon_sym_LT] = ACTIONS(1880), + [anon_sym_LT_EQ] = ACTIONS(1878), + [anon_sym_EQ_EQ] = ACTIONS(1880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1878), + [anon_sym_BANG_EQ] = ACTIONS(1880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1878), + [anon_sym_GT_EQ] = ACTIONS(1878), + [anon_sym_GT] = ACTIONS(1880), + [anon_sym_QMARK_QMARK] = ACTIONS(1878), + [anon_sym_instanceof] = ACTIONS(1880), + [anon_sym_TILDE] = ACTIONS(1878), + [anon_sym_void] = ACTIONS(1880), + [anon_sym_delete] = ACTIONS(1880), + [anon_sym_PLUS_PLUS] = ACTIONS(1878), + [anon_sym_DASH_DASH] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1878), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1878), + [sym_number] = ACTIONS(1878), + [sym_private_property_identifier] = ACTIONS(1878), + [sym_this] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_true] = ACTIONS(1880), + [sym_false] = ACTIONS(1880), + [sym_null] = ACTIONS(1880), + [sym_undefined] = ACTIONS(1880), + [anon_sym_AT] = ACTIONS(1878), + [anon_sym_static] = ACTIONS(1880), + [anon_sym_readonly] = ACTIONS(1880), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_declare] = ACTIONS(1880), + [anon_sym_public] = ACTIONS(1880), + [anon_sym_private] = ACTIONS(1880), + [anon_sym_protected] = ACTIONS(1880), + [anon_sym_override] = ACTIONS(1880), + [anon_sym_module] = ACTIONS(1880), + [anon_sym_any] = ACTIONS(1880), + [anon_sym_number] = ACTIONS(1880), + [anon_sym_boolean] = ACTIONS(1880), + [anon_sym_string] = ACTIONS(1880), + [anon_sym_symbol] = ACTIONS(1880), + [anon_sym_object] = ACTIONS(1880), + [anon_sym_abstract] = ACTIONS(1880), + [anon_sym_satisfies] = ACTIONS(1880), + [anon_sym_interface] = ACTIONS(1880), + [anon_sym_enum] = ACTIONS(1880), + [sym__automatic_semicolon] = ACTIONS(1882), + [sym__ternary_qmark] = ACTIONS(1878), [sym_html_comment] = ACTIONS(5), }, [237] = { - [ts_builtin_sym_end] = ACTIONS(1859), - [sym_identifier] = ACTIONS(1861), - [anon_sym_export] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(1863), - [anon_sym_default] = ACTIONS(1861), - [anon_sym_type] = ACTIONS(1861), - [anon_sym_as] = ACTIONS(1863), - [anon_sym_namespace] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1859), - [anon_sym_COMMA] = ACTIONS(1865), - [anon_sym_RBRACE] = ACTIONS(1859), - [anon_sym_typeof] = ACTIONS(1861), - [anon_sym_import] = ACTIONS(1861), - [anon_sym_with] = ACTIONS(1861), - [anon_sym_var] = ACTIONS(1861), - [anon_sym_let] = ACTIONS(1861), - [anon_sym_const] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1861), - [anon_sym_else] = ACTIONS(1861), - [anon_sym_if] = ACTIONS(1861), - [anon_sym_switch] = ACTIONS(1861), - [anon_sym_for] = ACTIONS(1861), - [anon_sym_LPAREN] = ACTIONS(1859), - [anon_sym_SEMI] = ACTIONS(1859), - [anon_sym_await] = ACTIONS(1861), - [anon_sym_in] = ACTIONS(1863), - [anon_sym_while] = ACTIONS(1861), - [anon_sym_do] = ACTIONS(1861), - [anon_sym_try] = ACTIONS(1861), - [anon_sym_break] = ACTIONS(1861), - [anon_sym_continue] = ACTIONS(1861), - [anon_sym_debugger] = ACTIONS(1861), - [anon_sym_return] = ACTIONS(1861), - [anon_sym_throw] = ACTIONS(1861), - [anon_sym_case] = ACTIONS(1861), - [anon_sym_yield] = ACTIONS(1861), - [anon_sym_LBRACK] = ACTIONS(1859), - [sym_glimmer_opening_tag] = ACTIONS(1859), - [anon_sym_DOT] = ACTIONS(1863), - [anon_sym_class] = ACTIONS(1861), - [anon_sym_async] = ACTIONS(1861), - [anon_sym_function] = ACTIONS(1861), - [anon_sym_QMARK_DOT] = ACTIONS(1865), - [anon_sym_new] = ACTIONS(1861), - [anon_sym_using] = ACTIONS(1861), - [anon_sym_AMP_AMP] = ACTIONS(1865), - [anon_sym_PIPE_PIPE] = ACTIONS(1865), - [anon_sym_GT_GT] = ACTIONS(1863), - [anon_sym_GT_GT_GT] = ACTIONS(1865), - [anon_sym_LT_LT] = ACTIONS(1865), - [anon_sym_AMP] = ACTIONS(1863), - [anon_sym_CARET] = ACTIONS(1865), - [anon_sym_PIPE] = ACTIONS(1863), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_SLASH] = ACTIONS(1861), - [anon_sym_PERCENT] = ACTIONS(1865), - [anon_sym_STAR_STAR] = ACTIONS(1865), - [anon_sym_LT] = ACTIONS(1861), - [anon_sym_LT_EQ] = ACTIONS(1865), - [anon_sym_EQ_EQ] = ACTIONS(1863), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1865), - [anon_sym_BANG_EQ] = ACTIONS(1863), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1865), - [anon_sym_GT_EQ] = ACTIONS(1865), - [anon_sym_GT] = ACTIONS(1863), - [anon_sym_QMARK_QMARK] = ACTIONS(1865), - [anon_sym_instanceof] = ACTIONS(1863), - [anon_sym_TILDE] = ACTIONS(1859), - [anon_sym_void] = ACTIONS(1861), - [anon_sym_delete] = ACTIONS(1861), - [anon_sym_PLUS_PLUS] = ACTIONS(1859), - [anon_sym_DASH_DASH] = ACTIONS(1859), - [anon_sym_DQUOTE] = ACTIONS(1859), - [anon_sym_SQUOTE] = ACTIONS(1859), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1859), - [sym_number] = ACTIONS(1859), - [sym_private_property_identifier] = ACTIONS(1859), - [sym_this] = ACTIONS(1861), - [sym_super] = ACTIONS(1861), - [sym_true] = ACTIONS(1861), - [sym_false] = ACTIONS(1861), - [sym_null] = ACTIONS(1861), - [sym_undefined] = ACTIONS(1861), - [anon_sym_AT] = ACTIONS(1859), - [anon_sym_static] = ACTIONS(1861), - [anon_sym_readonly] = ACTIONS(1861), - [anon_sym_get] = ACTIONS(1861), - [anon_sym_set] = ACTIONS(1861), - [anon_sym_declare] = ACTIONS(1861), - [anon_sym_public] = ACTIONS(1861), - [anon_sym_private] = ACTIONS(1861), - [anon_sym_protected] = ACTIONS(1861), - [anon_sym_override] = ACTIONS(1861), - [anon_sym_module] = ACTIONS(1861), - [anon_sym_any] = ACTIONS(1861), - [anon_sym_number] = ACTIONS(1861), - [anon_sym_boolean] = ACTIONS(1861), - [anon_sym_string] = ACTIONS(1861), - [anon_sym_symbol] = ACTIONS(1861), - [anon_sym_object] = ACTIONS(1861), - [anon_sym_abstract] = ACTIONS(1861), - [anon_sym_satisfies] = ACTIONS(1863), - [anon_sym_interface] = ACTIONS(1861), - [anon_sym_enum] = ACTIONS(1861), - [sym__automatic_semicolon] = ACTIONS(1867), - [sym__ternary_qmark] = ACTIONS(1865), - [sym_html_comment] = ACTIONS(5), - }, - [238] = { - [ts_builtin_sym_end] = ACTIONS(1869), - [sym_identifier] = ACTIONS(1871), - [anon_sym_export] = ACTIONS(1871), - [anon_sym_STAR] = ACTIONS(1873), - [anon_sym_default] = ACTIONS(1871), - [anon_sym_type] = ACTIONS(1871), - [anon_sym_as] = ACTIONS(1873), - [anon_sym_namespace] = ACTIONS(1871), - [anon_sym_LBRACE] = ACTIONS(1869), - [anon_sym_COMMA] = ACTIONS(1875), - [anon_sym_RBRACE] = ACTIONS(1869), - [anon_sym_typeof] = ACTIONS(1871), - [anon_sym_import] = ACTIONS(1871), - [anon_sym_with] = ACTIONS(1871), - [anon_sym_var] = ACTIONS(1871), - [anon_sym_let] = ACTIONS(1871), - [anon_sym_const] = ACTIONS(1871), - [anon_sym_BANG] = ACTIONS(1871), - [anon_sym_else] = ACTIONS(1871), - [anon_sym_if] = ACTIONS(1871), - [anon_sym_switch] = ACTIONS(1871), - [anon_sym_for] = ACTIONS(1871), - [anon_sym_LPAREN] = ACTIONS(1869), - [anon_sym_SEMI] = ACTIONS(1869), - [anon_sym_await] = ACTIONS(1871), - [anon_sym_in] = ACTIONS(1873), - [anon_sym_while] = ACTIONS(1871), - [anon_sym_do] = ACTIONS(1871), - [anon_sym_try] = ACTIONS(1871), - [anon_sym_break] = ACTIONS(1871), - [anon_sym_continue] = ACTIONS(1871), - [anon_sym_debugger] = ACTIONS(1871), - [anon_sym_return] = ACTIONS(1871), - [anon_sym_throw] = ACTIONS(1871), - [anon_sym_case] = ACTIONS(1871), - [anon_sym_yield] = ACTIONS(1871), - [anon_sym_LBRACK] = ACTIONS(1869), - [sym_glimmer_opening_tag] = ACTIONS(1869), - [anon_sym_DOT] = ACTIONS(1873), - [anon_sym_class] = ACTIONS(1871), - [anon_sym_async] = ACTIONS(1871), - [anon_sym_function] = ACTIONS(1871), - [anon_sym_QMARK_DOT] = ACTIONS(1875), - [anon_sym_new] = ACTIONS(1871), - [anon_sym_using] = ACTIONS(1871), - [anon_sym_AMP_AMP] = ACTIONS(1875), - [anon_sym_PIPE_PIPE] = ACTIONS(1875), - [anon_sym_GT_GT] = ACTIONS(1873), - [anon_sym_GT_GT_GT] = ACTIONS(1875), - [anon_sym_LT_LT] = ACTIONS(1875), - [anon_sym_AMP] = ACTIONS(1873), - [anon_sym_CARET] = ACTIONS(1875), - [anon_sym_PIPE] = ACTIONS(1873), - [anon_sym_PLUS] = ACTIONS(1871), - [anon_sym_DASH] = ACTIONS(1871), - [anon_sym_SLASH] = ACTIONS(1871), - [anon_sym_PERCENT] = ACTIONS(1875), - [anon_sym_STAR_STAR] = ACTIONS(1875), - [anon_sym_LT] = ACTIONS(1871), - [anon_sym_LT_EQ] = ACTIONS(1875), - [anon_sym_EQ_EQ] = ACTIONS(1873), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1875), - [anon_sym_BANG_EQ] = ACTIONS(1873), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1875), - [anon_sym_GT_EQ] = ACTIONS(1875), - [anon_sym_GT] = ACTIONS(1873), - [anon_sym_QMARK_QMARK] = ACTIONS(1875), - [anon_sym_instanceof] = ACTIONS(1873), - [anon_sym_TILDE] = ACTIONS(1869), - [anon_sym_void] = ACTIONS(1871), - [anon_sym_delete] = ACTIONS(1871), - [anon_sym_PLUS_PLUS] = ACTIONS(1869), - [anon_sym_DASH_DASH] = ACTIONS(1869), - [anon_sym_DQUOTE] = ACTIONS(1869), - [anon_sym_SQUOTE] = ACTIONS(1869), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1869), - [sym_number] = ACTIONS(1869), - [sym_private_property_identifier] = ACTIONS(1869), - [sym_this] = ACTIONS(1871), - [sym_super] = ACTIONS(1871), - [sym_true] = ACTIONS(1871), - [sym_false] = ACTIONS(1871), - [sym_null] = ACTIONS(1871), - [sym_undefined] = ACTIONS(1871), - [anon_sym_AT] = ACTIONS(1869), - [anon_sym_static] = ACTIONS(1871), - [anon_sym_readonly] = ACTIONS(1871), - [anon_sym_get] = ACTIONS(1871), - [anon_sym_set] = ACTIONS(1871), - [anon_sym_declare] = ACTIONS(1871), - [anon_sym_public] = ACTIONS(1871), - [anon_sym_private] = ACTIONS(1871), - [anon_sym_protected] = ACTIONS(1871), - [anon_sym_override] = ACTIONS(1871), - [anon_sym_module] = ACTIONS(1871), - [anon_sym_any] = ACTIONS(1871), - [anon_sym_number] = ACTIONS(1871), - [anon_sym_boolean] = ACTIONS(1871), - [anon_sym_string] = ACTIONS(1871), - [anon_sym_symbol] = ACTIONS(1871), - [anon_sym_object] = ACTIONS(1871), - [anon_sym_abstract] = ACTIONS(1871), - [anon_sym_satisfies] = ACTIONS(1873), - [anon_sym_interface] = ACTIONS(1871), - [anon_sym_enum] = ACTIONS(1871), - [sym__automatic_semicolon] = ACTIONS(1877), - [sym__ternary_qmark] = ACTIONS(1875), - [sym_html_comment] = ACTIONS(5), - }, - [239] = { - [ts_builtin_sym_end] = ACTIONS(1879), - [sym_identifier] = ACTIONS(1881), - [anon_sym_export] = ACTIONS(1881), - [anon_sym_STAR] = ACTIONS(1883), - [anon_sym_default] = ACTIONS(1881), - [anon_sym_type] = ACTIONS(1881), - [anon_sym_as] = ACTIONS(1883), - [anon_sym_namespace] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1879), - [anon_sym_COMMA] = ACTIONS(1885), - [anon_sym_RBRACE] = ACTIONS(1879), - [anon_sym_typeof] = ACTIONS(1881), - [anon_sym_import] = ACTIONS(1881), - [anon_sym_with] = ACTIONS(1881), - [anon_sym_var] = ACTIONS(1881), - [anon_sym_let] = ACTIONS(1881), - [anon_sym_const] = ACTIONS(1881), - [anon_sym_BANG] = ACTIONS(1881), - [anon_sym_else] = ACTIONS(1881), - [anon_sym_if] = ACTIONS(1881), - [anon_sym_switch] = ACTIONS(1881), - [anon_sym_for] = ACTIONS(1881), - [anon_sym_LPAREN] = ACTIONS(1879), - [anon_sym_SEMI] = ACTIONS(1879), - [anon_sym_await] = ACTIONS(1881), - [anon_sym_in] = ACTIONS(1883), - [anon_sym_while] = ACTIONS(1881), - [anon_sym_do] = ACTIONS(1881), - [anon_sym_try] = ACTIONS(1881), - [anon_sym_break] = ACTIONS(1881), - [anon_sym_continue] = ACTIONS(1881), - [anon_sym_debugger] = ACTIONS(1881), - [anon_sym_return] = ACTIONS(1881), - [anon_sym_throw] = ACTIONS(1881), - [anon_sym_case] = ACTIONS(1881), - [anon_sym_yield] = ACTIONS(1881), - [anon_sym_LBRACK] = ACTIONS(1879), - [sym_glimmer_opening_tag] = ACTIONS(1879), - [anon_sym_DOT] = ACTIONS(1883), - [anon_sym_class] = ACTIONS(1881), - [anon_sym_async] = ACTIONS(1881), - [anon_sym_function] = ACTIONS(1881), - [anon_sym_QMARK_DOT] = ACTIONS(1885), - [anon_sym_new] = ACTIONS(1881), - [anon_sym_using] = ACTIONS(1881), - [anon_sym_AMP_AMP] = ACTIONS(1885), - [anon_sym_PIPE_PIPE] = ACTIONS(1885), - [anon_sym_GT_GT] = ACTIONS(1883), - [anon_sym_GT_GT_GT] = ACTIONS(1885), - [anon_sym_LT_LT] = ACTIONS(1885), - [anon_sym_AMP] = ACTIONS(1883), - [anon_sym_CARET] = ACTIONS(1885), - [anon_sym_PIPE] = ACTIONS(1883), - [anon_sym_PLUS] = ACTIONS(1881), - [anon_sym_DASH] = ACTIONS(1881), - [anon_sym_SLASH] = ACTIONS(1881), - [anon_sym_PERCENT] = ACTIONS(1885), - [anon_sym_STAR_STAR] = ACTIONS(1885), - [anon_sym_LT] = ACTIONS(1881), - [anon_sym_LT_EQ] = ACTIONS(1885), - [anon_sym_EQ_EQ] = ACTIONS(1883), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1885), - [anon_sym_BANG_EQ] = ACTIONS(1883), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1885), - [anon_sym_GT_EQ] = ACTIONS(1885), - [anon_sym_GT] = ACTIONS(1883), - [anon_sym_QMARK_QMARK] = ACTIONS(1885), - [anon_sym_instanceof] = ACTIONS(1883), - [anon_sym_TILDE] = ACTIONS(1879), - [anon_sym_void] = ACTIONS(1881), - [anon_sym_delete] = ACTIONS(1881), - [anon_sym_PLUS_PLUS] = ACTIONS(1879), - [anon_sym_DASH_DASH] = ACTIONS(1879), - [anon_sym_DQUOTE] = ACTIONS(1879), - [anon_sym_SQUOTE] = ACTIONS(1879), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1879), - [sym_number] = ACTIONS(1879), - [sym_private_property_identifier] = ACTIONS(1879), - [sym_this] = ACTIONS(1881), - [sym_super] = ACTIONS(1881), - [sym_true] = ACTIONS(1881), - [sym_false] = ACTIONS(1881), - [sym_null] = ACTIONS(1881), - [sym_undefined] = ACTIONS(1881), - [anon_sym_AT] = ACTIONS(1879), - [anon_sym_static] = ACTIONS(1881), - [anon_sym_readonly] = ACTIONS(1881), - [anon_sym_get] = ACTIONS(1881), - [anon_sym_set] = ACTIONS(1881), - [anon_sym_declare] = ACTIONS(1881), - [anon_sym_public] = ACTIONS(1881), - [anon_sym_private] = ACTIONS(1881), - [anon_sym_protected] = ACTIONS(1881), - [anon_sym_override] = ACTIONS(1881), - [anon_sym_module] = ACTIONS(1881), - [anon_sym_any] = ACTIONS(1881), - [anon_sym_number] = ACTIONS(1881), - [anon_sym_boolean] = ACTIONS(1881), - [anon_sym_string] = ACTIONS(1881), - [anon_sym_symbol] = ACTIONS(1881), - [anon_sym_object] = ACTIONS(1881), - [anon_sym_abstract] = ACTIONS(1881), - [anon_sym_satisfies] = ACTIONS(1883), - [anon_sym_interface] = ACTIONS(1881), - [anon_sym_enum] = ACTIONS(1881), - [sym__automatic_semicolon] = ACTIONS(1885), - [sym__ternary_qmark] = ACTIONS(1885), - [sym_html_comment] = ACTIONS(5), - }, - [240] = { - [ts_builtin_sym_end] = ACTIONS(1887), - [sym_identifier] = ACTIONS(1889), - [anon_sym_export] = ACTIONS(1889), - [anon_sym_STAR] = ACTIONS(1889), - [anon_sym_default] = ACTIONS(1889), - [anon_sym_type] = ACTIONS(1889), - [anon_sym_as] = ACTIONS(1889), - [anon_sym_namespace] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1887), - [anon_sym_COMMA] = ACTIONS(1887), - [anon_sym_RBRACE] = ACTIONS(1887), - [anon_sym_typeof] = ACTIONS(1889), - [anon_sym_import] = ACTIONS(1889), - [anon_sym_with] = ACTIONS(1889), - [anon_sym_var] = ACTIONS(1889), - [anon_sym_let] = ACTIONS(1889), - [anon_sym_const] = ACTIONS(1889), - [anon_sym_BANG] = ACTIONS(1889), - [anon_sym_else] = ACTIONS(1889), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_switch] = ACTIONS(1889), - [anon_sym_for] = ACTIONS(1889), - [anon_sym_LPAREN] = ACTIONS(1887), - [anon_sym_SEMI] = ACTIONS(1887), - [anon_sym_await] = ACTIONS(1889), - [anon_sym_in] = ACTIONS(1889), - [anon_sym_while] = ACTIONS(1889), - [anon_sym_do] = ACTIONS(1889), - [anon_sym_try] = ACTIONS(1889), - [anon_sym_break] = ACTIONS(1889), - [anon_sym_continue] = ACTIONS(1889), - [anon_sym_debugger] = ACTIONS(1889), - [anon_sym_return] = ACTIONS(1889), - [anon_sym_throw] = ACTIONS(1889), - [anon_sym_case] = ACTIONS(1889), - [anon_sym_yield] = ACTIONS(1889), - [anon_sym_LBRACK] = ACTIONS(1887), - [sym_glimmer_opening_tag] = ACTIONS(1887), - [anon_sym_DOT] = ACTIONS(1889), - [anon_sym_class] = ACTIONS(1889), - [anon_sym_async] = ACTIONS(1889), - [anon_sym_function] = ACTIONS(1889), - [anon_sym_QMARK_DOT] = ACTIONS(1887), - [anon_sym_new] = ACTIONS(1889), - [anon_sym_using] = ACTIONS(1889), - [anon_sym_AMP_AMP] = ACTIONS(1887), - [anon_sym_PIPE_PIPE] = ACTIONS(1887), - [anon_sym_GT_GT] = ACTIONS(1889), - [anon_sym_GT_GT_GT] = ACTIONS(1887), - [anon_sym_LT_LT] = ACTIONS(1887), - [anon_sym_AMP] = ACTIONS(1889), - [anon_sym_CARET] = ACTIONS(1887), - [anon_sym_PIPE] = ACTIONS(1889), - [anon_sym_PLUS] = ACTIONS(1889), - [anon_sym_DASH] = ACTIONS(1889), - [anon_sym_SLASH] = ACTIONS(1889), - [anon_sym_PERCENT] = ACTIONS(1887), - [anon_sym_STAR_STAR] = ACTIONS(1887), - [anon_sym_LT] = ACTIONS(1889), - [anon_sym_LT_EQ] = ACTIONS(1887), - [anon_sym_EQ_EQ] = ACTIONS(1889), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1887), - [anon_sym_BANG_EQ] = ACTIONS(1889), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1887), - [anon_sym_GT_EQ] = ACTIONS(1887), - [anon_sym_GT] = ACTIONS(1889), - [anon_sym_QMARK_QMARK] = ACTIONS(1887), - [anon_sym_instanceof] = ACTIONS(1889), - [anon_sym_TILDE] = ACTIONS(1887), - [anon_sym_void] = ACTIONS(1889), - [anon_sym_delete] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1887), - [anon_sym_DASH_DASH] = ACTIONS(1887), - [anon_sym_DQUOTE] = ACTIONS(1887), - [anon_sym_SQUOTE] = ACTIONS(1887), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1887), - [sym_number] = ACTIONS(1887), - [sym_private_property_identifier] = ACTIONS(1887), - [sym_this] = ACTIONS(1889), - [sym_super] = ACTIONS(1889), - [sym_true] = ACTIONS(1889), - [sym_false] = ACTIONS(1889), - [sym_null] = ACTIONS(1889), - [sym_undefined] = ACTIONS(1889), - [anon_sym_AT] = ACTIONS(1887), - [anon_sym_static] = ACTIONS(1889), - [anon_sym_readonly] = ACTIONS(1889), - [anon_sym_get] = ACTIONS(1889), - [anon_sym_set] = ACTIONS(1889), - [anon_sym_declare] = ACTIONS(1889), - [anon_sym_public] = ACTIONS(1889), - [anon_sym_private] = ACTIONS(1889), - [anon_sym_protected] = ACTIONS(1889), - [anon_sym_override] = ACTIONS(1889), - [anon_sym_module] = ACTIONS(1889), - [anon_sym_any] = ACTIONS(1889), - [anon_sym_number] = ACTIONS(1889), - [anon_sym_boolean] = ACTIONS(1889), - [anon_sym_string] = ACTIONS(1889), - [anon_sym_symbol] = ACTIONS(1889), - [anon_sym_object] = ACTIONS(1889), - [anon_sym_abstract] = ACTIONS(1889), - [anon_sym_satisfies] = ACTIONS(1889), - [anon_sym_interface] = ACTIONS(1889), - [anon_sym_enum] = ACTIONS(1889), - [sym__automatic_semicolon] = ACTIONS(1887), - [sym__ternary_qmark] = ACTIONS(1887), - [sym_html_comment] = ACTIONS(5), - }, - [241] = { - [ts_builtin_sym_end] = ACTIONS(1891), - [sym_identifier] = ACTIONS(1893), - [anon_sym_export] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(1893), - [anon_sym_default] = ACTIONS(1893), - [anon_sym_type] = ACTIONS(1893), - [anon_sym_as] = ACTIONS(1893), - [anon_sym_namespace] = ACTIONS(1893), - [anon_sym_LBRACE] = ACTIONS(1891), - [anon_sym_COMMA] = ACTIONS(1891), - [anon_sym_RBRACE] = ACTIONS(1891), - [anon_sym_typeof] = ACTIONS(1893), - [anon_sym_import] = ACTIONS(1893), - [anon_sym_with] = ACTIONS(1893), - [anon_sym_var] = ACTIONS(1893), - [anon_sym_let] = ACTIONS(1893), - [anon_sym_const] = ACTIONS(1893), - [anon_sym_BANG] = ACTIONS(1893), - [anon_sym_else] = ACTIONS(1893), - [anon_sym_if] = ACTIONS(1893), - [anon_sym_switch] = ACTIONS(1893), - [anon_sym_for] = ACTIONS(1893), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_SEMI] = ACTIONS(1891), - [anon_sym_await] = ACTIONS(1893), - [anon_sym_in] = ACTIONS(1893), - [anon_sym_while] = ACTIONS(1893), - [anon_sym_do] = ACTIONS(1893), - [anon_sym_try] = ACTIONS(1893), - [anon_sym_break] = ACTIONS(1893), - [anon_sym_continue] = ACTIONS(1893), - [anon_sym_debugger] = ACTIONS(1893), - [anon_sym_return] = ACTIONS(1893), - [anon_sym_throw] = ACTIONS(1893), - [anon_sym_case] = ACTIONS(1893), - [anon_sym_yield] = ACTIONS(1893), - [anon_sym_LBRACK] = ACTIONS(1891), - [sym_glimmer_opening_tag] = ACTIONS(1891), - [anon_sym_DOT] = ACTIONS(1893), - [anon_sym_class] = ACTIONS(1893), - [anon_sym_async] = ACTIONS(1893), - [anon_sym_function] = ACTIONS(1893), - [anon_sym_QMARK_DOT] = ACTIONS(1891), - [anon_sym_new] = ACTIONS(1893), - [anon_sym_using] = ACTIONS(1893), - [anon_sym_AMP_AMP] = ACTIONS(1891), - [anon_sym_PIPE_PIPE] = ACTIONS(1891), - [anon_sym_GT_GT] = ACTIONS(1893), - [anon_sym_GT_GT_GT] = ACTIONS(1891), - [anon_sym_LT_LT] = ACTIONS(1891), - [anon_sym_AMP] = ACTIONS(1893), - [anon_sym_CARET] = ACTIONS(1891), - [anon_sym_PIPE] = ACTIONS(1893), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_SLASH] = ACTIONS(1893), - [anon_sym_PERCENT] = ACTIONS(1891), - [anon_sym_STAR_STAR] = ACTIONS(1891), - [anon_sym_LT] = ACTIONS(1893), - [anon_sym_LT_EQ] = ACTIONS(1891), - [anon_sym_EQ_EQ] = ACTIONS(1893), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1891), - [anon_sym_BANG_EQ] = ACTIONS(1893), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1891), - [anon_sym_GT_EQ] = ACTIONS(1891), - [anon_sym_GT] = ACTIONS(1893), - [anon_sym_QMARK_QMARK] = ACTIONS(1891), - [anon_sym_instanceof] = ACTIONS(1893), - [anon_sym_TILDE] = ACTIONS(1891), - [anon_sym_void] = ACTIONS(1893), - [anon_sym_delete] = ACTIONS(1893), - [anon_sym_PLUS_PLUS] = ACTIONS(1891), - [anon_sym_DASH_DASH] = ACTIONS(1891), - [anon_sym_DQUOTE] = ACTIONS(1891), - [anon_sym_SQUOTE] = ACTIONS(1891), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1891), - [sym_number] = ACTIONS(1891), - [sym_private_property_identifier] = ACTIONS(1891), - [sym_this] = ACTIONS(1893), - [sym_super] = ACTIONS(1893), - [sym_true] = ACTIONS(1893), - [sym_false] = ACTIONS(1893), - [sym_null] = ACTIONS(1893), - [sym_undefined] = ACTIONS(1893), - [anon_sym_AT] = ACTIONS(1891), - [anon_sym_static] = ACTIONS(1893), - [anon_sym_readonly] = ACTIONS(1893), - [anon_sym_get] = ACTIONS(1893), - [anon_sym_set] = ACTIONS(1893), - [anon_sym_declare] = ACTIONS(1893), - [anon_sym_public] = ACTIONS(1893), - [anon_sym_private] = ACTIONS(1893), - [anon_sym_protected] = ACTIONS(1893), - [anon_sym_override] = ACTIONS(1893), - [anon_sym_module] = ACTIONS(1893), - [anon_sym_any] = ACTIONS(1893), - [anon_sym_number] = ACTIONS(1893), - [anon_sym_boolean] = ACTIONS(1893), - [anon_sym_string] = ACTIONS(1893), - [anon_sym_symbol] = ACTIONS(1893), - [anon_sym_object] = ACTIONS(1893), - [anon_sym_abstract] = ACTIONS(1893), - [anon_sym_satisfies] = ACTIONS(1893), - [anon_sym_interface] = ACTIONS(1893), - [anon_sym_enum] = ACTIONS(1893), - [sym__automatic_semicolon] = ACTIONS(1891), - [sym__ternary_qmark] = ACTIONS(1891), - [sym_html_comment] = ACTIONS(5), - }, - [242] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2603), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2305), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5105), - [sym_assignment_pattern] = STATE(5126), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5105), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(4425), + [sym_assignment_pattern] = STATE(4969), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(4425), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1402), - [sym_subscript_expression] = STATE(1402), + [sym_member_expression] = STATE(1396), + [sym_subscript_expression] = STATE(1396), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3028), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5105), + [sym__destructuring_pattern] = STATE(4425), + [sym_spread_element] = STATE(4971), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_pattern] = STATE(4388), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1402), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4406), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1396), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_mapped_type_clause] = STATE(5623), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [aux_sym_array_pattern_repeat1] = STATE(4619), - [sym_identifier] = ACTIONS(1895), - [anon_sym_export] = ACTIONS(1897), - [anon_sym_type] = ACTIONS(1897), - [anon_sym_namespace] = ACTIONS(1899), - [anon_sym_LBRACE] = ACTIONS(1901), - [anon_sym_COMMA] = ACTIONS(1903), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1897), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(1905), - [anon_sym_RBRACK] = ACTIONS(1907), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1909), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1911), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_DOT_DOT_DOT] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1913), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1897), - [anon_sym_readonly] = ACTIONS(1897), - [anon_sym_get] = ACTIONS(1897), - [anon_sym_set] = ACTIONS(1897), - [anon_sym_declare] = ACTIONS(1897), - [anon_sym_public] = ACTIONS(1897), - [anon_sym_private] = ACTIONS(1897), - [anon_sym_protected] = ACTIONS(1897), - [anon_sym_override] = ACTIONS(1897), - [anon_sym_module] = ACTIONS(1897), - [anon_sym_any] = ACTIONS(1897), - [anon_sym_number] = ACTIONS(1897), - [anon_sym_boolean] = ACTIONS(1897), - [anon_sym_string] = ACTIONS(1897), - [anon_sym_symbol] = ACTIONS(1897), - [anon_sym_object] = ACTIONS(1897), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [aux_sym_array_repeat1] = STATE(4975), + [aux_sym_array_pattern_repeat1] = STATE(4977), + [sym_identifier] = ACTIONS(1738), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_RBRACK] = ACTIONS(1840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1744), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1746), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(541), + [anon_sym_number] = ACTIONS(541), + [anon_sym_boolean] = ACTIONS(541), + [anon_sym_string] = ACTIONS(541), + [anon_sym_symbol] = ACTIONS(541), + [anon_sym_object] = ACTIONS(541), [sym_html_comment] = ACTIONS(5), }, - [243] = { - [ts_builtin_sym_end] = ACTIONS(1915), - [sym_identifier] = ACTIONS(1917), - [anon_sym_export] = ACTIONS(1917), - [anon_sym_STAR] = ACTIONS(1919), - [anon_sym_default] = ACTIONS(1917), - [anon_sym_type] = ACTIONS(1917), - [anon_sym_as] = ACTIONS(1919), - [anon_sym_namespace] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1915), - [anon_sym_COMMA] = ACTIONS(1921), - [anon_sym_RBRACE] = ACTIONS(1915), - [anon_sym_typeof] = ACTIONS(1917), - [anon_sym_import] = ACTIONS(1917), - [anon_sym_with] = ACTIONS(1917), - [anon_sym_var] = ACTIONS(1917), - [anon_sym_let] = ACTIONS(1917), - [anon_sym_const] = ACTIONS(1917), - [anon_sym_BANG] = ACTIONS(1917), - [anon_sym_else] = ACTIONS(1917), - [anon_sym_if] = ACTIONS(1917), - [anon_sym_switch] = ACTIONS(1917), - [anon_sym_for] = ACTIONS(1917), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_SEMI] = ACTIONS(1915), - [anon_sym_await] = ACTIONS(1917), - [anon_sym_in] = ACTIONS(1919), - [anon_sym_while] = ACTIONS(1917), - [anon_sym_do] = ACTIONS(1917), - [anon_sym_try] = ACTIONS(1917), - [anon_sym_break] = ACTIONS(1917), - [anon_sym_continue] = ACTIONS(1917), - [anon_sym_debugger] = ACTIONS(1917), - [anon_sym_return] = ACTIONS(1917), - [anon_sym_throw] = ACTIONS(1917), - [anon_sym_case] = ACTIONS(1917), - [anon_sym_yield] = ACTIONS(1917), - [anon_sym_LBRACK] = ACTIONS(1915), - [sym_glimmer_opening_tag] = ACTIONS(1915), - [anon_sym_DOT] = ACTIONS(1919), - [anon_sym_class] = ACTIONS(1917), - [anon_sym_async] = ACTIONS(1917), - [anon_sym_function] = ACTIONS(1917), - [anon_sym_QMARK_DOT] = ACTIONS(1921), - [anon_sym_new] = ACTIONS(1917), - [anon_sym_using] = ACTIONS(1917), - [anon_sym_AMP_AMP] = ACTIONS(1921), - [anon_sym_PIPE_PIPE] = ACTIONS(1921), - [anon_sym_GT_GT] = ACTIONS(1919), - [anon_sym_GT_GT_GT] = ACTIONS(1921), - [anon_sym_LT_LT] = ACTIONS(1921), - [anon_sym_AMP] = ACTIONS(1919), - [anon_sym_CARET] = ACTIONS(1921), - [anon_sym_PIPE] = ACTIONS(1919), - [anon_sym_PLUS] = ACTIONS(1917), - [anon_sym_DASH] = ACTIONS(1917), - [anon_sym_SLASH] = ACTIONS(1917), - [anon_sym_PERCENT] = ACTIONS(1921), - [anon_sym_STAR_STAR] = ACTIONS(1921), - [anon_sym_LT] = ACTIONS(1917), - [anon_sym_LT_EQ] = ACTIONS(1921), - [anon_sym_EQ_EQ] = ACTIONS(1919), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1921), - [anon_sym_BANG_EQ] = ACTIONS(1919), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1921), - [anon_sym_GT_EQ] = ACTIONS(1921), - [anon_sym_GT] = ACTIONS(1919), - [anon_sym_QMARK_QMARK] = ACTIONS(1921), - [anon_sym_instanceof] = ACTIONS(1919), - [anon_sym_TILDE] = ACTIONS(1915), - [anon_sym_void] = ACTIONS(1917), - [anon_sym_delete] = ACTIONS(1917), - [anon_sym_PLUS_PLUS] = ACTIONS(1915), - [anon_sym_DASH_DASH] = ACTIONS(1915), - [anon_sym_DQUOTE] = ACTIONS(1915), - [anon_sym_SQUOTE] = ACTIONS(1915), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1915), - [sym_number] = ACTIONS(1915), - [sym_private_property_identifier] = ACTIONS(1915), - [sym_this] = ACTIONS(1917), - [sym_super] = ACTIONS(1917), - [sym_true] = ACTIONS(1917), - [sym_false] = ACTIONS(1917), - [sym_null] = ACTIONS(1917), - [sym_undefined] = ACTIONS(1917), - [anon_sym_AT] = ACTIONS(1915), - [anon_sym_static] = ACTIONS(1917), - [anon_sym_readonly] = ACTIONS(1917), - [anon_sym_get] = ACTIONS(1917), - [anon_sym_set] = ACTIONS(1917), - [anon_sym_declare] = ACTIONS(1917), - [anon_sym_public] = ACTIONS(1917), - [anon_sym_private] = ACTIONS(1917), - [anon_sym_protected] = ACTIONS(1917), - [anon_sym_override] = ACTIONS(1917), - [anon_sym_module] = ACTIONS(1917), - [anon_sym_any] = ACTIONS(1917), - [anon_sym_number] = ACTIONS(1917), - [anon_sym_boolean] = ACTIONS(1917), - [anon_sym_string] = ACTIONS(1917), - [anon_sym_symbol] = ACTIONS(1917), - [anon_sym_object] = ACTIONS(1917), - [anon_sym_abstract] = ACTIONS(1917), - [anon_sym_satisfies] = ACTIONS(1919), - [anon_sym_interface] = ACTIONS(1917), - [anon_sym_enum] = ACTIONS(1917), - [sym__automatic_semicolon] = ACTIONS(1923), - [sym__ternary_qmark] = ACTIONS(1921), + [238] = { + [ts_builtin_sym_end] = ACTIONS(1884), + [sym_identifier] = ACTIONS(1886), + [anon_sym_export] = ACTIONS(1886), + [anon_sym_STAR] = ACTIONS(1886), + [anon_sym_default] = ACTIONS(1886), + [anon_sym_type] = ACTIONS(1886), + [anon_sym_as] = ACTIONS(1886), + [anon_sym_namespace] = ACTIONS(1886), + [anon_sym_LBRACE] = ACTIONS(1884), + [anon_sym_COMMA] = ACTIONS(1884), + [anon_sym_RBRACE] = ACTIONS(1884), + [anon_sym_typeof] = ACTIONS(1886), + [anon_sym_import] = ACTIONS(1886), + [anon_sym_with] = ACTIONS(1886), + [anon_sym_var] = ACTIONS(1886), + [anon_sym_let] = ACTIONS(1886), + [anon_sym_const] = ACTIONS(1886), + [anon_sym_BANG] = ACTIONS(1886), + [anon_sym_else] = ACTIONS(1886), + [anon_sym_if] = ACTIONS(1886), + [anon_sym_switch] = ACTIONS(1886), + [anon_sym_for] = ACTIONS(1886), + [anon_sym_LPAREN] = ACTIONS(1884), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_await] = ACTIONS(1886), + [anon_sym_in] = ACTIONS(1886), + [anon_sym_while] = ACTIONS(1886), + [anon_sym_do] = ACTIONS(1886), + [anon_sym_try] = ACTIONS(1886), + [anon_sym_break] = ACTIONS(1886), + [anon_sym_continue] = ACTIONS(1886), + [anon_sym_debugger] = ACTIONS(1886), + [anon_sym_return] = ACTIONS(1886), + [anon_sym_throw] = ACTIONS(1886), + [anon_sym_case] = ACTIONS(1886), + [anon_sym_yield] = ACTIONS(1886), + [anon_sym_LBRACK] = ACTIONS(1884), + [anon_sym_DOT] = ACTIONS(1886), + [anon_sym_class] = ACTIONS(1886), + [anon_sym_async] = ACTIONS(1886), + [anon_sym_function] = ACTIONS(1886), + [anon_sym_QMARK_DOT] = ACTIONS(1884), + [anon_sym_new] = ACTIONS(1886), + [anon_sym_using] = ACTIONS(1886), + [anon_sym_AMP_AMP] = ACTIONS(1884), + [anon_sym_PIPE_PIPE] = ACTIONS(1884), + [anon_sym_GT_GT] = ACTIONS(1886), + [anon_sym_GT_GT_GT] = ACTIONS(1884), + [anon_sym_LT_LT] = ACTIONS(1884), + [anon_sym_AMP] = ACTIONS(1886), + [anon_sym_CARET] = ACTIONS(1884), + [anon_sym_PIPE] = ACTIONS(1886), + [anon_sym_PLUS] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_SLASH] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1884), + [anon_sym_STAR_STAR] = ACTIONS(1884), + [anon_sym_LT] = ACTIONS(1886), + [anon_sym_LT_EQ] = ACTIONS(1884), + [anon_sym_EQ_EQ] = ACTIONS(1886), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1884), + [anon_sym_BANG_EQ] = ACTIONS(1886), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1884), + [anon_sym_GT_EQ] = ACTIONS(1884), + [anon_sym_GT] = ACTIONS(1886), + [anon_sym_QMARK_QMARK] = ACTIONS(1884), + [anon_sym_instanceof] = ACTIONS(1886), + [anon_sym_TILDE] = ACTIONS(1884), + [anon_sym_void] = ACTIONS(1886), + [anon_sym_delete] = ACTIONS(1886), + [anon_sym_PLUS_PLUS] = ACTIONS(1884), + [anon_sym_DASH_DASH] = ACTIONS(1884), + [anon_sym_DQUOTE] = ACTIONS(1884), + [anon_sym_SQUOTE] = ACTIONS(1884), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1884), + [sym_number] = ACTIONS(1884), + [sym_private_property_identifier] = ACTIONS(1884), + [sym_this] = ACTIONS(1886), + [sym_super] = ACTIONS(1886), + [sym_true] = ACTIONS(1886), + [sym_false] = ACTIONS(1886), + [sym_null] = ACTIONS(1886), + [sym_undefined] = ACTIONS(1886), + [anon_sym_AT] = ACTIONS(1884), + [anon_sym_static] = ACTIONS(1886), + [anon_sym_readonly] = ACTIONS(1886), + [anon_sym_get] = ACTIONS(1886), + [anon_sym_set] = ACTIONS(1886), + [anon_sym_declare] = ACTIONS(1886), + [anon_sym_public] = ACTIONS(1886), + [anon_sym_private] = ACTIONS(1886), + [anon_sym_protected] = ACTIONS(1886), + [anon_sym_override] = ACTIONS(1886), + [anon_sym_module] = ACTIONS(1886), + [anon_sym_any] = ACTIONS(1886), + [anon_sym_number] = ACTIONS(1886), + [anon_sym_boolean] = ACTIONS(1886), + [anon_sym_string] = ACTIONS(1886), + [anon_sym_symbol] = ACTIONS(1886), + [anon_sym_object] = ACTIONS(1886), + [anon_sym_abstract] = ACTIONS(1886), + [anon_sym_satisfies] = ACTIONS(1886), + [anon_sym_interface] = ACTIONS(1886), + [anon_sym_enum] = ACTIONS(1886), + [sym__automatic_semicolon] = ACTIONS(1884), + [sym__ternary_qmark] = ACTIONS(1884), [sym_html_comment] = ACTIONS(5), }, - [244] = { - [ts_builtin_sym_end] = ACTIONS(1925), - [sym_identifier] = ACTIONS(1927), - [anon_sym_export] = ACTIONS(1927), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_default] = ACTIONS(1927), - [anon_sym_type] = ACTIONS(1927), - [anon_sym_as] = ACTIONS(1927), - [anon_sym_namespace] = ACTIONS(1927), - [anon_sym_LBRACE] = ACTIONS(1925), - [anon_sym_COMMA] = ACTIONS(1925), - [anon_sym_RBRACE] = ACTIONS(1925), - [anon_sym_typeof] = ACTIONS(1927), - [anon_sym_import] = ACTIONS(1927), - [anon_sym_with] = ACTIONS(1927), - [anon_sym_var] = ACTIONS(1927), - [anon_sym_let] = ACTIONS(1927), - [anon_sym_const] = ACTIONS(1927), - [anon_sym_BANG] = ACTIONS(1927), - [anon_sym_else] = ACTIONS(1927), - [anon_sym_if] = ACTIONS(1927), - [anon_sym_switch] = ACTIONS(1927), - [anon_sym_for] = ACTIONS(1927), - [anon_sym_LPAREN] = ACTIONS(1925), - [anon_sym_SEMI] = ACTIONS(1925), - [anon_sym_await] = ACTIONS(1927), - [anon_sym_in] = ACTIONS(1927), - [anon_sym_while] = ACTIONS(1927), - [anon_sym_do] = ACTIONS(1927), - [anon_sym_try] = ACTIONS(1927), - [anon_sym_break] = ACTIONS(1927), - [anon_sym_continue] = ACTIONS(1927), - [anon_sym_debugger] = ACTIONS(1927), - [anon_sym_return] = ACTIONS(1927), - [anon_sym_throw] = ACTIONS(1927), - [anon_sym_case] = ACTIONS(1927), - [anon_sym_yield] = ACTIONS(1927), - [anon_sym_LBRACK] = ACTIONS(1925), - [sym_glimmer_opening_tag] = ACTIONS(1925), - [anon_sym_DOT] = ACTIONS(1927), - [anon_sym_class] = ACTIONS(1927), - [anon_sym_async] = ACTIONS(1927), - [anon_sym_function] = ACTIONS(1927), - [anon_sym_QMARK_DOT] = ACTIONS(1925), - [anon_sym_new] = ACTIONS(1927), - [anon_sym_using] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(1925), - [anon_sym_PIPE_PIPE] = ACTIONS(1925), - [anon_sym_GT_GT] = ACTIONS(1927), - [anon_sym_GT_GT_GT] = ACTIONS(1925), - [anon_sym_LT_LT] = ACTIONS(1925), - [anon_sym_AMP] = ACTIONS(1927), - [anon_sym_CARET] = ACTIONS(1925), - [anon_sym_PIPE] = ACTIONS(1927), - [anon_sym_PLUS] = ACTIONS(1927), - [anon_sym_DASH] = ACTIONS(1927), - [anon_sym_SLASH] = ACTIONS(1927), - [anon_sym_PERCENT] = ACTIONS(1925), - [anon_sym_STAR_STAR] = ACTIONS(1925), - [anon_sym_LT] = ACTIONS(1927), - [anon_sym_LT_EQ] = ACTIONS(1925), - [anon_sym_EQ_EQ] = ACTIONS(1927), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1925), - [anon_sym_BANG_EQ] = ACTIONS(1927), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1925), - [anon_sym_GT_EQ] = ACTIONS(1925), - [anon_sym_GT] = ACTIONS(1927), - [anon_sym_QMARK_QMARK] = ACTIONS(1925), - [anon_sym_instanceof] = ACTIONS(1927), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_void] = ACTIONS(1927), - [anon_sym_delete] = ACTIONS(1927), - [anon_sym_PLUS_PLUS] = ACTIONS(1925), - [anon_sym_DASH_DASH] = ACTIONS(1925), - [anon_sym_DQUOTE] = ACTIONS(1925), - [anon_sym_SQUOTE] = ACTIONS(1925), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1925), - [sym_number] = ACTIONS(1925), - [sym_private_property_identifier] = ACTIONS(1925), - [sym_this] = ACTIONS(1927), - [sym_super] = ACTIONS(1927), - [sym_true] = ACTIONS(1927), - [sym_false] = ACTIONS(1927), - [sym_null] = ACTIONS(1927), - [sym_undefined] = ACTIONS(1927), - [anon_sym_AT] = ACTIONS(1925), - [anon_sym_static] = ACTIONS(1927), - [anon_sym_readonly] = ACTIONS(1927), - [anon_sym_get] = ACTIONS(1927), - [anon_sym_set] = ACTIONS(1927), - [anon_sym_declare] = ACTIONS(1927), - [anon_sym_public] = ACTIONS(1927), - [anon_sym_private] = ACTIONS(1927), - [anon_sym_protected] = ACTIONS(1927), - [anon_sym_override] = ACTIONS(1927), - [anon_sym_module] = ACTIONS(1927), - [anon_sym_any] = ACTIONS(1927), - [anon_sym_number] = ACTIONS(1927), - [anon_sym_boolean] = ACTIONS(1927), - [anon_sym_string] = ACTIONS(1927), - [anon_sym_symbol] = ACTIONS(1927), - [anon_sym_object] = ACTIONS(1927), - [anon_sym_abstract] = ACTIONS(1927), - [anon_sym_satisfies] = ACTIONS(1927), - [anon_sym_interface] = ACTIONS(1927), - [anon_sym_enum] = ACTIONS(1927), - [sym__automatic_semicolon] = ACTIONS(1925), - [sym__ternary_qmark] = ACTIONS(1925), + [239] = { + [ts_builtin_sym_end] = ACTIONS(1888), + [sym_identifier] = ACTIONS(1890), + [anon_sym_export] = ACTIONS(1890), + [anon_sym_STAR] = ACTIONS(1890), + [anon_sym_default] = ACTIONS(1890), + [anon_sym_type] = ACTIONS(1890), + [anon_sym_as] = ACTIONS(1890), + [anon_sym_namespace] = ACTIONS(1890), + [anon_sym_LBRACE] = ACTIONS(1888), + [anon_sym_COMMA] = ACTIONS(1888), + [anon_sym_RBRACE] = ACTIONS(1888), + [anon_sym_typeof] = ACTIONS(1890), + [anon_sym_import] = ACTIONS(1890), + [anon_sym_with] = ACTIONS(1890), + [anon_sym_var] = ACTIONS(1890), + [anon_sym_let] = ACTIONS(1890), + [anon_sym_const] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_else] = ACTIONS(1890), + [anon_sym_if] = ACTIONS(1890), + [anon_sym_switch] = ACTIONS(1890), + [anon_sym_for] = ACTIONS(1890), + [anon_sym_LPAREN] = ACTIONS(1888), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_await] = ACTIONS(1890), + [anon_sym_in] = ACTIONS(1890), + [anon_sym_while] = ACTIONS(1890), + [anon_sym_do] = ACTIONS(1890), + [anon_sym_try] = ACTIONS(1890), + [anon_sym_break] = ACTIONS(1890), + [anon_sym_continue] = ACTIONS(1890), + [anon_sym_debugger] = ACTIONS(1890), + [anon_sym_return] = ACTIONS(1890), + [anon_sym_throw] = ACTIONS(1890), + [anon_sym_case] = ACTIONS(1890), + [anon_sym_yield] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1888), + [anon_sym_DOT] = ACTIONS(1890), + [anon_sym_class] = ACTIONS(1890), + [anon_sym_async] = ACTIONS(1890), + [anon_sym_function] = ACTIONS(1890), + [anon_sym_QMARK_DOT] = ACTIONS(1888), + [anon_sym_new] = ACTIONS(1890), + [anon_sym_using] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1888), + [anon_sym_PIPE_PIPE] = ACTIONS(1888), + [anon_sym_GT_GT] = ACTIONS(1890), + [anon_sym_GT_GT_GT] = ACTIONS(1888), + [anon_sym_LT_LT] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1890), + [anon_sym_CARET] = ACTIONS(1888), + [anon_sym_PIPE] = ACTIONS(1890), + [anon_sym_PLUS] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1890), + [anon_sym_SLASH] = ACTIONS(1890), + [anon_sym_PERCENT] = ACTIONS(1888), + [anon_sym_STAR_STAR] = ACTIONS(1888), + [anon_sym_LT] = ACTIONS(1890), + [anon_sym_LT_EQ] = ACTIONS(1888), + [anon_sym_EQ_EQ] = ACTIONS(1890), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1888), + [anon_sym_BANG_EQ] = ACTIONS(1890), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1888), + [anon_sym_GT_EQ] = ACTIONS(1888), + [anon_sym_GT] = ACTIONS(1890), + [anon_sym_QMARK_QMARK] = ACTIONS(1888), + [anon_sym_instanceof] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1888), + [anon_sym_void] = ACTIONS(1890), + [anon_sym_delete] = ACTIONS(1890), + [anon_sym_PLUS_PLUS] = ACTIONS(1888), + [anon_sym_DASH_DASH] = ACTIONS(1888), + [anon_sym_DQUOTE] = ACTIONS(1888), + [anon_sym_SQUOTE] = ACTIONS(1888), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1888), + [sym_number] = ACTIONS(1888), + [sym_private_property_identifier] = ACTIONS(1888), + [sym_this] = ACTIONS(1890), + [sym_super] = ACTIONS(1890), + [sym_true] = ACTIONS(1890), + [sym_false] = ACTIONS(1890), + [sym_null] = ACTIONS(1890), + [sym_undefined] = ACTIONS(1890), + [anon_sym_AT] = ACTIONS(1888), + [anon_sym_static] = ACTIONS(1890), + [anon_sym_readonly] = ACTIONS(1890), + [anon_sym_get] = ACTIONS(1890), + [anon_sym_set] = ACTIONS(1890), + [anon_sym_declare] = ACTIONS(1890), + [anon_sym_public] = ACTIONS(1890), + [anon_sym_private] = ACTIONS(1890), + [anon_sym_protected] = ACTIONS(1890), + [anon_sym_override] = ACTIONS(1890), + [anon_sym_module] = ACTIONS(1890), + [anon_sym_any] = ACTIONS(1890), + [anon_sym_number] = ACTIONS(1890), + [anon_sym_boolean] = ACTIONS(1890), + [anon_sym_string] = ACTIONS(1890), + [anon_sym_symbol] = ACTIONS(1890), + [anon_sym_object] = ACTIONS(1890), + [anon_sym_abstract] = ACTIONS(1890), + [anon_sym_satisfies] = ACTIONS(1890), + [anon_sym_interface] = ACTIONS(1890), + [anon_sym_enum] = ACTIONS(1890), + [sym__automatic_semicolon] = ACTIONS(1888), + [sym__ternary_qmark] = ACTIONS(1888), [sym_html_comment] = ACTIONS(5), }, - [245] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1512), + [240] = { + [ts_builtin_sym_end] = ACTIONS(1892), + [sym_identifier] = ACTIONS(1894), + [anon_sym_export] = ACTIONS(1894), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_default] = ACTIONS(1894), + [anon_sym_type] = ACTIONS(1894), + [anon_sym_as] = ACTIONS(1894), + [anon_sym_namespace] = ACTIONS(1894), + [anon_sym_LBRACE] = ACTIONS(1892), + [anon_sym_COMMA] = ACTIONS(1892), + [anon_sym_RBRACE] = ACTIONS(1892), + [anon_sym_typeof] = ACTIONS(1894), + [anon_sym_import] = ACTIONS(1894), + [anon_sym_with] = ACTIONS(1894), + [anon_sym_var] = ACTIONS(1894), + [anon_sym_let] = ACTIONS(1894), + [anon_sym_const] = ACTIONS(1894), + [anon_sym_BANG] = ACTIONS(1894), + [anon_sym_else] = ACTIONS(1894), + [anon_sym_if] = ACTIONS(1894), + [anon_sym_switch] = ACTIONS(1894), + [anon_sym_for] = ACTIONS(1894), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_await] = ACTIONS(1894), + [anon_sym_in] = ACTIONS(1894), + [anon_sym_while] = ACTIONS(1894), + [anon_sym_do] = ACTIONS(1894), + [anon_sym_try] = ACTIONS(1894), + [anon_sym_break] = ACTIONS(1894), + [anon_sym_continue] = ACTIONS(1894), + [anon_sym_debugger] = ACTIONS(1894), + [anon_sym_return] = ACTIONS(1894), + [anon_sym_throw] = ACTIONS(1894), + [anon_sym_case] = ACTIONS(1894), + [anon_sym_yield] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_DOT] = ACTIONS(1894), + [anon_sym_class] = ACTIONS(1894), + [anon_sym_async] = ACTIONS(1894), + [anon_sym_function] = ACTIONS(1894), + [anon_sym_QMARK_DOT] = ACTIONS(1892), + [anon_sym_new] = ACTIONS(1894), + [anon_sym_using] = ACTIONS(1894), + [anon_sym_AMP_AMP] = ACTIONS(1892), + [anon_sym_PIPE_PIPE] = ACTIONS(1892), + [anon_sym_GT_GT] = ACTIONS(1894), + [anon_sym_GT_GT_GT] = ACTIONS(1892), + [anon_sym_LT_LT] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym_CARET] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1894), + [anon_sym_PLUS] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1894), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_PERCENT] = ACTIONS(1892), + [anon_sym_STAR_STAR] = ACTIONS(1892), + [anon_sym_LT] = ACTIONS(1894), + [anon_sym_LT_EQ] = ACTIONS(1892), + [anon_sym_EQ_EQ] = ACTIONS(1894), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1892), + [anon_sym_BANG_EQ] = ACTIONS(1894), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1892), + [anon_sym_GT_EQ] = ACTIONS(1892), + [anon_sym_GT] = ACTIONS(1894), + [anon_sym_QMARK_QMARK] = ACTIONS(1892), + [anon_sym_instanceof] = ACTIONS(1894), + [anon_sym_TILDE] = ACTIONS(1892), + [anon_sym_void] = ACTIONS(1894), + [anon_sym_delete] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [anon_sym_SQUOTE] = ACTIONS(1892), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1892), + [sym_number] = ACTIONS(1892), + [sym_private_property_identifier] = ACTIONS(1892), + [sym_this] = ACTIONS(1894), + [sym_super] = ACTIONS(1894), + [sym_true] = ACTIONS(1894), + [sym_false] = ACTIONS(1894), + [sym_null] = ACTIONS(1894), + [sym_undefined] = ACTIONS(1894), + [anon_sym_AT] = ACTIONS(1892), + [anon_sym_static] = ACTIONS(1894), + [anon_sym_readonly] = ACTIONS(1894), + [anon_sym_get] = ACTIONS(1894), + [anon_sym_set] = ACTIONS(1894), + [anon_sym_declare] = ACTIONS(1894), + [anon_sym_public] = ACTIONS(1894), + [anon_sym_private] = ACTIONS(1894), + [anon_sym_protected] = ACTIONS(1894), + [anon_sym_override] = ACTIONS(1894), + [anon_sym_module] = ACTIONS(1894), + [anon_sym_any] = ACTIONS(1894), + [anon_sym_number] = ACTIONS(1894), + [anon_sym_boolean] = ACTIONS(1894), + [anon_sym_string] = ACTIONS(1894), + [anon_sym_symbol] = ACTIONS(1894), + [anon_sym_object] = ACTIONS(1894), + [anon_sym_abstract] = ACTIONS(1894), + [anon_sym_satisfies] = ACTIONS(1894), + [anon_sym_interface] = ACTIONS(1894), + [anon_sym_enum] = ACTIONS(1894), + [sym__automatic_semicolon] = ACTIONS(1892), + [sym__ternary_qmark] = ACTIONS(1892), + [sym_html_comment] = ACTIONS(5), + }, + [241] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2126), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_assignment_pattern] = STATE(5126), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(4425), + [sym_assignment_pattern] = STATE(4969), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(4425), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1284), - [sym_subscript_expression] = STATE(1284), + [sym_member_expression] = STATE(1396), + [sym_subscript_expression] = STATE(1396), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(4425), + [sym_spread_element] = STATE(4946), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_pattern] = STATE(4388), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1284), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4406), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1396), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [aux_sym_array_pattern_repeat1] = STATE(4619), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_COMMA] = ACTIONS(1903), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1671), - [anon_sym_RBRACK] = ACTIONS(1907), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(115), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [aux_sym_array_repeat1] = STATE(4955), + [aux_sym_array_pattern_repeat1] = STATE(4977), + [sym_identifier] = ACTIONS(1738), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_RBRACK] = ACTIONS(1896), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1744), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1746), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(541), + [anon_sym_number] = ACTIONS(541), + [anon_sym_boolean] = ACTIONS(541), + [anon_sym_string] = ACTIONS(541), + [anon_sym_symbol] = ACTIONS(541), + [anon_sym_object] = ACTIONS(541), [sym_html_comment] = ACTIONS(5), }, - [246] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2604), - [sym_primary_expression] = STATE(1512), + [242] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1776), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5105), - [sym_assignment_pattern] = STATE(5126), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5105), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1402), - [sym_subscript_expression] = STATE(1402), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3028), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5105), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_pattern] = STATE(4388), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1402), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [aux_sym_array_pattern_repeat1] = STATE(4619), - [sym_identifier] = ACTIONS(1929), - [anon_sym_export] = ACTIONS(1931), - [anon_sym_type] = ACTIONS(1931), - [anon_sym_namespace] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1901), - [anon_sym_COMMA] = ACTIONS(1903), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1931), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(1905), - [anon_sym_RBRACK] = ACTIONS(1907), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1935), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1937), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_DOT_DOT_DOT] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1913), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1931), - [anon_sym_readonly] = ACTIONS(1931), - [anon_sym_get] = ACTIONS(1931), - [anon_sym_set] = ACTIONS(1931), - [anon_sym_declare] = ACTIONS(1931), - [anon_sym_public] = ACTIONS(1931), - [anon_sym_private] = ACTIONS(1931), - [anon_sym_protected] = ACTIONS(1931), - [anon_sym_override] = ACTIONS(1931), - [anon_sym_module] = ACTIONS(1931), - [anon_sym_any] = ACTIONS(1931), - [anon_sym_number] = ACTIONS(1931), - [anon_sym_boolean] = ACTIONS(1931), - [anon_sym_string] = ACTIONS(1931), - [anon_sym_symbol] = ACTIONS(1931), - [anon_sym_object] = ACTIONS(1931), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(1898), + [anon_sym_RBRACE] = ACTIONS(1898), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_SEMI] = ACTIONS(1898), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(1898), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_AMP] = ACTIONS(1898), + [anon_sym_PIPE] = ACTIONS(1900), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), + [anon_sym_extends] = ACTIONS(1900), + [anon_sym_PIPE_RBRACE] = ACTIONS(1898), + [sym__automatic_semicolon] = ACTIONS(1898), [sym_html_comment] = ACTIONS(5), }, - [247] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(2439), - [sym_primary_expression] = STATE(1512), + [243] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2591), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4445), - [sym_assignment_pattern] = STATE(5434), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4445), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5096), + [sym_assignment_pattern] = STATE(4969), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5096), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1379), - [sym_subscript_expression] = STATE(1379), + [sym_member_expression] = STATE(1414), + [sym_subscript_expression] = STATE(1414), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4445), - [sym_spread_element] = STATE(4552), + [sym__destructuring_pattern] = STATE(5096), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_pattern] = STATE(4565), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1379), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4406), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1414), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1691), - [anon_sym_export] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(1939), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(819), - [anon_sym_RBRACK] = ACTIONS(1939), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1697), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1699), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(580), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(580), - [anon_sym_number] = ACTIONS(580), - [anon_sym_boolean] = ACTIONS(580), - [anon_sym_string] = ACTIONS(580), - [anon_sym_symbol] = ACTIONS(580), - [anon_sym_object] = ACTIONS(580), + [sym_mapped_type_clause] = STATE(5820), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [aux_sym_array_pattern_repeat1] = STATE(4977), + [sym_identifier] = ACTIONS(1902), + [anon_sym_export] = ACTIONS(1904), + [anon_sym_type] = ACTIONS(1904), + [anon_sym_namespace] = ACTIONS(1906), + [anon_sym_LBRACE] = ACTIONS(1908), + [anon_sym_COMMA] = ACTIONS(1910), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1904), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(1912), + [anon_sym_RBRACK] = ACTIONS(1914), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1916), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1918), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1920), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1904), + [anon_sym_readonly] = ACTIONS(1904), + [anon_sym_get] = ACTIONS(1904), + [anon_sym_set] = ACTIONS(1904), + [anon_sym_declare] = ACTIONS(1904), + [anon_sym_public] = ACTIONS(1904), + [anon_sym_private] = ACTIONS(1904), + [anon_sym_protected] = ACTIONS(1904), + [anon_sym_override] = ACTIONS(1904), + [anon_sym_module] = ACTIONS(1904), + [anon_sym_any] = ACTIONS(1904), + [anon_sym_number] = ACTIONS(1904), + [anon_sym_boolean] = ACTIONS(1904), + [anon_sym_string] = ACTIONS(1904), + [anon_sym_symbol] = ACTIONS(1904), + [anon_sym_object] = ACTIONS(1904), [sym_html_comment] = ACTIONS(5), }, - [248] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(2439), - [sym_primary_expression] = STATE(1512), + [244] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1776), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4445), - [sym_assignment_pattern] = STATE(5434), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4445), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1379), - [sym_subscript_expression] = STATE(1379), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4445), - [sym_spread_element] = STATE(4552), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_pattern] = STATE(4565), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1379), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1691), - [anon_sym_export] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(1939), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(819), - [anon_sym_RBRACK] = ACTIONS(1942), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1697), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1699), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(580), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(580), - [anon_sym_number] = ACTIONS(580), - [anon_sym_boolean] = ACTIONS(580), - [anon_sym_string] = ACTIONS(580), - [anon_sym_symbol] = ACTIONS(580), - [anon_sym_object] = ACTIONS(580), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(1898), + [anon_sym_RBRACE] = ACTIONS(1898), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(1898), + [anon_sym_RBRACK] = ACTIONS(1898), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_AMP] = ACTIONS(1898), + [anon_sym_PIPE] = ACTIONS(1898), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT] = ACTIONS(1898), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1898), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), + [anon_sym_extends] = ACTIONS(1900), [sym_html_comment] = ACTIONS(5), }, - [249] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(2439), - [sym_primary_expression] = STATE(1512), + [245] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4445), - [sym_assignment_pattern] = STATE(5434), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4445), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_assignment_pattern] = STATE(4927), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1379), - [sym_subscript_expression] = STATE(1379), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4445), - [sym_spread_element] = STATE(4552), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_pattern] = STATE(4565), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1379), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4479), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1691), - [anon_sym_export] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(1939), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(819), - [anon_sym_RBRACK] = ACTIONS(1946), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1697), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1699), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(580), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(580), - [anon_sym_number] = ACTIONS(580), - [anon_sym_boolean] = ACTIONS(580), - [anon_sym_string] = ACTIONS(580), - [anon_sym_symbol] = ACTIONS(580), - [anon_sym_object] = ACTIONS(580), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [aux_sym_array_pattern_repeat1] = STATE(5023), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_COMMA] = ACTIONS(1910), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_RBRACK] = ACTIONS(1922), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, - [250] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2547), - [sym_primary_expression] = STATE(1512), + [246] = { + [sym_import] = STATE(3639), + [sym_variable_declaration] = STATE(299), + [sym_lexical_declaration] = STATE(299), + [sym_empty_statement] = STATE(299), + [sym_parenthesized_expression] = STATE(1381), + [sym_expression] = STATE(2227), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5003), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5003), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1381), + [sym_subscript_expression] = STATE(1381), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5003), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_sequence_expression] = STATE(5597), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1381), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(1765), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(1765), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1765), - [anon_sym_RBRACK] = ACTIONS(1765), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), - [anon_sym_extends] = ACTIONS(1767), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1924), + [anon_sym_export] = ACTIONS(1926), + [anon_sym_type] = ACTIONS(1926), + [anon_sym_namespace] = ACTIONS(1928), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_var] = ACTIONS(1932), + [anon_sym_let] = ACTIONS(1934), + [anon_sym_const] = ACTIONS(1936), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(1938), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1940), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1942), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1944), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1926), + [anon_sym_readonly] = ACTIONS(1926), + [anon_sym_get] = ACTIONS(1926), + [anon_sym_set] = ACTIONS(1926), + [anon_sym_declare] = ACTIONS(1926), + [anon_sym_public] = ACTIONS(1926), + [anon_sym_private] = ACTIONS(1926), + [anon_sym_protected] = ACTIONS(1926), + [anon_sym_override] = ACTIONS(1926), + [anon_sym_module] = ACTIONS(1926), + [anon_sym_any] = ACTIONS(1926), + [anon_sym_number] = ACTIONS(1926), + [anon_sym_boolean] = ACTIONS(1926), + [anon_sym_string] = ACTIONS(1926), + [anon_sym_symbol] = ACTIONS(1926), + [anon_sym_object] = ACTIONS(1926), [sym_html_comment] = ACTIONS(5), }, - [251] = { - [sym_import] = STATE(3541), - [sym_variable_declaration] = STATE(299), - [sym_lexical_declaration] = STATE(299), - [sym_empty_statement] = STATE(299), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2236), - [sym_primary_expression] = STATE(1512), + [247] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2553), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4587), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4587), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5096), + [sym_assignment_pattern] = STATE(4969), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5096), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), + [sym_member_expression] = STATE(1414), + [sym_subscript_expression] = STATE(1414), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4587), + [sym__destructuring_pattern] = STATE(5096), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5550), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1382), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4406), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1414), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1950), - [anon_sym_export] = ACTIONS(1952), - [anon_sym_type] = ACTIONS(1952), - [anon_sym_namespace] = ACTIONS(1954), - [anon_sym_LBRACE] = ACTIONS(1956), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_var] = ACTIONS(1958), - [anon_sym_let] = ACTIONS(1960), - [anon_sym_const] = ACTIONS(1962), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(1964), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1966), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1970), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1952), - [anon_sym_readonly] = ACTIONS(1952), - [anon_sym_get] = ACTIONS(1952), - [anon_sym_set] = ACTIONS(1952), - [anon_sym_declare] = ACTIONS(1952), - [anon_sym_public] = ACTIONS(1952), - [anon_sym_private] = ACTIONS(1952), - [anon_sym_protected] = ACTIONS(1952), - [anon_sym_override] = ACTIONS(1952), - [anon_sym_module] = ACTIONS(1952), - [anon_sym_any] = ACTIONS(1952), - [anon_sym_number] = ACTIONS(1952), - [anon_sym_boolean] = ACTIONS(1952), - [anon_sym_string] = ACTIONS(1952), - [anon_sym_symbol] = ACTIONS(1952), - [anon_sym_object] = ACTIONS(1952), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [aux_sym_array_pattern_repeat1] = STATE(4977), + [sym_identifier] = ACTIONS(1946), + [anon_sym_export] = ACTIONS(1948), + [anon_sym_type] = ACTIONS(1948), + [anon_sym_namespace] = ACTIONS(1950), + [anon_sym_LBRACE] = ACTIONS(1908), + [anon_sym_COMMA] = ACTIONS(1910), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1948), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(1912), + [anon_sym_RBRACK] = ACTIONS(1914), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1952), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1954), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1920), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1948), + [anon_sym_readonly] = ACTIONS(1948), + [anon_sym_get] = ACTIONS(1948), + [anon_sym_set] = ACTIONS(1948), + [anon_sym_declare] = ACTIONS(1948), + [anon_sym_public] = ACTIONS(1948), + [anon_sym_private] = ACTIONS(1948), + [anon_sym_protected] = ACTIONS(1948), + [anon_sym_override] = ACTIONS(1948), + [anon_sym_module] = ACTIONS(1948), + [anon_sym_any] = ACTIONS(1948), + [anon_sym_number] = ACTIONS(1948), + [anon_sym_boolean] = ACTIONS(1948), + [anon_sym_string] = ACTIONS(1948), + [anon_sym_symbol] = ACTIONS(1948), + [anon_sym_object] = ACTIONS(1948), [sym_html_comment] = ACTIONS(5), }, - [252] = { - [sym_import] = STATE(3541), + [248] = { + [sym_import] = STATE(3639), [sym_variable_declaration] = STATE(304), [sym_lexical_declaration] = STATE(304), [sym_empty_statement] = STATE(304), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2361), - [sym_primary_expression] = STATE(1512), + [sym_parenthesized_expression] = STATE(1381), + [sym_expression] = STATE(2311), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4587), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4587), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5003), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5003), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), + [sym_member_expression] = STATE(1381), + [sym_subscript_expression] = STATE(1381), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4587), + [sym__destructuring_pattern] = STATE(5003), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5861), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1382), + [sym_sequence_expression] = STATE(5849), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1381), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1950), - [anon_sym_export] = ACTIONS(1952), - [anon_sym_type] = ACTIONS(1952), - [anon_sym_namespace] = ACTIONS(1954), - [anon_sym_LBRACE] = ACTIONS(1956), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_var] = ACTIONS(1958), - [anon_sym_let] = ACTIONS(1960), - [anon_sym_const] = ACTIONS(1962), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1924), + [anon_sym_export] = ACTIONS(1926), + [anon_sym_type] = ACTIONS(1926), + [anon_sym_namespace] = ACTIONS(1928), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_var] = ACTIONS(1932), + [anon_sym_let] = ACTIONS(1934), + [anon_sym_const] = ACTIONS(1936), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(1964), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1966), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1970), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1952), - [anon_sym_readonly] = ACTIONS(1952), - [anon_sym_get] = ACTIONS(1952), - [anon_sym_set] = ACTIONS(1952), - [anon_sym_declare] = ACTIONS(1952), - [anon_sym_public] = ACTIONS(1952), - [anon_sym_private] = ACTIONS(1952), - [anon_sym_protected] = ACTIONS(1952), - [anon_sym_override] = ACTIONS(1952), - [anon_sym_module] = ACTIONS(1952), - [anon_sym_any] = ACTIONS(1952), - [anon_sym_number] = ACTIONS(1952), - [anon_sym_boolean] = ACTIONS(1952), - [anon_sym_string] = ACTIONS(1952), - [anon_sym_symbol] = ACTIONS(1952), - [anon_sym_object] = ACTIONS(1952), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(1938), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1940), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1942), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1944), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1926), + [anon_sym_readonly] = ACTIONS(1926), + [anon_sym_get] = ACTIONS(1926), + [anon_sym_set] = ACTIONS(1926), + [anon_sym_declare] = ACTIONS(1926), + [anon_sym_public] = ACTIONS(1926), + [anon_sym_private] = ACTIONS(1926), + [anon_sym_protected] = ACTIONS(1926), + [anon_sym_override] = ACTIONS(1926), + [anon_sym_module] = ACTIONS(1926), + [anon_sym_any] = ACTIONS(1926), + [anon_sym_number] = ACTIONS(1926), + [anon_sym_boolean] = ACTIONS(1926), + [anon_sym_string] = ACTIONS(1926), + [anon_sym_symbol] = ACTIONS(1926), + [anon_sym_object] = ACTIONS(1926), [sym_html_comment] = ACTIONS(5), }, - [253] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1512), + [249] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2439), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_assignment_pattern] = STATE(4604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(4425), + [sym_assignment_pattern] = STATE(5126), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(4425), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1284), - [sym_subscript_expression] = STATE(1284), + [sym_member_expression] = STATE(1396), + [sym_subscript_expression] = STATE(1396), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(4425), + [sym_spread_element] = STATE(4980), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_pattern] = STATE(4397), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1284), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4982), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1396), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [aux_sym_array_pattern_repeat1] = STATE(4625), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_COMMA] = ACTIONS(1903), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1671), - [anon_sym_RBRACK] = ACTIONS(1972), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(115), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1738), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_COMMA] = ACTIONS(1956), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_RBRACK] = ACTIONS(1959), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1744), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1746), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(541), + [anon_sym_number] = ACTIONS(541), + [anon_sym_boolean] = ACTIONS(541), + [anon_sym_string] = ACTIONS(541), + [anon_sym_symbol] = ACTIONS(541), + [anon_sym_object] = ACTIONS(541), [sym_html_comment] = ACTIONS(5), }, - [254] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1924), - [sym_primary_expression] = STATE(1512), + [250] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2439), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(4425), + [sym_assignment_pattern] = STATE(5126), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(4425), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), + [sym_member_expression] = STATE(1396), + [sym_subscript_expression] = STATE(1396), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), + [sym__destructuring_pattern] = STATE(4425), + [sym_spread_element] = STATE(4980), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1398), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4982), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1396), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1765), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(1765), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(1765), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), - [anon_sym_extends] = ACTIONS(1767), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1738), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_COMMA] = ACTIONS(1956), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_RBRACK] = ACTIONS(1956), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1744), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1746), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(541), + [anon_sym_number] = ACTIONS(541), + [anon_sym_boolean] = ACTIONS(541), + [anon_sym_string] = ACTIONS(541), + [anon_sym_symbol] = ACTIONS(541), + [anon_sym_object] = ACTIONS(541), [sym_html_comment] = ACTIONS(5), }, - [255] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1512), + [251] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2577), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_assignment_pattern] = STATE(5434), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1284), - [sym_subscript_expression] = STATE(1284), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_pattern] = STATE(4565), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1284), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_COMMA] = ACTIONS(1974), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1671), - [anon_sym_RBRACK] = ACTIONS(1974), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(115), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_COMMA] = ACTIONS(1898), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(1898), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1898), + [anon_sym_RBRACK] = ACTIONS(1898), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_AMP] = ACTIONS(1898), + [anon_sym_PIPE] = ACTIONS(1898), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT] = ACTIONS(1898), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), + [anon_sym_extends] = ACTIONS(1900), [sym_html_comment] = ACTIONS(5), }, - [256] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2462), - [sym_primary_expression] = STATE(1512), + [252] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_assignment_pattern] = STATE(4969), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3028), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1456), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4406), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1765), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(1765), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), - [anon_sym_extends] = ACTIONS(1767), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [aux_sym_array_pattern_repeat1] = STATE(4977), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_COMMA] = ACTIONS(1910), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_RBRACK] = ACTIONS(1914), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, - [257] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(2258), - [sym_primary_expression] = STATE(1512), + [253] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2439), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(4425), + [sym_assignment_pattern] = STATE(5126), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(4425), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), + [sym_member_expression] = STATE(1396), + [sym_subscript_expression] = STATE(1396), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), - [sym_spread_element] = STATE(4644), + [sym__destructuring_pattern] = STATE(4425), + [sym_spread_element] = STATE(4980), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1398), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4982), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1396), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [aux_sym_array_repeat1] = STATE(4645), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1976), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(1978), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1980), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1738), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_COMMA] = ACTIONS(1956), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_RBRACK] = ACTIONS(1963), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1744), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1746), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(541), + [anon_sym_number] = ACTIONS(541), + [anon_sym_boolean] = ACTIONS(541), + [anon_sym_string] = ACTIONS(541), + [anon_sym_symbol] = ACTIONS(541), + [anon_sym_object] = ACTIONS(541), [sym_html_comment] = ACTIONS(5), }, - [258] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1389), - [sym_expression] = STATE(2108), - [sym_primary_expression] = STATE(1512), + [254] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_assignment_pattern] = STATE(5126), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1389), - [sym_subscript_expression] = STATE(1389), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1389), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4982), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1765), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(1765), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), - [anon_sym_extends] = ACTIONS(1767), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_COMMA] = ACTIONS(1967), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_RBRACK] = ACTIONS(1967), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, - [259] = { - [sym_import] = STATE(3541), + [255] = { + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(2193), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(1960), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), - [sym_spread_element] = STATE(4563), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [aux_sym_array_repeat1] = STATE(4564), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1976), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(1982), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1980), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(1898), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(1898), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(1898), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_AMP] = ACTIONS(1898), + [anon_sym_PIPE] = ACTIONS(1898), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT] = ACTIONS(1898), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), + [anon_sym_extends] = ACTIONS(1900), + [sym_html_comment] = ACTIONS(5), + }, + [256] = { + [sym_identifier] = ACTIONS(1969), + [anon_sym_export] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1969), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1969), + [anon_sym_LBRACE] = ACTIONS(1971), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(1969), + [anon_sym_import] = ACTIONS(1969), + [anon_sym_let] = ACTIONS(1969), + [anon_sym_BANG] = ACTIONS(1969), + [anon_sym_LPAREN] = ACTIONS(1971), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(1969), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(1969), + [anon_sym_LBRACK] = ACTIONS(1971), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_class] = ACTIONS(1969), + [anon_sym_async] = ACTIONS(1969), + [anon_sym_function] = ACTIONS(1969), + [anon_sym_EQ_GT] = ACTIONS(152), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1969), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1971), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(1969), + [anon_sym_DASH] = ACTIONS(1969), + [anon_sym_SLASH] = ACTIONS(1969), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1969), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(1971), + [anon_sym_void] = ACTIONS(1969), + [anon_sym_delete] = ACTIONS(1969), + [anon_sym_PLUS_PLUS] = ACTIONS(1971), + [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_DQUOTE] = ACTIONS(1971), + [anon_sym_SQUOTE] = ACTIONS(1971), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1971), + [sym_number] = ACTIONS(1971), + [sym_private_property_identifier] = ACTIONS(1971), + [sym_this] = ACTIONS(1969), + [sym_super] = ACTIONS(1969), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [sym_null] = ACTIONS(1969), + [sym_undefined] = ACTIONS(1969), + [anon_sym_AT] = ACTIONS(1971), + [anon_sym_static] = ACTIONS(1969), + [anon_sym_readonly] = ACTIONS(1969), + [anon_sym_get] = ACTIONS(1969), + [anon_sym_set] = ACTIONS(1969), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(1969), + [anon_sym_public] = ACTIONS(1969), + [anon_sym_private] = ACTIONS(1969), + [anon_sym_protected] = ACTIONS(1969), + [anon_sym_override] = ACTIONS(1969), + [anon_sym_module] = ACTIONS(1969), + [anon_sym_any] = ACTIONS(1969), + [anon_sym_number] = ACTIONS(1969), + [anon_sym_boolean] = ACTIONS(1969), + [anon_sym_string] = ACTIONS(1969), + [anon_sym_symbol] = ACTIONS(1969), + [anon_sym_object] = ACTIONS(1969), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), + [sym_html_comment] = ACTIONS(5), + }, + [257] = { + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1973), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(1973), + [anon_sym_import] = ACTIONS(1973), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_BANG] = ACTIONS(1973), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(1973), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_class] = ACTIONS(1973), + [anon_sym_async] = ACTIONS(1973), + [anon_sym_function] = ACTIONS(1973), + [anon_sym_EQ_GT] = ACTIONS(152), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1973), + [anon_sym_using] = ACTIONS(1973), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1975), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(1973), + [anon_sym_DASH] = ACTIONS(1973), + [anon_sym_SLASH] = ACTIONS(1973), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(1975), + [anon_sym_void] = ACTIONS(1973), + [anon_sym_delete] = ACTIONS(1973), + [anon_sym_PLUS_PLUS] = ACTIONS(1975), + [anon_sym_DASH_DASH] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1975), + [anon_sym_SQUOTE] = ACTIONS(1975), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1975), + [sym_number] = ACTIONS(1975), + [sym_private_property_identifier] = ACTIONS(1975), + [sym_this] = ACTIONS(1973), + [sym_super] = ACTIONS(1973), + [sym_true] = ACTIONS(1973), + [sym_false] = ACTIONS(1973), + [sym_null] = ACTIONS(1973), + [sym_undefined] = ACTIONS(1973), + [anon_sym_AT] = ACTIONS(1975), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_readonly] = ACTIONS(1973), + [anon_sym_get] = ACTIONS(1973), + [anon_sym_set] = ACTIONS(1973), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(1973), + [anon_sym_public] = ACTIONS(1973), + [anon_sym_private] = ACTIONS(1973), + [anon_sym_protected] = ACTIONS(1973), + [anon_sym_override] = ACTIONS(1973), + [anon_sym_module] = ACTIONS(1973), + [anon_sym_any] = ACTIONS(1973), + [anon_sym_number] = ACTIONS(1973), + [anon_sym_boolean] = ACTIONS(1973), + [anon_sym_string] = ACTIONS(1973), + [anon_sym_symbol] = ACTIONS(1973), + [anon_sym_object] = ACTIONS(1973), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), + [sym_html_comment] = ACTIONS(5), + }, + [258] = { + [sym_identifier] = ACTIONS(1969), + [anon_sym_export] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1969), + [anon_sym_EQ] = ACTIONS(220), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1969), + [anon_sym_LBRACE] = ACTIONS(1971), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_typeof] = ACTIONS(1969), + [anon_sym_import] = ACTIONS(1969), + [anon_sym_let] = ACTIONS(1969), + [anon_sym_BANG] = ACTIONS(1969), + [anon_sym_LPAREN] = ACTIONS(1971), + [anon_sym_RPAREN] = ACTIONS(223), + [anon_sym_await] = ACTIONS(1969), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(223), + [anon_sym_yield] = ACTIONS(1969), + [anon_sym_LBRACK] = ACTIONS(1971), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_class] = ACTIONS(1969), + [anon_sym_async] = ACTIONS(1969), + [anon_sym_function] = ACTIONS(1969), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1969), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1971), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(1969), + [anon_sym_DASH] = ACTIONS(1969), + [anon_sym_SLASH] = ACTIONS(1969), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1969), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(1971), + [anon_sym_void] = ACTIONS(1969), + [anon_sym_delete] = ACTIONS(1969), + [anon_sym_PLUS_PLUS] = ACTIONS(1971), + [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_DQUOTE] = ACTIONS(1971), + [anon_sym_SQUOTE] = ACTIONS(1971), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1971), + [sym_number] = ACTIONS(1971), + [sym_private_property_identifier] = ACTIONS(1971), + [sym_this] = ACTIONS(1969), + [sym_super] = ACTIONS(1969), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [sym_null] = ACTIONS(1969), + [sym_undefined] = ACTIONS(1969), + [anon_sym_AT] = ACTIONS(1971), + [anon_sym_static] = ACTIONS(1969), + [anon_sym_readonly] = ACTIONS(1969), + [anon_sym_get] = ACTIONS(1969), + [anon_sym_set] = ACTIONS(1969), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(1969), + [anon_sym_public] = ACTIONS(1969), + [anon_sym_private] = ACTIONS(1969), + [anon_sym_protected] = ACTIONS(1969), + [anon_sym_override] = ACTIONS(1969), + [anon_sym_module] = ACTIONS(1969), + [anon_sym_any] = ACTIONS(1969), + [anon_sym_number] = ACTIONS(1969), + [anon_sym_boolean] = ACTIONS(1969), + [anon_sym_string] = ACTIONS(1969), + [anon_sym_symbol] = ACTIONS(1969), + [anon_sym_object] = ACTIONS(1969), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), + [sym_html_comment] = ACTIONS(5), + }, + [259] = { + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1973), + [anon_sym_EQ] = ACTIONS(220), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_typeof] = ACTIONS(1973), + [anon_sym_import] = ACTIONS(1973), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_BANG] = ACTIONS(1973), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_RPAREN] = ACTIONS(223), + [anon_sym_await] = ACTIONS(1973), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(223), + [anon_sym_yield] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_class] = ACTIONS(1973), + [anon_sym_async] = ACTIONS(1973), + [anon_sym_function] = ACTIONS(1973), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1973), + [anon_sym_using] = ACTIONS(1973), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1975), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(1973), + [anon_sym_DASH] = ACTIONS(1973), + [anon_sym_SLASH] = ACTIONS(1973), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(1975), + [anon_sym_void] = ACTIONS(1973), + [anon_sym_delete] = ACTIONS(1973), + [anon_sym_PLUS_PLUS] = ACTIONS(1975), + [anon_sym_DASH_DASH] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1975), + [anon_sym_SQUOTE] = ACTIONS(1975), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1975), + [sym_number] = ACTIONS(1975), + [sym_private_property_identifier] = ACTIONS(1975), + [sym_this] = ACTIONS(1973), + [sym_super] = ACTIONS(1973), + [sym_true] = ACTIONS(1973), + [sym_false] = ACTIONS(1973), + [sym_null] = ACTIONS(1973), + [sym_undefined] = ACTIONS(1973), + [anon_sym_AT] = ACTIONS(1975), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_readonly] = ACTIONS(1973), + [anon_sym_get] = ACTIONS(1973), + [anon_sym_set] = ACTIONS(1973), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(1973), + [anon_sym_public] = ACTIONS(1973), + [anon_sym_private] = ACTIONS(1973), + [anon_sym_protected] = ACTIONS(1973), + [anon_sym_override] = ACTIONS(1973), + [anon_sym_module] = ACTIONS(1973), + [anon_sym_any] = ACTIONS(1973), + [anon_sym_number] = ACTIONS(1973), + [anon_sym_boolean] = ACTIONS(1973), + [anon_sym_string] = ACTIONS(1973), + [anon_sym_symbol] = ACTIONS(1973), + [anon_sym_object] = ACTIONS(1973), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [260] = { - [sym_identifier] = ACTIONS(1984), - [anon_sym_export] = ACTIONS(1984), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(1984), - [anon_sym_EQ] = ACTIONS(221), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1986), - [anon_sym_COMMA] = ACTIONS(224), - [anon_sym_typeof] = ACTIONS(1984), - [anon_sym_import] = ACTIONS(1984), - [anon_sym_let] = ACTIONS(1984), - [anon_sym_BANG] = ACTIONS(1984), - [anon_sym_LPAREN] = ACTIONS(1986), - [anon_sym_RPAREN] = ACTIONS(224), - [anon_sym_await] = ACTIONS(1984), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(224), - [anon_sym_yield] = ACTIONS(1984), - [anon_sym_LBRACK] = ACTIONS(1986), - [sym_glimmer_opening_tag] = ACTIONS(1986), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_class] = ACTIONS(1984), - [anon_sym_async] = ACTIONS(1984), - [anon_sym_function] = ACTIONS(1984), - [anon_sym_EQ_GT] = ACTIONS(227), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1984), - [anon_sym_using] = ACTIONS(1984), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1986), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(1984), - [anon_sym_DASH] = ACTIONS(1984), - [anon_sym_SLASH] = ACTIONS(1984), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1984), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(1986), - [anon_sym_void] = ACTIONS(1984), - [anon_sym_delete] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1986), - [anon_sym_DASH_DASH] = ACTIONS(1986), - [anon_sym_DQUOTE] = ACTIONS(1986), - [anon_sym_SQUOTE] = ACTIONS(1986), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1986), - [sym_number] = ACTIONS(1986), - [sym_private_property_identifier] = ACTIONS(1986), - [sym_this] = ACTIONS(1984), - [sym_super] = ACTIONS(1984), - [sym_true] = ACTIONS(1984), - [sym_false] = ACTIONS(1984), - [sym_null] = ACTIONS(1984), - [sym_undefined] = ACTIONS(1984), - [anon_sym_AT] = ACTIONS(1986), - [anon_sym_static] = ACTIONS(1984), - [anon_sym_readonly] = ACTIONS(1984), - [anon_sym_get] = ACTIONS(1984), - [anon_sym_set] = ACTIONS(1984), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(1984), - [anon_sym_public] = ACTIONS(1984), - [anon_sym_private] = ACTIONS(1984), - [anon_sym_protected] = ACTIONS(1984), - [anon_sym_override] = ACTIONS(1984), - [anon_sym_module] = ACTIONS(1984), - [anon_sym_any] = ACTIONS(1984), - [anon_sym_number] = ACTIONS(1984), - [anon_sym_boolean] = ACTIONS(1984), - [anon_sym_string] = ACTIONS(1984), - [anon_sym_symbol] = ACTIONS(1984), - [anon_sym_object] = ACTIONS(1984), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2414), + [sym_primary_expression] = STATE(1515), + [sym_yield_expression] = STATE(1652), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), + [sym_await_expression] = STATE(1652), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), + [sym_assignment_expression] = STATE(1652), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1652), + [sym__destructuring_pattern] = STATE(5823), + [sym_ternary_expression] = STATE(1652), + [sym_binary_expression] = STATE(1652), + [sym_unary_expression] = STATE(1652), + [sym_update_expression] = STATE(1652), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), + [sym_type_assertion] = STATE(1652), + [sym_as_expression] = STATE(1652), + [sym_satisfies_expression] = STATE(1652), + [sym_instantiation_expression] = STATE(1652), + [sym_internal_module] = STATE(1652), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(1898), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(1898), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_AMP] = ACTIONS(1898), + [anon_sym_PIPE] = ACTIONS(1898), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT] = ACTIONS(1898), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), + [anon_sym_extends] = ACTIONS(1900), [sym_html_comment] = ACTIONS(5), }, [261] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1826), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(1765), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1814), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_COMMA] = ACTIONS(1898), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(1765), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(77), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_LBRACK] = ACTIONS(1898), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(1898), + [anon_sym_PIPE] = ACTIONS(1898), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(1765), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT] = ACTIONS(1898), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1443), - [anon_sym_extends] = ACTIONS(1767), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), + [anon_sym_extends] = ACTIONS(1900), [sym_html_comment] = ACTIONS(5), }, [262] = { - [sym_identifier] = ACTIONS(1988), - [anon_sym_export] = ACTIONS(1988), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(1988), - [anon_sym_EQ] = ACTIONS(221), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1988), - [anon_sym_LBRACE] = ACTIONS(1990), - [anon_sym_COMMA] = ACTIONS(224), - [anon_sym_typeof] = ACTIONS(1988), - [anon_sym_import] = ACTIONS(1988), - [anon_sym_let] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1988), - [anon_sym_LPAREN] = ACTIONS(1990), - [anon_sym_RPAREN] = ACTIONS(224), - [anon_sym_await] = ACTIONS(1988), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(224), - [anon_sym_yield] = ACTIONS(1988), - [anon_sym_LBRACK] = ACTIONS(1990), - [sym_glimmer_opening_tag] = ACTIONS(1990), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_class] = ACTIONS(1988), - [anon_sym_async] = ACTIONS(1988), - [anon_sym_function] = ACTIONS(1988), - [anon_sym_EQ_GT] = ACTIONS(227), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1988), - [anon_sym_using] = ACTIONS(1988), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1990), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(1988), - [anon_sym_DASH] = ACTIONS(1988), - [anon_sym_SLASH] = ACTIONS(1988), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1988), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(1990), - [anon_sym_void] = ACTIONS(1988), - [anon_sym_delete] = ACTIONS(1988), - [anon_sym_PLUS_PLUS] = ACTIONS(1990), - [anon_sym_DASH_DASH] = ACTIONS(1990), - [anon_sym_DQUOTE] = ACTIONS(1990), - [anon_sym_SQUOTE] = ACTIONS(1990), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1990), - [sym_number] = ACTIONS(1990), - [sym_private_property_identifier] = ACTIONS(1990), - [sym_this] = ACTIONS(1988), - [sym_super] = ACTIONS(1988), - [sym_true] = ACTIONS(1988), - [sym_false] = ACTIONS(1988), - [sym_null] = ACTIONS(1988), - [sym_undefined] = ACTIONS(1988), - [anon_sym_AT] = ACTIONS(1990), - [anon_sym_static] = ACTIONS(1988), - [anon_sym_readonly] = ACTIONS(1988), - [anon_sym_get] = ACTIONS(1988), - [anon_sym_set] = ACTIONS(1988), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(1988), - [anon_sym_public] = ACTIONS(1988), - [anon_sym_private] = ACTIONS(1988), - [anon_sym_protected] = ACTIONS(1988), - [anon_sym_override] = ACTIONS(1988), - [anon_sym_module] = ACTIONS(1988), - [anon_sym_any] = ACTIONS(1988), - [anon_sym_number] = ACTIONS(1988), - [anon_sym_boolean] = ACTIONS(1988), - [anon_sym_string] = ACTIONS(1988), - [anon_sym_symbol] = ACTIONS(1988), - [anon_sym_object] = ACTIONS(1988), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1364), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1364), + [sym_subscript_expression] = STATE(1364), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1364), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_COMMA] = ACTIONS(1898), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), + [anon_sym_LBRACK] = ACTIONS(1898), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_AMP] = ACTIONS(1898), + [anon_sym_PIPE] = ACTIONS(1898), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT] = ACTIONS(1898), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), + [anon_sym_extends] = ACTIONS(1900), [sym_html_comment] = ACTIONS(5), }, [263] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1455), - [sym_expression] = STATE(2452), - [sym_primary_expression] = STATE(1512), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5740), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1455), - [sym_subscript_expression] = STATE(1455), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3023), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1455), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1765), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(1765), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), - [anon_sym_extends] = ACTIONS(1767), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2239), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_COMMA] = ACTIONS(1898), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(1898), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1898), + [anon_sym_PIPE] = ACTIONS(1898), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT] = ACTIONS(1898), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), + [anon_sym_extends] = ACTIONS(1900), [sym_html_comment] = ACTIONS(5), }, [264] = { - [sym_import] = STATE(3541), + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(2256), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(2231), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), - [sym_spread_element] = STATE(4633), + [sym__destructuring_pattern] = STATE(5544), + [sym_spread_element] = STATE(4590), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [aux_sym_array_repeat1] = STATE(4634), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1976), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(1992), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1980), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [aux_sym_array_repeat1] = STATE(4591), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(1977), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(1979), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1981), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [265] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2142), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1284), - [sym_subscript_expression] = STATE(1284), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(5544), + [sym_spread_element] = STATE(5115), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_pattern] = STATE(3920), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1284), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_accessibility_modifier] = STATE(279), - [sym_override_modifier] = STATE(298), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(1260), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1671), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(1994), - [anon_sym_async] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(1996), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(779), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1998), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(805), - [anon_sym_private] = ACTIONS(805), - [anon_sym_protected] = ACTIONS(805), - [anon_sym_override] = ACTIONS(807), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [aux_sym_array_repeat1] = STATE(5116), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(1977), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(1983), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1981), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [266] = { - [sym_import] = STATE(3541), + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(2252), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(2237), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), - [sym_spread_element] = STATE(4592), + [sym__destructuring_pattern] = STATE(5544), + [sym_spread_element] = STATE(4638), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [aux_sym_array_repeat1] = STATE(4593), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1976), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(2000), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1980), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [aux_sym_array_repeat1] = STATE(4639), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(1977), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(1985), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1981), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [267] = { - [sym_import] = STATE(3541), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), + [sym_yield_expression] = STATE(1652), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), + [sym_await_expression] = STATE(1652), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), + [sym_assignment_expression] = STATE(1652), + [sym__augmented_assignment_lhs] = STATE(3013), + [sym_augmented_assignment_expression] = STATE(1652), + [sym__destructuring_pattern] = STATE(3722), + [sym_ternary_expression] = STATE(1652), + [sym_binary_expression] = STATE(1652), + [sym_unary_expression] = STATE(1652), + [sym_update_expression] = STATE(1652), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4285), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), + [sym_type_assertion] = STATE(1652), + [sym_as_expression] = STATE(1652), + [sym_satisfies_expression] = STATE(1652), + [sym_instantiation_expression] = STATE(1652), + [sym_internal_module] = STATE(1652), + [sym_accessibility_modifier] = STATE(279), + [sym_override_modifier] = STATE(298), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(1297), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_class] = ACTIONS(1987), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(1989), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1991), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(798), + [anon_sym_private] = ACTIONS(798), + [anon_sym_protected] = ACTIONS(798), + [anon_sym_override] = ACTIONS(800), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [sym_html_comment] = ACTIONS(5), + }, + [268] = { + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(2348), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(2238), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), - [sym_spread_element] = STATE(4866), + [sym__destructuring_pattern] = STATE(5544), + [sym_spread_element] = STATE(4653), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [aux_sym_array_repeat1] = STATE(4586), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1976), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(2002), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1980), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), - [sym_html_comment] = ACTIONS(5), - }, - [268] = { - [sym_identifier] = ACTIONS(1984), - [anon_sym_export] = ACTIONS(1984), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(1984), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1986), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(1984), - [anon_sym_import] = ACTIONS(1984), - [anon_sym_let] = ACTIONS(1984), - [anon_sym_BANG] = ACTIONS(1984), - [anon_sym_LPAREN] = ACTIONS(1986), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(1984), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(1984), - [anon_sym_LBRACK] = ACTIONS(1986), - [sym_glimmer_opening_tag] = ACTIONS(1986), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_class] = ACTIONS(1984), - [anon_sym_async] = ACTIONS(1984), - [anon_sym_function] = ACTIONS(1984), - [anon_sym_EQ_GT] = ACTIONS(155), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1984), - [anon_sym_using] = ACTIONS(1984), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1986), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(1984), - [anon_sym_DASH] = ACTIONS(1984), - [anon_sym_SLASH] = ACTIONS(1984), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1984), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(1986), - [anon_sym_void] = ACTIONS(1984), - [anon_sym_delete] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1986), - [anon_sym_DASH_DASH] = ACTIONS(1986), - [anon_sym_DQUOTE] = ACTIONS(1986), - [anon_sym_SQUOTE] = ACTIONS(1986), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1986), - [sym_number] = ACTIONS(1986), - [sym_private_property_identifier] = ACTIONS(1986), - [sym_this] = ACTIONS(1984), - [sym_super] = ACTIONS(1984), - [sym_true] = ACTIONS(1984), - [sym_false] = ACTIONS(1984), - [sym_null] = ACTIONS(1984), - [sym_undefined] = ACTIONS(1984), - [anon_sym_AT] = ACTIONS(1986), - [anon_sym_static] = ACTIONS(1984), - [anon_sym_readonly] = ACTIONS(1984), - [anon_sym_get] = ACTIONS(1984), - [anon_sym_set] = ACTIONS(1984), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(1984), - [anon_sym_public] = ACTIONS(1984), - [anon_sym_private] = ACTIONS(1984), - [anon_sym_protected] = ACTIONS(1984), - [anon_sym_override] = ACTIONS(1984), - [anon_sym_module] = ACTIONS(1984), - [anon_sym_any] = ACTIONS(1984), - [anon_sym_number] = ACTIONS(1984), - [anon_sym_boolean] = ACTIONS(1984), - [anon_sym_string] = ACTIONS(1984), - [anon_sym_symbol] = ACTIONS(1984), - [anon_sym_object] = ACTIONS(1984), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [aux_sym_array_repeat1] = STATE(4654), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(1977), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(1993), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1981), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [269] = { - [sym_identifier] = ACTIONS(1988), - [anon_sym_export] = ACTIONS(1988), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(1988), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1988), - [anon_sym_LBRACE] = ACTIONS(1990), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(1988), - [anon_sym_import] = ACTIONS(1988), - [anon_sym_let] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1988), - [anon_sym_LPAREN] = ACTIONS(1990), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_await] = ACTIONS(1988), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_yield] = ACTIONS(1988), - [anon_sym_LBRACK] = ACTIONS(1990), - [sym_glimmer_opening_tag] = ACTIONS(1990), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_class] = ACTIONS(1988), - [anon_sym_async] = ACTIONS(1988), - [anon_sym_function] = ACTIONS(1988), - [anon_sym_EQ_GT] = ACTIONS(155), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1988), - [anon_sym_using] = ACTIONS(1988), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1990), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(1988), - [anon_sym_DASH] = ACTIONS(1988), - [anon_sym_SLASH] = ACTIONS(1988), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1988), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(1990), - [anon_sym_void] = ACTIONS(1988), - [anon_sym_delete] = ACTIONS(1988), - [anon_sym_PLUS_PLUS] = ACTIONS(1990), - [anon_sym_DASH_DASH] = ACTIONS(1990), - [anon_sym_DQUOTE] = ACTIONS(1990), - [anon_sym_SQUOTE] = ACTIONS(1990), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1990), - [sym_number] = ACTIONS(1990), - [sym_private_property_identifier] = ACTIONS(1990), - [sym_this] = ACTIONS(1988), - [sym_super] = ACTIONS(1988), - [sym_true] = ACTIONS(1988), - [sym_false] = ACTIONS(1988), - [sym_null] = ACTIONS(1988), - [sym_undefined] = ACTIONS(1988), - [anon_sym_AT] = ACTIONS(1990), - [anon_sym_static] = ACTIONS(1988), - [anon_sym_readonly] = ACTIONS(1988), - [anon_sym_get] = ACTIONS(1988), - [anon_sym_set] = ACTIONS(1988), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(1988), - [anon_sym_public] = ACTIONS(1988), - [anon_sym_private] = ACTIONS(1988), - [anon_sym_protected] = ACTIONS(1988), - [anon_sym_override] = ACTIONS(1988), - [anon_sym_module] = ACTIONS(1988), - [anon_sym_any] = ACTIONS(1988), - [anon_sym_number] = ACTIONS(1988), - [anon_sym_boolean] = ACTIONS(1988), - [anon_sym_string] = ACTIONS(1988), - [anon_sym_symbol] = ACTIONS(1988), - [anon_sym_object] = ACTIONS(1988), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2212), + [sym_primary_expression] = STATE(1515), + [sym_yield_expression] = STATE(1652), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), + [sym_await_expression] = STATE(1652), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), + [sym_assignment_expression] = STATE(1652), + [sym__augmented_assignment_lhs] = STATE(2980), + [sym_augmented_assignment_expression] = STATE(1652), + [sym__destructuring_pattern] = STATE(5544), + [sym_spread_element] = STATE(5008), + [sym_ternary_expression] = STATE(1652), + [sym_binary_expression] = STATE(1652), + [sym_unary_expression] = STATE(1652), + [sym_update_expression] = STATE(1652), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1398), + [sym_type_assertion] = STATE(1652), + [sym_as_expression] = STATE(1652), + [sym_satisfies_expression] = STATE(1652), + [sym_instantiation_expression] = STATE(1652), + [sym_internal_module] = STATE(1652), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [aux_sym_array_repeat1] = STATE(5011), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(1977), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(1995), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1981), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [270] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1875), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1364), - [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3043), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(1765), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), - [anon_sym_LBRACK] = ACTIONS(1765), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), - [anon_sym_extends] = ACTIONS(1767), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2106), + [sym_primary_expression] = STATE(1515), + [sym_yield_expression] = STATE(1652), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), + [sym_await_expression] = STATE(1652), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), + [sym_assignment_expression] = STATE(1652), + [sym__augmented_assignment_lhs] = STATE(3009), + [sym_augmented_assignment_expression] = STATE(1652), + [sym__destructuring_pattern] = STATE(5803), + [sym_ternary_expression] = STATE(1652), + [sym_binary_expression] = STATE(1652), + [sym_unary_expression] = STATE(1652), + [sym_update_expression] = STATE(1652), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), + [sym_type_assertion] = STATE(1652), + [sym_as_expression] = STATE(1652), + [sym_satisfies_expression] = STATE(1652), + [sym_instantiation_expression] = STATE(1652), + [sym_internal_module] = STATE(1652), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(1898), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(1898), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1898), + [anon_sym_PIPE] = ACTIONS(1898), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT] = ACTIONS(1898), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), + [anon_sym_extends] = ACTIONS(1900), [sym_html_comment] = ACTIONS(5), }, [271] = { - [sym_import] = STATE(3541), + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(2241), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(2208), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), - [sym_spread_element] = STATE(5000), + [sym__destructuring_pattern] = STATE(5544), + [sym_spread_element] = STATE(4789), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [aux_sym_array_repeat1] = STATE(5001), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1976), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(2004), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1980), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [aux_sym_array_repeat1] = STATE(4790), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(1977), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(1997), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1981), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [272] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1458), - [sym_expression] = STATE(2519), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2514), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1458), - [sym_subscript_expression] = STATE(1458), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3030), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1458), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(1765), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(1765), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), - [anon_sym_extends] = ACTIONS(1767), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_COMMA] = ACTIONS(1898), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(1898), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_AMP] = ACTIONS(1898), + [anon_sym_PIPE] = ACTIONS(1898), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT] = ACTIONS(1898), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), + [anon_sym_extends] = ACTIONS(1900), [sym_html_comment] = ACTIONS(5), }, [273] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1416), - [sym_expression] = STATE(2259), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5590), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1416), - [sym_subscript_expression] = STATE(1416), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3031), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1416), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(1765), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_LBRACK] = ACTIONS(1765), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), - [anon_sym_extends] = ACTIONS(1767), - [sym_html_comment] = ACTIONS(5), - }, - [274] = { - [sym_import] = STATE(3541), + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(2362), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(2219), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), - [sym_spread_element] = STATE(4543), + [sym__destructuring_pattern] = STATE(5544), + [sym_spread_element] = STATE(4544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [aux_sym_array_repeat1] = STATE(4544), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1976), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(2006), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1980), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [aux_sym_array_repeat1] = STATE(4545), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(1977), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(1999), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1981), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), + [sym_html_comment] = ACTIONS(5), + }, + [274] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2404), + [sym_primary_expression] = STATE(1515), + [sym_yield_expression] = STATE(1652), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), + [sym_await_expression] = STATE(1652), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), + [sym_assignment_expression] = STATE(1652), + [sym__augmented_assignment_lhs] = STATE(3029), + [sym_augmented_assignment_expression] = STATE(1652), + [sym__destructuring_pattern] = STATE(5815), + [sym_ternary_expression] = STATE(1652), + [sym_binary_expression] = STATE(1652), + [sym_unary_expression] = STATE(1652), + [sym_update_expression] = STATE(1652), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), + [sym_type_assertion] = STATE(1652), + [sym_as_expression] = STATE(1652), + [sym_satisfies_expression] = STATE(1652), + [sym_instantiation_expression] = STATE(1652), + [sym_internal_module] = STATE(1652), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(1898), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(1898), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_AMP] = ACTIONS(1898), + [anon_sym_PIPE] = ACTIONS(1898), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT] = ACTIONS(1898), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), + [anon_sym_extends] = ACTIONS(1900), [sym_html_comment] = ACTIONS(5), }, [275] = { - [sym_import] = STATE(3625), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1778), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3575), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1776), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1328), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym__type_query_member_expression] = STATE(2935), - [sym__type_query_subscript_expression] = STATE(2937), - [sym__type_query_call_expression] = STATE(3128), - [sym__type_query_instantiation_expression] = STATE(3229), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(2008), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(2010), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym__type_query_member_expression] = STATE(2931), + [sym__type_query_subscript_expression] = STATE(2933), + [sym__type_query_call_expression] = STATE(3124), + [sym__type_query_instantiation_expression] = STATE(3280), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(2001), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(2003), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, [276] = { - [sym_import] = STATE(3608), - [sym_parenthesized_expression] = STATE(1458), - [sym_expression] = STATE(2519), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3609), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2514), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1458), - [sym_subscript_expression] = STATE(1458), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3030), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1458), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym__type_query_member_expression] = STATE(2880), - [sym__type_query_subscript_expression] = STATE(2882), - [sym__type_query_call_expression] = STATE(2925), - [sym__type_query_instantiation_expression] = STATE(3044), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(2012), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(2014), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym__type_query_member_expression] = STATE(2876), + [sym__type_query_subscript_expression] = STATE(2877), + [sym__type_query_call_expression] = STATE(2922), + [sym__type_query_instantiation_expression] = STATE(3010), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(2005), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(2007), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, [277] = { - [sym_import] = STATE(3566), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1826), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym__type_query_member_expression] = STATE(2880), - [sym__type_query_subscript_expression] = STATE(2882), - [sym__type_query_call_expression] = STATE(2925), - [sym__type_query_instantiation_expression] = STATE(3044), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(2016), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [sym_import] = STATE(3739), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1814), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym__type_query_member_expression] = STATE(2876), + [sym__type_query_subscript_expression] = STATE(2877), + [sym__type_query_call_expression] = STATE(2922), + [sym__type_query_instantiation_expression] = STATE(3010), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(2009), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(2018), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(2011), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, [278] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(2436), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2425), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4445), - [sym_assignment_pattern] = STATE(5143), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4445), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(4425), + [sym_assignment_pattern] = STATE(5260), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(4425), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1379), - [sym_subscript_expression] = STATE(1379), + [sym_member_expression] = STATE(1396), + [sym_subscript_expression] = STATE(1396), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4445), + [sym__destructuring_pattern] = STATE(4425), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_pattern] = STATE(4528), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1379), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4930), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1396), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1691), - [anon_sym_export] = ACTIONS(580), - [anon_sym_type] = ACTIONS(580), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(580), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1697), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1699), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(580), - [anon_sym_readonly] = ACTIONS(580), - [anon_sym_get] = ACTIONS(580), - [anon_sym_set] = ACTIONS(580), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_protected] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_module] = ACTIONS(580), - [anon_sym_any] = ACTIONS(580), - [anon_sym_number] = ACTIONS(580), - [anon_sym_boolean] = ACTIONS(580), - [anon_sym_string] = ACTIONS(580), - [anon_sym_symbol] = ACTIONS(580), - [anon_sym_object] = ACTIONS(580), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1738), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1744), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1746), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(541), + [anon_sym_number] = ACTIONS(541), + [anon_sym_boolean] = ACTIONS(541), + [anon_sym_string] = ACTIONS(541), + [anon_sym_symbol] = ACTIONS(541), + [anon_sym_object] = ACTIONS(541), [sym_html_comment] = ACTIONS(5), }, [279] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1284), - [sym_subscript_expression] = STATE(1284), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_pattern] = STATE(3926), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1284), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(3924), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_override_modifier] = STATE(302), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1671), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(2020), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(807), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(2013), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(2015), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(800), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, [280] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1328), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), [sym_expression] = STATE(2439), - [sym_primary_expression] = STATE(1512), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), - [sym_spread_element] = STATE(4552), + [sym__destructuring_pattern] = STATE(5698), + [sym_spread_element] = STATE(4980), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1328), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(2024), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(2024), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2026), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(2017), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_RBRACK] = ACTIONS(2017), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2019), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, [281] = { - [sym_import] = STATE(3617), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1778), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3540), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1776), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1328), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym__type_query_member_expression] = STATE(2880), - [sym__type_query_subscript_expression] = STATE(2882), - [sym__type_query_call_expression] = STATE(2925), - [sym__type_query_instantiation_expression] = STATE(3044), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(2028), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(2014), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym__type_query_member_expression] = STATE(2876), + [sym__type_query_subscript_expression] = STATE(2877), + [sym__type_query_call_expression] = STATE(2922), + [sym__type_query_instantiation_expression] = STATE(3010), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(2021), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(2007), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, [282] = { - [sym_import] = STATE(3608), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2547), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3609), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2577), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym__type_query_member_expression] = STATE(2880), - [sym__type_query_subscript_expression] = STATE(2882), - [sym__type_query_call_expression] = STATE(2925), - [sym__type_query_instantiation_expression] = STATE(3044), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(2030), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(2014), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym__type_query_member_expression] = STATE(2876), + [sym__type_query_subscript_expression] = STATE(2877), + [sym__type_query_call_expression] = STATE(2922), + [sym__type_query_instantiation_expression] = STATE(3010), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(2023), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(2007), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), [sym_html_comment] = ACTIONS(5), }, [283] = { [sym_import] = STATE(3599), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1924), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(1960), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym__type_query_member_expression] = STATE(2880), - [sym__type_query_subscript_expression] = STATE(2882), - [sym__type_query_call_expression] = STATE(2925), - [sym__type_query_instantiation_expression] = STATE(3044), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(2032), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(2014), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym__type_query_member_expression] = STATE(2876), + [sym__type_query_subscript_expression] = STATE(2877), + [sym__type_query_call_expression] = STATE(2922), + [sym__type_query_instantiation_expression] = STATE(3010), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(2025), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(2007), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [284] = { - [sym_import] = STATE(3617), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2547), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3540), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2577), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym__type_query_member_expression] = STATE(2880), - [sym__type_query_subscript_expression] = STATE(2882), - [sym__type_query_call_expression] = STATE(2925), - [sym__type_query_instantiation_expression] = STATE(3044), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(2034), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(2036), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym__type_query_member_expression] = STATE(2876), + [sym__type_query_subscript_expression] = STATE(2877), + [sym__type_query_call_expression] = STATE(2922), + [sym__type_query_instantiation_expression] = STATE(3010), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(2027), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(2029), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), [sym_html_comment] = ACTIONS(5), }, [285] = { - [sym_import] = STATE(3617), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1778), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3540), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1776), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1328), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym__type_query_member_expression] = STATE(2880), - [sym__type_query_subscript_expression] = STATE(2882), - [sym__type_query_call_expression] = STATE(2925), - [sym__type_query_instantiation_expression] = STATE(3044), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(2038), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(2040), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym__type_query_member_expression] = STATE(2876), + [sym__type_query_subscript_expression] = STATE(2877), + [sym__type_query_call_expression] = STATE(2922), + [sym__type_query_instantiation_expression] = STATE(3010), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(2031), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(2033), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, [286] = { - [sym_import] = STATE(3608), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2547), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3609), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2577), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym__type_query_member_expression] = STATE(2880), - [sym__type_query_subscript_expression] = STATE(2882), - [sym__type_query_call_expression] = STATE(2925), - [sym__type_query_instantiation_expression] = STATE(3044), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(2042), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(2040), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym__type_query_member_expression] = STATE(2876), + [sym__type_query_subscript_expression] = STATE(2877), + [sym__type_query_call_expression] = STATE(2922), + [sym__type_query_instantiation_expression] = STATE(3010), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(2035), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(2033), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), [sym_html_comment] = ACTIONS(5), }, [287] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_assignment_pattern] = STATE(5143), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_assignment_pattern] = STATE(5260), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1284), - [sym_subscript_expression] = STATE(1284), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_pattern] = STATE(4528), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1284), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4930), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1671), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(115), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, [288] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1284), - [sym_subscript_expression] = STATE(1284), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_pattern] = STATE(4086), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1284), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4312), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_override_modifier] = STATE(300), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1671), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(799), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(2044), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(807), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(716), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(2037), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(800), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, [289] = { - [sym_import] = STATE(3541), + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(2426), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(2450), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), - [sym_spread_element] = STATE(4552), + [sym__destructuring_pattern] = STATE(5544), + [sym_spread_element] = STATE(4980), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(2024), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(2024), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1980), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_COMMA] = ACTIONS(2017), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(2017), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1981), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [290] = { [sym_import] = STATE(3599), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1924), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(1960), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym__type_query_member_expression] = STATE(2880), - [sym__type_query_subscript_expression] = STATE(2882), - [sym__type_query_call_expression] = STATE(2925), - [sym__type_query_instantiation_expression] = STATE(3044), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(2046), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(2036), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym__type_query_member_expression] = STATE(2876), + [sym__type_query_subscript_expression] = STATE(2877), + [sym__type_query_call_expression] = STATE(2922), + [sym__type_query_instantiation_expression] = STATE(3010), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(2039), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(2029), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [291] = { - [sym_import] = STATE(3618), - [sym_parenthesized_expression] = STATE(1416), - [sym_expression] = STATE(2259), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5590), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1416), - [sym_subscript_expression] = STATE(1416), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3031), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1416), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym__type_query_member_expression] = STATE(2880), - [sym__type_query_subscript_expression] = STATE(2882), - [sym__type_query_call_expression] = STATE(2925), - [sym__type_query_instantiation_expression] = STATE(3044), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(2048), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), + [sym_import] = STATE(3546), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2239), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym__type_query_member_expression] = STATE(2876), + [sym__type_query_subscript_expression] = STATE(2877), + [sym__type_query_call_expression] = STATE(2922), + [sym__type_query_instantiation_expression] = STATE(3010), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(2041), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(2018), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(2011), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, [292] = { - [sym_import] = STATE(3623), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2462), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3572), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2414), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3028), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1456), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym__type_query_member_expression] = STATE(2880), - [sym__type_query_subscript_expression] = STATE(2882), - [sym__type_query_call_expression] = STATE(2925), - [sym__type_query_instantiation_expression] = STATE(3044), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(2050), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(2014), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym__type_query_member_expression] = STATE(2876), + [sym__type_query_subscript_expression] = STATE(2877), + [sym__type_query_call_expression] = STATE(2922), + [sym__type_query_instantiation_expression] = STATE(3010), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(2043), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(2007), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, [293] = { - [sym_import] = STATE(3566), + [sym_import] = STATE(3739), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1875), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3043), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym__type_query_member_expression] = STATE(2880), - [sym__type_query_subscript_expression] = STATE(2882), - [sym__type_query_call_expression] = STATE(2925), - [sym__type_query_instantiation_expression] = STATE(3044), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(2052), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym__type_query_member_expression] = STATE(2876), + [sym__type_query_subscript_expression] = STATE(2877), + [sym__type_query_call_expression] = STATE(2922), + [sym__type_query_instantiation_expression] = STATE(3010), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(2045), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(2018), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(2011), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, [294] = { - [sym_import] = STATE(3617), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1778), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3540), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1776), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1328), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym__type_query_member_expression] = STATE(2880), - [sym__type_query_subscript_expression] = STATE(2882), - [sym__type_query_call_expression] = STATE(2925), - [sym__type_query_instantiation_expression] = STATE(3044), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(2054), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(2036), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym__type_query_member_expression] = STATE(2876), + [sym__type_query_subscript_expression] = STATE(2877), + [sym__type_query_call_expression] = STATE(2922), + [sym__type_query_instantiation_expression] = STATE(3010), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(2047), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(2029), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, [295] = { - [sym_import] = STATE(3608), - [sym_parenthesized_expression] = STATE(1455), - [sym_expression] = STATE(2452), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3609), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2404), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5740), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1455), - [sym_subscript_expression] = STATE(1455), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3023), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1455), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym__type_query_member_expression] = STATE(2880), - [sym__type_query_subscript_expression] = STATE(2882), - [sym__type_query_call_expression] = STATE(2925), - [sym__type_query_instantiation_expression] = STATE(3044), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(2056), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(2014), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym__type_query_member_expression] = STATE(2876), + [sym__type_query_subscript_expression] = STATE(2877), + [sym__type_query_call_expression] = STATE(2922), + [sym__type_query_instantiation_expression] = STATE(3010), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(2049), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(2007), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, [296] = { - [sym_import] = STATE(3617), - [sym_parenthesized_expression] = STATE(1389), - [sym_expression] = STATE(2108), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3540), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2106), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1389), - [sym_subscript_expression] = STATE(1389), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1389), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym__type_query_member_expression] = STATE(2880), - [sym__type_query_subscript_expression] = STATE(2882), - [sym__type_query_call_expression] = STATE(2925), - [sym__type_query_instantiation_expression] = STATE(3044), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(2058), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(2014), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym__type_query_member_expression] = STATE(2876), + [sym__type_query_subscript_expression] = STATE(2877), + [sym__type_query_call_expression] = STATE(2922), + [sym__type_query_instantiation_expression] = STATE(3010), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(2051), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(2007), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [297] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1926), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5148), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1905), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5245), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2060), + [anon_sym_SEMI] = ACTIONS(2053), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1443), - [sym__automatic_semicolon] = ACTIONS(2060), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), + [sym__automatic_semicolon] = ACTIONS(2053), [sym_html_comment] = ACTIONS(5), }, [298] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1284), - [sym_subscript_expression] = STATE(1284), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_pattern] = STATE(3928), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1284), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(3930), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1671), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(2062), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(2064), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(2055), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(2057), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, [299] = { - [sym_import] = STATE(3541), + [sym_import] = STATE(3639), [sym_empty_statement] = STATE(314), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(2175), - [sym_primary_expression] = STATE(1512), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2124), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5656), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1328), + [sym_sequence_expression] = STATE(5500), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, [300] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1284), - [sym_subscript_expression] = STATE(1284), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_pattern] = STATE(3917), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1284), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(3914), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1671), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(793), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(2066), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(784), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(2059), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, [301] = { - [sym_import] = STATE(3541), + [sym_import] = STATE(3639), [sym_empty_statement] = STATE(306), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(2302), - [sym_primary_expression] = STATE(1512), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2292), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5645), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1328), + [sym_sequence_expression] = STATE(5561), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, [302] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1284), - [sym_subscript_expression] = STATE(1284), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_pattern] = STATE(4234), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1284), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4226), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1671), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(2068), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(2070), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(2061), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(2063), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, [303] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3722), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3722), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1284), - [sym_subscript_expression] = STATE(1284), + [sym_member_expression] = STATE(1295), + [sym_subscript_expression] = STATE(1295), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), + [sym__destructuring_pattern] = STATE(3722), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_pattern] = STATE(4086), - [sym_rest_pattern] = STATE(3606), - [sym_non_null_expression] = STATE(1284), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_pattern] = STATE(4312), + [sym_rest_pattern] = STATE(3684), + [sym_non_null_expression] = STATE(1295), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1671), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(151), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(161), - [anon_sym_DOT_DOT_DOT] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(799), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(2044), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(115), - [anon_sym_private] = ACTIONS(115), - [anon_sym_protected] = ACTIONS(115), - [anon_sym_override] = ACTIONS(115), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(148), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(706), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(716), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(2037), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, [304] = { - [sym_import] = STATE(3541), + [sym_import] = STATE(3639), [sym_empty_statement] = STATE(313), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(2342), - [sym_primary_expression] = STATE(1512), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2336), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5676), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1328), + [sym_sequence_expression] = STATE(5664), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, [305] = { - [sym_import] = STATE(3541), + [sym_import] = STATE(3639), [sym_empty_statement] = STATE(309), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(2343), - [sym_primary_expression] = STATE(1512), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2337), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5692), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1328), + [sym_sequence_expression] = STATE(5680), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, [306] = { - [sym_import] = STATE(3541), + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(2340), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(2330), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5582), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_sequence_expression] = STATE(5565), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(2072), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(2065), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [307] = { - [sym_import] = STATE(3541), + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(2159), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(2174), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5484), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_sequence_expression] = STATE(5542), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(2074), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(2067), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [308] = { - [sym_import] = STATE(3541), + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(2284), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(2272), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5762), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_sequence_expression] = STATE(5723), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(2076), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(2069), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [309] = { - [sym_import] = STATE(3541), + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(2285), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(2273), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5765), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_sequence_expression] = STATE(5726), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(2078), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(2071), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [310] = { - [sym_import] = STATE(3541), + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(2287), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(2275), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5777), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_sequence_expression] = STATE(5751), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(2080), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(2073), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [311] = { - [sym_import] = STATE(3541), + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(2339), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(2329), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5579), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_sequence_expression] = STATE(5562), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(2082), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(2075), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [312] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1449), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1447), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5015), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5015), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5019), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5019), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1449), - [sym_subscript_expression] = STATE(1449), + [sym_member_expression] = STATE(1447), + [sym_subscript_expression] = STATE(1447), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5015), + [sym__destructuring_pattern] = STATE(5019), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1449), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1447), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(2084), - [anon_sym_export] = ACTIONS(2086), - [anon_sym_type] = ACTIONS(2086), - [anon_sym_namespace] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(1956), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_var] = ACTIONS(2090), - [anon_sym_let] = ACTIONS(2092), - [anon_sym_const] = ACTIONS(2094), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1964), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(2096), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(2098), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(2100), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2086), - [anon_sym_readonly] = ACTIONS(2086), - [anon_sym_get] = ACTIONS(2086), - [anon_sym_set] = ACTIONS(2086), - [anon_sym_declare] = ACTIONS(2086), - [anon_sym_public] = ACTIONS(2086), - [anon_sym_private] = ACTIONS(2086), - [anon_sym_protected] = ACTIONS(2086), - [anon_sym_override] = ACTIONS(2086), - [anon_sym_module] = ACTIONS(2086), - [anon_sym_any] = ACTIONS(2086), - [anon_sym_number] = ACTIONS(2086), - [anon_sym_boolean] = ACTIONS(2086), - [anon_sym_string] = ACTIONS(2086), - [anon_sym_symbol] = ACTIONS(2086), - [anon_sym_object] = ACTIONS(2086), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(2077), + [anon_sym_export] = ACTIONS(2079), + [anon_sym_type] = ACTIONS(2079), + [anon_sym_namespace] = ACTIONS(2081), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_var] = ACTIONS(2083), + [anon_sym_let] = ACTIONS(2085), + [anon_sym_const] = ACTIONS(2087), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1938), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(2089), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(2091), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(2093), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2079), + [anon_sym_readonly] = ACTIONS(2079), + [anon_sym_get] = ACTIONS(2079), + [anon_sym_set] = ACTIONS(2079), + [anon_sym_declare] = ACTIONS(2079), + [anon_sym_public] = ACTIONS(2079), + [anon_sym_private] = ACTIONS(2079), + [anon_sym_protected] = ACTIONS(2079), + [anon_sym_override] = ACTIONS(2079), + [anon_sym_module] = ACTIONS(2079), + [anon_sym_any] = ACTIONS(2079), + [anon_sym_number] = ACTIONS(2079), + [anon_sym_boolean] = ACTIONS(2079), + [anon_sym_string] = ACTIONS(2079), + [anon_sym_symbol] = ACTIONS(2079), + [anon_sym_object] = ACTIONS(2079), [sym_html_comment] = ACTIONS(5), }, [313] = { - [sym_import] = STATE(3541), + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(2281), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(2269), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5725), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_sequence_expression] = STATE(5687), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(2102), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(2095), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [314] = { - [sym_import] = STATE(3541), + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(2301), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(2290), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5611), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_sequence_expression] = STATE(5511), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(2104), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(2097), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [315] = { - [sym_import] = STATE(3541), - [sym_statement_block] = STATE(1685), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1763), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1683), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1762), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1328), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, [316] = { - [sym_import] = STATE(3541), + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(2146), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(2341), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5542), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_sequence_expression] = STATE(5620), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [317] = { - [sym_import] = STATE(3541), + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1827), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(1825), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5644), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_sequence_expression] = STATE(5513), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [318] = { - [sym_import] = STATE(3514), - [sym_statement_block] = STATE(2326), - [sym_parenthesized_expression] = STATE(1416), - [sym_expression] = STATE(2191), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5590), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1416), - [sym_subscript_expression] = STATE(1416), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3031), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1416), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), + [sym_import] = STATE(3636), + [sym_statement_block] = STATE(2195), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2140), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(2101), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, [319] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(2195), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2144), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5508), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1328), + [sym_sequence_expression] = STATE(5498), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, [320] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(2298), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2287), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5496), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1328), + [sym_sequence_expression] = STATE(5643), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, [321] = { - [sym_import] = STATE(3514), - [sym_statement_block] = STATE(2122), - [sym_parenthesized_expression] = STATE(1416), - [sym_expression] = STATE(2206), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5590), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1416), - [sym_subscript_expression] = STATE(1416), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3031), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1416), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), + [sym_import] = STATE(3636), + [sym_statement_block] = STATE(2262), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2155), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(2101), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, [322] = { - [sym_import] = STATE(3541), + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(2299), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(2288), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5509), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_sequence_expression] = STATE(5722), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [323] = { - [sym_import] = STATE(3541), + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(2152), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(2121), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5598), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_sequence_expression] = STATE(5736), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [324] = { - [sym_import] = STATE(3514), - [sym_statement_block] = STATE(2235), - [sym_parenthesized_expression] = STATE(1416), - [sym_expression] = STATE(2208), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5590), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1416), - [sym_subscript_expression] = STATE(1416), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3031), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1416), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), + [sym_import] = STATE(3636), + [sym_statement_block] = STATE(2198), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2158), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(2101), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, [325] = { - [sym_import] = STATE(3514), - [sym_statement_block] = STATE(2238), - [sym_parenthesized_expression] = STATE(1416), - [sym_expression] = STATE(2209), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5590), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1416), - [sym_subscript_expression] = STATE(1416), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3031), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1416), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), + [sym_import] = STATE(3636), + [sym_statement_block] = STATE(2201), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2159), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(2101), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, [326] = { - [sym_import] = STATE(3514), - [sym_statement_block] = STATE(2239), - [sym_parenthesized_expression] = STATE(1416), - [sym_expression] = STATE(2210), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5590), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1416), - [sym_subscript_expression] = STATE(1416), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3031), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1416), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), + [sym_import] = STATE(3636), + [sym_statement_block] = STATE(2204), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2160), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(2101), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, [327] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(2355), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2225), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5766), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1328), + [sym_sequence_expression] = STATE(5835), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, [328] = { - [sym_import] = STATE(3541), + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(2300), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(2289), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5587), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_sequence_expression] = STATE(5506), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [329] = { - [sym_import] = STATE(3514), - [sym_statement_block] = STATE(2122), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1829), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(2108), + [sym_import] = STATE(3636), + [sym_statement_block] = STATE(2262), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1828), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(2101), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, [330] = { - [sym_import] = STATE(3541), - [sym_statement_block] = STATE(1659), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1658), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(2045), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(1886), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [331] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(2215), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2166), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5620), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1328), + [sym_sequence_expression] = STATE(5487), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, [332] = { - [sym_import] = STATE(3541), - [sym_statement_block] = STATE(1670), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1668), [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(1890), - [sym_primary_expression] = STATE(1512), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [333] = { - [sym_import] = STATE(3541), - [sym_statement_block] = STATE(1674), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1672), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1914), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(1913), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [334] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2603), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2591), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3028), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1456), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_mapped_type_clause] = STATE(5623), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(2110), - [anon_sym_export] = ACTIONS(2112), - [anon_sym_type] = ACTIONS(2112), - [anon_sym_namespace] = ACTIONS(2114), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2112), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(2116), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(2118), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2112), - [anon_sym_readonly] = ACTIONS(2112), - [anon_sym_get] = ACTIONS(2112), - [anon_sym_set] = ACTIONS(2112), - [anon_sym_declare] = ACTIONS(2112), - [anon_sym_public] = ACTIONS(2112), - [anon_sym_private] = ACTIONS(2112), - [anon_sym_protected] = ACTIONS(2112), - [anon_sym_override] = ACTIONS(2112), - [anon_sym_module] = ACTIONS(2112), - [anon_sym_any] = ACTIONS(2112), - [anon_sym_number] = ACTIONS(2112), - [anon_sym_boolean] = ACTIONS(2112), - [anon_sym_string] = ACTIONS(2112), - [anon_sym_symbol] = ACTIONS(2112), - [anon_sym_object] = ACTIONS(2112), + [sym_mapped_type_clause] = STATE(5820), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(2103), + [anon_sym_export] = ACTIONS(2105), + [anon_sym_type] = ACTIONS(2105), + [anon_sym_namespace] = ACTIONS(2107), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(2105), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(2109), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(2111), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2105), + [anon_sym_readonly] = ACTIONS(2105), + [anon_sym_get] = ACTIONS(2105), + [anon_sym_set] = ACTIONS(2105), + [anon_sym_declare] = ACTIONS(2105), + [anon_sym_public] = ACTIONS(2105), + [anon_sym_private] = ACTIONS(2105), + [anon_sym_protected] = ACTIONS(2105), + [anon_sym_override] = ACTIONS(2105), + [anon_sym_module] = ACTIONS(2105), + [anon_sym_any] = ACTIONS(2105), + [anon_sym_number] = ACTIONS(2105), + [anon_sym_boolean] = ACTIONS(2105), + [anon_sym_string] = ACTIONS(2105), + [anon_sym_symbol] = ACTIONS(2105), + [anon_sym_object] = ACTIONS(2105), [sym_html_comment] = ACTIONS(5), }, [335] = { - [sym_import] = STATE(3541), + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1866), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(1864), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5581), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_sequence_expression] = STATE(5575), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [336] = { - [sym_import] = STATE(3514), - [sym_statement_block] = STATE(2235), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1816), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(2108), + [sym_import] = STATE(3636), + [sym_statement_block] = STATE(2198), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1815), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(2101), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, [337] = { - [sym_import] = STATE(3541), - [sym_statement_block] = STATE(1659), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1742), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1658), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1740), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1328), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, [338] = { - [sym_import] = STATE(3541), - [sym_statement_block] = STATE(1670), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1746), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1668), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1745), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1328), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, [339] = { - [sym_import] = STATE(3541), - [sym_statement_block] = STATE(1674), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1759), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1672), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1758), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1328), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, [340] = { - [sym_import] = STATE(3541), - [sym_statement_block] = STATE(1682), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1761), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1680), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1760), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1328), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, [341] = { - [sym_import] = STATE(3541), - [sym_statement_block] = STATE(1684), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1762), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1682), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1761), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1328), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, [342] = { - [sym_import] = STATE(3514), - [sym_statement_block] = STATE(2238), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(2108), + [sym_import] = STATE(3636), + [sym_statement_block] = STATE(2201), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(2101), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, [343] = { - [sym_import] = STATE(3514), - [sym_statement_block] = STATE(2239), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1819), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(2108), + [sym_import] = STATE(3636), + [sym_statement_block] = STATE(2204), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(2101), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, [344] = { - [sym_import] = STATE(3541), - [sym_statement_block] = STATE(1682), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1680), [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(1927), - [sym_primary_expression] = STATE(1512), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [345] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1923), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_sequence_expression] = STATE(5182), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1893), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_sequence_expression] = STATE(5284), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, [346] = { - [sym_import] = STATE(3514), - [sym_statement_block] = STATE(2296), + [sym_import] = STATE(3636), + [sym_statement_block] = STATE(2280), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1838), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), + [sym_expression] = STATE(1836), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3043), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(2101), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, [347] = { - [sym_import] = STATE(3514), - [sym_statement_block] = STATE(2326), + [sym_import] = STATE(3636), + [sym_statement_block] = STATE(2195), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1843), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), + [sym_expression] = STATE(1841), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3043), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(2101), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, [348] = { - [sym_import] = STATE(3514), - [sym_statement_block] = STATE(2122), + [sym_import] = STATE(3636), + [sym_statement_block] = STATE(2262), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1856), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), + [sym_expression] = STATE(1854), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3043), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(2101), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, [349] = { - [sym_import] = STATE(3514), - [sym_statement_block] = STATE(2235), + [sym_import] = STATE(3636), + [sym_statement_block] = STATE(2198), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1858), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), + [sym_expression] = STATE(1856), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3043), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(2101), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, [350] = { - [sym_import] = STATE(3514), - [sym_statement_block] = STATE(2238), + [sym_import] = STATE(3636), + [sym_statement_block] = STATE(2201), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1859), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), + [sym_expression] = STATE(1857), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3043), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(2101), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, [351] = { - [sym_import] = STATE(3514), - [sym_statement_block] = STATE(2239), + [sym_import] = STATE(3636), + [sym_statement_block] = STATE(2204), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1860), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), + [sym_expression] = STATE(1858), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3043), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(2101), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, [352] = { - [sym_import] = STATE(3541), - [sym_statement_block] = STATE(1684), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1682), [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1512), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [353] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2603), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2591), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3028), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1456), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_mapped_type_clause] = STATE(5619), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(2120), - [anon_sym_export] = ACTIONS(2122), - [anon_sym_type] = ACTIONS(2122), - [anon_sym_namespace] = ACTIONS(2124), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2122), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(2126), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(2128), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_readonly] = ACTIONS(2122), - [anon_sym_get] = ACTIONS(2122), - [anon_sym_set] = ACTIONS(2122), - [anon_sym_declare] = ACTIONS(2122), - [anon_sym_public] = ACTIONS(2122), - [anon_sym_private] = ACTIONS(2122), - [anon_sym_protected] = ACTIONS(2122), - [anon_sym_override] = ACTIONS(2122), - [anon_sym_module] = ACTIONS(2122), - [anon_sym_any] = ACTIONS(2122), - [anon_sym_number] = ACTIONS(2122), - [anon_sym_boolean] = ACTIONS(2122), - [anon_sym_string] = ACTIONS(2122), - [anon_sym_symbol] = ACTIONS(2122), - [anon_sym_object] = ACTIONS(2122), + [sym_mapped_type_clause] = STATE(5605), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(2113), + [anon_sym_export] = ACTIONS(2115), + [anon_sym_type] = ACTIONS(2115), + [anon_sym_namespace] = ACTIONS(2117), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(2115), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(2119), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(2121), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2115), + [anon_sym_readonly] = ACTIONS(2115), + [anon_sym_get] = ACTIONS(2115), + [anon_sym_set] = ACTIONS(2115), + [anon_sym_declare] = ACTIONS(2115), + [anon_sym_public] = ACTIONS(2115), + [anon_sym_private] = ACTIONS(2115), + [anon_sym_protected] = ACTIONS(2115), + [anon_sym_override] = ACTIONS(2115), + [anon_sym_module] = ACTIONS(2115), + [anon_sym_any] = ACTIONS(2115), + [anon_sym_number] = ACTIONS(2115), + [anon_sym_boolean] = ACTIONS(2115), + [anon_sym_string] = ACTIONS(2115), + [anon_sym_symbol] = ACTIONS(2115), + [anon_sym_object] = ACTIONS(2115), [sym_html_comment] = ACTIONS(5), }, [354] = { - [sym_import] = STATE(3541), - [sym_statement_block] = STATE(1659), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2534), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1658), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2528), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(2130), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(2123), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), [sym_html_comment] = ACTIONS(5), }, [355] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1389), - [sym_expression] = STATE(2336), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2183), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1389), - [sym_subscript_expression] = STATE(1389), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1389), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), - [sym__extends_clause_single] = STATE(4886), + [sym__extends_clause_single] = STATE(4894), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [356] = { - [sym_import] = STATE(3541), - [sym_statement_block] = STATE(1670), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2542), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1668), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2531), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(2130), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(2123), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), [sym_html_comment] = ACTIONS(5), }, [357] = { - [sym_import] = STATE(3541), - [sym_statement_block] = STATE(1674), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2571), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1672), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2544), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(2130), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(2123), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), [sym_html_comment] = ACTIONS(5), }, [358] = { - [sym_import] = STATE(3541), - [sym_statement_block] = STATE(1682), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2575), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1680), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2546), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(2130), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(2123), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), [sym_html_comment] = ACTIONS(5), }, [359] = { - [sym_import] = STATE(3514), - [sym_statement_block] = STATE(2326), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1794), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(2108), + [sym_import] = STATE(3636), + [sym_statement_block] = STATE(2195), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1790), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(2101), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, [360] = { - [sym_import] = STATE(3541), - [sym_statement_block] = STATE(1685), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2578), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1683), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2548), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(2130), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(2123), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), [sym_html_comment] = ACTIONS(5), }, [361] = { - [sym_import] = STATE(3514), - [sym_statement_block] = STATE(2296), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1869), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(2108), + [sym_import] = STATE(3636), + [sym_statement_block] = STATE(2280), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1866), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(2101), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, [362] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(2265), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2250), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5527), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1328), + [sym_sequence_expression] = STATE(5837), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, [363] = { - [sym_import] = STATE(3541), - [sym_statement_block] = STATE(1659), - [sym_parenthesized_expression] = STATE(1389), - [sym_expression] = STATE(2083), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1658), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2081), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1389), - [sym_subscript_expression] = STATE(1389), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1389), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [364] = { - [sym_import] = STATE(3541), - [sym_statement_block] = STATE(1670), - [sym_parenthesized_expression] = STATE(1389), - [sym_expression] = STATE(2087), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1668), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2085), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1389), - [sym_subscript_expression] = STATE(1389), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1389), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [365] = { - [sym_import] = STATE(3541), - [sym_statement_block] = STATE(1674), - [sym_parenthesized_expression] = STATE(1389), - [sym_expression] = STATE(2100), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1672), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2098), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1389), - [sym_subscript_expression] = STATE(1389), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1389), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [366] = { - [sym_import] = STATE(3541), - [sym_statement_block] = STATE(1682), - [sym_parenthesized_expression] = STATE(1389), - [sym_expression] = STATE(2102), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1680), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2100), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1389), - [sym_subscript_expression] = STATE(1389), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1389), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [367] = { - [sym_import] = STATE(3541), - [sym_statement_block] = STATE(1684), - [sym_parenthesized_expression] = STATE(1389), - [sym_expression] = STATE(2103), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1682), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2101), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1389), - [sym_subscript_expression] = STATE(1389), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1389), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [368] = { - [sym_import] = STATE(3541), - [sym_statement_block] = STATE(1685), - [sym_parenthesized_expression] = STATE(1389), - [sym_expression] = STATE(2104), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1683), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2102), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1389), - [sym_subscript_expression] = STATE(1389), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1389), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [369] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1389), - [sym_expression] = STATE(2336), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2183), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1389), - [sym_subscript_expression] = STATE(1389), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1389), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), - [sym__extends_clause_single] = STATE(4448), + [sym__extends_clause_single] = STATE(4462), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [370] = { - [sym_import] = STATE(3541), - [sym_statement_block] = STATE(1659), - [sym_parenthesized_expression] = STATE(1455), - [sym_expression] = STATE(2368), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1658), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2465), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5740), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1455), - [sym_subscript_expression] = STATE(1455), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3023), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1455), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, [371] = { - [sym_import] = STATE(3541), - [sym_statement_block] = STATE(1670), - [sym_parenthesized_expression] = STATE(1455), - [sym_expression] = STATE(2372), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1668), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2474), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5740), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1455), - [sym_subscript_expression] = STATE(1455), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3023), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1455), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, [372] = { - [sym_import] = STATE(3541), - [sym_statement_block] = STATE(1674), - [sym_parenthesized_expression] = STATE(1455), - [sym_expression] = STATE(2385), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1672), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2363), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5740), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1455), - [sym_subscript_expression] = STATE(1455), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3023), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1455), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, [373] = { - [sym_import] = STATE(3541), - [sym_statement_block] = STATE(1682), - [sym_parenthesized_expression] = STATE(1455), - [sym_expression] = STATE(2387), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1680), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2365), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5740), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1455), - [sym_subscript_expression] = STATE(1455), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3023), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1455), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, [374] = { - [sym_import] = STATE(3541), - [sym_statement_block] = STATE(1684), - [sym_parenthesized_expression] = STATE(1455), - [sym_expression] = STATE(2388), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1682), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2366), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5740), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1455), - [sym_subscript_expression] = STATE(1455), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3023), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1455), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, [375] = { - [sym_import] = STATE(3541), - [sym_statement_block] = STATE(1685), - [sym_parenthesized_expression] = STATE(1455), - [sym_expression] = STATE(2389), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1683), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2367), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5740), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1455), - [sym_subscript_expression] = STATE(1455), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3023), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1455), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, [376] = { - [sym_import] = STATE(3541), - [sym_statement_block] = STATE(1659), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2395), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1658), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2388), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3028), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1456), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, [377] = { - [sym_import] = STATE(3541), - [sym_statement_block] = STATE(1670), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2399), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1668), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2392), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3028), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1456), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, [378] = { - [sym_import] = STATE(3541), - [sym_statement_block] = STATE(1674), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2412), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1672), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2413), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3028), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1456), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, [379] = { - [sym_import] = STATE(3541), - [sym_statement_block] = STATE(1682), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2414), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1680), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3028), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1456), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, [380] = { - [sym_import] = STATE(3541), - [sym_statement_block] = STATE(1684), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1682), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2420), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3028), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1456), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, [381] = { - [sym_import] = STATE(3541), - [sym_statement_block] = STATE(1685), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2416), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1683), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2421), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3028), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1456), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, [382] = { - [sym_import] = STATE(3541), - [sym_statement_block] = STATE(1659), - [sym_parenthesized_expression] = STATE(1458), - [sym_expression] = STATE(2492), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1658), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2485), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1458), - [sym_subscript_expression] = STATE(1458), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3030), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1458), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(2130), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(2123), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, [383] = { - [sym_import] = STATE(3541), - [sym_statement_block] = STATE(1670), - [sym_parenthesized_expression] = STATE(1458), - [sym_expression] = STATE(2496), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1668), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2489), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1458), - [sym_subscript_expression] = STATE(1458), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3030), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1458), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(2130), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(2123), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, [384] = { - [sym_import] = STATE(3541), - [sym_statement_block] = STATE(1674), - [sym_parenthesized_expression] = STATE(1458), - [sym_expression] = STATE(2509), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1672), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2502), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1458), - [sym_subscript_expression] = STATE(1458), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3030), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1458), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(2130), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(2123), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, [385] = { - [sym_import] = STATE(3541), - [sym_statement_block] = STATE(1682), - [sym_parenthesized_expression] = STATE(1458), - [sym_expression] = STATE(2511), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1680), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2504), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1458), - [sym_subscript_expression] = STATE(1458), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3030), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1458), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(2130), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(2123), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, [386] = { - [sym_import] = STATE(3541), - [sym_statement_block] = STATE(1684), - [sym_parenthesized_expression] = STATE(1458), - [sym_expression] = STATE(2512), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1682), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2505), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1458), - [sym_subscript_expression] = STATE(1458), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3030), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1458), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(2130), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(2123), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, [387] = { - [sym_import] = STATE(3541), - [sym_statement_block] = STATE(1685), - [sym_parenthesized_expression] = STATE(1458), - [sym_expression] = STATE(2513), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1683), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2506), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1458), - [sym_subscript_expression] = STATE(1458), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3030), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1458), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(2130), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(2123), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, [388] = { - [sym_import] = STATE(3541), - [sym_statement_block] = STATE(1685), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1683), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1933), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(1932), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [389] = { - [sym_import] = STATE(3541), + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(2142), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(2285), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5671), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_sequence_expression] = STATE(5730), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [390] = { - [sym_import] = STATE(3541), + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(2143), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(2291), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5591), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_sequence_expression] = STATE(5550), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [391] = { - [sym_import] = STATE(3541), + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(2145), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(2308), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5732), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_sequence_expression] = STATE(5631), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [392] = { - [sym_import] = STATE(3541), + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(2338), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(2328), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5568), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_sequence_expression] = STATE(5551), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [393] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(2320), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2188), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5796), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1328), + [sym_sequence_expression] = STATE(5640), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, [394] = { - [sym_import] = STATE(3514), - [sym_statement_block] = STATE(2296), - [sym_parenthesized_expression] = STATE(1416), - [sym_expression] = STATE(2184), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5590), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1416), - [sym_subscript_expression] = STATE(1416), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3031), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1416), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), + [sym_import] = STATE(3636), + [sym_statement_block] = STATE(2280), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2132), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(2101), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, [395] = { - [sym_import] = STATE(3541), - [sym_statement_block] = STATE(1684), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2577), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_statement_block] = STATE(1682), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2547), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(2130), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(2123), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), [sym_html_comment] = ACTIONS(5), }, [396] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1455), - [sym_expression] = STATE(2579), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2592), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5740), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1455), - [sym_subscript_expression] = STATE(1455), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3023), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1455), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, [397] = { - [sym_import] = STATE(3541), + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1888), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(1887), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [398] = { - [sym_import] = STATE(3541), + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1892), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(1891), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [399] = { - [sym_import] = STATE(3541), + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(1895), - [sym_primary_expression] = STATE(1512), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [400] = { - [sym_import] = STATE(3541), + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(2440), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(2467), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [401] = { - [sym_import] = STATE(3541), + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(1896), - [sym_primary_expression] = STATE(1512), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [402] = { - [sym_import] = STATE(3541), + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1898), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [403] = { - [sym_import] = STATE(3541), + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1899), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(1898), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [404] = { - [sym_import] = STATE(3541), + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1900), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(1899), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [405] = { - [sym_import] = STATE(3541), + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1901), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(1900), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [406] = { - [sym_import] = STATE(3541), + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1902), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(1901), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [407] = { - [sym_import] = STATE(3541), + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(1903), - [sym_primary_expression] = STATE(1512), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [408] = { - [sym_import] = STATE(3541), + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(1904), - [sym_primary_expression] = STATE(1512), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [409] = { - [sym_import] = STATE(3541), + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1908), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(1906), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [410] = { - [sym_import] = STATE(3541), + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1909), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(1908), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [411] = { - [sym_import] = STATE(3541), + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1915), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(1914), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [412] = { - [sym_import] = STATE(3541), + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(2386), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [413] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1944), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1940), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, [414] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(2007), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(2005), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, [415] = { - [sym_import] = STATE(3541), + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1958), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(1946), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [416] = { - [sym_import] = STATE(3541), + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1960), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(1959), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [417] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2604), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2553), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3028), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1456), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, [418] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1826), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1814), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(2132), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(2125), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, [419] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1945), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1943), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, [420] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1946), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1944), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, [421] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1947), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1945), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, [422] = { - [sym_import] = STATE(3541), + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(2040), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(2041), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [423] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(2171), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(2353), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, [424] = { - [sym_import] = STATE(3541), + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1924), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(1960), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [425] = { - [sym_import] = STATE(3541), + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1889), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(1923), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, [426] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1455), - [sym_expression] = STATE(2598), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2604), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5740), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1455), - [sym_subscript_expression] = STATE(1455), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3023), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1455), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, [427] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [sym_namespace_export] = STATE(5206), + [sym_export_clause] = STATE(4427), + [sym_declaration] = STATE(919), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_class_declaration] = STATE(831), + [sym_function_declaration] = STATE(831), + [sym_generator_function_declaration] = STATE(831), + [sym_decorator] = STATE(1344), + [sym_function_signature] = STATE(831), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(824), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [aux_sym_export_statement_repeat1] = STATE(4301), + [aux_sym_object_repeat1] = STATE(4792), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [anon_sym_STAR] = ACTIONS(2127), + [anon_sym_default] = ACTIONS(2129), + [anon_sym_type] = ACTIONS(2131), + [anon_sym_EQ] = ACTIONS(2133), + [anon_sym_as] = ACTIONS(2135), + [anon_sym_namespace] = ACTIONS(2137), + [anon_sym_LBRACE] = ACTIONS(2139), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(694), + [anon_sym_import] = ACTIONS(2141), + [anon_sym_var] = ACTIONS(2143), + [anon_sym_let] = ACTIONS(2145), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_class] = ACTIONS(2152), + [anon_sym_async] = ACTIONS(2154), + [anon_sym_function] = ACTIONS(2156), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_declare] = ACTIONS(2161), + [anon_sym_module] = ACTIONS(2163), + [anon_sym_abstract] = ACTIONS(2165), + [anon_sym_satisfies] = ACTIONS(154), + [anon_sym_interface] = ACTIONS(2167), + [anon_sym_enum] = ACTIONS(2169), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), + [sym_html_comment] = ACTIONS(5), + }, + [428] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1834), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, - [428] = { - [sym_import] = STATE(3514), + [429] = { + [sym_import] = STATE(3636), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1897), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), + [sym_expression] = STATE(1894), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3043), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, - [429] = { - [sym_import] = STATE(3541), + [430] = { + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1924), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(1960), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(2134), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(2171), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, - [430] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(2188), - [sym_primary_expression] = STATE(1512), + [431] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2135), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1328), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [431] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1803), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [432] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1800), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, - [432] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(2354), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [433] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(2224), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, - [433] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1820), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [434] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1819), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, - [434] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1821), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [435] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1820), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, - [435] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1458), - [sym_expression] = STATE(2595), - [sym_primary_expression] = STATE(1512), + [436] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2552), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1458), - [sym_subscript_expression] = STATE(1458), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3030), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1458), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, - [436] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1783), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [437] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, - [437] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2547), - [sym_primary_expression] = STATE(1512), + [438] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2577), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(2136), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(2173), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), [sym_html_comment] = ACTIONS(5), }, - [438] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(2280), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [439] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(2249), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, - [439] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2547), - [sym_primary_expression] = STATE(1512), + [440] = { + [sym_namespace_export] = STATE(5206), + [sym_export_clause] = STATE(4427), + [sym_declaration] = STATE(919), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_class_declaration] = STATE(831), + [sym_function_declaration] = STATE(831), + [sym_generator_function_declaration] = STATE(831), + [sym_decorator] = STATE(1344), + [sym_function_signature] = STATE(831), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(824), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [aux_sym_export_statement_repeat1] = STATE(4301), + [aux_sym_object_repeat1] = STATE(4792), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [anon_sym_STAR] = ACTIONS(2127), + [anon_sym_default] = ACTIONS(2129), + [anon_sym_type] = ACTIONS(2131), + [anon_sym_EQ] = ACTIONS(2133), + [anon_sym_as] = ACTIONS(2135), + [anon_sym_namespace] = ACTIONS(2137), + [anon_sym_LBRACE] = ACTIONS(2139), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(667), + [anon_sym_import] = ACTIONS(2141), + [anon_sym_var] = ACTIONS(2143), + [anon_sym_let] = ACTIONS(2145), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_class] = ACTIONS(2152), + [anon_sym_async] = ACTIONS(2154), + [anon_sym_function] = ACTIONS(2156), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_declare] = ACTIONS(2161), + [anon_sym_module] = ACTIONS(2163), + [anon_sym_abstract] = ACTIONS(2165), + [anon_sym_satisfies] = ACTIONS(154), + [anon_sym_interface] = ACTIONS(2167), + [anon_sym_enum] = ACTIONS(2169), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), + [sym_html_comment] = ACTIONS(5), + }, + [441] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2577), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(2134), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(2171), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), [sym_html_comment] = ACTIONS(5), }, - [440] = { - [sym_import] = STATE(3541), + [442] = { + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(2425), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(2359), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, - [441] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1512), + [443] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3727), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3727), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(3654), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(3654), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1286), - [sym_subscript_expression] = STATE(1286), + [sym_member_expression] = STATE(1278), + [sym_subscript_expression] = STATE(1278), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3727), + [sym__destructuring_pattern] = STATE(3654), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1286), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1278), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(2138), - [anon_sym_export] = ACTIONS(2140), - [anon_sym_type] = ACTIONS(2140), - [anon_sym_namespace] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2140), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1671), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(2144), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(2146), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(2148), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2140), - [anon_sym_readonly] = ACTIONS(2140), - [anon_sym_get] = ACTIONS(2140), - [anon_sym_set] = ACTIONS(2140), - [anon_sym_declare] = ACTIONS(2140), - [anon_sym_public] = ACTIONS(2140), - [anon_sym_private] = ACTIONS(2140), - [anon_sym_protected] = ACTIONS(2140), - [anon_sym_override] = ACTIONS(2140), - [anon_sym_module] = ACTIONS(2140), - [anon_sym_any] = ACTIONS(2140), - [anon_sym_number] = ACTIONS(2140), - [anon_sym_boolean] = ACTIONS(2140), - [anon_sym_string] = ACTIONS(2140), - [anon_sym_symbol] = ACTIONS(2140), - [anon_sym_object] = ACTIONS(2140), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(2175), + [anon_sym_export] = ACTIONS(2177), + [anon_sym_type] = ACTIONS(2177), + [anon_sym_namespace] = ACTIONS(2179), + [anon_sym_LBRACE] = ACTIONS(698), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(2177), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(2181), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(2183), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(2185), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2177), + [anon_sym_readonly] = ACTIONS(2177), + [anon_sym_get] = ACTIONS(2177), + [anon_sym_set] = ACTIONS(2177), + [anon_sym_declare] = ACTIONS(2177), + [anon_sym_public] = ACTIONS(2177), + [anon_sym_private] = ACTIONS(2177), + [anon_sym_protected] = ACTIONS(2177), + [anon_sym_override] = ACTIONS(2177), + [anon_sym_module] = ACTIONS(2177), + [anon_sym_any] = ACTIONS(2177), + [anon_sym_number] = ACTIONS(2177), + [anon_sym_boolean] = ACTIONS(2177), + [anon_sym_string] = ACTIONS(2177), + [anon_sym_symbol] = ACTIONS(2177), + [anon_sym_object] = ACTIONS(2177), [sym_html_comment] = ACTIONS(5), }, - [442] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1778), - [sym_primary_expression] = STATE(1512), + [444] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1776), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1328), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(2150), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(2187), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [443] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2547), - [sym_primary_expression] = STATE(1512), + [445] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2577), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(2150), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(2187), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), [sym_html_comment] = ACTIONS(5), }, - [444] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1870), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [446] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1868), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, - [445] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(2442), - [sym_primary_expression] = STATE(1512), + [447] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2370), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1328), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [446] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(2443), - [sym_primary_expression] = STATE(1512), + [448] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2371), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1328), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [447] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1778), - [sym_primary_expression] = STATE(1512), + [449] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1776), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1328), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(2152), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(2189), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [448] = { - [sym_import] = STATE(3541), + [450] = { + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1471), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5571), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5571), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5758), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5758), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1471), [sym_subscript_expression] = STATE(1471), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5571), + [sym__destructuring_pattern] = STATE(5758), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1471), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(2154), - [anon_sym_export] = ACTIONS(2156), - [anon_sym_type] = ACTIONS(2156), - [anon_sym_namespace] = ACTIONS(2158), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2156), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(2160), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(2162), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(2164), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2156), - [anon_sym_readonly] = ACTIONS(2156), - [anon_sym_get] = ACTIONS(2156), - [anon_sym_set] = ACTIONS(2156), - [anon_sym_declare] = ACTIONS(2156), - [anon_sym_public] = ACTIONS(2156), - [anon_sym_private] = ACTIONS(2156), - [anon_sym_protected] = ACTIONS(2156), - [anon_sym_override] = ACTIONS(2156), - [anon_sym_module] = ACTIONS(2156), - [anon_sym_any] = ACTIONS(2156), - [anon_sym_number] = ACTIONS(2156), - [anon_sym_boolean] = ACTIONS(2156), - [anon_sym_string] = ACTIONS(2156), - [anon_sym_symbol] = ACTIONS(2156), - [anon_sym_object] = ACTIONS(2156), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(2191), + [anon_sym_export] = ACTIONS(2193), + [anon_sym_type] = ACTIONS(2193), + [anon_sym_namespace] = ACTIONS(2195), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(2193), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(2197), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(2199), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(2201), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2193), + [anon_sym_readonly] = ACTIONS(2193), + [anon_sym_get] = ACTIONS(2193), + [anon_sym_set] = ACTIONS(2193), + [anon_sym_declare] = ACTIONS(2193), + [anon_sym_public] = ACTIONS(2193), + [anon_sym_private] = ACTIONS(2193), + [anon_sym_protected] = ACTIONS(2193), + [anon_sym_override] = ACTIONS(2193), + [anon_sym_module] = ACTIONS(2193), + [anon_sym_any] = ACTIONS(2193), + [anon_sym_number] = ACTIONS(2193), + [anon_sym_boolean] = ACTIONS(2193), + [anon_sym_string] = ACTIONS(2193), + [anon_sym_symbol] = ACTIONS(2193), + [anon_sym_object] = ACTIONS(2193), [sym_html_comment] = ACTIONS(5), }, - [449] = { - [sym_import] = STATE(3514), + [451] = { + [sym_import] = STATE(3636), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1830), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), + [sym_expression] = STATE(1831), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3043), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, - [450] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1416), - [sym_expression] = STATE(2182), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5590), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1416), - [sym_subscript_expression] = STATE(1416), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3031), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1416), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), + [452] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2131), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, - [451] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1804), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [453] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1802), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, - [452] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1416), - [sym_expression] = STATE(2185), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5590), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1416), - [sym_subscript_expression] = STATE(1416), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3031), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1416), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), + [454] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2133), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, - [453] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1416), - [sym_expression] = STATE(2186), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5590), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1416), - [sym_subscript_expression] = STATE(1416), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3031), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1416), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), + [455] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2136), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, - [454] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1416), - [sym_expression] = STATE(2190), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5590), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1416), - [sym_subscript_expression] = STATE(1416), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3031), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1416), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), + [456] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2139), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, - [455] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1796), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [457] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1791), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, - [456] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1416), - [sym_expression] = STATE(2192), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5590), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1416), - [sym_subscript_expression] = STATE(1416), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3031), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1416), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), + [458] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2141), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, - [457] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1455), - [sym_expression] = STATE(2583), - [sym_primary_expression] = STATE(1512), + [459] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2588), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5740), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1455), - [sym_subscript_expression] = STATE(1455), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3023), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1455), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), - [sym_html_comment] = ACTIONS(5), - }, - [458] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1416), - [sym_expression] = STATE(2194), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5590), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1416), - [sym_subscript_expression] = STATE(1416), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3031), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1416), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), - [sym_html_comment] = ACTIONS(5), - }, - [459] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1416), - [sym_expression] = STATE(2196), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5590), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1416), - [sym_subscript_expression] = STATE(1416), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3031), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1416), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, [460] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1416), - [sym_expression] = STATE(2197), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5590), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1416), - [sym_subscript_expression] = STATE(1416), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3031), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1416), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2143), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, [461] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1416), - [sym_expression] = STATE(2198), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5590), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1416), - [sym_subscript_expression] = STATE(1416), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3031), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1416), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2145), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, [462] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1416), - [sym_expression] = STATE(2199), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5590), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1416), - [sym_subscript_expression] = STATE(1416), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3031), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1416), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2146), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, [463] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1416), - [sym_expression] = STATE(2200), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5590), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1416), - [sym_subscript_expression] = STATE(1416), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3031), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1416), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2147), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, [464] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1416), - [sym_expression] = STATE(2201), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5590), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1416), - [sym_subscript_expression] = STATE(1416), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3031), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1416), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2148), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, [465] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1416), - [sym_expression] = STATE(2202), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5590), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1416), - [sym_subscript_expression] = STATE(1416), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3031), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1416), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2149), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, [466] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1416), - [sym_expression] = STATE(2203), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5590), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1416), - [sym_subscript_expression] = STATE(1416), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3031), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1416), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2150), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, [467] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1416), - [sym_expression] = STATE(2204), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5590), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1416), - [sym_subscript_expression] = STATE(1416), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3031), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1416), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2151), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, [468] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1416), - [sym_expression] = STATE(2205), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5590), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1416), - [sym_subscript_expression] = STATE(1416), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3031), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1416), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2152), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, [469] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1416), - [sym_expression] = STATE(2207), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5590), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1416), - [sym_subscript_expression] = STATE(1416), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3031), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1416), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2153), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, [470] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2603), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2154), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), + [sym_html_comment] = ACTIONS(5), + }, + [471] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2156), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), + [sym_html_comment] = ACTIONS(5), + }, + [472] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2591), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3028), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1456), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [471] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1805), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [473] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1803), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, - [472] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1806), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [474] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1804), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, - [473] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1807), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [475] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1805), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, - [474] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1416), - [sym_expression] = STATE(2211), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5590), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1416), - [sym_subscript_expression] = STATE(1416), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3031), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1416), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), + [476] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2161), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, - [475] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1416), - [sym_expression] = STATE(2212), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5590), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1416), - [sym_subscript_expression] = STATE(1416), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3031), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1416), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), + [477] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2162), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, - [476] = { - [sym_import] = STATE(3541), + [478] = { + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1924), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(1960), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(2136), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(2173), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, - [477] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1808), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [479] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1806), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, - [478] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(2324), - [sym_primary_expression] = STATE(1512), + [480] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2312), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1328), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [479] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1416), - [sym_expression] = STATE(2216), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5590), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1416), - [sym_subscript_expression] = STATE(1416), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3031), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1416), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), + [481] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2167), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, - [480] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1826), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [482] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1814), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, - [481] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2550), - [sym_primary_expression] = STATE(1512), + [483] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), [sym_html_comment] = ACTIONS(5), }, - [482] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1741), - [sym_primary_expression] = STATE(1512), + [484] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1739), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1328), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [483] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1743), - [sym_primary_expression] = STATE(1512), + [485] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1741), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1328), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [484] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1473), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1512), + [486] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1468), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5730), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5730), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5658), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5658), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1473), - [sym_subscript_expression] = STATE(1473), + [sym_member_expression] = STATE(1468), + [sym_subscript_expression] = STATE(1468), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5730), + [sym__destructuring_pattern] = STATE(5658), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1473), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1468), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(2166), - [anon_sym_export] = ACTIONS(2168), - [anon_sym_type] = ACTIONS(2168), - [anon_sym_namespace] = ACTIONS(2170), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2168), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(2172), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(2174), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2168), - [anon_sym_readonly] = ACTIONS(2168), - [anon_sym_get] = ACTIONS(2168), - [anon_sym_set] = ACTIONS(2168), - [anon_sym_declare] = ACTIONS(2168), - [anon_sym_public] = ACTIONS(2168), - [anon_sym_private] = ACTIONS(2168), - [anon_sym_protected] = ACTIONS(2168), - [anon_sym_override] = ACTIONS(2168), - [anon_sym_module] = ACTIONS(2168), - [anon_sym_any] = ACTIONS(2168), - [anon_sym_number] = ACTIONS(2168), - [anon_sym_boolean] = ACTIONS(2168), - [anon_sym_string] = ACTIONS(2168), - [anon_sym_symbol] = ACTIONS(2168), - [anon_sym_object] = ACTIONS(2168), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(2203), + [anon_sym_export] = ACTIONS(2205), + [anon_sym_type] = ACTIONS(2205), + [anon_sym_namespace] = ACTIONS(2207), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(2209), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(2211), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(2213), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2205), + [anon_sym_readonly] = ACTIONS(2205), + [anon_sym_get] = ACTIONS(2205), + [anon_sym_set] = ACTIONS(2205), + [anon_sym_declare] = ACTIONS(2205), + [anon_sym_public] = ACTIONS(2205), + [anon_sym_private] = ACTIONS(2205), + [anon_sym_protected] = ACTIONS(2205), + [anon_sym_override] = ACTIONS(2205), + [anon_sym_module] = ACTIONS(2205), + [anon_sym_any] = ACTIONS(2205), + [anon_sym_number] = ACTIONS(2205), + [anon_sym_boolean] = ACTIONS(2205), + [anon_sym_string] = ACTIONS(2205), + [anon_sym_symbol] = ACTIONS(2205), + [anon_sym_object] = ACTIONS(2205), [sym_html_comment] = ACTIONS(5), }, - [485] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1744), - [sym_primary_expression] = STATE(1512), + [487] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1743), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1328), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [486] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1745), - [sym_primary_expression] = STATE(1512), + [488] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1744), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1328), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [487] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1747), - [sym_primary_expression] = STATE(1512), + [489] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1746), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1328), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [488] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1748), - [sym_primary_expression] = STATE(1512), + [490] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1747), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1328), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [489] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1795), - [sym_primary_expression] = STATE(1512), + [491] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1794), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1328), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [490] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1749), - [sym_primary_expression] = STATE(1512), + [492] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1748), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1328), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [491] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1750), - [sym_primary_expression] = STATE(1512), + [493] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1749), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1328), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [492] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1751), - [sym_primary_expression] = STATE(1512), + [494] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1779), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1328), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [493] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1781), - [sym_primary_expression] = STATE(1512), + [495] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1751), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1328), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [494] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1753), - [sym_primary_expression] = STATE(1512), + [496] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1752), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1328), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [495] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1754), - [sym_primary_expression] = STATE(1512), + [497] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1753), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1328), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [496] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1755), - [sym_primary_expression] = STATE(1512), + [498] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1754), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1328), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [497] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1756), - [sym_primary_expression] = STATE(1512), + [499] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1755), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1328), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [498] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1757), - [sym_primary_expression] = STATE(1512), + [500] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1756), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1328), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [499] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1758), - [sym_primary_expression] = STATE(1512), + [501] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1757), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1328), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [500] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1760), - [sym_primary_expression] = STATE(1512), + [502] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1759), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1328), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [501] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(2475), - [sym_primary_expression] = STATE(1512), + [503] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2427), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1328), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [502] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1809), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [504] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1807), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, - [503] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1764), - [sym_primary_expression] = STATE(1512), + [505] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1763), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1328), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [504] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1765), - [sym_primary_expression] = STATE(1512), + [506] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1764), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1328), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [505] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1416), - [sym_expression] = STATE(2259), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5590), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1416), - [sym_subscript_expression] = STATE(1416), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3031), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1416), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), + [507] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2239), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(2132), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(2125), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, - [506] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1767), - [sym_primary_expression] = STATE(1512), + [508] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1765), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1328), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [507] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1778), - [sym_primary_expression] = STATE(1512), + [509] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1776), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1328), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [508] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1779), - [sym_primary_expression] = STATE(1512), + [510] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1722), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1328), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [509] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1778), - [sym_primary_expression] = STATE(1512), + [511] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1776), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1328), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(2134), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(2171), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [510] = { - [sym_import] = STATE(3541), + [512] = { + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1466), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5723), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5723), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5708), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5708), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1466), [sym_subscript_expression] = STATE(1466), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5723), + [sym__destructuring_pattern] = STATE(5708), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1466), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(2178), - [anon_sym_export] = ACTIONS(2180), - [anon_sym_type] = ACTIONS(2180), - [anon_sym_namespace] = ACTIONS(2182), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2180), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(2184), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(2186), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(2188), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2180), - [anon_sym_readonly] = ACTIONS(2180), - [anon_sym_get] = ACTIONS(2180), - [anon_sym_set] = ACTIONS(2180), - [anon_sym_declare] = ACTIONS(2180), - [anon_sym_public] = ACTIONS(2180), - [anon_sym_private] = ACTIONS(2180), - [anon_sym_protected] = ACTIONS(2180), - [anon_sym_override] = ACTIONS(2180), - [anon_sym_module] = ACTIONS(2180), - [anon_sym_any] = ACTIONS(2180), - [anon_sym_number] = ACTIONS(2180), - [anon_sym_boolean] = ACTIONS(2180), - [anon_sym_string] = ACTIONS(2180), - [anon_sym_symbol] = ACTIONS(2180), - [anon_sym_object] = ACTIONS(2180), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(2215), + [anon_sym_export] = ACTIONS(2217), + [anon_sym_type] = ACTIONS(2217), + [anon_sym_namespace] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(2217), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(2221), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(2223), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(2225), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2217), + [anon_sym_readonly] = ACTIONS(2217), + [anon_sym_get] = ACTIONS(2217), + [anon_sym_set] = ACTIONS(2217), + [anon_sym_declare] = ACTIONS(2217), + [anon_sym_public] = ACTIONS(2217), + [anon_sym_private] = ACTIONS(2217), + [anon_sym_protected] = ACTIONS(2217), + [anon_sym_override] = ACTIONS(2217), + [anon_sym_module] = ACTIONS(2217), + [anon_sym_any] = ACTIONS(2217), + [anon_sym_number] = ACTIONS(2217), + [anon_sym_boolean] = ACTIONS(2217), + [anon_sym_string] = ACTIONS(2217), + [anon_sym_symbol] = ACTIONS(2217), + [anon_sym_object] = ACTIONS(2217), [sym_html_comment] = ACTIONS(5), }, - [511] = { - [sym_import] = STATE(3514), + [513] = { + [sym_import] = STATE(3636), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1837), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), + [sym_expression] = STATE(1835), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3043), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, - [512] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1810), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [514] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1808), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, - [513] = { - [sym_import] = STATE(3514), + [515] = { + [sym_import] = STATE(3636), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1839), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), + [sym_expression] = STATE(1837), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3043), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, - [514] = { - [sym_import] = STATE(3514), + [516] = { + [sym_import] = STATE(3636), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1840), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), + [sym_expression] = STATE(1839), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3043), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, - [515] = { - [sym_import] = STATE(3514), + [517] = { + [sym_import] = STATE(3636), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1842), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), + [sym_expression] = STATE(1840), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3043), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, - [516] = { - [sym_import] = STATE(3514), + [518] = { + [sym_import] = STATE(3636), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1844), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), + [sym_expression] = STATE(1842), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3043), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, - [517] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1455), - [sym_expression] = STATE(2541), - [sym_primary_expression] = STATE(1512), + [519] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2572), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5740), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1455), - [sym_subscript_expression] = STATE(1455), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3023), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1455), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [518] = { - [sym_import] = STATE(3514), + [520] = { + [sym_import] = STATE(3636), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1845), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), + [sym_expression] = STATE(1843), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3043), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, - [519] = { - [sym_import] = STATE(3514), + [521] = { + [sym_import] = STATE(3636), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1846), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), + [sym_expression] = STATE(1844), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3043), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, - [520] = { - [sym_import] = STATE(3514), + [522] = { + [sym_import] = STATE(3636), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1847), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), + [sym_expression] = STATE(1845), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3043), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, - [521] = { - [sym_import] = STATE(3514), + [523] = { + [sym_import] = STATE(3636), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1848), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), + [sym_expression] = STATE(1846), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3043), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, - [522] = { - [sym_import] = STATE(3514), + [524] = { + [sym_import] = STATE(3636), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1849), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), + [sym_expression] = STATE(1847), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3043), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, - [523] = { - [sym_import] = STATE(3514), + [525] = { + [sym_import] = STATE(3636), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1850), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), + [sym_expression] = STATE(1848), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3043), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, - [524] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1792), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [526] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1789), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, - [525] = { - [sym_import] = STATE(3514), + [527] = { + [sym_import] = STATE(3636), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1852), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), + [sym_expression] = STATE(1850), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3043), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, - [526] = { - [sym_import] = STATE(3514), + [528] = { + [sym_import] = STATE(3636), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1853), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), + [sym_expression] = STATE(1851), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3043), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, - [527] = { - [sym_import] = STATE(3514), + [529] = { + [sym_import] = STATE(3636), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1854), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), + [sym_expression] = STATE(1852), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3043), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, - [528] = { - [sym_import] = STATE(3514), + [530] = { + [sym_import] = STATE(3636), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1855), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), + [sym_expression] = STATE(1853), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3043), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, - [529] = { - [sym_import] = STATE(3514), + [531] = { + [sym_import] = STATE(3636), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1857), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), + [sym_expression] = STATE(1855), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3043), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, - [530] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1811), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [532] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1809), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, - [531] = { - [sym_import] = STATE(3514), + [533] = { + [sym_import] = STATE(3636), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), + [sym_expression] = STATE(1859), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3043), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, - [532] = { - [sym_import] = STATE(3514), + [534] = { + [sym_import] = STATE(3636), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1862), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), + [sym_expression] = STATE(1860), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3043), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, - [533] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1778), - [sym_primary_expression] = STATE(1512), + [535] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1776), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1328), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(2136), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(2173), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [534] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1812), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [536] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1811), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, - [535] = { - [sym_import] = STATE(3514), + [537] = { + [sym_import] = STATE(3636), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1863), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), + [sym_expression] = STATE(1861), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3043), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), - [sym_html_comment] = ACTIONS(5), - }, - [536] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1458), - [sym_expression] = STATE(2522), - [sym_primary_expression] = STATE(1512), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1458), - [sym_subscript_expression] = STATE(1458), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3030), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1458), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), - [sym_html_comment] = ACTIONS(5), - }, - [537] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2606), - [sym_primary_expression] = STATE(1512), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, [538] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2535), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2517), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, [539] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2537), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2527), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), [sym_html_comment] = ACTIONS(5), }, [540] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2539), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2608), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), [sym_html_comment] = ACTIONS(5), }, [541] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2551), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2529), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), [sym_html_comment] = ACTIONS(5), }, [542] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2552), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2530), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), [sym_html_comment] = ACTIONS(5), }, [543] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2555), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2532), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), [sym_html_comment] = ACTIONS(5), }, [544] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2559), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2533), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), [sym_html_comment] = ACTIONS(5), }, [545] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2560), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2534), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), [sym_html_comment] = ACTIONS(5), }, [546] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2561), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2535), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), [sym_html_comment] = ACTIONS(5), }, [547] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2562), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2536), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), [sym_html_comment] = ACTIONS(5), }, [548] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2563), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2537), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), [sym_html_comment] = ACTIONS(5), }, [549] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2564), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2538), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), [sym_html_comment] = ACTIONS(5), }, [550] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2567), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), [sym_html_comment] = ACTIONS(5), }, [551] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2529), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2540), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), [sym_html_comment] = ACTIONS(5), }, [552] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2569), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2541), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), [sym_html_comment] = ACTIONS(5), }, [553] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2572), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2542), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), [sym_html_comment] = ACTIONS(5), }, [554] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2580), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2543), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), [sym_html_comment] = ACTIONS(5), }, [555] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2582), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2545), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), [sym_html_comment] = ACTIONS(5), }, [556] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1875), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1364), - [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3043), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(2132), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), - [sym_html_comment] = ACTIONS(5), - }, - [557] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2584), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2549), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), [sym_html_comment] = ACTIONS(5), }, - [558] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2547), - [sym_primary_expression] = STATE(1512), + [557] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2550), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), + [sym_html_comment] = ACTIONS(5), + }, + [558] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1364), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1364), + [sym_subscript_expression] = STATE(1364), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1364), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(2125), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, [559] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2548), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2551), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5604), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5604), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5604), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1228), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), [sym_html_comment] = ACTIONS(5), }, [560] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1416), - [sym_expression] = STATE(2459), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5590), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1416), - [sym_subscript_expression] = STATE(1416), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3031), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1416), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), - [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), - [sym_html_comment] = ACTIONS(5), - }, - [561] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1389), - [sym_expression] = STATE(2108), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2577), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1389), - [sym_subscript_expression] = STATE(1389), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1389), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(2134), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), [sym_html_comment] = ACTIONS(5), }, - [562] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1465), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1512), + [561] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1213), + [sym_expression] = STATE(2578), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5868), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5868), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5522), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5522), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1465), - [sym_subscript_expression] = STATE(1465), + [sym_member_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5868), + [sym__destructuring_pattern] = STATE(5522), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1465), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1213), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(2190), - [anon_sym_export] = ACTIONS(2192), - [anon_sym_type] = ACTIONS(2192), - [anon_sym_namespace] = ACTIONS(2194), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2192), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(2196), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(2198), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(2200), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2192), - [anon_sym_readonly] = ACTIONS(2192), - [anon_sym_get] = ACTIONS(2192), - [anon_sym_set] = ACTIONS(2192), - [anon_sym_declare] = ACTIONS(2192), - [anon_sym_public] = ACTIONS(2192), - [anon_sym_private] = ACTIONS(2192), - [anon_sym_protected] = ACTIONS(2192), - [anon_sym_override] = ACTIONS(2192), - [anon_sym_module] = ACTIONS(2192), - [anon_sym_any] = ACTIONS(2192), - [anon_sym_number] = ACTIONS(2192), - [anon_sym_boolean] = ACTIONS(2192), - [anon_sym_string] = ACTIONS(2192), - [anon_sym_symbol] = ACTIONS(2192), - [anon_sym_object] = ACTIONS(2192), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_type] = ACTIONS(804), + [anon_sym_namespace] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(818), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), + [sym_html_comment] = ACTIONS(5), + }, + [562] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2411), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, [563] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1455), - [sym_expression] = STATE(2558), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2106), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5740), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1455), - [sym_subscript_expression] = STATE(1455), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3023), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1455), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(2171), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [564] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1389), - [sym_expression] = STATE(2082), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1465), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5867), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5867), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1389), - [sym_subscript_expression] = STATE(1389), + [sym_member_expression] = STATE(1465), + [sym_subscript_expression] = STATE(1465), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5867), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1389), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1465), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(2227), + [anon_sym_export] = ACTIONS(2229), + [anon_sym_type] = ACTIONS(2229), + [anon_sym_namespace] = ACTIONS(2231), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(2229), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(2233), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(2235), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(2237), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2229), + [anon_sym_readonly] = ACTIONS(2229), + [anon_sym_get] = ACTIONS(2229), + [anon_sym_set] = ACTIONS(2229), + [anon_sym_declare] = ACTIONS(2229), + [anon_sym_public] = ACTIONS(2229), + [anon_sym_private] = ACTIONS(2229), + [anon_sym_protected] = ACTIONS(2229), + [anon_sym_override] = ACTIONS(2229), + [anon_sym_module] = ACTIONS(2229), + [anon_sym_any] = ACTIONS(2229), + [anon_sym_number] = ACTIONS(2229), + [anon_sym_boolean] = ACTIONS(2229), + [anon_sym_string] = ACTIONS(2229), + [anon_sym_symbol] = ACTIONS(2229), + [anon_sym_object] = ACTIONS(2229), [sym_html_comment] = ACTIONS(5), }, [565] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1389), - [sym_expression] = STATE(2084), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2587), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), + [sym_object] = STATE(1687), [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), + [sym_array] = STATE(1687), [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1389), - [sym_subscript_expression] = STATE(1389), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1389), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, [566] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1389), - [sym_expression] = STATE(2085), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2080), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1389), - [sym_subscript_expression] = STATE(1389), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1389), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [567] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1389), - [sym_expression] = STATE(2086), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2082), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1389), - [sym_subscript_expression] = STATE(1389), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1389), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [568] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1389), - [sym_expression] = STATE(2088), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2083), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1389), - [sym_subscript_expression] = STATE(1389), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1389), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [569] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1389), - [sym_expression] = STATE(2089), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2084), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1389), - [sym_subscript_expression] = STATE(1389), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1389), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [570] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1389), - [sym_expression] = STATE(2090), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2086), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1389), - [sym_subscript_expression] = STATE(1389), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1389), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [571] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1389), - [sym_expression] = STATE(2091), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2087), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1389), - [sym_subscript_expression] = STATE(1389), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1389), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [572] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1389), - [sym_expression] = STATE(2092), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2088), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1389), - [sym_subscript_expression] = STATE(1389), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1389), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [573] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1389), - [sym_expression] = STATE(2093), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2089), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1389), - [sym_subscript_expression] = STATE(1389), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1389), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [574] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1389), - [sym_expression] = STATE(2094), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2090), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1389), - [sym_subscript_expression] = STATE(1389), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1389), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [575] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1389), - [sym_expression] = STATE(2095), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2091), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1389), - [sym_subscript_expression] = STATE(1389), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1389), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [576] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1389), - [sym_expression] = STATE(2096), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2092), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1389), - [sym_subscript_expression] = STATE(1389), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1389), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [577] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1389), - [sym_expression] = STATE(2097), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2093), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1389), - [sym_subscript_expression] = STATE(1389), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1389), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [578] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1389), - [sym_expression] = STATE(2098), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2094), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1389), - [sym_subscript_expression] = STATE(1389), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1389), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [579] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1389), - [sym_expression] = STATE(2099), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2095), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1389), - [sym_subscript_expression] = STATE(1389), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1389), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [580] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1389), - [sym_expression] = STATE(2101), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2096), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1389), - [sym_subscript_expression] = STATE(1389), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1389), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [581] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1389), - [sym_expression] = STATE(2105), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2097), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1389), - [sym_subscript_expression] = STATE(1389), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1389), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [582] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1389), - [sym_expression] = STATE(2106), - [sym_primary_expression] = STATE(1512), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2099), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1389), - [sym_subscript_expression] = STATE(1389), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1389), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, [583] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1813), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2103), + [sym_primary_expression] = STATE(1515), + [sym_yield_expression] = STATE(1652), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), + [sym_await_expression] = STATE(1652), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), + [sym_assignment_expression] = STATE(1652), + [sym__augmented_assignment_lhs] = STATE(3009), + [sym_augmented_assignment_expression] = STATE(1652), + [sym__destructuring_pattern] = STATE(5803), + [sym_ternary_expression] = STATE(1652), + [sym_binary_expression] = STATE(1652), + [sym_unary_expression] = STATE(1652), + [sym_update_expression] = STATE(1652), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), + [sym_type_assertion] = STATE(1652), + [sym_as_expression] = STATE(1652), + [sym_satisfies_expression] = STATE(1652), + [sym_instantiation_expression] = STATE(1652), + [sym_internal_module] = STATE(1652), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), + [sym_html_comment] = ACTIONS(5), + }, + [584] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2104), + [sym_primary_expression] = STATE(1515), + [sym_yield_expression] = STATE(1652), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), + [sym_await_expression] = STATE(1652), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), + [sym_assignment_expression] = STATE(1652), + [sym__augmented_assignment_lhs] = STATE(3009), + [sym_augmented_assignment_expression] = STATE(1652), + [sym__destructuring_pattern] = STATE(5803), + [sym_ternary_expression] = STATE(1652), + [sym_binary_expression] = STATE(1652), + [sym_unary_expression] = STATE(1652), + [sym_update_expression] = STATE(1652), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), + [sym_type_assertion] = STATE(1652), + [sym_as_expression] = STATE(1652), + [sym_satisfies_expression] = STATE(1652), + [sym_instantiation_expression] = STATE(1652), + [sym_internal_module] = STATE(1652), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), + [sym_html_comment] = ACTIONS(5), + }, + [585] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, - [584] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1878), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [586] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1876), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, - [585] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1389), - [sym_expression] = STATE(2107), - [sym_primary_expression] = STATE(1512), + [587] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2105), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1389), - [sym_subscript_expression] = STATE(1389), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1389), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, - [586] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1389), - [sym_expression] = STATE(2108), - [sym_primary_expression] = STATE(1512), + [588] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2106), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1389), - [sym_subscript_expression] = STATE(1389), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1389), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, - [587] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1389), - [sym_expression] = STATE(2109), - [sym_primary_expression] = STATE(1512), + [589] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2107), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1389), - [sym_subscript_expression] = STATE(1389), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1389), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, - [588] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1455), - [sym_expression] = STATE(2452), - [sym_primary_expression] = STATE(1512), + [590] = { + [sym_namespace_export] = STATE(5206), + [sym_export_clause] = STATE(4427), + [sym_declaration] = STATE(919), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_class_declaration] = STATE(831), + [sym_function_declaration] = STATE(831), + [sym_generator_function_declaration] = STATE(831), + [sym_decorator] = STATE(1344), + [sym_function_signature] = STATE(831), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(824), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [aux_sym_export_statement_repeat1] = STATE(4301), + [aux_sym_object_repeat1] = STATE(4810), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [anon_sym_STAR] = ACTIONS(2127), + [anon_sym_default] = ACTIONS(2129), + [anon_sym_type] = ACTIONS(2131), + [anon_sym_EQ] = ACTIONS(2133), + [anon_sym_as] = ACTIONS(2135), + [anon_sym_namespace] = ACTIONS(2137), + [anon_sym_LBRACE] = ACTIONS(2139), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(692), + [anon_sym_import] = ACTIONS(2141), + [anon_sym_var] = ACTIONS(2143), + [anon_sym_let] = ACTIONS(2145), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_class] = ACTIONS(2152), + [anon_sym_async] = ACTIONS(2154), + [anon_sym_function] = ACTIONS(2156), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_declare] = ACTIONS(2161), + [anon_sym_module] = ACTIONS(2163), + [anon_sym_abstract] = ACTIONS(2165), + [anon_sym_satisfies] = ACTIONS(154), + [anon_sym_interface] = ACTIONS(2167), + [anon_sym_enum] = ACTIONS(2169), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), + [sym_html_comment] = ACTIONS(5), + }, + [591] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2404), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5740), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1455), - [sym_subscript_expression] = STATE(1455), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3023), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1455), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(2134), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(2171), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [589] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1467), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1512), + [592] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1464), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5624), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5624), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5615), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5615), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1467), - [sym_subscript_expression] = STATE(1467), + [sym_member_expression] = STATE(1464), + [sym_subscript_expression] = STATE(1464), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5624), + [sym__destructuring_pattern] = STATE(5615), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1467), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1464), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(2202), - [anon_sym_export] = ACTIONS(2204), - [anon_sym_type] = ACTIONS(2204), - [anon_sym_namespace] = ACTIONS(2206), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2204), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(2208), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(2210), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(2212), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2204), - [anon_sym_readonly] = ACTIONS(2204), - [anon_sym_get] = ACTIONS(2204), - [anon_sym_set] = ACTIONS(2204), - [anon_sym_declare] = ACTIONS(2204), - [anon_sym_public] = ACTIONS(2204), - [anon_sym_private] = ACTIONS(2204), - [anon_sym_protected] = ACTIONS(2204), - [anon_sym_override] = ACTIONS(2204), - [anon_sym_module] = ACTIONS(2204), - [anon_sym_any] = ACTIONS(2204), - [anon_sym_number] = ACTIONS(2204), - [anon_sym_boolean] = ACTIONS(2204), - [anon_sym_string] = ACTIONS(2204), - [anon_sym_symbol] = ACTIONS(2204), - [anon_sym_object] = ACTIONS(2204), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(2239), + [anon_sym_export] = ACTIONS(2241), + [anon_sym_type] = ACTIONS(2241), + [anon_sym_namespace] = ACTIONS(2243), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(2241), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(2245), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(2247), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(2249), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2241), + [anon_sym_readonly] = ACTIONS(2241), + [anon_sym_get] = ACTIONS(2241), + [anon_sym_set] = ACTIONS(2241), + [anon_sym_declare] = ACTIONS(2241), + [anon_sym_public] = ACTIONS(2241), + [anon_sym_private] = ACTIONS(2241), + [anon_sym_protected] = ACTIONS(2241), + [anon_sym_override] = ACTIONS(2241), + [anon_sym_module] = ACTIONS(2241), + [anon_sym_any] = ACTIONS(2241), + [anon_sym_number] = ACTIONS(2241), + [anon_sym_boolean] = ACTIONS(2241), + [anon_sym_string] = ACTIONS(2241), + [anon_sym_symbol] = ACTIONS(2241), + [anon_sym_object] = ACTIONS(2241), [sym_html_comment] = ACTIONS(5), }, - [590] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1455), - [sym_expression] = STATE(2570), - [sym_primary_expression] = STATE(1512), + [593] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2589), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5740), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1455), - [sym_subscript_expression] = STATE(1455), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3023), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1455), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [591] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1455), - [sym_expression] = STATE(2367), - [sym_primary_expression] = STATE(1512), + [594] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2458), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5740), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1455), - [sym_subscript_expression] = STATE(1455), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3023), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1455), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [592] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1455), - [sym_expression] = STATE(2369), - [sym_primary_expression] = STATE(1512), + [595] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2468), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5740), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1455), - [sym_subscript_expression] = STATE(1455), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3023), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1455), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [593] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1455), - [sym_expression] = STATE(2370), - [sym_primary_expression] = STATE(1512), + [596] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2469), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5740), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1455), - [sym_subscript_expression] = STATE(1455), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3023), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1455), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [594] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1455), - [sym_expression] = STATE(2371), - [sym_primary_expression] = STATE(1512), + [597] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2471), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5740), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1455), - [sym_subscript_expression] = STATE(1455), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3023), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1455), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [595] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1455), - [sym_expression] = STATE(2373), - [sym_primary_expression] = STATE(1512), + [598] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5740), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1455), - [sym_subscript_expression] = STATE(1455), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3023), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1455), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [596] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1455), - [sym_expression] = STATE(2374), - [sym_primary_expression] = STATE(1512), + [599] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2481), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5740), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1455), - [sym_subscript_expression] = STATE(1455), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3023), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1455), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [597] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1455), - [sym_expression] = STATE(2375), - [sym_primary_expression] = STATE(1512), + [600] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2482), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5740), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1455), - [sym_subscript_expression] = STATE(1455), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3023), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1455), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [598] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1455), - [sym_expression] = STATE(2376), - [sym_primary_expression] = STATE(1512), + [601] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5740), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1455), - [sym_subscript_expression] = STATE(1455), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3023), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1455), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [599] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1455), - [sym_expression] = STATE(2377), - [sym_primary_expression] = STATE(1512), + [602] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2512), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5740), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1455), - [sym_subscript_expression] = STATE(1455), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3023), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1455), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [600] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1455), - [sym_expression] = STATE(2378), - [sym_primary_expression] = STATE(1512), + [603] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2518), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5740), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1455), - [sym_subscript_expression] = STATE(1455), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3023), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1455), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [601] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1455), - [sym_expression] = STATE(2379), - [sym_primary_expression] = STATE(1512), + [604] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2519), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5740), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1455), - [sym_subscript_expression] = STATE(1455), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3023), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1455), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [602] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1455), - [sym_expression] = STATE(2380), - [sym_primary_expression] = STATE(1512), + [605] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2446), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5740), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1455), - [sym_subscript_expression] = STATE(1455), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3023), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1455), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [603] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1455), - [sym_expression] = STATE(2381), - [sym_primary_expression] = STATE(1512), + [606] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2447), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5740), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1455), - [sym_subscript_expression] = STATE(1455), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3023), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1455), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [604] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1455), - [sym_expression] = STATE(2382), - [sym_primary_expression] = STATE(1512), + [607] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2360), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5740), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1455), - [sym_subscript_expression] = STATE(1455), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3023), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1455), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [605] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1455), - [sym_expression] = STATE(2383), - [sym_primary_expression] = STATE(1512), + [608] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2361), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5740), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1455), - [sym_subscript_expression] = STATE(1455), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3023), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1455), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [606] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1455), - [sym_expression] = STATE(2384), - [sym_primary_expression] = STATE(1512), + [609] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2362), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5740), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1455), - [sym_subscript_expression] = STATE(1455), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3023), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1455), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [607] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1455), - [sym_expression] = STATE(2386), - [sym_primary_expression] = STATE(1512), + [610] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2364), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5740), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1455), - [sym_subscript_expression] = STATE(1455), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3023), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1455), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [608] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1828), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [611] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1812), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, - [609] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1455), - [sym_expression] = STATE(2390), - [sym_primary_expression] = STATE(1512), + [612] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2368), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5740), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1455), - [sym_subscript_expression] = STATE(1455), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3023), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1455), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [610] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1455), - [sym_expression] = STATE(2391), - [sym_primary_expression] = STATE(1512), + [613] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2369), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5740), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1455), - [sym_subscript_expression] = STATE(1455), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3023), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1455), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [611] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1455), - [sym_expression] = STATE(2392), - [sym_primary_expression] = STATE(1512), + [614] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2373), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5740), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1455), - [sym_subscript_expression] = STATE(1455), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3023), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1455), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [612] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1455), - [sym_expression] = STATE(2452), - [sym_primary_expression] = STATE(1512), + [615] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2404), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5740), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1455), - [sym_subscript_expression] = STATE(1455), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3023), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1455), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [613] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1455), - [sym_expression] = STATE(2453), - [sym_primary_expression] = STATE(1512), + [616] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2405), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5740), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1455), - [sym_subscript_expression] = STATE(1455), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3023), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1455), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [614] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2462), - [sym_primary_expression] = STATE(1512), + [617] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2414), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3028), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1456), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(2134), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(2171), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [615] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1472), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1512), + [618] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1469), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5805), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5805), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5783), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5783), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1472), - [sym_subscript_expression] = STATE(1472), + [sym_member_expression] = STATE(1469), + [sym_subscript_expression] = STATE(1469), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5805), + [sym__destructuring_pattern] = STATE(5783), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1472), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1469), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(2214), - [anon_sym_export] = ACTIONS(2216), - [anon_sym_type] = ACTIONS(2216), - [anon_sym_namespace] = ACTIONS(2218), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2216), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(2220), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(2222), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(2224), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2216), - [anon_sym_readonly] = ACTIONS(2216), - [anon_sym_get] = ACTIONS(2216), - [anon_sym_set] = ACTIONS(2216), - [anon_sym_declare] = ACTIONS(2216), - [anon_sym_public] = ACTIONS(2216), - [anon_sym_private] = ACTIONS(2216), - [anon_sym_protected] = ACTIONS(2216), - [anon_sym_override] = ACTIONS(2216), - [anon_sym_module] = ACTIONS(2216), - [anon_sym_any] = ACTIONS(2216), - [anon_sym_number] = ACTIONS(2216), - [anon_sym_boolean] = ACTIONS(2216), - [anon_sym_string] = ACTIONS(2216), - [anon_sym_symbol] = ACTIONS(2216), - [anon_sym_object] = ACTIONS(2216), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(2251), + [anon_sym_export] = ACTIONS(2253), + [anon_sym_type] = ACTIONS(2253), + [anon_sym_namespace] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(2253), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(2257), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(2259), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(2261), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2253), + [anon_sym_readonly] = ACTIONS(2253), + [anon_sym_get] = ACTIONS(2253), + [anon_sym_set] = ACTIONS(2253), + [anon_sym_declare] = ACTIONS(2253), + [anon_sym_public] = ACTIONS(2253), + [anon_sym_private] = ACTIONS(2253), + [anon_sym_protected] = ACTIONS(2253), + [anon_sym_override] = ACTIONS(2253), + [anon_sym_module] = ACTIONS(2253), + [anon_sym_any] = ACTIONS(2253), + [anon_sym_number] = ACTIONS(2253), + [anon_sym_boolean] = ACTIONS(2253), + [anon_sym_string] = ACTIONS(2253), + [anon_sym_symbol] = ACTIONS(2253), + [anon_sym_object] = ACTIONS(2253), [sym_html_comment] = ACTIONS(5), }, - [616] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1455), - [sym_expression] = STATE(2576), - [sym_primary_expression] = STATE(1512), + [619] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2590), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5740), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1455), - [sym_subscript_expression] = STATE(1455), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3023), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1455), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [617] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2394), - [sym_primary_expression] = STATE(1512), + [620] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2387), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3028), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1456), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [618] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(1512), + [621] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2389), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3028), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1456), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [619] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2397), - [sym_primary_expression] = STATE(1512), + [622] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2390), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3028), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1456), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [620] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2398), - [sym_primary_expression] = STATE(1512), + [623] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2391), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3028), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1456), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [621] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2400), - [sym_primary_expression] = STATE(1512), + [624] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2393), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3028), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1456), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [622] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2401), - [sym_primary_expression] = STATE(1512), + [625] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2394), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3028), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1456), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [623] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2402), - [sym_primary_expression] = STATE(1512), + [626] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2395), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3028), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1456), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [624] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2403), - [sym_primary_expression] = STATE(1512), + [627] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2396), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3028), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1456), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [625] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2404), - [sym_primary_expression] = STATE(1512), + [628] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2399), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3028), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1456), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [626] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2405), - [sym_primary_expression] = STATE(1512), + [629] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2400), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3028), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1456), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [627] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2406), - [sym_primary_expression] = STATE(1512), + [630] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2402), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3028), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1456), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [628] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2407), - [sym_primary_expression] = STATE(1512), + [631] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2403), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3028), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1456), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [629] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1456), + [632] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), [sym_expression] = STATE(2408), - [sym_primary_expression] = STATE(1512), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3028), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1456), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [630] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1456), + [633] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), [sym_expression] = STATE(2409), - [sym_primary_expression] = STATE(1512), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3028), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1456), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [631] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1456), + [634] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), [sym_expression] = STATE(2410), - [sym_primary_expression] = STATE(1512), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3028), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1456), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [632] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2411), - [sym_primary_expression] = STATE(1512), + [635] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2412), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3028), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1456), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [633] = { - [sym_import] = STATE(3541), + [636] = { + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1920), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(1922), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, - [634] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2413), - [sym_primary_expression] = STATE(1512), + [637] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2418), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3028), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1456), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [635] = { - [sym_import] = STATE(3541), + [638] = { + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1975), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(1976), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, - [636] = { - [sym_import] = STATE(3541), + [639] = { + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1398), - [sym_expression] = STATE(1887), - [sym_primary_expression] = STATE(1512), + [sym_expression] = STATE(1888), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, - [637] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2417), - [sym_primary_expression] = STATE(1512), + [640] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2423), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3028), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1456), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [638] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2418), - [sym_primary_expression] = STATE(1512), + [641] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2424), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3028), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1456), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [639] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2419), - [sym_primary_expression] = STATE(1512), + [642] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2426), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3028), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1456), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [640] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1874), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [643] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1872), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, - [641] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2462), - [sym_primary_expression] = STATE(1512), + [644] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2414), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3028), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1456), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [642] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2463), - [sym_primary_expression] = STATE(1512), + [645] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3028), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1456), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [643] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1464), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1512), + [646] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1470), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5501), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5501), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5489), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5489), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1464), - [sym_subscript_expression] = STATE(1464), + [sym_member_expression] = STATE(1470), + [sym_subscript_expression] = STATE(1470), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5501), + [sym__destructuring_pattern] = STATE(5489), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1464), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1470), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(2226), - [anon_sym_export] = ACTIONS(2228), - [anon_sym_type] = ACTIONS(2228), - [anon_sym_namespace] = ACTIONS(2230), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2228), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(2232), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(2234), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(2236), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2228), - [anon_sym_readonly] = ACTIONS(2228), - [anon_sym_get] = ACTIONS(2228), - [anon_sym_set] = ACTIONS(2228), - [anon_sym_declare] = ACTIONS(2228), - [anon_sym_public] = ACTIONS(2228), - [anon_sym_private] = ACTIONS(2228), - [anon_sym_protected] = ACTIONS(2228), - [anon_sym_override] = ACTIONS(2228), - [anon_sym_module] = ACTIONS(2228), - [anon_sym_any] = ACTIONS(2228), - [anon_sym_number] = ACTIONS(2228), - [anon_sym_boolean] = ACTIONS(2228), - [anon_sym_string] = ACTIONS(2228), - [anon_sym_symbol] = ACTIONS(2228), - [anon_sym_object] = ACTIONS(2228), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(2263), + [anon_sym_export] = ACTIONS(2265), + [anon_sym_type] = ACTIONS(2265), + [anon_sym_namespace] = ACTIONS(2267), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(2265), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(2269), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(2271), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(2273), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2265), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_get] = ACTIONS(2265), + [anon_sym_set] = ACTIONS(2265), + [anon_sym_declare] = ACTIONS(2265), + [anon_sym_public] = ACTIONS(2265), + [anon_sym_private] = ACTIONS(2265), + [anon_sym_protected] = ACTIONS(2265), + [anon_sym_override] = ACTIONS(2265), + [anon_sym_module] = ACTIONS(2265), + [anon_sym_any] = ACTIONS(2265), + [anon_sym_number] = ACTIONS(2265), + [anon_sym_boolean] = ACTIONS(2265), + [anon_sym_string] = ACTIONS(2265), + [anon_sym_symbol] = ACTIONS(2265), + [anon_sym_object] = ACTIONS(2265), [sym_html_comment] = ACTIONS(5), }, - [644] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1458), - [sym_expression] = STATE(2491), - [sym_primary_expression] = STATE(1512), + [647] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2484), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1458), - [sym_subscript_expression] = STATE(1458), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3030), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1458), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, - [645] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1458), - [sym_expression] = STATE(2493), - [sym_primary_expression] = STATE(1512), + [648] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2486), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1458), - [sym_subscript_expression] = STATE(1458), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3030), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1458), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, - [646] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1458), - [sym_expression] = STATE(2494), - [sym_primary_expression] = STATE(1512), + [649] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2487), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1458), - [sym_subscript_expression] = STATE(1458), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3030), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1458), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, - [647] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1458), - [sym_expression] = STATE(2495), - [sym_primary_expression] = STATE(1512), + [650] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2488), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1458), - [sym_subscript_expression] = STATE(1458), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3030), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1458), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, - [648] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1458), - [sym_expression] = STATE(2497), - [sym_primary_expression] = STATE(1512), + [651] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2490), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1458), - [sym_subscript_expression] = STATE(1458), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3030), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1458), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, - [649] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1458), - [sym_expression] = STATE(2498), - [sym_primary_expression] = STATE(1512), + [652] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2491), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1458), - [sym_subscript_expression] = STATE(1458), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3030), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1458), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, - [650] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1458), - [sym_expression] = STATE(2499), - [sym_primary_expression] = STATE(1512), + [653] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2492), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1458), - [sym_subscript_expression] = STATE(1458), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3030), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1458), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, - [651] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1458), - [sym_expression] = STATE(2500), - [sym_primary_expression] = STATE(1512), + [654] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2493), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1458), - [sym_subscript_expression] = STATE(1458), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3030), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1458), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, - [652] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1458), - [sym_expression] = STATE(2501), - [sym_primary_expression] = STATE(1512), + [655] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2494), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1458), - [sym_subscript_expression] = STATE(1458), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3030), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1458), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, - [653] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1458), - [sym_expression] = STATE(2502), - [sym_primary_expression] = STATE(1512), + [656] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1458), - [sym_subscript_expression] = STATE(1458), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3030), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1458), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, - [654] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1458), - [sym_expression] = STATE(2503), - [sym_primary_expression] = STATE(1512), + [657] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2496), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1458), - [sym_subscript_expression] = STATE(1458), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3030), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1458), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, - [655] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1458), - [sym_expression] = STATE(2504), - [sym_primary_expression] = STATE(1512), + [658] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2497), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1458), - [sym_subscript_expression] = STATE(1458), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3030), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1458), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, - [656] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1458), - [sym_expression] = STATE(2505), - [sym_primary_expression] = STATE(1512), + [659] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2498), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1458), - [sym_subscript_expression] = STATE(1458), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3030), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1458), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, - [657] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1458), - [sym_expression] = STATE(2506), - [sym_primary_expression] = STATE(1512), + [660] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2499), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1458), - [sym_subscript_expression] = STATE(1458), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3030), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1458), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, - [658] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1458), - [sym_expression] = STATE(2507), - [sym_primary_expression] = STATE(1512), + [661] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2500), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1458), - [sym_subscript_expression] = STATE(1458), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3030), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1458), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, - [659] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1458), - [sym_expression] = STATE(2508), - [sym_primary_expression] = STATE(1512), + [662] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2501), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1458), - [sym_subscript_expression] = STATE(1458), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3030), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1458), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, - [660] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1458), - [sym_expression] = STATE(2510), - [sym_primary_expression] = STATE(1512), + [663] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2503), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1458), - [sym_subscript_expression] = STATE(1458), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3030), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1458), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, - [661] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1370), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5625), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5625), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5688), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3042), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5625), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1370), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(670), + [664] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1362), + [sym_expression] = STATE(1830), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5492), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5492), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5821), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1362), + [sym_subscript_expression] = STATE(1362), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3025), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5492), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1362), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(428), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_namespace] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(665), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1443), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1352), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(77), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1472), + [anon_sym_using] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(93), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_readonly] = 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_override] = 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_object] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_readonly] = ACTIONS(1352), + [anon_sym_get] = ACTIONS(1352), + [anon_sym_set] = ACTIONS(1352), + [anon_sym_declare] = ACTIONS(1352), + [anon_sym_public] = ACTIONS(1352), + [anon_sym_private] = ACTIONS(1352), + [anon_sym_protected] = ACTIONS(1352), + [anon_sym_override] = ACTIONS(1352), + [anon_sym_module] = ACTIONS(1352), + [anon_sym_any] = ACTIONS(1352), + [anon_sym_number] = ACTIONS(1352), + [anon_sym_boolean] = ACTIONS(1352), + [anon_sym_string] = ACTIONS(1352), + [anon_sym_symbol] = ACTIONS(1352), + [anon_sym_object] = ACTIONS(1352), [sym_html_comment] = ACTIONS(5), }, - [662] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1458), - [sym_expression] = STATE(2514), - [sym_primary_expression] = STATE(1512), + [665] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2507), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1458), - [sym_subscript_expression] = STATE(1458), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3030), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1458), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, - [663] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1458), - [sym_expression] = STATE(2515), - [sym_primary_expression] = STATE(1512), + [666] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2508), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1458), - [sym_subscript_expression] = STATE(1458), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3030), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1458), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, - [664] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1458), - [sym_expression] = STATE(2516), - [sym_primary_expression] = STATE(1512), + [667] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2509), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1458), - [sym_subscript_expression] = STATE(1458), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3030), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1458), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, - [665] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1458), - [sym_expression] = STATE(2519), - [sym_primary_expression] = STATE(1512), + [668] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2514), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1458), - [sym_subscript_expression] = STATE(1458), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3030), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1458), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, - [666] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1458), - [sym_expression] = STATE(2520), - [sym_primary_expression] = STATE(1512), + [669] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2515), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1458), - [sym_subscript_expression] = STATE(1458), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3030), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1458), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, - [667] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1470), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1512), + [670] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1473), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5553), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5553), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5541), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5541), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1470), - [sym_subscript_expression] = STATE(1470), + [sym_member_expression] = STATE(1473), + [sym_subscript_expression] = STATE(1473), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5553), + [sym__destructuring_pattern] = STATE(5541), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1470), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1473), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(2238), - [anon_sym_export] = ACTIONS(2240), - [anon_sym_type] = ACTIONS(2240), - [anon_sym_namespace] = ACTIONS(2242), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2240), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(2244), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(2246), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(2248), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2240), - [anon_sym_readonly] = ACTIONS(2240), - [anon_sym_get] = ACTIONS(2240), - [anon_sym_set] = ACTIONS(2240), - [anon_sym_declare] = ACTIONS(2240), - [anon_sym_public] = ACTIONS(2240), - [anon_sym_private] = ACTIONS(2240), - [anon_sym_protected] = ACTIONS(2240), - [anon_sym_override] = ACTIONS(2240), - [anon_sym_module] = ACTIONS(2240), - [anon_sym_any] = ACTIONS(2240), - [anon_sym_number] = ACTIONS(2240), - [anon_sym_boolean] = ACTIONS(2240), - [anon_sym_string] = ACTIONS(2240), - [anon_sym_symbol] = ACTIONS(2240), - [anon_sym_object] = ACTIONS(2240), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(2275), + [anon_sym_export] = ACTIONS(2277), + [anon_sym_type] = ACTIONS(2277), + [anon_sym_namespace] = ACTIONS(2279), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(2277), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(2281), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(2283), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(2285), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2277), + [anon_sym_readonly] = ACTIONS(2277), + [anon_sym_get] = ACTIONS(2277), + [anon_sym_set] = ACTIONS(2277), + [anon_sym_declare] = ACTIONS(2277), + [anon_sym_public] = ACTIONS(2277), + [anon_sym_private] = ACTIONS(2277), + [anon_sym_protected] = ACTIONS(2277), + [anon_sym_override] = ACTIONS(2277), + [anon_sym_module] = ACTIONS(2277), + [anon_sym_any] = ACTIONS(2277), + [anon_sym_number] = ACTIONS(2277), + [anon_sym_boolean] = ACTIONS(2277), + [anon_sym_string] = ACTIONS(2277), + [anon_sym_symbol] = ACTIONS(2277), + [anon_sym_object] = ACTIONS(2277), [sym_html_comment] = ACTIONS(5), }, - [668] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1455), - [sym_expression] = STATE(2612), - [sym_primary_expression] = STATE(1512), + [671] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2595), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5740), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1455), - [sym_subscript_expression] = STATE(1455), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3023), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1455), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [669] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(2436), - [sym_primary_expression] = STATE(1512), + [672] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2425), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1328), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [670] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1416), - [sym_expression] = STATE(2259), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5590), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1416), - [sym_subscript_expression] = STATE(1416), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3031), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1416), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), + [673] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2239), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, - [671] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1416), - [sym_expression] = STATE(2260), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5590), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1416), - [sym_subscript_expression] = STATE(1416), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3031), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1416), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), + [674] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2240), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, - [672] = { - [sym_import] = STATE(3514), - [sym_parenthesized_expression] = STATE(1416), - [sym_expression] = STATE(2262), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5590), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), - [sym_member_expression] = STATE(1416), - [sym_subscript_expression] = STATE(1416), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3031), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1416), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1129), - [anon_sym_type] = ACTIONS(1129), - [anon_sym_namespace] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1157), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1137), + [675] = { + [sym_import] = STATE(3636), + [sym_parenthesized_expression] = STATE(1410), + [sym_expression] = STATE(2242), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5580), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5580), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5466), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), + [sym_member_expression] = STATE(1410), + [sym_subscript_expression] = STATE(1410), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3004), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5580), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1410), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(452), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1278), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1141), - [anon_sym_yield] = ACTIONS(1143), + [anon_sym_await] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1147), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_using] = ACTIONS(1151), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_void] = ACTIONS(1157), - [anon_sym_delete] = ACTIONS(1157), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1165), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1129), - [anon_sym_readonly] = ACTIONS(1129), - [anon_sym_get] = ACTIONS(1129), - [anon_sym_set] = ACTIONS(1129), - [anon_sym_declare] = ACTIONS(1129), - [anon_sym_public] = ACTIONS(1129), - [anon_sym_private] = ACTIONS(1129), - [anon_sym_protected] = ACTIONS(1129), - [anon_sym_override] = ACTIONS(1129), - [anon_sym_module] = ACTIONS(1129), - [anon_sym_any] = ACTIONS(1129), - [anon_sym_number] = ACTIONS(1129), - [anon_sym_boolean] = ACTIONS(1129), - [anon_sym_string] = ACTIONS(1129), - [anon_sym_symbol] = ACTIONS(1129), - [anon_sym_object] = ACTIONS(1129), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1502), + [anon_sym_using] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_void] = ACTIONS(1298), + [anon_sym_delete] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1306), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1270), + [anon_sym_get] = ACTIONS(1270), + [anon_sym_set] = ACTIONS(1270), + [anon_sym_declare] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_protected] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_any] = ACTIONS(1270), + [anon_sym_number] = ACTIONS(1270), + [anon_sym_boolean] = ACTIONS(1270), + [anon_sym_string] = ACTIONS(1270), + [anon_sym_symbol] = ACTIONS(1270), + [anon_sym_object] = ACTIONS(1270), [sym_html_comment] = ACTIONS(5), }, - [673] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(1771), - [sym_primary_expression] = STATE(1512), + [676] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(1777), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5710), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5710), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5698), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5698), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), + [sym_member_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5710), + [sym__destructuring_pattern] = STATE(5698), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1328), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1322), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1463), - [anon_sym_export] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1055), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1055), - [anon_sym_readonly] = ACTIONS(1055), - [anon_sym_get] = ACTIONS(1055), - [anon_sym_set] = ACTIONS(1055), - [anon_sym_declare] = ACTIONS(1055), - [anon_sym_public] = ACTIONS(1055), - [anon_sym_private] = ACTIONS(1055), - [anon_sym_protected] = ACTIONS(1055), - [anon_sym_override] = ACTIONS(1055), - [anon_sym_module] = ACTIONS(1055), - [anon_sym_any] = ACTIONS(1055), - [anon_sym_number] = ACTIONS(1055), - [anon_sym_boolean] = ACTIONS(1055), - [anon_sym_string] = ACTIONS(1055), - [anon_sym_symbol] = ACTIONS(1055), - [anon_sym_object] = ACTIONS(1055), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_type] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1464), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1048), + [anon_sym_readonly] = ACTIONS(1048), + [anon_sym_get] = ACTIONS(1048), + [anon_sym_set] = ACTIONS(1048), + [anon_sym_declare] = ACTIONS(1048), + [anon_sym_public] = ACTIONS(1048), + [anon_sym_private] = ACTIONS(1048), + [anon_sym_protected] = ACTIONS(1048), + [anon_sym_override] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_any] = ACTIONS(1048), + [anon_sym_number] = ACTIONS(1048), + [anon_sym_boolean] = ACTIONS(1048), + [anon_sym_string] = ACTIONS(1048), + [anon_sym_symbol] = ACTIONS(1048), + [anon_sym_object] = ACTIONS(1048), [sym_html_comment] = ACTIONS(5), }, - [674] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1328), - [sym_expression] = STATE(2324), - [sym_primary_expression] = STATE(1512), + [677] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1322), + [sym_expression] = STATE(2312), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4300), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4300), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5535), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(4276), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(4276), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5508), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), + [sym_member_expression] = STATE(1363), + [sym_subscript_expression] = STATE(1363), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3003), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4300), + [sym__destructuring_pattern] = STATE(4276), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1354), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1363), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(2250), - [anon_sym_export] = ACTIONS(1307), - [anon_sym_type] = ACTIONS(1307), - [anon_sym_namespace] = ACTIONS(1309), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(620), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1307), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(594), - [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1313), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(2252), - [anon_sym_using] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(592), - [anon_sym_void] = ACTIONS(620), - [anon_sym_delete] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(624), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(2254), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1307), - [anon_sym_readonly] = ACTIONS(1307), - [anon_sym_get] = ACTIONS(1307), - [anon_sym_set] = ACTIONS(1307), - [anon_sym_declare] = ACTIONS(1307), - [anon_sym_public] = ACTIONS(1307), - [anon_sym_private] = ACTIONS(1307), - [anon_sym_protected] = ACTIONS(1307), - [anon_sym_override] = ACTIONS(1307), - [anon_sym_module] = ACTIONS(1307), - [anon_sym_any] = ACTIONS(1307), - [anon_sym_number] = ACTIONS(1307), - [anon_sym_boolean] = ACTIONS(1307), - [anon_sym_string] = ACTIONS(1307), - [anon_sym_symbol] = ACTIONS(1307), - [anon_sym_object] = ACTIONS(1307), + [sym_type_arguments] = STATE(484), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(2287), + [anon_sym_export] = ACTIONS(1216), + [anon_sym_type] = ACTIONS(1216), + [anon_sym_namespace] = ACTIONS(1218), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(581), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1216), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(2289), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(581), + [anon_sym_DASH] = ACTIONS(581), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(585), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(2291), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1216), + [anon_sym_readonly] = ACTIONS(1216), + [anon_sym_get] = ACTIONS(1216), + [anon_sym_set] = ACTIONS(1216), + [anon_sym_declare] = ACTIONS(1216), + [anon_sym_public] = ACTIONS(1216), + [anon_sym_private] = ACTIONS(1216), + [anon_sym_protected] = ACTIONS(1216), + [anon_sym_override] = ACTIONS(1216), + [anon_sym_module] = ACTIONS(1216), + [anon_sym_any] = ACTIONS(1216), + [anon_sym_number] = ACTIONS(1216), + [anon_sym_boolean] = ACTIONS(1216), + [anon_sym_string] = ACTIONS(1216), + [anon_sym_symbol] = ACTIONS(1216), + [anon_sym_object] = ACTIONS(1216), [sym_html_comment] = ACTIONS(5), }, - [675] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1458), - [sym_expression] = STATE(2519), - [sym_primary_expression] = STATE(1512), + [678] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1459), + [sym_expression] = STATE(2514), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5827), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5529), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1458), - [sym_subscript_expression] = STATE(1458), + [sym_member_expression] = STATE(1459), + [sym_subscript_expression] = STATE(1459), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3030), + [sym__augmented_assignment_lhs] = STATE(2979), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), + [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1458), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1459), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(2134), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), + [sym_type_arguments] = STATE(647), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1514), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(1100), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_yield] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1518), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_PLUS] = ACTIONS(1100), + [anon_sym_DASH] = ACTIONS(1100), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1082), + [anon_sym_void] = ACTIONS(1100), + [anon_sym_delete] = ACTIONS(1100), + [anon_sym_PLUS_PLUS] = ACTIONS(1102), + [anon_sym_DASH_DASH] = ACTIONS(1102), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(2171), + [sym_private_property_identifier] = ACTIONS(1108), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_override] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_object] = ACTIONS(1074), [sym_html_comment] = ACTIONS(5), }, - [676] = { - [sym_import] = STATE(3514), + [679] = { + [sym_import] = STATE(3636), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1875), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), + [sym_expression] = STATE(1873), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3043), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, - [677] = { - [sym_import] = STATE(3514), + [680] = { + [sym_import] = STATE(3636), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1876), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), + [sym_expression] = STATE(1874), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3043), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, - [678] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1389), - [sym_expression] = STATE(2111), - [sym_primary_expression] = STATE(1512), + [681] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1387), + [sym_expression] = STATE(2109), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5815), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5815), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5603), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5803), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5803), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5585), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1389), - [sym_subscript_expression] = STATE(1389), + [sym_member_expression] = STATE(1387), + [sym_subscript_expression] = STATE(1387), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3004), + [sym__augmented_assignment_lhs] = STATE(3009), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5815), + [sym__destructuring_pattern] = STATE(5803), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1389), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1387), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_type] = ACTIONS(1325), - [anon_sym_namespace] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1347), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1333), - [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_void] = ACTIONS(1347), - [anon_sym_delete] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1349), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1351), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_readonly] = ACTIONS(1325), - [anon_sym_get] = ACTIONS(1325), - [anon_sym_set] = ACTIONS(1325), - [anon_sym_declare] = ACTIONS(1325), - [anon_sym_public] = ACTIONS(1325), - [anon_sym_private] = ACTIONS(1325), - [anon_sym_protected] = ACTIONS(1325), - [anon_sym_override] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_any] = ACTIONS(1325), - [anon_sym_number] = ACTIONS(1325), - [anon_sym_boolean] = ACTIONS(1325), - [anon_sym_string] = ACTIONS(1325), - [anon_sym_symbol] = ACTIONS(1325), - [anon_sym_object] = ACTIONS(1325), + [sym_type_arguments] = STATE(566), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_namespace] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1494), + [anon_sym_using] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_delete] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1448), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_readonly] = ACTIONS(1422), + [anon_sym_get] = ACTIONS(1422), + [anon_sym_set] = ACTIONS(1422), + [anon_sym_declare] = ACTIONS(1422), + [anon_sym_public] = ACTIONS(1422), + [anon_sym_private] = ACTIONS(1422), + [anon_sym_protected] = ACTIONS(1422), + [anon_sym_override] = ACTIONS(1422), + [anon_sym_module] = ACTIONS(1422), + [anon_sym_any] = ACTIONS(1422), + [anon_sym_number] = ACTIONS(1422), + [anon_sym_boolean] = ACTIONS(1422), + [anon_sym_string] = ACTIONS(1422), + [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_object] = ACTIONS(1422), [sym_html_comment] = ACTIONS(5), }, - [679] = { - [sym_import] = STATE(3541), + [682] = { + [sym_import] = STATE(3639), [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(1919), - [sym_primary_expression] = STATE(1512), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5559), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5559), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5803), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5558), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1398), [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3041), + [sym__augmented_assignment_lhs] = STATE(2980), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5559), + [sym__destructuring_pattern] = STATE(5544), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [sym_type_arguments] = STATE(638), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1158), + [anon_sym_type] = ACTIONS(1158), + [anon_sym_namespace] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(756), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1158), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1164), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1486), + [anon_sym_using] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_void] = ACTIONS(756), + [anon_sym_delete] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(764), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_readonly] = ACTIONS(1158), + [anon_sym_get] = ACTIONS(1158), + [anon_sym_set] = ACTIONS(1158), + [anon_sym_declare] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_protected] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_module] = ACTIONS(1158), + [anon_sym_any] = ACTIONS(1158), + [anon_sym_number] = ACTIONS(1158), + [anon_sym_boolean] = ACTIONS(1158), + [anon_sym_string] = ACTIONS(1158), + [anon_sym_symbol] = ACTIONS(1158), + [anon_sym_object] = ACTIONS(1158), [sym_html_comment] = ACTIONS(5), }, - [680] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1455), - [sym_expression] = STATE(2455), - [sym_primary_expression] = STATE(1512), + [683] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2407), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5740), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1455), - [sym_subscript_expression] = STATE(1455), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3023), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1455), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [681] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2465), - [sym_primary_expression] = STATE(1512), + [684] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1457), + [sym_expression] = STATE(2417), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5823), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5823), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5477), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), + [sym_member_expression] = STATE(1457), + [sym_subscript_expression] = STATE(1457), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3028), + [sym__augmented_assignment_lhs] = STATE(2986), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), + [sym__destructuring_pattern] = STATE(5823), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1456), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1457), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), + [sym_type_arguments] = STATE(620), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1178), + [anon_sym_type] = ACTIONS(1178), + [anon_sym_namespace] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1178), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1188), + [anon_sym_yield] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1192), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1526), + [anon_sym_using] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1186), + [anon_sym_void] = ACTIONS(1202), + [anon_sym_delete] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1204), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1206), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_readonly] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1178), + [anon_sym_set] = ACTIONS(1178), + [anon_sym_declare] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_protected] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_module] = ACTIONS(1178), + [anon_sym_any] = ACTIONS(1178), + [anon_sym_number] = ACTIONS(1178), + [anon_sym_boolean] = ACTIONS(1178), + [anon_sym_string] = ACTIONS(1178), + [anon_sym_symbol] = ACTIONS(1178), + [anon_sym_object] = ACTIONS(1178), [sym_html_comment] = ACTIONS(5), }, - [682] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1469), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1512), + [685] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1467), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5622), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5622), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5610), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5610), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1469), - [sym_subscript_expression] = STATE(1469), + [sym_member_expression] = STATE(1467), + [sym_subscript_expression] = STATE(1467), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5622), + [sym__destructuring_pattern] = STATE(5610), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1469), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1467), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(2256), - [anon_sym_export] = ACTIONS(2258), - [anon_sym_type] = ACTIONS(2258), - [anon_sym_namespace] = ACTIONS(2260), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2258), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(2262), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(2264), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(2266), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2258), - [anon_sym_readonly] = ACTIONS(2258), - [anon_sym_get] = ACTIONS(2258), - [anon_sym_set] = ACTIONS(2258), - [anon_sym_declare] = ACTIONS(2258), - [anon_sym_public] = ACTIONS(2258), - [anon_sym_private] = ACTIONS(2258), - [anon_sym_protected] = ACTIONS(2258), - [anon_sym_override] = ACTIONS(2258), - [anon_sym_module] = ACTIONS(2258), - [anon_sym_any] = ACTIONS(2258), - [anon_sym_number] = ACTIONS(2258), - [anon_sym_boolean] = ACTIONS(2258), - [anon_sym_string] = ACTIONS(2258), - [anon_sym_symbol] = ACTIONS(2258), - [anon_sym_object] = ACTIONS(2258), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(2293), + [anon_sym_export] = ACTIONS(2295), + [anon_sym_type] = ACTIONS(2295), + [anon_sym_namespace] = ACTIONS(2297), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(2295), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(2299), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(2301), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(2303), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2295), + [anon_sym_readonly] = ACTIONS(2295), + [anon_sym_get] = ACTIONS(2295), + [anon_sym_set] = ACTIONS(2295), + [anon_sym_declare] = ACTIONS(2295), + [anon_sym_public] = ACTIONS(2295), + [anon_sym_private] = ACTIONS(2295), + [anon_sym_protected] = ACTIONS(2295), + [anon_sym_override] = ACTIONS(2295), + [anon_sym_module] = ACTIONS(2295), + [anon_sym_any] = ACTIONS(2295), + [anon_sym_number] = ACTIONS(2295), + [anon_sym_boolean] = ACTIONS(2295), + [anon_sym_string] = ACTIONS(2295), + [anon_sym_symbol] = ACTIONS(2295), + [anon_sym_object] = ACTIONS(2295), [sym_html_comment] = ACTIONS(5), }, - [683] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1455), - [sym_expression] = STATE(2592), - [sym_primary_expression] = STATE(1512), + [686] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2601), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5740), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1455), - [sym_subscript_expression] = STATE(1455), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3023), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1455), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [684] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1468), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(1512), + [687] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1472), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5800), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5800), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5794), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5788), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5788), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1468), - [sym_subscript_expression] = STATE(1468), + [sym_member_expression] = STATE(1472), + [sym_subscript_expression] = STATE(1472), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2993), + [sym__augmented_assignment_lhs] = STATE(3013), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5800), + [sym__destructuring_pattern] = STATE(5788), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1468), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1472), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(2268), - [anon_sym_export] = ACTIONS(2270), - [anon_sym_type] = ACTIONS(2270), - [anon_sym_namespace] = ACTIONS(2272), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(180), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(2270), - [anon_sym_BANG] = ACTIONS(176), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(2274), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(2276), - [anon_sym_using] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(180), - [anon_sym_DASH] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_void] = ACTIONS(180), - [anon_sym_delete] = ACTIONS(180), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(2278), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(2270), - [anon_sym_readonly] = ACTIONS(2270), - [anon_sym_get] = ACTIONS(2270), - [anon_sym_set] = ACTIONS(2270), - [anon_sym_declare] = ACTIONS(2270), - [anon_sym_public] = ACTIONS(2270), - [anon_sym_private] = ACTIONS(2270), - [anon_sym_protected] = ACTIONS(2270), - [anon_sym_override] = ACTIONS(2270), - [anon_sym_module] = ACTIONS(2270), - [anon_sym_any] = ACTIONS(2270), - [anon_sym_number] = ACTIONS(2270), - [anon_sym_boolean] = ACTIONS(2270), - [anon_sym_string] = ACTIONS(2270), - [anon_sym_symbol] = ACTIONS(2270), - [anon_sym_object] = ACTIONS(2270), + [sym_type_arguments] = STATE(539), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(2305), + [anon_sym_export] = ACTIONS(2307), + [anon_sym_type] = ACTIONS(2307), + [anon_sym_namespace] = ACTIONS(2309), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_typeof] = ACTIONS(179), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(2307), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(140), + [anon_sym_yield] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(2311), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(2313), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_void] = ACTIONS(179), + [anon_sym_delete] = ACTIONS(179), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(192), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(2315), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2307), + [anon_sym_readonly] = ACTIONS(2307), + [anon_sym_get] = ACTIONS(2307), + [anon_sym_set] = ACTIONS(2307), + [anon_sym_declare] = ACTIONS(2307), + [anon_sym_public] = ACTIONS(2307), + [anon_sym_private] = ACTIONS(2307), + [anon_sym_protected] = ACTIONS(2307), + [anon_sym_override] = ACTIONS(2307), + [anon_sym_module] = ACTIONS(2307), + [anon_sym_any] = ACTIONS(2307), + [anon_sym_number] = ACTIONS(2307), + [anon_sym_boolean] = ACTIONS(2307), + [anon_sym_string] = ACTIONS(2307), + [anon_sym_symbol] = ACTIONS(2307), + [anon_sym_object] = ACTIONS(2307), [sym_html_comment] = ACTIONS(5), }, - [685] = { - [sym_import] = STATE(3541), - [sym_parenthesized_expression] = STATE(1455), - [sym_expression] = STATE(2608), - [sym_primary_expression] = STATE(1512), + [688] = { + [sym_import] = STATE(3639), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2606), + [sym_primary_expression] = STATE(1515), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5740), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1619), + [sym_object] = STATE(1687), + [sym_object_pattern] = STATE(5815), + [sym_array] = STATE(1687), + [sym_array_pattern] = STATE(5815), + [sym_class] = STATE(1687), + [sym_function_expression] = STATE(1687), + [sym_generator_function] = STATE(1687), + [sym_arrow_function] = STATE(1687), + [sym__call_signature] = STATE(5755), + [sym_call_expression] = STATE(1687), + [sym_new_expression] = STATE(1648), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1455), - [sym_subscript_expression] = STATE(1455), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3023), + [sym__augmented_assignment_lhs] = STATE(3029), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), + [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), - [sym_non_null_expression] = STATE(1455), + [sym_string] = STATE(1687), + [sym_template_string] = STATE(1687), + [sym_regex] = STATE(1687), + [sym_meta_property] = STATE(1687), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4421), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_class] = ACTIONS(149), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(153), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), + [sym_type_arguments] = STATE(594), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4429), + [sym_identifier] = ACTIONS(1506), + [anon_sym_export] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_namespace] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_typeof] = ACTIONS(1256), + [anon_sym_import] = ACTIONS(131), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(810), + [anon_sym_await] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_class] = ACTIONS(146), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(150), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1240), + [anon_sym_void] = ACTIONS(1256), + [anon_sym_delete] = ACTIONS(1256), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_number] = ACTIONS(714), + [sym_private_property_identifier] = ACTIONS(1260), + [sym_this] = ACTIONS(196), + [sym_super] = ACTIONS(196), + [sym_true] = ACTIONS(196), + [sym_false] = ACTIONS(196), + [sym_null] = ACTIONS(196), + [sym_undefined] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_readonly] = ACTIONS(1234), + [anon_sym_get] = ACTIONS(1234), + [anon_sym_set] = ACTIONS(1234), + [anon_sym_declare] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_protected] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_module] = ACTIONS(1234), + [anon_sym_any] = ACTIONS(1234), + [anon_sym_number] = ACTIONS(1234), + [anon_sym_boolean] = ACTIONS(1234), + [anon_sym_string] = ACTIONS(1234), + [anon_sym_symbol] = ACTIONS(1234), + [anon_sym_object] = ACTIONS(1234), [sym_html_comment] = ACTIONS(5), }, - [686] = { - [sym_import] = STATE(3514), + [689] = { + [sym_import] = STATE(3636), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1851), - [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2170), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2170), - [sym_class] = STATE(2118), - [sym_function_expression] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2170), + [sym_expression] = STATE(1849), + [sym_primary_expression] = STATE(1810), + [sym_yield_expression] = STATE(2358), + [sym_object] = STATE(2222), + [sym_object_pattern] = STATE(5773), + [sym_array] = STATE(2222), + [sym_array_pattern] = STATE(5773), + [sym_class] = STATE(2222), + [sym_function_expression] = STATE(2222), + [sym_generator_function] = STATE(2222), + [sym_arrow_function] = STATE(2222), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(2222), + [sym_new_expression] = STATE(1948), + [sym_await_expression] = STATE(2358), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2170), - [sym__augmented_assignment_lhs] = STATE(3043), - [sym_augmented_assignment_expression] = STATE(2170), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2170), - [sym_binary_expression] = STATE(2170), - [sym_unary_expression] = STATE(2170), - [sym_update_expression] = STATE(2170), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3893), + [sym_assignment_expression] = STATE(2358), + [sym__augmented_assignment_lhs] = STATE(3020), + [sym_augmented_assignment_expression] = STATE(2358), + [sym__destructuring_pattern] = STATE(5773), + [sym_ternary_expression] = STATE(2358), + [sym_binary_expression] = STATE(2358), + [sym_unary_expression] = STATE(2358), + [sym_update_expression] = STATE(2358), + [sym_string] = STATE(2222), + [sym_template_string] = STATE(2222), + [sym_regex] = STATE(2222), + [sym_meta_property] = STATE(2222), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3806), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2170), - [sym_as_expression] = STATE(2170), - [sym_satisfies_expression] = STATE(2170), - [sym_instantiation_expression] = STATE(2170), - [sym_internal_module] = STATE(2170), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5354), - [aux_sym_export_statement_repeat1] = STATE(4492), - [sym_identifier] = ACTIONS(1481), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_namespace] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(1253), - [anon_sym_import] = ACTIONS(674), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1235), + [sym_type_assertion] = STATE(2358), + [sym_as_expression] = STATE(2358), + [sym_satisfies_expression] = STATE(2358), + [sym_instantiation_expression] = STATE(2358), + [sym_internal_module] = STATE(2358), + [sym_type_arguments] = STATE(513), + [sym_type_parameters] = STATE(5328), + [aux_sym_export_statement_repeat1] = STATE(4408), + [sym_identifier] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_namespace] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_import] = ACTIONS(669), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1237), - [anon_sym_yield] = ACTIONS(1239), + [anon_sym_await] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), [anon_sym_LBRACK] = ACTIONS(65), - [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_class] = ACTIONS(681), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_function] = ACTIONS(685), - [anon_sym_new] = ACTIONS(1485), - [anon_sym_using] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(81), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_void] = ACTIONS(1253), - [anon_sym_delete] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), - [sym_private_property_identifier] = ACTIONS(1261), - [sym_this] = ACTIONS(95), - [sym_super] = ACTIONS(95), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_readonly] = ACTIONS(1227), - [anon_sym_get] = ACTIONS(1227), - [anon_sym_set] = ACTIONS(1227), - [anon_sym_declare] = ACTIONS(1227), - [anon_sym_public] = ACTIONS(1227), - [anon_sym_private] = ACTIONS(1227), - [anon_sym_protected] = ACTIONS(1227), - [anon_sym_override] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_any] = ACTIONS(1227), - [anon_sym_number] = ACTIONS(1227), - [anon_sym_boolean] = ACTIONS(1227), - [anon_sym_string] = ACTIONS(1227), - [anon_sym_symbol] = ACTIONS(1227), - [anon_sym_object] = ACTIONS(1227), - [sym_html_comment] = ACTIONS(5), - }, - [687] = { - [sym_namespace_export] = STATE(5252), - [sym_export_clause] = STATE(4458), - [sym_declaration] = STATE(923), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_class_declaration] = STATE(837), - [sym_function_declaration] = STATE(837), - [sym_generator_function_declaration] = STATE(837), - [sym_decorator] = STATE(1285), - [sym_function_signature] = STATE(837), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(825), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [aux_sym_export_statement_repeat1] = STATE(4085), - [aux_sym_object_repeat1] = STATE(4902), - [aux_sym_object_pattern_repeat1] = STATE(4834), - [anon_sym_STAR] = ACTIONS(2280), - [anon_sym_default] = ACTIONS(2282), - [anon_sym_type] = ACTIONS(2284), - [anon_sym_EQ] = ACTIONS(2286), - [anon_sym_as] = ACTIONS(2288), - [anon_sym_namespace] = ACTIONS(2290), - [anon_sym_LBRACE] = ACTIONS(2292), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_RBRACE] = ACTIONS(699), - [anon_sym_import] = ACTIONS(2294), - [anon_sym_var] = ACTIONS(2296), - [anon_sym_let] = ACTIONS(2298), - [anon_sym_const] = ACTIONS(2300), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_class] = ACTIONS(2305), - [anon_sym_async] = ACTIONS(2307), - [anon_sym_function] = ACTIONS(2309), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(157), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(2314), - [anon_sym_module] = ACTIONS(2316), - [anon_sym_abstract] = ACTIONS(2318), - [anon_sym_satisfies] = ACTIONS(157), - [anon_sym_interface] = ACTIONS(2320), - [anon_sym_enum] = ACTIONS(2322), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), - [sym_html_comment] = ACTIONS(5), - }, - [688] = { - [sym_namespace_export] = STATE(5252), - [sym_export_clause] = STATE(4458), - [sym_declaration] = STATE(923), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_class_declaration] = STATE(837), - [sym_function_declaration] = STATE(837), - [sym_generator_function_declaration] = STATE(837), - [sym_decorator] = STATE(1285), - [sym_function_signature] = STATE(837), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(825), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [aux_sym_export_statement_repeat1] = STATE(4085), - [aux_sym_object_repeat1] = STATE(4823), - [aux_sym_object_pattern_repeat1] = STATE(4834), - [anon_sym_STAR] = ACTIONS(2280), - [anon_sym_default] = ACTIONS(2282), - [anon_sym_type] = ACTIONS(2284), - [anon_sym_EQ] = ACTIONS(2286), - [anon_sym_as] = ACTIONS(2288), - [anon_sym_namespace] = ACTIONS(2290), - [anon_sym_LBRACE] = ACTIONS(2292), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_RBRACE] = ACTIONS(672), - [anon_sym_import] = ACTIONS(2294), - [anon_sym_var] = ACTIONS(2296), - [anon_sym_let] = ACTIONS(2298), - [anon_sym_const] = ACTIONS(2300), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_class] = ACTIONS(2305), - [anon_sym_async] = ACTIONS(2307), - [anon_sym_function] = ACTIONS(2309), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(157), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(2314), - [anon_sym_module] = ACTIONS(2316), - [anon_sym_abstract] = ACTIONS(2318), - [anon_sym_satisfies] = ACTIONS(157), - [anon_sym_interface] = ACTIONS(2320), - [anon_sym_enum] = ACTIONS(2322), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), - [sym_html_comment] = ACTIONS(5), - }, - [689] = { - [sym_namespace_export] = STATE(5252), - [sym_export_clause] = STATE(4458), - [sym_declaration] = STATE(923), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_class_declaration] = STATE(837), - [sym_function_declaration] = STATE(837), - [sym_generator_function_declaration] = STATE(837), - [sym_decorator] = STATE(1285), - [sym_function_signature] = STATE(837), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(825), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [aux_sym_export_statement_repeat1] = STATE(4085), - [aux_sym_object_repeat1] = STATE(4902), - [aux_sym_object_pattern_repeat1] = STATE(4834), - [anon_sym_STAR] = ACTIONS(2280), - [anon_sym_default] = ACTIONS(2282), - [anon_sym_type] = ACTIONS(2284), - [anon_sym_EQ] = ACTIONS(2286), - [anon_sym_as] = ACTIONS(2288), - [anon_sym_namespace] = ACTIONS(2290), - [anon_sym_LBRACE] = ACTIONS(2292), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_import] = ACTIONS(2294), - [anon_sym_var] = ACTIONS(2296), - [anon_sym_let] = ACTIONS(2298), - [anon_sym_const] = ACTIONS(2300), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_class] = ACTIONS(2305), - [anon_sym_async] = ACTIONS(2307), - [anon_sym_function] = ACTIONS(2309), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(157), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(2314), - [anon_sym_module] = ACTIONS(2316), - [anon_sym_abstract] = ACTIONS(2318), - [anon_sym_satisfies] = ACTIONS(157), - [anon_sym_interface] = ACTIONS(2320), - [anon_sym_enum] = ACTIONS(2322), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [anon_sym_class] = ACTIONS(676), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_function] = ACTIONS(680), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_void] = ACTIONS(1408), + [anon_sym_delete] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1412), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_readonly] = ACTIONS(1386), + [anon_sym_get] = ACTIONS(1386), + [anon_sym_set] = ACTIONS(1386), + [anon_sym_declare] = ACTIONS(1386), + [anon_sym_public] = ACTIONS(1386), + [anon_sym_private] = ACTIONS(1386), + [anon_sym_protected] = ACTIONS(1386), + [anon_sym_override] = ACTIONS(1386), + [anon_sym_module] = ACTIONS(1386), + [anon_sym_any] = ACTIONS(1386), + [anon_sym_number] = ACTIONS(1386), + [anon_sym_boolean] = ACTIONS(1386), + [anon_sym_string] = ACTIONS(1386), + [anon_sym_symbol] = ACTIONS(1386), + [anon_sym_object] = ACTIONS(1386), [sym_html_comment] = ACTIONS(5), }, [690] = { - [sym__call_signature] = STATE(5845), - [sym_string] = STATE(3799), - [sym_formal_parameters] = STATE(3893), - [sym__property_name] = STATE(3799), - [sym_computed_property_name] = STATE(3799), - [sym_type_parameters] = STATE(5354), - [aux_sym_object_repeat1] = STATE(4902), - [aux_sym_object_pattern_repeat1] = STATE(4834), - [sym_identifier] = ACTIONS(2324), - [anon_sym_export] = ACTIONS(2326), - [anon_sym_STAR] = ACTIONS(2328), - [anon_sym_type] = ACTIONS(2326), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2326), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_RBRACE] = ACTIONS(699), - [anon_sym_let] = ACTIONS(2326), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2331), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(2335), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_async] = ACTIONS(2326), - [anon_sym_function] = ACTIONS(2338), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2326), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2340), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(2344), - [anon_sym_SQUOTE] = ACTIONS(2346), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [sym_number] = ACTIONS(2348), - [sym_private_property_identifier] = ACTIONS(2348), - [anon_sym_static] = ACTIONS(2326), - [anon_sym_readonly] = ACTIONS(2326), - [anon_sym_get] = ACTIONS(2350), - [anon_sym_set] = ACTIONS(2350), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(2326), - [anon_sym_public] = ACTIONS(2326), - [anon_sym_private] = ACTIONS(2326), - [anon_sym_protected] = ACTIONS(2326), - [anon_sym_override] = ACTIONS(2326), - [anon_sym_module] = ACTIONS(2326), - [anon_sym_any] = ACTIONS(2326), - [anon_sym_number] = ACTIONS(2326), - [anon_sym_boolean] = ACTIONS(2326), - [anon_sym_string] = ACTIONS(2326), - [anon_sym_symbol] = ACTIONS(2326), - [anon_sym_object] = ACTIONS(2326), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [sym__call_signature] = STATE(5693), + [sym_string] = STATE(3816), + [sym_formal_parameters] = STATE(3806), + [sym__property_name] = STATE(3816), + [sym_computed_property_name] = STATE(3816), + [sym_type_parameters] = STATE(5328), + [aux_sym_object_repeat1] = STATE(4792), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(2317), + [anon_sym_export] = ACTIONS(2319), + [anon_sym_STAR] = ACTIONS(2321), + [anon_sym_type] = ACTIONS(2319), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2319), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(694), + [anon_sym_let] = ACTIONS(2319), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2324), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(2328), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(2319), + [anon_sym_function] = ACTIONS(2331), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2319), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2333), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [sym_number] = ACTIONS(2337), + [sym_private_property_identifier] = ACTIONS(2337), + [anon_sym_static] = ACTIONS(2319), + [anon_sym_readonly] = ACTIONS(2319), + [anon_sym_get] = ACTIONS(2339), + [anon_sym_set] = ACTIONS(2339), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_declare] = ACTIONS(2319), + [anon_sym_public] = ACTIONS(2319), + [anon_sym_private] = ACTIONS(2319), + [anon_sym_protected] = ACTIONS(2319), + [anon_sym_override] = ACTIONS(2319), + [anon_sym_module] = ACTIONS(2319), + [anon_sym_any] = ACTIONS(2319), + [anon_sym_number] = ACTIONS(2319), + [anon_sym_boolean] = ACTIONS(2319), + [anon_sym_string] = ACTIONS(2319), + [anon_sym_symbol] = ACTIONS(2319), + [anon_sym_object] = ACTIONS(2319), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [691] = { - [sym__call_signature] = STATE(5845), - [sym_string] = STATE(3799), - [sym_formal_parameters] = STATE(3893), - [sym__property_name] = STATE(3799), - [sym_computed_property_name] = STATE(3799), - [sym_type_parameters] = STATE(5354), - [aux_sym_object_repeat1] = STATE(4823), - [aux_sym_object_pattern_repeat1] = STATE(4834), - [sym_identifier] = ACTIONS(2324), - [anon_sym_export] = ACTIONS(2326), - [anon_sym_STAR] = ACTIONS(2328), - [anon_sym_type] = ACTIONS(2326), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2326), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_RBRACE] = ACTIONS(672), - [anon_sym_let] = ACTIONS(2326), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2331), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(2335), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_async] = ACTIONS(2326), - [anon_sym_function] = ACTIONS(2338), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2326), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2340), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(2344), - [anon_sym_SQUOTE] = ACTIONS(2346), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [sym_number] = ACTIONS(2348), - [sym_private_property_identifier] = ACTIONS(2348), - [anon_sym_static] = ACTIONS(2326), - [anon_sym_readonly] = ACTIONS(2326), - [anon_sym_get] = ACTIONS(2350), - [anon_sym_set] = ACTIONS(2350), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(2326), - [anon_sym_public] = ACTIONS(2326), - [anon_sym_private] = ACTIONS(2326), - [anon_sym_protected] = ACTIONS(2326), - [anon_sym_override] = ACTIONS(2326), - [anon_sym_module] = ACTIONS(2326), - [anon_sym_any] = ACTIONS(2326), - [anon_sym_number] = ACTIONS(2326), - [anon_sym_boolean] = ACTIONS(2326), - [anon_sym_string] = ACTIONS(2326), - [anon_sym_symbol] = ACTIONS(2326), - [anon_sym_object] = ACTIONS(2326), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [sym__call_signature] = STATE(5693), + [sym_string] = STATE(3816), + [sym_formal_parameters] = STATE(3806), + [sym__property_name] = STATE(3816), + [sym_computed_property_name] = STATE(3816), + [sym_type_parameters] = STATE(5328), + [aux_sym_object_repeat1] = STATE(4810), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(2317), + [anon_sym_export] = ACTIONS(2319), + [anon_sym_STAR] = ACTIONS(2321), + [anon_sym_type] = ACTIONS(2319), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2319), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(692), + [anon_sym_let] = ACTIONS(2319), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2324), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(2328), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(2319), + [anon_sym_function] = ACTIONS(2331), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2319), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2333), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [sym_number] = ACTIONS(2337), + [sym_private_property_identifier] = ACTIONS(2337), + [anon_sym_static] = ACTIONS(2319), + [anon_sym_readonly] = ACTIONS(2319), + [anon_sym_get] = ACTIONS(2339), + [anon_sym_set] = ACTIONS(2339), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_declare] = ACTIONS(2319), + [anon_sym_public] = ACTIONS(2319), + [anon_sym_private] = ACTIONS(2319), + [anon_sym_protected] = ACTIONS(2319), + [anon_sym_override] = ACTIONS(2319), + [anon_sym_module] = ACTIONS(2319), + [anon_sym_any] = ACTIONS(2319), + [anon_sym_number] = ACTIONS(2319), + [anon_sym_boolean] = ACTIONS(2319), + [anon_sym_string] = ACTIONS(2319), + [anon_sym_symbol] = ACTIONS(2319), + [anon_sym_object] = ACTIONS(2319), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [692] = { - [sym__call_signature] = STATE(5845), - [sym_string] = STATE(3799), - [sym_formal_parameters] = STATE(3893), - [sym__property_name] = STATE(3799), - [sym_computed_property_name] = STATE(3799), - [sym_type_parameters] = STATE(5354), - [aux_sym_object_repeat1] = STATE(4902), - [aux_sym_object_pattern_repeat1] = STATE(4834), - [sym_identifier] = ACTIONS(2324), - [anon_sym_export] = ACTIONS(2326), - [anon_sym_STAR] = ACTIONS(2328), - [anon_sym_type] = ACTIONS(2326), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2326), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_let] = ACTIONS(2326), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2331), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(2335), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_async] = ACTIONS(2326), - [anon_sym_function] = ACTIONS(2338), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2326), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2340), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(2344), - [anon_sym_SQUOTE] = ACTIONS(2346), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [sym_number] = ACTIONS(2348), - [sym_private_property_identifier] = ACTIONS(2348), - [anon_sym_static] = ACTIONS(2326), - [anon_sym_readonly] = ACTIONS(2326), - [anon_sym_get] = ACTIONS(2350), - [anon_sym_set] = ACTIONS(2350), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(2326), - [anon_sym_public] = ACTIONS(2326), - [anon_sym_private] = ACTIONS(2326), - [anon_sym_protected] = ACTIONS(2326), - [anon_sym_override] = ACTIONS(2326), - [anon_sym_module] = ACTIONS(2326), - [anon_sym_any] = ACTIONS(2326), - [anon_sym_number] = ACTIONS(2326), - [anon_sym_boolean] = ACTIONS(2326), - [anon_sym_string] = ACTIONS(2326), - [anon_sym_symbol] = ACTIONS(2326), - [anon_sym_object] = ACTIONS(2326), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [sym__call_signature] = STATE(5693), + [sym_string] = STATE(3816), + [sym_formal_parameters] = STATE(3806), + [sym__property_name] = STATE(3816), + [sym_computed_property_name] = STATE(3816), + [sym_type_parameters] = STATE(5328), + [aux_sym_object_repeat1] = STATE(4792), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(2317), + [anon_sym_export] = ACTIONS(2319), + [anon_sym_STAR] = ACTIONS(2321), + [anon_sym_type] = ACTIONS(2319), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2319), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(667), + [anon_sym_let] = ACTIONS(2319), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2324), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(2328), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(2319), + [anon_sym_function] = ACTIONS(2331), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2319), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2333), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [sym_number] = ACTIONS(2337), + [sym_private_property_identifier] = ACTIONS(2337), + [anon_sym_static] = ACTIONS(2319), + [anon_sym_readonly] = ACTIONS(2319), + [anon_sym_get] = ACTIONS(2339), + [anon_sym_set] = ACTIONS(2339), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_declare] = ACTIONS(2319), + [anon_sym_public] = ACTIONS(2319), + [anon_sym_private] = ACTIONS(2319), + [anon_sym_protected] = ACTIONS(2319), + [anon_sym_override] = ACTIONS(2319), + [anon_sym_module] = ACTIONS(2319), + [anon_sym_any] = ACTIONS(2319), + [anon_sym_number] = ACTIONS(2319), + [anon_sym_boolean] = ACTIONS(2319), + [anon_sym_string] = ACTIONS(2319), + [anon_sym_symbol] = ACTIONS(2319), + [anon_sym_object] = ACTIONS(2319), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [693] = { - [sym_declaration] = STATE(869), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_class_declaration] = STATE(837), - [sym_function_declaration] = STATE(837), - [sym_generator_function_declaration] = STATE(837), - [sym_decorator] = STATE(1285), - [sym_function_signature] = STATE(837), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(825), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [aux_sym_export_statement_repeat1] = STATE(4085), - [aux_sym_object_repeat1] = STATE(4902), - [aux_sym_object_pattern_repeat1] = STATE(4834), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2352), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2290), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_import] = ACTIONS(2294), - [anon_sym_var] = ACTIONS(2296), - [anon_sym_let] = ACTIONS(2298), - [anon_sym_const] = ACTIONS(2300), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_class] = ACTIONS(2305), - [anon_sym_async] = ACTIONS(2307), - [anon_sym_function] = ACTIONS(2309), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(157), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(2314), - [anon_sym_module] = ACTIONS(2354), - [anon_sym_abstract] = ACTIONS(2318), - [anon_sym_satisfies] = ACTIONS(157), - [anon_sym_global] = ACTIONS(2356), - [anon_sym_interface] = ACTIONS(2320), - [anon_sym_enum] = ACTIONS(2322), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [sym_declaration] = STATE(867), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_class_declaration] = STATE(831), + [sym_function_declaration] = STATE(831), + [sym_generator_function_declaration] = STATE(831), + [sym_decorator] = STATE(1344), + [sym_function_signature] = STATE(831), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(824), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [aux_sym_export_statement_repeat1] = STATE(4301), + [aux_sym_object_repeat1] = STATE(4792), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2341), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2137), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(667), + [anon_sym_import] = ACTIONS(2141), + [anon_sym_var] = ACTIONS(2143), + [anon_sym_let] = ACTIONS(2145), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_class] = ACTIONS(2152), + [anon_sym_async] = ACTIONS(2154), + [anon_sym_function] = ACTIONS(2156), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_declare] = ACTIONS(2161), + [anon_sym_module] = ACTIONS(2343), + [anon_sym_abstract] = ACTIONS(2165), + [anon_sym_satisfies] = ACTIONS(154), + [anon_sym_global] = ACTIONS(2345), + [anon_sym_interface] = ACTIONS(2167), + [anon_sym_enum] = ACTIONS(2169), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [694] = { - [sym_declaration] = STATE(869), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_class_declaration] = STATE(837), - [sym_function_declaration] = STATE(837), - [sym_generator_function_declaration] = STATE(837), - [sym_decorator] = STATE(1285), - [sym_function_signature] = STATE(837), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(825), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [aux_sym_export_statement_repeat1] = STATE(4085), - [aux_sym_object_repeat1] = STATE(4902), - [aux_sym_object_pattern_repeat1] = STATE(4834), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2352), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2290), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_RBRACE] = ACTIONS(699), - [anon_sym_import] = ACTIONS(2294), - [anon_sym_var] = ACTIONS(2296), - [anon_sym_let] = ACTIONS(2298), - [anon_sym_const] = ACTIONS(2300), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_class] = ACTIONS(2305), - [anon_sym_async] = ACTIONS(2307), - [anon_sym_function] = ACTIONS(2309), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(157), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(2314), - [anon_sym_module] = ACTIONS(2354), - [anon_sym_abstract] = ACTIONS(2318), - [anon_sym_satisfies] = ACTIONS(157), - [anon_sym_global] = ACTIONS(2356), - [anon_sym_interface] = ACTIONS(2320), - [anon_sym_enum] = ACTIONS(2322), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [sym_declaration] = STATE(867), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_class_declaration] = STATE(831), + [sym_function_declaration] = STATE(831), + [sym_generator_function_declaration] = STATE(831), + [sym_decorator] = STATE(1344), + [sym_function_signature] = STATE(831), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(824), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [aux_sym_export_statement_repeat1] = STATE(4301), + [aux_sym_object_repeat1] = STATE(4810), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2341), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2137), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(692), + [anon_sym_import] = ACTIONS(2141), + [anon_sym_var] = ACTIONS(2143), + [anon_sym_let] = ACTIONS(2145), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_class] = ACTIONS(2152), + [anon_sym_async] = ACTIONS(2154), + [anon_sym_function] = ACTIONS(2156), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_declare] = ACTIONS(2161), + [anon_sym_module] = ACTIONS(2343), + [anon_sym_abstract] = ACTIONS(2165), + [anon_sym_satisfies] = ACTIONS(154), + [anon_sym_global] = ACTIONS(2345), + [anon_sym_interface] = ACTIONS(2167), + [anon_sym_enum] = ACTIONS(2169), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [695] = { - [sym_declaration] = STATE(869), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_class_declaration] = STATE(837), - [sym_function_declaration] = STATE(837), - [sym_generator_function_declaration] = STATE(837), - [sym_decorator] = STATE(1285), - [sym_function_signature] = STATE(837), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(825), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [aux_sym_export_statement_repeat1] = STATE(4085), - [aux_sym_object_repeat1] = STATE(4823), - [aux_sym_object_pattern_repeat1] = STATE(4834), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2352), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2290), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_RBRACE] = ACTIONS(672), - [anon_sym_import] = ACTIONS(2294), - [anon_sym_var] = ACTIONS(2296), - [anon_sym_let] = ACTIONS(2298), - [anon_sym_const] = ACTIONS(2300), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_class] = ACTIONS(2305), - [anon_sym_async] = ACTIONS(2307), - [anon_sym_function] = ACTIONS(2309), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(157), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(2314), - [anon_sym_module] = ACTIONS(2354), - [anon_sym_abstract] = ACTIONS(2318), - [anon_sym_satisfies] = ACTIONS(157), - [anon_sym_global] = ACTIONS(2356), - [anon_sym_interface] = ACTIONS(2320), - [anon_sym_enum] = ACTIONS(2322), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [sym_declaration] = STATE(867), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_class_declaration] = STATE(831), + [sym_function_declaration] = STATE(831), + [sym_generator_function_declaration] = STATE(831), + [sym_decorator] = STATE(1344), + [sym_function_signature] = STATE(831), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(824), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [aux_sym_export_statement_repeat1] = STATE(4301), + [aux_sym_object_repeat1] = STATE(4792), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2341), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2137), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(694), + [anon_sym_import] = ACTIONS(2141), + [anon_sym_var] = ACTIONS(2143), + [anon_sym_let] = ACTIONS(2145), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_class] = ACTIONS(2152), + [anon_sym_async] = ACTIONS(2154), + [anon_sym_function] = ACTIONS(2156), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_declare] = ACTIONS(2161), + [anon_sym_module] = ACTIONS(2343), + [anon_sym_abstract] = ACTIONS(2165), + [anon_sym_satisfies] = ACTIONS(154), + [anon_sym_global] = ACTIONS(2345), + [anon_sym_interface] = ACTIONS(2167), + [anon_sym_enum] = ACTIONS(2169), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [696] = { - [sym_namespace_export] = STATE(5252), - [sym_export_clause] = STATE(4458), - [sym_declaration] = STATE(923), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_class_declaration] = STATE(837), - [sym_function_declaration] = STATE(837), - [sym_generator_function_declaration] = STATE(837), - [sym_decorator] = STATE(1285), - [sym_function_signature] = STATE(837), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(825), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [aux_sym_export_statement_repeat1] = STATE(4085), - [anon_sym_STAR] = ACTIONS(2280), - [anon_sym_default] = ACTIONS(2282), - [anon_sym_type] = ACTIONS(2284), - [anon_sym_EQ] = ACTIONS(2358), - [anon_sym_as] = ACTIONS(2288), - [anon_sym_namespace] = ACTIONS(2290), - [anon_sym_LBRACE] = ACTIONS(2292), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_import] = ACTIONS(2294), - [anon_sym_var] = ACTIONS(2296), - [anon_sym_let] = ACTIONS(2298), - [anon_sym_const] = ACTIONS(2300), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(869), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_class] = ACTIONS(2305), - [anon_sym_async] = ACTIONS(2307), - [anon_sym_function] = ACTIONS(2309), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(157), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(2314), - [anon_sym_module] = ACTIONS(2316), - [anon_sym_abstract] = ACTIONS(2318), - [anon_sym_satisfies] = ACTIONS(157), - [anon_sym_interface] = ACTIONS(2320), - [anon_sym_enum] = ACTIONS(2322), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [sym_namespace_export] = STATE(5206), + [sym_export_clause] = STATE(4427), + [sym_declaration] = STATE(919), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_class_declaration] = STATE(831), + [sym_function_declaration] = STATE(831), + [sym_generator_function_declaration] = STATE(831), + [sym_decorator] = STATE(1344), + [sym_function_signature] = STATE(831), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(824), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [aux_sym_export_statement_repeat1] = STATE(4301), + [anon_sym_STAR] = ACTIONS(2127), + [anon_sym_default] = ACTIONS(2129), + [anon_sym_type] = ACTIONS(2131), + [anon_sym_EQ] = ACTIONS(2347), + [anon_sym_as] = ACTIONS(2135), + [anon_sym_namespace] = ACTIONS(2137), + [anon_sym_LBRACE] = ACTIONS(2139), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_import] = ACTIONS(2141), + [anon_sym_var] = ACTIONS(2143), + [anon_sym_let] = ACTIONS(2145), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(860), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_class] = ACTIONS(2152), + [anon_sym_async] = ACTIONS(2154), + [anon_sym_function] = ACTIONS(2156), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(2161), + [anon_sym_module] = ACTIONS(2163), + [anon_sym_abstract] = ACTIONS(2165), + [anon_sym_satisfies] = ACTIONS(154), + [anon_sym_interface] = ACTIONS(2167), + [anon_sym_enum] = ACTIONS(2169), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [697] = { - [sym_namespace_export] = STATE(5252), - [sym_export_clause] = STATE(4458), - [sym_declaration] = STATE(923), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_class_declaration] = STATE(837), - [sym_function_declaration] = STATE(837), - [sym_generator_function_declaration] = STATE(837), - [sym_decorator] = STATE(1285), - [sym_function_signature] = STATE(837), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(825), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [aux_sym_export_statement_repeat1] = STATE(4085), - [anon_sym_STAR] = ACTIONS(2280), - [anon_sym_default] = ACTIONS(2360), - [anon_sym_type] = ACTIONS(2284), - [anon_sym_EQ] = ACTIONS(2358), - [anon_sym_as] = ACTIONS(2288), - [anon_sym_namespace] = ACTIONS(2290), - [anon_sym_LBRACE] = ACTIONS(2292), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_import] = ACTIONS(2294), - [anon_sym_var] = ACTIONS(2296), - [anon_sym_let] = ACTIONS(2298), - [anon_sym_const] = ACTIONS(2300), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(857), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_class] = ACTIONS(2305), - [anon_sym_async] = ACTIONS(2307), - [anon_sym_function] = ACTIONS(2309), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(157), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(2314), - [anon_sym_module] = ACTIONS(2316), - [anon_sym_abstract] = ACTIONS(2318), - [anon_sym_satisfies] = ACTIONS(157), - [anon_sym_interface] = ACTIONS(2320), - [anon_sym_enum] = ACTIONS(2322), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [sym_namespace_export] = STATE(5206), + [sym_export_clause] = STATE(4427), + [sym_declaration] = STATE(919), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_class_declaration] = STATE(831), + [sym_function_declaration] = STATE(831), + [sym_generator_function_declaration] = STATE(831), + [sym_decorator] = STATE(1344), + [sym_function_signature] = STATE(831), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(824), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [aux_sym_export_statement_repeat1] = STATE(4301), + [anon_sym_STAR] = ACTIONS(2127), + [anon_sym_default] = ACTIONS(2349), + [anon_sym_type] = ACTIONS(2131), + [anon_sym_EQ] = ACTIONS(2347), + [anon_sym_as] = ACTIONS(2135), + [anon_sym_namespace] = ACTIONS(2137), + [anon_sym_LBRACE] = ACTIONS(2139), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_import] = ACTIONS(2141), + [anon_sym_var] = ACTIONS(2143), + [anon_sym_let] = ACTIONS(2145), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_class] = ACTIONS(2152), + [anon_sym_async] = ACTIONS(2154), + [anon_sym_function] = ACTIONS(2156), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(2161), + [anon_sym_module] = ACTIONS(2163), + [anon_sym_abstract] = ACTIONS(2165), + [anon_sym_satisfies] = ACTIONS(154), + [anon_sym_interface] = ACTIONS(2167), + [anon_sym_enum] = ACTIONS(2169), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [698] = { - [sym_string] = STATE(3799), - [sym__property_name] = STATE(3799), - [sym_computed_property_name] = STATE(3799), - [sym_override_modifier] = STATE(2814), - [aux_sym_object_repeat1] = STATE(4902), - [aux_sym_object_pattern_repeat1] = STATE(4834), - [sym_identifier] = ACTIONS(2362), - [anon_sym_export] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2328), - [anon_sym_type] = ACTIONS(2362), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2362), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_RBRACE] = ACTIONS(699), - [anon_sym_let] = ACTIONS(2362), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(2335), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_async] = ACTIONS(2364), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2362), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(2344), - [anon_sym_SQUOTE] = ACTIONS(2346), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [sym_number] = ACTIONS(2348), - [sym_private_property_identifier] = ACTIONS(2348), - [anon_sym_static] = ACTIONS(2362), - [anon_sym_readonly] = ACTIONS(2366), - [anon_sym_get] = ACTIONS(2368), - [anon_sym_set] = ACTIONS(2368), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(2362), - [anon_sym_public] = ACTIONS(2362), - [anon_sym_private] = ACTIONS(2362), - [anon_sym_protected] = ACTIONS(2362), - [anon_sym_override] = ACTIONS(2370), - [anon_sym_module] = ACTIONS(2362), - [anon_sym_any] = ACTIONS(2362), - [anon_sym_number] = ACTIONS(2362), - [anon_sym_boolean] = ACTIONS(2362), - [anon_sym_string] = ACTIONS(2362), - [anon_sym_symbol] = ACTIONS(2362), - [anon_sym_object] = ACTIONS(2362), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [sym_string] = STATE(3816), + [sym__property_name] = STATE(3816), + [sym_computed_property_name] = STATE(3816), + [sym_override_modifier] = STATE(2813), + [aux_sym_object_repeat1] = STATE(4792), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(2351), + [anon_sym_export] = ACTIONS(2351), + [anon_sym_STAR] = ACTIONS(2321), + [anon_sym_type] = ACTIONS(2351), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2351), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(667), + [anon_sym_let] = ACTIONS(2351), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(2328), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(2353), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2351), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [sym_number] = ACTIONS(2337), + [sym_private_property_identifier] = ACTIONS(2337), + [anon_sym_static] = ACTIONS(2351), + [anon_sym_readonly] = ACTIONS(2355), + [anon_sym_get] = ACTIONS(2357), + [anon_sym_set] = ACTIONS(2357), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_declare] = ACTIONS(2351), + [anon_sym_public] = ACTIONS(2351), + [anon_sym_private] = ACTIONS(2351), + [anon_sym_protected] = ACTIONS(2351), + [anon_sym_override] = ACTIONS(2359), + [anon_sym_module] = ACTIONS(2351), + [anon_sym_any] = ACTIONS(2351), + [anon_sym_number] = ACTIONS(2351), + [anon_sym_boolean] = ACTIONS(2351), + [anon_sym_string] = ACTIONS(2351), + [anon_sym_symbol] = ACTIONS(2351), + [anon_sym_object] = ACTIONS(2351), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [699] = { - [sym_string] = STATE(3799), - [sym__property_name] = STATE(3799), - [sym_computed_property_name] = STATE(3799), - [sym_override_modifier] = STATE(2814), - [aux_sym_object_repeat1] = STATE(4823), - [aux_sym_object_pattern_repeat1] = STATE(4834), - [sym_identifier] = ACTIONS(2362), - [anon_sym_export] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2328), - [anon_sym_type] = ACTIONS(2362), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2362), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_RBRACE] = ACTIONS(672), - [anon_sym_let] = ACTIONS(2362), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(2335), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_async] = ACTIONS(2364), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2362), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(2344), - [anon_sym_SQUOTE] = ACTIONS(2346), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [sym_number] = ACTIONS(2348), - [sym_private_property_identifier] = ACTIONS(2348), - [anon_sym_static] = ACTIONS(2362), - [anon_sym_readonly] = ACTIONS(2366), - [anon_sym_get] = ACTIONS(2368), - [anon_sym_set] = ACTIONS(2368), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(2362), - [anon_sym_public] = ACTIONS(2362), - [anon_sym_private] = ACTIONS(2362), - [anon_sym_protected] = ACTIONS(2362), - [anon_sym_override] = ACTIONS(2370), - [anon_sym_module] = ACTIONS(2362), - [anon_sym_any] = ACTIONS(2362), - [anon_sym_number] = ACTIONS(2362), - [anon_sym_boolean] = ACTIONS(2362), - [anon_sym_string] = ACTIONS(2362), - [anon_sym_symbol] = ACTIONS(2362), - [anon_sym_object] = ACTIONS(2362), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [sym_string] = STATE(3816), + [sym__property_name] = STATE(3816), + [sym_computed_property_name] = STATE(3816), + [sym_override_modifier] = STATE(2813), + [aux_sym_object_repeat1] = STATE(4810), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(2351), + [anon_sym_export] = ACTIONS(2351), + [anon_sym_STAR] = ACTIONS(2321), + [anon_sym_type] = ACTIONS(2351), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2351), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(692), + [anon_sym_let] = ACTIONS(2351), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(2328), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(2353), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2351), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [sym_number] = ACTIONS(2337), + [sym_private_property_identifier] = ACTIONS(2337), + [anon_sym_static] = ACTIONS(2351), + [anon_sym_readonly] = ACTIONS(2355), + [anon_sym_get] = ACTIONS(2357), + [anon_sym_set] = ACTIONS(2357), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_declare] = ACTIONS(2351), + [anon_sym_public] = ACTIONS(2351), + [anon_sym_private] = ACTIONS(2351), + [anon_sym_protected] = ACTIONS(2351), + [anon_sym_override] = ACTIONS(2359), + [anon_sym_module] = ACTIONS(2351), + [anon_sym_any] = ACTIONS(2351), + [anon_sym_number] = ACTIONS(2351), + [anon_sym_boolean] = ACTIONS(2351), + [anon_sym_string] = ACTIONS(2351), + [anon_sym_symbol] = ACTIONS(2351), + [anon_sym_object] = ACTIONS(2351), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [700] = { - [sym_string] = STATE(3799), - [sym__property_name] = STATE(3799), - [sym_computed_property_name] = STATE(3799), - [sym_override_modifier] = STATE(2814), - [aux_sym_object_repeat1] = STATE(4902), - [aux_sym_object_pattern_repeat1] = STATE(4834), - [sym_identifier] = ACTIONS(2362), - [anon_sym_export] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2328), - [anon_sym_type] = ACTIONS(2362), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2362), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_let] = ACTIONS(2362), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(2335), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_async] = ACTIONS(2364), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2362), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(2344), - [anon_sym_SQUOTE] = ACTIONS(2346), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [sym_number] = ACTIONS(2348), - [sym_private_property_identifier] = ACTIONS(2348), - [anon_sym_static] = ACTIONS(2362), - [anon_sym_readonly] = ACTIONS(2366), - [anon_sym_get] = ACTIONS(2368), - [anon_sym_set] = ACTIONS(2368), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(2362), - [anon_sym_public] = ACTIONS(2362), - [anon_sym_private] = ACTIONS(2362), - [anon_sym_protected] = ACTIONS(2362), - [anon_sym_override] = ACTIONS(2370), - [anon_sym_module] = ACTIONS(2362), - [anon_sym_any] = ACTIONS(2362), - [anon_sym_number] = ACTIONS(2362), - [anon_sym_boolean] = ACTIONS(2362), - [anon_sym_string] = ACTIONS(2362), - [anon_sym_symbol] = ACTIONS(2362), - [anon_sym_object] = ACTIONS(2362), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [sym_string] = STATE(3816), + [sym__property_name] = STATE(3816), + [sym_computed_property_name] = STATE(3816), + [sym_override_modifier] = STATE(2813), + [aux_sym_object_repeat1] = STATE(4792), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(2351), + [anon_sym_export] = ACTIONS(2351), + [anon_sym_STAR] = ACTIONS(2321), + [anon_sym_type] = ACTIONS(2351), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2351), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(694), + [anon_sym_let] = ACTIONS(2351), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(2328), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(2353), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2351), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [sym_number] = ACTIONS(2337), + [sym_private_property_identifier] = ACTIONS(2337), + [anon_sym_static] = ACTIONS(2351), + [anon_sym_readonly] = ACTIONS(2355), + [anon_sym_get] = ACTIONS(2357), + [anon_sym_set] = ACTIONS(2357), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_declare] = ACTIONS(2351), + [anon_sym_public] = ACTIONS(2351), + [anon_sym_private] = ACTIONS(2351), + [anon_sym_protected] = ACTIONS(2351), + [anon_sym_override] = ACTIONS(2359), + [anon_sym_module] = ACTIONS(2351), + [anon_sym_any] = ACTIONS(2351), + [anon_sym_number] = ACTIONS(2351), + [anon_sym_boolean] = ACTIONS(2351), + [anon_sym_string] = ACTIONS(2351), + [anon_sym_symbol] = ACTIONS(2351), + [anon_sym_object] = ACTIONS(2351), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [701] = { - [sym_string] = STATE(3799), - [sym__property_name] = STATE(3799), - [sym_computed_property_name] = STATE(3799), - [aux_sym_object_repeat1] = STATE(4823), - [aux_sym_object_pattern_repeat1] = STATE(4834), - [sym_identifier] = ACTIONS(2362), - [anon_sym_export] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2362), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2362), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_RBRACE] = ACTIONS(672), - [anon_sym_let] = ACTIONS(2362), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(2335), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_async] = ACTIONS(2362), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2362), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(2344), - [anon_sym_SQUOTE] = ACTIONS(2346), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [sym_number] = ACTIONS(2348), - [sym_private_property_identifier] = ACTIONS(2348), - [anon_sym_static] = ACTIONS(2362), - [anon_sym_readonly] = ACTIONS(2362), - [anon_sym_get] = ACTIONS(2362), - [anon_sym_set] = ACTIONS(2362), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(2362), - [anon_sym_public] = ACTIONS(2362), - [anon_sym_private] = ACTIONS(2362), - [anon_sym_protected] = ACTIONS(2362), - [anon_sym_override] = ACTIONS(2362), - [anon_sym_module] = ACTIONS(2362), - [anon_sym_any] = ACTIONS(2362), - [anon_sym_number] = ACTIONS(2362), - [anon_sym_boolean] = ACTIONS(2362), - [anon_sym_string] = ACTIONS(2362), - [anon_sym_symbol] = ACTIONS(2362), - [anon_sym_object] = ACTIONS(2362), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [sym_string] = STATE(3816), + [sym__property_name] = STATE(3816), + [sym_computed_property_name] = STATE(3816), + [aux_sym_object_repeat1] = STATE(4792), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(2351), + [anon_sym_export] = ACTIONS(2351), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2351), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2351), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(667), + [anon_sym_let] = ACTIONS(2351), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(2328), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(2351), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2351), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [sym_number] = ACTIONS(2337), + [sym_private_property_identifier] = ACTIONS(2337), + [anon_sym_static] = ACTIONS(2351), + [anon_sym_readonly] = ACTIONS(2351), + [anon_sym_get] = ACTIONS(2351), + [anon_sym_set] = ACTIONS(2351), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_declare] = ACTIONS(2351), + [anon_sym_public] = ACTIONS(2351), + [anon_sym_private] = ACTIONS(2351), + [anon_sym_protected] = ACTIONS(2351), + [anon_sym_override] = ACTIONS(2351), + [anon_sym_module] = ACTIONS(2351), + [anon_sym_any] = ACTIONS(2351), + [anon_sym_number] = ACTIONS(2351), + [anon_sym_boolean] = ACTIONS(2351), + [anon_sym_string] = ACTIONS(2351), + [anon_sym_symbol] = ACTIONS(2351), + [anon_sym_object] = ACTIONS(2351), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [702] = { - [sym_string] = STATE(3799), - [sym__property_name] = STATE(3799), - [sym_computed_property_name] = STATE(3799), - [aux_sym_object_repeat1] = STATE(4823), - [aux_sym_object_pattern_repeat1] = STATE(4834), - [sym_identifier] = ACTIONS(2362), - [anon_sym_export] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2328), - [anon_sym_type] = ACTIONS(2362), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2362), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_RBRACE] = ACTIONS(672), - [anon_sym_let] = ACTIONS(2362), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(2335), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_async] = ACTIONS(2364), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2362), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(2344), - [anon_sym_SQUOTE] = ACTIONS(2346), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [sym_number] = ACTIONS(2348), - [sym_private_property_identifier] = ACTIONS(2348), - [anon_sym_static] = ACTIONS(2362), - [anon_sym_readonly] = ACTIONS(2362), - [anon_sym_get] = ACTIONS(2368), - [anon_sym_set] = ACTIONS(2368), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(2362), - [anon_sym_public] = ACTIONS(2362), - [anon_sym_private] = ACTIONS(2362), - [anon_sym_protected] = ACTIONS(2362), - [anon_sym_override] = ACTIONS(2362), - [anon_sym_module] = ACTIONS(2362), - [anon_sym_any] = ACTIONS(2362), - [anon_sym_number] = ACTIONS(2362), - [anon_sym_boolean] = ACTIONS(2362), - [anon_sym_string] = ACTIONS(2362), - [anon_sym_symbol] = ACTIONS(2362), - [anon_sym_object] = ACTIONS(2362), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [sym_string] = STATE(3816), + [sym__property_name] = STATE(3816), + [sym_computed_property_name] = STATE(3816), + [aux_sym_object_repeat1] = STATE(4810), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(2351), + [anon_sym_export] = ACTIONS(2351), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2351), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2351), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(692), + [anon_sym_let] = ACTIONS(2351), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(2328), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(2351), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2351), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [sym_number] = ACTIONS(2337), + [sym_private_property_identifier] = ACTIONS(2337), + [anon_sym_static] = ACTIONS(2351), + [anon_sym_readonly] = ACTIONS(2351), + [anon_sym_get] = ACTIONS(2351), + [anon_sym_set] = ACTIONS(2351), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_declare] = ACTIONS(2351), + [anon_sym_public] = ACTIONS(2351), + [anon_sym_private] = ACTIONS(2351), + [anon_sym_protected] = ACTIONS(2351), + [anon_sym_override] = ACTIONS(2351), + [anon_sym_module] = ACTIONS(2351), + [anon_sym_any] = ACTIONS(2351), + [anon_sym_number] = ACTIONS(2351), + [anon_sym_boolean] = ACTIONS(2351), + [anon_sym_string] = ACTIONS(2351), + [anon_sym_symbol] = ACTIONS(2351), + [anon_sym_object] = ACTIONS(2351), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [703] = { - [sym_string] = STATE(3799), - [sym__property_name] = STATE(3799), - [sym_computed_property_name] = STATE(3799), - [aux_sym_object_repeat1] = STATE(4902), - [aux_sym_object_pattern_repeat1] = STATE(4834), - [sym_identifier] = ACTIONS(2362), - [anon_sym_export] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2328), - [anon_sym_type] = ACTIONS(2362), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2362), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_RBRACE] = ACTIONS(699), - [anon_sym_let] = ACTIONS(2362), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(2335), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_async] = ACTIONS(2364), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2362), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(2344), - [anon_sym_SQUOTE] = ACTIONS(2346), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [sym_number] = ACTIONS(2348), - [sym_private_property_identifier] = ACTIONS(2348), - [anon_sym_static] = ACTIONS(2362), - [anon_sym_readonly] = ACTIONS(2362), - [anon_sym_get] = ACTIONS(2368), - [anon_sym_set] = ACTIONS(2368), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(2362), - [anon_sym_public] = ACTIONS(2362), - [anon_sym_private] = ACTIONS(2362), - [anon_sym_protected] = ACTIONS(2362), - [anon_sym_override] = ACTIONS(2362), - [anon_sym_module] = ACTIONS(2362), - [anon_sym_any] = ACTIONS(2362), - [anon_sym_number] = ACTIONS(2362), - [anon_sym_boolean] = ACTIONS(2362), - [anon_sym_string] = ACTIONS(2362), - [anon_sym_symbol] = ACTIONS(2362), - [anon_sym_object] = ACTIONS(2362), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [sym_string] = STATE(3816), + [sym__property_name] = STATE(3816), + [sym_computed_property_name] = STATE(3816), + [aux_sym_object_repeat1] = STATE(4792), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(2351), + [anon_sym_export] = ACTIONS(2351), + [anon_sym_STAR] = ACTIONS(2321), + [anon_sym_type] = ACTIONS(2351), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2351), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(667), + [anon_sym_let] = ACTIONS(2351), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(2328), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(2353), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2351), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [sym_number] = ACTIONS(2337), + [sym_private_property_identifier] = ACTIONS(2337), + [anon_sym_static] = ACTIONS(2351), + [anon_sym_readonly] = ACTIONS(2351), + [anon_sym_get] = ACTIONS(2357), + [anon_sym_set] = ACTIONS(2357), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_declare] = ACTIONS(2351), + [anon_sym_public] = ACTIONS(2351), + [anon_sym_private] = ACTIONS(2351), + [anon_sym_protected] = ACTIONS(2351), + [anon_sym_override] = ACTIONS(2351), + [anon_sym_module] = ACTIONS(2351), + [anon_sym_any] = ACTIONS(2351), + [anon_sym_number] = ACTIONS(2351), + [anon_sym_boolean] = ACTIONS(2351), + [anon_sym_string] = ACTIONS(2351), + [anon_sym_symbol] = ACTIONS(2351), + [anon_sym_object] = ACTIONS(2351), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [704] = { - [sym_string] = STATE(3799), - [sym__property_name] = STATE(3799), - [sym_computed_property_name] = STATE(3799), - [aux_sym_object_repeat1] = STATE(4902), - [aux_sym_object_pattern_repeat1] = STATE(4834), - [sym_identifier] = ACTIONS(2362), - [anon_sym_export] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2362), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2362), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_RBRACE] = ACTIONS(699), - [anon_sym_let] = ACTIONS(2362), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(2335), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_async] = ACTIONS(2362), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2362), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(2344), - [anon_sym_SQUOTE] = ACTIONS(2346), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [sym_number] = ACTIONS(2348), - [sym_private_property_identifier] = ACTIONS(2348), - [anon_sym_static] = ACTIONS(2362), - [anon_sym_readonly] = ACTIONS(2362), - [anon_sym_get] = ACTIONS(2362), - [anon_sym_set] = ACTIONS(2362), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(2362), - [anon_sym_public] = ACTIONS(2362), - [anon_sym_private] = ACTIONS(2362), - [anon_sym_protected] = ACTIONS(2362), - [anon_sym_override] = ACTIONS(2362), - [anon_sym_module] = ACTIONS(2362), - [anon_sym_any] = ACTIONS(2362), - [anon_sym_number] = ACTIONS(2362), - [anon_sym_boolean] = ACTIONS(2362), - [anon_sym_string] = ACTIONS(2362), - [anon_sym_symbol] = ACTIONS(2362), - [anon_sym_object] = ACTIONS(2362), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [sym_string] = STATE(3816), + [sym__property_name] = STATE(3816), + [sym_computed_property_name] = STATE(3816), + [aux_sym_object_repeat1] = STATE(4810), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(2351), + [anon_sym_export] = ACTIONS(2351), + [anon_sym_STAR] = ACTIONS(2321), + [anon_sym_type] = ACTIONS(2351), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2351), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(692), + [anon_sym_let] = ACTIONS(2351), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(2328), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(2353), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2351), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [sym_number] = ACTIONS(2337), + [sym_private_property_identifier] = ACTIONS(2337), + [anon_sym_static] = ACTIONS(2351), + [anon_sym_readonly] = ACTIONS(2351), + [anon_sym_get] = ACTIONS(2357), + [anon_sym_set] = ACTIONS(2357), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_declare] = ACTIONS(2351), + [anon_sym_public] = ACTIONS(2351), + [anon_sym_private] = ACTIONS(2351), + [anon_sym_protected] = ACTIONS(2351), + [anon_sym_override] = ACTIONS(2351), + [anon_sym_module] = ACTIONS(2351), + [anon_sym_any] = ACTIONS(2351), + [anon_sym_number] = ACTIONS(2351), + [anon_sym_boolean] = ACTIONS(2351), + [anon_sym_string] = ACTIONS(2351), + [anon_sym_symbol] = ACTIONS(2351), + [anon_sym_object] = ACTIONS(2351), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [705] = { - [ts_builtin_sym_end] = ACTIONS(1747), - [sym_identifier] = ACTIONS(1749), - [anon_sym_export] = ACTIONS(1749), - [anon_sym_default] = ACTIONS(1749), - [anon_sym_type] = ACTIONS(1749), - [anon_sym_EQ] = ACTIONS(1749), - [anon_sym_namespace] = ACTIONS(1749), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_COMMA] = ACTIONS(1747), - [anon_sym_RBRACE] = ACTIONS(1747), - [anon_sym_typeof] = ACTIONS(1749), - [anon_sym_import] = ACTIONS(1749), - [anon_sym_from] = ACTIONS(1749), - [anon_sym_with] = ACTIONS(1749), - [anon_sym_var] = ACTIONS(1749), - [anon_sym_let] = ACTIONS(1749), - [anon_sym_const] = ACTIONS(1749), - [anon_sym_BANG] = ACTIONS(1747), - [anon_sym_else] = ACTIONS(1749), - [anon_sym_if] = ACTIONS(1749), - [anon_sym_switch] = ACTIONS(1749), - [anon_sym_for] = ACTIONS(1749), - [anon_sym_LPAREN] = ACTIONS(1747), - [anon_sym_SEMI] = ACTIONS(1747), - [anon_sym_RPAREN] = ACTIONS(1747), - [anon_sym_await] = ACTIONS(1749), - [anon_sym_while] = ACTIONS(1749), - [anon_sym_do] = ACTIONS(1749), - [anon_sym_try] = ACTIONS(1749), - [anon_sym_break] = ACTIONS(1749), - [anon_sym_continue] = ACTIONS(1749), - [anon_sym_debugger] = ACTIONS(1749), - [anon_sym_return] = ACTIONS(1749), - [anon_sym_throw] = ACTIONS(1749), - [anon_sym_COLON] = ACTIONS(1747), - [anon_sym_case] = ACTIONS(1749), - [anon_sym_yield] = ACTIONS(1749), - [anon_sym_LBRACK] = ACTIONS(1747), - [anon_sym_RBRACK] = ACTIONS(1747), - [sym_glimmer_opening_tag] = ACTIONS(1747), - [anon_sym_class] = ACTIONS(1749), - [anon_sym_async] = ACTIONS(1749), - [anon_sym_function] = ACTIONS(1749), - [anon_sym_EQ_GT] = ACTIONS(1747), - [anon_sym_new] = ACTIONS(1749), - [anon_sym_using] = ACTIONS(1749), - [anon_sym_AMP] = ACTIONS(1747), - [anon_sym_PIPE] = ACTIONS(1747), - [anon_sym_PLUS] = ACTIONS(1749), - [anon_sym_DASH] = ACTIONS(1749), - [anon_sym_SLASH] = ACTIONS(1749), - [anon_sym_LT] = ACTIONS(1749), - [anon_sym_GT] = ACTIONS(1747), - [anon_sym_TILDE] = ACTIONS(1747), - [anon_sym_void] = ACTIONS(1749), - [anon_sym_delete] = ACTIONS(1749), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1747), - [anon_sym_DQUOTE] = ACTIONS(1747), - [anon_sym_SQUOTE] = ACTIONS(1747), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1747), - [sym_number] = ACTIONS(1747), - [sym_private_property_identifier] = ACTIONS(1747), - [sym_this] = ACTIONS(1749), - [sym_super] = ACTIONS(1749), - [sym_true] = ACTIONS(1749), - [sym_false] = ACTIONS(1749), - [sym_null] = ACTIONS(1749), - [sym_undefined] = ACTIONS(1749), - [anon_sym_AT] = ACTIONS(1747), - [anon_sym_static] = ACTIONS(1749), - [anon_sym_readonly] = ACTIONS(1749), - [anon_sym_get] = ACTIONS(1749), - [anon_sym_set] = ACTIONS(1749), - [anon_sym_QMARK] = ACTIONS(1747), - [anon_sym_declare] = ACTIONS(1749), - [anon_sym_public] = ACTIONS(1749), - [anon_sym_private] = ACTIONS(1749), - [anon_sym_protected] = ACTIONS(1749), - [anon_sym_override] = ACTIONS(1749), - [anon_sym_module] = ACTIONS(1749), - [anon_sym_any] = ACTIONS(1749), - [anon_sym_number] = ACTIONS(1749), - [anon_sym_boolean] = ACTIONS(1749), - [anon_sym_string] = ACTIONS(1749), - [anon_sym_symbol] = ACTIONS(1749), - [anon_sym_object] = ACTIONS(1749), - [anon_sym_abstract] = ACTIONS(1749), - [anon_sym_extends] = ACTIONS(1749), - [anon_sym_interface] = ACTIONS(1749), - [anon_sym_enum] = ACTIONS(1749), + [sym_string] = STATE(3816), + [sym__property_name] = STATE(3816), + [sym_computed_property_name] = STATE(3816), + [aux_sym_object_repeat1] = STATE(4792), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(2351), + [anon_sym_export] = ACTIONS(2351), + [anon_sym_STAR] = ACTIONS(2321), + [anon_sym_type] = ACTIONS(2351), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2351), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(694), + [anon_sym_let] = ACTIONS(2351), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(2328), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(2353), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2351), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [sym_number] = ACTIONS(2337), + [sym_private_property_identifier] = ACTIONS(2337), + [anon_sym_static] = ACTIONS(2351), + [anon_sym_readonly] = ACTIONS(2351), + [anon_sym_get] = ACTIONS(2357), + [anon_sym_set] = ACTIONS(2357), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_declare] = ACTIONS(2351), + [anon_sym_public] = ACTIONS(2351), + [anon_sym_private] = ACTIONS(2351), + [anon_sym_protected] = ACTIONS(2351), + [anon_sym_override] = ACTIONS(2351), + [anon_sym_module] = ACTIONS(2351), + [anon_sym_any] = ACTIONS(2351), + [anon_sym_number] = ACTIONS(2351), + [anon_sym_boolean] = ACTIONS(2351), + [anon_sym_string] = ACTIONS(2351), + [anon_sym_symbol] = ACTIONS(2351), + [anon_sym_object] = ACTIONS(2351), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [706] = { - [ts_builtin_sym_end] = ACTIONS(1743), - [sym_identifier] = ACTIONS(1745), - [anon_sym_export] = ACTIONS(1745), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_type] = ACTIONS(1745), - [anon_sym_EQ] = ACTIONS(1745), - [anon_sym_namespace] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1743), - [anon_sym_COMMA] = ACTIONS(1743), - [anon_sym_RBRACE] = ACTIONS(1743), - [anon_sym_typeof] = ACTIONS(1745), - [anon_sym_import] = ACTIONS(1745), - [anon_sym_from] = ACTIONS(1745), - [anon_sym_with] = ACTIONS(1745), - [anon_sym_var] = ACTIONS(1745), - [anon_sym_let] = ACTIONS(1745), - [anon_sym_const] = ACTIONS(1745), - [anon_sym_BANG] = ACTIONS(1743), - [anon_sym_else] = ACTIONS(1745), - [anon_sym_if] = ACTIONS(1745), - [anon_sym_switch] = ACTIONS(1745), - [anon_sym_for] = ACTIONS(1745), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_SEMI] = ACTIONS(1743), - [anon_sym_RPAREN] = ACTIONS(1743), - [anon_sym_await] = ACTIONS(1745), - [anon_sym_while] = ACTIONS(1745), - [anon_sym_do] = ACTIONS(1745), - [anon_sym_try] = ACTIONS(1745), - [anon_sym_break] = ACTIONS(1745), - [anon_sym_continue] = ACTIONS(1745), - [anon_sym_debugger] = ACTIONS(1745), - [anon_sym_return] = ACTIONS(1745), - [anon_sym_throw] = ACTIONS(1745), - [anon_sym_COLON] = ACTIONS(1743), - [anon_sym_case] = ACTIONS(1745), - [anon_sym_yield] = ACTIONS(1745), - [anon_sym_LBRACK] = ACTIONS(1743), - [anon_sym_RBRACK] = ACTIONS(1743), - [sym_glimmer_opening_tag] = ACTIONS(1743), - [anon_sym_class] = ACTIONS(1745), - [anon_sym_async] = ACTIONS(1745), - [anon_sym_function] = ACTIONS(1745), - [anon_sym_EQ_GT] = ACTIONS(1743), - [anon_sym_new] = ACTIONS(1745), - [anon_sym_using] = ACTIONS(1745), - [anon_sym_AMP] = ACTIONS(1743), - [anon_sym_PIPE] = ACTIONS(1743), - [anon_sym_PLUS] = ACTIONS(1745), - [anon_sym_DASH] = ACTIONS(1745), - [anon_sym_SLASH] = ACTIONS(1745), - [anon_sym_LT] = ACTIONS(1745), - [anon_sym_GT] = ACTIONS(1743), - [anon_sym_TILDE] = ACTIONS(1743), - [anon_sym_void] = ACTIONS(1745), - [anon_sym_delete] = ACTIONS(1745), - [anon_sym_PLUS_PLUS] = ACTIONS(1743), - [anon_sym_DASH_DASH] = ACTIONS(1743), - [anon_sym_DQUOTE] = ACTIONS(1743), - [anon_sym_SQUOTE] = ACTIONS(1743), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1743), - [sym_number] = ACTIONS(1743), - [sym_private_property_identifier] = ACTIONS(1743), - [sym_this] = ACTIONS(1745), - [sym_super] = ACTIONS(1745), - [sym_true] = ACTIONS(1745), - [sym_false] = ACTIONS(1745), - [sym_null] = ACTIONS(1745), - [sym_undefined] = ACTIONS(1745), - [anon_sym_AT] = ACTIONS(1743), - [anon_sym_static] = ACTIONS(1745), - [anon_sym_readonly] = ACTIONS(1745), - [anon_sym_get] = ACTIONS(1745), - [anon_sym_set] = ACTIONS(1745), - [anon_sym_QMARK] = ACTIONS(1743), - [anon_sym_declare] = ACTIONS(1745), - [anon_sym_public] = ACTIONS(1745), - [anon_sym_private] = ACTIONS(1745), - [anon_sym_protected] = ACTIONS(1745), - [anon_sym_override] = ACTIONS(1745), - [anon_sym_module] = ACTIONS(1745), - [anon_sym_any] = ACTIONS(1745), - [anon_sym_number] = ACTIONS(1745), - [anon_sym_boolean] = ACTIONS(1745), - [anon_sym_string] = ACTIONS(1745), - [anon_sym_symbol] = ACTIONS(1745), - [anon_sym_object] = ACTIONS(1745), - [anon_sym_abstract] = ACTIONS(1745), - [anon_sym_extends] = ACTIONS(1745), - [anon_sym_interface] = ACTIONS(1745), - [anon_sym_enum] = ACTIONS(1745), + [sym_string] = STATE(3816), + [sym__property_name] = STATE(3816), + [sym_computed_property_name] = STATE(3816), + [aux_sym_object_repeat1] = STATE(4792), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(2351), + [anon_sym_export] = ACTIONS(2351), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2351), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2351), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(694), + [anon_sym_let] = ACTIONS(2351), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(2328), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(2351), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2351), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [sym_number] = ACTIONS(2337), + [sym_private_property_identifier] = ACTIONS(2337), + [anon_sym_static] = ACTIONS(2351), + [anon_sym_readonly] = ACTIONS(2351), + [anon_sym_get] = ACTIONS(2351), + [anon_sym_set] = ACTIONS(2351), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_declare] = ACTIONS(2351), + [anon_sym_public] = ACTIONS(2351), + [anon_sym_private] = ACTIONS(2351), + [anon_sym_protected] = ACTIONS(2351), + [anon_sym_override] = ACTIONS(2351), + [anon_sym_module] = ACTIONS(2351), + [anon_sym_any] = ACTIONS(2351), + [anon_sym_number] = ACTIONS(2351), + [anon_sym_boolean] = ACTIONS(2351), + [anon_sym_string] = ACTIONS(2351), + [anon_sym_symbol] = ACTIONS(2351), + [anon_sym_object] = ACTIONS(2351), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [707] = { - [sym_string] = STATE(3799), - [sym__property_name] = STATE(3799), - [sym_computed_property_name] = STATE(3799), - [aux_sym_object_repeat1] = STATE(4902), - [aux_sym_object_pattern_repeat1] = STATE(4834), - [sym_identifier] = ACTIONS(2362), - [anon_sym_export] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2328), - [anon_sym_type] = ACTIONS(2362), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2362), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_let] = ACTIONS(2362), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(2335), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_async] = ACTIONS(2364), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2362), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(2344), - [anon_sym_SQUOTE] = ACTIONS(2346), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [sym_number] = ACTIONS(2348), - [sym_private_property_identifier] = ACTIONS(2348), - [anon_sym_static] = ACTIONS(2362), - [anon_sym_readonly] = ACTIONS(2362), - [anon_sym_get] = ACTIONS(2368), - [anon_sym_set] = ACTIONS(2368), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(2362), - [anon_sym_public] = ACTIONS(2362), - [anon_sym_private] = ACTIONS(2362), - [anon_sym_protected] = ACTIONS(2362), - [anon_sym_override] = ACTIONS(2362), - [anon_sym_module] = ACTIONS(2362), - [anon_sym_any] = ACTIONS(2362), - [anon_sym_number] = ACTIONS(2362), - [anon_sym_boolean] = ACTIONS(2362), - [anon_sym_string] = ACTIONS(2362), - [anon_sym_symbol] = ACTIONS(2362), - [anon_sym_object] = ACTIONS(2362), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [sym_declaration] = STATE(867), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_class_declaration] = STATE(831), + [sym_function_declaration] = STATE(831), + [sym_generator_function_declaration] = STATE(831), + [sym_decorator] = STATE(1344), + [sym_function_signature] = STATE(831), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(824), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [aux_sym_export_statement_repeat1] = STATE(4301), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2341), + [anon_sym_EQ] = ACTIONS(858), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2137), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_import] = ACTIONS(2141), + [anon_sym_var] = ACTIONS(2143), + [anon_sym_let] = ACTIONS(2145), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(860), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_class] = ACTIONS(2152), + [anon_sym_async] = ACTIONS(2154), + [anon_sym_function] = ACTIONS(2156), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(2161), + [anon_sym_module] = ACTIONS(2343), + [anon_sym_abstract] = ACTIONS(2165), + [anon_sym_satisfies] = ACTIONS(154), + [anon_sym_global] = ACTIONS(2345), + [anon_sym_interface] = ACTIONS(2167), + [anon_sym_enum] = ACTIONS(2169), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [708] = { - [sym_string] = STATE(3799), - [sym__property_name] = STATE(3799), - [sym_computed_property_name] = STATE(3799), - [aux_sym_object_repeat1] = STATE(4902), - [aux_sym_object_pattern_repeat1] = STATE(4834), - [sym_identifier] = ACTIONS(2362), - [anon_sym_export] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2362), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2362), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_let] = ACTIONS(2362), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(2335), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_async] = ACTIONS(2362), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2362), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(2344), - [anon_sym_SQUOTE] = ACTIONS(2346), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [sym_number] = ACTIONS(2348), - [sym_private_property_identifier] = ACTIONS(2348), - [anon_sym_static] = ACTIONS(2362), - [anon_sym_readonly] = ACTIONS(2362), - [anon_sym_get] = ACTIONS(2362), - [anon_sym_set] = ACTIONS(2362), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(2362), - [anon_sym_public] = ACTIONS(2362), - [anon_sym_private] = ACTIONS(2362), - [anon_sym_protected] = ACTIONS(2362), - [anon_sym_override] = ACTIONS(2362), - [anon_sym_module] = ACTIONS(2362), - [anon_sym_any] = ACTIONS(2362), - [anon_sym_number] = ACTIONS(2362), - [anon_sym_boolean] = ACTIONS(2362), - [anon_sym_string] = ACTIONS(2362), - [anon_sym_symbol] = ACTIONS(2362), - [anon_sym_object] = ACTIONS(2362), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [ts_builtin_sym_end] = ACTIONS(1726), + [sym_identifier] = ACTIONS(1728), + [anon_sym_export] = ACTIONS(1728), + [anon_sym_default] = ACTIONS(1728), + [anon_sym_type] = ACTIONS(1728), + [anon_sym_EQ] = ACTIONS(1728), + [anon_sym_namespace] = ACTIONS(1728), + [anon_sym_LBRACE] = ACTIONS(1726), + [anon_sym_COMMA] = ACTIONS(1726), + [anon_sym_RBRACE] = ACTIONS(1726), + [anon_sym_typeof] = ACTIONS(1728), + [anon_sym_import] = ACTIONS(1728), + [anon_sym_from] = ACTIONS(1728), + [anon_sym_with] = ACTIONS(1728), + [anon_sym_var] = ACTIONS(1728), + [anon_sym_let] = ACTIONS(1728), + [anon_sym_const] = ACTIONS(1728), + [anon_sym_BANG] = ACTIONS(1726), + [anon_sym_else] = ACTIONS(1728), + [anon_sym_if] = ACTIONS(1728), + [anon_sym_switch] = ACTIONS(1728), + [anon_sym_for] = ACTIONS(1728), + [anon_sym_LPAREN] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_RPAREN] = ACTIONS(1726), + [anon_sym_await] = ACTIONS(1728), + [anon_sym_while] = ACTIONS(1728), + [anon_sym_do] = ACTIONS(1728), + [anon_sym_try] = ACTIONS(1728), + [anon_sym_break] = ACTIONS(1728), + [anon_sym_continue] = ACTIONS(1728), + [anon_sym_debugger] = ACTIONS(1728), + [anon_sym_return] = ACTIONS(1728), + [anon_sym_throw] = ACTIONS(1728), + [anon_sym_COLON] = ACTIONS(1726), + [anon_sym_case] = ACTIONS(1728), + [anon_sym_yield] = ACTIONS(1728), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_RBRACK] = ACTIONS(1726), + [anon_sym_class] = ACTIONS(1728), + [anon_sym_async] = ACTIONS(1728), + [anon_sym_function] = ACTIONS(1728), + [anon_sym_EQ_GT] = ACTIONS(1726), + [anon_sym_new] = ACTIONS(1728), + [anon_sym_using] = ACTIONS(1728), + [anon_sym_AMP] = ACTIONS(1726), + [anon_sym_PIPE] = ACTIONS(1726), + [anon_sym_PLUS] = ACTIONS(1728), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_SLASH] = ACTIONS(1728), + [anon_sym_LT] = ACTIONS(1726), + [anon_sym_GT] = ACTIONS(1726), + [anon_sym_TILDE] = ACTIONS(1726), + [anon_sym_void] = ACTIONS(1728), + [anon_sym_delete] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1726), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1726), + [anon_sym_SQUOTE] = ACTIONS(1726), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1726), + [sym_number] = ACTIONS(1726), + [sym_private_property_identifier] = ACTIONS(1726), + [sym_this] = ACTIONS(1728), + [sym_super] = ACTIONS(1728), + [sym_true] = ACTIONS(1728), + [sym_false] = ACTIONS(1728), + [sym_null] = ACTIONS(1728), + [sym_undefined] = ACTIONS(1728), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_static] = ACTIONS(1728), + [anon_sym_readonly] = ACTIONS(1728), + [anon_sym_get] = ACTIONS(1728), + [anon_sym_set] = ACTIONS(1728), + [anon_sym_QMARK] = ACTIONS(1726), + [anon_sym_declare] = ACTIONS(1728), + [anon_sym_public] = ACTIONS(1728), + [anon_sym_private] = ACTIONS(1728), + [anon_sym_protected] = ACTIONS(1728), + [anon_sym_override] = ACTIONS(1728), + [anon_sym_module] = ACTIONS(1728), + [anon_sym_any] = ACTIONS(1728), + [anon_sym_number] = ACTIONS(1728), + [anon_sym_boolean] = ACTIONS(1728), + [anon_sym_string] = ACTIONS(1728), + [anon_sym_symbol] = ACTIONS(1728), + [anon_sym_object] = ACTIONS(1728), + [anon_sym_abstract] = ACTIONS(1728), + [anon_sym_extends] = ACTIONS(1728), + [anon_sym_interface] = ACTIONS(1728), + [anon_sym_enum] = ACTIONS(1728), [sym_html_comment] = ACTIONS(5), }, [709] = { - [ts_builtin_sym_end] = ACTIONS(2372), - [sym_identifier] = ACTIONS(2374), - [anon_sym_export] = ACTIONS(2374), - [anon_sym_default] = ACTIONS(2374), - [anon_sym_type] = ACTIONS(2374), - [anon_sym_EQ] = ACTIONS(2374), - [anon_sym_namespace] = ACTIONS(2374), - [anon_sym_LBRACE] = ACTIONS(2372), - [anon_sym_COMMA] = ACTIONS(2372), - [anon_sym_RBRACE] = ACTIONS(2372), - [anon_sym_typeof] = ACTIONS(2374), - [anon_sym_import] = ACTIONS(2374), - [anon_sym_with] = ACTIONS(2374), - [anon_sym_var] = ACTIONS(2374), - [anon_sym_let] = ACTIONS(2374), - [anon_sym_const] = ACTIONS(2374), - [anon_sym_BANG] = ACTIONS(2372), - [anon_sym_else] = ACTIONS(2374), - [anon_sym_if] = ACTIONS(2374), - [anon_sym_switch] = ACTIONS(2374), - [anon_sym_for] = ACTIONS(2374), - [anon_sym_LPAREN] = ACTIONS(2372), - [anon_sym_SEMI] = ACTIONS(2372), - [anon_sym_RPAREN] = ACTIONS(2372), - [anon_sym_await] = ACTIONS(2374), - [anon_sym_while] = ACTIONS(2374), - [anon_sym_do] = ACTIONS(2374), - [anon_sym_try] = ACTIONS(2374), - [anon_sym_break] = ACTIONS(2374), - [anon_sym_continue] = ACTIONS(2374), - [anon_sym_debugger] = ACTIONS(2374), - [anon_sym_return] = ACTIONS(2374), - [anon_sym_throw] = ACTIONS(2374), - [anon_sym_COLON] = ACTIONS(2372), - [anon_sym_case] = ACTIONS(2374), - [anon_sym_yield] = ACTIONS(2374), - [anon_sym_LBRACK] = ACTIONS(2372), - [anon_sym_RBRACK] = ACTIONS(2372), - [sym_glimmer_opening_tag] = ACTIONS(2372), - [anon_sym_class] = ACTIONS(2374), - [anon_sym_async] = ACTIONS(2374), - [anon_sym_function] = ACTIONS(2374), - [anon_sym_EQ_GT] = ACTIONS(2372), - [anon_sym_new] = ACTIONS(2374), - [anon_sym_using] = ACTIONS(2374), - [anon_sym_AMP] = ACTIONS(2372), - [anon_sym_PIPE] = ACTIONS(2372), - [anon_sym_PLUS] = ACTIONS(2374), - [anon_sym_DASH] = ACTIONS(2374), - [anon_sym_SLASH] = ACTIONS(2374), - [anon_sym_LT] = ACTIONS(2374), - [anon_sym_GT] = ACTIONS(2372), - [anon_sym_TILDE] = ACTIONS(2372), - [anon_sym_void] = ACTIONS(2374), - [anon_sym_delete] = ACTIONS(2374), - [anon_sym_PLUS_PLUS] = ACTIONS(2372), - [anon_sym_DASH_DASH] = ACTIONS(2372), - [anon_sym_DQUOTE] = ACTIONS(2372), - [anon_sym_SQUOTE] = ACTIONS(2372), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2372), - [sym_number] = ACTIONS(2372), - [sym_private_property_identifier] = ACTIONS(2372), - [sym_this] = ACTIONS(2374), - [sym_super] = ACTIONS(2374), - [sym_true] = ACTIONS(2374), - [sym_false] = ACTIONS(2374), - [sym_null] = ACTIONS(2374), - [sym_undefined] = ACTIONS(2374), - [anon_sym_AT] = ACTIONS(2372), - [anon_sym_static] = ACTIONS(2374), - [anon_sym_readonly] = ACTIONS(2374), - [anon_sym_get] = ACTIONS(2374), - [anon_sym_set] = ACTIONS(2374), - [anon_sym_QMARK] = ACTIONS(2372), - [anon_sym_declare] = ACTIONS(2374), - [anon_sym_public] = ACTIONS(2374), - [anon_sym_private] = ACTIONS(2374), - [anon_sym_protected] = ACTIONS(2374), - [anon_sym_override] = ACTIONS(2374), - [anon_sym_module] = ACTIONS(2374), - [anon_sym_any] = ACTIONS(2374), - [anon_sym_number] = ACTIONS(2374), - [anon_sym_boolean] = ACTIONS(2374), - [anon_sym_string] = ACTIONS(2374), - [anon_sym_symbol] = ACTIONS(2374), - [anon_sym_object] = ACTIONS(2374), - [anon_sym_abstract] = ACTIONS(2374), - [anon_sym_extends] = ACTIONS(2374), - [anon_sym_interface] = ACTIONS(2374), - [anon_sym_enum] = ACTIONS(2374), + [ts_builtin_sym_end] = ACTIONS(1754), + [sym_identifier] = ACTIONS(1756), + [anon_sym_export] = ACTIONS(1756), + [anon_sym_default] = ACTIONS(1756), + [anon_sym_type] = ACTIONS(1756), + [anon_sym_EQ] = ACTIONS(1756), + [anon_sym_namespace] = ACTIONS(1756), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_COMMA] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_typeof] = ACTIONS(1756), + [anon_sym_import] = ACTIONS(1756), + [anon_sym_from] = ACTIONS(1756), + [anon_sym_with] = ACTIONS(1756), + [anon_sym_var] = ACTIONS(1756), + [anon_sym_let] = ACTIONS(1756), + [anon_sym_const] = ACTIONS(1756), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1756), + [anon_sym_if] = ACTIONS(1756), + [anon_sym_switch] = ACTIONS(1756), + [anon_sym_for] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_RPAREN] = ACTIONS(1754), + [anon_sym_await] = ACTIONS(1756), + [anon_sym_while] = ACTIONS(1756), + [anon_sym_do] = ACTIONS(1756), + [anon_sym_try] = ACTIONS(1756), + [anon_sym_break] = ACTIONS(1756), + [anon_sym_continue] = ACTIONS(1756), + [anon_sym_debugger] = ACTIONS(1756), + [anon_sym_return] = ACTIONS(1756), + [anon_sym_throw] = ACTIONS(1756), + [anon_sym_COLON] = ACTIONS(1754), + [anon_sym_case] = ACTIONS(1756), + [anon_sym_yield] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_RBRACK] = ACTIONS(1754), + [anon_sym_class] = ACTIONS(1756), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_function] = ACTIONS(1756), + [anon_sym_EQ_GT] = ACTIONS(1754), + [anon_sym_new] = ACTIONS(1756), + [anon_sym_using] = ACTIONS(1756), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_PIPE] = ACTIONS(1754), + [anon_sym_PLUS] = ACTIONS(1756), + [anon_sym_DASH] = ACTIONS(1756), + [anon_sym_SLASH] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_void] = ACTIONS(1756), + [anon_sym_delete] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_DQUOTE] = ACTIONS(1754), + [anon_sym_SQUOTE] = ACTIONS(1754), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1754), + [sym_number] = ACTIONS(1754), + [sym_private_property_identifier] = ACTIONS(1754), + [sym_this] = ACTIONS(1756), + [sym_super] = ACTIONS(1756), + [sym_true] = ACTIONS(1756), + [sym_false] = ACTIONS(1756), + [sym_null] = ACTIONS(1756), + [sym_undefined] = ACTIONS(1756), + [anon_sym_AT] = ACTIONS(1754), + [anon_sym_static] = ACTIONS(1756), + [anon_sym_readonly] = ACTIONS(1756), + [anon_sym_get] = ACTIONS(1756), + [anon_sym_set] = ACTIONS(1756), + [anon_sym_QMARK] = ACTIONS(1754), + [anon_sym_declare] = ACTIONS(1756), + [anon_sym_public] = ACTIONS(1756), + [anon_sym_private] = ACTIONS(1756), + [anon_sym_protected] = ACTIONS(1756), + [anon_sym_override] = ACTIONS(1756), + [anon_sym_module] = ACTIONS(1756), + [anon_sym_any] = ACTIONS(1756), + [anon_sym_number] = ACTIONS(1756), + [anon_sym_boolean] = ACTIONS(1756), + [anon_sym_string] = ACTIONS(1756), + [anon_sym_symbol] = ACTIONS(1756), + [anon_sym_object] = ACTIONS(1756), + [anon_sym_abstract] = ACTIONS(1756), + [anon_sym_extends] = ACTIONS(1756), + [anon_sym_interface] = ACTIONS(1756), + [anon_sym_enum] = ACTIONS(1756), [sym_html_comment] = ACTIONS(5), }, [710] = { - [ts_builtin_sym_end] = ACTIONS(2376), - [sym_identifier] = ACTIONS(2378), - [anon_sym_export] = ACTIONS(2378), - [anon_sym_default] = ACTIONS(2378), - [anon_sym_type] = ACTIONS(2378), - [anon_sym_EQ] = ACTIONS(2378), - [anon_sym_namespace] = ACTIONS(2378), - [anon_sym_LBRACE] = ACTIONS(2376), - [anon_sym_COMMA] = ACTIONS(2376), - [anon_sym_RBRACE] = ACTIONS(2376), - [anon_sym_typeof] = ACTIONS(2378), - [anon_sym_import] = ACTIONS(2378), - [anon_sym_with] = ACTIONS(2378), - [anon_sym_var] = ACTIONS(2378), - [anon_sym_let] = ACTIONS(2378), - [anon_sym_const] = ACTIONS(2378), - [anon_sym_BANG] = ACTIONS(2376), - [anon_sym_else] = ACTIONS(2378), - [anon_sym_if] = ACTIONS(2378), - [anon_sym_switch] = ACTIONS(2378), - [anon_sym_for] = ACTIONS(2378), - [anon_sym_LPAREN] = ACTIONS(2376), - [anon_sym_SEMI] = ACTIONS(2376), - [anon_sym_RPAREN] = ACTIONS(2376), - [anon_sym_await] = ACTIONS(2378), - [anon_sym_while] = ACTIONS(2378), - [anon_sym_do] = ACTIONS(2378), - [anon_sym_try] = ACTIONS(2378), - [anon_sym_break] = ACTIONS(2378), - [anon_sym_continue] = ACTIONS(2378), - [anon_sym_debugger] = ACTIONS(2378), - [anon_sym_return] = ACTIONS(2378), - [anon_sym_throw] = ACTIONS(2378), - [anon_sym_COLON] = ACTIONS(2376), - [anon_sym_case] = ACTIONS(2378), - [anon_sym_yield] = ACTIONS(2378), - [anon_sym_LBRACK] = ACTIONS(2376), - [anon_sym_RBRACK] = ACTIONS(2376), - [sym_glimmer_opening_tag] = ACTIONS(2376), - [anon_sym_class] = ACTIONS(2378), - [anon_sym_async] = ACTIONS(2378), - [anon_sym_function] = ACTIONS(2378), - [anon_sym_EQ_GT] = ACTIONS(2376), - [anon_sym_new] = ACTIONS(2378), - [anon_sym_using] = ACTIONS(2378), - [anon_sym_AMP] = ACTIONS(2376), - [anon_sym_PIPE] = ACTIONS(2376), - [anon_sym_PLUS] = ACTIONS(2378), - [anon_sym_DASH] = ACTIONS(2378), - [anon_sym_SLASH] = ACTIONS(2378), - [anon_sym_LT] = ACTIONS(2378), - [anon_sym_GT] = ACTIONS(2376), - [anon_sym_TILDE] = ACTIONS(2376), - [anon_sym_void] = ACTIONS(2378), - [anon_sym_delete] = ACTIONS(2378), - [anon_sym_PLUS_PLUS] = ACTIONS(2376), - [anon_sym_DASH_DASH] = ACTIONS(2376), - [anon_sym_DQUOTE] = ACTIONS(2376), - [anon_sym_SQUOTE] = ACTIONS(2376), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2376), - [sym_number] = ACTIONS(2376), - [sym_private_property_identifier] = ACTIONS(2376), - [sym_this] = ACTIONS(2378), - [sym_super] = ACTIONS(2378), - [sym_true] = ACTIONS(2378), - [sym_false] = ACTIONS(2378), - [sym_null] = ACTIONS(2378), - [sym_undefined] = ACTIONS(2378), - [anon_sym_AT] = ACTIONS(2376), - [anon_sym_static] = ACTIONS(2378), - [anon_sym_readonly] = ACTIONS(2378), - [anon_sym_get] = ACTIONS(2378), - [anon_sym_set] = ACTIONS(2378), - [anon_sym_QMARK] = ACTIONS(2376), - [anon_sym_declare] = ACTIONS(2378), - [anon_sym_public] = ACTIONS(2378), - [anon_sym_private] = ACTIONS(2378), - [anon_sym_protected] = ACTIONS(2378), - [anon_sym_override] = ACTIONS(2378), - [anon_sym_module] = ACTIONS(2378), - [anon_sym_any] = ACTIONS(2378), - [anon_sym_number] = ACTIONS(2378), - [anon_sym_boolean] = ACTIONS(2378), - [anon_sym_string] = ACTIONS(2378), - [anon_sym_symbol] = ACTIONS(2378), - [anon_sym_object] = ACTIONS(2378), - [anon_sym_abstract] = ACTIONS(2378), - [anon_sym_extends] = ACTIONS(2378), - [anon_sym_interface] = ACTIONS(2378), - [anon_sym_enum] = ACTIONS(2378), + [sym_declaration] = STATE(867), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_class_declaration] = STATE(831), + [sym_function_declaration] = STATE(831), + [sym_generator_function_declaration] = STATE(831), + [sym_decorator] = STATE(1344), + [sym_function_signature] = STATE(831), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(824), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [aux_sym_export_statement_repeat1] = STATE(4301), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2341), + [anon_sym_EQ] = ACTIONS(858), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2137), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_import] = ACTIONS(2141), + [anon_sym_var] = ACTIONS(2143), + [anon_sym_let] = ACTIONS(2145), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_class] = ACTIONS(2152), + [anon_sym_async] = ACTIONS(2154), + [anon_sym_function] = ACTIONS(2156), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(2161), + [anon_sym_module] = ACTIONS(2343), + [anon_sym_abstract] = ACTIONS(2165), + [anon_sym_satisfies] = ACTIONS(154), + [anon_sym_global] = ACTIONS(2345), + [anon_sym_interface] = ACTIONS(2167), + [anon_sym_enum] = ACTIONS(2169), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [711] = { - [sym_declaration] = STATE(869), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_class_declaration] = STATE(837), - [sym_function_declaration] = STATE(837), - [sym_generator_function_declaration] = STATE(837), - [sym_decorator] = STATE(1285), - [sym_function_signature] = STATE(837), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(825), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [aux_sym_export_statement_repeat1] = STATE(4085), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2352), - [anon_sym_EQ] = ACTIONS(855), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2290), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_import] = ACTIONS(2294), - [anon_sym_var] = ACTIONS(2296), - [anon_sym_let] = ACTIONS(2298), - [anon_sym_const] = ACTIONS(2300), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(857), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_class] = ACTIONS(2305), - [anon_sym_async] = ACTIONS(2307), - [anon_sym_function] = ACTIONS(2309), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(157), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(2314), - [anon_sym_module] = ACTIONS(2354), - [anon_sym_abstract] = ACTIONS(2318), - [anon_sym_satisfies] = ACTIONS(157), - [anon_sym_global] = ACTIONS(2356), - [anon_sym_interface] = ACTIONS(2320), - [anon_sym_enum] = ACTIONS(2322), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [ts_builtin_sym_end] = ACTIONS(2361), + [sym_identifier] = ACTIONS(2363), + [anon_sym_export] = ACTIONS(2363), + [anon_sym_default] = ACTIONS(2363), + [anon_sym_type] = ACTIONS(2363), + [anon_sym_EQ] = ACTIONS(2363), + [anon_sym_namespace] = ACTIONS(2363), + [anon_sym_LBRACE] = ACTIONS(2361), + [anon_sym_COMMA] = ACTIONS(2361), + [anon_sym_RBRACE] = ACTIONS(2361), + [anon_sym_typeof] = ACTIONS(2363), + [anon_sym_import] = ACTIONS(2363), + [anon_sym_with] = ACTIONS(2363), + [anon_sym_var] = ACTIONS(2363), + [anon_sym_let] = ACTIONS(2363), + [anon_sym_const] = ACTIONS(2363), + [anon_sym_BANG] = ACTIONS(2361), + [anon_sym_else] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(2363), + [anon_sym_switch] = ACTIONS(2363), + [anon_sym_for] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(2361), + [anon_sym_SEMI] = ACTIONS(2361), + [anon_sym_RPAREN] = ACTIONS(2361), + [anon_sym_await] = ACTIONS(2363), + [anon_sym_while] = ACTIONS(2363), + [anon_sym_do] = ACTIONS(2363), + [anon_sym_try] = ACTIONS(2363), + [anon_sym_break] = ACTIONS(2363), + [anon_sym_continue] = ACTIONS(2363), + [anon_sym_debugger] = ACTIONS(2363), + [anon_sym_return] = ACTIONS(2363), + [anon_sym_throw] = ACTIONS(2363), + [anon_sym_COLON] = ACTIONS(2361), + [anon_sym_case] = ACTIONS(2363), + [anon_sym_yield] = ACTIONS(2363), + [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_RBRACK] = ACTIONS(2361), + [anon_sym_class] = ACTIONS(2363), + [anon_sym_async] = ACTIONS(2363), + [anon_sym_function] = ACTIONS(2363), + [anon_sym_EQ_GT] = ACTIONS(2361), + [anon_sym_new] = ACTIONS(2363), + [anon_sym_using] = ACTIONS(2363), + [anon_sym_AMP] = ACTIONS(2361), + [anon_sym_PIPE] = ACTIONS(2361), + [anon_sym_PLUS] = ACTIONS(2363), + [anon_sym_DASH] = ACTIONS(2363), + [anon_sym_SLASH] = ACTIONS(2363), + [anon_sym_LT] = ACTIONS(2361), + [anon_sym_GT] = ACTIONS(2361), + [anon_sym_TILDE] = ACTIONS(2361), + [anon_sym_void] = ACTIONS(2363), + [anon_sym_delete] = ACTIONS(2363), + [anon_sym_PLUS_PLUS] = ACTIONS(2361), + [anon_sym_DASH_DASH] = ACTIONS(2361), + [anon_sym_DQUOTE] = ACTIONS(2361), + [anon_sym_SQUOTE] = ACTIONS(2361), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2361), + [sym_number] = ACTIONS(2361), + [sym_private_property_identifier] = ACTIONS(2361), + [sym_this] = ACTIONS(2363), + [sym_super] = ACTIONS(2363), + [sym_true] = ACTIONS(2363), + [sym_false] = ACTIONS(2363), + [sym_null] = ACTIONS(2363), + [sym_undefined] = ACTIONS(2363), + [anon_sym_AT] = ACTIONS(2361), + [anon_sym_static] = ACTIONS(2363), + [anon_sym_readonly] = ACTIONS(2363), + [anon_sym_get] = ACTIONS(2363), + [anon_sym_set] = ACTIONS(2363), + [anon_sym_QMARK] = ACTIONS(2361), + [anon_sym_declare] = ACTIONS(2363), + [anon_sym_public] = ACTIONS(2363), + [anon_sym_private] = ACTIONS(2363), + [anon_sym_protected] = ACTIONS(2363), + [anon_sym_override] = ACTIONS(2363), + [anon_sym_module] = ACTIONS(2363), + [anon_sym_any] = ACTIONS(2363), + [anon_sym_number] = ACTIONS(2363), + [anon_sym_boolean] = ACTIONS(2363), + [anon_sym_string] = ACTIONS(2363), + [anon_sym_symbol] = ACTIONS(2363), + [anon_sym_object] = ACTIONS(2363), + [anon_sym_abstract] = ACTIONS(2363), + [anon_sym_extends] = ACTIONS(2363), + [anon_sym_interface] = ACTIONS(2363), + [anon_sym_enum] = ACTIONS(2363), [sym_html_comment] = ACTIONS(5), }, [712] = { - [ts_builtin_sym_end] = ACTIONS(2380), - [sym_identifier] = ACTIONS(2382), - [anon_sym_export] = ACTIONS(2382), - [anon_sym_default] = ACTIONS(2382), - [anon_sym_type] = ACTIONS(2382), - [anon_sym_EQ] = ACTIONS(2382), - [anon_sym_namespace] = ACTIONS(2382), - [anon_sym_LBRACE] = ACTIONS(2380), - [anon_sym_COMMA] = ACTIONS(2380), - [anon_sym_RBRACE] = ACTIONS(2380), - [anon_sym_typeof] = ACTIONS(2382), - [anon_sym_import] = ACTIONS(2382), - [anon_sym_with] = ACTIONS(2382), - [anon_sym_var] = ACTIONS(2382), - [anon_sym_let] = ACTIONS(2382), - [anon_sym_const] = ACTIONS(2382), - [anon_sym_BANG] = ACTIONS(2380), - [anon_sym_else] = ACTIONS(2382), - [anon_sym_if] = ACTIONS(2382), - [anon_sym_switch] = ACTIONS(2382), - [anon_sym_for] = ACTIONS(2382), - [anon_sym_LPAREN] = ACTIONS(2380), - [anon_sym_SEMI] = ACTIONS(2380), - [anon_sym_RPAREN] = ACTIONS(2380), - [anon_sym_await] = ACTIONS(2382), - [anon_sym_while] = ACTIONS(2382), - [anon_sym_do] = ACTIONS(2382), - [anon_sym_try] = ACTIONS(2382), - [anon_sym_break] = ACTIONS(2382), - [anon_sym_continue] = ACTIONS(2382), - [anon_sym_debugger] = ACTIONS(2382), - [anon_sym_return] = ACTIONS(2382), - [anon_sym_throw] = ACTIONS(2382), - [anon_sym_COLON] = ACTIONS(2380), - [anon_sym_case] = ACTIONS(2382), - [anon_sym_yield] = ACTIONS(2382), - [anon_sym_LBRACK] = ACTIONS(2380), - [anon_sym_RBRACK] = ACTIONS(2380), - [sym_glimmer_opening_tag] = ACTIONS(2380), - [anon_sym_class] = ACTIONS(2382), - [anon_sym_async] = ACTIONS(2382), - [anon_sym_function] = ACTIONS(2382), - [anon_sym_EQ_GT] = ACTIONS(2380), - [anon_sym_new] = ACTIONS(2382), - [anon_sym_using] = ACTIONS(2382), - [anon_sym_AMP] = ACTIONS(2380), - [anon_sym_PIPE] = ACTIONS(2380), - [anon_sym_PLUS] = ACTIONS(2382), - [anon_sym_DASH] = ACTIONS(2382), - [anon_sym_SLASH] = ACTIONS(2382), - [anon_sym_LT] = ACTIONS(2382), - [anon_sym_GT] = ACTIONS(2380), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_void] = ACTIONS(2382), - [anon_sym_delete] = ACTIONS(2382), - [anon_sym_PLUS_PLUS] = ACTIONS(2380), - [anon_sym_DASH_DASH] = ACTIONS(2380), - [anon_sym_DQUOTE] = ACTIONS(2380), - [anon_sym_SQUOTE] = ACTIONS(2380), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2380), - [sym_number] = ACTIONS(2380), - [sym_private_property_identifier] = ACTIONS(2380), - [sym_this] = ACTIONS(2382), - [sym_super] = ACTIONS(2382), - [sym_true] = ACTIONS(2382), - [sym_false] = ACTIONS(2382), - [sym_null] = ACTIONS(2382), - [sym_undefined] = ACTIONS(2382), - [anon_sym_AT] = ACTIONS(2380), - [anon_sym_static] = ACTIONS(2382), - [anon_sym_readonly] = ACTIONS(2382), - [anon_sym_get] = ACTIONS(2382), - [anon_sym_set] = ACTIONS(2382), - [anon_sym_QMARK] = ACTIONS(2380), - [anon_sym_declare] = ACTIONS(2382), - [anon_sym_public] = ACTIONS(2382), - [anon_sym_private] = ACTIONS(2382), - [anon_sym_protected] = ACTIONS(2382), - [anon_sym_override] = ACTIONS(2382), - [anon_sym_module] = ACTIONS(2382), - [anon_sym_any] = ACTIONS(2382), - [anon_sym_number] = ACTIONS(2382), - [anon_sym_boolean] = ACTIONS(2382), - [anon_sym_string] = ACTIONS(2382), - [anon_sym_symbol] = ACTIONS(2382), - [anon_sym_object] = ACTIONS(2382), - [anon_sym_abstract] = ACTIONS(2382), - [anon_sym_extends] = ACTIONS(2382), - [anon_sym_interface] = ACTIONS(2382), - [anon_sym_enum] = ACTIONS(2382), + [ts_builtin_sym_end] = ACTIONS(2365), + [sym_identifier] = ACTIONS(2367), + [anon_sym_export] = ACTIONS(2367), + [anon_sym_default] = ACTIONS(2367), + [anon_sym_type] = ACTIONS(2367), + [anon_sym_EQ] = ACTIONS(2367), + [anon_sym_namespace] = ACTIONS(2367), + [anon_sym_LBRACE] = ACTIONS(2365), + [anon_sym_COMMA] = ACTIONS(2365), + [anon_sym_RBRACE] = ACTIONS(2365), + [anon_sym_typeof] = ACTIONS(2367), + [anon_sym_import] = ACTIONS(2367), + [anon_sym_with] = ACTIONS(2367), + [anon_sym_var] = ACTIONS(2367), + [anon_sym_let] = ACTIONS(2367), + [anon_sym_const] = ACTIONS(2367), + [anon_sym_BANG] = ACTIONS(2365), + [anon_sym_else] = ACTIONS(2367), + [anon_sym_if] = ACTIONS(2367), + [anon_sym_switch] = ACTIONS(2367), + [anon_sym_for] = ACTIONS(2367), + [anon_sym_LPAREN] = ACTIONS(2365), + [anon_sym_SEMI] = ACTIONS(2365), + [anon_sym_RPAREN] = ACTIONS(2365), + [anon_sym_await] = ACTIONS(2367), + [anon_sym_while] = ACTIONS(2367), + [anon_sym_do] = ACTIONS(2367), + [anon_sym_try] = ACTIONS(2367), + [anon_sym_break] = ACTIONS(2367), + [anon_sym_continue] = ACTIONS(2367), + [anon_sym_debugger] = ACTIONS(2367), + [anon_sym_return] = ACTIONS(2367), + [anon_sym_throw] = ACTIONS(2367), + [anon_sym_COLON] = ACTIONS(2365), + [anon_sym_case] = ACTIONS(2367), + [anon_sym_yield] = ACTIONS(2367), + [anon_sym_LBRACK] = ACTIONS(2365), + [anon_sym_RBRACK] = ACTIONS(2365), + [anon_sym_class] = ACTIONS(2367), + [anon_sym_async] = ACTIONS(2367), + [anon_sym_function] = ACTIONS(2367), + [anon_sym_EQ_GT] = ACTIONS(2365), + [anon_sym_new] = ACTIONS(2367), + [anon_sym_using] = ACTIONS(2367), + [anon_sym_AMP] = ACTIONS(2365), + [anon_sym_PIPE] = ACTIONS(2365), + [anon_sym_PLUS] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2367), + [anon_sym_SLASH] = ACTIONS(2367), + [anon_sym_LT] = ACTIONS(2365), + [anon_sym_GT] = ACTIONS(2365), + [anon_sym_TILDE] = ACTIONS(2365), + [anon_sym_void] = ACTIONS(2367), + [anon_sym_delete] = ACTIONS(2367), + [anon_sym_PLUS_PLUS] = ACTIONS(2365), + [anon_sym_DASH_DASH] = ACTIONS(2365), + [anon_sym_DQUOTE] = ACTIONS(2365), + [anon_sym_SQUOTE] = ACTIONS(2365), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2365), + [sym_number] = ACTIONS(2365), + [sym_private_property_identifier] = ACTIONS(2365), + [sym_this] = ACTIONS(2367), + [sym_super] = ACTIONS(2367), + [sym_true] = ACTIONS(2367), + [sym_false] = ACTIONS(2367), + [sym_null] = ACTIONS(2367), + [sym_undefined] = ACTIONS(2367), + [anon_sym_AT] = ACTIONS(2365), + [anon_sym_static] = ACTIONS(2367), + [anon_sym_readonly] = ACTIONS(2367), + [anon_sym_get] = ACTIONS(2367), + [anon_sym_set] = ACTIONS(2367), + [anon_sym_QMARK] = ACTIONS(2365), + [anon_sym_declare] = ACTIONS(2367), + [anon_sym_public] = ACTIONS(2367), + [anon_sym_private] = ACTIONS(2367), + [anon_sym_protected] = ACTIONS(2367), + [anon_sym_override] = ACTIONS(2367), + [anon_sym_module] = ACTIONS(2367), + [anon_sym_any] = ACTIONS(2367), + [anon_sym_number] = ACTIONS(2367), + [anon_sym_boolean] = ACTIONS(2367), + [anon_sym_string] = ACTIONS(2367), + [anon_sym_symbol] = ACTIONS(2367), + [anon_sym_object] = ACTIONS(2367), + [anon_sym_abstract] = ACTIONS(2367), + [anon_sym_extends] = ACTIONS(2367), + [anon_sym_interface] = ACTIONS(2367), + [anon_sym_enum] = ACTIONS(2367), [sym_html_comment] = ACTIONS(5), }, [713] = { - [ts_builtin_sym_end] = ACTIONS(2384), - [sym_identifier] = ACTIONS(2386), - [anon_sym_export] = ACTIONS(2386), - [anon_sym_default] = ACTIONS(2386), - [anon_sym_type] = ACTIONS(2386), - [anon_sym_EQ] = ACTIONS(2386), - [anon_sym_namespace] = ACTIONS(2386), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_COMMA] = ACTIONS(2384), - [anon_sym_RBRACE] = ACTIONS(2384), - [anon_sym_typeof] = ACTIONS(2386), - [anon_sym_import] = ACTIONS(2386), - [anon_sym_with] = ACTIONS(2386), - [anon_sym_var] = ACTIONS(2386), - [anon_sym_let] = ACTIONS(2386), - [anon_sym_const] = ACTIONS(2386), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_else] = ACTIONS(2386), - [anon_sym_if] = ACTIONS(2386), - [anon_sym_switch] = ACTIONS(2386), - [anon_sym_for] = ACTIONS(2386), - [anon_sym_LPAREN] = ACTIONS(2384), - [anon_sym_SEMI] = ACTIONS(2384), - [anon_sym_RPAREN] = ACTIONS(2384), - [anon_sym_await] = ACTIONS(2386), - [anon_sym_while] = ACTIONS(2386), - [anon_sym_do] = ACTIONS(2386), - [anon_sym_try] = ACTIONS(2386), - [anon_sym_break] = ACTIONS(2386), - [anon_sym_continue] = ACTIONS(2386), - [anon_sym_debugger] = ACTIONS(2386), - [anon_sym_return] = ACTIONS(2386), - [anon_sym_throw] = ACTIONS(2386), - [anon_sym_COLON] = ACTIONS(2384), - [anon_sym_case] = ACTIONS(2386), - [anon_sym_yield] = ACTIONS(2386), - [anon_sym_LBRACK] = ACTIONS(2384), - [anon_sym_RBRACK] = ACTIONS(2384), - [sym_glimmer_opening_tag] = ACTIONS(2384), - [anon_sym_class] = ACTIONS(2386), - [anon_sym_async] = ACTIONS(2386), - [anon_sym_function] = ACTIONS(2386), - [anon_sym_EQ_GT] = ACTIONS(2384), - [anon_sym_new] = ACTIONS(2386), - [anon_sym_using] = ACTIONS(2386), - [anon_sym_AMP] = ACTIONS(2384), - [anon_sym_PIPE] = ACTIONS(2384), - [anon_sym_PLUS] = ACTIONS(2386), - [anon_sym_DASH] = ACTIONS(2386), - [anon_sym_SLASH] = ACTIONS(2386), - [anon_sym_LT] = ACTIONS(2386), - [anon_sym_GT] = ACTIONS(2384), - [anon_sym_TILDE] = ACTIONS(2384), - [anon_sym_void] = ACTIONS(2386), - [anon_sym_delete] = ACTIONS(2386), - [anon_sym_PLUS_PLUS] = ACTIONS(2384), - [anon_sym_DASH_DASH] = ACTIONS(2384), - [anon_sym_DQUOTE] = ACTIONS(2384), - [anon_sym_SQUOTE] = ACTIONS(2384), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2384), - [sym_number] = ACTIONS(2384), - [sym_private_property_identifier] = ACTIONS(2384), - [sym_this] = ACTIONS(2386), - [sym_super] = ACTIONS(2386), - [sym_true] = ACTIONS(2386), - [sym_false] = ACTIONS(2386), - [sym_null] = ACTIONS(2386), - [sym_undefined] = ACTIONS(2386), - [anon_sym_AT] = ACTIONS(2384), - [anon_sym_static] = ACTIONS(2386), - [anon_sym_readonly] = ACTIONS(2386), - [anon_sym_get] = ACTIONS(2386), - [anon_sym_set] = ACTIONS(2386), - [anon_sym_QMARK] = ACTIONS(2384), - [anon_sym_declare] = ACTIONS(2386), - [anon_sym_public] = ACTIONS(2386), - [anon_sym_private] = ACTIONS(2386), - [anon_sym_protected] = ACTIONS(2386), - [anon_sym_override] = ACTIONS(2386), - [anon_sym_module] = ACTIONS(2386), - [anon_sym_any] = ACTIONS(2386), - [anon_sym_number] = ACTIONS(2386), - [anon_sym_boolean] = ACTIONS(2386), - [anon_sym_string] = ACTIONS(2386), - [anon_sym_symbol] = ACTIONS(2386), - [anon_sym_object] = ACTIONS(2386), - [anon_sym_abstract] = ACTIONS(2386), - [anon_sym_extends] = ACTIONS(2386), - [anon_sym_interface] = ACTIONS(2386), - [anon_sym_enum] = ACTIONS(2386), + [ts_builtin_sym_end] = ACTIONS(2369), + [sym_identifier] = ACTIONS(2371), + [anon_sym_export] = ACTIONS(2371), + [anon_sym_default] = ACTIONS(2371), + [anon_sym_type] = ACTIONS(2371), + [anon_sym_EQ] = ACTIONS(2371), + [anon_sym_namespace] = ACTIONS(2371), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_COMMA] = ACTIONS(2369), + [anon_sym_RBRACE] = ACTIONS(2369), + [anon_sym_typeof] = ACTIONS(2371), + [anon_sym_import] = ACTIONS(2371), + [anon_sym_with] = ACTIONS(2371), + [anon_sym_var] = ACTIONS(2371), + [anon_sym_let] = ACTIONS(2371), + [anon_sym_const] = ACTIONS(2371), + [anon_sym_BANG] = ACTIONS(2369), + [anon_sym_else] = ACTIONS(2371), + [anon_sym_if] = ACTIONS(2371), + [anon_sym_switch] = ACTIONS(2371), + [anon_sym_for] = ACTIONS(2371), + [anon_sym_LPAREN] = ACTIONS(2369), + [anon_sym_SEMI] = ACTIONS(2369), + [anon_sym_RPAREN] = ACTIONS(2369), + [anon_sym_await] = ACTIONS(2371), + [anon_sym_while] = ACTIONS(2371), + [anon_sym_do] = ACTIONS(2371), + [anon_sym_try] = ACTIONS(2371), + [anon_sym_break] = ACTIONS(2371), + [anon_sym_continue] = ACTIONS(2371), + [anon_sym_debugger] = ACTIONS(2371), + [anon_sym_return] = ACTIONS(2371), + [anon_sym_throw] = ACTIONS(2371), + [anon_sym_COLON] = ACTIONS(2369), + [anon_sym_case] = ACTIONS(2371), + [anon_sym_yield] = ACTIONS(2371), + [anon_sym_LBRACK] = ACTIONS(2369), + [anon_sym_RBRACK] = ACTIONS(2369), + [anon_sym_class] = ACTIONS(2371), + [anon_sym_async] = ACTIONS(2371), + [anon_sym_function] = ACTIONS(2371), + [anon_sym_EQ_GT] = ACTIONS(2369), + [anon_sym_new] = ACTIONS(2371), + [anon_sym_using] = ACTIONS(2371), + [anon_sym_AMP] = ACTIONS(2369), + [anon_sym_PIPE] = ACTIONS(2369), + [anon_sym_PLUS] = ACTIONS(2371), + [anon_sym_DASH] = ACTIONS(2371), + [anon_sym_SLASH] = ACTIONS(2371), + [anon_sym_LT] = ACTIONS(2369), + [anon_sym_GT] = ACTIONS(2369), + [anon_sym_TILDE] = ACTIONS(2369), + [anon_sym_void] = ACTIONS(2371), + [anon_sym_delete] = ACTIONS(2371), + [anon_sym_PLUS_PLUS] = ACTIONS(2369), + [anon_sym_DASH_DASH] = ACTIONS(2369), + [anon_sym_DQUOTE] = ACTIONS(2369), + [anon_sym_SQUOTE] = ACTIONS(2369), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2369), + [sym_number] = ACTIONS(2369), + [sym_private_property_identifier] = ACTIONS(2369), + [sym_this] = ACTIONS(2371), + [sym_super] = ACTIONS(2371), + [sym_true] = ACTIONS(2371), + [sym_false] = ACTIONS(2371), + [sym_null] = ACTIONS(2371), + [sym_undefined] = ACTIONS(2371), + [anon_sym_AT] = ACTIONS(2369), + [anon_sym_static] = ACTIONS(2371), + [anon_sym_readonly] = ACTIONS(2371), + [anon_sym_get] = ACTIONS(2371), + [anon_sym_set] = ACTIONS(2371), + [anon_sym_QMARK] = ACTIONS(2369), + [anon_sym_declare] = ACTIONS(2371), + [anon_sym_public] = ACTIONS(2371), + [anon_sym_private] = ACTIONS(2371), + [anon_sym_protected] = ACTIONS(2371), + [anon_sym_override] = ACTIONS(2371), + [anon_sym_module] = ACTIONS(2371), + [anon_sym_any] = ACTIONS(2371), + [anon_sym_number] = ACTIONS(2371), + [anon_sym_boolean] = ACTIONS(2371), + [anon_sym_string] = ACTIONS(2371), + [anon_sym_symbol] = ACTIONS(2371), + [anon_sym_object] = ACTIONS(2371), + [anon_sym_abstract] = ACTIONS(2371), + [anon_sym_extends] = ACTIONS(2371), + [anon_sym_interface] = ACTIONS(2371), + [anon_sym_enum] = ACTIONS(2371), [sym_html_comment] = ACTIONS(5), }, [714] = { - [ts_builtin_sym_end] = ACTIONS(2388), - [sym_identifier] = ACTIONS(2390), - [anon_sym_export] = ACTIONS(2390), - [anon_sym_default] = ACTIONS(2390), - [anon_sym_type] = ACTIONS(2390), - [anon_sym_EQ] = ACTIONS(2390), - [anon_sym_namespace] = ACTIONS(2390), - [anon_sym_LBRACE] = ACTIONS(2388), - [anon_sym_COMMA] = ACTIONS(2388), - [anon_sym_RBRACE] = ACTIONS(2388), - [anon_sym_typeof] = ACTIONS(2390), - [anon_sym_import] = ACTIONS(2390), - [anon_sym_with] = ACTIONS(2390), - [anon_sym_var] = ACTIONS(2390), - [anon_sym_let] = ACTIONS(2390), - [anon_sym_const] = ACTIONS(2390), - [anon_sym_BANG] = ACTIONS(2388), - [anon_sym_else] = ACTIONS(2390), - [anon_sym_if] = ACTIONS(2390), - [anon_sym_switch] = ACTIONS(2390), - [anon_sym_for] = ACTIONS(2390), - [anon_sym_LPAREN] = ACTIONS(2388), - [anon_sym_SEMI] = ACTIONS(2388), - [anon_sym_RPAREN] = ACTIONS(2388), - [anon_sym_await] = ACTIONS(2390), - [anon_sym_while] = ACTIONS(2390), - [anon_sym_do] = ACTIONS(2390), - [anon_sym_try] = ACTIONS(2390), - [anon_sym_break] = ACTIONS(2390), - [anon_sym_continue] = ACTIONS(2390), - [anon_sym_debugger] = ACTIONS(2390), - [anon_sym_return] = ACTIONS(2390), - [anon_sym_throw] = ACTIONS(2390), - [anon_sym_COLON] = ACTIONS(2388), - [anon_sym_case] = ACTIONS(2390), - [anon_sym_yield] = ACTIONS(2390), - [anon_sym_LBRACK] = ACTIONS(2388), - [anon_sym_RBRACK] = ACTIONS(2388), - [sym_glimmer_opening_tag] = ACTIONS(2388), - [anon_sym_class] = ACTIONS(2390), - [anon_sym_async] = ACTIONS(2390), - [anon_sym_function] = ACTIONS(2390), - [anon_sym_EQ_GT] = ACTIONS(2388), - [anon_sym_new] = ACTIONS(2390), - [anon_sym_using] = ACTIONS(2390), - [anon_sym_AMP] = ACTIONS(2388), - [anon_sym_PIPE] = ACTIONS(2388), - [anon_sym_PLUS] = ACTIONS(2390), - [anon_sym_DASH] = ACTIONS(2390), - [anon_sym_SLASH] = ACTIONS(2390), - [anon_sym_LT] = ACTIONS(2390), - [anon_sym_GT] = ACTIONS(2388), - [anon_sym_TILDE] = ACTIONS(2388), - [anon_sym_void] = ACTIONS(2390), - [anon_sym_delete] = ACTIONS(2390), - [anon_sym_PLUS_PLUS] = ACTIONS(2388), - [anon_sym_DASH_DASH] = ACTIONS(2388), - [anon_sym_DQUOTE] = ACTIONS(2388), - [anon_sym_SQUOTE] = ACTIONS(2388), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2388), - [sym_number] = ACTIONS(2388), - [sym_private_property_identifier] = ACTIONS(2388), - [sym_this] = ACTIONS(2390), - [sym_super] = ACTIONS(2390), - [sym_true] = ACTIONS(2390), - [sym_false] = ACTIONS(2390), - [sym_null] = ACTIONS(2390), - [sym_undefined] = ACTIONS(2390), - [anon_sym_AT] = ACTIONS(2388), - [anon_sym_static] = ACTIONS(2390), - [anon_sym_readonly] = ACTIONS(2390), - [anon_sym_get] = ACTIONS(2390), - [anon_sym_set] = ACTIONS(2390), - [anon_sym_QMARK] = ACTIONS(2388), - [anon_sym_declare] = ACTIONS(2390), - [anon_sym_public] = ACTIONS(2390), - [anon_sym_private] = ACTIONS(2390), - [anon_sym_protected] = ACTIONS(2390), - [anon_sym_override] = ACTIONS(2390), - [anon_sym_module] = ACTIONS(2390), - [anon_sym_any] = ACTIONS(2390), - [anon_sym_number] = ACTIONS(2390), - [anon_sym_boolean] = ACTIONS(2390), - [anon_sym_string] = ACTIONS(2390), - [anon_sym_symbol] = ACTIONS(2390), - [anon_sym_object] = ACTIONS(2390), - [anon_sym_abstract] = ACTIONS(2390), - [anon_sym_extends] = ACTIONS(2390), - [anon_sym_interface] = ACTIONS(2390), - [anon_sym_enum] = ACTIONS(2390), + [ts_builtin_sym_end] = ACTIONS(2373), + [sym_identifier] = ACTIONS(2375), + [anon_sym_export] = ACTIONS(2375), + [anon_sym_default] = ACTIONS(2375), + [anon_sym_type] = ACTIONS(2375), + [anon_sym_EQ] = ACTIONS(2375), + [anon_sym_namespace] = ACTIONS(2375), + [anon_sym_LBRACE] = ACTIONS(2373), + [anon_sym_COMMA] = ACTIONS(2373), + [anon_sym_RBRACE] = ACTIONS(2373), + [anon_sym_typeof] = ACTIONS(2375), + [anon_sym_import] = ACTIONS(2375), + [anon_sym_with] = ACTIONS(2375), + [anon_sym_var] = ACTIONS(2375), + [anon_sym_let] = ACTIONS(2375), + [anon_sym_const] = ACTIONS(2375), + [anon_sym_BANG] = ACTIONS(2373), + [anon_sym_else] = ACTIONS(2375), + [anon_sym_if] = ACTIONS(2375), + [anon_sym_switch] = ACTIONS(2375), + [anon_sym_for] = ACTIONS(2375), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_SEMI] = ACTIONS(2373), + [anon_sym_RPAREN] = ACTIONS(2373), + [anon_sym_await] = ACTIONS(2375), + [anon_sym_while] = ACTIONS(2375), + [anon_sym_do] = ACTIONS(2375), + [anon_sym_try] = ACTIONS(2375), + [anon_sym_break] = ACTIONS(2375), + [anon_sym_continue] = ACTIONS(2375), + [anon_sym_debugger] = ACTIONS(2375), + [anon_sym_return] = ACTIONS(2375), + [anon_sym_throw] = ACTIONS(2375), + [anon_sym_COLON] = ACTIONS(2373), + [anon_sym_case] = ACTIONS(2375), + [anon_sym_yield] = ACTIONS(2375), + [anon_sym_LBRACK] = ACTIONS(2373), + [anon_sym_RBRACK] = ACTIONS(2373), + [anon_sym_class] = ACTIONS(2375), + [anon_sym_async] = ACTIONS(2375), + [anon_sym_function] = ACTIONS(2375), + [anon_sym_EQ_GT] = ACTIONS(2373), + [anon_sym_new] = ACTIONS(2375), + [anon_sym_using] = ACTIONS(2375), + [anon_sym_AMP] = ACTIONS(2373), + [anon_sym_PIPE] = ACTIONS(2373), + [anon_sym_PLUS] = ACTIONS(2375), + [anon_sym_DASH] = ACTIONS(2375), + [anon_sym_SLASH] = ACTIONS(2375), + [anon_sym_LT] = ACTIONS(2373), + [anon_sym_GT] = ACTIONS(2373), + [anon_sym_TILDE] = ACTIONS(2373), + [anon_sym_void] = ACTIONS(2375), + [anon_sym_delete] = ACTIONS(2375), + [anon_sym_PLUS_PLUS] = ACTIONS(2373), + [anon_sym_DASH_DASH] = ACTIONS(2373), + [anon_sym_DQUOTE] = ACTIONS(2373), + [anon_sym_SQUOTE] = ACTIONS(2373), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2373), + [sym_number] = ACTIONS(2373), + [sym_private_property_identifier] = ACTIONS(2373), + [sym_this] = ACTIONS(2375), + [sym_super] = ACTIONS(2375), + [sym_true] = ACTIONS(2375), + [sym_false] = ACTIONS(2375), + [sym_null] = ACTIONS(2375), + [sym_undefined] = ACTIONS(2375), + [anon_sym_AT] = ACTIONS(2373), + [anon_sym_static] = ACTIONS(2375), + [anon_sym_readonly] = ACTIONS(2375), + [anon_sym_get] = ACTIONS(2375), + [anon_sym_set] = ACTIONS(2375), + [anon_sym_QMARK] = ACTIONS(2373), + [anon_sym_declare] = ACTIONS(2375), + [anon_sym_public] = ACTIONS(2375), + [anon_sym_private] = ACTIONS(2375), + [anon_sym_protected] = ACTIONS(2375), + [anon_sym_override] = ACTIONS(2375), + [anon_sym_module] = ACTIONS(2375), + [anon_sym_any] = ACTIONS(2375), + [anon_sym_number] = ACTIONS(2375), + [anon_sym_boolean] = ACTIONS(2375), + [anon_sym_string] = ACTIONS(2375), + [anon_sym_symbol] = ACTIONS(2375), + [anon_sym_object] = ACTIONS(2375), + [anon_sym_abstract] = ACTIONS(2375), + [anon_sym_extends] = ACTIONS(2375), + [anon_sym_interface] = ACTIONS(2375), + [anon_sym_enum] = ACTIONS(2375), [sym_html_comment] = ACTIONS(5), }, [715] = { - [sym_declaration] = STATE(869), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_class_declaration] = STATE(837), - [sym_function_declaration] = STATE(837), - [sym_generator_function_declaration] = STATE(837), - [sym_decorator] = STATE(1285), - [sym_function_signature] = STATE(837), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(825), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [aux_sym_export_statement_repeat1] = STATE(4085), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2352), - [anon_sym_EQ] = ACTIONS(855), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2290), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_import] = ACTIONS(2294), - [anon_sym_var] = ACTIONS(2296), - [anon_sym_let] = ACTIONS(2298), - [anon_sym_const] = ACTIONS(2300), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(869), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_class] = ACTIONS(2305), - [anon_sym_async] = ACTIONS(2307), - [anon_sym_function] = ACTIONS(2309), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(157), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(2314), - [anon_sym_module] = ACTIONS(2354), - [anon_sym_abstract] = ACTIONS(2318), - [anon_sym_satisfies] = ACTIONS(157), - [anon_sym_global] = ACTIONS(2356), - [anon_sym_interface] = ACTIONS(2320), - [anon_sym_enum] = ACTIONS(2322), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [ts_builtin_sym_end] = ACTIONS(2377), + [sym_identifier] = ACTIONS(2379), + [anon_sym_export] = ACTIONS(2379), + [anon_sym_default] = ACTIONS(2379), + [anon_sym_type] = ACTIONS(2379), + [anon_sym_EQ] = ACTIONS(2379), + [anon_sym_namespace] = ACTIONS(2379), + [anon_sym_LBRACE] = ACTIONS(2377), + [anon_sym_COMMA] = ACTIONS(2377), + [anon_sym_RBRACE] = ACTIONS(2377), + [anon_sym_typeof] = ACTIONS(2379), + [anon_sym_import] = ACTIONS(2379), + [anon_sym_with] = ACTIONS(2379), + [anon_sym_var] = ACTIONS(2379), + [anon_sym_let] = ACTIONS(2379), + [anon_sym_const] = ACTIONS(2379), + [anon_sym_BANG] = ACTIONS(2377), + [anon_sym_else] = ACTIONS(2379), + [anon_sym_if] = ACTIONS(2379), + [anon_sym_switch] = ACTIONS(2379), + [anon_sym_for] = ACTIONS(2379), + [anon_sym_LPAREN] = ACTIONS(2377), + [anon_sym_SEMI] = ACTIONS(2377), + [anon_sym_RPAREN] = ACTIONS(2377), + [anon_sym_await] = ACTIONS(2379), + [anon_sym_while] = ACTIONS(2379), + [anon_sym_do] = ACTIONS(2379), + [anon_sym_try] = ACTIONS(2379), + [anon_sym_break] = ACTIONS(2379), + [anon_sym_continue] = ACTIONS(2379), + [anon_sym_debugger] = ACTIONS(2379), + [anon_sym_return] = ACTIONS(2379), + [anon_sym_throw] = ACTIONS(2379), + [anon_sym_COLON] = ACTIONS(2377), + [anon_sym_case] = ACTIONS(2379), + [anon_sym_yield] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(2377), + [anon_sym_RBRACK] = ACTIONS(2377), + [anon_sym_class] = ACTIONS(2379), + [anon_sym_async] = ACTIONS(2379), + [anon_sym_function] = ACTIONS(2379), + [anon_sym_EQ_GT] = ACTIONS(2377), + [anon_sym_new] = ACTIONS(2379), + [anon_sym_using] = ACTIONS(2379), + [anon_sym_AMP] = ACTIONS(2377), + [anon_sym_PIPE] = ACTIONS(2377), + [anon_sym_PLUS] = ACTIONS(2379), + [anon_sym_DASH] = ACTIONS(2379), + [anon_sym_SLASH] = ACTIONS(2379), + [anon_sym_LT] = ACTIONS(2377), + [anon_sym_GT] = ACTIONS(2377), + [anon_sym_TILDE] = ACTIONS(2377), + [anon_sym_void] = ACTIONS(2379), + [anon_sym_delete] = ACTIONS(2379), + [anon_sym_PLUS_PLUS] = ACTIONS(2377), + [anon_sym_DASH_DASH] = ACTIONS(2377), + [anon_sym_DQUOTE] = ACTIONS(2377), + [anon_sym_SQUOTE] = ACTIONS(2377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2377), + [sym_number] = ACTIONS(2377), + [sym_private_property_identifier] = ACTIONS(2377), + [sym_this] = ACTIONS(2379), + [sym_super] = ACTIONS(2379), + [sym_true] = ACTIONS(2379), + [sym_false] = ACTIONS(2379), + [sym_null] = ACTIONS(2379), + [sym_undefined] = ACTIONS(2379), + [anon_sym_AT] = ACTIONS(2377), + [anon_sym_static] = ACTIONS(2379), + [anon_sym_readonly] = ACTIONS(2379), + [anon_sym_get] = ACTIONS(2379), + [anon_sym_set] = ACTIONS(2379), + [anon_sym_QMARK] = ACTIONS(2377), + [anon_sym_declare] = ACTIONS(2379), + [anon_sym_public] = ACTIONS(2379), + [anon_sym_private] = ACTIONS(2379), + [anon_sym_protected] = ACTIONS(2379), + [anon_sym_override] = ACTIONS(2379), + [anon_sym_module] = ACTIONS(2379), + [anon_sym_any] = ACTIONS(2379), + [anon_sym_number] = ACTIONS(2379), + [anon_sym_boolean] = ACTIONS(2379), + [anon_sym_string] = ACTIONS(2379), + [anon_sym_symbol] = ACTIONS(2379), + [anon_sym_object] = ACTIONS(2379), + [anon_sym_abstract] = ACTIONS(2379), + [anon_sym_extends] = ACTIONS(2379), + [anon_sym_interface] = ACTIONS(2379), + [anon_sym_enum] = ACTIONS(2379), [sym_html_comment] = ACTIONS(5), }, [716] = { - [aux_sym_object_repeat1] = STATE(4902), - [aux_sym_object_pattern_repeat1] = STATE(4834), - [sym_identifier] = ACTIONS(1988), - [anon_sym_export] = ACTIONS(1988), - [anon_sym_STAR] = ACTIONS(1988), - [anon_sym_type] = ACTIONS(1988), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1988), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_let] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(1990), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_async] = ACTIONS(1988), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1988), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(1990), - [anon_sym_SQUOTE] = ACTIONS(1990), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [sym_number] = ACTIONS(1990), - [sym_private_property_identifier] = ACTIONS(1990), - [anon_sym_static] = ACTIONS(1988), - [anon_sym_readonly] = ACTIONS(1988), - [anon_sym_get] = ACTIONS(1988), - [anon_sym_set] = ACTIONS(1988), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(1988), - [anon_sym_public] = ACTIONS(1988), - [anon_sym_private] = ACTIONS(1988), - [anon_sym_protected] = ACTIONS(1988), - [anon_sym_override] = ACTIONS(1988), - [anon_sym_module] = ACTIONS(1988), - [anon_sym_any] = ACTIONS(1988), - [anon_sym_number] = ACTIONS(1988), - [anon_sym_boolean] = ACTIONS(1988), - [anon_sym_string] = ACTIONS(1988), - [anon_sym_symbol] = ACTIONS(1988), - [anon_sym_object] = ACTIONS(1988), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [aux_sym_object_repeat1] = STATE(4810), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(1969), + [anon_sym_export] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(1969), + [anon_sym_type] = ACTIONS(1969), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1969), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(692), + [anon_sym_let] = ACTIONS(1969), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(1971), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(1969), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1971), + [anon_sym_SQUOTE] = ACTIONS(1971), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [sym_number] = ACTIONS(1971), + [sym_private_property_identifier] = ACTIONS(1971), + [anon_sym_static] = ACTIONS(1969), + [anon_sym_readonly] = ACTIONS(1969), + [anon_sym_get] = ACTIONS(1969), + [anon_sym_set] = ACTIONS(1969), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_declare] = ACTIONS(1969), + [anon_sym_public] = ACTIONS(1969), + [anon_sym_private] = ACTIONS(1969), + [anon_sym_protected] = ACTIONS(1969), + [anon_sym_override] = ACTIONS(1969), + [anon_sym_module] = ACTIONS(1969), + [anon_sym_any] = ACTIONS(1969), + [anon_sym_number] = ACTIONS(1969), + [anon_sym_boolean] = ACTIONS(1969), + [anon_sym_string] = ACTIONS(1969), + [anon_sym_symbol] = ACTIONS(1969), + [anon_sym_object] = ACTIONS(1969), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [717] = { - [aux_sym_object_repeat1] = STATE(4823), - [aux_sym_object_pattern_repeat1] = STATE(4834), - [sym_identifier] = ACTIONS(1988), - [anon_sym_export] = ACTIONS(1988), - [anon_sym_STAR] = ACTIONS(1988), - [anon_sym_type] = ACTIONS(1988), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1988), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_RBRACE] = ACTIONS(672), - [anon_sym_let] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(1990), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_async] = ACTIONS(1988), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1988), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(1990), - [anon_sym_SQUOTE] = ACTIONS(1990), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [sym_number] = ACTIONS(1990), - [sym_private_property_identifier] = ACTIONS(1990), - [anon_sym_static] = ACTIONS(1988), - [anon_sym_readonly] = ACTIONS(1988), - [anon_sym_get] = ACTIONS(1988), - [anon_sym_set] = ACTIONS(1988), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(1988), - [anon_sym_public] = ACTIONS(1988), - [anon_sym_private] = ACTIONS(1988), - [anon_sym_protected] = ACTIONS(1988), - [anon_sym_override] = ACTIONS(1988), - [anon_sym_module] = ACTIONS(1988), - [anon_sym_any] = ACTIONS(1988), - [anon_sym_number] = ACTIONS(1988), - [anon_sym_boolean] = ACTIONS(1988), - [anon_sym_string] = ACTIONS(1988), - [anon_sym_symbol] = ACTIONS(1988), - [anon_sym_object] = ACTIONS(1988), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [aux_sym_object_repeat1] = STATE(4792), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(1969), + [anon_sym_export] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(1969), + [anon_sym_type] = ACTIONS(1969), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1969), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(667), + [anon_sym_let] = ACTIONS(1969), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(1971), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(1969), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1971), + [anon_sym_SQUOTE] = ACTIONS(1971), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [sym_number] = ACTIONS(1971), + [sym_private_property_identifier] = ACTIONS(1971), + [anon_sym_static] = ACTIONS(1969), + [anon_sym_readonly] = ACTIONS(1969), + [anon_sym_get] = ACTIONS(1969), + [anon_sym_set] = ACTIONS(1969), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_declare] = ACTIONS(1969), + [anon_sym_public] = ACTIONS(1969), + [anon_sym_private] = ACTIONS(1969), + [anon_sym_protected] = ACTIONS(1969), + [anon_sym_override] = ACTIONS(1969), + [anon_sym_module] = ACTIONS(1969), + [anon_sym_any] = ACTIONS(1969), + [anon_sym_number] = ACTIONS(1969), + [anon_sym_boolean] = ACTIONS(1969), + [anon_sym_string] = ACTIONS(1969), + [anon_sym_symbol] = ACTIONS(1969), + [anon_sym_object] = ACTIONS(1969), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [718] = { - [aux_sym_object_repeat1] = STATE(4902), - [aux_sym_object_pattern_repeat1] = STATE(4834), - [sym_identifier] = ACTIONS(1984), - [anon_sym_export] = ACTIONS(1984), - [anon_sym_STAR] = ACTIONS(1984), - [anon_sym_type] = ACTIONS(1984), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1984), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_RBRACE] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1984), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(1986), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_async] = ACTIONS(1984), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1984), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(1986), - [anon_sym_SQUOTE] = ACTIONS(1986), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [sym_number] = ACTIONS(1986), - [sym_private_property_identifier] = ACTIONS(1986), - [anon_sym_static] = ACTIONS(1984), - [anon_sym_readonly] = ACTIONS(1984), - [anon_sym_get] = ACTIONS(1984), - [anon_sym_set] = ACTIONS(1984), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(1984), - [anon_sym_public] = ACTIONS(1984), - [anon_sym_private] = ACTIONS(1984), - [anon_sym_protected] = ACTIONS(1984), - [anon_sym_override] = ACTIONS(1984), - [anon_sym_module] = ACTIONS(1984), - [anon_sym_any] = ACTIONS(1984), - [anon_sym_number] = ACTIONS(1984), - [anon_sym_boolean] = ACTIONS(1984), - [anon_sym_string] = ACTIONS(1984), - [anon_sym_symbol] = ACTIONS(1984), - [anon_sym_object] = ACTIONS(1984), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [aux_sym_object_repeat1] = STATE(4792), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_STAR] = ACTIONS(1973), + [anon_sym_type] = ACTIONS(1973), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1973), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(667), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(1973), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1973), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1975), + [anon_sym_SQUOTE] = ACTIONS(1975), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [sym_number] = ACTIONS(1975), + [sym_private_property_identifier] = ACTIONS(1975), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_readonly] = ACTIONS(1973), + [anon_sym_get] = ACTIONS(1973), + [anon_sym_set] = ACTIONS(1973), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_declare] = ACTIONS(1973), + [anon_sym_public] = ACTIONS(1973), + [anon_sym_private] = ACTIONS(1973), + [anon_sym_protected] = ACTIONS(1973), + [anon_sym_override] = ACTIONS(1973), + [anon_sym_module] = ACTIONS(1973), + [anon_sym_any] = ACTIONS(1973), + [anon_sym_number] = ACTIONS(1973), + [anon_sym_boolean] = ACTIONS(1973), + [anon_sym_string] = ACTIONS(1973), + [anon_sym_symbol] = ACTIONS(1973), + [anon_sym_object] = ACTIONS(1973), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [719] = { - [aux_sym_object_repeat1] = STATE(4902), - [aux_sym_object_pattern_repeat1] = STATE(4834), - [sym_identifier] = ACTIONS(1988), - [anon_sym_export] = ACTIONS(1988), - [anon_sym_STAR] = ACTIONS(1988), - [anon_sym_type] = ACTIONS(1988), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1988), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_RBRACE] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(1990), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_async] = ACTIONS(1988), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1988), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(1990), - [anon_sym_SQUOTE] = ACTIONS(1990), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [sym_number] = ACTIONS(1990), - [sym_private_property_identifier] = ACTIONS(1990), - [anon_sym_static] = ACTIONS(1988), - [anon_sym_readonly] = ACTIONS(1988), - [anon_sym_get] = ACTIONS(1988), - [anon_sym_set] = ACTIONS(1988), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(1988), - [anon_sym_public] = ACTIONS(1988), - [anon_sym_private] = ACTIONS(1988), - [anon_sym_protected] = ACTIONS(1988), - [anon_sym_override] = ACTIONS(1988), - [anon_sym_module] = ACTIONS(1988), - [anon_sym_any] = ACTIONS(1988), - [anon_sym_number] = ACTIONS(1988), - [anon_sym_boolean] = ACTIONS(1988), - [anon_sym_string] = ACTIONS(1988), - [anon_sym_symbol] = ACTIONS(1988), - [anon_sym_object] = ACTIONS(1988), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [aux_sym_object_repeat1] = STATE(4810), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_STAR] = ACTIONS(1973), + [anon_sym_type] = ACTIONS(1973), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1973), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(692), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(1973), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1973), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1975), + [anon_sym_SQUOTE] = ACTIONS(1975), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [sym_number] = ACTIONS(1975), + [sym_private_property_identifier] = ACTIONS(1975), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_readonly] = ACTIONS(1973), + [anon_sym_get] = ACTIONS(1973), + [anon_sym_set] = ACTIONS(1973), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_declare] = ACTIONS(1973), + [anon_sym_public] = ACTIONS(1973), + [anon_sym_private] = ACTIONS(1973), + [anon_sym_protected] = ACTIONS(1973), + [anon_sym_override] = ACTIONS(1973), + [anon_sym_module] = ACTIONS(1973), + [anon_sym_any] = ACTIONS(1973), + [anon_sym_number] = ACTIONS(1973), + [anon_sym_boolean] = ACTIONS(1973), + [anon_sym_string] = ACTIONS(1973), + [anon_sym_symbol] = ACTIONS(1973), + [anon_sym_object] = ACTIONS(1973), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [720] = { - [sym_declaration] = STATE(869), - [sym_variable_declaration] = STATE(837), - [sym_lexical_declaration] = STATE(837), - [sym_class_declaration] = STATE(837), - [sym_function_declaration] = STATE(837), - [sym_generator_function_declaration] = STATE(837), - [sym_decorator] = STATE(1285), - [sym_function_signature] = STATE(837), - [sym_ambient_declaration] = STATE(837), - [sym_abstract_class_declaration] = STATE(837), - [sym_module] = STATE(837), - [sym_internal_module] = STATE(825), - [sym_import_alias] = STATE(837), - [sym_interface_declaration] = STATE(837), - [sym_enum_declaration] = STATE(837), - [sym_type_alias_declaration] = STATE(837), - [aux_sym_export_statement_repeat1] = STATE(4085), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2352), - [anon_sym_EQ] = ACTIONS(925), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2290), - [anon_sym_import] = ACTIONS(2294), - [anon_sym_var] = ACTIONS(2296), - [anon_sym_let] = ACTIONS(2298), - [anon_sym_const] = ACTIONS(2300), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_class] = ACTIONS(2305), - [anon_sym_async] = ACTIONS(2307), - [anon_sym_function] = ACTIONS(2309), - [anon_sym_EQ_GT] = ACTIONS(931), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(157), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(2314), - [anon_sym_module] = ACTIONS(2354), - [anon_sym_abstract] = ACTIONS(2318), - [anon_sym_satisfies] = ACTIONS(157), - [anon_sym_global] = ACTIONS(2356), - [anon_sym_interface] = ACTIONS(2320), - [anon_sym_enum] = ACTIONS(2322), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [sym_declaration] = STATE(4310), + [sym_variable_declaration] = STATE(4275), + [sym_lexical_declaration] = STATE(4275), + [sym_class_declaration] = STATE(4275), + [sym_function_declaration] = STATE(4275), + [sym_generator_function_declaration] = STATE(4275), + [sym_decorator] = STATE(1344), + [sym_function_signature] = STATE(4275), + [sym_ambient_declaration] = STATE(4275), + [sym_abstract_class_declaration] = STATE(4275), + [sym_module] = STATE(4275), + [sym_internal_module] = STATE(4287), + [sym_import_alias] = STATE(4275), + [sym_interface_declaration] = STATE(4275), + [sym_enum_declaration] = STATE(4275), + [sym_type_alias_declaration] = STATE(4275), + [aux_sym_export_statement_repeat1] = STATE(4304), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2381), + [anon_sym_EQ] = ACTIONS(918), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2383), + [anon_sym_import] = ACTIONS(2385), + [anon_sym_var] = ACTIONS(2387), + [anon_sym_let] = ACTIONS(2389), + [anon_sym_const] = ACTIONS(2391), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_class] = ACTIONS(2393), + [anon_sym_async] = ACTIONS(2395), + [anon_sym_function] = ACTIONS(2397), + [anon_sym_EQ_GT] = ACTIONS(924), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(2399), + [anon_sym_module] = ACTIONS(2401), + [anon_sym_abstract] = ACTIONS(2403), + [anon_sym_satisfies] = ACTIONS(154), + [anon_sym_global] = ACTIONS(2405), + [anon_sym_interface] = ACTIONS(2407), + [anon_sym_enum] = ACTIONS(2409), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [721] = { - [aux_sym_object_repeat1] = STATE(4823), - [aux_sym_object_pattern_repeat1] = STATE(4834), - [sym_identifier] = ACTIONS(1984), - [anon_sym_export] = ACTIONS(1984), - [anon_sym_STAR] = ACTIONS(1984), - [anon_sym_type] = ACTIONS(1984), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1984), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_RBRACE] = ACTIONS(672), - [anon_sym_let] = ACTIONS(1984), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(1986), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_async] = ACTIONS(1984), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1984), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(1986), - [anon_sym_SQUOTE] = ACTIONS(1986), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [sym_number] = ACTIONS(1986), - [sym_private_property_identifier] = ACTIONS(1986), - [anon_sym_static] = ACTIONS(1984), - [anon_sym_readonly] = ACTIONS(1984), - [anon_sym_get] = ACTIONS(1984), - [anon_sym_set] = ACTIONS(1984), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(1984), - [anon_sym_public] = ACTIONS(1984), - [anon_sym_private] = ACTIONS(1984), - [anon_sym_protected] = ACTIONS(1984), - [anon_sym_override] = ACTIONS(1984), - [anon_sym_module] = ACTIONS(1984), - [anon_sym_any] = ACTIONS(1984), - [anon_sym_number] = ACTIONS(1984), - [anon_sym_boolean] = ACTIONS(1984), - [anon_sym_string] = ACTIONS(1984), - [anon_sym_symbol] = ACTIONS(1984), - [anon_sym_object] = ACTIONS(1984), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [sym_declaration] = STATE(867), + [sym_variable_declaration] = STATE(831), + [sym_lexical_declaration] = STATE(831), + [sym_class_declaration] = STATE(831), + [sym_function_declaration] = STATE(831), + [sym_generator_function_declaration] = STATE(831), + [sym_decorator] = STATE(1344), + [sym_function_signature] = STATE(831), + [sym_ambient_declaration] = STATE(831), + [sym_abstract_class_declaration] = STATE(831), + [sym_module] = STATE(831), + [sym_internal_module] = STATE(824), + [sym_import_alias] = STATE(831), + [sym_interface_declaration] = STATE(831), + [sym_enum_declaration] = STATE(831), + [sym_type_alias_declaration] = STATE(831), + [aux_sym_export_statement_repeat1] = STATE(4301), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2341), + [anon_sym_EQ] = ACTIONS(918), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2137), + [anon_sym_import] = ACTIONS(2141), + [anon_sym_var] = ACTIONS(2143), + [anon_sym_let] = ACTIONS(2145), + [anon_sym_const] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_class] = ACTIONS(2152), + [anon_sym_async] = ACTIONS(2154), + [anon_sym_function] = ACTIONS(2156), + [anon_sym_EQ_GT] = ACTIONS(924), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(154), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(2161), + [anon_sym_module] = ACTIONS(2343), + [anon_sym_abstract] = ACTIONS(2165), + [anon_sym_satisfies] = ACTIONS(154), + [anon_sym_global] = ACTIONS(2345), + [anon_sym_interface] = ACTIONS(2167), + [anon_sym_enum] = ACTIONS(2169), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [722] = { - [sym_declaration] = STATE(3947), - [sym_variable_declaration] = STATE(3912), - [sym_lexical_declaration] = STATE(3912), - [sym_class_declaration] = STATE(3912), - [sym_function_declaration] = STATE(3912), - [sym_generator_function_declaration] = STATE(3912), - [sym_decorator] = STATE(1285), - [sym_function_signature] = STATE(3912), - [sym_ambient_declaration] = STATE(3912), - [sym_abstract_class_declaration] = STATE(3912), - [sym_module] = STATE(3912), - [sym_internal_module] = STATE(3916), - [sym_import_alias] = STATE(3912), - [sym_interface_declaration] = STATE(3912), - [sym_enum_declaration] = STATE(3912), - [sym_type_alias_declaration] = STATE(3912), - [aux_sym_export_statement_repeat1] = STATE(4323), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2392), - [anon_sym_EQ] = ACTIONS(925), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2394), - [anon_sym_import] = ACTIONS(2396), - [anon_sym_var] = ACTIONS(2398), - [anon_sym_let] = ACTIONS(2400), - [anon_sym_const] = ACTIONS(2402), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_class] = ACTIONS(2404), - [anon_sym_async] = ACTIONS(2406), - [anon_sym_function] = ACTIONS(2408), - [anon_sym_EQ_GT] = ACTIONS(931), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(157), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(2410), - [anon_sym_module] = ACTIONS(2412), - [anon_sym_abstract] = ACTIONS(2414), - [anon_sym_satisfies] = ACTIONS(157), - [anon_sym_global] = ACTIONS(2416), - [anon_sym_interface] = ACTIONS(2418), - [anon_sym_enum] = ACTIONS(2420), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [aux_sym_object_repeat1] = STATE(4792), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(1969), + [anon_sym_export] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(1969), + [anon_sym_type] = ACTIONS(1969), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1969), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(694), + [anon_sym_let] = ACTIONS(1969), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(1971), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(1969), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1971), + [anon_sym_SQUOTE] = ACTIONS(1971), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [sym_number] = ACTIONS(1971), + [sym_private_property_identifier] = ACTIONS(1971), + [anon_sym_static] = ACTIONS(1969), + [anon_sym_readonly] = ACTIONS(1969), + [anon_sym_get] = ACTIONS(1969), + [anon_sym_set] = ACTIONS(1969), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_declare] = ACTIONS(1969), + [anon_sym_public] = ACTIONS(1969), + [anon_sym_private] = ACTIONS(1969), + [anon_sym_protected] = ACTIONS(1969), + [anon_sym_override] = ACTIONS(1969), + [anon_sym_module] = ACTIONS(1969), + [anon_sym_any] = ACTIONS(1969), + [anon_sym_number] = ACTIONS(1969), + [anon_sym_boolean] = ACTIONS(1969), + [anon_sym_string] = ACTIONS(1969), + [anon_sym_symbol] = ACTIONS(1969), + [anon_sym_object] = ACTIONS(1969), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [723] = { - [aux_sym_object_repeat1] = STATE(4902), - [aux_sym_object_pattern_repeat1] = STATE(4834), - [sym_identifier] = ACTIONS(1984), - [anon_sym_export] = ACTIONS(1984), - [anon_sym_STAR] = ACTIONS(1984), - [anon_sym_type] = ACTIONS(1984), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1984), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_let] = ACTIONS(1984), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(1986), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_async] = ACTIONS(1984), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1984), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(1986), - [anon_sym_SQUOTE] = ACTIONS(1986), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [sym_number] = ACTIONS(1986), - [sym_private_property_identifier] = ACTIONS(1986), - [anon_sym_static] = ACTIONS(1984), - [anon_sym_readonly] = ACTIONS(1984), - [anon_sym_get] = ACTIONS(1984), - [anon_sym_set] = ACTIONS(1984), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(1984), - [anon_sym_public] = ACTIONS(1984), - [anon_sym_private] = ACTIONS(1984), - [anon_sym_protected] = ACTIONS(1984), - [anon_sym_override] = ACTIONS(1984), - [anon_sym_module] = ACTIONS(1984), - [anon_sym_any] = ACTIONS(1984), - [anon_sym_number] = ACTIONS(1984), - [anon_sym_boolean] = ACTIONS(1984), - [anon_sym_string] = ACTIONS(1984), - [anon_sym_symbol] = ACTIONS(1984), - [anon_sym_object] = ACTIONS(1984), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [aux_sym_object_repeat1] = STATE(4792), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_STAR] = ACTIONS(1973), + [anon_sym_type] = ACTIONS(1973), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1973), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(694), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_async] = ACTIONS(1973), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(1973), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1975), + [anon_sym_SQUOTE] = ACTIONS(1975), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [sym_number] = ACTIONS(1975), + [sym_private_property_identifier] = ACTIONS(1975), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_readonly] = ACTIONS(1973), + [anon_sym_get] = ACTIONS(1973), + [anon_sym_set] = ACTIONS(1973), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_declare] = ACTIONS(1973), + [anon_sym_public] = ACTIONS(1973), + [anon_sym_private] = ACTIONS(1973), + [anon_sym_protected] = ACTIONS(1973), + [anon_sym_override] = ACTIONS(1973), + [anon_sym_module] = ACTIONS(1973), + [anon_sym_any] = ACTIONS(1973), + [anon_sym_number] = ACTIONS(1973), + [anon_sym_boolean] = ACTIONS(1973), + [anon_sym_string] = ACTIONS(1973), + [anon_sym_symbol] = ACTIONS(1973), + [anon_sym_object] = ACTIONS(1973), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [724] = { - [sym__call_signature] = STATE(5844), - [sym_formal_parameters] = STATE(3893), - [sym_type_parameters] = STATE(5354), - [sym_identifier] = ACTIONS(2422), - [anon_sym_export] = ACTIONS(2424), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2424), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2424), - [anon_sym_COMMA] = ACTIONS(833), - [anon_sym_RBRACE] = ACTIONS(833), - [anon_sym_let] = ACTIONS(2424), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_RPAREN] = ACTIONS(833), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(833), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_RBRACK] = ACTIONS(833), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_async] = ACTIONS(2424), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(155), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2424), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_static] = ACTIONS(2424), - [anon_sym_readonly] = ACTIONS(2424), - [anon_sym_get] = ACTIONS(2424), - [anon_sym_set] = ACTIONS(2424), - [anon_sym_QMARK] = ACTIONS(835), - [anon_sym_declare] = ACTIONS(2424), - [anon_sym_public] = ACTIONS(2424), - [anon_sym_private] = ACTIONS(2424), - [anon_sym_protected] = ACTIONS(2424), - [anon_sym_override] = ACTIONS(2424), - [anon_sym_module] = ACTIONS(2424), - [anon_sym_any] = ACTIONS(2424), - [anon_sym_number] = ACTIONS(2424), - [anon_sym_boolean] = ACTIONS(2424), - [anon_sym_string] = ACTIONS(2424), - [anon_sym_symbol] = ACTIONS(2424), - [anon_sym_object] = ACTIONS(2424), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym__call_signature] = STATE(5834), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2411), + [anon_sym_export] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2413), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2413), + [anon_sym_COMMA] = ACTIONS(826), + [anon_sym_RBRACE] = ACTIONS(826), + [anon_sym_let] = ACTIONS(2413), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_RPAREN] = ACTIONS(826), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_RBRACK] = ACTIONS(826), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2413), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2413), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2413), + [anon_sym_readonly] = ACTIONS(2413), + [anon_sym_get] = ACTIONS(2413), + [anon_sym_set] = ACTIONS(2413), + [anon_sym_QMARK] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(2413), + [anon_sym_public] = ACTIONS(2413), + [anon_sym_private] = ACTIONS(2413), + [anon_sym_protected] = ACTIONS(2413), + [anon_sym_override] = ACTIONS(2413), + [anon_sym_module] = ACTIONS(2413), + [anon_sym_any] = ACTIONS(2413), + [anon_sym_number] = ACTIONS(2413), + [anon_sym_boolean] = ACTIONS(2413), + [anon_sym_string] = ACTIONS(2413), + [anon_sym_symbol] = ACTIONS(2413), + [anon_sym_object] = ACTIONS(2413), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [725] = { - [sym__call_signature] = STATE(5844), - [sym_formal_parameters] = STATE(3893), - [sym_type_parameters] = STATE(5354), - [sym_identifier] = ACTIONS(2422), - [anon_sym_export] = ACTIONS(2424), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2424), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2424), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_RBRACE] = ACTIONS(128), - [anon_sym_let] = ACTIONS(2424), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_RBRACK] = ACTIONS(128), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_async] = ACTIONS(2424), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(155), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2424), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_static] = ACTIONS(2424), - [anon_sym_readonly] = ACTIONS(2424), - [anon_sym_get] = ACTIONS(2424), - [anon_sym_set] = ACTIONS(2424), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(2424), - [anon_sym_public] = ACTIONS(2424), - [anon_sym_private] = ACTIONS(2424), - [anon_sym_protected] = ACTIONS(2424), - [anon_sym_override] = ACTIONS(2424), - [anon_sym_module] = ACTIONS(2424), - [anon_sym_any] = ACTIONS(2424), - [anon_sym_number] = ACTIONS(2424), - [anon_sym_boolean] = ACTIONS(2424), - [anon_sym_string] = ACTIONS(2424), - [anon_sym_symbol] = ACTIONS(2424), - [anon_sym_object] = ACTIONS(2424), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym__call_signature] = STATE(5834), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2411), + [anon_sym_export] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2413), + [anon_sym_EQ] = ACTIONS(220), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2413), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_RBRACE] = ACTIONS(223), + [anon_sym_let] = ACTIONS(2413), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_RPAREN] = ACTIONS(223), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(223), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_RBRACK] = ACTIONS(223), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2413), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2413), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2413), + [anon_sym_readonly] = ACTIONS(2413), + [anon_sym_get] = ACTIONS(2413), + [anon_sym_set] = ACTIONS(2413), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(2413), + [anon_sym_public] = ACTIONS(2413), + [anon_sym_private] = ACTIONS(2413), + [anon_sym_protected] = ACTIONS(2413), + [anon_sym_override] = ACTIONS(2413), + [anon_sym_module] = ACTIONS(2413), + [anon_sym_any] = ACTIONS(2413), + [anon_sym_number] = ACTIONS(2413), + [anon_sym_boolean] = ACTIONS(2413), + [anon_sym_string] = ACTIONS(2413), + [anon_sym_symbol] = ACTIONS(2413), + [anon_sym_object] = ACTIONS(2413), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [726] = { - [sym__call_signature] = STATE(5641), - [sym_formal_parameters] = STATE(3893), - [sym_type_parameters] = STATE(5354), - [sym_identifier] = ACTIONS(2434), - [anon_sym_export] = ACTIONS(2436), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2436), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2436), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_RBRACE] = ACTIONS(157), - [anon_sym_let] = ACTIONS(2436), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_RBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_async] = ACTIONS(2436), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2436), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_static] = ACTIONS(2436), - [anon_sym_readonly] = ACTIONS(2436), - [anon_sym_get] = ACTIONS(2436), - [anon_sym_set] = ACTIONS(2436), - [anon_sym_declare] = ACTIONS(2436), - [anon_sym_public] = ACTIONS(2436), - [anon_sym_private] = ACTIONS(2436), - [anon_sym_protected] = ACTIONS(2436), - [anon_sym_override] = ACTIONS(2436), - [anon_sym_module] = ACTIONS(2436), - [anon_sym_any] = ACTIONS(2436), - [anon_sym_number] = ACTIONS(2436), - [anon_sym_boolean] = ACTIONS(2436), - [anon_sym_string] = ACTIONS(2436), - [anon_sym_symbol] = ACTIONS(2436), - [anon_sym_object] = ACTIONS(2436), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym__call_signature] = STATE(5594), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2423), + [anon_sym_export] = ACTIONS(2425), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2425), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2425), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(154), + [anon_sym_let] = ACTIONS(2425), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(154), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_RBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2425), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(844), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2425), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2425), + [anon_sym_readonly] = ACTIONS(2425), + [anon_sym_get] = ACTIONS(2425), + [anon_sym_set] = ACTIONS(2425), + [anon_sym_declare] = ACTIONS(2425), + [anon_sym_public] = ACTIONS(2425), + [anon_sym_private] = ACTIONS(2425), + [anon_sym_protected] = ACTIONS(2425), + [anon_sym_override] = ACTIONS(2425), + [anon_sym_module] = ACTIONS(2425), + [anon_sym_any] = ACTIONS(2425), + [anon_sym_number] = ACTIONS(2425), + [anon_sym_boolean] = ACTIONS(2425), + [anon_sym_string] = ACTIONS(2425), + [anon_sym_symbol] = ACTIONS(2425), + [anon_sym_object] = ACTIONS(2425), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [727] = { - [sym__call_signature] = STATE(5641), - [sym_formal_parameters] = STATE(3893), - [sym_type_parameters] = STATE(5354), - [sym_identifier] = ACTIONS(2434), - [anon_sym_export] = ACTIONS(2436), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2436), - [anon_sym_EQ] = ACTIONS(841), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2436), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_RBRACE] = ACTIONS(157), - [anon_sym_let] = ACTIONS(2436), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_RBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_async] = ACTIONS(2436), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2436), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_static] = ACTIONS(2436), - [anon_sym_readonly] = ACTIONS(2436), - [anon_sym_get] = ACTIONS(2436), - [anon_sym_set] = ACTIONS(2436), - [anon_sym_declare] = ACTIONS(2436), - [anon_sym_public] = ACTIONS(2436), - [anon_sym_private] = ACTIONS(2436), - [anon_sym_protected] = ACTIONS(2436), - [anon_sym_override] = ACTIONS(2436), - [anon_sym_module] = ACTIONS(2436), - [anon_sym_any] = ACTIONS(2436), - [anon_sym_number] = ACTIONS(2436), - [anon_sym_boolean] = ACTIONS(2436), - [anon_sym_string] = ACTIONS(2436), - [anon_sym_symbol] = ACTIONS(2436), - [anon_sym_object] = ACTIONS(2436), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym__call_signature] = STATE(5594), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2423), + [anon_sym_export] = ACTIONS(2425), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2425), + [anon_sym_EQ] = ACTIONS(834), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2425), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(154), + [anon_sym_let] = ACTIONS(2425), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(154), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_RBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2425), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(844), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2425), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2425), + [anon_sym_readonly] = ACTIONS(2425), + [anon_sym_get] = ACTIONS(2425), + [anon_sym_set] = ACTIONS(2425), + [anon_sym_declare] = ACTIONS(2425), + [anon_sym_public] = ACTIONS(2425), + [anon_sym_private] = ACTIONS(2425), + [anon_sym_protected] = ACTIONS(2425), + [anon_sym_override] = ACTIONS(2425), + [anon_sym_module] = ACTIONS(2425), + [anon_sym_any] = ACTIONS(2425), + [anon_sym_number] = ACTIONS(2425), + [anon_sym_boolean] = ACTIONS(2425), + [anon_sym_string] = ACTIONS(2425), + [anon_sym_symbol] = ACTIONS(2425), + [anon_sym_object] = ACTIONS(2425), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [728] = { - [sym__call_signature] = STATE(5567), - [sym_formal_parameters] = STATE(3893), - [sym_type_parameters] = STATE(5354), - [sym_identifier] = ACTIONS(2438), - [anon_sym_export] = ACTIONS(2440), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2440), - [anon_sym_EQ] = ACTIONS(221), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2440), - [anon_sym_COMMA] = ACTIONS(224), - [anon_sym_let] = ACTIONS(2440), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_RPAREN] = ACTIONS(224), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(224), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_async] = ACTIONS(2440), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(227), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2440), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_static] = ACTIONS(2440), - [anon_sym_readonly] = ACTIONS(2440), - [anon_sym_get] = ACTIONS(2440), - [anon_sym_set] = ACTIONS(2440), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(2440), - [anon_sym_public] = ACTIONS(2440), - [anon_sym_private] = ACTIONS(2440), - [anon_sym_protected] = ACTIONS(2440), - [anon_sym_override] = ACTIONS(2440), - [anon_sym_module] = ACTIONS(2440), - [anon_sym_any] = ACTIONS(2440), - [anon_sym_number] = ACTIONS(2440), - [anon_sym_boolean] = ACTIONS(2440), - [anon_sym_string] = ACTIONS(2440), - [anon_sym_symbol] = ACTIONS(2440), - [anon_sym_object] = ACTIONS(2440), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym__call_signature] = STATE(5693), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2427), + [anon_sym_export] = ACTIONS(2429), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2429), + [anon_sym_EQ] = ACTIONS(858), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2429), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_let] = ACTIONS(2429), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(860), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2429), + [anon_sym_function] = ACTIONS(2331), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2429), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2429), + [anon_sym_readonly] = ACTIONS(2429), + [anon_sym_get] = ACTIONS(2429), + [anon_sym_set] = ACTIONS(2429), + [anon_sym_declare] = ACTIONS(2429), + [anon_sym_public] = ACTIONS(2429), + [anon_sym_private] = ACTIONS(2429), + [anon_sym_protected] = ACTIONS(2429), + [anon_sym_override] = ACTIONS(2429), + [anon_sym_module] = ACTIONS(2429), + [anon_sym_any] = ACTIONS(2429), + [anon_sym_number] = ACTIONS(2429), + [anon_sym_boolean] = ACTIONS(2429), + [anon_sym_string] = ACTIONS(2429), + [anon_sym_symbol] = ACTIONS(2429), + [anon_sym_object] = ACTIONS(2429), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [729] = { - [sym__call_signature] = STATE(5641), - [sym_formal_parameters] = STATE(3893), - [sym_type_parameters] = STATE(5354), - [sym_identifier] = ACTIONS(2434), - [anon_sym_export] = ACTIONS(2436), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2436), - [anon_sym_EQ] = ACTIONS(841), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2436), - [anon_sym_COMMA] = ACTIONS(892), - [anon_sym_RBRACE] = ACTIONS(892), - [anon_sym_let] = ACTIONS(2436), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(833), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_RBRACK] = ACTIONS(892), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_async] = ACTIONS(2436), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2436), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_static] = ACTIONS(2436), - [anon_sym_readonly] = ACTIONS(2436), - [anon_sym_get] = ACTIONS(2436), - [anon_sym_set] = ACTIONS(2436), - [anon_sym_declare] = ACTIONS(2436), - [anon_sym_public] = ACTIONS(2436), - [anon_sym_private] = ACTIONS(2436), - [anon_sym_protected] = ACTIONS(2436), - [anon_sym_override] = ACTIONS(2436), - [anon_sym_module] = ACTIONS(2436), - [anon_sym_any] = ACTIONS(2436), - [anon_sym_number] = ACTIONS(2436), - [anon_sym_boolean] = ACTIONS(2436), - [anon_sym_string] = ACTIONS(2436), - [anon_sym_symbol] = ACTIONS(2436), - [anon_sym_object] = ACTIONS(2436), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym__call_signature] = STATE(5693), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2427), + [anon_sym_export] = ACTIONS(2429), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2429), + [anon_sym_EQ] = ACTIONS(858), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2429), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_let] = ACTIONS(2429), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2429), + [anon_sym_function] = ACTIONS(2431), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2429), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2429), + [anon_sym_readonly] = ACTIONS(2429), + [anon_sym_get] = ACTIONS(2429), + [anon_sym_set] = ACTIONS(2429), + [anon_sym_declare] = ACTIONS(2429), + [anon_sym_public] = ACTIONS(2429), + [anon_sym_private] = ACTIONS(2429), + [anon_sym_protected] = ACTIONS(2429), + [anon_sym_override] = ACTIONS(2429), + [anon_sym_module] = ACTIONS(2429), + [anon_sym_any] = ACTIONS(2429), + [anon_sym_number] = ACTIONS(2429), + [anon_sym_boolean] = ACTIONS(2429), + [anon_sym_string] = ACTIONS(2429), + [anon_sym_symbol] = ACTIONS(2429), + [anon_sym_object] = ACTIONS(2429), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [730] = { - [sym__call_signature] = STATE(5845), - [sym_formal_parameters] = STATE(3893), - [sym_type_parameters] = STATE(5354), - [sym_identifier] = ACTIONS(2442), - [anon_sym_export] = ACTIONS(2444), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2444), - [anon_sym_EQ] = ACTIONS(855), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2444), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_let] = ACTIONS(2444), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(857), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_async] = ACTIONS(2444), - [anon_sym_function] = ACTIONS(2446), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2444), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_static] = ACTIONS(2444), - [anon_sym_readonly] = ACTIONS(2444), - [anon_sym_get] = ACTIONS(2444), - [anon_sym_set] = ACTIONS(2444), - [anon_sym_declare] = ACTIONS(2444), - [anon_sym_public] = ACTIONS(2444), - [anon_sym_private] = ACTIONS(2444), - [anon_sym_protected] = ACTIONS(2444), - [anon_sym_override] = ACTIONS(2444), - [anon_sym_module] = ACTIONS(2444), - [anon_sym_any] = ACTIONS(2444), - [anon_sym_number] = ACTIONS(2444), - [anon_sym_boolean] = ACTIONS(2444), - [anon_sym_string] = ACTIONS(2444), - [anon_sym_symbol] = ACTIONS(2444), - [anon_sym_object] = ACTIONS(2444), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [sym__call_signature] = STATE(5693), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2427), + [anon_sym_export] = ACTIONS(2429), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2429), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2429), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(154), + [anon_sym_let] = ACTIONS(2429), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2429), + [anon_sym_function] = ACTIONS(2433), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2429), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2429), + [anon_sym_readonly] = ACTIONS(2429), + [anon_sym_get] = ACTIONS(2429), + [anon_sym_set] = ACTIONS(2429), + [anon_sym_declare] = ACTIONS(2429), + [anon_sym_public] = ACTIONS(2429), + [anon_sym_private] = ACTIONS(2429), + [anon_sym_protected] = ACTIONS(2429), + [anon_sym_override] = ACTIONS(2429), + [anon_sym_module] = ACTIONS(2429), + [anon_sym_any] = ACTIONS(2429), + [anon_sym_number] = ACTIONS(2429), + [anon_sym_boolean] = ACTIONS(2429), + [anon_sym_string] = ACTIONS(2429), + [anon_sym_symbol] = ACTIONS(2429), + [anon_sym_object] = ACTIONS(2429), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [731] = { - [sym__call_signature] = STATE(5845), - [sym_formal_parameters] = STATE(3893), - [sym_type_parameters] = STATE(5354), - [sym_identifier] = ACTIONS(2442), - [anon_sym_export] = ACTIONS(2444), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2444), - [anon_sym_EQ] = ACTIONS(855), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2444), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_RBRACE] = ACTIONS(157), - [anon_sym_let] = ACTIONS(2444), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_async] = ACTIONS(2444), - [anon_sym_function] = ACTIONS(2448), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2444), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_static] = ACTIONS(2444), - [anon_sym_readonly] = ACTIONS(2444), - [anon_sym_get] = ACTIONS(2444), - [anon_sym_set] = ACTIONS(2444), - [anon_sym_declare] = ACTIONS(2444), - [anon_sym_public] = ACTIONS(2444), - [anon_sym_private] = ACTIONS(2444), - [anon_sym_protected] = ACTIONS(2444), - [anon_sym_override] = ACTIONS(2444), - [anon_sym_module] = ACTIONS(2444), - [anon_sym_any] = ACTIONS(2444), - [anon_sym_number] = ACTIONS(2444), - [anon_sym_boolean] = ACTIONS(2444), - [anon_sym_string] = ACTIONS(2444), - [anon_sym_symbol] = ACTIONS(2444), - [anon_sym_object] = ACTIONS(2444), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [sym__call_signature] = STATE(5594), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2423), + [anon_sym_export] = ACTIONS(2425), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2425), + [anon_sym_EQ] = ACTIONS(834), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2425), + [anon_sym_COMMA] = ACTIONS(899), + [anon_sym_RBRACE] = ACTIONS(899), + [anon_sym_let] = ACTIONS(2425), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_RBRACK] = ACTIONS(899), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2425), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(844), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2425), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2425), + [anon_sym_readonly] = ACTIONS(2425), + [anon_sym_get] = ACTIONS(2425), + [anon_sym_set] = ACTIONS(2425), + [anon_sym_declare] = ACTIONS(2425), + [anon_sym_public] = ACTIONS(2425), + [anon_sym_private] = ACTIONS(2425), + [anon_sym_protected] = ACTIONS(2425), + [anon_sym_override] = ACTIONS(2425), + [anon_sym_module] = ACTIONS(2425), + [anon_sym_any] = ACTIONS(2425), + [anon_sym_number] = ACTIONS(2425), + [anon_sym_boolean] = ACTIONS(2425), + [anon_sym_string] = ACTIONS(2425), + [anon_sym_symbol] = ACTIONS(2425), + [anon_sym_object] = ACTIONS(2425), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [732] = { - [sym__call_signature] = STATE(5845), - [sym_formal_parameters] = STATE(3893), - [sym_type_parameters] = STATE(5354), - [sym_identifier] = ACTIONS(2442), - [anon_sym_export] = ACTIONS(2444), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2444), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2444), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_RBRACE] = ACTIONS(157), - [anon_sym_let] = ACTIONS(2444), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_async] = ACTIONS(2444), - [anon_sym_function] = ACTIONS(2448), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2444), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_static] = ACTIONS(2444), - [anon_sym_readonly] = ACTIONS(2444), - [anon_sym_get] = ACTIONS(2444), - [anon_sym_set] = ACTIONS(2444), - [anon_sym_declare] = ACTIONS(2444), - [anon_sym_public] = ACTIONS(2444), - [anon_sym_private] = ACTIONS(2444), - [anon_sym_protected] = ACTIONS(2444), - [anon_sym_override] = ACTIONS(2444), - [anon_sym_module] = ACTIONS(2444), - [anon_sym_any] = ACTIONS(2444), - [anon_sym_number] = ACTIONS(2444), - [anon_sym_boolean] = ACTIONS(2444), - [anon_sym_string] = ACTIONS(2444), - [anon_sym_symbol] = ACTIONS(2444), - [anon_sym_object] = ACTIONS(2444), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [sym__call_signature] = STATE(5779), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2435), + [anon_sym_export] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2437), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2437), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_let] = ACTIONS(2437), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2437), + [anon_sym_function] = ACTIONS(2433), + [anon_sym_EQ_GT] = ACTIONS(872), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2437), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2437), + [anon_sym_readonly] = ACTIONS(2437), + [anon_sym_get] = ACTIONS(2437), + [anon_sym_set] = ACTIONS(2437), + [anon_sym_declare] = ACTIONS(2437), + [anon_sym_public] = ACTIONS(2437), + [anon_sym_private] = ACTIONS(2437), + [anon_sym_protected] = ACTIONS(2437), + [anon_sym_override] = ACTIONS(2437), + [anon_sym_module] = ACTIONS(2437), + [anon_sym_any] = ACTIONS(2437), + [anon_sym_number] = ACTIONS(2437), + [anon_sym_boolean] = ACTIONS(2437), + [anon_sym_string] = ACTIONS(2437), + [anon_sym_symbol] = ACTIONS(2437), + [anon_sym_object] = ACTIONS(2437), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [733] = { - [sym__call_signature] = STATE(5791), - [sym_formal_parameters] = STATE(3893), - [sym_type_parameters] = STATE(5354), - [sym_identifier] = ACTIONS(2450), - [anon_sym_export] = ACTIONS(2452), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2452), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2452), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_let] = ACTIONS(2452), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_async] = ACTIONS(2452), - [anon_sym_function] = ACTIONS(2448), - [anon_sym_EQ_GT] = ACTIONS(881), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2452), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_static] = ACTIONS(2452), - [anon_sym_readonly] = ACTIONS(2452), - [anon_sym_get] = ACTIONS(2452), - [anon_sym_set] = ACTIONS(2452), - [anon_sym_declare] = ACTIONS(2452), - [anon_sym_public] = ACTIONS(2452), - [anon_sym_private] = ACTIONS(2452), - [anon_sym_protected] = ACTIONS(2452), - [anon_sym_override] = ACTIONS(2452), - [anon_sym_module] = ACTIONS(2452), - [anon_sym_any] = ACTIONS(2452), - [anon_sym_number] = ACTIONS(2452), - [anon_sym_boolean] = ACTIONS(2452), - [anon_sym_string] = ACTIONS(2452), - [anon_sym_symbol] = ACTIONS(2452), - [anon_sym_object] = ACTIONS(2452), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [sym__call_signature] = STATE(5814), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2439), + [anon_sym_export] = ACTIONS(2441), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2441), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2441), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_let] = ACTIONS(2441), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2441), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(152), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2441), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2441), + [anon_sym_readonly] = ACTIONS(2441), + [anon_sym_get] = ACTIONS(2441), + [anon_sym_set] = ACTIONS(2441), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(2441), + [anon_sym_public] = ACTIONS(2441), + [anon_sym_private] = ACTIONS(2441), + [anon_sym_protected] = ACTIONS(2441), + [anon_sym_override] = ACTIONS(2441), + [anon_sym_module] = ACTIONS(2441), + [anon_sym_any] = ACTIONS(2441), + [anon_sym_number] = ACTIONS(2441), + [anon_sym_boolean] = ACTIONS(2441), + [anon_sym_string] = ACTIONS(2441), + [anon_sym_symbol] = ACTIONS(2441), + [anon_sym_object] = ACTIONS(2441), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [734] = { - [sym__call_signature] = STATE(5845), - [sym_formal_parameters] = STATE(3893), - [sym_type_parameters] = STATE(5354), - [sym_identifier] = ACTIONS(2442), - [anon_sym_export] = ACTIONS(2444), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2444), - [anon_sym_EQ] = ACTIONS(855), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2444), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_let] = ACTIONS(2444), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(869), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_async] = ACTIONS(2444), - [anon_sym_function] = ACTIONS(2338), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2444), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_static] = ACTIONS(2444), - [anon_sym_readonly] = ACTIONS(2444), - [anon_sym_get] = ACTIONS(2444), - [anon_sym_set] = ACTIONS(2444), - [anon_sym_declare] = ACTIONS(2444), - [anon_sym_public] = ACTIONS(2444), - [anon_sym_private] = ACTIONS(2444), - [anon_sym_protected] = ACTIONS(2444), - [anon_sym_override] = ACTIONS(2444), - [anon_sym_module] = ACTIONS(2444), - [anon_sym_any] = ACTIONS(2444), - [anon_sym_number] = ACTIONS(2444), - [anon_sym_boolean] = ACTIONS(2444), - [anon_sym_string] = ACTIONS(2444), - [anon_sym_symbol] = ACTIONS(2444), - [anon_sym_object] = ACTIONS(2444), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [sym__call_signature] = STATE(5779), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2435), + [anon_sym_export] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2437), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2437), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_let] = ACTIONS(2437), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2437), + [anon_sym_function] = ACTIONS(2433), + [anon_sym_EQ_GT] = ACTIONS(872), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2437), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2437), + [anon_sym_readonly] = ACTIONS(2437), + [anon_sym_get] = ACTIONS(2437), + [anon_sym_set] = ACTIONS(2437), + [anon_sym_declare] = ACTIONS(2437), + [anon_sym_public] = ACTIONS(2437), + [anon_sym_private] = ACTIONS(2437), + [anon_sym_protected] = ACTIONS(2437), + [anon_sym_override] = ACTIONS(2437), + [anon_sym_module] = ACTIONS(2437), + [anon_sym_any] = ACTIONS(2437), + [anon_sym_number] = ACTIONS(2437), + [anon_sym_boolean] = ACTIONS(2437), + [anon_sym_string] = ACTIONS(2437), + [anon_sym_symbol] = ACTIONS(2437), + [anon_sym_object] = ACTIONS(2437), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [735] = { - [sym__call_signature] = STATE(5791), - [sym_formal_parameters] = STATE(3893), - [sym_type_parameters] = STATE(5354), - [sym_identifier] = ACTIONS(2450), - [anon_sym_export] = ACTIONS(2452), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2452), - [anon_sym_EQ] = ACTIONS(875), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2452), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_let] = ACTIONS(2452), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_async] = ACTIONS(2452), - [anon_sym_function] = ACTIONS(2448), - [anon_sym_EQ_GT] = ACTIONS(881), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2452), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_static] = ACTIONS(2452), - [anon_sym_readonly] = ACTIONS(2452), - [anon_sym_get] = ACTIONS(2452), - [anon_sym_set] = ACTIONS(2452), - [anon_sym_declare] = ACTIONS(2452), - [anon_sym_public] = ACTIONS(2452), - [anon_sym_private] = ACTIONS(2452), - [anon_sym_protected] = ACTIONS(2452), - [anon_sym_override] = ACTIONS(2452), - [anon_sym_module] = ACTIONS(2452), - [anon_sym_any] = ACTIONS(2452), - [anon_sym_number] = ACTIONS(2452), - [anon_sym_boolean] = ACTIONS(2452), - [anon_sym_string] = ACTIONS(2452), - [anon_sym_symbol] = ACTIONS(2452), - [anon_sym_object] = ACTIONS(2452), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [sym__call_signature] = STATE(5693), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2427), + [anon_sym_export] = ACTIONS(2429), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2429), + [anon_sym_EQ] = ACTIONS(858), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2429), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(154), + [anon_sym_let] = ACTIONS(2429), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2429), + [anon_sym_function] = ACTIONS(2433), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2429), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2429), + [anon_sym_readonly] = ACTIONS(2429), + [anon_sym_get] = ACTIONS(2429), + [anon_sym_set] = ACTIONS(2429), + [anon_sym_declare] = ACTIONS(2429), + [anon_sym_public] = ACTIONS(2429), + [anon_sym_private] = ACTIONS(2429), + [anon_sym_protected] = ACTIONS(2429), + [anon_sym_override] = ACTIONS(2429), + [anon_sym_module] = ACTIONS(2429), + [anon_sym_any] = ACTIONS(2429), + [anon_sym_number] = ACTIONS(2429), + [anon_sym_boolean] = ACTIONS(2429), + [anon_sym_string] = ACTIONS(2429), + [anon_sym_symbol] = ACTIONS(2429), + [anon_sym_object] = ACTIONS(2429), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [736] = { - [ts_builtin_sym_end] = ACTIONS(1703), - [sym_identifier] = ACTIONS(1705), - [anon_sym_export] = ACTIONS(1705), - [anon_sym_default] = ACTIONS(1705), - [anon_sym_type] = ACTIONS(1705), - [anon_sym_namespace] = ACTIONS(1705), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_COMMA] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(1703), - [anon_sym_typeof] = ACTIONS(1705), - [anon_sym_import] = ACTIONS(1705), - [anon_sym_with] = ACTIONS(1705), - [anon_sym_var] = ACTIONS(1705), - [anon_sym_let] = ACTIONS(1705), - [anon_sym_const] = ACTIONS(1705), - [anon_sym_BANG] = ACTIONS(1703), - [anon_sym_else] = ACTIONS(1705), - [anon_sym_if] = ACTIONS(1705), - [anon_sym_switch] = ACTIONS(1705), - [anon_sym_for] = ACTIONS(1705), - [anon_sym_LPAREN] = ACTIONS(1703), - [anon_sym_SEMI] = ACTIONS(1703), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_while] = ACTIONS(1705), - [anon_sym_do] = ACTIONS(1705), - [anon_sym_try] = 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_case] = ACTIONS(1705), - [anon_sym_catch] = ACTIONS(1705), - [anon_sym_finally] = ACTIONS(1705), - [anon_sym_yield] = ACTIONS(1705), - [anon_sym_LBRACK] = ACTIONS(1703), - [sym_glimmer_opening_tag] = ACTIONS(1703), - [anon_sym_class] = ACTIONS(1705), - [anon_sym_async] = ACTIONS(1705), - [anon_sym_function] = ACTIONS(1705), - [anon_sym_new] = ACTIONS(1705), - [anon_sym_using] = ACTIONS(1705), - [anon_sym_PLUS] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_SLASH] = ACTIONS(1705), - [anon_sym_LT] = 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(5), - [anon_sym_BQUOTE] = ACTIONS(1703), - [sym_number] = ACTIONS(1703), - [sym_private_property_identifier] = 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_readonly] = 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_override] = 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_object] = ACTIONS(1705), - [anon_sym_abstract] = ACTIONS(1705), - [anon_sym_interface] = ACTIONS(1705), - [anon_sym_enum] = ACTIONS(1705), - [sym__automatic_semicolon] = ACTIONS(1713), + [sym__call_signature] = STATE(5481), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2443), + [anon_sym_export] = ACTIONS(2445), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2445), + [anon_sym_EQ] = ACTIONS(886), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2445), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_let] = ACTIONS(2445), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_RBRACK] = ACTIONS(126), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2445), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(895), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2445), + [anon_sym_readonly] = ACTIONS(2445), + [anon_sym_get] = ACTIONS(2445), + [anon_sym_set] = ACTIONS(2445), + [anon_sym_declare] = ACTIONS(2445), + [anon_sym_public] = ACTIONS(2445), + [anon_sym_private] = ACTIONS(2445), + [anon_sym_protected] = ACTIONS(2445), + [anon_sym_override] = ACTIONS(2445), + [anon_sym_module] = ACTIONS(2445), + [anon_sym_any] = ACTIONS(2445), + [anon_sym_number] = ACTIONS(2445), + [anon_sym_boolean] = ACTIONS(2445), + [anon_sym_string] = ACTIONS(2445), + [anon_sym_symbol] = ACTIONS(2445), + [anon_sym_object] = ACTIONS(2445), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [737] = { - [sym_catch_clause] = STATE(771), - [sym_finally_clause] = STATE(818), - [ts_builtin_sym_end] = ACTIONS(2454), - [sym_identifier] = ACTIONS(2456), - [anon_sym_export] = ACTIONS(2456), - [anon_sym_default] = ACTIONS(2456), - [anon_sym_type] = ACTIONS(2456), - [anon_sym_namespace] = ACTIONS(2456), - [anon_sym_LBRACE] = ACTIONS(2454), - [anon_sym_RBRACE] = ACTIONS(2454), - [anon_sym_typeof] = ACTIONS(2456), - [anon_sym_import] = ACTIONS(2456), - [anon_sym_with] = ACTIONS(2456), - [anon_sym_var] = ACTIONS(2456), - [anon_sym_let] = ACTIONS(2456), - [anon_sym_const] = ACTIONS(2456), - [anon_sym_BANG] = ACTIONS(2454), - [anon_sym_else] = ACTIONS(2456), - [anon_sym_if] = ACTIONS(2456), - [anon_sym_switch] = ACTIONS(2456), - [anon_sym_for] = ACTIONS(2456), - [anon_sym_LPAREN] = ACTIONS(2454), - [anon_sym_SEMI] = ACTIONS(2454), - [anon_sym_await] = ACTIONS(2456), - [anon_sym_while] = ACTIONS(2456), - [anon_sym_do] = ACTIONS(2456), - [anon_sym_try] = ACTIONS(2456), - [anon_sym_break] = ACTIONS(2456), - [anon_sym_continue] = ACTIONS(2456), - [anon_sym_debugger] = ACTIONS(2456), - [anon_sym_return] = ACTIONS(2456), - [anon_sym_throw] = ACTIONS(2456), - [anon_sym_case] = ACTIONS(2456), - [anon_sym_catch] = ACTIONS(2458), - [anon_sym_finally] = ACTIONS(2460), - [anon_sym_yield] = ACTIONS(2456), - [anon_sym_LBRACK] = ACTIONS(2454), - [sym_glimmer_opening_tag] = ACTIONS(2454), - [anon_sym_class] = ACTIONS(2456), - [anon_sym_async] = ACTIONS(2456), - [anon_sym_function] = ACTIONS(2456), - [anon_sym_new] = ACTIONS(2456), - [anon_sym_using] = ACTIONS(2456), - [anon_sym_PLUS] = ACTIONS(2456), - [anon_sym_DASH] = ACTIONS(2456), - [anon_sym_SLASH] = ACTIONS(2456), - [anon_sym_LT] = ACTIONS(2456), - [anon_sym_TILDE] = ACTIONS(2454), - [anon_sym_void] = ACTIONS(2456), - [anon_sym_delete] = ACTIONS(2456), - [anon_sym_PLUS_PLUS] = ACTIONS(2454), - [anon_sym_DASH_DASH] = ACTIONS(2454), - [anon_sym_DQUOTE] = ACTIONS(2454), - [anon_sym_SQUOTE] = ACTIONS(2454), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2454), - [sym_number] = ACTIONS(2454), - [sym_private_property_identifier] = ACTIONS(2454), - [sym_this] = ACTIONS(2456), - [sym_super] = ACTIONS(2456), - [sym_true] = ACTIONS(2456), - [sym_false] = ACTIONS(2456), - [sym_null] = ACTIONS(2456), - [sym_undefined] = ACTIONS(2456), - [anon_sym_AT] = ACTIONS(2454), - [anon_sym_static] = ACTIONS(2456), - [anon_sym_readonly] = ACTIONS(2456), - [anon_sym_get] = ACTIONS(2456), - [anon_sym_set] = ACTIONS(2456), - [anon_sym_declare] = ACTIONS(2456), - [anon_sym_public] = ACTIONS(2456), - [anon_sym_private] = ACTIONS(2456), - [anon_sym_protected] = ACTIONS(2456), - [anon_sym_override] = ACTIONS(2456), - [anon_sym_module] = ACTIONS(2456), - [anon_sym_any] = ACTIONS(2456), - [anon_sym_number] = ACTIONS(2456), - [anon_sym_boolean] = ACTIONS(2456), - [anon_sym_string] = ACTIONS(2456), - [anon_sym_symbol] = ACTIONS(2456), - [anon_sym_object] = ACTIONS(2456), - [anon_sym_abstract] = ACTIONS(2456), - [anon_sym_interface] = ACTIONS(2456), - [anon_sym_enum] = ACTIONS(2456), + [sym__call_signature] = STATE(5591), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2447), + [anon_sym_export] = ACTIONS(2449), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2449), + [anon_sym_EQ] = ACTIONS(932), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2449), + [anon_sym_LBRACE] = ACTIONS(154), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_let] = ACTIONS(2449), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2449), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(938), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2449), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2449), + [anon_sym_readonly] = ACTIONS(2449), + [anon_sym_get] = ACTIONS(2449), + [anon_sym_set] = ACTIONS(2449), + [anon_sym_declare] = ACTIONS(2449), + [anon_sym_public] = ACTIONS(2449), + [anon_sym_private] = ACTIONS(2449), + [anon_sym_protected] = ACTIONS(2449), + [anon_sym_override] = ACTIONS(2449), + [anon_sym_module] = ACTIONS(2449), + [anon_sym_any] = ACTIONS(2449), + [anon_sym_number] = ACTIONS(2449), + [anon_sym_boolean] = ACTIONS(2449), + [anon_sym_string] = ACTIONS(2449), + [anon_sym_symbol] = ACTIONS(2449), + [anon_sym_object] = ACTIONS(2449), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_implements] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [738] = { - [sym__call_signature] = STATE(5567), - [sym_formal_parameters] = STATE(3893), - [sym_type_parameters] = STATE(5354), - [sym_identifier] = ACTIONS(2438), - [anon_sym_export] = ACTIONS(2440), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2440), - [anon_sym_EQ] = ACTIONS(890), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2440), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_let] = ACTIONS(2440), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_RPAREN] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_async] = ACTIONS(2440), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(227), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2440), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_static] = ACTIONS(2440), - [anon_sym_readonly] = ACTIONS(2440), - [anon_sym_get] = ACTIONS(2440), - [anon_sym_set] = ACTIONS(2440), - [anon_sym_declare] = ACTIONS(2440), - [anon_sym_public] = ACTIONS(2440), - [anon_sym_private] = ACTIONS(2440), - [anon_sym_protected] = ACTIONS(2440), - [anon_sym_override] = ACTIONS(2440), - [anon_sym_module] = ACTIONS(2440), - [anon_sym_any] = ACTIONS(2440), - [anon_sym_number] = ACTIONS(2440), - [anon_sym_boolean] = ACTIONS(2440), - [anon_sym_string] = ACTIONS(2440), - [anon_sym_symbol] = ACTIONS(2440), - [anon_sym_object] = ACTIONS(2440), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym__call_signature] = STATE(5594), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2423), + [anon_sym_export] = ACTIONS(2425), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2425), + [anon_sym_EQ] = ACTIONS(907), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2425), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_RBRACE] = ACTIONS(126), + [anon_sym_let] = ACTIONS(2425), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_RBRACK] = ACTIONS(126), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2425), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(844), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2425), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2425), + [anon_sym_readonly] = ACTIONS(2425), + [anon_sym_get] = ACTIONS(2425), + [anon_sym_set] = ACTIONS(2425), + [anon_sym_declare] = ACTIONS(2425), + [anon_sym_public] = ACTIONS(2425), + [anon_sym_private] = ACTIONS(2425), + [anon_sym_protected] = ACTIONS(2425), + [anon_sym_override] = ACTIONS(2425), + [anon_sym_module] = ACTIONS(2425), + [anon_sym_any] = ACTIONS(2425), + [anon_sym_number] = ACTIONS(2425), + [anon_sym_boolean] = ACTIONS(2425), + [anon_sym_string] = ACTIONS(2425), + [anon_sym_symbol] = ACTIONS(2425), + [anon_sym_object] = ACTIONS(2425), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [739] = { - [ts_builtin_sym_end] = ACTIONS(1789), - [sym_identifier] = ACTIONS(1791), - [anon_sym_export] = ACTIONS(1791), - [anon_sym_default] = ACTIONS(1791), - [anon_sym_type] = ACTIONS(1791), - [anon_sym_namespace] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1789), - [anon_sym_COMMA] = ACTIONS(1789), - [anon_sym_RBRACE] = ACTIONS(1789), - [anon_sym_typeof] = ACTIONS(1791), - [anon_sym_import] = ACTIONS(1791), - [anon_sym_with] = ACTIONS(1791), - [anon_sym_var] = ACTIONS(1791), - [anon_sym_let] = ACTIONS(1791), - [anon_sym_const] = ACTIONS(1791), - [anon_sym_BANG] = ACTIONS(1789), - [anon_sym_else] = ACTIONS(1791), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_switch] = ACTIONS(1791), - [anon_sym_for] = ACTIONS(1791), - [anon_sym_LPAREN] = ACTIONS(1789), - [anon_sym_SEMI] = ACTIONS(1789), - [anon_sym_await] = ACTIONS(1791), - [anon_sym_while] = ACTIONS(1791), - [anon_sym_do] = ACTIONS(1791), - [anon_sym_try] = ACTIONS(1791), - [anon_sym_break] = ACTIONS(1791), - [anon_sym_continue] = ACTIONS(1791), - [anon_sym_debugger] = ACTIONS(1791), - [anon_sym_return] = ACTIONS(1791), - [anon_sym_throw] = ACTIONS(1791), - [anon_sym_case] = ACTIONS(1791), - [anon_sym_catch] = ACTIONS(1791), - [anon_sym_finally] = ACTIONS(1791), - [anon_sym_yield] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(1789), - [sym_glimmer_opening_tag] = ACTIONS(1789), - [anon_sym_class] = ACTIONS(1791), - [anon_sym_async] = ACTIONS(1791), - [anon_sym_function] = ACTIONS(1791), - [anon_sym_new] = ACTIONS(1791), - [anon_sym_using] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(1791), - [anon_sym_DASH] = ACTIONS(1791), - [anon_sym_SLASH] = ACTIONS(1791), - [anon_sym_LT] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1789), - [anon_sym_void] = ACTIONS(1791), - [anon_sym_delete] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1789), - [anon_sym_DASH_DASH] = ACTIONS(1789), - [anon_sym_DQUOTE] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1789), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1789), - [sym_number] = ACTIONS(1789), - [sym_private_property_identifier] = ACTIONS(1789), - [sym_this] = ACTIONS(1791), - [sym_super] = ACTIONS(1791), - [sym_true] = ACTIONS(1791), - [sym_false] = ACTIONS(1791), - [sym_null] = ACTIONS(1791), - [sym_undefined] = ACTIONS(1791), - [anon_sym_AT] = ACTIONS(1789), - [anon_sym_static] = ACTIONS(1791), - [anon_sym_readonly] = ACTIONS(1791), - [anon_sym_get] = ACTIONS(1791), - [anon_sym_set] = ACTIONS(1791), - [anon_sym_declare] = ACTIONS(1791), - [anon_sym_public] = ACTIONS(1791), - [anon_sym_private] = ACTIONS(1791), - [anon_sym_protected] = ACTIONS(1791), - [anon_sym_override] = ACTIONS(1791), - [anon_sym_module] = ACTIONS(1791), - [anon_sym_any] = ACTIONS(1791), - [anon_sym_number] = ACTIONS(1791), - [anon_sym_boolean] = ACTIONS(1791), - [anon_sym_string] = ACTIONS(1791), - [anon_sym_symbol] = ACTIONS(1791), - [anon_sym_object] = ACTIONS(1791), - [anon_sym_abstract] = ACTIONS(1791), - [anon_sym_interface] = ACTIONS(1791), - [anon_sym_enum] = ACTIONS(1791), - [sym__automatic_semicolon] = ACTIONS(2462), + [sym__call_signature] = STATE(5814), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2439), + [anon_sym_export] = ACTIONS(2441), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2441), + [anon_sym_EQ] = ACTIONS(880), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2441), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_let] = ACTIONS(2441), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_RPAREN] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(154), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2441), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(152), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2441), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2441), + [anon_sym_readonly] = ACTIONS(2441), + [anon_sym_get] = ACTIONS(2441), + [anon_sym_set] = ACTIONS(2441), + [anon_sym_declare] = ACTIONS(2441), + [anon_sym_public] = ACTIONS(2441), + [anon_sym_private] = ACTIONS(2441), + [anon_sym_protected] = ACTIONS(2441), + [anon_sym_override] = ACTIONS(2441), + [anon_sym_module] = ACTIONS(2441), + [anon_sym_any] = ACTIONS(2441), + [anon_sym_number] = ACTIONS(2441), + [anon_sym_boolean] = ACTIONS(2441), + [anon_sym_string] = ACTIONS(2441), + [anon_sym_symbol] = ACTIONS(2441), + [anon_sym_object] = ACTIONS(2441), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [740] = { - [sym__call_signature] = STATE(5493), - [sym_formal_parameters] = STATE(3893), - [sym_type_parameters] = STATE(5354), - [sym_identifier] = ACTIONS(2464), - [anon_sym_export] = ACTIONS(2466), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2466), - [anon_sym_EQ] = ACTIONS(904), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2466), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_let] = ACTIONS(2466), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(909), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_RBRACK] = ACTIONS(224), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_async] = ACTIONS(2466), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(913), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2466), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_static] = ACTIONS(2466), - [anon_sym_readonly] = ACTIONS(2466), - [anon_sym_get] = ACTIONS(2466), - [anon_sym_set] = ACTIONS(2466), - [anon_sym_declare] = ACTIONS(2466), - [anon_sym_public] = ACTIONS(2466), - [anon_sym_private] = ACTIONS(2466), - [anon_sym_protected] = ACTIONS(2466), - [anon_sym_override] = ACTIONS(2466), - [anon_sym_module] = ACTIONS(2466), - [anon_sym_any] = ACTIONS(2466), - [anon_sym_number] = ACTIONS(2466), - [anon_sym_boolean] = ACTIONS(2466), - [anon_sym_string] = ACTIONS(2466), - [anon_sym_symbol] = ACTIONS(2466), - [anon_sym_object] = ACTIONS(2466), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym__call_signature] = STATE(5591), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2447), + [anon_sym_export] = ACTIONS(2449), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2449), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2449), + [anon_sym_LBRACE] = ACTIONS(154), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_let] = ACTIONS(2449), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2449), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(938), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2449), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2449), + [anon_sym_readonly] = ACTIONS(2449), + [anon_sym_get] = ACTIONS(2449), + [anon_sym_set] = ACTIONS(2449), + [anon_sym_declare] = ACTIONS(2449), + [anon_sym_public] = ACTIONS(2449), + [anon_sym_private] = ACTIONS(2449), + [anon_sym_protected] = ACTIONS(2449), + [anon_sym_override] = ACTIONS(2449), + [anon_sym_module] = ACTIONS(2449), + [anon_sym_any] = ACTIONS(2449), + [anon_sym_number] = ACTIONS(2449), + [anon_sym_boolean] = ACTIONS(2449), + [anon_sym_string] = ACTIONS(2449), + [anon_sym_symbol] = ACTIONS(2449), + [anon_sym_object] = ACTIONS(2449), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_implements] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [741] = { - [sym__call_signature] = STATE(5608), - [sym_formal_parameters] = STATE(3893), - [sym_type_parameters] = STATE(5354), - [sym_identifier] = ACTIONS(2468), - [anon_sym_export] = ACTIONS(2470), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2470), - [anon_sym_EQ] = ACTIONS(939), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2470), - [anon_sym_LBRACE] = ACTIONS(157), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_let] = ACTIONS(2470), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_async] = ACTIONS(2470), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(945), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2470), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_static] = ACTIONS(2470), - [anon_sym_readonly] = ACTIONS(2470), - [anon_sym_get] = ACTIONS(2470), - [anon_sym_set] = ACTIONS(2470), - [anon_sym_declare] = ACTIONS(2470), - [anon_sym_public] = ACTIONS(2470), - [anon_sym_private] = ACTIONS(2470), - [anon_sym_protected] = ACTIONS(2470), - [anon_sym_override] = ACTIONS(2470), - [anon_sym_module] = ACTIONS(2470), - [anon_sym_any] = ACTIONS(2470), - [anon_sym_number] = ACTIONS(2470), - [anon_sym_boolean] = ACTIONS(2470), - [anon_sym_string] = ACTIONS(2470), - [anon_sym_symbol] = ACTIONS(2470), - [anon_sym_object] = ACTIONS(2470), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_implements] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym__call_signature] = STATE(5814), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2439), + [anon_sym_export] = ACTIONS(2441), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2441), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2441), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_let] = ACTIONS(2441), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_RPAREN] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(154), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2441), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(152), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2441), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2441), + [anon_sym_readonly] = ACTIONS(2441), + [anon_sym_get] = ACTIONS(2441), + [anon_sym_set] = ACTIONS(2441), + [anon_sym_declare] = ACTIONS(2441), + [anon_sym_public] = ACTIONS(2441), + [anon_sym_private] = ACTIONS(2441), + [anon_sym_protected] = ACTIONS(2441), + [anon_sym_override] = ACTIONS(2441), + [anon_sym_module] = ACTIONS(2441), + [anon_sym_any] = ACTIONS(2441), + [anon_sym_number] = ACTIONS(2441), + [anon_sym_boolean] = ACTIONS(2441), + [anon_sym_string] = ACTIONS(2441), + [anon_sym_symbol] = ACTIONS(2441), + [anon_sym_object] = ACTIONS(2441), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [742] = { - [sym__call_signature] = STATE(5641), - [sym_formal_parameters] = STATE(3893), - [sym_type_parameters] = STATE(5354), - [sym_identifier] = ACTIONS(2434), - [anon_sym_export] = ACTIONS(2436), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2436), - [anon_sym_EQ] = ACTIONS(887), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2436), - [anon_sym_COMMA] = ACTIONS(224), - [anon_sym_RBRACE] = ACTIONS(224), - [anon_sym_let] = ACTIONS(2436), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_RBRACK] = ACTIONS(224), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_async] = ACTIONS(2436), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2436), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_static] = ACTIONS(2436), - [anon_sym_readonly] = ACTIONS(2436), - [anon_sym_get] = ACTIONS(2436), - [anon_sym_set] = ACTIONS(2436), - [anon_sym_declare] = ACTIONS(2436), - [anon_sym_public] = ACTIONS(2436), - [anon_sym_private] = ACTIONS(2436), - [anon_sym_protected] = ACTIONS(2436), - [anon_sym_override] = ACTIONS(2436), - [anon_sym_module] = ACTIONS(2436), - [anon_sym_any] = ACTIONS(2436), - [anon_sym_number] = ACTIONS(2436), - [anon_sym_boolean] = ACTIONS(2436), - [anon_sym_string] = ACTIONS(2436), - [anon_sym_symbol] = ACTIONS(2436), - [anon_sym_object] = ACTIONS(2436), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym__call_signature] = STATE(5594), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2423), + [anon_sym_export] = ACTIONS(2425), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2425), + [anon_sym_EQ] = ACTIONS(834), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2425), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_let] = ACTIONS(2425), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(902), + [anon_sym_of] = ACTIONS(905), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2425), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(844), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2425), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2425), + [anon_sym_readonly] = ACTIONS(2425), + [anon_sym_get] = ACTIONS(2425), + [anon_sym_set] = ACTIONS(2425), + [anon_sym_declare] = ACTIONS(2425), + [anon_sym_public] = ACTIONS(2425), + [anon_sym_private] = ACTIONS(2425), + [anon_sym_protected] = ACTIONS(2425), + [anon_sym_override] = ACTIONS(2425), + [anon_sym_module] = ACTIONS(2425), + [anon_sym_any] = ACTIONS(2425), + [anon_sym_number] = ACTIONS(2425), + [anon_sym_boolean] = ACTIONS(2425), + [anon_sym_string] = ACTIONS(2425), + [anon_sym_symbol] = ACTIONS(2425), + [anon_sym_object] = ACTIONS(2425), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [743] = { - [sym__call_signature] = STATE(5641), - [sym_formal_parameters] = STATE(3893), - [sym_type_parameters] = STATE(5354), - [sym_identifier] = ACTIONS(2434), - [anon_sym_export] = ACTIONS(2436), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2436), - [anon_sym_EQ] = ACTIONS(841), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2436), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_let] = ACTIONS(2436), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(895), - [anon_sym_of] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_async] = ACTIONS(2436), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2436), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_static] = ACTIONS(2436), - [anon_sym_readonly] = ACTIONS(2436), - [anon_sym_get] = ACTIONS(2436), - [anon_sym_set] = ACTIONS(2436), - [anon_sym_declare] = ACTIONS(2436), - [anon_sym_public] = ACTIONS(2436), - [anon_sym_private] = ACTIONS(2436), - [anon_sym_protected] = ACTIONS(2436), - [anon_sym_override] = ACTIONS(2436), - [anon_sym_module] = ACTIONS(2436), - [anon_sym_any] = ACTIONS(2436), - [anon_sym_number] = ACTIONS(2436), - [anon_sym_boolean] = ACTIONS(2436), - [anon_sym_string] = ACTIONS(2436), - [anon_sym_symbol] = ACTIONS(2436), - [anon_sym_object] = ACTIONS(2436), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym__call_signature] = STATE(5601), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2451), + [anon_sym_export] = ACTIONS(2453), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2453), + [anon_sym_EQ] = ACTIONS(918), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2453), + [anon_sym_let] = ACTIONS(2453), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2453), + [anon_sym_function] = ACTIONS(2433), + [anon_sym_EQ_GT] = ACTIONS(924), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2453), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2453), + [anon_sym_readonly] = ACTIONS(2453), + [anon_sym_get] = ACTIONS(2453), + [anon_sym_set] = ACTIONS(2453), + [anon_sym_declare] = ACTIONS(2453), + [anon_sym_public] = ACTIONS(2453), + [anon_sym_private] = ACTIONS(2453), + [anon_sym_protected] = ACTIONS(2453), + [anon_sym_override] = ACTIONS(2453), + [anon_sym_module] = ACTIONS(2453), + [anon_sym_any] = ACTIONS(2453), + [anon_sym_number] = ACTIONS(2453), + [anon_sym_boolean] = ACTIONS(2453), + [anon_sym_string] = ACTIONS(2453), + [anon_sym_symbol] = ACTIONS(2453), + [anon_sym_object] = ACTIONS(2453), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [744] = { - [sym__call_signature] = STATE(5608), - [sym_formal_parameters] = STATE(3893), - [sym_type_parameters] = STATE(5354), - [sym_identifier] = ACTIONS(2468), - [anon_sym_export] = ACTIONS(2470), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2470), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2470), - [anon_sym_LBRACE] = ACTIONS(157), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_let] = ACTIONS(2470), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_async] = ACTIONS(2470), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(945), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2470), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_static] = ACTIONS(2470), - [anon_sym_readonly] = ACTIONS(2470), - [anon_sym_get] = ACTIONS(2470), - [anon_sym_set] = ACTIONS(2470), - [anon_sym_declare] = ACTIONS(2470), - [anon_sym_public] = ACTIONS(2470), - [anon_sym_private] = ACTIONS(2470), - [anon_sym_protected] = ACTIONS(2470), - [anon_sym_override] = ACTIONS(2470), - [anon_sym_module] = ACTIONS(2470), - [anon_sym_any] = ACTIONS(2470), - [anon_sym_number] = ACTIONS(2470), - [anon_sym_boolean] = ACTIONS(2470), - [anon_sym_string] = ACTIONS(2470), - [anon_sym_symbol] = ACTIONS(2470), - [anon_sym_object] = ACTIONS(2470), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_implements] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym__call_signature] = STATE(5481), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2443), + [anon_sym_export] = ACTIONS(2445), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2445), + [anon_sym_EQ] = ACTIONS(910), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2445), + [anon_sym_let] = ACTIONS(2445), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_RBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2445), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(895), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2445), + [anon_sym_readonly] = ACTIONS(2445), + [anon_sym_get] = ACTIONS(2445), + [anon_sym_set] = ACTIONS(2445), + [anon_sym_declare] = ACTIONS(2445), + [anon_sym_public] = ACTIONS(2445), + [anon_sym_private] = ACTIONS(2445), + [anon_sym_protected] = ACTIONS(2445), + [anon_sym_override] = ACTIONS(2445), + [anon_sym_module] = ACTIONS(2445), + [anon_sym_any] = ACTIONS(2445), + [anon_sym_number] = ACTIONS(2445), + [anon_sym_boolean] = ACTIONS(2445), + [anon_sym_string] = ACTIONS(2445), + [anon_sym_symbol] = ACTIONS(2445), + [anon_sym_object] = ACTIONS(2445), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [745] = { - [sym__call_signature] = STATE(5567), - [sym_formal_parameters] = STATE(3893), - [sym_type_parameters] = STATE(5354), - [sym_identifier] = ACTIONS(2438), - [anon_sym_export] = ACTIONS(2440), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2440), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2440), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_let] = ACTIONS(2440), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_RPAREN] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_async] = ACTIONS(2440), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(227), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2440), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_static] = ACTIONS(2440), - [anon_sym_readonly] = ACTIONS(2440), - [anon_sym_get] = ACTIONS(2440), - [anon_sym_set] = ACTIONS(2440), - [anon_sym_declare] = ACTIONS(2440), - [anon_sym_public] = ACTIONS(2440), - [anon_sym_private] = ACTIONS(2440), - [anon_sym_protected] = ACTIONS(2440), - [anon_sym_override] = ACTIONS(2440), - [anon_sym_module] = ACTIONS(2440), - [anon_sym_any] = ACTIONS(2440), - [anon_sym_number] = ACTIONS(2440), - [anon_sym_boolean] = ACTIONS(2440), - [anon_sym_string] = ACTIONS(2440), - [anon_sym_symbol] = ACTIONS(2440), - [anon_sym_object] = ACTIONS(2440), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_catch_clause] = STATE(770), + [sym_finally_clause] = STATE(914), + [ts_builtin_sym_end] = ACTIONS(2455), + [sym_identifier] = ACTIONS(2457), + [anon_sym_export] = ACTIONS(2457), + [anon_sym_default] = ACTIONS(2457), + [anon_sym_type] = ACTIONS(2457), + [anon_sym_namespace] = ACTIONS(2457), + [anon_sym_LBRACE] = ACTIONS(2455), + [anon_sym_RBRACE] = ACTIONS(2455), + [anon_sym_typeof] = ACTIONS(2457), + [anon_sym_import] = ACTIONS(2457), + [anon_sym_with] = ACTIONS(2457), + [anon_sym_var] = ACTIONS(2457), + [anon_sym_let] = ACTIONS(2457), + [anon_sym_const] = ACTIONS(2457), + [anon_sym_BANG] = ACTIONS(2455), + [anon_sym_else] = ACTIONS(2457), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_switch] = ACTIONS(2457), + [anon_sym_for] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(2455), + [anon_sym_SEMI] = ACTIONS(2455), + [anon_sym_await] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(2457), + [anon_sym_do] = ACTIONS(2457), + [anon_sym_try] = ACTIONS(2457), + [anon_sym_break] = ACTIONS(2457), + [anon_sym_continue] = ACTIONS(2457), + [anon_sym_debugger] = ACTIONS(2457), + [anon_sym_return] = ACTIONS(2457), + [anon_sym_throw] = ACTIONS(2457), + [anon_sym_case] = ACTIONS(2457), + [anon_sym_catch] = ACTIONS(2459), + [anon_sym_finally] = ACTIONS(2461), + [anon_sym_yield] = ACTIONS(2457), + [anon_sym_LBRACK] = ACTIONS(2455), + [anon_sym_class] = ACTIONS(2457), + [anon_sym_async] = ACTIONS(2457), + [anon_sym_function] = ACTIONS(2457), + [anon_sym_new] = ACTIONS(2457), + [anon_sym_using] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2457), + [anon_sym_DASH] = ACTIONS(2457), + [anon_sym_SLASH] = ACTIONS(2457), + [anon_sym_LT] = ACTIONS(2455), + [anon_sym_TILDE] = ACTIONS(2455), + [anon_sym_void] = ACTIONS(2457), + [anon_sym_delete] = ACTIONS(2457), + [anon_sym_PLUS_PLUS] = ACTIONS(2455), + [anon_sym_DASH_DASH] = ACTIONS(2455), + [anon_sym_DQUOTE] = ACTIONS(2455), + [anon_sym_SQUOTE] = ACTIONS(2455), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2455), + [sym_number] = ACTIONS(2455), + [sym_private_property_identifier] = ACTIONS(2455), + [sym_this] = ACTIONS(2457), + [sym_super] = ACTIONS(2457), + [sym_true] = ACTIONS(2457), + [sym_false] = ACTIONS(2457), + [sym_null] = ACTIONS(2457), + [sym_undefined] = ACTIONS(2457), + [anon_sym_AT] = ACTIONS(2455), + [anon_sym_static] = ACTIONS(2457), + [anon_sym_readonly] = ACTIONS(2457), + [anon_sym_get] = ACTIONS(2457), + [anon_sym_set] = ACTIONS(2457), + [anon_sym_declare] = ACTIONS(2457), + [anon_sym_public] = ACTIONS(2457), + [anon_sym_private] = ACTIONS(2457), + [anon_sym_protected] = ACTIONS(2457), + [anon_sym_override] = ACTIONS(2457), + [anon_sym_module] = ACTIONS(2457), + [anon_sym_any] = ACTIONS(2457), + [anon_sym_number] = ACTIONS(2457), + [anon_sym_boolean] = ACTIONS(2457), + [anon_sym_string] = ACTIONS(2457), + [anon_sym_symbol] = ACTIONS(2457), + [anon_sym_object] = ACTIONS(2457), + [anon_sym_abstract] = ACTIONS(2457), + [anon_sym_interface] = ACTIONS(2457), + [anon_sym_enum] = ACTIONS(2457), [sym_html_comment] = ACTIONS(5), }, [746] = { - [ts_builtin_sym_end] = ACTIONS(1831), - [sym_identifier] = ACTIONS(1833), - [anon_sym_export] = ACTIONS(1833), - [anon_sym_default] = ACTIONS(1833), - [anon_sym_type] = ACTIONS(1833), - [anon_sym_namespace] = ACTIONS(1833), - [anon_sym_LBRACE] = ACTIONS(1831), - [anon_sym_COMMA] = ACTIONS(1831), - [anon_sym_RBRACE] = ACTIONS(1831), - [anon_sym_typeof] = ACTIONS(1833), - [anon_sym_import] = ACTIONS(1833), - [anon_sym_with] = ACTIONS(1833), - [anon_sym_var] = ACTIONS(1833), - [anon_sym_let] = ACTIONS(1833), - [anon_sym_const] = ACTIONS(1833), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_else] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_switch] = ACTIONS(1833), - [anon_sym_for] = ACTIONS(1833), - [anon_sym_LPAREN] = ACTIONS(1831), - [anon_sym_SEMI] = ACTIONS(1831), - [anon_sym_await] = ACTIONS(1833), - [anon_sym_while] = ACTIONS(1833), - [anon_sym_do] = ACTIONS(1833), - [anon_sym_try] = ACTIONS(1833), - [anon_sym_break] = ACTIONS(1833), - [anon_sym_continue] = ACTIONS(1833), - [anon_sym_debugger] = ACTIONS(1833), - [anon_sym_return] = ACTIONS(1833), - [anon_sym_throw] = ACTIONS(1833), - [anon_sym_case] = ACTIONS(1833), - [anon_sym_yield] = ACTIONS(1833), - [anon_sym_LBRACK] = ACTIONS(1831), - [sym_glimmer_opening_tag] = ACTIONS(1831), - [anon_sym_class] = ACTIONS(1833), - [anon_sym_async] = ACTIONS(1833), - [anon_sym_function] = ACTIONS(1833), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1833), - [anon_sym_PLUS] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1833), - [anon_sym_SLASH] = ACTIONS(1833), - [anon_sym_LT] = ACTIONS(1833), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_void] = ACTIONS(1833), - [anon_sym_delete] = ACTIONS(1833), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_DQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE] = ACTIONS(1831), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1831), - [sym_number] = ACTIONS(1831), - [sym_private_property_identifier] = ACTIONS(1831), - [sym_this] = ACTIONS(1833), - [sym_super] = ACTIONS(1833), - [sym_true] = ACTIONS(1833), - [sym_false] = ACTIONS(1833), - [sym_null] = ACTIONS(1833), - [sym_undefined] = ACTIONS(1833), - [anon_sym_AT] = ACTIONS(1831), - [anon_sym_static] = ACTIONS(1833), - [anon_sym_readonly] = ACTIONS(1833), - [anon_sym_get] = ACTIONS(1833), - [anon_sym_set] = ACTIONS(1833), - [anon_sym_declare] = ACTIONS(1833), - [anon_sym_public] = ACTIONS(1833), - [anon_sym_private] = ACTIONS(1833), - [anon_sym_protected] = ACTIONS(1833), - [anon_sym_override] = ACTIONS(1833), - [anon_sym_module] = ACTIONS(1833), - [anon_sym_any] = ACTIONS(1833), - [anon_sym_number] = ACTIONS(1833), - [anon_sym_boolean] = ACTIONS(1833), - [anon_sym_string] = ACTIONS(1833), - [anon_sym_symbol] = ACTIONS(1833), - [anon_sym_object] = ACTIONS(1833), - [anon_sym_abstract] = ACTIONS(1833), - [anon_sym_interface] = ACTIONS(1833), - [anon_sym_enum] = ACTIONS(1833), - [anon_sym_PIPE_RBRACE] = ACTIONS(1831), - [sym__automatic_semicolon] = ACTIONS(1831), + [sym__call_signature] = STATE(5481), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2443), + [anon_sym_export] = ACTIONS(2445), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2445), + [anon_sym_EQ] = ACTIONS(910), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2445), + [anon_sym_let] = ACTIONS(2445), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(912), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_RBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2445), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(895), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2445), + [anon_sym_readonly] = ACTIONS(2445), + [anon_sym_get] = ACTIONS(2445), + [anon_sym_set] = ACTIONS(2445), + [anon_sym_declare] = ACTIONS(2445), + [anon_sym_public] = ACTIONS(2445), + [anon_sym_private] = ACTIONS(2445), + [anon_sym_protected] = ACTIONS(2445), + [anon_sym_override] = ACTIONS(2445), + [anon_sym_module] = ACTIONS(2445), + [anon_sym_any] = ACTIONS(2445), + [anon_sym_number] = ACTIONS(2445), + [anon_sym_boolean] = ACTIONS(2445), + [anon_sym_string] = ACTIONS(2445), + [anon_sym_symbol] = ACTIONS(2445), + [anon_sym_object] = ACTIONS(2445), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [747] = { - [sym__call_signature] = STATE(5493), - [sym_formal_parameters] = STATE(3893), - [sym_type_parameters] = STATE(5354), - [sym_identifier] = ACTIONS(2464), - [anon_sym_export] = ACTIONS(2466), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2466), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2466), - [anon_sym_let] = ACTIONS(2466), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(909), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_RBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_async] = ACTIONS(2466), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(913), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2466), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_static] = ACTIONS(2466), - [anon_sym_readonly] = ACTIONS(2466), - [anon_sym_get] = ACTIONS(2466), - [anon_sym_set] = ACTIONS(2466), - [anon_sym_declare] = ACTIONS(2466), - [anon_sym_public] = ACTIONS(2466), - [anon_sym_private] = ACTIONS(2466), - [anon_sym_protected] = ACTIONS(2466), - [anon_sym_override] = ACTIONS(2466), - [anon_sym_module] = ACTIONS(2466), - [anon_sym_any] = ACTIONS(2466), - [anon_sym_number] = ACTIONS(2466), - [anon_sym_boolean] = ACTIONS(2466), - [anon_sym_string] = ACTIONS(2466), - [anon_sym_symbol] = ACTIONS(2466), - [anon_sym_object] = ACTIONS(2466), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [ts_builtin_sym_end] = ACTIONS(1690), + [sym_identifier] = ACTIONS(1692), + [anon_sym_export] = ACTIONS(1692), + [anon_sym_default] = ACTIONS(1692), + [anon_sym_type] = ACTIONS(1692), + [anon_sym_namespace] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1690), + [anon_sym_COMMA] = ACTIONS(1690), + [anon_sym_RBRACE] = ACTIONS(1690), + [anon_sym_typeof] = ACTIONS(1692), + [anon_sym_import] = ACTIONS(1692), + [anon_sym_with] = ACTIONS(1692), + [anon_sym_var] = ACTIONS(1692), + [anon_sym_let] = ACTIONS(1692), + [anon_sym_const] = ACTIONS(1692), + [anon_sym_BANG] = ACTIONS(1690), + [anon_sym_else] = ACTIONS(1692), + [anon_sym_if] = ACTIONS(1692), + [anon_sym_switch] = ACTIONS(1692), + [anon_sym_for] = ACTIONS(1692), + [anon_sym_LPAREN] = ACTIONS(1690), + [anon_sym_SEMI] = ACTIONS(1690), + [anon_sym_await] = ACTIONS(1692), + [anon_sym_while] = ACTIONS(1692), + [anon_sym_do] = ACTIONS(1692), + [anon_sym_try] = ACTIONS(1692), + [anon_sym_break] = ACTIONS(1692), + [anon_sym_continue] = ACTIONS(1692), + [anon_sym_debugger] = ACTIONS(1692), + [anon_sym_return] = ACTIONS(1692), + [anon_sym_throw] = ACTIONS(1692), + [anon_sym_case] = ACTIONS(1692), + [anon_sym_catch] = ACTIONS(1692), + [anon_sym_finally] = ACTIONS(1692), + [anon_sym_yield] = ACTIONS(1692), + [anon_sym_LBRACK] = ACTIONS(1690), + [anon_sym_class] = ACTIONS(1692), + [anon_sym_async] = ACTIONS(1692), + [anon_sym_function] = ACTIONS(1692), + [anon_sym_new] = ACTIONS(1692), + [anon_sym_using] = ACTIONS(1692), + [anon_sym_PLUS] = ACTIONS(1692), + [anon_sym_DASH] = ACTIONS(1692), + [anon_sym_SLASH] = ACTIONS(1692), + [anon_sym_LT] = ACTIONS(1690), + [anon_sym_TILDE] = ACTIONS(1690), + [anon_sym_void] = ACTIONS(1692), + [anon_sym_delete] = ACTIONS(1692), + [anon_sym_PLUS_PLUS] = ACTIONS(1690), + [anon_sym_DASH_DASH] = ACTIONS(1690), + [anon_sym_DQUOTE] = ACTIONS(1690), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1690), + [sym_number] = ACTIONS(1690), + [sym_private_property_identifier] = ACTIONS(1690), + [sym_this] = ACTIONS(1692), + [sym_super] = ACTIONS(1692), + [sym_true] = ACTIONS(1692), + [sym_false] = ACTIONS(1692), + [sym_null] = ACTIONS(1692), + [sym_undefined] = ACTIONS(1692), + [anon_sym_AT] = ACTIONS(1690), + [anon_sym_static] = ACTIONS(1692), + [anon_sym_readonly] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1692), + [anon_sym_set] = ACTIONS(1692), + [anon_sym_declare] = ACTIONS(1692), + [anon_sym_public] = ACTIONS(1692), + [anon_sym_private] = ACTIONS(1692), + [anon_sym_protected] = ACTIONS(1692), + [anon_sym_override] = ACTIONS(1692), + [anon_sym_module] = ACTIONS(1692), + [anon_sym_any] = ACTIONS(1692), + [anon_sym_number] = ACTIONS(1692), + [anon_sym_boolean] = ACTIONS(1692), + [anon_sym_string] = ACTIONS(1692), + [anon_sym_symbol] = ACTIONS(1692), + [anon_sym_object] = ACTIONS(1692), + [anon_sym_abstract] = ACTIONS(1692), + [anon_sym_interface] = ACTIONS(1692), + [anon_sym_enum] = ACTIONS(1692), + [sym__automatic_semicolon] = ACTIONS(1700), [sym_html_comment] = ACTIONS(5), }, [748] = { - [sym__call_signature] = STATE(5613), - [sym_formal_parameters] = STATE(3893), - [sym_type_parameters] = STATE(5354), - [sym_identifier] = ACTIONS(2472), - [anon_sym_export] = ACTIONS(2474), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2474), - [anon_sym_EQ] = ACTIONS(925), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2474), - [anon_sym_let] = ACTIONS(2474), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_async] = ACTIONS(2474), - [anon_sym_function] = ACTIONS(2448), - [anon_sym_EQ_GT] = ACTIONS(931), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2474), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_static] = ACTIONS(2474), - [anon_sym_readonly] = ACTIONS(2474), - [anon_sym_get] = ACTIONS(2474), - [anon_sym_set] = ACTIONS(2474), - [anon_sym_declare] = ACTIONS(2474), - [anon_sym_public] = ACTIONS(2474), - [anon_sym_private] = ACTIONS(2474), - [anon_sym_protected] = ACTIONS(2474), - [anon_sym_override] = ACTIONS(2474), - [anon_sym_module] = ACTIONS(2474), - [anon_sym_any] = ACTIONS(2474), - [anon_sym_number] = ACTIONS(2474), - [anon_sym_boolean] = ACTIONS(2474), - [anon_sym_string] = ACTIONS(2474), - [anon_sym_symbol] = ACTIONS(2474), - [anon_sym_object] = ACTIONS(2474), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [sym__call_signature] = STATE(5601), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2451), + [anon_sym_export] = ACTIONS(2453), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2453), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2453), + [anon_sym_let] = ACTIONS(2453), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2453), + [anon_sym_function] = ACTIONS(2433), + [anon_sym_EQ_GT] = ACTIONS(924), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2453), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2453), + [anon_sym_readonly] = ACTIONS(2453), + [anon_sym_get] = ACTIONS(2453), + [anon_sym_set] = ACTIONS(2453), + [anon_sym_declare] = ACTIONS(2453), + [anon_sym_public] = ACTIONS(2453), + [anon_sym_private] = ACTIONS(2453), + [anon_sym_protected] = ACTIONS(2453), + [anon_sym_override] = ACTIONS(2453), + [anon_sym_module] = ACTIONS(2453), + [anon_sym_any] = ACTIONS(2453), + [anon_sym_number] = ACTIONS(2453), + [anon_sym_boolean] = ACTIONS(2453), + [anon_sym_string] = ACTIONS(2453), + [anon_sym_symbol] = ACTIONS(2453), + [anon_sym_object] = ACTIONS(2453), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [749] = { - [sym__call_signature] = STATE(5493), - [sym_formal_parameters] = STATE(3893), - [sym_type_parameters] = STATE(5354), - [sym_identifier] = ACTIONS(2464), - [anon_sym_export] = ACTIONS(2466), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2466), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2466), - [anon_sym_let] = ACTIONS(2466), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(919), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_RBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_async] = ACTIONS(2466), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(913), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2466), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_static] = ACTIONS(2466), - [anon_sym_readonly] = ACTIONS(2466), - [anon_sym_get] = ACTIONS(2466), - [anon_sym_set] = ACTIONS(2466), - [anon_sym_declare] = ACTIONS(2466), - [anon_sym_public] = ACTIONS(2466), - [anon_sym_private] = ACTIONS(2466), - [anon_sym_protected] = ACTIONS(2466), - [anon_sym_override] = ACTIONS(2466), - [anon_sym_module] = ACTIONS(2466), - [anon_sym_any] = ACTIONS(2466), - [anon_sym_number] = ACTIONS(2466), - [anon_sym_boolean] = ACTIONS(2466), - [anon_sym_string] = ACTIONS(2466), - [anon_sym_symbol] = ACTIONS(2466), - [anon_sym_object] = ACTIONS(2466), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym__call_signature] = STATE(5601), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2451), + [anon_sym_export] = ACTIONS(2453), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2453), + [anon_sym_EQ] = ACTIONS(918), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2453), + [anon_sym_let] = ACTIONS(2453), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2453), + [anon_sym_function] = ACTIONS(2463), + [anon_sym_EQ_GT] = ACTIONS(924), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2453), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2453), + [anon_sym_readonly] = ACTIONS(2453), + [anon_sym_get] = ACTIONS(2453), + [anon_sym_set] = ACTIONS(2453), + [anon_sym_declare] = ACTIONS(2453), + [anon_sym_public] = ACTIONS(2453), + [anon_sym_private] = ACTIONS(2453), + [anon_sym_protected] = ACTIONS(2453), + [anon_sym_override] = ACTIONS(2453), + [anon_sym_module] = ACTIONS(2453), + [anon_sym_any] = ACTIONS(2453), + [anon_sym_number] = ACTIONS(2453), + [anon_sym_boolean] = ACTIONS(2453), + [anon_sym_string] = ACTIONS(2453), + [anon_sym_symbol] = ACTIONS(2453), + [anon_sym_object] = ACTIONS(2453), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [750] = { - [ts_builtin_sym_end] = ACTIONS(1795), - [sym_identifier] = ACTIONS(1797), - [anon_sym_export] = ACTIONS(1797), - [anon_sym_default] = ACTIONS(1797), - [anon_sym_type] = ACTIONS(1797), - [anon_sym_namespace] = ACTIONS(1797), - [anon_sym_LBRACE] = ACTIONS(1795), - [anon_sym_COMMA] = ACTIONS(1795), - [anon_sym_RBRACE] = ACTIONS(1795), - [anon_sym_typeof] = ACTIONS(1797), - [anon_sym_import] = ACTIONS(1797), - [anon_sym_with] = ACTIONS(1797), - [anon_sym_var] = ACTIONS(1797), - [anon_sym_let] = ACTIONS(1797), - [anon_sym_const] = ACTIONS(1797), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_else] = ACTIONS(1797), - [anon_sym_if] = ACTIONS(1797), - [anon_sym_switch] = ACTIONS(1797), - [anon_sym_for] = ACTIONS(1797), - [anon_sym_LPAREN] = ACTIONS(1795), - [anon_sym_SEMI] = ACTIONS(1795), - [anon_sym_await] = ACTIONS(1797), - [anon_sym_while] = ACTIONS(1797), - [anon_sym_do] = ACTIONS(1797), - [anon_sym_try] = ACTIONS(1797), - [anon_sym_break] = ACTIONS(1797), - [anon_sym_continue] = ACTIONS(1797), - [anon_sym_debugger] = ACTIONS(1797), - [anon_sym_return] = ACTIONS(1797), - [anon_sym_throw] = ACTIONS(1797), - [anon_sym_case] = ACTIONS(1797), - [anon_sym_yield] = ACTIONS(1797), - [anon_sym_LBRACK] = ACTIONS(1795), - [sym_glimmer_opening_tag] = ACTIONS(1795), - [anon_sym_class] = ACTIONS(1797), - [anon_sym_async] = ACTIONS(1797), - [anon_sym_function] = ACTIONS(1797), - [anon_sym_new] = ACTIONS(1797), - [anon_sym_using] = ACTIONS(1797), - [anon_sym_PLUS] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1797), - [anon_sym_SLASH] = ACTIONS(1797), - [anon_sym_LT] = ACTIONS(1797), - [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_void] = ACTIONS(1797), - [anon_sym_delete] = ACTIONS(1797), - [anon_sym_PLUS_PLUS] = ACTIONS(1795), - [anon_sym_DASH_DASH] = ACTIONS(1795), - [anon_sym_DQUOTE] = ACTIONS(1795), - [anon_sym_SQUOTE] = ACTIONS(1795), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1795), - [sym_number] = ACTIONS(1795), - [sym_private_property_identifier] = ACTIONS(1795), - [sym_this] = ACTIONS(1797), - [sym_super] = ACTIONS(1797), - [sym_true] = ACTIONS(1797), - [sym_false] = ACTIONS(1797), - [sym_null] = ACTIONS(1797), - [sym_undefined] = ACTIONS(1797), - [anon_sym_AT] = ACTIONS(1795), - [anon_sym_static] = ACTIONS(1797), - [anon_sym_readonly] = ACTIONS(1797), - [anon_sym_get] = ACTIONS(1797), - [anon_sym_set] = ACTIONS(1797), - [anon_sym_declare] = ACTIONS(1797), - [anon_sym_public] = ACTIONS(1797), - [anon_sym_private] = ACTIONS(1797), - [anon_sym_protected] = ACTIONS(1797), - [anon_sym_override] = ACTIONS(1797), - [anon_sym_module] = ACTIONS(1797), - [anon_sym_any] = ACTIONS(1797), - [anon_sym_number] = ACTIONS(1797), - [anon_sym_boolean] = ACTIONS(1797), - [anon_sym_string] = ACTIONS(1797), - [anon_sym_symbol] = ACTIONS(1797), - [anon_sym_object] = ACTIONS(1797), - [anon_sym_abstract] = ACTIONS(1797), - [anon_sym_interface] = ACTIONS(1797), - [anon_sym_enum] = ACTIONS(1797), - [anon_sym_PIPE_RBRACE] = ACTIONS(1795), - [sym__automatic_semicolon] = ACTIONS(1795), + [sym__call_signature] = STATE(5601), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2451), + [anon_sym_export] = ACTIONS(2453), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2453), + [anon_sym_EQ] = ACTIONS(918), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2453), + [anon_sym_let] = ACTIONS(2453), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2453), + [anon_sym_function] = ACTIONS(2331), + [anon_sym_EQ_GT] = ACTIONS(924), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2453), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2453), + [anon_sym_readonly] = ACTIONS(2453), + [anon_sym_get] = ACTIONS(2453), + [anon_sym_set] = ACTIONS(2453), + [anon_sym_declare] = ACTIONS(2453), + [anon_sym_public] = ACTIONS(2453), + [anon_sym_private] = ACTIONS(2453), + [anon_sym_protected] = ACTIONS(2453), + [anon_sym_override] = ACTIONS(2453), + [anon_sym_module] = ACTIONS(2453), + [anon_sym_any] = ACTIONS(2453), + [anon_sym_number] = ACTIONS(2453), + [anon_sym_boolean] = ACTIONS(2453), + [anon_sym_string] = ACTIONS(2453), + [anon_sym_symbol] = ACTIONS(2453), + [anon_sym_object] = ACTIONS(2453), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [751] = { - [ts_builtin_sym_end] = ACTIONS(1835), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1837), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_type] = ACTIONS(1837), - [anon_sym_namespace] = ACTIONS(1837), - [anon_sym_LBRACE] = ACTIONS(1835), - [anon_sym_COMMA] = ACTIONS(1835), - [anon_sym_RBRACE] = ACTIONS(1835), - [anon_sym_typeof] = ACTIONS(1837), - [anon_sym_import] = ACTIONS(1837), - [anon_sym_with] = ACTIONS(1837), - [anon_sym_var] = ACTIONS(1837), - [anon_sym_let] = ACTIONS(1837), - [anon_sym_const] = ACTIONS(1837), - [anon_sym_BANG] = ACTIONS(1835), - [anon_sym_else] = ACTIONS(1837), - [anon_sym_if] = ACTIONS(1837), - [anon_sym_switch] = ACTIONS(1837), - [anon_sym_for] = ACTIONS(1837), - [anon_sym_LPAREN] = ACTIONS(1835), - [anon_sym_SEMI] = ACTIONS(1835), - [anon_sym_await] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1837), - [anon_sym_do] = ACTIONS(1837), - [anon_sym_try] = ACTIONS(1837), - [anon_sym_break] = ACTIONS(1837), - [anon_sym_continue] = ACTIONS(1837), - [anon_sym_debugger] = ACTIONS(1837), - [anon_sym_return] = ACTIONS(1837), - [anon_sym_throw] = ACTIONS(1837), - [anon_sym_case] = ACTIONS(1837), - [anon_sym_yield] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1835), - [sym_glimmer_opening_tag] = ACTIONS(1835), - [anon_sym_class] = ACTIONS(1837), - [anon_sym_async] = ACTIONS(1837), - [anon_sym_function] = ACTIONS(1837), - [anon_sym_new] = ACTIONS(1837), - [anon_sym_using] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1837), - [anon_sym_DASH] = ACTIONS(1837), - [anon_sym_SLASH] = ACTIONS(1837), - [anon_sym_LT] = ACTIONS(1837), - [anon_sym_TILDE] = ACTIONS(1835), - [anon_sym_void] = ACTIONS(1837), - [anon_sym_delete] = ACTIONS(1837), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), - [anon_sym_DQUOTE] = ACTIONS(1835), - [anon_sym_SQUOTE] = ACTIONS(1835), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1835), - [sym_number] = ACTIONS(1835), - [sym_private_property_identifier] = ACTIONS(1835), - [sym_this] = ACTIONS(1837), - [sym_super] = ACTIONS(1837), - [sym_true] = ACTIONS(1837), - [sym_false] = ACTIONS(1837), - [sym_null] = ACTIONS(1837), - [sym_undefined] = ACTIONS(1837), - [anon_sym_AT] = ACTIONS(1835), - [anon_sym_static] = ACTIONS(1837), - [anon_sym_readonly] = ACTIONS(1837), - [anon_sym_get] = ACTIONS(1837), - [anon_sym_set] = ACTIONS(1837), - [anon_sym_declare] = ACTIONS(1837), - [anon_sym_public] = ACTIONS(1837), - [anon_sym_private] = ACTIONS(1837), - [anon_sym_protected] = ACTIONS(1837), - [anon_sym_override] = ACTIONS(1837), - [anon_sym_module] = ACTIONS(1837), - [anon_sym_any] = ACTIONS(1837), - [anon_sym_number] = ACTIONS(1837), - [anon_sym_boolean] = ACTIONS(1837), - [anon_sym_string] = ACTIONS(1837), - [anon_sym_symbol] = ACTIONS(1837), - [anon_sym_object] = ACTIONS(1837), - [anon_sym_abstract] = ACTIONS(1837), - [anon_sym_interface] = ACTIONS(1837), - [anon_sym_enum] = ACTIONS(1837), - [anon_sym_PIPE_RBRACE] = ACTIONS(1835), - [sym__automatic_semicolon] = ACTIONS(1835), + [sym__call_signature] = STATE(5481), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2443), + [anon_sym_export] = ACTIONS(2445), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2445), + [anon_sym_EQ] = ACTIONS(886), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2445), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_let] = ACTIONS(2445), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_RBRACK] = ACTIONS(126), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2445), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(895), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2445), + [anon_sym_readonly] = ACTIONS(2445), + [anon_sym_get] = ACTIONS(2445), + [anon_sym_set] = ACTIONS(2445), + [anon_sym_declare] = ACTIONS(2445), + [anon_sym_public] = ACTIONS(2445), + [anon_sym_private] = ACTIONS(2445), + [anon_sym_protected] = ACTIONS(2445), + [anon_sym_override] = ACTIONS(2445), + [anon_sym_module] = ACTIONS(2445), + [anon_sym_any] = ACTIONS(2445), + [anon_sym_number] = ACTIONS(2445), + [anon_sym_boolean] = ACTIONS(2445), + [anon_sym_string] = ACTIONS(2445), + [anon_sym_symbol] = ACTIONS(2445), + [anon_sym_object] = ACTIONS(2445), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [752] = { - [ts_builtin_sym_end] = ACTIONS(1789), - [sym_identifier] = ACTIONS(1791), - [anon_sym_export] = ACTIONS(1791), - [anon_sym_default] = ACTIONS(1791), - [anon_sym_type] = ACTIONS(1791), - [anon_sym_namespace] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1789), - [anon_sym_COMMA] = ACTIONS(1789), - [anon_sym_RBRACE] = ACTIONS(1789), - [anon_sym_typeof] = ACTIONS(1791), - [anon_sym_import] = ACTIONS(1791), - [anon_sym_with] = ACTIONS(1791), - [anon_sym_var] = ACTIONS(1791), - [anon_sym_let] = ACTIONS(1791), - [anon_sym_const] = ACTIONS(1791), - [anon_sym_BANG] = ACTIONS(1789), - [anon_sym_else] = ACTIONS(1791), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_switch] = ACTIONS(1791), - [anon_sym_for] = ACTIONS(1791), - [anon_sym_LPAREN] = ACTIONS(1789), - [anon_sym_SEMI] = ACTIONS(1789), - [anon_sym_await] = ACTIONS(1791), - [anon_sym_while] = ACTIONS(1791), - [anon_sym_do] = ACTIONS(1791), - [anon_sym_try] = ACTIONS(1791), - [anon_sym_break] = ACTIONS(1791), - [anon_sym_continue] = ACTIONS(1791), - [anon_sym_debugger] = ACTIONS(1791), - [anon_sym_return] = ACTIONS(1791), - [anon_sym_throw] = ACTIONS(1791), - [anon_sym_case] = ACTIONS(1791), - [anon_sym_catch] = ACTIONS(1791), - [anon_sym_finally] = ACTIONS(1791), - [anon_sym_yield] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(1789), - [sym_glimmer_opening_tag] = ACTIONS(1789), - [anon_sym_class] = ACTIONS(1791), - [anon_sym_async] = ACTIONS(1791), - [anon_sym_function] = ACTIONS(1791), - [anon_sym_new] = ACTIONS(1791), - [anon_sym_using] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(1791), - [anon_sym_DASH] = ACTIONS(1791), - [anon_sym_SLASH] = ACTIONS(1791), - [anon_sym_LT] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1789), - [anon_sym_void] = ACTIONS(1791), - [anon_sym_delete] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1789), - [anon_sym_DASH_DASH] = ACTIONS(1789), - [anon_sym_DQUOTE] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1789), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1789), - [sym_number] = ACTIONS(1789), - [sym_private_property_identifier] = ACTIONS(1789), - [sym_this] = ACTIONS(1791), - [sym_super] = ACTIONS(1791), - [sym_true] = ACTIONS(1791), - [sym_false] = ACTIONS(1791), - [sym_null] = ACTIONS(1791), - [sym_undefined] = ACTIONS(1791), - [anon_sym_AT] = ACTIONS(1789), - [anon_sym_static] = ACTIONS(1791), - [anon_sym_readonly] = ACTIONS(1791), - [anon_sym_get] = ACTIONS(1791), - [anon_sym_set] = ACTIONS(1791), - [anon_sym_declare] = ACTIONS(1791), - [anon_sym_public] = ACTIONS(1791), - [anon_sym_private] = ACTIONS(1791), - [anon_sym_protected] = ACTIONS(1791), - [anon_sym_override] = ACTIONS(1791), - [anon_sym_module] = ACTIONS(1791), - [anon_sym_any] = ACTIONS(1791), - [anon_sym_number] = ACTIONS(1791), - [anon_sym_boolean] = ACTIONS(1791), - [anon_sym_string] = ACTIONS(1791), - [anon_sym_symbol] = ACTIONS(1791), - [anon_sym_object] = ACTIONS(1791), - [anon_sym_abstract] = ACTIONS(1791), - [anon_sym_interface] = ACTIONS(1791), - [anon_sym_enum] = ACTIONS(1791), + [sym__call_signature] = STATE(5601), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2451), + [anon_sym_export] = ACTIONS(2453), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2453), + [anon_sym_EQ] = ACTIONS(918), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2453), + [anon_sym_let] = ACTIONS(2453), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2453), + [anon_sym_function] = ACTIONS(2431), + [anon_sym_EQ_GT] = ACTIONS(924), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2453), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2453), + [anon_sym_readonly] = ACTIONS(2453), + [anon_sym_get] = ACTIONS(2453), + [anon_sym_set] = ACTIONS(2453), + [anon_sym_declare] = ACTIONS(2453), + [anon_sym_public] = ACTIONS(2453), + [anon_sym_private] = ACTIONS(2453), + [anon_sym_protected] = ACTIONS(2453), + [anon_sym_override] = ACTIONS(2453), + [anon_sym_module] = ACTIONS(2453), + [anon_sym_any] = ACTIONS(2453), + [anon_sym_number] = ACTIONS(2453), + [anon_sym_boolean] = ACTIONS(2453), + [anon_sym_string] = ACTIONS(2453), + [anon_sym_symbol] = ACTIONS(2453), + [anon_sym_object] = ACTIONS(2453), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [753] = { - [ts_builtin_sym_end] = ACTIONS(1703), - [sym_identifier] = ACTIONS(1705), - [anon_sym_export] = ACTIONS(1705), - [anon_sym_default] = ACTIONS(1705), - [anon_sym_type] = ACTIONS(1705), - [anon_sym_namespace] = ACTIONS(1705), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_COMMA] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(1703), - [anon_sym_typeof] = ACTIONS(1705), - [anon_sym_import] = ACTIONS(1705), - [anon_sym_with] = ACTIONS(1705), - [anon_sym_var] = ACTIONS(1705), - [anon_sym_let] = ACTIONS(1705), - [anon_sym_const] = ACTIONS(1705), - [anon_sym_BANG] = ACTIONS(1703), - [anon_sym_else] = ACTIONS(1705), - [anon_sym_if] = ACTIONS(1705), - [anon_sym_switch] = ACTIONS(1705), - [anon_sym_for] = ACTIONS(1705), - [anon_sym_LPAREN] = ACTIONS(1703), - [anon_sym_SEMI] = ACTIONS(1703), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_while] = ACTIONS(1705), - [anon_sym_do] = ACTIONS(1705), - [anon_sym_try] = 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_case] = ACTIONS(1705), - [anon_sym_yield] = ACTIONS(1705), - [anon_sym_LBRACK] = ACTIONS(1703), - [sym_glimmer_opening_tag] = ACTIONS(1703), - [anon_sym_class] = ACTIONS(1705), - [anon_sym_async] = ACTIONS(1705), - [anon_sym_function] = ACTIONS(1705), - [anon_sym_new] = ACTIONS(1705), - [anon_sym_using] = ACTIONS(1705), - [anon_sym_PLUS] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_SLASH] = ACTIONS(1705), - [anon_sym_LT] = 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(5), - [anon_sym_BQUOTE] = ACTIONS(1703), - [sym_number] = ACTIONS(1703), - [sym_private_property_identifier] = 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_readonly] = 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_override] = 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_object] = ACTIONS(1705), - [anon_sym_abstract] = ACTIONS(1705), - [anon_sym_interface] = ACTIONS(1705), - [anon_sym_enum] = ACTIONS(1705), - [anon_sym_PIPE_RBRACE] = ACTIONS(1703), - [sym__automatic_semicolon] = ACTIONS(2476), + [ts_builtin_sym_end] = ACTIONS(1878), + [sym_identifier] = ACTIONS(1880), + [anon_sym_export] = ACTIONS(1880), + [anon_sym_default] = ACTIONS(1880), + [anon_sym_type] = ACTIONS(1880), + [anon_sym_namespace] = ACTIONS(1880), + [anon_sym_LBRACE] = ACTIONS(1878), + [anon_sym_COMMA] = ACTIONS(1878), + [anon_sym_RBRACE] = ACTIONS(1878), + [anon_sym_typeof] = ACTIONS(1880), + [anon_sym_import] = ACTIONS(1880), + [anon_sym_with] = ACTIONS(1880), + [anon_sym_var] = ACTIONS(1880), + [anon_sym_let] = ACTIONS(1880), + [anon_sym_const] = ACTIONS(1880), + [anon_sym_BANG] = ACTIONS(1878), + [anon_sym_else] = ACTIONS(1880), + [anon_sym_if] = ACTIONS(1880), + [anon_sym_switch] = ACTIONS(1880), + [anon_sym_for] = ACTIONS(1880), + [anon_sym_LPAREN] = ACTIONS(1878), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym_await] = ACTIONS(1880), + [anon_sym_while] = ACTIONS(1880), + [anon_sym_do] = ACTIONS(1880), + [anon_sym_try] = ACTIONS(1880), + [anon_sym_break] = ACTIONS(1880), + [anon_sym_continue] = ACTIONS(1880), + [anon_sym_debugger] = ACTIONS(1880), + [anon_sym_return] = ACTIONS(1880), + [anon_sym_throw] = ACTIONS(1880), + [anon_sym_case] = ACTIONS(1880), + [anon_sym_catch] = ACTIONS(1880), + [anon_sym_finally] = ACTIONS(1880), + [anon_sym_yield] = ACTIONS(1880), + [anon_sym_LBRACK] = ACTIONS(1878), + [anon_sym_class] = ACTIONS(1880), + [anon_sym_async] = ACTIONS(1880), + [anon_sym_function] = ACTIONS(1880), + [anon_sym_new] = ACTIONS(1880), + [anon_sym_using] = ACTIONS(1880), + [anon_sym_PLUS] = ACTIONS(1880), + [anon_sym_DASH] = ACTIONS(1880), + [anon_sym_SLASH] = ACTIONS(1880), + [anon_sym_LT] = ACTIONS(1878), + [anon_sym_TILDE] = ACTIONS(1878), + [anon_sym_void] = ACTIONS(1880), + [anon_sym_delete] = ACTIONS(1880), + [anon_sym_PLUS_PLUS] = ACTIONS(1878), + [anon_sym_DASH_DASH] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1878), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1878), + [sym_number] = ACTIONS(1878), + [sym_private_property_identifier] = ACTIONS(1878), + [sym_this] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_true] = ACTIONS(1880), + [sym_false] = ACTIONS(1880), + [sym_null] = ACTIONS(1880), + [sym_undefined] = ACTIONS(1880), + [anon_sym_AT] = ACTIONS(1878), + [anon_sym_static] = ACTIONS(1880), + [anon_sym_readonly] = ACTIONS(1880), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_declare] = ACTIONS(1880), + [anon_sym_public] = ACTIONS(1880), + [anon_sym_private] = ACTIONS(1880), + [anon_sym_protected] = ACTIONS(1880), + [anon_sym_override] = ACTIONS(1880), + [anon_sym_module] = ACTIONS(1880), + [anon_sym_any] = ACTIONS(1880), + [anon_sym_number] = ACTIONS(1880), + [anon_sym_boolean] = ACTIONS(1880), + [anon_sym_string] = ACTIONS(1880), + [anon_sym_symbol] = ACTIONS(1880), + [anon_sym_object] = ACTIONS(1880), + [anon_sym_abstract] = ACTIONS(1880), + [anon_sym_interface] = ACTIONS(1880), + [anon_sym_enum] = ACTIONS(1880), + [sym__automatic_semicolon] = ACTIONS(2465), [sym_html_comment] = ACTIONS(5), }, [754] = { - [ts_builtin_sym_end] = ACTIONS(1789), - [sym_identifier] = ACTIONS(1791), - [anon_sym_export] = ACTIONS(1791), - [anon_sym_default] = ACTIONS(1791), - [anon_sym_type] = ACTIONS(1791), - [anon_sym_namespace] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1789), - [anon_sym_COMMA] = ACTIONS(1789), - [anon_sym_RBRACE] = ACTIONS(1789), - [anon_sym_typeof] = ACTIONS(1791), - [anon_sym_import] = ACTIONS(1791), - [anon_sym_with] = ACTIONS(1791), - [anon_sym_var] = ACTIONS(1791), - [anon_sym_let] = ACTIONS(1791), - [anon_sym_const] = ACTIONS(1791), - [anon_sym_BANG] = ACTIONS(1789), - [anon_sym_else] = ACTIONS(1791), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_switch] = ACTIONS(1791), - [anon_sym_for] = ACTIONS(1791), - [anon_sym_LPAREN] = ACTIONS(1789), - [anon_sym_SEMI] = ACTIONS(1789), - [anon_sym_await] = ACTIONS(1791), - [anon_sym_while] = ACTIONS(1791), - [anon_sym_do] = ACTIONS(1791), - [anon_sym_try] = ACTIONS(1791), - [anon_sym_break] = ACTIONS(1791), - [anon_sym_continue] = ACTIONS(1791), - [anon_sym_debugger] = ACTIONS(1791), - [anon_sym_return] = ACTIONS(1791), - [anon_sym_throw] = ACTIONS(1791), - [anon_sym_case] = ACTIONS(1791), - [anon_sym_yield] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(1789), - [sym_glimmer_opening_tag] = ACTIONS(1789), - [anon_sym_class] = ACTIONS(1791), - [anon_sym_async] = ACTIONS(1791), - [anon_sym_function] = ACTIONS(1791), - [anon_sym_new] = ACTIONS(1791), - [anon_sym_using] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(1791), - [anon_sym_DASH] = ACTIONS(1791), - [anon_sym_SLASH] = ACTIONS(1791), - [anon_sym_LT] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1789), - [anon_sym_void] = ACTIONS(1791), - [anon_sym_delete] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1789), - [anon_sym_DASH_DASH] = ACTIONS(1789), - [anon_sym_DQUOTE] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1789), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1789), - [sym_number] = ACTIONS(1789), - [sym_private_property_identifier] = ACTIONS(1789), - [sym_this] = ACTIONS(1791), - [sym_super] = ACTIONS(1791), - [sym_true] = ACTIONS(1791), - [sym_false] = ACTIONS(1791), - [sym_null] = ACTIONS(1791), - [sym_undefined] = ACTIONS(1791), - [anon_sym_AT] = ACTIONS(1789), - [anon_sym_static] = ACTIONS(1791), - [anon_sym_readonly] = ACTIONS(1791), - [anon_sym_get] = ACTIONS(1791), - [anon_sym_set] = ACTIONS(1791), - [anon_sym_declare] = ACTIONS(1791), - [anon_sym_public] = ACTIONS(1791), - [anon_sym_private] = ACTIONS(1791), - [anon_sym_protected] = ACTIONS(1791), - [anon_sym_override] = ACTIONS(1791), - [anon_sym_module] = ACTIONS(1791), - [anon_sym_any] = ACTIONS(1791), - [anon_sym_number] = ACTIONS(1791), - [anon_sym_boolean] = ACTIONS(1791), - [anon_sym_string] = ACTIONS(1791), - [anon_sym_symbol] = ACTIONS(1791), - [anon_sym_object] = ACTIONS(1791), - [anon_sym_abstract] = ACTIONS(1791), - [anon_sym_interface] = ACTIONS(1791), - [anon_sym_enum] = ACTIONS(1791), - [anon_sym_PIPE_RBRACE] = ACTIONS(1789), - [sym__automatic_semicolon] = ACTIONS(1789), + [ts_builtin_sym_end] = ACTIONS(1878), + [sym_identifier] = ACTIONS(1880), + [anon_sym_export] = ACTIONS(1880), + [anon_sym_default] = ACTIONS(1880), + [anon_sym_type] = ACTIONS(1880), + [anon_sym_namespace] = ACTIONS(1880), + [anon_sym_LBRACE] = ACTIONS(1878), + [anon_sym_COMMA] = ACTIONS(1878), + [anon_sym_RBRACE] = ACTIONS(1878), + [anon_sym_typeof] = ACTIONS(1880), + [anon_sym_import] = ACTIONS(1880), + [anon_sym_with] = ACTIONS(1880), + [anon_sym_var] = ACTIONS(1880), + [anon_sym_let] = ACTIONS(1880), + [anon_sym_const] = ACTIONS(1880), + [anon_sym_BANG] = ACTIONS(1878), + [anon_sym_else] = ACTIONS(1880), + [anon_sym_if] = ACTIONS(1880), + [anon_sym_switch] = ACTIONS(1880), + [anon_sym_for] = ACTIONS(1880), + [anon_sym_LPAREN] = ACTIONS(1878), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym_await] = ACTIONS(1880), + [anon_sym_while] = ACTIONS(1880), + [anon_sym_do] = ACTIONS(1880), + [anon_sym_try] = ACTIONS(1880), + [anon_sym_break] = ACTIONS(1880), + [anon_sym_continue] = ACTIONS(1880), + [anon_sym_debugger] = ACTIONS(1880), + [anon_sym_return] = ACTIONS(1880), + [anon_sym_throw] = ACTIONS(1880), + [anon_sym_case] = ACTIONS(1880), + [anon_sym_yield] = ACTIONS(1880), + [anon_sym_LBRACK] = ACTIONS(1878), + [anon_sym_class] = ACTIONS(1880), + [anon_sym_async] = ACTIONS(1880), + [anon_sym_function] = ACTIONS(1880), + [anon_sym_new] = ACTIONS(1880), + [anon_sym_using] = ACTIONS(1880), + [anon_sym_PLUS] = ACTIONS(1880), + [anon_sym_DASH] = ACTIONS(1880), + [anon_sym_SLASH] = ACTIONS(1880), + [anon_sym_LT] = ACTIONS(1878), + [anon_sym_TILDE] = ACTIONS(1878), + [anon_sym_void] = ACTIONS(1880), + [anon_sym_delete] = ACTIONS(1880), + [anon_sym_PLUS_PLUS] = ACTIONS(1878), + [anon_sym_DASH_DASH] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1878), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1878), + [sym_number] = ACTIONS(1878), + [sym_private_property_identifier] = ACTIONS(1878), + [sym_this] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_true] = ACTIONS(1880), + [sym_false] = ACTIONS(1880), + [sym_null] = ACTIONS(1880), + [sym_undefined] = ACTIONS(1880), + [anon_sym_AT] = ACTIONS(1878), + [anon_sym_static] = ACTIONS(1880), + [anon_sym_readonly] = ACTIONS(1880), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_declare] = ACTIONS(1880), + [anon_sym_public] = ACTIONS(1880), + [anon_sym_private] = ACTIONS(1880), + [anon_sym_protected] = ACTIONS(1880), + [anon_sym_override] = ACTIONS(1880), + [anon_sym_module] = ACTIONS(1880), + [anon_sym_any] = ACTIONS(1880), + [anon_sym_number] = ACTIONS(1880), + [anon_sym_boolean] = ACTIONS(1880), + [anon_sym_string] = ACTIONS(1880), + [anon_sym_symbol] = ACTIONS(1880), + [anon_sym_object] = ACTIONS(1880), + [anon_sym_abstract] = ACTIONS(1880), + [anon_sym_interface] = ACTIONS(1880), + [anon_sym_enum] = ACTIONS(1880), + [anon_sym_PIPE_RBRACE] = ACTIONS(1878), + [sym__automatic_semicolon] = ACTIONS(2467), [sym_html_comment] = ACTIONS(5), }, [755] = { - [ts_builtin_sym_end] = ACTIONS(1789), - [sym_identifier] = ACTIONS(1791), - [anon_sym_export] = ACTIONS(1791), - [anon_sym_default] = ACTIONS(1791), - [anon_sym_type] = ACTIONS(1791), - [anon_sym_namespace] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1789), - [anon_sym_COMMA] = ACTIONS(1789), - [anon_sym_RBRACE] = ACTIONS(1789), - [anon_sym_typeof] = ACTIONS(1791), - [anon_sym_import] = ACTIONS(1791), - [anon_sym_with] = ACTIONS(1791), - [anon_sym_var] = ACTIONS(1791), - [anon_sym_let] = ACTIONS(1791), - [anon_sym_const] = ACTIONS(1791), - [anon_sym_BANG] = ACTIONS(1789), - [anon_sym_else] = ACTIONS(1791), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_switch] = ACTIONS(1791), - [anon_sym_for] = ACTIONS(1791), - [anon_sym_LPAREN] = ACTIONS(1789), - [anon_sym_SEMI] = ACTIONS(1789), - [anon_sym_await] = ACTIONS(1791), - [anon_sym_while] = ACTIONS(1791), - [anon_sym_do] = ACTIONS(1791), - [anon_sym_try] = ACTIONS(1791), - [anon_sym_break] = ACTIONS(1791), - [anon_sym_continue] = ACTIONS(1791), - [anon_sym_debugger] = ACTIONS(1791), - [anon_sym_return] = ACTIONS(1791), - [anon_sym_throw] = ACTIONS(1791), - [anon_sym_case] = ACTIONS(1791), - [anon_sym_yield] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(1789), - [sym_glimmer_opening_tag] = ACTIONS(1789), - [anon_sym_class] = ACTIONS(1791), - [anon_sym_async] = ACTIONS(1791), - [anon_sym_function] = ACTIONS(1791), - [anon_sym_new] = ACTIONS(1791), - [anon_sym_using] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(1791), - [anon_sym_DASH] = ACTIONS(1791), - [anon_sym_SLASH] = ACTIONS(1791), - [anon_sym_LT] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1789), - [anon_sym_void] = ACTIONS(1791), - [anon_sym_delete] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1789), - [anon_sym_DASH_DASH] = ACTIONS(1789), - [anon_sym_DQUOTE] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(1789), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1789), - [sym_number] = ACTIONS(1789), - [sym_private_property_identifier] = ACTIONS(1789), - [sym_this] = ACTIONS(1791), - [sym_super] = ACTIONS(1791), - [sym_true] = ACTIONS(1791), - [sym_false] = ACTIONS(1791), - [sym_null] = ACTIONS(1791), - [sym_undefined] = ACTIONS(1791), - [anon_sym_AT] = ACTIONS(1789), - [anon_sym_static] = ACTIONS(1791), - [anon_sym_readonly] = ACTIONS(1791), - [anon_sym_get] = ACTIONS(1791), - [anon_sym_set] = ACTIONS(1791), - [anon_sym_declare] = ACTIONS(1791), - [anon_sym_public] = ACTIONS(1791), - [anon_sym_private] = ACTIONS(1791), - [anon_sym_protected] = ACTIONS(1791), - [anon_sym_override] = ACTIONS(1791), - [anon_sym_module] = ACTIONS(1791), - [anon_sym_any] = ACTIONS(1791), - [anon_sym_number] = ACTIONS(1791), - [anon_sym_boolean] = ACTIONS(1791), - [anon_sym_string] = ACTIONS(1791), - [anon_sym_symbol] = ACTIONS(1791), - [anon_sym_object] = ACTIONS(1791), - [anon_sym_abstract] = ACTIONS(1791), - [anon_sym_interface] = ACTIONS(1791), - [anon_sym_enum] = ACTIONS(1791), - [anon_sym_PIPE_RBRACE] = ACTIONS(1789), - [sym__automatic_semicolon] = ACTIONS(2478), + [ts_builtin_sym_end] = ACTIONS(1878), + [sym_identifier] = ACTIONS(1880), + [anon_sym_export] = ACTIONS(1880), + [anon_sym_default] = ACTIONS(1880), + [anon_sym_type] = ACTIONS(1880), + [anon_sym_namespace] = ACTIONS(1880), + [anon_sym_LBRACE] = ACTIONS(1878), + [anon_sym_COMMA] = ACTIONS(1878), + [anon_sym_RBRACE] = ACTIONS(1878), + [anon_sym_typeof] = ACTIONS(1880), + [anon_sym_import] = ACTIONS(1880), + [anon_sym_with] = ACTIONS(1880), + [anon_sym_var] = ACTIONS(1880), + [anon_sym_let] = ACTIONS(1880), + [anon_sym_const] = ACTIONS(1880), + [anon_sym_BANG] = ACTIONS(1878), + [anon_sym_else] = ACTIONS(1880), + [anon_sym_if] = ACTIONS(1880), + [anon_sym_switch] = ACTIONS(1880), + [anon_sym_for] = ACTIONS(1880), + [anon_sym_LPAREN] = ACTIONS(1878), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym_await] = ACTIONS(1880), + [anon_sym_while] = ACTIONS(1880), + [anon_sym_do] = ACTIONS(1880), + [anon_sym_try] = ACTIONS(1880), + [anon_sym_break] = ACTIONS(1880), + [anon_sym_continue] = ACTIONS(1880), + [anon_sym_debugger] = ACTIONS(1880), + [anon_sym_return] = ACTIONS(1880), + [anon_sym_throw] = ACTIONS(1880), + [anon_sym_case] = ACTIONS(1880), + [anon_sym_catch] = ACTIONS(1880), + [anon_sym_finally] = ACTIONS(1880), + [anon_sym_yield] = ACTIONS(1880), + [anon_sym_LBRACK] = ACTIONS(1878), + [anon_sym_class] = ACTIONS(1880), + [anon_sym_async] = ACTIONS(1880), + [anon_sym_function] = ACTIONS(1880), + [anon_sym_new] = ACTIONS(1880), + [anon_sym_using] = ACTIONS(1880), + [anon_sym_PLUS] = ACTIONS(1880), + [anon_sym_DASH] = ACTIONS(1880), + [anon_sym_SLASH] = ACTIONS(1880), + [anon_sym_LT] = ACTIONS(1878), + [anon_sym_TILDE] = ACTIONS(1878), + [anon_sym_void] = ACTIONS(1880), + [anon_sym_delete] = ACTIONS(1880), + [anon_sym_PLUS_PLUS] = ACTIONS(1878), + [anon_sym_DASH_DASH] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1878), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1878), + [sym_number] = ACTIONS(1878), + [sym_private_property_identifier] = ACTIONS(1878), + [sym_this] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_true] = ACTIONS(1880), + [sym_false] = ACTIONS(1880), + [sym_null] = ACTIONS(1880), + [sym_undefined] = ACTIONS(1880), + [anon_sym_AT] = ACTIONS(1878), + [anon_sym_static] = ACTIONS(1880), + [anon_sym_readonly] = ACTIONS(1880), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_declare] = ACTIONS(1880), + [anon_sym_public] = ACTIONS(1880), + [anon_sym_private] = ACTIONS(1880), + [anon_sym_protected] = ACTIONS(1880), + [anon_sym_override] = ACTIONS(1880), + [anon_sym_module] = ACTIONS(1880), + [anon_sym_any] = ACTIONS(1880), + [anon_sym_number] = ACTIONS(1880), + [anon_sym_boolean] = ACTIONS(1880), + [anon_sym_string] = ACTIONS(1880), + [anon_sym_symbol] = ACTIONS(1880), + [anon_sym_object] = ACTIONS(1880), + [anon_sym_abstract] = ACTIONS(1880), + [anon_sym_interface] = ACTIONS(1880), + [anon_sym_enum] = ACTIONS(1880), [sym_html_comment] = ACTIONS(5), }, [756] = { - [sym__call_signature] = STATE(5613), - [sym_formal_parameters] = STATE(3893), - [sym_type_parameters] = STATE(5354), - [sym_identifier] = ACTIONS(2472), - [anon_sym_export] = ACTIONS(2474), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2474), - [anon_sym_EQ] = ACTIONS(925), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2474), - [anon_sym_let] = ACTIONS(2474), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_async] = ACTIONS(2474), - [anon_sym_function] = ACTIONS(2480), - [anon_sym_EQ_GT] = ACTIONS(931), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2474), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_static] = ACTIONS(2474), - [anon_sym_readonly] = ACTIONS(2474), - [anon_sym_get] = ACTIONS(2474), - [anon_sym_set] = ACTIONS(2474), - [anon_sym_declare] = ACTIONS(2474), - [anon_sym_public] = ACTIONS(2474), - [anon_sym_private] = ACTIONS(2474), - [anon_sym_protected] = ACTIONS(2474), - [anon_sym_override] = ACTIONS(2474), - [anon_sym_module] = ACTIONS(2474), - [anon_sym_any] = ACTIONS(2474), - [anon_sym_number] = ACTIONS(2474), - [anon_sym_boolean] = ACTIONS(2474), - [anon_sym_string] = ACTIONS(2474), - [anon_sym_symbol] = ACTIONS(2474), - [anon_sym_object] = ACTIONS(2474), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [ts_builtin_sym_end] = ACTIONS(1884), + [sym_identifier] = ACTIONS(1886), + [anon_sym_export] = ACTIONS(1886), + [anon_sym_default] = ACTIONS(1886), + [anon_sym_type] = ACTIONS(1886), + [anon_sym_namespace] = ACTIONS(1886), + [anon_sym_LBRACE] = ACTIONS(1884), + [anon_sym_COMMA] = ACTIONS(1884), + [anon_sym_RBRACE] = ACTIONS(1884), + [anon_sym_typeof] = ACTIONS(1886), + [anon_sym_import] = ACTIONS(1886), + [anon_sym_with] = ACTIONS(1886), + [anon_sym_var] = ACTIONS(1886), + [anon_sym_let] = ACTIONS(1886), + [anon_sym_const] = ACTIONS(1886), + [anon_sym_BANG] = ACTIONS(1884), + [anon_sym_else] = ACTIONS(1886), + [anon_sym_if] = ACTIONS(1886), + [anon_sym_switch] = ACTIONS(1886), + [anon_sym_for] = ACTIONS(1886), + [anon_sym_LPAREN] = ACTIONS(1884), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_await] = ACTIONS(1886), + [anon_sym_while] = ACTIONS(1886), + [anon_sym_do] = ACTIONS(1886), + [anon_sym_try] = ACTIONS(1886), + [anon_sym_break] = ACTIONS(1886), + [anon_sym_continue] = ACTIONS(1886), + [anon_sym_debugger] = ACTIONS(1886), + [anon_sym_return] = ACTIONS(1886), + [anon_sym_throw] = ACTIONS(1886), + [anon_sym_case] = ACTIONS(1886), + [anon_sym_yield] = ACTIONS(1886), + [anon_sym_LBRACK] = ACTIONS(1884), + [anon_sym_class] = ACTIONS(1886), + [anon_sym_async] = ACTIONS(1886), + [anon_sym_function] = ACTIONS(1886), + [anon_sym_new] = ACTIONS(1886), + [anon_sym_using] = ACTIONS(1886), + [anon_sym_PLUS] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_SLASH] = ACTIONS(1886), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_TILDE] = ACTIONS(1884), + [anon_sym_void] = ACTIONS(1886), + [anon_sym_delete] = ACTIONS(1886), + [anon_sym_PLUS_PLUS] = ACTIONS(1884), + [anon_sym_DASH_DASH] = ACTIONS(1884), + [anon_sym_DQUOTE] = ACTIONS(1884), + [anon_sym_SQUOTE] = ACTIONS(1884), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1884), + [sym_number] = ACTIONS(1884), + [sym_private_property_identifier] = ACTIONS(1884), + [sym_this] = ACTIONS(1886), + [sym_super] = ACTIONS(1886), + [sym_true] = ACTIONS(1886), + [sym_false] = ACTIONS(1886), + [sym_null] = ACTIONS(1886), + [sym_undefined] = ACTIONS(1886), + [anon_sym_AT] = ACTIONS(1884), + [anon_sym_static] = ACTIONS(1886), + [anon_sym_readonly] = ACTIONS(1886), + [anon_sym_get] = ACTIONS(1886), + [anon_sym_set] = ACTIONS(1886), + [anon_sym_declare] = ACTIONS(1886), + [anon_sym_public] = ACTIONS(1886), + [anon_sym_private] = ACTIONS(1886), + [anon_sym_protected] = ACTIONS(1886), + [anon_sym_override] = ACTIONS(1886), + [anon_sym_module] = ACTIONS(1886), + [anon_sym_any] = ACTIONS(1886), + [anon_sym_number] = ACTIONS(1886), + [anon_sym_boolean] = ACTIONS(1886), + [anon_sym_string] = ACTIONS(1886), + [anon_sym_symbol] = ACTIONS(1886), + [anon_sym_object] = ACTIONS(1886), + [anon_sym_abstract] = ACTIONS(1886), + [anon_sym_interface] = ACTIONS(1886), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_PIPE_RBRACE] = ACTIONS(1884), + [sym__automatic_semicolon] = ACTIONS(1884), [sym_html_comment] = ACTIONS(5), }, [757] = { - [sym__call_signature] = STATE(5613), - [sym_formal_parameters] = STATE(3893), - [sym_type_parameters] = STATE(5354), - [sym_identifier] = ACTIONS(2472), - [anon_sym_export] = ACTIONS(2474), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2474), - [anon_sym_EQ] = ACTIONS(925), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2474), - [anon_sym_let] = ACTIONS(2474), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_async] = ACTIONS(2474), - [anon_sym_function] = ACTIONS(2338), - [anon_sym_EQ_GT] = ACTIONS(931), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2474), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_static] = ACTIONS(2474), - [anon_sym_readonly] = ACTIONS(2474), - [anon_sym_get] = ACTIONS(2474), - [anon_sym_set] = ACTIONS(2474), - [anon_sym_declare] = ACTIONS(2474), - [anon_sym_public] = ACTIONS(2474), - [anon_sym_private] = ACTIONS(2474), - [anon_sym_protected] = ACTIONS(2474), - [anon_sym_override] = ACTIONS(2474), - [anon_sym_module] = ACTIONS(2474), - [anon_sym_any] = ACTIONS(2474), - [anon_sym_number] = ACTIONS(2474), - [anon_sym_boolean] = ACTIONS(2474), - [anon_sym_string] = ACTIONS(2474), - [anon_sym_symbol] = ACTIONS(2474), - [anon_sym_object] = ACTIONS(2474), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [ts_builtin_sym_end] = ACTIONS(1720), + [sym_identifier] = ACTIONS(1722), + [anon_sym_export] = ACTIONS(1722), + [anon_sym_default] = ACTIONS(1722), + [anon_sym_type] = ACTIONS(1722), + [anon_sym_namespace] = ACTIONS(1722), + [anon_sym_LBRACE] = ACTIONS(1720), + [anon_sym_COMMA] = ACTIONS(1720), + [anon_sym_RBRACE] = ACTIONS(1720), + [anon_sym_typeof] = ACTIONS(1722), + [anon_sym_import] = ACTIONS(1722), + [anon_sym_with] = ACTIONS(1722), + [anon_sym_var] = ACTIONS(1722), + [anon_sym_let] = ACTIONS(1722), + [anon_sym_const] = ACTIONS(1722), + [anon_sym_BANG] = ACTIONS(1720), + [anon_sym_else] = ACTIONS(1722), + [anon_sym_if] = ACTIONS(1722), + [anon_sym_switch] = ACTIONS(1722), + [anon_sym_for] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(1720), + [anon_sym_await] = ACTIONS(1722), + [anon_sym_while] = ACTIONS(1722), + [anon_sym_do] = ACTIONS(1722), + [anon_sym_try] = ACTIONS(1722), + [anon_sym_break] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(1722), + [anon_sym_debugger] = ACTIONS(1722), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_throw] = ACTIONS(1722), + [anon_sym_case] = ACTIONS(1722), + [anon_sym_yield] = ACTIONS(1722), + [anon_sym_LBRACK] = ACTIONS(1720), + [anon_sym_class] = ACTIONS(1722), + [anon_sym_async] = ACTIONS(1722), + [anon_sym_function] = ACTIONS(1722), + [anon_sym_new] = ACTIONS(1722), + [anon_sym_using] = ACTIONS(1722), + [anon_sym_PLUS] = ACTIONS(1722), + [anon_sym_DASH] = ACTIONS(1722), + [anon_sym_SLASH] = ACTIONS(1722), + [anon_sym_LT] = ACTIONS(1720), + [anon_sym_TILDE] = ACTIONS(1720), + [anon_sym_void] = ACTIONS(1722), + [anon_sym_delete] = ACTIONS(1722), + [anon_sym_PLUS_PLUS] = ACTIONS(1720), + [anon_sym_DASH_DASH] = ACTIONS(1720), + [anon_sym_DQUOTE] = ACTIONS(1720), + [anon_sym_SQUOTE] = ACTIONS(1720), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1720), + [sym_number] = ACTIONS(1720), + [sym_private_property_identifier] = ACTIONS(1720), + [sym_this] = ACTIONS(1722), + [sym_super] = ACTIONS(1722), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_null] = ACTIONS(1722), + [sym_undefined] = ACTIONS(1722), + [anon_sym_AT] = ACTIONS(1720), + [anon_sym_static] = ACTIONS(1722), + [anon_sym_readonly] = ACTIONS(1722), + [anon_sym_get] = ACTIONS(1722), + [anon_sym_set] = ACTIONS(1722), + [anon_sym_declare] = ACTIONS(1722), + [anon_sym_public] = ACTIONS(1722), + [anon_sym_private] = ACTIONS(1722), + [anon_sym_protected] = ACTIONS(1722), + [anon_sym_override] = ACTIONS(1722), + [anon_sym_module] = ACTIONS(1722), + [anon_sym_any] = ACTIONS(1722), + [anon_sym_number] = ACTIONS(1722), + [anon_sym_boolean] = ACTIONS(1722), + [anon_sym_string] = ACTIONS(1722), + [anon_sym_symbol] = ACTIONS(1722), + [anon_sym_object] = ACTIONS(1722), + [anon_sym_abstract] = ACTIONS(1722), + [anon_sym_interface] = ACTIONS(1722), + [anon_sym_enum] = ACTIONS(1722), + [anon_sym_PIPE_RBRACE] = ACTIONS(1720), + [sym__automatic_semicolon] = ACTIONS(1720), [sym_html_comment] = ACTIONS(5), }, [758] = { - [sym__call_signature] = STATE(5493), - [sym_formal_parameters] = STATE(3893), - [sym_type_parameters] = STATE(5354), - [sym_identifier] = ACTIONS(2464), - [anon_sym_export] = ACTIONS(2466), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2466), - [anon_sym_EQ] = ACTIONS(904), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2466), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_let] = ACTIONS(2466), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_RBRACK] = ACTIONS(224), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_async] = ACTIONS(2466), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(913), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2466), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_static] = ACTIONS(2466), - [anon_sym_readonly] = ACTIONS(2466), - [anon_sym_get] = ACTIONS(2466), - [anon_sym_set] = ACTIONS(2466), - [anon_sym_declare] = ACTIONS(2466), - [anon_sym_public] = ACTIONS(2466), - [anon_sym_private] = ACTIONS(2466), - [anon_sym_protected] = ACTIONS(2466), - [anon_sym_override] = ACTIONS(2466), - [anon_sym_module] = ACTIONS(2466), - [anon_sym_any] = ACTIONS(2466), - [anon_sym_number] = ACTIONS(2466), - [anon_sym_boolean] = ACTIONS(2466), - [anon_sym_string] = ACTIONS(2466), - [anon_sym_symbol] = ACTIONS(2466), - [anon_sym_object] = ACTIONS(2466), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [ts_builtin_sym_end] = ACTIONS(1878), + [sym_identifier] = ACTIONS(1880), + [anon_sym_export] = ACTIONS(1880), + [anon_sym_default] = ACTIONS(1880), + [anon_sym_type] = ACTIONS(1880), + [anon_sym_namespace] = ACTIONS(1880), + [anon_sym_LBRACE] = ACTIONS(1878), + [anon_sym_COMMA] = ACTIONS(1878), + [anon_sym_RBRACE] = ACTIONS(1878), + [anon_sym_typeof] = ACTIONS(1880), + [anon_sym_import] = ACTIONS(1880), + [anon_sym_with] = ACTIONS(1880), + [anon_sym_var] = ACTIONS(1880), + [anon_sym_let] = ACTIONS(1880), + [anon_sym_const] = ACTIONS(1880), + [anon_sym_BANG] = ACTIONS(1878), + [anon_sym_else] = ACTIONS(1880), + [anon_sym_if] = ACTIONS(1880), + [anon_sym_switch] = ACTIONS(1880), + [anon_sym_for] = ACTIONS(1880), + [anon_sym_LPAREN] = ACTIONS(1878), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym_await] = ACTIONS(1880), + [anon_sym_while] = ACTIONS(1880), + [anon_sym_do] = ACTIONS(1880), + [anon_sym_try] = ACTIONS(1880), + [anon_sym_break] = ACTIONS(1880), + [anon_sym_continue] = ACTIONS(1880), + [anon_sym_debugger] = ACTIONS(1880), + [anon_sym_return] = ACTIONS(1880), + [anon_sym_throw] = ACTIONS(1880), + [anon_sym_case] = ACTIONS(1880), + [anon_sym_yield] = ACTIONS(1880), + [anon_sym_LBRACK] = ACTIONS(1878), + [anon_sym_class] = ACTIONS(1880), + [anon_sym_async] = ACTIONS(1880), + [anon_sym_function] = ACTIONS(1880), + [anon_sym_new] = ACTIONS(1880), + [anon_sym_using] = ACTIONS(1880), + [anon_sym_PLUS] = ACTIONS(1880), + [anon_sym_DASH] = ACTIONS(1880), + [anon_sym_SLASH] = ACTIONS(1880), + [anon_sym_LT] = ACTIONS(1878), + [anon_sym_TILDE] = ACTIONS(1878), + [anon_sym_void] = ACTIONS(1880), + [anon_sym_delete] = ACTIONS(1880), + [anon_sym_PLUS_PLUS] = ACTIONS(1878), + [anon_sym_DASH_DASH] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1878), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1878), + [sym_number] = ACTIONS(1878), + [sym_private_property_identifier] = ACTIONS(1878), + [sym_this] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_true] = ACTIONS(1880), + [sym_false] = ACTIONS(1880), + [sym_null] = ACTIONS(1880), + [sym_undefined] = ACTIONS(1880), + [anon_sym_AT] = ACTIONS(1878), + [anon_sym_static] = ACTIONS(1880), + [anon_sym_readonly] = ACTIONS(1880), + [anon_sym_get] = ACTIONS(1880), + [anon_sym_set] = ACTIONS(1880), + [anon_sym_declare] = ACTIONS(1880), + [anon_sym_public] = ACTIONS(1880), + [anon_sym_private] = ACTIONS(1880), + [anon_sym_protected] = ACTIONS(1880), + [anon_sym_override] = ACTIONS(1880), + [anon_sym_module] = ACTIONS(1880), + [anon_sym_any] = ACTIONS(1880), + [anon_sym_number] = ACTIONS(1880), + [anon_sym_boolean] = ACTIONS(1880), + [anon_sym_string] = ACTIONS(1880), + [anon_sym_symbol] = ACTIONS(1880), + [anon_sym_object] = ACTIONS(1880), + [anon_sym_abstract] = ACTIONS(1880), + [anon_sym_interface] = ACTIONS(1880), + [anon_sym_enum] = ACTIONS(1880), + [anon_sym_PIPE_RBRACE] = ACTIONS(1878), + [sym__automatic_semicolon] = ACTIONS(1878), [sym_html_comment] = ACTIONS(5), }, [759] = { - [sym__call_signature] = STATE(5613), - [sym_formal_parameters] = STATE(3893), - [sym_type_parameters] = STATE(5354), - [sym_identifier] = ACTIONS(2472), - [anon_sym_export] = ACTIONS(2474), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2474), - [anon_sym_EQ] = ACTIONS(925), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2474), - [anon_sym_let] = ACTIONS(2474), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_async] = ACTIONS(2474), - [anon_sym_function] = ACTIONS(2446), - [anon_sym_EQ_GT] = ACTIONS(931), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2474), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_static] = ACTIONS(2474), - [anon_sym_readonly] = ACTIONS(2474), - [anon_sym_get] = ACTIONS(2474), - [anon_sym_set] = ACTIONS(2474), - [anon_sym_declare] = ACTIONS(2474), - [anon_sym_public] = ACTIONS(2474), - [anon_sym_private] = ACTIONS(2474), - [anon_sym_protected] = ACTIONS(2474), - [anon_sym_override] = ACTIONS(2474), - [anon_sym_module] = ACTIONS(2474), - [anon_sym_any] = ACTIONS(2474), - [anon_sym_number] = ACTIONS(2474), - [anon_sym_boolean] = ACTIONS(2474), - [anon_sym_string] = ACTIONS(2474), - [anon_sym_symbol] = ACTIONS(2474), - [anon_sym_object] = ACTIONS(2474), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [ts_builtin_sym_end] = ACTIONS(1690), + [sym_identifier] = ACTIONS(1692), + [anon_sym_export] = ACTIONS(1692), + [anon_sym_default] = ACTIONS(1692), + [anon_sym_type] = ACTIONS(1692), + [anon_sym_namespace] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1690), + [anon_sym_COMMA] = ACTIONS(1690), + [anon_sym_RBRACE] = ACTIONS(1690), + [anon_sym_typeof] = ACTIONS(1692), + [anon_sym_import] = ACTIONS(1692), + [anon_sym_with] = ACTIONS(1692), + [anon_sym_var] = ACTIONS(1692), + [anon_sym_let] = ACTIONS(1692), + [anon_sym_const] = ACTIONS(1692), + [anon_sym_BANG] = ACTIONS(1690), + [anon_sym_else] = ACTIONS(1692), + [anon_sym_if] = ACTIONS(1692), + [anon_sym_switch] = ACTIONS(1692), + [anon_sym_for] = ACTIONS(1692), + [anon_sym_LPAREN] = ACTIONS(1690), + [anon_sym_SEMI] = ACTIONS(1690), + [anon_sym_await] = ACTIONS(1692), + [anon_sym_while] = ACTIONS(1692), + [anon_sym_do] = ACTIONS(1692), + [anon_sym_try] = ACTIONS(1692), + [anon_sym_break] = ACTIONS(1692), + [anon_sym_continue] = ACTIONS(1692), + [anon_sym_debugger] = ACTIONS(1692), + [anon_sym_return] = ACTIONS(1692), + [anon_sym_throw] = ACTIONS(1692), + [anon_sym_case] = ACTIONS(1692), + [anon_sym_yield] = ACTIONS(1692), + [anon_sym_LBRACK] = ACTIONS(1690), + [anon_sym_class] = ACTIONS(1692), + [anon_sym_async] = ACTIONS(1692), + [anon_sym_function] = ACTIONS(1692), + [anon_sym_new] = ACTIONS(1692), + [anon_sym_using] = ACTIONS(1692), + [anon_sym_PLUS] = ACTIONS(1692), + [anon_sym_DASH] = ACTIONS(1692), + [anon_sym_SLASH] = ACTIONS(1692), + [anon_sym_LT] = ACTIONS(1690), + [anon_sym_TILDE] = ACTIONS(1690), + [anon_sym_void] = ACTIONS(1692), + [anon_sym_delete] = ACTIONS(1692), + [anon_sym_PLUS_PLUS] = ACTIONS(1690), + [anon_sym_DASH_DASH] = ACTIONS(1690), + [anon_sym_DQUOTE] = ACTIONS(1690), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1690), + [sym_number] = ACTIONS(1690), + [sym_private_property_identifier] = ACTIONS(1690), + [sym_this] = ACTIONS(1692), + [sym_super] = ACTIONS(1692), + [sym_true] = ACTIONS(1692), + [sym_false] = ACTIONS(1692), + [sym_null] = ACTIONS(1692), + [sym_undefined] = ACTIONS(1692), + [anon_sym_AT] = ACTIONS(1690), + [anon_sym_static] = ACTIONS(1692), + [anon_sym_readonly] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1692), + [anon_sym_set] = ACTIONS(1692), + [anon_sym_declare] = ACTIONS(1692), + [anon_sym_public] = ACTIONS(1692), + [anon_sym_private] = ACTIONS(1692), + [anon_sym_protected] = ACTIONS(1692), + [anon_sym_override] = ACTIONS(1692), + [anon_sym_module] = ACTIONS(1692), + [anon_sym_any] = ACTIONS(1692), + [anon_sym_number] = ACTIONS(1692), + [anon_sym_boolean] = ACTIONS(1692), + [anon_sym_string] = ACTIONS(1692), + [anon_sym_symbol] = ACTIONS(1692), + [anon_sym_object] = ACTIONS(1692), + [anon_sym_abstract] = ACTIONS(1692), + [anon_sym_interface] = ACTIONS(1692), + [anon_sym_enum] = ACTIONS(1692), + [anon_sym_PIPE_RBRACE] = ACTIONS(1690), + [sym__automatic_semicolon] = ACTIONS(2469), [sym_html_comment] = ACTIONS(5), }, [760] = { - [sym__call_signature] = STATE(5613), - [sym_formal_parameters] = STATE(3893), - [sym_type_parameters] = STATE(5354), - [sym_identifier] = ACTIONS(2472), - [anon_sym_export] = ACTIONS(2474), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2474), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2474), - [anon_sym_let] = ACTIONS(2474), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_async] = ACTIONS(2474), - [anon_sym_function] = ACTIONS(2448), - [anon_sym_EQ_GT] = ACTIONS(931), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2474), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_static] = ACTIONS(2474), - [anon_sym_readonly] = ACTIONS(2474), - [anon_sym_get] = ACTIONS(2474), - [anon_sym_set] = ACTIONS(2474), - [anon_sym_declare] = ACTIONS(2474), - [anon_sym_public] = ACTIONS(2474), - [anon_sym_private] = ACTIONS(2474), - [anon_sym_protected] = ACTIONS(2474), - [anon_sym_override] = ACTIONS(2474), - [anon_sym_module] = ACTIONS(2474), - [anon_sym_any] = ACTIONS(2474), - [anon_sym_number] = ACTIONS(2474), - [anon_sym_boolean] = ACTIONS(2474), - [anon_sym_string] = ACTIONS(2474), - [anon_sym_symbol] = ACTIONS(2474), - [anon_sym_object] = ACTIONS(2474), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [ts_builtin_sym_end] = ACTIONS(1716), + [sym_identifier] = ACTIONS(1718), + [anon_sym_export] = ACTIONS(1718), + [anon_sym_default] = ACTIONS(1718), + [anon_sym_type] = ACTIONS(1718), + [anon_sym_namespace] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(1716), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_RBRACE] = ACTIONS(1716), + [anon_sym_typeof] = ACTIONS(1718), + [anon_sym_import] = ACTIONS(1718), + [anon_sym_with] = ACTIONS(1718), + [anon_sym_var] = ACTIONS(1718), + [anon_sym_let] = ACTIONS(1718), + [anon_sym_const] = ACTIONS(1718), + [anon_sym_BANG] = ACTIONS(1716), + [anon_sym_else] = ACTIONS(1718), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_switch] = ACTIONS(1718), + [anon_sym_for] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(1716), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_await] = ACTIONS(1718), + [anon_sym_while] = ACTIONS(1718), + [anon_sym_do] = ACTIONS(1718), + [anon_sym_try] = ACTIONS(1718), + [anon_sym_break] = ACTIONS(1718), + [anon_sym_continue] = ACTIONS(1718), + [anon_sym_debugger] = ACTIONS(1718), + [anon_sym_return] = ACTIONS(1718), + [anon_sym_throw] = ACTIONS(1718), + [anon_sym_case] = ACTIONS(1718), + [anon_sym_yield] = ACTIONS(1718), + [anon_sym_LBRACK] = ACTIONS(1716), + [anon_sym_class] = ACTIONS(1718), + [anon_sym_async] = ACTIONS(1718), + [anon_sym_function] = ACTIONS(1718), + [anon_sym_new] = ACTIONS(1718), + [anon_sym_using] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_LT] = ACTIONS(1716), + [anon_sym_TILDE] = ACTIONS(1716), + [anon_sym_void] = ACTIONS(1718), + [anon_sym_delete] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [anon_sym_DQUOTE] = ACTIONS(1716), + [anon_sym_SQUOTE] = ACTIONS(1716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1716), + [sym_number] = ACTIONS(1716), + [sym_private_property_identifier] = ACTIONS(1716), + [sym_this] = ACTIONS(1718), + [sym_super] = ACTIONS(1718), + [sym_true] = ACTIONS(1718), + [sym_false] = ACTIONS(1718), + [sym_null] = ACTIONS(1718), + [sym_undefined] = ACTIONS(1718), + [anon_sym_AT] = ACTIONS(1716), + [anon_sym_static] = ACTIONS(1718), + [anon_sym_readonly] = ACTIONS(1718), + [anon_sym_get] = ACTIONS(1718), + [anon_sym_set] = ACTIONS(1718), + [anon_sym_declare] = ACTIONS(1718), + [anon_sym_public] = ACTIONS(1718), + [anon_sym_private] = ACTIONS(1718), + [anon_sym_protected] = ACTIONS(1718), + [anon_sym_override] = ACTIONS(1718), + [anon_sym_module] = ACTIONS(1718), + [anon_sym_any] = ACTIONS(1718), + [anon_sym_number] = ACTIONS(1718), + [anon_sym_boolean] = ACTIONS(1718), + [anon_sym_string] = ACTIONS(1718), + [anon_sym_symbol] = ACTIONS(1718), + [anon_sym_object] = ACTIONS(1718), + [anon_sym_abstract] = ACTIONS(1718), + [anon_sym_interface] = ACTIONS(1718), + [anon_sym_enum] = ACTIONS(1718), + [anon_sym_PIPE_RBRACE] = ACTIONS(1716), + [sym__automatic_semicolon] = ACTIONS(1716), [sym_html_comment] = ACTIONS(5), }, [761] = { - [ts_builtin_sym_end] = ACTIONS(1831), - [sym_identifier] = ACTIONS(1833), - [anon_sym_export] = ACTIONS(1833), - [anon_sym_default] = ACTIONS(1833), - [anon_sym_type] = ACTIONS(1833), - [anon_sym_namespace] = ACTIONS(1833), - [anon_sym_LBRACE] = ACTIONS(1831), - [anon_sym_COMMA] = ACTIONS(1831), - [anon_sym_RBRACE] = ACTIONS(1831), - [anon_sym_typeof] = ACTIONS(1833), - [anon_sym_import] = ACTIONS(1833), - [anon_sym_with] = ACTIONS(1833), - [anon_sym_var] = ACTIONS(1833), - [anon_sym_let] = ACTIONS(1833), - [anon_sym_const] = ACTIONS(1833), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_else] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_switch] = ACTIONS(1833), - [anon_sym_for] = ACTIONS(1833), - [anon_sym_LPAREN] = ACTIONS(1831), - [anon_sym_SEMI] = ACTIONS(1831), - [anon_sym_await] = ACTIONS(1833), - [anon_sym_while] = ACTIONS(1833), - [anon_sym_do] = ACTIONS(1833), - [anon_sym_try] = ACTIONS(1833), - [anon_sym_break] = ACTIONS(1833), - [anon_sym_continue] = ACTIONS(1833), - [anon_sym_debugger] = ACTIONS(1833), - [anon_sym_return] = ACTIONS(1833), - [anon_sym_throw] = ACTIONS(1833), - [anon_sym_case] = ACTIONS(1833), - [anon_sym_catch] = ACTIONS(1833), - [anon_sym_finally] = ACTIONS(1833), - [anon_sym_yield] = ACTIONS(1833), - [anon_sym_LBRACK] = ACTIONS(1831), - [sym_glimmer_opening_tag] = ACTIONS(1831), - [anon_sym_class] = ACTIONS(1833), - [anon_sym_async] = ACTIONS(1833), - [anon_sym_function] = ACTIONS(1833), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1833), - [anon_sym_PLUS] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1833), - [anon_sym_SLASH] = ACTIONS(1833), - [anon_sym_LT] = ACTIONS(1833), - [anon_sym_TILDE] = ACTIONS(1831), - [anon_sym_void] = ACTIONS(1833), - [anon_sym_delete] = ACTIONS(1833), - [anon_sym_PLUS_PLUS] = ACTIONS(1831), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_DQUOTE] = ACTIONS(1831), - [anon_sym_SQUOTE] = ACTIONS(1831), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1831), - [sym_number] = ACTIONS(1831), - [sym_private_property_identifier] = ACTIONS(1831), - [sym_this] = ACTIONS(1833), - [sym_super] = ACTIONS(1833), - [sym_true] = ACTIONS(1833), - [sym_false] = ACTIONS(1833), - [sym_null] = ACTIONS(1833), - [sym_undefined] = ACTIONS(1833), - [anon_sym_AT] = ACTIONS(1831), - [anon_sym_static] = ACTIONS(1833), - [anon_sym_readonly] = ACTIONS(1833), - [anon_sym_get] = ACTIONS(1833), - [anon_sym_set] = ACTIONS(1833), - [anon_sym_declare] = ACTIONS(1833), - [anon_sym_public] = ACTIONS(1833), - [anon_sym_private] = ACTIONS(1833), - [anon_sym_protected] = ACTIONS(1833), - [anon_sym_override] = ACTIONS(1833), - [anon_sym_module] = ACTIONS(1833), - [anon_sym_any] = ACTIONS(1833), - [anon_sym_number] = ACTIONS(1833), - [anon_sym_boolean] = ACTIONS(1833), - [anon_sym_string] = ACTIONS(1833), - [anon_sym_symbol] = ACTIONS(1833), - [anon_sym_object] = ACTIONS(1833), - [anon_sym_abstract] = ACTIONS(1833), - [anon_sym_interface] = ACTIONS(1833), - [anon_sym_enum] = ACTIONS(1833), + [sym__call_signature] = STATE(5764), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2471), + [anon_sym_export] = ACTIONS(2473), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2473), + [anon_sym_EQ] = ACTIONS(964), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2473), + [anon_sym_let] = ACTIONS(2473), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(154), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2473), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(970), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2473), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2473), + [anon_sym_readonly] = ACTIONS(2473), + [anon_sym_get] = ACTIONS(2473), + [anon_sym_set] = ACTIONS(2473), + [anon_sym_declare] = ACTIONS(2473), + [anon_sym_public] = ACTIONS(2473), + [anon_sym_private] = ACTIONS(2473), + [anon_sym_protected] = ACTIONS(2473), + [anon_sym_override] = ACTIONS(2473), + [anon_sym_module] = ACTIONS(2473), + [anon_sym_any] = ACTIONS(2473), + [anon_sym_number] = ACTIONS(2473), + [anon_sym_boolean] = ACTIONS(2473), + [anon_sym_string] = ACTIONS(2473), + [anon_sym_symbol] = ACTIONS(2473), + [anon_sym_object] = ACTIONS(2473), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [762] = { - [sym_statement_block] = STATE(899), - [ts_builtin_sym_end] = ACTIONS(1717), - [sym_identifier] = ACTIONS(1719), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_default] = ACTIONS(1719), - [anon_sym_type] = ACTIONS(1719), - [anon_sym_namespace] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(2482), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_typeof] = ACTIONS(1719), - [anon_sym_import] = ACTIONS(1719), - [anon_sym_with] = ACTIONS(1719), - [anon_sym_var] = ACTIONS(1719), - [anon_sym_let] = ACTIONS(1719), - [anon_sym_const] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_else] = ACTIONS(1719), - [anon_sym_if] = ACTIONS(1719), - [anon_sym_switch] = ACTIONS(1719), - [anon_sym_for] = ACTIONS(1719), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1717), - [anon_sym_await] = ACTIONS(1719), - [anon_sym_while] = ACTIONS(1719), - [anon_sym_do] = ACTIONS(1719), - [anon_sym_try] = ACTIONS(1719), - [anon_sym_break] = ACTIONS(1719), - [anon_sym_continue] = ACTIONS(1719), - [anon_sym_debugger] = ACTIONS(1719), - [anon_sym_return] = ACTIONS(1719), - [anon_sym_throw] = ACTIONS(1719), - [anon_sym_case] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1719), - [anon_sym_LBRACK] = ACTIONS(1717), - [sym_glimmer_opening_tag] = ACTIONS(1717), - [anon_sym_DOT] = ACTIONS(2484), - [anon_sym_class] = ACTIONS(1719), - [anon_sym_async] = ACTIONS(1719), - [anon_sym_function] = ACTIONS(1719), - [anon_sym_new] = ACTIONS(1719), - [anon_sym_using] = ACTIONS(1719), - [anon_sym_PLUS] = ACTIONS(1719), - [anon_sym_DASH] = ACTIONS(1719), - [anon_sym_SLASH] = ACTIONS(1719), - [anon_sym_LT] = ACTIONS(1719), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_void] = ACTIONS(1719), - [anon_sym_delete] = ACTIONS(1719), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1717), - [anon_sym_SQUOTE] = ACTIONS(1717), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1717), - [sym_number] = ACTIONS(1717), - [sym_private_property_identifier] = ACTIONS(1717), - [sym_this] = ACTIONS(1719), - [sym_super] = ACTIONS(1719), - [sym_true] = ACTIONS(1719), - [sym_false] = ACTIONS(1719), - [sym_null] = ACTIONS(1719), - [sym_undefined] = ACTIONS(1719), - [anon_sym_AT] = ACTIONS(1717), - [anon_sym_static] = ACTIONS(1719), - [anon_sym_readonly] = ACTIONS(1719), - [anon_sym_get] = ACTIONS(1719), - [anon_sym_set] = ACTIONS(1719), - [anon_sym_declare] = ACTIONS(1719), - [anon_sym_public] = ACTIONS(1719), - [anon_sym_private] = ACTIONS(1719), - [anon_sym_protected] = ACTIONS(1719), - [anon_sym_override] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(1719), - [anon_sym_any] = ACTIONS(1719), - [anon_sym_number] = ACTIONS(1719), - [anon_sym_boolean] = ACTIONS(1719), - [anon_sym_string] = ACTIONS(1719), - [anon_sym_symbol] = ACTIONS(1719), - [anon_sym_object] = ACTIONS(1719), - [anon_sym_abstract] = ACTIONS(1719), - [anon_sym_interface] = ACTIONS(1719), - [anon_sym_enum] = ACTIONS(1719), + [sym__call_signature] = STATE(5481), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2443), + [anon_sym_export] = ACTIONS(2445), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2445), + [anon_sym_EQ] = ACTIONS(910), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2445), + [anon_sym_let] = ACTIONS(2445), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_RBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2445), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(895), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2445), + [anon_sym_readonly] = ACTIONS(2445), + [anon_sym_get] = ACTIONS(2445), + [anon_sym_set] = ACTIONS(2445), + [anon_sym_declare] = ACTIONS(2445), + [anon_sym_public] = ACTIONS(2445), + [anon_sym_private] = ACTIONS(2445), + [anon_sym_protected] = ACTIONS(2445), + [anon_sym_override] = ACTIONS(2445), + [anon_sym_module] = ACTIONS(2445), + [anon_sym_any] = ACTIONS(2445), + [anon_sym_number] = ACTIONS(2445), + [anon_sym_boolean] = ACTIONS(2445), + [anon_sym_string] = ACTIONS(2445), + [anon_sym_symbol] = ACTIONS(2445), + [anon_sym_object] = ACTIONS(2445), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [763] = { - [sym_statement_block] = STATE(899), - [ts_builtin_sym_end] = ACTIONS(1717), - [sym_identifier] = ACTIONS(1719), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_default] = ACTIONS(1719), - [anon_sym_type] = ACTIONS(1719), - [anon_sym_namespace] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(2482), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_typeof] = ACTIONS(1719), - [anon_sym_import] = ACTIONS(1719), - [anon_sym_with] = ACTIONS(1719), - [anon_sym_var] = ACTIONS(1719), - [anon_sym_let] = ACTIONS(1719), - [anon_sym_const] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_else] = ACTIONS(1719), - [anon_sym_if] = ACTIONS(1719), - [anon_sym_switch] = ACTIONS(1719), - [anon_sym_for] = ACTIONS(1719), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1717), - [anon_sym_await] = ACTIONS(1719), - [anon_sym_while] = ACTIONS(1719), - [anon_sym_do] = ACTIONS(1719), - [anon_sym_try] = ACTIONS(1719), - [anon_sym_break] = ACTIONS(1719), - [anon_sym_continue] = ACTIONS(1719), - [anon_sym_debugger] = ACTIONS(1719), - [anon_sym_return] = ACTIONS(1719), - [anon_sym_throw] = ACTIONS(1719), - [anon_sym_case] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1719), - [anon_sym_LBRACK] = ACTIONS(1717), - [sym_glimmer_opening_tag] = ACTIONS(1717), - [anon_sym_DOT] = ACTIONS(2486), - [anon_sym_class] = ACTIONS(1719), - [anon_sym_async] = ACTIONS(1719), - [anon_sym_function] = ACTIONS(1719), - [anon_sym_new] = ACTIONS(1719), - [anon_sym_using] = ACTIONS(1719), - [anon_sym_PLUS] = ACTIONS(1719), - [anon_sym_DASH] = ACTIONS(1719), - [anon_sym_SLASH] = ACTIONS(1719), - [anon_sym_LT] = ACTIONS(1719), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_void] = ACTIONS(1719), - [anon_sym_delete] = ACTIONS(1719), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1717), - [anon_sym_SQUOTE] = ACTIONS(1717), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1717), - [sym_number] = ACTIONS(1717), - [sym_private_property_identifier] = ACTIONS(1717), - [sym_this] = ACTIONS(1719), - [sym_super] = ACTIONS(1719), - [sym_true] = ACTIONS(1719), - [sym_false] = ACTIONS(1719), - [sym_null] = ACTIONS(1719), - [sym_undefined] = ACTIONS(1719), - [anon_sym_AT] = ACTIONS(1717), - [anon_sym_static] = ACTIONS(1719), - [anon_sym_readonly] = ACTIONS(1719), - [anon_sym_get] = ACTIONS(1719), - [anon_sym_set] = ACTIONS(1719), - [anon_sym_declare] = ACTIONS(1719), - [anon_sym_public] = ACTIONS(1719), - [anon_sym_private] = ACTIONS(1719), - [anon_sym_protected] = ACTIONS(1719), - [anon_sym_override] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(1719), - [anon_sym_any] = ACTIONS(1719), - [anon_sym_number] = ACTIONS(1719), - [anon_sym_boolean] = ACTIONS(1719), - [anon_sym_string] = ACTIONS(1719), - [anon_sym_symbol] = ACTIONS(1719), - [anon_sym_object] = ACTIONS(1719), - [anon_sym_abstract] = ACTIONS(1719), - [anon_sym_interface] = ACTIONS(1719), - [anon_sym_enum] = ACTIONS(1719), + [sym__call_signature] = STATE(5764), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2471), + [anon_sym_export] = ACTIONS(2473), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2473), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2473), + [anon_sym_let] = ACTIONS(2473), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(154), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2473), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(970), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2473), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2473), + [anon_sym_readonly] = ACTIONS(2473), + [anon_sym_get] = ACTIONS(2473), + [anon_sym_set] = ACTIONS(2473), + [anon_sym_declare] = ACTIONS(2473), + [anon_sym_public] = ACTIONS(2473), + [anon_sym_private] = ACTIONS(2473), + [anon_sym_protected] = ACTIONS(2473), + [anon_sym_override] = ACTIONS(2473), + [anon_sym_module] = ACTIONS(2473), + [anon_sym_any] = ACTIONS(2473), + [anon_sym_number] = ACTIONS(2473), + [anon_sym_boolean] = ACTIONS(2473), + [anon_sym_string] = ACTIONS(2473), + [anon_sym_symbol] = ACTIONS(2473), + [anon_sym_object] = ACTIONS(2473), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [764] = { - [sym__call_signature] = STATE(5756), - [sym_formal_parameters] = STATE(3893), - [sym_type_parameters] = STATE(5354), - [sym_identifier] = ACTIONS(2488), - [anon_sym_export] = ACTIONS(2490), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2490), - [anon_sym_EQ] = ACTIONS(955), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2490), - [anon_sym_let] = ACTIONS(2490), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_async] = ACTIONS(2490), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(961), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2490), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_static] = ACTIONS(2490), - [anon_sym_readonly] = ACTIONS(2490), - [anon_sym_get] = ACTIONS(2490), - [anon_sym_set] = ACTIONS(2490), - [anon_sym_declare] = ACTIONS(2490), - [anon_sym_public] = ACTIONS(2490), - [anon_sym_private] = ACTIONS(2490), - [anon_sym_protected] = ACTIONS(2490), - [anon_sym_override] = ACTIONS(2490), - [anon_sym_module] = ACTIONS(2490), - [anon_sym_any] = ACTIONS(2490), - [anon_sym_number] = ACTIONS(2490), - [anon_sym_boolean] = ACTIONS(2490), - [anon_sym_string] = ACTIONS(2490), - [anon_sym_symbol] = ACTIONS(2490), - [anon_sym_object] = ACTIONS(2490), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym__call_signature] = STATE(5533), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2475), + [anon_sym_export] = ACTIONS(2477), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2477), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2477), + [anon_sym_let] = ACTIONS(2477), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2477), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(954), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2477), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2477), + [anon_sym_readonly] = ACTIONS(2477), + [anon_sym_get] = ACTIONS(2477), + [anon_sym_set] = ACTIONS(2477), + [anon_sym_declare] = ACTIONS(2477), + [anon_sym_public] = ACTIONS(2477), + [anon_sym_private] = ACTIONS(2477), + [anon_sym_protected] = ACTIONS(2477), + [anon_sym_override] = ACTIONS(2477), + [anon_sym_module] = ACTIONS(2477), + [anon_sym_any] = ACTIONS(2477), + [anon_sym_number] = ACTIONS(2477), + [anon_sym_boolean] = ACTIONS(2477), + [anon_sym_string] = ACTIONS(2477), + [anon_sym_symbol] = ACTIONS(2477), + [anon_sym_object] = ACTIONS(2477), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [765] = { - [sym__call_signature] = STATE(5493), - [sym_formal_parameters] = STATE(3893), - [sym_type_parameters] = STATE(5354), - [sym_identifier] = ACTIONS(2464), - [anon_sym_export] = ACTIONS(2466), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2466), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2466), - [anon_sym_let] = ACTIONS(2466), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_RBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_async] = ACTIONS(2466), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(913), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2466), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_static] = ACTIONS(2466), - [anon_sym_readonly] = ACTIONS(2466), - [anon_sym_get] = ACTIONS(2466), - [anon_sym_set] = ACTIONS(2466), - [anon_sym_declare] = ACTIONS(2466), - [anon_sym_public] = ACTIONS(2466), - [anon_sym_private] = ACTIONS(2466), - [anon_sym_protected] = ACTIONS(2466), - [anon_sym_override] = ACTIONS(2466), - [anon_sym_module] = ACTIONS(2466), - [anon_sym_any] = ACTIONS(2466), - [anon_sym_number] = ACTIONS(2466), - [anon_sym_boolean] = ACTIONS(2466), - [anon_sym_string] = ACTIONS(2466), - [anon_sym_symbol] = ACTIONS(2466), - [anon_sym_object] = ACTIONS(2466), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym__call_signature] = STATE(5834), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2411), + [anon_sym_export] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2413), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2413), + [anon_sym_let] = ACTIONS(2413), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_in] = ACTIONS(902), + [anon_sym_of] = ACTIONS(905), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2413), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2413), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2413), + [anon_sym_readonly] = ACTIONS(2413), + [anon_sym_get] = ACTIONS(2413), + [anon_sym_set] = ACTIONS(2413), + [anon_sym_declare] = ACTIONS(2413), + [anon_sym_public] = ACTIONS(2413), + [anon_sym_private] = ACTIONS(2413), + [anon_sym_protected] = ACTIONS(2413), + [anon_sym_override] = ACTIONS(2413), + [anon_sym_module] = ACTIONS(2413), + [anon_sym_any] = ACTIONS(2413), + [anon_sym_number] = ACTIONS(2413), + [anon_sym_boolean] = ACTIONS(2413), + [anon_sym_string] = ACTIONS(2413), + [anon_sym_symbol] = ACTIONS(2413), + [anon_sym_object] = ACTIONS(2413), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [766] = { - [sym__call_signature] = STATE(5756), - [sym_formal_parameters] = STATE(3893), - [sym_type_parameters] = STATE(5354), - [sym_identifier] = ACTIONS(2488), - [anon_sym_export] = ACTIONS(2490), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2490), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2490), - [anon_sym_let] = ACTIONS(2490), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_async] = ACTIONS(2490), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(961), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2490), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_static] = ACTIONS(2490), - [anon_sym_readonly] = ACTIONS(2490), - [anon_sym_get] = ACTIONS(2490), - [anon_sym_set] = ACTIONS(2490), - [anon_sym_declare] = ACTIONS(2490), - [anon_sym_public] = ACTIONS(2490), - [anon_sym_private] = ACTIONS(2490), - [anon_sym_protected] = ACTIONS(2490), - [anon_sym_override] = ACTIONS(2490), - [anon_sym_module] = ACTIONS(2490), - [anon_sym_any] = ACTIONS(2490), - [anon_sym_number] = ACTIONS(2490), - [anon_sym_boolean] = ACTIONS(2490), - [anon_sym_string] = ACTIONS(2490), - [anon_sym_symbol] = ACTIONS(2490), - [anon_sym_object] = ACTIONS(2490), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym__call_signature] = STATE(5533), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2475), + [anon_sym_export] = ACTIONS(2477), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2477), + [anon_sym_EQ] = ACTIONS(948), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2477), + [anon_sym_let] = ACTIONS(2477), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2477), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(954), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2477), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2477), + [anon_sym_readonly] = ACTIONS(2477), + [anon_sym_get] = ACTIONS(2477), + [anon_sym_set] = ACTIONS(2477), + [anon_sym_declare] = ACTIONS(2477), + [anon_sym_public] = ACTIONS(2477), + [anon_sym_private] = ACTIONS(2477), + [anon_sym_protected] = ACTIONS(2477), + [anon_sym_override] = ACTIONS(2477), + [anon_sym_module] = ACTIONS(2477), + [anon_sym_any] = ACTIONS(2477), + [anon_sym_number] = ACTIONS(2477), + [anon_sym_boolean] = ACTIONS(2477), + [anon_sym_string] = ACTIONS(2477), + [anon_sym_symbol] = ACTIONS(2477), + [anon_sym_object] = ACTIONS(2477), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [767] = { - [sym__call_signature] = STATE(5844), - [sym_formal_parameters] = STATE(3893), - [sym_type_parameters] = STATE(5354), - [sym_identifier] = ACTIONS(2422), - [anon_sym_export] = ACTIONS(2424), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2424), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2424), - [anon_sym_let] = ACTIONS(2424), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(833), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_async] = ACTIONS(2424), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(155), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2424), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_static] = ACTIONS(2424), - [anon_sym_readonly] = ACTIONS(2424), - [anon_sym_get] = ACTIONS(2424), - [anon_sym_set] = ACTIONS(2424), - [anon_sym_declare] = ACTIONS(2424), - [anon_sym_public] = ACTIONS(2424), - [anon_sym_private] = ACTIONS(2424), - [anon_sym_protected] = ACTIONS(2424), - [anon_sym_override] = ACTIONS(2424), - [anon_sym_module] = ACTIONS(2424), - [anon_sym_any] = ACTIONS(2424), - [anon_sym_number] = ACTIONS(2424), - [anon_sym_boolean] = ACTIONS(2424), - [anon_sym_string] = ACTIONS(2424), - [anon_sym_symbol] = ACTIONS(2424), - [anon_sym_object] = ACTIONS(2424), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym__call_signature] = STATE(5481), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2443), + [anon_sym_export] = ACTIONS(2445), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2445), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2445), + [anon_sym_let] = ACTIONS(2445), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_RBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2445), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(895), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2445), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2445), + [anon_sym_readonly] = ACTIONS(2445), + [anon_sym_get] = ACTIONS(2445), + [anon_sym_set] = ACTIONS(2445), + [anon_sym_declare] = ACTIONS(2445), + [anon_sym_public] = ACTIONS(2445), + [anon_sym_private] = ACTIONS(2445), + [anon_sym_protected] = ACTIONS(2445), + [anon_sym_override] = ACTIONS(2445), + [anon_sym_module] = ACTIONS(2445), + [anon_sym_any] = ACTIONS(2445), + [anon_sym_number] = ACTIONS(2445), + [anon_sym_boolean] = ACTIONS(2445), + [anon_sym_string] = ACTIONS(2445), + [anon_sym_symbol] = ACTIONS(2445), + [anon_sym_object] = ACTIONS(2445), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [768] = { - [sym__call_signature] = STATE(5844), - [sym_formal_parameters] = STATE(3893), - [sym_type_parameters] = STATE(5354), - [sym_identifier] = ACTIONS(2422), - [anon_sym_export] = ACTIONS(2424), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2424), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2424), - [anon_sym_let] = ACTIONS(2424), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(895), - [anon_sym_of] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_async] = ACTIONS(2424), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(155), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2424), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_static] = ACTIONS(2424), - [anon_sym_readonly] = ACTIONS(2424), - [anon_sym_get] = ACTIONS(2424), - [anon_sym_set] = ACTIONS(2424), - [anon_sym_declare] = ACTIONS(2424), - [anon_sym_public] = ACTIONS(2424), - [anon_sym_private] = ACTIONS(2424), - [anon_sym_protected] = ACTIONS(2424), - [anon_sym_override] = ACTIONS(2424), - [anon_sym_module] = ACTIONS(2424), - [anon_sym_any] = ACTIONS(2424), - [anon_sym_number] = ACTIONS(2424), - [anon_sym_boolean] = ACTIONS(2424), - [anon_sym_string] = ACTIONS(2424), - [anon_sym_symbol] = ACTIONS(2424), - [anon_sym_object] = ACTIONS(2424), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym__call_signature] = STATE(5834), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2411), + [anon_sym_export] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2413), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2413), + [anon_sym_let] = ACTIONS(2413), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2413), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2413), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2413), + [anon_sym_readonly] = ACTIONS(2413), + [anon_sym_get] = ACTIONS(2413), + [anon_sym_set] = ACTIONS(2413), + [anon_sym_declare] = ACTIONS(2413), + [anon_sym_public] = ACTIONS(2413), + [anon_sym_private] = ACTIONS(2413), + [anon_sym_protected] = ACTIONS(2413), + [anon_sym_override] = ACTIONS(2413), + [anon_sym_module] = ACTIONS(2413), + [anon_sym_any] = ACTIONS(2413), + [anon_sym_number] = ACTIONS(2413), + [anon_sym_boolean] = ACTIONS(2413), + [anon_sym_string] = ACTIONS(2413), + [anon_sym_symbol] = ACTIONS(2413), + [anon_sym_object] = ACTIONS(2413), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [769] = { - [sym__call_signature] = STATE(5545), - [sym_formal_parameters] = STATE(3893), - [sym_type_parameters] = STATE(5354), - [sym_identifier] = ACTIONS(2492), - [anon_sym_export] = ACTIONS(2494), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2494), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2494), - [anon_sym_let] = ACTIONS(2494), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_async] = ACTIONS(2494), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(975), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2494), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_static] = ACTIONS(2494), - [anon_sym_readonly] = ACTIONS(2494), - [anon_sym_get] = ACTIONS(2494), - [anon_sym_set] = ACTIONS(2494), - [anon_sym_declare] = ACTIONS(2494), - [anon_sym_public] = ACTIONS(2494), - [anon_sym_private] = ACTIONS(2494), - [anon_sym_protected] = ACTIONS(2494), - [anon_sym_override] = ACTIONS(2494), - [anon_sym_module] = ACTIONS(2494), - [anon_sym_any] = ACTIONS(2494), - [anon_sym_number] = ACTIONS(2494), - [anon_sym_boolean] = ACTIONS(2494), - [anon_sym_string] = ACTIONS(2494), - [anon_sym_symbol] = ACTIONS(2494), - [anon_sym_object] = ACTIONS(2494), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [ts_builtin_sym_end] = ACTIONS(1716), + [sym_identifier] = ACTIONS(1718), + [anon_sym_export] = ACTIONS(1718), + [anon_sym_default] = ACTIONS(1718), + [anon_sym_type] = ACTIONS(1718), + [anon_sym_namespace] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(1716), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_RBRACE] = ACTIONS(1716), + [anon_sym_typeof] = ACTIONS(1718), + [anon_sym_import] = ACTIONS(1718), + [anon_sym_with] = ACTIONS(1718), + [anon_sym_var] = ACTIONS(1718), + [anon_sym_let] = ACTIONS(1718), + [anon_sym_const] = ACTIONS(1718), + [anon_sym_BANG] = ACTIONS(1716), + [anon_sym_else] = ACTIONS(1718), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_switch] = ACTIONS(1718), + [anon_sym_for] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(1716), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_await] = ACTIONS(1718), + [anon_sym_while] = ACTIONS(1718), + [anon_sym_do] = ACTIONS(1718), + [anon_sym_try] = ACTIONS(1718), + [anon_sym_break] = ACTIONS(1718), + [anon_sym_continue] = ACTIONS(1718), + [anon_sym_debugger] = ACTIONS(1718), + [anon_sym_return] = ACTIONS(1718), + [anon_sym_throw] = ACTIONS(1718), + [anon_sym_case] = ACTIONS(1718), + [anon_sym_catch] = ACTIONS(1718), + [anon_sym_finally] = ACTIONS(1718), + [anon_sym_yield] = ACTIONS(1718), + [anon_sym_LBRACK] = ACTIONS(1716), + [anon_sym_class] = ACTIONS(1718), + [anon_sym_async] = ACTIONS(1718), + [anon_sym_function] = ACTIONS(1718), + [anon_sym_new] = ACTIONS(1718), + [anon_sym_using] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_LT] = ACTIONS(1716), + [anon_sym_TILDE] = ACTIONS(1716), + [anon_sym_void] = ACTIONS(1718), + [anon_sym_delete] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1716), + [anon_sym_DQUOTE] = ACTIONS(1716), + [anon_sym_SQUOTE] = ACTIONS(1716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1716), + [sym_number] = ACTIONS(1716), + [sym_private_property_identifier] = ACTIONS(1716), + [sym_this] = ACTIONS(1718), + [sym_super] = ACTIONS(1718), + [sym_true] = ACTIONS(1718), + [sym_false] = ACTIONS(1718), + [sym_null] = ACTIONS(1718), + [sym_undefined] = ACTIONS(1718), + [anon_sym_AT] = ACTIONS(1716), + [anon_sym_static] = ACTIONS(1718), + [anon_sym_readonly] = ACTIONS(1718), + [anon_sym_get] = ACTIONS(1718), + [anon_sym_set] = ACTIONS(1718), + [anon_sym_declare] = ACTIONS(1718), + [anon_sym_public] = ACTIONS(1718), + [anon_sym_private] = ACTIONS(1718), + [anon_sym_protected] = ACTIONS(1718), + [anon_sym_override] = ACTIONS(1718), + [anon_sym_module] = ACTIONS(1718), + [anon_sym_any] = ACTIONS(1718), + [anon_sym_number] = ACTIONS(1718), + [anon_sym_boolean] = ACTIONS(1718), + [anon_sym_string] = ACTIONS(1718), + [anon_sym_symbol] = ACTIONS(1718), + [anon_sym_object] = ACTIONS(1718), + [anon_sym_abstract] = ACTIONS(1718), + [anon_sym_interface] = ACTIONS(1718), + [anon_sym_enum] = ACTIONS(1718), [sym_html_comment] = ACTIONS(5), }, [770] = { - [sym__call_signature] = STATE(5545), - [sym_formal_parameters] = STATE(3893), - [sym_type_parameters] = STATE(5354), - [sym_identifier] = ACTIONS(2492), - [anon_sym_export] = ACTIONS(2494), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2494), - [anon_sym_EQ] = ACTIONS(969), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2494), - [anon_sym_let] = ACTIONS(2494), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_async] = ACTIONS(2494), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(975), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2494), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_static] = ACTIONS(2494), - [anon_sym_readonly] = ACTIONS(2494), - [anon_sym_get] = ACTIONS(2494), - [anon_sym_set] = ACTIONS(2494), - [anon_sym_declare] = ACTIONS(2494), - [anon_sym_public] = ACTIONS(2494), - [anon_sym_private] = ACTIONS(2494), - [anon_sym_protected] = ACTIONS(2494), - [anon_sym_override] = ACTIONS(2494), - [anon_sym_module] = ACTIONS(2494), - [anon_sym_any] = ACTIONS(2494), - [anon_sym_number] = ACTIONS(2494), - [anon_sym_boolean] = ACTIONS(2494), - [anon_sym_string] = ACTIONS(2494), - [anon_sym_symbol] = ACTIONS(2494), - [anon_sym_object] = ACTIONS(2494), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_finally_clause] = STATE(826), + [ts_builtin_sym_end] = ACTIONS(2479), + [sym_identifier] = ACTIONS(2481), + [anon_sym_export] = ACTIONS(2481), + [anon_sym_default] = ACTIONS(2481), + [anon_sym_type] = ACTIONS(2481), + [anon_sym_namespace] = ACTIONS(2481), + [anon_sym_LBRACE] = ACTIONS(2479), + [anon_sym_RBRACE] = ACTIONS(2479), + [anon_sym_typeof] = ACTIONS(2481), + [anon_sym_import] = ACTIONS(2481), + [anon_sym_with] = ACTIONS(2481), + [anon_sym_var] = ACTIONS(2481), + [anon_sym_let] = ACTIONS(2481), + [anon_sym_const] = ACTIONS(2481), + [anon_sym_BANG] = ACTIONS(2479), + [anon_sym_else] = ACTIONS(2481), + [anon_sym_if] = ACTIONS(2481), + [anon_sym_switch] = ACTIONS(2481), + [anon_sym_for] = ACTIONS(2481), + [anon_sym_LPAREN] = ACTIONS(2479), + [anon_sym_SEMI] = ACTIONS(2479), + [anon_sym_await] = ACTIONS(2481), + [anon_sym_while] = ACTIONS(2481), + [anon_sym_do] = ACTIONS(2481), + [anon_sym_try] = ACTIONS(2481), + [anon_sym_break] = ACTIONS(2481), + [anon_sym_continue] = ACTIONS(2481), + [anon_sym_debugger] = ACTIONS(2481), + [anon_sym_return] = ACTIONS(2481), + [anon_sym_throw] = ACTIONS(2481), + [anon_sym_case] = ACTIONS(2481), + [anon_sym_finally] = ACTIONS(2461), + [anon_sym_yield] = ACTIONS(2481), + [anon_sym_LBRACK] = ACTIONS(2479), + [anon_sym_class] = ACTIONS(2481), + [anon_sym_async] = ACTIONS(2481), + [anon_sym_function] = ACTIONS(2481), + [anon_sym_new] = ACTIONS(2481), + [anon_sym_using] = ACTIONS(2481), + [anon_sym_PLUS] = ACTIONS(2481), + [anon_sym_DASH] = ACTIONS(2481), + [anon_sym_SLASH] = ACTIONS(2481), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_TILDE] = ACTIONS(2479), + [anon_sym_void] = ACTIONS(2481), + [anon_sym_delete] = ACTIONS(2481), + [anon_sym_PLUS_PLUS] = ACTIONS(2479), + [anon_sym_DASH_DASH] = ACTIONS(2479), + [anon_sym_DQUOTE] = ACTIONS(2479), + [anon_sym_SQUOTE] = ACTIONS(2479), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2479), + [sym_number] = ACTIONS(2479), + [sym_private_property_identifier] = ACTIONS(2479), + [sym_this] = ACTIONS(2481), + [sym_super] = ACTIONS(2481), + [sym_true] = ACTIONS(2481), + [sym_false] = ACTIONS(2481), + [sym_null] = ACTIONS(2481), + [sym_undefined] = ACTIONS(2481), + [anon_sym_AT] = ACTIONS(2479), + [anon_sym_static] = ACTIONS(2481), + [anon_sym_readonly] = ACTIONS(2481), + [anon_sym_get] = ACTIONS(2481), + [anon_sym_set] = ACTIONS(2481), + [anon_sym_declare] = ACTIONS(2481), + [anon_sym_public] = ACTIONS(2481), + [anon_sym_private] = ACTIONS(2481), + [anon_sym_protected] = ACTIONS(2481), + [anon_sym_override] = ACTIONS(2481), + [anon_sym_module] = ACTIONS(2481), + [anon_sym_any] = ACTIONS(2481), + [anon_sym_number] = ACTIONS(2481), + [anon_sym_boolean] = ACTIONS(2481), + [anon_sym_string] = ACTIONS(2481), + [anon_sym_symbol] = ACTIONS(2481), + [anon_sym_object] = ACTIONS(2481), + [anon_sym_abstract] = ACTIONS(2481), + [anon_sym_interface] = ACTIONS(2481), + [anon_sym_enum] = ACTIONS(2481), [sym_html_comment] = ACTIONS(5), }, [771] = { - [sym_finally_clause] = STATE(842), - [ts_builtin_sym_end] = ACTIONS(2496), - [sym_identifier] = ACTIONS(2498), - [anon_sym_export] = ACTIONS(2498), - [anon_sym_default] = ACTIONS(2498), - [anon_sym_type] = ACTIONS(2498), - [anon_sym_namespace] = ACTIONS(2498), - [anon_sym_LBRACE] = ACTIONS(2496), - [anon_sym_RBRACE] = ACTIONS(2496), - [anon_sym_typeof] = ACTIONS(2498), - [anon_sym_import] = ACTIONS(2498), - [anon_sym_with] = ACTIONS(2498), - [anon_sym_var] = ACTIONS(2498), - [anon_sym_let] = ACTIONS(2498), - [anon_sym_const] = ACTIONS(2498), - [anon_sym_BANG] = ACTIONS(2496), - [anon_sym_else] = ACTIONS(2498), - [anon_sym_if] = ACTIONS(2498), - [anon_sym_switch] = ACTIONS(2498), - [anon_sym_for] = ACTIONS(2498), - [anon_sym_LPAREN] = ACTIONS(2496), - [anon_sym_SEMI] = ACTIONS(2496), - [anon_sym_await] = ACTIONS(2498), - [anon_sym_while] = ACTIONS(2498), - [anon_sym_do] = ACTIONS(2498), - [anon_sym_try] = ACTIONS(2498), - [anon_sym_break] = ACTIONS(2498), - [anon_sym_continue] = ACTIONS(2498), - [anon_sym_debugger] = ACTIONS(2498), - [anon_sym_return] = ACTIONS(2498), - [anon_sym_throw] = ACTIONS(2498), - [anon_sym_case] = ACTIONS(2498), - [anon_sym_finally] = ACTIONS(2460), - [anon_sym_yield] = ACTIONS(2498), - [anon_sym_LBRACK] = ACTIONS(2496), - [sym_glimmer_opening_tag] = ACTIONS(2496), - [anon_sym_class] = ACTIONS(2498), - [anon_sym_async] = ACTIONS(2498), - [anon_sym_function] = ACTIONS(2498), - [anon_sym_new] = ACTIONS(2498), - [anon_sym_using] = ACTIONS(2498), - [anon_sym_PLUS] = ACTIONS(2498), - [anon_sym_DASH] = ACTIONS(2498), - [anon_sym_SLASH] = ACTIONS(2498), - [anon_sym_LT] = ACTIONS(2498), - [anon_sym_TILDE] = ACTIONS(2496), - [anon_sym_void] = ACTIONS(2498), - [anon_sym_delete] = ACTIONS(2498), - [anon_sym_PLUS_PLUS] = ACTIONS(2496), - [anon_sym_DASH_DASH] = ACTIONS(2496), - [anon_sym_DQUOTE] = ACTIONS(2496), - [anon_sym_SQUOTE] = ACTIONS(2496), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2496), - [sym_number] = ACTIONS(2496), - [sym_private_property_identifier] = ACTIONS(2496), - [sym_this] = ACTIONS(2498), - [sym_super] = ACTIONS(2498), - [sym_true] = ACTIONS(2498), - [sym_false] = ACTIONS(2498), - [sym_null] = ACTIONS(2498), - [sym_undefined] = ACTIONS(2498), - [anon_sym_AT] = ACTIONS(2496), - [anon_sym_static] = ACTIONS(2498), - [anon_sym_readonly] = ACTIONS(2498), - [anon_sym_get] = ACTIONS(2498), - [anon_sym_set] = ACTIONS(2498), - [anon_sym_declare] = ACTIONS(2498), - [anon_sym_public] = ACTIONS(2498), - [anon_sym_private] = ACTIONS(2498), - [anon_sym_protected] = ACTIONS(2498), - [anon_sym_override] = ACTIONS(2498), - [anon_sym_module] = ACTIONS(2498), - [anon_sym_any] = ACTIONS(2498), - [anon_sym_number] = ACTIONS(2498), - [anon_sym_boolean] = ACTIONS(2498), - [anon_sym_string] = ACTIONS(2498), - [anon_sym_symbol] = ACTIONS(2498), - [anon_sym_object] = ACTIONS(2498), - [anon_sym_abstract] = ACTIONS(2498), - [anon_sym_interface] = ACTIONS(2498), - [anon_sym_enum] = ACTIONS(2498), + [sym__call_signature] = STATE(5834), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2411), + [anon_sym_export] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2413), + [anon_sym_EQ] = ACTIONS(980), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2413), + [anon_sym_let] = ACTIONS(2413), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2413), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2413), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2413), + [anon_sym_readonly] = ACTIONS(2413), + [anon_sym_get] = ACTIONS(2413), + [anon_sym_set] = ACTIONS(2413), + [anon_sym_declare] = ACTIONS(2413), + [anon_sym_public] = ACTIONS(2413), + [anon_sym_private] = ACTIONS(2413), + [anon_sym_protected] = ACTIONS(2413), + [anon_sym_override] = ACTIONS(2413), + [anon_sym_module] = ACTIONS(2413), + [anon_sym_any] = ACTIONS(2413), + [anon_sym_number] = ACTIONS(2413), + [anon_sym_boolean] = ACTIONS(2413), + [anon_sym_string] = ACTIONS(2413), + [anon_sym_symbol] = ACTIONS(2413), + [anon_sym_object] = ACTIONS(2413), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [772] = { - [sym__call_signature] = STATE(5493), - [sym_formal_parameters] = STATE(3893), - [sym_type_parameters] = STATE(5354), - [sym_identifier] = ACTIONS(2464), - [anon_sym_export] = ACTIONS(2466), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2466), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2466), - [anon_sym_let] = ACTIONS(2466), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_RBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_async] = ACTIONS(2466), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(913), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2466), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_static] = ACTIONS(2466), - [anon_sym_readonly] = ACTIONS(2466), - [anon_sym_get] = ACTIONS(2466), - [anon_sym_set] = ACTIONS(2466), - [anon_sym_declare] = ACTIONS(2466), - [anon_sym_public] = ACTIONS(2466), - [anon_sym_private] = ACTIONS(2466), - [anon_sym_protected] = ACTIONS(2466), - [anon_sym_override] = ACTIONS(2466), - [anon_sym_module] = ACTIONS(2466), - [anon_sym_any] = ACTIONS(2466), - [anon_sym_number] = ACTIONS(2466), - [anon_sym_boolean] = ACTIONS(2466), - [anon_sym_string] = ACTIONS(2466), - [anon_sym_symbol] = ACTIONS(2466), - [anon_sym_object] = ACTIONS(2466), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym__call_signature] = STATE(5834), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2411), + [anon_sym_export] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2413), + [anon_sym_EQ] = ACTIONS(978), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2413), + [anon_sym_let] = ACTIONS(2413), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2413), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2413), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2413), + [anon_sym_readonly] = ACTIONS(2413), + [anon_sym_get] = ACTIONS(2413), + [anon_sym_set] = ACTIONS(2413), + [anon_sym_declare] = ACTIONS(2413), + [anon_sym_public] = ACTIONS(2413), + [anon_sym_private] = ACTIONS(2413), + [anon_sym_protected] = ACTIONS(2413), + [anon_sym_override] = ACTIONS(2413), + [anon_sym_module] = ACTIONS(2413), + [anon_sym_any] = ACTIONS(2413), + [anon_sym_number] = ACTIONS(2413), + [anon_sym_boolean] = ACTIONS(2413), + [anon_sym_string] = ACTIONS(2413), + [anon_sym_symbol] = ACTIONS(2413), + [anon_sym_object] = ACTIONS(2413), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [773] = { - [ts_builtin_sym_end] = ACTIONS(1799), - [sym_identifier] = ACTIONS(1801), - [anon_sym_export] = ACTIONS(1801), - [anon_sym_default] = ACTIONS(1801), - [anon_sym_type] = ACTIONS(1801), - [anon_sym_namespace] = ACTIONS(1801), - [anon_sym_LBRACE] = ACTIONS(1799), - [anon_sym_RBRACE] = ACTIONS(1799), - [anon_sym_typeof] = ACTIONS(1801), - [anon_sym_import] = ACTIONS(1801), - [anon_sym_with] = ACTIONS(1801), - [anon_sym_var] = ACTIONS(1801), - [anon_sym_let] = ACTIONS(1801), - [anon_sym_const] = ACTIONS(1801), - [anon_sym_BANG] = ACTIONS(1799), - [anon_sym_else] = ACTIONS(1801), - [anon_sym_if] = ACTIONS(1801), - [anon_sym_switch] = ACTIONS(1801), - [anon_sym_for] = ACTIONS(1801), - [anon_sym_LPAREN] = ACTIONS(1799), - [anon_sym_SEMI] = ACTIONS(1799), - [anon_sym_await] = ACTIONS(1801), - [anon_sym_while] = ACTIONS(1801), - [anon_sym_do] = ACTIONS(1801), - [anon_sym_try] = ACTIONS(1801), - [anon_sym_break] = ACTIONS(1801), - [anon_sym_continue] = ACTIONS(1801), - [anon_sym_debugger] = ACTIONS(1801), - [anon_sym_return] = ACTIONS(1801), - [anon_sym_throw] = ACTIONS(1801), - [anon_sym_case] = ACTIONS(1801), - [anon_sym_yield] = ACTIONS(1801), - [anon_sym_LBRACK] = ACTIONS(1799), - [sym_glimmer_opening_tag] = ACTIONS(1799), - [anon_sym_class] = ACTIONS(1801), - [anon_sym_async] = ACTIONS(1801), - [anon_sym_function] = ACTIONS(1801), - [anon_sym_new] = ACTIONS(1801), - [anon_sym_using] = ACTIONS(1801), - [anon_sym_PLUS] = ACTIONS(1801), - [anon_sym_DASH] = ACTIONS(1801), - [anon_sym_SLASH] = ACTIONS(1801), - [anon_sym_LT] = ACTIONS(1801), - [anon_sym_TILDE] = ACTIONS(1799), - [anon_sym_void] = ACTIONS(1801), - [anon_sym_delete] = ACTIONS(1801), - [anon_sym_PLUS_PLUS] = ACTIONS(1799), - [anon_sym_DASH_DASH] = ACTIONS(1799), - [anon_sym_DQUOTE] = ACTIONS(1799), - [anon_sym_SQUOTE] = ACTIONS(1799), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1799), - [sym_number] = ACTIONS(1799), - [sym_private_property_identifier] = ACTIONS(1799), - [sym_this] = ACTIONS(1801), - [sym_super] = ACTIONS(1801), - [sym_true] = ACTIONS(1801), - [sym_false] = ACTIONS(1801), - [sym_null] = ACTIONS(1801), - [sym_undefined] = ACTIONS(1801), - [anon_sym_AT] = ACTIONS(1799), - [anon_sym_static] = ACTIONS(1801), - [anon_sym_readonly] = ACTIONS(1801), - [anon_sym_get] = ACTIONS(1801), - [anon_sym_set] = ACTIONS(1801), - [anon_sym_declare] = ACTIONS(1801), - [anon_sym_public] = ACTIONS(1801), - [anon_sym_private] = ACTIONS(1801), - [anon_sym_protected] = ACTIONS(1801), - [anon_sym_override] = ACTIONS(1801), - [anon_sym_module] = ACTIONS(1801), - [anon_sym_any] = ACTIONS(1801), - [anon_sym_number] = ACTIONS(1801), - [anon_sym_boolean] = ACTIONS(1801), - [anon_sym_string] = ACTIONS(1801), - [anon_sym_symbol] = ACTIONS(1801), - [anon_sym_object] = ACTIONS(1801), - [anon_sym_abstract] = ACTIONS(1801), - [anon_sym_interface] = ACTIONS(1801), - [anon_sym_enum] = ACTIONS(1801), - [sym__automatic_semicolon] = ACTIONS(1807), + [sym__call_signature] = STATE(5834), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2411), + [anon_sym_export] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2413), + [anon_sym_EQ] = ACTIONS(974), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2413), + [anon_sym_let] = ACTIONS(2413), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2413), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2413), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2413), + [anon_sym_readonly] = ACTIONS(2413), + [anon_sym_get] = ACTIONS(2413), + [anon_sym_set] = ACTIONS(2413), + [anon_sym_declare] = ACTIONS(2413), + [anon_sym_public] = ACTIONS(2413), + [anon_sym_private] = ACTIONS(2413), + [anon_sym_protected] = ACTIONS(2413), + [anon_sym_override] = ACTIONS(2413), + [anon_sym_module] = ACTIONS(2413), + [anon_sym_any] = ACTIONS(2413), + [anon_sym_number] = ACTIONS(2413), + [anon_sym_boolean] = ACTIONS(2413), + [anon_sym_string] = ACTIONS(2413), + [anon_sym_symbol] = ACTIONS(2413), + [anon_sym_object] = ACTIONS(2413), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [774] = { - [ts_builtin_sym_end] = ACTIONS(2500), - [sym_identifier] = ACTIONS(2502), - [anon_sym_export] = ACTIONS(2502), - [anon_sym_default] = ACTIONS(2502), - [anon_sym_type] = ACTIONS(2502), - [anon_sym_namespace] = ACTIONS(2502), - [anon_sym_LBRACE] = ACTIONS(2500), - [anon_sym_RBRACE] = ACTIONS(2500), - [anon_sym_typeof] = ACTIONS(2502), - [anon_sym_import] = ACTIONS(2502), - [anon_sym_with] = ACTIONS(2502), - [anon_sym_var] = ACTIONS(2502), - [anon_sym_let] = ACTIONS(2502), - [anon_sym_const] = ACTIONS(2502), - [anon_sym_BANG] = ACTIONS(2500), - [anon_sym_else] = ACTIONS(2502), - [anon_sym_if] = ACTIONS(2502), - [anon_sym_switch] = ACTIONS(2502), - [anon_sym_for] = ACTIONS(2502), - [anon_sym_LPAREN] = ACTIONS(2500), - [anon_sym_SEMI] = ACTIONS(2500), - [anon_sym_await] = ACTIONS(2502), - [anon_sym_while] = ACTIONS(2502), - [anon_sym_do] = ACTIONS(2502), - [anon_sym_try] = ACTIONS(2502), - [anon_sym_break] = ACTIONS(2502), - [anon_sym_continue] = ACTIONS(2502), - [anon_sym_debugger] = ACTIONS(2502), - [anon_sym_return] = ACTIONS(2502), - [anon_sym_throw] = ACTIONS(2502), - [anon_sym_case] = ACTIONS(2502), - [anon_sym_yield] = ACTIONS(2502), - [anon_sym_LBRACK] = ACTIONS(2500), - [sym_glimmer_opening_tag] = ACTIONS(2500), - [anon_sym_class] = ACTIONS(2502), - [anon_sym_async] = ACTIONS(2502), - [anon_sym_function] = ACTIONS(2502), - [anon_sym_new] = ACTIONS(2502), - [anon_sym_using] = ACTIONS(2502), - [anon_sym_PLUS] = ACTIONS(2502), - [anon_sym_DASH] = ACTIONS(2502), - [anon_sym_SLASH] = ACTIONS(2502), - [anon_sym_LT] = ACTIONS(2502), - [anon_sym_TILDE] = ACTIONS(2500), - [anon_sym_void] = ACTIONS(2502), - [anon_sym_delete] = ACTIONS(2502), - [anon_sym_PLUS_PLUS] = ACTIONS(2500), - [anon_sym_DASH_DASH] = ACTIONS(2500), - [anon_sym_DQUOTE] = ACTIONS(2500), - [anon_sym_SQUOTE] = ACTIONS(2500), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2500), - [sym_number] = ACTIONS(2500), - [sym_private_property_identifier] = ACTIONS(2500), - [sym_this] = ACTIONS(2502), - [sym_super] = ACTIONS(2502), - [sym_true] = ACTIONS(2502), - [sym_false] = ACTIONS(2502), - [sym_null] = ACTIONS(2502), - [sym_undefined] = ACTIONS(2502), - [anon_sym_AT] = ACTIONS(2500), - [anon_sym_static] = ACTIONS(2502), - [anon_sym_readonly] = ACTIONS(2502), - [anon_sym_get] = ACTIONS(2502), - [anon_sym_set] = ACTIONS(2502), - [anon_sym_declare] = ACTIONS(2502), - [anon_sym_public] = ACTIONS(2502), - [anon_sym_private] = ACTIONS(2502), - [anon_sym_protected] = ACTIONS(2502), - [anon_sym_override] = ACTIONS(2502), - [anon_sym_module] = ACTIONS(2502), - [anon_sym_any] = ACTIONS(2502), - [anon_sym_number] = ACTIONS(2502), - [anon_sym_boolean] = ACTIONS(2502), - [anon_sym_string] = ACTIONS(2502), - [anon_sym_symbol] = ACTIONS(2502), - [anon_sym_object] = ACTIONS(2502), - [anon_sym_abstract] = ACTIONS(2502), - [anon_sym_interface] = ACTIONS(2502), - [anon_sym_enum] = ACTIONS(2502), - [sym__automatic_semicolon] = ACTIONS(2500), + [sym__call_signature] = STATE(5834), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2411), + [anon_sym_export] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2413), + [anon_sym_EQ] = ACTIONS(1036), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2413), + [anon_sym_let] = ACTIONS(2413), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2413), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2413), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2413), + [anon_sym_readonly] = ACTIONS(2413), + [anon_sym_get] = ACTIONS(2413), + [anon_sym_set] = ACTIONS(2413), + [anon_sym_declare] = ACTIONS(2413), + [anon_sym_public] = ACTIONS(2413), + [anon_sym_private] = ACTIONS(2413), + [anon_sym_protected] = ACTIONS(2413), + [anon_sym_override] = ACTIONS(2413), + [anon_sym_module] = ACTIONS(2413), + [anon_sym_any] = ACTIONS(2413), + [anon_sym_number] = ACTIONS(2413), + [anon_sym_boolean] = ACTIONS(2413), + [anon_sym_string] = ACTIONS(2413), + [anon_sym_symbol] = ACTIONS(2413), + [anon_sym_object] = ACTIONS(2413), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [775] = { - [sym__call_signature] = STATE(5844), - [sym_formal_parameters] = STATE(3893), - [sym_type_parameters] = STATE(5354), - [sym_identifier] = ACTIONS(2422), - [anon_sym_export] = ACTIONS(2424), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2424), - [anon_sym_EQ] = ACTIONS(981), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2424), - [anon_sym_let] = ACTIONS(2424), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_async] = ACTIONS(2424), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(155), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2424), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_static] = ACTIONS(2424), - [anon_sym_readonly] = ACTIONS(2424), - [anon_sym_get] = ACTIONS(2424), - [anon_sym_set] = ACTIONS(2424), - [anon_sym_declare] = ACTIONS(2424), - [anon_sym_public] = ACTIONS(2424), - [anon_sym_private] = ACTIONS(2424), - [anon_sym_protected] = ACTIONS(2424), - [anon_sym_override] = ACTIONS(2424), - [anon_sym_module] = ACTIONS(2424), - [anon_sym_any] = ACTIONS(2424), - [anon_sym_number] = ACTIONS(2424), - [anon_sym_boolean] = ACTIONS(2424), - [anon_sym_string] = ACTIONS(2424), - [anon_sym_symbol] = ACTIONS(2424), - [anon_sym_object] = ACTIONS(2424), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym__call_signature] = STATE(5834), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2411), + [anon_sym_export] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2413), + [anon_sym_EQ] = ACTIONS(1040), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2413), + [anon_sym_let] = ACTIONS(2413), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2413), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2413), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2413), + [anon_sym_readonly] = ACTIONS(2413), + [anon_sym_get] = ACTIONS(2413), + [anon_sym_set] = ACTIONS(2413), + [anon_sym_declare] = ACTIONS(2413), + [anon_sym_public] = ACTIONS(2413), + [anon_sym_private] = ACTIONS(2413), + [anon_sym_protected] = ACTIONS(2413), + [anon_sym_override] = ACTIONS(2413), + [anon_sym_module] = ACTIONS(2413), + [anon_sym_any] = ACTIONS(2413), + [anon_sym_number] = ACTIONS(2413), + [anon_sym_boolean] = ACTIONS(2413), + [anon_sym_string] = ACTIONS(2413), + [anon_sym_symbol] = ACTIONS(2413), + [anon_sym_object] = ACTIONS(2413), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [776] = { - [ts_builtin_sym_end] = ACTIONS(1769), - [sym_identifier] = ACTIONS(1771), - [anon_sym_export] = ACTIONS(1771), - [anon_sym_default] = ACTIONS(1771), - [anon_sym_type] = ACTIONS(1771), - [anon_sym_namespace] = ACTIONS(1771), - [anon_sym_LBRACE] = ACTIONS(1769), - [anon_sym_RBRACE] = ACTIONS(1769), - [anon_sym_typeof] = ACTIONS(1771), - [anon_sym_import] = ACTIONS(1771), - [anon_sym_with] = ACTIONS(1771), - [anon_sym_var] = ACTIONS(1771), - [anon_sym_let] = ACTIONS(1771), - [anon_sym_const] = ACTIONS(1771), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_else] = ACTIONS(1771), - [anon_sym_if] = ACTIONS(1771), - [anon_sym_switch] = ACTIONS(1771), - [anon_sym_for] = ACTIONS(1771), - [anon_sym_LPAREN] = ACTIONS(1769), - [anon_sym_SEMI] = ACTIONS(1769), - [anon_sym_await] = ACTIONS(1771), - [anon_sym_while] = ACTIONS(1771), - [anon_sym_do] = ACTIONS(1771), - [anon_sym_try] = ACTIONS(1771), - [anon_sym_break] = ACTIONS(1771), - [anon_sym_continue] = ACTIONS(1771), - [anon_sym_debugger] = ACTIONS(1771), - [anon_sym_return] = ACTIONS(1771), - [anon_sym_throw] = ACTIONS(1771), - [anon_sym_case] = ACTIONS(1771), - [anon_sym_yield] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1769), - [sym_glimmer_opening_tag] = ACTIONS(1769), - [anon_sym_class] = ACTIONS(1771), - [anon_sym_async] = ACTIONS(1771), - [anon_sym_function] = ACTIONS(1771), - [anon_sym_new] = ACTIONS(1771), - [anon_sym_using] = ACTIONS(1771), - [anon_sym_PLUS] = ACTIONS(1771), - [anon_sym_DASH] = ACTIONS(1771), - [anon_sym_SLASH] = ACTIONS(1771), - [anon_sym_LT] = ACTIONS(1771), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_void] = ACTIONS(1771), - [anon_sym_delete] = ACTIONS(1771), - [anon_sym_PLUS_PLUS] = ACTIONS(1769), - [anon_sym_DASH_DASH] = ACTIONS(1769), - [anon_sym_DQUOTE] = ACTIONS(1769), - [anon_sym_SQUOTE] = ACTIONS(1769), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1769), - [sym_number] = ACTIONS(1769), - [sym_private_property_identifier] = ACTIONS(1769), - [sym_this] = ACTIONS(1771), - [sym_super] = ACTIONS(1771), - [sym_true] = ACTIONS(1771), - [sym_false] = ACTIONS(1771), - [sym_null] = ACTIONS(1771), - [sym_undefined] = ACTIONS(1771), - [anon_sym_AT] = ACTIONS(1769), - [anon_sym_static] = ACTIONS(1771), - [anon_sym_readonly] = ACTIONS(1771), - [anon_sym_get] = ACTIONS(1771), - [anon_sym_set] = ACTIONS(1771), - [anon_sym_declare] = ACTIONS(1771), - [anon_sym_public] = ACTIONS(1771), - [anon_sym_private] = ACTIONS(1771), - [anon_sym_protected] = ACTIONS(1771), - [anon_sym_override] = ACTIONS(1771), - [anon_sym_module] = ACTIONS(1771), - [anon_sym_any] = ACTIONS(1771), - [anon_sym_number] = ACTIONS(1771), - [anon_sym_boolean] = ACTIONS(1771), - [anon_sym_string] = ACTIONS(1771), - [anon_sym_symbol] = ACTIONS(1771), - [anon_sym_object] = ACTIONS(1771), - [anon_sym_abstract] = ACTIONS(1771), - [anon_sym_interface] = ACTIONS(1771), - [anon_sym_enum] = ACTIONS(1771), - [sym__automatic_semicolon] = ACTIONS(1777), + [sym__call_signature] = STATE(5834), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2411), + [anon_sym_export] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2413), + [anon_sym_EQ] = ACTIONS(1044), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2413), + [anon_sym_let] = ACTIONS(2413), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2413), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2413), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2413), + [anon_sym_readonly] = ACTIONS(2413), + [anon_sym_get] = ACTIONS(2413), + [anon_sym_set] = ACTIONS(2413), + [anon_sym_declare] = ACTIONS(2413), + [anon_sym_public] = ACTIONS(2413), + [anon_sym_private] = ACTIONS(2413), + [anon_sym_protected] = ACTIONS(2413), + [anon_sym_override] = ACTIONS(2413), + [anon_sym_module] = ACTIONS(2413), + [anon_sym_any] = ACTIONS(2413), + [anon_sym_number] = ACTIONS(2413), + [anon_sym_boolean] = ACTIONS(2413), + [anon_sym_string] = ACTIONS(2413), + [anon_sym_symbol] = ACTIONS(2413), + [anon_sym_object] = ACTIONS(2413), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [777] = { - [ts_builtin_sym_end] = ACTIONS(1859), - [sym_identifier] = ACTIONS(1861), - [anon_sym_export] = ACTIONS(1861), - [anon_sym_default] = ACTIONS(1861), - [anon_sym_type] = ACTIONS(1861), - [anon_sym_namespace] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1859), - [anon_sym_RBRACE] = ACTIONS(1859), - [anon_sym_typeof] = ACTIONS(1861), - [anon_sym_import] = ACTIONS(1861), - [anon_sym_with] = ACTIONS(1861), - [anon_sym_var] = ACTIONS(1861), - [anon_sym_let] = ACTIONS(1861), - [anon_sym_const] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1859), - [anon_sym_else] = ACTIONS(1861), - [anon_sym_if] = ACTIONS(1861), - [anon_sym_switch] = ACTIONS(1861), - [anon_sym_for] = ACTIONS(1861), - [anon_sym_LPAREN] = ACTIONS(1859), - [anon_sym_SEMI] = ACTIONS(1859), - [anon_sym_await] = ACTIONS(1861), - [anon_sym_while] = ACTIONS(1861), - [anon_sym_do] = ACTIONS(1861), - [anon_sym_try] = ACTIONS(1861), - [anon_sym_break] = ACTIONS(1861), - [anon_sym_continue] = ACTIONS(1861), - [anon_sym_debugger] = ACTIONS(1861), - [anon_sym_return] = ACTIONS(1861), - [anon_sym_throw] = ACTIONS(1861), - [anon_sym_case] = ACTIONS(1861), - [anon_sym_yield] = ACTIONS(1861), - [anon_sym_LBRACK] = ACTIONS(1859), - [sym_glimmer_opening_tag] = ACTIONS(1859), - [anon_sym_class] = ACTIONS(1861), - [anon_sym_async] = ACTIONS(1861), - [anon_sym_function] = ACTIONS(1861), - [anon_sym_new] = ACTIONS(1861), - [anon_sym_using] = ACTIONS(1861), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_SLASH] = ACTIONS(1861), - [anon_sym_LT] = ACTIONS(1861), - [anon_sym_TILDE] = ACTIONS(1859), - [anon_sym_void] = ACTIONS(1861), - [anon_sym_delete] = ACTIONS(1861), - [anon_sym_PLUS_PLUS] = ACTIONS(1859), - [anon_sym_DASH_DASH] = ACTIONS(1859), - [anon_sym_DQUOTE] = ACTIONS(1859), - [anon_sym_SQUOTE] = ACTIONS(1859), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1859), - [sym_number] = ACTIONS(1859), - [sym_private_property_identifier] = ACTIONS(1859), - [sym_this] = ACTIONS(1861), - [sym_super] = ACTIONS(1861), - [sym_true] = ACTIONS(1861), - [sym_false] = ACTIONS(1861), - [sym_null] = ACTIONS(1861), - [sym_undefined] = ACTIONS(1861), - [anon_sym_AT] = ACTIONS(1859), - [anon_sym_static] = ACTIONS(1861), - [anon_sym_readonly] = ACTIONS(1861), - [anon_sym_get] = ACTIONS(1861), - [anon_sym_set] = ACTIONS(1861), - [anon_sym_declare] = ACTIONS(1861), - [anon_sym_public] = ACTIONS(1861), - [anon_sym_private] = ACTIONS(1861), - [anon_sym_protected] = ACTIONS(1861), - [anon_sym_override] = ACTIONS(1861), - [anon_sym_module] = ACTIONS(1861), - [anon_sym_any] = ACTIONS(1861), - [anon_sym_number] = ACTIONS(1861), - [anon_sym_boolean] = ACTIONS(1861), - [anon_sym_string] = ACTIONS(1861), - [anon_sym_symbol] = ACTIONS(1861), - [anon_sym_object] = ACTIONS(1861), - [anon_sym_abstract] = ACTIONS(1861), - [anon_sym_interface] = ACTIONS(1861), - [anon_sym_enum] = ACTIONS(1861), - [sym__automatic_semicolon] = ACTIONS(1867), + [sym__call_signature] = STATE(5834), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2411), + [anon_sym_export] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2413), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2413), + [anon_sym_let] = ACTIONS(2413), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2413), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2413), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2413), + [anon_sym_readonly] = ACTIONS(2413), + [anon_sym_get] = ACTIONS(2413), + [anon_sym_set] = ACTIONS(2413), + [anon_sym_declare] = ACTIONS(2413), + [anon_sym_public] = ACTIONS(2413), + [anon_sym_private] = ACTIONS(2413), + [anon_sym_protected] = ACTIONS(2413), + [anon_sym_override] = ACTIONS(2413), + [anon_sym_module] = ACTIONS(2413), + [anon_sym_any] = ACTIONS(2413), + [anon_sym_number] = ACTIONS(2413), + [anon_sym_boolean] = ACTIONS(2413), + [anon_sym_string] = ACTIONS(2413), + [anon_sym_symbol] = ACTIONS(2413), + [anon_sym_object] = ACTIONS(2413), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [778] = { - [ts_builtin_sym_end] = ACTIONS(1733), - [sym_identifier] = ACTIONS(1735), - [anon_sym_export] = ACTIONS(1735), - [anon_sym_default] = ACTIONS(1735), - [anon_sym_type] = ACTIONS(1735), - [anon_sym_namespace] = ACTIONS(1735), - [anon_sym_LBRACE] = ACTIONS(1733), - [anon_sym_RBRACE] = ACTIONS(1733), - [anon_sym_typeof] = ACTIONS(1735), - [anon_sym_import] = ACTIONS(1735), - [anon_sym_with] = ACTIONS(1735), - [anon_sym_var] = ACTIONS(1735), - [anon_sym_let] = ACTIONS(1735), - [anon_sym_const] = ACTIONS(1735), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_else] = ACTIONS(1735), - [anon_sym_if] = ACTIONS(1735), - [anon_sym_switch] = ACTIONS(1735), - [anon_sym_for] = ACTIONS(1735), - [anon_sym_LPAREN] = ACTIONS(1733), - [anon_sym_SEMI] = ACTIONS(1733), - [anon_sym_await] = ACTIONS(1735), - [anon_sym_while] = ACTIONS(1735), - [anon_sym_do] = ACTIONS(1735), - [anon_sym_try] = 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_case] = ACTIONS(1735), - [anon_sym_yield] = ACTIONS(1735), - [anon_sym_LBRACK] = ACTIONS(1733), - [sym_glimmer_opening_tag] = ACTIONS(1733), - [anon_sym_class] = ACTIONS(1735), - [anon_sym_async] = ACTIONS(1735), - [anon_sym_function] = ACTIONS(1735), - [anon_sym_new] = ACTIONS(1735), - [anon_sym_using] = ACTIONS(1735), - [anon_sym_PLUS] = ACTIONS(1735), - [anon_sym_DASH] = ACTIONS(1735), - [anon_sym_SLASH] = ACTIONS(1735), - [anon_sym_LT] = 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(5), - [anon_sym_BQUOTE] = ACTIONS(1733), - [sym_number] = ACTIONS(1733), - [sym_private_property_identifier] = 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_readonly] = 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_override] = 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_object] = ACTIONS(1735), - [anon_sym_abstract] = ACTIONS(1735), - [anon_sym_interface] = ACTIONS(1735), - [anon_sym_enum] = ACTIONS(1735), - [sym__automatic_semicolon] = ACTIONS(1741), + [sym__call_signature] = STATE(5834), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2411), + [anon_sym_export] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2413), + [anon_sym_EQ] = ACTIONS(1038), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2413), + [anon_sym_let] = ACTIONS(2413), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2413), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2413), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2413), + [anon_sym_readonly] = ACTIONS(2413), + [anon_sym_get] = ACTIONS(2413), + [anon_sym_set] = ACTIONS(2413), + [anon_sym_declare] = ACTIONS(2413), + [anon_sym_public] = ACTIONS(2413), + [anon_sym_private] = ACTIONS(2413), + [anon_sym_protected] = ACTIONS(2413), + [anon_sym_override] = ACTIONS(2413), + [anon_sym_module] = ACTIONS(2413), + [anon_sym_any] = ACTIONS(2413), + [anon_sym_number] = ACTIONS(2413), + [anon_sym_boolean] = ACTIONS(2413), + [anon_sym_string] = ACTIONS(2413), + [anon_sym_symbol] = ACTIONS(2413), + [anon_sym_object] = ACTIONS(2413), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [779] = { - [ts_builtin_sym_end] = ACTIONS(1811), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1813), - [anon_sym_default] = ACTIONS(1813), - [anon_sym_type] = ACTIONS(1813), - [anon_sym_namespace] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(1811), - [anon_sym_RBRACE] = ACTIONS(1811), - [anon_sym_typeof] = ACTIONS(1813), - [anon_sym_import] = ACTIONS(1813), - [anon_sym_with] = ACTIONS(1813), - [anon_sym_var] = ACTIONS(1813), - [anon_sym_let] = ACTIONS(1813), - [anon_sym_const] = ACTIONS(1813), - [anon_sym_BANG] = ACTIONS(1811), - [anon_sym_else] = ACTIONS(1813), - [anon_sym_if] = ACTIONS(1813), - [anon_sym_switch] = ACTIONS(1813), - [anon_sym_for] = ACTIONS(1813), - [anon_sym_LPAREN] = ACTIONS(1811), - [anon_sym_SEMI] = ACTIONS(1811), - [anon_sym_await] = ACTIONS(1813), - [anon_sym_while] = ACTIONS(1813), - [anon_sym_do] = ACTIONS(1813), - [anon_sym_try] = ACTIONS(1813), - [anon_sym_break] = ACTIONS(1813), - [anon_sym_continue] = ACTIONS(1813), - [anon_sym_debugger] = ACTIONS(1813), - [anon_sym_return] = ACTIONS(1813), - [anon_sym_throw] = ACTIONS(1813), - [anon_sym_case] = ACTIONS(1813), - [anon_sym_yield] = ACTIONS(1813), - [anon_sym_LBRACK] = ACTIONS(1811), - [sym_glimmer_opening_tag] = ACTIONS(1811), - [anon_sym_class] = ACTIONS(1813), - [anon_sym_async] = ACTIONS(1813), - [anon_sym_function] = ACTIONS(1813), - [anon_sym_new] = ACTIONS(1813), - [anon_sym_using] = ACTIONS(1813), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_SLASH] = ACTIONS(1813), - [anon_sym_LT] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1811), - [anon_sym_void] = ACTIONS(1813), - [anon_sym_delete] = ACTIONS(1813), - [anon_sym_PLUS_PLUS] = ACTIONS(1811), - [anon_sym_DASH_DASH] = ACTIONS(1811), - [anon_sym_DQUOTE] = ACTIONS(1811), - [anon_sym_SQUOTE] = ACTIONS(1811), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1811), - [sym_number] = ACTIONS(1811), - [sym_private_property_identifier] = ACTIONS(1811), - [sym_this] = ACTIONS(1813), - [sym_super] = ACTIONS(1813), - [sym_true] = ACTIONS(1813), - [sym_false] = ACTIONS(1813), - [sym_null] = ACTIONS(1813), - [sym_undefined] = ACTIONS(1813), - [anon_sym_AT] = ACTIONS(1811), - [anon_sym_static] = ACTIONS(1813), - [anon_sym_readonly] = ACTIONS(1813), - [anon_sym_get] = ACTIONS(1813), - [anon_sym_set] = ACTIONS(1813), - [anon_sym_declare] = ACTIONS(1813), - [anon_sym_public] = ACTIONS(1813), - [anon_sym_private] = ACTIONS(1813), - [anon_sym_protected] = ACTIONS(1813), - [anon_sym_override] = ACTIONS(1813), - [anon_sym_module] = ACTIONS(1813), - [anon_sym_any] = ACTIONS(1813), - [anon_sym_number] = ACTIONS(1813), - [anon_sym_boolean] = ACTIONS(1813), - [anon_sym_string] = ACTIONS(1813), - [anon_sym_symbol] = ACTIONS(1813), - [anon_sym_object] = ACTIONS(1813), - [anon_sym_abstract] = ACTIONS(1813), - [anon_sym_interface] = ACTIONS(1813), - [anon_sym_enum] = ACTIONS(1813), - [sym__automatic_semicolon] = ACTIONS(1819), + [sym__call_signature] = STATE(5834), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2411), + [anon_sym_export] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2413), + [anon_sym_EQ] = ACTIONS(982), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2413), + [anon_sym_let] = ACTIONS(2413), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2413), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2413), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2413), + [anon_sym_readonly] = ACTIONS(2413), + [anon_sym_get] = ACTIONS(2413), + [anon_sym_set] = ACTIONS(2413), + [anon_sym_declare] = ACTIONS(2413), + [anon_sym_public] = ACTIONS(2413), + [anon_sym_private] = ACTIONS(2413), + [anon_sym_protected] = ACTIONS(2413), + [anon_sym_override] = ACTIONS(2413), + [anon_sym_module] = ACTIONS(2413), + [anon_sym_any] = ACTIONS(2413), + [anon_sym_number] = ACTIONS(2413), + [anon_sym_boolean] = ACTIONS(2413), + [anon_sym_string] = ACTIONS(2413), + [anon_sym_symbol] = ACTIONS(2413), + [anon_sym_object] = ACTIONS(2413), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [780] = { - [sym__call_signature] = STATE(5844), - [sym_formal_parameters] = STATE(3893), - [sym_type_parameters] = STATE(5354), - [sym_identifier] = ACTIONS(2422), - [anon_sym_export] = ACTIONS(2424), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2424), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2424), - [anon_sym_let] = ACTIONS(2424), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_async] = ACTIONS(2424), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(155), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2424), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_static] = ACTIONS(2424), - [anon_sym_readonly] = ACTIONS(2424), - [anon_sym_get] = ACTIONS(2424), - [anon_sym_set] = ACTIONS(2424), - [anon_sym_declare] = ACTIONS(2424), - [anon_sym_public] = ACTIONS(2424), - [anon_sym_private] = ACTIONS(2424), - [anon_sym_protected] = ACTIONS(2424), - [anon_sym_override] = ACTIONS(2424), - [anon_sym_module] = ACTIONS(2424), - [anon_sym_any] = ACTIONS(2424), - [anon_sym_number] = ACTIONS(2424), - [anon_sym_boolean] = ACTIONS(2424), - [anon_sym_string] = ACTIONS(2424), - [anon_sym_symbol] = ACTIONS(2424), - [anon_sym_object] = ACTIONS(2424), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_statement_block] = STATE(882), + [ts_builtin_sym_end] = ACTIONS(1674), + [sym_identifier] = ACTIONS(1676), + [anon_sym_export] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_type] = ACTIONS(1676), + [anon_sym_namespace] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(2483), + [anon_sym_RBRACE] = ACTIONS(1674), + [anon_sym_typeof] = ACTIONS(1676), + [anon_sym_import] = ACTIONS(1676), + [anon_sym_with] = ACTIONS(1676), + [anon_sym_var] = ACTIONS(1676), + [anon_sym_let] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_else] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_LPAREN] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_await] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_try] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_debugger] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_throw] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_yield] = ACTIONS(1676), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_DOT] = ACTIONS(2485), + [anon_sym_class] = ACTIONS(1676), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_function] = ACTIONS(1676), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_using] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_SLASH] = ACTIONS(1676), + [anon_sym_LT] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_void] = ACTIONS(1676), + [anon_sym_delete] = ACTIONS(1676), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1674), + [sym_number] = ACTIONS(1674), + [sym_private_property_identifier] = ACTIONS(1674), + [sym_this] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_true] = ACTIONS(1676), + [sym_false] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [sym_undefined] = ACTIONS(1676), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_readonly] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1676), + [anon_sym_set] = ACTIONS(1676), + [anon_sym_declare] = ACTIONS(1676), + [anon_sym_public] = ACTIONS(1676), + [anon_sym_private] = ACTIONS(1676), + [anon_sym_protected] = ACTIONS(1676), + [anon_sym_override] = ACTIONS(1676), + [anon_sym_module] = ACTIONS(1676), + [anon_sym_any] = ACTIONS(1676), + [anon_sym_number] = ACTIONS(1676), + [anon_sym_boolean] = ACTIONS(1676), + [anon_sym_string] = ACTIONS(1676), + [anon_sym_symbol] = ACTIONS(1676), + [anon_sym_object] = ACTIONS(1676), + [anon_sym_abstract] = ACTIONS(1676), + [anon_sym_interface] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), [sym_html_comment] = ACTIONS(5), }, [781] = { - [ts_builtin_sym_end] = ACTIONS(1869), - [sym_identifier] = ACTIONS(1871), - [anon_sym_export] = ACTIONS(1871), - [anon_sym_default] = ACTIONS(1871), - [anon_sym_type] = ACTIONS(1871), - [anon_sym_namespace] = ACTIONS(1871), - [anon_sym_LBRACE] = ACTIONS(1869), - [anon_sym_RBRACE] = ACTIONS(1869), - [anon_sym_typeof] = ACTIONS(1871), - [anon_sym_import] = ACTIONS(1871), - [anon_sym_with] = ACTIONS(1871), - [anon_sym_var] = ACTIONS(1871), - [anon_sym_let] = ACTIONS(1871), - [anon_sym_const] = ACTIONS(1871), - [anon_sym_BANG] = ACTIONS(1869), - [anon_sym_else] = ACTIONS(1871), - [anon_sym_if] = ACTIONS(1871), - [anon_sym_switch] = ACTIONS(1871), - [anon_sym_for] = ACTIONS(1871), - [anon_sym_LPAREN] = ACTIONS(1869), - [anon_sym_SEMI] = ACTIONS(1869), - [anon_sym_await] = ACTIONS(1871), - [anon_sym_while] = ACTIONS(1871), - [anon_sym_do] = ACTIONS(1871), - [anon_sym_try] = ACTIONS(1871), - [anon_sym_break] = ACTIONS(1871), - [anon_sym_continue] = ACTIONS(1871), - [anon_sym_debugger] = ACTIONS(1871), - [anon_sym_return] = ACTIONS(1871), - [anon_sym_throw] = ACTIONS(1871), - [anon_sym_case] = ACTIONS(1871), - [anon_sym_yield] = ACTIONS(1871), - [anon_sym_LBRACK] = ACTIONS(1869), - [sym_glimmer_opening_tag] = ACTIONS(1869), - [anon_sym_class] = ACTIONS(1871), - [anon_sym_async] = ACTIONS(1871), - [anon_sym_function] = ACTIONS(1871), - [anon_sym_new] = ACTIONS(1871), - [anon_sym_using] = ACTIONS(1871), - [anon_sym_PLUS] = ACTIONS(1871), - [anon_sym_DASH] = ACTIONS(1871), - [anon_sym_SLASH] = ACTIONS(1871), - [anon_sym_LT] = ACTIONS(1871), - [anon_sym_TILDE] = ACTIONS(1869), - [anon_sym_void] = ACTIONS(1871), - [anon_sym_delete] = ACTIONS(1871), - [anon_sym_PLUS_PLUS] = ACTIONS(1869), - [anon_sym_DASH_DASH] = ACTIONS(1869), - [anon_sym_DQUOTE] = ACTIONS(1869), - [anon_sym_SQUOTE] = ACTIONS(1869), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1869), - [sym_number] = ACTIONS(1869), - [sym_private_property_identifier] = ACTIONS(1869), - [sym_this] = ACTIONS(1871), - [sym_super] = ACTIONS(1871), - [sym_true] = ACTIONS(1871), - [sym_false] = ACTIONS(1871), - [sym_null] = ACTIONS(1871), - [sym_undefined] = ACTIONS(1871), - [anon_sym_AT] = ACTIONS(1869), - [anon_sym_static] = ACTIONS(1871), - [anon_sym_readonly] = ACTIONS(1871), - [anon_sym_get] = ACTIONS(1871), - [anon_sym_set] = ACTIONS(1871), - [anon_sym_declare] = ACTIONS(1871), - [anon_sym_public] = ACTIONS(1871), - [anon_sym_private] = ACTIONS(1871), - [anon_sym_protected] = ACTIONS(1871), - [anon_sym_override] = ACTIONS(1871), - [anon_sym_module] = ACTIONS(1871), - [anon_sym_any] = ACTIONS(1871), - [anon_sym_number] = ACTIONS(1871), - [anon_sym_boolean] = ACTIONS(1871), - [anon_sym_string] = ACTIONS(1871), - [anon_sym_symbol] = ACTIONS(1871), - [anon_sym_object] = ACTIONS(1871), - [anon_sym_abstract] = ACTIONS(1871), - [anon_sym_interface] = ACTIONS(1871), - [anon_sym_enum] = ACTIONS(1871), - [sym__automatic_semicolon] = ACTIONS(1877), + [sym__call_signature] = STATE(5834), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2411), + [anon_sym_export] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2413), + [anon_sym_EQ] = ACTIONS(1042), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2413), + [anon_sym_let] = ACTIONS(2413), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2413), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2413), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2413), + [anon_sym_readonly] = ACTIONS(2413), + [anon_sym_get] = ACTIONS(2413), + [anon_sym_set] = ACTIONS(2413), + [anon_sym_declare] = ACTIONS(2413), + [anon_sym_public] = ACTIONS(2413), + [anon_sym_private] = ACTIONS(2413), + [anon_sym_protected] = ACTIONS(2413), + [anon_sym_override] = ACTIONS(2413), + [anon_sym_module] = ACTIONS(2413), + [anon_sym_any] = ACTIONS(2413), + [anon_sym_number] = ACTIONS(2413), + [anon_sym_boolean] = ACTIONS(2413), + [anon_sym_string] = ACTIONS(2413), + [anon_sym_symbol] = ACTIONS(2413), + [anon_sym_object] = ACTIONS(2413), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [782] = { - [ts_builtin_sym_end] = ACTIONS(2504), - [sym_identifier] = ACTIONS(2506), - [anon_sym_export] = ACTIONS(2506), - [anon_sym_default] = ACTIONS(2506), - [anon_sym_type] = ACTIONS(2506), - [anon_sym_namespace] = ACTIONS(2506), - [anon_sym_LBRACE] = ACTIONS(2504), - [anon_sym_RBRACE] = ACTIONS(2504), - [anon_sym_typeof] = ACTIONS(2506), - [anon_sym_import] = ACTIONS(2506), - [anon_sym_with] = ACTIONS(2506), - [anon_sym_var] = ACTIONS(2506), - [anon_sym_let] = ACTIONS(2506), - [anon_sym_const] = ACTIONS(2506), - [anon_sym_BANG] = ACTIONS(2504), - [anon_sym_else] = ACTIONS(2506), - [anon_sym_if] = ACTIONS(2506), - [anon_sym_switch] = ACTIONS(2506), - [anon_sym_for] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(2504), - [anon_sym_SEMI] = ACTIONS(2504), - [anon_sym_RPAREN] = ACTIONS(2504), - [anon_sym_await] = ACTIONS(2506), - [anon_sym_while] = ACTIONS(2506), - [anon_sym_do] = ACTIONS(2506), - [anon_sym_try] = ACTIONS(2506), - [anon_sym_break] = ACTIONS(2506), - [anon_sym_continue] = ACTIONS(2506), - [anon_sym_debugger] = ACTIONS(2506), - [anon_sym_return] = ACTIONS(2506), - [anon_sym_throw] = ACTIONS(2506), - [anon_sym_case] = ACTIONS(2506), - [anon_sym_yield] = ACTIONS(2506), - [anon_sym_LBRACK] = ACTIONS(2504), - [sym_glimmer_opening_tag] = ACTIONS(2504), - [anon_sym_class] = ACTIONS(2506), - [anon_sym_async] = ACTIONS(2506), - [anon_sym_function] = ACTIONS(2506), - [anon_sym_new] = ACTIONS(2506), - [anon_sym_using] = ACTIONS(2506), - [anon_sym_PLUS] = ACTIONS(2506), - [anon_sym_DASH] = ACTIONS(2506), - [anon_sym_SLASH] = ACTIONS(2506), - [anon_sym_LT] = ACTIONS(2506), - [anon_sym_TILDE] = ACTIONS(2504), - [anon_sym_void] = ACTIONS(2506), - [anon_sym_delete] = ACTIONS(2506), - [anon_sym_PLUS_PLUS] = ACTIONS(2504), - [anon_sym_DASH_DASH] = ACTIONS(2504), - [anon_sym_DQUOTE] = ACTIONS(2504), - [anon_sym_SQUOTE] = ACTIONS(2504), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2504), - [sym_number] = ACTIONS(2504), - [sym_private_property_identifier] = ACTIONS(2504), - [sym_this] = ACTIONS(2506), - [sym_super] = ACTIONS(2506), - [sym_true] = ACTIONS(2506), - [sym_false] = ACTIONS(2506), - [sym_null] = ACTIONS(2506), - [sym_undefined] = ACTIONS(2506), - [anon_sym_AT] = ACTIONS(2504), - [anon_sym_static] = ACTIONS(2506), - [anon_sym_readonly] = ACTIONS(2506), - [anon_sym_get] = ACTIONS(2506), - [anon_sym_set] = ACTIONS(2506), - [anon_sym_declare] = ACTIONS(2506), - [anon_sym_public] = ACTIONS(2506), - [anon_sym_private] = ACTIONS(2506), - [anon_sym_protected] = ACTIONS(2506), - [anon_sym_override] = ACTIONS(2506), - [anon_sym_module] = ACTIONS(2506), - [anon_sym_any] = ACTIONS(2506), - [anon_sym_number] = ACTIONS(2506), - [anon_sym_boolean] = ACTIONS(2506), - [anon_sym_string] = ACTIONS(2506), - [anon_sym_symbol] = ACTIONS(2506), - [anon_sym_object] = ACTIONS(2506), - [anon_sym_abstract] = ACTIONS(2506), - [anon_sym_interface] = ACTIONS(2506), - [anon_sym_enum] = ACTIONS(2506), + [sym__call_signature] = STATE(5834), + [sym_formal_parameters] = STATE(3806), + [sym_type_parameters] = STATE(5328), + [sym_identifier] = ACTIONS(2411), + [anon_sym_export] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2413), + [anon_sym_EQ] = ACTIONS(976), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2413), + [anon_sym_let] = ACTIONS(2413), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_async] = ACTIONS(2413), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_new] = ACTIONS(2413), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_static] = ACTIONS(2413), + [anon_sym_readonly] = ACTIONS(2413), + [anon_sym_get] = ACTIONS(2413), + [anon_sym_set] = ACTIONS(2413), + [anon_sym_declare] = ACTIONS(2413), + [anon_sym_public] = ACTIONS(2413), + [anon_sym_private] = ACTIONS(2413), + [anon_sym_protected] = ACTIONS(2413), + [anon_sym_override] = ACTIONS(2413), + [anon_sym_module] = ACTIONS(2413), + [anon_sym_any] = ACTIONS(2413), + [anon_sym_number] = ACTIONS(2413), + [anon_sym_boolean] = ACTIONS(2413), + [anon_sym_string] = ACTIONS(2413), + [anon_sym_symbol] = ACTIONS(2413), + [anon_sym_object] = ACTIONS(2413), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [783] = { - [ts_builtin_sym_end] = ACTIONS(1915), - [sym_identifier] = ACTIONS(1917), - [anon_sym_export] = ACTIONS(1917), - [anon_sym_default] = ACTIONS(1917), - [anon_sym_type] = ACTIONS(1917), - [anon_sym_namespace] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1915), - [anon_sym_RBRACE] = ACTIONS(1915), - [anon_sym_typeof] = ACTIONS(1917), - [anon_sym_import] = ACTIONS(1917), - [anon_sym_with] = ACTIONS(1917), - [anon_sym_var] = ACTIONS(1917), - [anon_sym_let] = ACTIONS(1917), - [anon_sym_const] = ACTIONS(1917), - [anon_sym_BANG] = ACTIONS(1915), - [anon_sym_else] = ACTIONS(1917), - [anon_sym_if] = ACTIONS(1917), - [anon_sym_switch] = ACTIONS(1917), - [anon_sym_for] = ACTIONS(1917), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_SEMI] = ACTIONS(1915), - [anon_sym_await] = ACTIONS(1917), - [anon_sym_while] = ACTIONS(1917), - [anon_sym_do] = ACTIONS(1917), - [anon_sym_try] = ACTIONS(1917), - [anon_sym_break] = ACTIONS(1917), - [anon_sym_continue] = ACTIONS(1917), - [anon_sym_debugger] = ACTIONS(1917), - [anon_sym_return] = ACTIONS(1917), - [anon_sym_throw] = ACTIONS(1917), - [anon_sym_case] = ACTIONS(1917), - [anon_sym_yield] = ACTIONS(1917), - [anon_sym_LBRACK] = ACTIONS(1915), - [sym_glimmer_opening_tag] = ACTIONS(1915), - [anon_sym_class] = ACTIONS(1917), - [anon_sym_async] = ACTIONS(1917), - [anon_sym_function] = ACTIONS(1917), - [anon_sym_new] = ACTIONS(1917), - [anon_sym_using] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1917), - [anon_sym_DASH] = ACTIONS(1917), - [anon_sym_SLASH] = ACTIONS(1917), - [anon_sym_LT] = ACTIONS(1917), - [anon_sym_TILDE] = ACTIONS(1915), - [anon_sym_void] = ACTIONS(1917), - [anon_sym_delete] = ACTIONS(1917), - [anon_sym_PLUS_PLUS] = ACTIONS(1915), - [anon_sym_DASH_DASH] = ACTIONS(1915), - [anon_sym_DQUOTE] = ACTIONS(1915), - [anon_sym_SQUOTE] = ACTIONS(1915), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1915), - [sym_number] = ACTIONS(1915), - [sym_private_property_identifier] = ACTIONS(1915), - [sym_this] = ACTIONS(1917), - [sym_super] = ACTIONS(1917), - [sym_true] = ACTIONS(1917), - [sym_false] = ACTIONS(1917), - [sym_null] = ACTIONS(1917), - [sym_undefined] = ACTIONS(1917), - [anon_sym_AT] = ACTIONS(1915), - [anon_sym_static] = ACTIONS(1917), - [anon_sym_readonly] = ACTIONS(1917), - [anon_sym_get] = ACTIONS(1917), - [anon_sym_set] = ACTIONS(1917), - [anon_sym_declare] = ACTIONS(1917), - [anon_sym_public] = ACTIONS(1917), - [anon_sym_private] = ACTIONS(1917), - [anon_sym_protected] = ACTIONS(1917), - [anon_sym_override] = ACTIONS(1917), - [anon_sym_module] = ACTIONS(1917), - [anon_sym_any] = ACTIONS(1917), - [anon_sym_number] = ACTIONS(1917), - [anon_sym_boolean] = ACTIONS(1917), - [anon_sym_string] = ACTIONS(1917), - [anon_sym_symbol] = ACTIONS(1917), - [anon_sym_object] = ACTIONS(1917), - [anon_sym_abstract] = ACTIONS(1917), - [anon_sym_interface] = ACTIONS(1917), - [anon_sym_enum] = ACTIONS(1917), - [sym__automatic_semicolon] = ACTIONS(1923), + [sym_statement_block] = STATE(882), + [ts_builtin_sym_end] = ACTIONS(1674), + [sym_identifier] = ACTIONS(1676), + [anon_sym_export] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_type] = ACTIONS(1676), + [anon_sym_namespace] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(2483), + [anon_sym_RBRACE] = ACTIONS(1674), + [anon_sym_typeof] = ACTIONS(1676), + [anon_sym_import] = ACTIONS(1676), + [anon_sym_with] = ACTIONS(1676), + [anon_sym_var] = ACTIONS(1676), + [anon_sym_let] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_else] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_LPAREN] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_await] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_try] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_debugger] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_throw] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_yield] = ACTIONS(1676), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_DOT] = ACTIONS(2487), + [anon_sym_class] = ACTIONS(1676), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_function] = ACTIONS(1676), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_using] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_SLASH] = ACTIONS(1676), + [anon_sym_LT] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_void] = ACTIONS(1676), + [anon_sym_delete] = ACTIONS(1676), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1674), + [sym_number] = ACTIONS(1674), + [sym_private_property_identifier] = ACTIONS(1674), + [sym_this] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_true] = ACTIONS(1676), + [sym_false] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [sym_undefined] = ACTIONS(1676), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_readonly] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1676), + [anon_sym_set] = ACTIONS(1676), + [anon_sym_declare] = ACTIONS(1676), + [anon_sym_public] = ACTIONS(1676), + [anon_sym_private] = ACTIONS(1676), + [anon_sym_protected] = ACTIONS(1676), + [anon_sym_override] = ACTIONS(1676), + [anon_sym_module] = ACTIONS(1676), + [anon_sym_any] = ACTIONS(1676), + [anon_sym_number] = ACTIONS(1676), + [anon_sym_boolean] = ACTIONS(1676), + [anon_sym_string] = ACTIONS(1676), + [anon_sym_symbol] = ACTIONS(1676), + [anon_sym_object] = ACTIONS(1676), + [anon_sym_abstract] = ACTIONS(1676), + [anon_sym_interface] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), [sym_html_comment] = ACTIONS(5), }, [784] = { - [sym__call_signature] = STATE(5844), - [sym_formal_parameters] = STATE(3893), - [sym_type_parameters] = STATE(5354), - [sym_identifier] = ACTIONS(2422), - [anon_sym_export] = ACTIONS(2424), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2424), - [anon_sym_EQ] = ACTIONS(995), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2424), - [anon_sym_let] = ACTIONS(2424), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_async] = ACTIONS(2424), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(155), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2424), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_static] = ACTIONS(2424), - [anon_sym_readonly] = ACTIONS(2424), - [anon_sym_get] = ACTIONS(2424), - [anon_sym_set] = ACTIONS(2424), - [anon_sym_declare] = ACTIONS(2424), - [anon_sym_public] = ACTIONS(2424), - [anon_sym_private] = ACTIONS(2424), - [anon_sym_protected] = ACTIONS(2424), - [anon_sym_override] = ACTIONS(2424), - [anon_sym_module] = ACTIONS(2424), - [anon_sym_any] = ACTIONS(2424), - [anon_sym_number] = ACTIONS(2424), - [anon_sym_boolean] = ACTIONS(2424), - [anon_sym_string] = ACTIONS(2424), - [anon_sym_symbol] = ACTIONS(2424), - [anon_sym_object] = ACTIONS(2424), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_rest_pattern] = STATE(5165), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3773), + [sym_tuple_parameter] = STATE(4999), + [sym_optional_tuple_parameter] = STATE(4999), + [sym_optional_type] = STATE(4999), + [sym_rest_type] = STATE(4999), + [sym__tuple_type_member] = STATE(4999), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(2489), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_COMMA] = ACTIONS(2491), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(2493), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2495), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [785] = { - [ts_builtin_sym_end] = ACTIONS(1887), - [sym_identifier] = ACTIONS(1889), - [anon_sym_export] = ACTIONS(1889), - [anon_sym_default] = ACTIONS(1889), - [anon_sym_type] = ACTIONS(1889), - [anon_sym_namespace] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1887), - [anon_sym_RBRACE] = ACTIONS(1887), - [anon_sym_typeof] = ACTIONS(1889), - [anon_sym_import] = ACTIONS(1889), - [anon_sym_with] = ACTIONS(1889), - [anon_sym_var] = ACTIONS(1889), - [anon_sym_let] = ACTIONS(1889), - [anon_sym_const] = ACTIONS(1889), - [anon_sym_BANG] = ACTIONS(1887), - [anon_sym_else] = ACTIONS(1889), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_switch] = ACTIONS(1889), - [anon_sym_for] = ACTIONS(1889), - [anon_sym_LPAREN] = ACTIONS(1887), - [anon_sym_SEMI] = ACTIONS(1887), - [anon_sym_await] = ACTIONS(1889), - [anon_sym_while] = ACTIONS(1889), - [anon_sym_do] = ACTIONS(1889), - [anon_sym_try] = ACTIONS(1889), - [anon_sym_break] = ACTIONS(1889), - [anon_sym_continue] = ACTIONS(1889), - [anon_sym_debugger] = ACTIONS(1889), - [anon_sym_return] = ACTIONS(1889), - [anon_sym_throw] = ACTIONS(1889), - [anon_sym_case] = ACTIONS(1889), - [anon_sym_yield] = ACTIONS(1889), - [anon_sym_LBRACK] = ACTIONS(1887), - [sym_glimmer_opening_tag] = ACTIONS(1887), - [anon_sym_DOT] = ACTIONS(1889), - [anon_sym_class] = ACTIONS(1889), - [anon_sym_async] = ACTIONS(1889), - [anon_sym_function] = ACTIONS(1889), - [anon_sym_new] = ACTIONS(1889), - [anon_sym_using] = ACTIONS(1889), - [anon_sym_PLUS] = ACTIONS(1889), - [anon_sym_DASH] = ACTIONS(1889), - [anon_sym_SLASH] = ACTIONS(1889), - [anon_sym_LT] = ACTIONS(1889), - [anon_sym_TILDE] = ACTIONS(1887), - [anon_sym_void] = ACTIONS(1889), - [anon_sym_delete] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1887), - [anon_sym_DASH_DASH] = ACTIONS(1887), - [anon_sym_DQUOTE] = ACTIONS(1887), - [anon_sym_SQUOTE] = ACTIONS(1887), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1887), - [sym_number] = ACTIONS(1887), - [sym_private_property_identifier] = ACTIONS(1887), - [sym_this] = ACTIONS(1889), - [sym_super] = ACTIONS(1889), - [sym_true] = ACTIONS(1889), - [sym_false] = ACTIONS(1889), - [sym_null] = ACTIONS(1889), - [sym_undefined] = ACTIONS(1889), - [anon_sym_AT] = ACTIONS(1887), - [anon_sym_static] = ACTIONS(1889), - [anon_sym_readonly] = ACTIONS(1889), - [anon_sym_get] = ACTIONS(1889), - [anon_sym_set] = ACTIONS(1889), - [anon_sym_declare] = ACTIONS(1889), - [anon_sym_public] = ACTIONS(1889), - [anon_sym_private] = ACTIONS(1889), - [anon_sym_protected] = ACTIONS(1889), - [anon_sym_override] = ACTIONS(1889), - [anon_sym_module] = ACTIONS(1889), - [anon_sym_any] = ACTIONS(1889), - [anon_sym_number] = ACTIONS(1889), - [anon_sym_boolean] = ACTIONS(1889), - [anon_sym_string] = ACTIONS(1889), - [anon_sym_symbol] = ACTIONS(1889), - [anon_sym_object] = ACTIONS(1889), - [anon_sym_abstract] = ACTIONS(1889), - [anon_sym_interface] = ACTIONS(1889), - [anon_sym_enum] = ACTIONS(1889), + [ts_builtin_sym_end] = ACTIONS(2501), + [sym_identifier] = ACTIONS(2503), + [anon_sym_export] = ACTIONS(2503), + [anon_sym_default] = ACTIONS(2503), + [anon_sym_type] = ACTIONS(2503), + [anon_sym_namespace] = ACTIONS(2503), + [anon_sym_LBRACE] = ACTIONS(2501), + [anon_sym_RBRACE] = ACTIONS(2501), + [anon_sym_typeof] = ACTIONS(2503), + [anon_sym_import] = ACTIONS(2503), + [anon_sym_with] = ACTIONS(2503), + [anon_sym_var] = ACTIONS(2503), + [anon_sym_let] = ACTIONS(2503), + [anon_sym_const] = ACTIONS(2503), + [anon_sym_BANG] = ACTIONS(2501), + [anon_sym_else] = ACTIONS(2503), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_switch] = ACTIONS(2503), + [anon_sym_for] = ACTIONS(2503), + [anon_sym_LPAREN] = ACTIONS(2501), + [anon_sym_SEMI] = ACTIONS(2505), + [anon_sym_await] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(2503), + [anon_sym_do] = ACTIONS(2503), + [anon_sym_try] = ACTIONS(2503), + [anon_sym_break] = ACTIONS(2503), + [anon_sym_continue] = ACTIONS(2503), + [anon_sym_debugger] = ACTIONS(2503), + [anon_sym_return] = ACTIONS(2503), + [anon_sym_throw] = ACTIONS(2503), + [anon_sym_case] = ACTIONS(2503), + [anon_sym_yield] = ACTIONS(2503), + [anon_sym_LBRACK] = ACTIONS(2501), + [anon_sym_class] = ACTIONS(2503), + [anon_sym_async] = ACTIONS(2503), + [anon_sym_function] = ACTIONS(2503), + [anon_sym_new] = ACTIONS(2503), + [anon_sym_using] = ACTIONS(2503), + [anon_sym_PLUS] = ACTIONS(2503), + [anon_sym_DASH] = ACTIONS(2503), + [anon_sym_SLASH] = ACTIONS(2503), + [anon_sym_LT] = ACTIONS(2501), + [anon_sym_TILDE] = ACTIONS(2501), + [anon_sym_void] = ACTIONS(2503), + [anon_sym_delete] = ACTIONS(2503), + [anon_sym_PLUS_PLUS] = ACTIONS(2501), + [anon_sym_DASH_DASH] = ACTIONS(2501), + [anon_sym_DQUOTE] = ACTIONS(2501), + [anon_sym_SQUOTE] = ACTIONS(2501), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2501), + [sym_number] = ACTIONS(2501), + [sym_private_property_identifier] = ACTIONS(2501), + [sym_this] = ACTIONS(2503), + [sym_super] = ACTIONS(2503), + [sym_true] = ACTIONS(2503), + [sym_false] = ACTIONS(2503), + [sym_null] = ACTIONS(2503), + [sym_undefined] = ACTIONS(2503), + [anon_sym_AT] = ACTIONS(2501), + [anon_sym_static] = ACTIONS(2503), + [anon_sym_readonly] = ACTIONS(2503), + [anon_sym_get] = ACTIONS(2503), + [anon_sym_set] = ACTIONS(2503), + [anon_sym_declare] = ACTIONS(2503), + [anon_sym_public] = ACTIONS(2503), + [anon_sym_private] = ACTIONS(2503), + [anon_sym_protected] = ACTIONS(2503), + [anon_sym_override] = ACTIONS(2503), + [anon_sym_module] = ACTIONS(2503), + [anon_sym_any] = ACTIONS(2503), + [anon_sym_number] = ACTIONS(2503), + [anon_sym_boolean] = ACTIONS(2503), + [anon_sym_string] = ACTIONS(2503), + [anon_sym_symbol] = ACTIONS(2503), + [anon_sym_object] = ACTIONS(2503), + [anon_sym_abstract] = ACTIONS(2503), + [anon_sym_interface] = ACTIONS(2503), + [anon_sym_enum] = ACTIONS(2503), + [sym__automatic_semicolon] = ACTIONS(2505), [sym_html_comment] = ACTIONS(5), }, [786] = { - [ts_builtin_sym_end] = ACTIONS(1891), - [sym_identifier] = ACTIONS(1893), - [anon_sym_export] = ACTIONS(1893), - [anon_sym_default] = ACTIONS(1893), - [anon_sym_type] = ACTIONS(1893), - [anon_sym_namespace] = ACTIONS(1893), - [anon_sym_LBRACE] = ACTIONS(1891), - [anon_sym_RBRACE] = ACTIONS(1891), - [anon_sym_typeof] = ACTIONS(1893), - [anon_sym_import] = ACTIONS(1893), - [anon_sym_with] = ACTIONS(1893), - [anon_sym_var] = ACTIONS(1893), - [anon_sym_let] = ACTIONS(1893), - [anon_sym_const] = ACTIONS(1893), - [anon_sym_BANG] = ACTIONS(1891), - [anon_sym_else] = ACTIONS(1893), - [anon_sym_if] = ACTIONS(1893), - [anon_sym_switch] = ACTIONS(1893), - [anon_sym_for] = ACTIONS(1893), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_SEMI] = ACTIONS(1891), - [anon_sym_await] = ACTIONS(1893), - [anon_sym_while] = ACTIONS(1893), - [anon_sym_do] = ACTIONS(1893), - [anon_sym_try] = ACTIONS(1893), - [anon_sym_break] = ACTIONS(1893), - [anon_sym_continue] = ACTIONS(1893), - [anon_sym_debugger] = ACTIONS(1893), - [anon_sym_return] = ACTIONS(1893), - [anon_sym_throw] = ACTIONS(1893), - [anon_sym_case] = ACTIONS(1893), - [anon_sym_yield] = ACTIONS(1893), - [anon_sym_LBRACK] = ACTIONS(1891), - [sym_glimmer_opening_tag] = ACTIONS(1891), - [anon_sym_DOT] = ACTIONS(1893), - [anon_sym_class] = ACTIONS(1893), - [anon_sym_async] = ACTIONS(1893), - [anon_sym_function] = ACTIONS(1893), - [anon_sym_new] = ACTIONS(1893), - [anon_sym_using] = ACTIONS(1893), - [anon_sym_PLUS] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_SLASH] = ACTIONS(1893), - [anon_sym_LT] = ACTIONS(1893), - [anon_sym_TILDE] = ACTIONS(1891), - [anon_sym_void] = ACTIONS(1893), - [anon_sym_delete] = ACTIONS(1893), - [anon_sym_PLUS_PLUS] = ACTIONS(1891), - [anon_sym_DASH_DASH] = ACTIONS(1891), - [anon_sym_DQUOTE] = ACTIONS(1891), - [anon_sym_SQUOTE] = ACTIONS(1891), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1891), - [sym_number] = ACTIONS(1891), - [sym_private_property_identifier] = ACTIONS(1891), - [sym_this] = ACTIONS(1893), - [sym_super] = ACTIONS(1893), - [sym_true] = ACTIONS(1893), - [sym_false] = ACTIONS(1893), - [sym_null] = ACTIONS(1893), - [sym_undefined] = ACTIONS(1893), - [anon_sym_AT] = ACTIONS(1891), - [anon_sym_static] = ACTIONS(1893), - [anon_sym_readonly] = ACTIONS(1893), - [anon_sym_get] = ACTIONS(1893), - [anon_sym_set] = ACTIONS(1893), - [anon_sym_declare] = ACTIONS(1893), - [anon_sym_public] = ACTIONS(1893), - [anon_sym_private] = ACTIONS(1893), - [anon_sym_protected] = ACTIONS(1893), - [anon_sym_override] = ACTIONS(1893), - [anon_sym_module] = ACTIONS(1893), - [anon_sym_any] = ACTIONS(1893), - [anon_sym_number] = ACTIONS(1893), - [anon_sym_boolean] = ACTIONS(1893), - [anon_sym_string] = ACTIONS(1893), - [anon_sym_symbol] = ACTIONS(1893), - [anon_sym_object] = ACTIONS(1893), - [anon_sym_abstract] = ACTIONS(1893), - [anon_sym_interface] = ACTIONS(1893), - [anon_sym_enum] = ACTIONS(1893), + [ts_builtin_sym_end] = ACTIONS(1810), + [sym_identifier] = ACTIONS(1812), + [anon_sym_export] = ACTIONS(1812), + [anon_sym_default] = ACTIONS(1812), + [anon_sym_type] = ACTIONS(1812), + [anon_sym_namespace] = ACTIONS(1812), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_typeof] = ACTIONS(1812), + [anon_sym_import] = ACTIONS(1812), + [anon_sym_with] = ACTIONS(1812), + [anon_sym_var] = ACTIONS(1812), + [anon_sym_let] = ACTIONS(1812), + [anon_sym_const] = ACTIONS(1812), + [anon_sym_BANG] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1812), + [anon_sym_if] = ACTIONS(1812), + [anon_sym_switch] = ACTIONS(1812), + [anon_sym_for] = ACTIONS(1812), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_await] = ACTIONS(1812), + [anon_sym_while] = ACTIONS(1812), + [anon_sym_do] = ACTIONS(1812), + [anon_sym_try] = ACTIONS(1812), + [anon_sym_break] = ACTIONS(1812), + [anon_sym_continue] = ACTIONS(1812), + [anon_sym_debugger] = ACTIONS(1812), + [anon_sym_return] = ACTIONS(1812), + [anon_sym_throw] = ACTIONS(1812), + [anon_sym_case] = ACTIONS(1812), + [anon_sym_yield] = ACTIONS(1812), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_class] = ACTIONS(1812), + [anon_sym_async] = ACTIONS(1812), + [anon_sym_function] = ACTIONS(1812), + [anon_sym_new] = ACTIONS(1812), + [anon_sym_using] = ACTIONS(1812), + [anon_sym_PLUS] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_SLASH] = ACTIONS(1812), + [anon_sym_LT] = ACTIONS(1810), + [anon_sym_TILDE] = ACTIONS(1810), + [anon_sym_void] = ACTIONS(1812), + [anon_sym_delete] = ACTIONS(1812), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_DQUOTE] = ACTIONS(1810), + [anon_sym_SQUOTE] = ACTIONS(1810), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1810), + [sym_number] = ACTIONS(1810), + [sym_private_property_identifier] = ACTIONS(1810), + [sym_this] = ACTIONS(1812), + [sym_super] = ACTIONS(1812), + [sym_true] = ACTIONS(1812), + [sym_false] = ACTIONS(1812), + [sym_null] = ACTIONS(1812), + [sym_undefined] = ACTIONS(1812), + [anon_sym_AT] = ACTIONS(1810), + [anon_sym_static] = ACTIONS(1812), + [anon_sym_readonly] = ACTIONS(1812), + [anon_sym_get] = ACTIONS(1812), + [anon_sym_set] = ACTIONS(1812), + [anon_sym_declare] = ACTIONS(1812), + [anon_sym_public] = ACTIONS(1812), + [anon_sym_private] = ACTIONS(1812), + [anon_sym_protected] = ACTIONS(1812), + [anon_sym_override] = ACTIONS(1812), + [anon_sym_module] = ACTIONS(1812), + [anon_sym_any] = ACTIONS(1812), + [anon_sym_number] = ACTIONS(1812), + [anon_sym_boolean] = ACTIONS(1812), + [anon_sym_string] = ACTIONS(1812), + [anon_sym_symbol] = ACTIONS(1812), + [anon_sym_object] = ACTIONS(1812), + [anon_sym_abstract] = ACTIONS(1812), + [anon_sym_interface] = ACTIONS(1812), + [anon_sym_enum] = ACTIONS(1812), + [sym__automatic_semicolon] = ACTIONS(1818), [sym_html_comment] = ACTIONS(5), }, [787] = { - [ts_builtin_sym_end] = ACTIONS(2508), - [sym_identifier] = ACTIONS(2510), - [anon_sym_export] = ACTIONS(2510), - [anon_sym_default] = ACTIONS(2510), - [anon_sym_type] = ACTIONS(2510), - [anon_sym_namespace] = ACTIONS(2510), - [anon_sym_LBRACE] = ACTIONS(2508), - [anon_sym_RBRACE] = ACTIONS(2508), - [anon_sym_typeof] = ACTIONS(2510), - [anon_sym_import] = ACTIONS(2510), - [anon_sym_with] = ACTIONS(2510), - [anon_sym_var] = ACTIONS(2510), - [anon_sym_let] = ACTIONS(2510), - [anon_sym_const] = ACTIONS(2510), - [anon_sym_BANG] = ACTIONS(2508), - [anon_sym_else] = ACTIONS(2510), - [anon_sym_if] = ACTIONS(2510), - [anon_sym_switch] = ACTIONS(2510), - [anon_sym_for] = ACTIONS(2510), - [anon_sym_LPAREN] = ACTIONS(2508), - [anon_sym_SEMI] = ACTIONS(2512), - [anon_sym_await] = ACTIONS(2510), - [anon_sym_while] = ACTIONS(2510), - [anon_sym_do] = ACTIONS(2510), - [anon_sym_try] = ACTIONS(2510), - [anon_sym_break] = ACTIONS(2510), - [anon_sym_continue] = ACTIONS(2510), - [anon_sym_debugger] = ACTIONS(2510), - [anon_sym_return] = ACTIONS(2510), - [anon_sym_throw] = ACTIONS(2510), - [anon_sym_case] = ACTIONS(2510), - [anon_sym_yield] = ACTIONS(2510), - [anon_sym_LBRACK] = ACTIONS(2508), - [sym_glimmer_opening_tag] = ACTIONS(2508), - [anon_sym_class] = ACTIONS(2510), - [anon_sym_async] = ACTIONS(2510), - [anon_sym_function] = ACTIONS(2510), - [anon_sym_new] = ACTIONS(2510), - [anon_sym_using] = ACTIONS(2510), - [anon_sym_PLUS] = ACTIONS(2510), - [anon_sym_DASH] = ACTIONS(2510), - [anon_sym_SLASH] = ACTIONS(2510), - [anon_sym_LT] = ACTIONS(2510), - [anon_sym_TILDE] = ACTIONS(2508), - [anon_sym_void] = ACTIONS(2510), - [anon_sym_delete] = ACTIONS(2510), - [anon_sym_PLUS_PLUS] = ACTIONS(2508), - [anon_sym_DASH_DASH] = ACTIONS(2508), - [anon_sym_DQUOTE] = ACTIONS(2508), - [anon_sym_SQUOTE] = ACTIONS(2508), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2508), - [sym_number] = ACTIONS(2508), - [sym_private_property_identifier] = ACTIONS(2508), - [sym_this] = ACTIONS(2510), - [sym_super] = ACTIONS(2510), - [sym_true] = ACTIONS(2510), - [sym_false] = ACTIONS(2510), - [sym_null] = ACTIONS(2510), - [sym_undefined] = ACTIONS(2510), - [anon_sym_AT] = ACTIONS(2508), - [anon_sym_static] = ACTIONS(2510), - [anon_sym_readonly] = ACTIONS(2510), - [anon_sym_get] = ACTIONS(2510), - [anon_sym_set] = ACTIONS(2510), - [anon_sym_declare] = ACTIONS(2510), - [anon_sym_public] = ACTIONS(2510), - [anon_sym_private] = ACTIONS(2510), - [anon_sym_protected] = ACTIONS(2510), - [anon_sym_override] = ACTIONS(2510), - [anon_sym_module] = ACTIONS(2510), - [anon_sym_any] = ACTIONS(2510), - [anon_sym_number] = ACTIONS(2510), - [anon_sym_boolean] = ACTIONS(2510), - [anon_sym_string] = ACTIONS(2510), - [anon_sym_symbol] = ACTIONS(2510), - [anon_sym_object] = ACTIONS(2510), - [anon_sym_abstract] = ACTIONS(2510), - [anon_sym_interface] = ACTIONS(2510), - [anon_sym_enum] = ACTIONS(2510), - [sym__automatic_semicolon] = ACTIONS(2512), + [ts_builtin_sym_end] = ACTIONS(2507), + [sym_identifier] = ACTIONS(2509), + [anon_sym_export] = ACTIONS(2509), + [anon_sym_default] = ACTIONS(2509), + [anon_sym_type] = ACTIONS(2509), + [anon_sym_namespace] = ACTIONS(2509), + [anon_sym_LBRACE] = ACTIONS(2507), + [anon_sym_RBRACE] = ACTIONS(2507), + [anon_sym_typeof] = ACTIONS(2509), + [anon_sym_import] = ACTIONS(2509), + [anon_sym_with] = ACTIONS(2509), + [anon_sym_var] = ACTIONS(2509), + [anon_sym_let] = ACTIONS(2509), + [anon_sym_const] = ACTIONS(2509), + [anon_sym_BANG] = ACTIONS(2507), + [anon_sym_else] = ACTIONS(2509), + [anon_sym_if] = ACTIONS(2509), + [anon_sym_switch] = ACTIONS(2509), + [anon_sym_for] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(2507), + [anon_sym_SEMI] = ACTIONS(2507), + [anon_sym_await] = ACTIONS(2509), + [anon_sym_while] = ACTIONS(2509), + [anon_sym_do] = ACTIONS(2509), + [anon_sym_try] = ACTIONS(2509), + [anon_sym_break] = ACTIONS(2509), + [anon_sym_continue] = ACTIONS(2509), + [anon_sym_debugger] = ACTIONS(2509), + [anon_sym_return] = ACTIONS(2509), + [anon_sym_throw] = ACTIONS(2509), + [anon_sym_case] = ACTIONS(2509), + [anon_sym_yield] = ACTIONS(2509), + [anon_sym_LBRACK] = ACTIONS(2507), + [anon_sym_class] = ACTIONS(2509), + [anon_sym_async] = ACTIONS(2509), + [anon_sym_function] = ACTIONS(2509), + [anon_sym_new] = ACTIONS(2509), + [anon_sym_using] = ACTIONS(2509), + [anon_sym_PLUS] = ACTIONS(2509), + [anon_sym_DASH] = ACTIONS(2509), + [anon_sym_SLASH] = ACTIONS(2509), + [anon_sym_LT] = ACTIONS(2507), + [anon_sym_TILDE] = ACTIONS(2507), + [anon_sym_void] = ACTIONS(2509), + [anon_sym_delete] = ACTIONS(2509), + [anon_sym_PLUS_PLUS] = ACTIONS(2507), + [anon_sym_DASH_DASH] = ACTIONS(2507), + [anon_sym_DQUOTE] = ACTIONS(2507), + [anon_sym_SQUOTE] = ACTIONS(2507), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2507), + [sym_number] = ACTIONS(2507), + [sym_private_property_identifier] = ACTIONS(2507), + [sym_this] = ACTIONS(2509), + [sym_super] = ACTIONS(2509), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_null] = ACTIONS(2509), + [sym_undefined] = ACTIONS(2509), + [anon_sym_AT] = ACTIONS(2507), + [anon_sym_static] = ACTIONS(2509), + [anon_sym_readonly] = ACTIONS(2509), + [anon_sym_get] = ACTIONS(2509), + [anon_sym_set] = ACTIONS(2509), + [anon_sym_declare] = ACTIONS(2509), + [anon_sym_public] = ACTIONS(2509), + [anon_sym_private] = ACTIONS(2509), + [anon_sym_protected] = ACTIONS(2509), + [anon_sym_override] = ACTIONS(2509), + [anon_sym_module] = ACTIONS(2509), + [anon_sym_any] = ACTIONS(2509), + [anon_sym_number] = ACTIONS(2509), + [anon_sym_boolean] = ACTIONS(2509), + [anon_sym_string] = ACTIONS(2509), + [anon_sym_symbol] = ACTIONS(2509), + [anon_sym_object] = ACTIONS(2509), + [anon_sym_abstract] = ACTIONS(2509), + [anon_sym_interface] = ACTIONS(2509), + [anon_sym_enum] = ACTIONS(2509), + [sym__automatic_semicolon] = ACTIONS(2507), [sym_html_comment] = ACTIONS(5), }, [788] = { - [ts_builtin_sym_end] = ACTIONS(1821), - [sym_identifier] = ACTIONS(1823), - [anon_sym_export] = ACTIONS(1823), - [anon_sym_default] = ACTIONS(1823), - [anon_sym_type] = ACTIONS(1823), - [anon_sym_namespace] = ACTIONS(1823), - [anon_sym_LBRACE] = ACTIONS(1821), - [anon_sym_RBRACE] = ACTIONS(1821), - [anon_sym_typeof] = ACTIONS(1823), - [anon_sym_import] = ACTIONS(1823), - [anon_sym_with] = ACTIONS(1823), - [anon_sym_var] = ACTIONS(1823), - [anon_sym_let] = ACTIONS(1823), - [anon_sym_const] = ACTIONS(1823), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_else] = ACTIONS(1823), - [anon_sym_if] = ACTIONS(1823), - [anon_sym_switch] = ACTIONS(1823), - [anon_sym_for] = ACTIONS(1823), - [anon_sym_LPAREN] = ACTIONS(1821), - [anon_sym_SEMI] = ACTIONS(1821), - [anon_sym_await] = ACTIONS(1823), - [anon_sym_while] = ACTIONS(1823), - [anon_sym_do] = ACTIONS(1823), - [anon_sym_try] = ACTIONS(1823), - [anon_sym_break] = ACTIONS(1823), - [anon_sym_continue] = ACTIONS(1823), - [anon_sym_debugger] = ACTIONS(1823), - [anon_sym_return] = ACTIONS(1823), - [anon_sym_throw] = ACTIONS(1823), - [anon_sym_case] = ACTIONS(1823), - [anon_sym_yield] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1821), - [sym_glimmer_opening_tag] = ACTIONS(1821), - [anon_sym_class] = ACTIONS(1823), - [anon_sym_async] = ACTIONS(1823), - [anon_sym_function] = ACTIONS(1823), - [anon_sym_new] = ACTIONS(1823), - [anon_sym_using] = ACTIONS(1823), - [anon_sym_PLUS] = ACTIONS(1823), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_SLASH] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1821), - [anon_sym_void] = ACTIONS(1823), - [anon_sym_delete] = ACTIONS(1823), - [anon_sym_PLUS_PLUS] = ACTIONS(1821), - [anon_sym_DASH_DASH] = ACTIONS(1821), - [anon_sym_DQUOTE] = ACTIONS(1821), - [anon_sym_SQUOTE] = ACTIONS(1821), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1821), - [sym_number] = ACTIONS(1821), - [sym_private_property_identifier] = ACTIONS(1821), - [sym_this] = ACTIONS(1823), - [sym_super] = ACTIONS(1823), - [sym_true] = ACTIONS(1823), - [sym_false] = ACTIONS(1823), - [sym_null] = ACTIONS(1823), - [sym_undefined] = ACTIONS(1823), - [anon_sym_AT] = ACTIONS(1821), - [anon_sym_static] = ACTIONS(1823), - [anon_sym_readonly] = ACTIONS(1823), - [anon_sym_get] = ACTIONS(1823), - [anon_sym_set] = ACTIONS(1823), - [anon_sym_declare] = ACTIONS(1823), - [anon_sym_public] = ACTIONS(1823), - [anon_sym_private] = ACTIONS(1823), - [anon_sym_protected] = ACTIONS(1823), - [anon_sym_override] = ACTIONS(1823), - [anon_sym_module] = ACTIONS(1823), - [anon_sym_any] = ACTIONS(1823), - [anon_sym_number] = ACTIONS(1823), - [anon_sym_boolean] = ACTIONS(1823), - [anon_sym_string] = ACTIONS(1823), - [anon_sym_symbol] = ACTIONS(1823), - [anon_sym_object] = ACTIONS(1823), - [anon_sym_abstract] = ACTIONS(1823), - [anon_sym_interface] = ACTIONS(1823), - [anon_sym_enum] = ACTIONS(1823), - [sym__automatic_semicolon] = ACTIONS(1829), + [ts_builtin_sym_end] = ACTIONS(1706), + [sym_identifier] = ACTIONS(1708), + [anon_sym_export] = ACTIONS(1708), + [anon_sym_default] = ACTIONS(1708), + [anon_sym_type] = ACTIONS(1708), + [anon_sym_namespace] = ACTIONS(1708), + [anon_sym_LBRACE] = ACTIONS(1706), + [anon_sym_RBRACE] = ACTIONS(1706), + [anon_sym_typeof] = ACTIONS(1708), + [anon_sym_import] = ACTIONS(1708), + [anon_sym_with] = ACTIONS(1708), + [anon_sym_var] = ACTIONS(1708), + [anon_sym_let] = ACTIONS(1708), + [anon_sym_const] = ACTIONS(1708), + [anon_sym_BANG] = ACTIONS(1706), + [anon_sym_else] = ACTIONS(1708), + [anon_sym_if] = ACTIONS(1708), + [anon_sym_switch] = ACTIONS(1708), + [anon_sym_for] = ACTIONS(1708), + [anon_sym_LPAREN] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1706), + [anon_sym_await] = ACTIONS(1708), + [anon_sym_while] = ACTIONS(1708), + [anon_sym_do] = ACTIONS(1708), + [anon_sym_try] = ACTIONS(1708), + [anon_sym_break] = ACTIONS(1708), + [anon_sym_continue] = ACTIONS(1708), + [anon_sym_debugger] = ACTIONS(1708), + [anon_sym_return] = ACTIONS(1708), + [anon_sym_throw] = ACTIONS(1708), + [anon_sym_case] = ACTIONS(1708), + [anon_sym_yield] = ACTIONS(1708), + [anon_sym_LBRACK] = ACTIONS(1706), + [anon_sym_class] = ACTIONS(1708), + [anon_sym_async] = ACTIONS(1708), + [anon_sym_function] = ACTIONS(1708), + [anon_sym_new] = ACTIONS(1708), + [anon_sym_using] = ACTIONS(1708), + [anon_sym_PLUS] = ACTIONS(1708), + [anon_sym_DASH] = ACTIONS(1708), + [anon_sym_SLASH] = ACTIONS(1708), + [anon_sym_LT] = ACTIONS(1706), + [anon_sym_TILDE] = ACTIONS(1706), + [anon_sym_void] = ACTIONS(1708), + [anon_sym_delete] = ACTIONS(1708), + [anon_sym_PLUS_PLUS] = ACTIONS(1706), + [anon_sym_DASH_DASH] = ACTIONS(1706), + [anon_sym_DQUOTE] = ACTIONS(1706), + [anon_sym_SQUOTE] = ACTIONS(1706), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1706), + [sym_number] = ACTIONS(1706), + [sym_private_property_identifier] = ACTIONS(1706), + [sym_this] = ACTIONS(1708), + [sym_super] = ACTIONS(1708), + [sym_true] = ACTIONS(1708), + [sym_false] = ACTIONS(1708), + [sym_null] = ACTIONS(1708), + [sym_undefined] = ACTIONS(1708), + [anon_sym_AT] = ACTIONS(1706), + [anon_sym_static] = ACTIONS(1708), + [anon_sym_readonly] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1708), + [anon_sym_set] = ACTIONS(1708), + [anon_sym_declare] = ACTIONS(1708), + [anon_sym_public] = ACTIONS(1708), + [anon_sym_private] = ACTIONS(1708), + [anon_sym_protected] = ACTIONS(1708), + [anon_sym_override] = ACTIONS(1708), + [anon_sym_module] = ACTIONS(1708), + [anon_sym_any] = ACTIONS(1708), + [anon_sym_number] = ACTIONS(1708), + [anon_sym_boolean] = ACTIONS(1708), + [anon_sym_string] = ACTIONS(1708), + [anon_sym_symbol] = ACTIONS(1708), + [anon_sym_object] = ACTIONS(1708), + [anon_sym_abstract] = ACTIONS(1708), + [anon_sym_interface] = ACTIONS(1708), + [anon_sym_enum] = ACTIONS(1708), + [sym__automatic_semicolon] = ACTIONS(1714), [sym_html_comment] = ACTIONS(5), }, [789] = { - [sym__call_signature] = STATE(5844), - [sym_formal_parameters] = STATE(3893), - [sym_type_parameters] = STATE(5354), - [sym_identifier] = ACTIONS(2422), - [anon_sym_export] = ACTIONS(2424), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2424), - [anon_sym_EQ] = ACTIONS(989), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2424), - [anon_sym_let] = ACTIONS(2424), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_async] = ACTIONS(2424), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(155), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2424), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_static] = ACTIONS(2424), - [anon_sym_readonly] = ACTIONS(2424), - [anon_sym_get] = ACTIONS(2424), - [anon_sym_set] = ACTIONS(2424), - [anon_sym_declare] = ACTIONS(2424), - [anon_sym_public] = ACTIONS(2424), - [anon_sym_private] = ACTIONS(2424), - [anon_sym_protected] = ACTIONS(2424), - [anon_sym_override] = ACTIONS(2424), - [anon_sym_module] = ACTIONS(2424), - [anon_sym_any] = ACTIONS(2424), - [anon_sym_number] = ACTIONS(2424), - [anon_sym_boolean] = ACTIONS(2424), - [anon_sym_string] = ACTIONS(2424), - [anon_sym_symbol] = ACTIONS(2424), - [anon_sym_object] = ACTIONS(2424), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [ts_builtin_sym_end] = ACTIONS(1888), + [sym_identifier] = ACTIONS(1890), + [anon_sym_export] = ACTIONS(1890), + [anon_sym_default] = ACTIONS(1890), + [anon_sym_type] = ACTIONS(1890), + [anon_sym_namespace] = ACTIONS(1890), + [anon_sym_LBRACE] = ACTIONS(1888), + [anon_sym_RBRACE] = ACTIONS(1888), + [anon_sym_typeof] = ACTIONS(1890), + [anon_sym_import] = ACTIONS(1890), + [anon_sym_with] = ACTIONS(1890), + [anon_sym_var] = ACTIONS(1890), + [anon_sym_let] = ACTIONS(1890), + [anon_sym_const] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(1888), + [anon_sym_else] = ACTIONS(1890), + [anon_sym_if] = ACTIONS(1890), + [anon_sym_switch] = ACTIONS(1890), + [anon_sym_for] = ACTIONS(1890), + [anon_sym_LPAREN] = ACTIONS(1888), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_await] = ACTIONS(1890), + [anon_sym_while] = ACTIONS(1890), + [anon_sym_do] = ACTIONS(1890), + [anon_sym_try] = ACTIONS(1890), + [anon_sym_break] = ACTIONS(1890), + [anon_sym_continue] = ACTIONS(1890), + [anon_sym_debugger] = ACTIONS(1890), + [anon_sym_return] = ACTIONS(1890), + [anon_sym_throw] = ACTIONS(1890), + [anon_sym_case] = ACTIONS(1890), + [anon_sym_yield] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1888), + [anon_sym_DOT] = ACTIONS(1890), + [anon_sym_class] = ACTIONS(1890), + [anon_sym_async] = ACTIONS(1890), + [anon_sym_function] = ACTIONS(1890), + [anon_sym_new] = ACTIONS(1890), + [anon_sym_using] = ACTIONS(1890), + [anon_sym_PLUS] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1890), + [anon_sym_SLASH] = ACTIONS(1890), + [anon_sym_LT] = ACTIONS(1888), + [anon_sym_TILDE] = ACTIONS(1888), + [anon_sym_void] = ACTIONS(1890), + [anon_sym_delete] = ACTIONS(1890), + [anon_sym_PLUS_PLUS] = ACTIONS(1888), + [anon_sym_DASH_DASH] = ACTIONS(1888), + [anon_sym_DQUOTE] = ACTIONS(1888), + [anon_sym_SQUOTE] = ACTIONS(1888), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1888), + [sym_number] = ACTIONS(1888), + [sym_private_property_identifier] = ACTIONS(1888), + [sym_this] = ACTIONS(1890), + [sym_super] = ACTIONS(1890), + [sym_true] = ACTIONS(1890), + [sym_false] = ACTIONS(1890), + [sym_null] = ACTIONS(1890), + [sym_undefined] = ACTIONS(1890), + [anon_sym_AT] = ACTIONS(1888), + [anon_sym_static] = ACTIONS(1890), + [anon_sym_readonly] = ACTIONS(1890), + [anon_sym_get] = ACTIONS(1890), + [anon_sym_set] = ACTIONS(1890), + [anon_sym_declare] = ACTIONS(1890), + [anon_sym_public] = ACTIONS(1890), + [anon_sym_private] = ACTIONS(1890), + [anon_sym_protected] = ACTIONS(1890), + [anon_sym_override] = ACTIONS(1890), + [anon_sym_module] = ACTIONS(1890), + [anon_sym_any] = ACTIONS(1890), + [anon_sym_number] = ACTIONS(1890), + [anon_sym_boolean] = ACTIONS(1890), + [anon_sym_string] = ACTIONS(1890), + [anon_sym_symbol] = ACTIONS(1890), + [anon_sym_object] = ACTIONS(1890), + [anon_sym_abstract] = ACTIONS(1890), + [anon_sym_interface] = ACTIONS(1890), + [anon_sym_enum] = ACTIONS(1890), [sym_html_comment] = ACTIONS(5), }, [790] = { - [sym__call_signature] = STATE(5844), - [sym_formal_parameters] = STATE(3893), - [sym_type_parameters] = STATE(5354), - [sym_identifier] = ACTIONS(2422), - [anon_sym_export] = ACTIONS(2424), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2424), - [anon_sym_EQ] = ACTIONS(1051), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2424), - [anon_sym_let] = ACTIONS(2424), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_async] = ACTIONS(2424), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(155), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2424), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_static] = ACTIONS(2424), - [anon_sym_readonly] = ACTIONS(2424), - [anon_sym_get] = ACTIONS(2424), - [anon_sym_set] = ACTIONS(2424), - [anon_sym_declare] = ACTIONS(2424), - [anon_sym_public] = ACTIONS(2424), - [anon_sym_private] = ACTIONS(2424), - [anon_sym_protected] = ACTIONS(2424), - [anon_sym_override] = ACTIONS(2424), - [anon_sym_module] = ACTIONS(2424), - [anon_sym_any] = ACTIONS(2424), - [anon_sym_number] = ACTIONS(2424), - [anon_sym_boolean] = ACTIONS(2424), - [anon_sym_string] = ACTIONS(2424), - [anon_sym_symbol] = ACTIONS(2424), - [anon_sym_object] = ACTIONS(2424), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_else_clause] = STATE(854), + [ts_builtin_sym_end] = ACTIONS(2511), + [sym_identifier] = ACTIONS(2513), + [anon_sym_export] = ACTIONS(2513), + [anon_sym_default] = ACTIONS(2513), + [anon_sym_type] = ACTIONS(2513), + [anon_sym_namespace] = ACTIONS(2513), + [anon_sym_LBRACE] = ACTIONS(2511), + [anon_sym_RBRACE] = ACTIONS(2511), + [anon_sym_typeof] = ACTIONS(2513), + [anon_sym_import] = ACTIONS(2513), + [anon_sym_with] = ACTIONS(2513), + [anon_sym_var] = ACTIONS(2513), + [anon_sym_let] = ACTIONS(2513), + [anon_sym_const] = ACTIONS(2513), + [anon_sym_BANG] = ACTIONS(2511), + [anon_sym_else] = ACTIONS(2515), + [anon_sym_if] = ACTIONS(2513), + [anon_sym_switch] = ACTIONS(2513), + [anon_sym_for] = ACTIONS(2513), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2511), + [anon_sym_await] = ACTIONS(2513), + [anon_sym_while] = ACTIONS(2513), + [anon_sym_do] = ACTIONS(2513), + [anon_sym_try] = ACTIONS(2513), + [anon_sym_break] = ACTIONS(2513), + [anon_sym_continue] = ACTIONS(2513), + [anon_sym_debugger] = ACTIONS(2513), + [anon_sym_return] = ACTIONS(2513), + [anon_sym_throw] = ACTIONS(2513), + [anon_sym_case] = ACTIONS(2513), + [anon_sym_yield] = ACTIONS(2513), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_class] = ACTIONS(2513), + [anon_sym_async] = ACTIONS(2513), + [anon_sym_function] = ACTIONS(2513), + [anon_sym_new] = ACTIONS(2513), + [anon_sym_using] = ACTIONS(2513), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_SLASH] = ACTIONS(2513), + [anon_sym_LT] = ACTIONS(2511), + [anon_sym_TILDE] = ACTIONS(2511), + [anon_sym_void] = ACTIONS(2513), + [anon_sym_delete] = ACTIONS(2513), + [anon_sym_PLUS_PLUS] = ACTIONS(2511), + [anon_sym_DASH_DASH] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [anon_sym_SQUOTE] = ACTIONS(2511), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2511), + [sym_number] = ACTIONS(2511), + [sym_private_property_identifier] = ACTIONS(2511), + [sym_this] = ACTIONS(2513), + [sym_super] = ACTIONS(2513), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [sym_null] = ACTIONS(2513), + [sym_undefined] = ACTIONS(2513), + [anon_sym_AT] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2513), + [anon_sym_readonly] = ACTIONS(2513), + [anon_sym_get] = ACTIONS(2513), + [anon_sym_set] = ACTIONS(2513), + [anon_sym_declare] = ACTIONS(2513), + [anon_sym_public] = ACTIONS(2513), + [anon_sym_private] = ACTIONS(2513), + [anon_sym_protected] = ACTIONS(2513), + [anon_sym_override] = ACTIONS(2513), + [anon_sym_module] = ACTIONS(2513), + [anon_sym_any] = ACTIONS(2513), + [anon_sym_number] = ACTIONS(2513), + [anon_sym_boolean] = ACTIONS(2513), + [anon_sym_string] = ACTIONS(2513), + [anon_sym_symbol] = ACTIONS(2513), + [anon_sym_object] = ACTIONS(2513), + [anon_sym_abstract] = ACTIONS(2513), + [anon_sym_interface] = ACTIONS(2513), + [anon_sym_enum] = ACTIONS(2513), [sym_html_comment] = ACTIONS(5), }, [791] = { - [ts_builtin_sym_end] = ACTIONS(1755), - [sym_identifier] = ACTIONS(1757), - [anon_sym_export] = ACTIONS(1757), - [anon_sym_default] = ACTIONS(1757), - [anon_sym_type] = ACTIONS(1757), - [anon_sym_namespace] = ACTIONS(1757), - [anon_sym_LBRACE] = ACTIONS(1755), - [anon_sym_RBRACE] = ACTIONS(1755), - [anon_sym_typeof] = ACTIONS(1757), - [anon_sym_import] = ACTIONS(1757), - [anon_sym_with] = ACTIONS(1757), - [anon_sym_var] = ACTIONS(1757), - [anon_sym_let] = ACTIONS(1757), - [anon_sym_const] = ACTIONS(1757), - [anon_sym_BANG] = ACTIONS(1755), - [anon_sym_else] = ACTIONS(1757), - [anon_sym_if] = ACTIONS(1757), - [anon_sym_switch] = ACTIONS(1757), - [anon_sym_for] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1755), - [anon_sym_SEMI] = ACTIONS(1755), - [anon_sym_await] = ACTIONS(1757), - [anon_sym_while] = ACTIONS(1757), - [anon_sym_do] = ACTIONS(1757), - [anon_sym_try] = ACTIONS(1757), - [anon_sym_break] = ACTIONS(1757), - [anon_sym_continue] = ACTIONS(1757), - [anon_sym_debugger] = ACTIONS(1757), - [anon_sym_return] = ACTIONS(1757), - [anon_sym_throw] = ACTIONS(1757), - [anon_sym_case] = ACTIONS(1757), - [anon_sym_yield] = ACTIONS(1757), - [anon_sym_LBRACK] = ACTIONS(1755), - [sym_glimmer_opening_tag] = ACTIONS(1755), - [anon_sym_class] = ACTIONS(1757), - [anon_sym_async] = ACTIONS(1757), - [anon_sym_function] = ACTIONS(1757), - [anon_sym_new] = ACTIONS(1757), - [anon_sym_using] = ACTIONS(1757), - [anon_sym_PLUS] = ACTIONS(1757), - [anon_sym_DASH] = ACTIONS(1757), - [anon_sym_SLASH] = ACTIONS(1757), - [anon_sym_LT] = ACTIONS(1757), - [anon_sym_TILDE] = ACTIONS(1755), - [anon_sym_void] = ACTIONS(1757), - [anon_sym_delete] = ACTIONS(1757), - [anon_sym_PLUS_PLUS] = ACTIONS(1755), - [anon_sym_DASH_DASH] = ACTIONS(1755), - [anon_sym_DQUOTE] = ACTIONS(1755), - [anon_sym_SQUOTE] = ACTIONS(1755), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1755), - [sym_number] = ACTIONS(1755), - [sym_private_property_identifier] = ACTIONS(1755), - [sym_this] = ACTIONS(1757), - [sym_super] = ACTIONS(1757), - [sym_true] = ACTIONS(1757), - [sym_false] = ACTIONS(1757), - [sym_null] = ACTIONS(1757), - [sym_undefined] = ACTIONS(1757), - [anon_sym_AT] = ACTIONS(1755), - [anon_sym_static] = ACTIONS(1757), - [anon_sym_readonly] = ACTIONS(1757), - [anon_sym_get] = ACTIONS(1757), - [anon_sym_set] = ACTIONS(1757), - [anon_sym_declare] = ACTIONS(1757), - [anon_sym_public] = ACTIONS(1757), - [anon_sym_private] = ACTIONS(1757), - [anon_sym_protected] = ACTIONS(1757), - [anon_sym_override] = ACTIONS(1757), - [anon_sym_module] = ACTIONS(1757), - [anon_sym_any] = ACTIONS(1757), - [anon_sym_number] = ACTIONS(1757), - [anon_sym_boolean] = ACTIONS(1757), - [anon_sym_string] = ACTIONS(1757), - [anon_sym_symbol] = ACTIONS(1757), - [anon_sym_object] = ACTIONS(1757), - [anon_sym_abstract] = ACTIONS(1757), - [anon_sym_interface] = ACTIONS(1757), - [anon_sym_enum] = ACTIONS(1757), - [sym__automatic_semicolon] = ACTIONS(1763), + [ts_builtin_sym_end] = ACTIONS(1830), + [sym_identifier] = ACTIONS(1832), + [anon_sym_export] = ACTIONS(1832), + [anon_sym_default] = ACTIONS(1832), + [anon_sym_type] = ACTIONS(1832), + [anon_sym_namespace] = ACTIONS(1832), + [anon_sym_LBRACE] = ACTIONS(1830), + [anon_sym_RBRACE] = ACTIONS(1830), + [anon_sym_typeof] = ACTIONS(1832), + [anon_sym_import] = ACTIONS(1832), + [anon_sym_with] = ACTIONS(1832), + [anon_sym_var] = ACTIONS(1832), + [anon_sym_let] = ACTIONS(1832), + [anon_sym_const] = ACTIONS(1832), + [anon_sym_BANG] = ACTIONS(1830), + [anon_sym_else] = ACTIONS(1832), + [anon_sym_if] = ACTIONS(1832), + [anon_sym_switch] = ACTIONS(1832), + [anon_sym_for] = ACTIONS(1832), + [anon_sym_LPAREN] = ACTIONS(1830), + [anon_sym_SEMI] = ACTIONS(1830), + [anon_sym_await] = ACTIONS(1832), + [anon_sym_while] = ACTIONS(1832), + [anon_sym_do] = ACTIONS(1832), + [anon_sym_try] = ACTIONS(1832), + [anon_sym_break] = ACTIONS(1832), + [anon_sym_continue] = ACTIONS(1832), + [anon_sym_debugger] = ACTIONS(1832), + [anon_sym_return] = ACTIONS(1832), + [anon_sym_throw] = ACTIONS(1832), + [anon_sym_case] = ACTIONS(1832), + [anon_sym_yield] = ACTIONS(1832), + [anon_sym_LBRACK] = ACTIONS(1830), + [anon_sym_class] = ACTIONS(1832), + [anon_sym_async] = ACTIONS(1832), + [anon_sym_function] = ACTIONS(1832), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_using] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1832), + [anon_sym_DASH] = ACTIONS(1832), + [anon_sym_SLASH] = ACTIONS(1832), + [anon_sym_LT] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1830), + [anon_sym_void] = ACTIONS(1832), + [anon_sym_delete] = ACTIONS(1832), + [anon_sym_PLUS_PLUS] = ACTIONS(1830), + [anon_sym_DASH_DASH] = ACTIONS(1830), + [anon_sym_DQUOTE] = ACTIONS(1830), + [anon_sym_SQUOTE] = ACTIONS(1830), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1830), + [sym_number] = ACTIONS(1830), + [sym_private_property_identifier] = ACTIONS(1830), + [sym_this] = ACTIONS(1832), + [sym_super] = ACTIONS(1832), + [sym_true] = ACTIONS(1832), + [sym_false] = ACTIONS(1832), + [sym_null] = ACTIONS(1832), + [sym_undefined] = ACTIONS(1832), + [anon_sym_AT] = ACTIONS(1830), + [anon_sym_static] = ACTIONS(1832), + [anon_sym_readonly] = ACTIONS(1832), + [anon_sym_get] = ACTIONS(1832), + [anon_sym_set] = ACTIONS(1832), + [anon_sym_declare] = ACTIONS(1832), + [anon_sym_public] = ACTIONS(1832), + [anon_sym_private] = ACTIONS(1832), + [anon_sym_protected] = ACTIONS(1832), + [anon_sym_override] = ACTIONS(1832), + [anon_sym_module] = ACTIONS(1832), + [anon_sym_any] = ACTIONS(1832), + [anon_sym_number] = ACTIONS(1832), + [anon_sym_boolean] = ACTIONS(1832), + [anon_sym_string] = ACTIONS(1832), + [anon_sym_symbol] = ACTIONS(1832), + [anon_sym_object] = ACTIONS(1832), + [anon_sym_abstract] = ACTIONS(1832), + [anon_sym_interface] = ACTIONS(1832), + [anon_sym_enum] = ACTIONS(1832), + [sym__automatic_semicolon] = ACTIONS(1838), [sym_html_comment] = ACTIONS(5), }, [792] = { - [sym_else_clause] = STATE(857), - [ts_builtin_sym_end] = ACTIONS(2514), - [sym_identifier] = ACTIONS(2516), - [anon_sym_export] = ACTIONS(2516), - [anon_sym_default] = ACTIONS(2516), - [anon_sym_type] = ACTIONS(2516), - [anon_sym_namespace] = ACTIONS(2516), - [anon_sym_LBRACE] = ACTIONS(2514), - [anon_sym_RBRACE] = ACTIONS(2514), - [anon_sym_typeof] = ACTIONS(2516), - [anon_sym_import] = ACTIONS(2516), - [anon_sym_with] = ACTIONS(2516), - [anon_sym_var] = ACTIONS(2516), - [anon_sym_let] = ACTIONS(2516), - [anon_sym_const] = ACTIONS(2516), - [anon_sym_BANG] = ACTIONS(2514), - [anon_sym_else] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2516), - [anon_sym_switch] = ACTIONS(2516), - [anon_sym_for] = ACTIONS(2516), - [anon_sym_LPAREN] = ACTIONS(2514), - [anon_sym_SEMI] = ACTIONS(2514), - [anon_sym_await] = ACTIONS(2516), - [anon_sym_while] = ACTIONS(2516), - [anon_sym_do] = ACTIONS(2516), - [anon_sym_try] = ACTIONS(2516), - [anon_sym_break] = ACTIONS(2516), - [anon_sym_continue] = ACTIONS(2516), - [anon_sym_debugger] = ACTIONS(2516), - [anon_sym_return] = ACTIONS(2516), - [anon_sym_throw] = ACTIONS(2516), - [anon_sym_case] = ACTIONS(2516), - [anon_sym_yield] = ACTIONS(2516), - [anon_sym_LBRACK] = ACTIONS(2514), - [sym_glimmer_opening_tag] = ACTIONS(2514), - [anon_sym_class] = ACTIONS(2516), - [anon_sym_async] = ACTIONS(2516), - [anon_sym_function] = ACTIONS(2516), - [anon_sym_new] = ACTIONS(2516), - [anon_sym_using] = ACTIONS(2516), - [anon_sym_PLUS] = ACTIONS(2516), - [anon_sym_DASH] = ACTIONS(2516), - [anon_sym_SLASH] = ACTIONS(2516), - [anon_sym_LT] = ACTIONS(2516), - [anon_sym_TILDE] = ACTIONS(2514), - [anon_sym_void] = ACTIONS(2516), - [anon_sym_delete] = ACTIONS(2516), - [anon_sym_PLUS_PLUS] = ACTIONS(2514), - [anon_sym_DASH_DASH] = ACTIONS(2514), - [anon_sym_DQUOTE] = ACTIONS(2514), - [anon_sym_SQUOTE] = ACTIONS(2514), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2514), - [sym_number] = ACTIONS(2514), - [sym_private_property_identifier] = ACTIONS(2514), - [sym_this] = ACTIONS(2516), - [sym_super] = ACTIONS(2516), - [sym_true] = ACTIONS(2516), - [sym_false] = ACTIONS(2516), - [sym_null] = ACTIONS(2516), - [sym_undefined] = ACTIONS(2516), - [anon_sym_AT] = ACTIONS(2514), - [anon_sym_static] = ACTIONS(2516), - [anon_sym_readonly] = ACTIONS(2516), - [anon_sym_get] = ACTIONS(2516), - [anon_sym_set] = ACTIONS(2516), - [anon_sym_declare] = ACTIONS(2516), - [anon_sym_public] = ACTIONS(2516), - [anon_sym_private] = ACTIONS(2516), - [anon_sym_protected] = ACTIONS(2516), - [anon_sym_override] = ACTIONS(2516), - [anon_sym_module] = ACTIONS(2516), - [anon_sym_any] = ACTIONS(2516), - [anon_sym_number] = ACTIONS(2516), - [anon_sym_boolean] = ACTIONS(2516), - [anon_sym_string] = ACTIONS(2516), - [anon_sym_symbol] = ACTIONS(2516), - [anon_sym_object] = ACTIONS(2516), - [anon_sym_abstract] = ACTIONS(2516), - [anon_sym_interface] = ACTIONS(2516), - [anon_sym_enum] = ACTIONS(2516), + [ts_builtin_sym_end] = ACTIONS(1758), + [sym_identifier] = ACTIONS(1760), + [anon_sym_export] = ACTIONS(1760), + [anon_sym_default] = ACTIONS(1760), + [anon_sym_type] = ACTIONS(1760), + [anon_sym_namespace] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1758), + [anon_sym_RBRACE] = ACTIONS(1758), + [anon_sym_typeof] = ACTIONS(1760), + [anon_sym_import] = ACTIONS(1760), + [anon_sym_with] = ACTIONS(1760), + [anon_sym_var] = ACTIONS(1760), + [anon_sym_let] = ACTIONS(1760), + [anon_sym_const] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(1758), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_switch] = ACTIONS(1760), + [anon_sym_for] = ACTIONS(1760), + [anon_sym_LPAREN] = ACTIONS(1758), + [anon_sym_SEMI] = ACTIONS(1758), + [anon_sym_await] = ACTIONS(1760), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_do] = ACTIONS(1760), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_debugger] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_throw] = ACTIONS(1760), + [anon_sym_case] = ACTIONS(1760), + [anon_sym_yield] = ACTIONS(1760), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_class] = ACTIONS(1760), + [anon_sym_async] = ACTIONS(1760), + [anon_sym_function] = ACTIONS(1760), + [anon_sym_new] = ACTIONS(1760), + [anon_sym_using] = ACTIONS(1760), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_LT] = ACTIONS(1758), + [anon_sym_TILDE] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(1760), + [anon_sym_delete] = ACTIONS(1760), + [anon_sym_PLUS_PLUS] = ACTIONS(1758), + [anon_sym_DASH_DASH] = ACTIONS(1758), + [anon_sym_DQUOTE] = ACTIONS(1758), + [anon_sym_SQUOTE] = ACTIONS(1758), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1758), + [sym_number] = ACTIONS(1758), + [sym_private_property_identifier] = ACTIONS(1758), + [sym_this] = ACTIONS(1760), + [sym_super] = ACTIONS(1760), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_null] = ACTIONS(1760), + [sym_undefined] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(1758), + [anon_sym_static] = ACTIONS(1760), + [anon_sym_readonly] = ACTIONS(1760), + [anon_sym_get] = ACTIONS(1760), + [anon_sym_set] = ACTIONS(1760), + [anon_sym_declare] = ACTIONS(1760), + [anon_sym_public] = ACTIONS(1760), + [anon_sym_private] = ACTIONS(1760), + [anon_sym_protected] = ACTIONS(1760), + [anon_sym_override] = ACTIONS(1760), + [anon_sym_module] = ACTIONS(1760), + [anon_sym_any] = ACTIONS(1760), + [anon_sym_number] = ACTIONS(1760), + [anon_sym_boolean] = ACTIONS(1760), + [anon_sym_string] = ACTIONS(1760), + [anon_sym_symbol] = ACTIONS(1760), + [anon_sym_object] = ACTIONS(1760), + [anon_sym_abstract] = ACTIONS(1760), + [anon_sym_interface] = ACTIONS(1760), + [anon_sym_enum] = ACTIONS(1760), + [sym__automatic_semicolon] = ACTIONS(1766), [sym_html_comment] = ACTIONS(5), }, [793] = { - [ts_builtin_sym_end] = ACTIONS(2520), - [sym_identifier] = ACTIONS(2522), - [anon_sym_export] = ACTIONS(2522), - [anon_sym_default] = ACTIONS(2522), - [anon_sym_type] = ACTIONS(2522), - [anon_sym_namespace] = ACTIONS(2522), - [anon_sym_LBRACE] = ACTIONS(2520), - [anon_sym_RBRACE] = ACTIONS(2520), - [anon_sym_typeof] = ACTIONS(2522), - [anon_sym_import] = ACTIONS(2522), - [anon_sym_with] = ACTIONS(2522), - [anon_sym_var] = ACTIONS(2522), - [anon_sym_let] = ACTIONS(2522), - [anon_sym_const] = ACTIONS(2522), - [anon_sym_BANG] = ACTIONS(2520), - [anon_sym_else] = ACTIONS(2522), - [anon_sym_if] = ACTIONS(2522), - [anon_sym_switch] = ACTIONS(2522), - [anon_sym_for] = ACTIONS(2522), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_SEMI] = ACTIONS(2520), - [anon_sym_await] = ACTIONS(2522), - [anon_sym_while] = ACTIONS(2522), - [anon_sym_do] = ACTIONS(2522), - [anon_sym_try] = ACTIONS(2522), - [anon_sym_break] = ACTIONS(2522), - [anon_sym_continue] = ACTIONS(2522), - [anon_sym_debugger] = ACTIONS(2522), - [anon_sym_return] = ACTIONS(2522), - [anon_sym_throw] = ACTIONS(2522), - [anon_sym_case] = ACTIONS(2522), - [anon_sym_yield] = ACTIONS(2522), - [anon_sym_LBRACK] = ACTIONS(2520), - [sym_glimmer_opening_tag] = ACTIONS(2520), - [anon_sym_class] = ACTIONS(2522), - [anon_sym_async] = ACTIONS(2522), - [anon_sym_function] = ACTIONS(2522), - [anon_sym_new] = ACTIONS(2522), - [anon_sym_using] = ACTIONS(2522), - [anon_sym_PLUS] = ACTIONS(2522), - [anon_sym_DASH] = ACTIONS(2522), - [anon_sym_SLASH] = ACTIONS(2522), - [anon_sym_LT] = ACTIONS(2522), - [anon_sym_TILDE] = ACTIONS(2520), - [anon_sym_void] = ACTIONS(2522), - [anon_sym_delete] = ACTIONS(2522), - [anon_sym_PLUS_PLUS] = ACTIONS(2520), - [anon_sym_DASH_DASH] = ACTIONS(2520), - [anon_sym_DQUOTE] = ACTIONS(2520), - [anon_sym_SQUOTE] = ACTIONS(2520), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2520), - [sym_number] = ACTIONS(2520), - [sym_private_property_identifier] = ACTIONS(2520), - [sym_this] = ACTIONS(2522), - [sym_super] = ACTIONS(2522), - [sym_true] = ACTIONS(2522), - [sym_false] = ACTIONS(2522), - [sym_null] = ACTIONS(2522), - [sym_undefined] = ACTIONS(2522), - [anon_sym_AT] = ACTIONS(2520), - [anon_sym_static] = ACTIONS(2522), - [anon_sym_readonly] = ACTIONS(2522), - [anon_sym_get] = ACTIONS(2522), - [anon_sym_set] = ACTIONS(2522), - [anon_sym_declare] = ACTIONS(2522), - [anon_sym_public] = ACTIONS(2522), - [anon_sym_private] = ACTIONS(2522), - [anon_sym_protected] = ACTIONS(2522), - [anon_sym_override] = ACTIONS(2522), - [anon_sym_module] = ACTIONS(2522), - [anon_sym_any] = ACTIONS(2522), - [anon_sym_number] = ACTIONS(2522), - [anon_sym_boolean] = ACTIONS(2522), - [anon_sym_string] = ACTIONS(2522), - [anon_sym_symbol] = ACTIONS(2522), - [anon_sym_object] = ACTIONS(2522), - [anon_sym_abstract] = ACTIONS(2522), - [anon_sym_interface] = ACTIONS(2522), - [anon_sym_enum] = ACTIONS(2522), - [sym__automatic_semicolon] = ACTIONS(2520), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_rest_pattern] = STATE(5165), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3773), + [sym_tuple_parameter] = STATE(4540), + [sym_optional_tuple_parameter] = STATE(4540), + [sym_optional_type] = STATE(4540), + [sym_rest_type] = STATE(4540), + [sym__tuple_type_member] = STATE(4540), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(2489), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_COMMA] = ACTIONS(2517), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(2519), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2495), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [794] = { - [sym__call_signature] = STATE(5844), - [sym_formal_parameters] = STATE(3893), - [sym_type_parameters] = STATE(5354), - [sym_identifier] = ACTIONS(2422), - [anon_sym_export] = ACTIONS(2424), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2424), - [anon_sym_EQ] = ACTIONS(987), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2424), - [anon_sym_let] = ACTIONS(2424), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_async] = ACTIONS(2424), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(155), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2424), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_static] = ACTIONS(2424), - [anon_sym_readonly] = ACTIONS(2424), - [anon_sym_get] = ACTIONS(2424), - [anon_sym_set] = ACTIONS(2424), - [anon_sym_declare] = ACTIONS(2424), - [anon_sym_public] = ACTIONS(2424), - [anon_sym_private] = ACTIONS(2424), - [anon_sym_protected] = ACTIONS(2424), - [anon_sym_override] = ACTIONS(2424), - [anon_sym_module] = ACTIONS(2424), - [anon_sym_any] = ACTIONS(2424), - [anon_sym_number] = ACTIONS(2424), - [anon_sym_boolean] = ACTIONS(2424), - [anon_sym_string] = ACTIONS(2424), - [anon_sym_symbol] = ACTIONS(2424), - [anon_sym_object] = ACTIONS(2424), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [ts_builtin_sym_end] = ACTIONS(1842), + [sym_identifier] = ACTIONS(1844), + [anon_sym_export] = ACTIONS(1844), + [anon_sym_default] = ACTIONS(1844), + [anon_sym_type] = ACTIONS(1844), + [anon_sym_namespace] = ACTIONS(1844), + [anon_sym_LBRACE] = ACTIONS(1842), + [anon_sym_RBRACE] = ACTIONS(1842), + [anon_sym_typeof] = ACTIONS(1844), + [anon_sym_import] = ACTIONS(1844), + [anon_sym_with] = ACTIONS(1844), + [anon_sym_var] = ACTIONS(1844), + [anon_sym_let] = ACTIONS(1844), + [anon_sym_const] = ACTIONS(1844), + [anon_sym_BANG] = ACTIONS(1842), + [anon_sym_else] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1844), + [anon_sym_switch] = ACTIONS(1844), + [anon_sym_for] = ACTIONS(1844), + [anon_sym_LPAREN] = ACTIONS(1842), + [anon_sym_SEMI] = ACTIONS(1842), + [anon_sym_await] = ACTIONS(1844), + [anon_sym_while] = ACTIONS(1844), + [anon_sym_do] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(1844), + [anon_sym_break] = ACTIONS(1844), + [anon_sym_continue] = ACTIONS(1844), + [anon_sym_debugger] = ACTIONS(1844), + [anon_sym_return] = ACTIONS(1844), + [anon_sym_throw] = ACTIONS(1844), + [anon_sym_case] = ACTIONS(1844), + [anon_sym_yield] = ACTIONS(1844), + [anon_sym_LBRACK] = ACTIONS(1842), + [anon_sym_class] = ACTIONS(1844), + [anon_sym_async] = ACTIONS(1844), + [anon_sym_function] = ACTIONS(1844), + [anon_sym_new] = ACTIONS(1844), + [anon_sym_using] = ACTIONS(1844), + [anon_sym_PLUS] = ACTIONS(1844), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_SLASH] = ACTIONS(1844), + [anon_sym_LT] = ACTIONS(1842), + [anon_sym_TILDE] = ACTIONS(1842), + [anon_sym_void] = ACTIONS(1844), + [anon_sym_delete] = ACTIONS(1844), + [anon_sym_PLUS_PLUS] = ACTIONS(1842), + [anon_sym_DASH_DASH] = ACTIONS(1842), + [anon_sym_DQUOTE] = ACTIONS(1842), + [anon_sym_SQUOTE] = ACTIONS(1842), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1842), + [sym_number] = ACTIONS(1842), + [sym_private_property_identifier] = ACTIONS(1842), + [sym_this] = ACTIONS(1844), + [sym_super] = ACTIONS(1844), + [sym_true] = ACTIONS(1844), + [sym_false] = ACTIONS(1844), + [sym_null] = ACTIONS(1844), + [sym_undefined] = ACTIONS(1844), + [anon_sym_AT] = ACTIONS(1842), + [anon_sym_static] = ACTIONS(1844), + [anon_sym_readonly] = ACTIONS(1844), + [anon_sym_get] = ACTIONS(1844), + [anon_sym_set] = ACTIONS(1844), + [anon_sym_declare] = ACTIONS(1844), + [anon_sym_public] = ACTIONS(1844), + [anon_sym_private] = ACTIONS(1844), + [anon_sym_protected] = ACTIONS(1844), + [anon_sym_override] = ACTIONS(1844), + [anon_sym_module] = ACTIONS(1844), + [anon_sym_any] = ACTIONS(1844), + [anon_sym_number] = ACTIONS(1844), + [anon_sym_boolean] = ACTIONS(1844), + [anon_sym_string] = ACTIONS(1844), + [anon_sym_symbol] = ACTIONS(1844), + [anon_sym_object] = ACTIONS(1844), + [anon_sym_abstract] = ACTIONS(1844), + [anon_sym_interface] = ACTIONS(1844), + [anon_sym_enum] = ACTIONS(1844), + [sym__automatic_semicolon] = ACTIONS(1850), [sym_html_comment] = ACTIONS(5), }, [795] = { - [ts_builtin_sym_end] = ACTIONS(1779), - [sym_identifier] = ACTIONS(1781), - [anon_sym_export] = ACTIONS(1781), - [anon_sym_default] = ACTIONS(1781), - [anon_sym_type] = ACTIONS(1781), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1779), - [anon_sym_RBRACE] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1781), - [anon_sym_import] = ACTIONS(1781), - [anon_sym_with] = ACTIONS(1781), - [anon_sym_var] = ACTIONS(1781), - [anon_sym_let] = ACTIONS(1781), - [anon_sym_const] = ACTIONS(1781), - [anon_sym_BANG] = ACTIONS(1779), - [anon_sym_else] = ACTIONS(1781), - [anon_sym_if] = ACTIONS(1781), - [anon_sym_switch] = ACTIONS(1781), - [anon_sym_for] = ACTIONS(1781), - [anon_sym_LPAREN] = ACTIONS(1779), - [anon_sym_SEMI] = ACTIONS(1779), - [anon_sym_await] = ACTIONS(1781), - [anon_sym_while] = ACTIONS(1781), - [anon_sym_do] = ACTIONS(1781), - [anon_sym_try] = ACTIONS(1781), - [anon_sym_break] = ACTIONS(1781), - [anon_sym_continue] = ACTIONS(1781), - [anon_sym_debugger] = ACTIONS(1781), - [anon_sym_return] = ACTIONS(1781), - [anon_sym_throw] = ACTIONS(1781), - [anon_sym_case] = ACTIONS(1781), - [anon_sym_yield] = ACTIONS(1781), - [anon_sym_LBRACK] = ACTIONS(1779), - [sym_glimmer_opening_tag] = ACTIONS(1779), - [anon_sym_class] = ACTIONS(1781), - [anon_sym_async] = ACTIONS(1781), - [anon_sym_function] = ACTIONS(1781), - [anon_sym_new] = ACTIONS(1781), - [anon_sym_using] = ACTIONS(1781), - [anon_sym_PLUS] = ACTIONS(1781), - [anon_sym_DASH] = ACTIONS(1781), - [anon_sym_SLASH] = ACTIONS(1781), - [anon_sym_LT] = ACTIONS(1781), - [anon_sym_TILDE] = ACTIONS(1779), - [anon_sym_void] = ACTIONS(1781), - [anon_sym_delete] = ACTIONS(1781), - [anon_sym_PLUS_PLUS] = ACTIONS(1779), - [anon_sym_DASH_DASH] = ACTIONS(1779), - [anon_sym_DQUOTE] = ACTIONS(1779), - [anon_sym_SQUOTE] = ACTIONS(1779), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1779), - [sym_number] = ACTIONS(1779), - [sym_private_property_identifier] = ACTIONS(1779), - [sym_this] = ACTIONS(1781), - [sym_super] = ACTIONS(1781), - [sym_true] = ACTIONS(1781), - [sym_false] = ACTIONS(1781), - [sym_null] = ACTIONS(1781), - [sym_undefined] = ACTIONS(1781), - [anon_sym_AT] = ACTIONS(1779), - [anon_sym_static] = ACTIONS(1781), - [anon_sym_readonly] = ACTIONS(1781), - [anon_sym_get] = ACTIONS(1781), - [anon_sym_set] = ACTIONS(1781), - [anon_sym_declare] = ACTIONS(1781), - [anon_sym_public] = ACTIONS(1781), - [anon_sym_private] = ACTIONS(1781), - [anon_sym_protected] = ACTIONS(1781), - [anon_sym_override] = ACTIONS(1781), - [anon_sym_module] = ACTIONS(1781), - [anon_sym_any] = ACTIONS(1781), - [anon_sym_number] = ACTIONS(1781), - [anon_sym_boolean] = ACTIONS(1781), - [anon_sym_string] = ACTIONS(1781), - [anon_sym_symbol] = ACTIONS(1781), - [anon_sym_object] = ACTIONS(1781), - [anon_sym_abstract] = ACTIONS(1781), - [anon_sym_interface] = ACTIONS(1781), - [anon_sym_enum] = ACTIONS(1781), - [sym__automatic_semicolon] = ACTIONS(1787), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_rest_pattern] = STATE(5165), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3773), + [sym_tuple_parameter] = STATE(4586), + [sym_optional_tuple_parameter] = STATE(4586), + [sym_optional_type] = STATE(4586), + [sym_rest_type] = STATE(4586), + [sym__tuple_type_member] = STATE(4586), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(2489), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_COMMA] = ACTIONS(2521), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(2523), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2495), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [796] = { - [ts_builtin_sym_end] = ACTIONS(2524), - [sym_identifier] = ACTIONS(2526), - [anon_sym_export] = ACTIONS(2526), - [anon_sym_default] = ACTIONS(2526), - [anon_sym_type] = ACTIONS(2526), - [anon_sym_namespace] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2524), - [anon_sym_RBRACE] = ACTIONS(2524), - [anon_sym_typeof] = ACTIONS(2526), - [anon_sym_import] = ACTIONS(2526), - [anon_sym_with] = ACTIONS(2526), - [anon_sym_var] = ACTIONS(2526), - [anon_sym_let] = ACTIONS(2526), - [anon_sym_const] = ACTIONS(2526), - [anon_sym_BANG] = ACTIONS(2524), - [anon_sym_else] = ACTIONS(2526), - [anon_sym_if] = ACTIONS(2526), - [anon_sym_switch] = ACTIONS(2526), - [anon_sym_for] = ACTIONS(2526), - [anon_sym_LPAREN] = ACTIONS(2524), - [anon_sym_SEMI] = ACTIONS(2524), - [anon_sym_await] = ACTIONS(2526), - [anon_sym_while] = ACTIONS(2526), - [anon_sym_do] = ACTIONS(2526), - [anon_sym_try] = ACTIONS(2526), - [anon_sym_break] = ACTIONS(2526), - [anon_sym_continue] = ACTIONS(2526), - [anon_sym_debugger] = ACTIONS(2526), - [anon_sym_return] = ACTIONS(2526), - [anon_sym_throw] = ACTIONS(2526), - [anon_sym_case] = ACTIONS(2526), - [anon_sym_finally] = ACTIONS(2526), - [anon_sym_yield] = ACTIONS(2526), - [anon_sym_LBRACK] = ACTIONS(2524), - [sym_glimmer_opening_tag] = ACTIONS(2524), - [anon_sym_class] = ACTIONS(2526), - [anon_sym_async] = ACTIONS(2526), - [anon_sym_function] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2526), - [anon_sym_using] = ACTIONS(2526), - [anon_sym_PLUS] = ACTIONS(2526), - [anon_sym_DASH] = ACTIONS(2526), - [anon_sym_SLASH] = ACTIONS(2526), - [anon_sym_LT] = ACTIONS(2526), - [anon_sym_TILDE] = ACTIONS(2524), - [anon_sym_void] = ACTIONS(2526), - [anon_sym_delete] = ACTIONS(2526), - [anon_sym_PLUS_PLUS] = ACTIONS(2524), - [anon_sym_DASH_DASH] = ACTIONS(2524), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2524), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2524), - [sym_number] = ACTIONS(2524), - [sym_private_property_identifier] = ACTIONS(2524), - [sym_this] = ACTIONS(2526), - [sym_super] = ACTIONS(2526), - [sym_true] = ACTIONS(2526), - [sym_false] = ACTIONS(2526), - [sym_null] = ACTIONS(2526), - [sym_undefined] = ACTIONS(2526), - [anon_sym_AT] = ACTIONS(2524), - [anon_sym_static] = ACTIONS(2526), - [anon_sym_readonly] = ACTIONS(2526), - [anon_sym_get] = ACTIONS(2526), - [anon_sym_set] = ACTIONS(2526), - [anon_sym_declare] = ACTIONS(2526), - [anon_sym_public] = ACTIONS(2526), - [anon_sym_private] = ACTIONS(2526), - [anon_sym_protected] = ACTIONS(2526), - [anon_sym_override] = ACTIONS(2526), - [anon_sym_module] = ACTIONS(2526), - [anon_sym_any] = ACTIONS(2526), - [anon_sym_number] = ACTIONS(2526), - [anon_sym_boolean] = ACTIONS(2526), - [anon_sym_string] = ACTIONS(2526), - [anon_sym_symbol] = ACTIONS(2526), - [anon_sym_object] = ACTIONS(2526), - [anon_sym_abstract] = ACTIONS(2526), - [anon_sym_interface] = ACTIONS(2526), - [anon_sym_enum] = ACTIONS(2526), + [ts_builtin_sym_end] = ACTIONS(1780), + [sym_identifier] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(1782), + [anon_sym_default] = ACTIONS(1782), + [anon_sym_type] = ACTIONS(1782), + [anon_sym_namespace] = ACTIONS(1782), + [anon_sym_LBRACE] = ACTIONS(1780), + [anon_sym_RBRACE] = ACTIONS(1780), + [anon_sym_typeof] = ACTIONS(1782), + [anon_sym_import] = ACTIONS(1782), + [anon_sym_with] = ACTIONS(1782), + [anon_sym_var] = ACTIONS(1782), + [anon_sym_let] = ACTIONS(1782), + [anon_sym_const] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_else] = ACTIONS(1782), + [anon_sym_if] = ACTIONS(1782), + [anon_sym_switch] = ACTIONS(1782), + [anon_sym_for] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1780), + [anon_sym_await] = ACTIONS(1782), + [anon_sym_while] = ACTIONS(1782), + [anon_sym_do] = ACTIONS(1782), + [anon_sym_try] = ACTIONS(1782), + [anon_sym_break] = ACTIONS(1782), + [anon_sym_continue] = ACTIONS(1782), + [anon_sym_debugger] = ACTIONS(1782), + [anon_sym_return] = ACTIONS(1782), + [anon_sym_throw] = ACTIONS(1782), + [anon_sym_case] = ACTIONS(1782), + [anon_sym_yield] = ACTIONS(1782), + [anon_sym_LBRACK] = ACTIONS(1780), + [anon_sym_class] = ACTIONS(1782), + [anon_sym_async] = ACTIONS(1782), + [anon_sym_function] = ACTIONS(1782), + [anon_sym_new] = ACTIONS(1782), + [anon_sym_using] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1782), + [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_SLASH] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_TILDE] = ACTIONS(1780), + [anon_sym_void] = ACTIONS(1782), + [anon_sym_delete] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1780), + [anon_sym_DASH_DASH] = ACTIONS(1780), + [anon_sym_DQUOTE] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1780), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1780), + [sym_number] = ACTIONS(1780), + [sym_private_property_identifier] = ACTIONS(1780), + [sym_this] = ACTIONS(1782), + [sym_super] = ACTIONS(1782), + [sym_true] = ACTIONS(1782), + [sym_false] = ACTIONS(1782), + [sym_null] = ACTIONS(1782), + [sym_undefined] = ACTIONS(1782), + [anon_sym_AT] = ACTIONS(1780), + [anon_sym_static] = ACTIONS(1782), + [anon_sym_readonly] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(1782), + [anon_sym_set] = ACTIONS(1782), + [anon_sym_declare] = ACTIONS(1782), + [anon_sym_public] = ACTIONS(1782), + [anon_sym_private] = ACTIONS(1782), + [anon_sym_protected] = ACTIONS(1782), + [anon_sym_override] = ACTIONS(1782), + [anon_sym_module] = ACTIONS(1782), + [anon_sym_any] = ACTIONS(1782), + [anon_sym_number] = ACTIONS(1782), + [anon_sym_boolean] = ACTIONS(1782), + [anon_sym_string] = ACTIONS(1782), + [anon_sym_symbol] = ACTIONS(1782), + [anon_sym_object] = ACTIONS(1782), + [anon_sym_abstract] = ACTIONS(1782), + [anon_sym_interface] = ACTIONS(1782), + [anon_sym_enum] = ACTIONS(1782), + [sym__automatic_semicolon] = ACTIONS(1788), [sym_html_comment] = ACTIONS(5), }, [797] = { - [sym__call_signature] = STATE(5844), - [sym_formal_parameters] = STATE(3893), - [sym_type_parameters] = STATE(5354), - [sym_identifier] = ACTIONS(2422), - [anon_sym_export] = ACTIONS(2424), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2424), - [anon_sym_EQ] = ACTIONS(993), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2424), - [anon_sym_let] = ACTIONS(2424), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_async] = ACTIONS(2424), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(155), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2424), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_static] = ACTIONS(2424), - [anon_sym_readonly] = ACTIONS(2424), - [anon_sym_get] = ACTIONS(2424), - [anon_sym_set] = ACTIONS(2424), - [anon_sym_declare] = ACTIONS(2424), - [anon_sym_public] = ACTIONS(2424), - [anon_sym_private] = ACTIONS(2424), - [anon_sym_protected] = ACTIONS(2424), - [anon_sym_override] = ACTIONS(2424), - [anon_sym_module] = ACTIONS(2424), - [anon_sym_any] = ACTIONS(2424), - [anon_sym_number] = ACTIONS(2424), - [anon_sym_boolean] = ACTIONS(2424), - [anon_sym_string] = ACTIONS(2424), - [anon_sym_symbol] = ACTIONS(2424), - [anon_sym_object] = ACTIONS(2424), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [ts_builtin_sym_end] = ACTIONS(1820), + [sym_identifier] = ACTIONS(1822), + [anon_sym_export] = ACTIONS(1822), + [anon_sym_default] = ACTIONS(1822), + [anon_sym_type] = ACTIONS(1822), + [anon_sym_namespace] = ACTIONS(1822), + [anon_sym_LBRACE] = ACTIONS(1820), + [anon_sym_RBRACE] = ACTIONS(1820), + [anon_sym_typeof] = ACTIONS(1822), + [anon_sym_import] = ACTIONS(1822), + [anon_sym_with] = ACTIONS(1822), + [anon_sym_var] = ACTIONS(1822), + [anon_sym_let] = ACTIONS(1822), + [anon_sym_const] = ACTIONS(1822), + [anon_sym_BANG] = ACTIONS(1820), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_if] = ACTIONS(1822), + [anon_sym_switch] = ACTIONS(1822), + [anon_sym_for] = ACTIONS(1822), + [anon_sym_LPAREN] = ACTIONS(1820), + [anon_sym_SEMI] = ACTIONS(1820), + [anon_sym_await] = ACTIONS(1822), + [anon_sym_while] = ACTIONS(1822), + [anon_sym_do] = ACTIONS(1822), + [anon_sym_try] = ACTIONS(1822), + [anon_sym_break] = ACTIONS(1822), + [anon_sym_continue] = ACTIONS(1822), + [anon_sym_debugger] = ACTIONS(1822), + [anon_sym_return] = ACTIONS(1822), + [anon_sym_throw] = ACTIONS(1822), + [anon_sym_case] = ACTIONS(1822), + [anon_sym_yield] = ACTIONS(1822), + [anon_sym_LBRACK] = ACTIONS(1820), + [anon_sym_class] = ACTIONS(1822), + [anon_sym_async] = ACTIONS(1822), + [anon_sym_function] = ACTIONS(1822), + [anon_sym_new] = ACTIONS(1822), + [anon_sym_using] = ACTIONS(1822), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_SLASH] = ACTIONS(1822), + [anon_sym_LT] = ACTIONS(1820), + [anon_sym_TILDE] = ACTIONS(1820), + [anon_sym_void] = ACTIONS(1822), + [anon_sym_delete] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1820), + [anon_sym_DASH_DASH] = ACTIONS(1820), + [anon_sym_DQUOTE] = ACTIONS(1820), + [anon_sym_SQUOTE] = ACTIONS(1820), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1820), + [sym_number] = ACTIONS(1820), + [sym_private_property_identifier] = ACTIONS(1820), + [sym_this] = ACTIONS(1822), + [sym_super] = ACTIONS(1822), + [sym_true] = ACTIONS(1822), + [sym_false] = ACTIONS(1822), + [sym_null] = ACTIONS(1822), + [sym_undefined] = ACTIONS(1822), + [anon_sym_AT] = ACTIONS(1820), + [anon_sym_static] = ACTIONS(1822), + [anon_sym_readonly] = ACTIONS(1822), + [anon_sym_get] = ACTIONS(1822), + [anon_sym_set] = ACTIONS(1822), + [anon_sym_declare] = ACTIONS(1822), + [anon_sym_public] = ACTIONS(1822), + [anon_sym_private] = ACTIONS(1822), + [anon_sym_protected] = ACTIONS(1822), + [anon_sym_override] = ACTIONS(1822), + [anon_sym_module] = ACTIONS(1822), + [anon_sym_any] = ACTIONS(1822), + [anon_sym_number] = ACTIONS(1822), + [anon_sym_boolean] = ACTIONS(1822), + [anon_sym_string] = ACTIONS(1822), + [anon_sym_symbol] = ACTIONS(1822), + [anon_sym_object] = ACTIONS(1822), + [anon_sym_abstract] = ACTIONS(1822), + [anon_sym_interface] = ACTIONS(1822), + [anon_sym_enum] = ACTIONS(1822), + [sym__automatic_semicolon] = ACTIONS(1828), [sym_html_comment] = ACTIONS(5), }, [798] = { - [ts_builtin_sym_end] = ACTIONS(2528), - [sym_identifier] = ACTIONS(2530), - [anon_sym_export] = ACTIONS(2530), - [anon_sym_default] = ACTIONS(2530), - [anon_sym_type] = ACTIONS(2530), - [anon_sym_namespace] = ACTIONS(2530), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_RBRACE] = ACTIONS(2528), - [anon_sym_typeof] = ACTIONS(2530), - [anon_sym_import] = ACTIONS(2530), - [anon_sym_with] = ACTIONS(2530), - [anon_sym_var] = ACTIONS(2530), - [anon_sym_let] = ACTIONS(2530), - [anon_sym_const] = ACTIONS(2530), - [anon_sym_BANG] = ACTIONS(2528), - [anon_sym_else] = ACTIONS(2530), - [anon_sym_if] = ACTIONS(2530), - [anon_sym_switch] = ACTIONS(2530), - [anon_sym_for] = ACTIONS(2530), - [anon_sym_LPAREN] = ACTIONS(2528), - [anon_sym_SEMI] = ACTIONS(2528), - [anon_sym_await] = ACTIONS(2530), - [anon_sym_while] = ACTIONS(2530), - [anon_sym_do] = ACTIONS(2530), - [anon_sym_try] = ACTIONS(2530), - [anon_sym_break] = ACTIONS(2530), - [anon_sym_continue] = ACTIONS(2530), - [anon_sym_debugger] = ACTIONS(2530), - [anon_sym_return] = ACTIONS(2530), - [anon_sym_throw] = ACTIONS(2530), - [anon_sym_case] = ACTIONS(2530), - [anon_sym_finally] = ACTIONS(2530), - [anon_sym_yield] = ACTIONS(2530), - [anon_sym_LBRACK] = ACTIONS(2528), - [sym_glimmer_opening_tag] = ACTIONS(2528), - [anon_sym_class] = ACTIONS(2530), - [anon_sym_async] = ACTIONS(2530), - [anon_sym_function] = ACTIONS(2530), - [anon_sym_new] = ACTIONS(2530), - [anon_sym_using] = ACTIONS(2530), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_SLASH] = ACTIONS(2530), - [anon_sym_LT] = ACTIONS(2530), - [anon_sym_TILDE] = ACTIONS(2528), - [anon_sym_void] = ACTIONS(2530), - [anon_sym_delete] = ACTIONS(2530), - [anon_sym_PLUS_PLUS] = ACTIONS(2528), - [anon_sym_DASH_DASH] = ACTIONS(2528), - [anon_sym_DQUOTE] = ACTIONS(2528), - [anon_sym_SQUOTE] = ACTIONS(2528), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2528), - [sym_number] = ACTIONS(2528), - [sym_private_property_identifier] = ACTIONS(2528), - [sym_this] = ACTIONS(2530), - [sym_super] = ACTIONS(2530), - [sym_true] = ACTIONS(2530), - [sym_false] = ACTIONS(2530), - [sym_null] = ACTIONS(2530), - [sym_undefined] = ACTIONS(2530), - [anon_sym_AT] = ACTIONS(2528), - [anon_sym_static] = ACTIONS(2530), - [anon_sym_readonly] = ACTIONS(2530), - [anon_sym_get] = ACTIONS(2530), - [anon_sym_set] = ACTIONS(2530), - [anon_sym_declare] = ACTIONS(2530), - [anon_sym_public] = ACTIONS(2530), - [anon_sym_private] = ACTIONS(2530), - [anon_sym_protected] = ACTIONS(2530), - [anon_sym_override] = ACTIONS(2530), - [anon_sym_module] = ACTIONS(2530), - [anon_sym_any] = ACTIONS(2530), - [anon_sym_number] = ACTIONS(2530), - [anon_sym_boolean] = ACTIONS(2530), - [anon_sym_string] = ACTIONS(2530), - [anon_sym_symbol] = ACTIONS(2530), - [anon_sym_object] = ACTIONS(2530), - [anon_sym_abstract] = ACTIONS(2530), - [anon_sym_interface] = ACTIONS(2530), - [anon_sym_enum] = ACTIONS(2530), + [sym_statement_block] = STATE(882), + [ts_builtin_sym_end] = ACTIONS(1674), + [sym_identifier] = ACTIONS(1676), + [anon_sym_export] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_type] = ACTIONS(1676), + [anon_sym_namespace] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(2483), + [anon_sym_RBRACE] = ACTIONS(1674), + [anon_sym_typeof] = ACTIONS(1676), + [anon_sym_import] = ACTIONS(1676), + [anon_sym_with] = ACTIONS(1676), + [anon_sym_var] = ACTIONS(1676), + [anon_sym_let] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_else] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_LPAREN] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_await] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_try] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_debugger] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_throw] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_yield] = ACTIONS(1676), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_class] = ACTIONS(1676), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_function] = ACTIONS(1676), + [anon_sym_new] = ACTIONS(1676), + [anon_sym_using] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_SLASH] = ACTIONS(1676), + [anon_sym_LT] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_void] = ACTIONS(1676), + [anon_sym_delete] = ACTIONS(1676), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1674), + [sym_number] = ACTIONS(1674), + [sym_private_property_identifier] = ACTIONS(1674), + [sym_this] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_true] = ACTIONS(1676), + [sym_false] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [sym_undefined] = ACTIONS(1676), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_readonly] = ACTIONS(1676), + [anon_sym_get] = ACTIONS(1676), + [anon_sym_set] = ACTIONS(1676), + [anon_sym_declare] = ACTIONS(1676), + [anon_sym_public] = ACTIONS(1676), + [anon_sym_private] = ACTIONS(1676), + [anon_sym_protected] = ACTIONS(1676), + [anon_sym_override] = ACTIONS(1676), + [anon_sym_module] = ACTIONS(1676), + [anon_sym_any] = ACTIONS(1676), + [anon_sym_number] = ACTIONS(1676), + [anon_sym_boolean] = ACTIONS(1676), + [anon_sym_string] = ACTIONS(1676), + [anon_sym_symbol] = ACTIONS(1676), + [anon_sym_object] = ACTIONS(1676), + [anon_sym_abstract] = ACTIONS(1676), + [anon_sym_interface] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), [sym_html_comment] = ACTIONS(5), }, [799] = { - [sym__call_signature] = STATE(5844), - [sym_formal_parameters] = STATE(3893), - [sym_type_parameters] = STATE(5354), - [sym_identifier] = ACTIONS(2422), - [anon_sym_export] = ACTIONS(2424), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2424), - [anon_sym_EQ] = ACTIONS(983), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2424), - [anon_sym_let] = ACTIONS(2424), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_async] = ACTIONS(2424), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(155), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2424), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_static] = ACTIONS(2424), - [anon_sym_readonly] = ACTIONS(2424), - [anon_sym_get] = ACTIONS(2424), - [anon_sym_set] = ACTIONS(2424), - [anon_sym_declare] = ACTIONS(2424), - [anon_sym_public] = ACTIONS(2424), - [anon_sym_private] = ACTIONS(2424), - [anon_sym_protected] = ACTIONS(2424), - [anon_sym_override] = ACTIONS(2424), - [anon_sym_module] = ACTIONS(2424), - [anon_sym_any] = ACTIONS(2424), - [anon_sym_number] = ACTIONS(2424), - [anon_sym_boolean] = ACTIONS(2424), - [anon_sym_string] = ACTIONS(2424), - [anon_sym_symbol] = ACTIONS(2424), - [anon_sym_object] = ACTIONS(2424), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [ts_builtin_sym_end] = ACTIONS(1770), + [sym_identifier] = ACTIONS(1772), + [anon_sym_export] = ACTIONS(1772), + [anon_sym_default] = ACTIONS(1772), + [anon_sym_type] = ACTIONS(1772), + [anon_sym_namespace] = ACTIONS(1772), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_typeof] = ACTIONS(1772), + [anon_sym_import] = ACTIONS(1772), + [anon_sym_with] = ACTIONS(1772), + [anon_sym_var] = ACTIONS(1772), + [anon_sym_let] = ACTIONS(1772), + [anon_sym_const] = ACTIONS(1772), + [anon_sym_BANG] = ACTIONS(1770), + [anon_sym_else] = ACTIONS(1772), + [anon_sym_if] = ACTIONS(1772), + [anon_sym_switch] = ACTIONS(1772), + [anon_sym_for] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_await] = ACTIONS(1772), + [anon_sym_while] = ACTIONS(1772), + [anon_sym_do] = ACTIONS(1772), + [anon_sym_try] = 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_case] = ACTIONS(1772), + [anon_sym_yield] = ACTIONS(1772), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_class] = ACTIONS(1772), + [anon_sym_async] = ACTIONS(1772), + [anon_sym_function] = ACTIONS(1772), + [anon_sym_new] = ACTIONS(1772), + [anon_sym_using] = ACTIONS(1772), + [anon_sym_PLUS] = ACTIONS(1772), + [anon_sym_DASH] = ACTIONS(1772), + [anon_sym_SLASH] = ACTIONS(1772), + [anon_sym_LT] = ACTIONS(1770), + [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(5), + [anon_sym_BQUOTE] = ACTIONS(1770), + [sym_number] = ACTIONS(1770), + [sym_private_property_identifier] = 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_readonly] = 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_override] = 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_object] = ACTIONS(1772), + [anon_sym_abstract] = ACTIONS(1772), + [anon_sym_interface] = ACTIONS(1772), + [anon_sym_enum] = ACTIONS(1772), + [sym__automatic_semicolon] = ACTIONS(1778), [sym_html_comment] = ACTIONS(5), }, [800] = { - [sym_statement_block] = STATE(899), - [ts_builtin_sym_end] = ACTIONS(1717), - [sym_identifier] = ACTIONS(1719), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_default] = ACTIONS(1719), - [anon_sym_type] = ACTIONS(1719), - [anon_sym_namespace] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(2482), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_typeof] = ACTIONS(1719), - [anon_sym_import] = ACTIONS(1719), - [anon_sym_with] = ACTIONS(1719), - [anon_sym_var] = ACTIONS(1719), - [anon_sym_let] = ACTIONS(1719), - [anon_sym_const] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_else] = ACTIONS(1719), - [anon_sym_if] = ACTIONS(1719), - [anon_sym_switch] = ACTIONS(1719), - [anon_sym_for] = ACTIONS(1719), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1717), - [anon_sym_await] = ACTIONS(1719), - [anon_sym_while] = ACTIONS(1719), - [anon_sym_do] = ACTIONS(1719), - [anon_sym_try] = ACTIONS(1719), - [anon_sym_break] = ACTIONS(1719), - [anon_sym_continue] = ACTIONS(1719), - [anon_sym_debugger] = ACTIONS(1719), - [anon_sym_return] = ACTIONS(1719), - [anon_sym_throw] = ACTIONS(1719), - [anon_sym_case] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1719), - [anon_sym_LBRACK] = ACTIONS(1717), - [sym_glimmer_opening_tag] = ACTIONS(1717), - [anon_sym_class] = ACTIONS(1719), - [anon_sym_async] = ACTIONS(1719), - [anon_sym_function] = ACTIONS(1719), - [anon_sym_new] = ACTIONS(1719), - [anon_sym_using] = ACTIONS(1719), - [anon_sym_PLUS] = ACTIONS(1719), - [anon_sym_DASH] = ACTIONS(1719), - [anon_sym_SLASH] = ACTIONS(1719), - [anon_sym_LT] = ACTIONS(1719), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_void] = ACTIONS(1719), - [anon_sym_delete] = ACTIONS(1719), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1717), - [anon_sym_SQUOTE] = ACTIONS(1717), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1717), - [sym_number] = ACTIONS(1717), - [sym_private_property_identifier] = ACTIONS(1717), - [sym_this] = ACTIONS(1719), - [sym_super] = ACTIONS(1719), - [sym_true] = ACTIONS(1719), - [sym_false] = ACTIONS(1719), - [sym_null] = ACTIONS(1719), - [sym_undefined] = ACTIONS(1719), - [anon_sym_AT] = ACTIONS(1717), - [anon_sym_static] = ACTIONS(1719), - [anon_sym_readonly] = ACTIONS(1719), - [anon_sym_get] = ACTIONS(1719), - [anon_sym_set] = ACTIONS(1719), - [anon_sym_declare] = ACTIONS(1719), - [anon_sym_public] = ACTIONS(1719), - [anon_sym_private] = ACTIONS(1719), - [anon_sym_protected] = ACTIONS(1719), - [anon_sym_override] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(1719), - [anon_sym_any] = ACTIONS(1719), - [anon_sym_number] = ACTIONS(1719), - [anon_sym_boolean] = ACTIONS(1719), - [anon_sym_string] = ACTIONS(1719), - [anon_sym_symbol] = ACTIONS(1719), - [anon_sym_object] = ACTIONS(1719), - [anon_sym_abstract] = ACTIONS(1719), - [anon_sym_interface] = ACTIONS(1719), - [anon_sym_enum] = ACTIONS(1719), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_rest_pattern] = STATE(5165), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3773), + [sym_tuple_parameter] = STATE(4956), + [sym_optional_tuple_parameter] = STATE(4956), + [sym_optional_type] = STATE(4956), + [sym_rest_type] = STATE(4956), + [sym__tuple_type_member] = STATE(4956), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(2489), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_COMMA] = ACTIONS(2525), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2495), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [801] = { - [sym__call_signature] = STATE(5844), - [sym_formal_parameters] = STATE(3893), - [sym_type_parameters] = STATE(5354), - [sym_identifier] = ACTIONS(2422), - [anon_sym_export] = ACTIONS(2424), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2424), - [anon_sym_EQ] = ACTIONS(985), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2424), - [anon_sym_let] = ACTIONS(2424), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_async] = ACTIONS(2424), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(155), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2424), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_static] = ACTIONS(2424), - [anon_sym_readonly] = ACTIONS(2424), - [anon_sym_get] = ACTIONS(2424), - [anon_sym_set] = ACTIONS(2424), - [anon_sym_declare] = ACTIONS(2424), - [anon_sym_public] = ACTIONS(2424), - [anon_sym_private] = ACTIONS(2424), - [anon_sym_protected] = ACTIONS(2424), - [anon_sym_override] = ACTIONS(2424), - [anon_sym_module] = ACTIONS(2424), - [anon_sym_any] = ACTIONS(2424), - [anon_sym_number] = ACTIONS(2424), - [anon_sym_boolean] = ACTIONS(2424), - [anon_sym_string] = ACTIONS(2424), - [anon_sym_symbol] = ACTIONS(2424), - [anon_sym_object] = ACTIONS(2424), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [ts_builtin_sym_end] = ACTIONS(1856), + [sym_identifier] = ACTIONS(1858), + [anon_sym_export] = ACTIONS(1858), + [anon_sym_default] = ACTIONS(1858), + [anon_sym_type] = ACTIONS(1858), + [anon_sym_namespace] = ACTIONS(1858), + [anon_sym_LBRACE] = ACTIONS(1856), + [anon_sym_RBRACE] = ACTIONS(1856), + [anon_sym_typeof] = ACTIONS(1858), + [anon_sym_import] = ACTIONS(1858), + [anon_sym_with] = ACTIONS(1858), + [anon_sym_var] = ACTIONS(1858), + [anon_sym_let] = ACTIONS(1858), + [anon_sym_const] = ACTIONS(1858), + [anon_sym_BANG] = ACTIONS(1856), + [anon_sym_else] = ACTIONS(1858), + [anon_sym_if] = ACTIONS(1858), + [anon_sym_switch] = ACTIONS(1858), + [anon_sym_for] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1856), + [anon_sym_SEMI] = ACTIONS(1856), + [anon_sym_await] = ACTIONS(1858), + [anon_sym_while] = ACTIONS(1858), + [anon_sym_do] = ACTIONS(1858), + [anon_sym_try] = ACTIONS(1858), + [anon_sym_break] = ACTIONS(1858), + [anon_sym_continue] = ACTIONS(1858), + [anon_sym_debugger] = ACTIONS(1858), + [anon_sym_return] = ACTIONS(1858), + [anon_sym_throw] = ACTIONS(1858), + [anon_sym_case] = ACTIONS(1858), + [anon_sym_yield] = ACTIONS(1858), + [anon_sym_LBRACK] = ACTIONS(1856), + [anon_sym_class] = ACTIONS(1858), + [anon_sym_async] = ACTIONS(1858), + [anon_sym_function] = ACTIONS(1858), + [anon_sym_new] = ACTIONS(1858), + [anon_sym_using] = ACTIONS(1858), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_SLASH] = ACTIONS(1858), + [anon_sym_LT] = ACTIONS(1856), + [anon_sym_TILDE] = ACTIONS(1856), + [anon_sym_void] = ACTIONS(1858), + [anon_sym_delete] = ACTIONS(1858), + [anon_sym_PLUS_PLUS] = ACTIONS(1856), + [anon_sym_DASH_DASH] = ACTIONS(1856), + [anon_sym_DQUOTE] = ACTIONS(1856), + [anon_sym_SQUOTE] = ACTIONS(1856), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1856), + [sym_number] = ACTIONS(1856), + [sym_private_property_identifier] = ACTIONS(1856), + [sym_this] = ACTIONS(1858), + [sym_super] = ACTIONS(1858), + [sym_true] = ACTIONS(1858), + [sym_false] = ACTIONS(1858), + [sym_null] = ACTIONS(1858), + [sym_undefined] = ACTIONS(1858), + [anon_sym_AT] = ACTIONS(1856), + [anon_sym_static] = ACTIONS(1858), + [anon_sym_readonly] = ACTIONS(1858), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_declare] = ACTIONS(1858), + [anon_sym_public] = ACTIONS(1858), + [anon_sym_private] = ACTIONS(1858), + [anon_sym_protected] = ACTIONS(1858), + [anon_sym_override] = ACTIONS(1858), + [anon_sym_module] = ACTIONS(1858), + [anon_sym_any] = ACTIONS(1858), + [anon_sym_number] = ACTIONS(1858), + [anon_sym_boolean] = ACTIONS(1858), + [anon_sym_string] = ACTIONS(1858), + [anon_sym_symbol] = ACTIONS(1858), + [anon_sym_object] = ACTIONS(1858), + [anon_sym_abstract] = ACTIONS(1858), + [anon_sym_interface] = ACTIONS(1858), + [anon_sym_enum] = ACTIONS(1858), + [sym__automatic_semicolon] = ACTIONS(1864), [sym_html_comment] = ACTIONS(5), }, [802] = { - [ts_builtin_sym_end] = ACTIONS(1849), - [sym_identifier] = ACTIONS(1851), - [anon_sym_export] = ACTIONS(1851), - [anon_sym_default] = ACTIONS(1851), - [anon_sym_type] = ACTIONS(1851), - [anon_sym_namespace] = ACTIONS(1851), - [anon_sym_LBRACE] = ACTIONS(1849), - [anon_sym_RBRACE] = ACTIONS(1849), - [anon_sym_typeof] = ACTIONS(1851), - [anon_sym_import] = ACTIONS(1851), - [anon_sym_with] = ACTIONS(1851), - [anon_sym_var] = ACTIONS(1851), - [anon_sym_let] = ACTIONS(1851), - [anon_sym_const] = ACTIONS(1851), - [anon_sym_BANG] = ACTIONS(1849), - [anon_sym_else] = ACTIONS(1851), - [anon_sym_if] = ACTIONS(1851), - [anon_sym_switch] = ACTIONS(1851), - [anon_sym_for] = ACTIONS(1851), - [anon_sym_LPAREN] = ACTIONS(1849), - [anon_sym_SEMI] = ACTIONS(1849), - [anon_sym_await] = ACTIONS(1851), - [anon_sym_while] = ACTIONS(1851), - [anon_sym_do] = ACTIONS(1851), - [anon_sym_try] = ACTIONS(1851), - [anon_sym_break] = ACTIONS(1851), - [anon_sym_continue] = ACTIONS(1851), - [anon_sym_debugger] = ACTIONS(1851), - [anon_sym_return] = ACTIONS(1851), - [anon_sym_throw] = ACTIONS(1851), - [anon_sym_case] = ACTIONS(1851), - [anon_sym_yield] = ACTIONS(1851), - [anon_sym_LBRACK] = ACTIONS(1849), - [sym_glimmer_opening_tag] = ACTIONS(1849), - [anon_sym_class] = ACTIONS(1851), - [anon_sym_async] = ACTIONS(1851), - [anon_sym_function] = ACTIONS(1851), - [anon_sym_new] = ACTIONS(1851), - [anon_sym_using] = ACTIONS(1851), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_SLASH] = ACTIONS(1851), - [anon_sym_LT] = ACTIONS(1851), - [anon_sym_TILDE] = ACTIONS(1849), - [anon_sym_void] = ACTIONS(1851), - [anon_sym_delete] = ACTIONS(1851), - [anon_sym_PLUS_PLUS] = ACTIONS(1849), - [anon_sym_DASH_DASH] = ACTIONS(1849), - [anon_sym_DQUOTE] = ACTIONS(1849), - [anon_sym_SQUOTE] = ACTIONS(1849), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1849), - [sym_number] = ACTIONS(1849), - [sym_private_property_identifier] = ACTIONS(1849), - [sym_this] = ACTIONS(1851), - [sym_super] = ACTIONS(1851), - [sym_true] = ACTIONS(1851), - [sym_false] = ACTIONS(1851), - [sym_null] = ACTIONS(1851), - [sym_undefined] = ACTIONS(1851), - [anon_sym_AT] = ACTIONS(1849), - [anon_sym_static] = ACTIONS(1851), - [anon_sym_readonly] = ACTIONS(1851), - [anon_sym_get] = ACTIONS(1851), - [anon_sym_set] = ACTIONS(1851), - [anon_sym_declare] = ACTIONS(1851), - [anon_sym_public] = ACTIONS(1851), - [anon_sym_private] = ACTIONS(1851), - [anon_sym_protected] = ACTIONS(1851), - [anon_sym_override] = ACTIONS(1851), - [anon_sym_module] = ACTIONS(1851), - [anon_sym_any] = ACTIONS(1851), - [anon_sym_number] = ACTIONS(1851), - [anon_sym_boolean] = ACTIONS(1851), - [anon_sym_string] = ACTIONS(1851), - [anon_sym_symbol] = ACTIONS(1851), - [anon_sym_object] = ACTIONS(1851), - [anon_sym_abstract] = ACTIONS(1851), - [anon_sym_interface] = ACTIONS(1851), - [anon_sym_enum] = ACTIONS(1851), - [sym__automatic_semicolon] = ACTIONS(1857), + [ts_builtin_sym_end] = ACTIONS(1892), + [sym_identifier] = ACTIONS(1894), + [anon_sym_export] = ACTIONS(1894), + [anon_sym_default] = ACTIONS(1894), + [anon_sym_type] = ACTIONS(1894), + [anon_sym_namespace] = ACTIONS(1894), + [anon_sym_LBRACE] = ACTIONS(1892), + [anon_sym_RBRACE] = ACTIONS(1892), + [anon_sym_typeof] = ACTIONS(1894), + [anon_sym_import] = ACTIONS(1894), + [anon_sym_with] = ACTIONS(1894), + [anon_sym_var] = ACTIONS(1894), + [anon_sym_let] = ACTIONS(1894), + [anon_sym_const] = ACTIONS(1894), + [anon_sym_BANG] = ACTIONS(1892), + [anon_sym_else] = ACTIONS(1894), + [anon_sym_if] = ACTIONS(1894), + [anon_sym_switch] = ACTIONS(1894), + [anon_sym_for] = ACTIONS(1894), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_await] = ACTIONS(1894), + [anon_sym_while] = ACTIONS(1894), + [anon_sym_do] = ACTIONS(1894), + [anon_sym_try] = ACTIONS(1894), + [anon_sym_break] = ACTIONS(1894), + [anon_sym_continue] = ACTIONS(1894), + [anon_sym_debugger] = ACTIONS(1894), + [anon_sym_return] = ACTIONS(1894), + [anon_sym_throw] = ACTIONS(1894), + [anon_sym_case] = ACTIONS(1894), + [anon_sym_yield] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_DOT] = ACTIONS(1894), + [anon_sym_class] = ACTIONS(1894), + [anon_sym_async] = ACTIONS(1894), + [anon_sym_function] = ACTIONS(1894), + [anon_sym_new] = ACTIONS(1894), + [anon_sym_using] = ACTIONS(1894), + [anon_sym_PLUS] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1894), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_LT] = ACTIONS(1892), + [anon_sym_TILDE] = ACTIONS(1892), + [anon_sym_void] = ACTIONS(1894), + [anon_sym_delete] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [anon_sym_SQUOTE] = ACTIONS(1892), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1892), + [sym_number] = ACTIONS(1892), + [sym_private_property_identifier] = ACTIONS(1892), + [sym_this] = ACTIONS(1894), + [sym_super] = ACTIONS(1894), + [sym_true] = ACTIONS(1894), + [sym_false] = ACTIONS(1894), + [sym_null] = ACTIONS(1894), + [sym_undefined] = ACTIONS(1894), + [anon_sym_AT] = ACTIONS(1892), + [anon_sym_static] = ACTIONS(1894), + [anon_sym_readonly] = ACTIONS(1894), + [anon_sym_get] = ACTIONS(1894), + [anon_sym_set] = ACTIONS(1894), + [anon_sym_declare] = ACTIONS(1894), + [anon_sym_public] = ACTIONS(1894), + [anon_sym_private] = ACTIONS(1894), + [anon_sym_protected] = ACTIONS(1894), + [anon_sym_override] = ACTIONS(1894), + [anon_sym_module] = ACTIONS(1894), + [anon_sym_any] = ACTIONS(1894), + [anon_sym_number] = ACTIONS(1894), + [anon_sym_boolean] = ACTIONS(1894), + [anon_sym_string] = ACTIONS(1894), + [anon_sym_symbol] = ACTIONS(1894), + [anon_sym_object] = ACTIONS(1894), + [anon_sym_abstract] = ACTIONS(1894), + [anon_sym_interface] = ACTIONS(1894), + [anon_sym_enum] = ACTIONS(1894), [sym_html_comment] = ACTIONS(5), }, [803] = { - [ts_builtin_sym_end] = ACTIONS(1839), - [sym_identifier] = ACTIONS(1841), - [anon_sym_export] = ACTIONS(1841), - [anon_sym_default] = ACTIONS(1841), - [anon_sym_type] = ACTIONS(1841), - [anon_sym_namespace] = ACTIONS(1841), - [anon_sym_LBRACE] = ACTIONS(1839), - [anon_sym_RBRACE] = ACTIONS(1839), - [anon_sym_typeof] = ACTIONS(1841), - [anon_sym_import] = ACTIONS(1841), - [anon_sym_with] = ACTIONS(1841), - [anon_sym_var] = ACTIONS(1841), - [anon_sym_let] = ACTIONS(1841), - [anon_sym_const] = ACTIONS(1841), - [anon_sym_BANG] = ACTIONS(1839), - [anon_sym_else] = ACTIONS(1841), - [anon_sym_if] = ACTIONS(1841), - [anon_sym_switch] = ACTIONS(1841), - [anon_sym_for] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_SEMI] = ACTIONS(1839), - [anon_sym_await] = ACTIONS(1841), - [anon_sym_while] = ACTIONS(1841), - [anon_sym_do] = ACTIONS(1841), - [anon_sym_try] = ACTIONS(1841), - [anon_sym_break] = ACTIONS(1841), - [anon_sym_continue] = ACTIONS(1841), - [anon_sym_debugger] = ACTIONS(1841), - [anon_sym_return] = ACTIONS(1841), - [anon_sym_throw] = ACTIONS(1841), - [anon_sym_case] = ACTIONS(1841), - [anon_sym_yield] = ACTIONS(1841), - [anon_sym_LBRACK] = ACTIONS(1839), - [sym_glimmer_opening_tag] = ACTIONS(1839), - [anon_sym_class] = ACTIONS(1841), - [anon_sym_async] = ACTIONS(1841), - [anon_sym_function] = ACTIONS(1841), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1841), - [anon_sym_PLUS] = ACTIONS(1841), - [anon_sym_DASH] = ACTIONS(1841), - [anon_sym_SLASH] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(1841), - [anon_sym_TILDE] = ACTIONS(1839), - [anon_sym_void] = ACTIONS(1841), - [anon_sym_delete] = ACTIONS(1841), - [anon_sym_PLUS_PLUS] = ACTIONS(1839), - [anon_sym_DASH_DASH] = ACTIONS(1839), - [anon_sym_DQUOTE] = ACTIONS(1839), - [anon_sym_SQUOTE] = ACTIONS(1839), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1839), - [sym_number] = ACTIONS(1839), - [sym_private_property_identifier] = ACTIONS(1839), - [sym_this] = ACTIONS(1841), - [sym_super] = ACTIONS(1841), - [sym_true] = ACTIONS(1841), - [sym_false] = ACTIONS(1841), - [sym_null] = ACTIONS(1841), - [sym_undefined] = ACTIONS(1841), - [anon_sym_AT] = ACTIONS(1839), - [anon_sym_static] = ACTIONS(1841), - [anon_sym_readonly] = ACTIONS(1841), - [anon_sym_get] = ACTIONS(1841), - [anon_sym_set] = ACTIONS(1841), - [anon_sym_declare] = ACTIONS(1841), - [anon_sym_public] = ACTIONS(1841), - [anon_sym_private] = ACTIONS(1841), - [anon_sym_protected] = ACTIONS(1841), - [anon_sym_override] = ACTIONS(1841), - [anon_sym_module] = ACTIONS(1841), - [anon_sym_any] = ACTIONS(1841), - [anon_sym_number] = ACTIONS(1841), - [anon_sym_boolean] = ACTIONS(1841), - [anon_sym_string] = ACTIONS(1841), - [anon_sym_symbol] = ACTIONS(1841), - [anon_sym_object] = ACTIONS(1841), - [anon_sym_abstract] = ACTIONS(1841), - [anon_sym_interface] = ACTIONS(1841), - [anon_sym_enum] = ACTIONS(1841), - [sym__automatic_semicolon] = ACTIONS(1847), + [ts_builtin_sym_end] = ACTIONS(2529), + [sym_identifier] = ACTIONS(2531), + [anon_sym_export] = ACTIONS(2531), + [anon_sym_default] = ACTIONS(2531), + [anon_sym_type] = ACTIONS(2531), + [anon_sym_namespace] = ACTIONS(2531), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_RBRACE] = ACTIONS(2529), + [anon_sym_typeof] = ACTIONS(2531), + [anon_sym_import] = ACTIONS(2531), + [anon_sym_with] = ACTIONS(2531), + [anon_sym_var] = ACTIONS(2531), + [anon_sym_let] = ACTIONS(2531), + [anon_sym_const] = ACTIONS(2531), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_else] = ACTIONS(2531), + [anon_sym_if] = ACTIONS(2531), + [anon_sym_switch] = ACTIONS(2531), + [anon_sym_for] = ACTIONS(2531), + [anon_sym_LPAREN] = ACTIONS(2529), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2531), + [anon_sym_while] = ACTIONS(2531), + [anon_sym_do] = ACTIONS(2531), + [anon_sym_try] = ACTIONS(2531), + [anon_sym_break] = ACTIONS(2531), + [anon_sym_continue] = ACTIONS(2531), + [anon_sym_debugger] = ACTIONS(2531), + [anon_sym_return] = ACTIONS(2531), + [anon_sym_throw] = ACTIONS(2531), + [anon_sym_case] = ACTIONS(2531), + [anon_sym_yield] = ACTIONS(2531), + [anon_sym_LBRACK] = ACTIONS(2529), + [anon_sym_class] = ACTIONS(2531), + [anon_sym_async] = ACTIONS(2531), + [anon_sym_function] = ACTIONS(2531), + [anon_sym_new] = ACTIONS(2531), + [anon_sym_using] = ACTIONS(2531), + [anon_sym_PLUS] = ACTIONS(2531), + [anon_sym_DASH] = ACTIONS(2531), + [anon_sym_SLASH] = ACTIONS(2531), + [anon_sym_LT] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_void] = ACTIONS(2531), + [anon_sym_delete] = ACTIONS(2531), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2529), + [sym_number] = ACTIONS(2529), + [sym_private_property_identifier] = ACTIONS(2529), + [sym_this] = ACTIONS(2531), + [sym_super] = ACTIONS(2531), + [sym_true] = ACTIONS(2531), + [sym_false] = ACTIONS(2531), + [sym_null] = ACTIONS(2531), + [sym_undefined] = ACTIONS(2531), + [anon_sym_AT] = ACTIONS(2529), + [anon_sym_static] = ACTIONS(2531), + [anon_sym_readonly] = ACTIONS(2531), + [anon_sym_get] = ACTIONS(2531), + [anon_sym_set] = ACTIONS(2531), + [anon_sym_declare] = ACTIONS(2531), + [anon_sym_public] = ACTIONS(2531), + [anon_sym_private] = ACTIONS(2531), + [anon_sym_protected] = ACTIONS(2531), + [anon_sym_override] = ACTIONS(2531), + [anon_sym_module] = ACTIONS(2531), + [anon_sym_any] = ACTIONS(2531), + [anon_sym_number] = ACTIONS(2531), + [anon_sym_boolean] = ACTIONS(2531), + [anon_sym_string] = ACTIONS(2531), + [anon_sym_symbol] = ACTIONS(2531), + [anon_sym_object] = ACTIONS(2531), + [anon_sym_abstract] = ACTIONS(2531), + [anon_sym_interface] = ACTIONS(2531), + [anon_sym_enum] = ACTIONS(2531), + [sym__automatic_semicolon] = ACTIONS(2529), [sym_html_comment] = ACTIONS(5), }, [804] = { - [ts_builtin_sym_end] = ACTIONS(2532), - [sym_identifier] = ACTIONS(2534), - [anon_sym_export] = ACTIONS(2534), - [anon_sym_default] = ACTIONS(2534), - [anon_sym_type] = ACTIONS(2534), - [anon_sym_namespace] = ACTIONS(2534), - [anon_sym_LBRACE] = ACTIONS(2532), - [anon_sym_RBRACE] = ACTIONS(2532), - [anon_sym_typeof] = ACTIONS(2534), - [anon_sym_import] = ACTIONS(2534), - [anon_sym_with] = ACTIONS(2534), - [anon_sym_var] = ACTIONS(2534), - [anon_sym_let] = ACTIONS(2534), - [anon_sym_const] = ACTIONS(2534), - [anon_sym_BANG] = ACTIONS(2532), - [anon_sym_else] = ACTIONS(2534), - [anon_sym_if] = ACTIONS(2534), - [anon_sym_switch] = ACTIONS(2534), - [anon_sym_for] = ACTIONS(2534), - [anon_sym_LPAREN] = ACTIONS(2532), - [anon_sym_SEMI] = ACTIONS(2532), - [anon_sym_await] = ACTIONS(2534), - [anon_sym_while] = ACTIONS(2534), - [anon_sym_do] = ACTIONS(2534), - [anon_sym_try] = ACTIONS(2534), - [anon_sym_break] = ACTIONS(2534), - [anon_sym_continue] = ACTIONS(2534), - [anon_sym_debugger] = ACTIONS(2534), - [anon_sym_return] = ACTIONS(2534), - [anon_sym_throw] = ACTIONS(2534), - [anon_sym_case] = ACTIONS(2534), - [anon_sym_finally] = ACTIONS(2534), - [anon_sym_yield] = ACTIONS(2534), - [anon_sym_LBRACK] = ACTIONS(2532), - [sym_glimmer_opening_tag] = ACTIONS(2532), - [anon_sym_class] = ACTIONS(2534), - [anon_sym_async] = ACTIONS(2534), - [anon_sym_function] = ACTIONS(2534), - [anon_sym_new] = ACTIONS(2534), - [anon_sym_using] = ACTIONS(2534), - [anon_sym_PLUS] = ACTIONS(2534), - [anon_sym_DASH] = ACTIONS(2534), - [anon_sym_SLASH] = ACTIONS(2534), - [anon_sym_LT] = ACTIONS(2534), - [anon_sym_TILDE] = ACTIONS(2532), - [anon_sym_void] = ACTIONS(2534), - [anon_sym_delete] = ACTIONS(2534), - [anon_sym_PLUS_PLUS] = ACTIONS(2532), - [anon_sym_DASH_DASH] = ACTIONS(2532), - [anon_sym_DQUOTE] = ACTIONS(2532), - [anon_sym_SQUOTE] = ACTIONS(2532), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2532), - [sym_number] = ACTIONS(2532), - [sym_private_property_identifier] = ACTIONS(2532), - [sym_this] = ACTIONS(2534), - [sym_super] = ACTIONS(2534), - [sym_true] = ACTIONS(2534), - [sym_false] = ACTIONS(2534), - [sym_null] = ACTIONS(2534), - [sym_undefined] = ACTIONS(2534), - [anon_sym_AT] = ACTIONS(2532), - [anon_sym_static] = ACTIONS(2534), - [anon_sym_readonly] = ACTIONS(2534), - [anon_sym_get] = ACTIONS(2534), - [anon_sym_set] = ACTIONS(2534), - [anon_sym_declare] = ACTIONS(2534), - [anon_sym_public] = ACTIONS(2534), - [anon_sym_private] = ACTIONS(2534), - [anon_sym_protected] = ACTIONS(2534), - [anon_sym_override] = ACTIONS(2534), - [anon_sym_module] = ACTIONS(2534), - [anon_sym_any] = ACTIONS(2534), - [anon_sym_number] = ACTIONS(2534), - [anon_sym_boolean] = ACTIONS(2534), - [anon_sym_string] = ACTIONS(2534), - [anon_sym_symbol] = ACTIONS(2534), - [anon_sym_object] = ACTIONS(2534), - [anon_sym_abstract] = ACTIONS(2534), - [anon_sym_interface] = ACTIONS(2534), - [anon_sym_enum] = ACTIONS(2534), + [ts_builtin_sym_end] = ACTIONS(1790), + [sym_identifier] = ACTIONS(1792), + [anon_sym_export] = ACTIONS(1792), + [anon_sym_default] = ACTIONS(1792), + [anon_sym_type] = ACTIONS(1792), + [anon_sym_namespace] = ACTIONS(1792), + [anon_sym_LBRACE] = ACTIONS(1790), + [anon_sym_RBRACE] = ACTIONS(1790), + [anon_sym_typeof] = ACTIONS(1792), + [anon_sym_import] = ACTIONS(1792), + [anon_sym_with] = ACTIONS(1792), + [anon_sym_var] = ACTIONS(1792), + [anon_sym_let] = ACTIONS(1792), + [anon_sym_const] = ACTIONS(1792), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_else] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1792), + [anon_sym_switch] = ACTIONS(1792), + [anon_sym_for] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_await] = ACTIONS(1792), + [anon_sym_while] = ACTIONS(1792), + [anon_sym_do] = ACTIONS(1792), + [anon_sym_try] = ACTIONS(1792), + [anon_sym_break] = ACTIONS(1792), + [anon_sym_continue] = ACTIONS(1792), + [anon_sym_debugger] = ACTIONS(1792), + [anon_sym_return] = ACTIONS(1792), + [anon_sym_throw] = ACTIONS(1792), + [anon_sym_case] = ACTIONS(1792), + [anon_sym_yield] = ACTIONS(1792), + [anon_sym_LBRACK] = ACTIONS(1790), + [anon_sym_class] = ACTIONS(1792), + [anon_sym_async] = ACTIONS(1792), + [anon_sym_function] = ACTIONS(1792), + [anon_sym_new] = ACTIONS(1792), + [anon_sym_using] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1792), + [anon_sym_SLASH] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_TILDE] = ACTIONS(1790), + [anon_sym_void] = ACTIONS(1792), + [anon_sym_delete] = ACTIONS(1792), + [anon_sym_PLUS_PLUS] = ACTIONS(1790), + [anon_sym_DASH_DASH] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1790), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1790), + [sym_number] = ACTIONS(1790), + [sym_private_property_identifier] = ACTIONS(1790), + [sym_this] = ACTIONS(1792), + [sym_super] = ACTIONS(1792), + [sym_true] = ACTIONS(1792), + [sym_false] = ACTIONS(1792), + [sym_null] = ACTIONS(1792), + [sym_undefined] = ACTIONS(1792), + [anon_sym_AT] = ACTIONS(1790), + [anon_sym_static] = ACTIONS(1792), + [anon_sym_readonly] = ACTIONS(1792), + [anon_sym_get] = ACTIONS(1792), + [anon_sym_set] = ACTIONS(1792), + [anon_sym_declare] = ACTIONS(1792), + [anon_sym_public] = ACTIONS(1792), + [anon_sym_private] = ACTIONS(1792), + [anon_sym_protected] = ACTIONS(1792), + [anon_sym_override] = ACTIONS(1792), + [anon_sym_module] = ACTIONS(1792), + [anon_sym_any] = ACTIONS(1792), + [anon_sym_number] = ACTIONS(1792), + [anon_sym_boolean] = ACTIONS(1792), + [anon_sym_string] = ACTIONS(1792), + [anon_sym_symbol] = ACTIONS(1792), + [anon_sym_object] = ACTIONS(1792), + [anon_sym_abstract] = ACTIONS(1792), + [anon_sym_interface] = ACTIONS(1792), + [anon_sym_enum] = ACTIONS(1792), + [sym__automatic_semicolon] = ACTIONS(1798), [sym_html_comment] = ACTIONS(5), }, [805] = { - [sym__call_signature] = STATE(5844), - [sym_formal_parameters] = STATE(3893), - [sym_type_parameters] = STATE(5354), - [sym_identifier] = ACTIONS(2422), - [anon_sym_export] = ACTIONS(2424), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2424), - [anon_sym_EQ] = ACTIONS(991), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2424), - [anon_sym_let] = ACTIONS(2424), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_async] = ACTIONS(2424), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(155), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2424), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_static] = ACTIONS(2424), - [anon_sym_readonly] = ACTIONS(2424), - [anon_sym_get] = ACTIONS(2424), - [anon_sym_set] = ACTIONS(2424), - [anon_sym_declare] = ACTIONS(2424), - [anon_sym_public] = ACTIONS(2424), - [anon_sym_private] = ACTIONS(2424), - [anon_sym_protected] = ACTIONS(2424), - [anon_sym_override] = ACTIONS(2424), - [anon_sym_module] = ACTIONS(2424), - [anon_sym_any] = ACTIONS(2424), - [anon_sym_number] = ACTIONS(2424), - [anon_sym_boolean] = ACTIONS(2424), - [anon_sym_string] = ACTIONS(2424), - [anon_sym_symbol] = ACTIONS(2424), - [anon_sym_object] = ACTIONS(2424), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_rest_pattern] = STATE(5165), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3773), + [sym_tuple_parameter] = STATE(4568), + [sym_optional_tuple_parameter] = STATE(4568), + [sym_optional_type] = STATE(4568), + [sym_rest_type] = STATE(4568), + [sym__tuple_type_member] = STATE(4568), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(2489), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_COMMA] = ACTIONS(2533), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(2535), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2495), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [806] = { - [sym__call_signature] = STATE(5844), - [sym_formal_parameters] = STATE(3893), - [sym_type_parameters] = STATE(5354), - [sym_identifier] = ACTIONS(2422), - [anon_sym_export] = ACTIONS(2424), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2424), - [anon_sym_EQ] = ACTIONS(1049), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2424), - [anon_sym_let] = ACTIONS(2424), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_async] = ACTIONS(2424), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(155), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_new] = ACTIONS(2424), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_static] = ACTIONS(2424), - [anon_sym_readonly] = ACTIONS(2424), - [anon_sym_get] = ACTIONS(2424), - [anon_sym_set] = ACTIONS(2424), - [anon_sym_declare] = ACTIONS(2424), - [anon_sym_public] = ACTIONS(2424), - [anon_sym_private] = ACTIONS(2424), - [anon_sym_protected] = ACTIONS(2424), - [anon_sym_override] = ACTIONS(2424), - [anon_sym_module] = ACTIONS(2424), - [anon_sym_any] = ACTIONS(2424), - [anon_sym_number] = ACTIONS(2424), - [anon_sym_boolean] = ACTIONS(2424), - [anon_sym_string] = ACTIONS(2424), - [anon_sym_symbol] = ACTIONS(2424), - [anon_sym_object] = ACTIONS(2424), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [ts_builtin_sym_end] = ACTIONS(1866), + [sym_identifier] = ACTIONS(1868), + [anon_sym_export] = ACTIONS(1868), + [anon_sym_default] = ACTIONS(1868), + [anon_sym_type] = ACTIONS(1868), + [anon_sym_namespace] = ACTIONS(1868), + [anon_sym_LBRACE] = ACTIONS(1866), + [anon_sym_RBRACE] = ACTIONS(1866), + [anon_sym_typeof] = ACTIONS(1868), + [anon_sym_import] = ACTIONS(1868), + [anon_sym_with] = ACTIONS(1868), + [anon_sym_var] = ACTIONS(1868), + [anon_sym_let] = ACTIONS(1868), + [anon_sym_const] = ACTIONS(1868), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_else] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(1868), + [anon_sym_switch] = ACTIONS(1868), + [anon_sym_for] = ACTIONS(1868), + [anon_sym_LPAREN] = ACTIONS(1866), + [anon_sym_SEMI] = ACTIONS(1866), + [anon_sym_await] = ACTIONS(1868), + [anon_sym_while] = ACTIONS(1868), + [anon_sym_do] = ACTIONS(1868), + [anon_sym_try] = ACTIONS(1868), + [anon_sym_break] = ACTIONS(1868), + [anon_sym_continue] = ACTIONS(1868), + [anon_sym_debugger] = ACTIONS(1868), + [anon_sym_return] = ACTIONS(1868), + [anon_sym_throw] = ACTIONS(1868), + [anon_sym_case] = ACTIONS(1868), + [anon_sym_yield] = ACTIONS(1868), + [anon_sym_LBRACK] = ACTIONS(1866), + [anon_sym_class] = ACTIONS(1868), + [anon_sym_async] = ACTIONS(1868), + [anon_sym_function] = ACTIONS(1868), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_using] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1868), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_SLASH] = ACTIONS(1868), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_void] = ACTIONS(1868), + [anon_sym_delete] = ACTIONS(1868), + [anon_sym_PLUS_PLUS] = ACTIONS(1866), + [anon_sym_DASH_DASH] = ACTIONS(1866), + [anon_sym_DQUOTE] = ACTIONS(1866), + [anon_sym_SQUOTE] = ACTIONS(1866), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1866), + [sym_number] = ACTIONS(1866), + [sym_private_property_identifier] = ACTIONS(1866), + [sym_this] = ACTIONS(1868), + [sym_super] = ACTIONS(1868), + [sym_true] = ACTIONS(1868), + [sym_false] = ACTIONS(1868), + [sym_null] = ACTIONS(1868), + [sym_undefined] = ACTIONS(1868), + [anon_sym_AT] = ACTIONS(1866), + [anon_sym_static] = ACTIONS(1868), + [anon_sym_readonly] = ACTIONS(1868), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), + [anon_sym_declare] = ACTIONS(1868), + [anon_sym_public] = ACTIONS(1868), + [anon_sym_private] = ACTIONS(1868), + [anon_sym_protected] = ACTIONS(1868), + [anon_sym_override] = ACTIONS(1868), + [anon_sym_module] = ACTIONS(1868), + [anon_sym_any] = ACTIONS(1868), + [anon_sym_number] = ACTIONS(1868), + [anon_sym_boolean] = ACTIONS(1868), + [anon_sym_string] = ACTIONS(1868), + [anon_sym_symbol] = ACTIONS(1868), + [anon_sym_object] = ACTIONS(1868), + [anon_sym_abstract] = ACTIONS(1868), + [anon_sym_interface] = ACTIONS(1868), + [anon_sym_enum] = ACTIONS(1868), + [sym__automatic_semicolon] = ACTIONS(1874), [sym_html_comment] = ACTIONS(5), }, [807] = { - [ts_builtin_sym_end] = ACTIONS(2536), - [sym_identifier] = ACTIONS(2538), - [anon_sym_export] = ACTIONS(2538), - [anon_sym_default] = ACTIONS(2538), - [anon_sym_type] = ACTIONS(2538), - [anon_sym_namespace] = ACTIONS(2538), - [anon_sym_LBRACE] = ACTIONS(2536), - [anon_sym_RBRACE] = ACTIONS(2536), - [anon_sym_typeof] = ACTIONS(2538), - [anon_sym_import] = ACTIONS(2538), - [anon_sym_with] = ACTIONS(2538), - [anon_sym_var] = ACTIONS(2538), - [anon_sym_let] = ACTIONS(2538), - [anon_sym_const] = ACTIONS(2538), - [anon_sym_BANG] = ACTIONS(2536), - [anon_sym_else] = ACTIONS(2538), - [anon_sym_if] = ACTIONS(2538), - [anon_sym_switch] = ACTIONS(2538), - [anon_sym_for] = ACTIONS(2538), - [anon_sym_LPAREN] = ACTIONS(2536), - [anon_sym_SEMI] = ACTIONS(2536), - [anon_sym_await] = ACTIONS(2538), - [anon_sym_while] = ACTIONS(2538), - [anon_sym_do] = ACTIONS(2538), - [anon_sym_try] = ACTIONS(2538), - [anon_sym_break] = ACTIONS(2538), - [anon_sym_continue] = ACTIONS(2538), - [anon_sym_debugger] = ACTIONS(2538), - [anon_sym_return] = ACTIONS(2538), - [anon_sym_throw] = ACTIONS(2538), - [anon_sym_case] = ACTIONS(2538), - [anon_sym_yield] = ACTIONS(2538), - [anon_sym_LBRACK] = ACTIONS(2536), - [sym_glimmer_opening_tag] = ACTIONS(2536), - [anon_sym_class] = ACTIONS(2538), - [anon_sym_async] = ACTIONS(2538), - [anon_sym_function] = ACTIONS(2538), - [anon_sym_new] = ACTIONS(2538), - [anon_sym_using] = ACTIONS(2538), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_SLASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2538), - [anon_sym_TILDE] = ACTIONS(2536), - [anon_sym_void] = ACTIONS(2538), - [anon_sym_delete] = ACTIONS(2538), - [anon_sym_PLUS_PLUS] = ACTIONS(2536), - [anon_sym_DASH_DASH] = ACTIONS(2536), - [anon_sym_DQUOTE] = ACTIONS(2536), - [anon_sym_SQUOTE] = ACTIONS(2536), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2536), - [sym_number] = ACTIONS(2536), - [sym_private_property_identifier] = ACTIONS(2536), - [sym_this] = ACTIONS(2538), - [sym_super] = ACTIONS(2538), - [sym_true] = ACTIONS(2538), - [sym_false] = ACTIONS(2538), - [sym_null] = ACTIONS(2538), - [sym_undefined] = ACTIONS(2538), - [anon_sym_AT] = ACTIONS(2536), - [anon_sym_static] = ACTIONS(2538), - [anon_sym_readonly] = ACTIONS(2538), - [anon_sym_get] = ACTIONS(2538), - [anon_sym_set] = ACTIONS(2538), - [anon_sym_declare] = ACTIONS(2538), - [anon_sym_public] = ACTIONS(2538), - [anon_sym_private] = ACTIONS(2538), - [anon_sym_protected] = ACTIONS(2538), - [anon_sym_override] = ACTIONS(2538), - [anon_sym_module] = ACTIONS(2538), - [anon_sym_any] = ACTIONS(2538), - [anon_sym_number] = ACTIONS(2538), - [anon_sym_boolean] = ACTIONS(2538), - [anon_sym_string] = ACTIONS(2538), - [anon_sym_symbol] = ACTIONS(2538), - [anon_sym_object] = ACTIONS(2538), - [anon_sym_abstract] = ACTIONS(2538), - [anon_sym_interface] = ACTIONS(2538), - [anon_sym_enum] = ACTIONS(2538), + [ts_builtin_sym_end] = ACTIONS(2537), + [sym_identifier] = ACTIONS(2539), + [anon_sym_export] = ACTIONS(2539), + [anon_sym_default] = ACTIONS(2539), + [anon_sym_type] = ACTIONS(2539), + [anon_sym_namespace] = ACTIONS(2539), + [anon_sym_LBRACE] = ACTIONS(2537), + [anon_sym_RBRACE] = ACTIONS(2537), + [anon_sym_typeof] = ACTIONS(2539), + [anon_sym_import] = ACTIONS(2539), + [anon_sym_with] = ACTIONS(2539), + [anon_sym_var] = ACTIONS(2539), + [anon_sym_let] = ACTIONS(2539), + [anon_sym_const] = ACTIONS(2539), + [anon_sym_BANG] = ACTIONS(2537), + [anon_sym_else] = ACTIONS(2539), + [anon_sym_if] = ACTIONS(2539), + [anon_sym_switch] = ACTIONS(2539), + [anon_sym_for] = ACTIONS(2539), + [anon_sym_LPAREN] = ACTIONS(2537), + [anon_sym_SEMI] = ACTIONS(2537), + [anon_sym_await] = ACTIONS(2539), + [anon_sym_while] = ACTIONS(2539), + [anon_sym_do] = ACTIONS(2539), + [anon_sym_try] = ACTIONS(2539), + [anon_sym_break] = ACTIONS(2539), + [anon_sym_continue] = ACTIONS(2539), + [anon_sym_debugger] = ACTIONS(2539), + [anon_sym_return] = ACTIONS(2539), + [anon_sym_throw] = ACTIONS(2539), + [anon_sym_case] = ACTIONS(2539), + [anon_sym_finally] = ACTIONS(2539), + [anon_sym_yield] = ACTIONS(2539), + [anon_sym_LBRACK] = ACTIONS(2537), + [anon_sym_class] = ACTIONS(2539), + [anon_sym_async] = ACTIONS(2539), + [anon_sym_function] = ACTIONS(2539), + [anon_sym_new] = ACTIONS(2539), + [anon_sym_using] = ACTIONS(2539), + [anon_sym_PLUS] = ACTIONS(2539), + [anon_sym_DASH] = ACTIONS(2539), + [anon_sym_SLASH] = ACTIONS(2539), + [anon_sym_LT] = ACTIONS(2537), + [anon_sym_TILDE] = ACTIONS(2537), + [anon_sym_void] = ACTIONS(2539), + [anon_sym_delete] = ACTIONS(2539), + [anon_sym_PLUS_PLUS] = ACTIONS(2537), + [anon_sym_DASH_DASH] = ACTIONS(2537), + [anon_sym_DQUOTE] = ACTIONS(2537), + [anon_sym_SQUOTE] = ACTIONS(2537), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2537), + [sym_number] = ACTIONS(2537), + [sym_private_property_identifier] = ACTIONS(2537), + [sym_this] = ACTIONS(2539), + [sym_super] = ACTIONS(2539), + [sym_true] = ACTIONS(2539), + [sym_false] = ACTIONS(2539), + [sym_null] = ACTIONS(2539), + [sym_undefined] = ACTIONS(2539), + [anon_sym_AT] = ACTIONS(2537), + [anon_sym_static] = ACTIONS(2539), + [anon_sym_readonly] = ACTIONS(2539), + [anon_sym_get] = ACTIONS(2539), + [anon_sym_set] = ACTIONS(2539), + [anon_sym_declare] = ACTIONS(2539), + [anon_sym_public] = ACTIONS(2539), + [anon_sym_private] = ACTIONS(2539), + [anon_sym_protected] = ACTIONS(2539), + [anon_sym_override] = ACTIONS(2539), + [anon_sym_module] = ACTIONS(2539), + [anon_sym_any] = ACTIONS(2539), + [anon_sym_number] = ACTIONS(2539), + [anon_sym_boolean] = ACTIONS(2539), + [anon_sym_string] = ACTIONS(2539), + [anon_sym_symbol] = ACTIONS(2539), + [anon_sym_object] = ACTIONS(2539), + [anon_sym_abstract] = ACTIONS(2539), + [anon_sym_interface] = ACTIONS(2539), + [anon_sym_enum] = ACTIONS(2539), [sym_html_comment] = ACTIONS(5), }, [808] = { - [ts_builtin_sym_end] = ACTIONS(2540), - [sym_identifier] = ACTIONS(2542), - [anon_sym_export] = ACTIONS(2542), - [anon_sym_default] = ACTIONS(2542), - [anon_sym_type] = ACTIONS(2542), - [anon_sym_namespace] = ACTIONS(2542), - [anon_sym_LBRACE] = ACTIONS(2540), - [anon_sym_RBRACE] = ACTIONS(2540), - [anon_sym_typeof] = ACTIONS(2542), - [anon_sym_import] = ACTIONS(2542), - [anon_sym_with] = ACTIONS(2542), - [anon_sym_var] = ACTIONS(2542), - [anon_sym_let] = ACTIONS(2542), - [anon_sym_const] = ACTIONS(2542), - [anon_sym_BANG] = ACTIONS(2540), - [anon_sym_else] = ACTIONS(2542), - [anon_sym_if] = ACTIONS(2542), - [anon_sym_switch] = ACTIONS(2542), - [anon_sym_for] = ACTIONS(2542), - [anon_sym_LPAREN] = ACTIONS(2540), - [anon_sym_SEMI] = ACTIONS(2540), - [anon_sym_await] = ACTIONS(2542), - [anon_sym_while] = ACTIONS(2542), - [anon_sym_do] = ACTIONS(2542), - [anon_sym_try] = ACTIONS(2542), - [anon_sym_break] = ACTIONS(2542), - [anon_sym_continue] = ACTIONS(2542), - [anon_sym_debugger] = ACTIONS(2542), - [anon_sym_return] = ACTIONS(2542), - [anon_sym_throw] = ACTIONS(2542), - [anon_sym_case] = ACTIONS(2542), - [anon_sym_yield] = ACTIONS(2542), - [anon_sym_LBRACK] = ACTIONS(2540), - [sym_glimmer_opening_tag] = ACTIONS(2540), - [anon_sym_class] = ACTIONS(2542), - [anon_sym_async] = ACTIONS(2542), - [anon_sym_function] = ACTIONS(2542), - [anon_sym_new] = ACTIONS(2542), - [anon_sym_using] = ACTIONS(2542), - [anon_sym_PLUS] = ACTIONS(2542), - [anon_sym_DASH] = ACTIONS(2542), - [anon_sym_SLASH] = ACTIONS(2542), - [anon_sym_LT] = ACTIONS(2542), - [anon_sym_TILDE] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(2542), - [anon_sym_delete] = ACTIONS(2542), - [anon_sym_PLUS_PLUS] = ACTIONS(2540), - [anon_sym_DASH_DASH] = ACTIONS(2540), - [anon_sym_DQUOTE] = ACTIONS(2540), - [anon_sym_SQUOTE] = ACTIONS(2540), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2540), - [sym_number] = ACTIONS(2540), - [sym_private_property_identifier] = ACTIONS(2540), - [sym_this] = ACTIONS(2542), - [sym_super] = ACTIONS(2542), - [sym_true] = ACTIONS(2542), - [sym_false] = ACTIONS(2542), - [sym_null] = ACTIONS(2542), - [sym_undefined] = ACTIONS(2542), - [anon_sym_AT] = ACTIONS(2540), - [anon_sym_static] = ACTIONS(2542), - [anon_sym_readonly] = ACTIONS(2542), - [anon_sym_get] = ACTIONS(2542), - [anon_sym_set] = ACTIONS(2542), - [anon_sym_declare] = ACTIONS(2542), - [anon_sym_public] = ACTIONS(2542), - [anon_sym_private] = ACTIONS(2542), - [anon_sym_protected] = ACTIONS(2542), - [anon_sym_override] = ACTIONS(2542), - [anon_sym_module] = ACTIONS(2542), - [anon_sym_any] = ACTIONS(2542), - [anon_sym_number] = ACTIONS(2542), - [anon_sym_boolean] = ACTIONS(2542), - [anon_sym_string] = ACTIONS(2542), - [anon_sym_symbol] = ACTIONS(2542), - [anon_sym_object] = ACTIONS(2542), - [anon_sym_abstract] = ACTIONS(2542), - [anon_sym_interface] = ACTIONS(2542), - [anon_sym_enum] = ACTIONS(2542), + [ts_builtin_sym_end] = ACTIONS(2541), + [sym_identifier] = ACTIONS(2543), + [anon_sym_export] = ACTIONS(2543), + [anon_sym_default] = ACTIONS(2543), + [anon_sym_type] = ACTIONS(2543), + [anon_sym_namespace] = ACTIONS(2543), + [anon_sym_LBRACE] = ACTIONS(2541), + [anon_sym_RBRACE] = ACTIONS(2541), + [anon_sym_typeof] = ACTIONS(2543), + [anon_sym_import] = ACTIONS(2543), + [anon_sym_with] = ACTIONS(2543), + [anon_sym_var] = ACTIONS(2543), + [anon_sym_let] = ACTIONS(2543), + [anon_sym_const] = ACTIONS(2543), + [anon_sym_BANG] = ACTIONS(2541), + [anon_sym_else] = ACTIONS(2543), + [anon_sym_if] = ACTIONS(2543), + [anon_sym_switch] = ACTIONS(2543), + [anon_sym_for] = ACTIONS(2543), + [anon_sym_LPAREN] = ACTIONS(2541), + [anon_sym_SEMI] = ACTIONS(2541), + [anon_sym_await] = ACTIONS(2543), + [anon_sym_while] = ACTIONS(2543), + [anon_sym_do] = ACTIONS(2543), + [anon_sym_try] = ACTIONS(2543), + [anon_sym_break] = ACTIONS(2543), + [anon_sym_continue] = ACTIONS(2543), + [anon_sym_debugger] = ACTIONS(2543), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_throw] = ACTIONS(2543), + [anon_sym_case] = ACTIONS(2543), + [anon_sym_finally] = ACTIONS(2543), + [anon_sym_yield] = ACTIONS(2543), + [anon_sym_LBRACK] = ACTIONS(2541), + [anon_sym_class] = ACTIONS(2543), + [anon_sym_async] = ACTIONS(2543), + [anon_sym_function] = ACTIONS(2543), + [anon_sym_new] = ACTIONS(2543), + [anon_sym_using] = ACTIONS(2543), + [anon_sym_PLUS] = ACTIONS(2543), + [anon_sym_DASH] = ACTIONS(2543), + [anon_sym_SLASH] = ACTIONS(2543), + [anon_sym_LT] = ACTIONS(2541), + [anon_sym_TILDE] = ACTIONS(2541), + [anon_sym_void] = ACTIONS(2543), + [anon_sym_delete] = ACTIONS(2543), + [anon_sym_PLUS_PLUS] = ACTIONS(2541), + [anon_sym_DASH_DASH] = ACTIONS(2541), + [anon_sym_DQUOTE] = ACTIONS(2541), + [anon_sym_SQUOTE] = ACTIONS(2541), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2541), + [sym_number] = ACTIONS(2541), + [sym_private_property_identifier] = ACTIONS(2541), + [sym_this] = ACTIONS(2543), + [sym_super] = ACTIONS(2543), + [sym_true] = ACTIONS(2543), + [sym_false] = ACTIONS(2543), + [sym_null] = ACTIONS(2543), + [sym_undefined] = ACTIONS(2543), + [anon_sym_AT] = ACTIONS(2541), + [anon_sym_static] = ACTIONS(2543), + [anon_sym_readonly] = ACTIONS(2543), + [anon_sym_get] = ACTIONS(2543), + [anon_sym_set] = ACTIONS(2543), + [anon_sym_declare] = ACTIONS(2543), + [anon_sym_public] = ACTIONS(2543), + [anon_sym_private] = ACTIONS(2543), + [anon_sym_protected] = ACTIONS(2543), + [anon_sym_override] = ACTIONS(2543), + [anon_sym_module] = ACTIONS(2543), + [anon_sym_any] = ACTIONS(2543), + [anon_sym_number] = ACTIONS(2543), + [anon_sym_boolean] = ACTIONS(2543), + [anon_sym_string] = ACTIONS(2543), + [anon_sym_symbol] = ACTIONS(2543), + [anon_sym_object] = ACTIONS(2543), + [anon_sym_abstract] = ACTIONS(2543), + [anon_sym_interface] = ACTIONS(2543), + [anon_sym_enum] = ACTIONS(2543), [sym_html_comment] = ACTIONS(5), }, [809] = { - [ts_builtin_sym_end] = ACTIONS(2544), - [sym_identifier] = ACTIONS(2546), - [anon_sym_export] = ACTIONS(2546), - [anon_sym_default] = ACTIONS(2546), - [anon_sym_type] = ACTIONS(2546), - [anon_sym_namespace] = ACTIONS(2546), - [anon_sym_LBRACE] = ACTIONS(2544), - [anon_sym_RBRACE] = ACTIONS(2544), - [anon_sym_typeof] = ACTIONS(2546), - [anon_sym_import] = ACTIONS(2546), - [anon_sym_with] = ACTIONS(2546), - [anon_sym_var] = ACTIONS(2546), - [anon_sym_let] = ACTIONS(2546), - [anon_sym_const] = ACTIONS(2546), - [anon_sym_BANG] = ACTIONS(2544), - [anon_sym_else] = ACTIONS(2546), - [anon_sym_if] = ACTIONS(2546), - [anon_sym_switch] = ACTIONS(2546), - [anon_sym_for] = ACTIONS(2546), - [anon_sym_LPAREN] = ACTIONS(2544), - [anon_sym_SEMI] = ACTIONS(2544), - [anon_sym_await] = ACTIONS(2546), - [anon_sym_while] = ACTIONS(2546), - [anon_sym_do] = ACTIONS(2546), - [anon_sym_try] = ACTIONS(2546), - [anon_sym_break] = ACTIONS(2546), - [anon_sym_continue] = ACTIONS(2546), - [anon_sym_debugger] = ACTIONS(2546), - [anon_sym_return] = ACTIONS(2546), - [anon_sym_throw] = ACTIONS(2546), - [anon_sym_case] = ACTIONS(2546), - [anon_sym_yield] = ACTIONS(2546), - [anon_sym_LBRACK] = ACTIONS(2544), - [sym_glimmer_opening_tag] = ACTIONS(2544), - [anon_sym_class] = ACTIONS(2546), - [anon_sym_async] = ACTIONS(2546), - [anon_sym_function] = ACTIONS(2546), - [anon_sym_new] = ACTIONS(2546), - [anon_sym_using] = ACTIONS(2546), - [anon_sym_PLUS] = ACTIONS(2546), - [anon_sym_DASH] = ACTIONS(2546), - [anon_sym_SLASH] = ACTIONS(2546), - [anon_sym_LT] = ACTIONS(2546), - [anon_sym_TILDE] = ACTIONS(2544), - [anon_sym_void] = ACTIONS(2546), - [anon_sym_delete] = ACTIONS(2546), - [anon_sym_PLUS_PLUS] = ACTIONS(2544), - [anon_sym_DASH_DASH] = ACTIONS(2544), - [anon_sym_DQUOTE] = ACTIONS(2544), - [anon_sym_SQUOTE] = ACTIONS(2544), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2544), - [sym_number] = ACTIONS(2544), - [sym_private_property_identifier] = ACTIONS(2544), - [sym_this] = ACTIONS(2546), - [sym_super] = ACTIONS(2546), - [sym_true] = ACTIONS(2546), - [sym_false] = ACTIONS(2546), - [sym_null] = ACTIONS(2546), - [sym_undefined] = ACTIONS(2546), - [anon_sym_AT] = ACTIONS(2544), - [anon_sym_static] = ACTIONS(2546), - [anon_sym_readonly] = ACTIONS(2546), - [anon_sym_get] = ACTIONS(2546), - [anon_sym_set] = ACTIONS(2546), - [anon_sym_declare] = ACTIONS(2546), - [anon_sym_public] = ACTIONS(2546), - [anon_sym_private] = ACTIONS(2546), - [anon_sym_protected] = ACTIONS(2546), - [anon_sym_override] = ACTIONS(2546), - [anon_sym_module] = ACTIONS(2546), - [anon_sym_any] = ACTIONS(2546), - [anon_sym_number] = ACTIONS(2546), - [anon_sym_boolean] = ACTIONS(2546), - [anon_sym_string] = ACTIONS(2546), - [anon_sym_symbol] = ACTIONS(2546), - [anon_sym_object] = ACTIONS(2546), - [anon_sym_abstract] = ACTIONS(2546), - [anon_sym_interface] = ACTIONS(2546), - [anon_sym_enum] = ACTIONS(2546), + [ts_builtin_sym_end] = ACTIONS(2545), + [sym_identifier] = ACTIONS(2547), + [anon_sym_export] = ACTIONS(2547), + [anon_sym_default] = ACTIONS(2547), + [anon_sym_type] = ACTIONS(2547), + [anon_sym_namespace] = ACTIONS(2547), + [anon_sym_LBRACE] = ACTIONS(2545), + [anon_sym_RBRACE] = ACTIONS(2545), + [anon_sym_typeof] = ACTIONS(2547), + [anon_sym_import] = ACTIONS(2547), + [anon_sym_with] = ACTIONS(2547), + [anon_sym_var] = ACTIONS(2547), + [anon_sym_let] = ACTIONS(2547), + [anon_sym_const] = ACTIONS(2547), + [anon_sym_BANG] = ACTIONS(2545), + [anon_sym_else] = ACTIONS(2547), + [anon_sym_if] = ACTIONS(2547), + [anon_sym_switch] = ACTIONS(2547), + [anon_sym_for] = ACTIONS(2547), + [anon_sym_LPAREN] = ACTIONS(2545), + [anon_sym_SEMI] = ACTIONS(2545), + [anon_sym_await] = ACTIONS(2547), + [anon_sym_while] = ACTIONS(2547), + [anon_sym_do] = ACTIONS(2547), + [anon_sym_try] = ACTIONS(2547), + [anon_sym_break] = ACTIONS(2547), + [anon_sym_continue] = ACTIONS(2547), + [anon_sym_debugger] = ACTIONS(2547), + [anon_sym_return] = ACTIONS(2547), + [anon_sym_throw] = ACTIONS(2547), + [anon_sym_case] = ACTIONS(2547), + [anon_sym_finally] = ACTIONS(2547), + [anon_sym_yield] = ACTIONS(2547), + [anon_sym_LBRACK] = ACTIONS(2545), + [anon_sym_class] = ACTIONS(2547), + [anon_sym_async] = ACTIONS(2547), + [anon_sym_function] = ACTIONS(2547), + [anon_sym_new] = ACTIONS(2547), + [anon_sym_using] = ACTIONS(2547), + [anon_sym_PLUS] = ACTIONS(2547), + [anon_sym_DASH] = ACTIONS(2547), + [anon_sym_SLASH] = ACTIONS(2547), + [anon_sym_LT] = ACTIONS(2545), + [anon_sym_TILDE] = ACTIONS(2545), + [anon_sym_void] = ACTIONS(2547), + [anon_sym_delete] = ACTIONS(2547), + [anon_sym_PLUS_PLUS] = ACTIONS(2545), + [anon_sym_DASH_DASH] = ACTIONS(2545), + [anon_sym_DQUOTE] = ACTIONS(2545), + [anon_sym_SQUOTE] = ACTIONS(2545), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2545), + [sym_number] = ACTIONS(2545), + [sym_private_property_identifier] = ACTIONS(2545), + [sym_this] = ACTIONS(2547), + [sym_super] = ACTIONS(2547), + [sym_true] = ACTIONS(2547), + [sym_false] = ACTIONS(2547), + [sym_null] = ACTIONS(2547), + [sym_undefined] = ACTIONS(2547), + [anon_sym_AT] = ACTIONS(2545), + [anon_sym_static] = ACTIONS(2547), + [anon_sym_readonly] = ACTIONS(2547), + [anon_sym_get] = ACTIONS(2547), + [anon_sym_set] = ACTIONS(2547), + [anon_sym_declare] = ACTIONS(2547), + [anon_sym_public] = ACTIONS(2547), + [anon_sym_private] = ACTIONS(2547), + [anon_sym_protected] = ACTIONS(2547), + [anon_sym_override] = ACTIONS(2547), + [anon_sym_module] = ACTIONS(2547), + [anon_sym_any] = ACTIONS(2547), + [anon_sym_number] = ACTIONS(2547), + [anon_sym_boolean] = ACTIONS(2547), + [anon_sym_string] = ACTIONS(2547), + [anon_sym_symbol] = ACTIONS(2547), + [anon_sym_object] = ACTIONS(2547), + [anon_sym_abstract] = ACTIONS(2547), + [anon_sym_interface] = ACTIONS(2547), + [anon_sym_enum] = ACTIONS(2547), [sym_html_comment] = ACTIONS(5), }, [810] = { - [ts_builtin_sym_end] = ACTIONS(2548), - [sym_identifier] = ACTIONS(2550), - [anon_sym_export] = ACTIONS(2550), - [anon_sym_default] = ACTIONS(2550), - [anon_sym_type] = ACTIONS(2550), - [anon_sym_namespace] = ACTIONS(2550), - [anon_sym_LBRACE] = ACTIONS(2548), - [anon_sym_RBRACE] = ACTIONS(2548), - [anon_sym_typeof] = ACTIONS(2550), - [anon_sym_import] = ACTIONS(2550), - [anon_sym_with] = ACTIONS(2550), - [anon_sym_var] = ACTIONS(2550), - [anon_sym_let] = ACTIONS(2550), - [anon_sym_const] = ACTIONS(2550), - [anon_sym_BANG] = ACTIONS(2548), - [anon_sym_else] = ACTIONS(2550), - [anon_sym_if] = ACTIONS(2550), - [anon_sym_switch] = ACTIONS(2550), - [anon_sym_for] = ACTIONS(2550), - [anon_sym_LPAREN] = ACTIONS(2548), - [anon_sym_SEMI] = ACTIONS(2548), - [anon_sym_await] = ACTIONS(2550), - [anon_sym_while] = ACTIONS(2550), - [anon_sym_do] = ACTIONS(2550), - [anon_sym_try] = ACTIONS(2550), - [anon_sym_break] = ACTIONS(2550), - [anon_sym_continue] = ACTIONS(2550), - [anon_sym_debugger] = ACTIONS(2550), - [anon_sym_return] = ACTIONS(2550), - [anon_sym_throw] = ACTIONS(2550), - [anon_sym_case] = ACTIONS(2550), - [anon_sym_yield] = ACTIONS(2550), - [anon_sym_LBRACK] = ACTIONS(2548), - [sym_glimmer_opening_tag] = ACTIONS(2548), - [anon_sym_class] = ACTIONS(2550), - [anon_sym_async] = ACTIONS(2550), - [anon_sym_function] = ACTIONS(2550), - [anon_sym_new] = ACTIONS(2550), - [anon_sym_using] = ACTIONS(2550), - [anon_sym_PLUS] = ACTIONS(2550), - [anon_sym_DASH] = ACTIONS(2550), - [anon_sym_SLASH] = ACTIONS(2550), - [anon_sym_LT] = ACTIONS(2550), - [anon_sym_TILDE] = ACTIONS(2548), - [anon_sym_void] = ACTIONS(2550), - [anon_sym_delete] = ACTIONS(2550), - [anon_sym_PLUS_PLUS] = ACTIONS(2548), - [anon_sym_DASH_DASH] = ACTIONS(2548), - [anon_sym_DQUOTE] = ACTIONS(2548), - [anon_sym_SQUOTE] = ACTIONS(2548), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2548), - [sym_number] = ACTIONS(2548), - [sym_private_property_identifier] = ACTIONS(2548), - [sym_this] = ACTIONS(2550), - [sym_super] = ACTIONS(2550), - [sym_true] = ACTIONS(2550), - [sym_false] = ACTIONS(2550), - [sym_null] = ACTIONS(2550), - [sym_undefined] = ACTIONS(2550), - [anon_sym_AT] = ACTIONS(2548), - [anon_sym_static] = ACTIONS(2550), - [anon_sym_readonly] = ACTIONS(2550), - [anon_sym_get] = ACTIONS(2550), - [anon_sym_set] = ACTIONS(2550), - [anon_sym_declare] = ACTIONS(2550), - [anon_sym_public] = ACTIONS(2550), - [anon_sym_private] = ACTIONS(2550), - [anon_sym_protected] = ACTIONS(2550), - [anon_sym_override] = ACTIONS(2550), - [anon_sym_module] = ACTIONS(2550), - [anon_sym_any] = ACTIONS(2550), - [anon_sym_number] = ACTIONS(2550), - [anon_sym_boolean] = ACTIONS(2550), - [anon_sym_string] = ACTIONS(2550), - [anon_sym_symbol] = ACTIONS(2550), - [anon_sym_object] = ACTIONS(2550), - [anon_sym_abstract] = ACTIONS(2550), - [anon_sym_interface] = ACTIONS(2550), - [anon_sym_enum] = ACTIONS(2550), + [ts_builtin_sym_end] = ACTIONS(2549), + [sym_identifier] = ACTIONS(2551), + [anon_sym_export] = ACTIONS(2551), + [anon_sym_default] = ACTIONS(2551), + [anon_sym_type] = ACTIONS(2551), + [anon_sym_namespace] = ACTIONS(2551), + [anon_sym_LBRACE] = ACTIONS(2549), + [anon_sym_RBRACE] = ACTIONS(2549), + [anon_sym_typeof] = ACTIONS(2551), + [anon_sym_import] = ACTIONS(2551), + [anon_sym_with] = ACTIONS(2551), + [anon_sym_var] = ACTIONS(2551), + [anon_sym_let] = ACTIONS(2551), + [anon_sym_const] = ACTIONS(2551), + [anon_sym_BANG] = ACTIONS(2549), + [anon_sym_else] = ACTIONS(2551), + [anon_sym_if] = ACTIONS(2551), + [anon_sym_switch] = ACTIONS(2551), + [anon_sym_for] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2549), + [anon_sym_SEMI] = ACTIONS(2549), + [anon_sym_RPAREN] = ACTIONS(2549), + [anon_sym_await] = ACTIONS(2551), + [anon_sym_while] = ACTIONS(2551), + [anon_sym_do] = ACTIONS(2551), + [anon_sym_try] = ACTIONS(2551), + [anon_sym_break] = ACTIONS(2551), + [anon_sym_continue] = ACTIONS(2551), + [anon_sym_debugger] = ACTIONS(2551), + [anon_sym_return] = ACTIONS(2551), + [anon_sym_throw] = ACTIONS(2551), + [anon_sym_case] = ACTIONS(2551), + [anon_sym_yield] = ACTIONS(2551), + [anon_sym_LBRACK] = ACTIONS(2549), + [anon_sym_class] = ACTIONS(2551), + [anon_sym_async] = ACTIONS(2551), + [anon_sym_function] = ACTIONS(2551), + [anon_sym_new] = ACTIONS(2551), + [anon_sym_using] = ACTIONS(2551), + [anon_sym_PLUS] = ACTIONS(2551), + [anon_sym_DASH] = ACTIONS(2551), + [anon_sym_SLASH] = ACTIONS(2551), + [anon_sym_LT] = ACTIONS(2549), + [anon_sym_TILDE] = ACTIONS(2549), + [anon_sym_void] = ACTIONS(2551), + [anon_sym_delete] = ACTIONS(2551), + [anon_sym_PLUS_PLUS] = ACTIONS(2549), + [anon_sym_DASH_DASH] = ACTIONS(2549), + [anon_sym_DQUOTE] = ACTIONS(2549), + [anon_sym_SQUOTE] = ACTIONS(2549), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2549), + [sym_number] = ACTIONS(2549), + [sym_private_property_identifier] = ACTIONS(2549), + [sym_this] = ACTIONS(2551), + [sym_super] = ACTIONS(2551), + [sym_true] = ACTIONS(2551), + [sym_false] = ACTIONS(2551), + [sym_null] = ACTIONS(2551), + [sym_undefined] = ACTIONS(2551), + [anon_sym_AT] = ACTIONS(2549), + [anon_sym_static] = ACTIONS(2551), + [anon_sym_readonly] = ACTIONS(2551), + [anon_sym_get] = ACTIONS(2551), + [anon_sym_set] = ACTIONS(2551), + [anon_sym_declare] = ACTIONS(2551), + [anon_sym_public] = ACTIONS(2551), + [anon_sym_private] = ACTIONS(2551), + [anon_sym_protected] = ACTIONS(2551), + [anon_sym_override] = ACTIONS(2551), + [anon_sym_module] = ACTIONS(2551), + [anon_sym_any] = ACTIONS(2551), + [anon_sym_number] = ACTIONS(2551), + [anon_sym_boolean] = ACTIONS(2551), + [anon_sym_string] = ACTIONS(2551), + [anon_sym_symbol] = ACTIONS(2551), + [anon_sym_object] = ACTIONS(2551), + [anon_sym_abstract] = ACTIONS(2551), + [anon_sym_interface] = ACTIONS(2551), + [anon_sym_enum] = ACTIONS(2551), [sym_html_comment] = ACTIONS(5), }, [811] = { - [ts_builtin_sym_end] = ACTIONS(2552), - [sym_identifier] = ACTIONS(2554), - [anon_sym_export] = ACTIONS(2554), - [anon_sym_default] = ACTIONS(2554), - [anon_sym_type] = ACTIONS(2554), - [anon_sym_namespace] = ACTIONS(2554), - [anon_sym_LBRACE] = ACTIONS(2552), - [anon_sym_RBRACE] = ACTIONS(2552), - [anon_sym_typeof] = ACTIONS(2554), - [anon_sym_import] = ACTIONS(2554), - [anon_sym_with] = ACTIONS(2554), - [anon_sym_var] = ACTIONS(2554), - [anon_sym_let] = ACTIONS(2554), - [anon_sym_const] = ACTIONS(2554), - [anon_sym_BANG] = ACTIONS(2552), - [anon_sym_else] = ACTIONS(2554), - [anon_sym_if] = ACTIONS(2554), - [anon_sym_switch] = ACTIONS(2554), - [anon_sym_for] = ACTIONS(2554), - [anon_sym_LPAREN] = ACTIONS(2552), - [anon_sym_SEMI] = ACTIONS(2552), - [anon_sym_await] = ACTIONS(2554), - [anon_sym_while] = ACTIONS(2554), - [anon_sym_do] = ACTIONS(2554), - [anon_sym_try] = ACTIONS(2554), - [anon_sym_break] = ACTIONS(2554), - [anon_sym_continue] = ACTIONS(2554), - [anon_sym_debugger] = ACTIONS(2554), - [anon_sym_return] = ACTIONS(2554), - [anon_sym_throw] = ACTIONS(2554), - [anon_sym_case] = ACTIONS(2554), - [anon_sym_yield] = ACTIONS(2554), - [anon_sym_LBRACK] = ACTIONS(2552), - [sym_glimmer_opening_tag] = ACTIONS(2552), - [anon_sym_class] = ACTIONS(2554), - [anon_sym_async] = ACTIONS(2554), - [anon_sym_function] = ACTIONS(2554), - [anon_sym_new] = ACTIONS(2554), - [anon_sym_using] = ACTIONS(2554), - [anon_sym_PLUS] = ACTIONS(2554), - [anon_sym_DASH] = ACTIONS(2554), - [anon_sym_SLASH] = ACTIONS(2554), - [anon_sym_LT] = ACTIONS(2554), - [anon_sym_TILDE] = ACTIONS(2552), - [anon_sym_void] = ACTIONS(2554), - [anon_sym_delete] = ACTIONS(2554), - [anon_sym_PLUS_PLUS] = ACTIONS(2552), - [anon_sym_DASH_DASH] = ACTIONS(2552), - [anon_sym_DQUOTE] = ACTIONS(2552), - [anon_sym_SQUOTE] = ACTIONS(2552), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2552), - [sym_number] = ACTIONS(2552), - [sym_private_property_identifier] = ACTIONS(2552), - [sym_this] = ACTIONS(2554), - [sym_super] = ACTIONS(2554), - [sym_true] = ACTIONS(2554), - [sym_false] = ACTIONS(2554), - [sym_null] = ACTIONS(2554), - [sym_undefined] = ACTIONS(2554), - [anon_sym_AT] = ACTIONS(2552), - [anon_sym_static] = ACTIONS(2554), - [anon_sym_readonly] = ACTIONS(2554), - [anon_sym_get] = ACTIONS(2554), - [anon_sym_set] = ACTIONS(2554), - [anon_sym_declare] = ACTIONS(2554), - [anon_sym_public] = ACTIONS(2554), - [anon_sym_private] = ACTIONS(2554), - [anon_sym_protected] = ACTIONS(2554), - [anon_sym_override] = ACTIONS(2554), - [anon_sym_module] = ACTIONS(2554), - [anon_sym_any] = ACTIONS(2554), - [anon_sym_number] = ACTIONS(2554), - [anon_sym_boolean] = ACTIONS(2554), - [anon_sym_string] = ACTIONS(2554), - [anon_sym_symbol] = ACTIONS(2554), - [anon_sym_object] = ACTIONS(2554), - [anon_sym_abstract] = ACTIONS(2554), - [anon_sym_interface] = ACTIONS(2554), - [anon_sym_enum] = ACTIONS(2554), + [ts_builtin_sym_end] = ACTIONS(1800), + [sym_identifier] = ACTIONS(1802), + [anon_sym_export] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1802), + [anon_sym_type] = ACTIONS(1802), + [anon_sym_namespace] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1800), + [anon_sym_RBRACE] = ACTIONS(1800), + [anon_sym_typeof] = ACTIONS(1802), + [anon_sym_import] = ACTIONS(1802), + [anon_sym_with] = ACTIONS(1802), + [anon_sym_var] = ACTIONS(1802), + [anon_sym_let] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_BANG] = ACTIONS(1800), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_switch] = ACTIONS(1802), + [anon_sym_for] = ACTIONS(1802), + [anon_sym_LPAREN] = ACTIONS(1800), + [anon_sym_SEMI] = ACTIONS(1800), + [anon_sym_await] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_do] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_debugger] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_case] = ACTIONS(1802), + [anon_sym_yield] = ACTIONS(1802), + [anon_sym_LBRACK] = ACTIONS(1800), + [anon_sym_class] = ACTIONS(1802), + [anon_sym_async] = ACTIONS(1802), + [anon_sym_function] = ACTIONS(1802), + [anon_sym_new] = ACTIONS(1802), + [anon_sym_using] = ACTIONS(1802), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_LT] = ACTIONS(1800), + [anon_sym_TILDE] = ACTIONS(1800), + [anon_sym_void] = ACTIONS(1802), + [anon_sym_delete] = ACTIONS(1802), + [anon_sym_PLUS_PLUS] = ACTIONS(1800), + [anon_sym_DASH_DASH] = ACTIONS(1800), + [anon_sym_DQUOTE] = ACTIONS(1800), + [anon_sym_SQUOTE] = ACTIONS(1800), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1800), + [sym_number] = ACTIONS(1800), + [sym_private_property_identifier] = ACTIONS(1800), + [sym_this] = ACTIONS(1802), + [sym_super] = ACTIONS(1802), + [sym_true] = ACTIONS(1802), + [sym_false] = ACTIONS(1802), + [sym_null] = ACTIONS(1802), + [sym_undefined] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(1800), + [anon_sym_static] = ACTIONS(1802), + [anon_sym_readonly] = ACTIONS(1802), + [anon_sym_get] = ACTIONS(1802), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_declare] = ACTIONS(1802), + [anon_sym_public] = ACTIONS(1802), + [anon_sym_private] = ACTIONS(1802), + [anon_sym_protected] = ACTIONS(1802), + [anon_sym_override] = ACTIONS(1802), + [anon_sym_module] = ACTIONS(1802), + [anon_sym_any] = ACTIONS(1802), + [anon_sym_number] = ACTIONS(1802), + [anon_sym_boolean] = ACTIONS(1802), + [anon_sym_string] = ACTIONS(1802), + [anon_sym_symbol] = ACTIONS(1802), + [anon_sym_object] = ACTIONS(1802), + [anon_sym_abstract] = ACTIONS(1802), + [anon_sym_interface] = ACTIONS(1802), + [anon_sym_enum] = ACTIONS(1802), + [sym__automatic_semicolon] = ACTIONS(1808), [sym_html_comment] = ACTIONS(5), }, [812] = { - [ts_builtin_sym_end] = ACTIONS(2556), - [sym_identifier] = ACTIONS(2558), - [anon_sym_export] = ACTIONS(2558), - [anon_sym_default] = ACTIONS(2558), - [anon_sym_type] = ACTIONS(2558), - [anon_sym_namespace] = ACTIONS(2558), - [anon_sym_LBRACE] = ACTIONS(2556), - [anon_sym_RBRACE] = ACTIONS(2556), - [anon_sym_typeof] = ACTIONS(2558), - [anon_sym_import] = ACTIONS(2558), - [anon_sym_with] = ACTIONS(2558), - [anon_sym_var] = ACTIONS(2558), - [anon_sym_let] = ACTIONS(2558), - [anon_sym_const] = ACTIONS(2558), - [anon_sym_BANG] = ACTIONS(2556), - [anon_sym_else] = ACTIONS(2558), - [anon_sym_if] = ACTIONS(2558), - [anon_sym_switch] = ACTIONS(2558), - [anon_sym_for] = ACTIONS(2558), - [anon_sym_LPAREN] = ACTIONS(2556), - [anon_sym_SEMI] = ACTIONS(2556), - [anon_sym_await] = ACTIONS(2558), - [anon_sym_while] = ACTIONS(2558), - [anon_sym_do] = ACTIONS(2558), - [anon_sym_try] = ACTIONS(2558), - [anon_sym_break] = ACTIONS(2558), - [anon_sym_continue] = ACTIONS(2558), - [anon_sym_debugger] = ACTIONS(2558), - [anon_sym_return] = ACTIONS(2558), - [anon_sym_throw] = ACTIONS(2558), - [anon_sym_case] = ACTIONS(2558), - [anon_sym_yield] = ACTIONS(2558), - [anon_sym_LBRACK] = ACTIONS(2556), - [sym_glimmer_opening_tag] = ACTIONS(2556), - [anon_sym_class] = ACTIONS(2558), - [anon_sym_async] = ACTIONS(2558), - [anon_sym_function] = ACTIONS(2558), - [anon_sym_new] = ACTIONS(2558), - [anon_sym_using] = ACTIONS(2558), - [anon_sym_PLUS] = ACTIONS(2558), - [anon_sym_DASH] = ACTIONS(2558), - [anon_sym_SLASH] = ACTIONS(2558), - [anon_sym_LT] = ACTIONS(2558), - [anon_sym_TILDE] = ACTIONS(2556), - [anon_sym_void] = ACTIONS(2558), - [anon_sym_delete] = ACTIONS(2558), - [anon_sym_PLUS_PLUS] = ACTIONS(2556), - [anon_sym_DASH_DASH] = ACTIONS(2556), - [anon_sym_DQUOTE] = ACTIONS(2556), - [anon_sym_SQUOTE] = ACTIONS(2556), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2556), - [sym_number] = ACTIONS(2556), - [sym_private_property_identifier] = ACTIONS(2556), - [sym_this] = ACTIONS(2558), - [sym_super] = ACTIONS(2558), - [sym_true] = ACTIONS(2558), - [sym_false] = ACTIONS(2558), - [sym_null] = ACTIONS(2558), - [sym_undefined] = ACTIONS(2558), - [anon_sym_AT] = ACTIONS(2556), - [anon_sym_static] = ACTIONS(2558), - [anon_sym_readonly] = ACTIONS(2558), - [anon_sym_get] = ACTIONS(2558), - [anon_sym_set] = ACTIONS(2558), - [anon_sym_declare] = ACTIONS(2558), - [anon_sym_public] = ACTIONS(2558), - [anon_sym_private] = ACTIONS(2558), - [anon_sym_protected] = ACTIONS(2558), - [anon_sym_override] = ACTIONS(2558), - [anon_sym_module] = ACTIONS(2558), - [anon_sym_any] = ACTIONS(2558), - [anon_sym_number] = ACTIONS(2558), - [anon_sym_boolean] = ACTIONS(2558), - [anon_sym_string] = ACTIONS(2558), - [anon_sym_symbol] = ACTIONS(2558), - [anon_sym_object] = ACTIONS(2558), - [anon_sym_abstract] = ACTIONS(2558), - [anon_sym_interface] = ACTIONS(2558), - [anon_sym_enum] = ACTIONS(2558), + [ts_builtin_sym_end] = ACTIONS(2553), + [sym_identifier] = ACTIONS(2555), + [anon_sym_export] = ACTIONS(2555), + [anon_sym_default] = ACTIONS(2555), + [anon_sym_type] = ACTIONS(2555), + [anon_sym_namespace] = ACTIONS(2555), + [anon_sym_LBRACE] = ACTIONS(2553), + [anon_sym_RBRACE] = ACTIONS(2553), + [anon_sym_typeof] = ACTIONS(2555), + [anon_sym_import] = ACTIONS(2555), + [anon_sym_with] = ACTIONS(2555), + [anon_sym_var] = ACTIONS(2555), + [anon_sym_let] = ACTIONS(2555), + [anon_sym_const] = ACTIONS(2555), + [anon_sym_BANG] = ACTIONS(2553), + [anon_sym_else] = ACTIONS(2555), + [anon_sym_if] = ACTIONS(2555), + [anon_sym_switch] = ACTIONS(2555), + [anon_sym_for] = ACTIONS(2555), + [anon_sym_LPAREN] = ACTIONS(2553), + [anon_sym_SEMI] = ACTIONS(2553), + [anon_sym_await] = ACTIONS(2555), + [anon_sym_while] = ACTIONS(2555), + [anon_sym_do] = ACTIONS(2555), + [anon_sym_try] = ACTIONS(2555), + [anon_sym_break] = ACTIONS(2555), + [anon_sym_continue] = ACTIONS(2555), + [anon_sym_debugger] = ACTIONS(2555), + [anon_sym_return] = ACTIONS(2555), + [anon_sym_throw] = ACTIONS(2555), + [anon_sym_case] = ACTIONS(2555), + [anon_sym_yield] = ACTIONS(2555), + [anon_sym_LBRACK] = ACTIONS(2553), + [anon_sym_class] = ACTIONS(2555), + [anon_sym_async] = ACTIONS(2555), + [anon_sym_function] = ACTIONS(2555), + [anon_sym_new] = ACTIONS(2555), + [anon_sym_using] = ACTIONS(2555), + [anon_sym_PLUS] = ACTIONS(2555), + [anon_sym_DASH] = ACTIONS(2555), + [anon_sym_SLASH] = ACTIONS(2555), + [anon_sym_LT] = ACTIONS(2553), + [anon_sym_TILDE] = ACTIONS(2553), + [anon_sym_void] = ACTIONS(2555), + [anon_sym_delete] = ACTIONS(2555), + [anon_sym_PLUS_PLUS] = ACTIONS(2553), + [anon_sym_DASH_DASH] = ACTIONS(2553), + [anon_sym_DQUOTE] = ACTIONS(2553), + [anon_sym_SQUOTE] = ACTIONS(2553), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2553), + [sym_number] = ACTIONS(2553), + [sym_private_property_identifier] = ACTIONS(2553), + [sym_this] = ACTIONS(2555), + [sym_super] = ACTIONS(2555), + [sym_true] = ACTIONS(2555), + [sym_false] = ACTIONS(2555), + [sym_null] = ACTIONS(2555), + [sym_undefined] = ACTIONS(2555), + [anon_sym_AT] = ACTIONS(2553), + [anon_sym_static] = ACTIONS(2555), + [anon_sym_readonly] = ACTIONS(2555), + [anon_sym_get] = ACTIONS(2555), + [anon_sym_set] = ACTIONS(2555), + [anon_sym_declare] = ACTIONS(2555), + [anon_sym_public] = ACTIONS(2555), + [anon_sym_private] = ACTIONS(2555), + [anon_sym_protected] = ACTIONS(2555), + [anon_sym_override] = ACTIONS(2555), + [anon_sym_module] = ACTIONS(2555), + [anon_sym_any] = ACTIONS(2555), + [anon_sym_number] = ACTIONS(2555), + [anon_sym_boolean] = ACTIONS(2555), + [anon_sym_string] = ACTIONS(2555), + [anon_sym_symbol] = ACTIONS(2555), + [anon_sym_object] = ACTIONS(2555), + [anon_sym_abstract] = ACTIONS(2555), + [anon_sym_interface] = ACTIONS(2555), + [anon_sym_enum] = ACTIONS(2555), [sym_html_comment] = ACTIONS(5), }, [813] = { - [ts_builtin_sym_end] = ACTIONS(2544), - [sym_identifier] = ACTIONS(2546), - [anon_sym_export] = ACTIONS(2546), - [anon_sym_default] = ACTIONS(2546), - [anon_sym_type] = ACTIONS(2546), - [anon_sym_namespace] = ACTIONS(2546), - [anon_sym_LBRACE] = ACTIONS(2544), - [anon_sym_RBRACE] = ACTIONS(2544), - [anon_sym_typeof] = ACTIONS(2546), - [anon_sym_import] = ACTIONS(2546), - [anon_sym_with] = ACTIONS(2546), - [anon_sym_var] = ACTIONS(2546), - [anon_sym_let] = ACTIONS(2546), - [anon_sym_const] = ACTIONS(2546), - [anon_sym_BANG] = ACTIONS(2544), - [anon_sym_else] = ACTIONS(2546), - [anon_sym_if] = ACTIONS(2546), - [anon_sym_switch] = ACTIONS(2546), - [anon_sym_for] = ACTIONS(2546), - [anon_sym_LPAREN] = ACTIONS(2544), - [anon_sym_SEMI] = ACTIONS(2544), - [anon_sym_await] = ACTIONS(2546), - [anon_sym_while] = ACTIONS(2546), - [anon_sym_do] = ACTIONS(2546), - [anon_sym_try] = ACTIONS(2546), - [anon_sym_break] = ACTIONS(2546), - [anon_sym_continue] = ACTIONS(2546), - [anon_sym_debugger] = ACTIONS(2546), - [anon_sym_return] = ACTIONS(2546), - [anon_sym_throw] = ACTIONS(2546), - [anon_sym_case] = ACTIONS(2546), - [anon_sym_yield] = ACTIONS(2546), - [anon_sym_LBRACK] = ACTIONS(2544), - [sym_glimmer_opening_tag] = ACTIONS(2544), - [anon_sym_class] = ACTIONS(2546), - [anon_sym_async] = ACTIONS(2546), - [anon_sym_function] = ACTIONS(2546), - [anon_sym_new] = ACTIONS(2546), - [anon_sym_using] = ACTIONS(2546), - [anon_sym_PLUS] = ACTIONS(2546), - [anon_sym_DASH] = ACTIONS(2546), - [anon_sym_SLASH] = ACTIONS(2546), - [anon_sym_LT] = ACTIONS(2546), - [anon_sym_TILDE] = ACTIONS(2544), - [anon_sym_void] = ACTIONS(2546), - [anon_sym_delete] = ACTIONS(2546), - [anon_sym_PLUS_PLUS] = ACTIONS(2544), - [anon_sym_DASH_DASH] = ACTIONS(2544), - [anon_sym_DQUOTE] = ACTIONS(2544), - [anon_sym_SQUOTE] = ACTIONS(2544), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2544), - [sym_number] = ACTIONS(2544), - [sym_private_property_identifier] = ACTIONS(2544), - [sym_this] = ACTIONS(2546), - [sym_super] = ACTIONS(2546), - [sym_true] = ACTIONS(2546), - [sym_false] = ACTIONS(2546), - [sym_null] = ACTIONS(2546), - [sym_undefined] = ACTIONS(2546), - [anon_sym_AT] = ACTIONS(2544), - [anon_sym_static] = ACTIONS(2546), - [anon_sym_readonly] = ACTIONS(2546), - [anon_sym_get] = ACTIONS(2546), - [anon_sym_set] = ACTIONS(2546), - [anon_sym_declare] = ACTIONS(2546), - [anon_sym_public] = ACTIONS(2546), - [anon_sym_private] = ACTIONS(2546), - [anon_sym_protected] = ACTIONS(2546), - [anon_sym_override] = ACTIONS(2546), - [anon_sym_module] = ACTIONS(2546), - [anon_sym_any] = ACTIONS(2546), - [anon_sym_number] = ACTIONS(2546), - [anon_sym_boolean] = ACTIONS(2546), - [anon_sym_string] = ACTIONS(2546), - [anon_sym_symbol] = ACTIONS(2546), - [anon_sym_object] = ACTIONS(2546), - [anon_sym_abstract] = ACTIONS(2546), - [anon_sym_interface] = ACTIONS(2546), - [anon_sym_enum] = ACTIONS(2546), + [ts_builtin_sym_end] = ACTIONS(2557), + [sym_identifier] = ACTIONS(2559), + [anon_sym_export] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_type] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_RBRACE] = ACTIONS(2557), + [anon_sym_typeof] = ACTIONS(2559), + [anon_sym_import] = ACTIONS(2559), + [anon_sym_with] = ACTIONS(2559), + [anon_sym_var] = ACTIONS(2559), + [anon_sym_let] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_BANG] = ACTIONS(2557), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_LPAREN] = ACTIONS(2557), + [anon_sym_SEMI] = ACTIONS(2557), + [anon_sym_await] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_debugger] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_yield] = ACTIONS(2559), + [anon_sym_LBRACK] = ACTIONS(2557), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_async] = ACTIONS(2559), + [anon_sym_function] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_SLASH] = ACTIONS(2559), + [anon_sym_LT] = ACTIONS(2557), + [anon_sym_TILDE] = ACTIONS(2557), + [anon_sym_void] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_PLUS_PLUS] = ACTIONS(2557), + [anon_sym_DASH_DASH] = ACTIONS(2557), + [anon_sym_DQUOTE] = ACTIONS(2557), + [anon_sym_SQUOTE] = ACTIONS(2557), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2557), + [sym_number] = ACTIONS(2557), + [sym_private_property_identifier] = ACTIONS(2557), + [sym_this] = ACTIONS(2559), + [sym_super] = ACTIONS(2559), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_undefined] = ACTIONS(2559), + [anon_sym_AT] = ACTIONS(2557), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_readonly] = ACTIONS(2559), + [anon_sym_get] = ACTIONS(2559), + [anon_sym_set] = ACTIONS(2559), + [anon_sym_declare] = ACTIONS(2559), + [anon_sym_public] = ACTIONS(2559), + [anon_sym_private] = ACTIONS(2559), + [anon_sym_protected] = ACTIONS(2559), + [anon_sym_override] = ACTIONS(2559), + [anon_sym_module] = ACTIONS(2559), + [anon_sym_any] = ACTIONS(2559), + [anon_sym_number] = ACTIONS(2559), + [anon_sym_boolean] = ACTIONS(2559), + [anon_sym_string] = ACTIONS(2559), + [anon_sym_symbol] = ACTIONS(2559), + [anon_sym_object] = ACTIONS(2559), + [anon_sym_abstract] = ACTIONS(2559), + [anon_sym_interface] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), [sym_html_comment] = ACTIONS(5), }, [814] = { - [sym_import] = STATE(4676), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5631), - [sym_rest_pattern] = STATE(5271), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(3304), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3830), - [sym_tuple_parameter] = STATE(4589), - [sym_optional_tuple_parameter] = STATE(4589), - [sym_optional_type] = STATE(4589), - [sym_rest_type] = STATE(4589), - [sym__tuple_type_member] = STATE(4589), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5461), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(2560), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_COMMA] = ACTIONS(2562), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_RBRACK] = ACTIONS(2564), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2566), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [ts_builtin_sym_end] = ACTIONS(2561), + [sym_identifier] = ACTIONS(2563), + [anon_sym_export] = ACTIONS(2563), + [anon_sym_default] = ACTIONS(2563), + [anon_sym_type] = ACTIONS(2563), + [anon_sym_namespace] = ACTIONS(2563), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_RBRACE] = ACTIONS(2561), + [anon_sym_typeof] = ACTIONS(2563), + [anon_sym_import] = ACTIONS(2563), + [anon_sym_with] = ACTIONS(2563), + [anon_sym_var] = ACTIONS(2563), + [anon_sym_let] = ACTIONS(2563), + [anon_sym_const] = ACTIONS(2563), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_else] = ACTIONS(2563), + [anon_sym_if] = ACTIONS(2563), + [anon_sym_switch] = ACTIONS(2563), + [anon_sym_for] = ACTIONS(2563), + [anon_sym_LPAREN] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_await] = ACTIONS(2563), + [anon_sym_while] = ACTIONS(2563), + [anon_sym_do] = ACTIONS(2563), + [anon_sym_try] = ACTIONS(2563), + [anon_sym_break] = ACTIONS(2563), + [anon_sym_continue] = ACTIONS(2563), + [anon_sym_debugger] = ACTIONS(2563), + [anon_sym_return] = ACTIONS(2563), + [anon_sym_throw] = ACTIONS(2563), + [anon_sym_case] = ACTIONS(2563), + [anon_sym_yield] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(2561), + [anon_sym_class] = ACTIONS(2563), + [anon_sym_async] = ACTIONS(2563), + [anon_sym_function] = ACTIONS(2563), + [anon_sym_new] = ACTIONS(2563), + [anon_sym_using] = ACTIONS(2563), + [anon_sym_PLUS] = ACTIONS(2563), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_SLASH] = ACTIONS(2563), + [anon_sym_LT] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_void] = ACTIONS(2563), + [anon_sym_delete] = ACTIONS(2563), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2561), + [sym_number] = ACTIONS(2561), + [sym_private_property_identifier] = ACTIONS(2561), + [sym_this] = ACTIONS(2563), + [sym_super] = ACTIONS(2563), + [sym_true] = ACTIONS(2563), + [sym_false] = ACTIONS(2563), + [sym_null] = ACTIONS(2563), + [sym_undefined] = ACTIONS(2563), + [anon_sym_AT] = ACTIONS(2561), + [anon_sym_static] = ACTIONS(2563), + [anon_sym_readonly] = ACTIONS(2563), + [anon_sym_get] = ACTIONS(2563), + [anon_sym_set] = ACTIONS(2563), + [anon_sym_declare] = ACTIONS(2563), + [anon_sym_public] = ACTIONS(2563), + [anon_sym_private] = ACTIONS(2563), + [anon_sym_protected] = ACTIONS(2563), + [anon_sym_override] = ACTIONS(2563), + [anon_sym_module] = ACTIONS(2563), + [anon_sym_any] = ACTIONS(2563), + [anon_sym_number] = ACTIONS(2563), + [anon_sym_boolean] = ACTIONS(2563), + [anon_sym_string] = ACTIONS(2563), + [anon_sym_symbol] = ACTIONS(2563), + [anon_sym_object] = ACTIONS(2563), + [anon_sym_abstract] = ACTIONS(2563), + [anon_sym_interface] = ACTIONS(2563), + [anon_sym_enum] = ACTIONS(2563), [sym_html_comment] = ACTIONS(5), }, [815] = { - [ts_builtin_sym_end] = ACTIONS(2544), - [sym_identifier] = ACTIONS(2546), - [anon_sym_export] = ACTIONS(2546), - [anon_sym_default] = ACTIONS(2546), - [anon_sym_type] = ACTIONS(2546), - [anon_sym_namespace] = ACTIONS(2546), - [anon_sym_LBRACE] = ACTIONS(2544), - [anon_sym_RBRACE] = ACTIONS(2544), - [anon_sym_typeof] = ACTIONS(2546), - [anon_sym_import] = ACTIONS(2546), - [anon_sym_with] = ACTIONS(2546), - [anon_sym_var] = ACTIONS(2546), - [anon_sym_let] = ACTIONS(2546), - [anon_sym_const] = ACTIONS(2546), - [anon_sym_BANG] = ACTIONS(2544), - [anon_sym_else] = ACTIONS(2546), - [anon_sym_if] = ACTIONS(2546), - [anon_sym_switch] = ACTIONS(2546), - [anon_sym_for] = ACTIONS(2546), - [anon_sym_LPAREN] = ACTIONS(2544), - [anon_sym_SEMI] = ACTIONS(2544), - [anon_sym_await] = ACTIONS(2546), - [anon_sym_while] = ACTIONS(2546), - [anon_sym_do] = ACTIONS(2546), - [anon_sym_try] = ACTIONS(2546), - [anon_sym_break] = ACTIONS(2546), - [anon_sym_continue] = ACTIONS(2546), - [anon_sym_debugger] = ACTIONS(2546), - [anon_sym_return] = ACTIONS(2546), - [anon_sym_throw] = ACTIONS(2546), - [anon_sym_case] = ACTIONS(2546), - [anon_sym_yield] = ACTIONS(2546), - [anon_sym_LBRACK] = ACTIONS(2544), - [sym_glimmer_opening_tag] = ACTIONS(2544), - [anon_sym_class] = ACTIONS(2546), - [anon_sym_async] = ACTIONS(2546), - [anon_sym_function] = ACTIONS(2546), - [anon_sym_new] = ACTIONS(2546), - [anon_sym_using] = ACTIONS(2546), - [anon_sym_PLUS] = ACTIONS(2546), - [anon_sym_DASH] = ACTIONS(2546), - [anon_sym_SLASH] = ACTIONS(2546), - [anon_sym_LT] = ACTIONS(2546), - [anon_sym_TILDE] = ACTIONS(2544), - [anon_sym_void] = ACTIONS(2546), - [anon_sym_delete] = ACTIONS(2546), - [anon_sym_PLUS_PLUS] = ACTIONS(2544), - [anon_sym_DASH_DASH] = ACTIONS(2544), - [anon_sym_DQUOTE] = ACTIONS(2544), - [anon_sym_SQUOTE] = ACTIONS(2544), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2544), - [sym_number] = ACTIONS(2544), - [sym_private_property_identifier] = ACTIONS(2544), - [sym_this] = ACTIONS(2546), - [sym_super] = ACTIONS(2546), - [sym_true] = ACTIONS(2546), - [sym_false] = ACTIONS(2546), - [sym_null] = ACTIONS(2546), - [sym_undefined] = ACTIONS(2546), - [anon_sym_AT] = ACTIONS(2544), - [anon_sym_static] = ACTIONS(2546), - [anon_sym_readonly] = ACTIONS(2546), - [anon_sym_get] = ACTIONS(2546), - [anon_sym_set] = ACTIONS(2546), - [anon_sym_declare] = ACTIONS(2546), - [anon_sym_public] = ACTIONS(2546), - [anon_sym_private] = ACTIONS(2546), - [anon_sym_protected] = ACTIONS(2546), - [anon_sym_override] = ACTIONS(2546), - [anon_sym_module] = ACTIONS(2546), - [anon_sym_any] = ACTIONS(2546), - [anon_sym_number] = ACTIONS(2546), - [anon_sym_boolean] = ACTIONS(2546), - [anon_sym_string] = ACTIONS(2546), - [anon_sym_symbol] = ACTIONS(2546), - [anon_sym_object] = ACTIONS(2546), - [anon_sym_abstract] = ACTIONS(2546), - [anon_sym_interface] = ACTIONS(2546), - [anon_sym_enum] = ACTIONS(2546), + [ts_builtin_sym_end] = ACTIONS(2565), + [sym_identifier] = ACTIONS(2567), + [anon_sym_export] = ACTIONS(2567), + [anon_sym_default] = ACTIONS(2567), + [anon_sym_type] = ACTIONS(2567), + [anon_sym_namespace] = ACTIONS(2567), + [anon_sym_LBRACE] = ACTIONS(2565), + [anon_sym_RBRACE] = ACTIONS(2565), + [anon_sym_typeof] = ACTIONS(2567), + [anon_sym_import] = ACTIONS(2567), + [anon_sym_with] = ACTIONS(2567), + [anon_sym_var] = ACTIONS(2567), + [anon_sym_let] = ACTIONS(2567), + [anon_sym_const] = ACTIONS(2567), + [anon_sym_BANG] = ACTIONS(2565), + [anon_sym_else] = ACTIONS(2567), + [anon_sym_if] = ACTIONS(2567), + [anon_sym_switch] = ACTIONS(2567), + [anon_sym_for] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(2565), + [anon_sym_SEMI] = ACTIONS(2565), + [anon_sym_await] = ACTIONS(2567), + [anon_sym_while] = ACTIONS(2567), + [anon_sym_do] = ACTIONS(2567), + [anon_sym_try] = ACTIONS(2567), + [anon_sym_break] = ACTIONS(2567), + [anon_sym_continue] = ACTIONS(2567), + [anon_sym_debugger] = ACTIONS(2567), + [anon_sym_return] = ACTIONS(2567), + [anon_sym_throw] = ACTIONS(2567), + [anon_sym_case] = ACTIONS(2567), + [anon_sym_yield] = ACTIONS(2567), + [anon_sym_LBRACK] = ACTIONS(2565), + [anon_sym_class] = ACTIONS(2567), + [anon_sym_async] = ACTIONS(2567), + [anon_sym_function] = ACTIONS(2567), + [anon_sym_new] = ACTIONS(2567), + [anon_sym_using] = ACTIONS(2567), + [anon_sym_PLUS] = ACTIONS(2567), + [anon_sym_DASH] = ACTIONS(2567), + [anon_sym_SLASH] = ACTIONS(2567), + [anon_sym_LT] = ACTIONS(2565), + [anon_sym_TILDE] = ACTIONS(2565), + [anon_sym_void] = ACTIONS(2567), + [anon_sym_delete] = ACTIONS(2567), + [anon_sym_PLUS_PLUS] = ACTIONS(2565), + [anon_sym_DASH_DASH] = ACTIONS(2565), + [anon_sym_DQUOTE] = ACTIONS(2565), + [anon_sym_SQUOTE] = ACTIONS(2565), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2565), + [sym_number] = ACTIONS(2565), + [sym_private_property_identifier] = ACTIONS(2565), + [sym_this] = ACTIONS(2567), + [sym_super] = ACTIONS(2567), + [sym_true] = ACTIONS(2567), + [sym_false] = ACTIONS(2567), + [sym_null] = ACTIONS(2567), + [sym_undefined] = ACTIONS(2567), + [anon_sym_AT] = ACTIONS(2565), + [anon_sym_static] = ACTIONS(2567), + [anon_sym_readonly] = ACTIONS(2567), + [anon_sym_get] = ACTIONS(2567), + [anon_sym_set] = ACTIONS(2567), + [anon_sym_declare] = ACTIONS(2567), + [anon_sym_public] = ACTIONS(2567), + [anon_sym_private] = ACTIONS(2567), + [anon_sym_protected] = ACTIONS(2567), + [anon_sym_override] = ACTIONS(2567), + [anon_sym_module] = ACTIONS(2567), + [anon_sym_any] = ACTIONS(2567), + [anon_sym_number] = ACTIONS(2567), + [anon_sym_boolean] = ACTIONS(2567), + [anon_sym_string] = ACTIONS(2567), + [anon_sym_symbol] = ACTIONS(2567), + [anon_sym_object] = ACTIONS(2567), + [anon_sym_abstract] = ACTIONS(2567), + [anon_sym_interface] = ACTIONS(2567), + [anon_sym_enum] = ACTIONS(2567), [sym_html_comment] = ACTIONS(5), }, [816] = { - [ts_builtin_sym_end] = ACTIONS(2572), - [sym_identifier] = ACTIONS(2574), - [anon_sym_export] = ACTIONS(2574), - [anon_sym_default] = ACTIONS(2574), - [anon_sym_type] = ACTIONS(2574), - [anon_sym_namespace] = ACTIONS(2574), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_RBRACE] = ACTIONS(2572), - [anon_sym_typeof] = ACTIONS(2574), - [anon_sym_import] = ACTIONS(2574), - [anon_sym_with] = ACTIONS(2574), - [anon_sym_var] = ACTIONS(2574), - [anon_sym_let] = ACTIONS(2574), - [anon_sym_const] = ACTIONS(2574), - [anon_sym_BANG] = ACTIONS(2572), - [anon_sym_else] = ACTIONS(2574), - [anon_sym_if] = ACTIONS(2574), - [anon_sym_switch] = ACTIONS(2574), - [anon_sym_for] = ACTIONS(2574), - [anon_sym_LPAREN] = ACTIONS(2572), - [anon_sym_SEMI] = ACTIONS(2572), - [anon_sym_await] = ACTIONS(2574), - [anon_sym_while] = ACTIONS(2574), - [anon_sym_do] = ACTIONS(2574), - [anon_sym_try] = ACTIONS(2574), - [anon_sym_break] = ACTIONS(2574), - [anon_sym_continue] = ACTIONS(2574), - [anon_sym_debugger] = ACTIONS(2574), - [anon_sym_return] = ACTIONS(2574), - [anon_sym_throw] = ACTIONS(2574), - [anon_sym_case] = ACTIONS(2574), - [anon_sym_yield] = ACTIONS(2574), - [anon_sym_LBRACK] = ACTIONS(2572), - [sym_glimmer_opening_tag] = ACTIONS(2572), - [anon_sym_class] = ACTIONS(2574), - [anon_sym_async] = ACTIONS(2574), - [anon_sym_function] = ACTIONS(2574), - [anon_sym_new] = ACTIONS(2574), - [anon_sym_using] = ACTIONS(2574), - [anon_sym_PLUS] = ACTIONS(2574), - [anon_sym_DASH] = ACTIONS(2574), - [anon_sym_SLASH] = ACTIONS(2574), - [anon_sym_LT] = ACTIONS(2574), - [anon_sym_TILDE] = ACTIONS(2572), - [anon_sym_void] = ACTIONS(2574), - [anon_sym_delete] = ACTIONS(2574), - [anon_sym_PLUS_PLUS] = ACTIONS(2572), - [anon_sym_DASH_DASH] = ACTIONS(2572), - [anon_sym_DQUOTE] = ACTIONS(2572), - [anon_sym_SQUOTE] = ACTIONS(2572), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2572), - [sym_number] = ACTIONS(2572), - [sym_private_property_identifier] = ACTIONS(2572), - [sym_this] = ACTIONS(2574), - [sym_super] = ACTIONS(2574), - [sym_true] = ACTIONS(2574), - [sym_false] = ACTIONS(2574), - [sym_null] = ACTIONS(2574), - [sym_undefined] = ACTIONS(2574), - [anon_sym_AT] = ACTIONS(2572), - [anon_sym_static] = ACTIONS(2574), - [anon_sym_readonly] = ACTIONS(2574), - [anon_sym_get] = ACTIONS(2574), - [anon_sym_set] = ACTIONS(2574), - [anon_sym_declare] = ACTIONS(2574), - [anon_sym_public] = ACTIONS(2574), - [anon_sym_private] = ACTIONS(2574), - [anon_sym_protected] = ACTIONS(2574), - [anon_sym_override] = ACTIONS(2574), - [anon_sym_module] = ACTIONS(2574), - [anon_sym_any] = ACTIONS(2574), - [anon_sym_number] = ACTIONS(2574), - [anon_sym_boolean] = ACTIONS(2574), - [anon_sym_string] = ACTIONS(2574), - [anon_sym_symbol] = ACTIONS(2574), - [anon_sym_object] = ACTIONS(2574), - [anon_sym_abstract] = ACTIONS(2574), - [anon_sym_interface] = ACTIONS(2574), - [anon_sym_enum] = ACTIONS(2574), + [ts_builtin_sym_end] = ACTIONS(2561), + [sym_identifier] = ACTIONS(2563), + [anon_sym_export] = ACTIONS(2563), + [anon_sym_default] = ACTIONS(2563), + [anon_sym_type] = ACTIONS(2563), + [anon_sym_namespace] = ACTIONS(2563), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_RBRACE] = ACTIONS(2561), + [anon_sym_typeof] = ACTIONS(2563), + [anon_sym_import] = ACTIONS(2563), + [anon_sym_with] = ACTIONS(2563), + [anon_sym_var] = ACTIONS(2563), + [anon_sym_let] = ACTIONS(2563), + [anon_sym_const] = ACTIONS(2563), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_else] = ACTIONS(2563), + [anon_sym_if] = ACTIONS(2563), + [anon_sym_switch] = ACTIONS(2563), + [anon_sym_for] = ACTIONS(2563), + [anon_sym_LPAREN] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_await] = ACTIONS(2563), + [anon_sym_while] = ACTIONS(2563), + [anon_sym_do] = ACTIONS(2563), + [anon_sym_try] = ACTIONS(2563), + [anon_sym_break] = ACTIONS(2563), + [anon_sym_continue] = ACTIONS(2563), + [anon_sym_debugger] = ACTIONS(2563), + [anon_sym_return] = ACTIONS(2563), + [anon_sym_throw] = ACTIONS(2563), + [anon_sym_case] = ACTIONS(2563), + [anon_sym_yield] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(2561), + [anon_sym_class] = ACTIONS(2563), + [anon_sym_async] = ACTIONS(2563), + [anon_sym_function] = ACTIONS(2563), + [anon_sym_new] = ACTIONS(2563), + [anon_sym_using] = ACTIONS(2563), + [anon_sym_PLUS] = ACTIONS(2563), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_SLASH] = ACTIONS(2563), + [anon_sym_LT] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_void] = ACTIONS(2563), + [anon_sym_delete] = ACTIONS(2563), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2561), + [sym_number] = ACTIONS(2561), + [sym_private_property_identifier] = ACTIONS(2561), + [sym_this] = ACTIONS(2563), + [sym_super] = ACTIONS(2563), + [sym_true] = ACTIONS(2563), + [sym_false] = ACTIONS(2563), + [sym_null] = ACTIONS(2563), + [sym_undefined] = ACTIONS(2563), + [anon_sym_AT] = ACTIONS(2561), + [anon_sym_static] = ACTIONS(2563), + [anon_sym_readonly] = ACTIONS(2563), + [anon_sym_get] = ACTIONS(2563), + [anon_sym_set] = ACTIONS(2563), + [anon_sym_declare] = ACTIONS(2563), + [anon_sym_public] = ACTIONS(2563), + [anon_sym_private] = ACTIONS(2563), + [anon_sym_protected] = ACTIONS(2563), + [anon_sym_override] = ACTIONS(2563), + [anon_sym_module] = ACTIONS(2563), + [anon_sym_any] = ACTIONS(2563), + [anon_sym_number] = ACTIONS(2563), + [anon_sym_boolean] = ACTIONS(2563), + [anon_sym_string] = ACTIONS(2563), + [anon_sym_symbol] = ACTIONS(2563), + [anon_sym_object] = ACTIONS(2563), + [anon_sym_abstract] = ACTIONS(2563), + [anon_sym_interface] = ACTIONS(2563), + [anon_sym_enum] = ACTIONS(2563), [sym_html_comment] = ACTIONS(5), }, [817] = { - [ts_builtin_sym_end] = ACTIONS(2544), - [sym_identifier] = ACTIONS(2546), - [anon_sym_export] = ACTIONS(2546), - [anon_sym_default] = ACTIONS(2546), - [anon_sym_type] = ACTIONS(2546), - [anon_sym_namespace] = ACTIONS(2546), - [anon_sym_LBRACE] = ACTIONS(2544), - [anon_sym_RBRACE] = ACTIONS(2544), - [anon_sym_typeof] = ACTIONS(2546), - [anon_sym_import] = ACTIONS(2546), - [anon_sym_with] = ACTIONS(2546), - [anon_sym_var] = ACTIONS(2546), - [anon_sym_let] = ACTIONS(2546), - [anon_sym_const] = ACTIONS(2546), - [anon_sym_BANG] = ACTIONS(2544), - [anon_sym_else] = ACTIONS(2546), - [anon_sym_if] = ACTIONS(2546), - [anon_sym_switch] = ACTIONS(2546), - [anon_sym_for] = ACTIONS(2546), - [anon_sym_LPAREN] = ACTIONS(2544), - [anon_sym_SEMI] = ACTIONS(2544), - [anon_sym_await] = ACTIONS(2546), - [anon_sym_while] = ACTIONS(2546), - [anon_sym_do] = ACTIONS(2546), - [anon_sym_try] = ACTIONS(2546), - [anon_sym_break] = ACTIONS(2546), - [anon_sym_continue] = ACTIONS(2546), - [anon_sym_debugger] = ACTIONS(2546), - [anon_sym_return] = ACTIONS(2546), - [anon_sym_throw] = ACTIONS(2546), - [anon_sym_case] = ACTIONS(2546), - [anon_sym_yield] = ACTIONS(2546), - [anon_sym_LBRACK] = ACTIONS(2544), - [sym_glimmer_opening_tag] = ACTIONS(2544), - [anon_sym_class] = ACTIONS(2546), - [anon_sym_async] = ACTIONS(2546), - [anon_sym_function] = ACTIONS(2546), - [anon_sym_new] = ACTIONS(2546), - [anon_sym_using] = ACTIONS(2546), - [anon_sym_PLUS] = ACTIONS(2546), - [anon_sym_DASH] = ACTIONS(2546), - [anon_sym_SLASH] = ACTIONS(2546), - [anon_sym_LT] = ACTIONS(2546), - [anon_sym_TILDE] = ACTIONS(2544), - [anon_sym_void] = ACTIONS(2546), - [anon_sym_delete] = ACTIONS(2546), - [anon_sym_PLUS_PLUS] = ACTIONS(2544), - [anon_sym_DASH_DASH] = ACTIONS(2544), - [anon_sym_DQUOTE] = ACTIONS(2544), - [anon_sym_SQUOTE] = ACTIONS(2544), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2544), - [sym_number] = ACTIONS(2544), - [sym_private_property_identifier] = ACTIONS(2544), - [sym_this] = ACTIONS(2546), - [sym_super] = ACTIONS(2546), - [sym_true] = ACTIONS(2546), - [sym_false] = ACTIONS(2546), - [sym_null] = ACTIONS(2546), - [sym_undefined] = ACTIONS(2546), - [anon_sym_AT] = ACTIONS(2544), - [anon_sym_static] = ACTIONS(2546), - [anon_sym_readonly] = ACTIONS(2546), - [anon_sym_get] = ACTIONS(2546), - [anon_sym_set] = ACTIONS(2546), - [anon_sym_declare] = ACTIONS(2546), - [anon_sym_public] = ACTIONS(2546), - [anon_sym_private] = ACTIONS(2546), - [anon_sym_protected] = ACTIONS(2546), - [anon_sym_override] = ACTIONS(2546), - [anon_sym_module] = ACTIONS(2546), - [anon_sym_any] = ACTIONS(2546), - [anon_sym_number] = ACTIONS(2546), - [anon_sym_boolean] = ACTIONS(2546), - [anon_sym_string] = ACTIONS(2546), - [anon_sym_symbol] = ACTIONS(2546), - [anon_sym_object] = ACTIONS(2546), - [anon_sym_abstract] = ACTIONS(2546), - [anon_sym_interface] = ACTIONS(2546), - [anon_sym_enum] = ACTIONS(2546), + [ts_builtin_sym_end] = ACTIONS(2569), + [sym_identifier] = ACTIONS(2571), + [anon_sym_export] = ACTIONS(2571), + [anon_sym_default] = ACTIONS(2571), + [anon_sym_type] = ACTIONS(2571), + [anon_sym_namespace] = ACTIONS(2571), + [anon_sym_LBRACE] = ACTIONS(2569), + [anon_sym_RBRACE] = ACTIONS(2569), + [anon_sym_typeof] = ACTIONS(2571), + [anon_sym_import] = ACTIONS(2571), + [anon_sym_with] = ACTIONS(2571), + [anon_sym_var] = ACTIONS(2571), + [anon_sym_let] = ACTIONS(2571), + [anon_sym_const] = ACTIONS(2571), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_else] = ACTIONS(2571), + [anon_sym_if] = ACTIONS(2571), + [anon_sym_switch] = ACTIONS(2571), + [anon_sym_for] = ACTIONS(2571), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_SEMI] = ACTIONS(2569), + [anon_sym_await] = ACTIONS(2571), + [anon_sym_while] = ACTIONS(2571), + [anon_sym_do] = ACTIONS(2571), + [anon_sym_try] = ACTIONS(2571), + [anon_sym_break] = ACTIONS(2571), + [anon_sym_continue] = ACTIONS(2571), + [anon_sym_debugger] = ACTIONS(2571), + [anon_sym_return] = ACTIONS(2571), + [anon_sym_throw] = ACTIONS(2571), + [anon_sym_case] = ACTIONS(2571), + [anon_sym_yield] = ACTIONS(2571), + [anon_sym_LBRACK] = ACTIONS(2569), + [anon_sym_class] = ACTIONS(2571), + [anon_sym_async] = ACTIONS(2571), + [anon_sym_function] = ACTIONS(2571), + [anon_sym_new] = ACTIONS(2571), + [anon_sym_using] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_SLASH] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_void] = ACTIONS(2571), + [anon_sym_delete] = ACTIONS(2571), + [anon_sym_PLUS_PLUS] = ACTIONS(2569), + [anon_sym_DASH_DASH] = ACTIONS(2569), + [anon_sym_DQUOTE] = ACTIONS(2569), + [anon_sym_SQUOTE] = ACTIONS(2569), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2569), + [sym_number] = ACTIONS(2569), + [sym_private_property_identifier] = ACTIONS(2569), + [sym_this] = ACTIONS(2571), + [sym_super] = ACTIONS(2571), + [sym_true] = ACTIONS(2571), + [sym_false] = ACTIONS(2571), + [sym_null] = ACTIONS(2571), + [sym_undefined] = ACTIONS(2571), + [anon_sym_AT] = ACTIONS(2569), + [anon_sym_static] = ACTIONS(2571), + [anon_sym_readonly] = ACTIONS(2571), + [anon_sym_get] = ACTIONS(2571), + [anon_sym_set] = ACTIONS(2571), + [anon_sym_declare] = ACTIONS(2571), + [anon_sym_public] = ACTIONS(2571), + [anon_sym_private] = ACTIONS(2571), + [anon_sym_protected] = ACTIONS(2571), + [anon_sym_override] = ACTIONS(2571), + [anon_sym_module] = ACTIONS(2571), + [anon_sym_any] = ACTIONS(2571), + [anon_sym_number] = ACTIONS(2571), + [anon_sym_boolean] = ACTIONS(2571), + [anon_sym_string] = ACTIONS(2571), + [anon_sym_symbol] = ACTIONS(2571), + [anon_sym_object] = ACTIONS(2571), + [anon_sym_abstract] = ACTIONS(2571), + [anon_sym_interface] = ACTIONS(2571), + [anon_sym_enum] = ACTIONS(2571), [sym_html_comment] = ACTIONS(5), }, [818] = { - [ts_builtin_sym_end] = ACTIONS(2576), - [sym_identifier] = ACTIONS(2578), - [anon_sym_export] = ACTIONS(2578), - [anon_sym_default] = ACTIONS(2578), - [anon_sym_type] = ACTIONS(2578), - [anon_sym_namespace] = ACTIONS(2578), - [anon_sym_LBRACE] = ACTIONS(2576), - [anon_sym_RBRACE] = ACTIONS(2576), - [anon_sym_typeof] = ACTIONS(2578), - [anon_sym_import] = ACTIONS(2578), - [anon_sym_with] = ACTIONS(2578), - [anon_sym_var] = ACTIONS(2578), - [anon_sym_let] = ACTIONS(2578), - [anon_sym_const] = ACTIONS(2578), - [anon_sym_BANG] = ACTIONS(2576), - [anon_sym_else] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(2578), - [anon_sym_switch] = ACTIONS(2578), - [anon_sym_for] = ACTIONS(2578), - [anon_sym_LPAREN] = ACTIONS(2576), - [anon_sym_SEMI] = ACTIONS(2576), - [anon_sym_await] = ACTIONS(2578), - [anon_sym_while] = ACTIONS(2578), - [anon_sym_do] = ACTIONS(2578), - [anon_sym_try] = ACTIONS(2578), - [anon_sym_break] = ACTIONS(2578), - [anon_sym_continue] = ACTIONS(2578), - [anon_sym_debugger] = ACTIONS(2578), - [anon_sym_return] = ACTIONS(2578), - [anon_sym_throw] = ACTIONS(2578), - [anon_sym_case] = ACTIONS(2578), - [anon_sym_yield] = ACTIONS(2578), - [anon_sym_LBRACK] = ACTIONS(2576), - [sym_glimmer_opening_tag] = ACTIONS(2576), - [anon_sym_class] = ACTIONS(2578), - [anon_sym_async] = ACTIONS(2578), - [anon_sym_function] = ACTIONS(2578), - [anon_sym_new] = ACTIONS(2578), - [anon_sym_using] = ACTIONS(2578), - [anon_sym_PLUS] = ACTIONS(2578), - [anon_sym_DASH] = ACTIONS(2578), - [anon_sym_SLASH] = ACTIONS(2578), - [anon_sym_LT] = ACTIONS(2578), - [anon_sym_TILDE] = ACTIONS(2576), - [anon_sym_void] = ACTIONS(2578), - [anon_sym_delete] = ACTIONS(2578), - [anon_sym_PLUS_PLUS] = ACTIONS(2576), - [anon_sym_DASH_DASH] = ACTIONS(2576), - [anon_sym_DQUOTE] = ACTIONS(2576), - [anon_sym_SQUOTE] = ACTIONS(2576), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2576), - [sym_number] = ACTIONS(2576), - [sym_private_property_identifier] = ACTIONS(2576), - [sym_this] = ACTIONS(2578), - [sym_super] = ACTIONS(2578), - [sym_true] = ACTIONS(2578), - [sym_false] = ACTIONS(2578), - [sym_null] = ACTIONS(2578), - [sym_undefined] = ACTIONS(2578), - [anon_sym_AT] = ACTIONS(2576), - [anon_sym_static] = ACTIONS(2578), - [anon_sym_readonly] = ACTIONS(2578), - [anon_sym_get] = ACTIONS(2578), - [anon_sym_set] = ACTIONS(2578), - [anon_sym_declare] = ACTIONS(2578), - [anon_sym_public] = ACTIONS(2578), - [anon_sym_private] = ACTIONS(2578), - [anon_sym_protected] = ACTIONS(2578), - [anon_sym_override] = ACTIONS(2578), - [anon_sym_module] = ACTIONS(2578), - [anon_sym_any] = ACTIONS(2578), - [anon_sym_number] = ACTIONS(2578), - [anon_sym_boolean] = ACTIONS(2578), - [anon_sym_string] = ACTIONS(2578), - [anon_sym_symbol] = ACTIONS(2578), - [anon_sym_object] = ACTIONS(2578), - [anon_sym_abstract] = ACTIONS(2578), - [anon_sym_interface] = ACTIONS(2578), - [anon_sym_enum] = ACTIONS(2578), + [ts_builtin_sym_end] = ACTIONS(2561), + [sym_identifier] = ACTIONS(2563), + [anon_sym_export] = ACTIONS(2563), + [anon_sym_default] = ACTIONS(2563), + [anon_sym_type] = ACTIONS(2563), + [anon_sym_namespace] = ACTIONS(2563), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_RBRACE] = ACTIONS(2561), + [anon_sym_typeof] = ACTIONS(2563), + [anon_sym_import] = ACTIONS(2563), + [anon_sym_with] = ACTIONS(2563), + [anon_sym_var] = ACTIONS(2563), + [anon_sym_let] = ACTIONS(2563), + [anon_sym_const] = ACTIONS(2563), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_else] = ACTIONS(2563), + [anon_sym_if] = ACTIONS(2563), + [anon_sym_switch] = ACTIONS(2563), + [anon_sym_for] = ACTIONS(2563), + [anon_sym_LPAREN] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_await] = ACTIONS(2563), + [anon_sym_while] = ACTIONS(2563), + [anon_sym_do] = ACTIONS(2563), + [anon_sym_try] = ACTIONS(2563), + [anon_sym_break] = ACTIONS(2563), + [anon_sym_continue] = ACTIONS(2563), + [anon_sym_debugger] = ACTIONS(2563), + [anon_sym_return] = ACTIONS(2563), + [anon_sym_throw] = ACTIONS(2563), + [anon_sym_case] = ACTIONS(2563), + [anon_sym_yield] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(2561), + [anon_sym_class] = ACTIONS(2563), + [anon_sym_async] = ACTIONS(2563), + [anon_sym_function] = ACTIONS(2563), + [anon_sym_new] = ACTIONS(2563), + [anon_sym_using] = ACTIONS(2563), + [anon_sym_PLUS] = ACTIONS(2563), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_SLASH] = ACTIONS(2563), + [anon_sym_LT] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_void] = ACTIONS(2563), + [anon_sym_delete] = ACTIONS(2563), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2561), + [sym_number] = ACTIONS(2561), + [sym_private_property_identifier] = ACTIONS(2561), + [sym_this] = ACTIONS(2563), + [sym_super] = ACTIONS(2563), + [sym_true] = ACTIONS(2563), + [sym_false] = ACTIONS(2563), + [sym_null] = ACTIONS(2563), + [sym_undefined] = ACTIONS(2563), + [anon_sym_AT] = ACTIONS(2561), + [anon_sym_static] = ACTIONS(2563), + [anon_sym_readonly] = ACTIONS(2563), + [anon_sym_get] = ACTIONS(2563), + [anon_sym_set] = ACTIONS(2563), + [anon_sym_declare] = ACTIONS(2563), + [anon_sym_public] = ACTIONS(2563), + [anon_sym_private] = ACTIONS(2563), + [anon_sym_protected] = ACTIONS(2563), + [anon_sym_override] = ACTIONS(2563), + [anon_sym_module] = ACTIONS(2563), + [anon_sym_any] = ACTIONS(2563), + [anon_sym_number] = ACTIONS(2563), + [anon_sym_boolean] = ACTIONS(2563), + [anon_sym_string] = ACTIONS(2563), + [anon_sym_symbol] = ACTIONS(2563), + [anon_sym_object] = ACTIONS(2563), + [anon_sym_abstract] = ACTIONS(2563), + [anon_sym_interface] = ACTIONS(2563), + [anon_sym_enum] = ACTIONS(2563), [sym_html_comment] = ACTIONS(5), }, [819] = { - [ts_builtin_sym_end] = ACTIONS(2580), - [sym_identifier] = ACTIONS(2582), - [anon_sym_export] = ACTIONS(2582), - [anon_sym_default] = ACTIONS(2582), - [anon_sym_type] = ACTIONS(2582), - [anon_sym_namespace] = ACTIONS(2582), - [anon_sym_LBRACE] = ACTIONS(2580), - [anon_sym_RBRACE] = ACTIONS(2580), - [anon_sym_typeof] = ACTIONS(2582), - [anon_sym_import] = ACTIONS(2582), - [anon_sym_with] = ACTIONS(2582), - [anon_sym_var] = ACTIONS(2582), - [anon_sym_let] = ACTIONS(2582), - [anon_sym_const] = ACTIONS(2582), - [anon_sym_BANG] = ACTIONS(2580), - [anon_sym_else] = ACTIONS(2582), - [anon_sym_if] = ACTIONS(2582), - [anon_sym_switch] = ACTIONS(2582), - [anon_sym_for] = ACTIONS(2582), - [anon_sym_LPAREN] = ACTIONS(2580), - [anon_sym_SEMI] = ACTIONS(2580), - [anon_sym_await] = ACTIONS(2582), - [anon_sym_while] = ACTIONS(2582), - [anon_sym_do] = ACTIONS(2582), - [anon_sym_try] = ACTIONS(2582), - [anon_sym_break] = ACTIONS(2582), - [anon_sym_continue] = ACTIONS(2582), - [anon_sym_debugger] = ACTIONS(2582), - [anon_sym_return] = ACTIONS(2582), - [anon_sym_throw] = ACTIONS(2582), - [anon_sym_case] = ACTIONS(2582), - [anon_sym_yield] = ACTIONS(2582), - [anon_sym_LBRACK] = ACTIONS(2580), - [sym_glimmer_opening_tag] = ACTIONS(2580), - [anon_sym_class] = ACTIONS(2582), - [anon_sym_async] = ACTIONS(2582), - [anon_sym_function] = ACTIONS(2582), - [anon_sym_new] = ACTIONS(2582), - [anon_sym_using] = ACTIONS(2582), - [anon_sym_PLUS] = ACTIONS(2582), - [anon_sym_DASH] = ACTIONS(2582), - [anon_sym_SLASH] = ACTIONS(2582), - [anon_sym_LT] = ACTIONS(2582), - [anon_sym_TILDE] = ACTIONS(2580), - [anon_sym_void] = ACTIONS(2582), - [anon_sym_delete] = ACTIONS(2582), - [anon_sym_PLUS_PLUS] = ACTIONS(2580), - [anon_sym_DASH_DASH] = ACTIONS(2580), - [anon_sym_DQUOTE] = ACTIONS(2580), - [anon_sym_SQUOTE] = ACTIONS(2580), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2580), - [sym_number] = ACTIONS(2580), - [sym_private_property_identifier] = ACTIONS(2580), - [sym_this] = ACTIONS(2582), - [sym_super] = ACTIONS(2582), - [sym_true] = ACTIONS(2582), - [sym_false] = ACTIONS(2582), - [sym_null] = ACTIONS(2582), - [sym_undefined] = ACTIONS(2582), - [anon_sym_AT] = ACTIONS(2580), - [anon_sym_static] = ACTIONS(2582), - [anon_sym_readonly] = ACTIONS(2582), - [anon_sym_get] = ACTIONS(2582), - [anon_sym_set] = ACTIONS(2582), - [anon_sym_declare] = ACTIONS(2582), - [anon_sym_public] = ACTIONS(2582), - [anon_sym_private] = ACTIONS(2582), - [anon_sym_protected] = ACTIONS(2582), - [anon_sym_override] = ACTIONS(2582), - [anon_sym_module] = ACTIONS(2582), - [anon_sym_any] = ACTIONS(2582), - [anon_sym_number] = ACTIONS(2582), - [anon_sym_boolean] = ACTIONS(2582), - [anon_sym_string] = ACTIONS(2582), - [anon_sym_symbol] = ACTIONS(2582), - [anon_sym_object] = ACTIONS(2582), - [anon_sym_abstract] = ACTIONS(2582), - [anon_sym_interface] = ACTIONS(2582), - [anon_sym_enum] = ACTIONS(2582), + [ts_builtin_sym_end] = ACTIONS(2573), + [sym_identifier] = ACTIONS(2575), + [anon_sym_export] = ACTIONS(2575), + [anon_sym_default] = ACTIONS(2575), + [anon_sym_type] = ACTIONS(2575), + [anon_sym_namespace] = ACTIONS(2575), + [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_RBRACE] = ACTIONS(2573), + [anon_sym_typeof] = ACTIONS(2575), + [anon_sym_import] = ACTIONS(2575), + [anon_sym_with] = ACTIONS(2575), + [anon_sym_var] = ACTIONS(2575), + [anon_sym_let] = ACTIONS(2575), + [anon_sym_const] = ACTIONS(2575), + [anon_sym_BANG] = ACTIONS(2573), + [anon_sym_else] = ACTIONS(2575), + [anon_sym_if] = ACTIONS(2575), + [anon_sym_switch] = ACTIONS(2575), + [anon_sym_for] = ACTIONS(2575), + [anon_sym_LPAREN] = ACTIONS(2573), + [anon_sym_SEMI] = ACTIONS(2573), + [anon_sym_await] = ACTIONS(2575), + [anon_sym_while] = ACTIONS(2575), + [anon_sym_do] = ACTIONS(2575), + [anon_sym_try] = ACTIONS(2575), + [anon_sym_break] = ACTIONS(2575), + [anon_sym_continue] = ACTIONS(2575), + [anon_sym_debugger] = ACTIONS(2575), + [anon_sym_return] = ACTIONS(2575), + [anon_sym_throw] = ACTIONS(2575), + [anon_sym_case] = ACTIONS(2575), + [anon_sym_yield] = ACTIONS(2575), + [anon_sym_LBRACK] = ACTIONS(2573), + [anon_sym_class] = ACTIONS(2575), + [anon_sym_async] = ACTIONS(2575), + [anon_sym_function] = ACTIONS(2575), + [anon_sym_new] = ACTIONS(2575), + [anon_sym_using] = ACTIONS(2575), + [anon_sym_PLUS] = ACTIONS(2575), + [anon_sym_DASH] = ACTIONS(2575), + [anon_sym_SLASH] = ACTIONS(2575), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_TILDE] = ACTIONS(2573), + [anon_sym_void] = ACTIONS(2575), + [anon_sym_delete] = ACTIONS(2575), + [anon_sym_PLUS_PLUS] = ACTIONS(2573), + [anon_sym_DASH_DASH] = ACTIONS(2573), + [anon_sym_DQUOTE] = ACTIONS(2573), + [anon_sym_SQUOTE] = ACTIONS(2573), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2573), + [sym_number] = ACTIONS(2573), + [sym_private_property_identifier] = ACTIONS(2573), + [sym_this] = ACTIONS(2575), + [sym_super] = ACTIONS(2575), + [sym_true] = ACTIONS(2575), + [sym_false] = ACTIONS(2575), + [sym_null] = ACTIONS(2575), + [sym_undefined] = ACTIONS(2575), + [anon_sym_AT] = ACTIONS(2573), + [anon_sym_static] = ACTIONS(2575), + [anon_sym_readonly] = ACTIONS(2575), + [anon_sym_get] = ACTIONS(2575), + [anon_sym_set] = ACTIONS(2575), + [anon_sym_declare] = ACTIONS(2575), + [anon_sym_public] = ACTIONS(2575), + [anon_sym_private] = ACTIONS(2575), + [anon_sym_protected] = ACTIONS(2575), + [anon_sym_override] = ACTIONS(2575), + [anon_sym_module] = ACTIONS(2575), + [anon_sym_any] = ACTIONS(2575), + [anon_sym_number] = ACTIONS(2575), + [anon_sym_boolean] = ACTIONS(2575), + [anon_sym_string] = ACTIONS(2575), + [anon_sym_symbol] = ACTIONS(2575), + [anon_sym_object] = ACTIONS(2575), + [anon_sym_abstract] = ACTIONS(2575), + [anon_sym_interface] = ACTIONS(2575), + [anon_sym_enum] = ACTIONS(2575), [sym_html_comment] = ACTIONS(5), }, [820] = { - [ts_builtin_sym_end] = ACTIONS(2584), - [sym_identifier] = ACTIONS(2586), - [anon_sym_export] = ACTIONS(2586), - [anon_sym_default] = ACTIONS(2586), - [anon_sym_type] = ACTIONS(2586), - [anon_sym_namespace] = ACTIONS(2586), - [anon_sym_LBRACE] = ACTIONS(2584), - [anon_sym_RBRACE] = ACTIONS(2584), - [anon_sym_typeof] = ACTIONS(2586), - [anon_sym_import] = ACTIONS(2586), - [anon_sym_with] = ACTIONS(2586), - [anon_sym_var] = ACTIONS(2586), - [anon_sym_let] = ACTIONS(2586), - [anon_sym_const] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(2584), - [anon_sym_else] = ACTIONS(2586), - [anon_sym_if] = ACTIONS(2586), - [anon_sym_switch] = ACTIONS(2586), - [anon_sym_for] = ACTIONS(2586), - [anon_sym_LPAREN] = ACTIONS(2584), - [anon_sym_SEMI] = ACTIONS(2584), - [anon_sym_await] = ACTIONS(2586), - [anon_sym_while] = ACTIONS(2586), - [anon_sym_do] = ACTIONS(2586), - [anon_sym_try] = ACTIONS(2586), - [anon_sym_break] = ACTIONS(2586), - [anon_sym_continue] = ACTIONS(2586), - [anon_sym_debugger] = ACTIONS(2586), - [anon_sym_return] = ACTIONS(2586), - [anon_sym_throw] = ACTIONS(2586), - [anon_sym_case] = ACTIONS(2586), - [anon_sym_yield] = ACTIONS(2586), - [anon_sym_LBRACK] = ACTIONS(2584), - [sym_glimmer_opening_tag] = ACTIONS(2584), - [anon_sym_class] = ACTIONS(2586), - [anon_sym_async] = ACTIONS(2586), - [anon_sym_function] = ACTIONS(2586), - [anon_sym_new] = ACTIONS(2586), - [anon_sym_using] = ACTIONS(2586), - [anon_sym_PLUS] = ACTIONS(2586), - [anon_sym_DASH] = ACTIONS(2586), - [anon_sym_SLASH] = ACTIONS(2586), - [anon_sym_LT] = ACTIONS(2586), - [anon_sym_TILDE] = ACTIONS(2584), - [anon_sym_void] = ACTIONS(2586), - [anon_sym_delete] = ACTIONS(2586), - [anon_sym_PLUS_PLUS] = ACTIONS(2584), - [anon_sym_DASH_DASH] = ACTIONS(2584), - [anon_sym_DQUOTE] = ACTIONS(2584), - [anon_sym_SQUOTE] = ACTIONS(2584), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2584), - [sym_number] = ACTIONS(2584), - [sym_private_property_identifier] = ACTIONS(2584), - [sym_this] = ACTIONS(2586), - [sym_super] = ACTIONS(2586), - [sym_true] = ACTIONS(2586), - [sym_false] = ACTIONS(2586), - [sym_null] = ACTIONS(2586), - [sym_undefined] = ACTIONS(2586), - [anon_sym_AT] = ACTIONS(2584), - [anon_sym_static] = ACTIONS(2586), - [anon_sym_readonly] = ACTIONS(2586), - [anon_sym_get] = ACTIONS(2586), - [anon_sym_set] = ACTIONS(2586), - [anon_sym_declare] = ACTIONS(2586), - [anon_sym_public] = ACTIONS(2586), - [anon_sym_private] = ACTIONS(2586), - [anon_sym_protected] = ACTIONS(2586), - [anon_sym_override] = ACTIONS(2586), - [anon_sym_module] = ACTIONS(2586), - [anon_sym_any] = ACTIONS(2586), - [anon_sym_number] = ACTIONS(2586), - [anon_sym_boolean] = ACTIONS(2586), - [anon_sym_string] = ACTIONS(2586), - [anon_sym_symbol] = ACTIONS(2586), - [anon_sym_object] = ACTIONS(2586), - [anon_sym_abstract] = ACTIONS(2586), - [anon_sym_interface] = ACTIONS(2586), - [anon_sym_enum] = ACTIONS(2586), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_rest_pattern] = STATE(5165), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3773), + [sym_tuple_parameter] = STATE(5278), + [sym_optional_tuple_parameter] = STATE(5278), + [sym_optional_type] = STATE(5278), + [sym_rest_type] = STATE(5278), + [sym__tuple_type_member] = STATE(5278), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(2489), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(2577), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2495), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [821] = { - [ts_builtin_sym_end] = ACTIONS(2588), - [sym_identifier] = ACTIONS(2590), - [anon_sym_export] = ACTIONS(2590), - [anon_sym_default] = ACTIONS(2590), - [anon_sym_type] = ACTIONS(2590), - [anon_sym_namespace] = ACTIONS(2590), - [anon_sym_LBRACE] = ACTIONS(2588), - [anon_sym_RBRACE] = ACTIONS(2588), - [anon_sym_typeof] = ACTIONS(2590), - [anon_sym_import] = ACTIONS(2590), - [anon_sym_with] = ACTIONS(2590), - [anon_sym_var] = ACTIONS(2590), - [anon_sym_let] = ACTIONS(2590), - [anon_sym_const] = ACTIONS(2590), - [anon_sym_BANG] = ACTIONS(2588), - [anon_sym_else] = ACTIONS(2590), - [anon_sym_if] = ACTIONS(2590), - [anon_sym_switch] = ACTIONS(2590), - [anon_sym_for] = ACTIONS(2590), - [anon_sym_LPAREN] = ACTIONS(2588), - [anon_sym_SEMI] = ACTIONS(2588), - [anon_sym_await] = ACTIONS(2590), - [anon_sym_while] = ACTIONS(2590), - [anon_sym_do] = ACTIONS(2590), - [anon_sym_try] = ACTIONS(2590), - [anon_sym_break] = ACTIONS(2590), - [anon_sym_continue] = ACTIONS(2590), - [anon_sym_debugger] = ACTIONS(2590), - [anon_sym_return] = ACTIONS(2590), - [anon_sym_throw] = ACTIONS(2590), - [anon_sym_case] = ACTIONS(2590), - [anon_sym_yield] = ACTIONS(2590), - [anon_sym_LBRACK] = ACTIONS(2588), - [sym_glimmer_opening_tag] = ACTIONS(2588), - [anon_sym_class] = ACTIONS(2590), - [anon_sym_async] = ACTIONS(2590), - [anon_sym_function] = ACTIONS(2590), - [anon_sym_new] = ACTIONS(2590), - [anon_sym_using] = ACTIONS(2590), - [anon_sym_PLUS] = ACTIONS(2590), - [anon_sym_DASH] = ACTIONS(2590), - [anon_sym_SLASH] = ACTIONS(2590), - [anon_sym_LT] = ACTIONS(2590), - [anon_sym_TILDE] = ACTIONS(2588), - [anon_sym_void] = ACTIONS(2590), - [anon_sym_delete] = ACTIONS(2590), - [anon_sym_PLUS_PLUS] = ACTIONS(2588), - [anon_sym_DASH_DASH] = ACTIONS(2588), - [anon_sym_DQUOTE] = ACTIONS(2588), - [anon_sym_SQUOTE] = ACTIONS(2588), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2588), - [sym_number] = ACTIONS(2588), - [sym_private_property_identifier] = ACTIONS(2588), - [sym_this] = ACTIONS(2590), - [sym_super] = ACTIONS(2590), - [sym_true] = ACTIONS(2590), - [sym_false] = ACTIONS(2590), - [sym_null] = ACTIONS(2590), - [sym_undefined] = ACTIONS(2590), - [anon_sym_AT] = ACTIONS(2588), - [anon_sym_static] = ACTIONS(2590), - [anon_sym_readonly] = ACTIONS(2590), - [anon_sym_get] = ACTIONS(2590), - [anon_sym_set] = ACTIONS(2590), - [anon_sym_declare] = ACTIONS(2590), - [anon_sym_public] = ACTIONS(2590), - [anon_sym_private] = ACTIONS(2590), - [anon_sym_protected] = ACTIONS(2590), - [anon_sym_override] = ACTIONS(2590), - [anon_sym_module] = ACTIONS(2590), - [anon_sym_any] = ACTIONS(2590), - [anon_sym_number] = ACTIONS(2590), - [anon_sym_boolean] = ACTIONS(2590), - [anon_sym_string] = ACTIONS(2590), - [anon_sym_symbol] = ACTIONS(2590), - [anon_sym_object] = ACTIONS(2590), - [anon_sym_abstract] = ACTIONS(2590), - [anon_sym_interface] = ACTIONS(2590), - [anon_sym_enum] = ACTIONS(2590), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_rest_pattern] = STATE(5165), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3773), + [sym_tuple_parameter] = STATE(5278), + [sym_optional_tuple_parameter] = STATE(5278), + [sym_optional_type] = STATE(5278), + [sym_rest_type] = STATE(5278), + [sym__tuple_type_member] = STATE(5278), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(2489), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(2579), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2495), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [822] = { - [ts_builtin_sym_end] = ACTIONS(2592), - [sym_identifier] = ACTIONS(2594), - [anon_sym_export] = ACTIONS(2594), - [anon_sym_default] = ACTIONS(2594), - [anon_sym_type] = ACTIONS(2594), - [anon_sym_namespace] = ACTIONS(2594), - [anon_sym_LBRACE] = ACTIONS(2592), - [anon_sym_RBRACE] = ACTIONS(2592), - [anon_sym_typeof] = ACTIONS(2594), - [anon_sym_import] = ACTIONS(2594), - [anon_sym_with] = ACTIONS(2594), - [anon_sym_var] = ACTIONS(2594), - [anon_sym_let] = ACTIONS(2594), - [anon_sym_const] = ACTIONS(2594), - [anon_sym_BANG] = ACTIONS(2592), - [anon_sym_else] = ACTIONS(2594), - [anon_sym_if] = ACTIONS(2594), - [anon_sym_switch] = ACTIONS(2594), - [anon_sym_for] = ACTIONS(2594), - [anon_sym_LPAREN] = ACTIONS(2592), - [anon_sym_SEMI] = ACTIONS(2592), - [anon_sym_await] = ACTIONS(2594), - [anon_sym_while] = ACTIONS(2594), - [anon_sym_do] = ACTIONS(2594), - [anon_sym_try] = ACTIONS(2594), - [anon_sym_break] = ACTIONS(2594), - [anon_sym_continue] = ACTIONS(2594), - [anon_sym_debugger] = ACTIONS(2594), - [anon_sym_return] = ACTIONS(2594), - [anon_sym_throw] = ACTIONS(2594), - [anon_sym_case] = ACTIONS(2594), - [anon_sym_yield] = ACTIONS(2594), - [anon_sym_LBRACK] = ACTIONS(2592), - [sym_glimmer_opening_tag] = ACTIONS(2592), - [anon_sym_class] = ACTIONS(2594), - [anon_sym_async] = ACTIONS(2594), - [anon_sym_function] = ACTIONS(2594), - [anon_sym_new] = ACTIONS(2594), - [anon_sym_using] = ACTIONS(2594), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_SLASH] = ACTIONS(2594), - [anon_sym_LT] = ACTIONS(2594), - [anon_sym_TILDE] = ACTIONS(2592), - [anon_sym_void] = ACTIONS(2594), - [anon_sym_delete] = ACTIONS(2594), - [anon_sym_PLUS_PLUS] = ACTIONS(2592), - [anon_sym_DASH_DASH] = ACTIONS(2592), - [anon_sym_DQUOTE] = ACTIONS(2592), - [anon_sym_SQUOTE] = ACTIONS(2592), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2592), - [sym_number] = ACTIONS(2592), - [sym_private_property_identifier] = ACTIONS(2592), - [sym_this] = ACTIONS(2594), - [sym_super] = ACTIONS(2594), - [sym_true] = ACTIONS(2594), - [sym_false] = ACTIONS(2594), - [sym_null] = ACTIONS(2594), - [sym_undefined] = ACTIONS(2594), - [anon_sym_AT] = ACTIONS(2592), - [anon_sym_static] = ACTIONS(2594), - [anon_sym_readonly] = ACTIONS(2594), - [anon_sym_get] = ACTIONS(2594), - [anon_sym_set] = ACTIONS(2594), - [anon_sym_declare] = ACTIONS(2594), - [anon_sym_public] = ACTIONS(2594), - [anon_sym_private] = ACTIONS(2594), - [anon_sym_protected] = ACTIONS(2594), - [anon_sym_override] = ACTIONS(2594), - [anon_sym_module] = ACTIONS(2594), - [anon_sym_any] = ACTIONS(2594), - [anon_sym_number] = ACTIONS(2594), - [anon_sym_boolean] = ACTIONS(2594), - [anon_sym_string] = ACTIONS(2594), - [anon_sym_symbol] = ACTIONS(2594), - [anon_sym_object] = ACTIONS(2594), - [anon_sym_abstract] = ACTIONS(2594), - [anon_sym_interface] = ACTIONS(2594), - [anon_sym_enum] = ACTIONS(2594), + [ts_builtin_sym_end] = ACTIONS(2561), + [sym_identifier] = ACTIONS(2563), + [anon_sym_export] = ACTIONS(2563), + [anon_sym_default] = ACTIONS(2563), + [anon_sym_type] = ACTIONS(2563), + [anon_sym_namespace] = ACTIONS(2563), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_RBRACE] = ACTIONS(2561), + [anon_sym_typeof] = ACTIONS(2563), + [anon_sym_import] = ACTIONS(2563), + [anon_sym_with] = ACTIONS(2563), + [anon_sym_var] = ACTIONS(2563), + [anon_sym_let] = ACTIONS(2563), + [anon_sym_const] = ACTIONS(2563), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_else] = ACTIONS(2563), + [anon_sym_if] = ACTIONS(2563), + [anon_sym_switch] = ACTIONS(2563), + [anon_sym_for] = ACTIONS(2563), + [anon_sym_LPAREN] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_await] = ACTIONS(2563), + [anon_sym_while] = ACTIONS(2563), + [anon_sym_do] = ACTIONS(2563), + [anon_sym_try] = ACTIONS(2563), + [anon_sym_break] = ACTIONS(2563), + [anon_sym_continue] = ACTIONS(2563), + [anon_sym_debugger] = ACTIONS(2563), + [anon_sym_return] = ACTIONS(2563), + [anon_sym_throw] = ACTIONS(2563), + [anon_sym_case] = ACTIONS(2563), + [anon_sym_yield] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(2561), + [anon_sym_class] = ACTIONS(2563), + [anon_sym_async] = ACTIONS(2563), + [anon_sym_function] = ACTIONS(2563), + [anon_sym_new] = ACTIONS(2563), + [anon_sym_using] = ACTIONS(2563), + [anon_sym_PLUS] = ACTIONS(2563), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_SLASH] = ACTIONS(2563), + [anon_sym_LT] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_void] = ACTIONS(2563), + [anon_sym_delete] = ACTIONS(2563), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2561), + [sym_number] = ACTIONS(2561), + [sym_private_property_identifier] = ACTIONS(2561), + [sym_this] = ACTIONS(2563), + [sym_super] = ACTIONS(2563), + [sym_true] = ACTIONS(2563), + [sym_false] = ACTIONS(2563), + [sym_null] = ACTIONS(2563), + [sym_undefined] = ACTIONS(2563), + [anon_sym_AT] = ACTIONS(2561), + [anon_sym_static] = ACTIONS(2563), + [anon_sym_readonly] = ACTIONS(2563), + [anon_sym_get] = ACTIONS(2563), + [anon_sym_set] = ACTIONS(2563), + [anon_sym_declare] = ACTIONS(2563), + [anon_sym_public] = ACTIONS(2563), + [anon_sym_private] = ACTIONS(2563), + [anon_sym_protected] = ACTIONS(2563), + [anon_sym_override] = ACTIONS(2563), + [anon_sym_module] = ACTIONS(2563), + [anon_sym_any] = ACTIONS(2563), + [anon_sym_number] = ACTIONS(2563), + [anon_sym_boolean] = ACTIONS(2563), + [anon_sym_string] = ACTIONS(2563), + [anon_sym_symbol] = ACTIONS(2563), + [anon_sym_object] = ACTIONS(2563), + [anon_sym_abstract] = ACTIONS(2563), + [anon_sym_interface] = ACTIONS(2563), + [anon_sym_enum] = ACTIONS(2563), [sym_html_comment] = ACTIONS(5), }, [823] = { - [ts_builtin_sym_end] = ACTIONS(2596), - [sym_identifier] = ACTIONS(2598), - [anon_sym_export] = ACTIONS(2598), - [anon_sym_default] = ACTIONS(2598), - [anon_sym_type] = ACTIONS(2598), - [anon_sym_namespace] = ACTIONS(2598), - [anon_sym_LBRACE] = ACTIONS(2596), - [anon_sym_RBRACE] = ACTIONS(2596), - [anon_sym_typeof] = ACTIONS(2598), - [anon_sym_import] = ACTIONS(2598), - [anon_sym_with] = ACTIONS(2598), - [anon_sym_var] = ACTIONS(2598), - [anon_sym_let] = ACTIONS(2598), - [anon_sym_const] = ACTIONS(2598), - [anon_sym_BANG] = ACTIONS(2596), - [anon_sym_else] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(2598), - [anon_sym_switch] = ACTIONS(2598), - [anon_sym_for] = ACTIONS(2598), - [anon_sym_LPAREN] = ACTIONS(2596), - [anon_sym_SEMI] = ACTIONS(2596), - [anon_sym_await] = ACTIONS(2598), - [anon_sym_while] = ACTIONS(2598), - [anon_sym_do] = ACTIONS(2598), - [anon_sym_try] = ACTIONS(2598), - [anon_sym_break] = ACTIONS(2598), - [anon_sym_continue] = ACTIONS(2598), - [anon_sym_debugger] = ACTIONS(2598), - [anon_sym_return] = ACTIONS(2598), - [anon_sym_throw] = ACTIONS(2598), - [anon_sym_case] = ACTIONS(2598), - [anon_sym_yield] = ACTIONS(2598), - [anon_sym_LBRACK] = ACTIONS(2596), - [sym_glimmer_opening_tag] = ACTIONS(2596), - [anon_sym_class] = ACTIONS(2598), - [anon_sym_async] = ACTIONS(2598), - [anon_sym_function] = ACTIONS(2598), - [anon_sym_new] = ACTIONS(2598), - [anon_sym_using] = ACTIONS(2598), - [anon_sym_PLUS] = ACTIONS(2598), - [anon_sym_DASH] = ACTIONS(2598), - [anon_sym_SLASH] = ACTIONS(2598), - [anon_sym_LT] = ACTIONS(2598), - [anon_sym_TILDE] = ACTIONS(2596), - [anon_sym_void] = ACTIONS(2598), - [anon_sym_delete] = ACTIONS(2598), - [anon_sym_PLUS_PLUS] = ACTIONS(2596), - [anon_sym_DASH_DASH] = ACTIONS(2596), - [anon_sym_DQUOTE] = ACTIONS(2596), - [anon_sym_SQUOTE] = ACTIONS(2596), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2596), - [sym_number] = ACTIONS(2596), - [sym_private_property_identifier] = ACTIONS(2596), - [sym_this] = ACTIONS(2598), - [sym_super] = ACTIONS(2598), - [sym_true] = ACTIONS(2598), - [sym_false] = ACTIONS(2598), - [sym_null] = ACTIONS(2598), - [sym_undefined] = ACTIONS(2598), - [anon_sym_AT] = ACTIONS(2596), - [anon_sym_static] = ACTIONS(2598), - [anon_sym_readonly] = ACTIONS(2598), - [anon_sym_get] = ACTIONS(2598), - [anon_sym_set] = ACTIONS(2598), - [anon_sym_declare] = ACTIONS(2598), - [anon_sym_public] = ACTIONS(2598), - [anon_sym_private] = ACTIONS(2598), - [anon_sym_protected] = ACTIONS(2598), - [anon_sym_override] = ACTIONS(2598), - [anon_sym_module] = ACTIONS(2598), - [anon_sym_any] = ACTIONS(2598), - [anon_sym_number] = ACTIONS(2598), - [anon_sym_boolean] = ACTIONS(2598), - [anon_sym_string] = ACTIONS(2598), - [anon_sym_symbol] = ACTIONS(2598), - [anon_sym_object] = ACTIONS(2598), - [anon_sym_abstract] = ACTIONS(2598), - [anon_sym_interface] = ACTIONS(2598), - [anon_sym_enum] = ACTIONS(2598), + [ts_builtin_sym_end] = ACTIONS(2581), + [sym_identifier] = ACTIONS(2583), + [anon_sym_export] = ACTIONS(2583), + [anon_sym_default] = ACTIONS(2583), + [anon_sym_type] = ACTIONS(2583), + [anon_sym_namespace] = ACTIONS(2583), + [anon_sym_LBRACE] = ACTIONS(2581), + [anon_sym_RBRACE] = ACTIONS(2581), + [anon_sym_typeof] = ACTIONS(2583), + [anon_sym_import] = ACTIONS(2583), + [anon_sym_with] = ACTIONS(2583), + [anon_sym_var] = ACTIONS(2583), + [anon_sym_let] = ACTIONS(2583), + [anon_sym_const] = ACTIONS(2583), + [anon_sym_BANG] = ACTIONS(2581), + [anon_sym_else] = ACTIONS(2583), + [anon_sym_if] = ACTIONS(2583), + [anon_sym_switch] = ACTIONS(2583), + [anon_sym_for] = ACTIONS(2583), + [anon_sym_LPAREN] = ACTIONS(2581), + [anon_sym_SEMI] = ACTIONS(2581), + [anon_sym_await] = ACTIONS(2583), + [anon_sym_while] = ACTIONS(2583), + [anon_sym_do] = ACTIONS(2583), + [anon_sym_try] = ACTIONS(2583), + [anon_sym_break] = ACTIONS(2583), + [anon_sym_continue] = ACTIONS(2583), + [anon_sym_debugger] = ACTIONS(2583), + [anon_sym_return] = ACTIONS(2583), + [anon_sym_throw] = ACTIONS(2583), + [anon_sym_case] = ACTIONS(2583), + [anon_sym_yield] = ACTIONS(2583), + [anon_sym_LBRACK] = ACTIONS(2581), + [anon_sym_class] = ACTIONS(2583), + [anon_sym_async] = ACTIONS(2583), + [anon_sym_function] = ACTIONS(2583), + [anon_sym_new] = ACTIONS(2583), + [anon_sym_using] = ACTIONS(2583), + [anon_sym_PLUS] = ACTIONS(2583), + [anon_sym_DASH] = ACTIONS(2583), + [anon_sym_SLASH] = ACTIONS(2583), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_TILDE] = ACTIONS(2581), + [anon_sym_void] = ACTIONS(2583), + [anon_sym_delete] = ACTIONS(2583), + [anon_sym_PLUS_PLUS] = ACTIONS(2581), + [anon_sym_DASH_DASH] = ACTIONS(2581), + [anon_sym_DQUOTE] = ACTIONS(2581), + [anon_sym_SQUOTE] = ACTIONS(2581), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2581), + [sym_number] = ACTIONS(2581), + [sym_private_property_identifier] = ACTIONS(2581), + [sym_this] = ACTIONS(2583), + [sym_super] = ACTIONS(2583), + [sym_true] = ACTIONS(2583), + [sym_false] = ACTIONS(2583), + [sym_null] = ACTIONS(2583), + [sym_undefined] = ACTIONS(2583), + [anon_sym_AT] = ACTIONS(2581), + [anon_sym_static] = ACTIONS(2583), + [anon_sym_readonly] = ACTIONS(2583), + [anon_sym_get] = ACTIONS(2583), + [anon_sym_set] = ACTIONS(2583), + [anon_sym_declare] = ACTIONS(2583), + [anon_sym_public] = ACTIONS(2583), + [anon_sym_private] = ACTIONS(2583), + [anon_sym_protected] = ACTIONS(2583), + [anon_sym_override] = ACTIONS(2583), + [anon_sym_module] = ACTIONS(2583), + [anon_sym_any] = ACTIONS(2583), + [anon_sym_number] = ACTIONS(2583), + [anon_sym_boolean] = ACTIONS(2583), + [anon_sym_string] = ACTIONS(2583), + [anon_sym_symbol] = ACTIONS(2583), + [anon_sym_object] = ACTIONS(2583), + [anon_sym_abstract] = ACTIONS(2583), + [anon_sym_interface] = ACTIONS(2583), + [anon_sym_enum] = ACTIONS(2583), [sym_html_comment] = ACTIONS(5), }, [824] = { - [ts_builtin_sym_end] = ACTIONS(2544), - [sym_identifier] = ACTIONS(2546), - [anon_sym_export] = ACTIONS(2546), - [anon_sym_default] = ACTIONS(2546), - [anon_sym_type] = ACTIONS(2546), - [anon_sym_namespace] = ACTIONS(2546), - [anon_sym_LBRACE] = ACTIONS(2544), - [anon_sym_RBRACE] = ACTIONS(2544), - [anon_sym_typeof] = ACTIONS(2546), - [anon_sym_import] = ACTIONS(2546), - [anon_sym_with] = ACTIONS(2546), - [anon_sym_var] = ACTIONS(2546), - [anon_sym_let] = ACTIONS(2546), - [anon_sym_const] = ACTIONS(2546), - [anon_sym_BANG] = ACTIONS(2544), - [anon_sym_else] = ACTIONS(2546), - [anon_sym_if] = ACTIONS(2546), - [anon_sym_switch] = ACTIONS(2546), - [anon_sym_for] = ACTIONS(2546), - [anon_sym_LPAREN] = ACTIONS(2544), - [anon_sym_SEMI] = ACTIONS(2544), - [anon_sym_await] = ACTIONS(2546), - [anon_sym_while] = ACTIONS(2546), - [anon_sym_do] = ACTIONS(2546), - [anon_sym_try] = ACTIONS(2546), - [anon_sym_break] = ACTIONS(2546), - [anon_sym_continue] = ACTIONS(2546), - [anon_sym_debugger] = ACTIONS(2546), - [anon_sym_return] = ACTIONS(2546), - [anon_sym_throw] = ACTIONS(2546), - [anon_sym_case] = ACTIONS(2546), - [anon_sym_yield] = ACTIONS(2546), - [anon_sym_LBRACK] = ACTIONS(2544), - [sym_glimmer_opening_tag] = ACTIONS(2544), - [anon_sym_class] = ACTIONS(2546), - [anon_sym_async] = ACTIONS(2546), - [anon_sym_function] = ACTIONS(2546), - [anon_sym_new] = ACTIONS(2546), - [anon_sym_using] = ACTIONS(2546), - [anon_sym_PLUS] = ACTIONS(2546), - [anon_sym_DASH] = ACTIONS(2546), - [anon_sym_SLASH] = ACTIONS(2546), - [anon_sym_LT] = ACTIONS(2546), - [anon_sym_TILDE] = ACTIONS(2544), - [anon_sym_void] = ACTIONS(2546), - [anon_sym_delete] = ACTIONS(2546), - [anon_sym_PLUS_PLUS] = ACTIONS(2544), - [anon_sym_DASH_DASH] = ACTIONS(2544), - [anon_sym_DQUOTE] = ACTIONS(2544), - [anon_sym_SQUOTE] = ACTIONS(2544), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2544), - [sym_number] = ACTIONS(2544), - [sym_private_property_identifier] = ACTIONS(2544), - [sym_this] = ACTIONS(2546), - [sym_super] = ACTIONS(2546), - [sym_true] = ACTIONS(2546), - [sym_false] = ACTIONS(2546), - [sym_null] = ACTIONS(2546), - [sym_undefined] = ACTIONS(2546), - [anon_sym_AT] = ACTIONS(2544), - [anon_sym_static] = ACTIONS(2546), - [anon_sym_readonly] = ACTIONS(2546), - [anon_sym_get] = ACTIONS(2546), - [anon_sym_set] = ACTIONS(2546), - [anon_sym_declare] = ACTIONS(2546), - [anon_sym_public] = ACTIONS(2546), - [anon_sym_private] = ACTIONS(2546), - [anon_sym_protected] = ACTIONS(2546), - [anon_sym_override] = ACTIONS(2546), - [anon_sym_module] = ACTIONS(2546), - [anon_sym_any] = ACTIONS(2546), - [anon_sym_number] = ACTIONS(2546), - [anon_sym_boolean] = ACTIONS(2546), - [anon_sym_string] = ACTIONS(2546), - [anon_sym_symbol] = ACTIONS(2546), - [anon_sym_object] = ACTIONS(2546), - [anon_sym_abstract] = ACTIONS(2546), - [anon_sym_interface] = ACTIONS(2546), - [anon_sym_enum] = ACTIONS(2546), + [ts_builtin_sym_end] = ACTIONS(1730), + [sym_identifier] = ACTIONS(1732), + [anon_sym_export] = ACTIONS(1732), + [anon_sym_default] = ACTIONS(1732), + [anon_sym_type] = ACTIONS(1732), + [anon_sym_namespace] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(1730), + [anon_sym_typeof] = ACTIONS(1732), + [anon_sym_import] = ACTIONS(1732), + [anon_sym_with] = ACTIONS(1732), + [anon_sym_var] = ACTIONS(1732), + [anon_sym_let] = ACTIONS(1732), + [anon_sym_const] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1730), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_switch] = ACTIONS(1732), + [anon_sym_for] = ACTIONS(1732), + [anon_sym_LPAREN] = ACTIONS(1730), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_await] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_do] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_debugger] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_case] = ACTIONS(1732), + [anon_sym_yield] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_class] = ACTIONS(1732), + [anon_sym_async] = ACTIONS(1732), + [anon_sym_function] = ACTIONS(1732), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_using] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_LT] = ACTIONS(1730), + [anon_sym_TILDE] = ACTIONS(1730), + [anon_sym_void] = ACTIONS(1732), + [anon_sym_delete] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1730), + [anon_sym_SQUOTE] = ACTIONS(1730), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(1730), + [sym_private_property_identifier] = ACTIONS(1730), + [sym_this] = ACTIONS(1732), + [sym_super] = ACTIONS(1732), + [sym_true] = ACTIONS(1732), + [sym_false] = ACTIONS(1732), + [sym_null] = ACTIONS(1732), + [sym_undefined] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(1732), + [anon_sym_readonly] = ACTIONS(1732), + [anon_sym_get] = ACTIONS(1732), + [anon_sym_set] = ACTIONS(1732), + [anon_sym_declare] = ACTIONS(1732), + [anon_sym_public] = ACTIONS(1732), + [anon_sym_private] = ACTIONS(1732), + [anon_sym_protected] = ACTIONS(1732), + [anon_sym_override] = ACTIONS(1732), + [anon_sym_module] = ACTIONS(1732), + [anon_sym_any] = ACTIONS(1732), + [anon_sym_number] = ACTIONS(1732), + [anon_sym_boolean] = ACTIONS(1732), + [anon_sym_string] = ACTIONS(1732), + [anon_sym_symbol] = ACTIONS(1732), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_abstract] = ACTIONS(1732), + [anon_sym_interface] = ACTIONS(1732), + [anon_sym_enum] = ACTIONS(1732), [sym_html_comment] = ACTIONS(5), }, [825] = { - [ts_builtin_sym_end] = ACTIONS(1879), - [sym_identifier] = ACTIONS(1881), - [anon_sym_export] = ACTIONS(1881), - [anon_sym_default] = ACTIONS(1881), - [anon_sym_type] = ACTIONS(1881), - [anon_sym_namespace] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1879), - [anon_sym_RBRACE] = ACTIONS(1879), - [anon_sym_typeof] = ACTIONS(1881), - [anon_sym_import] = ACTIONS(1881), - [anon_sym_with] = ACTIONS(1881), - [anon_sym_var] = ACTIONS(1881), - [anon_sym_let] = ACTIONS(1881), - [anon_sym_const] = ACTIONS(1881), - [anon_sym_BANG] = ACTIONS(1879), - [anon_sym_else] = ACTIONS(1881), - [anon_sym_if] = ACTIONS(1881), - [anon_sym_switch] = ACTIONS(1881), - [anon_sym_for] = ACTIONS(1881), - [anon_sym_LPAREN] = ACTIONS(1879), - [anon_sym_SEMI] = ACTIONS(1879), - [anon_sym_await] = ACTIONS(1881), - [anon_sym_while] = ACTIONS(1881), - [anon_sym_do] = ACTIONS(1881), - [anon_sym_try] = ACTIONS(1881), - [anon_sym_break] = ACTIONS(1881), - [anon_sym_continue] = ACTIONS(1881), - [anon_sym_debugger] = ACTIONS(1881), - [anon_sym_return] = ACTIONS(1881), - [anon_sym_throw] = ACTIONS(1881), - [anon_sym_case] = ACTIONS(1881), - [anon_sym_yield] = ACTIONS(1881), - [anon_sym_LBRACK] = ACTIONS(1879), - [sym_glimmer_opening_tag] = ACTIONS(1879), - [anon_sym_class] = ACTIONS(1881), - [anon_sym_async] = ACTIONS(1881), - [anon_sym_function] = ACTIONS(1881), - [anon_sym_new] = ACTIONS(1881), - [anon_sym_using] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(1881), - [anon_sym_DASH] = ACTIONS(1881), - [anon_sym_SLASH] = ACTIONS(1881), - [anon_sym_LT] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1879), - [anon_sym_void] = ACTIONS(1881), - [anon_sym_delete] = ACTIONS(1881), - [anon_sym_PLUS_PLUS] = ACTIONS(1879), - [anon_sym_DASH_DASH] = ACTIONS(1879), - [anon_sym_DQUOTE] = ACTIONS(1879), - [anon_sym_SQUOTE] = ACTIONS(1879), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1879), - [sym_number] = ACTIONS(1879), - [sym_private_property_identifier] = ACTIONS(1879), - [sym_this] = ACTIONS(1881), - [sym_super] = ACTIONS(1881), - [sym_true] = ACTIONS(1881), - [sym_false] = ACTIONS(1881), - [sym_null] = ACTIONS(1881), - [sym_undefined] = ACTIONS(1881), - [anon_sym_AT] = ACTIONS(1879), - [anon_sym_static] = ACTIONS(1881), - [anon_sym_readonly] = ACTIONS(1881), - [anon_sym_get] = ACTIONS(1881), - [anon_sym_set] = ACTIONS(1881), - [anon_sym_declare] = ACTIONS(1881), - [anon_sym_public] = ACTIONS(1881), - [anon_sym_private] = ACTIONS(1881), - [anon_sym_protected] = ACTIONS(1881), - [anon_sym_override] = ACTIONS(1881), - [anon_sym_module] = ACTIONS(1881), - [anon_sym_any] = ACTIONS(1881), - [anon_sym_number] = ACTIONS(1881), - [anon_sym_boolean] = ACTIONS(1881), - [anon_sym_string] = ACTIONS(1881), - [anon_sym_symbol] = ACTIONS(1881), - [anon_sym_object] = ACTIONS(1881), - [anon_sym_abstract] = ACTIONS(1881), - [anon_sym_interface] = ACTIONS(1881), - [anon_sym_enum] = ACTIONS(1881), + [ts_builtin_sym_end] = ACTIONS(2585), + [sym_identifier] = ACTIONS(2587), + [anon_sym_export] = ACTIONS(2587), + [anon_sym_default] = ACTIONS(2587), + [anon_sym_type] = ACTIONS(2587), + [anon_sym_namespace] = ACTIONS(2587), + [anon_sym_LBRACE] = ACTIONS(2585), + [anon_sym_RBRACE] = ACTIONS(2585), + [anon_sym_typeof] = ACTIONS(2587), + [anon_sym_import] = ACTIONS(2587), + [anon_sym_with] = ACTIONS(2587), + [anon_sym_var] = ACTIONS(2587), + [anon_sym_let] = ACTIONS(2587), + [anon_sym_const] = ACTIONS(2587), + [anon_sym_BANG] = ACTIONS(2585), + [anon_sym_else] = ACTIONS(2587), + [anon_sym_if] = ACTIONS(2587), + [anon_sym_switch] = ACTIONS(2587), + [anon_sym_for] = ACTIONS(2587), + [anon_sym_LPAREN] = ACTIONS(2585), + [anon_sym_SEMI] = ACTIONS(2585), + [anon_sym_await] = ACTIONS(2587), + [anon_sym_while] = ACTIONS(2587), + [anon_sym_do] = ACTIONS(2587), + [anon_sym_try] = ACTIONS(2587), + [anon_sym_break] = ACTIONS(2587), + [anon_sym_continue] = ACTIONS(2587), + [anon_sym_debugger] = ACTIONS(2587), + [anon_sym_return] = ACTIONS(2587), + [anon_sym_throw] = ACTIONS(2587), + [anon_sym_case] = ACTIONS(2587), + [anon_sym_yield] = ACTIONS(2587), + [anon_sym_LBRACK] = ACTIONS(2585), + [anon_sym_class] = ACTIONS(2587), + [anon_sym_async] = ACTIONS(2587), + [anon_sym_function] = ACTIONS(2587), + [anon_sym_new] = ACTIONS(2587), + [anon_sym_using] = ACTIONS(2587), + [anon_sym_PLUS] = ACTIONS(2587), + [anon_sym_DASH] = ACTIONS(2587), + [anon_sym_SLASH] = ACTIONS(2587), + [anon_sym_LT] = ACTIONS(2585), + [anon_sym_TILDE] = ACTIONS(2585), + [anon_sym_void] = ACTIONS(2587), + [anon_sym_delete] = ACTIONS(2587), + [anon_sym_PLUS_PLUS] = ACTIONS(2585), + [anon_sym_DASH_DASH] = ACTIONS(2585), + [anon_sym_DQUOTE] = ACTIONS(2585), + [anon_sym_SQUOTE] = ACTIONS(2585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2585), + [sym_number] = ACTIONS(2585), + [sym_private_property_identifier] = ACTIONS(2585), + [sym_this] = ACTIONS(2587), + [sym_super] = ACTIONS(2587), + [sym_true] = ACTIONS(2587), + [sym_false] = ACTIONS(2587), + [sym_null] = ACTIONS(2587), + [sym_undefined] = ACTIONS(2587), + [anon_sym_AT] = ACTIONS(2585), + [anon_sym_static] = ACTIONS(2587), + [anon_sym_readonly] = ACTIONS(2587), + [anon_sym_get] = ACTIONS(2587), + [anon_sym_set] = ACTIONS(2587), + [anon_sym_declare] = ACTIONS(2587), + [anon_sym_public] = ACTIONS(2587), + [anon_sym_private] = ACTIONS(2587), + [anon_sym_protected] = ACTIONS(2587), + [anon_sym_override] = ACTIONS(2587), + [anon_sym_module] = ACTIONS(2587), + [anon_sym_any] = ACTIONS(2587), + [anon_sym_number] = ACTIONS(2587), + [anon_sym_boolean] = ACTIONS(2587), + [anon_sym_string] = ACTIONS(2587), + [anon_sym_symbol] = ACTIONS(2587), + [anon_sym_object] = ACTIONS(2587), + [anon_sym_abstract] = ACTIONS(2587), + [anon_sym_interface] = ACTIONS(2587), + [anon_sym_enum] = ACTIONS(2587), [sym_html_comment] = ACTIONS(5), }, [826] = { - [ts_builtin_sym_end] = ACTIONS(2600), - [sym_identifier] = ACTIONS(2602), - [anon_sym_export] = ACTIONS(2602), - [anon_sym_default] = ACTIONS(2602), - [anon_sym_type] = ACTIONS(2602), - [anon_sym_namespace] = ACTIONS(2602), - [anon_sym_LBRACE] = ACTIONS(2600), - [anon_sym_RBRACE] = ACTIONS(2600), - [anon_sym_typeof] = ACTIONS(2602), - [anon_sym_import] = ACTIONS(2602), - [anon_sym_with] = ACTIONS(2602), - [anon_sym_var] = ACTIONS(2602), - [anon_sym_let] = ACTIONS(2602), - [anon_sym_const] = ACTIONS(2602), - [anon_sym_BANG] = ACTIONS(2600), - [anon_sym_else] = ACTIONS(2602), - [anon_sym_if] = ACTIONS(2602), - [anon_sym_switch] = ACTIONS(2602), - [anon_sym_for] = ACTIONS(2602), - [anon_sym_LPAREN] = ACTIONS(2600), - [anon_sym_SEMI] = ACTIONS(2600), - [anon_sym_await] = ACTIONS(2602), - [anon_sym_while] = ACTIONS(2602), - [anon_sym_do] = ACTIONS(2602), - [anon_sym_try] = ACTIONS(2602), - [anon_sym_break] = ACTIONS(2602), - [anon_sym_continue] = ACTIONS(2602), - [anon_sym_debugger] = ACTIONS(2602), - [anon_sym_return] = ACTIONS(2602), - [anon_sym_throw] = ACTIONS(2602), - [anon_sym_case] = ACTIONS(2602), - [anon_sym_yield] = ACTIONS(2602), - [anon_sym_LBRACK] = ACTIONS(2600), - [sym_glimmer_opening_tag] = ACTIONS(2600), - [anon_sym_class] = ACTIONS(2602), - [anon_sym_async] = ACTIONS(2602), - [anon_sym_function] = ACTIONS(2602), - [anon_sym_new] = ACTIONS(2602), - [anon_sym_using] = ACTIONS(2602), - [anon_sym_PLUS] = ACTIONS(2602), - [anon_sym_DASH] = ACTIONS(2602), - [anon_sym_SLASH] = ACTIONS(2602), - [anon_sym_LT] = ACTIONS(2602), - [anon_sym_TILDE] = ACTIONS(2600), - [anon_sym_void] = ACTIONS(2602), - [anon_sym_delete] = ACTIONS(2602), - [anon_sym_PLUS_PLUS] = ACTIONS(2600), - [anon_sym_DASH_DASH] = ACTIONS(2600), - [anon_sym_DQUOTE] = ACTIONS(2600), - [anon_sym_SQUOTE] = ACTIONS(2600), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2600), - [sym_number] = ACTIONS(2600), - [sym_private_property_identifier] = ACTIONS(2600), - [sym_this] = ACTIONS(2602), - [sym_super] = ACTIONS(2602), - [sym_true] = ACTIONS(2602), - [sym_false] = ACTIONS(2602), - [sym_null] = ACTIONS(2602), - [sym_undefined] = ACTIONS(2602), - [anon_sym_AT] = ACTIONS(2600), - [anon_sym_static] = ACTIONS(2602), - [anon_sym_readonly] = ACTIONS(2602), - [anon_sym_get] = ACTIONS(2602), - [anon_sym_set] = ACTIONS(2602), - [anon_sym_declare] = ACTIONS(2602), - [anon_sym_public] = ACTIONS(2602), - [anon_sym_private] = ACTIONS(2602), - [anon_sym_protected] = ACTIONS(2602), - [anon_sym_override] = ACTIONS(2602), - [anon_sym_module] = ACTIONS(2602), - [anon_sym_any] = ACTIONS(2602), - [anon_sym_number] = ACTIONS(2602), - [anon_sym_boolean] = ACTIONS(2602), - [anon_sym_string] = ACTIONS(2602), - [anon_sym_symbol] = ACTIONS(2602), - [anon_sym_object] = ACTIONS(2602), - [anon_sym_abstract] = ACTIONS(2602), - [anon_sym_interface] = ACTIONS(2602), - [anon_sym_enum] = ACTIONS(2602), + [ts_builtin_sym_end] = ACTIONS(2589), + [sym_identifier] = ACTIONS(2591), + [anon_sym_export] = ACTIONS(2591), + [anon_sym_default] = ACTIONS(2591), + [anon_sym_type] = ACTIONS(2591), + [anon_sym_namespace] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2589), + [anon_sym_RBRACE] = ACTIONS(2589), + [anon_sym_typeof] = ACTIONS(2591), + [anon_sym_import] = ACTIONS(2591), + [anon_sym_with] = ACTIONS(2591), + [anon_sym_var] = ACTIONS(2591), + [anon_sym_let] = ACTIONS(2591), + [anon_sym_const] = ACTIONS(2591), + [anon_sym_BANG] = ACTIONS(2589), + [anon_sym_else] = ACTIONS(2591), + [anon_sym_if] = ACTIONS(2591), + [anon_sym_switch] = ACTIONS(2591), + [anon_sym_for] = ACTIONS(2591), + [anon_sym_LPAREN] = ACTIONS(2589), + [anon_sym_SEMI] = ACTIONS(2589), + [anon_sym_await] = ACTIONS(2591), + [anon_sym_while] = ACTIONS(2591), + [anon_sym_do] = ACTIONS(2591), + [anon_sym_try] = ACTIONS(2591), + [anon_sym_break] = ACTIONS(2591), + [anon_sym_continue] = ACTIONS(2591), + [anon_sym_debugger] = ACTIONS(2591), + [anon_sym_return] = ACTIONS(2591), + [anon_sym_throw] = ACTIONS(2591), + [anon_sym_case] = ACTIONS(2591), + [anon_sym_yield] = ACTIONS(2591), + [anon_sym_LBRACK] = ACTIONS(2589), + [anon_sym_class] = ACTIONS(2591), + [anon_sym_async] = ACTIONS(2591), + [anon_sym_function] = ACTIONS(2591), + [anon_sym_new] = ACTIONS(2591), + [anon_sym_using] = ACTIONS(2591), + [anon_sym_PLUS] = ACTIONS(2591), + [anon_sym_DASH] = ACTIONS(2591), + [anon_sym_SLASH] = ACTIONS(2591), + [anon_sym_LT] = ACTIONS(2589), + [anon_sym_TILDE] = ACTIONS(2589), + [anon_sym_void] = ACTIONS(2591), + [anon_sym_delete] = ACTIONS(2591), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_DQUOTE] = ACTIONS(2589), + [anon_sym_SQUOTE] = ACTIONS(2589), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2589), + [sym_number] = ACTIONS(2589), + [sym_private_property_identifier] = ACTIONS(2589), + [sym_this] = ACTIONS(2591), + [sym_super] = ACTIONS(2591), + [sym_true] = ACTIONS(2591), + [sym_false] = ACTIONS(2591), + [sym_null] = ACTIONS(2591), + [sym_undefined] = ACTIONS(2591), + [anon_sym_AT] = ACTIONS(2589), + [anon_sym_static] = ACTIONS(2591), + [anon_sym_readonly] = ACTIONS(2591), + [anon_sym_get] = ACTIONS(2591), + [anon_sym_set] = ACTIONS(2591), + [anon_sym_declare] = ACTIONS(2591), + [anon_sym_public] = ACTIONS(2591), + [anon_sym_private] = ACTIONS(2591), + [anon_sym_protected] = ACTIONS(2591), + [anon_sym_override] = ACTIONS(2591), + [anon_sym_module] = ACTIONS(2591), + [anon_sym_any] = ACTIONS(2591), + [anon_sym_number] = ACTIONS(2591), + [anon_sym_boolean] = ACTIONS(2591), + [anon_sym_string] = ACTIONS(2591), + [anon_sym_symbol] = ACTIONS(2591), + [anon_sym_object] = ACTIONS(2591), + [anon_sym_abstract] = ACTIONS(2591), + [anon_sym_interface] = ACTIONS(2591), + [anon_sym_enum] = ACTIONS(2591), [sym_html_comment] = ACTIONS(5), }, [827] = { - [ts_builtin_sym_end] = ACTIONS(2604), - [sym_identifier] = ACTIONS(2606), - [anon_sym_export] = ACTIONS(2606), - [anon_sym_default] = ACTIONS(2606), - [anon_sym_type] = ACTIONS(2606), - [anon_sym_namespace] = ACTIONS(2606), - [anon_sym_LBRACE] = ACTIONS(2604), - [anon_sym_RBRACE] = ACTIONS(2604), - [anon_sym_typeof] = ACTIONS(2606), - [anon_sym_import] = ACTIONS(2606), - [anon_sym_with] = ACTIONS(2606), - [anon_sym_var] = ACTIONS(2606), - [anon_sym_let] = ACTIONS(2606), - [anon_sym_const] = ACTIONS(2606), - [anon_sym_BANG] = ACTIONS(2604), - [anon_sym_else] = ACTIONS(2606), - [anon_sym_if] = ACTIONS(2606), - [anon_sym_switch] = ACTIONS(2606), - [anon_sym_for] = ACTIONS(2606), - [anon_sym_LPAREN] = ACTIONS(2604), - [anon_sym_SEMI] = ACTIONS(2604), - [anon_sym_await] = ACTIONS(2606), - [anon_sym_while] = ACTIONS(2606), - [anon_sym_do] = ACTIONS(2606), - [anon_sym_try] = ACTIONS(2606), - [anon_sym_break] = ACTIONS(2606), - [anon_sym_continue] = ACTIONS(2606), - [anon_sym_debugger] = ACTIONS(2606), - [anon_sym_return] = ACTIONS(2606), - [anon_sym_throw] = ACTIONS(2606), - [anon_sym_case] = ACTIONS(2606), - [anon_sym_yield] = ACTIONS(2606), - [anon_sym_LBRACK] = ACTIONS(2604), - [sym_glimmer_opening_tag] = ACTIONS(2604), - [anon_sym_class] = ACTIONS(2606), - [anon_sym_async] = ACTIONS(2606), - [anon_sym_function] = ACTIONS(2606), - [anon_sym_new] = ACTIONS(2606), - [anon_sym_using] = ACTIONS(2606), - [anon_sym_PLUS] = ACTIONS(2606), - [anon_sym_DASH] = ACTIONS(2606), - [anon_sym_SLASH] = ACTIONS(2606), - [anon_sym_LT] = ACTIONS(2606), - [anon_sym_TILDE] = ACTIONS(2604), - [anon_sym_void] = ACTIONS(2606), - [anon_sym_delete] = ACTIONS(2606), - [anon_sym_PLUS_PLUS] = ACTIONS(2604), - [anon_sym_DASH_DASH] = ACTIONS(2604), - [anon_sym_DQUOTE] = ACTIONS(2604), - [anon_sym_SQUOTE] = ACTIONS(2604), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2604), - [sym_number] = ACTIONS(2604), - [sym_private_property_identifier] = ACTIONS(2604), - [sym_this] = ACTIONS(2606), - [sym_super] = ACTIONS(2606), - [sym_true] = ACTIONS(2606), - [sym_false] = ACTIONS(2606), - [sym_null] = ACTIONS(2606), - [sym_undefined] = ACTIONS(2606), - [anon_sym_AT] = ACTIONS(2604), - [anon_sym_static] = ACTIONS(2606), - [anon_sym_readonly] = ACTIONS(2606), - [anon_sym_get] = ACTIONS(2606), - [anon_sym_set] = ACTIONS(2606), - [anon_sym_declare] = ACTIONS(2606), - [anon_sym_public] = ACTIONS(2606), - [anon_sym_private] = ACTIONS(2606), - [anon_sym_protected] = ACTIONS(2606), - [anon_sym_override] = ACTIONS(2606), - [anon_sym_module] = ACTIONS(2606), - [anon_sym_any] = ACTIONS(2606), - [anon_sym_number] = ACTIONS(2606), - [anon_sym_boolean] = ACTIONS(2606), - [anon_sym_string] = ACTIONS(2606), - [anon_sym_symbol] = ACTIONS(2606), - [anon_sym_object] = ACTIONS(2606), - [anon_sym_abstract] = ACTIONS(2606), - [anon_sym_interface] = ACTIONS(2606), - [anon_sym_enum] = ACTIONS(2606), + [ts_builtin_sym_end] = ACTIONS(2593), + [sym_identifier] = ACTIONS(2595), + [anon_sym_export] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_type] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2593), + [anon_sym_RBRACE] = ACTIONS(2593), + [anon_sym_typeof] = ACTIONS(2595), + [anon_sym_import] = ACTIONS(2595), + [anon_sym_with] = ACTIONS(2595), + [anon_sym_var] = ACTIONS(2595), + [anon_sym_let] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_BANG] = ACTIONS(2593), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_LPAREN] = ACTIONS(2593), + [anon_sym_SEMI] = ACTIONS(2593), + [anon_sym_await] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_debugger] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_yield] = ACTIONS(2595), + [anon_sym_LBRACK] = ACTIONS(2593), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_async] = ACTIONS(2595), + [anon_sym_function] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_SLASH] = ACTIONS(2595), + [anon_sym_LT] = ACTIONS(2593), + [anon_sym_TILDE] = ACTIONS(2593), + [anon_sym_void] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_PLUS_PLUS] = ACTIONS(2593), + [anon_sym_DASH_DASH] = ACTIONS(2593), + [anon_sym_DQUOTE] = ACTIONS(2593), + [anon_sym_SQUOTE] = ACTIONS(2593), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2593), + [sym_number] = ACTIONS(2593), + [sym_private_property_identifier] = ACTIONS(2593), + [sym_this] = ACTIONS(2595), + [sym_super] = ACTIONS(2595), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), + [sym_undefined] = ACTIONS(2595), + [anon_sym_AT] = ACTIONS(2593), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_readonly] = ACTIONS(2595), + [anon_sym_get] = ACTIONS(2595), + [anon_sym_set] = ACTIONS(2595), + [anon_sym_declare] = ACTIONS(2595), + [anon_sym_public] = ACTIONS(2595), + [anon_sym_private] = ACTIONS(2595), + [anon_sym_protected] = ACTIONS(2595), + [anon_sym_override] = ACTIONS(2595), + [anon_sym_module] = ACTIONS(2595), + [anon_sym_any] = ACTIONS(2595), + [anon_sym_number] = ACTIONS(2595), + [anon_sym_boolean] = ACTIONS(2595), + [anon_sym_string] = ACTIONS(2595), + [anon_sym_symbol] = ACTIONS(2595), + [anon_sym_object] = ACTIONS(2595), + [anon_sym_abstract] = ACTIONS(2595), + [anon_sym_interface] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), [sym_html_comment] = ACTIONS(5), }, [828] = { - [ts_builtin_sym_end] = ACTIONS(2608), - [sym_identifier] = ACTIONS(2610), - [anon_sym_export] = ACTIONS(2610), - [anon_sym_default] = ACTIONS(2610), - [anon_sym_type] = ACTIONS(2610), - [anon_sym_namespace] = ACTIONS(2610), - [anon_sym_LBRACE] = ACTIONS(2608), - [anon_sym_RBRACE] = ACTIONS(2608), - [anon_sym_typeof] = ACTIONS(2610), - [anon_sym_import] = ACTIONS(2610), - [anon_sym_with] = ACTIONS(2610), - [anon_sym_var] = ACTIONS(2610), - [anon_sym_let] = ACTIONS(2610), - [anon_sym_const] = ACTIONS(2610), - [anon_sym_BANG] = ACTIONS(2608), - [anon_sym_else] = ACTIONS(2610), - [anon_sym_if] = ACTIONS(2610), - [anon_sym_switch] = ACTIONS(2610), - [anon_sym_for] = ACTIONS(2610), - [anon_sym_LPAREN] = ACTIONS(2608), - [anon_sym_SEMI] = ACTIONS(2608), - [anon_sym_await] = ACTIONS(2610), - [anon_sym_while] = ACTIONS(2610), - [anon_sym_do] = ACTIONS(2610), - [anon_sym_try] = ACTIONS(2610), - [anon_sym_break] = ACTIONS(2610), - [anon_sym_continue] = ACTIONS(2610), - [anon_sym_debugger] = ACTIONS(2610), - [anon_sym_return] = ACTIONS(2610), - [anon_sym_throw] = ACTIONS(2610), - [anon_sym_case] = ACTIONS(2610), - [anon_sym_yield] = ACTIONS(2610), - [anon_sym_LBRACK] = ACTIONS(2608), - [sym_glimmer_opening_tag] = ACTIONS(2608), - [anon_sym_class] = ACTIONS(2610), - [anon_sym_async] = ACTIONS(2610), - [anon_sym_function] = ACTIONS(2610), - [anon_sym_new] = ACTIONS(2610), - [anon_sym_using] = ACTIONS(2610), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_SLASH] = ACTIONS(2610), - [anon_sym_LT] = ACTIONS(2610), - [anon_sym_TILDE] = ACTIONS(2608), - [anon_sym_void] = ACTIONS(2610), - [anon_sym_delete] = ACTIONS(2610), - [anon_sym_PLUS_PLUS] = ACTIONS(2608), - [anon_sym_DASH_DASH] = ACTIONS(2608), - [anon_sym_DQUOTE] = ACTIONS(2608), - [anon_sym_SQUOTE] = ACTIONS(2608), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2608), - [sym_number] = ACTIONS(2608), - [sym_private_property_identifier] = ACTIONS(2608), - [sym_this] = ACTIONS(2610), - [sym_super] = ACTIONS(2610), - [sym_true] = ACTIONS(2610), - [sym_false] = ACTIONS(2610), - [sym_null] = ACTIONS(2610), - [sym_undefined] = ACTIONS(2610), - [anon_sym_AT] = ACTIONS(2608), - [anon_sym_static] = ACTIONS(2610), - [anon_sym_readonly] = ACTIONS(2610), - [anon_sym_get] = ACTIONS(2610), - [anon_sym_set] = ACTIONS(2610), - [anon_sym_declare] = ACTIONS(2610), - [anon_sym_public] = ACTIONS(2610), - [anon_sym_private] = ACTIONS(2610), - [anon_sym_protected] = ACTIONS(2610), - [anon_sym_override] = ACTIONS(2610), - [anon_sym_module] = ACTIONS(2610), - [anon_sym_any] = ACTIONS(2610), - [anon_sym_number] = ACTIONS(2610), - [anon_sym_boolean] = ACTIONS(2610), - [anon_sym_string] = ACTIONS(2610), - [anon_sym_symbol] = ACTIONS(2610), - [anon_sym_object] = ACTIONS(2610), - [anon_sym_abstract] = ACTIONS(2610), - [anon_sym_interface] = ACTIONS(2610), - [anon_sym_enum] = ACTIONS(2610), + [ts_builtin_sym_end] = ACTIONS(2597), + [sym_identifier] = ACTIONS(2599), + [anon_sym_export] = ACTIONS(2599), + [anon_sym_default] = ACTIONS(2599), + [anon_sym_type] = ACTIONS(2599), + [anon_sym_namespace] = ACTIONS(2599), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_RBRACE] = ACTIONS(2597), + [anon_sym_typeof] = ACTIONS(2599), + [anon_sym_import] = ACTIONS(2599), + [anon_sym_with] = ACTIONS(2599), + [anon_sym_var] = ACTIONS(2599), + [anon_sym_let] = ACTIONS(2599), + [anon_sym_const] = ACTIONS(2599), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_else] = ACTIONS(2599), + [anon_sym_if] = ACTIONS(2599), + [anon_sym_switch] = ACTIONS(2599), + [anon_sym_for] = ACTIONS(2599), + [anon_sym_LPAREN] = ACTIONS(2597), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_await] = ACTIONS(2599), + [anon_sym_while] = ACTIONS(2599), + [anon_sym_do] = ACTIONS(2599), + [anon_sym_try] = ACTIONS(2599), + [anon_sym_break] = ACTIONS(2599), + [anon_sym_continue] = ACTIONS(2599), + [anon_sym_debugger] = ACTIONS(2599), + [anon_sym_return] = ACTIONS(2599), + [anon_sym_throw] = ACTIONS(2599), + [anon_sym_case] = ACTIONS(2599), + [anon_sym_yield] = ACTIONS(2599), + [anon_sym_LBRACK] = ACTIONS(2597), + [anon_sym_class] = ACTIONS(2599), + [anon_sym_async] = ACTIONS(2599), + [anon_sym_function] = ACTIONS(2599), + [anon_sym_new] = ACTIONS(2599), + [anon_sym_using] = ACTIONS(2599), + [anon_sym_PLUS] = ACTIONS(2599), + [anon_sym_DASH] = ACTIONS(2599), + [anon_sym_SLASH] = ACTIONS(2599), + [anon_sym_LT] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_void] = ACTIONS(2599), + [anon_sym_delete] = ACTIONS(2599), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2597), + [sym_number] = ACTIONS(2597), + [sym_private_property_identifier] = ACTIONS(2597), + [sym_this] = ACTIONS(2599), + [sym_super] = ACTIONS(2599), + [sym_true] = ACTIONS(2599), + [sym_false] = ACTIONS(2599), + [sym_null] = ACTIONS(2599), + [sym_undefined] = ACTIONS(2599), + [anon_sym_AT] = ACTIONS(2597), + [anon_sym_static] = ACTIONS(2599), + [anon_sym_readonly] = ACTIONS(2599), + [anon_sym_get] = ACTIONS(2599), + [anon_sym_set] = ACTIONS(2599), + [anon_sym_declare] = ACTIONS(2599), + [anon_sym_public] = ACTIONS(2599), + [anon_sym_private] = ACTIONS(2599), + [anon_sym_protected] = ACTIONS(2599), + [anon_sym_override] = ACTIONS(2599), + [anon_sym_module] = ACTIONS(2599), + [anon_sym_any] = ACTIONS(2599), + [anon_sym_number] = ACTIONS(2599), + [anon_sym_boolean] = ACTIONS(2599), + [anon_sym_string] = ACTIONS(2599), + [anon_sym_symbol] = ACTIONS(2599), + [anon_sym_object] = ACTIONS(2599), + [anon_sym_abstract] = ACTIONS(2599), + [anon_sym_interface] = ACTIONS(2599), + [anon_sym_enum] = ACTIONS(2599), [sym_html_comment] = ACTIONS(5), }, [829] = { - [ts_builtin_sym_end] = ACTIONS(2572), - [sym_identifier] = ACTIONS(2574), - [anon_sym_export] = ACTIONS(2574), - [anon_sym_default] = ACTIONS(2574), - [anon_sym_type] = ACTIONS(2574), - [anon_sym_namespace] = ACTIONS(2574), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_RBRACE] = ACTIONS(2572), - [anon_sym_typeof] = ACTIONS(2574), - [anon_sym_import] = ACTIONS(2574), - [anon_sym_with] = ACTIONS(2574), - [anon_sym_var] = ACTIONS(2574), - [anon_sym_let] = ACTIONS(2574), - [anon_sym_const] = ACTIONS(2574), - [anon_sym_BANG] = ACTIONS(2572), - [anon_sym_else] = ACTIONS(2574), - [anon_sym_if] = ACTIONS(2574), - [anon_sym_switch] = ACTIONS(2574), - [anon_sym_for] = ACTIONS(2574), - [anon_sym_LPAREN] = ACTIONS(2572), - [anon_sym_SEMI] = ACTIONS(2572), - [anon_sym_await] = ACTIONS(2574), - [anon_sym_while] = ACTIONS(2574), - [anon_sym_do] = ACTIONS(2574), - [anon_sym_try] = ACTIONS(2574), - [anon_sym_break] = ACTIONS(2574), - [anon_sym_continue] = ACTIONS(2574), - [anon_sym_debugger] = ACTIONS(2574), - [anon_sym_return] = ACTIONS(2574), - [anon_sym_throw] = ACTIONS(2574), - [anon_sym_case] = ACTIONS(2574), - [anon_sym_yield] = ACTIONS(2574), - [anon_sym_LBRACK] = ACTIONS(2572), - [sym_glimmer_opening_tag] = ACTIONS(2572), - [anon_sym_class] = ACTIONS(2574), - [anon_sym_async] = ACTIONS(2574), - [anon_sym_function] = ACTIONS(2574), - [anon_sym_new] = ACTIONS(2574), - [anon_sym_using] = ACTIONS(2574), - [anon_sym_PLUS] = ACTIONS(2574), - [anon_sym_DASH] = ACTIONS(2574), - [anon_sym_SLASH] = ACTIONS(2574), - [anon_sym_LT] = ACTIONS(2574), - [anon_sym_TILDE] = ACTIONS(2572), - [anon_sym_void] = ACTIONS(2574), - [anon_sym_delete] = ACTIONS(2574), - [anon_sym_PLUS_PLUS] = ACTIONS(2572), - [anon_sym_DASH_DASH] = ACTIONS(2572), - [anon_sym_DQUOTE] = ACTIONS(2572), - [anon_sym_SQUOTE] = ACTIONS(2572), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2572), - [sym_number] = ACTIONS(2572), - [sym_private_property_identifier] = ACTIONS(2572), - [sym_this] = ACTIONS(2574), - [sym_super] = ACTIONS(2574), - [sym_true] = ACTIONS(2574), - [sym_false] = ACTIONS(2574), - [sym_null] = ACTIONS(2574), - [sym_undefined] = ACTIONS(2574), - [anon_sym_AT] = ACTIONS(2572), - [anon_sym_static] = ACTIONS(2574), - [anon_sym_readonly] = ACTIONS(2574), - [anon_sym_get] = ACTIONS(2574), - [anon_sym_set] = ACTIONS(2574), - [anon_sym_declare] = ACTIONS(2574), - [anon_sym_public] = ACTIONS(2574), - [anon_sym_private] = ACTIONS(2574), - [anon_sym_protected] = ACTIONS(2574), - [anon_sym_override] = ACTIONS(2574), - [anon_sym_module] = ACTIONS(2574), - [anon_sym_any] = ACTIONS(2574), - [anon_sym_number] = ACTIONS(2574), - [anon_sym_boolean] = ACTIONS(2574), - [anon_sym_string] = ACTIONS(2574), - [anon_sym_symbol] = ACTIONS(2574), - [anon_sym_object] = ACTIONS(2574), - [anon_sym_abstract] = ACTIONS(2574), - [anon_sym_interface] = ACTIONS(2574), - [anon_sym_enum] = ACTIONS(2574), + [ts_builtin_sym_end] = ACTIONS(2569), + [sym_identifier] = ACTIONS(2571), + [anon_sym_export] = ACTIONS(2571), + [anon_sym_default] = ACTIONS(2571), + [anon_sym_type] = ACTIONS(2571), + [anon_sym_namespace] = ACTIONS(2571), + [anon_sym_LBRACE] = ACTIONS(2569), + [anon_sym_RBRACE] = ACTIONS(2569), + [anon_sym_typeof] = ACTIONS(2571), + [anon_sym_import] = ACTIONS(2571), + [anon_sym_with] = ACTIONS(2571), + [anon_sym_var] = ACTIONS(2571), + [anon_sym_let] = ACTIONS(2571), + [anon_sym_const] = ACTIONS(2571), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_else] = ACTIONS(2571), + [anon_sym_if] = ACTIONS(2571), + [anon_sym_switch] = ACTIONS(2571), + [anon_sym_for] = ACTIONS(2571), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_SEMI] = ACTIONS(2569), + [anon_sym_await] = ACTIONS(2571), + [anon_sym_while] = ACTIONS(2571), + [anon_sym_do] = ACTIONS(2571), + [anon_sym_try] = ACTIONS(2571), + [anon_sym_break] = ACTIONS(2571), + [anon_sym_continue] = ACTIONS(2571), + [anon_sym_debugger] = ACTIONS(2571), + [anon_sym_return] = ACTIONS(2571), + [anon_sym_throw] = ACTIONS(2571), + [anon_sym_case] = ACTIONS(2571), + [anon_sym_yield] = ACTIONS(2571), + [anon_sym_LBRACK] = ACTIONS(2569), + [anon_sym_class] = ACTIONS(2571), + [anon_sym_async] = ACTIONS(2571), + [anon_sym_function] = ACTIONS(2571), + [anon_sym_new] = ACTIONS(2571), + [anon_sym_using] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_SLASH] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_void] = ACTIONS(2571), + [anon_sym_delete] = ACTIONS(2571), + [anon_sym_PLUS_PLUS] = ACTIONS(2569), + [anon_sym_DASH_DASH] = ACTIONS(2569), + [anon_sym_DQUOTE] = ACTIONS(2569), + [anon_sym_SQUOTE] = ACTIONS(2569), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2569), + [sym_number] = ACTIONS(2569), + [sym_private_property_identifier] = ACTIONS(2569), + [sym_this] = ACTIONS(2571), + [sym_super] = ACTIONS(2571), + [sym_true] = ACTIONS(2571), + [sym_false] = ACTIONS(2571), + [sym_null] = ACTIONS(2571), + [sym_undefined] = ACTIONS(2571), + [anon_sym_AT] = ACTIONS(2569), + [anon_sym_static] = ACTIONS(2571), + [anon_sym_readonly] = ACTIONS(2571), + [anon_sym_get] = ACTIONS(2571), + [anon_sym_set] = ACTIONS(2571), + [anon_sym_declare] = ACTIONS(2571), + [anon_sym_public] = ACTIONS(2571), + [anon_sym_private] = ACTIONS(2571), + [anon_sym_protected] = ACTIONS(2571), + [anon_sym_override] = ACTIONS(2571), + [anon_sym_module] = ACTIONS(2571), + [anon_sym_any] = ACTIONS(2571), + [anon_sym_number] = ACTIONS(2571), + [anon_sym_boolean] = ACTIONS(2571), + [anon_sym_string] = ACTIONS(2571), + [anon_sym_symbol] = ACTIONS(2571), + [anon_sym_object] = ACTIONS(2571), + [anon_sym_abstract] = ACTIONS(2571), + [anon_sym_interface] = ACTIONS(2571), + [anon_sym_enum] = ACTIONS(2571), [sym_html_comment] = ACTIONS(5), }, [830] = { - [ts_builtin_sym_end] = ACTIONS(2612), - [sym_identifier] = ACTIONS(2614), - [anon_sym_export] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_type] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2612), - [anon_sym_RBRACE] = ACTIONS(2612), - [anon_sym_typeof] = ACTIONS(2614), - [anon_sym_import] = ACTIONS(2614), - [anon_sym_with] = ACTIONS(2614), - [anon_sym_var] = ACTIONS(2614), - [anon_sym_let] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_BANG] = ACTIONS(2612), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_LPAREN] = ACTIONS(2612), - [anon_sym_SEMI] = ACTIONS(2612), - [anon_sym_await] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_debugger] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_yield] = ACTIONS(2614), - [anon_sym_LBRACK] = ACTIONS(2612), - [sym_glimmer_opening_tag] = ACTIONS(2612), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_async] = ACTIONS(2614), - [anon_sym_function] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_SLASH] = ACTIONS(2614), - [anon_sym_LT] = ACTIONS(2614), - [anon_sym_TILDE] = ACTIONS(2612), - [anon_sym_void] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_PLUS_PLUS] = ACTIONS(2612), - [anon_sym_DASH_DASH] = ACTIONS(2612), - [anon_sym_DQUOTE] = ACTIONS(2612), - [anon_sym_SQUOTE] = ACTIONS(2612), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2612), - [sym_number] = ACTIONS(2612), - [sym_private_property_identifier] = ACTIONS(2612), - [sym_this] = ACTIONS(2614), - [sym_super] = ACTIONS(2614), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_undefined] = ACTIONS(2614), - [anon_sym_AT] = ACTIONS(2612), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_readonly] = ACTIONS(2614), - [anon_sym_get] = ACTIONS(2614), - [anon_sym_set] = ACTIONS(2614), - [anon_sym_declare] = ACTIONS(2614), - [anon_sym_public] = ACTIONS(2614), - [anon_sym_private] = ACTIONS(2614), - [anon_sym_protected] = ACTIONS(2614), - [anon_sym_override] = ACTIONS(2614), - [anon_sym_module] = ACTIONS(2614), - [anon_sym_any] = ACTIONS(2614), - [anon_sym_number] = ACTIONS(2614), - [anon_sym_boolean] = ACTIONS(2614), - [anon_sym_string] = ACTIONS(2614), - [anon_sym_symbol] = ACTIONS(2614), - [anon_sym_object] = ACTIONS(2614), - [anon_sym_abstract] = ACTIONS(2614), - [anon_sym_interface] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), + [ts_builtin_sym_end] = ACTIONS(2601), + [sym_identifier] = ACTIONS(2603), + [anon_sym_export] = ACTIONS(2603), + [anon_sym_default] = ACTIONS(2603), + [anon_sym_type] = ACTIONS(2603), + [anon_sym_namespace] = ACTIONS(2603), + [anon_sym_LBRACE] = ACTIONS(2601), + [anon_sym_RBRACE] = ACTIONS(2601), + [anon_sym_typeof] = ACTIONS(2603), + [anon_sym_import] = ACTIONS(2603), + [anon_sym_with] = ACTIONS(2603), + [anon_sym_var] = ACTIONS(2603), + [anon_sym_let] = ACTIONS(2603), + [anon_sym_const] = ACTIONS(2603), + [anon_sym_BANG] = ACTIONS(2601), + [anon_sym_else] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_switch] = ACTIONS(2603), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2601), + [anon_sym_SEMI] = ACTIONS(2601), + [anon_sym_await] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_break] = ACTIONS(2603), + [anon_sym_continue] = ACTIONS(2603), + [anon_sym_debugger] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_throw] = ACTIONS(2603), + [anon_sym_case] = ACTIONS(2603), + [anon_sym_yield] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2601), + [anon_sym_class] = ACTIONS(2603), + [anon_sym_async] = ACTIONS(2603), + [anon_sym_function] = ACTIONS(2603), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_using] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_SLASH] = ACTIONS(2603), + [anon_sym_LT] = ACTIONS(2601), + [anon_sym_TILDE] = ACTIONS(2601), + [anon_sym_void] = ACTIONS(2603), + [anon_sym_delete] = ACTIONS(2603), + [anon_sym_PLUS_PLUS] = ACTIONS(2601), + [anon_sym_DASH_DASH] = ACTIONS(2601), + [anon_sym_DQUOTE] = ACTIONS(2601), + [anon_sym_SQUOTE] = ACTIONS(2601), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2601), + [sym_number] = ACTIONS(2601), + [sym_private_property_identifier] = ACTIONS(2601), + [sym_this] = ACTIONS(2603), + [sym_super] = ACTIONS(2603), + [sym_true] = ACTIONS(2603), + [sym_false] = ACTIONS(2603), + [sym_null] = ACTIONS(2603), + [sym_undefined] = ACTIONS(2603), + [anon_sym_AT] = ACTIONS(2601), + [anon_sym_static] = ACTIONS(2603), + [anon_sym_readonly] = ACTIONS(2603), + [anon_sym_get] = ACTIONS(2603), + [anon_sym_set] = ACTIONS(2603), + [anon_sym_declare] = ACTIONS(2603), + [anon_sym_public] = ACTIONS(2603), + [anon_sym_private] = ACTIONS(2603), + [anon_sym_protected] = ACTIONS(2603), + [anon_sym_override] = ACTIONS(2603), + [anon_sym_module] = ACTIONS(2603), + [anon_sym_any] = ACTIONS(2603), + [anon_sym_number] = ACTIONS(2603), + [anon_sym_boolean] = ACTIONS(2603), + [anon_sym_string] = ACTIONS(2603), + [anon_sym_symbol] = ACTIONS(2603), + [anon_sym_object] = ACTIONS(2603), + [anon_sym_abstract] = ACTIONS(2603), + [anon_sym_interface] = ACTIONS(2603), + [anon_sym_enum] = ACTIONS(2603), [sym_html_comment] = ACTIONS(5), }, [831] = { - [ts_builtin_sym_end] = ACTIONS(2616), - [sym_identifier] = ACTIONS(2618), - [anon_sym_export] = ACTIONS(2618), - [anon_sym_default] = ACTIONS(2618), - [anon_sym_type] = ACTIONS(2618), - [anon_sym_namespace] = ACTIONS(2618), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_RBRACE] = ACTIONS(2616), - [anon_sym_typeof] = ACTIONS(2618), - [anon_sym_import] = ACTIONS(2618), - [anon_sym_with] = ACTIONS(2618), - [anon_sym_var] = ACTIONS(2618), - [anon_sym_let] = ACTIONS(2618), - [anon_sym_const] = ACTIONS(2618), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_else] = ACTIONS(2618), - [anon_sym_if] = ACTIONS(2618), - [anon_sym_switch] = ACTIONS(2618), - [anon_sym_for] = ACTIONS(2618), - [anon_sym_LPAREN] = ACTIONS(2616), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_await] = ACTIONS(2618), - [anon_sym_while] = ACTIONS(2618), - [anon_sym_do] = ACTIONS(2618), - [anon_sym_try] = ACTIONS(2618), - [anon_sym_break] = ACTIONS(2618), - [anon_sym_continue] = ACTIONS(2618), - [anon_sym_debugger] = ACTIONS(2618), - [anon_sym_return] = ACTIONS(2618), - [anon_sym_throw] = ACTIONS(2618), - [anon_sym_case] = ACTIONS(2618), - [anon_sym_yield] = ACTIONS(2618), - [anon_sym_LBRACK] = ACTIONS(2616), - [sym_glimmer_opening_tag] = ACTIONS(2616), - [anon_sym_class] = ACTIONS(2618), - [anon_sym_async] = ACTIONS(2618), - [anon_sym_function] = ACTIONS(2618), - [anon_sym_new] = ACTIONS(2618), - [anon_sym_using] = ACTIONS(2618), - [anon_sym_PLUS] = ACTIONS(2618), - [anon_sym_DASH] = ACTIONS(2618), - [anon_sym_SLASH] = ACTIONS(2618), - [anon_sym_LT] = ACTIONS(2618), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_void] = ACTIONS(2618), - [anon_sym_delete] = ACTIONS(2618), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2616), - [sym_number] = ACTIONS(2616), - [sym_private_property_identifier] = ACTIONS(2616), - [sym_this] = ACTIONS(2618), - [sym_super] = ACTIONS(2618), - [sym_true] = ACTIONS(2618), - [sym_false] = ACTIONS(2618), - [sym_null] = ACTIONS(2618), - [sym_undefined] = ACTIONS(2618), - [anon_sym_AT] = ACTIONS(2616), - [anon_sym_static] = ACTIONS(2618), - [anon_sym_readonly] = ACTIONS(2618), - [anon_sym_get] = ACTIONS(2618), - [anon_sym_set] = ACTIONS(2618), - [anon_sym_declare] = ACTIONS(2618), - [anon_sym_public] = ACTIONS(2618), - [anon_sym_private] = ACTIONS(2618), - [anon_sym_protected] = ACTIONS(2618), - [anon_sym_override] = ACTIONS(2618), - [anon_sym_module] = ACTIONS(2618), - [anon_sym_any] = ACTIONS(2618), - [anon_sym_number] = ACTIONS(2618), - [anon_sym_boolean] = ACTIONS(2618), - [anon_sym_string] = ACTIONS(2618), - [anon_sym_symbol] = ACTIONS(2618), - [anon_sym_object] = ACTIONS(2618), - [anon_sym_abstract] = ACTIONS(2618), - [anon_sym_interface] = ACTIONS(2618), - [anon_sym_enum] = ACTIONS(2618), + [ts_builtin_sym_end] = ACTIONS(1730), + [sym_identifier] = ACTIONS(1732), + [anon_sym_export] = ACTIONS(1732), + [anon_sym_default] = ACTIONS(1732), + [anon_sym_type] = ACTIONS(1732), + [anon_sym_namespace] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(1730), + [anon_sym_typeof] = ACTIONS(1732), + [anon_sym_import] = ACTIONS(1732), + [anon_sym_with] = ACTIONS(1732), + [anon_sym_var] = ACTIONS(1732), + [anon_sym_let] = ACTIONS(1732), + [anon_sym_const] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1730), + [anon_sym_else] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_switch] = ACTIONS(1732), + [anon_sym_for] = ACTIONS(1732), + [anon_sym_LPAREN] = ACTIONS(1730), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_await] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_do] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_debugger] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_throw] = ACTIONS(1732), + [anon_sym_case] = ACTIONS(1732), + [anon_sym_yield] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_class] = ACTIONS(1732), + [anon_sym_async] = ACTIONS(1732), + [anon_sym_function] = ACTIONS(1732), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_using] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_LT] = ACTIONS(1730), + [anon_sym_TILDE] = ACTIONS(1730), + [anon_sym_void] = ACTIONS(1732), + [anon_sym_delete] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1730), + [anon_sym_SQUOTE] = ACTIONS(1730), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(1730), + [sym_private_property_identifier] = ACTIONS(1730), + [sym_this] = ACTIONS(1732), + [sym_super] = ACTIONS(1732), + [sym_true] = ACTIONS(1732), + [sym_false] = ACTIONS(1732), + [sym_null] = ACTIONS(1732), + [sym_undefined] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(1732), + [anon_sym_readonly] = ACTIONS(1732), + [anon_sym_get] = ACTIONS(1732), + [anon_sym_set] = ACTIONS(1732), + [anon_sym_declare] = ACTIONS(1732), + [anon_sym_public] = ACTIONS(1732), + [anon_sym_private] = ACTIONS(1732), + [anon_sym_protected] = ACTIONS(1732), + [anon_sym_override] = ACTIONS(1732), + [anon_sym_module] = ACTIONS(1732), + [anon_sym_any] = ACTIONS(1732), + [anon_sym_number] = ACTIONS(1732), + [anon_sym_boolean] = ACTIONS(1732), + [anon_sym_string] = ACTIONS(1732), + [anon_sym_symbol] = ACTIONS(1732), + [anon_sym_object] = ACTIONS(1732), + [anon_sym_abstract] = ACTIONS(1732), + [anon_sym_interface] = ACTIONS(1732), + [anon_sym_enum] = ACTIONS(1732), [sym_html_comment] = ACTIONS(5), }, [832] = { - [ts_builtin_sym_end] = ACTIONS(2620), - [sym_identifier] = ACTIONS(2622), - [anon_sym_export] = ACTIONS(2622), - [anon_sym_default] = ACTIONS(2622), - [anon_sym_type] = ACTIONS(2622), - [anon_sym_namespace] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2620), - [anon_sym_RBRACE] = ACTIONS(2620), - [anon_sym_typeof] = ACTIONS(2622), - [anon_sym_import] = ACTIONS(2622), - [anon_sym_with] = ACTIONS(2622), - [anon_sym_var] = ACTIONS(2622), - [anon_sym_let] = ACTIONS(2622), - [anon_sym_const] = ACTIONS(2622), - [anon_sym_BANG] = ACTIONS(2620), - [anon_sym_else] = ACTIONS(2622), - [anon_sym_if] = ACTIONS(2622), - [anon_sym_switch] = ACTIONS(2622), - [anon_sym_for] = ACTIONS(2622), - [anon_sym_LPAREN] = ACTIONS(2620), - [anon_sym_SEMI] = ACTIONS(2620), - [anon_sym_await] = ACTIONS(2622), - [anon_sym_while] = ACTIONS(2622), - [anon_sym_do] = ACTIONS(2622), - [anon_sym_try] = ACTIONS(2622), - [anon_sym_break] = ACTIONS(2622), - [anon_sym_continue] = ACTIONS(2622), - [anon_sym_debugger] = ACTIONS(2622), - [anon_sym_return] = ACTIONS(2622), - [anon_sym_throw] = ACTIONS(2622), - [anon_sym_case] = ACTIONS(2622), - [anon_sym_yield] = ACTIONS(2622), - [anon_sym_LBRACK] = ACTIONS(2620), - [sym_glimmer_opening_tag] = ACTIONS(2620), - [anon_sym_class] = ACTIONS(2622), - [anon_sym_async] = ACTIONS(2622), - [anon_sym_function] = ACTIONS(2622), - [anon_sym_new] = ACTIONS(2622), - [anon_sym_using] = ACTIONS(2622), - [anon_sym_PLUS] = ACTIONS(2622), - [anon_sym_DASH] = ACTIONS(2622), - [anon_sym_SLASH] = ACTIONS(2622), - [anon_sym_LT] = ACTIONS(2622), - [anon_sym_TILDE] = ACTIONS(2620), - [anon_sym_void] = ACTIONS(2622), - [anon_sym_delete] = ACTIONS(2622), - [anon_sym_PLUS_PLUS] = ACTIONS(2620), - [anon_sym_DASH_DASH] = ACTIONS(2620), - [anon_sym_DQUOTE] = ACTIONS(2620), - [anon_sym_SQUOTE] = ACTIONS(2620), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2620), - [sym_number] = ACTIONS(2620), - [sym_private_property_identifier] = ACTIONS(2620), - [sym_this] = ACTIONS(2622), - [sym_super] = ACTIONS(2622), - [sym_true] = ACTIONS(2622), - [sym_false] = ACTIONS(2622), - [sym_null] = ACTIONS(2622), - [sym_undefined] = ACTIONS(2622), - [anon_sym_AT] = ACTIONS(2620), - [anon_sym_static] = ACTIONS(2622), - [anon_sym_readonly] = ACTIONS(2622), - [anon_sym_get] = ACTIONS(2622), - [anon_sym_set] = ACTIONS(2622), - [anon_sym_declare] = ACTIONS(2622), - [anon_sym_public] = ACTIONS(2622), - [anon_sym_private] = ACTIONS(2622), - [anon_sym_protected] = ACTIONS(2622), - [anon_sym_override] = ACTIONS(2622), - [anon_sym_module] = ACTIONS(2622), - [anon_sym_any] = ACTIONS(2622), - [anon_sym_number] = ACTIONS(2622), - [anon_sym_boolean] = ACTIONS(2622), - [anon_sym_string] = ACTIONS(2622), - [anon_sym_symbol] = ACTIONS(2622), - [anon_sym_object] = ACTIONS(2622), - [anon_sym_abstract] = ACTIONS(2622), - [anon_sym_interface] = ACTIONS(2622), - [anon_sym_enum] = ACTIONS(2622), + [ts_builtin_sym_end] = ACTIONS(2605), + [sym_identifier] = ACTIONS(2607), + [anon_sym_export] = ACTIONS(2607), + [anon_sym_default] = ACTIONS(2607), + [anon_sym_type] = ACTIONS(2607), + [anon_sym_namespace] = ACTIONS(2607), + [anon_sym_LBRACE] = ACTIONS(2605), + [anon_sym_RBRACE] = ACTIONS(2605), + [anon_sym_typeof] = ACTIONS(2607), + [anon_sym_import] = ACTIONS(2607), + [anon_sym_with] = ACTIONS(2607), + [anon_sym_var] = ACTIONS(2607), + [anon_sym_let] = ACTIONS(2607), + [anon_sym_const] = ACTIONS(2607), + [anon_sym_BANG] = ACTIONS(2605), + [anon_sym_else] = ACTIONS(2607), + [anon_sym_if] = ACTIONS(2607), + [anon_sym_switch] = ACTIONS(2607), + [anon_sym_for] = ACTIONS(2607), + [anon_sym_LPAREN] = ACTIONS(2605), + [anon_sym_SEMI] = ACTIONS(2605), + [anon_sym_await] = ACTIONS(2607), + [anon_sym_while] = ACTIONS(2607), + [anon_sym_do] = ACTIONS(2607), + [anon_sym_try] = ACTIONS(2607), + [anon_sym_break] = ACTIONS(2607), + [anon_sym_continue] = ACTIONS(2607), + [anon_sym_debugger] = ACTIONS(2607), + [anon_sym_return] = ACTIONS(2607), + [anon_sym_throw] = ACTIONS(2607), + [anon_sym_case] = ACTIONS(2607), + [anon_sym_yield] = ACTIONS(2607), + [anon_sym_LBRACK] = ACTIONS(2605), + [anon_sym_class] = ACTIONS(2607), + [anon_sym_async] = ACTIONS(2607), + [anon_sym_function] = ACTIONS(2607), + [anon_sym_new] = ACTIONS(2607), + [anon_sym_using] = ACTIONS(2607), + [anon_sym_PLUS] = ACTIONS(2607), + [anon_sym_DASH] = ACTIONS(2607), + [anon_sym_SLASH] = ACTIONS(2607), + [anon_sym_LT] = ACTIONS(2605), + [anon_sym_TILDE] = ACTIONS(2605), + [anon_sym_void] = ACTIONS(2607), + [anon_sym_delete] = ACTIONS(2607), + [anon_sym_PLUS_PLUS] = ACTIONS(2605), + [anon_sym_DASH_DASH] = ACTIONS(2605), + [anon_sym_DQUOTE] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2605), + [sym_number] = ACTIONS(2605), + [sym_private_property_identifier] = ACTIONS(2605), + [sym_this] = ACTIONS(2607), + [sym_super] = ACTIONS(2607), + [sym_true] = ACTIONS(2607), + [sym_false] = ACTIONS(2607), + [sym_null] = ACTIONS(2607), + [sym_undefined] = ACTIONS(2607), + [anon_sym_AT] = ACTIONS(2605), + [anon_sym_static] = ACTIONS(2607), + [anon_sym_readonly] = ACTIONS(2607), + [anon_sym_get] = ACTIONS(2607), + [anon_sym_set] = ACTIONS(2607), + [anon_sym_declare] = ACTIONS(2607), + [anon_sym_public] = ACTIONS(2607), + [anon_sym_private] = ACTIONS(2607), + [anon_sym_protected] = ACTIONS(2607), + [anon_sym_override] = ACTIONS(2607), + [anon_sym_module] = ACTIONS(2607), + [anon_sym_any] = ACTIONS(2607), + [anon_sym_number] = ACTIONS(2607), + [anon_sym_boolean] = ACTIONS(2607), + [anon_sym_string] = ACTIONS(2607), + [anon_sym_symbol] = ACTIONS(2607), + [anon_sym_object] = ACTIONS(2607), + [anon_sym_abstract] = ACTIONS(2607), + [anon_sym_interface] = ACTIONS(2607), + [anon_sym_enum] = ACTIONS(2607), [sym_html_comment] = ACTIONS(5), }, [833] = { - [ts_builtin_sym_end] = ACTIONS(2624), - [sym_identifier] = ACTIONS(2626), - [anon_sym_export] = ACTIONS(2626), - [anon_sym_default] = ACTIONS(2626), - [anon_sym_type] = ACTIONS(2626), - [anon_sym_namespace] = ACTIONS(2626), - [anon_sym_LBRACE] = ACTIONS(2624), - [anon_sym_RBRACE] = ACTIONS(2624), - [anon_sym_typeof] = ACTIONS(2626), - [anon_sym_import] = ACTIONS(2626), - [anon_sym_with] = ACTIONS(2626), - [anon_sym_var] = ACTIONS(2626), - [anon_sym_let] = ACTIONS(2626), - [anon_sym_const] = ACTIONS(2626), - [anon_sym_BANG] = ACTIONS(2624), - [anon_sym_else] = ACTIONS(2626), - [anon_sym_if] = ACTIONS(2626), - [anon_sym_switch] = ACTIONS(2626), - [anon_sym_for] = ACTIONS(2626), - [anon_sym_LPAREN] = ACTIONS(2624), - [anon_sym_SEMI] = ACTIONS(2624), - [anon_sym_await] = ACTIONS(2626), - [anon_sym_while] = ACTIONS(2626), - [anon_sym_do] = ACTIONS(2626), - [anon_sym_try] = ACTIONS(2626), - [anon_sym_break] = ACTIONS(2626), - [anon_sym_continue] = ACTIONS(2626), - [anon_sym_debugger] = ACTIONS(2626), - [anon_sym_return] = ACTIONS(2626), - [anon_sym_throw] = ACTIONS(2626), - [anon_sym_case] = ACTIONS(2626), - [anon_sym_yield] = ACTIONS(2626), - [anon_sym_LBRACK] = ACTIONS(2624), - [sym_glimmer_opening_tag] = ACTIONS(2624), - [anon_sym_class] = ACTIONS(2626), - [anon_sym_async] = ACTIONS(2626), - [anon_sym_function] = ACTIONS(2626), - [anon_sym_new] = ACTIONS(2626), - [anon_sym_using] = ACTIONS(2626), - [anon_sym_PLUS] = ACTIONS(2626), - [anon_sym_DASH] = ACTIONS(2626), - [anon_sym_SLASH] = ACTIONS(2626), - [anon_sym_LT] = ACTIONS(2626), - [anon_sym_TILDE] = ACTIONS(2624), - [anon_sym_void] = ACTIONS(2626), - [anon_sym_delete] = ACTIONS(2626), - [anon_sym_PLUS_PLUS] = ACTIONS(2624), - [anon_sym_DASH_DASH] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [anon_sym_SQUOTE] = ACTIONS(2624), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2624), - [sym_number] = ACTIONS(2624), - [sym_private_property_identifier] = ACTIONS(2624), - [sym_this] = ACTIONS(2626), - [sym_super] = ACTIONS(2626), - [sym_true] = ACTIONS(2626), - [sym_false] = ACTIONS(2626), - [sym_null] = ACTIONS(2626), - [sym_undefined] = ACTIONS(2626), - [anon_sym_AT] = ACTIONS(2624), - [anon_sym_static] = ACTIONS(2626), - [anon_sym_readonly] = ACTIONS(2626), - [anon_sym_get] = ACTIONS(2626), - [anon_sym_set] = ACTIONS(2626), - [anon_sym_declare] = ACTIONS(2626), - [anon_sym_public] = ACTIONS(2626), - [anon_sym_private] = ACTIONS(2626), - [anon_sym_protected] = ACTIONS(2626), - [anon_sym_override] = ACTIONS(2626), - [anon_sym_module] = ACTIONS(2626), - [anon_sym_any] = ACTIONS(2626), - [anon_sym_number] = ACTIONS(2626), - [anon_sym_boolean] = ACTIONS(2626), - [anon_sym_string] = ACTIONS(2626), - [anon_sym_symbol] = ACTIONS(2626), - [anon_sym_object] = ACTIONS(2626), - [anon_sym_abstract] = ACTIONS(2626), - [anon_sym_interface] = ACTIONS(2626), - [anon_sym_enum] = ACTIONS(2626), + [ts_builtin_sym_end] = ACTIONS(2609), + [sym_identifier] = ACTIONS(2611), + [anon_sym_export] = ACTIONS(2611), + [anon_sym_default] = ACTIONS(2611), + [anon_sym_type] = ACTIONS(2611), + [anon_sym_namespace] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2609), + [anon_sym_RBRACE] = ACTIONS(2609), + [anon_sym_typeof] = ACTIONS(2611), + [anon_sym_import] = ACTIONS(2611), + [anon_sym_with] = ACTIONS(2611), + [anon_sym_var] = ACTIONS(2611), + [anon_sym_let] = ACTIONS(2611), + [anon_sym_const] = ACTIONS(2611), + [anon_sym_BANG] = ACTIONS(2609), + [anon_sym_else] = ACTIONS(2611), + [anon_sym_if] = ACTIONS(2611), + [anon_sym_switch] = ACTIONS(2611), + [anon_sym_for] = ACTIONS(2611), + [anon_sym_LPAREN] = ACTIONS(2609), + [anon_sym_SEMI] = ACTIONS(2609), + [anon_sym_await] = ACTIONS(2611), + [anon_sym_while] = ACTIONS(2611), + [anon_sym_do] = ACTIONS(2611), + [anon_sym_try] = ACTIONS(2611), + [anon_sym_break] = ACTIONS(2611), + [anon_sym_continue] = ACTIONS(2611), + [anon_sym_debugger] = ACTIONS(2611), + [anon_sym_return] = ACTIONS(2611), + [anon_sym_throw] = ACTIONS(2611), + [anon_sym_case] = ACTIONS(2611), + [anon_sym_yield] = ACTIONS(2611), + [anon_sym_LBRACK] = ACTIONS(2609), + [anon_sym_class] = ACTIONS(2611), + [anon_sym_async] = ACTIONS(2611), + [anon_sym_function] = ACTIONS(2611), + [anon_sym_new] = ACTIONS(2611), + [anon_sym_using] = ACTIONS(2611), + [anon_sym_PLUS] = ACTIONS(2611), + [anon_sym_DASH] = ACTIONS(2611), + [anon_sym_SLASH] = ACTIONS(2611), + [anon_sym_LT] = ACTIONS(2609), + [anon_sym_TILDE] = ACTIONS(2609), + [anon_sym_void] = ACTIONS(2611), + [anon_sym_delete] = ACTIONS(2611), + [anon_sym_PLUS_PLUS] = ACTIONS(2609), + [anon_sym_DASH_DASH] = ACTIONS(2609), + [anon_sym_DQUOTE] = ACTIONS(2609), + [anon_sym_SQUOTE] = ACTIONS(2609), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2609), + [sym_number] = ACTIONS(2609), + [sym_private_property_identifier] = ACTIONS(2609), + [sym_this] = ACTIONS(2611), + [sym_super] = ACTIONS(2611), + [sym_true] = ACTIONS(2611), + [sym_false] = ACTIONS(2611), + [sym_null] = ACTIONS(2611), + [sym_undefined] = ACTIONS(2611), + [anon_sym_AT] = ACTIONS(2609), + [anon_sym_static] = ACTIONS(2611), + [anon_sym_readonly] = ACTIONS(2611), + [anon_sym_get] = ACTIONS(2611), + [anon_sym_set] = ACTIONS(2611), + [anon_sym_declare] = ACTIONS(2611), + [anon_sym_public] = ACTIONS(2611), + [anon_sym_private] = ACTIONS(2611), + [anon_sym_protected] = ACTIONS(2611), + [anon_sym_override] = ACTIONS(2611), + [anon_sym_module] = ACTIONS(2611), + [anon_sym_any] = ACTIONS(2611), + [anon_sym_number] = ACTIONS(2611), + [anon_sym_boolean] = ACTIONS(2611), + [anon_sym_string] = ACTIONS(2611), + [anon_sym_symbol] = ACTIONS(2611), + [anon_sym_object] = ACTIONS(2611), + [anon_sym_abstract] = ACTIONS(2611), + [anon_sym_interface] = ACTIONS(2611), + [anon_sym_enum] = ACTIONS(2611), [sym_html_comment] = ACTIONS(5), }, [834] = { - [ts_builtin_sym_end] = ACTIONS(2628), - [sym_identifier] = ACTIONS(2630), - [anon_sym_export] = ACTIONS(2630), - [anon_sym_default] = ACTIONS(2630), - [anon_sym_type] = ACTIONS(2630), - [anon_sym_namespace] = ACTIONS(2630), - [anon_sym_LBRACE] = ACTIONS(2628), - [anon_sym_RBRACE] = ACTIONS(2628), - [anon_sym_typeof] = ACTIONS(2630), - [anon_sym_import] = ACTIONS(2630), - [anon_sym_with] = ACTIONS(2630), - [anon_sym_var] = ACTIONS(2630), - [anon_sym_let] = ACTIONS(2630), - [anon_sym_const] = ACTIONS(2630), - [anon_sym_BANG] = ACTIONS(2628), - [anon_sym_else] = ACTIONS(2630), - [anon_sym_if] = ACTIONS(2630), - [anon_sym_switch] = ACTIONS(2630), - [anon_sym_for] = ACTIONS(2630), - [anon_sym_LPAREN] = ACTIONS(2628), - [anon_sym_SEMI] = ACTIONS(2628), - [anon_sym_await] = ACTIONS(2630), - [anon_sym_while] = ACTIONS(2630), - [anon_sym_do] = ACTIONS(2630), - [anon_sym_try] = ACTIONS(2630), - [anon_sym_break] = ACTIONS(2630), - [anon_sym_continue] = ACTIONS(2630), - [anon_sym_debugger] = ACTIONS(2630), - [anon_sym_return] = ACTIONS(2630), - [anon_sym_throw] = ACTIONS(2630), - [anon_sym_case] = ACTIONS(2630), - [anon_sym_yield] = ACTIONS(2630), - [anon_sym_LBRACK] = ACTIONS(2628), - [sym_glimmer_opening_tag] = ACTIONS(2628), - [anon_sym_class] = ACTIONS(2630), - [anon_sym_async] = ACTIONS(2630), - [anon_sym_function] = ACTIONS(2630), - [anon_sym_new] = ACTIONS(2630), - [anon_sym_using] = ACTIONS(2630), - [anon_sym_PLUS] = ACTIONS(2630), - [anon_sym_DASH] = ACTIONS(2630), - [anon_sym_SLASH] = ACTIONS(2630), - [anon_sym_LT] = ACTIONS(2630), - [anon_sym_TILDE] = ACTIONS(2628), - [anon_sym_void] = ACTIONS(2630), - [anon_sym_delete] = ACTIONS(2630), - [anon_sym_PLUS_PLUS] = ACTIONS(2628), - [anon_sym_DASH_DASH] = ACTIONS(2628), - [anon_sym_DQUOTE] = ACTIONS(2628), - [anon_sym_SQUOTE] = ACTIONS(2628), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2628), - [sym_number] = ACTIONS(2628), - [sym_private_property_identifier] = ACTIONS(2628), - [sym_this] = ACTIONS(2630), - [sym_super] = ACTIONS(2630), - [sym_true] = ACTIONS(2630), - [sym_false] = ACTIONS(2630), - [sym_null] = ACTIONS(2630), - [sym_undefined] = ACTIONS(2630), - [anon_sym_AT] = ACTIONS(2628), - [anon_sym_static] = ACTIONS(2630), - [anon_sym_readonly] = ACTIONS(2630), - [anon_sym_get] = ACTIONS(2630), - [anon_sym_set] = ACTIONS(2630), - [anon_sym_declare] = ACTIONS(2630), - [anon_sym_public] = ACTIONS(2630), - [anon_sym_private] = ACTIONS(2630), - [anon_sym_protected] = ACTIONS(2630), - [anon_sym_override] = ACTIONS(2630), - [anon_sym_module] = ACTIONS(2630), - [anon_sym_any] = ACTIONS(2630), - [anon_sym_number] = ACTIONS(2630), - [anon_sym_boolean] = ACTIONS(2630), - [anon_sym_string] = ACTIONS(2630), - [anon_sym_symbol] = ACTIONS(2630), - [anon_sym_object] = ACTIONS(2630), - [anon_sym_abstract] = ACTIONS(2630), - [anon_sym_interface] = ACTIONS(2630), - [anon_sym_enum] = ACTIONS(2630), + [ts_builtin_sym_end] = ACTIONS(2613), + [sym_identifier] = ACTIONS(2615), + [anon_sym_export] = ACTIONS(2615), + [anon_sym_default] = ACTIONS(2615), + [anon_sym_type] = ACTIONS(2615), + [anon_sym_namespace] = ACTIONS(2615), + [anon_sym_LBRACE] = ACTIONS(2613), + [anon_sym_RBRACE] = ACTIONS(2613), + [anon_sym_typeof] = ACTIONS(2615), + [anon_sym_import] = ACTIONS(2615), + [anon_sym_with] = ACTIONS(2615), + [anon_sym_var] = ACTIONS(2615), + [anon_sym_let] = ACTIONS(2615), + [anon_sym_const] = ACTIONS(2615), + [anon_sym_BANG] = ACTIONS(2613), + [anon_sym_else] = ACTIONS(2615), + [anon_sym_if] = ACTIONS(2615), + [anon_sym_switch] = ACTIONS(2615), + [anon_sym_for] = ACTIONS(2615), + [anon_sym_LPAREN] = ACTIONS(2613), + [anon_sym_SEMI] = ACTIONS(2613), + [anon_sym_await] = ACTIONS(2615), + [anon_sym_while] = ACTIONS(2615), + [anon_sym_do] = ACTIONS(2615), + [anon_sym_try] = ACTIONS(2615), + [anon_sym_break] = ACTIONS(2615), + [anon_sym_continue] = ACTIONS(2615), + [anon_sym_debugger] = ACTIONS(2615), + [anon_sym_return] = ACTIONS(2615), + [anon_sym_throw] = ACTIONS(2615), + [anon_sym_case] = ACTIONS(2615), + [anon_sym_yield] = ACTIONS(2615), + [anon_sym_LBRACK] = ACTIONS(2613), + [anon_sym_class] = ACTIONS(2615), + [anon_sym_async] = ACTIONS(2615), + [anon_sym_function] = ACTIONS(2615), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_using] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_SLASH] = ACTIONS(2615), + [anon_sym_LT] = ACTIONS(2613), + [anon_sym_TILDE] = ACTIONS(2613), + [anon_sym_void] = ACTIONS(2615), + [anon_sym_delete] = ACTIONS(2615), + [anon_sym_PLUS_PLUS] = ACTIONS(2613), + [anon_sym_DASH_DASH] = ACTIONS(2613), + [anon_sym_DQUOTE] = ACTIONS(2613), + [anon_sym_SQUOTE] = ACTIONS(2613), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2613), + [sym_number] = ACTIONS(2613), + [sym_private_property_identifier] = ACTIONS(2613), + [sym_this] = ACTIONS(2615), + [sym_super] = ACTIONS(2615), + [sym_true] = ACTIONS(2615), + [sym_false] = ACTIONS(2615), + [sym_null] = ACTIONS(2615), + [sym_undefined] = ACTIONS(2615), + [anon_sym_AT] = ACTIONS(2613), + [anon_sym_static] = ACTIONS(2615), + [anon_sym_readonly] = ACTIONS(2615), + [anon_sym_get] = ACTIONS(2615), + [anon_sym_set] = ACTIONS(2615), + [anon_sym_declare] = ACTIONS(2615), + [anon_sym_public] = ACTIONS(2615), + [anon_sym_private] = ACTIONS(2615), + [anon_sym_protected] = ACTIONS(2615), + [anon_sym_override] = ACTIONS(2615), + [anon_sym_module] = ACTIONS(2615), + [anon_sym_any] = ACTIONS(2615), + [anon_sym_number] = ACTIONS(2615), + [anon_sym_boolean] = ACTIONS(2615), + [anon_sym_string] = ACTIONS(2615), + [anon_sym_symbol] = ACTIONS(2615), + [anon_sym_object] = ACTIONS(2615), + [anon_sym_abstract] = ACTIONS(2615), + [anon_sym_interface] = ACTIONS(2615), + [anon_sym_enum] = ACTIONS(2615), [sym_html_comment] = ACTIONS(5), }, [835] = { - [ts_builtin_sym_end] = ACTIONS(2628), - [sym_identifier] = ACTIONS(2630), - [anon_sym_export] = ACTIONS(2630), - [anon_sym_default] = ACTIONS(2630), - [anon_sym_type] = ACTIONS(2630), - [anon_sym_namespace] = ACTIONS(2630), - [anon_sym_LBRACE] = ACTIONS(2628), - [anon_sym_RBRACE] = ACTIONS(2628), - [anon_sym_typeof] = ACTIONS(2630), - [anon_sym_import] = ACTIONS(2630), - [anon_sym_with] = ACTIONS(2630), - [anon_sym_var] = ACTIONS(2630), - [anon_sym_let] = ACTIONS(2630), - [anon_sym_const] = ACTIONS(2630), - [anon_sym_BANG] = ACTIONS(2628), - [anon_sym_else] = ACTIONS(2630), - [anon_sym_if] = ACTIONS(2630), - [anon_sym_switch] = ACTIONS(2630), - [anon_sym_for] = ACTIONS(2630), - [anon_sym_LPAREN] = ACTIONS(2628), - [anon_sym_SEMI] = ACTIONS(2628), - [anon_sym_await] = ACTIONS(2630), - [anon_sym_while] = ACTIONS(2630), - [anon_sym_do] = ACTIONS(2630), - [anon_sym_try] = ACTIONS(2630), - [anon_sym_break] = ACTIONS(2630), - [anon_sym_continue] = ACTIONS(2630), - [anon_sym_debugger] = ACTIONS(2630), - [anon_sym_return] = ACTIONS(2630), - [anon_sym_throw] = ACTIONS(2630), - [anon_sym_case] = ACTIONS(2630), - [anon_sym_yield] = ACTIONS(2630), - [anon_sym_LBRACK] = ACTIONS(2628), - [sym_glimmer_opening_tag] = ACTIONS(2628), - [anon_sym_class] = ACTIONS(2630), - [anon_sym_async] = ACTIONS(2630), - [anon_sym_function] = ACTIONS(2630), - [anon_sym_new] = ACTIONS(2630), - [anon_sym_using] = ACTIONS(2630), - [anon_sym_PLUS] = ACTIONS(2630), - [anon_sym_DASH] = ACTIONS(2630), - [anon_sym_SLASH] = ACTIONS(2630), - [anon_sym_LT] = ACTIONS(2630), - [anon_sym_TILDE] = ACTIONS(2628), - [anon_sym_void] = ACTIONS(2630), - [anon_sym_delete] = ACTIONS(2630), - [anon_sym_PLUS_PLUS] = ACTIONS(2628), - [anon_sym_DASH_DASH] = ACTIONS(2628), - [anon_sym_DQUOTE] = ACTIONS(2628), - [anon_sym_SQUOTE] = ACTIONS(2628), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2628), - [sym_number] = ACTIONS(2628), - [sym_private_property_identifier] = ACTIONS(2628), - [sym_this] = ACTIONS(2630), - [sym_super] = ACTIONS(2630), - [sym_true] = ACTIONS(2630), - [sym_false] = ACTIONS(2630), - [sym_null] = ACTIONS(2630), - [sym_undefined] = ACTIONS(2630), - [anon_sym_AT] = ACTIONS(2628), - [anon_sym_static] = ACTIONS(2630), - [anon_sym_readonly] = ACTIONS(2630), - [anon_sym_get] = ACTIONS(2630), - [anon_sym_set] = ACTIONS(2630), - [anon_sym_declare] = ACTIONS(2630), - [anon_sym_public] = ACTIONS(2630), - [anon_sym_private] = ACTIONS(2630), - [anon_sym_protected] = ACTIONS(2630), - [anon_sym_override] = ACTIONS(2630), - [anon_sym_module] = ACTIONS(2630), - [anon_sym_any] = ACTIONS(2630), - [anon_sym_number] = ACTIONS(2630), - [anon_sym_boolean] = ACTIONS(2630), - [anon_sym_string] = ACTIONS(2630), - [anon_sym_symbol] = ACTIONS(2630), - [anon_sym_object] = ACTIONS(2630), - [anon_sym_abstract] = ACTIONS(2630), - [anon_sym_interface] = ACTIONS(2630), - [anon_sym_enum] = ACTIONS(2630), + [ts_builtin_sym_end] = ACTIONS(2617), + [sym_identifier] = ACTIONS(2619), + [anon_sym_export] = ACTIONS(2619), + [anon_sym_default] = ACTIONS(2619), + [anon_sym_type] = ACTIONS(2619), + [anon_sym_namespace] = ACTIONS(2619), + [anon_sym_LBRACE] = ACTIONS(2617), + [anon_sym_RBRACE] = ACTIONS(2617), + [anon_sym_typeof] = ACTIONS(2619), + [anon_sym_import] = ACTIONS(2619), + [anon_sym_with] = ACTIONS(2619), + [anon_sym_var] = ACTIONS(2619), + [anon_sym_let] = ACTIONS(2619), + [anon_sym_const] = ACTIONS(2619), + [anon_sym_BANG] = ACTIONS(2617), + [anon_sym_else] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(2619), + [anon_sym_switch] = ACTIONS(2619), + [anon_sym_for] = ACTIONS(2619), + [anon_sym_LPAREN] = ACTIONS(2617), + [anon_sym_SEMI] = ACTIONS(2617), + [anon_sym_await] = ACTIONS(2619), + [anon_sym_while] = ACTIONS(2619), + [anon_sym_do] = ACTIONS(2619), + [anon_sym_try] = ACTIONS(2619), + [anon_sym_break] = ACTIONS(2619), + [anon_sym_continue] = ACTIONS(2619), + [anon_sym_debugger] = ACTIONS(2619), + [anon_sym_return] = ACTIONS(2619), + [anon_sym_throw] = ACTIONS(2619), + [anon_sym_case] = ACTIONS(2619), + [anon_sym_yield] = ACTIONS(2619), + [anon_sym_LBRACK] = ACTIONS(2617), + [anon_sym_class] = ACTIONS(2619), + [anon_sym_async] = ACTIONS(2619), + [anon_sym_function] = ACTIONS(2619), + [anon_sym_new] = ACTIONS(2619), + [anon_sym_using] = ACTIONS(2619), + [anon_sym_PLUS] = ACTIONS(2619), + [anon_sym_DASH] = ACTIONS(2619), + [anon_sym_SLASH] = ACTIONS(2619), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_TILDE] = ACTIONS(2617), + [anon_sym_void] = ACTIONS(2619), + [anon_sym_delete] = ACTIONS(2619), + [anon_sym_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH] = ACTIONS(2617), + [anon_sym_DQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2617), + [sym_number] = ACTIONS(2617), + [sym_private_property_identifier] = ACTIONS(2617), + [sym_this] = ACTIONS(2619), + [sym_super] = ACTIONS(2619), + [sym_true] = ACTIONS(2619), + [sym_false] = ACTIONS(2619), + [sym_null] = ACTIONS(2619), + [sym_undefined] = ACTIONS(2619), + [anon_sym_AT] = ACTIONS(2617), + [anon_sym_static] = ACTIONS(2619), + [anon_sym_readonly] = ACTIONS(2619), + [anon_sym_get] = ACTIONS(2619), + [anon_sym_set] = ACTIONS(2619), + [anon_sym_declare] = ACTIONS(2619), + [anon_sym_public] = ACTIONS(2619), + [anon_sym_private] = ACTIONS(2619), + [anon_sym_protected] = ACTIONS(2619), + [anon_sym_override] = ACTIONS(2619), + [anon_sym_module] = ACTIONS(2619), + [anon_sym_any] = ACTIONS(2619), + [anon_sym_number] = ACTIONS(2619), + [anon_sym_boolean] = ACTIONS(2619), + [anon_sym_string] = ACTIONS(2619), + [anon_sym_symbol] = ACTIONS(2619), + [anon_sym_object] = ACTIONS(2619), + [anon_sym_abstract] = ACTIONS(2619), + [anon_sym_interface] = ACTIONS(2619), + [anon_sym_enum] = ACTIONS(2619), [sym_html_comment] = ACTIONS(5), }, [836] = { - [ts_builtin_sym_end] = ACTIONS(2632), - [sym_identifier] = ACTIONS(2634), - [anon_sym_export] = ACTIONS(2634), - [anon_sym_default] = ACTIONS(2634), - [anon_sym_type] = ACTIONS(2634), - [anon_sym_namespace] = ACTIONS(2634), - [anon_sym_LBRACE] = ACTIONS(2632), - [anon_sym_RBRACE] = ACTIONS(2632), - [anon_sym_typeof] = ACTIONS(2634), - [anon_sym_import] = ACTIONS(2634), - [anon_sym_with] = ACTIONS(2634), - [anon_sym_var] = ACTIONS(2634), - [anon_sym_let] = ACTIONS(2634), - [anon_sym_const] = ACTIONS(2634), - [anon_sym_BANG] = ACTIONS(2632), - [anon_sym_else] = ACTIONS(2634), - [anon_sym_if] = ACTIONS(2634), - [anon_sym_switch] = ACTIONS(2634), - [anon_sym_for] = ACTIONS(2634), - [anon_sym_LPAREN] = ACTIONS(2632), - [anon_sym_SEMI] = ACTIONS(2632), - [anon_sym_await] = ACTIONS(2634), - [anon_sym_while] = ACTIONS(2634), - [anon_sym_do] = ACTIONS(2634), - [anon_sym_try] = ACTIONS(2634), - [anon_sym_break] = ACTIONS(2634), - [anon_sym_continue] = ACTIONS(2634), - [anon_sym_debugger] = ACTIONS(2634), - [anon_sym_return] = ACTIONS(2634), - [anon_sym_throw] = ACTIONS(2634), - [anon_sym_case] = ACTIONS(2634), - [anon_sym_yield] = ACTIONS(2634), - [anon_sym_LBRACK] = ACTIONS(2632), - [sym_glimmer_opening_tag] = ACTIONS(2632), - [anon_sym_class] = ACTIONS(2634), - [anon_sym_async] = ACTIONS(2634), - [anon_sym_function] = ACTIONS(2634), - [anon_sym_new] = ACTIONS(2634), - [anon_sym_using] = ACTIONS(2634), - [anon_sym_PLUS] = ACTIONS(2634), - [anon_sym_DASH] = ACTIONS(2634), - [anon_sym_SLASH] = ACTIONS(2634), - [anon_sym_LT] = ACTIONS(2634), - [anon_sym_TILDE] = ACTIONS(2632), - [anon_sym_void] = ACTIONS(2634), - [anon_sym_delete] = ACTIONS(2634), - [anon_sym_PLUS_PLUS] = ACTIONS(2632), - [anon_sym_DASH_DASH] = ACTIONS(2632), - [anon_sym_DQUOTE] = ACTIONS(2632), - [anon_sym_SQUOTE] = ACTIONS(2632), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2632), - [sym_number] = ACTIONS(2632), - [sym_private_property_identifier] = ACTIONS(2632), - [sym_this] = ACTIONS(2634), - [sym_super] = ACTIONS(2634), - [sym_true] = ACTIONS(2634), - [sym_false] = ACTIONS(2634), - [sym_null] = ACTIONS(2634), - [sym_undefined] = ACTIONS(2634), - [anon_sym_AT] = ACTIONS(2632), - [anon_sym_static] = ACTIONS(2634), - [anon_sym_readonly] = ACTIONS(2634), - [anon_sym_get] = ACTIONS(2634), - [anon_sym_set] = ACTIONS(2634), - [anon_sym_declare] = ACTIONS(2634), - [anon_sym_public] = ACTIONS(2634), - [anon_sym_private] = ACTIONS(2634), - [anon_sym_protected] = ACTIONS(2634), - [anon_sym_override] = ACTIONS(2634), - [anon_sym_module] = ACTIONS(2634), - [anon_sym_any] = ACTIONS(2634), - [anon_sym_number] = ACTIONS(2634), - [anon_sym_boolean] = ACTIONS(2634), - [anon_sym_string] = ACTIONS(2634), - [anon_sym_symbol] = ACTIONS(2634), - [anon_sym_object] = ACTIONS(2634), - [anon_sym_abstract] = ACTIONS(2634), - [anon_sym_interface] = ACTIONS(2634), - [anon_sym_enum] = ACTIONS(2634), + [ts_builtin_sym_end] = ACTIONS(2617), + [sym_identifier] = ACTIONS(2619), + [anon_sym_export] = ACTIONS(2619), + [anon_sym_default] = ACTIONS(2619), + [anon_sym_type] = ACTIONS(2619), + [anon_sym_namespace] = ACTIONS(2619), + [anon_sym_LBRACE] = ACTIONS(2617), + [anon_sym_RBRACE] = ACTIONS(2617), + [anon_sym_typeof] = ACTIONS(2619), + [anon_sym_import] = ACTIONS(2619), + [anon_sym_with] = ACTIONS(2619), + [anon_sym_var] = ACTIONS(2619), + [anon_sym_let] = ACTIONS(2619), + [anon_sym_const] = ACTIONS(2619), + [anon_sym_BANG] = ACTIONS(2617), + [anon_sym_else] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(2619), + [anon_sym_switch] = ACTIONS(2619), + [anon_sym_for] = ACTIONS(2619), + [anon_sym_LPAREN] = ACTIONS(2617), + [anon_sym_SEMI] = ACTIONS(2617), + [anon_sym_await] = ACTIONS(2619), + [anon_sym_while] = ACTIONS(2619), + [anon_sym_do] = ACTIONS(2619), + [anon_sym_try] = ACTIONS(2619), + [anon_sym_break] = ACTIONS(2619), + [anon_sym_continue] = ACTIONS(2619), + [anon_sym_debugger] = ACTIONS(2619), + [anon_sym_return] = ACTIONS(2619), + [anon_sym_throw] = ACTIONS(2619), + [anon_sym_case] = ACTIONS(2619), + [anon_sym_yield] = ACTIONS(2619), + [anon_sym_LBRACK] = ACTIONS(2617), + [anon_sym_class] = ACTIONS(2619), + [anon_sym_async] = ACTIONS(2619), + [anon_sym_function] = ACTIONS(2619), + [anon_sym_new] = ACTIONS(2619), + [anon_sym_using] = ACTIONS(2619), + [anon_sym_PLUS] = ACTIONS(2619), + [anon_sym_DASH] = ACTIONS(2619), + [anon_sym_SLASH] = ACTIONS(2619), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_TILDE] = ACTIONS(2617), + [anon_sym_void] = ACTIONS(2619), + [anon_sym_delete] = ACTIONS(2619), + [anon_sym_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH] = ACTIONS(2617), + [anon_sym_DQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2617), + [sym_number] = ACTIONS(2617), + [sym_private_property_identifier] = ACTIONS(2617), + [sym_this] = ACTIONS(2619), + [sym_super] = ACTIONS(2619), + [sym_true] = ACTIONS(2619), + [sym_false] = ACTIONS(2619), + [sym_null] = ACTIONS(2619), + [sym_undefined] = ACTIONS(2619), + [anon_sym_AT] = ACTIONS(2617), + [anon_sym_static] = ACTIONS(2619), + [anon_sym_readonly] = ACTIONS(2619), + [anon_sym_get] = ACTIONS(2619), + [anon_sym_set] = ACTIONS(2619), + [anon_sym_declare] = ACTIONS(2619), + [anon_sym_public] = ACTIONS(2619), + [anon_sym_private] = ACTIONS(2619), + [anon_sym_protected] = ACTIONS(2619), + [anon_sym_override] = ACTIONS(2619), + [anon_sym_module] = ACTIONS(2619), + [anon_sym_any] = ACTIONS(2619), + [anon_sym_number] = ACTIONS(2619), + [anon_sym_boolean] = ACTIONS(2619), + [anon_sym_string] = ACTIONS(2619), + [anon_sym_symbol] = ACTIONS(2619), + [anon_sym_object] = ACTIONS(2619), + [anon_sym_abstract] = ACTIONS(2619), + [anon_sym_interface] = ACTIONS(2619), + [anon_sym_enum] = ACTIONS(2619), [sym_html_comment] = ACTIONS(5), }, [837] = { - [ts_builtin_sym_end] = ACTIONS(1879), - [sym_identifier] = ACTIONS(1881), - [anon_sym_export] = ACTIONS(1881), - [anon_sym_default] = ACTIONS(1881), - [anon_sym_type] = ACTIONS(1881), - [anon_sym_namespace] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1879), - [anon_sym_RBRACE] = ACTIONS(1879), - [anon_sym_typeof] = ACTIONS(1881), - [anon_sym_import] = ACTIONS(1881), - [anon_sym_with] = ACTIONS(1881), - [anon_sym_var] = ACTIONS(1881), - [anon_sym_let] = ACTIONS(1881), - [anon_sym_const] = ACTIONS(1881), - [anon_sym_BANG] = ACTIONS(1879), - [anon_sym_else] = ACTIONS(1881), - [anon_sym_if] = ACTIONS(1881), - [anon_sym_switch] = ACTIONS(1881), - [anon_sym_for] = ACTIONS(1881), - [anon_sym_LPAREN] = ACTIONS(1879), - [anon_sym_SEMI] = ACTIONS(1879), - [anon_sym_await] = ACTIONS(1881), - [anon_sym_while] = ACTIONS(1881), - [anon_sym_do] = ACTIONS(1881), - [anon_sym_try] = ACTIONS(1881), - [anon_sym_break] = ACTIONS(1881), - [anon_sym_continue] = ACTIONS(1881), - [anon_sym_debugger] = ACTIONS(1881), - [anon_sym_return] = ACTIONS(1881), - [anon_sym_throw] = ACTIONS(1881), - [anon_sym_case] = ACTIONS(1881), - [anon_sym_yield] = ACTIONS(1881), - [anon_sym_LBRACK] = ACTIONS(1879), - [sym_glimmer_opening_tag] = ACTIONS(1879), - [anon_sym_class] = ACTIONS(1881), - [anon_sym_async] = ACTIONS(1881), - [anon_sym_function] = ACTIONS(1881), - [anon_sym_new] = ACTIONS(1881), - [anon_sym_using] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(1881), - [anon_sym_DASH] = ACTIONS(1881), - [anon_sym_SLASH] = ACTIONS(1881), - [anon_sym_LT] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1879), - [anon_sym_void] = ACTIONS(1881), - [anon_sym_delete] = ACTIONS(1881), - [anon_sym_PLUS_PLUS] = ACTIONS(1879), - [anon_sym_DASH_DASH] = ACTIONS(1879), - [anon_sym_DQUOTE] = ACTIONS(1879), - [anon_sym_SQUOTE] = ACTIONS(1879), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1879), - [sym_number] = ACTIONS(1879), - [sym_private_property_identifier] = ACTIONS(1879), - [sym_this] = ACTIONS(1881), - [sym_super] = ACTIONS(1881), - [sym_true] = ACTIONS(1881), - [sym_false] = ACTIONS(1881), - [sym_null] = ACTIONS(1881), - [sym_undefined] = ACTIONS(1881), - [anon_sym_AT] = ACTIONS(1879), - [anon_sym_static] = ACTIONS(1881), - [anon_sym_readonly] = ACTIONS(1881), - [anon_sym_get] = ACTIONS(1881), - [anon_sym_set] = ACTIONS(1881), - [anon_sym_declare] = ACTIONS(1881), - [anon_sym_public] = ACTIONS(1881), - [anon_sym_private] = ACTIONS(1881), - [anon_sym_protected] = ACTIONS(1881), - [anon_sym_override] = ACTIONS(1881), - [anon_sym_module] = ACTIONS(1881), - [anon_sym_any] = ACTIONS(1881), - [anon_sym_number] = ACTIONS(1881), - [anon_sym_boolean] = ACTIONS(1881), - [anon_sym_string] = ACTIONS(1881), - [anon_sym_symbol] = ACTIONS(1881), - [anon_sym_object] = ACTIONS(1881), - [anon_sym_abstract] = ACTIONS(1881), - [anon_sym_interface] = ACTIONS(1881), - [anon_sym_enum] = ACTIONS(1881), + [ts_builtin_sym_end] = ACTIONS(2621), + [sym_identifier] = ACTIONS(2623), + [anon_sym_export] = ACTIONS(2623), + [anon_sym_default] = ACTIONS(2623), + [anon_sym_type] = ACTIONS(2623), + [anon_sym_namespace] = ACTIONS(2623), + [anon_sym_LBRACE] = ACTIONS(2621), + [anon_sym_RBRACE] = ACTIONS(2621), + [anon_sym_typeof] = ACTIONS(2623), + [anon_sym_import] = ACTIONS(2623), + [anon_sym_with] = ACTIONS(2623), + [anon_sym_var] = ACTIONS(2623), + [anon_sym_let] = ACTIONS(2623), + [anon_sym_const] = ACTIONS(2623), + [anon_sym_BANG] = ACTIONS(2621), + [anon_sym_else] = ACTIONS(2623), + [anon_sym_if] = ACTIONS(2623), + [anon_sym_switch] = ACTIONS(2623), + [anon_sym_for] = ACTIONS(2623), + [anon_sym_LPAREN] = ACTIONS(2621), + [anon_sym_SEMI] = ACTIONS(2621), + [anon_sym_await] = ACTIONS(2623), + [anon_sym_while] = ACTIONS(2623), + [anon_sym_do] = ACTIONS(2623), + [anon_sym_try] = ACTIONS(2623), + [anon_sym_break] = ACTIONS(2623), + [anon_sym_continue] = ACTIONS(2623), + [anon_sym_debugger] = ACTIONS(2623), + [anon_sym_return] = ACTIONS(2623), + [anon_sym_throw] = ACTIONS(2623), + [anon_sym_case] = ACTIONS(2623), + [anon_sym_yield] = ACTIONS(2623), + [anon_sym_LBRACK] = ACTIONS(2621), + [anon_sym_class] = ACTIONS(2623), + [anon_sym_async] = ACTIONS(2623), + [anon_sym_function] = ACTIONS(2623), + [anon_sym_new] = ACTIONS(2623), + [anon_sym_using] = ACTIONS(2623), + [anon_sym_PLUS] = ACTIONS(2623), + [anon_sym_DASH] = ACTIONS(2623), + [anon_sym_SLASH] = ACTIONS(2623), + [anon_sym_LT] = ACTIONS(2621), + [anon_sym_TILDE] = ACTIONS(2621), + [anon_sym_void] = ACTIONS(2623), + [anon_sym_delete] = ACTIONS(2623), + [anon_sym_PLUS_PLUS] = ACTIONS(2621), + [anon_sym_DASH_DASH] = ACTIONS(2621), + [anon_sym_DQUOTE] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2621), + [sym_number] = ACTIONS(2621), + [sym_private_property_identifier] = ACTIONS(2621), + [sym_this] = ACTIONS(2623), + [sym_super] = ACTIONS(2623), + [sym_true] = ACTIONS(2623), + [sym_false] = ACTIONS(2623), + [sym_null] = ACTIONS(2623), + [sym_undefined] = ACTIONS(2623), + [anon_sym_AT] = ACTIONS(2621), + [anon_sym_static] = ACTIONS(2623), + [anon_sym_readonly] = ACTIONS(2623), + [anon_sym_get] = ACTIONS(2623), + [anon_sym_set] = ACTIONS(2623), + [anon_sym_declare] = ACTIONS(2623), + [anon_sym_public] = ACTIONS(2623), + [anon_sym_private] = ACTIONS(2623), + [anon_sym_protected] = ACTIONS(2623), + [anon_sym_override] = ACTIONS(2623), + [anon_sym_module] = ACTIONS(2623), + [anon_sym_any] = ACTIONS(2623), + [anon_sym_number] = ACTIONS(2623), + [anon_sym_boolean] = ACTIONS(2623), + [anon_sym_string] = ACTIONS(2623), + [anon_sym_symbol] = ACTIONS(2623), + [anon_sym_object] = ACTIONS(2623), + [anon_sym_abstract] = ACTIONS(2623), + [anon_sym_interface] = ACTIONS(2623), + [anon_sym_enum] = ACTIONS(2623), [sym_html_comment] = ACTIONS(5), }, [838] = { - [ts_builtin_sym_end] = ACTIONS(2636), - [sym_identifier] = ACTIONS(2638), - [anon_sym_export] = ACTIONS(2638), - [anon_sym_default] = ACTIONS(2638), - [anon_sym_type] = ACTIONS(2638), - [anon_sym_namespace] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2636), - [anon_sym_RBRACE] = ACTIONS(2636), - [anon_sym_typeof] = ACTIONS(2638), - [anon_sym_import] = ACTIONS(2638), - [anon_sym_with] = ACTIONS(2638), - [anon_sym_var] = ACTIONS(2638), - [anon_sym_let] = ACTIONS(2638), - [anon_sym_const] = ACTIONS(2638), - [anon_sym_BANG] = ACTIONS(2636), - [anon_sym_else] = ACTIONS(2638), - [anon_sym_if] = ACTIONS(2638), - [anon_sym_switch] = ACTIONS(2638), - [anon_sym_for] = ACTIONS(2638), - [anon_sym_LPAREN] = ACTIONS(2636), - [anon_sym_SEMI] = ACTIONS(2636), - [anon_sym_await] = ACTIONS(2638), - [anon_sym_while] = ACTIONS(2638), - [anon_sym_do] = ACTIONS(2638), - [anon_sym_try] = ACTIONS(2638), - [anon_sym_break] = ACTIONS(2638), - [anon_sym_continue] = ACTIONS(2638), - [anon_sym_debugger] = ACTIONS(2638), - [anon_sym_return] = ACTIONS(2638), - [anon_sym_throw] = ACTIONS(2638), - [anon_sym_case] = ACTIONS(2638), - [anon_sym_yield] = ACTIONS(2638), - [anon_sym_LBRACK] = ACTIONS(2636), - [sym_glimmer_opening_tag] = ACTIONS(2636), - [anon_sym_class] = ACTIONS(2638), - [anon_sym_async] = ACTIONS(2638), - [anon_sym_function] = ACTIONS(2638), - [anon_sym_new] = ACTIONS(2638), - [anon_sym_using] = ACTIONS(2638), - [anon_sym_PLUS] = ACTIONS(2638), - [anon_sym_DASH] = ACTIONS(2638), - [anon_sym_SLASH] = ACTIONS(2638), - [anon_sym_LT] = ACTIONS(2638), - [anon_sym_TILDE] = ACTIONS(2636), - [anon_sym_void] = ACTIONS(2638), - [anon_sym_delete] = ACTIONS(2638), - [anon_sym_PLUS_PLUS] = ACTIONS(2636), - [anon_sym_DASH_DASH] = ACTIONS(2636), - [anon_sym_DQUOTE] = ACTIONS(2636), - [anon_sym_SQUOTE] = ACTIONS(2636), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2636), - [sym_number] = ACTIONS(2636), - [sym_private_property_identifier] = ACTIONS(2636), - [sym_this] = ACTIONS(2638), - [sym_super] = ACTIONS(2638), - [sym_true] = ACTIONS(2638), - [sym_false] = ACTIONS(2638), - [sym_null] = ACTIONS(2638), - [sym_undefined] = ACTIONS(2638), - [anon_sym_AT] = ACTIONS(2636), - [anon_sym_static] = ACTIONS(2638), - [anon_sym_readonly] = ACTIONS(2638), - [anon_sym_get] = ACTIONS(2638), - [anon_sym_set] = ACTIONS(2638), - [anon_sym_declare] = ACTIONS(2638), - [anon_sym_public] = ACTIONS(2638), - [anon_sym_private] = ACTIONS(2638), - [anon_sym_protected] = ACTIONS(2638), - [anon_sym_override] = ACTIONS(2638), - [anon_sym_module] = ACTIONS(2638), - [anon_sym_any] = ACTIONS(2638), - [anon_sym_number] = ACTIONS(2638), - [anon_sym_boolean] = ACTIONS(2638), - [anon_sym_string] = ACTIONS(2638), - [anon_sym_symbol] = ACTIONS(2638), - [anon_sym_object] = ACTIONS(2638), - [anon_sym_abstract] = ACTIONS(2638), - [anon_sym_interface] = ACTIONS(2638), - [anon_sym_enum] = ACTIONS(2638), + [ts_builtin_sym_end] = ACTIONS(2625), + [sym_identifier] = ACTIONS(2627), + [anon_sym_export] = ACTIONS(2627), + [anon_sym_default] = ACTIONS(2627), + [anon_sym_type] = ACTIONS(2627), + [anon_sym_namespace] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_RBRACE] = ACTIONS(2625), + [anon_sym_typeof] = ACTIONS(2627), + [anon_sym_import] = ACTIONS(2627), + [anon_sym_with] = ACTIONS(2627), + [anon_sym_var] = ACTIONS(2627), + [anon_sym_let] = ACTIONS(2627), + [anon_sym_const] = ACTIONS(2627), + [anon_sym_BANG] = ACTIONS(2625), + [anon_sym_else] = ACTIONS(2627), + [anon_sym_if] = ACTIONS(2627), + [anon_sym_switch] = ACTIONS(2627), + [anon_sym_for] = ACTIONS(2627), + [anon_sym_LPAREN] = ACTIONS(2625), + [anon_sym_SEMI] = ACTIONS(2625), + [anon_sym_await] = ACTIONS(2627), + [anon_sym_while] = ACTIONS(2627), + [anon_sym_do] = ACTIONS(2627), + [anon_sym_try] = ACTIONS(2627), + [anon_sym_break] = ACTIONS(2627), + [anon_sym_continue] = ACTIONS(2627), + [anon_sym_debugger] = ACTIONS(2627), + [anon_sym_return] = ACTIONS(2627), + [anon_sym_throw] = ACTIONS(2627), + [anon_sym_case] = ACTIONS(2627), + [anon_sym_yield] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2625), + [anon_sym_class] = ACTIONS(2627), + [anon_sym_async] = ACTIONS(2627), + [anon_sym_function] = ACTIONS(2627), + [anon_sym_new] = ACTIONS(2627), + [anon_sym_using] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2627), + [anon_sym_DASH] = ACTIONS(2627), + [anon_sym_SLASH] = ACTIONS(2627), + [anon_sym_LT] = ACTIONS(2625), + [anon_sym_TILDE] = ACTIONS(2625), + [anon_sym_void] = ACTIONS(2627), + [anon_sym_delete] = ACTIONS(2627), + [anon_sym_PLUS_PLUS] = ACTIONS(2625), + [anon_sym_DASH_DASH] = ACTIONS(2625), + [anon_sym_DQUOTE] = ACTIONS(2625), + [anon_sym_SQUOTE] = ACTIONS(2625), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2625), + [sym_number] = ACTIONS(2625), + [sym_private_property_identifier] = ACTIONS(2625), + [sym_this] = ACTIONS(2627), + [sym_super] = ACTIONS(2627), + [sym_true] = ACTIONS(2627), + [sym_false] = ACTIONS(2627), + [sym_null] = ACTIONS(2627), + [sym_undefined] = ACTIONS(2627), + [anon_sym_AT] = ACTIONS(2625), + [anon_sym_static] = ACTIONS(2627), + [anon_sym_readonly] = ACTIONS(2627), + [anon_sym_get] = ACTIONS(2627), + [anon_sym_set] = ACTIONS(2627), + [anon_sym_declare] = ACTIONS(2627), + [anon_sym_public] = ACTIONS(2627), + [anon_sym_private] = ACTIONS(2627), + [anon_sym_protected] = ACTIONS(2627), + [anon_sym_override] = ACTIONS(2627), + [anon_sym_module] = ACTIONS(2627), + [anon_sym_any] = ACTIONS(2627), + [anon_sym_number] = ACTIONS(2627), + [anon_sym_boolean] = ACTIONS(2627), + [anon_sym_string] = ACTIONS(2627), + [anon_sym_symbol] = ACTIONS(2627), + [anon_sym_object] = ACTIONS(2627), + [anon_sym_abstract] = ACTIONS(2627), + [anon_sym_interface] = ACTIONS(2627), + [anon_sym_enum] = ACTIONS(2627), [sym_html_comment] = ACTIONS(5), }, [839] = { - [ts_builtin_sym_end] = ACTIONS(2640), - [sym_identifier] = ACTIONS(2642), - [anon_sym_export] = ACTIONS(2642), - [anon_sym_default] = ACTIONS(2642), - [anon_sym_type] = ACTIONS(2642), - [anon_sym_namespace] = ACTIONS(2642), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_RBRACE] = ACTIONS(2640), - [anon_sym_typeof] = ACTIONS(2642), - [anon_sym_import] = ACTIONS(2642), - [anon_sym_with] = ACTIONS(2642), - [anon_sym_var] = ACTIONS(2642), - [anon_sym_let] = ACTIONS(2642), - [anon_sym_const] = ACTIONS(2642), - [anon_sym_BANG] = ACTIONS(2640), - [anon_sym_else] = ACTIONS(2642), - [anon_sym_if] = ACTIONS(2642), - [anon_sym_switch] = ACTIONS(2642), - [anon_sym_for] = ACTIONS(2642), - [anon_sym_LPAREN] = ACTIONS(2640), - [anon_sym_SEMI] = ACTIONS(2640), - [anon_sym_await] = ACTIONS(2642), - [anon_sym_while] = ACTIONS(2642), - [anon_sym_do] = ACTIONS(2642), - [anon_sym_try] = ACTIONS(2642), - [anon_sym_break] = ACTIONS(2642), - [anon_sym_continue] = ACTIONS(2642), - [anon_sym_debugger] = ACTIONS(2642), - [anon_sym_return] = ACTIONS(2642), - [anon_sym_throw] = ACTIONS(2642), - [anon_sym_case] = ACTIONS(2642), - [anon_sym_yield] = ACTIONS(2642), - [anon_sym_LBRACK] = ACTIONS(2640), - [sym_glimmer_opening_tag] = ACTIONS(2640), - [anon_sym_class] = ACTIONS(2642), - [anon_sym_async] = ACTIONS(2642), - [anon_sym_function] = ACTIONS(2642), - [anon_sym_new] = ACTIONS(2642), - [anon_sym_using] = ACTIONS(2642), - [anon_sym_PLUS] = ACTIONS(2642), - [anon_sym_DASH] = ACTIONS(2642), - [anon_sym_SLASH] = ACTIONS(2642), - [anon_sym_LT] = ACTIONS(2642), - [anon_sym_TILDE] = ACTIONS(2640), - [anon_sym_void] = ACTIONS(2642), - [anon_sym_delete] = ACTIONS(2642), - [anon_sym_PLUS_PLUS] = ACTIONS(2640), - [anon_sym_DASH_DASH] = ACTIONS(2640), - [anon_sym_DQUOTE] = ACTIONS(2640), - [anon_sym_SQUOTE] = ACTIONS(2640), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2640), - [sym_number] = ACTIONS(2640), - [sym_private_property_identifier] = ACTIONS(2640), - [sym_this] = ACTIONS(2642), - [sym_super] = ACTIONS(2642), - [sym_true] = ACTIONS(2642), - [sym_false] = ACTIONS(2642), - [sym_null] = ACTIONS(2642), - [sym_undefined] = ACTIONS(2642), - [anon_sym_AT] = ACTIONS(2640), - [anon_sym_static] = ACTIONS(2642), - [anon_sym_readonly] = ACTIONS(2642), - [anon_sym_get] = ACTIONS(2642), - [anon_sym_set] = ACTIONS(2642), - [anon_sym_declare] = ACTIONS(2642), - [anon_sym_public] = ACTIONS(2642), - [anon_sym_private] = ACTIONS(2642), - [anon_sym_protected] = ACTIONS(2642), - [anon_sym_override] = ACTIONS(2642), - [anon_sym_module] = ACTIONS(2642), - [anon_sym_any] = ACTIONS(2642), - [anon_sym_number] = ACTIONS(2642), - [anon_sym_boolean] = ACTIONS(2642), - [anon_sym_string] = ACTIONS(2642), - [anon_sym_symbol] = ACTIONS(2642), - [anon_sym_object] = ACTIONS(2642), - [anon_sym_abstract] = ACTIONS(2642), - [anon_sym_interface] = ACTIONS(2642), - [anon_sym_enum] = ACTIONS(2642), + [ts_builtin_sym_end] = ACTIONS(2629), + [sym_identifier] = ACTIONS(2631), + [anon_sym_export] = ACTIONS(2631), + [anon_sym_default] = ACTIONS(2631), + [anon_sym_type] = ACTIONS(2631), + [anon_sym_namespace] = ACTIONS(2631), + [anon_sym_LBRACE] = ACTIONS(2629), + [anon_sym_RBRACE] = ACTIONS(2629), + [anon_sym_typeof] = ACTIONS(2631), + [anon_sym_import] = ACTIONS(2631), + [anon_sym_with] = ACTIONS(2631), + [anon_sym_var] = ACTIONS(2631), + [anon_sym_let] = ACTIONS(2631), + [anon_sym_const] = ACTIONS(2631), + [anon_sym_BANG] = ACTIONS(2629), + [anon_sym_else] = ACTIONS(2631), + [anon_sym_if] = ACTIONS(2631), + [anon_sym_switch] = ACTIONS(2631), + [anon_sym_for] = ACTIONS(2631), + [anon_sym_LPAREN] = ACTIONS(2629), + [anon_sym_SEMI] = ACTIONS(2629), + [anon_sym_await] = ACTIONS(2631), + [anon_sym_while] = ACTIONS(2631), + [anon_sym_do] = ACTIONS(2631), + [anon_sym_try] = ACTIONS(2631), + [anon_sym_break] = ACTIONS(2631), + [anon_sym_continue] = ACTIONS(2631), + [anon_sym_debugger] = ACTIONS(2631), + [anon_sym_return] = ACTIONS(2631), + [anon_sym_throw] = ACTIONS(2631), + [anon_sym_case] = ACTIONS(2631), + [anon_sym_yield] = ACTIONS(2631), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_class] = ACTIONS(2631), + [anon_sym_async] = ACTIONS(2631), + [anon_sym_function] = ACTIONS(2631), + [anon_sym_new] = ACTIONS(2631), + [anon_sym_using] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2631), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_SLASH] = ACTIONS(2631), + [anon_sym_LT] = ACTIONS(2629), + [anon_sym_TILDE] = ACTIONS(2629), + [anon_sym_void] = ACTIONS(2631), + [anon_sym_delete] = ACTIONS(2631), + [anon_sym_PLUS_PLUS] = ACTIONS(2629), + [anon_sym_DASH_DASH] = ACTIONS(2629), + [anon_sym_DQUOTE] = ACTIONS(2629), + [anon_sym_SQUOTE] = ACTIONS(2629), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2629), + [sym_number] = ACTIONS(2629), + [sym_private_property_identifier] = ACTIONS(2629), + [sym_this] = ACTIONS(2631), + [sym_super] = ACTIONS(2631), + [sym_true] = ACTIONS(2631), + [sym_false] = ACTIONS(2631), + [sym_null] = ACTIONS(2631), + [sym_undefined] = ACTIONS(2631), + [anon_sym_AT] = ACTIONS(2629), + [anon_sym_static] = ACTIONS(2631), + [anon_sym_readonly] = ACTIONS(2631), + [anon_sym_get] = ACTIONS(2631), + [anon_sym_set] = ACTIONS(2631), + [anon_sym_declare] = ACTIONS(2631), + [anon_sym_public] = ACTIONS(2631), + [anon_sym_private] = ACTIONS(2631), + [anon_sym_protected] = ACTIONS(2631), + [anon_sym_override] = ACTIONS(2631), + [anon_sym_module] = ACTIONS(2631), + [anon_sym_any] = ACTIONS(2631), + [anon_sym_number] = ACTIONS(2631), + [anon_sym_boolean] = ACTIONS(2631), + [anon_sym_string] = ACTIONS(2631), + [anon_sym_symbol] = ACTIONS(2631), + [anon_sym_object] = ACTIONS(2631), + [anon_sym_abstract] = ACTIONS(2631), + [anon_sym_interface] = ACTIONS(2631), + [anon_sym_enum] = ACTIONS(2631), [sym_html_comment] = ACTIONS(5), }, [840] = { - [ts_builtin_sym_end] = ACTIONS(2644), - [sym_identifier] = ACTIONS(2646), - [anon_sym_export] = ACTIONS(2646), - [anon_sym_default] = ACTIONS(2646), - [anon_sym_type] = ACTIONS(2646), - [anon_sym_namespace] = ACTIONS(2646), - [anon_sym_LBRACE] = ACTIONS(2644), - [anon_sym_RBRACE] = ACTIONS(2644), - [anon_sym_typeof] = ACTIONS(2646), - [anon_sym_import] = ACTIONS(2646), - [anon_sym_with] = ACTIONS(2646), - [anon_sym_var] = ACTIONS(2646), - [anon_sym_let] = ACTIONS(2646), - [anon_sym_const] = ACTIONS(2646), - [anon_sym_BANG] = ACTIONS(2644), - [anon_sym_else] = ACTIONS(2646), - [anon_sym_if] = ACTIONS(2646), - [anon_sym_switch] = ACTIONS(2646), - [anon_sym_for] = ACTIONS(2646), - [anon_sym_LPAREN] = ACTIONS(2644), - [anon_sym_SEMI] = ACTIONS(2644), - [anon_sym_await] = ACTIONS(2646), - [anon_sym_while] = ACTIONS(2646), - [anon_sym_do] = ACTIONS(2646), - [anon_sym_try] = ACTIONS(2646), - [anon_sym_break] = ACTIONS(2646), - [anon_sym_continue] = ACTIONS(2646), - [anon_sym_debugger] = ACTIONS(2646), - [anon_sym_return] = ACTIONS(2646), - [anon_sym_throw] = ACTIONS(2646), - [anon_sym_case] = ACTIONS(2646), - [anon_sym_yield] = ACTIONS(2646), - [anon_sym_LBRACK] = ACTIONS(2644), - [sym_glimmer_opening_tag] = ACTIONS(2644), - [anon_sym_class] = ACTIONS(2646), - [anon_sym_async] = ACTIONS(2646), - [anon_sym_function] = ACTIONS(2646), - [anon_sym_new] = ACTIONS(2646), - [anon_sym_using] = ACTIONS(2646), - [anon_sym_PLUS] = ACTIONS(2646), - [anon_sym_DASH] = ACTIONS(2646), - [anon_sym_SLASH] = ACTIONS(2646), - [anon_sym_LT] = ACTIONS(2646), - [anon_sym_TILDE] = ACTIONS(2644), - [anon_sym_void] = ACTIONS(2646), - [anon_sym_delete] = ACTIONS(2646), - [anon_sym_PLUS_PLUS] = ACTIONS(2644), - [anon_sym_DASH_DASH] = ACTIONS(2644), - [anon_sym_DQUOTE] = ACTIONS(2644), - [anon_sym_SQUOTE] = ACTIONS(2644), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2644), - [sym_number] = ACTIONS(2644), - [sym_private_property_identifier] = ACTIONS(2644), - [sym_this] = ACTIONS(2646), - [sym_super] = ACTIONS(2646), - [sym_true] = ACTIONS(2646), - [sym_false] = ACTIONS(2646), - [sym_null] = ACTIONS(2646), - [sym_undefined] = ACTIONS(2646), - [anon_sym_AT] = ACTIONS(2644), - [anon_sym_static] = ACTIONS(2646), - [anon_sym_readonly] = ACTIONS(2646), - [anon_sym_get] = ACTIONS(2646), - [anon_sym_set] = ACTIONS(2646), - [anon_sym_declare] = ACTIONS(2646), - [anon_sym_public] = ACTIONS(2646), - [anon_sym_private] = ACTIONS(2646), - [anon_sym_protected] = ACTIONS(2646), - [anon_sym_override] = ACTIONS(2646), - [anon_sym_module] = ACTIONS(2646), - [anon_sym_any] = ACTIONS(2646), - [anon_sym_number] = ACTIONS(2646), - [anon_sym_boolean] = ACTIONS(2646), - [anon_sym_string] = ACTIONS(2646), - [anon_sym_symbol] = ACTIONS(2646), - [anon_sym_object] = ACTIONS(2646), - [anon_sym_abstract] = ACTIONS(2646), - [anon_sym_interface] = ACTIONS(2646), - [anon_sym_enum] = ACTIONS(2646), + [ts_builtin_sym_end] = ACTIONS(2633), + [sym_identifier] = ACTIONS(2635), + [anon_sym_export] = ACTIONS(2635), + [anon_sym_default] = ACTIONS(2635), + [anon_sym_type] = ACTIONS(2635), + [anon_sym_namespace] = ACTIONS(2635), + [anon_sym_LBRACE] = ACTIONS(2633), + [anon_sym_RBRACE] = ACTIONS(2633), + [anon_sym_typeof] = ACTIONS(2635), + [anon_sym_import] = ACTIONS(2635), + [anon_sym_with] = ACTIONS(2635), + [anon_sym_var] = ACTIONS(2635), + [anon_sym_let] = ACTIONS(2635), + [anon_sym_const] = ACTIONS(2635), + [anon_sym_BANG] = ACTIONS(2633), + [anon_sym_else] = ACTIONS(2635), + [anon_sym_if] = ACTIONS(2635), + [anon_sym_switch] = ACTIONS(2635), + [anon_sym_for] = ACTIONS(2635), + [anon_sym_LPAREN] = ACTIONS(2633), + [anon_sym_SEMI] = ACTIONS(2633), + [anon_sym_await] = ACTIONS(2635), + [anon_sym_while] = ACTIONS(2635), + [anon_sym_do] = ACTIONS(2635), + [anon_sym_try] = ACTIONS(2635), + [anon_sym_break] = ACTIONS(2635), + [anon_sym_continue] = ACTIONS(2635), + [anon_sym_debugger] = ACTIONS(2635), + [anon_sym_return] = ACTIONS(2635), + [anon_sym_throw] = ACTIONS(2635), + [anon_sym_case] = ACTIONS(2635), + [anon_sym_yield] = ACTIONS(2635), + [anon_sym_LBRACK] = ACTIONS(2633), + [anon_sym_class] = ACTIONS(2635), + [anon_sym_async] = ACTIONS(2635), + [anon_sym_function] = ACTIONS(2635), + [anon_sym_new] = ACTIONS(2635), + [anon_sym_using] = ACTIONS(2635), + [anon_sym_PLUS] = ACTIONS(2635), + [anon_sym_DASH] = ACTIONS(2635), + [anon_sym_SLASH] = ACTIONS(2635), + [anon_sym_LT] = ACTIONS(2633), + [anon_sym_TILDE] = ACTIONS(2633), + [anon_sym_void] = ACTIONS(2635), + [anon_sym_delete] = ACTIONS(2635), + [anon_sym_PLUS_PLUS] = ACTIONS(2633), + [anon_sym_DASH_DASH] = ACTIONS(2633), + [anon_sym_DQUOTE] = ACTIONS(2633), + [anon_sym_SQUOTE] = ACTIONS(2633), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2633), + [sym_number] = ACTIONS(2633), + [sym_private_property_identifier] = ACTIONS(2633), + [sym_this] = ACTIONS(2635), + [sym_super] = ACTIONS(2635), + [sym_true] = ACTIONS(2635), + [sym_false] = ACTIONS(2635), + [sym_null] = ACTIONS(2635), + [sym_undefined] = ACTIONS(2635), + [anon_sym_AT] = ACTIONS(2633), + [anon_sym_static] = ACTIONS(2635), + [anon_sym_readonly] = ACTIONS(2635), + [anon_sym_get] = ACTIONS(2635), + [anon_sym_set] = ACTIONS(2635), + [anon_sym_declare] = ACTIONS(2635), + [anon_sym_public] = ACTIONS(2635), + [anon_sym_private] = ACTIONS(2635), + [anon_sym_protected] = ACTIONS(2635), + [anon_sym_override] = ACTIONS(2635), + [anon_sym_module] = ACTIONS(2635), + [anon_sym_any] = ACTIONS(2635), + [anon_sym_number] = ACTIONS(2635), + [anon_sym_boolean] = ACTIONS(2635), + [anon_sym_string] = ACTIONS(2635), + [anon_sym_symbol] = ACTIONS(2635), + [anon_sym_object] = ACTIONS(2635), + [anon_sym_abstract] = ACTIONS(2635), + [anon_sym_interface] = ACTIONS(2635), + [anon_sym_enum] = ACTIONS(2635), [sym_html_comment] = ACTIONS(5), }, [841] = { - [sym_import] = STATE(4676), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5631), - [sym_rest_pattern] = STATE(5271), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(3304), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3830), - [sym_tuple_parameter] = STATE(4526), - [sym_optional_tuple_parameter] = STATE(4526), - [sym_optional_type] = STATE(4526), - [sym_rest_type] = STATE(4526), - [sym__tuple_type_member] = STATE(4526), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5461), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(2560), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_COMMA] = ACTIONS(2648), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_RBRACK] = ACTIONS(2650), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2566), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [ts_builtin_sym_end] = ACTIONS(2637), + [sym_identifier] = ACTIONS(2639), + [anon_sym_export] = ACTIONS(2639), + [anon_sym_default] = ACTIONS(2639), + [anon_sym_type] = ACTIONS(2639), + [anon_sym_namespace] = ACTIONS(2639), + [anon_sym_LBRACE] = ACTIONS(2637), + [anon_sym_RBRACE] = ACTIONS(2637), + [anon_sym_typeof] = ACTIONS(2639), + [anon_sym_import] = ACTIONS(2639), + [anon_sym_with] = ACTIONS(2639), + [anon_sym_var] = ACTIONS(2639), + [anon_sym_let] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2639), + [anon_sym_BANG] = ACTIONS(2637), + [anon_sym_else] = ACTIONS(2639), + [anon_sym_if] = ACTIONS(2639), + [anon_sym_switch] = ACTIONS(2639), + [anon_sym_for] = ACTIONS(2639), + [anon_sym_LPAREN] = ACTIONS(2637), + [anon_sym_SEMI] = ACTIONS(2637), + [anon_sym_await] = ACTIONS(2639), + [anon_sym_while] = ACTIONS(2639), + [anon_sym_do] = ACTIONS(2639), + [anon_sym_try] = ACTIONS(2639), + [anon_sym_break] = ACTIONS(2639), + [anon_sym_continue] = ACTIONS(2639), + [anon_sym_debugger] = ACTIONS(2639), + [anon_sym_return] = ACTIONS(2639), + [anon_sym_throw] = ACTIONS(2639), + [anon_sym_case] = ACTIONS(2639), + [anon_sym_yield] = ACTIONS(2639), + [anon_sym_LBRACK] = ACTIONS(2637), + [anon_sym_class] = ACTIONS(2639), + [anon_sym_async] = ACTIONS(2639), + [anon_sym_function] = ACTIONS(2639), + [anon_sym_new] = ACTIONS(2639), + [anon_sym_using] = ACTIONS(2639), + [anon_sym_PLUS] = ACTIONS(2639), + [anon_sym_DASH] = ACTIONS(2639), + [anon_sym_SLASH] = ACTIONS(2639), + [anon_sym_LT] = ACTIONS(2637), + [anon_sym_TILDE] = ACTIONS(2637), + [anon_sym_void] = ACTIONS(2639), + [anon_sym_delete] = ACTIONS(2639), + [anon_sym_PLUS_PLUS] = ACTIONS(2637), + [anon_sym_DASH_DASH] = ACTIONS(2637), + [anon_sym_DQUOTE] = ACTIONS(2637), + [anon_sym_SQUOTE] = ACTIONS(2637), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2637), + [sym_number] = ACTIONS(2637), + [sym_private_property_identifier] = ACTIONS(2637), + [sym_this] = ACTIONS(2639), + [sym_super] = ACTIONS(2639), + [sym_true] = ACTIONS(2639), + [sym_false] = ACTIONS(2639), + [sym_null] = ACTIONS(2639), + [sym_undefined] = ACTIONS(2639), + [anon_sym_AT] = ACTIONS(2637), + [anon_sym_static] = ACTIONS(2639), + [anon_sym_readonly] = ACTIONS(2639), + [anon_sym_get] = ACTIONS(2639), + [anon_sym_set] = ACTIONS(2639), + [anon_sym_declare] = ACTIONS(2639), + [anon_sym_public] = ACTIONS(2639), + [anon_sym_private] = ACTIONS(2639), + [anon_sym_protected] = ACTIONS(2639), + [anon_sym_override] = ACTIONS(2639), + [anon_sym_module] = ACTIONS(2639), + [anon_sym_any] = ACTIONS(2639), + [anon_sym_number] = ACTIONS(2639), + [anon_sym_boolean] = ACTIONS(2639), + [anon_sym_string] = ACTIONS(2639), + [anon_sym_symbol] = ACTIONS(2639), + [anon_sym_object] = ACTIONS(2639), + [anon_sym_abstract] = ACTIONS(2639), + [anon_sym_interface] = ACTIONS(2639), + [anon_sym_enum] = ACTIONS(2639), [sym_html_comment] = ACTIONS(5), }, [842] = { - [ts_builtin_sym_end] = ACTIONS(2652), - [sym_identifier] = ACTIONS(2654), - [anon_sym_export] = ACTIONS(2654), - [anon_sym_default] = ACTIONS(2654), - [anon_sym_type] = ACTIONS(2654), - [anon_sym_namespace] = ACTIONS(2654), - [anon_sym_LBRACE] = ACTIONS(2652), - [anon_sym_RBRACE] = ACTIONS(2652), - [anon_sym_typeof] = ACTIONS(2654), - [anon_sym_import] = ACTIONS(2654), - [anon_sym_with] = ACTIONS(2654), - [anon_sym_var] = ACTIONS(2654), - [anon_sym_let] = ACTIONS(2654), - [anon_sym_const] = ACTIONS(2654), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_else] = ACTIONS(2654), - [anon_sym_if] = ACTIONS(2654), - [anon_sym_switch] = ACTIONS(2654), - [anon_sym_for] = ACTIONS(2654), - [anon_sym_LPAREN] = ACTIONS(2652), - [anon_sym_SEMI] = ACTIONS(2652), - [anon_sym_await] = ACTIONS(2654), - [anon_sym_while] = ACTIONS(2654), - [anon_sym_do] = ACTIONS(2654), - [anon_sym_try] = ACTIONS(2654), - [anon_sym_break] = ACTIONS(2654), - [anon_sym_continue] = ACTIONS(2654), - [anon_sym_debugger] = ACTIONS(2654), - [anon_sym_return] = ACTIONS(2654), - [anon_sym_throw] = ACTIONS(2654), - [anon_sym_case] = ACTIONS(2654), - [anon_sym_yield] = ACTIONS(2654), - [anon_sym_LBRACK] = ACTIONS(2652), - [sym_glimmer_opening_tag] = ACTIONS(2652), - [anon_sym_class] = ACTIONS(2654), - [anon_sym_async] = ACTIONS(2654), - [anon_sym_function] = ACTIONS(2654), - [anon_sym_new] = ACTIONS(2654), - [anon_sym_using] = ACTIONS(2654), - [anon_sym_PLUS] = ACTIONS(2654), - [anon_sym_DASH] = ACTIONS(2654), - [anon_sym_SLASH] = ACTIONS(2654), - [anon_sym_LT] = ACTIONS(2654), - [anon_sym_TILDE] = ACTIONS(2652), - [anon_sym_void] = ACTIONS(2654), - [anon_sym_delete] = ACTIONS(2654), - [anon_sym_PLUS_PLUS] = ACTIONS(2652), - [anon_sym_DASH_DASH] = ACTIONS(2652), - [anon_sym_DQUOTE] = ACTIONS(2652), - [anon_sym_SQUOTE] = ACTIONS(2652), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2652), - [sym_number] = ACTIONS(2652), - [sym_private_property_identifier] = ACTIONS(2652), - [sym_this] = ACTIONS(2654), - [sym_super] = ACTIONS(2654), - [sym_true] = ACTIONS(2654), - [sym_false] = ACTIONS(2654), - [sym_null] = ACTIONS(2654), - [sym_undefined] = ACTIONS(2654), - [anon_sym_AT] = ACTIONS(2652), - [anon_sym_static] = ACTIONS(2654), - [anon_sym_readonly] = ACTIONS(2654), - [anon_sym_get] = ACTIONS(2654), - [anon_sym_set] = ACTIONS(2654), - [anon_sym_declare] = ACTIONS(2654), - [anon_sym_public] = ACTIONS(2654), - [anon_sym_private] = ACTIONS(2654), - [anon_sym_protected] = ACTIONS(2654), - [anon_sym_override] = ACTIONS(2654), - [anon_sym_module] = ACTIONS(2654), - [anon_sym_any] = ACTIONS(2654), - [anon_sym_number] = ACTIONS(2654), - [anon_sym_boolean] = ACTIONS(2654), - [anon_sym_string] = ACTIONS(2654), - [anon_sym_symbol] = ACTIONS(2654), - [anon_sym_object] = ACTIONS(2654), - [anon_sym_abstract] = ACTIONS(2654), - [anon_sym_interface] = ACTIONS(2654), - [anon_sym_enum] = ACTIONS(2654), + [ts_builtin_sym_end] = ACTIONS(2641), + [sym_identifier] = ACTIONS(2643), + [anon_sym_export] = ACTIONS(2643), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_type] = ACTIONS(2643), + [anon_sym_namespace] = ACTIONS(2643), + [anon_sym_LBRACE] = ACTIONS(2641), + [anon_sym_RBRACE] = ACTIONS(2641), + [anon_sym_typeof] = ACTIONS(2643), + [anon_sym_import] = ACTIONS(2643), + [anon_sym_with] = ACTIONS(2643), + [anon_sym_var] = ACTIONS(2643), + [anon_sym_let] = ACTIONS(2643), + [anon_sym_const] = ACTIONS(2643), + [anon_sym_BANG] = ACTIONS(2641), + [anon_sym_else] = ACTIONS(2643), + [anon_sym_if] = ACTIONS(2643), + [anon_sym_switch] = ACTIONS(2643), + [anon_sym_for] = ACTIONS(2643), + [anon_sym_LPAREN] = ACTIONS(2641), + [anon_sym_SEMI] = ACTIONS(2641), + [anon_sym_await] = ACTIONS(2643), + [anon_sym_while] = ACTIONS(2643), + [anon_sym_do] = ACTIONS(2643), + [anon_sym_try] = ACTIONS(2643), + [anon_sym_break] = ACTIONS(2643), + [anon_sym_continue] = ACTIONS(2643), + [anon_sym_debugger] = ACTIONS(2643), + [anon_sym_return] = ACTIONS(2643), + [anon_sym_throw] = ACTIONS(2643), + [anon_sym_case] = ACTIONS(2643), + [anon_sym_yield] = ACTIONS(2643), + [anon_sym_LBRACK] = ACTIONS(2641), + [anon_sym_class] = ACTIONS(2643), + [anon_sym_async] = ACTIONS(2643), + [anon_sym_function] = ACTIONS(2643), + [anon_sym_new] = ACTIONS(2643), + [anon_sym_using] = ACTIONS(2643), + [anon_sym_PLUS] = ACTIONS(2643), + [anon_sym_DASH] = ACTIONS(2643), + [anon_sym_SLASH] = ACTIONS(2643), + [anon_sym_LT] = ACTIONS(2641), + [anon_sym_TILDE] = ACTIONS(2641), + [anon_sym_void] = ACTIONS(2643), + [anon_sym_delete] = ACTIONS(2643), + [anon_sym_PLUS_PLUS] = ACTIONS(2641), + [anon_sym_DASH_DASH] = ACTIONS(2641), + [anon_sym_DQUOTE] = ACTIONS(2641), + [anon_sym_SQUOTE] = ACTIONS(2641), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2641), + [sym_number] = ACTIONS(2641), + [sym_private_property_identifier] = ACTIONS(2641), + [sym_this] = ACTIONS(2643), + [sym_super] = ACTIONS(2643), + [sym_true] = ACTIONS(2643), + [sym_false] = ACTIONS(2643), + [sym_null] = ACTIONS(2643), + [sym_undefined] = ACTIONS(2643), + [anon_sym_AT] = ACTIONS(2641), + [anon_sym_static] = ACTIONS(2643), + [anon_sym_readonly] = ACTIONS(2643), + [anon_sym_get] = ACTIONS(2643), + [anon_sym_set] = ACTIONS(2643), + [anon_sym_declare] = ACTIONS(2643), + [anon_sym_public] = ACTIONS(2643), + [anon_sym_private] = ACTIONS(2643), + [anon_sym_protected] = ACTIONS(2643), + [anon_sym_override] = ACTIONS(2643), + [anon_sym_module] = ACTIONS(2643), + [anon_sym_any] = ACTIONS(2643), + [anon_sym_number] = ACTIONS(2643), + [anon_sym_boolean] = ACTIONS(2643), + [anon_sym_string] = ACTIONS(2643), + [anon_sym_symbol] = ACTIONS(2643), + [anon_sym_object] = ACTIONS(2643), + [anon_sym_abstract] = ACTIONS(2643), + [anon_sym_interface] = ACTIONS(2643), + [anon_sym_enum] = ACTIONS(2643), [sym_html_comment] = ACTIONS(5), }, [843] = { - [ts_builtin_sym_end] = ACTIONS(2656), - [sym_identifier] = ACTIONS(2658), - [anon_sym_export] = ACTIONS(2658), - [anon_sym_default] = ACTIONS(2658), - [anon_sym_type] = ACTIONS(2658), - [anon_sym_namespace] = ACTIONS(2658), - [anon_sym_LBRACE] = ACTIONS(2656), - [anon_sym_RBRACE] = ACTIONS(2656), - [anon_sym_typeof] = ACTIONS(2658), - [anon_sym_import] = ACTIONS(2658), - [anon_sym_with] = ACTIONS(2658), - [anon_sym_var] = ACTIONS(2658), - [anon_sym_let] = ACTIONS(2658), - [anon_sym_const] = ACTIONS(2658), - [anon_sym_BANG] = ACTIONS(2656), - [anon_sym_else] = ACTIONS(2658), - [anon_sym_if] = ACTIONS(2658), - [anon_sym_switch] = ACTIONS(2658), - [anon_sym_for] = ACTIONS(2658), - [anon_sym_LPAREN] = ACTIONS(2656), - [anon_sym_SEMI] = ACTIONS(2656), - [anon_sym_await] = ACTIONS(2658), - [anon_sym_while] = ACTIONS(2658), - [anon_sym_do] = ACTIONS(2658), - [anon_sym_try] = ACTIONS(2658), - [anon_sym_break] = ACTIONS(2658), - [anon_sym_continue] = ACTIONS(2658), - [anon_sym_debugger] = ACTIONS(2658), - [anon_sym_return] = ACTIONS(2658), - [anon_sym_throw] = ACTIONS(2658), - [anon_sym_case] = ACTIONS(2658), - [anon_sym_yield] = ACTIONS(2658), - [anon_sym_LBRACK] = ACTIONS(2656), - [sym_glimmer_opening_tag] = ACTIONS(2656), - [anon_sym_class] = ACTIONS(2658), - [anon_sym_async] = ACTIONS(2658), - [anon_sym_function] = ACTIONS(2658), - [anon_sym_new] = ACTIONS(2658), - [anon_sym_using] = ACTIONS(2658), - [anon_sym_PLUS] = ACTIONS(2658), - [anon_sym_DASH] = ACTIONS(2658), - [anon_sym_SLASH] = ACTIONS(2658), - [anon_sym_LT] = ACTIONS(2658), - [anon_sym_TILDE] = ACTIONS(2656), - [anon_sym_void] = ACTIONS(2658), - [anon_sym_delete] = ACTIONS(2658), - [anon_sym_PLUS_PLUS] = ACTIONS(2656), - [anon_sym_DASH_DASH] = ACTIONS(2656), - [anon_sym_DQUOTE] = ACTIONS(2656), - [anon_sym_SQUOTE] = ACTIONS(2656), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2656), - [sym_number] = ACTIONS(2656), - [sym_private_property_identifier] = ACTIONS(2656), - [sym_this] = ACTIONS(2658), - [sym_super] = ACTIONS(2658), - [sym_true] = ACTIONS(2658), - [sym_false] = ACTIONS(2658), - [sym_null] = ACTIONS(2658), - [sym_undefined] = ACTIONS(2658), - [anon_sym_AT] = ACTIONS(2656), - [anon_sym_static] = ACTIONS(2658), - [anon_sym_readonly] = ACTIONS(2658), - [anon_sym_get] = ACTIONS(2658), - [anon_sym_set] = ACTIONS(2658), - [anon_sym_declare] = ACTIONS(2658), - [anon_sym_public] = ACTIONS(2658), - [anon_sym_private] = ACTIONS(2658), - [anon_sym_protected] = ACTIONS(2658), - [anon_sym_override] = ACTIONS(2658), - [anon_sym_module] = ACTIONS(2658), - [anon_sym_any] = ACTIONS(2658), - [anon_sym_number] = ACTIONS(2658), - [anon_sym_boolean] = ACTIONS(2658), - [anon_sym_string] = ACTIONS(2658), - [anon_sym_symbol] = ACTIONS(2658), - [anon_sym_object] = ACTIONS(2658), - [anon_sym_abstract] = ACTIONS(2658), - [anon_sym_interface] = ACTIONS(2658), - [anon_sym_enum] = ACTIONS(2658), + [ts_builtin_sym_end] = ACTIONS(2645), + [sym_identifier] = ACTIONS(2647), + [anon_sym_export] = ACTIONS(2647), + [anon_sym_default] = ACTIONS(2647), + [anon_sym_type] = ACTIONS(2647), + [anon_sym_namespace] = ACTIONS(2647), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_RBRACE] = ACTIONS(2645), + [anon_sym_typeof] = ACTIONS(2647), + [anon_sym_import] = ACTIONS(2647), + [anon_sym_with] = ACTIONS(2647), + [anon_sym_var] = ACTIONS(2647), + [anon_sym_let] = ACTIONS(2647), + [anon_sym_const] = ACTIONS(2647), + [anon_sym_BANG] = ACTIONS(2645), + [anon_sym_else] = ACTIONS(2647), + [anon_sym_if] = ACTIONS(2647), + [anon_sym_switch] = ACTIONS(2647), + [anon_sym_for] = ACTIONS(2647), + [anon_sym_LPAREN] = ACTIONS(2645), + [anon_sym_SEMI] = ACTIONS(2645), + [anon_sym_await] = ACTIONS(2647), + [anon_sym_while] = ACTIONS(2647), + [anon_sym_do] = ACTIONS(2647), + [anon_sym_try] = ACTIONS(2647), + [anon_sym_break] = ACTIONS(2647), + [anon_sym_continue] = ACTIONS(2647), + [anon_sym_debugger] = ACTIONS(2647), + [anon_sym_return] = ACTIONS(2647), + [anon_sym_throw] = ACTIONS(2647), + [anon_sym_case] = ACTIONS(2647), + [anon_sym_yield] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(2645), + [anon_sym_class] = ACTIONS(2647), + [anon_sym_async] = ACTIONS(2647), + [anon_sym_function] = ACTIONS(2647), + [anon_sym_new] = ACTIONS(2647), + [anon_sym_using] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_SLASH] = ACTIONS(2647), + [anon_sym_LT] = ACTIONS(2645), + [anon_sym_TILDE] = ACTIONS(2645), + [anon_sym_void] = ACTIONS(2647), + [anon_sym_delete] = ACTIONS(2647), + [anon_sym_PLUS_PLUS] = ACTIONS(2645), + [anon_sym_DASH_DASH] = ACTIONS(2645), + [anon_sym_DQUOTE] = ACTIONS(2645), + [anon_sym_SQUOTE] = ACTIONS(2645), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2645), + [sym_number] = ACTIONS(2645), + [sym_private_property_identifier] = ACTIONS(2645), + [sym_this] = ACTIONS(2647), + [sym_super] = ACTIONS(2647), + [sym_true] = ACTIONS(2647), + [sym_false] = ACTIONS(2647), + [sym_null] = ACTIONS(2647), + [sym_undefined] = ACTIONS(2647), + [anon_sym_AT] = ACTIONS(2645), + [anon_sym_static] = ACTIONS(2647), + [anon_sym_readonly] = ACTIONS(2647), + [anon_sym_get] = ACTIONS(2647), + [anon_sym_set] = ACTIONS(2647), + [anon_sym_declare] = ACTIONS(2647), + [anon_sym_public] = ACTIONS(2647), + [anon_sym_private] = ACTIONS(2647), + [anon_sym_protected] = ACTIONS(2647), + [anon_sym_override] = ACTIONS(2647), + [anon_sym_module] = ACTIONS(2647), + [anon_sym_any] = ACTIONS(2647), + [anon_sym_number] = ACTIONS(2647), + [anon_sym_boolean] = ACTIONS(2647), + [anon_sym_string] = ACTIONS(2647), + [anon_sym_symbol] = ACTIONS(2647), + [anon_sym_object] = ACTIONS(2647), + [anon_sym_abstract] = ACTIONS(2647), + [anon_sym_interface] = ACTIONS(2647), + [anon_sym_enum] = ACTIONS(2647), [sym_html_comment] = ACTIONS(5), }, [844] = { - [ts_builtin_sym_end] = ACTIONS(2660), - [sym_identifier] = ACTIONS(2662), - [anon_sym_export] = ACTIONS(2662), - [anon_sym_default] = ACTIONS(2662), - [anon_sym_type] = ACTIONS(2662), - [anon_sym_namespace] = ACTIONS(2662), - [anon_sym_LBRACE] = ACTIONS(2660), - [anon_sym_RBRACE] = ACTIONS(2660), - [anon_sym_typeof] = ACTIONS(2662), - [anon_sym_import] = ACTIONS(2662), - [anon_sym_with] = ACTIONS(2662), - [anon_sym_var] = ACTIONS(2662), - [anon_sym_let] = ACTIONS(2662), - [anon_sym_const] = ACTIONS(2662), - [anon_sym_BANG] = ACTIONS(2660), - [anon_sym_else] = ACTIONS(2662), - [anon_sym_if] = ACTIONS(2662), - [anon_sym_switch] = ACTIONS(2662), - [anon_sym_for] = ACTIONS(2662), - [anon_sym_LPAREN] = ACTIONS(2660), - [anon_sym_SEMI] = ACTIONS(2660), - [anon_sym_await] = ACTIONS(2662), - [anon_sym_while] = ACTIONS(2662), - [anon_sym_do] = ACTIONS(2662), - [anon_sym_try] = ACTIONS(2662), - [anon_sym_break] = ACTIONS(2662), - [anon_sym_continue] = ACTIONS(2662), - [anon_sym_debugger] = ACTIONS(2662), - [anon_sym_return] = ACTIONS(2662), - [anon_sym_throw] = ACTIONS(2662), - [anon_sym_case] = ACTIONS(2662), - [anon_sym_yield] = ACTIONS(2662), - [anon_sym_LBRACK] = ACTIONS(2660), - [sym_glimmer_opening_tag] = ACTIONS(2660), - [anon_sym_class] = ACTIONS(2662), - [anon_sym_async] = ACTIONS(2662), - [anon_sym_function] = ACTIONS(2662), - [anon_sym_new] = ACTIONS(2662), - [anon_sym_using] = ACTIONS(2662), - [anon_sym_PLUS] = ACTIONS(2662), - [anon_sym_DASH] = ACTIONS(2662), - [anon_sym_SLASH] = ACTIONS(2662), - [anon_sym_LT] = ACTIONS(2662), - [anon_sym_TILDE] = ACTIONS(2660), - [anon_sym_void] = ACTIONS(2662), - [anon_sym_delete] = ACTIONS(2662), - [anon_sym_PLUS_PLUS] = ACTIONS(2660), - [anon_sym_DASH_DASH] = ACTIONS(2660), - [anon_sym_DQUOTE] = ACTIONS(2660), - [anon_sym_SQUOTE] = ACTIONS(2660), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2660), - [sym_number] = ACTIONS(2660), - [sym_private_property_identifier] = ACTIONS(2660), - [sym_this] = ACTIONS(2662), - [sym_super] = ACTIONS(2662), - [sym_true] = ACTIONS(2662), - [sym_false] = ACTIONS(2662), - [sym_null] = ACTIONS(2662), - [sym_undefined] = ACTIONS(2662), - [anon_sym_AT] = ACTIONS(2660), - [anon_sym_static] = ACTIONS(2662), - [anon_sym_readonly] = ACTIONS(2662), - [anon_sym_get] = ACTIONS(2662), - [anon_sym_set] = ACTIONS(2662), - [anon_sym_declare] = ACTIONS(2662), - [anon_sym_public] = ACTIONS(2662), - [anon_sym_private] = ACTIONS(2662), - [anon_sym_protected] = ACTIONS(2662), - [anon_sym_override] = ACTIONS(2662), - [anon_sym_module] = ACTIONS(2662), - [anon_sym_any] = ACTIONS(2662), - [anon_sym_number] = ACTIONS(2662), - [anon_sym_boolean] = ACTIONS(2662), - [anon_sym_string] = ACTIONS(2662), - [anon_sym_symbol] = ACTIONS(2662), - [anon_sym_object] = ACTIONS(2662), - [anon_sym_abstract] = ACTIONS(2662), - [anon_sym_interface] = ACTIONS(2662), - [anon_sym_enum] = ACTIONS(2662), + [ts_builtin_sym_end] = ACTIONS(2649), + [sym_identifier] = ACTIONS(2651), + [anon_sym_export] = ACTIONS(2651), + [anon_sym_default] = ACTIONS(2651), + [anon_sym_type] = ACTIONS(2651), + [anon_sym_namespace] = ACTIONS(2651), + [anon_sym_LBRACE] = ACTIONS(2649), + [anon_sym_RBRACE] = ACTIONS(2649), + [anon_sym_typeof] = ACTIONS(2651), + [anon_sym_import] = ACTIONS(2651), + [anon_sym_with] = ACTIONS(2651), + [anon_sym_var] = ACTIONS(2651), + [anon_sym_let] = ACTIONS(2651), + [anon_sym_const] = ACTIONS(2651), + [anon_sym_BANG] = ACTIONS(2649), + [anon_sym_else] = ACTIONS(2651), + [anon_sym_if] = ACTIONS(2651), + [anon_sym_switch] = ACTIONS(2651), + [anon_sym_for] = ACTIONS(2651), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_SEMI] = ACTIONS(2649), + [anon_sym_await] = ACTIONS(2651), + [anon_sym_while] = ACTIONS(2651), + [anon_sym_do] = ACTIONS(2651), + [anon_sym_try] = ACTIONS(2651), + [anon_sym_break] = ACTIONS(2651), + [anon_sym_continue] = ACTIONS(2651), + [anon_sym_debugger] = ACTIONS(2651), + [anon_sym_return] = ACTIONS(2651), + [anon_sym_throw] = ACTIONS(2651), + [anon_sym_case] = ACTIONS(2651), + [anon_sym_yield] = ACTIONS(2651), + [anon_sym_LBRACK] = ACTIONS(2649), + [anon_sym_class] = ACTIONS(2651), + [anon_sym_async] = ACTIONS(2651), + [anon_sym_function] = ACTIONS(2651), + [anon_sym_new] = ACTIONS(2651), + [anon_sym_using] = ACTIONS(2651), + [anon_sym_PLUS] = ACTIONS(2651), + [anon_sym_DASH] = ACTIONS(2651), + [anon_sym_SLASH] = ACTIONS(2651), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_TILDE] = ACTIONS(2649), + [anon_sym_void] = ACTIONS(2651), + [anon_sym_delete] = ACTIONS(2651), + [anon_sym_PLUS_PLUS] = ACTIONS(2649), + [anon_sym_DASH_DASH] = ACTIONS(2649), + [anon_sym_DQUOTE] = ACTIONS(2649), + [anon_sym_SQUOTE] = ACTIONS(2649), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2649), + [sym_number] = ACTIONS(2649), + [sym_private_property_identifier] = ACTIONS(2649), + [sym_this] = ACTIONS(2651), + [sym_super] = ACTIONS(2651), + [sym_true] = ACTIONS(2651), + [sym_false] = ACTIONS(2651), + [sym_null] = ACTIONS(2651), + [sym_undefined] = ACTIONS(2651), + [anon_sym_AT] = ACTIONS(2649), + [anon_sym_static] = ACTIONS(2651), + [anon_sym_readonly] = ACTIONS(2651), + [anon_sym_get] = ACTIONS(2651), + [anon_sym_set] = ACTIONS(2651), + [anon_sym_declare] = ACTIONS(2651), + [anon_sym_public] = ACTIONS(2651), + [anon_sym_private] = ACTIONS(2651), + [anon_sym_protected] = ACTIONS(2651), + [anon_sym_override] = ACTIONS(2651), + [anon_sym_module] = ACTIONS(2651), + [anon_sym_any] = ACTIONS(2651), + [anon_sym_number] = ACTIONS(2651), + [anon_sym_boolean] = ACTIONS(2651), + [anon_sym_string] = ACTIONS(2651), + [anon_sym_symbol] = ACTIONS(2651), + [anon_sym_object] = ACTIONS(2651), + [anon_sym_abstract] = ACTIONS(2651), + [anon_sym_interface] = ACTIONS(2651), + [anon_sym_enum] = ACTIONS(2651), [sym_html_comment] = ACTIONS(5), }, [845] = { - [ts_builtin_sym_end] = ACTIONS(2664), - [sym_identifier] = ACTIONS(2666), - [anon_sym_export] = ACTIONS(2666), - [anon_sym_default] = ACTIONS(2666), - [anon_sym_type] = ACTIONS(2666), - [anon_sym_namespace] = ACTIONS(2666), - [anon_sym_LBRACE] = ACTIONS(2664), - [anon_sym_RBRACE] = ACTIONS(2664), - [anon_sym_typeof] = ACTIONS(2666), - [anon_sym_import] = ACTIONS(2666), - [anon_sym_with] = ACTIONS(2666), - [anon_sym_var] = ACTIONS(2666), - [anon_sym_let] = ACTIONS(2666), - [anon_sym_const] = ACTIONS(2666), - [anon_sym_BANG] = ACTIONS(2664), - [anon_sym_else] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2666), - [anon_sym_switch] = ACTIONS(2666), - [anon_sym_for] = ACTIONS(2666), - [anon_sym_LPAREN] = ACTIONS(2664), - [anon_sym_SEMI] = ACTIONS(2664), - [anon_sym_await] = ACTIONS(2666), - [anon_sym_while] = ACTIONS(2666), - [anon_sym_do] = ACTIONS(2666), - [anon_sym_try] = ACTIONS(2666), - [anon_sym_break] = ACTIONS(2666), - [anon_sym_continue] = ACTIONS(2666), - [anon_sym_debugger] = ACTIONS(2666), - [anon_sym_return] = ACTIONS(2666), - [anon_sym_throw] = ACTIONS(2666), - [anon_sym_case] = ACTIONS(2666), - [anon_sym_yield] = ACTIONS(2666), - [anon_sym_LBRACK] = ACTIONS(2664), - [sym_glimmer_opening_tag] = ACTIONS(2664), - [anon_sym_class] = ACTIONS(2666), - [anon_sym_async] = ACTIONS(2666), - [anon_sym_function] = ACTIONS(2666), - [anon_sym_new] = ACTIONS(2666), - [anon_sym_using] = ACTIONS(2666), - [anon_sym_PLUS] = ACTIONS(2666), - [anon_sym_DASH] = ACTIONS(2666), - [anon_sym_SLASH] = ACTIONS(2666), - [anon_sym_LT] = ACTIONS(2666), - [anon_sym_TILDE] = ACTIONS(2664), - [anon_sym_void] = ACTIONS(2666), - [anon_sym_delete] = ACTIONS(2666), - [anon_sym_PLUS_PLUS] = ACTIONS(2664), - [anon_sym_DASH_DASH] = ACTIONS(2664), - [anon_sym_DQUOTE] = ACTIONS(2664), - [anon_sym_SQUOTE] = ACTIONS(2664), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2664), - [sym_number] = ACTIONS(2664), - [sym_private_property_identifier] = ACTIONS(2664), - [sym_this] = ACTIONS(2666), - [sym_super] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_null] = ACTIONS(2666), - [sym_undefined] = ACTIONS(2666), - [anon_sym_AT] = ACTIONS(2664), - [anon_sym_static] = ACTIONS(2666), - [anon_sym_readonly] = ACTIONS(2666), - [anon_sym_get] = ACTIONS(2666), - [anon_sym_set] = ACTIONS(2666), - [anon_sym_declare] = ACTIONS(2666), - [anon_sym_public] = ACTIONS(2666), - [anon_sym_private] = ACTIONS(2666), - [anon_sym_protected] = ACTIONS(2666), - [anon_sym_override] = ACTIONS(2666), - [anon_sym_module] = ACTIONS(2666), - [anon_sym_any] = ACTIONS(2666), - [anon_sym_number] = ACTIONS(2666), - [anon_sym_boolean] = ACTIONS(2666), - [anon_sym_string] = ACTIONS(2666), - [anon_sym_symbol] = ACTIONS(2666), - [anon_sym_object] = ACTIONS(2666), - [anon_sym_abstract] = ACTIONS(2666), - [anon_sym_interface] = ACTIONS(2666), - [anon_sym_enum] = ACTIONS(2666), + [ts_builtin_sym_end] = ACTIONS(2653), + [sym_identifier] = ACTIONS(2655), + [anon_sym_export] = ACTIONS(2655), + [anon_sym_default] = ACTIONS(2655), + [anon_sym_type] = ACTIONS(2655), + [anon_sym_namespace] = ACTIONS(2655), + [anon_sym_LBRACE] = ACTIONS(2653), + [anon_sym_RBRACE] = ACTIONS(2653), + [anon_sym_typeof] = ACTIONS(2655), + [anon_sym_import] = ACTIONS(2655), + [anon_sym_with] = ACTIONS(2655), + [anon_sym_var] = ACTIONS(2655), + [anon_sym_let] = ACTIONS(2655), + [anon_sym_const] = ACTIONS(2655), + [anon_sym_BANG] = ACTIONS(2653), + [anon_sym_else] = ACTIONS(2655), + [anon_sym_if] = ACTIONS(2655), + [anon_sym_switch] = ACTIONS(2655), + [anon_sym_for] = ACTIONS(2655), + [anon_sym_LPAREN] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2653), + [anon_sym_await] = ACTIONS(2655), + [anon_sym_while] = ACTIONS(2655), + [anon_sym_do] = ACTIONS(2655), + [anon_sym_try] = ACTIONS(2655), + [anon_sym_break] = ACTIONS(2655), + [anon_sym_continue] = ACTIONS(2655), + [anon_sym_debugger] = ACTIONS(2655), + [anon_sym_return] = ACTIONS(2655), + [anon_sym_throw] = ACTIONS(2655), + [anon_sym_case] = ACTIONS(2655), + [anon_sym_yield] = ACTIONS(2655), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_class] = ACTIONS(2655), + [anon_sym_async] = ACTIONS(2655), + [anon_sym_function] = ACTIONS(2655), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_using] = ACTIONS(2655), + [anon_sym_PLUS] = ACTIONS(2655), + [anon_sym_DASH] = ACTIONS(2655), + [anon_sym_SLASH] = ACTIONS(2655), + [anon_sym_LT] = ACTIONS(2653), + [anon_sym_TILDE] = ACTIONS(2653), + [anon_sym_void] = ACTIONS(2655), + [anon_sym_delete] = ACTIONS(2655), + [anon_sym_PLUS_PLUS] = ACTIONS(2653), + [anon_sym_DASH_DASH] = ACTIONS(2653), + [anon_sym_DQUOTE] = ACTIONS(2653), + [anon_sym_SQUOTE] = ACTIONS(2653), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2653), + [sym_number] = ACTIONS(2653), + [sym_private_property_identifier] = ACTIONS(2653), + [sym_this] = ACTIONS(2655), + [sym_super] = ACTIONS(2655), + [sym_true] = ACTIONS(2655), + [sym_false] = ACTIONS(2655), + [sym_null] = ACTIONS(2655), + [sym_undefined] = ACTIONS(2655), + [anon_sym_AT] = ACTIONS(2653), + [anon_sym_static] = ACTIONS(2655), + [anon_sym_readonly] = ACTIONS(2655), + [anon_sym_get] = ACTIONS(2655), + [anon_sym_set] = ACTIONS(2655), + [anon_sym_declare] = ACTIONS(2655), + [anon_sym_public] = ACTIONS(2655), + [anon_sym_private] = ACTIONS(2655), + [anon_sym_protected] = ACTIONS(2655), + [anon_sym_override] = ACTIONS(2655), + [anon_sym_module] = ACTIONS(2655), + [anon_sym_any] = ACTIONS(2655), + [anon_sym_number] = ACTIONS(2655), + [anon_sym_boolean] = ACTIONS(2655), + [anon_sym_string] = ACTIONS(2655), + [anon_sym_symbol] = ACTIONS(2655), + [anon_sym_object] = ACTIONS(2655), + [anon_sym_abstract] = ACTIONS(2655), + [anon_sym_interface] = ACTIONS(2655), + [anon_sym_enum] = ACTIONS(2655), [sym_html_comment] = ACTIONS(5), }, [846] = { - [ts_builtin_sym_end] = ACTIONS(2668), - [sym_identifier] = ACTIONS(2670), - [anon_sym_export] = ACTIONS(2670), - [anon_sym_default] = ACTIONS(2670), - [anon_sym_type] = ACTIONS(2670), - [anon_sym_namespace] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2668), - [anon_sym_RBRACE] = ACTIONS(2668), - [anon_sym_typeof] = ACTIONS(2670), - [anon_sym_import] = ACTIONS(2670), - [anon_sym_with] = ACTIONS(2670), - [anon_sym_var] = ACTIONS(2670), - [anon_sym_let] = ACTIONS(2670), - [anon_sym_const] = ACTIONS(2670), - [anon_sym_BANG] = ACTIONS(2668), - [anon_sym_else] = ACTIONS(2670), - [anon_sym_if] = ACTIONS(2670), - [anon_sym_switch] = ACTIONS(2670), - [anon_sym_for] = ACTIONS(2670), - [anon_sym_LPAREN] = ACTIONS(2668), - [anon_sym_SEMI] = ACTIONS(2668), - [anon_sym_await] = ACTIONS(2670), - [anon_sym_while] = ACTIONS(2670), - [anon_sym_do] = ACTIONS(2670), - [anon_sym_try] = ACTIONS(2670), - [anon_sym_break] = ACTIONS(2670), - [anon_sym_continue] = ACTIONS(2670), - [anon_sym_debugger] = ACTIONS(2670), - [anon_sym_return] = ACTIONS(2670), - [anon_sym_throw] = ACTIONS(2670), - [anon_sym_case] = ACTIONS(2670), - [anon_sym_yield] = ACTIONS(2670), - [anon_sym_LBRACK] = ACTIONS(2668), - [sym_glimmer_opening_tag] = ACTIONS(2668), - [anon_sym_class] = ACTIONS(2670), - [anon_sym_async] = ACTIONS(2670), - [anon_sym_function] = ACTIONS(2670), - [anon_sym_new] = ACTIONS(2670), - [anon_sym_using] = ACTIONS(2670), - [anon_sym_PLUS] = ACTIONS(2670), - [anon_sym_DASH] = ACTIONS(2670), - [anon_sym_SLASH] = ACTIONS(2670), - [anon_sym_LT] = ACTIONS(2670), - [anon_sym_TILDE] = ACTIONS(2668), - [anon_sym_void] = ACTIONS(2670), - [anon_sym_delete] = ACTIONS(2670), - [anon_sym_PLUS_PLUS] = ACTIONS(2668), - [anon_sym_DASH_DASH] = ACTIONS(2668), - [anon_sym_DQUOTE] = ACTIONS(2668), - [anon_sym_SQUOTE] = ACTIONS(2668), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2668), - [sym_number] = ACTIONS(2668), - [sym_private_property_identifier] = ACTIONS(2668), - [sym_this] = ACTIONS(2670), - [sym_super] = ACTIONS(2670), - [sym_true] = ACTIONS(2670), - [sym_false] = ACTIONS(2670), - [sym_null] = ACTIONS(2670), - [sym_undefined] = ACTIONS(2670), - [anon_sym_AT] = ACTIONS(2668), - [anon_sym_static] = ACTIONS(2670), - [anon_sym_readonly] = ACTIONS(2670), - [anon_sym_get] = ACTIONS(2670), - [anon_sym_set] = ACTIONS(2670), - [anon_sym_declare] = ACTIONS(2670), - [anon_sym_public] = ACTIONS(2670), - [anon_sym_private] = ACTIONS(2670), - [anon_sym_protected] = ACTIONS(2670), - [anon_sym_override] = ACTIONS(2670), - [anon_sym_module] = ACTIONS(2670), - [anon_sym_any] = ACTIONS(2670), - [anon_sym_number] = ACTIONS(2670), - [anon_sym_boolean] = ACTIONS(2670), - [anon_sym_string] = ACTIONS(2670), - [anon_sym_symbol] = ACTIONS(2670), - [anon_sym_object] = ACTIONS(2670), - [anon_sym_abstract] = ACTIONS(2670), - [anon_sym_interface] = ACTIONS(2670), - [anon_sym_enum] = ACTIONS(2670), + [ts_builtin_sym_end] = ACTIONS(2657), + [sym_identifier] = ACTIONS(2659), + [anon_sym_export] = ACTIONS(2659), + [anon_sym_default] = ACTIONS(2659), + [anon_sym_type] = ACTIONS(2659), + [anon_sym_namespace] = ACTIONS(2659), + [anon_sym_LBRACE] = ACTIONS(2657), + [anon_sym_RBRACE] = ACTIONS(2657), + [anon_sym_typeof] = ACTIONS(2659), + [anon_sym_import] = ACTIONS(2659), + [anon_sym_with] = ACTIONS(2659), + [anon_sym_var] = ACTIONS(2659), + [anon_sym_let] = ACTIONS(2659), + [anon_sym_const] = ACTIONS(2659), + [anon_sym_BANG] = ACTIONS(2657), + [anon_sym_else] = ACTIONS(2659), + [anon_sym_if] = ACTIONS(2659), + [anon_sym_switch] = ACTIONS(2659), + [anon_sym_for] = ACTIONS(2659), + [anon_sym_LPAREN] = ACTIONS(2657), + [anon_sym_SEMI] = ACTIONS(2657), + [anon_sym_await] = ACTIONS(2659), + [anon_sym_while] = ACTIONS(2659), + [anon_sym_do] = ACTIONS(2659), + [anon_sym_try] = ACTIONS(2659), + [anon_sym_break] = ACTIONS(2659), + [anon_sym_continue] = ACTIONS(2659), + [anon_sym_debugger] = ACTIONS(2659), + [anon_sym_return] = ACTIONS(2659), + [anon_sym_throw] = ACTIONS(2659), + [anon_sym_case] = ACTIONS(2659), + [anon_sym_yield] = ACTIONS(2659), + [anon_sym_LBRACK] = ACTIONS(2657), + [anon_sym_class] = ACTIONS(2659), + [anon_sym_async] = ACTIONS(2659), + [anon_sym_function] = ACTIONS(2659), + [anon_sym_new] = ACTIONS(2659), + [anon_sym_using] = ACTIONS(2659), + [anon_sym_PLUS] = ACTIONS(2659), + [anon_sym_DASH] = ACTIONS(2659), + [anon_sym_SLASH] = ACTIONS(2659), + [anon_sym_LT] = ACTIONS(2657), + [anon_sym_TILDE] = ACTIONS(2657), + [anon_sym_void] = ACTIONS(2659), + [anon_sym_delete] = ACTIONS(2659), + [anon_sym_PLUS_PLUS] = ACTIONS(2657), + [anon_sym_DASH_DASH] = ACTIONS(2657), + [anon_sym_DQUOTE] = ACTIONS(2657), + [anon_sym_SQUOTE] = ACTIONS(2657), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2657), + [sym_number] = ACTIONS(2657), + [sym_private_property_identifier] = ACTIONS(2657), + [sym_this] = ACTIONS(2659), + [sym_super] = ACTIONS(2659), + [sym_true] = ACTIONS(2659), + [sym_false] = ACTIONS(2659), + [sym_null] = ACTIONS(2659), + [sym_undefined] = ACTIONS(2659), + [anon_sym_AT] = ACTIONS(2657), + [anon_sym_static] = ACTIONS(2659), + [anon_sym_readonly] = ACTIONS(2659), + [anon_sym_get] = ACTIONS(2659), + [anon_sym_set] = ACTIONS(2659), + [anon_sym_declare] = ACTIONS(2659), + [anon_sym_public] = ACTIONS(2659), + [anon_sym_private] = ACTIONS(2659), + [anon_sym_protected] = ACTIONS(2659), + [anon_sym_override] = ACTIONS(2659), + [anon_sym_module] = ACTIONS(2659), + [anon_sym_any] = ACTIONS(2659), + [anon_sym_number] = ACTIONS(2659), + [anon_sym_boolean] = ACTIONS(2659), + [anon_sym_string] = ACTIONS(2659), + [anon_sym_symbol] = ACTIONS(2659), + [anon_sym_object] = ACTIONS(2659), + [anon_sym_abstract] = ACTIONS(2659), + [anon_sym_interface] = ACTIONS(2659), + [anon_sym_enum] = ACTIONS(2659), [sym_html_comment] = ACTIONS(5), }, [847] = { - [ts_builtin_sym_end] = ACTIONS(2672), - [sym_identifier] = ACTIONS(2674), - [anon_sym_export] = ACTIONS(2674), - [anon_sym_default] = ACTIONS(2674), - [anon_sym_type] = ACTIONS(2674), - [anon_sym_namespace] = ACTIONS(2674), - [anon_sym_LBRACE] = ACTIONS(2672), - [anon_sym_RBRACE] = ACTIONS(2672), - [anon_sym_typeof] = ACTIONS(2674), - [anon_sym_import] = ACTIONS(2674), - [anon_sym_with] = ACTIONS(2674), - [anon_sym_var] = ACTIONS(2674), - [anon_sym_let] = ACTIONS(2674), - [anon_sym_const] = ACTIONS(2674), - [anon_sym_BANG] = ACTIONS(2672), - [anon_sym_else] = ACTIONS(2674), - [anon_sym_if] = ACTIONS(2674), - [anon_sym_switch] = ACTIONS(2674), - [anon_sym_for] = ACTIONS(2674), - [anon_sym_LPAREN] = ACTIONS(2672), - [anon_sym_SEMI] = ACTIONS(2672), - [anon_sym_await] = ACTIONS(2674), - [anon_sym_while] = ACTIONS(2674), - [anon_sym_do] = ACTIONS(2674), - [anon_sym_try] = ACTIONS(2674), - [anon_sym_break] = ACTIONS(2674), - [anon_sym_continue] = ACTIONS(2674), - [anon_sym_debugger] = ACTIONS(2674), - [anon_sym_return] = ACTIONS(2674), - [anon_sym_throw] = ACTIONS(2674), - [anon_sym_case] = ACTIONS(2674), - [anon_sym_yield] = ACTIONS(2674), - [anon_sym_LBRACK] = ACTIONS(2672), - [sym_glimmer_opening_tag] = ACTIONS(2672), - [anon_sym_class] = ACTIONS(2674), - [anon_sym_async] = ACTIONS(2674), - [anon_sym_function] = ACTIONS(2674), - [anon_sym_new] = ACTIONS(2674), - [anon_sym_using] = ACTIONS(2674), - [anon_sym_PLUS] = ACTIONS(2674), - [anon_sym_DASH] = ACTIONS(2674), - [anon_sym_SLASH] = ACTIONS(2674), - [anon_sym_LT] = ACTIONS(2674), - [anon_sym_TILDE] = ACTIONS(2672), - [anon_sym_void] = ACTIONS(2674), - [anon_sym_delete] = ACTIONS(2674), - [anon_sym_PLUS_PLUS] = ACTIONS(2672), - [anon_sym_DASH_DASH] = ACTIONS(2672), - [anon_sym_DQUOTE] = ACTIONS(2672), - [anon_sym_SQUOTE] = ACTIONS(2672), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2672), - [sym_number] = ACTIONS(2672), - [sym_private_property_identifier] = ACTIONS(2672), - [sym_this] = ACTIONS(2674), - [sym_super] = ACTIONS(2674), - [sym_true] = ACTIONS(2674), - [sym_false] = ACTIONS(2674), - [sym_null] = ACTIONS(2674), - [sym_undefined] = ACTIONS(2674), - [anon_sym_AT] = ACTIONS(2672), - [anon_sym_static] = ACTIONS(2674), - [anon_sym_readonly] = ACTIONS(2674), - [anon_sym_get] = ACTIONS(2674), - [anon_sym_set] = ACTIONS(2674), - [anon_sym_declare] = ACTIONS(2674), - [anon_sym_public] = ACTIONS(2674), - [anon_sym_private] = ACTIONS(2674), - [anon_sym_protected] = ACTIONS(2674), - [anon_sym_override] = ACTIONS(2674), - [anon_sym_module] = ACTIONS(2674), - [anon_sym_any] = ACTIONS(2674), - [anon_sym_number] = ACTIONS(2674), - [anon_sym_boolean] = ACTIONS(2674), - [anon_sym_string] = ACTIONS(2674), - [anon_sym_symbol] = ACTIONS(2674), - [anon_sym_object] = ACTIONS(2674), - [anon_sym_abstract] = ACTIONS(2674), - [anon_sym_interface] = ACTIONS(2674), - [anon_sym_enum] = ACTIONS(2674), + [ts_builtin_sym_end] = ACTIONS(2661), + [sym_identifier] = ACTIONS(2663), + [anon_sym_export] = ACTIONS(2663), + [anon_sym_default] = ACTIONS(2663), + [anon_sym_type] = ACTIONS(2663), + [anon_sym_namespace] = ACTIONS(2663), + [anon_sym_LBRACE] = ACTIONS(2661), + [anon_sym_RBRACE] = ACTIONS(2661), + [anon_sym_typeof] = ACTIONS(2663), + [anon_sym_import] = ACTIONS(2663), + [anon_sym_with] = ACTIONS(2663), + [anon_sym_var] = ACTIONS(2663), + [anon_sym_let] = ACTIONS(2663), + [anon_sym_const] = ACTIONS(2663), + [anon_sym_BANG] = ACTIONS(2661), + [anon_sym_else] = ACTIONS(2663), + [anon_sym_if] = ACTIONS(2663), + [anon_sym_switch] = ACTIONS(2663), + [anon_sym_for] = ACTIONS(2663), + [anon_sym_LPAREN] = ACTIONS(2661), + [anon_sym_SEMI] = ACTIONS(2661), + [anon_sym_await] = ACTIONS(2663), + [anon_sym_while] = ACTIONS(2663), + [anon_sym_do] = ACTIONS(2663), + [anon_sym_try] = ACTIONS(2663), + [anon_sym_break] = ACTIONS(2663), + [anon_sym_continue] = ACTIONS(2663), + [anon_sym_debugger] = ACTIONS(2663), + [anon_sym_return] = ACTIONS(2663), + [anon_sym_throw] = ACTIONS(2663), + [anon_sym_case] = ACTIONS(2663), + [anon_sym_yield] = ACTIONS(2663), + [anon_sym_LBRACK] = ACTIONS(2661), + [anon_sym_class] = ACTIONS(2663), + [anon_sym_async] = ACTIONS(2663), + [anon_sym_function] = ACTIONS(2663), + [anon_sym_new] = ACTIONS(2663), + [anon_sym_using] = ACTIONS(2663), + [anon_sym_PLUS] = ACTIONS(2663), + [anon_sym_DASH] = ACTIONS(2663), + [anon_sym_SLASH] = ACTIONS(2663), + [anon_sym_LT] = ACTIONS(2661), + [anon_sym_TILDE] = ACTIONS(2661), + [anon_sym_void] = ACTIONS(2663), + [anon_sym_delete] = ACTIONS(2663), + [anon_sym_PLUS_PLUS] = ACTIONS(2661), + [anon_sym_DASH_DASH] = ACTIONS(2661), + [anon_sym_DQUOTE] = ACTIONS(2661), + [anon_sym_SQUOTE] = ACTIONS(2661), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2661), + [sym_number] = ACTIONS(2661), + [sym_private_property_identifier] = ACTIONS(2661), + [sym_this] = ACTIONS(2663), + [sym_super] = ACTIONS(2663), + [sym_true] = ACTIONS(2663), + [sym_false] = ACTIONS(2663), + [sym_null] = ACTIONS(2663), + [sym_undefined] = ACTIONS(2663), + [anon_sym_AT] = ACTIONS(2661), + [anon_sym_static] = ACTIONS(2663), + [anon_sym_readonly] = ACTIONS(2663), + [anon_sym_get] = ACTIONS(2663), + [anon_sym_set] = ACTIONS(2663), + [anon_sym_declare] = ACTIONS(2663), + [anon_sym_public] = ACTIONS(2663), + [anon_sym_private] = ACTIONS(2663), + [anon_sym_protected] = ACTIONS(2663), + [anon_sym_override] = ACTIONS(2663), + [anon_sym_module] = ACTIONS(2663), + [anon_sym_any] = ACTIONS(2663), + [anon_sym_number] = ACTIONS(2663), + [anon_sym_boolean] = ACTIONS(2663), + [anon_sym_string] = ACTIONS(2663), + [anon_sym_symbol] = ACTIONS(2663), + [anon_sym_object] = ACTIONS(2663), + [anon_sym_abstract] = ACTIONS(2663), + [anon_sym_interface] = ACTIONS(2663), + [anon_sym_enum] = ACTIONS(2663), [sym_html_comment] = ACTIONS(5), }, [848] = { - [ts_builtin_sym_end] = ACTIONS(2676), - [sym_identifier] = ACTIONS(2678), - [anon_sym_export] = ACTIONS(2678), - [anon_sym_default] = ACTIONS(2678), - [anon_sym_type] = ACTIONS(2678), - [anon_sym_namespace] = ACTIONS(2678), - [anon_sym_LBRACE] = ACTIONS(2676), - [anon_sym_RBRACE] = ACTIONS(2676), - [anon_sym_typeof] = ACTIONS(2678), - [anon_sym_import] = ACTIONS(2678), - [anon_sym_with] = ACTIONS(2678), - [anon_sym_var] = ACTIONS(2678), - [anon_sym_let] = ACTIONS(2678), - [anon_sym_const] = ACTIONS(2678), - [anon_sym_BANG] = ACTIONS(2676), - [anon_sym_else] = ACTIONS(2678), - [anon_sym_if] = ACTIONS(2678), - [anon_sym_switch] = ACTIONS(2678), - [anon_sym_for] = ACTIONS(2678), - [anon_sym_LPAREN] = ACTIONS(2676), - [anon_sym_SEMI] = ACTIONS(2676), - [anon_sym_await] = ACTIONS(2678), - [anon_sym_while] = ACTIONS(2678), - [anon_sym_do] = ACTIONS(2678), - [anon_sym_try] = ACTIONS(2678), - [anon_sym_break] = ACTIONS(2678), - [anon_sym_continue] = ACTIONS(2678), - [anon_sym_debugger] = ACTIONS(2678), - [anon_sym_return] = ACTIONS(2678), - [anon_sym_throw] = ACTIONS(2678), - [anon_sym_case] = ACTIONS(2678), - [anon_sym_yield] = ACTIONS(2678), - [anon_sym_LBRACK] = ACTIONS(2676), - [sym_glimmer_opening_tag] = ACTIONS(2676), - [anon_sym_class] = ACTIONS(2678), - [anon_sym_async] = ACTIONS(2678), - [anon_sym_function] = ACTIONS(2678), - [anon_sym_new] = ACTIONS(2678), - [anon_sym_using] = ACTIONS(2678), - [anon_sym_PLUS] = ACTIONS(2678), - [anon_sym_DASH] = ACTIONS(2678), - [anon_sym_SLASH] = ACTIONS(2678), - [anon_sym_LT] = ACTIONS(2678), - [anon_sym_TILDE] = ACTIONS(2676), - [anon_sym_void] = ACTIONS(2678), - [anon_sym_delete] = ACTIONS(2678), - [anon_sym_PLUS_PLUS] = ACTIONS(2676), - [anon_sym_DASH_DASH] = ACTIONS(2676), - [anon_sym_DQUOTE] = ACTIONS(2676), - [anon_sym_SQUOTE] = ACTIONS(2676), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2676), - [sym_number] = ACTIONS(2676), - [sym_private_property_identifier] = ACTIONS(2676), - [sym_this] = ACTIONS(2678), - [sym_super] = ACTIONS(2678), - [sym_true] = ACTIONS(2678), - [sym_false] = ACTIONS(2678), - [sym_null] = ACTIONS(2678), - [sym_undefined] = ACTIONS(2678), - [anon_sym_AT] = ACTIONS(2676), - [anon_sym_static] = ACTIONS(2678), - [anon_sym_readonly] = ACTIONS(2678), - [anon_sym_get] = ACTIONS(2678), - [anon_sym_set] = ACTIONS(2678), - [anon_sym_declare] = ACTIONS(2678), - [anon_sym_public] = ACTIONS(2678), - [anon_sym_private] = ACTIONS(2678), - [anon_sym_protected] = ACTIONS(2678), - [anon_sym_override] = ACTIONS(2678), - [anon_sym_module] = ACTIONS(2678), - [anon_sym_any] = ACTIONS(2678), - [anon_sym_number] = ACTIONS(2678), - [anon_sym_boolean] = ACTIONS(2678), - [anon_sym_string] = ACTIONS(2678), - [anon_sym_symbol] = ACTIONS(2678), - [anon_sym_object] = ACTIONS(2678), - [anon_sym_abstract] = ACTIONS(2678), - [anon_sym_interface] = ACTIONS(2678), - [anon_sym_enum] = ACTIONS(2678), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_rest_pattern] = STATE(5165), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3773), + [sym_tuple_parameter] = STATE(5278), + [sym_optional_tuple_parameter] = STATE(5278), + [sym_optional_type] = STATE(5278), + [sym_rest_type] = STATE(5278), + [sym__tuple_type_member] = STATE(5278), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(2489), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(2665), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2495), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [849] = { - [ts_builtin_sym_end] = ACTIONS(2680), - [sym_identifier] = ACTIONS(2682), - [anon_sym_export] = ACTIONS(2682), - [anon_sym_default] = ACTIONS(2682), - [anon_sym_type] = ACTIONS(2682), - [anon_sym_namespace] = ACTIONS(2682), - [anon_sym_LBRACE] = ACTIONS(2680), - [anon_sym_RBRACE] = ACTIONS(2680), - [anon_sym_typeof] = ACTIONS(2682), - [anon_sym_import] = ACTIONS(2682), - [anon_sym_with] = ACTIONS(2682), - [anon_sym_var] = ACTIONS(2682), - [anon_sym_let] = ACTIONS(2682), - [anon_sym_const] = ACTIONS(2682), - [anon_sym_BANG] = ACTIONS(2680), - [anon_sym_else] = ACTIONS(2682), - [anon_sym_if] = ACTIONS(2682), - [anon_sym_switch] = ACTIONS(2682), - [anon_sym_for] = ACTIONS(2682), - [anon_sym_LPAREN] = ACTIONS(2680), - [anon_sym_SEMI] = ACTIONS(2680), - [anon_sym_await] = ACTIONS(2682), - [anon_sym_while] = ACTIONS(2682), - [anon_sym_do] = ACTIONS(2682), - [anon_sym_try] = ACTIONS(2682), - [anon_sym_break] = ACTIONS(2682), - [anon_sym_continue] = ACTIONS(2682), - [anon_sym_debugger] = ACTIONS(2682), - [anon_sym_return] = ACTIONS(2682), - [anon_sym_throw] = ACTIONS(2682), - [anon_sym_case] = ACTIONS(2682), - [anon_sym_yield] = ACTIONS(2682), - [anon_sym_LBRACK] = ACTIONS(2680), - [sym_glimmer_opening_tag] = ACTIONS(2680), - [anon_sym_class] = ACTIONS(2682), - [anon_sym_async] = ACTIONS(2682), - [anon_sym_function] = ACTIONS(2682), - [anon_sym_new] = ACTIONS(2682), - [anon_sym_using] = ACTIONS(2682), - [anon_sym_PLUS] = ACTIONS(2682), - [anon_sym_DASH] = ACTIONS(2682), - [anon_sym_SLASH] = ACTIONS(2682), - [anon_sym_LT] = ACTIONS(2682), - [anon_sym_TILDE] = ACTIONS(2680), - [anon_sym_void] = ACTIONS(2682), - [anon_sym_delete] = ACTIONS(2682), - [anon_sym_PLUS_PLUS] = ACTIONS(2680), - [anon_sym_DASH_DASH] = ACTIONS(2680), - [anon_sym_DQUOTE] = ACTIONS(2680), - [anon_sym_SQUOTE] = ACTIONS(2680), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2680), - [sym_number] = ACTIONS(2680), - [sym_private_property_identifier] = ACTIONS(2680), - [sym_this] = ACTIONS(2682), - [sym_super] = ACTIONS(2682), - [sym_true] = ACTIONS(2682), - [sym_false] = ACTIONS(2682), - [sym_null] = ACTIONS(2682), - [sym_undefined] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2680), - [anon_sym_static] = ACTIONS(2682), - [anon_sym_readonly] = ACTIONS(2682), - [anon_sym_get] = ACTIONS(2682), - [anon_sym_set] = ACTIONS(2682), - [anon_sym_declare] = ACTIONS(2682), - [anon_sym_public] = ACTIONS(2682), - [anon_sym_private] = ACTIONS(2682), - [anon_sym_protected] = ACTIONS(2682), - [anon_sym_override] = ACTIONS(2682), - [anon_sym_module] = ACTIONS(2682), - [anon_sym_any] = ACTIONS(2682), - [anon_sym_number] = ACTIONS(2682), - [anon_sym_boolean] = ACTIONS(2682), - [anon_sym_string] = ACTIONS(2682), - [anon_sym_symbol] = ACTIONS(2682), - [anon_sym_object] = ACTIONS(2682), - [anon_sym_abstract] = ACTIONS(2682), - [anon_sym_interface] = ACTIONS(2682), - [anon_sym_enum] = ACTIONS(2682), + [ts_builtin_sym_end] = ACTIONS(2667), + [sym_identifier] = ACTIONS(2669), + [anon_sym_export] = ACTIONS(2669), + [anon_sym_default] = ACTIONS(2669), + [anon_sym_type] = ACTIONS(2669), + [anon_sym_namespace] = ACTIONS(2669), + [anon_sym_LBRACE] = ACTIONS(2667), + [anon_sym_RBRACE] = ACTIONS(2667), + [anon_sym_typeof] = ACTIONS(2669), + [anon_sym_import] = ACTIONS(2669), + [anon_sym_with] = ACTIONS(2669), + [anon_sym_var] = ACTIONS(2669), + [anon_sym_let] = ACTIONS(2669), + [anon_sym_const] = ACTIONS(2669), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_else] = ACTIONS(2669), + [anon_sym_if] = ACTIONS(2669), + [anon_sym_switch] = ACTIONS(2669), + [anon_sym_for] = ACTIONS(2669), + [anon_sym_LPAREN] = ACTIONS(2667), + [anon_sym_SEMI] = ACTIONS(2667), + [anon_sym_await] = ACTIONS(2669), + [anon_sym_while] = ACTIONS(2669), + [anon_sym_do] = ACTIONS(2669), + [anon_sym_try] = ACTIONS(2669), + [anon_sym_break] = ACTIONS(2669), + [anon_sym_continue] = ACTIONS(2669), + [anon_sym_debugger] = ACTIONS(2669), + [anon_sym_return] = ACTIONS(2669), + [anon_sym_throw] = ACTIONS(2669), + [anon_sym_case] = ACTIONS(2669), + [anon_sym_yield] = ACTIONS(2669), + [anon_sym_LBRACK] = ACTIONS(2667), + [anon_sym_class] = ACTIONS(2669), + [anon_sym_async] = ACTIONS(2669), + [anon_sym_function] = ACTIONS(2669), + [anon_sym_new] = ACTIONS(2669), + [anon_sym_using] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_SLASH] = ACTIONS(2669), + [anon_sym_LT] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_void] = ACTIONS(2669), + [anon_sym_delete] = ACTIONS(2669), + [anon_sym_PLUS_PLUS] = ACTIONS(2667), + [anon_sym_DASH_DASH] = ACTIONS(2667), + [anon_sym_DQUOTE] = ACTIONS(2667), + [anon_sym_SQUOTE] = ACTIONS(2667), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2667), + [sym_number] = ACTIONS(2667), + [sym_private_property_identifier] = ACTIONS(2667), + [sym_this] = ACTIONS(2669), + [sym_super] = ACTIONS(2669), + [sym_true] = ACTIONS(2669), + [sym_false] = ACTIONS(2669), + [sym_null] = ACTIONS(2669), + [sym_undefined] = ACTIONS(2669), + [anon_sym_AT] = ACTIONS(2667), + [anon_sym_static] = ACTIONS(2669), + [anon_sym_readonly] = ACTIONS(2669), + [anon_sym_get] = ACTIONS(2669), + [anon_sym_set] = ACTIONS(2669), + [anon_sym_declare] = ACTIONS(2669), + [anon_sym_public] = ACTIONS(2669), + [anon_sym_private] = ACTIONS(2669), + [anon_sym_protected] = ACTIONS(2669), + [anon_sym_override] = ACTIONS(2669), + [anon_sym_module] = ACTIONS(2669), + [anon_sym_any] = ACTIONS(2669), + [anon_sym_number] = ACTIONS(2669), + [anon_sym_boolean] = ACTIONS(2669), + [anon_sym_string] = ACTIONS(2669), + [anon_sym_symbol] = ACTIONS(2669), + [anon_sym_object] = ACTIONS(2669), + [anon_sym_abstract] = ACTIONS(2669), + [anon_sym_interface] = ACTIONS(2669), + [anon_sym_enum] = ACTIONS(2669), [sym_html_comment] = ACTIONS(5), }, [850] = { - [ts_builtin_sym_end] = ACTIONS(2684), - [sym_identifier] = ACTIONS(2686), - [anon_sym_export] = ACTIONS(2686), - [anon_sym_default] = ACTIONS(2686), - [anon_sym_type] = ACTIONS(2686), - [anon_sym_namespace] = ACTIONS(2686), - [anon_sym_LBRACE] = ACTIONS(2684), - [anon_sym_RBRACE] = ACTIONS(2684), - [anon_sym_typeof] = ACTIONS(2686), - [anon_sym_import] = ACTIONS(2686), - [anon_sym_with] = ACTIONS(2686), - [anon_sym_var] = ACTIONS(2686), - [anon_sym_let] = ACTIONS(2686), - [anon_sym_const] = ACTIONS(2686), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_else] = ACTIONS(2686), - [anon_sym_if] = ACTIONS(2686), - [anon_sym_switch] = ACTIONS(2686), - [anon_sym_for] = ACTIONS(2686), - [anon_sym_LPAREN] = ACTIONS(2684), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_await] = ACTIONS(2686), - [anon_sym_while] = ACTIONS(2686), - [anon_sym_do] = ACTIONS(2686), - [anon_sym_try] = ACTIONS(2686), - [anon_sym_break] = ACTIONS(2686), - [anon_sym_continue] = ACTIONS(2686), - [anon_sym_debugger] = ACTIONS(2686), - [anon_sym_return] = ACTIONS(2686), - [anon_sym_throw] = ACTIONS(2686), - [anon_sym_case] = ACTIONS(2686), - [anon_sym_yield] = ACTIONS(2686), - [anon_sym_LBRACK] = ACTIONS(2684), - [sym_glimmer_opening_tag] = ACTIONS(2684), - [anon_sym_class] = ACTIONS(2686), - [anon_sym_async] = ACTIONS(2686), - [anon_sym_function] = ACTIONS(2686), - [anon_sym_new] = ACTIONS(2686), - [anon_sym_using] = ACTIONS(2686), - [anon_sym_PLUS] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2686), - [anon_sym_SLASH] = ACTIONS(2686), - [anon_sym_LT] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2684), - [anon_sym_void] = ACTIONS(2686), - [anon_sym_delete] = ACTIONS(2686), - [anon_sym_PLUS_PLUS] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(2684), - [anon_sym_DQUOTE] = ACTIONS(2684), - [anon_sym_SQUOTE] = ACTIONS(2684), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2684), - [sym_number] = ACTIONS(2684), - [sym_private_property_identifier] = ACTIONS(2684), - [sym_this] = ACTIONS(2686), - [sym_super] = ACTIONS(2686), - [sym_true] = ACTIONS(2686), - [sym_false] = ACTIONS(2686), - [sym_null] = ACTIONS(2686), - [sym_undefined] = ACTIONS(2686), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_static] = ACTIONS(2686), - [anon_sym_readonly] = ACTIONS(2686), - [anon_sym_get] = ACTIONS(2686), - [anon_sym_set] = ACTIONS(2686), - [anon_sym_declare] = ACTIONS(2686), - [anon_sym_public] = ACTIONS(2686), - [anon_sym_private] = ACTIONS(2686), - [anon_sym_protected] = ACTIONS(2686), - [anon_sym_override] = ACTIONS(2686), - [anon_sym_module] = ACTIONS(2686), - [anon_sym_any] = ACTIONS(2686), - [anon_sym_number] = ACTIONS(2686), - [anon_sym_boolean] = ACTIONS(2686), - [anon_sym_string] = ACTIONS(2686), - [anon_sym_symbol] = ACTIONS(2686), - [anon_sym_object] = ACTIONS(2686), - [anon_sym_abstract] = ACTIONS(2686), - [anon_sym_interface] = ACTIONS(2686), - [anon_sym_enum] = ACTIONS(2686), + [ts_builtin_sym_end] = ACTIONS(2671), + [sym_identifier] = ACTIONS(2673), + [anon_sym_export] = ACTIONS(2673), + [anon_sym_default] = ACTIONS(2673), + [anon_sym_type] = ACTIONS(2673), + [anon_sym_namespace] = ACTIONS(2673), + [anon_sym_LBRACE] = ACTIONS(2671), + [anon_sym_RBRACE] = ACTIONS(2671), + [anon_sym_typeof] = ACTIONS(2673), + [anon_sym_import] = ACTIONS(2673), + [anon_sym_with] = ACTIONS(2673), + [anon_sym_var] = ACTIONS(2673), + [anon_sym_let] = ACTIONS(2673), + [anon_sym_const] = ACTIONS(2673), + [anon_sym_BANG] = ACTIONS(2671), + [anon_sym_else] = ACTIONS(2673), + [anon_sym_if] = ACTIONS(2673), + [anon_sym_switch] = ACTIONS(2673), + [anon_sym_for] = ACTIONS(2673), + [anon_sym_LPAREN] = ACTIONS(2671), + [anon_sym_SEMI] = ACTIONS(2671), + [anon_sym_await] = ACTIONS(2673), + [anon_sym_while] = ACTIONS(2673), + [anon_sym_do] = ACTIONS(2673), + [anon_sym_try] = ACTIONS(2673), + [anon_sym_break] = ACTIONS(2673), + [anon_sym_continue] = ACTIONS(2673), + [anon_sym_debugger] = ACTIONS(2673), + [anon_sym_return] = ACTIONS(2673), + [anon_sym_throw] = ACTIONS(2673), + [anon_sym_case] = ACTIONS(2673), + [anon_sym_yield] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2671), + [anon_sym_class] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_function] = ACTIONS(2673), + [anon_sym_new] = ACTIONS(2673), + [anon_sym_using] = ACTIONS(2673), + [anon_sym_PLUS] = ACTIONS(2673), + [anon_sym_DASH] = ACTIONS(2673), + [anon_sym_SLASH] = ACTIONS(2673), + [anon_sym_LT] = ACTIONS(2671), + [anon_sym_TILDE] = ACTIONS(2671), + [anon_sym_void] = ACTIONS(2673), + [anon_sym_delete] = ACTIONS(2673), + [anon_sym_PLUS_PLUS] = ACTIONS(2671), + [anon_sym_DASH_DASH] = ACTIONS(2671), + [anon_sym_DQUOTE] = ACTIONS(2671), + [anon_sym_SQUOTE] = ACTIONS(2671), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2671), + [sym_number] = ACTIONS(2671), + [sym_private_property_identifier] = ACTIONS(2671), + [sym_this] = ACTIONS(2673), + [sym_super] = ACTIONS(2673), + [sym_true] = ACTIONS(2673), + [sym_false] = ACTIONS(2673), + [sym_null] = ACTIONS(2673), + [sym_undefined] = ACTIONS(2673), + [anon_sym_AT] = ACTIONS(2671), + [anon_sym_static] = ACTIONS(2673), + [anon_sym_readonly] = ACTIONS(2673), + [anon_sym_get] = ACTIONS(2673), + [anon_sym_set] = ACTIONS(2673), + [anon_sym_declare] = ACTIONS(2673), + [anon_sym_public] = ACTIONS(2673), + [anon_sym_private] = ACTIONS(2673), + [anon_sym_protected] = ACTIONS(2673), + [anon_sym_override] = ACTIONS(2673), + [anon_sym_module] = ACTIONS(2673), + [anon_sym_any] = ACTIONS(2673), + [anon_sym_number] = ACTIONS(2673), + [anon_sym_boolean] = ACTIONS(2673), + [anon_sym_string] = ACTIONS(2673), + [anon_sym_symbol] = ACTIONS(2673), + [anon_sym_object] = ACTIONS(2673), + [anon_sym_abstract] = ACTIONS(2673), + [anon_sym_interface] = ACTIONS(2673), + [anon_sym_enum] = ACTIONS(2673), [sym_html_comment] = ACTIONS(5), }, [851] = { - [ts_builtin_sym_end] = ACTIONS(2688), - [sym_identifier] = ACTIONS(2690), - [anon_sym_export] = ACTIONS(2690), - [anon_sym_default] = ACTIONS(2690), - [anon_sym_type] = ACTIONS(2690), - [anon_sym_namespace] = ACTIONS(2690), - [anon_sym_LBRACE] = ACTIONS(2688), - [anon_sym_RBRACE] = ACTIONS(2688), - [anon_sym_typeof] = ACTIONS(2690), - [anon_sym_import] = ACTIONS(2690), - [anon_sym_with] = ACTIONS(2690), - [anon_sym_var] = ACTIONS(2690), - [anon_sym_let] = ACTIONS(2690), - [anon_sym_const] = ACTIONS(2690), - [anon_sym_BANG] = ACTIONS(2688), - [anon_sym_else] = ACTIONS(2690), - [anon_sym_if] = ACTIONS(2690), - [anon_sym_switch] = ACTIONS(2690), - [anon_sym_for] = ACTIONS(2690), - [anon_sym_LPAREN] = ACTIONS(2688), - [anon_sym_SEMI] = ACTIONS(2688), - [anon_sym_await] = ACTIONS(2690), - [anon_sym_while] = ACTIONS(2690), - [anon_sym_do] = ACTIONS(2690), - [anon_sym_try] = ACTIONS(2690), - [anon_sym_break] = ACTIONS(2690), - [anon_sym_continue] = ACTIONS(2690), - [anon_sym_debugger] = ACTIONS(2690), - [anon_sym_return] = ACTIONS(2690), - [anon_sym_throw] = ACTIONS(2690), - [anon_sym_case] = ACTIONS(2690), - [anon_sym_yield] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(2688), - [sym_glimmer_opening_tag] = ACTIONS(2688), - [anon_sym_class] = ACTIONS(2690), - [anon_sym_async] = ACTIONS(2690), - [anon_sym_function] = ACTIONS(2690), - [anon_sym_new] = ACTIONS(2690), - [anon_sym_using] = ACTIONS(2690), - [anon_sym_PLUS] = ACTIONS(2690), - [anon_sym_DASH] = ACTIONS(2690), - [anon_sym_SLASH] = ACTIONS(2690), - [anon_sym_LT] = ACTIONS(2690), - [anon_sym_TILDE] = ACTIONS(2688), - [anon_sym_void] = ACTIONS(2690), - [anon_sym_delete] = ACTIONS(2690), - [anon_sym_PLUS_PLUS] = ACTIONS(2688), - [anon_sym_DASH_DASH] = ACTIONS(2688), - [anon_sym_DQUOTE] = ACTIONS(2688), - [anon_sym_SQUOTE] = ACTIONS(2688), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2688), - [sym_number] = ACTIONS(2688), - [sym_private_property_identifier] = ACTIONS(2688), - [sym_this] = ACTIONS(2690), - [sym_super] = ACTIONS(2690), - [sym_true] = ACTIONS(2690), - [sym_false] = ACTIONS(2690), - [sym_null] = ACTIONS(2690), - [sym_undefined] = ACTIONS(2690), - [anon_sym_AT] = ACTIONS(2688), - [anon_sym_static] = ACTIONS(2690), - [anon_sym_readonly] = ACTIONS(2690), - [anon_sym_get] = ACTIONS(2690), - [anon_sym_set] = ACTIONS(2690), - [anon_sym_declare] = ACTIONS(2690), - [anon_sym_public] = ACTIONS(2690), - [anon_sym_private] = ACTIONS(2690), - [anon_sym_protected] = ACTIONS(2690), - [anon_sym_override] = ACTIONS(2690), - [anon_sym_module] = ACTIONS(2690), - [anon_sym_any] = ACTIONS(2690), - [anon_sym_number] = ACTIONS(2690), - [anon_sym_boolean] = ACTIONS(2690), - [anon_sym_string] = ACTIONS(2690), - [anon_sym_symbol] = ACTIONS(2690), - [anon_sym_object] = ACTIONS(2690), - [anon_sym_abstract] = ACTIONS(2690), - [anon_sym_interface] = ACTIONS(2690), - [anon_sym_enum] = ACTIONS(2690), + [ts_builtin_sym_end] = ACTIONS(2675), + [sym_identifier] = ACTIONS(2677), + [anon_sym_export] = ACTIONS(2677), + [anon_sym_default] = ACTIONS(2677), + [anon_sym_type] = ACTIONS(2677), + [anon_sym_namespace] = ACTIONS(2677), + [anon_sym_LBRACE] = ACTIONS(2675), + [anon_sym_RBRACE] = ACTIONS(2675), + [anon_sym_typeof] = ACTIONS(2677), + [anon_sym_import] = ACTIONS(2677), + [anon_sym_with] = ACTIONS(2677), + [anon_sym_var] = ACTIONS(2677), + [anon_sym_let] = ACTIONS(2677), + [anon_sym_const] = ACTIONS(2677), + [anon_sym_BANG] = ACTIONS(2675), + [anon_sym_else] = ACTIONS(2677), + [anon_sym_if] = ACTIONS(2677), + [anon_sym_switch] = ACTIONS(2677), + [anon_sym_for] = ACTIONS(2677), + [anon_sym_LPAREN] = ACTIONS(2675), + [anon_sym_SEMI] = ACTIONS(2675), + [anon_sym_await] = ACTIONS(2677), + [anon_sym_while] = ACTIONS(2677), + [anon_sym_do] = ACTIONS(2677), + [anon_sym_try] = ACTIONS(2677), + [anon_sym_break] = ACTIONS(2677), + [anon_sym_continue] = ACTIONS(2677), + [anon_sym_debugger] = ACTIONS(2677), + [anon_sym_return] = ACTIONS(2677), + [anon_sym_throw] = ACTIONS(2677), + [anon_sym_case] = ACTIONS(2677), + [anon_sym_yield] = ACTIONS(2677), + [anon_sym_LBRACK] = ACTIONS(2675), + [anon_sym_class] = ACTIONS(2677), + [anon_sym_async] = ACTIONS(2677), + [anon_sym_function] = ACTIONS(2677), + [anon_sym_new] = ACTIONS(2677), + [anon_sym_using] = ACTIONS(2677), + [anon_sym_PLUS] = ACTIONS(2677), + [anon_sym_DASH] = ACTIONS(2677), + [anon_sym_SLASH] = ACTIONS(2677), + [anon_sym_LT] = ACTIONS(2675), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_void] = ACTIONS(2677), + [anon_sym_delete] = ACTIONS(2677), + [anon_sym_PLUS_PLUS] = ACTIONS(2675), + [anon_sym_DASH_DASH] = ACTIONS(2675), + [anon_sym_DQUOTE] = ACTIONS(2675), + [anon_sym_SQUOTE] = ACTIONS(2675), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2675), + [sym_number] = ACTIONS(2675), + [sym_private_property_identifier] = ACTIONS(2675), + [sym_this] = ACTIONS(2677), + [sym_super] = ACTIONS(2677), + [sym_true] = ACTIONS(2677), + [sym_false] = ACTIONS(2677), + [sym_null] = ACTIONS(2677), + [sym_undefined] = ACTIONS(2677), + [anon_sym_AT] = ACTIONS(2675), + [anon_sym_static] = ACTIONS(2677), + [anon_sym_readonly] = ACTIONS(2677), + [anon_sym_get] = ACTIONS(2677), + [anon_sym_set] = ACTIONS(2677), + [anon_sym_declare] = ACTIONS(2677), + [anon_sym_public] = ACTIONS(2677), + [anon_sym_private] = ACTIONS(2677), + [anon_sym_protected] = ACTIONS(2677), + [anon_sym_override] = ACTIONS(2677), + [anon_sym_module] = ACTIONS(2677), + [anon_sym_any] = ACTIONS(2677), + [anon_sym_number] = ACTIONS(2677), + [anon_sym_boolean] = ACTIONS(2677), + [anon_sym_string] = ACTIONS(2677), + [anon_sym_symbol] = ACTIONS(2677), + [anon_sym_object] = ACTIONS(2677), + [anon_sym_abstract] = ACTIONS(2677), + [anon_sym_interface] = ACTIONS(2677), + [anon_sym_enum] = ACTIONS(2677), [sym_html_comment] = ACTIONS(5), }, [852] = { - [ts_builtin_sym_end] = ACTIONS(2692), - [sym_identifier] = ACTIONS(2694), - [anon_sym_export] = ACTIONS(2694), - [anon_sym_default] = ACTIONS(2694), - [anon_sym_type] = ACTIONS(2694), - [anon_sym_namespace] = ACTIONS(2694), - [anon_sym_LBRACE] = ACTIONS(2692), - [anon_sym_RBRACE] = ACTIONS(2692), - [anon_sym_typeof] = ACTIONS(2694), - [anon_sym_import] = ACTIONS(2694), - [anon_sym_with] = ACTIONS(2694), - [anon_sym_var] = ACTIONS(2694), - [anon_sym_let] = ACTIONS(2694), - [anon_sym_const] = ACTIONS(2694), - [anon_sym_BANG] = ACTIONS(2692), - [anon_sym_else] = ACTIONS(2694), - [anon_sym_if] = ACTIONS(2694), - [anon_sym_switch] = ACTIONS(2694), - [anon_sym_for] = ACTIONS(2694), - [anon_sym_LPAREN] = ACTIONS(2692), - [anon_sym_SEMI] = ACTIONS(2692), - [anon_sym_await] = ACTIONS(2694), - [anon_sym_while] = ACTIONS(2694), - [anon_sym_do] = ACTIONS(2694), - [anon_sym_try] = ACTIONS(2694), - [anon_sym_break] = ACTIONS(2694), - [anon_sym_continue] = ACTIONS(2694), - [anon_sym_debugger] = ACTIONS(2694), - [anon_sym_return] = ACTIONS(2694), - [anon_sym_throw] = ACTIONS(2694), - [anon_sym_case] = ACTIONS(2694), - [anon_sym_yield] = ACTIONS(2694), - [anon_sym_LBRACK] = ACTIONS(2692), - [sym_glimmer_opening_tag] = ACTIONS(2692), - [anon_sym_class] = ACTIONS(2694), - [anon_sym_async] = ACTIONS(2694), - [anon_sym_function] = ACTIONS(2694), - [anon_sym_new] = ACTIONS(2694), - [anon_sym_using] = ACTIONS(2694), - [anon_sym_PLUS] = ACTIONS(2694), - [anon_sym_DASH] = ACTIONS(2694), - [anon_sym_SLASH] = ACTIONS(2694), - [anon_sym_LT] = ACTIONS(2694), - [anon_sym_TILDE] = ACTIONS(2692), - [anon_sym_void] = ACTIONS(2694), - [anon_sym_delete] = ACTIONS(2694), - [anon_sym_PLUS_PLUS] = ACTIONS(2692), - [anon_sym_DASH_DASH] = ACTIONS(2692), - [anon_sym_DQUOTE] = ACTIONS(2692), - [anon_sym_SQUOTE] = ACTIONS(2692), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2692), - [sym_number] = ACTIONS(2692), - [sym_private_property_identifier] = ACTIONS(2692), - [sym_this] = ACTIONS(2694), - [sym_super] = ACTIONS(2694), - [sym_true] = ACTIONS(2694), - [sym_false] = ACTIONS(2694), - [sym_null] = ACTIONS(2694), - [sym_undefined] = ACTIONS(2694), - [anon_sym_AT] = ACTIONS(2692), - [anon_sym_static] = ACTIONS(2694), - [anon_sym_readonly] = ACTIONS(2694), - [anon_sym_get] = ACTIONS(2694), - [anon_sym_set] = ACTIONS(2694), - [anon_sym_declare] = ACTIONS(2694), - [anon_sym_public] = ACTIONS(2694), - [anon_sym_private] = ACTIONS(2694), - [anon_sym_protected] = ACTIONS(2694), - [anon_sym_override] = ACTIONS(2694), - [anon_sym_module] = ACTIONS(2694), - [anon_sym_any] = ACTIONS(2694), - [anon_sym_number] = ACTIONS(2694), - [anon_sym_boolean] = ACTIONS(2694), - [anon_sym_string] = ACTIONS(2694), - [anon_sym_symbol] = ACTIONS(2694), - [anon_sym_object] = ACTIONS(2694), - [anon_sym_abstract] = ACTIONS(2694), - [anon_sym_interface] = ACTIONS(2694), - [anon_sym_enum] = ACTIONS(2694), + [ts_builtin_sym_end] = ACTIONS(2679), + [sym_identifier] = ACTIONS(2681), + [anon_sym_export] = ACTIONS(2681), + [anon_sym_default] = ACTIONS(2681), + [anon_sym_type] = ACTIONS(2681), + [anon_sym_namespace] = ACTIONS(2681), + [anon_sym_LBRACE] = ACTIONS(2679), + [anon_sym_RBRACE] = ACTIONS(2679), + [anon_sym_typeof] = ACTIONS(2681), + [anon_sym_import] = ACTIONS(2681), + [anon_sym_with] = ACTIONS(2681), + [anon_sym_var] = ACTIONS(2681), + [anon_sym_let] = ACTIONS(2681), + [anon_sym_const] = ACTIONS(2681), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_else] = ACTIONS(2681), + [anon_sym_if] = ACTIONS(2681), + [anon_sym_switch] = ACTIONS(2681), + [anon_sym_for] = ACTIONS(2681), + [anon_sym_LPAREN] = ACTIONS(2679), + [anon_sym_SEMI] = ACTIONS(2679), + [anon_sym_await] = ACTIONS(2681), + [anon_sym_while] = ACTIONS(2681), + [anon_sym_do] = ACTIONS(2681), + [anon_sym_try] = ACTIONS(2681), + [anon_sym_break] = ACTIONS(2681), + [anon_sym_continue] = ACTIONS(2681), + [anon_sym_debugger] = ACTIONS(2681), + [anon_sym_return] = ACTIONS(2681), + [anon_sym_throw] = ACTIONS(2681), + [anon_sym_case] = ACTIONS(2681), + [anon_sym_yield] = ACTIONS(2681), + [anon_sym_LBRACK] = ACTIONS(2679), + [anon_sym_class] = ACTIONS(2681), + [anon_sym_async] = ACTIONS(2681), + [anon_sym_function] = ACTIONS(2681), + [anon_sym_new] = ACTIONS(2681), + [anon_sym_using] = ACTIONS(2681), + [anon_sym_PLUS] = ACTIONS(2681), + [anon_sym_DASH] = ACTIONS(2681), + [anon_sym_SLASH] = ACTIONS(2681), + [anon_sym_LT] = ACTIONS(2679), + [anon_sym_TILDE] = ACTIONS(2679), + [anon_sym_void] = ACTIONS(2681), + [anon_sym_delete] = ACTIONS(2681), + [anon_sym_PLUS_PLUS] = ACTIONS(2679), + [anon_sym_DASH_DASH] = ACTIONS(2679), + [anon_sym_DQUOTE] = ACTIONS(2679), + [anon_sym_SQUOTE] = ACTIONS(2679), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2679), + [sym_number] = ACTIONS(2679), + [sym_private_property_identifier] = ACTIONS(2679), + [sym_this] = ACTIONS(2681), + [sym_super] = ACTIONS(2681), + [sym_true] = ACTIONS(2681), + [sym_false] = ACTIONS(2681), + [sym_null] = ACTIONS(2681), + [sym_undefined] = ACTIONS(2681), + [anon_sym_AT] = ACTIONS(2679), + [anon_sym_static] = ACTIONS(2681), + [anon_sym_readonly] = ACTIONS(2681), + [anon_sym_get] = ACTIONS(2681), + [anon_sym_set] = ACTIONS(2681), + [anon_sym_declare] = ACTIONS(2681), + [anon_sym_public] = ACTIONS(2681), + [anon_sym_private] = ACTIONS(2681), + [anon_sym_protected] = ACTIONS(2681), + [anon_sym_override] = ACTIONS(2681), + [anon_sym_module] = ACTIONS(2681), + [anon_sym_any] = ACTIONS(2681), + [anon_sym_number] = ACTIONS(2681), + [anon_sym_boolean] = ACTIONS(2681), + [anon_sym_string] = ACTIONS(2681), + [anon_sym_symbol] = ACTIONS(2681), + [anon_sym_object] = ACTIONS(2681), + [anon_sym_abstract] = ACTIONS(2681), + [anon_sym_interface] = ACTIONS(2681), + [anon_sym_enum] = ACTIONS(2681), [sym_html_comment] = ACTIONS(5), }, [853] = { - [ts_builtin_sym_end] = ACTIONS(2696), - [sym_identifier] = ACTIONS(2698), - [anon_sym_export] = ACTIONS(2698), - [anon_sym_default] = ACTIONS(2698), - [anon_sym_type] = ACTIONS(2698), - [anon_sym_namespace] = ACTIONS(2698), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_RBRACE] = ACTIONS(2696), - [anon_sym_typeof] = ACTIONS(2698), - [anon_sym_import] = ACTIONS(2698), - [anon_sym_with] = ACTIONS(2698), - [anon_sym_var] = ACTIONS(2698), - [anon_sym_let] = ACTIONS(2698), - [anon_sym_const] = ACTIONS(2698), - [anon_sym_BANG] = ACTIONS(2696), - [anon_sym_else] = ACTIONS(2698), - [anon_sym_if] = ACTIONS(2698), - [anon_sym_switch] = ACTIONS(2698), - [anon_sym_for] = ACTIONS(2698), - [anon_sym_LPAREN] = ACTIONS(2696), - [anon_sym_SEMI] = ACTIONS(2696), - [anon_sym_await] = ACTIONS(2698), - [anon_sym_while] = ACTIONS(2698), - [anon_sym_do] = ACTIONS(2698), - [anon_sym_try] = ACTIONS(2698), - [anon_sym_break] = ACTIONS(2698), - [anon_sym_continue] = ACTIONS(2698), - [anon_sym_debugger] = ACTIONS(2698), - [anon_sym_return] = ACTIONS(2698), - [anon_sym_throw] = ACTIONS(2698), - [anon_sym_case] = ACTIONS(2698), - [anon_sym_yield] = ACTIONS(2698), - [anon_sym_LBRACK] = ACTIONS(2696), - [sym_glimmer_opening_tag] = ACTIONS(2696), - [anon_sym_class] = ACTIONS(2698), - [anon_sym_async] = ACTIONS(2698), - [anon_sym_function] = ACTIONS(2698), - [anon_sym_new] = ACTIONS(2698), - [anon_sym_using] = ACTIONS(2698), - [anon_sym_PLUS] = ACTIONS(2698), - [anon_sym_DASH] = ACTIONS(2698), - [anon_sym_SLASH] = ACTIONS(2698), - [anon_sym_LT] = ACTIONS(2698), - [anon_sym_TILDE] = ACTIONS(2696), - [anon_sym_void] = ACTIONS(2698), - [anon_sym_delete] = ACTIONS(2698), - [anon_sym_PLUS_PLUS] = ACTIONS(2696), - [anon_sym_DASH_DASH] = ACTIONS(2696), - [anon_sym_DQUOTE] = ACTIONS(2696), - [anon_sym_SQUOTE] = ACTIONS(2696), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2696), - [sym_number] = ACTIONS(2696), - [sym_private_property_identifier] = ACTIONS(2696), - [sym_this] = ACTIONS(2698), - [sym_super] = ACTIONS(2698), - [sym_true] = ACTIONS(2698), - [sym_false] = ACTIONS(2698), - [sym_null] = ACTIONS(2698), - [sym_undefined] = ACTIONS(2698), - [anon_sym_AT] = ACTIONS(2696), - [anon_sym_static] = ACTIONS(2698), - [anon_sym_readonly] = ACTIONS(2698), - [anon_sym_get] = ACTIONS(2698), - [anon_sym_set] = ACTIONS(2698), - [anon_sym_declare] = ACTIONS(2698), - [anon_sym_public] = ACTIONS(2698), - [anon_sym_private] = ACTIONS(2698), - [anon_sym_protected] = ACTIONS(2698), - [anon_sym_override] = ACTIONS(2698), - [anon_sym_module] = ACTIONS(2698), - [anon_sym_any] = ACTIONS(2698), - [anon_sym_number] = ACTIONS(2698), - [anon_sym_boolean] = ACTIONS(2698), - [anon_sym_string] = ACTIONS(2698), - [anon_sym_symbol] = ACTIONS(2698), - [anon_sym_object] = ACTIONS(2698), - [anon_sym_abstract] = ACTIONS(2698), - [anon_sym_interface] = ACTIONS(2698), - [anon_sym_enum] = ACTIONS(2698), + [ts_builtin_sym_end] = ACTIONS(2683), + [sym_identifier] = ACTIONS(2685), + [anon_sym_export] = ACTIONS(2685), + [anon_sym_default] = ACTIONS(2685), + [anon_sym_type] = ACTIONS(2685), + [anon_sym_namespace] = ACTIONS(2685), + [anon_sym_LBRACE] = ACTIONS(2683), + [anon_sym_RBRACE] = ACTIONS(2683), + [anon_sym_typeof] = ACTIONS(2685), + [anon_sym_import] = ACTIONS(2685), + [anon_sym_with] = ACTIONS(2685), + [anon_sym_var] = ACTIONS(2685), + [anon_sym_let] = ACTIONS(2685), + [anon_sym_const] = ACTIONS(2685), + [anon_sym_BANG] = ACTIONS(2683), + [anon_sym_else] = ACTIONS(2685), + [anon_sym_if] = ACTIONS(2685), + [anon_sym_switch] = ACTIONS(2685), + [anon_sym_for] = ACTIONS(2685), + [anon_sym_LPAREN] = ACTIONS(2683), + [anon_sym_SEMI] = ACTIONS(2683), + [anon_sym_await] = ACTIONS(2685), + [anon_sym_while] = ACTIONS(2685), + [anon_sym_do] = ACTIONS(2685), + [anon_sym_try] = ACTIONS(2685), + [anon_sym_break] = ACTIONS(2685), + [anon_sym_continue] = ACTIONS(2685), + [anon_sym_debugger] = ACTIONS(2685), + [anon_sym_return] = ACTIONS(2685), + [anon_sym_throw] = ACTIONS(2685), + [anon_sym_case] = ACTIONS(2685), + [anon_sym_yield] = ACTIONS(2685), + [anon_sym_LBRACK] = ACTIONS(2683), + [anon_sym_class] = ACTIONS(2685), + [anon_sym_async] = ACTIONS(2685), + [anon_sym_function] = ACTIONS(2685), + [anon_sym_new] = ACTIONS(2685), + [anon_sym_using] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2685), + [anon_sym_DASH] = ACTIONS(2685), + [anon_sym_SLASH] = ACTIONS(2685), + [anon_sym_LT] = ACTIONS(2683), + [anon_sym_TILDE] = ACTIONS(2683), + [anon_sym_void] = ACTIONS(2685), + [anon_sym_delete] = ACTIONS(2685), + [anon_sym_PLUS_PLUS] = ACTIONS(2683), + [anon_sym_DASH_DASH] = ACTIONS(2683), + [anon_sym_DQUOTE] = ACTIONS(2683), + [anon_sym_SQUOTE] = ACTIONS(2683), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2683), + [sym_number] = ACTIONS(2683), + [sym_private_property_identifier] = ACTIONS(2683), + [sym_this] = ACTIONS(2685), + [sym_super] = ACTIONS(2685), + [sym_true] = ACTIONS(2685), + [sym_false] = ACTIONS(2685), + [sym_null] = ACTIONS(2685), + [sym_undefined] = ACTIONS(2685), + [anon_sym_AT] = ACTIONS(2683), + [anon_sym_static] = ACTIONS(2685), + [anon_sym_readonly] = ACTIONS(2685), + [anon_sym_get] = ACTIONS(2685), + [anon_sym_set] = ACTIONS(2685), + [anon_sym_declare] = ACTIONS(2685), + [anon_sym_public] = ACTIONS(2685), + [anon_sym_private] = ACTIONS(2685), + [anon_sym_protected] = ACTIONS(2685), + [anon_sym_override] = ACTIONS(2685), + [anon_sym_module] = ACTIONS(2685), + [anon_sym_any] = ACTIONS(2685), + [anon_sym_number] = ACTIONS(2685), + [anon_sym_boolean] = ACTIONS(2685), + [anon_sym_string] = ACTIONS(2685), + [anon_sym_symbol] = ACTIONS(2685), + [anon_sym_object] = ACTIONS(2685), + [anon_sym_abstract] = ACTIONS(2685), + [anon_sym_interface] = ACTIONS(2685), + [anon_sym_enum] = ACTIONS(2685), [sym_html_comment] = ACTIONS(5), }, [854] = { - [ts_builtin_sym_end] = ACTIONS(2700), - [sym_identifier] = ACTIONS(2702), - [anon_sym_export] = ACTIONS(2702), - [anon_sym_default] = ACTIONS(2702), - [anon_sym_type] = ACTIONS(2702), - [anon_sym_namespace] = ACTIONS(2702), - [anon_sym_LBRACE] = ACTIONS(2700), - [anon_sym_RBRACE] = ACTIONS(2700), - [anon_sym_typeof] = ACTIONS(2702), - [anon_sym_import] = ACTIONS(2702), - [anon_sym_with] = ACTIONS(2702), - [anon_sym_var] = ACTIONS(2702), - [anon_sym_let] = ACTIONS(2702), - [anon_sym_const] = ACTIONS(2702), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_else] = ACTIONS(2702), - [anon_sym_if] = ACTIONS(2702), - [anon_sym_switch] = ACTIONS(2702), - [anon_sym_for] = ACTIONS(2702), - [anon_sym_LPAREN] = ACTIONS(2700), - [anon_sym_SEMI] = ACTIONS(2700), - [anon_sym_await] = ACTIONS(2702), - [anon_sym_while] = ACTIONS(2702), - [anon_sym_do] = ACTIONS(2702), - [anon_sym_try] = ACTIONS(2702), - [anon_sym_break] = ACTIONS(2702), - [anon_sym_continue] = ACTIONS(2702), - [anon_sym_debugger] = ACTIONS(2702), - [anon_sym_return] = ACTIONS(2702), - [anon_sym_throw] = ACTIONS(2702), - [anon_sym_case] = ACTIONS(2702), - [anon_sym_yield] = ACTIONS(2702), - [anon_sym_LBRACK] = ACTIONS(2700), - [sym_glimmer_opening_tag] = ACTIONS(2700), - [anon_sym_class] = ACTIONS(2702), - [anon_sym_async] = ACTIONS(2702), - [anon_sym_function] = ACTIONS(2702), - [anon_sym_new] = ACTIONS(2702), - [anon_sym_using] = ACTIONS(2702), - [anon_sym_PLUS] = ACTIONS(2702), - [anon_sym_DASH] = ACTIONS(2702), - [anon_sym_SLASH] = ACTIONS(2702), - [anon_sym_LT] = ACTIONS(2702), - [anon_sym_TILDE] = ACTIONS(2700), - [anon_sym_void] = ACTIONS(2702), - [anon_sym_delete] = ACTIONS(2702), - [anon_sym_PLUS_PLUS] = ACTIONS(2700), - [anon_sym_DASH_DASH] = ACTIONS(2700), - [anon_sym_DQUOTE] = ACTIONS(2700), - [anon_sym_SQUOTE] = ACTIONS(2700), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2700), - [sym_number] = ACTIONS(2700), - [sym_private_property_identifier] = ACTIONS(2700), - [sym_this] = ACTIONS(2702), - [sym_super] = ACTIONS(2702), - [sym_true] = ACTIONS(2702), - [sym_false] = ACTIONS(2702), - [sym_null] = ACTIONS(2702), - [sym_undefined] = ACTIONS(2702), - [anon_sym_AT] = ACTIONS(2700), - [anon_sym_static] = ACTIONS(2702), - [anon_sym_readonly] = ACTIONS(2702), - [anon_sym_get] = ACTIONS(2702), - [anon_sym_set] = ACTIONS(2702), - [anon_sym_declare] = ACTIONS(2702), - [anon_sym_public] = ACTIONS(2702), - [anon_sym_private] = ACTIONS(2702), - [anon_sym_protected] = ACTIONS(2702), - [anon_sym_override] = ACTIONS(2702), - [anon_sym_module] = ACTIONS(2702), - [anon_sym_any] = ACTIONS(2702), - [anon_sym_number] = ACTIONS(2702), - [anon_sym_boolean] = ACTIONS(2702), - [anon_sym_string] = ACTIONS(2702), - [anon_sym_symbol] = ACTIONS(2702), - [anon_sym_object] = ACTIONS(2702), - [anon_sym_abstract] = ACTIONS(2702), - [anon_sym_interface] = ACTIONS(2702), - [anon_sym_enum] = ACTIONS(2702), + [ts_builtin_sym_end] = ACTIONS(2687), + [sym_identifier] = ACTIONS(2689), + [anon_sym_export] = ACTIONS(2689), + [anon_sym_default] = ACTIONS(2689), + [anon_sym_type] = ACTIONS(2689), + [anon_sym_namespace] = ACTIONS(2689), + [anon_sym_LBRACE] = ACTIONS(2687), + [anon_sym_RBRACE] = ACTIONS(2687), + [anon_sym_typeof] = ACTIONS(2689), + [anon_sym_import] = ACTIONS(2689), + [anon_sym_with] = ACTIONS(2689), + [anon_sym_var] = ACTIONS(2689), + [anon_sym_let] = ACTIONS(2689), + [anon_sym_const] = ACTIONS(2689), + [anon_sym_BANG] = ACTIONS(2687), + [anon_sym_else] = ACTIONS(2689), + [anon_sym_if] = ACTIONS(2689), + [anon_sym_switch] = ACTIONS(2689), + [anon_sym_for] = ACTIONS(2689), + [anon_sym_LPAREN] = ACTIONS(2687), + [anon_sym_SEMI] = ACTIONS(2687), + [anon_sym_await] = ACTIONS(2689), + [anon_sym_while] = ACTIONS(2689), + [anon_sym_do] = ACTIONS(2689), + [anon_sym_try] = ACTIONS(2689), + [anon_sym_break] = ACTIONS(2689), + [anon_sym_continue] = ACTIONS(2689), + [anon_sym_debugger] = ACTIONS(2689), + [anon_sym_return] = ACTIONS(2689), + [anon_sym_throw] = ACTIONS(2689), + [anon_sym_case] = ACTIONS(2689), + [anon_sym_yield] = ACTIONS(2689), + [anon_sym_LBRACK] = ACTIONS(2687), + [anon_sym_class] = ACTIONS(2689), + [anon_sym_async] = ACTIONS(2689), + [anon_sym_function] = ACTIONS(2689), + [anon_sym_new] = ACTIONS(2689), + [anon_sym_using] = ACTIONS(2689), + [anon_sym_PLUS] = ACTIONS(2689), + [anon_sym_DASH] = ACTIONS(2689), + [anon_sym_SLASH] = ACTIONS(2689), + [anon_sym_LT] = ACTIONS(2687), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_void] = ACTIONS(2689), + [anon_sym_delete] = ACTIONS(2689), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_DQUOTE] = ACTIONS(2687), + [anon_sym_SQUOTE] = ACTIONS(2687), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2687), + [sym_number] = ACTIONS(2687), + [sym_private_property_identifier] = ACTIONS(2687), + [sym_this] = ACTIONS(2689), + [sym_super] = ACTIONS(2689), + [sym_true] = ACTIONS(2689), + [sym_false] = ACTIONS(2689), + [sym_null] = ACTIONS(2689), + [sym_undefined] = ACTIONS(2689), + [anon_sym_AT] = ACTIONS(2687), + [anon_sym_static] = ACTIONS(2689), + [anon_sym_readonly] = ACTIONS(2689), + [anon_sym_get] = ACTIONS(2689), + [anon_sym_set] = ACTIONS(2689), + [anon_sym_declare] = ACTIONS(2689), + [anon_sym_public] = ACTIONS(2689), + [anon_sym_private] = ACTIONS(2689), + [anon_sym_protected] = ACTIONS(2689), + [anon_sym_override] = ACTIONS(2689), + [anon_sym_module] = ACTIONS(2689), + [anon_sym_any] = ACTIONS(2689), + [anon_sym_number] = ACTIONS(2689), + [anon_sym_boolean] = ACTIONS(2689), + [anon_sym_string] = ACTIONS(2689), + [anon_sym_symbol] = ACTIONS(2689), + [anon_sym_object] = ACTIONS(2689), + [anon_sym_abstract] = ACTIONS(2689), + [anon_sym_interface] = ACTIONS(2689), + [anon_sym_enum] = ACTIONS(2689), [sym_html_comment] = ACTIONS(5), }, [855] = { - [ts_builtin_sym_end] = ACTIONS(2704), - [sym_identifier] = ACTIONS(2706), - [anon_sym_export] = ACTIONS(2706), - [anon_sym_default] = ACTIONS(2706), - [anon_sym_type] = ACTIONS(2706), - [anon_sym_namespace] = ACTIONS(2706), - [anon_sym_LBRACE] = ACTIONS(2704), - [anon_sym_RBRACE] = ACTIONS(2704), - [anon_sym_typeof] = ACTIONS(2706), - [anon_sym_import] = ACTIONS(2706), - [anon_sym_with] = ACTIONS(2706), - [anon_sym_var] = ACTIONS(2706), - [anon_sym_let] = ACTIONS(2706), - [anon_sym_const] = ACTIONS(2706), - [anon_sym_BANG] = ACTIONS(2704), - [anon_sym_else] = ACTIONS(2706), - [anon_sym_if] = ACTIONS(2706), - [anon_sym_switch] = ACTIONS(2706), - [anon_sym_for] = ACTIONS(2706), - [anon_sym_LPAREN] = ACTIONS(2704), - [anon_sym_SEMI] = ACTIONS(2704), - [anon_sym_await] = ACTIONS(2706), - [anon_sym_while] = ACTIONS(2706), - [anon_sym_do] = ACTIONS(2706), - [anon_sym_try] = ACTIONS(2706), - [anon_sym_break] = ACTIONS(2706), - [anon_sym_continue] = ACTIONS(2706), - [anon_sym_debugger] = ACTIONS(2706), - [anon_sym_return] = ACTIONS(2706), - [anon_sym_throw] = ACTIONS(2706), - [anon_sym_case] = ACTIONS(2706), - [anon_sym_yield] = ACTIONS(2706), - [anon_sym_LBRACK] = ACTIONS(2704), - [sym_glimmer_opening_tag] = ACTIONS(2704), - [anon_sym_class] = ACTIONS(2706), - [anon_sym_async] = ACTIONS(2706), - [anon_sym_function] = ACTIONS(2706), - [anon_sym_new] = ACTIONS(2706), - [anon_sym_using] = ACTIONS(2706), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_SLASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2706), - [anon_sym_TILDE] = ACTIONS(2704), - [anon_sym_void] = ACTIONS(2706), - [anon_sym_delete] = ACTIONS(2706), - [anon_sym_PLUS_PLUS] = ACTIONS(2704), - [anon_sym_DASH_DASH] = ACTIONS(2704), - [anon_sym_DQUOTE] = ACTIONS(2704), - [anon_sym_SQUOTE] = ACTIONS(2704), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2704), - [sym_number] = ACTIONS(2704), - [sym_private_property_identifier] = ACTIONS(2704), - [sym_this] = ACTIONS(2706), - [sym_super] = ACTIONS(2706), - [sym_true] = ACTIONS(2706), - [sym_false] = ACTIONS(2706), - [sym_null] = ACTIONS(2706), - [sym_undefined] = ACTIONS(2706), - [anon_sym_AT] = ACTIONS(2704), - [anon_sym_static] = ACTIONS(2706), - [anon_sym_readonly] = ACTIONS(2706), - [anon_sym_get] = ACTIONS(2706), - [anon_sym_set] = ACTIONS(2706), - [anon_sym_declare] = ACTIONS(2706), - [anon_sym_public] = ACTIONS(2706), - [anon_sym_private] = ACTIONS(2706), - [anon_sym_protected] = ACTIONS(2706), - [anon_sym_override] = ACTIONS(2706), - [anon_sym_module] = ACTIONS(2706), - [anon_sym_any] = ACTIONS(2706), - [anon_sym_number] = ACTIONS(2706), - [anon_sym_boolean] = ACTIONS(2706), - [anon_sym_string] = ACTIONS(2706), - [anon_sym_symbol] = ACTIONS(2706), - [anon_sym_object] = ACTIONS(2706), - [anon_sym_abstract] = ACTIONS(2706), - [anon_sym_interface] = ACTIONS(2706), - [anon_sym_enum] = ACTIONS(2706), + [ts_builtin_sym_end] = ACTIONS(2691), + [sym_identifier] = ACTIONS(2693), + [anon_sym_export] = ACTIONS(2693), + [anon_sym_default] = ACTIONS(2693), + [anon_sym_type] = ACTIONS(2693), + [anon_sym_namespace] = ACTIONS(2693), + [anon_sym_LBRACE] = ACTIONS(2691), + [anon_sym_RBRACE] = ACTIONS(2691), + [anon_sym_typeof] = ACTIONS(2693), + [anon_sym_import] = ACTIONS(2693), + [anon_sym_with] = ACTIONS(2693), + [anon_sym_var] = ACTIONS(2693), + [anon_sym_let] = ACTIONS(2693), + [anon_sym_const] = ACTIONS(2693), + [anon_sym_BANG] = ACTIONS(2691), + [anon_sym_else] = ACTIONS(2693), + [anon_sym_if] = ACTIONS(2693), + [anon_sym_switch] = ACTIONS(2693), + [anon_sym_for] = ACTIONS(2693), + [anon_sym_LPAREN] = ACTIONS(2691), + [anon_sym_SEMI] = ACTIONS(2691), + [anon_sym_await] = ACTIONS(2693), + [anon_sym_while] = ACTIONS(2693), + [anon_sym_do] = ACTIONS(2693), + [anon_sym_try] = ACTIONS(2693), + [anon_sym_break] = ACTIONS(2693), + [anon_sym_continue] = ACTIONS(2693), + [anon_sym_debugger] = ACTIONS(2693), + [anon_sym_return] = ACTIONS(2693), + [anon_sym_throw] = ACTIONS(2693), + [anon_sym_case] = ACTIONS(2693), + [anon_sym_yield] = ACTIONS(2693), + [anon_sym_LBRACK] = ACTIONS(2691), + [anon_sym_class] = ACTIONS(2693), + [anon_sym_async] = ACTIONS(2693), + [anon_sym_function] = ACTIONS(2693), + [anon_sym_new] = ACTIONS(2693), + [anon_sym_using] = ACTIONS(2693), + [anon_sym_PLUS] = ACTIONS(2693), + [anon_sym_DASH] = ACTIONS(2693), + [anon_sym_SLASH] = ACTIONS(2693), + [anon_sym_LT] = ACTIONS(2691), + [anon_sym_TILDE] = ACTIONS(2691), + [anon_sym_void] = ACTIONS(2693), + [anon_sym_delete] = ACTIONS(2693), + [anon_sym_PLUS_PLUS] = ACTIONS(2691), + [anon_sym_DASH_DASH] = ACTIONS(2691), + [anon_sym_DQUOTE] = ACTIONS(2691), + [anon_sym_SQUOTE] = ACTIONS(2691), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2691), + [sym_number] = ACTIONS(2691), + [sym_private_property_identifier] = ACTIONS(2691), + [sym_this] = ACTIONS(2693), + [sym_super] = ACTIONS(2693), + [sym_true] = ACTIONS(2693), + [sym_false] = ACTIONS(2693), + [sym_null] = ACTIONS(2693), + [sym_undefined] = ACTIONS(2693), + [anon_sym_AT] = ACTIONS(2691), + [anon_sym_static] = ACTIONS(2693), + [anon_sym_readonly] = ACTIONS(2693), + [anon_sym_get] = ACTIONS(2693), + [anon_sym_set] = ACTIONS(2693), + [anon_sym_declare] = ACTIONS(2693), + [anon_sym_public] = ACTIONS(2693), + [anon_sym_private] = ACTIONS(2693), + [anon_sym_protected] = ACTIONS(2693), + [anon_sym_override] = ACTIONS(2693), + [anon_sym_module] = ACTIONS(2693), + [anon_sym_any] = ACTIONS(2693), + [anon_sym_number] = ACTIONS(2693), + [anon_sym_boolean] = ACTIONS(2693), + [anon_sym_string] = ACTIONS(2693), + [anon_sym_symbol] = ACTIONS(2693), + [anon_sym_object] = ACTIONS(2693), + [anon_sym_abstract] = ACTIONS(2693), + [anon_sym_interface] = ACTIONS(2693), + [anon_sym_enum] = ACTIONS(2693), [sym_html_comment] = ACTIONS(5), }, [856] = { - [ts_builtin_sym_end] = ACTIONS(2708), - [sym_identifier] = ACTIONS(2710), - [anon_sym_export] = ACTIONS(2710), - [anon_sym_default] = ACTIONS(2710), - [anon_sym_type] = ACTIONS(2710), - [anon_sym_namespace] = ACTIONS(2710), - [anon_sym_LBRACE] = ACTIONS(2708), - [anon_sym_RBRACE] = ACTIONS(2708), - [anon_sym_typeof] = ACTIONS(2710), - [anon_sym_import] = ACTIONS(2710), - [anon_sym_with] = ACTIONS(2710), - [anon_sym_var] = ACTIONS(2710), - [anon_sym_let] = ACTIONS(2710), - [anon_sym_const] = ACTIONS(2710), - [anon_sym_BANG] = ACTIONS(2708), - [anon_sym_else] = ACTIONS(2710), - [anon_sym_if] = ACTIONS(2710), - [anon_sym_switch] = ACTIONS(2710), - [anon_sym_for] = ACTIONS(2710), - [anon_sym_LPAREN] = ACTIONS(2708), - [anon_sym_SEMI] = ACTIONS(2708), - [anon_sym_await] = ACTIONS(2710), - [anon_sym_while] = ACTIONS(2710), - [anon_sym_do] = ACTIONS(2710), - [anon_sym_try] = ACTIONS(2710), - [anon_sym_break] = ACTIONS(2710), - [anon_sym_continue] = ACTIONS(2710), - [anon_sym_debugger] = ACTIONS(2710), - [anon_sym_return] = ACTIONS(2710), - [anon_sym_throw] = ACTIONS(2710), - [anon_sym_case] = ACTIONS(2710), - [anon_sym_yield] = ACTIONS(2710), - [anon_sym_LBRACK] = ACTIONS(2708), - [sym_glimmer_opening_tag] = ACTIONS(2708), - [anon_sym_class] = ACTIONS(2710), - [anon_sym_async] = ACTIONS(2710), - [anon_sym_function] = ACTIONS(2710), - [anon_sym_new] = ACTIONS(2710), - [anon_sym_using] = ACTIONS(2710), - [anon_sym_PLUS] = ACTIONS(2710), - [anon_sym_DASH] = ACTIONS(2710), - [anon_sym_SLASH] = ACTIONS(2710), - [anon_sym_LT] = ACTIONS(2710), - [anon_sym_TILDE] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(2710), - [anon_sym_delete] = ACTIONS(2710), - [anon_sym_PLUS_PLUS] = ACTIONS(2708), - [anon_sym_DASH_DASH] = ACTIONS(2708), - [anon_sym_DQUOTE] = ACTIONS(2708), - [anon_sym_SQUOTE] = ACTIONS(2708), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2708), - [sym_number] = ACTIONS(2708), - [sym_private_property_identifier] = ACTIONS(2708), - [sym_this] = ACTIONS(2710), - [sym_super] = ACTIONS(2710), - [sym_true] = ACTIONS(2710), - [sym_false] = ACTIONS(2710), - [sym_null] = ACTIONS(2710), - [sym_undefined] = ACTIONS(2710), - [anon_sym_AT] = ACTIONS(2708), - [anon_sym_static] = ACTIONS(2710), - [anon_sym_readonly] = ACTIONS(2710), - [anon_sym_get] = ACTIONS(2710), - [anon_sym_set] = ACTIONS(2710), - [anon_sym_declare] = ACTIONS(2710), - [anon_sym_public] = ACTIONS(2710), - [anon_sym_private] = ACTIONS(2710), - [anon_sym_protected] = ACTIONS(2710), - [anon_sym_override] = ACTIONS(2710), - [anon_sym_module] = ACTIONS(2710), - [anon_sym_any] = ACTIONS(2710), - [anon_sym_number] = ACTIONS(2710), - [anon_sym_boolean] = ACTIONS(2710), - [anon_sym_string] = ACTIONS(2710), - [anon_sym_symbol] = ACTIONS(2710), - [anon_sym_object] = ACTIONS(2710), - [anon_sym_abstract] = ACTIONS(2710), - [anon_sym_interface] = ACTIONS(2710), - [anon_sym_enum] = ACTIONS(2710), + [ts_builtin_sym_end] = ACTIONS(2695), + [sym_identifier] = ACTIONS(2697), + [anon_sym_export] = ACTIONS(2697), + [anon_sym_default] = ACTIONS(2697), + [anon_sym_type] = ACTIONS(2697), + [anon_sym_namespace] = ACTIONS(2697), + [anon_sym_LBRACE] = ACTIONS(2695), + [anon_sym_RBRACE] = ACTIONS(2695), + [anon_sym_typeof] = ACTIONS(2697), + [anon_sym_import] = ACTIONS(2697), + [anon_sym_with] = ACTIONS(2697), + [anon_sym_var] = ACTIONS(2697), + [anon_sym_let] = ACTIONS(2697), + [anon_sym_const] = ACTIONS(2697), + [anon_sym_BANG] = ACTIONS(2695), + [anon_sym_else] = ACTIONS(2697), + [anon_sym_if] = ACTIONS(2697), + [anon_sym_switch] = ACTIONS(2697), + [anon_sym_for] = ACTIONS(2697), + [anon_sym_LPAREN] = ACTIONS(2695), + [anon_sym_SEMI] = ACTIONS(2695), + [anon_sym_await] = ACTIONS(2697), + [anon_sym_while] = ACTIONS(2697), + [anon_sym_do] = ACTIONS(2697), + [anon_sym_try] = ACTIONS(2697), + [anon_sym_break] = ACTIONS(2697), + [anon_sym_continue] = ACTIONS(2697), + [anon_sym_debugger] = ACTIONS(2697), + [anon_sym_return] = ACTIONS(2697), + [anon_sym_throw] = ACTIONS(2697), + [anon_sym_case] = ACTIONS(2697), + [anon_sym_yield] = ACTIONS(2697), + [anon_sym_LBRACK] = ACTIONS(2695), + [anon_sym_class] = ACTIONS(2697), + [anon_sym_async] = ACTIONS(2697), + [anon_sym_function] = ACTIONS(2697), + [anon_sym_new] = ACTIONS(2697), + [anon_sym_using] = ACTIONS(2697), + [anon_sym_PLUS] = ACTIONS(2697), + [anon_sym_DASH] = ACTIONS(2697), + [anon_sym_SLASH] = ACTIONS(2697), + [anon_sym_LT] = ACTIONS(2695), + [anon_sym_TILDE] = ACTIONS(2695), + [anon_sym_void] = ACTIONS(2697), + [anon_sym_delete] = ACTIONS(2697), + [anon_sym_PLUS_PLUS] = ACTIONS(2695), + [anon_sym_DASH_DASH] = ACTIONS(2695), + [anon_sym_DQUOTE] = ACTIONS(2695), + [anon_sym_SQUOTE] = ACTIONS(2695), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2695), + [sym_number] = ACTIONS(2695), + [sym_private_property_identifier] = ACTIONS(2695), + [sym_this] = ACTIONS(2697), + [sym_super] = ACTIONS(2697), + [sym_true] = ACTIONS(2697), + [sym_false] = ACTIONS(2697), + [sym_null] = ACTIONS(2697), + [sym_undefined] = ACTIONS(2697), + [anon_sym_AT] = ACTIONS(2695), + [anon_sym_static] = ACTIONS(2697), + [anon_sym_readonly] = ACTIONS(2697), + [anon_sym_get] = ACTIONS(2697), + [anon_sym_set] = ACTIONS(2697), + [anon_sym_declare] = ACTIONS(2697), + [anon_sym_public] = ACTIONS(2697), + [anon_sym_private] = ACTIONS(2697), + [anon_sym_protected] = ACTIONS(2697), + [anon_sym_override] = ACTIONS(2697), + [anon_sym_module] = ACTIONS(2697), + [anon_sym_any] = ACTIONS(2697), + [anon_sym_number] = ACTIONS(2697), + [anon_sym_boolean] = ACTIONS(2697), + [anon_sym_string] = ACTIONS(2697), + [anon_sym_symbol] = ACTIONS(2697), + [anon_sym_object] = ACTIONS(2697), + [anon_sym_abstract] = ACTIONS(2697), + [anon_sym_interface] = ACTIONS(2697), + [anon_sym_enum] = ACTIONS(2697), [sym_html_comment] = ACTIONS(5), }, [857] = { - [ts_builtin_sym_end] = ACTIONS(2712), - [sym_identifier] = ACTIONS(2714), - [anon_sym_export] = ACTIONS(2714), - [anon_sym_default] = ACTIONS(2714), - [anon_sym_type] = ACTIONS(2714), - [anon_sym_namespace] = ACTIONS(2714), - [anon_sym_LBRACE] = ACTIONS(2712), - [anon_sym_RBRACE] = ACTIONS(2712), - [anon_sym_typeof] = ACTIONS(2714), - [anon_sym_import] = ACTIONS(2714), - [anon_sym_with] = ACTIONS(2714), - [anon_sym_var] = ACTIONS(2714), - [anon_sym_let] = ACTIONS(2714), - [anon_sym_const] = ACTIONS(2714), - [anon_sym_BANG] = ACTIONS(2712), - [anon_sym_else] = ACTIONS(2714), - [anon_sym_if] = ACTIONS(2714), - [anon_sym_switch] = ACTIONS(2714), - [anon_sym_for] = ACTIONS(2714), - [anon_sym_LPAREN] = ACTIONS(2712), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_await] = ACTIONS(2714), - [anon_sym_while] = ACTIONS(2714), - [anon_sym_do] = ACTIONS(2714), - [anon_sym_try] = ACTIONS(2714), - [anon_sym_break] = ACTIONS(2714), - [anon_sym_continue] = ACTIONS(2714), - [anon_sym_debugger] = ACTIONS(2714), - [anon_sym_return] = ACTIONS(2714), - [anon_sym_throw] = ACTIONS(2714), - [anon_sym_case] = ACTIONS(2714), - [anon_sym_yield] = ACTIONS(2714), - [anon_sym_LBRACK] = ACTIONS(2712), - [sym_glimmer_opening_tag] = ACTIONS(2712), - [anon_sym_class] = ACTIONS(2714), - [anon_sym_async] = ACTIONS(2714), - [anon_sym_function] = ACTIONS(2714), - [anon_sym_new] = ACTIONS(2714), - [anon_sym_using] = ACTIONS(2714), - [anon_sym_PLUS] = ACTIONS(2714), - [anon_sym_DASH] = ACTIONS(2714), - [anon_sym_SLASH] = ACTIONS(2714), - [anon_sym_LT] = ACTIONS(2714), - [anon_sym_TILDE] = ACTIONS(2712), - [anon_sym_void] = ACTIONS(2714), - [anon_sym_delete] = ACTIONS(2714), - [anon_sym_PLUS_PLUS] = ACTIONS(2712), - [anon_sym_DASH_DASH] = ACTIONS(2712), - [anon_sym_DQUOTE] = ACTIONS(2712), - [anon_sym_SQUOTE] = ACTIONS(2712), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2712), - [sym_number] = ACTIONS(2712), - [sym_private_property_identifier] = ACTIONS(2712), - [sym_this] = ACTIONS(2714), - [sym_super] = ACTIONS(2714), - [sym_true] = ACTIONS(2714), - [sym_false] = ACTIONS(2714), - [sym_null] = ACTIONS(2714), - [sym_undefined] = ACTIONS(2714), - [anon_sym_AT] = ACTIONS(2712), - [anon_sym_static] = ACTIONS(2714), - [anon_sym_readonly] = ACTIONS(2714), - [anon_sym_get] = ACTIONS(2714), - [anon_sym_set] = ACTIONS(2714), - [anon_sym_declare] = ACTIONS(2714), - [anon_sym_public] = ACTIONS(2714), - [anon_sym_private] = ACTIONS(2714), - [anon_sym_protected] = ACTIONS(2714), - [anon_sym_override] = ACTIONS(2714), - [anon_sym_module] = ACTIONS(2714), - [anon_sym_any] = ACTIONS(2714), - [anon_sym_number] = ACTIONS(2714), - [anon_sym_boolean] = ACTIONS(2714), - [anon_sym_string] = ACTIONS(2714), - [anon_sym_symbol] = ACTIONS(2714), - [anon_sym_object] = ACTIONS(2714), - [anon_sym_abstract] = ACTIONS(2714), - [anon_sym_interface] = ACTIONS(2714), - [anon_sym_enum] = ACTIONS(2714), + [ts_builtin_sym_end] = ACTIONS(2699), + [sym_identifier] = ACTIONS(2701), + [anon_sym_export] = ACTIONS(2701), + [anon_sym_default] = ACTIONS(2701), + [anon_sym_type] = ACTIONS(2701), + [anon_sym_namespace] = ACTIONS(2701), + [anon_sym_LBRACE] = ACTIONS(2699), + [anon_sym_RBRACE] = ACTIONS(2699), + [anon_sym_typeof] = ACTIONS(2701), + [anon_sym_import] = ACTIONS(2701), + [anon_sym_with] = ACTIONS(2701), + [anon_sym_var] = ACTIONS(2701), + [anon_sym_let] = ACTIONS(2701), + [anon_sym_const] = ACTIONS(2701), + [anon_sym_BANG] = ACTIONS(2699), + [anon_sym_else] = ACTIONS(2701), + [anon_sym_if] = ACTIONS(2701), + [anon_sym_switch] = ACTIONS(2701), + [anon_sym_for] = ACTIONS(2701), + [anon_sym_LPAREN] = ACTIONS(2699), + [anon_sym_SEMI] = ACTIONS(2699), + [anon_sym_await] = ACTIONS(2701), + [anon_sym_while] = ACTIONS(2701), + [anon_sym_do] = ACTIONS(2701), + [anon_sym_try] = ACTIONS(2701), + [anon_sym_break] = ACTIONS(2701), + [anon_sym_continue] = ACTIONS(2701), + [anon_sym_debugger] = ACTIONS(2701), + [anon_sym_return] = ACTIONS(2701), + [anon_sym_throw] = ACTIONS(2701), + [anon_sym_case] = ACTIONS(2701), + [anon_sym_yield] = ACTIONS(2701), + [anon_sym_LBRACK] = ACTIONS(2699), + [anon_sym_class] = ACTIONS(2701), + [anon_sym_async] = ACTIONS(2701), + [anon_sym_function] = ACTIONS(2701), + [anon_sym_new] = ACTIONS(2701), + [anon_sym_using] = ACTIONS(2701), + [anon_sym_PLUS] = ACTIONS(2701), + [anon_sym_DASH] = ACTIONS(2701), + [anon_sym_SLASH] = ACTIONS(2701), + [anon_sym_LT] = ACTIONS(2699), + [anon_sym_TILDE] = ACTIONS(2699), + [anon_sym_void] = ACTIONS(2701), + [anon_sym_delete] = ACTIONS(2701), + [anon_sym_PLUS_PLUS] = ACTIONS(2699), + [anon_sym_DASH_DASH] = ACTIONS(2699), + [anon_sym_DQUOTE] = ACTIONS(2699), + [anon_sym_SQUOTE] = ACTIONS(2699), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2699), + [sym_number] = ACTIONS(2699), + [sym_private_property_identifier] = ACTIONS(2699), + [sym_this] = ACTIONS(2701), + [sym_super] = ACTIONS(2701), + [sym_true] = ACTIONS(2701), + [sym_false] = ACTIONS(2701), + [sym_null] = ACTIONS(2701), + [sym_undefined] = ACTIONS(2701), + [anon_sym_AT] = ACTIONS(2699), + [anon_sym_static] = ACTIONS(2701), + [anon_sym_readonly] = ACTIONS(2701), + [anon_sym_get] = ACTIONS(2701), + [anon_sym_set] = ACTIONS(2701), + [anon_sym_declare] = ACTIONS(2701), + [anon_sym_public] = ACTIONS(2701), + [anon_sym_private] = ACTIONS(2701), + [anon_sym_protected] = ACTIONS(2701), + [anon_sym_override] = ACTIONS(2701), + [anon_sym_module] = ACTIONS(2701), + [anon_sym_any] = ACTIONS(2701), + [anon_sym_number] = ACTIONS(2701), + [anon_sym_boolean] = ACTIONS(2701), + [anon_sym_string] = ACTIONS(2701), + [anon_sym_symbol] = ACTIONS(2701), + [anon_sym_object] = ACTIONS(2701), + [anon_sym_abstract] = ACTIONS(2701), + [anon_sym_interface] = ACTIONS(2701), + [anon_sym_enum] = ACTIONS(2701), [sym_html_comment] = ACTIONS(5), }, [858] = { - [ts_builtin_sym_end] = ACTIONS(2716), - [sym_identifier] = ACTIONS(2718), - [anon_sym_export] = ACTIONS(2718), - [anon_sym_default] = ACTIONS(2718), - [anon_sym_type] = ACTIONS(2718), - [anon_sym_namespace] = ACTIONS(2718), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_RBRACE] = ACTIONS(2716), - [anon_sym_typeof] = ACTIONS(2718), - [anon_sym_import] = ACTIONS(2718), - [anon_sym_with] = ACTIONS(2718), - [anon_sym_var] = ACTIONS(2718), - [anon_sym_let] = ACTIONS(2718), - [anon_sym_const] = ACTIONS(2718), - [anon_sym_BANG] = ACTIONS(2716), - [anon_sym_else] = ACTIONS(2718), - [anon_sym_if] = ACTIONS(2718), - [anon_sym_switch] = ACTIONS(2718), - [anon_sym_for] = ACTIONS(2718), - [anon_sym_LPAREN] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_await] = ACTIONS(2718), - [anon_sym_while] = ACTIONS(2718), - [anon_sym_do] = ACTIONS(2718), - [anon_sym_try] = ACTIONS(2718), - [anon_sym_break] = ACTIONS(2718), - [anon_sym_continue] = ACTIONS(2718), - [anon_sym_debugger] = ACTIONS(2718), - [anon_sym_return] = ACTIONS(2718), - [anon_sym_throw] = ACTIONS(2718), - [anon_sym_case] = ACTIONS(2718), - [anon_sym_yield] = ACTIONS(2718), - [anon_sym_LBRACK] = ACTIONS(2716), - [sym_glimmer_opening_tag] = ACTIONS(2716), - [anon_sym_class] = ACTIONS(2718), - [anon_sym_async] = ACTIONS(2718), - [anon_sym_function] = ACTIONS(2718), - [anon_sym_new] = ACTIONS(2718), - [anon_sym_using] = ACTIONS(2718), - [anon_sym_PLUS] = ACTIONS(2718), - [anon_sym_DASH] = ACTIONS(2718), - [anon_sym_SLASH] = ACTIONS(2718), - [anon_sym_LT] = ACTIONS(2718), - [anon_sym_TILDE] = ACTIONS(2716), - [anon_sym_void] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2718), - [anon_sym_PLUS_PLUS] = ACTIONS(2716), - [anon_sym_DASH_DASH] = ACTIONS(2716), - [anon_sym_DQUOTE] = ACTIONS(2716), - [anon_sym_SQUOTE] = ACTIONS(2716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2716), - [sym_number] = ACTIONS(2716), - [sym_private_property_identifier] = ACTIONS(2716), - [sym_this] = ACTIONS(2718), - [sym_super] = ACTIONS(2718), - [sym_true] = ACTIONS(2718), - [sym_false] = ACTIONS(2718), - [sym_null] = ACTIONS(2718), - [sym_undefined] = ACTIONS(2718), - [anon_sym_AT] = ACTIONS(2716), - [anon_sym_static] = ACTIONS(2718), - [anon_sym_readonly] = ACTIONS(2718), - [anon_sym_get] = ACTIONS(2718), - [anon_sym_set] = ACTIONS(2718), - [anon_sym_declare] = ACTIONS(2718), - [anon_sym_public] = ACTIONS(2718), - [anon_sym_private] = ACTIONS(2718), - [anon_sym_protected] = ACTIONS(2718), - [anon_sym_override] = ACTIONS(2718), - [anon_sym_module] = ACTIONS(2718), - [anon_sym_any] = ACTIONS(2718), - [anon_sym_number] = ACTIONS(2718), - [anon_sym_boolean] = ACTIONS(2718), - [anon_sym_string] = ACTIONS(2718), - [anon_sym_symbol] = ACTIONS(2718), - [anon_sym_object] = ACTIONS(2718), - [anon_sym_abstract] = ACTIONS(2718), - [anon_sym_interface] = ACTIONS(2718), - [anon_sym_enum] = ACTIONS(2718), + [ts_builtin_sym_end] = ACTIONS(2703), + [sym_identifier] = ACTIONS(2705), + [anon_sym_export] = ACTIONS(2705), + [anon_sym_default] = ACTIONS(2705), + [anon_sym_type] = ACTIONS(2705), + [anon_sym_namespace] = ACTIONS(2705), + [anon_sym_LBRACE] = ACTIONS(2703), + [anon_sym_RBRACE] = ACTIONS(2703), + [anon_sym_typeof] = ACTIONS(2705), + [anon_sym_import] = ACTIONS(2705), + [anon_sym_with] = ACTIONS(2705), + [anon_sym_var] = ACTIONS(2705), + [anon_sym_let] = ACTIONS(2705), + [anon_sym_const] = ACTIONS(2705), + [anon_sym_BANG] = ACTIONS(2703), + [anon_sym_else] = ACTIONS(2705), + [anon_sym_if] = ACTIONS(2705), + [anon_sym_switch] = ACTIONS(2705), + [anon_sym_for] = ACTIONS(2705), + [anon_sym_LPAREN] = ACTIONS(2703), + [anon_sym_SEMI] = ACTIONS(2703), + [anon_sym_await] = ACTIONS(2705), + [anon_sym_while] = ACTIONS(2705), + [anon_sym_do] = ACTIONS(2705), + [anon_sym_try] = ACTIONS(2705), + [anon_sym_break] = ACTIONS(2705), + [anon_sym_continue] = ACTIONS(2705), + [anon_sym_debugger] = ACTIONS(2705), + [anon_sym_return] = ACTIONS(2705), + [anon_sym_throw] = ACTIONS(2705), + [anon_sym_case] = ACTIONS(2705), + [anon_sym_yield] = ACTIONS(2705), + [anon_sym_LBRACK] = ACTIONS(2703), + [anon_sym_class] = ACTIONS(2705), + [anon_sym_async] = ACTIONS(2705), + [anon_sym_function] = ACTIONS(2705), + [anon_sym_new] = ACTIONS(2705), + [anon_sym_using] = ACTIONS(2705), + [anon_sym_PLUS] = ACTIONS(2705), + [anon_sym_DASH] = ACTIONS(2705), + [anon_sym_SLASH] = ACTIONS(2705), + [anon_sym_LT] = ACTIONS(2703), + [anon_sym_TILDE] = ACTIONS(2703), + [anon_sym_void] = ACTIONS(2705), + [anon_sym_delete] = ACTIONS(2705), + [anon_sym_PLUS_PLUS] = ACTIONS(2703), + [anon_sym_DASH_DASH] = ACTIONS(2703), + [anon_sym_DQUOTE] = ACTIONS(2703), + [anon_sym_SQUOTE] = ACTIONS(2703), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2703), + [sym_number] = ACTIONS(2703), + [sym_private_property_identifier] = ACTIONS(2703), + [sym_this] = ACTIONS(2705), + [sym_super] = ACTIONS(2705), + [sym_true] = ACTIONS(2705), + [sym_false] = ACTIONS(2705), + [sym_null] = ACTIONS(2705), + [sym_undefined] = ACTIONS(2705), + [anon_sym_AT] = ACTIONS(2703), + [anon_sym_static] = ACTIONS(2705), + [anon_sym_readonly] = ACTIONS(2705), + [anon_sym_get] = ACTIONS(2705), + [anon_sym_set] = ACTIONS(2705), + [anon_sym_declare] = ACTIONS(2705), + [anon_sym_public] = ACTIONS(2705), + [anon_sym_private] = ACTIONS(2705), + [anon_sym_protected] = ACTIONS(2705), + [anon_sym_override] = ACTIONS(2705), + [anon_sym_module] = ACTIONS(2705), + [anon_sym_any] = ACTIONS(2705), + [anon_sym_number] = ACTIONS(2705), + [anon_sym_boolean] = ACTIONS(2705), + [anon_sym_string] = ACTIONS(2705), + [anon_sym_symbol] = ACTIONS(2705), + [anon_sym_object] = ACTIONS(2705), + [anon_sym_abstract] = ACTIONS(2705), + [anon_sym_interface] = ACTIONS(2705), + [anon_sym_enum] = ACTIONS(2705), [sym_html_comment] = ACTIONS(5), }, [859] = { - [ts_builtin_sym_end] = ACTIONS(2720), - [sym_identifier] = ACTIONS(2722), - [anon_sym_export] = ACTIONS(2722), - [anon_sym_default] = ACTIONS(2722), - [anon_sym_type] = ACTIONS(2722), - [anon_sym_namespace] = ACTIONS(2722), - [anon_sym_LBRACE] = ACTIONS(2720), - [anon_sym_RBRACE] = ACTIONS(2720), - [anon_sym_typeof] = ACTIONS(2722), - [anon_sym_import] = ACTIONS(2722), - [anon_sym_with] = ACTIONS(2722), - [anon_sym_var] = ACTIONS(2722), - [anon_sym_let] = ACTIONS(2722), - [anon_sym_const] = ACTIONS(2722), - [anon_sym_BANG] = ACTIONS(2720), - [anon_sym_else] = ACTIONS(2722), - [anon_sym_if] = ACTIONS(2722), - [anon_sym_switch] = ACTIONS(2722), - [anon_sym_for] = ACTIONS(2722), - [anon_sym_LPAREN] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_await] = ACTIONS(2722), - [anon_sym_while] = ACTIONS(2722), - [anon_sym_do] = ACTIONS(2722), - [anon_sym_try] = ACTIONS(2722), - [anon_sym_break] = ACTIONS(2722), - [anon_sym_continue] = ACTIONS(2722), - [anon_sym_debugger] = ACTIONS(2722), - [anon_sym_return] = ACTIONS(2722), - [anon_sym_throw] = ACTIONS(2722), - [anon_sym_case] = ACTIONS(2722), - [anon_sym_yield] = ACTIONS(2722), - [anon_sym_LBRACK] = ACTIONS(2720), - [sym_glimmer_opening_tag] = ACTIONS(2720), - [anon_sym_class] = ACTIONS(2722), - [anon_sym_async] = ACTIONS(2722), - [anon_sym_function] = ACTIONS(2722), - [anon_sym_new] = ACTIONS(2722), - [anon_sym_using] = ACTIONS(2722), - [anon_sym_PLUS] = ACTIONS(2722), - [anon_sym_DASH] = ACTIONS(2722), - [anon_sym_SLASH] = ACTIONS(2722), - [anon_sym_LT] = ACTIONS(2722), - [anon_sym_TILDE] = ACTIONS(2720), - [anon_sym_void] = ACTIONS(2722), - [anon_sym_delete] = ACTIONS(2722), - [anon_sym_PLUS_PLUS] = ACTIONS(2720), - [anon_sym_DASH_DASH] = ACTIONS(2720), - [anon_sym_DQUOTE] = ACTIONS(2720), - [anon_sym_SQUOTE] = ACTIONS(2720), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2720), - [sym_number] = ACTIONS(2720), - [sym_private_property_identifier] = ACTIONS(2720), - [sym_this] = ACTIONS(2722), - [sym_super] = ACTIONS(2722), - [sym_true] = ACTIONS(2722), - [sym_false] = ACTIONS(2722), - [sym_null] = ACTIONS(2722), - [sym_undefined] = ACTIONS(2722), - [anon_sym_AT] = ACTIONS(2720), - [anon_sym_static] = ACTIONS(2722), - [anon_sym_readonly] = ACTIONS(2722), - [anon_sym_get] = ACTIONS(2722), - [anon_sym_set] = ACTIONS(2722), - [anon_sym_declare] = ACTIONS(2722), - [anon_sym_public] = ACTIONS(2722), - [anon_sym_private] = ACTIONS(2722), - [anon_sym_protected] = ACTIONS(2722), - [anon_sym_override] = ACTIONS(2722), - [anon_sym_module] = ACTIONS(2722), - [anon_sym_any] = ACTIONS(2722), - [anon_sym_number] = ACTIONS(2722), - [anon_sym_boolean] = ACTIONS(2722), - [anon_sym_string] = ACTIONS(2722), - [anon_sym_symbol] = ACTIONS(2722), - [anon_sym_object] = ACTIONS(2722), - [anon_sym_abstract] = ACTIONS(2722), - [anon_sym_interface] = ACTIONS(2722), - [anon_sym_enum] = ACTIONS(2722), + [ts_builtin_sym_end] = ACTIONS(2707), + [sym_identifier] = ACTIONS(2709), + [anon_sym_export] = ACTIONS(2709), + [anon_sym_default] = ACTIONS(2709), + [anon_sym_type] = ACTIONS(2709), + [anon_sym_namespace] = ACTIONS(2709), + [anon_sym_LBRACE] = ACTIONS(2707), + [anon_sym_RBRACE] = ACTIONS(2707), + [anon_sym_typeof] = ACTIONS(2709), + [anon_sym_import] = ACTIONS(2709), + [anon_sym_with] = ACTIONS(2709), + [anon_sym_var] = ACTIONS(2709), + [anon_sym_let] = ACTIONS(2709), + [anon_sym_const] = ACTIONS(2709), + [anon_sym_BANG] = ACTIONS(2707), + [anon_sym_else] = ACTIONS(2709), + [anon_sym_if] = ACTIONS(2709), + [anon_sym_switch] = ACTIONS(2709), + [anon_sym_for] = ACTIONS(2709), + [anon_sym_LPAREN] = ACTIONS(2707), + [anon_sym_SEMI] = ACTIONS(2707), + [anon_sym_await] = ACTIONS(2709), + [anon_sym_while] = ACTIONS(2709), + [anon_sym_do] = ACTIONS(2709), + [anon_sym_try] = ACTIONS(2709), + [anon_sym_break] = ACTIONS(2709), + [anon_sym_continue] = ACTIONS(2709), + [anon_sym_debugger] = ACTIONS(2709), + [anon_sym_return] = ACTIONS(2709), + [anon_sym_throw] = ACTIONS(2709), + [anon_sym_case] = ACTIONS(2709), + [anon_sym_yield] = ACTIONS(2709), + [anon_sym_LBRACK] = ACTIONS(2707), + [anon_sym_class] = ACTIONS(2709), + [anon_sym_async] = ACTIONS(2709), + [anon_sym_function] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2709), + [anon_sym_using] = ACTIONS(2709), + [anon_sym_PLUS] = ACTIONS(2709), + [anon_sym_DASH] = ACTIONS(2709), + [anon_sym_SLASH] = ACTIONS(2709), + [anon_sym_LT] = ACTIONS(2707), + [anon_sym_TILDE] = ACTIONS(2707), + [anon_sym_void] = ACTIONS(2709), + [anon_sym_delete] = ACTIONS(2709), + [anon_sym_PLUS_PLUS] = ACTIONS(2707), + [anon_sym_DASH_DASH] = ACTIONS(2707), + [anon_sym_DQUOTE] = ACTIONS(2707), + [anon_sym_SQUOTE] = ACTIONS(2707), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2707), + [sym_number] = ACTIONS(2707), + [sym_private_property_identifier] = ACTIONS(2707), + [sym_this] = ACTIONS(2709), + [sym_super] = ACTIONS(2709), + [sym_true] = ACTIONS(2709), + [sym_false] = ACTIONS(2709), + [sym_null] = ACTIONS(2709), + [sym_undefined] = ACTIONS(2709), + [anon_sym_AT] = ACTIONS(2707), + [anon_sym_static] = ACTIONS(2709), + [anon_sym_readonly] = ACTIONS(2709), + [anon_sym_get] = ACTIONS(2709), + [anon_sym_set] = ACTIONS(2709), + [anon_sym_declare] = ACTIONS(2709), + [anon_sym_public] = ACTIONS(2709), + [anon_sym_private] = ACTIONS(2709), + [anon_sym_protected] = ACTIONS(2709), + [anon_sym_override] = ACTIONS(2709), + [anon_sym_module] = ACTIONS(2709), + [anon_sym_any] = ACTIONS(2709), + [anon_sym_number] = ACTIONS(2709), + [anon_sym_boolean] = ACTIONS(2709), + [anon_sym_string] = ACTIONS(2709), + [anon_sym_symbol] = ACTIONS(2709), + [anon_sym_object] = ACTIONS(2709), + [anon_sym_abstract] = ACTIONS(2709), + [anon_sym_interface] = ACTIONS(2709), + [anon_sym_enum] = ACTIONS(2709), [sym_html_comment] = ACTIONS(5), }, [860] = { - [ts_builtin_sym_end] = ACTIONS(2724), - [sym_identifier] = ACTIONS(2726), - [anon_sym_export] = ACTIONS(2726), - [anon_sym_default] = ACTIONS(2726), - [anon_sym_type] = ACTIONS(2726), - [anon_sym_namespace] = ACTIONS(2726), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_RBRACE] = ACTIONS(2724), - [anon_sym_typeof] = ACTIONS(2726), - [anon_sym_import] = ACTIONS(2726), - [anon_sym_with] = ACTIONS(2726), - [anon_sym_var] = ACTIONS(2726), - [anon_sym_let] = ACTIONS(2726), - [anon_sym_const] = ACTIONS(2726), - [anon_sym_BANG] = ACTIONS(2724), - [anon_sym_else] = ACTIONS(2726), - [anon_sym_if] = ACTIONS(2726), - [anon_sym_switch] = ACTIONS(2726), - [anon_sym_for] = ACTIONS(2726), - [anon_sym_LPAREN] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_await] = ACTIONS(2726), - [anon_sym_while] = ACTIONS(2726), - [anon_sym_do] = ACTIONS(2726), - [anon_sym_try] = ACTIONS(2726), - [anon_sym_break] = ACTIONS(2726), - [anon_sym_continue] = ACTIONS(2726), - [anon_sym_debugger] = ACTIONS(2726), - [anon_sym_return] = ACTIONS(2726), - [anon_sym_throw] = ACTIONS(2726), - [anon_sym_case] = ACTIONS(2726), - [anon_sym_yield] = ACTIONS(2726), - [anon_sym_LBRACK] = ACTIONS(2724), - [sym_glimmer_opening_tag] = ACTIONS(2724), - [anon_sym_class] = ACTIONS(2726), - [anon_sym_async] = ACTIONS(2726), - [anon_sym_function] = ACTIONS(2726), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_using] = ACTIONS(2726), - [anon_sym_PLUS] = ACTIONS(2726), - [anon_sym_DASH] = ACTIONS(2726), - [anon_sym_SLASH] = ACTIONS(2726), - [anon_sym_LT] = ACTIONS(2726), - [anon_sym_TILDE] = ACTIONS(2724), - [anon_sym_void] = ACTIONS(2726), - [anon_sym_delete] = ACTIONS(2726), - [anon_sym_PLUS_PLUS] = ACTIONS(2724), - [anon_sym_DASH_DASH] = ACTIONS(2724), - [anon_sym_DQUOTE] = ACTIONS(2724), - [anon_sym_SQUOTE] = ACTIONS(2724), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2724), - [sym_number] = ACTIONS(2724), - [sym_private_property_identifier] = ACTIONS(2724), - [sym_this] = ACTIONS(2726), - [sym_super] = ACTIONS(2726), - [sym_true] = ACTIONS(2726), - [sym_false] = ACTIONS(2726), - [sym_null] = ACTIONS(2726), - [sym_undefined] = ACTIONS(2726), - [anon_sym_AT] = ACTIONS(2724), - [anon_sym_static] = ACTIONS(2726), - [anon_sym_readonly] = ACTIONS(2726), - [anon_sym_get] = ACTIONS(2726), - [anon_sym_set] = ACTIONS(2726), - [anon_sym_declare] = ACTIONS(2726), - [anon_sym_public] = ACTIONS(2726), - [anon_sym_private] = ACTIONS(2726), - [anon_sym_protected] = ACTIONS(2726), - [anon_sym_override] = ACTIONS(2726), - [anon_sym_module] = ACTIONS(2726), - [anon_sym_any] = ACTIONS(2726), - [anon_sym_number] = ACTIONS(2726), - [anon_sym_boolean] = ACTIONS(2726), - [anon_sym_string] = ACTIONS(2726), - [anon_sym_symbol] = ACTIONS(2726), - [anon_sym_object] = ACTIONS(2726), - [anon_sym_abstract] = ACTIONS(2726), - [anon_sym_interface] = ACTIONS(2726), - [anon_sym_enum] = ACTIONS(2726), + [ts_builtin_sym_end] = ACTIONS(2711), + [sym_identifier] = ACTIONS(2713), + [anon_sym_export] = ACTIONS(2713), + [anon_sym_default] = ACTIONS(2713), + [anon_sym_type] = ACTIONS(2713), + [anon_sym_namespace] = ACTIONS(2713), + [anon_sym_LBRACE] = ACTIONS(2711), + [anon_sym_RBRACE] = ACTIONS(2711), + [anon_sym_typeof] = ACTIONS(2713), + [anon_sym_import] = ACTIONS(2713), + [anon_sym_with] = ACTIONS(2713), + [anon_sym_var] = ACTIONS(2713), + [anon_sym_let] = ACTIONS(2713), + [anon_sym_const] = ACTIONS(2713), + [anon_sym_BANG] = ACTIONS(2711), + [anon_sym_else] = ACTIONS(2713), + [anon_sym_if] = ACTIONS(2713), + [anon_sym_switch] = ACTIONS(2713), + [anon_sym_for] = ACTIONS(2713), + [anon_sym_LPAREN] = ACTIONS(2711), + [anon_sym_SEMI] = ACTIONS(2711), + [anon_sym_await] = ACTIONS(2713), + [anon_sym_while] = ACTIONS(2713), + [anon_sym_do] = ACTIONS(2713), + [anon_sym_try] = ACTIONS(2713), + [anon_sym_break] = ACTIONS(2713), + [anon_sym_continue] = ACTIONS(2713), + [anon_sym_debugger] = ACTIONS(2713), + [anon_sym_return] = ACTIONS(2713), + [anon_sym_throw] = ACTIONS(2713), + [anon_sym_case] = ACTIONS(2713), + [anon_sym_yield] = ACTIONS(2713), + [anon_sym_LBRACK] = ACTIONS(2711), + [anon_sym_class] = ACTIONS(2713), + [anon_sym_async] = ACTIONS(2713), + [anon_sym_function] = ACTIONS(2713), + [anon_sym_new] = ACTIONS(2713), + [anon_sym_using] = ACTIONS(2713), + [anon_sym_PLUS] = ACTIONS(2713), + [anon_sym_DASH] = ACTIONS(2713), + [anon_sym_SLASH] = ACTIONS(2713), + [anon_sym_LT] = ACTIONS(2711), + [anon_sym_TILDE] = ACTIONS(2711), + [anon_sym_void] = ACTIONS(2713), + [anon_sym_delete] = ACTIONS(2713), + [anon_sym_PLUS_PLUS] = ACTIONS(2711), + [anon_sym_DASH_DASH] = ACTIONS(2711), + [anon_sym_DQUOTE] = ACTIONS(2711), + [anon_sym_SQUOTE] = ACTIONS(2711), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2711), + [sym_number] = ACTIONS(2711), + [sym_private_property_identifier] = ACTIONS(2711), + [sym_this] = ACTIONS(2713), + [sym_super] = ACTIONS(2713), + [sym_true] = ACTIONS(2713), + [sym_false] = ACTIONS(2713), + [sym_null] = ACTIONS(2713), + [sym_undefined] = ACTIONS(2713), + [anon_sym_AT] = ACTIONS(2711), + [anon_sym_static] = ACTIONS(2713), + [anon_sym_readonly] = ACTIONS(2713), + [anon_sym_get] = ACTIONS(2713), + [anon_sym_set] = ACTIONS(2713), + [anon_sym_declare] = ACTIONS(2713), + [anon_sym_public] = ACTIONS(2713), + [anon_sym_private] = ACTIONS(2713), + [anon_sym_protected] = ACTIONS(2713), + [anon_sym_override] = ACTIONS(2713), + [anon_sym_module] = ACTIONS(2713), + [anon_sym_any] = ACTIONS(2713), + [anon_sym_number] = ACTIONS(2713), + [anon_sym_boolean] = ACTIONS(2713), + [anon_sym_string] = ACTIONS(2713), + [anon_sym_symbol] = ACTIONS(2713), + [anon_sym_object] = ACTIONS(2713), + [anon_sym_abstract] = ACTIONS(2713), + [anon_sym_interface] = ACTIONS(2713), + [anon_sym_enum] = ACTIONS(2713), [sym_html_comment] = ACTIONS(5), }, [861] = { - [ts_builtin_sym_end] = ACTIONS(2728), - [sym_identifier] = ACTIONS(2730), - [anon_sym_export] = ACTIONS(2730), - [anon_sym_default] = ACTIONS(2730), - [anon_sym_type] = ACTIONS(2730), - [anon_sym_namespace] = ACTIONS(2730), - [anon_sym_LBRACE] = ACTIONS(2728), - [anon_sym_RBRACE] = ACTIONS(2728), - [anon_sym_typeof] = ACTIONS(2730), - [anon_sym_import] = ACTIONS(2730), - [anon_sym_with] = ACTIONS(2730), - [anon_sym_var] = ACTIONS(2730), - [anon_sym_let] = ACTIONS(2730), - [anon_sym_const] = ACTIONS(2730), - [anon_sym_BANG] = ACTIONS(2728), - [anon_sym_else] = ACTIONS(2730), - [anon_sym_if] = ACTIONS(2730), - [anon_sym_switch] = ACTIONS(2730), - [anon_sym_for] = ACTIONS(2730), - [anon_sym_LPAREN] = ACTIONS(2728), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_await] = ACTIONS(2730), - [anon_sym_while] = ACTIONS(2730), - [anon_sym_do] = ACTIONS(2730), - [anon_sym_try] = ACTIONS(2730), - [anon_sym_break] = ACTIONS(2730), - [anon_sym_continue] = ACTIONS(2730), - [anon_sym_debugger] = ACTIONS(2730), - [anon_sym_return] = ACTIONS(2730), - [anon_sym_throw] = ACTIONS(2730), - [anon_sym_case] = ACTIONS(2730), - [anon_sym_yield] = ACTIONS(2730), - [anon_sym_LBRACK] = ACTIONS(2728), - [sym_glimmer_opening_tag] = ACTIONS(2728), - [anon_sym_class] = ACTIONS(2730), - [anon_sym_async] = ACTIONS(2730), - [anon_sym_function] = ACTIONS(2730), - [anon_sym_new] = ACTIONS(2730), - [anon_sym_using] = ACTIONS(2730), - [anon_sym_PLUS] = ACTIONS(2730), - [anon_sym_DASH] = ACTIONS(2730), - [anon_sym_SLASH] = ACTIONS(2730), - [anon_sym_LT] = ACTIONS(2730), - [anon_sym_TILDE] = ACTIONS(2728), - [anon_sym_void] = ACTIONS(2730), - [anon_sym_delete] = ACTIONS(2730), - [anon_sym_PLUS_PLUS] = ACTIONS(2728), - [anon_sym_DASH_DASH] = ACTIONS(2728), - [anon_sym_DQUOTE] = ACTIONS(2728), - [anon_sym_SQUOTE] = ACTIONS(2728), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2728), - [sym_number] = ACTIONS(2728), - [sym_private_property_identifier] = ACTIONS(2728), - [sym_this] = ACTIONS(2730), - [sym_super] = ACTIONS(2730), - [sym_true] = ACTIONS(2730), - [sym_false] = ACTIONS(2730), - [sym_null] = ACTIONS(2730), - [sym_undefined] = ACTIONS(2730), - [anon_sym_AT] = ACTIONS(2728), - [anon_sym_static] = ACTIONS(2730), - [anon_sym_readonly] = ACTIONS(2730), - [anon_sym_get] = ACTIONS(2730), - [anon_sym_set] = ACTIONS(2730), - [anon_sym_declare] = ACTIONS(2730), - [anon_sym_public] = ACTIONS(2730), - [anon_sym_private] = ACTIONS(2730), - [anon_sym_protected] = ACTIONS(2730), - [anon_sym_override] = ACTIONS(2730), - [anon_sym_module] = ACTIONS(2730), - [anon_sym_any] = ACTIONS(2730), - [anon_sym_number] = ACTIONS(2730), - [anon_sym_boolean] = ACTIONS(2730), - [anon_sym_string] = ACTIONS(2730), - [anon_sym_symbol] = ACTIONS(2730), - [anon_sym_object] = ACTIONS(2730), - [anon_sym_abstract] = ACTIONS(2730), - [anon_sym_interface] = ACTIONS(2730), - [anon_sym_enum] = ACTIONS(2730), + [ts_builtin_sym_end] = ACTIONS(2715), + [sym_identifier] = ACTIONS(2717), + [anon_sym_export] = ACTIONS(2717), + [anon_sym_default] = ACTIONS(2717), + [anon_sym_type] = ACTIONS(2717), + [anon_sym_namespace] = ACTIONS(2717), + [anon_sym_LBRACE] = ACTIONS(2715), + [anon_sym_RBRACE] = ACTIONS(2715), + [anon_sym_typeof] = ACTIONS(2717), + [anon_sym_import] = ACTIONS(2717), + [anon_sym_with] = ACTIONS(2717), + [anon_sym_var] = ACTIONS(2717), + [anon_sym_let] = ACTIONS(2717), + [anon_sym_const] = ACTIONS(2717), + [anon_sym_BANG] = ACTIONS(2715), + [anon_sym_else] = ACTIONS(2717), + [anon_sym_if] = ACTIONS(2717), + [anon_sym_switch] = ACTIONS(2717), + [anon_sym_for] = ACTIONS(2717), + [anon_sym_LPAREN] = ACTIONS(2715), + [anon_sym_SEMI] = ACTIONS(2715), + [anon_sym_await] = ACTIONS(2717), + [anon_sym_while] = ACTIONS(2717), + [anon_sym_do] = ACTIONS(2717), + [anon_sym_try] = ACTIONS(2717), + [anon_sym_break] = ACTIONS(2717), + [anon_sym_continue] = ACTIONS(2717), + [anon_sym_debugger] = ACTIONS(2717), + [anon_sym_return] = ACTIONS(2717), + [anon_sym_throw] = ACTIONS(2717), + [anon_sym_case] = ACTIONS(2717), + [anon_sym_yield] = ACTIONS(2717), + [anon_sym_LBRACK] = ACTIONS(2715), + [anon_sym_class] = ACTIONS(2717), + [anon_sym_async] = ACTIONS(2717), + [anon_sym_function] = ACTIONS(2717), + [anon_sym_new] = ACTIONS(2717), + [anon_sym_using] = ACTIONS(2717), + [anon_sym_PLUS] = ACTIONS(2717), + [anon_sym_DASH] = ACTIONS(2717), + [anon_sym_SLASH] = ACTIONS(2717), + [anon_sym_LT] = ACTIONS(2715), + [anon_sym_TILDE] = ACTIONS(2715), + [anon_sym_void] = ACTIONS(2717), + [anon_sym_delete] = ACTIONS(2717), + [anon_sym_PLUS_PLUS] = ACTIONS(2715), + [anon_sym_DASH_DASH] = ACTIONS(2715), + [anon_sym_DQUOTE] = ACTIONS(2715), + [anon_sym_SQUOTE] = ACTIONS(2715), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2715), + [sym_number] = ACTIONS(2715), + [sym_private_property_identifier] = ACTIONS(2715), + [sym_this] = ACTIONS(2717), + [sym_super] = ACTIONS(2717), + [sym_true] = ACTIONS(2717), + [sym_false] = ACTIONS(2717), + [sym_null] = ACTIONS(2717), + [sym_undefined] = ACTIONS(2717), + [anon_sym_AT] = ACTIONS(2715), + [anon_sym_static] = ACTIONS(2717), + [anon_sym_readonly] = ACTIONS(2717), + [anon_sym_get] = ACTIONS(2717), + [anon_sym_set] = ACTIONS(2717), + [anon_sym_declare] = ACTIONS(2717), + [anon_sym_public] = ACTIONS(2717), + [anon_sym_private] = ACTIONS(2717), + [anon_sym_protected] = ACTIONS(2717), + [anon_sym_override] = ACTIONS(2717), + [anon_sym_module] = ACTIONS(2717), + [anon_sym_any] = ACTIONS(2717), + [anon_sym_number] = ACTIONS(2717), + [anon_sym_boolean] = ACTIONS(2717), + [anon_sym_string] = ACTIONS(2717), + [anon_sym_symbol] = ACTIONS(2717), + [anon_sym_object] = ACTIONS(2717), + [anon_sym_abstract] = ACTIONS(2717), + [anon_sym_interface] = ACTIONS(2717), + [anon_sym_enum] = ACTIONS(2717), [sym_html_comment] = ACTIONS(5), }, [862] = { - [ts_builtin_sym_end] = ACTIONS(2732), - [sym_identifier] = ACTIONS(2734), - [anon_sym_export] = ACTIONS(2734), - [anon_sym_default] = ACTIONS(2734), - [anon_sym_type] = ACTIONS(2734), - [anon_sym_namespace] = ACTIONS(2734), - [anon_sym_LBRACE] = ACTIONS(2732), - [anon_sym_RBRACE] = ACTIONS(2732), - [anon_sym_typeof] = ACTIONS(2734), - [anon_sym_import] = ACTIONS(2734), - [anon_sym_with] = ACTIONS(2734), - [anon_sym_var] = ACTIONS(2734), - [anon_sym_let] = ACTIONS(2734), - [anon_sym_const] = ACTIONS(2734), - [anon_sym_BANG] = ACTIONS(2732), - [anon_sym_else] = ACTIONS(2734), - [anon_sym_if] = ACTIONS(2734), - [anon_sym_switch] = ACTIONS(2734), - [anon_sym_for] = ACTIONS(2734), - [anon_sym_LPAREN] = ACTIONS(2732), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_await] = ACTIONS(2734), - [anon_sym_while] = ACTIONS(2734), - [anon_sym_do] = ACTIONS(2734), - [anon_sym_try] = ACTIONS(2734), - [anon_sym_break] = ACTIONS(2734), - [anon_sym_continue] = ACTIONS(2734), - [anon_sym_debugger] = ACTIONS(2734), - [anon_sym_return] = ACTIONS(2734), - [anon_sym_throw] = ACTIONS(2734), - [anon_sym_case] = ACTIONS(2734), - [anon_sym_yield] = ACTIONS(2734), - [anon_sym_LBRACK] = ACTIONS(2732), - [sym_glimmer_opening_tag] = ACTIONS(2732), - [anon_sym_class] = ACTIONS(2734), - [anon_sym_async] = ACTIONS(2734), - [anon_sym_function] = ACTIONS(2734), - [anon_sym_new] = ACTIONS(2734), - [anon_sym_using] = ACTIONS(2734), - [anon_sym_PLUS] = ACTIONS(2734), - [anon_sym_DASH] = ACTIONS(2734), - [anon_sym_SLASH] = ACTIONS(2734), - [anon_sym_LT] = ACTIONS(2734), - [anon_sym_TILDE] = ACTIONS(2732), - [anon_sym_void] = ACTIONS(2734), - [anon_sym_delete] = ACTIONS(2734), - [anon_sym_PLUS_PLUS] = ACTIONS(2732), - [anon_sym_DASH_DASH] = ACTIONS(2732), - [anon_sym_DQUOTE] = ACTIONS(2732), - [anon_sym_SQUOTE] = ACTIONS(2732), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2732), - [sym_number] = ACTIONS(2732), - [sym_private_property_identifier] = ACTIONS(2732), - [sym_this] = ACTIONS(2734), - [sym_super] = ACTIONS(2734), - [sym_true] = ACTIONS(2734), - [sym_false] = ACTIONS(2734), - [sym_null] = ACTIONS(2734), - [sym_undefined] = ACTIONS(2734), - [anon_sym_AT] = ACTIONS(2732), - [anon_sym_static] = ACTIONS(2734), - [anon_sym_readonly] = ACTIONS(2734), - [anon_sym_get] = ACTIONS(2734), - [anon_sym_set] = ACTIONS(2734), - [anon_sym_declare] = ACTIONS(2734), - [anon_sym_public] = ACTIONS(2734), - [anon_sym_private] = ACTIONS(2734), - [anon_sym_protected] = ACTIONS(2734), - [anon_sym_override] = ACTIONS(2734), - [anon_sym_module] = ACTIONS(2734), - [anon_sym_any] = ACTIONS(2734), - [anon_sym_number] = ACTIONS(2734), - [anon_sym_boolean] = ACTIONS(2734), - [anon_sym_string] = ACTIONS(2734), - [anon_sym_symbol] = ACTIONS(2734), - [anon_sym_object] = ACTIONS(2734), - [anon_sym_abstract] = ACTIONS(2734), - [anon_sym_interface] = ACTIONS(2734), - [anon_sym_enum] = ACTIONS(2734), + [ts_builtin_sym_end] = ACTIONS(2719), + [sym_identifier] = ACTIONS(2721), + [anon_sym_export] = ACTIONS(2721), + [anon_sym_default] = ACTIONS(2721), + [anon_sym_type] = ACTIONS(2721), + [anon_sym_namespace] = ACTIONS(2721), + [anon_sym_LBRACE] = ACTIONS(2719), + [anon_sym_RBRACE] = ACTIONS(2719), + [anon_sym_typeof] = ACTIONS(2721), + [anon_sym_import] = ACTIONS(2721), + [anon_sym_with] = ACTIONS(2721), + [anon_sym_var] = ACTIONS(2721), + [anon_sym_let] = ACTIONS(2721), + [anon_sym_const] = ACTIONS(2721), + [anon_sym_BANG] = ACTIONS(2719), + [anon_sym_else] = ACTIONS(2721), + [anon_sym_if] = ACTIONS(2721), + [anon_sym_switch] = ACTIONS(2721), + [anon_sym_for] = ACTIONS(2721), + [anon_sym_LPAREN] = ACTIONS(2719), + [anon_sym_SEMI] = ACTIONS(2719), + [anon_sym_await] = ACTIONS(2721), + [anon_sym_while] = ACTIONS(2721), + [anon_sym_do] = ACTIONS(2721), + [anon_sym_try] = ACTIONS(2721), + [anon_sym_break] = ACTIONS(2721), + [anon_sym_continue] = ACTIONS(2721), + [anon_sym_debugger] = ACTIONS(2721), + [anon_sym_return] = ACTIONS(2721), + [anon_sym_throw] = ACTIONS(2721), + [anon_sym_case] = ACTIONS(2721), + [anon_sym_yield] = ACTIONS(2721), + [anon_sym_LBRACK] = ACTIONS(2719), + [anon_sym_class] = ACTIONS(2721), + [anon_sym_async] = ACTIONS(2721), + [anon_sym_function] = ACTIONS(2721), + [anon_sym_new] = ACTIONS(2721), + [anon_sym_using] = ACTIONS(2721), + [anon_sym_PLUS] = ACTIONS(2721), + [anon_sym_DASH] = ACTIONS(2721), + [anon_sym_SLASH] = ACTIONS(2721), + [anon_sym_LT] = ACTIONS(2719), + [anon_sym_TILDE] = ACTIONS(2719), + [anon_sym_void] = ACTIONS(2721), + [anon_sym_delete] = ACTIONS(2721), + [anon_sym_PLUS_PLUS] = ACTIONS(2719), + [anon_sym_DASH_DASH] = ACTIONS(2719), + [anon_sym_DQUOTE] = ACTIONS(2719), + [anon_sym_SQUOTE] = ACTIONS(2719), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2719), + [sym_number] = ACTIONS(2719), + [sym_private_property_identifier] = ACTIONS(2719), + [sym_this] = ACTIONS(2721), + [sym_super] = ACTIONS(2721), + [sym_true] = ACTIONS(2721), + [sym_false] = ACTIONS(2721), + [sym_null] = ACTIONS(2721), + [sym_undefined] = ACTIONS(2721), + [anon_sym_AT] = ACTIONS(2719), + [anon_sym_static] = ACTIONS(2721), + [anon_sym_readonly] = ACTIONS(2721), + [anon_sym_get] = ACTIONS(2721), + [anon_sym_set] = ACTIONS(2721), + [anon_sym_declare] = ACTIONS(2721), + [anon_sym_public] = ACTIONS(2721), + [anon_sym_private] = ACTIONS(2721), + [anon_sym_protected] = ACTIONS(2721), + [anon_sym_override] = ACTIONS(2721), + [anon_sym_module] = ACTIONS(2721), + [anon_sym_any] = ACTIONS(2721), + [anon_sym_number] = ACTIONS(2721), + [anon_sym_boolean] = ACTIONS(2721), + [anon_sym_string] = ACTIONS(2721), + [anon_sym_symbol] = ACTIONS(2721), + [anon_sym_object] = ACTIONS(2721), + [anon_sym_abstract] = ACTIONS(2721), + [anon_sym_interface] = ACTIONS(2721), + [anon_sym_enum] = ACTIONS(2721), [sym_html_comment] = ACTIONS(5), }, [863] = { - [ts_builtin_sym_end] = ACTIONS(2736), - [sym_identifier] = ACTIONS(2738), - [anon_sym_export] = ACTIONS(2738), - [anon_sym_default] = ACTIONS(2738), - [anon_sym_type] = ACTIONS(2738), - [anon_sym_namespace] = ACTIONS(2738), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_RBRACE] = ACTIONS(2736), - [anon_sym_typeof] = ACTIONS(2738), - [anon_sym_import] = ACTIONS(2738), - [anon_sym_with] = ACTIONS(2738), - [anon_sym_var] = ACTIONS(2738), - [anon_sym_let] = ACTIONS(2738), - [anon_sym_const] = ACTIONS(2738), - [anon_sym_BANG] = ACTIONS(2736), - [anon_sym_else] = ACTIONS(2738), - [anon_sym_if] = ACTIONS(2738), - [anon_sym_switch] = ACTIONS(2738), - [anon_sym_for] = ACTIONS(2738), - [anon_sym_LPAREN] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_await] = ACTIONS(2738), - [anon_sym_while] = ACTIONS(2738), - [anon_sym_do] = ACTIONS(2738), - [anon_sym_try] = ACTIONS(2738), - [anon_sym_break] = ACTIONS(2738), - [anon_sym_continue] = ACTIONS(2738), - [anon_sym_debugger] = ACTIONS(2738), - [anon_sym_return] = ACTIONS(2738), - [anon_sym_throw] = ACTIONS(2738), - [anon_sym_case] = ACTIONS(2738), - [anon_sym_yield] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2736), - [sym_glimmer_opening_tag] = ACTIONS(2736), - [anon_sym_class] = ACTIONS(2738), - [anon_sym_async] = ACTIONS(2738), - [anon_sym_function] = ACTIONS(2738), - [anon_sym_new] = ACTIONS(2738), - [anon_sym_using] = ACTIONS(2738), - [anon_sym_PLUS] = ACTIONS(2738), - [anon_sym_DASH] = ACTIONS(2738), - [anon_sym_SLASH] = ACTIONS(2738), - [anon_sym_LT] = ACTIONS(2738), - [anon_sym_TILDE] = ACTIONS(2736), - [anon_sym_void] = ACTIONS(2738), - [anon_sym_delete] = ACTIONS(2738), - [anon_sym_PLUS_PLUS] = ACTIONS(2736), - [anon_sym_DASH_DASH] = ACTIONS(2736), - [anon_sym_DQUOTE] = ACTIONS(2736), - [anon_sym_SQUOTE] = ACTIONS(2736), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2736), - [sym_number] = ACTIONS(2736), - [sym_private_property_identifier] = ACTIONS(2736), - [sym_this] = ACTIONS(2738), - [sym_super] = ACTIONS(2738), - [sym_true] = ACTIONS(2738), - [sym_false] = ACTIONS(2738), - [sym_null] = ACTIONS(2738), - [sym_undefined] = ACTIONS(2738), - [anon_sym_AT] = ACTIONS(2736), - [anon_sym_static] = ACTIONS(2738), - [anon_sym_readonly] = ACTIONS(2738), - [anon_sym_get] = ACTIONS(2738), - [anon_sym_set] = ACTIONS(2738), - [anon_sym_declare] = ACTIONS(2738), - [anon_sym_public] = ACTIONS(2738), - [anon_sym_private] = ACTIONS(2738), - [anon_sym_protected] = ACTIONS(2738), - [anon_sym_override] = ACTIONS(2738), - [anon_sym_module] = ACTIONS(2738), - [anon_sym_any] = ACTIONS(2738), - [anon_sym_number] = ACTIONS(2738), - [anon_sym_boolean] = ACTIONS(2738), - [anon_sym_string] = ACTIONS(2738), - [anon_sym_symbol] = ACTIONS(2738), - [anon_sym_object] = ACTIONS(2738), - [anon_sym_abstract] = ACTIONS(2738), - [anon_sym_interface] = ACTIONS(2738), - [anon_sym_enum] = ACTIONS(2738), + [ts_builtin_sym_end] = ACTIONS(2723), + [sym_identifier] = ACTIONS(2725), + [anon_sym_export] = ACTIONS(2725), + [anon_sym_default] = ACTIONS(2725), + [anon_sym_type] = ACTIONS(2725), + [anon_sym_namespace] = ACTIONS(2725), + [anon_sym_LBRACE] = ACTIONS(2723), + [anon_sym_RBRACE] = ACTIONS(2723), + [anon_sym_typeof] = ACTIONS(2725), + [anon_sym_import] = ACTIONS(2725), + [anon_sym_with] = ACTIONS(2725), + [anon_sym_var] = ACTIONS(2725), + [anon_sym_let] = ACTIONS(2725), + [anon_sym_const] = ACTIONS(2725), + [anon_sym_BANG] = ACTIONS(2723), + [anon_sym_else] = ACTIONS(2725), + [anon_sym_if] = ACTIONS(2725), + [anon_sym_switch] = ACTIONS(2725), + [anon_sym_for] = ACTIONS(2725), + [anon_sym_LPAREN] = ACTIONS(2723), + [anon_sym_SEMI] = ACTIONS(2723), + [anon_sym_await] = ACTIONS(2725), + [anon_sym_while] = ACTIONS(2725), + [anon_sym_do] = ACTIONS(2725), + [anon_sym_try] = ACTIONS(2725), + [anon_sym_break] = ACTIONS(2725), + [anon_sym_continue] = ACTIONS(2725), + [anon_sym_debugger] = ACTIONS(2725), + [anon_sym_return] = ACTIONS(2725), + [anon_sym_throw] = ACTIONS(2725), + [anon_sym_case] = ACTIONS(2725), + [anon_sym_yield] = ACTIONS(2725), + [anon_sym_LBRACK] = ACTIONS(2723), + [anon_sym_class] = ACTIONS(2725), + [anon_sym_async] = ACTIONS(2725), + [anon_sym_function] = ACTIONS(2725), + [anon_sym_new] = ACTIONS(2725), + [anon_sym_using] = ACTIONS(2725), + [anon_sym_PLUS] = ACTIONS(2725), + [anon_sym_DASH] = ACTIONS(2725), + [anon_sym_SLASH] = ACTIONS(2725), + [anon_sym_LT] = ACTIONS(2723), + [anon_sym_TILDE] = ACTIONS(2723), + [anon_sym_void] = ACTIONS(2725), + [anon_sym_delete] = ACTIONS(2725), + [anon_sym_PLUS_PLUS] = ACTIONS(2723), + [anon_sym_DASH_DASH] = ACTIONS(2723), + [anon_sym_DQUOTE] = ACTIONS(2723), + [anon_sym_SQUOTE] = ACTIONS(2723), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2723), + [sym_number] = ACTIONS(2723), + [sym_private_property_identifier] = ACTIONS(2723), + [sym_this] = ACTIONS(2725), + [sym_super] = ACTIONS(2725), + [sym_true] = ACTIONS(2725), + [sym_false] = ACTIONS(2725), + [sym_null] = ACTIONS(2725), + [sym_undefined] = ACTIONS(2725), + [anon_sym_AT] = ACTIONS(2723), + [anon_sym_static] = ACTIONS(2725), + [anon_sym_readonly] = ACTIONS(2725), + [anon_sym_get] = ACTIONS(2725), + [anon_sym_set] = ACTIONS(2725), + [anon_sym_declare] = ACTIONS(2725), + [anon_sym_public] = ACTIONS(2725), + [anon_sym_private] = ACTIONS(2725), + [anon_sym_protected] = ACTIONS(2725), + [anon_sym_override] = ACTIONS(2725), + [anon_sym_module] = ACTIONS(2725), + [anon_sym_any] = ACTIONS(2725), + [anon_sym_number] = ACTIONS(2725), + [anon_sym_boolean] = ACTIONS(2725), + [anon_sym_string] = ACTIONS(2725), + [anon_sym_symbol] = ACTIONS(2725), + [anon_sym_object] = ACTIONS(2725), + [anon_sym_abstract] = ACTIONS(2725), + [anon_sym_interface] = ACTIONS(2725), + [anon_sym_enum] = ACTIONS(2725), [sym_html_comment] = ACTIONS(5), }, [864] = { - [ts_builtin_sym_end] = ACTIONS(2740), - [sym_identifier] = ACTIONS(2742), - [anon_sym_export] = ACTIONS(2742), - [anon_sym_default] = ACTIONS(2742), - [anon_sym_type] = ACTIONS(2742), - [anon_sym_namespace] = ACTIONS(2742), - [anon_sym_LBRACE] = ACTIONS(2740), - [anon_sym_RBRACE] = ACTIONS(2740), - [anon_sym_typeof] = ACTIONS(2742), - [anon_sym_import] = ACTIONS(2742), - [anon_sym_with] = ACTIONS(2742), - [anon_sym_var] = ACTIONS(2742), - [anon_sym_let] = ACTIONS(2742), - [anon_sym_const] = ACTIONS(2742), - [anon_sym_BANG] = ACTIONS(2740), - [anon_sym_else] = ACTIONS(2742), - [anon_sym_if] = ACTIONS(2742), - [anon_sym_switch] = ACTIONS(2742), - [anon_sym_for] = ACTIONS(2742), - [anon_sym_LPAREN] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_await] = ACTIONS(2742), - [anon_sym_while] = ACTIONS(2742), - [anon_sym_do] = ACTIONS(2742), - [anon_sym_try] = ACTIONS(2742), - [anon_sym_break] = ACTIONS(2742), - [anon_sym_continue] = ACTIONS(2742), - [anon_sym_debugger] = ACTIONS(2742), - [anon_sym_return] = ACTIONS(2742), - [anon_sym_throw] = ACTIONS(2742), - [anon_sym_case] = ACTIONS(2742), - [anon_sym_yield] = ACTIONS(2742), - [anon_sym_LBRACK] = ACTIONS(2740), - [sym_glimmer_opening_tag] = ACTIONS(2740), - [anon_sym_class] = ACTIONS(2742), - [anon_sym_async] = ACTIONS(2742), - [anon_sym_function] = ACTIONS(2742), - [anon_sym_new] = ACTIONS(2742), - [anon_sym_using] = ACTIONS(2742), - [anon_sym_PLUS] = ACTIONS(2742), - [anon_sym_DASH] = ACTIONS(2742), - [anon_sym_SLASH] = ACTIONS(2742), - [anon_sym_LT] = ACTIONS(2742), - [anon_sym_TILDE] = ACTIONS(2740), - [anon_sym_void] = ACTIONS(2742), - [anon_sym_delete] = ACTIONS(2742), - [anon_sym_PLUS_PLUS] = ACTIONS(2740), - [anon_sym_DASH_DASH] = ACTIONS(2740), - [anon_sym_DQUOTE] = ACTIONS(2740), - [anon_sym_SQUOTE] = ACTIONS(2740), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2740), - [sym_number] = ACTIONS(2740), - [sym_private_property_identifier] = ACTIONS(2740), - [sym_this] = ACTIONS(2742), - [sym_super] = ACTIONS(2742), - [sym_true] = ACTIONS(2742), - [sym_false] = ACTIONS(2742), - [sym_null] = ACTIONS(2742), - [sym_undefined] = ACTIONS(2742), - [anon_sym_AT] = ACTIONS(2740), - [anon_sym_static] = ACTIONS(2742), - [anon_sym_readonly] = ACTIONS(2742), - [anon_sym_get] = ACTIONS(2742), - [anon_sym_set] = ACTIONS(2742), - [anon_sym_declare] = ACTIONS(2742), - [anon_sym_public] = ACTIONS(2742), - [anon_sym_private] = ACTIONS(2742), - [anon_sym_protected] = ACTIONS(2742), - [anon_sym_override] = ACTIONS(2742), - [anon_sym_module] = ACTIONS(2742), - [anon_sym_any] = ACTIONS(2742), - [anon_sym_number] = ACTIONS(2742), - [anon_sym_boolean] = ACTIONS(2742), - [anon_sym_string] = ACTIONS(2742), - [anon_sym_symbol] = ACTIONS(2742), - [anon_sym_object] = ACTIONS(2742), - [anon_sym_abstract] = ACTIONS(2742), - [anon_sym_interface] = ACTIONS(2742), - [anon_sym_enum] = ACTIONS(2742), + [ts_builtin_sym_end] = ACTIONS(2727), + [sym_identifier] = ACTIONS(2729), + [anon_sym_export] = ACTIONS(2729), + [anon_sym_default] = ACTIONS(2729), + [anon_sym_type] = ACTIONS(2729), + [anon_sym_namespace] = ACTIONS(2729), + [anon_sym_LBRACE] = ACTIONS(2727), + [anon_sym_RBRACE] = ACTIONS(2727), + [anon_sym_typeof] = ACTIONS(2729), + [anon_sym_import] = ACTIONS(2729), + [anon_sym_with] = ACTIONS(2729), + [anon_sym_var] = ACTIONS(2729), + [anon_sym_let] = ACTIONS(2729), + [anon_sym_const] = ACTIONS(2729), + [anon_sym_BANG] = ACTIONS(2727), + [anon_sym_else] = ACTIONS(2729), + [anon_sym_if] = ACTIONS(2729), + [anon_sym_switch] = ACTIONS(2729), + [anon_sym_for] = ACTIONS(2729), + [anon_sym_LPAREN] = ACTIONS(2727), + [anon_sym_SEMI] = ACTIONS(2727), + [anon_sym_await] = ACTIONS(2729), + [anon_sym_while] = ACTIONS(2729), + [anon_sym_do] = ACTIONS(2729), + [anon_sym_try] = ACTIONS(2729), + [anon_sym_break] = ACTIONS(2729), + [anon_sym_continue] = ACTIONS(2729), + [anon_sym_debugger] = ACTIONS(2729), + [anon_sym_return] = ACTIONS(2729), + [anon_sym_throw] = ACTIONS(2729), + [anon_sym_case] = ACTIONS(2729), + [anon_sym_yield] = ACTIONS(2729), + [anon_sym_LBRACK] = ACTIONS(2727), + [anon_sym_class] = ACTIONS(2729), + [anon_sym_async] = ACTIONS(2729), + [anon_sym_function] = ACTIONS(2729), + [anon_sym_new] = ACTIONS(2729), + [anon_sym_using] = ACTIONS(2729), + [anon_sym_PLUS] = ACTIONS(2729), + [anon_sym_DASH] = ACTIONS(2729), + [anon_sym_SLASH] = ACTIONS(2729), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_TILDE] = ACTIONS(2727), + [anon_sym_void] = ACTIONS(2729), + [anon_sym_delete] = ACTIONS(2729), + [anon_sym_PLUS_PLUS] = ACTIONS(2727), + [anon_sym_DASH_DASH] = ACTIONS(2727), + [anon_sym_DQUOTE] = ACTIONS(2727), + [anon_sym_SQUOTE] = ACTIONS(2727), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2727), + [sym_number] = ACTIONS(2727), + [sym_private_property_identifier] = ACTIONS(2727), + [sym_this] = ACTIONS(2729), + [sym_super] = ACTIONS(2729), + [sym_true] = ACTIONS(2729), + [sym_false] = ACTIONS(2729), + [sym_null] = ACTIONS(2729), + [sym_undefined] = ACTIONS(2729), + [anon_sym_AT] = ACTIONS(2727), + [anon_sym_static] = ACTIONS(2729), + [anon_sym_readonly] = ACTIONS(2729), + [anon_sym_get] = ACTIONS(2729), + [anon_sym_set] = ACTIONS(2729), + [anon_sym_declare] = ACTIONS(2729), + [anon_sym_public] = ACTIONS(2729), + [anon_sym_private] = ACTIONS(2729), + [anon_sym_protected] = ACTIONS(2729), + [anon_sym_override] = ACTIONS(2729), + [anon_sym_module] = ACTIONS(2729), + [anon_sym_any] = ACTIONS(2729), + [anon_sym_number] = ACTIONS(2729), + [anon_sym_boolean] = ACTIONS(2729), + [anon_sym_string] = ACTIONS(2729), + [anon_sym_symbol] = ACTIONS(2729), + [anon_sym_object] = ACTIONS(2729), + [anon_sym_abstract] = ACTIONS(2729), + [anon_sym_interface] = ACTIONS(2729), + [anon_sym_enum] = ACTIONS(2729), [sym_html_comment] = ACTIONS(5), }, [865] = { - [ts_builtin_sym_end] = ACTIONS(2708), - [sym_identifier] = ACTIONS(2710), - [anon_sym_export] = ACTIONS(2710), - [anon_sym_default] = ACTIONS(2710), - [anon_sym_type] = ACTIONS(2710), - [anon_sym_namespace] = ACTIONS(2710), - [anon_sym_LBRACE] = ACTIONS(2708), - [anon_sym_RBRACE] = ACTIONS(2708), - [anon_sym_typeof] = ACTIONS(2710), - [anon_sym_import] = ACTIONS(2710), - [anon_sym_with] = ACTIONS(2710), - [anon_sym_var] = ACTIONS(2710), - [anon_sym_let] = ACTIONS(2710), - [anon_sym_const] = ACTIONS(2710), - [anon_sym_BANG] = ACTIONS(2708), - [anon_sym_else] = ACTIONS(2710), - [anon_sym_if] = ACTIONS(2710), - [anon_sym_switch] = ACTIONS(2710), - [anon_sym_for] = ACTIONS(2710), - [anon_sym_LPAREN] = ACTIONS(2708), - [anon_sym_SEMI] = ACTIONS(2708), - [anon_sym_await] = ACTIONS(2710), - [anon_sym_while] = ACTIONS(2710), - [anon_sym_do] = ACTIONS(2710), - [anon_sym_try] = ACTIONS(2710), - [anon_sym_break] = ACTIONS(2710), - [anon_sym_continue] = ACTIONS(2710), - [anon_sym_debugger] = ACTIONS(2710), - [anon_sym_return] = ACTIONS(2710), - [anon_sym_throw] = ACTIONS(2710), - [anon_sym_case] = ACTIONS(2710), - [anon_sym_yield] = ACTIONS(2710), - [anon_sym_LBRACK] = ACTIONS(2708), - [sym_glimmer_opening_tag] = ACTIONS(2708), - [anon_sym_class] = ACTIONS(2710), - [anon_sym_async] = ACTIONS(2710), - [anon_sym_function] = ACTIONS(2710), - [anon_sym_new] = ACTIONS(2710), - [anon_sym_using] = ACTIONS(2710), - [anon_sym_PLUS] = ACTIONS(2710), - [anon_sym_DASH] = ACTIONS(2710), - [anon_sym_SLASH] = ACTIONS(2710), - [anon_sym_LT] = ACTIONS(2710), - [anon_sym_TILDE] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(2710), - [anon_sym_delete] = ACTIONS(2710), - [anon_sym_PLUS_PLUS] = ACTIONS(2708), - [anon_sym_DASH_DASH] = ACTIONS(2708), - [anon_sym_DQUOTE] = ACTIONS(2708), - [anon_sym_SQUOTE] = ACTIONS(2708), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2708), - [sym_number] = ACTIONS(2708), - [sym_private_property_identifier] = ACTIONS(2708), - [sym_this] = ACTIONS(2710), - [sym_super] = ACTIONS(2710), - [sym_true] = ACTIONS(2710), - [sym_false] = ACTIONS(2710), - [sym_null] = ACTIONS(2710), - [sym_undefined] = ACTIONS(2710), - [anon_sym_AT] = ACTIONS(2708), - [anon_sym_static] = ACTIONS(2710), - [anon_sym_readonly] = ACTIONS(2710), - [anon_sym_get] = ACTIONS(2710), - [anon_sym_set] = ACTIONS(2710), - [anon_sym_declare] = ACTIONS(2710), - [anon_sym_public] = ACTIONS(2710), - [anon_sym_private] = ACTIONS(2710), - [anon_sym_protected] = ACTIONS(2710), - [anon_sym_override] = ACTIONS(2710), - [anon_sym_module] = ACTIONS(2710), - [anon_sym_any] = ACTIONS(2710), - [anon_sym_number] = ACTIONS(2710), - [anon_sym_boolean] = ACTIONS(2710), - [anon_sym_string] = ACTIONS(2710), - [anon_sym_symbol] = ACTIONS(2710), - [anon_sym_object] = ACTIONS(2710), - [anon_sym_abstract] = ACTIONS(2710), - [anon_sym_interface] = ACTIONS(2710), - [anon_sym_enum] = ACTIONS(2710), + [ts_builtin_sym_end] = ACTIONS(1884), + [sym_identifier] = ACTIONS(1886), + [anon_sym_export] = ACTIONS(1886), + [anon_sym_default] = ACTIONS(1886), + [anon_sym_type] = ACTIONS(1886), + [anon_sym_namespace] = ACTIONS(1886), + [anon_sym_LBRACE] = ACTIONS(1884), + [anon_sym_RBRACE] = ACTIONS(1884), + [anon_sym_typeof] = ACTIONS(1886), + [anon_sym_import] = ACTIONS(1886), + [anon_sym_with] = ACTIONS(1886), + [anon_sym_var] = ACTIONS(1886), + [anon_sym_let] = ACTIONS(1886), + [anon_sym_const] = ACTIONS(1886), + [anon_sym_BANG] = ACTIONS(1884), + [anon_sym_else] = ACTIONS(1886), + [anon_sym_if] = ACTIONS(1886), + [anon_sym_switch] = ACTIONS(1886), + [anon_sym_for] = ACTIONS(1886), + [anon_sym_LPAREN] = ACTIONS(1884), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_await] = ACTIONS(1886), + [anon_sym_while] = ACTIONS(1886), + [anon_sym_do] = ACTIONS(1886), + [anon_sym_try] = ACTIONS(1886), + [anon_sym_break] = ACTIONS(1886), + [anon_sym_continue] = ACTIONS(1886), + [anon_sym_debugger] = ACTIONS(1886), + [anon_sym_return] = ACTIONS(1886), + [anon_sym_throw] = ACTIONS(1886), + [anon_sym_case] = ACTIONS(1886), + [anon_sym_yield] = ACTIONS(1886), + [anon_sym_LBRACK] = ACTIONS(1884), + [anon_sym_class] = ACTIONS(1886), + [anon_sym_async] = ACTIONS(1886), + [anon_sym_function] = ACTIONS(1886), + [anon_sym_new] = ACTIONS(1886), + [anon_sym_using] = ACTIONS(1886), + [anon_sym_PLUS] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_SLASH] = ACTIONS(1886), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_TILDE] = ACTIONS(1884), + [anon_sym_void] = ACTIONS(1886), + [anon_sym_delete] = ACTIONS(1886), + [anon_sym_PLUS_PLUS] = ACTIONS(1884), + [anon_sym_DASH_DASH] = ACTIONS(1884), + [anon_sym_DQUOTE] = ACTIONS(1884), + [anon_sym_SQUOTE] = ACTIONS(1884), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1884), + [sym_number] = ACTIONS(1884), + [sym_private_property_identifier] = ACTIONS(1884), + [sym_this] = ACTIONS(1886), + [sym_super] = ACTIONS(1886), + [sym_true] = ACTIONS(1886), + [sym_false] = ACTIONS(1886), + [sym_null] = ACTIONS(1886), + [sym_undefined] = ACTIONS(1886), + [anon_sym_AT] = ACTIONS(1884), + [anon_sym_static] = ACTIONS(1886), + [anon_sym_readonly] = ACTIONS(1886), + [anon_sym_get] = ACTIONS(1886), + [anon_sym_set] = ACTIONS(1886), + [anon_sym_declare] = ACTIONS(1886), + [anon_sym_public] = ACTIONS(1886), + [anon_sym_private] = ACTIONS(1886), + [anon_sym_protected] = ACTIONS(1886), + [anon_sym_override] = ACTIONS(1886), + [anon_sym_module] = ACTIONS(1886), + [anon_sym_any] = ACTIONS(1886), + [anon_sym_number] = ACTIONS(1886), + [anon_sym_boolean] = ACTIONS(1886), + [anon_sym_string] = ACTIONS(1886), + [anon_sym_symbol] = ACTIONS(1886), + [anon_sym_object] = ACTIONS(1886), + [anon_sym_abstract] = ACTIONS(1886), + [anon_sym_interface] = ACTIONS(1886), + [anon_sym_enum] = ACTIONS(1886), [sym_html_comment] = ACTIONS(5), }, [866] = { - [ts_builtin_sym_end] = ACTIONS(2744), - [sym_identifier] = ACTIONS(2746), - [anon_sym_export] = ACTIONS(2746), - [anon_sym_default] = ACTIONS(2746), - [anon_sym_type] = ACTIONS(2746), - [anon_sym_namespace] = ACTIONS(2746), - [anon_sym_LBRACE] = ACTIONS(2744), - [anon_sym_RBRACE] = ACTIONS(2744), - [anon_sym_typeof] = ACTIONS(2746), - [anon_sym_import] = ACTIONS(2746), - [anon_sym_with] = ACTIONS(2746), - [anon_sym_var] = ACTIONS(2746), - [anon_sym_let] = ACTIONS(2746), - [anon_sym_const] = ACTIONS(2746), - [anon_sym_BANG] = ACTIONS(2744), - [anon_sym_else] = ACTIONS(2746), - [anon_sym_if] = ACTIONS(2746), - [anon_sym_switch] = ACTIONS(2746), - [anon_sym_for] = ACTIONS(2746), - [anon_sym_LPAREN] = ACTIONS(2744), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_await] = ACTIONS(2746), - [anon_sym_while] = ACTIONS(2746), - [anon_sym_do] = ACTIONS(2746), - [anon_sym_try] = ACTIONS(2746), - [anon_sym_break] = ACTIONS(2746), - [anon_sym_continue] = ACTIONS(2746), - [anon_sym_debugger] = ACTIONS(2746), - [anon_sym_return] = ACTIONS(2746), - [anon_sym_throw] = ACTIONS(2746), - [anon_sym_case] = ACTIONS(2746), - [anon_sym_yield] = ACTIONS(2746), - [anon_sym_LBRACK] = ACTIONS(2744), - [sym_glimmer_opening_tag] = ACTIONS(2744), - [anon_sym_class] = ACTIONS(2746), - [anon_sym_async] = ACTIONS(2746), - [anon_sym_function] = ACTIONS(2746), - [anon_sym_new] = ACTIONS(2746), - [anon_sym_using] = ACTIONS(2746), - [anon_sym_PLUS] = ACTIONS(2746), - [anon_sym_DASH] = ACTIONS(2746), - [anon_sym_SLASH] = ACTIONS(2746), - [anon_sym_LT] = ACTIONS(2746), - [anon_sym_TILDE] = ACTIONS(2744), - [anon_sym_void] = ACTIONS(2746), - [anon_sym_delete] = ACTIONS(2746), - [anon_sym_PLUS_PLUS] = ACTIONS(2744), - [anon_sym_DASH_DASH] = ACTIONS(2744), - [anon_sym_DQUOTE] = ACTIONS(2744), - [anon_sym_SQUOTE] = ACTIONS(2744), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2744), - [sym_number] = ACTIONS(2744), - [sym_private_property_identifier] = ACTIONS(2744), - [sym_this] = ACTIONS(2746), - [sym_super] = ACTIONS(2746), - [sym_true] = ACTIONS(2746), - [sym_false] = ACTIONS(2746), - [sym_null] = ACTIONS(2746), - [sym_undefined] = ACTIONS(2746), - [anon_sym_AT] = ACTIONS(2744), - [anon_sym_static] = ACTIONS(2746), - [anon_sym_readonly] = ACTIONS(2746), - [anon_sym_get] = ACTIONS(2746), - [anon_sym_set] = ACTIONS(2746), - [anon_sym_declare] = ACTIONS(2746), - [anon_sym_public] = ACTIONS(2746), - [anon_sym_private] = ACTIONS(2746), - [anon_sym_protected] = ACTIONS(2746), - [anon_sym_override] = ACTIONS(2746), - [anon_sym_module] = ACTIONS(2746), - [anon_sym_any] = ACTIONS(2746), - [anon_sym_number] = ACTIONS(2746), - [anon_sym_boolean] = ACTIONS(2746), - [anon_sym_string] = ACTIONS(2746), - [anon_sym_symbol] = ACTIONS(2746), - [anon_sym_object] = ACTIONS(2746), - [anon_sym_abstract] = ACTIONS(2746), - [anon_sym_interface] = ACTIONS(2746), - [anon_sym_enum] = ACTIONS(2746), + [ts_builtin_sym_end] = ACTIONS(2699), + [sym_identifier] = ACTIONS(2701), + [anon_sym_export] = ACTIONS(2701), + [anon_sym_default] = ACTIONS(2701), + [anon_sym_type] = ACTIONS(2701), + [anon_sym_namespace] = ACTIONS(2701), + [anon_sym_LBRACE] = ACTIONS(2699), + [anon_sym_RBRACE] = ACTIONS(2699), + [anon_sym_typeof] = ACTIONS(2701), + [anon_sym_import] = ACTIONS(2701), + [anon_sym_with] = ACTIONS(2701), + [anon_sym_var] = ACTIONS(2701), + [anon_sym_let] = ACTIONS(2701), + [anon_sym_const] = ACTIONS(2701), + [anon_sym_BANG] = ACTIONS(2699), + [anon_sym_else] = ACTIONS(2701), + [anon_sym_if] = ACTIONS(2701), + [anon_sym_switch] = ACTIONS(2701), + [anon_sym_for] = ACTIONS(2701), + [anon_sym_LPAREN] = ACTIONS(2699), + [anon_sym_SEMI] = ACTIONS(2699), + [anon_sym_await] = ACTIONS(2701), + [anon_sym_while] = ACTIONS(2701), + [anon_sym_do] = ACTIONS(2701), + [anon_sym_try] = ACTIONS(2701), + [anon_sym_break] = ACTIONS(2701), + [anon_sym_continue] = ACTIONS(2701), + [anon_sym_debugger] = ACTIONS(2701), + [anon_sym_return] = ACTIONS(2701), + [anon_sym_throw] = ACTIONS(2701), + [anon_sym_case] = ACTIONS(2701), + [anon_sym_yield] = ACTIONS(2701), + [anon_sym_LBRACK] = ACTIONS(2699), + [anon_sym_class] = ACTIONS(2701), + [anon_sym_async] = ACTIONS(2701), + [anon_sym_function] = ACTIONS(2701), + [anon_sym_new] = ACTIONS(2701), + [anon_sym_using] = ACTIONS(2701), + [anon_sym_PLUS] = ACTIONS(2701), + [anon_sym_DASH] = ACTIONS(2701), + [anon_sym_SLASH] = ACTIONS(2701), + [anon_sym_LT] = ACTIONS(2699), + [anon_sym_TILDE] = ACTIONS(2699), + [anon_sym_void] = ACTIONS(2701), + [anon_sym_delete] = ACTIONS(2701), + [anon_sym_PLUS_PLUS] = ACTIONS(2699), + [anon_sym_DASH_DASH] = ACTIONS(2699), + [anon_sym_DQUOTE] = ACTIONS(2699), + [anon_sym_SQUOTE] = ACTIONS(2699), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2699), + [sym_number] = ACTIONS(2699), + [sym_private_property_identifier] = ACTIONS(2699), + [sym_this] = ACTIONS(2701), + [sym_super] = ACTIONS(2701), + [sym_true] = ACTIONS(2701), + [sym_false] = ACTIONS(2701), + [sym_null] = ACTIONS(2701), + [sym_undefined] = ACTIONS(2701), + [anon_sym_AT] = ACTIONS(2699), + [anon_sym_static] = ACTIONS(2701), + [anon_sym_readonly] = ACTIONS(2701), + [anon_sym_get] = ACTIONS(2701), + [anon_sym_set] = ACTIONS(2701), + [anon_sym_declare] = ACTIONS(2701), + [anon_sym_public] = ACTIONS(2701), + [anon_sym_private] = ACTIONS(2701), + [anon_sym_protected] = ACTIONS(2701), + [anon_sym_override] = ACTIONS(2701), + [anon_sym_module] = ACTIONS(2701), + [anon_sym_any] = ACTIONS(2701), + [anon_sym_number] = ACTIONS(2701), + [anon_sym_boolean] = ACTIONS(2701), + [anon_sym_string] = ACTIONS(2701), + [anon_sym_symbol] = ACTIONS(2701), + [anon_sym_object] = ACTIONS(2701), + [anon_sym_abstract] = ACTIONS(2701), + [anon_sym_interface] = ACTIONS(2701), + [anon_sym_enum] = ACTIONS(2701), [sym_html_comment] = ACTIONS(5), }, [867] = { - [ts_builtin_sym_end] = ACTIONS(2748), - [sym_identifier] = ACTIONS(2750), - [anon_sym_export] = ACTIONS(2750), - [anon_sym_default] = ACTIONS(2750), - [anon_sym_type] = ACTIONS(2750), - [anon_sym_namespace] = ACTIONS(2750), - [anon_sym_LBRACE] = ACTIONS(2748), - [anon_sym_RBRACE] = ACTIONS(2748), - [anon_sym_typeof] = ACTIONS(2750), - [anon_sym_import] = ACTIONS(2750), - [anon_sym_with] = ACTIONS(2750), - [anon_sym_var] = ACTIONS(2750), - [anon_sym_let] = ACTIONS(2750), - [anon_sym_const] = ACTIONS(2750), - [anon_sym_BANG] = ACTIONS(2748), - [anon_sym_else] = ACTIONS(2750), - [anon_sym_if] = ACTIONS(2750), - [anon_sym_switch] = ACTIONS(2750), - [anon_sym_for] = ACTIONS(2750), - [anon_sym_LPAREN] = ACTIONS(2748), - [anon_sym_SEMI] = ACTIONS(2748), - [anon_sym_await] = ACTIONS(2750), - [anon_sym_while] = ACTIONS(2750), - [anon_sym_do] = ACTIONS(2750), - [anon_sym_try] = ACTIONS(2750), - [anon_sym_break] = ACTIONS(2750), - [anon_sym_continue] = ACTIONS(2750), - [anon_sym_debugger] = ACTIONS(2750), - [anon_sym_return] = ACTIONS(2750), - [anon_sym_throw] = ACTIONS(2750), - [anon_sym_case] = ACTIONS(2750), - [anon_sym_yield] = ACTIONS(2750), - [anon_sym_LBRACK] = ACTIONS(2748), - [sym_glimmer_opening_tag] = ACTIONS(2748), - [anon_sym_class] = ACTIONS(2750), - [anon_sym_async] = ACTIONS(2750), - [anon_sym_function] = ACTIONS(2750), - [anon_sym_new] = ACTIONS(2750), - [anon_sym_using] = ACTIONS(2750), - [anon_sym_PLUS] = ACTIONS(2750), - [anon_sym_DASH] = ACTIONS(2750), - [anon_sym_SLASH] = ACTIONS(2750), - [anon_sym_LT] = ACTIONS(2750), - [anon_sym_TILDE] = ACTIONS(2748), - [anon_sym_void] = ACTIONS(2750), - [anon_sym_delete] = ACTIONS(2750), - [anon_sym_PLUS_PLUS] = ACTIONS(2748), - [anon_sym_DASH_DASH] = ACTIONS(2748), - [anon_sym_DQUOTE] = ACTIONS(2748), - [anon_sym_SQUOTE] = ACTIONS(2748), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2748), - [sym_number] = ACTIONS(2748), - [sym_private_property_identifier] = ACTIONS(2748), - [sym_this] = ACTIONS(2750), - [sym_super] = ACTIONS(2750), - [sym_true] = ACTIONS(2750), - [sym_false] = ACTIONS(2750), - [sym_null] = ACTIONS(2750), - [sym_undefined] = ACTIONS(2750), - [anon_sym_AT] = ACTIONS(2748), - [anon_sym_static] = ACTIONS(2750), - [anon_sym_readonly] = ACTIONS(2750), - [anon_sym_get] = ACTIONS(2750), - [anon_sym_set] = ACTIONS(2750), - [anon_sym_declare] = ACTIONS(2750), - [anon_sym_public] = ACTIONS(2750), - [anon_sym_private] = ACTIONS(2750), - [anon_sym_protected] = ACTIONS(2750), - [anon_sym_override] = ACTIONS(2750), - [anon_sym_module] = ACTIONS(2750), - [anon_sym_any] = ACTIONS(2750), - [anon_sym_number] = ACTIONS(2750), - [anon_sym_boolean] = ACTIONS(2750), - [anon_sym_string] = ACTIONS(2750), - [anon_sym_symbol] = ACTIONS(2750), - [anon_sym_object] = ACTIONS(2750), - [anon_sym_abstract] = ACTIONS(2750), - [anon_sym_interface] = ACTIONS(2750), - [anon_sym_enum] = ACTIONS(2750), + [ts_builtin_sym_end] = ACTIONS(2731), + [sym_identifier] = ACTIONS(2733), + [anon_sym_export] = ACTIONS(2733), + [anon_sym_default] = ACTIONS(2733), + [anon_sym_type] = ACTIONS(2733), + [anon_sym_namespace] = ACTIONS(2733), + [anon_sym_LBRACE] = ACTIONS(2731), + [anon_sym_RBRACE] = ACTIONS(2731), + [anon_sym_typeof] = ACTIONS(2733), + [anon_sym_import] = ACTIONS(2733), + [anon_sym_with] = ACTIONS(2733), + [anon_sym_var] = ACTIONS(2733), + [anon_sym_let] = ACTIONS(2733), + [anon_sym_const] = ACTIONS(2733), + [anon_sym_BANG] = ACTIONS(2731), + [anon_sym_else] = ACTIONS(2733), + [anon_sym_if] = ACTIONS(2733), + [anon_sym_switch] = ACTIONS(2733), + [anon_sym_for] = ACTIONS(2733), + [anon_sym_LPAREN] = ACTIONS(2731), + [anon_sym_SEMI] = ACTIONS(2731), + [anon_sym_await] = ACTIONS(2733), + [anon_sym_while] = ACTIONS(2733), + [anon_sym_do] = ACTIONS(2733), + [anon_sym_try] = ACTIONS(2733), + [anon_sym_break] = ACTIONS(2733), + [anon_sym_continue] = ACTIONS(2733), + [anon_sym_debugger] = ACTIONS(2733), + [anon_sym_return] = ACTIONS(2733), + [anon_sym_throw] = ACTIONS(2733), + [anon_sym_case] = ACTIONS(2733), + [anon_sym_yield] = ACTIONS(2733), + [anon_sym_LBRACK] = ACTIONS(2731), + [anon_sym_class] = ACTIONS(2733), + [anon_sym_async] = ACTIONS(2733), + [anon_sym_function] = ACTIONS(2733), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_using] = ACTIONS(2733), + [anon_sym_PLUS] = ACTIONS(2733), + [anon_sym_DASH] = ACTIONS(2733), + [anon_sym_SLASH] = ACTIONS(2733), + [anon_sym_LT] = ACTIONS(2731), + [anon_sym_TILDE] = ACTIONS(2731), + [anon_sym_void] = ACTIONS(2733), + [anon_sym_delete] = ACTIONS(2733), + [anon_sym_PLUS_PLUS] = ACTIONS(2731), + [anon_sym_DASH_DASH] = ACTIONS(2731), + [anon_sym_DQUOTE] = ACTIONS(2731), + [anon_sym_SQUOTE] = ACTIONS(2731), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2731), + [sym_number] = ACTIONS(2731), + [sym_private_property_identifier] = ACTIONS(2731), + [sym_this] = ACTIONS(2733), + [sym_super] = ACTIONS(2733), + [sym_true] = ACTIONS(2733), + [sym_false] = ACTIONS(2733), + [sym_null] = ACTIONS(2733), + [sym_undefined] = ACTIONS(2733), + [anon_sym_AT] = ACTIONS(2731), + [anon_sym_static] = ACTIONS(2733), + [anon_sym_readonly] = ACTIONS(2733), + [anon_sym_get] = ACTIONS(2733), + [anon_sym_set] = ACTIONS(2733), + [anon_sym_declare] = ACTIONS(2733), + [anon_sym_public] = ACTIONS(2733), + [anon_sym_private] = ACTIONS(2733), + [anon_sym_protected] = ACTIONS(2733), + [anon_sym_override] = ACTIONS(2733), + [anon_sym_module] = ACTIONS(2733), + [anon_sym_any] = ACTIONS(2733), + [anon_sym_number] = ACTIONS(2733), + [anon_sym_boolean] = ACTIONS(2733), + [anon_sym_string] = ACTIONS(2733), + [anon_sym_symbol] = ACTIONS(2733), + [anon_sym_object] = ACTIONS(2733), + [anon_sym_abstract] = ACTIONS(2733), + [anon_sym_interface] = ACTIONS(2733), + [anon_sym_enum] = ACTIONS(2733), [sym_html_comment] = ACTIONS(5), }, [868] = { - [ts_builtin_sym_end] = ACTIONS(2752), - [sym_identifier] = ACTIONS(2754), - [anon_sym_export] = ACTIONS(2754), - [anon_sym_default] = ACTIONS(2754), - [anon_sym_type] = ACTIONS(2754), - [anon_sym_namespace] = ACTIONS(2754), - [anon_sym_LBRACE] = ACTIONS(2752), - [anon_sym_RBRACE] = ACTIONS(2752), - [anon_sym_typeof] = ACTIONS(2754), - [anon_sym_import] = ACTIONS(2754), - [anon_sym_with] = ACTIONS(2754), - [anon_sym_var] = ACTIONS(2754), - [anon_sym_let] = ACTIONS(2754), - [anon_sym_const] = ACTIONS(2754), - [anon_sym_BANG] = ACTIONS(2752), - [anon_sym_else] = ACTIONS(2754), - [anon_sym_if] = ACTIONS(2754), - [anon_sym_switch] = ACTIONS(2754), - [anon_sym_for] = ACTIONS(2754), - [anon_sym_LPAREN] = ACTIONS(2752), - [anon_sym_SEMI] = ACTIONS(2752), - [anon_sym_await] = ACTIONS(2754), - [anon_sym_while] = ACTIONS(2754), - [anon_sym_do] = ACTIONS(2754), - [anon_sym_try] = ACTIONS(2754), - [anon_sym_break] = ACTIONS(2754), - [anon_sym_continue] = ACTIONS(2754), - [anon_sym_debugger] = ACTIONS(2754), - [anon_sym_return] = ACTIONS(2754), - [anon_sym_throw] = ACTIONS(2754), - [anon_sym_case] = ACTIONS(2754), - [anon_sym_yield] = ACTIONS(2754), - [anon_sym_LBRACK] = ACTIONS(2752), - [sym_glimmer_opening_tag] = ACTIONS(2752), - [anon_sym_class] = ACTIONS(2754), - [anon_sym_async] = ACTIONS(2754), - [anon_sym_function] = ACTIONS(2754), - [anon_sym_new] = ACTIONS(2754), - [anon_sym_using] = ACTIONS(2754), - [anon_sym_PLUS] = ACTIONS(2754), - [anon_sym_DASH] = ACTIONS(2754), - [anon_sym_SLASH] = ACTIONS(2754), - [anon_sym_LT] = ACTIONS(2754), - [anon_sym_TILDE] = ACTIONS(2752), - [anon_sym_void] = ACTIONS(2754), - [anon_sym_delete] = ACTIONS(2754), - [anon_sym_PLUS_PLUS] = ACTIONS(2752), - [anon_sym_DASH_DASH] = ACTIONS(2752), - [anon_sym_DQUOTE] = ACTIONS(2752), - [anon_sym_SQUOTE] = ACTIONS(2752), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2752), - [sym_number] = ACTIONS(2752), - [sym_private_property_identifier] = ACTIONS(2752), - [sym_this] = ACTIONS(2754), - [sym_super] = ACTIONS(2754), - [sym_true] = ACTIONS(2754), - [sym_false] = ACTIONS(2754), - [sym_null] = ACTIONS(2754), - [sym_undefined] = ACTIONS(2754), - [anon_sym_AT] = ACTIONS(2752), - [anon_sym_static] = ACTIONS(2754), - [anon_sym_readonly] = ACTIONS(2754), - [anon_sym_get] = ACTIONS(2754), - [anon_sym_set] = ACTIONS(2754), - [anon_sym_declare] = ACTIONS(2754), - [anon_sym_public] = ACTIONS(2754), - [anon_sym_private] = ACTIONS(2754), - [anon_sym_protected] = ACTIONS(2754), - [anon_sym_override] = ACTIONS(2754), - [anon_sym_module] = ACTIONS(2754), - [anon_sym_any] = ACTIONS(2754), - [anon_sym_number] = ACTIONS(2754), - [anon_sym_boolean] = ACTIONS(2754), - [anon_sym_string] = ACTIONS(2754), - [anon_sym_symbol] = ACTIONS(2754), - [anon_sym_object] = ACTIONS(2754), - [anon_sym_abstract] = ACTIONS(2754), - [anon_sym_interface] = ACTIONS(2754), - [anon_sym_enum] = ACTIONS(2754), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_rest_pattern] = STATE(5165), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3773), + [sym_tuple_parameter] = STATE(5278), + [sym_optional_tuple_parameter] = STATE(5278), + [sym_optional_type] = STATE(5278), + [sym_rest_type] = STATE(5278), + [sym__tuple_type_member] = STATE(5278), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(2489), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(2735), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2495), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [869] = { - [ts_builtin_sym_end] = ACTIONS(2756), - [sym_identifier] = ACTIONS(2758), - [anon_sym_export] = ACTIONS(2758), - [anon_sym_default] = ACTIONS(2758), - [anon_sym_type] = ACTIONS(2758), - [anon_sym_namespace] = ACTIONS(2758), - [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(2756), - [anon_sym_typeof] = ACTIONS(2758), - [anon_sym_import] = ACTIONS(2758), - [anon_sym_with] = ACTIONS(2758), - [anon_sym_var] = ACTIONS(2758), - [anon_sym_let] = ACTIONS(2758), - [anon_sym_const] = ACTIONS(2758), - [anon_sym_BANG] = ACTIONS(2756), - [anon_sym_else] = ACTIONS(2758), - [anon_sym_if] = ACTIONS(2758), - [anon_sym_switch] = ACTIONS(2758), - [anon_sym_for] = ACTIONS(2758), - [anon_sym_LPAREN] = ACTIONS(2756), - [anon_sym_SEMI] = ACTIONS(2756), - [anon_sym_await] = ACTIONS(2758), - [anon_sym_while] = ACTIONS(2758), - [anon_sym_do] = ACTIONS(2758), - [anon_sym_try] = ACTIONS(2758), - [anon_sym_break] = ACTIONS(2758), - [anon_sym_continue] = ACTIONS(2758), - [anon_sym_debugger] = ACTIONS(2758), - [anon_sym_return] = ACTIONS(2758), - [anon_sym_throw] = ACTIONS(2758), - [anon_sym_case] = ACTIONS(2758), - [anon_sym_yield] = ACTIONS(2758), - [anon_sym_LBRACK] = ACTIONS(2756), - [sym_glimmer_opening_tag] = ACTIONS(2756), - [anon_sym_class] = ACTIONS(2758), - [anon_sym_async] = ACTIONS(2758), - [anon_sym_function] = ACTIONS(2758), - [anon_sym_new] = ACTIONS(2758), - [anon_sym_using] = ACTIONS(2758), - [anon_sym_PLUS] = ACTIONS(2758), - [anon_sym_DASH] = ACTIONS(2758), - [anon_sym_SLASH] = ACTIONS(2758), - [anon_sym_LT] = ACTIONS(2758), - [anon_sym_TILDE] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(2758), - [anon_sym_delete] = ACTIONS(2758), - [anon_sym_PLUS_PLUS] = ACTIONS(2756), - [anon_sym_DASH_DASH] = ACTIONS(2756), - [anon_sym_DQUOTE] = ACTIONS(2756), - [anon_sym_SQUOTE] = ACTIONS(2756), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2756), - [sym_number] = ACTIONS(2756), - [sym_private_property_identifier] = ACTIONS(2756), - [sym_this] = ACTIONS(2758), - [sym_super] = ACTIONS(2758), - [sym_true] = ACTIONS(2758), - [sym_false] = ACTIONS(2758), - [sym_null] = ACTIONS(2758), - [sym_undefined] = ACTIONS(2758), - [anon_sym_AT] = ACTIONS(2756), - [anon_sym_static] = ACTIONS(2758), - [anon_sym_readonly] = ACTIONS(2758), - [anon_sym_get] = ACTIONS(2758), - [anon_sym_set] = ACTIONS(2758), - [anon_sym_declare] = ACTIONS(2758), - [anon_sym_public] = ACTIONS(2758), - [anon_sym_private] = ACTIONS(2758), - [anon_sym_protected] = ACTIONS(2758), - [anon_sym_override] = ACTIONS(2758), - [anon_sym_module] = ACTIONS(2758), - [anon_sym_any] = ACTIONS(2758), - [anon_sym_number] = ACTIONS(2758), - [anon_sym_boolean] = ACTIONS(2758), - [anon_sym_string] = ACTIONS(2758), - [anon_sym_symbol] = ACTIONS(2758), - [anon_sym_object] = ACTIONS(2758), - [anon_sym_abstract] = ACTIONS(2758), - [anon_sym_interface] = ACTIONS(2758), - [anon_sym_enum] = ACTIONS(2758), + [ts_builtin_sym_end] = ACTIONS(2737), + [sym_identifier] = ACTIONS(2739), + [anon_sym_export] = ACTIONS(2739), + [anon_sym_default] = ACTIONS(2739), + [anon_sym_type] = ACTIONS(2739), + [anon_sym_namespace] = ACTIONS(2739), + [anon_sym_LBRACE] = ACTIONS(2737), + [anon_sym_RBRACE] = ACTIONS(2737), + [anon_sym_typeof] = ACTIONS(2739), + [anon_sym_import] = ACTIONS(2739), + [anon_sym_with] = ACTIONS(2739), + [anon_sym_var] = ACTIONS(2739), + [anon_sym_let] = ACTIONS(2739), + [anon_sym_const] = ACTIONS(2739), + [anon_sym_BANG] = ACTIONS(2737), + [anon_sym_else] = ACTIONS(2739), + [anon_sym_if] = ACTIONS(2739), + [anon_sym_switch] = ACTIONS(2739), + [anon_sym_for] = ACTIONS(2739), + [anon_sym_LPAREN] = ACTIONS(2737), + [anon_sym_SEMI] = ACTIONS(2737), + [anon_sym_await] = ACTIONS(2739), + [anon_sym_while] = ACTIONS(2739), + [anon_sym_do] = ACTIONS(2739), + [anon_sym_try] = ACTIONS(2739), + [anon_sym_break] = ACTIONS(2739), + [anon_sym_continue] = ACTIONS(2739), + [anon_sym_debugger] = ACTIONS(2739), + [anon_sym_return] = ACTIONS(2739), + [anon_sym_throw] = ACTIONS(2739), + [anon_sym_case] = ACTIONS(2739), + [anon_sym_yield] = ACTIONS(2739), + [anon_sym_LBRACK] = ACTIONS(2737), + [anon_sym_class] = ACTIONS(2739), + [anon_sym_async] = ACTIONS(2739), + [anon_sym_function] = ACTIONS(2739), + [anon_sym_new] = ACTIONS(2739), + [anon_sym_using] = ACTIONS(2739), + [anon_sym_PLUS] = ACTIONS(2739), + [anon_sym_DASH] = ACTIONS(2739), + [anon_sym_SLASH] = ACTIONS(2739), + [anon_sym_LT] = ACTIONS(2737), + [anon_sym_TILDE] = ACTIONS(2737), + [anon_sym_void] = ACTIONS(2739), + [anon_sym_delete] = ACTIONS(2739), + [anon_sym_PLUS_PLUS] = ACTIONS(2737), + [anon_sym_DASH_DASH] = ACTIONS(2737), + [anon_sym_DQUOTE] = ACTIONS(2737), + [anon_sym_SQUOTE] = ACTIONS(2737), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2737), + [sym_number] = ACTIONS(2737), + [sym_private_property_identifier] = ACTIONS(2737), + [sym_this] = ACTIONS(2739), + [sym_super] = ACTIONS(2739), + [sym_true] = ACTIONS(2739), + [sym_false] = ACTIONS(2739), + [sym_null] = ACTIONS(2739), + [sym_undefined] = ACTIONS(2739), + [anon_sym_AT] = ACTIONS(2737), + [anon_sym_static] = ACTIONS(2739), + [anon_sym_readonly] = ACTIONS(2739), + [anon_sym_get] = ACTIONS(2739), + [anon_sym_set] = ACTIONS(2739), + [anon_sym_declare] = ACTIONS(2739), + [anon_sym_public] = ACTIONS(2739), + [anon_sym_private] = ACTIONS(2739), + [anon_sym_protected] = ACTIONS(2739), + [anon_sym_override] = ACTIONS(2739), + [anon_sym_module] = ACTIONS(2739), + [anon_sym_any] = ACTIONS(2739), + [anon_sym_number] = ACTIONS(2739), + [anon_sym_boolean] = ACTIONS(2739), + [anon_sym_string] = ACTIONS(2739), + [anon_sym_symbol] = ACTIONS(2739), + [anon_sym_object] = ACTIONS(2739), + [anon_sym_abstract] = ACTIONS(2739), + [anon_sym_interface] = ACTIONS(2739), + [anon_sym_enum] = ACTIONS(2739), [sym_html_comment] = ACTIONS(5), }, [870] = { - [ts_builtin_sym_end] = ACTIONS(2760), - [sym_identifier] = ACTIONS(2762), - [anon_sym_export] = ACTIONS(2762), - [anon_sym_default] = ACTIONS(2762), - [anon_sym_type] = ACTIONS(2762), - [anon_sym_namespace] = ACTIONS(2762), - [anon_sym_LBRACE] = ACTIONS(2760), - [anon_sym_RBRACE] = ACTIONS(2760), - [anon_sym_typeof] = ACTIONS(2762), - [anon_sym_import] = ACTIONS(2762), - [anon_sym_with] = ACTIONS(2762), - [anon_sym_var] = ACTIONS(2762), - [anon_sym_let] = ACTIONS(2762), - [anon_sym_const] = ACTIONS(2762), - [anon_sym_BANG] = ACTIONS(2760), - [anon_sym_else] = ACTIONS(2762), - [anon_sym_if] = ACTIONS(2762), - [anon_sym_switch] = ACTIONS(2762), - [anon_sym_for] = ACTIONS(2762), - [anon_sym_LPAREN] = ACTIONS(2760), - [anon_sym_SEMI] = ACTIONS(2760), - [anon_sym_await] = ACTIONS(2762), - [anon_sym_while] = ACTIONS(2762), - [anon_sym_do] = ACTIONS(2762), - [anon_sym_try] = ACTIONS(2762), - [anon_sym_break] = ACTIONS(2762), - [anon_sym_continue] = ACTIONS(2762), - [anon_sym_debugger] = ACTIONS(2762), - [anon_sym_return] = ACTIONS(2762), - [anon_sym_throw] = ACTIONS(2762), - [anon_sym_case] = ACTIONS(2762), - [anon_sym_yield] = ACTIONS(2762), - [anon_sym_LBRACK] = ACTIONS(2760), - [sym_glimmer_opening_tag] = ACTIONS(2760), - [anon_sym_class] = ACTIONS(2762), - [anon_sym_async] = ACTIONS(2762), - [anon_sym_function] = ACTIONS(2762), - [anon_sym_new] = ACTIONS(2762), - [anon_sym_using] = ACTIONS(2762), - [anon_sym_PLUS] = ACTIONS(2762), - [anon_sym_DASH] = ACTIONS(2762), - [anon_sym_SLASH] = ACTIONS(2762), - [anon_sym_LT] = ACTIONS(2762), - [anon_sym_TILDE] = ACTIONS(2760), - [anon_sym_void] = ACTIONS(2762), - [anon_sym_delete] = ACTIONS(2762), - [anon_sym_PLUS_PLUS] = ACTIONS(2760), - [anon_sym_DASH_DASH] = ACTIONS(2760), - [anon_sym_DQUOTE] = ACTIONS(2760), - [anon_sym_SQUOTE] = ACTIONS(2760), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2760), - [sym_number] = ACTIONS(2760), - [sym_private_property_identifier] = ACTIONS(2760), - [sym_this] = ACTIONS(2762), - [sym_super] = ACTIONS(2762), - [sym_true] = ACTIONS(2762), - [sym_false] = ACTIONS(2762), - [sym_null] = ACTIONS(2762), - [sym_undefined] = ACTIONS(2762), - [anon_sym_AT] = ACTIONS(2760), - [anon_sym_static] = ACTIONS(2762), - [anon_sym_readonly] = ACTIONS(2762), - [anon_sym_get] = ACTIONS(2762), - [anon_sym_set] = ACTIONS(2762), - [anon_sym_declare] = ACTIONS(2762), - [anon_sym_public] = ACTIONS(2762), - [anon_sym_private] = ACTIONS(2762), - [anon_sym_protected] = ACTIONS(2762), - [anon_sym_override] = ACTIONS(2762), - [anon_sym_module] = ACTIONS(2762), - [anon_sym_any] = ACTIONS(2762), - [anon_sym_number] = ACTIONS(2762), - [anon_sym_boolean] = ACTIONS(2762), - [anon_sym_string] = ACTIONS(2762), - [anon_sym_symbol] = ACTIONS(2762), - [anon_sym_object] = ACTIONS(2762), - [anon_sym_abstract] = ACTIONS(2762), - [anon_sym_interface] = ACTIONS(2762), - [anon_sym_enum] = ACTIONS(2762), + [ts_builtin_sym_end] = ACTIONS(2741), + [sym_identifier] = ACTIONS(2743), + [anon_sym_export] = ACTIONS(2743), + [anon_sym_default] = ACTIONS(2743), + [anon_sym_type] = ACTIONS(2743), + [anon_sym_namespace] = ACTIONS(2743), + [anon_sym_LBRACE] = ACTIONS(2741), + [anon_sym_RBRACE] = ACTIONS(2741), + [anon_sym_typeof] = ACTIONS(2743), + [anon_sym_import] = ACTIONS(2743), + [anon_sym_with] = ACTIONS(2743), + [anon_sym_var] = ACTIONS(2743), + [anon_sym_let] = ACTIONS(2743), + [anon_sym_const] = ACTIONS(2743), + [anon_sym_BANG] = ACTIONS(2741), + [anon_sym_else] = ACTIONS(2743), + [anon_sym_if] = ACTIONS(2743), + [anon_sym_switch] = ACTIONS(2743), + [anon_sym_for] = ACTIONS(2743), + [anon_sym_LPAREN] = ACTIONS(2741), + [anon_sym_SEMI] = ACTIONS(2741), + [anon_sym_await] = ACTIONS(2743), + [anon_sym_while] = ACTIONS(2743), + [anon_sym_do] = ACTIONS(2743), + [anon_sym_try] = ACTIONS(2743), + [anon_sym_break] = ACTIONS(2743), + [anon_sym_continue] = ACTIONS(2743), + [anon_sym_debugger] = ACTIONS(2743), + [anon_sym_return] = ACTIONS(2743), + [anon_sym_throw] = ACTIONS(2743), + [anon_sym_case] = ACTIONS(2743), + [anon_sym_yield] = ACTIONS(2743), + [anon_sym_LBRACK] = ACTIONS(2741), + [anon_sym_class] = ACTIONS(2743), + [anon_sym_async] = ACTIONS(2743), + [anon_sym_function] = ACTIONS(2743), + [anon_sym_new] = ACTIONS(2743), + [anon_sym_using] = ACTIONS(2743), + [anon_sym_PLUS] = ACTIONS(2743), + [anon_sym_DASH] = ACTIONS(2743), + [anon_sym_SLASH] = ACTIONS(2743), + [anon_sym_LT] = ACTIONS(2741), + [anon_sym_TILDE] = ACTIONS(2741), + [anon_sym_void] = ACTIONS(2743), + [anon_sym_delete] = ACTIONS(2743), + [anon_sym_PLUS_PLUS] = ACTIONS(2741), + [anon_sym_DASH_DASH] = ACTIONS(2741), + [anon_sym_DQUOTE] = ACTIONS(2741), + [anon_sym_SQUOTE] = ACTIONS(2741), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2741), + [sym_number] = ACTIONS(2741), + [sym_private_property_identifier] = ACTIONS(2741), + [sym_this] = ACTIONS(2743), + [sym_super] = ACTIONS(2743), + [sym_true] = ACTIONS(2743), + [sym_false] = ACTIONS(2743), + [sym_null] = ACTIONS(2743), + [sym_undefined] = ACTIONS(2743), + [anon_sym_AT] = ACTIONS(2741), + [anon_sym_static] = ACTIONS(2743), + [anon_sym_readonly] = ACTIONS(2743), + [anon_sym_get] = ACTIONS(2743), + [anon_sym_set] = ACTIONS(2743), + [anon_sym_declare] = ACTIONS(2743), + [anon_sym_public] = ACTIONS(2743), + [anon_sym_private] = ACTIONS(2743), + [anon_sym_protected] = ACTIONS(2743), + [anon_sym_override] = ACTIONS(2743), + [anon_sym_module] = ACTIONS(2743), + [anon_sym_any] = ACTIONS(2743), + [anon_sym_number] = ACTIONS(2743), + [anon_sym_boolean] = ACTIONS(2743), + [anon_sym_string] = ACTIONS(2743), + [anon_sym_symbol] = ACTIONS(2743), + [anon_sym_object] = ACTIONS(2743), + [anon_sym_abstract] = ACTIONS(2743), + [anon_sym_interface] = ACTIONS(2743), + [anon_sym_enum] = ACTIONS(2743), [sym_html_comment] = ACTIONS(5), }, [871] = { - [ts_builtin_sym_end] = ACTIONS(1795), - [sym_identifier] = ACTIONS(1797), - [anon_sym_export] = ACTIONS(1797), - [anon_sym_default] = ACTIONS(1797), - [anon_sym_type] = ACTIONS(1797), - [anon_sym_namespace] = ACTIONS(1797), - [anon_sym_LBRACE] = ACTIONS(1795), - [anon_sym_RBRACE] = ACTIONS(1795), - [anon_sym_typeof] = ACTIONS(1797), - [anon_sym_import] = ACTIONS(1797), - [anon_sym_with] = ACTIONS(1797), - [anon_sym_var] = ACTIONS(1797), - [anon_sym_let] = ACTIONS(1797), - [anon_sym_const] = ACTIONS(1797), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_else] = ACTIONS(1797), - [anon_sym_if] = ACTIONS(1797), - [anon_sym_switch] = ACTIONS(1797), - [anon_sym_for] = ACTIONS(1797), - [anon_sym_LPAREN] = ACTIONS(1795), - [anon_sym_SEMI] = ACTIONS(1795), - [anon_sym_await] = ACTIONS(1797), - [anon_sym_while] = ACTIONS(1797), - [anon_sym_do] = ACTIONS(1797), - [anon_sym_try] = ACTIONS(1797), - [anon_sym_break] = ACTIONS(1797), - [anon_sym_continue] = ACTIONS(1797), - [anon_sym_debugger] = ACTIONS(1797), - [anon_sym_return] = ACTIONS(1797), - [anon_sym_throw] = ACTIONS(1797), - [anon_sym_case] = ACTIONS(1797), - [anon_sym_yield] = ACTIONS(1797), - [anon_sym_LBRACK] = ACTIONS(1795), - [sym_glimmer_opening_tag] = ACTIONS(1795), - [anon_sym_class] = ACTIONS(1797), - [anon_sym_async] = ACTIONS(1797), - [anon_sym_function] = ACTIONS(1797), - [anon_sym_new] = ACTIONS(1797), - [anon_sym_using] = ACTIONS(1797), - [anon_sym_PLUS] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1797), - [anon_sym_SLASH] = ACTIONS(1797), - [anon_sym_LT] = ACTIONS(1797), - [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_void] = ACTIONS(1797), - [anon_sym_delete] = ACTIONS(1797), - [anon_sym_PLUS_PLUS] = ACTIONS(1795), - [anon_sym_DASH_DASH] = ACTIONS(1795), - [anon_sym_DQUOTE] = ACTIONS(1795), - [anon_sym_SQUOTE] = ACTIONS(1795), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1795), - [sym_number] = ACTIONS(1795), - [sym_private_property_identifier] = ACTIONS(1795), - [sym_this] = ACTIONS(1797), - [sym_super] = ACTIONS(1797), - [sym_true] = ACTIONS(1797), - [sym_false] = ACTIONS(1797), - [sym_null] = ACTIONS(1797), - [sym_undefined] = ACTIONS(1797), - [anon_sym_AT] = ACTIONS(1795), - [anon_sym_static] = ACTIONS(1797), - [anon_sym_readonly] = ACTIONS(1797), - [anon_sym_get] = ACTIONS(1797), - [anon_sym_set] = ACTIONS(1797), - [anon_sym_declare] = ACTIONS(1797), - [anon_sym_public] = ACTIONS(1797), - [anon_sym_private] = ACTIONS(1797), - [anon_sym_protected] = ACTIONS(1797), - [anon_sym_override] = ACTIONS(1797), - [anon_sym_module] = ACTIONS(1797), - [anon_sym_any] = ACTIONS(1797), - [anon_sym_number] = ACTIONS(1797), - [anon_sym_boolean] = ACTIONS(1797), - [anon_sym_string] = ACTIONS(1797), - [anon_sym_symbol] = ACTIONS(1797), - [anon_sym_object] = ACTIONS(1797), - [anon_sym_abstract] = ACTIONS(1797), - [anon_sym_interface] = ACTIONS(1797), - [anon_sym_enum] = ACTIONS(1797), + [ts_builtin_sym_end] = ACTIONS(2745), + [sym_identifier] = ACTIONS(2747), + [anon_sym_export] = ACTIONS(2747), + [anon_sym_default] = ACTIONS(2747), + [anon_sym_type] = ACTIONS(2747), + [anon_sym_namespace] = ACTIONS(2747), + [anon_sym_LBRACE] = ACTIONS(2745), + [anon_sym_RBRACE] = ACTIONS(2745), + [anon_sym_typeof] = ACTIONS(2747), + [anon_sym_import] = ACTIONS(2747), + [anon_sym_with] = ACTIONS(2747), + [anon_sym_var] = ACTIONS(2747), + [anon_sym_let] = ACTIONS(2747), + [anon_sym_const] = ACTIONS(2747), + [anon_sym_BANG] = ACTIONS(2745), + [anon_sym_else] = ACTIONS(2747), + [anon_sym_if] = ACTIONS(2747), + [anon_sym_switch] = ACTIONS(2747), + [anon_sym_for] = ACTIONS(2747), + [anon_sym_LPAREN] = ACTIONS(2745), + [anon_sym_SEMI] = ACTIONS(2745), + [anon_sym_await] = ACTIONS(2747), + [anon_sym_while] = ACTIONS(2747), + [anon_sym_do] = ACTIONS(2747), + [anon_sym_try] = ACTIONS(2747), + [anon_sym_break] = ACTIONS(2747), + [anon_sym_continue] = ACTIONS(2747), + [anon_sym_debugger] = ACTIONS(2747), + [anon_sym_return] = ACTIONS(2747), + [anon_sym_throw] = ACTIONS(2747), + [anon_sym_case] = ACTIONS(2747), + [anon_sym_yield] = ACTIONS(2747), + [anon_sym_LBRACK] = ACTIONS(2745), + [anon_sym_class] = ACTIONS(2747), + [anon_sym_async] = ACTIONS(2747), + [anon_sym_function] = ACTIONS(2747), + [anon_sym_new] = ACTIONS(2747), + [anon_sym_using] = ACTIONS(2747), + [anon_sym_PLUS] = ACTIONS(2747), + [anon_sym_DASH] = ACTIONS(2747), + [anon_sym_SLASH] = ACTIONS(2747), + [anon_sym_LT] = ACTIONS(2745), + [anon_sym_TILDE] = ACTIONS(2745), + [anon_sym_void] = ACTIONS(2747), + [anon_sym_delete] = ACTIONS(2747), + [anon_sym_PLUS_PLUS] = ACTIONS(2745), + [anon_sym_DASH_DASH] = ACTIONS(2745), + [anon_sym_DQUOTE] = ACTIONS(2745), + [anon_sym_SQUOTE] = ACTIONS(2745), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2745), + [sym_number] = ACTIONS(2745), + [sym_private_property_identifier] = ACTIONS(2745), + [sym_this] = ACTIONS(2747), + [sym_super] = ACTIONS(2747), + [sym_true] = ACTIONS(2747), + [sym_false] = ACTIONS(2747), + [sym_null] = ACTIONS(2747), + [sym_undefined] = ACTIONS(2747), + [anon_sym_AT] = ACTIONS(2745), + [anon_sym_static] = ACTIONS(2747), + [anon_sym_readonly] = ACTIONS(2747), + [anon_sym_get] = ACTIONS(2747), + [anon_sym_set] = ACTIONS(2747), + [anon_sym_declare] = ACTIONS(2747), + [anon_sym_public] = ACTIONS(2747), + [anon_sym_private] = ACTIONS(2747), + [anon_sym_protected] = ACTIONS(2747), + [anon_sym_override] = ACTIONS(2747), + [anon_sym_module] = ACTIONS(2747), + [anon_sym_any] = ACTIONS(2747), + [anon_sym_number] = ACTIONS(2747), + [anon_sym_boolean] = ACTIONS(2747), + [anon_sym_string] = ACTIONS(2747), + [anon_sym_symbol] = ACTIONS(2747), + [anon_sym_object] = ACTIONS(2747), + [anon_sym_abstract] = ACTIONS(2747), + [anon_sym_interface] = ACTIONS(2747), + [anon_sym_enum] = ACTIONS(2747), [sym_html_comment] = ACTIONS(5), }, [872] = { - [ts_builtin_sym_end] = ACTIONS(2764), - [sym_identifier] = ACTIONS(2766), - [anon_sym_export] = ACTIONS(2766), - [anon_sym_default] = ACTIONS(2766), - [anon_sym_type] = ACTIONS(2766), - [anon_sym_namespace] = ACTIONS(2766), - [anon_sym_LBRACE] = ACTIONS(2764), - [anon_sym_RBRACE] = ACTIONS(2764), - [anon_sym_typeof] = ACTIONS(2766), - [anon_sym_import] = ACTIONS(2766), - [anon_sym_with] = ACTIONS(2766), - [anon_sym_var] = ACTIONS(2766), - [anon_sym_let] = ACTIONS(2766), - [anon_sym_const] = ACTIONS(2766), - [anon_sym_BANG] = ACTIONS(2764), - [anon_sym_else] = ACTIONS(2766), - [anon_sym_if] = ACTIONS(2766), - [anon_sym_switch] = ACTIONS(2766), - [anon_sym_for] = ACTIONS(2766), - [anon_sym_LPAREN] = ACTIONS(2764), - [anon_sym_SEMI] = ACTIONS(2764), - [anon_sym_await] = ACTIONS(2766), - [anon_sym_while] = ACTIONS(2766), - [anon_sym_do] = ACTIONS(2766), - [anon_sym_try] = ACTIONS(2766), - [anon_sym_break] = ACTIONS(2766), - [anon_sym_continue] = ACTIONS(2766), - [anon_sym_debugger] = ACTIONS(2766), - [anon_sym_return] = ACTIONS(2766), - [anon_sym_throw] = ACTIONS(2766), - [anon_sym_case] = ACTIONS(2766), - [anon_sym_yield] = ACTIONS(2766), - [anon_sym_LBRACK] = ACTIONS(2764), - [sym_glimmer_opening_tag] = ACTIONS(2764), - [anon_sym_class] = ACTIONS(2766), - [anon_sym_async] = ACTIONS(2766), - [anon_sym_function] = ACTIONS(2766), - [anon_sym_new] = ACTIONS(2766), - [anon_sym_using] = ACTIONS(2766), - [anon_sym_PLUS] = ACTIONS(2766), - [anon_sym_DASH] = ACTIONS(2766), - [anon_sym_SLASH] = ACTIONS(2766), - [anon_sym_LT] = ACTIONS(2766), - [anon_sym_TILDE] = ACTIONS(2764), - [anon_sym_void] = ACTIONS(2766), - [anon_sym_delete] = ACTIONS(2766), - [anon_sym_PLUS_PLUS] = ACTIONS(2764), - [anon_sym_DASH_DASH] = ACTIONS(2764), - [anon_sym_DQUOTE] = ACTIONS(2764), - [anon_sym_SQUOTE] = ACTIONS(2764), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2764), - [sym_number] = ACTIONS(2764), - [sym_private_property_identifier] = ACTIONS(2764), - [sym_this] = ACTIONS(2766), - [sym_super] = ACTIONS(2766), - [sym_true] = ACTIONS(2766), - [sym_false] = ACTIONS(2766), - [sym_null] = ACTIONS(2766), - [sym_undefined] = ACTIONS(2766), - [anon_sym_AT] = ACTIONS(2764), - [anon_sym_static] = ACTIONS(2766), - [anon_sym_readonly] = ACTIONS(2766), - [anon_sym_get] = ACTIONS(2766), - [anon_sym_set] = ACTIONS(2766), - [anon_sym_declare] = ACTIONS(2766), - [anon_sym_public] = ACTIONS(2766), - [anon_sym_private] = ACTIONS(2766), - [anon_sym_protected] = ACTIONS(2766), - [anon_sym_override] = ACTIONS(2766), - [anon_sym_module] = ACTIONS(2766), - [anon_sym_any] = ACTIONS(2766), - [anon_sym_number] = ACTIONS(2766), - [anon_sym_boolean] = ACTIONS(2766), - [anon_sym_string] = ACTIONS(2766), - [anon_sym_symbol] = ACTIONS(2766), - [anon_sym_object] = ACTIONS(2766), - [anon_sym_abstract] = ACTIONS(2766), - [anon_sym_interface] = ACTIONS(2766), - [anon_sym_enum] = ACTIONS(2766), + [ts_builtin_sym_end] = ACTIONS(1720), + [sym_identifier] = ACTIONS(1722), + [anon_sym_export] = ACTIONS(1722), + [anon_sym_default] = ACTIONS(1722), + [anon_sym_type] = ACTIONS(1722), + [anon_sym_namespace] = ACTIONS(1722), + [anon_sym_LBRACE] = ACTIONS(1720), + [anon_sym_RBRACE] = ACTIONS(1720), + [anon_sym_typeof] = ACTIONS(1722), + [anon_sym_import] = ACTIONS(1722), + [anon_sym_with] = ACTIONS(1722), + [anon_sym_var] = ACTIONS(1722), + [anon_sym_let] = ACTIONS(1722), + [anon_sym_const] = ACTIONS(1722), + [anon_sym_BANG] = ACTIONS(1720), + [anon_sym_else] = ACTIONS(1722), + [anon_sym_if] = ACTIONS(1722), + [anon_sym_switch] = ACTIONS(1722), + [anon_sym_for] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(1720), + [anon_sym_await] = ACTIONS(1722), + [anon_sym_while] = ACTIONS(1722), + [anon_sym_do] = ACTIONS(1722), + [anon_sym_try] = ACTIONS(1722), + [anon_sym_break] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(1722), + [anon_sym_debugger] = ACTIONS(1722), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_throw] = ACTIONS(1722), + [anon_sym_case] = ACTIONS(1722), + [anon_sym_yield] = ACTIONS(1722), + [anon_sym_LBRACK] = ACTIONS(1720), + [anon_sym_class] = ACTIONS(1722), + [anon_sym_async] = ACTIONS(1722), + [anon_sym_function] = ACTIONS(1722), + [anon_sym_new] = ACTIONS(1722), + [anon_sym_using] = ACTIONS(1722), + [anon_sym_PLUS] = ACTIONS(1722), + [anon_sym_DASH] = ACTIONS(1722), + [anon_sym_SLASH] = ACTIONS(1722), + [anon_sym_LT] = ACTIONS(1720), + [anon_sym_TILDE] = ACTIONS(1720), + [anon_sym_void] = ACTIONS(1722), + [anon_sym_delete] = ACTIONS(1722), + [anon_sym_PLUS_PLUS] = ACTIONS(1720), + [anon_sym_DASH_DASH] = ACTIONS(1720), + [anon_sym_DQUOTE] = ACTIONS(1720), + [anon_sym_SQUOTE] = ACTIONS(1720), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1720), + [sym_number] = ACTIONS(1720), + [sym_private_property_identifier] = ACTIONS(1720), + [sym_this] = ACTIONS(1722), + [sym_super] = ACTIONS(1722), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_null] = ACTIONS(1722), + [sym_undefined] = ACTIONS(1722), + [anon_sym_AT] = ACTIONS(1720), + [anon_sym_static] = ACTIONS(1722), + [anon_sym_readonly] = ACTIONS(1722), + [anon_sym_get] = ACTIONS(1722), + [anon_sym_set] = ACTIONS(1722), + [anon_sym_declare] = ACTIONS(1722), + [anon_sym_public] = ACTIONS(1722), + [anon_sym_private] = ACTIONS(1722), + [anon_sym_protected] = ACTIONS(1722), + [anon_sym_override] = ACTIONS(1722), + [anon_sym_module] = ACTIONS(1722), + [anon_sym_any] = ACTIONS(1722), + [anon_sym_number] = ACTIONS(1722), + [anon_sym_boolean] = ACTIONS(1722), + [anon_sym_string] = ACTIONS(1722), + [anon_sym_symbol] = ACTIONS(1722), + [anon_sym_object] = ACTIONS(1722), + [anon_sym_abstract] = ACTIONS(1722), + [anon_sym_interface] = ACTIONS(1722), + [anon_sym_enum] = ACTIONS(1722), [sym_html_comment] = ACTIONS(5), }, [873] = { - [ts_builtin_sym_end] = ACTIONS(2768), - [sym_identifier] = ACTIONS(2770), - [anon_sym_export] = ACTIONS(2770), - [anon_sym_default] = ACTIONS(2770), - [anon_sym_type] = ACTIONS(2770), - [anon_sym_namespace] = ACTIONS(2770), - [anon_sym_LBRACE] = ACTIONS(2768), - [anon_sym_RBRACE] = ACTIONS(2768), - [anon_sym_typeof] = ACTIONS(2770), - [anon_sym_import] = ACTIONS(2770), - [anon_sym_with] = ACTIONS(2770), - [anon_sym_var] = ACTIONS(2770), - [anon_sym_let] = ACTIONS(2770), - [anon_sym_const] = ACTIONS(2770), - [anon_sym_BANG] = ACTIONS(2768), - [anon_sym_else] = ACTIONS(2770), - [anon_sym_if] = ACTIONS(2770), - [anon_sym_switch] = ACTIONS(2770), - [anon_sym_for] = ACTIONS(2770), - [anon_sym_LPAREN] = ACTIONS(2768), - [anon_sym_SEMI] = ACTIONS(2768), - [anon_sym_await] = ACTIONS(2770), - [anon_sym_while] = ACTIONS(2770), - [anon_sym_do] = ACTIONS(2770), - [anon_sym_try] = ACTIONS(2770), - [anon_sym_break] = ACTIONS(2770), - [anon_sym_continue] = ACTIONS(2770), - [anon_sym_debugger] = ACTIONS(2770), - [anon_sym_return] = ACTIONS(2770), - [anon_sym_throw] = ACTIONS(2770), - [anon_sym_case] = ACTIONS(2770), - [anon_sym_yield] = ACTIONS(2770), - [anon_sym_LBRACK] = ACTIONS(2768), - [sym_glimmer_opening_tag] = ACTIONS(2768), - [anon_sym_class] = ACTIONS(2770), - [anon_sym_async] = ACTIONS(2770), - [anon_sym_function] = ACTIONS(2770), - [anon_sym_new] = ACTIONS(2770), - [anon_sym_using] = ACTIONS(2770), - [anon_sym_PLUS] = ACTIONS(2770), - [anon_sym_DASH] = ACTIONS(2770), - [anon_sym_SLASH] = ACTIONS(2770), - [anon_sym_LT] = ACTIONS(2770), - [anon_sym_TILDE] = ACTIONS(2768), - [anon_sym_void] = ACTIONS(2770), - [anon_sym_delete] = ACTIONS(2770), - [anon_sym_PLUS_PLUS] = ACTIONS(2768), - [anon_sym_DASH_DASH] = ACTIONS(2768), - [anon_sym_DQUOTE] = ACTIONS(2768), - [anon_sym_SQUOTE] = ACTIONS(2768), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2768), - [sym_number] = ACTIONS(2768), - [sym_private_property_identifier] = ACTIONS(2768), - [sym_this] = ACTIONS(2770), - [sym_super] = ACTIONS(2770), - [sym_true] = ACTIONS(2770), - [sym_false] = ACTIONS(2770), - [sym_null] = ACTIONS(2770), - [sym_undefined] = ACTIONS(2770), - [anon_sym_AT] = ACTIONS(2768), - [anon_sym_static] = ACTIONS(2770), - [anon_sym_readonly] = ACTIONS(2770), - [anon_sym_get] = ACTIONS(2770), - [anon_sym_set] = ACTIONS(2770), - [anon_sym_declare] = ACTIONS(2770), - [anon_sym_public] = ACTIONS(2770), - [anon_sym_private] = ACTIONS(2770), - [anon_sym_protected] = ACTIONS(2770), - [anon_sym_override] = ACTIONS(2770), - [anon_sym_module] = ACTIONS(2770), - [anon_sym_any] = ACTIONS(2770), - [anon_sym_number] = ACTIONS(2770), - [anon_sym_boolean] = ACTIONS(2770), - [anon_sym_string] = ACTIONS(2770), - [anon_sym_symbol] = ACTIONS(2770), - [anon_sym_object] = ACTIONS(2770), - [anon_sym_abstract] = ACTIONS(2770), - [anon_sym_interface] = ACTIONS(2770), - [anon_sym_enum] = ACTIONS(2770), + [ts_builtin_sym_end] = ACTIONS(2749), + [sym_identifier] = ACTIONS(2751), + [anon_sym_export] = ACTIONS(2751), + [anon_sym_default] = ACTIONS(2751), + [anon_sym_type] = ACTIONS(2751), + [anon_sym_namespace] = ACTIONS(2751), + [anon_sym_LBRACE] = ACTIONS(2749), + [anon_sym_RBRACE] = ACTIONS(2749), + [anon_sym_typeof] = ACTIONS(2751), + [anon_sym_import] = ACTIONS(2751), + [anon_sym_with] = ACTIONS(2751), + [anon_sym_var] = ACTIONS(2751), + [anon_sym_let] = ACTIONS(2751), + [anon_sym_const] = ACTIONS(2751), + [anon_sym_BANG] = ACTIONS(2749), + [anon_sym_else] = ACTIONS(2751), + [anon_sym_if] = ACTIONS(2751), + [anon_sym_switch] = ACTIONS(2751), + [anon_sym_for] = ACTIONS(2751), + [anon_sym_LPAREN] = ACTIONS(2749), + [anon_sym_SEMI] = ACTIONS(2749), + [anon_sym_await] = ACTIONS(2751), + [anon_sym_while] = ACTIONS(2751), + [anon_sym_do] = ACTIONS(2751), + [anon_sym_try] = ACTIONS(2751), + [anon_sym_break] = ACTIONS(2751), + [anon_sym_continue] = ACTIONS(2751), + [anon_sym_debugger] = ACTIONS(2751), + [anon_sym_return] = ACTIONS(2751), + [anon_sym_throw] = ACTIONS(2751), + [anon_sym_case] = ACTIONS(2751), + [anon_sym_yield] = ACTIONS(2751), + [anon_sym_LBRACK] = ACTIONS(2749), + [anon_sym_class] = ACTIONS(2751), + [anon_sym_async] = ACTIONS(2751), + [anon_sym_function] = ACTIONS(2751), + [anon_sym_new] = ACTIONS(2751), + [anon_sym_using] = ACTIONS(2751), + [anon_sym_PLUS] = ACTIONS(2751), + [anon_sym_DASH] = ACTIONS(2751), + [anon_sym_SLASH] = ACTIONS(2751), + [anon_sym_LT] = ACTIONS(2749), + [anon_sym_TILDE] = ACTIONS(2749), + [anon_sym_void] = ACTIONS(2751), + [anon_sym_delete] = ACTIONS(2751), + [anon_sym_PLUS_PLUS] = ACTIONS(2749), + [anon_sym_DASH_DASH] = ACTIONS(2749), + [anon_sym_DQUOTE] = ACTIONS(2749), + [anon_sym_SQUOTE] = ACTIONS(2749), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2749), + [sym_number] = ACTIONS(2749), + [sym_private_property_identifier] = ACTIONS(2749), + [sym_this] = ACTIONS(2751), + [sym_super] = ACTIONS(2751), + [sym_true] = ACTIONS(2751), + [sym_false] = ACTIONS(2751), + [sym_null] = ACTIONS(2751), + [sym_undefined] = ACTIONS(2751), + [anon_sym_AT] = ACTIONS(2749), + [anon_sym_static] = ACTIONS(2751), + [anon_sym_readonly] = ACTIONS(2751), + [anon_sym_get] = ACTIONS(2751), + [anon_sym_set] = ACTIONS(2751), + [anon_sym_declare] = ACTIONS(2751), + [anon_sym_public] = ACTIONS(2751), + [anon_sym_private] = ACTIONS(2751), + [anon_sym_protected] = ACTIONS(2751), + [anon_sym_override] = ACTIONS(2751), + [anon_sym_module] = ACTIONS(2751), + [anon_sym_any] = ACTIONS(2751), + [anon_sym_number] = ACTIONS(2751), + [anon_sym_boolean] = ACTIONS(2751), + [anon_sym_string] = ACTIONS(2751), + [anon_sym_symbol] = ACTIONS(2751), + [anon_sym_object] = ACTIONS(2751), + [anon_sym_abstract] = ACTIONS(2751), + [anon_sym_interface] = ACTIONS(2751), + [anon_sym_enum] = ACTIONS(2751), [sym_html_comment] = ACTIONS(5), }, [874] = { - [ts_builtin_sym_end] = ACTIONS(2772), - [sym_identifier] = ACTIONS(2774), - [anon_sym_export] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_type] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2772), - [anon_sym_RBRACE] = ACTIONS(2772), - [anon_sym_typeof] = ACTIONS(2774), - [anon_sym_import] = ACTIONS(2774), - [anon_sym_with] = ACTIONS(2774), - [anon_sym_var] = ACTIONS(2774), - [anon_sym_let] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_BANG] = ACTIONS(2772), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_LPAREN] = ACTIONS(2772), - [anon_sym_SEMI] = ACTIONS(2772), - [anon_sym_await] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_debugger] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_yield] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2772), - [sym_glimmer_opening_tag] = ACTIONS(2772), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_async] = ACTIONS(2774), - [anon_sym_function] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_SLASH] = ACTIONS(2774), - [anon_sym_LT] = ACTIONS(2774), - [anon_sym_TILDE] = ACTIONS(2772), - [anon_sym_void] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_PLUS_PLUS] = ACTIONS(2772), - [anon_sym_DASH_DASH] = ACTIONS(2772), - [anon_sym_DQUOTE] = ACTIONS(2772), - [anon_sym_SQUOTE] = ACTIONS(2772), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2772), - [sym_number] = ACTIONS(2772), - [sym_private_property_identifier] = ACTIONS(2772), - [sym_this] = ACTIONS(2774), - [sym_super] = ACTIONS(2774), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [sym_null] = ACTIONS(2774), - [sym_undefined] = ACTIONS(2774), - [anon_sym_AT] = ACTIONS(2772), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_readonly] = ACTIONS(2774), - [anon_sym_get] = ACTIONS(2774), - [anon_sym_set] = ACTIONS(2774), - [anon_sym_declare] = ACTIONS(2774), - [anon_sym_public] = ACTIONS(2774), - [anon_sym_private] = ACTIONS(2774), - [anon_sym_protected] = ACTIONS(2774), - [anon_sym_override] = ACTIONS(2774), - [anon_sym_module] = ACTIONS(2774), - [anon_sym_any] = ACTIONS(2774), - [anon_sym_number] = ACTIONS(2774), - [anon_sym_boolean] = ACTIONS(2774), - [anon_sym_string] = ACTIONS(2774), - [anon_sym_symbol] = ACTIONS(2774), - [anon_sym_object] = ACTIONS(2774), - [anon_sym_abstract] = ACTIONS(2774), - [anon_sym_interface] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), + [ts_builtin_sym_end] = ACTIONS(2753), + [sym_identifier] = ACTIONS(2755), + [anon_sym_export] = ACTIONS(2755), + [anon_sym_default] = ACTIONS(2755), + [anon_sym_type] = ACTIONS(2755), + [anon_sym_namespace] = ACTIONS(2755), + [anon_sym_LBRACE] = ACTIONS(2753), + [anon_sym_RBRACE] = ACTIONS(2753), + [anon_sym_typeof] = ACTIONS(2755), + [anon_sym_import] = ACTIONS(2755), + [anon_sym_with] = ACTIONS(2755), + [anon_sym_var] = ACTIONS(2755), + [anon_sym_let] = ACTIONS(2755), + [anon_sym_const] = ACTIONS(2755), + [anon_sym_BANG] = ACTIONS(2753), + [anon_sym_else] = ACTIONS(2755), + [anon_sym_if] = ACTIONS(2755), + [anon_sym_switch] = ACTIONS(2755), + [anon_sym_for] = ACTIONS(2755), + [anon_sym_LPAREN] = ACTIONS(2753), + [anon_sym_SEMI] = ACTIONS(2753), + [anon_sym_await] = ACTIONS(2755), + [anon_sym_while] = ACTIONS(2755), + [anon_sym_do] = ACTIONS(2755), + [anon_sym_try] = ACTIONS(2755), + [anon_sym_break] = ACTIONS(2755), + [anon_sym_continue] = ACTIONS(2755), + [anon_sym_debugger] = ACTIONS(2755), + [anon_sym_return] = ACTIONS(2755), + [anon_sym_throw] = ACTIONS(2755), + [anon_sym_case] = ACTIONS(2755), + [anon_sym_yield] = ACTIONS(2755), + [anon_sym_LBRACK] = ACTIONS(2753), + [anon_sym_class] = ACTIONS(2755), + [anon_sym_async] = ACTIONS(2755), + [anon_sym_function] = ACTIONS(2755), + [anon_sym_new] = ACTIONS(2755), + [anon_sym_using] = ACTIONS(2755), + [anon_sym_PLUS] = ACTIONS(2755), + [anon_sym_DASH] = ACTIONS(2755), + [anon_sym_SLASH] = ACTIONS(2755), + [anon_sym_LT] = ACTIONS(2753), + [anon_sym_TILDE] = ACTIONS(2753), + [anon_sym_void] = ACTIONS(2755), + [anon_sym_delete] = ACTIONS(2755), + [anon_sym_PLUS_PLUS] = ACTIONS(2753), + [anon_sym_DASH_DASH] = ACTIONS(2753), + [anon_sym_DQUOTE] = ACTIONS(2753), + [anon_sym_SQUOTE] = ACTIONS(2753), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2753), + [sym_number] = ACTIONS(2753), + [sym_private_property_identifier] = ACTIONS(2753), + [sym_this] = ACTIONS(2755), + [sym_super] = ACTIONS(2755), + [sym_true] = ACTIONS(2755), + [sym_false] = ACTIONS(2755), + [sym_null] = ACTIONS(2755), + [sym_undefined] = ACTIONS(2755), + [anon_sym_AT] = ACTIONS(2753), + [anon_sym_static] = ACTIONS(2755), + [anon_sym_readonly] = ACTIONS(2755), + [anon_sym_get] = ACTIONS(2755), + [anon_sym_set] = ACTIONS(2755), + [anon_sym_declare] = ACTIONS(2755), + [anon_sym_public] = ACTIONS(2755), + [anon_sym_private] = ACTIONS(2755), + [anon_sym_protected] = ACTIONS(2755), + [anon_sym_override] = ACTIONS(2755), + [anon_sym_module] = ACTIONS(2755), + [anon_sym_any] = ACTIONS(2755), + [anon_sym_number] = ACTIONS(2755), + [anon_sym_boolean] = ACTIONS(2755), + [anon_sym_string] = ACTIONS(2755), + [anon_sym_symbol] = ACTIONS(2755), + [anon_sym_object] = ACTIONS(2755), + [anon_sym_abstract] = ACTIONS(2755), + [anon_sym_interface] = ACTIONS(2755), + [anon_sym_enum] = ACTIONS(2755), [sym_html_comment] = ACTIONS(5), }, [875] = { - [ts_builtin_sym_end] = ACTIONS(2776), - [sym_identifier] = ACTIONS(2778), - [anon_sym_export] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_type] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_RBRACE] = ACTIONS(2776), - [anon_sym_typeof] = ACTIONS(2778), - [anon_sym_import] = ACTIONS(2778), - [anon_sym_with] = ACTIONS(2778), - [anon_sym_var] = ACTIONS(2778), - [anon_sym_let] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_LPAREN] = ACTIONS(2776), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym_await] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_debugger] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_yield] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2776), - [sym_glimmer_opening_tag] = ACTIONS(2776), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_async] = ACTIONS(2778), - [anon_sym_function] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_SLASH] = ACTIONS(2778), - [anon_sym_LT] = ACTIONS(2778), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_void] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2776), - [sym_number] = ACTIONS(2776), - [sym_private_property_identifier] = ACTIONS(2776), - [sym_this] = ACTIONS(2778), - [sym_super] = ACTIONS(2778), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [sym_null] = ACTIONS(2778), - [sym_undefined] = ACTIONS(2778), - [anon_sym_AT] = ACTIONS(2776), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_readonly] = ACTIONS(2778), - [anon_sym_get] = ACTIONS(2778), - [anon_sym_set] = ACTIONS(2778), - [anon_sym_declare] = ACTIONS(2778), - [anon_sym_public] = ACTIONS(2778), - [anon_sym_private] = ACTIONS(2778), - [anon_sym_protected] = ACTIONS(2778), - [anon_sym_override] = ACTIONS(2778), - [anon_sym_module] = ACTIONS(2778), - [anon_sym_any] = ACTIONS(2778), - [anon_sym_number] = ACTIONS(2778), - [anon_sym_boolean] = ACTIONS(2778), - [anon_sym_string] = ACTIONS(2778), - [anon_sym_symbol] = ACTIONS(2778), - [anon_sym_object] = ACTIONS(2778), - [anon_sym_abstract] = ACTIONS(2778), - [anon_sym_interface] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), + [ts_builtin_sym_end] = ACTIONS(2719), + [sym_identifier] = ACTIONS(2721), + [anon_sym_export] = ACTIONS(2721), + [anon_sym_default] = ACTIONS(2721), + [anon_sym_type] = ACTIONS(2721), + [anon_sym_namespace] = ACTIONS(2721), + [anon_sym_LBRACE] = ACTIONS(2719), + [anon_sym_RBRACE] = ACTIONS(2719), + [anon_sym_typeof] = ACTIONS(2721), + [anon_sym_import] = ACTIONS(2721), + [anon_sym_with] = ACTIONS(2721), + [anon_sym_var] = ACTIONS(2721), + [anon_sym_let] = ACTIONS(2721), + [anon_sym_const] = ACTIONS(2721), + [anon_sym_BANG] = ACTIONS(2719), + [anon_sym_else] = ACTIONS(2721), + [anon_sym_if] = ACTIONS(2721), + [anon_sym_switch] = ACTIONS(2721), + [anon_sym_for] = ACTIONS(2721), + [anon_sym_LPAREN] = ACTIONS(2719), + [anon_sym_SEMI] = ACTIONS(2719), + [anon_sym_await] = ACTIONS(2721), + [anon_sym_while] = ACTIONS(2721), + [anon_sym_do] = ACTIONS(2721), + [anon_sym_try] = ACTIONS(2721), + [anon_sym_break] = ACTIONS(2721), + [anon_sym_continue] = ACTIONS(2721), + [anon_sym_debugger] = ACTIONS(2721), + [anon_sym_return] = ACTIONS(2721), + [anon_sym_throw] = ACTIONS(2721), + [anon_sym_case] = ACTIONS(2721), + [anon_sym_yield] = ACTIONS(2721), + [anon_sym_LBRACK] = ACTIONS(2719), + [anon_sym_class] = ACTIONS(2721), + [anon_sym_async] = ACTIONS(2721), + [anon_sym_function] = ACTIONS(2721), + [anon_sym_new] = ACTIONS(2721), + [anon_sym_using] = ACTIONS(2721), + [anon_sym_PLUS] = ACTIONS(2721), + [anon_sym_DASH] = ACTIONS(2721), + [anon_sym_SLASH] = ACTIONS(2721), + [anon_sym_LT] = ACTIONS(2719), + [anon_sym_TILDE] = ACTIONS(2719), + [anon_sym_void] = ACTIONS(2721), + [anon_sym_delete] = ACTIONS(2721), + [anon_sym_PLUS_PLUS] = ACTIONS(2719), + [anon_sym_DASH_DASH] = ACTIONS(2719), + [anon_sym_DQUOTE] = ACTIONS(2719), + [anon_sym_SQUOTE] = ACTIONS(2719), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2719), + [sym_number] = ACTIONS(2719), + [sym_private_property_identifier] = ACTIONS(2719), + [sym_this] = ACTIONS(2721), + [sym_super] = ACTIONS(2721), + [sym_true] = ACTIONS(2721), + [sym_false] = ACTIONS(2721), + [sym_null] = ACTIONS(2721), + [sym_undefined] = ACTIONS(2721), + [anon_sym_AT] = ACTIONS(2719), + [anon_sym_static] = ACTIONS(2721), + [anon_sym_readonly] = ACTIONS(2721), + [anon_sym_get] = ACTIONS(2721), + [anon_sym_set] = ACTIONS(2721), + [anon_sym_declare] = ACTIONS(2721), + [anon_sym_public] = ACTIONS(2721), + [anon_sym_private] = ACTIONS(2721), + [anon_sym_protected] = ACTIONS(2721), + [anon_sym_override] = ACTIONS(2721), + [anon_sym_module] = ACTIONS(2721), + [anon_sym_any] = ACTIONS(2721), + [anon_sym_number] = ACTIONS(2721), + [anon_sym_boolean] = ACTIONS(2721), + [anon_sym_string] = ACTIONS(2721), + [anon_sym_symbol] = ACTIONS(2721), + [anon_sym_object] = ACTIONS(2721), + [anon_sym_abstract] = ACTIONS(2721), + [anon_sym_interface] = ACTIONS(2721), + [anon_sym_enum] = ACTIONS(2721), [sym_html_comment] = ACTIONS(5), }, [876] = { - [ts_builtin_sym_end] = ACTIONS(2780), - [sym_identifier] = ACTIONS(2782), - [anon_sym_export] = ACTIONS(2782), - [anon_sym_default] = ACTIONS(2782), - [anon_sym_type] = ACTIONS(2782), - [anon_sym_namespace] = ACTIONS(2782), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_RBRACE] = ACTIONS(2780), - [anon_sym_typeof] = ACTIONS(2782), - [anon_sym_import] = ACTIONS(2782), - [anon_sym_with] = ACTIONS(2782), - [anon_sym_var] = ACTIONS(2782), - [anon_sym_let] = ACTIONS(2782), - [anon_sym_const] = ACTIONS(2782), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_else] = ACTIONS(2782), - [anon_sym_if] = ACTIONS(2782), - [anon_sym_switch] = ACTIONS(2782), - [anon_sym_for] = ACTIONS(2782), - [anon_sym_LPAREN] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym_await] = ACTIONS(2782), - [anon_sym_while] = ACTIONS(2782), - [anon_sym_do] = ACTIONS(2782), - [anon_sym_try] = ACTIONS(2782), - [anon_sym_break] = ACTIONS(2782), - [anon_sym_continue] = ACTIONS(2782), - [anon_sym_debugger] = ACTIONS(2782), - [anon_sym_return] = ACTIONS(2782), - [anon_sym_throw] = ACTIONS(2782), - [anon_sym_case] = ACTIONS(2782), - [anon_sym_yield] = ACTIONS(2782), - [anon_sym_LBRACK] = ACTIONS(2780), - [sym_glimmer_opening_tag] = ACTIONS(2780), - [anon_sym_class] = ACTIONS(2782), - [anon_sym_async] = ACTIONS(2782), - [anon_sym_function] = ACTIONS(2782), - [anon_sym_new] = ACTIONS(2782), - [anon_sym_using] = ACTIONS(2782), - [anon_sym_PLUS] = ACTIONS(2782), - [anon_sym_DASH] = ACTIONS(2782), - [anon_sym_SLASH] = ACTIONS(2782), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_void] = ACTIONS(2782), - [anon_sym_delete] = ACTIONS(2782), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2780), - [sym_number] = ACTIONS(2780), - [sym_private_property_identifier] = ACTIONS(2780), - [sym_this] = ACTIONS(2782), - [sym_super] = ACTIONS(2782), - [sym_true] = ACTIONS(2782), - [sym_false] = ACTIONS(2782), - [sym_null] = ACTIONS(2782), - [sym_undefined] = ACTIONS(2782), - [anon_sym_AT] = ACTIONS(2780), - [anon_sym_static] = ACTIONS(2782), - [anon_sym_readonly] = ACTIONS(2782), - [anon_sym_get] = ACTIONS(2782), - [anon_sym_set] = ACTIONS(2782), - [anon_sym_declare] = ACTIONS(2782), - [anon_sym_public] = ACTIONS(2782), - [anon_sym_private] = ACTIONS(2782), - [anon_sym_protected] = ACTIONS(2782), - [anon_sym_override] = ACTIONS(2782), - [anon_sym_module] = ACTIONS(2782), - [anon_sym_any] = ACTIONS(2782), - [anon_sym_number] = ACTIONS(2782), - [anon_sym_boolean] = ACTIONS(2782), - [anon_sym_string] = ACTIONS(2782), - [anon_sym_symbol] = ACTIONS(2782), - [anon_sym_object] = ACTIONS(2782), - [anon_sym_abstract] = ACTIONS(2782), - [anon_sym_interface] = ACTIONS(2782), - [anon_sym_enum] = ACTIONS(2782), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_rest_pattern] = STATE(5165), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3773), + [sym_tuple_parameter] = STATE(5278), + [sym_optional_tuple_parameter] = STATE(5278), + [sym_optional_type] = STATE(5278), + [sym_rest_type] = STATE(5278), + [sym__tuple_type_member] = STATE(5278), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(2489), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(2757), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2495), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [877] = { - [ts_builtin_sym_end] = ACTIONS(2784), - [sym_identifier] = ACTIONS(2786), - [anon_sym_export] = ACTIONS(2786), - [anon_sym_default] = ACTIONS(2786), - [anon_sym_type] = ACTIONS(2786), - [anon_sym_namespace] = ACTIONS(2786), - [anon_sym_LBRACE] = ACTIONS(2784), - [anon_sym_RBRACE] = ACTIONS(2784), - [anon_sym_typeof] = ACTIONS(2786), - [anon_sym_import] = ACTIONS(2786), - [anon_sym_with] = ACTIONS(2786), - [anon_sym_var] = ACTIONS(2786), - [anon_sym_let] = ACTIONS(2786), - [anon_sym_const] = ACTIONS(2786), - [anon_sym_BANG] = ACTIONS(2784), - [anon_sym_else] = ACTIONS(2786), - [anon_sym_if] = ACTIONS(2786), - [anon_sym_switch] = ACTIONS(2786), - [anon_sym_for] = ACTIONS(2786), - [anon_sym_LPAREN] = ACTIONS(2784), - [anon_sym_SEMI] = ACTIONS(2784), - [anon_sym_await] = ACTIONS(2786), - [anon_sym_while] = ACTIONS(2786), - [anon_sym_do] = ACTIONS(2786), - [anon_sym_try] = ACTIONS(2786), - [anon_sym_break] = ACTIONS(2786), - [anon_sym_continue] = ACTIONS(2786), - [anon_sym_debugger] = ACTIONS(2786), - [anon_sym_return] = ACTIONS(2786), - [anon_sym_throw] = ACTIONS(2786), - [anon_sym_case] = ACTIONS(2786), - [anon_sym_yield] = ACTIONS(2786), - [anon_sym_LBRACK] = ACTIONS(2784), - [sym_glimmer_opening_tag] = ACTIONS(2784), - [anon_sym_class] = ACTIONS(2786), - [anon_sym_async] = ACTIONS(2786), - [anon_sym_function] = ACTIONS(2786), - [anon_sym_new] = ACTIONS(2786), - [anon_sym_using] = ACTIONS(2786), - [anon_sym_PLUS] = ACTIONS(2786), - [anon_sym_DASH] = ACTIONS(2786), - [anon_sym_SLASH] = ACTIONS(2786), - [anon_sym_LT] = ACTIONS(2786), - [anon_sym_TILDE] = ACTIONS(2784), - [anon_sym_void] = ACTIONS(2786), - [anon_sym_delete] = ACTIONS(2786), - [anon_sym_PLUS_PLUS] = ACTIONS(2784), - [anon_sym_DASH_DASH] = ACTIONS(2784), - [anon_sym_DQUOTE] = ACTIONS(2784), - [anon_sym_SQUOTE] = ACTIONS(2784), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2784), - [sym_number] = ACTIONS(2784), - [sym_private_property_identifier] = ACTIONS(2784), - [sym_this] = ACTIONS(2786), - [sym_super] = ACTIONS(2786), - [sym_true] = ACTIONS(2786), - [sym_false] = ACTIONS(2786), - [sym_null] = ACTIONS(2786), - [sym_undefined] = ACTIONS(2786), - [anon_sym_AT] = ACTIONS(2784), - [anon_sym_static] = ACTIONS(2786), - [anon_sym_readonly] = ACTIONS(2786), - [anon_sym_get] = ACTIONS(2786), - [anon_sym_set] = ACTIONS(2786), - [anon_sym_declare] = ACTIONS(2786), - [anon_sym_public] = ACTIONS(2786), - [anon_sym_private] = ACTIONS(2786), - [anon_sym_protected] = ACTIONS(2786), - [anon_sym_override] = ACTIONS(2786), - [anon_sym_module] = ACTIONS(2786), - [anon_sym_any] = ACTIONS(2786), - [anon_sym_number] = ACTIONS(2786), - [anon_sym_boolean] = ACTIONS(2786), - [anon_sym_string] = ACTIONS(2786), - [anon_sym_symbol] = ACTIONS(2786), - [anon_sym_object] = ACTIONS(2786), - [anon_sym_abstract] = ACTIONS(2786), - [anon_sym_interface] = ACTIONS(2786), - [anon_sym_enum] = ACTIONS(2786), + [ts_builtin_sym_end] = ACTIONS(2759), + [sym_identifier] = ACTIONS(2761), + [anon_sym_export] = ACTIONS(2761), + [anon_sym_default] = ACTIONS(2761), + [anon_sym_type] = ACTIONS(2761), + [anon_sym_namespace] = ACTIONS(2761), + [anon_sym_LBRACE] = ACTIONS(2759), + [anon_sym_RBRACE] = ACTIONS(2759), + [anon_sym_typeof] = ACTIONS(2761), + [anon_sym_import] = ACTIONS(2761), + [anon_sym_with] = ACTIONS(2761), + [anon_sym_var] = ACTIONS(2761), + [anon_sym_let] = ACTIONS(2761), + [anon_sym_const] = ACTIONS(2761), + [anon_sym_BANG] = ACTIONS(2759), + [anon_sym_else] = ACTIONS(2761), + [anon_sym_if] = ACTIONS(2761), + [anon_sym_switch] = ACTIONS(2761), + [anon_sym_for] = ACTIONS(2761), + [anon_sym_LPAREN] = ACTIONS(2759), + [anon_sym_SEMI] = ACTIONS(2759), + [anon_sym_await] = ACTIONS(2761), + [anon_sym_while] = ACTIONS(2761), + [anon_sym_do] = ACTIONS(2761), + [anon_sym_try] = ACTIONS(2761), + [anon_sym_break] = ACTIONS(2761), + [anon_sym_continue] = ACTIONS(2761), + [anon_sym_debugger] = ACTIONS(2761), + [anon_sym_return] = ACTIONS(2761), + [anon_sym_throw] = ACTIONS(2761), + [anon_sym_case] = ACTIONS(2761), + [anon_sym_yield] = ACTIONS(2761), + [anon_sym_LBRACK] = ACTIONS(2759), + [anon_sym_class] = ACTIONS(2761), + [anon_sym_async] = ACTIONS(2761), + [anon_sym_function] = ACTIONS(2761), + [anon_sym_new] = ACTIONS(2761), + [anon_sym_using] = ACTIONS(2761), + [anon_sym_PLUS] = ACTIONS(2761), + [anon_sym_DASH] = ACTIONS(2761), + [anon_sym_SLASH] = ACTIONS(2761), + [anon_sym_LT] = ACTIONS(2759), + [anon_sym_TILDE] = ACTIONS(2759), + [anon_sym_void] = ACTIONS(2761), + [anon_sym_delete] = ACTIONS(2761), + [anon_sym_PLUS_PLUS] = ACTIONS(2759), + [anon_sym_DASH_DASH] = ACTIONS(2759), + [anon_sym_DQUOTE] = ACTIONS(2759), + [anon_sym_SQUOTE] = ACTIONS(2759), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2759), + [sym_number] = ACTIONS(2759), + [sym_private_property_identifier] = ACTIONS(2759), + [sym_this] = ACTIONS(2761), + [sym_super] = ACTIONS(2761), + [sym_true] = ACTIONS(2761), + [sym_false] = ACTIONS(2761), + [sym_null] = ACTIONS(2761), + [sym_undefined] = ACTIONS(2761), + [anon_sym_AT] = ACTIONS(2759), + [anon_sym_static] = ACTIONS(2761), + [anon_sym_readonly] = ACTIONS(2761), + [anon_sym_get] = ACTIONS(2761), + [anon_sym_set] = ACTIONS(2761), + [anon_sym_declare] = ACTIONS(2761), + [anon_sym_public] = ACTIONS(2761), + [anon_sym_private] = ACTIONS(2761), + [anon_sym_protected] = ACTIONS(2761), + [anon_sym_override] = ACTIONS(2761), + [anon_sym_module] = ACTIONS(2761), + [anon_sym_any] = ACTIONS(2761), + [anon_sym_number] = ACTIONS(2761), + [anon_sym_boolean] = ACTIONS(2761), + [anon_sym_string] = ACTIONS(2761), + [anon_sym_symbol] = ACTIONS(2761), + [anon_sym_object] = ACTIONS(2761), + [anon_sym_abstract] = ACTIONS(2761), + [anon_sym_interface] = ACTIONS(2761), + [anon_sym_enum] = ACTIONS(2761), [sym_html_comment] = ACTIONS(5), }, [878] = { - [ts_builtin_sym_end] = ACTIONS(1835), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1837), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_type] = ACTIONS(1837), - [anon_sym_namespace] = ACTIONS(1837), - [anon_sym_LBRACE] = ACTIONS(1835), - [anon_sym_RBRACE] = ACTIONS(1835), - [anon_sym_typeof] = ACTIONS(1837), - [anon_sym_import] = ACTIONS(1837), - [anon_sym_with] = ACTIONS(1837), - [anon_sym_var] = ACTIONS(1837), - [anon_sym_let] = ACTIONS(1837), - [anon_sym_const] = ACTIONS(1837), - [anon_sym_BANG] = ACTIONS(1835), - [anon_sym_else] = ACTIONS(1837), - [anon_sym_if] = ACTIONS(1837), - [anon_sym_switch] = ACTIONS(1837), - [anon_sym_for] = ACTIONS(1837), - [anon_sym_LPAREN] = ACTIONS(1835), - [anon_sym_SEMI] = ACTIONS(1835), - [anon_sym_await] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1837), - [anon_sym_do] = ACTIONS(1837), - [anon_sym_try] = ACTIONS(1837), - [anon_sym_break] = ACTIONS(1837), - [anon_sym_continue] = ACTIONS(1837), - [anon_sym_debugger] = ACTIONS(1837), - [anon_sym_return] = ACTIONS(1837), - [anon_sym_throw] = ACTIONS(1837), - [anon_sym_case] = ACTIONS(1837), - [anon_sym_yield] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1835), - [sym_glimmer_opening_tag] = ACTIONS(1835), - [anon_sym_class] = ACTIONS(1837), - [anon_sym_async] = ACTIONS(1837), - [anon_sym_function] = ACTIONS(1837), - [anon_sym_new] = ACTIONS(1837), - [anon_sym_using] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1837), - [anon_sym_DASH] = ACTIONS(1837), - [anon_sym_SLASH] = ACTIONS(1837), - [anon_sym_LT] = ACTIONS(1837), - [anon_sym_TILDE] = ACTIONS(1835), - [anon_sym_void] = ACTIONS(1837), - [anon_sym_delete] = ACTIONS(1837), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), - [anon_sym_DQUOTE] = ACTIONS(1835), - [anon_sym_SQUOTE] = ACTIONS(1835), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1835), - [sym_number] = ACTIONS(1835), - [sym_private_property_identifier] = ACTIONS(1835), - [sym_this] = ACTIONS(1837), - [sym_super] = ACTIONS(1837), - [sym_true] = ACTIONS(1837), - [sym_false] = ACTIONS(1837), - [sym_null] = ACTIONS(1837), - [sym_undefined] = ACTIONS(1837), - [anon_sym_AT] = ACTIONS(1835), - [anon_sym_static] = ACTIONS(1837), - [anon_sym_readonly] = ACTIONS(1837), - [anon_sym_get] = ACTIONS(1837), - [anon_sym_set] = ACTIONS(1837), - [anon_sym_declare] = ACTIONS(1837), - [anon_sym_public] = ACTIONS(1837), - [anon_sym_private] = ACTIONS(1837), - [anon_sym_protected] = ACTIONS(1837), - [anon_sym_override] = ACTIONS(1837), - [anon_sym_module] = ACTIONS(1837), - [anon_sym_any] = ACTIONS(1837), - [anon_sym_number] = ACTIONS(1837), - [anon_sym_boolean] = ACTIONS(1837), - [anon_sym_string] = ACTIONS(1837), - [anon_sym_symbol] = ACTIONS(1837), - [anon_sym_object] = ACTIONS(1837), - [anon_sym_abstract] = ACTIONS(1837), - [anon_sym_interface] = ACTIONS(1837), - [anon_sym_enum] = ACTIONS(1837), + [ts_builtin_sym_end] = ACTIONS(2763), + [sym_identifier] = ACTIONS(2765), + [anon_sym_export] = ACTIONS(2765), + [anon_sym_default] = ACTIONS(2765), + [anon_sym_type] = ACTIONS(2765), + [anon_sym_namespace] = ACTIONS(2765), + [anon_sym_LBRACE] = ACTIONS(2763), + [anon_sym_RBRACE] = ACTIONS(2763), + [anon_sym_typeof] = ACTIONS(2765), + [anon_sym_import] = ACTIONS(2765), + [anon_sym_with] = ACTIONS(2765), + [anon_sym_var] = ACTIONS(2765), + [anon_sym_let] = ACTIONS(2765), + [anon_sym_const] = ACTIONS(2765), + [anon_sym_BANG] = ACTIONS(2763), + [anon_sym_else] = ACTIONS(2765), + [anon_sym_if] = ACTIONS(2765), + [anon_sym_switch] = ACTIONS(2765), + [anon_sym_for] = ACTIONS(2765), + [anon_sym_LPAREN] = ACTIONS(2763), + [anon_sym_SEMI] = ACTIONS(2763), + [anon_sym_await] = ACTIONS(2765), + [anon_sym_while] = ACTIONS(2765), + [anon_sym_do] = ACTIONS(2765), + [anon_sym_try] = ACTIONS(2765), + [anon_sym_break] = ACTIONS(2765), + [anon_sym_continue] = ACTIONS(2765), + [anon_sym_debugger] = ACTIONS(2765), + [anon_sym_return] = ACTIONS(2765), + [anon_sym_throw] = ACTIONS(2765), + [anon_sym_case] = ACTIONS(2765), + [anon_sym_yield] = ACTIONS(2765), + [anon_sym_LBRACK] = ACTIONS(2763), + [anon_sym_class] = ACTIONS(2765), + [anon_sym_async] = ACTIONS(2765), + [anon_sym_function] = ACTIONS(2765), + [anon_sym_new] = ACTIONS(2765), + [anon_sym_using] = ACTIONS(2765), + [anon_sym_PLUS] = ACTIONS(2765), + [anon_sym_DASH] = ACTIONS(2765), + [anon_sym_SLASH] = ACTIONS(2765), + [anon_sym_LT] = ACTIONS(2763), + [anon_sym_TILDE] = ACTIONS(2763), + [anon_sym_void] = ACTIONS(2765), + [anon_sym_delete] = ACTIONS(2765), + [anon_sym_PLUS_PLUS] = ACTIONS(2763), + [anon_sym_DASH_DASH] = ACTIONS(2763), + [anon_sym_DQUOTE] = ACTIONS(2763), + [anon_sym_SQUOTE] = ACTIONS(2763), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2763), + [sym_number] = ACTIONS(2763), + [sym_private_property_identifier] = ACTIONS(2763), + [sym_this] = ACTIONS(2765), + [sym_super] = ACTIONS(2765), + [sym_true] = ACTIONS(2765), + [sym_false] = ACTIONS(2765), + [sym_null] = ACTIONS(2765), + [sym_undefined] = ACTIONS(2765), + [anon_sym_AT] = ACTIONS(2763), + [anon_sym_static] = ACTIONS(2765), + [anon_sym_readonly] = ACTIONS(2765), + [anon_sym_get] = ACTIONS(2765), + [anon_sym_set] = ACTIONS(2765), + [anon_sym_declare] = ACTIONS(2765), + [anon_sym_public] = ACTIONS(2765), + [anon_sym_private] = ACTIONS(2765), + [anon_sym_protected] = ACTIONS(2765), + [anon_sym_override] = ACTIONS(2765), + [anon_sym_module] = ACTIONS(2765), + [anon_sym_any] = ACTIONS(2765), + [anon_sym_number] = ACTIONS(2765), + [anon_sym_boolean] = ACTIONS(2765), + [anon_sym_string] = ACTIONS(2765), + [anon_sym_symbol] = ACTIONS(2765), + [anon_sym_object] = ACTIONS(2765), + [anon_sym_abstract] = ACTIONS(2765), + [anon_sym_interface] = ACTIONS(2765), + [anon_sym_enum] = ACTIONS(2765), [sym_html_comment] = ACTIONS(5), }, [879] = { - [sym_import] = STATE(4676), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5631), - [sym_rest_pattern] = STATE(5271), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(3304), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3830), - [sym_tuple_parameter] = STATE(4976), - [sym_optional_tuple_parameter] = STATE(4976), - [sym_optional_type] = STATE(4976), - [sym_rest_type] = STATE(4976), - [sym__tuple_type_member] = STATE(4976), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5461), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(2560), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_COMMA] = ACTIONS(2788), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_RBRACK] = ACTIONS(2790), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2566), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [ts_builtin_sym_end] = ACTIONS(2699), + [sym_identifier] = ACTIONS(2701), + [anon_sym_export] = ACTIONS(2701), + [anon_sym_default] = ACTIONS(2701), + [anon_sym_type] = ACTIONS(2701), + [anon_sym_namespace] = ACTIONS(2701), + [anon_sym_LBRACE] = ACTIONS(2699), + [anon_sym_RBRACE] = ACTIONS(2699), + [anon_sym_typeof] = ACTIONS(2701), + [anon_sym_import] = ACTIONS(2701), + [anon_sym_with] = ACTIONS(2701), + [anon_sym_var] = ACTIONS(2701), + [anon_sym_let] = ACTIONS(2701), + [anon_sym_const] = ACTIONS(2701), + [anon_sym_BANG] = ACTIONS(2699), + [anon_sym_else] = ACTIONS(2701), + [anon_sym_if] = ACTIONS(2701), + [anon_sym_switch] = ACTIONS(2701), + [anon_sym_for] = ACTIONS(2701), + [anon_sym_LPAREN] = ACTIONS(2699), + [anon_sym_SEMI] = ACTIONS(2699), + [anon_sym_await] = ACTIONS(2701), + [anon_sym_while] = ACTIONS(2701), + [anon_sym_do] = ACTIONS(2701), + [anon_sym_try] = ACTIONS(2701), + [anon_sym_break] = ACTIONS(2701), + [anon_sym_continue] = ACTIONS(2701), + [anon_sym_debugger] = ACTIONS(2701), + [anon_sym_return] = ACTIONS(2701), + [anon_sym_throw] = ACTIONS(2701), + [anon_sym_case] = ACTIONS(2701), + [anon_sym_yield] = ACTIONS(2701), + [anon_sym_LBRACK] = ACTIONS(2699), + [anon_sym_class] = ACTIONS(2701), + [anon_sym_async] = ACTIONS(2701), + [anon_sym_function] = ACTIONS(2701), + [anon_sym_new] = ACTIONS(2701), + [anon_sym_using] = ACTIONS(2701), + [anon_sym_PLUS] = ACTIONS(2701), + [anon_sym_DASH] = ACTIONS(2701), + [anon_sym_SLASH] = ACTIONS(2701), + [anon_sym_LT] = ACTIONS(2699), + [anon_sym_TILDE] = ACTIONS(2699), + [anon_sym_void] = ACTIONS(2701), + [anon_sym_delete] = ACTIONS(2701), + [anon_sym_PLUS_PLUS] = ACTIONS(2699), + [anon_sym_DASH_DASH] = ACTIONS(2699), + [anon_sym_DQUOTE] = ACTIONS(2699), + [anon_sym_SQUOTE] = ACTIONS(2699), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2699), + [sym_number] = ACTIONS(2699), + [sym_private_property_identifier] = ACTIONS(2699), + [sym_this] = ACTIONS(2701), + [sym_super] = ACTIONS(2701), + [sym_true] = ACTIONS(2701), + [sym_false] = ACTIONS(2701), + [sym_null] = ACTIONS(2701), + [sym_undefined] = ACTIONS(2701), + [anon_sym_AT] = ACTIONS(2699), + [anon_sym_static] = ACTIONS(2701), + [anon_sym_readonly] = ACTIONS(2701), + [anon_sym_get] = ACTIONS(2701), + [anon_sym_set] = ACTIONS(2701), + [anon_sym_declare] = ACTIONS(2701), + [anon_sym_public] = ACTIONS(2701), + [anon_sym_private] = ACTIONS(2701), + [anon_sym_protected] = ACTIONS(2701), + [anon_sym_override] = ACTIONS(2701), + [anon_sym_module] = ACTIONS(2701), + [anon_sym_any] = ACTIONS(2701), + [anon_sym_number] = ACTIONS(2701), + [anon_sym_boolean] = ACTIONS(2701), + [anon_sym_string] = ACTIONS(2701), + [anon_sym_symbol] = ACTIONS(2701), + [anon_sym_object] = ACTIONS(2701), + [anon_sym_abstract] = ACTIONS(2701), + [anon_sym_interface] = ACTIONS(2701), + [anon_sym_enum] = ACTIONS(2701), [sym_html_comment] = ACTIONS(5), }, [880] = { - [ts_builtin_sym_end] = ACTIONS(2708), - [sym_identifier] = ACTIONS(2710), - [anon_sym_export] = ACTIONS(2710), - [anon_sym_default] = ACTIONS(2710), - [anon_sym_type] = ACTIONS(2710), - [anon_sym_namespace] = ACTIONS(2710), - [anon_sym_LBRACE] = ACTIONS(2708), - [anon_sym_RBRACE] = ACTIONS(2708), - [anon_sym_typeof] = ACTIONS(2710), - [anon_sym_import] = ACTIONS(2710), - [anon_sym_with] = ACTIONS(2710), - [anon_sym_var] = ACTIONS(2710), - [anon_sym_let] = ACTIONS(2710), - [anon_sym_const] = ACTIONS(2710), - [anon_sym_BANG] = ACTIONS(2708), - [anon_sym_else] = ACTIONS(2710), - [anon_sym_if] = ACTIONS(2710), - [anon_sym_switch] = ACTIONS(2710), - [anon_sym_for] = ACTIONS(2710), - [anon_sym_LPAREN] = ACTIONS(2708), - [anon_sym_SEMI] = ACTIONS(2708), - [anon_sym_await] = ACTIONS(2710), - [anon_sym_while] = ACTIONS(2710), - [anon_sym_do] = ACTIONS(2710), - [anon_sym_try] = ACTIONS(2710), - [anon_sym_break] = ACTIONS(2710), - [anon_sym_continue] = ACTIONS(2710), - [anon_sym_debugger] = ACTIONS(2710), - [anon_sym_return] = ACTIONS(2710), - [anon_sym_throw] = ACTIONS(2710), - [anon_sym_case] = ACTIONS(2710), - [anon_sym_yield] = ACTIONS(2710), - [anon_sym_LBRACK] = ACTIONS(2708), - [sym_glimmer_opening_tag] = ACTIONS(2708), - [anon_sym_class] = ACTIONS(2710), - [anon_sym_async] = ACTIONS(2710), - [anon_sym_function] = ACTIONS(2710), - [anon_sym_new] = ACTIONS(2710), - [anon_sym_using] = ACTIONS(2710), - [anon_sym_PLUS] = ACTIONS(2710), - [anon_sym_DASH] = ACTIONS(2710), - [anon_sym_SLASH] = ACTIONS(2710), - [anon_sym_LT] = ACTIONS(2710), - [anon_sym_TILDE] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(2710), - [anon_sym_delete] = ACTIONS(2710), - [anon_sym_PLUS_PLUS] = ACTIONS(2708), - [anon_sym_DASH_DASH] = ACTIONS(2708), - [anon_sym_DQUOTE] = ACTIONS(2708), - [anon_sym_SQUOTE] = ACTIONS(2708), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2708), - [sym_number] = ACTIONS(2708), - [sym_private_property_identifier] = ACTIONS(2708), - [sym_this] = ACTIONS(2710), - [sym_super] = ACTIONS(2710), - [sym_true] = ACTIONS(2710), - [sym_false] = ACTIONS(2710), - [sym_null] = ACTIONS(2710), - [sym_undefined] = ACTIONS(2710), - [anon_sym_AT] = ACTIONS(2708), - [anon_sym_static] = ACTIONS(2710), - [anon_sym_readonly] = ACTIONS(2710), - [anon_sym_get] = ACTIONS(2710), - [anon_sym_set] = ACTIONS(2710), - [anon_sym_declare] = ACTIONS(2710), - [anon_sym_public] = ACTIONS(2710), - [anon_sym_private] = ACTIONS(2710), - [anon_sym_protected] = ACTIONS(2710), - [anon_sym_override] = ACTIONS(2710), - [anon_sym_module] = ACTIONS(2710), - [anon_sym_any] = ACTIONS(2710), - [anon_sym_number] = ACTIONS(2710), - [anon_sym_boolean] = ACTIONS(2710), - [anon_sym_string] = ACTIONS(2710), - [anon_sym_symbol] = ACTIONS(2710), - [anon_sym_object] = ACTIONS(2710), - [anon_sym_abstract] = ACTIONS(2710), - [anon_sym_interface] = ACTIONS(2710), - [anon_sym_enum] = ACTIONS(2710), + [ts_builtin_sym_end] = ACTIONS(2767), + [sym_identifier] = ACTIONS(2769), + [anon_sym_export] = ACTIONS(2769), + [anon_sym_default] = ACTIONS(2769), + [anon_sym_type] = ACTIONS(2769), + [anon_sym_namespace] = ACTIONS(2769), + [anon_sym_LBRACE] = ACTIONS(2767), + [anon_sym_RBRACE] = ACTIONS(2767), + [anon_sym_typeof] = ACTIONS(2769), + [anon_sym_import] = ACTIONS(2769), + [anon_sym_with] = ACTIONS(2769), + [anon_sym_var] = ACTIONS(2769), + [anon_sym_let] = ACTIONS(2769), + [anon_sym_const] = ACTIONS(2769), + [anon_sym_BANG] = ACTIONS(2767), + [anon_sym_else] = ACTIONS(2769), + [anon_sym_if] = ACTIONS(2769), + [anon_sym_switch] = ACTIONS(2769), + [anon_sym_for] = ACTIONS(2769), + [anon_sym_LPAREN] = ACTIONS(2767), + [anon_sym_SEMI] = ACTIONS(2767), + [anon_sym_await] = ACTIONS(2769), + [anon_sym_while] = ACTIONS(2769), + [anon_sym_do] = ACTIONS(2769), + [anon_sym_try] = ACTIONS(2769), + [anon_sym_break] = ACTIONS(2769), + [anon_sym_continue] = ACTIONS(2769), + [anon_sym_debugger] = ACTIONS(2769), + [anon_sym_return] = ACTIONS(2769), + [anon_sym_throw] = ACTIONS(2769), + [anon_sym_case] = ACTIONS(2769), + [anon_sym_yield] = ACTIONS(2769), + [anon_sym_LBRACK] = ACTIONS(2767), + [anon_sym_class] = ACTIONS(2769), + [anon_sym_async] = ACTIONS(2769), + [anon_sym_function] = ACTIONS(2769), + [anon_sym_new] = ACTIONS(2769), + [anon_sym_using] = ACTIONS(2769), + [anon_sym_PLUS] = ACTIONS(2769), + [anon_sym_DASH] = ACTIONS(2769), + [anon_sym_SLASH] = ACTIONS(2769), + [anon_sym_LT] = ACTIONS(2767), + [anon_sym_TILDE] = ACTIONS(2767), + [anon_sym_void] = ACTIONS(2769), + [anon_sym_delete] = ACTIONS(2769), + [anon_sym_PLUS_PLUS] = ACTIONS(2767), + [anon_sym_DASH_DASH] = ACTIONS(2767), + [anon_sym_DQUOTE] = ACTIONS(2767), + [anon_sym_SQUOTE] = ACTIONS(2767), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2767), + [sym_number] = ACTIONS(2767), + [sym_private_property_identifier] = ACTIONS(2767), + [sym_this] = ACTIONS(2769), + [sym_super] = ACTIONS(2769), + [sym_true] = ACTIONS(2769), + [sym_false] = ACTIONS(2769), + [sym_null] = ACTIONS(2769), + [sym_undefined] = ACTIONS(2769), + [anon_sym_AT] = ACTIONS(2767), + [anon_sym_static] = ACTIONS(2769), + [anon_sym_readonly] = ACTIONS(2769), + [anon_sym_get] = ACTIONS(2769), + [anon_sym_set] = ACTIONS(2769), + [anon_sym_declare] = ACTIONS(2769), + [anon_sym_public] = ACTIONS(2769), + [anon_sym_private] = ACTIONS(2769), + [anon_sym_protected] = ACTIONS(2769), + [anon_sym_override] = ACTIONS(2769), + [anon_sym_module] = ACTIONS(2769), + [anon_sym_any] = ACTIONS(2769), + [anon_sym_number] = ACTIONS(2769), + [anon_sym_boolean] = ACTIONS(2769), + [anon_sym_string] = ACTIONS(2769), + [anon_sym_symbol] = ACTIONS(2769), + [anon_sym_object] = ACTIONS(2769), + [anon_sym_abstract] = ACTIONS(2769), + [anon_sym_interface] = ACTIONS(2769), + [anon_sym_enum] = ACTIONS(2769), [sym_html_comment] = ACTIONS(5), }, [881] = { - [ts_builtin_sym_end] = ACTIONS(2792), - [sym_identifier] = ACTIONS(2794), - [anon_sym_export] = ACTIONS(2794), - [anon_sym_default] = ACTIONS(2794), - [anon_sym_type] = ACTIONS(2794), - [anon_sym_namespace] = ACTIONS(2794), - [anon_sym_LBRACE] = ACTIONS(2792), - [anon_sym_RBRACE] = ACTIONS(2792), - [anon_sym_typeof] = ACTIONS(2794), - [anon_sym_import] = ACTIONS(2794), - [anon_sym_with] = ACTIONS(2794), - [anon_sym_var] = ACTIONS(2794), - [anon_sym_let] = ACTIONS(2794), - [anon_sym_const] = ACTIONS(2794), - [anon_sym_BANG] = ACTIONS(2792), - [anon_sym_else] = ACTIONS(2794), - [anon_sym_if] = ACTIONS(2794), - [anon_sym_switch] = ACTIONS(2794), - [anon_sym_for] = ACTIONS(2794), - [anon_sym_LPAREN] = ACTIONS(2792), - [anon_sym_SEMI] = ACTIONS(2792), - [anon_sym_await] = ACTIONS(2794), - [anon_sym_while] = ACTIONS(2794), - [anon_sym_do] = ACTIONS(2794), - [anon_sym_try] = ACTIONS(2794), - [anon_sym_break] = ACTIONS(2794), - [anon_sym_continue] = ACTIONS(2794), - [anon_sym_debugger] = ACTIONS(2794), - [anon_sym_return] = ACTIONS(2794), - [anon_sym_throw] = ACTIONS(2794), - [anon_sym_case] = ACTIONS(2794), - [anon_sym_yield] = ACTIONS(2794), - [anon_sym_LBRACK] = ACTIONS(2792), - [sym_glimmer_opening_tag] = ACTIONS(2792), - [anon_sym_class] = ACTIONS(2794), - [anon_sym_async] = ACTIONS(2794), - [anon_sym_function] = ACTIONS(2794), - [anon_sym_new] = ACTIONS(2794), - [anon_sym_using] = ACTIONS(2794), - [anon_sym_PLUS] = ACTIONS(2794), - [anon_sym_DASH] = ACTIONS(2794), - [anon_sym_SLASH] = ACTIONS(2794), - [anon_sym_LT] = ACTIONS(2794), - [anon_sym_TILDE] = ACTIONS(2792), - [anon_sym_void] = ACTIONS(2794), - [anon_sym_delete] = ACTIONS(2794), - [anon_sym_PLUS_PLUS] = ACTIONS(2792), - [anon_sym_DASH_DASH] = ACTIONS(2792), - [anon_sym_DQUOTE] = ACTIONS(2792), - [anon_sym_SQUOTE] = ACTIONS(2792), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2792), - [sym_number] = ACTIONS(2792), - [sym_private_property_identifier] = ACTIONS(2792), - [sym_this] = ACTIONS(2794), - [sym_super] = ACTIONS(2794), - [sym_true] = ACTIONS(2794), - [sym_false] = ACTIONS(2794), - [sym_null] = ACTIONS(2794), - [sym_undefined] = ACTIONS(2794), - [anon_sym_AT] = ACTIONS(2792), - [anon_sym_static] = ACTIONS(2794), - [anon_sym_readonly] = ACTIONS(2794), - [anon_sym_get] = ACTIONS(2794), - [anon_sym_set] = ACTIONS(2794), - [anon_sym_declare] = ACTIONS(2794), - [anon_sym_public] = ACTIONS(2794), - [anon_sym_private] = ACTIONS(2794), - [anon_sym_protected] = ACTIONS(2794), - [anon_sym_override] = ACTIONS(2794), - [anon_sym_module] = ACTIONS(2794), - [anon_sym_any] = ACTIONS(2794), - [anon_sym_number] = ACTIONS(2794), - [anon_sym_boolean] = ACTIONS(2794), - [anon_sym_string] = ACTIONS(2794), - [anon_sym_symbol] = ACTIONS(2794), - [anon_sym_object] = ACTIONS(2794), - [anon_sym_abstract] = ACTIONS(2794), - [anon_sym_interface] = ACTIONS(2794), - [anon_sym_enum] = ACTIONS(2794), + [ts_builtin_sym_end] = ACTIONS(2771), + [sym_identifier] = ACTIONS(2773), + [anon_sym_export] = ACTIONS(2773), + [anon_sym_default] = ACTIONS(2773), + [anon_sym_type] = ACTIONS(2773), + [anon_sym_namespace] = ACTIONS(2773), + [anon_sym_LBRACE] = ACTIONS(2771), + [anon_sym_RBRACE] = ACTIONS(2771), + [anon_sym_typeof] = ACTIONS(2773), + [anon_sym_import] = ACTIONS(2773), + [anon_sym_with] = ACTIONS(2773), + [anon_sym_var] = ACTIONS(2773), + [anon_sym_let] = ACTIONS(2773), + [anon_sym_const] = ACTIONS(2773), + [anon_sym_BANG] = ACTIONS(2771), + [anon_sym_else] = ACTIONS(2773), + [anon_sym_if] = ACTIONS(2773), + [anon_sym_switch] = ACTIONS(2773), + [anon_sym_for] = ACTIONS(2773), + [anon_sym_LPAREN] = ACTIONS(2771), + [anon_sym_SEMI] = ACTIONS(2771), + [anon_sym_await] = ACTIONS(2773), + [anon_sym_while] = ACTIONS(2773), + [anon_sym_do] = ACTIONS(2773), + [anon_sym_try] = ACTIONS(2773), + [anon_sym_break] = ACTIONS(2773), + [anon_sym_continue] = ACTIONS(2773), + [anon_sym_debugger] = ACTIONS(2773), + [anon_sym_return] = ACTIONS(2773), + [anon_sym_throw] = ACTIONS(2773), + [anon_sym_case] = ACTIONS(2773), + [anon_sym_yield] = ACTIONS(2773), + [anon_sym_LBRACK] = ACTIONS(2771), + [anon_sym_class] = ACTIONS(2773), + [anon_sym_async] = ACTIONS(2773), + [anon_sym_function] = ACTIONS(2773), + [anon_sym_new] = ACTIONS(2773), + [anon_sym_using] = ACTIONS(2773), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_SLASH] = ACTIONS(2773), + [anon_sym_LT] = ACTIONS(2771), + [anon_sym_TILDE] = ACTIONS(2771), + [anon_sym_void] = ACTIONS(2773), + [anon_sym_delete] = ACTIONS(2773), + [anon_sym_PLUS_PLUS] = ACTIONS(2771), + [anon_sym_DASH_DASH] = ACTIONS(2771), + [anon_sym_DQUOTE] = ACTIONS(2771), + [anon_sym_SQUOTE] = ACTIONS(2771), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2771), + [sym_number] = ACTIONS(2771), + [sym_private_property_identifier] = ACTIONS(2771), + [sym_this] = ACTIONS(2773), + [sym_super] = ACTIONS(2773), + [sym_true] = ACTIONS(2773), + [sym_false] = ACTIONS(2773), + [sym_null] = ACTIONS(2773), + [sym_undefined] = ACTIONS(2773), + [anon_sym_AT] = ACTIONS(2771), + [anon_sym_static] = ACTIONS(2773), + [anon_sym_readonly] = ACTIONS(2773), + [anon_sym_get] = ACTIONS(2773), + [anon_sym_set] = ACTIONS(2773), + [anon_sym_declare] = ACTIONS(2773), + [anon_sym_public] = ACTIONS(2773), + [anon_sym_private] = ACTIONS(2773), + [anon_sym_protected] = ACTIONS(2773), + [anon_sym_override] = ACTIONS(2773), + [anon_sym_module] = ACTIONS(2773), + [anon_sym_any] = ACTIONS(2773), + [anon_sym_number] = ACTIONS(2773), + [anon_sym_boolean] = ACTIONS(2773), + [anon_sym_string] = ACTIONS(2773), + [anon_sym_symbol] = ACTIONS(2773), + [anon_sym_object] = ACTIONS(2773), + [anon_sym_abstract] = ACTIONS(2773), + [anon_sym_interface] = ACTIONS(2773), + [anon_sym_enum] = ACTIONS(2773), [sym_html_comment] = ACTIONS(5), }, [882] = { - [ts_builtin_sym_end] = ACTIONS(2796), - [sym_identifier] = ACTIONS(2798), - [anon_sym_export] = ACTIONS(2798), - [anon_sym_default] = ACTIONS(2798), - [anon_sym_type] = ACTIONS(2798), - [anon_sym_namespace] = ACTIONS(2798), - [anon_sym_LBRACE] = ACTIONS(2796), - [anon_sym_RBRACE] = ACTIONS(2796), - [anon_sym_typeof] = ACTIONS(2798), - [anon_sym_import] = ACTIONS(2798), - [anon_sym_with] = ACTIONS(2798), - [anon_sym_var] = ACTIONS(2798), - [anon_sym_let] = ACTIONS(2798), - [anon_sym_const] = ACTIONS(2798), - [anon_sym_BANG] = ACTIONS(2796), - [anon_sym_else] = ACTIONS(2798), - [anon_sym_if] = ACTIONS(2798), - [anon_sym_switch] = ACTIONS(2798), - [anon_sym_for] = ACTIONS(2798), - [anon_sym_LPAREN] = ACTIONS(2796), - [anon_sym_SEMI] = ACTIONS(2796), - [anon_sym_await] = ACTIONS(2798), - [anon_sym_while] = ACTIONS(2798), - [anon_sym_do] = ACTIONS(2798), - [anon_sym_try] = ACTIONS(2798), - [anon_sym_break] = ACTIONS(2798), - [anon_sym_continue] = ACTIONS(2798), - [anon_sym_debugger] = ACTIONS(2798), - [anon_sym_return] = ACTIONS(2798), - [anon_sym_throw] = ACTIONS(2798), - [anon_sym_case] = ACTIONS(2798), - [anon_sym_yield] = ACTIONS(2798), - [anon_sym_LBRACK] = ACTIONS(2796), - [sym_glimmer_opening_tag] = ACTIONS(2796), - [anon_sym_class] = ACTIONS(2798), - [anon_sym_async] = ACTIONS(2798), - [anon_sym_function] = ACTIONS(2798), - [anon_sym_new] = ACTIONS(2798), - [anon_sym_using] = ACTIONS(2798), - [anon_sym_PLUS] = ACTIONS(2798), - [anon_sym_DASH] = ACTIONS(2798), - [anon_sym_SLASH] = ACTIONS(2798), - [anon_sym_LT] = ACTIONS(2798), - [anon_sym_TILDE] = ACTIONS(2796), - [anon_sym_void] = ACTIONS(2798), - [anon_sym_delete] = ACTIONS(2798), - [anon_sym_PLUS_PLUS] = ACTIONS(2796), - [anon_sym_DASH_DASH] = ACTIONS(2796), - [anon_sym_DQUOTE] = ACTIONS(2796), - [anon_sym_SQUOTE] = ACTIONS(2796), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2796), - [sym_number] = ACTIONS(2796), - [sym_private_property_identifier] = ACTIONS(2796), - [sym_this] = ACTIONS(2798), - [sym_super] = ACTIONS(2798), - [sym_true] = ACTIONS(2798), - [sym_false] = ACTIONS(2798), - [sym_null] = ACTIONS(2798), - [sym_undefined] = ACTIONS(2798), - [anon_sym_AT] = ACTIONS(2796), - [anon_sym_static] = ACTIONS(2798), - [anon_sym_readonly] = ACTIONS(2798), - [anon_sym_get] = ACTIONS(2798), - [anon_sym_set] = ACTIONS(2798), - [anon_sym_declare] = ACTIONS(2798), - [anon_sym_public] = ACTIONS(2798), - [anon_sym_private] = ACTIONS(2798), - [anon_sym_protected] = ACTIONS(2798), - [anon_sym_override] = ACTIONS(2798), - [anon_sym_module] = ACTIONS(2798), - [anon_sym_any] = ACTIONS(2798), - [anon_sym_number] = ACTIONS(2798), - [anon_sym_boolean] = ACTIONS(2798), - [anon_sym_string] = ACTIONS(2798), - [anon_sym_symbol] = ACTIONS(2798), - [anon_sym_object] = ACTIONS(2798), - [anon_sym_abstract] = ACTIONS(2798), - [anon_sym_interface] = ACTIONS(2798), - [anon_sym_enum] = ACTIONS(2798), + [ts_builtin_sym_end] = ACTIONS(1750), + [sym_identifier] = ACTIONS(1752), + [anon_sym_export] = ACTIONS(1752), + [anon_sym_default] = ACTIONS(1752), + [anon_sym_type] = ACTIONS(1752), + [anon_sym_namespace] = ACTIONS(1752), + [anon_sym_LBRACE] = ACTIONS(1750), + [anon_sym_RBRACE] = ACTIONS(1750), + [anon_sym_typeof] = ACTIONS(1752), + [anon_sym_import] = ACTIONS(1752), + [anon_sym_with] = ACTIONS(1752), + [anon_sym_var] = ACTIONS(1752), + [anon_sym_let] = ACTIONS(1752), + [anon_sym_const] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_else] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1752), + [anon_sym_switch] = ACTIONS(1752), + [anon_sym_for] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1750), + [anon_sym_await] = ACTIONS(1752), + [anon_sym_while] = ACTIONS(1752), + [anon_sym_do] = ACTIONS(1752), + [anon_sym_try] = ACTIONS(1752), + [anon_sym_break] = ACTIONS(1752), + [anon_sym_continue] = ACTIONS(1752), + [anon_sym_debugger] = ACTIONS(1752), + [anon_sym_return] = ACTIONS(1752), + [anon_sym_throw] = ACTIONS(1752), + [anon_sym_case] = ACTIONS(1752), + [anon_sym_yield] = ACTIONS(1752), + [anon_sym_LBRACK] = ACTIONS(1750), + [anon_sym_class] = ACTIONS(1752), + [anon_sym_async] = ACTIONS(1752), + [anon_sym_function] = ACTIONS(1752), + [anon_sym_new] = ACTIONS(1752), + [anon_sym_using] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_SLASH] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_TILDE] = ACTIONS(1750), + [anon_sym_void] = ACTIONS(1752), + [anon_sym_delete] = ACTIONS(1752), + [anon_sym_PLUS_PLUS] = ACTIONS(1750), + [anon_sym_DASH_DASH] = ACTIONS(1750), + [anon_sym_DQUOTE] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1750), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1750), + [sym_number] = ACTIONS(1750), + [sym_private_property_identifier] = ACTIONS(1750), + [sym_this] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_true] = ACTIONS(1752), + [sym_false] = ACTIONS(1752), + [sym_null] = ACTIONS(1752), + [sym_undefined] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(1750), + [anon_sym_static] = ACTIONS(1752), + [anon_sym_readonly] = ACTIONS(1752), + [anon_sym_get] = ACTIONS(1752), + [anon_sym_set] = ACTIONS(1752), + [anon_sym_declare] = ACTIONS(1752), + [anon_sym_public] = ACTIONS(1752), + [anon_sym_private] = ACTIONS(1752), + [anon_sym_protected] = ACTIONS(1752), + [anon_sym_override] = ACTIONS(1752), + [anon_sym_module] = ACTIONS(1752), + [anon_sym_any] = ACTIONS(1752), + [anon_sym_number] = ACTIONS(1752), + [anon_sym_boolean] = ACTIONS(1752), + [anon_sym_string] = ACTIONS(1752), + [anon_sym_symbol] = ACTIONS(1752), + [anon_sym_object] = ACTIONS(1752), + [anon_sym_abstract] = ACTIONS(1752), + [anon_sym_interface] = ACTIONS(1752), + [anon_sym_enum] = ACTIONS(1752), [sym_html_comment] = ACTIONS(5), }, [883] = { - [ts_builtin_sym_end] = ACTIONS(2800), - [sym_identifier] = ACTIONS(2802), - [anon_sym_export] = ACTIONS(2802), - [anon_sym_default] = ACTIONS(2802), - [anon_sym_type] = ACTIONS(2802), - [anon_sym_namespace] = ACTIONS(2802), - [anon_sym_LBRACE] = ACTIONS(2800), - [anon_sym_RBRACE] = ACTIONS(2800), - [anon_sym_typeof] = ACTIONS(2802), - [anon_sym_import] = ACTIONS(2802), - [anon_sym_with] = ACTIONS(2802), - [anon_sym_var] = ACTIONS(2802), - [anon_sym_let] = ACTIONS(2802), - [anon_sym_const] = ACTIONS(2802), - [anon_sym_BANG] = ACTIONS(2800), - [anon_sym_else] = ACTIONS(2802), - [anon_sym_if] = ACTIONS(2802), - [anon_sym_switch] = ACTIONS(2802), - [anon_sym_for] = ACTIONS(2802), - [anon_sym_LPAREN] = ACTIONS(2800), - [anon_sym_SEMI] = ACTIONS(2800), - [anon_sym_await] = ACTIONS(2802), - [anon_sym_while] = ACTIONS(2802), - [anon_sym_do] = ACTIONS(2802), - [anon_sym_try] = ACTIONS(2802), - [anon_sym_break] = ACTIONS(2802), - [anon_sym_continue] = ACTIONS(2802), - [anon_sym_debugger] = ACTIONS(2802), - [anon_sym_return] = ACTIONS(2802), - [anon_sym_throw] = ACTIONS(2802), - [anon_sym_case] = ACTIONS(2802), - [anon_sym_yield] = ACTIONS(2802), - [anon_sym_LBRACK] = ACTIONS(2800), - [sym_glimmer_opening_tag] = ACTIONS(2800), - [anon_sym_class] = ACTIONS(2802), - [anon_sym_async] = ACTIONS(2802), - [anon_sym_function] = ACTIONS(2802), - [anon_sym_new] = ACTIONS(2802), - [anon_sym_using] = ACTIONS(2802), - [anon_sym_PLUS] = ACTIONS(2802), - [anon_sym_DASH] = ACTIONS(2802), - [anon_sym_SLASH] = ACTIONS(2802), - [anon_sym_LT] = ACTIONS(2802), - [anon_sym_TILDE] = ACTIONS(2800), - [anon_sym_void] = ACTIONS(2802), - [anon_sym_delete] = ACTIONS(2802), - [anon_sym_PLUS_PLUS] = ACTIONS(2800), - [anon_sym_DASH_DASH] = ACTIONS(2800), - [anon_sym_DQUOTE] = ACTIONS(2800), - [anon_sym_SQUOTE] = ACTIONS(2800), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2800), - [sym_number] = ACTIONS(2800), - [sym_private_property_identifier] = ACTIONS(2800), - [sym_this] = ACTIONS(2802), - [sym_super] = ACTIONS(2802), - [sym_true] = ACTIONS(2802), - [sym_false] = ACTIONS(2802), - [sym_null] = ACTIONS(2802), - [sym_undefined] = ACTIONS(2802), - [anon_sym_AT] = ACTIONS(2800), - [anon_sym_static] = ACTIONS(2802), - [anon_sym_readonly] = ACTIONS(2802), - [anon_sym_get] = ACTIONS(2802), - [anon_sym_set] = ACTIONS(2802), - [anon_sym_declare] = ACTIONS(2802), - [anon_sym_public] = ACTIONS(2802), - [anon_sym_private] = ACTIONS(2802), - [anon_sym_protected] = ACTIONS(2802), - [anon_sym_override] = ACTIONS(2802), - [anon_sym_module] = ACTIONS(2802), - [anon_sym_any] = ACTIONS(2802), - [anon_sym_number] = ACTIONS(2802), - [anon_sym_boolean] = ACTIONS(2802), - [anon_sym_string] = ACTIONS(2802), - [anon_sym_symbol] = ACTIONS(2802), - [anon_sym_object] = ACTIONS(2802), - [anon_sym_abstract] = ACTIONS(2802), - [anon_sym_interface] = ACTIONS(2802), - [anon_sym_enum] = ACTIONS(2802), + [ts_builtin_sym_end] = ACTIONS(2775), + [sym_identifier] = ACTIONS(2777), + [anon_sym_export] = ACTIONS(2777), + [anon_sym_default] = ACTIONS(2777), + [anon_sym_type] = ACTIONS(2777), + [anon_sym_namespace] = ACTIONS(2777), + [anon_sym_LBRACE] = ACTIONS(2775), + [anon_sym_RBRACE] = ACTIONS(2775), + [anon_sym_typeof] = ACTIONS(2777), + [anon_sym_import] = ACTIONS(2777), + [anon_sym_with] = ACTIONS(2777), + [anon_sym_var] = ACTIONS(2777), + [anon_sym_let] = ACTIONS(2777), + [anon_sym_const] = ACTIONS(2777), + [anon_sym_BANG] = ACTIONS(2775), + [anon_sym_else] = ACTIONS(2777), + [anon_sym_if] = ACTIONS(2777), + [anon_sym_switch] = ACTIONS(2777), + [anon_sym_for] = ACTIONS(2777), + [anon_sym_LPAREN] = ACTIONS(2775), + [anon_sym_SEMI] = ACTIONS(2775), + [anon_sym_await] = ACTIONS(2777), + [anon_sym_while] = ACTIONS(2777), + [anon_sym_do] = ACTIONS(2777), + [anon_sym_try] = ACTIONS(2777), + [anon_sym_break] = ACTIONS(2777), + [anon_sym_continue] = ACTIONS(2777), + [anon_sym_debugger] = ACTIONS(2777), + [anon_sym_return] = ACTIONS(2777), + [anon_sym_throw] = ACTIONS(2777), + [anon_sym_case] = ACTIONS(2777), + [anon_sym_yield] = ACTIONS(2777), + [anon_sym_LBRACK] = ACTIONS(2775), + [anon_sym_class] = ACTIONS(2777), + [anon_sym_async] = ACTIONS(2777), + [anon_sym_function] = ACTIONS(2777), + [anon_sym_new] = ACTIONS(2777), + [anon_sym_using] = ACTIONS(2777), + [anon_sym_PLUS] = ACTIONS(2777), + [anon_sym_DASH] = ACTIONS(2777), + [anon_sym_SLASH] = ACTIONS(2777), + [anon_sym_LT] = ACTIONS(2775), + [anon_sym_TILDE] = ACTIONS(2775), + [anon_sym_void] = ACTIONS(2777), + [anon_sym_delete] = ACTIONS(2777), + [anon_sym_PLUS_PLUS] = ACTIONS(2775), + [anon_sym_DASH_DASH] = ACTIONS(2775), + [anon_sym_DQUOTE] = ACTIONS(2775), + [anon_sym_SQUOTE] = ACTIONS(2775), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2775), + [sym_number] = ACTIONS(2775), + [sym_private_property_identifier] = ACTIONS(2775), + [sym_this] = ACTIONS(2777), + [sym_super] = ACTIONS(2777), + [sym_true] = ACTIONS(2777), + [sym_false] = ACTIONS(2777), + [sym_null] = ACTIONS(2777), + [sym_undefined] = ACTIONS(2777), + [anon_sym_AT] = ACTIONS(2775), + [anon_sym_static] = ACTIONS(2777), + [anon_sym_readonly] = ACTIONS(2777), + [anon_sym_get] = ACTIONS(2777), + [anon_sym_set] = ACTIONS(2777), + [anon_sym_declare] = ACTIONS(2777), + [anon_sym_public] = ACTIONS(2777), + [anon_sym_private] = ACTIONS(2777), + [anon_sym_protected] = ACTIONS(2777), + [anon_sym_override] = ACTIONS(2777), + [anon_sym_module] = ACTIONS(2777), + [anon_sym_any] = ACTIONS(2777), + [anon_sym_number] = ACTIONS(2777), + [anon_sym_boolean] = ACTIONS(2777), + [anon_sym_string] = ACTIONS(2777), + [anon_sym_symbol] = ACTIONS(2777), + [anon_sym_object] = ACTIONS(2777), + [anon_sym_abstract] = ACTIONS(2777), + [anon_sym_interface] = ACTIONS(2777), + [anon_sym_enum] = ACTIONS(2777), [sym_html_comment] = ACTIONS(5), }, [884] = { - [ts_builtin_sym_end] = ACTIONS(2804), - [sym_identifier] = ACTIONS(2806), - [anon_sym_export] = ACTIONS(2806), - [anon_sym_default] = ACTIONS(2806), - [anon_sym_type] = ACTIONS(2806), - [anon_sym_namespace] = ACTIONS(2806), - [anon_sym_LBRACE] = ACTIONS(2804), - [anon_sym_RBRACE] = ACTIONS(2804), - [anon_sym_typeof] = ACTIONS(2806), - [anon_sym_import] = ACTIONS(2806), - [anon_sym_with] = ACTIONS(2806), - [anon_sym_var] = ACTIONS(2806), - [anon_sym_let] = ACTIONS(2806), - [anon_sym_const] = ACTIONS(2806), - [anon_sym_BANG] = ACTIONS(2804), - [anon_sym_else] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_switch] = ACTIONS(2806), - [anon_sym_for] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2804), - [anon_sym_SEMI] = ACTIONS(2804), - [anon_sym_await] = ACTIONS(2806), - [anon_sym_while] = ACTIONS(2806), - [anon_sym_do] = ACTIONS(2806), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_break] = ACTIONS(2806), - [anon_sym_continue] = ACTIONS(2806), - [anon_sym_debugger] = ACTIONS(2806), - [anon_sym_return] = ACTIONS(2806), - [anon_sym_throw] = ACTIONS(2806), - [anon_sym_case] = ACTIONS(2806), - [anon_sym_yield] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(2804), - [sym_glimmer_opening_tag] = ACTIONS(2804), - [anon_sym_class] = ACTIONS(2806), - [anon_sym_async] = ACTIONS(2806), - [anon_sym_function] = ACTIONS(2806), - [anon_sym_new] = ACTIONS(2806), - [anon_sym_using] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_SLASH] = ACTIONS(2806), - [anon_sym_LT] = ACTIONS(2806), - [anon_sym_TILDE] = ACTIONS(2804), - [anon_sym_void] = ACTIONS(2806), - [anon_sym_delete] = ACTIONS(2806), - [anon_sym_PLUS_PLUS] = ACTIONS(2804), - [anon_sym_DASH_DASH] = ACTIONS(2804), - [anon_sym_DQUOTE] = ACTIONS(2804), - [anon_sym_SQUOTE] = ACTIONS(2804), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2804), - [sym_number] = ACTIONS(2804), - [sym_private_property_identifier] = ACTIONS(2804), - [sym_this] = ACTIONS(2806), - [sym_super] = ACTIONS(2806), - [sym_true] = ACTIONS(2806), - [sym_false] = ACTIONS(2806), - [sym_null] = ACTIONS(2806), - [sym_undefined] = ACTIONS(2806), - [anon_sym_AT] = ACTIONS(2804), - [anon_sym_static] = ACTIONS(2806), - [anon_sym_readonly] = ACTIONS(2806), - [anon_sym_get] = ACTIONS(2806), - [anon_sym_set] = ACTIONS(2806), - [anon_sym_declare] = ACTIONS(2806), - [anon_sym_public] = ACTIONS(2806), - [anon_sym_private] = ACTIONS(2806), - [anon_sym_protected] = ACTIONS(2806), - [anon_sym_override] = ACTIONS(2806), - [anon_sym_module] = ACTIONS(2806), - [anon_sym_any] = ACTIONS(2806), - [anon_sym_number] = ACTIONS(2806), - [anon_sym_boolean] = ACTIONS(2806), - [anon_sym_string] = ACTIONS(2806), - [anon_sym_symbol] = ACTIONS(2806), - [anon_sym_object] = ACTIONS(2806), - [anon_sym_abstract] = ACTIONS(2806), - [anon_sym_interface] = ACTIONS(2806), - [anon_sym_enum] = ACTIONS(2806), + [ts_builtin_sym_end] = ACTIONS(2779), + [sym_identifier] = ACTIONS(2781), + [anon_sym_export] = ACTIONS(2781), + [anon_sym_default] = ACTIONS(2781), + [anon_sym_type] = ACTIONS(2781), + [anon_sym_namespace] = ACTIONS(2781), + [anon_sym_LBRACE] = ACTIONS(2779), + [anon_sym_RBRACE] = ACTIONS(2779), + [anon_sym_typeof] = ACTIONS(2781), + [anon_sym_import] = ACTIONS(2781), + [anon_sym_with] = ACTIONS(2781), + [anon_sym_var] = ACTIONS(2781), + [anon_sym_let] = ACTIONS(2781), + [anon_sym_const] = ACTIONS(2781), + [anon_sym_BANG] = ACTIONS(2779), + [anon_sym_else] = ACTIONS(2781), + [anon_sym_if] = ACTIONS(2781), + [anon_sym_switch] = ACTIONS(2781), + [anon_sym_for] = ACTIONS(2781), + [anon_sym_LPAREN] = ACTIONS(2779), + [anon_sym_SEMI] = ACTIONS(2779), + [anon_sym_await] = ACTIONS(2781), + [anon_sym_while] = ACTIONS(2781), + [anon_sym_do] = ACTIONS(2781), + [anon_sym_try] = ACTIONS(2781), + [anon_sym_break] = ACTIONS(2781), + [anon_sym_continue] = ACTIONS(2781), + [anon_sym_debugger] = ACTIONS(2781), + [anon_sym_return] = ACTIONS(2781), + [anon_sym_throw] = ACTIONS(2781), + [anon_sym_case] = ACTIONS(2781), + [anon_sym_yield] = ACTIONS(2781), + [anon_sym_LBRACK] = ACTIONS(2779), + [anon_sym_class] = ACTIONS(2781), + [anon_sym_async] = ACTIONS(2781), + [anon_sym_function] = ACTIONS(2781), + [anon_sym_new] = ACTIONS(2781), + [anon_sym_using] = ACTIONS(2781), + [anon_sym_PLUS] = ACTIONS(2781), + [anon_sym_DASH] = ACTIONS(2781), + [anon_sym_SLASH] = ACTIONS(2781), + [anon_sym_LT] = ACTIONS(2779), + [anon_sym_TILDE] = ACTIONS(2779), + [anon_sym_void] = ACTIONS(2781), + [anon_sym_delete] = ACTIONS(2781), + [anon_sym_PLUS_PLUS] = ACTIONS(2779), + [anon_sym_DASH_DASH] = ACTIONS(2779), + [anon_sym_DQUOTE] = ACTIONS(2779), + [anon_sym_SQUOTE] = ACTIONS(2779), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2779), + [sym_number] = ACTIONS(2779), + [sym_private_property_identifier] = ACTIONS(2779), + [sym_this] = ACTIONS(2781), + [sym_super] = ACTIONS(2781), + [sym_true] = ACTIONS(2781), + [sym_false] = ACTIONS(2781), + [sym_null] = ACTIONS(2781), + [sym_undefined] = ACTIONS(2781), + [anon_sym_AT] = ACTIONS(2779), + [anon_sym_static] = ACTIONS(2781), + [anon_sym_readonly] = ACTIONS(2781), + [anon_sym_get] = ACTIONS(2781), + [anon_sym_set] = ACTIONS(2781), + [anon_sym_declare] = ACTIONS(2781), + [anon_sym_public] = ACTIONS(2781), + [anon_sym_private] = ACTIONS(2781), + [anon_sym_protected] = ACTIONS(2781), + [anon_sym_override] = ACTIONS(2781), + [anon_sym_module] = ACTIONS(2781), + [anon_sym_any] = ACTIONS(2781), + [anon_sym_number] = ACTIONS(2781), + [anon_sym_boolean] = ACTIONS(2781), + [anon_sym_string] = ACTIONS(2781), + [anon_sym_symbol] = ACTIONS(2781), + [anon_sym_object] = ACTIONS(2781), + [anon_sym_abstract] = ACTIONS(2781), + [anon_sym_interface] = ACTIONS(2781), + [anon_sym_enum] = ACTIONS(2781), [sym_html_comment] = ACTIONS(5), }, [885] = { - [ts_builtin_sym_end] = ACTIONS(2808), - [sym_identifier] = ACTIONS(2810), - [anon_sym_export] = ACTIONS(2810), - [anon_sym_default] = ACTIONS(2810), - [anon_sym_type] = ACTIONS(2810), - [anon_sym_namespace] = ACTIONS(2810), - [anon_sym_LBRACE] = ACTIONS(2808), - [anon_sym_RBRACE] = ACTIONS(2808), - [anon_sym_typeof] = ACTIONS(2810), - [anon_sym_import] = ACTIONS(2810), - [anon_sym_with] = ACTIONS(2810), - [anon_sym_var] = ACTIONS(2810), - [anon_sym_let] = ACTIONS(2810), - [anon_sym_const] = ACTIONS(2810), - [anon_sym_BANG] = ACTIONS(2808), - [anon_sym_else] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_switch] = ACTIONS(2810), - [anon_sym_for] = ACTIONS(2810), - [anon_sym_LPAREN] = ACTIONS(2808), - [anon_sym_SEMI] = ACTIONS(2808), - [anon_sym_await] = ACTIONS(2810), - [anon_sym_while] = ACTIONS(2810), - [anon_sym_do] = ACTIONS(2810), - [anon_sym_try] = ACTIONS(2810), - [anon_sym_break] = ACTIONS(2810), - [anon_sym_continue] = ACTIONS(2810), - [anon_sym_debugger] = ACTIONS(2810), - [anon_sym_return] = ACTIONS(2810), - [anon_sym_throw] = ACTIONS(2810), - [anon_sym_case] = ACTIONS(2810), - [anon_sym_yield] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2808), - [sym_glimmer_opening_tag] = ACTIONS(2808), - [anon_sym_class] = ACTIONS(2810), - [anon_sym_async] = ACTIONS(2810), - [anon_sym_function] = ACTIONS(2810), - [anon_sym_new] = ACTIONS(2810), - [anon_sym_using] = ACTIONS(2810), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_SLASH] = ACTIONS(2810), - [anon_sym_LT] = ACTIONS(2810), - [anon_sym_TILDE] = ACTIONS(2808), - [anon_sym_void] = ACTIONS(2810), - [anon_sym_delete] = ACTIONS(2810), - [anon_sym_PLUS_PLUS] = ACTIONS(2808), - [anon_sym_DASH_DASH] = ACTIONS(2808), - [anon_sym_DQUOTE] = ACTIONS(2808), - [anon_sym_SQUOTE] = ACTIONS(2808), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2808), - [sym_number] = ACTIONS(2808), - [sym_private_property_identifier] = ACTIONS(2808), - [sym_this] = ACTIONS(2810), - [sym_super] = ACTIONS(2810), - [sym_true] = ACTIONS(2810), - [sym_false] = ACTIONS(2810), - [sym_null] = ACTIONS(2810), - [sym_undefined] = ACTIONS(2810), - [anon_sym_AT] = ACTIONS(2808), - [anon_sym_static] = ACTIONS(2810), - [anon_sym_readonly] = ACTIONS(2810), - [anon_sym_get] = ACTIONS(2810), - [anon_sym_set] = ACTIONS(2810), - [anon_sym_declare] = ACTIONS(2810), - [anon_sym_public] = ACTIONS(2810), - [anon_sym_private] = ACTIONS(2810), - [anon_sym_protected] = ACTIONS(2810), - [anon_sym_override] = ACTIONS(2810), - [anon_sym_module] = ACTIONS(2810), - [anon_sym_any] = ACTIONS(2810), - [anon_sym_number] = ACTIONS(2810), - [anon_sym_boolean] = ACTIONS(2810), - [anon_sym_string] = ACTIONS(2810), - [anon_sym_symbol] = ACTIONS(2810), - [anon_sym_object] = ACTIONS(2810), - [anon_sym_abstract] = ACTIONS(2810), - [anon_sym_interface] = ACTIONS(2810), - [anon_sym_enum] = ACTIONS(2810), + [ts_builtin_sym_end] = ACTIONS(2783), + [sym_identifier] = ACTIONS(2785), + [anon_sym_export] = ACTIONS(2785), + [anon_sym_default] = ACTIONS(2785), + [anon_sym_type] = ACTIONS(2785), + [anon_sym_namespace] = ACTIONS(2785), + [anon_sym_LBRACE] = ACTIONS(2783), + [anon_sym_RBRACE] = ACTIONS(2783), + [anon_sym_typeof] = ACTIONS(2785), + [anon_sym_import] = ACTIONS(2785), + [anon_sym_with] = ACTIONS(2785), + [anon_sym_var] = ACTIONS(2785), + [anon_sym_let] = ACTIONS(2785), + [anon_sym_const] = ACTIONS(2785), + [anon_sym_BANG] = ACTIONS(2783), + [anon_sym_else] = ACTIONS(2785), + [anon_sym_if] = ACTIONS(2785), + [anon_sym_switch] = ACTIONS(2785), + [anon_sym_for] = ACTIONS(2785), + [anon_sym_LPAREN] = ACTIONS(2783), + [anon_sym_SEMI] = ACTIONS(2783), + [anon_sym_await] = ACTIONS(2785), + [anon_sym_while] = ACTIONS(2785), + [anon_sym_do] = ACTIONS(2785), + [anon_sym_try] = ACTIONS(2785), + [anon_sym_break] = ACTIONS(2785), + [anon_sym_continue] = ACTIONS(2785), + [anon_sym_debugger] = ACTIONS(2785), + [anon_sym_return] = ACTIONS(2785), + [anon_sym_throw] = ACTIONS(2785), + [anon_sym_case] = ACTIONS(2785), + [anon_sym_yield] = ACTIONS(2785), + [anon_sym_LBRACK] = ACTIONS(2783), + [anon_sym_class] = ACTIONS(2785), + [anon_sym_async] = ACTIONS(2785), + [anon_sym_function] = ACTIONS(2785), + [anon_sym_new] = ACTIONS(2785), + [anon_sym_using] = ACTIONS(2785), + [anon_sym_PLUS] = ACTIONS(2785), + [anon_sym_DASH] = ACTIONS(2785), + [anon_sym_SLASH] = ACTIONS(2785), + [anon_sym_LT] = ACTIONS(2783), + [anon_sym_TILDE] = ACTIONS(2783), + [anon_sym_void] = ACTIONS(2785), + [anon_sym_delete] = ACTIONS(2785), + [anon_sym_PLUS_PLUS] = ACTIONS(2783), + [anon_sym_DASH_DASH] = ACTIONS(2783), + [anon_sym_DQUOTE] = ACTIONS(2783), + [anon_sym_SQUOTE] = ACTIONS(2783), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2783), + [sym_number] = ACTIONS(2783), + [sym_private_property_identifier] = ACTIONS(2783), + [sym_this] = ACTIONS(2785), + [sym_super] = ACTIONS(2785), + [sym_true] = ACTIONS(2785), + [sym_false] = ACTIONS(2785), + [sym_null] = ACTIONS(2785), + [sym_undefined] = ACTIONS(2785), + [anon_sym_AT] = ACTIONS(2783), + [anon_sym_static] = ACTIONS(2785), + [anon_sym_readonly] = ACTIONS(2785), + [anon_sym_get] = ACTIONS(2785), + [anon_sym_set] = ACTIONS(2785), + [anon_sym_declare] = ACTIONS(2785), + [anon_sym_public] = ACTIONS(2785), + [anon_sym_private] = ACTIONS(2785), + [anon_sym_protected] = ACTIONS(2785), + [anon_sym_override] = ACTIONS(2785), + [anon_sym_module] = ACTIONS(2785), + [anon_sym_any] = ACTIONS(2785), + [anon_sym_number] = ACTIONS(2785), + [anon_sym_boolean] = ACTIONS(2785), + [anon_sym_string] = ACTIONS(2785), + [anon_sym_symbol] = ACTIONS(2785), + [anon_sym_object] = ACTIONS(2785), + [anon_sym_abstract] = ACTIONS(2785), + [anon_sym_interface] = ACTIONS(2785), + [anon_sym_enum] = ACTIONS(2785), [sym_html_comment] = ACTIONS(5), }, [886] = { - [ts_builtin_sym_end] = ACTIONS(1751), - [sym_identifier] = ACTIONS(1753), - [anon_sym_export] = ACTIONS(1753), - [anon_sym_default] = ACTIONS(1753), - [anon_sym_type] = ACTIONS(1753), - [anon_sym_namespace] = ACTIONS(1753), - [anon_sym_LBRACE] = ACTIONS(1751), - [anon_sym_RBRACE] = ACTIONS(1751), - [anon_sym_typeof] = ACTIONS(1753), - [anon_sym_import] = ACTIONS(1753), - [anon_sym_with] = ACTIONS(1753), - [anon_sym_var] = ACTIONS(1753), - [anon_sym_let] = ACTIONS(1753), - [anon_sym_const] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(1751), - [anon_sym_else] = ACTIONS(1753), - [anon_sym_if] = ACTIONS(1753), - [anon_sym_switch] = ACTIONS(1753), - [anon_sym_for] = ACTIONS(1753), - [anon_sym_LPAREN] = ACTIONS(1751), - [anon_sym_SEMI] = ACTIONS(1751), - [anon_sym_await] = ACTIONS(1753), - [anon_sym_while] = ACTIONS(1753), - [anon_sym_do] = ACTIONS(1753), - [anon_sym_try] = ACTIONS(1753), - [anon_sym_break] = ACTIONS(1753), - [anon_sym_continue] = ACTIONS(1753), - [anon_sym_debugger] = ACTIONS(1753), - [anon_sym_return] = ACTIONS(1753), - [anon_sym_throw] = ACTIONS(1753), - [anon_sym_case] = ACTIONS(1753), - [anon_sym_yield] = ACTIONS(1753), - [anon_sym_LBRACK] = ACTIONS(1751), - [sym_glimmer_opening_tag] = ACTIONS(1751), - [anon_sym_class] = ACTIONS(1753), - [anon_sym_async] = ACTIONS(1753), - [anon_sym_function] = ACTIONS(1753), - [anon_sym_new] = ACTIONS(1753), - [anon_sym_using] = ACTIONS(1753), - [anon_sym_PLUS] = ACTIONS(1753), - [anon_sym_DASH] = ACTIONS(1753), - [anon_sym_SLASH] = ACTIONS(1753), - [anon_sym_LT] = ACTIONS(1753), - [anon_sym_TILDE] = ACTIONS(1751), - [anon_sym_void] = ACTIONS(1753), - [anon_sym_delete] = ACTIONS(1753), - [anon_sym_PLUS_PLUS] = ACTIONS(1751), - [anon_sym_DASH_DASH] = ACTIONS(1751), - [anon_sym_DQUOTE] = ACTIONS(1751), - [anon_sym_SQUOTE] = ACTIONS(1751), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1751), - [sym_number] = ACTIONS(1751), - [sym_private_property_identifier] = ACTIONS(1751), - [sym_this] = ACTIONS(1753), - [sym_super] = ACTIONS(1753), - [sym_true] = ACTIONS(1753), - [sym_false] = ACTIONS(1753), - [sym_null] = ACTIONS(1753), - [sym_undefined] = ACTIONS(1753), - [anon_sym_AT] = ACTIONS(1751), - [anon_sym_static] = ACTIONS(1753), - [anon_sym_readonly] = ACTIONS(1753), - [anon_sym_get] = ACTIONS(1753), - [anon_sym_set] = ACTIONS(1753), - [anon_sym_declare] = ACTIONS(1753), - [anon_sym_public] = ACTIONS(1753), - [anon_sym_private] = ACTIONS(1753), - [anon_sym_protected] = ACTIONS(1753), - [anon_sym_override] = ACTIONS(1753), - [anon_sym_module] = ACTIONS(1753), - [anon_sym_any] = ACTIONS(1753), - [anon_sym_number] = ACTIONS(1753), - [anon_sym_boolean] = ACTIONS(1753), - [anon_sym_string] = ACTIONS(1753), - [anon_sym_symbol] = ACTIONS(1753), - [anon_sym_object] = ACTIONS(1753), - [anon_sym_abstract] = ACTIONS(1753), - [anon_sym_interface] = ACTIONS(1753), - [anon_sym_enum] = ACTIONS(1753), + [ts_builtin_sym_end] = ACTIONS(2787), + [sym_identifier] = ACTIONS(2789), + [anon_sym_export] = ACTIONS(2789), + [anon_sym_default] = ACTIONS(2789), + [anon_sym_type] = ACTIONS(2789), + [anon_sym_namespace] = ACTIONS(2789), + [anon_sym_LBRACE] = ACTIONS(2787), + [anon_sym_RBRACE] = ACTIONS(2787), + [anon_sym_typeof] = ACTIONS(2789), + [anon_sym_import] = ACTIONS(2789), + [anon_sym_with] = ACTIONS(2789), + [anon_sym_var] = ACTIONS(2789), + [anon_sym_let] = ACTIONS(2789), + [anon_sym_const] = ACTIONS(2789), + [anon_sym_BANG] = ACTIONS(2787), + [anon_sym_else] = ACTIONS(2789), + [anon_sym_if] = ACTIONS(2789), + [anon_sym_switch] = ACTIONS(2789), + [anon_sym_for] = ACTIONS(2789), + [anon_sym_LPAREN] = ACTIONS(2787), + [anon_sym_SEMI] = ACTIONS(2787), + [anon_sym_await] = ACTIONS(2789), + [anon_sym_while] = ACTIONS(2789), + [anon_sym_do] = ACTIONS(2789), + [anon_sym_try] = ACTIONS(2789), + [anon_sym_break] = ACTIONS(2789), + [anon_sym_continue] = ACTIONS(2789), + [anon_sym_debugger] = ACTIONS(2789), + [anon_sym_return] = ACTIONS(2789), + [anon_sym_throw] = ACTIONS(2789), + [anon_sym_case] = ACTIONS(2789), + [anon_sym_yield] = ACTIONS(2789), + [anon_sym_LBRACK] = ACTIONS(2787), + [anon_sym_class] = ACTIONS(2789), + [anon_sym_async] = ACTIONS(2789), + [anon_sym_function] = ACTIONS(2789), + [anon_sym_new] = ACTIONS(2789), + [anon_sym_using] = ACTIONS(2789), + [anon_sym_PLUS] = ACTIONS(2789), + [anon_sym_DASH] = ACTIONS(2789), + [anon_sym_SLASH] = ACTIONS(2789), + [anon_sym_LT] = ACTIONS(2787), + [anon_sym_TILDE] = ACTIONS(2787), + [anon_sym_void] = ACTIONS(2789), + [anon_sym_delete] = ACTIONS(2789), + [anon_sym_PLUS_PLUS] = ACTIONS(2787), + [anon_sym_DASH_DASH] = ACTIONS(2787), + [anon_sym_DQUOTE] = ACTIONS(2787), + [anon_sym_SQUOTE] = ACTIONS(2787), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2787), + [sym_number] = ACTIONS(2787), + [sym_private_property_identifier] = ACTIONS(2787), + [sym_this] = ACTIONS(2789), + [sym_super] = ACTIONS(2789), + [sym_true] = ACTIONS(2789), + [sym_false] = ACTIONS(2789), + [sym_null] = ACTIONS(2789), + [sym_undefined] = ACTIONS(2789), + [anon_sym_AT] = ACTIONS(2787), + [anon_sym_static] = ACTIONS(2789), + [anon_sym_readonly] = ACTIONS(2789), + [anon_sym_get] = ACTIONS(2789), + [anon_sym_set] = ACTIONS(2789), + [anon_sym_declare] = ACTIONS(2789), + [anon_sym_public] = ACTIONS(2789), + [anon_sym_private] = ACTIONS(2789), + [anon_sym_protected] = ACTIONS(2789), + [anon_sym_override] = ACTIONS(2789), + [anon_sym_module] = ACTIONS(2789), + [anon_sym_any] = ACTIONS(2789), + [anon_sym_number] = ACTIONS(2789), + [anon_sym_boolean] = ACTIONS(2789), + [anon_sym_string] = ACTIONS(2789), + [anon_sym_symbol] = ACTIONS(2789), + [anon_sym_object] = ACTIONS(2789), + [anon_sym_abstract] = ACTIONS(2789), + [anon_sym_interface] = ACTIONS(2789), + [anon_sym_enum] = ACTIONS(2789), [sym_html_comment] = ACTIONS(5), }, [887] = { - [ts_builtin_sym_end] = ACTIONS(2812), - [sym_identifier] = ACTIONS(2814), - [anon_sym_export] = ACTIONS(2814), - [anon_sym_default] = ACTIONS(2814), - [anon_sym_type] = ACTIONS(2814), - [anon_sym_namespace] = ACTIONS(2814), - [anon_sym_LBRACE] = ACTIONS(2812), - [anon_sym_RBRACE] = ACTIONS(2812), - [anon_sym_typeof] = ACTIONS(2814), - [anon_sym_import] = ACTIONS(2814), - [anon_sym_with] = ACTIONS(2814), - [anon_sym_var] = ACTIONS(2814), - [anon_sym_let] = ACTIONS(2814), - [anon_sym_const] = ACTIONS(2814), - [anon_sym_BANG] = ACTIONS(2812), - [anon_sym_else] = ACTIONS(2814), - [anon_sym_if] = ACTIONS(2814), - [anon_sym_switch] = ACTIONS(2814), - [anon_sym_for] = ACTIONS(2814), - [anon_sym_LPAREN] = ACTIONS(2812), - [anon_sym_SEMI] = ACTIONS(2812), - [anon_sym_await] = ACTIONS(2814), - [anon_sym_while] = ACTIONS(2814), - [anon_sym_do] = ACTIONS(2814), - [anon_sym_try] = ACTIONS(2814), - [anon_sym_break] = ACTIONS(2814), - [anon_sym_continue] = ACTIONS(2814), - [anon_sym_debugger] = ACTIONS(2814), - [anon_sym_return] = ACTIONS(2814), - [anon_sym_throw] = ACTIONS(2814), - [anon_sym_case] = ACTIONS(2814), - [anon_sym_yield] = ACTIONS(2814), - [anon_sym_LBRACK] = ACTIONS(2812), - [sym_glimmer_opening_tag] = ACTIONS(2812), - [anon_sym_class] = ACTIONS(2814), - [anon_sym_async] = ACTIONS(2814), - [anon_sym_function] = ACTIONS(2814), - [anon_sym_new] = ACTIONS(2814), - [anon_sym_using] = ACTIONS(2814), - [anon_sym_PLUS] = ACTIONS(2814), - [anon_sym_DASH] = ACTIONS(2814), - [anon_sym_SLASH] = ACTIONS(2814), - [anon_sym_LT] = ACTIONS(2814), - [anon_sym_TILDE] = ACTIONS(2812), - [anon_sym_void] = ACTIONS(2814), - [anon_sym_delete] = ACTIONS(2814), - [anon_sym_PLUS_PLUS] = ACTIONS(2812), - [anon_sym_DASH_DASH] = ACTIONS(2812), - [anon_sym_DQUOTE] = ACTIONS(2812), - [anon_sym_SQUOTE] = ACTIONS(2812), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2812), - [sym_number] = ACTIONS(2812), - [sym_private_property_identifier] = ACTIONS(2812), - [sym_this] = ACTIONS(2814), - [sym_super] = ACTIONS(2814), - [sym_true] = ACTIONS(2814), - [sym_false] = ACTIONS(2814), - [sym_null] = ACTIONS(2814), - [sym_undefined] = ACTIONS(2814), - [anon_sym_AT] = ACTIONS(2812), - [anon_sym_static] = ACTIONS(2814), - [anon_sym_readonly] = ACTIONS(2814), - [anon_sym_get] = ACTIONS(2814), - [anon_sym_set] = ACTIONS(2814), - [anon_sym_declare] = ACTIONS(2814), - [anon_sym_public] = ACTIONS(2814), - [anon_sym_private] = ACTIONS(2814), - [anon_sym_protected] = ACTIONS(2814), - [anon_sym_override] = ACTIONS(2814), - [anon_sym_module] = ACTIONS(2814), - [anon_sym_any] = ACTIONS(2814), - [anon_sym_number] = ACTIONS(2814), - [anon_sym_boolean] = ACTIONS(2814), - [anon_sym_string] = ACTIONS(2814), - [anon_sym_symbol] = ACTIONS(2814), - [anon_sym_object] = ACTIONS(2814), - [anon_sym_abstract] = ACTIONS(2814), - [anon_sym_interface] = ACTIONS(2814), - [anon_sym_enum] = ACTIONS(2814), + [ts_builtin_sym_end] = ACTIONS(1852), + [sym_identifier] = ACTIONS(1854), + [anon_sym_export] = ACTIONS(1854), + [anon_sym_default] = ACTIONS(1854), + [anon_sym_type] = ACTIONS(1854), + [anon_sym_namespace] = ACTIONS(1854), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(1852), + [anon_sym_typeof] = ACTIONS(1854), + [anon_sym_import] = ACTIONS(1854), + [anon_sym_with] = ACTIONS(1854), + [anon_sym_var] = ACTIONS(1854), + [anon_sym_let] = ACTIONS(1854), + [anon_sym_const] = ACTIONS(1854), + [anon_sym_BANG] = ACTIONS(1852), + [anon_sym_else] = ACTIONS(1854), + [anon_sym_if] = ACTIONS(1854), + [anon_sym_switch] = ACTIONS(1854), + [anon_sym_for] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(1852), + [anon_sym_SEMI] = ACTIONS(1852), + [anon_sym_await] = ACTIONS(1854), + [anon_sym_while] = ACTIONS(1854), + [anon_sym_do] = ACTIONS(1854), + [anon_sym_try] = ACTIONS(1854), + [anon_sym_break] = ACTIONS(1854), + [anon_sym_continue] = ACTIONS(1854), + [anon_sym_debugger] = ACTIONS(1854), + [anon_sym_return] = ACTIONS(1854), + [anon_sym_throw] = ACTIONS(1854), + [anon_sym_case] = ACTIONS(1854), + [anon_sym_yield] = ACTIONS(1854), + [anon_sym_LBRACK] = ACTIONS(1852), + [anon_sym_class] = ACTIONS(1854), + [anon_sym_async] = ACTIONS(1854), + [anon_sym_function] = ACTIONS(1854), + [anon_sym_new] = ACTIONS(1854), + [anon_sym_using] = ACTIONS(1854), + [anon_sym_PLUS] = ACTIONS(1854), + [anon_sym_DASH] = ACTIONS(1854), + [anon_sym_SLASH] = ACTIONS(1854), + [anon_sym_LT] = ACTIONS(1852), + [anon_sym_TILDE] = ACTIONS(1852), + [anon_sym_void] = ACTIONS(1854), + [anon_sym_delete] = ACTIONS(1854), + [anon_sym_PLUS_PLUS] = ACTIONS(1852), + [anon_sym_DASH_DASH] = ACTIONS(1852), + [anon_sym_DQUOTE] = ACTIONS(1852), + [anon_sym_SQUOTE] = ACTIONS(1852), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1852), + [sym_number] = ACTIONS(1852), + [sym_private_property_identifier] = ACTIONS(1852), + [sym_this] = ACTIONS(1854), + [sym_super] = ACTIONS(1854), + [sym_true] = ACTIONS(1854), + [sym_false] = ACTIONS(1854), + [sym_null] = ACTIONS(1854), + [sym_undefined] = ACTIONS(1854), + [anon_sym_AT] = ACTIONS(1852), + [anon_sym_static] = ACTIONS(1854), + [anon_sym_readonly] = ACTIONS(1854), + [anon_sym_get] = ACTIONS(1854), + [anon_sym_set] = ACTIONS(1854), + [anon_sym_declare] = ACTIONS(1854), + [anon_sym_public] = ACTIONS(1854), + [anon_sym_private] = ACTIONS(1854), + [anon_sym_protected] = ACTIONS(1854), + [anon_sym_override] = ACTIONS(1854), + [anon_sym_module] = ACTIONS(1854), + [anon_sym_any] = ACTIONS(1854), + [anon_sym_number] = ACTIONS(1854), + [anon_sym_boolean] = ACTIONS(1854), + [anon_sym_string] = ACTIONS(1854), + [anon_sym_symbol] = ACTIONS(1854), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_abstract] = ACTIONS(1854), + [anon_sym_interface] = ACTIONS(1854), + [anon_sym_enum] = ACTIONS(1854), [sym_html_comment] = ACTIONS(5), }, [888] = { - [ts_builtin_sym_end] = ACTIONS(2816), - [sym_identifier] = ACTIONS(2818), - [anon_sym_export] = ACTIONS(2818), - [anon_sym_default] = ACTIONS(2818), - [anon_sym_type] = ACTIONS(2818), - [anon_sym_namespace] = ACTIONS(2818), - [anon_sym_LBRACE] = ACTIONS(2816), - [anon_sym_RBRACE] = ACTIONS(2816), - [anon_sym_typeof] = ACTIONS(2818), - [anon_sym_import] = ACTIONS(2818), - [anon_sym_with] = ACTIONS(2818), - [anon_sym_var] = ACTIONS(2818), - [anon_sym_let] = ACTIONS(2818), - [anon_sym_const] = ACTIONS(2818), - [anon_sym_BANG] = ACTIONS(2816), - [anon_sym_else] = ACTIONS(2818), - [anon_sym_if] = ACTIONS(2818), - [anon_sym_switch] = ACTIONS(2818), - [anon_sym_for] = ACTIONS(2818), - [anon_sym_LPAREN] = ACTIONS(2816), - [anon_sym_SEMI] = ACTIONS(2816), - [anon_sym_await] = ACTIONS(2818), - [anon_sym_while] = ACTIONS(2818), - [anon_sym_do] = ACTIONS(2818), - [anon_sym_try] = ACTIONS(2818), - [anon_sym_break] = ACTIONS(2818), - [anon_sym_continue] = ACTIONS(2818), - [anon_sym_debugger] = ACTIONS(2818), - [anon_sym_return] = ACTIONS(2818), - [anon_sym_throw] = ACTIONS(2818), - [anon_sym_case] = ACTIONS(2818), - [anon_sym_yield] = ACTIONS(2818), - [anon_sym_LBRACK] = ACTIONS(2816), - [sym_glimmer_opening_tag] = ACTIONS(2816), - [anon_sym_class] = ACTIONS(2818), - [anon_sym_async] = ACTIONS(2818), - [anon_sym_function] = ACTIONS(2818), - [anon_sym_new] = ACTIONS(2818), - [anon_sym_using] = ACTIONS(2818), - [anon_sym_PLUS] = ACTIONS(2818), - [anon_sym_DASH] = ACTIONS(2818), - [anon_sym_SLASH] = ACTIONS(2818), - [anon_sym_LT] = ACTIONS(2818), - [anon_sym_TILDE] = ACTIONS(2816), - [anon_sym_void] = ACTIONS(2818), - [anon_sym_delete] = ACTIONS(2818), - [anon_sym_PLUS_PLUS] = ACTIONS(2816), - [anon_sym_DASH_DASH] = ACTIONS(2816), - [anon_sym_DQUOTE] = ACTIONS(2816), - [anon_sym_SQUOTE] = ACTIONS(2816), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2816), - [sym_number] = ACTIONS(2816), - [sym_private_property_identifier] = ACTIONS(2816), - [sym_this] = ACTIONS(2818), - [sym_super] = ACTIONS(2818), - [sym_true] = ACTIONS(2818), - [sym_false] = ACTIONS(2818), - [sym_null] = ACTIONS(2818), - [sym_undefined] = ACTIONS(2818), - [anon_sym_AT] = ACTIONS(2816), - [anon_sym_static] = ACTIONS(2818), - [anon_sym_readonly] = ACTIONS(2818), - [anon_sym_get] = ACTIONS(2818), - [anon_sym_set] = ACTIONS(2818), - [anon_sym_declare] = ACTIONS(2818), - [anon_sym_public] = ACTIONS(2818), - [anon_sym_private] = ACTIONS(2818), - [anon_sym_protected] = ACTIONS(2818), - [anon_sym_override] = ACTIONS(2818), - [anon_sym_module] = ACTIONS(2818), - [anon_sym_any] = ACTIONS(2818), - [anon_sym_number] = ACTIONS(2818), - [anon_sym_boolean] = ACTIONS(2818), - [anon_sym_string] = ACTIONS(2818), - [anon_sym_symbol] = ACTIONS(2818), - [anon_sym_object] = ACTIONS(2818), - [anon_sym_abstract] = ACTIONS(2818), - [anon_sym_interface] = ACTIONS(2818), - [anon_sym_enum] = ACTIONS(2818), + [ts_builtin_sym_end] = ACTIONS(2791), + [sym_identifier] = ACTIONS(2793), + [anon_sym_export] = ACTIONS(2793), + [anon_sym_default] = ACTIONS(2793), + [anon_sym_type] = ACTIONS(2793), + [anon_sym_namespace] = ACTIONS(2793), + [anon_sym_LBRACE] = ACTIONS(2791), + [anon_sym_RBRACE] = ACTIONS(2791), + [anon_sym_typeof] = ACTIONS(2793), + [anon_sym_import] = ACTIONS(2793), + [anon_sym_with] = ACTIONS(2793), + [anon_sym_var] = ACTIONS(2793), + [anon_sym_let] = ACTIONS(2793), + [anon_sym_const] = ACTIONS(2793), + [anon_sym_BANG] = ACTIONS(2791), + [anon_sym_else] = ACTIONS(2793), + [anon_sym_if] = ACTIONS(2793), + [anon_sym_switch] = ACTIONS(2793), + [anon_sym_for] = ACTIONS(2793), + [anon_sym_LPAREN] = ACTIONS(2791), + [anon_sym_SEMI] = ACTIONS(2791), + [anon_sym_await] = ACTIONS(2793), + [anon_sym_while] = ACTIONS(2793), + [anon_sym_do] = ACTIONS(2793), + [anon_sym_try] = ACTIONS(2793), + [anon_sym_break] = ACTIONS(2793), + [anon_sym_continue] = ACTIONS(2793), + [anon_sym_debugger] = ACTIONS(2793), + [anon_sym_return] = ACTIONS(2793), + [anon_sym_throw] = ACTIONS(2793), + [anon_sym_case] = ACTIONS(2793), + [anon_sym_yield] = ACTIONS(2793), + [anon_sym_LBRACK] = ACTIONS(2791), + [anon_sym_class] = ACTIONS(2793), + [anon_sym_async] = ACTIONS(2793), + [anon_sym_function] = ACTIONS(2793), + [anon_sym_new] = ACTIONS(2793), + [anon_sym_using] = ACTIONS(2793), + [anon_sym_PLUS] = ACTIONS(2793), + [anon_sym_DASH] = ACTIONS(2793), + [anon_sym_SLASH] = ACTIONS(2793), + [anon_sym_LT] = ACTIONS(2791), + [anon_sym_TILDE] = ACTIONS(2791), + [anon_sym_void] = ACTIONS(2793), + [anon_sym_delete] = ACTIONS(2793), + [anon_sym_PLUS_PLUS] = ACTIONS(2791), + [anon_sym_DASH_DASH] = ACTIONS(2791), + [anon_sym_DQUOTE] = ACTIONS(2791), + [anon_sym_SQUOTE] = ACTIONS(2791), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2791), + [sym_number] = ACTIONS(2791), + [sym_private_property_identifier] = ACTIONS(2791), + [sym_this] = ACTIONS(2793), + [sym_super] = ACTIONS(2793), + [sym_true] = ACTIONS(2793), + [sym_false] = ACTIONS(2793), + [sym_null] = ACTIONS(2793), + [sym_undefined] = ACTIONS(2793), + [anon_sym_AT] = ACTIONS(2791), + [anon_sym_static] = ACTIONS(2793), + [anon_sym_readonly] = ACTIONS(2793), + [anon_sym_get] = ACTIONS(2793), + [anon_sym_set] = ACTIONS(2793), + [anon_sym_declare] = ACTIONS(2793), + [anon_sym_public] = ACTIONS(2793), + [anon_sym_private] = ACTIONS(2793), + [anon_sym_protected] = ACTIONS(2793), + [anon_sym_override] = ACTIONS(2793), + [anon_sym_module] = ACTIONS(2793), + [anon_sym_any] = ACTIONS(2793), + [anon_sym_number] = ACTIONS(2793), + [anon_sym_boolean] = ACTIONS(2793), + [anon_sym_string] = ACTIONS(2793), + [anon_sym_symbol] = ACTIONS(2793), + [anon_sym_object] = ACTIONS(2793), + [anon_sym_abstract] = ACTIONS(2793), + [anon_sym_interface] = ACTIONS(2793), + [anon_sym_enum] = ACTIONS(2793), [sym_html_comment] = ACTIONS(5), }, [889] = { - [ts_builtin_sym_end] = ACTIONS(2820), - [sym_identifier] = ACTIONS(2822), - [anon_sym_export] = ACTIONS(2822), - [anon_sym_default] = ACTIONS(2822), - [anon_sym_type] = ACTIONS(2822), - [anon_sym_namespace] = ACTIONS(2822), - [anon_sym_LBRACE] = ACTIONS(2820), - [anon_sym_RBRACE] = ACTIONS(2820), - [anon_sym_typeof] = ACTIONS(2822), - [anon_sym_import] = ACTIONS(2822), - [anon_sym_with] = ACTIONS(2822), - [anon_sym_var] = ACTIONS(2822), - [anon_sym_let] = ACTIONS(2822), - [anon_sym_const] = ACTIONS(2822), - [anon_sym_BANG] = ACTIONS(2820), - [anon_sym_else] = ACTIONS(2822), - [anon_sym_if] = ACTIONS(2822), - [anon_sym_switch] = ACTIONS(2822), - [anon_sym_for] = ACTIONS(2822), - [anon_sym_LPAREN] = ACTIONS(2820), - [anon_sym_SEMI] = ACTIONS(2820), - [anon_sym_await] = ACTIONS(2822), - [anon_sym_while] = ACTIONS(2822), - [anon_sym_do] = ACTIONS(2822), - [anon_sym_try] = ACTIONS(2822), - [anon_sym_break] = ACTIONS(2822), - [anon_sym_continue] = ACTIONS(2822), - [anon_sym_debugger] = ACTIONS(2822), - [anon_sym_return] = ACTIONS(2822), - [anon_sym_throw] = ACTIONS(2822), - [anon_sym_case] = ACTIONS(2822), - [anon_sym_yield] = ACTIONS(2822), - [anon_sym_LBRACK] = ACTIONS(2820), - [sym_glimmer_opening_tag] = ACTIONS(2820), - [anon_sym_class] = ACTIONS(2822), - [anon_sym_async] = ACTIONS(2822), - [anon_sym_function] = ACTIONS(2822), - [anon_sym_new] = ACTIONS(2822), - [anon_sym_using] = ACTIONS(2822), - [anon_sym_PLUS] = ACTIONS(2822), - [anon_sym_DASH] = ACTIONS(2822), - [anon_sym_SLASH] = ACTIONS(2822), - [anon_sym_LT] = ACTIONS(2822), - [anon_sym_TILDE] = ACTIONS(2820), - [anon_sym_void] = ACTIONS(2822), - [anon_sym_delete] = ACTIONS(2822), - [anon_sym_PLUS_PLUS] = ACTIONS(2820), - [anon_sym_DASH_DASH] = ACTIONS(2820), - [anon_sym_DQUOTE] = ACTIONS(2820), - [anon_sym_SQUOTE] = ACTIONS(2820), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2820), - [sym_number] = ACTIONS(2820), - [sym_private_property_identifier] = ACTIONS(2820), - [sym_this] = ACTIONS(2822), - [sym_super] = ACTIONS(2822), - [sym_true] = ACTIONS(2822), - [sym_false] = ACTIONS(2822), - [sym_null] = ACTIONS(2822), - [sym_undefined] = ACTIONS(2822), - [anon_sym_AT] = ACTIONS(2820), - [anon_sym_static] = ACTIONS(2822), - [anon_sym_readonly] = ACTIONS(2822), - [anon_sym_get] = ACTIONS(2822), - [anon_sym_set] = ACTIONS(2822), - [anon_sym_declare] = ACTIONS(2822), - [anon_sym_public] = ACTIONS(2822), - [anon_sym_private] = ACTIONS(2822), - [anon_sym_protected] = ACTIONS(2822), - [anon_sym_override] = ACTIONS(2822), - [anon_sym_module] = ACTIONS(2822), - [anon_sym_any] = ACTIONS(2822), - [anon_sym_number] = ACTIONS(2822), - [anon_sym_boolean] = ACTIONS(2822), - [anon_sym_string] = ACTIONS(2822), - [anon_sym_symbol] = ACTIONS(2822), - [anon_sym_object] = ACTIONS(2822), - [anon_sym_abstract] = ACTIONS(2822), - [anon_sym_interface] = ACTIONS(2822), - [anon_sym_enum] = ACTIONS(2822), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_rest_pattern] = STATE(5165), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3773), + [sym_tuple_parameter] = STATE(5278), + [sym_optional_tuple_parameter] = STATE(5278), + [sym_optional_type] = STATE(5278), + [sym_rest_type] = STATE(5278), + [sym__tuple_type_member] = STATE(5278), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(2489), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(2795), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2495), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [890] = { - [ts_builtin_sym_end] = ACTIONS(2824), - [sym_identifier] = ACTIONS(2826), - [anon_sym_export] = ACTIONS(2826), - [anon_sym_default] = ACTIONS(2826), - [anon_sym_type] = ACTIONS(2826), - [anon_sym_namespace] = ACTIONS(2826), - [anon_sym_LBRACE] = ACTIONS(2824), - [anon_sym_RBRACE] = ACTIONS(2824), - [anon_sym_typeof] = ACTIONS(2826), - [anon_sym_import] = ACTIONS(2826), - [anon_sym_with] = ACTIONS(2826), - [anon_sym_var] = ACTIONS(2826), - [anon_sym_let] = ACTIONS(2826), - [anon_sym_const] = ACTIONS(2826), - [anon_sym_BANG] = ACTIONS(2824), - [anon_sym_else] = ACTIONS(2826), - [anon_sym_if] = ACTIONS(2826), - [anon_sym_switch] = ACTIONS(2826), - [anon_sym_for] = ACTIONS(2826), - [anon_sym_LPAREN] = ACTIONS(2824), - [anon_sym_SEMI] = ACTIONS(2824), - [anon_sym_await] = ACTIONS(2826), - [anon_sym_while] = ACTIONS(2826), - [anon_sym_do] = ACTIONS(2826), - [anon_sym_try] = ACTIONS(2826), - [anon_sym_break] = ACTIONS(2826), - [anon_sym_continue] = ACTIONS(2826), - [anon_sym_debugger] = ACTIONS(2826), - [anon_sym_return] = ACTIONS(2826), - [anon_sym_throw] = ACTIONS(2826), - [anon_sym_case] = ACTIONS(2826), - [anon_sym_yield] = ACTIONS(2826), - [anon_sym_LBRACK] = ACTIONS(2824), - [sym_glimmer_opening_tag] = ACTIONS(2824), - [anon_sym_class] = ACTIONS(2826), - [anon_sym_async] = ACTIONS(2826), - [anon_sym_function] = ACTIONS(2826), - [anon_sym_new] = ACTIONS(2826), - [anon_sym_using] = ACTIONS(2826), - [anon_sym_PLUS] = ACTIONS(2826), - [anon_sym_DASH] = ACTIONS(2826), - [anon_sym_SLASH] = ACTIONS(2826), - [anon_sym_LT] = ACTIONS(2826), - [anon_sym_TILDE] = ACTIONS(2824), - [anon_sym_void] = ACTIONS(2826), - [anon_sym_delete] = ACTIONS(2826), - [anon_sym_PLUS_PLUS] = ACTIONS(2824), - [anon_sym_DASH_DASH] = ACTIONS(2824), - [anon_sym_DQUOTE] = ACTIONS(2824), - [anon_sym_SQUOTE] = ACTIONS(2824), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2824), - [sym_number] = ACTIONS(2824), - [sym_private_property_identifier] = ACTIONS(2824), - [sym_this] = ACTIONS(2826), - [sym_super] = ACTIONS(2826), - [sym_true] = ACTIONS(2826), - [sym_false] = ACTIONS(2826), - [sym_null] = ACTIONS(2826), - [sym_undefined] = ACTIONS(2826), - [anon_sym_AT] = ACTIONS(2824), - [anon_sym_static] = ACTIONS(2826), - [anon_sym_readonly] = ACTIONS(2826), - [anon_sym_get] = ACTIONS(2826), - [anon_sym_set] = ACTIONS(2826), - [anon_sym_declare] = ACTIONS(2826), - [anon_sym_public] = ACTIONS(2826), - [anon_sym_private] = ACTIONS(2826), - [anon_sym_protected] = ACTIONS(2826), - [anon_sym_override] = ACTIONS(2826), - [anon_sym_module] = ACTIONS(2826), - [anon_sym_any] = ACTIONS(2826), - [anon_sym_number] = ACTIONS(2826), - [anon_sym_boolean] = ACTIONS(2826), - [anon_sym_string] = ACTIONS(2826), - [anon_sym_symbol] = ACTIONS(2826), - [anon_sym_object] = ACTIONS(2826), - [anon_sym_abstract] = ACTIONS(2826), - [anon_sym_interface] = ACTIONS(2826), - [anon_sym_enum] = ACTIONS(2826), + [ts_builtin_sym_end] = ACTIONS(2797), + [sym_identifier] = ACTIONS(2799), + [anon_sym_export] = ACTIONS(2799), + [anon_sym_default] = ACTIONS(2799), + [anon_sym_type] = ACTIONS(2799), + [anon_sym_namespace] = ACTIONS(2799), + [anon_sym_LBRACE] = ACTIONS(2797), + [anon_sym_RBRACE] = ACTIONS(2797), + [anon_sym_typeof] = ACTIONS(2799), + [anon_sym_import] = ACTIONS(2799), + [anon_sym_with] = ACTIONS(2799), + [anon_sym_var] = ACTIONS(2799), + [anon_sym_let] = ACTIONS(2799), + [anon_sym_const] = ACTIONS(2799), + [anon_sym_BANG] = ACTIONS(2797), + [anon_sym_else] = ACTIONS(2799), + [anon_sym_if] = ACTIONS(2799), + [anon_sym_switch] = ACTIONS(2799), + [anon_sym_for] = ACTIONS(2799), + [anon_sym_LPAREN] = ACTIONS(2797), + [anon_sym_SEMI] = ACTIONS(2797), + [anon_sym_await] = ACTIONS(2799), + [anon_sym_while] = ACTIONS(2799), + [anon_sym_do] = ACTIONS(2799), + [anon_sym_try] = ACTIONS(2799), + [anon_sym_break] = ACTIONS(2799), + [anon_sym_continue] = ACTIONS(2799), + [anon_sym_debugger] = ACTIONS(2799), + [anon_sym_return] = ACTIONS(2799), + [anon_sym_throw] = ACTIONS(2799), + [anon_sym_case] = ACTIONS(2799), + [anon_sym_yield] = ACTIONS(2799), + [anon_sym_LBRACK] = ACTIONS(2797), + [anon_sym_class] = ACTIONS(2799), + [anon_sym_async] = ACTIONS(2799), + [anon_sym_function] = ACTIONS(2799), + [anon_sym_new] = ACTIONS(2799), + [anon_sym_using] = ACTIONS(2799), + [anon_sym_PLUS] = ACTIONS(2799), + [anon_sym_DASH] = ACTIONS(2799), + [anon_sym_SLASH] = ACTIONS(2799), + [anon_sym_LT] = ACTIONS(2797), + [anon_sym_TILDE] = ACTIONS(2797), + [anon_sym_void] = ACTIONS(2799), + [anon_sym_delete] = ACTIONS(2799), + [anon_sym_PLUS_PLUS] = ACTIONS(2797), + [anon_sym_DASH_DASH] = ACTIONS(2797), + [anon_sym_DQUOTE] = ACTIONS(2797), + [anon_sym_SQUOTE] = ACTIONS(2797), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2797), + [sym_number] = ACTIONS(2797), + [sym_private_property_identifier] = ACTIONS(2797), + [sym_this] = ACTIONS(2799), + [sym_super] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [sym_null] = ACTIONS(2799), + [sym_undefined] = ACTIONS(2799), + [anon_sym_AT] = ACTIONS(2797), + [anon_sym_static] = ACTIONS(2799), + [anon_sym_readonly] = ACTIONS(2799), + [anon_sym_get] = ACTIONS(2799), + [anon_sym_set] = ACTIONS(2799), + [anon_sym_declare] = ACTIONS(2799), + [anon_sym_public] = ACTIONS(2799), + [anon_sym_private] = ACTIONS(2799), + [anon_sym_protected] = ACTIONS(2799), + [anon_sym_override] = ACTIONS(2799), + [anon_sym_module] = ACTIONS(2799), + [anon_sym_any] = ACTIONS(2799), + [anon_sym_number] = ACTIONS(2799), + [anon_sym_boolean] = ACTIONS(2799), + [anon_sym_string] = ACTIONS(2799), + [anon_sym_symbol] = ACTIONS(2799), + [anon_sym_object] = ACTIONS(2799), + [anon_sym_abstract] = ACTIONS(2799), + [anon_sym_interface] = ACTIONS(2799), + [anon_sym_enum] = ACTIONS(2799), [sym_html_comment] = ACTIONS(5), }, [891] = { - [ts_builtin_sym_end] = ACTIONS(2828), - [sym_identifier] = ACTIONS(2830), - [anon_sym_export] = ACTIONS(2830), - [anon_sym_default] = ACTIONS(2830), - [anon_sym_type] = ACTIONS(2830), - [anon_sym_namespace] = ACTIONS(2830), - [anon_sym_LBRACE] = ACTIONS(2828), - [anon_sym_RBRACE] = ACTIONS(2828), - [anon_sym_typeof] = ACTIONS(2830), - [anon_sym_import] = ACTIONS(2830), - [anon_sym_with] = ACTIONS(2830), - [anon_sym_var] = ACTIONS(2830), - [anon_sym_let] = ACTIONS(2830), - [anon_sym_const] = ACTIONS(2830), - [anon_sym_BANG] = ACTIONS(2828), - [anon_sym_else] = ACTIONS(2830), - [anon_sym_if] = ACTIONS(2830), - [anon_sym_switch] = ACTIONS(2830), - [anon_sym_for] = ACTIONS(2830), - [anon_sym_LPAREN] = ACTIONS(2828), - [anon_sym_SEMI] = ACTIONS(2828), - [anon_sym_await] = ACTIONS(2830), - [anon_sym_while] = ACTIONS(2830), - [anon_sym_do] = ACTIONS(2830), - [anon_sym_try] = ACTIONS(2830), - [anon_sym_break] = ACTIONS(2830), - [anon_sym_continue] = ACTIONS(2830), - [anon_sym_debugger] = ACTIONS(2830), - [anon_sym_return] = ACTIONS(2830), - [anon_sym_throw] = ACTIONS(2830), - [anon_sym_case] = ACTIONS(2830), - [anon_sym_yield] = ACTIONS(2830), - [anon_sym_LBRACK] = ACTIONS(2828), - [sym_glimmer_opening_tag] = ACTIONS(2828), - [anon_sym_class] = ACTIONS(2830), - [anon_sym_async] = ACTIONS(2830), - [anon_sym_function] = ACTIONS(2830), - [anon_sym_new] = ACTIONS(2830), - [anon_sym_using] = ACTIONS(2830), - [anon_sym_PLUS] = ACTIONS(2830), - [anon_sym_DASH] = ACTIONS(2830), - [anon_sym_SLASH] = ACTIONS(2830), - [anon_sym_LT] = ACTIONS(2830), - [anon_sym_TILDE] = ACTIONS(2828), - [anon_sym_void] = ACTIONS(2830), - [anon_sym_delete] = ACTIONS(2830), - [anon_sym_PLUS_PLUS] = ACTIONS(2828), - [anon_sym_DASH_DASH] = ACTIONS(2828), - [anon_sym_DQUOTE] = ACTIONS(2828), - [anon_sym_SQUOTE] = ACTIONS(2828), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2828), - [sym_number] = ACTIONS(2828), - [sym_private_property_identifier] = ACTIONS(2828), - [sym_this] = ACTIONS(2830), - [sym_super] = ACTIONS(2830), - [sym_true] = ACTIONS(2830), - [sym_false] = ACTIONS(2830), - [sym_null] = ACTIONS(2830), - [sym_undefined] = ACTIONS(2830), - [anon_sym_AT] = ACTIONS(2828), - [anon_sym_static] = ACTIONS(2830), - [anon_sym_readonly] = ACTIONS(2830), - [anon_sym_get] = ACTIONS(2830), - [anon_sym_set] = ACTIONS(2830), - [anon_sym_declare] = ACTIONS(2830), - [anon_sym_public] = ACTIONS(2830), - [anon_sym_private] = ACTIONS(2830), - [anon_sym_protected] = ACTIONS(2830), - [anon_sym_override] = ACTIONS(2830), - [anon_sym_module] = ACTIONS(2830), - [anon_sym_any] = ACTIONS(2830), - [anon_sym_number] = ACTIONS(2830), - [anon_sym_boolean] = ACTIONS(2830), - [anon_sym_string] = ACTIONS(2830), - [anon_sym_symbol] = ACTIONS(2830), - [anon_sym_object] = ACTIONS(2830), - [anon_sym_abstract] = ACTIONS(2830), - [anon_sym_interface] = ACTIONS(2830), - [anon_sym_enum] = ACTIONS(2830), + [ts_builtin_sym_end] = ACTIONS(2801), + [sym_identifier] = ACTIONS(2803), + [anon_sym_export] = ACTIONS(2803), + [anon_sym_default] = ACTIONS(2803), + [anon_sym_type] = ACTIONS(2803), + [anon_sym_namespace] = ACTIONS(2803), + [anon_sym_LBRACE] = ACTIONS(2801), + [anon_sym_RBRACE] = ACTIONS(2801), + [anon_sym_typeof] = ACTIONS(2803), + [anon_sym_import] = ACTIONS(2803), + [anon_sym_with] = ACTIONS(2803), + [anon_sym_var] = ACTIONS(2803), + [anon_sym_let] = ACTIONS(2803), + [anon_sym_const] = ACTIONS(2803), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_else] = ACTIONS(2803), + [anon_sym_if] = ACTIONS(2803), + [anon_sym_switch] = ACTIONS(2803), + [anon_sym_for] = ACTIONS(2803), + [anon_sym_LPAREN] = ACTIONS(2801), + [anon_sym_SEMI] = ACTIONS(2801), + [anon_sym_await] = ACTIONS(2803), + [anon_sym_while] = ACTIONS(2803), + [anon_sym_do] = ACTIONS(2803), + [anon_sym_try] = ACTIONS(2803), + [anon_sym_break] = ACTIONS(2803), + [anon_sym_continue] = ACTIONS(2803), + [anon_sym_debugger] = ACTIONS(2803), + [anon_sym_return] = ACTIONS(2803), + [anon_sym_throw] = ACTIONS(2803), + [anon_sym_case] = ACTIONS(2803), + [anon_sym_yield] = ACTIONS(2803), + [anon_sym_LBRACK] = ACTIONS(2801), + [anon_sym_class] = ACTIONS(2803), + [anon_sym_async] = ACTIONS(2803), + [anon_sym_function] = ACTIONS(2803), + [anon_sym_new] = ACTIONS(2803), + [anon_sym_using] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2803), + [anon_sym_DASH] = ACTIONS(2803), + [anon_sym_SLASH] = ACTIONS(2803), + [anon_sym_LT] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2801), + [anon_sym_void] = ACTIONS(2803), + [anon_sym_delete] = ACTIONS(2803), + [anon_sym_PLUS_PLUS] = ACTIONS(2801), + [anon_sym_DASH_DASH] = ACTIONS(2801), + [anon_sym_DQUOTE] = ACTIONS(2801), + [anon_sym_SQUOTE] = ACTIONS(2801), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2801), + [sym_number] = ACTIONS(2801), + [sym_private_property_identifier] = ACTIONS(2801), + [sym_this] = ACTIONS(2803), + [sym_super] = ACTIONS(2803), + [sym_true] = ACTIONS(2803), + [sym_false] = ACTIONS(2803), + [sym_null] = ACTIONS(2803), + [sym_undefined] = ACTIONS(2803), + [anon_sym_AT] = ACTIONS(2801), + [anon_sym_static] = ACTIONS(2803), + [anon_sym_readonly] = ACTIONS(2803), + [anon_sym_get] = ACTIONS(2803), + [anon_sym_set] = ACTIONS(2803), + [anon_sym_declare] = ACTIONS(2803), + [anon_sym_public] = ACTIONS(2803), + [anon_sym_private] = ACTIONS(2803), + [anon_sym_protected] = ACTIONS(2803), + [anon_sym_override] = ACTIONS(2803), + [anon_sym_module] = ACTIONS(2803), + [anon_sym_any] = ACTIONS(2803), + [anon_sym_number] = ACTIONS(2803), + [anon_sym_boolean] = ACTIONS(2803), + [anon_sym_string] = ACTIONS(2803), + [anon_sym_symbol] = ACTIONS(2803), + [anon_sym_object] = ACTIONS(2803), + [anon_sym_abstract] = ACTIONS(2803), + [anon_sym_interface] = ACTIONS(2803), + [anon_sym_enum] = ACTIONS(2803), [sym_html_comment] = ACTIONS(5), }, [892] = { - [ts_builtin_sym_end] = ACTIONS(2832), - [sym_identifier] = ACTIONS(2834), - [anon_sym_export] = ACTIONS(2834), - [anon_sym_default] = ACTIONS(2834), - [anon_sym_type] = ACTIONS(2834), - [anon_sym_namespace] = ACTIONS(2834), - [anon_sym_LBRACE] = ACTIONS(2832), - [anon_sym_RBRACE] = ACTIONS(2832), - [anon_sym_typeof] = ACTIONS(2834), - [anon_sym_import] = ACTIONS(2834), - [anon_sym_with] = ACTIONS(2834), - [anon_sym_var] = ACTIONS(2834), - [anon_sym_let] = ACTIONS(2834), - [anon_sym_const] = ACTIONS(2834), - [anon_sym_BANG] = ACTIONS(2832), - [anon_sym_else] = ACTIONS(2834), - [anon_sym_if] = ACTIONS(2834), - [anon_sym_switch] = ACTIONS(2834), - [anon_sym_for] = ACTIONS(2834), - [anon_sym_LPAREN] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2832), - [anon_sym_await] = ACTIONS(2834), - [anon_sym_while] = ACTIONS(2834), - [anon_sym_do] = ACTIONS(2834), - [anon_sym_try] = ACTIONS(2834), - [anon_sym_break] = ACTIONS(2834), - [anon_sym_continue] = ACTIONS(2834), - [anon_sym_debugger] = ACTIONS(2834), - [anon_sym_return] = ACTIONS(2834), - [anon_sym_throw] = ACTIONS(2834), - [anon_sym_case] = ACTIONS(2834), - [anon_sym_yield] = ACTIONS(2834), - [anon_sym_LBRACK] = ACTIONS(2832), - [sym_glimmer_opening_tag] = ACTIONS(2832), - [anon_sym_class] = ACTIONS(2834), - [anon_sym_async] = ACTIONS(2834), - [anon_sym_function] = ACTIONS(2834), - [anon_sym_new] = ACTIONS(2834), - [anon_sym_using] = ACTIONS(2834), - [anon_sym_PLUS] = ACTIONS(2834), - [anon_sym_DASH] = ACTIONS(2834), - [anon_sym_SLASH] = ACTIONS(2834), - [anon_sym_LT] = ACTIONS(2834), - [anon_sym_TILDE] = ACTIONS(2832), - [anon_sym_void] = ACTIONS(2834), - [anon_sym_delete] = ACTIONS(2834), - [anon_sym_PLUS_PLUS] = ACTIONS(2832), - [anon_sym_DASH_DASH] = ACTIONS(2832), - [anon_sym_DQUOTE] = ACTIONS(2832), - [anon_sym_SQUOTE] = ACTIONS(2832), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2832), - [sym_number] = ACTIONS(2832), - [sym_private_property_identifier] = ACTIONS(2832), - [sym_this] = ACTIONS(2834), - [sym_super] = ACTIONS(2834), - [sym_true] = ACTIONS(2834), - [sym_false] = ACTIONS(2834), - [sym_null] = ACTIONS(2834), - [sym_undefined] = ACTIONS(2834), - [anon_sym_AT] = ACTIONS(2832), - [anon_sym_static] = ACTIONS(2834), - [anon_sym_readonly] = ACTIONS(2834), - [anon_sym_get] = ACTIONS(2834), - [anon_sym_set] = ACTIONS(2834), - [anon_sym_declare] = ACTIONS(2834), - [anon_sym_public] = ACTIONS(2834), - [anon_sym_private] = ACTIONS(2834), - [anon_sym_protected] = ACTIONS(2834), - [anon_sym_override] = ACTIONS(2834), - [anon_sym_module] = ACTIONS(2834), - [anon_sym_any] = ACTIONS(2834), - [anon_sym_number] = ACTIONS(2834), - [anon_sym_boolean] = ACTIONS(2834), - [anon_sym_string] = ACTIONS(2834), - [anon_sym_symbol] = ACTIONS(2834), - [anon_sym_object] = ACTIONS(2834), - [anon_sym_abstract] = ACTIONS(2834), - [anon_sym_interface] = ACTIONS(2834), - [anon_sym_enum] = ACTIONS(2834), + [ts_builtin_sym_end] = ACTIONS(2805), + [sym_identifier] = ACTIONS(2807), + [anon_sym_export] = ACTIONS(2807), + [anon_sym_default] = ACTIONS(2807), + [anon_sym_type] = ACTIONS(2807), + [anon_sym_namespace] = ACTIONS(2807), + [anon_sym_LBRACE] = ACTIONS(2805), + [anon_sym_RBRACE] = ACTIONS(2805), + [anon_sym_typeof] = ACTIONS(2807), + [anon_sym_import] = ACTIONS(2807), + [anon_sym_with] = ACTIONS(2807), + [anon_sym_var] = ACTIONS(2807), + [anon_sym_let] = ACTIONS(2807), + [anon_sym_const] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2805), + [anon_sym_else] = ACTIONS(2807), + [anon_sym_if] = ACTIONS(2807), + [anon_sym_switch] = ACTIONS(2807), + [anon_sym_for] = ACTIONS(2807), + [anon_sym_LPAREN] = ACTIONS(2805), + [anon_sym_SEMI] = ACTIONS(2805), + [anon_sym_await] = ACTIONS(2807), + [anon_sym_while] = ACTIONS(2807), + [anon_sym_do] = ACTIONS(2807), + [anon_sym_try] = ACTIONS(2807), + [anon_sym_break] = ACTIONS(2807), + [anon_sym_continue] = ACTIONS(2807), + [anon_sym_debugger] = ACTIONS(2807), + [anon_sym_return] = ACTIONS(2807), + [anon_sym_throw] = ACTIONS(2807), + [anon_sym_case] = ACTIONS(2807), + [anon_sym_yield] = ACTIONS(2807), + [anon_sym_LBRACK] = ACTIONS(2805), + [anon_sym_class] = ACTIONS(2807), + [anon_sym_async] = ACTIONS(2807), + [anon_sym_function] = ACTIONS(2807), + [anon_sym_new] = ACTIONS(2807), + [anon_sym_using] = ACTIONS(2807), + [anon_sym_PLUS] = ACTIONS(2807), + [anon_sym_DASH] = ACTIONS(2807), + [anon_sym_SLASH] = ACTIONS(2807), + [anon_sym_LT] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2805), + [anon_sym_void] = ACTIONS(2807), + [anon_sym_delete] = ACTIONS(2807), + [anon_sym_PLUS_PLUS] = ACTIONS(2805), + [anon_sym_DASH_DASH] = ACTIONS(2805), + [anon_sym_DQUOTE] = ACTIONS(2805), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2805), + [sym_number] = ACTIONS(2805), + [sym_private_property_identifier] = ACTIONS(2805), + [sym_this] = ACTIONS(2807), + [sym_super] = ACTIONS(2807), + [sym_true] = ACTIONS(2807), + [sym_false] = ACTIONS(2807), + [sym_null] = ACTIONS(2807), + [sym_undefined] = ACTIONS(2807), + [anon_sym_AT] = ACTIONS(2805), + [anon_sym_static] = ACTIONS(2807), + [anon_sym_readonly] = ACTIONS(2807), + [anon_sym_get] = ACTIONS(2807), + [anon_sym_set] = ACTIONS(2807), + [anon_sym_declare] = ACTIONS(2807), + [anon_sym_public] = ACTIONS(2807), + [anon_sym_private] = ACTIONS(2807), + [anon_sym_protected] = ACTIONS(2807), + [anon_sym_override] = ACTIONS(2807), + [anon_sym_module] = ACTIONS(2807), + [anon_sym_any] = ACTIONS(2807), + [anon_sym_number] = ACTIONS(2807), + [anon_sym_boolean] = ACTIONS(2807), + [anon_sym_string] = ACTIONS(2807), + [anon_sym_symbol] = ACTIONS(2807), + [anon_sym_object] = ACTIONS(2807), + [anon_sym_abstract] = ACTIONS(2807), + [anon_sym_interface] = ACTIONS(2807), + [anon_sym_enum] = ACTIONS(2807), [sym_html_comment] = ACTIONS(5), }, [893] = { - [ts_builtin_sym_end] = ACTIONS(2824), - [sym_identifier] = ACTIONS(2826), - [anon_sym_export] = ACTIONS(2826), - [anon_sym_default] = ACTIONS(2826), - [anon_sym_type] = ACTIONS(2826), - [anon_sym_namespace] = ACTIONS(2826), - [anon_sym_LBRACE] = ACTIONS(2824), - [anon_sym_RBRACE] = ACTIONS(2824), - [anon_sym_typeof] = ACTIONS(2826), - [anon_sym_import] = ACTIONS(2826), - [anon_sym_with] = ACTIONS(2826), - [anon_sym_var] = ACTIONS(2826), - [anon_sym_let] = ACTIONS(2826), - [anon_sym_const] = ACTIONS(2826), - [anon_sym_BANG] = ACTIONS(2824), - [anon_sym_else] = ACTIONS(2826), - [anon_sym_if] = ACTIONS(2826), - [anon_sym_switch] = ACTIONS(2826), - [anon_sym_for] = ACTIONS(2826), - [anon_sym_LPAREN] = ACTIONS(2824), - [anon_sym_SEMI] = ACTIONS(2824), - [anon_sym_await] = ACTIONS(2826), - [anon_sym_while] = ACTIONS(2826), - [anon_sym_do] = ACTIONS(2826), - [anon_sym_try] = ACTIONS(2826), - [anon_sym_break] = ACTIONS(2826), - [anon_sym_continue] = ACTIONS(2826), - [anon_sym_debugger] = ACTIONS(2826), - [anon_sym_return] = ACTIONS(2826), - [anon_sym_throw] = ACTIONS(2826), - [anon_sym_case] = ACTIONS(2826), - [anon_sym_yield] = ACTIONS(2826), - [anon_sym_LBRACK] = ACTIONS(2824), - [sym_glimmer_opening_tag] = ACTIONS(2824), - [anon_sym_class] = ACTIONS(2826), - [anon_sym_async] = ACTIONS(2826), - [anon_sym_function] = ACTIONS(2826), - [anon_sym_new] = ACTIONS(2826), - [anon_sym_using] = ACTIONS(2826), - [anon_sym_PLUS] = ACTIONS(2826), - [anon_sym_DASH] = ACTIONS(2826), - [anon_sym_SLASH] = ACTIONS(2826), - [anon_sym_LT] = ACTIONS(2826), - [anon_sym_TILDE] = ACTIONS(2824), - [anon_sym_void] = ACTIONS(2826), - [anon_sym_delete] = ACTIONS(2826), - [anon_sym_PLUS_PLUS] = ACTIONS(2824), - [anon_sym_DASH_DASH] = ACTIONS(2824), - [anon_sym_DQUOTE] = ACTIONS(2824), - [anon_sym_SQUOTE] = ACTIONS(2824), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2824), - [sym_number] = ACTIONS(2824), - [sym_private_property_identifier] = ACTIONS(2824), - [sym_this] = ACTIONS(2826), - [sym_super] = ACTIONS(2826), - [sym_true] = ACTIONS(2826), - [sym_false] = ACTIONS(2826), - [sym_null] = ACTIONS(2826), - [sym_undefined] = ACTIONS(2826), - [anon_sym_AT] = ACTIONS(2824), - [anon_sym_static] = ACTIONS(2826), - [anon_sym_readonly] = ACTIONS(2826), - [anon_sym_get] = ACTIONS(2826), - [anon_sym_set] = ACTIONS(2826), - [anon_sym_declare] = ACTIONS(2826), - [anon_sym_public] = ACTIONS(2826), - [anon_sym_private] = ACTIONS(2826), - [anon_sym_protected] = ACTIONS(2826), - [anon_sym_override] = ACTIONS(2826), - [anon_sym_module] = ACTIONS(2826), - [anon_sym_any] = ACTIONS(2826), - [anon_sym_number] = ACTIONS(2826), - [anon_sym_boolean] = ACTIONS(2826), - [anon_sym_string] = ACTIONS(2826), - [anon_sym_symbol] = ACTIONS(2826), - [anon_sym_object] = ACTIONS(2826), - [anon_sym_abstract] = ACTIONS(2826), - [anon_sym_interface] = ACTIONS(2826), - [anon_sym_enum] = ACTIONS(2826), + [ts_builtin_sym_end] = ACTIONS(2809), + [sym_identifier] = ACTIONS(2811), + [anon_sym_export] = ACTIONS(2811), + [anon_sym_default] = ACTIONS(2811), + [anon_sym_type] = ACTIONS(2811), + [anon_sym_namespace] = ACTIONS(2811), + [anon_sym_LBRACE] = ACTIONS(2809), + [anon_sym_RBRACE] = ACTIONS(2809), + [anon_sym_typeof] = ACTIONS(2811), + [anon_sym_import] = ACTIONS(2811), + [anon_sym_with] = ACTIONS(2811), + [anon_sym_var] = ACTIONS(2811), + [anon_sym_let] = ACTIONS(2811), + [anon_sym_const] = ACTIONS(2811), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_else] = ACTIONS(2811), + [anon_sym_if] = ACTIONS(2811), + [anon_sym_switch] = ACTIONS(2811), + [anon_sym_for] = ACTIONS(2811), + [anon_sym_LPAREN] = ACTIONS(2809), + [anon_sym_SEMI] = ACTIONS(2809), + [anon_sym_await] = ACTIONS(2811), + [anon_sym_while] = ACTIONS(2811), + [anon_sym_do] = ACTIONS(2811), + [anon_sym_try] = ACTIONS(2811), + [anon_sym_break] = ACTIONS(2811), + [anon_sym_continue] = ACTIONS(2811), + [anon_sym_debugger] = ACTIONS(2811), + [anon_sym_return] = ACTIONS(2811), + [anon_sym_throw] = ACTIONS(2811), + [anon_sym_case] = ACTIONS(2811), + [anon_sym_yield] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2809), + [anon_sym_class] = ACTIONS(2811), + [anon_sym_async] = ACTIONS(2811), + [anon_sym_function] = ACTIONS(2811), + [anon_sym_new] = ACTIONS(2811), + [anon_sym_using] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_SLASH] = ACTIONS(2811), + [anon_sym_LT] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_void] = ACTIONS(2811), + [anon_sym_delete] = ACTIONS(2811), + [anon_sym_PLUS_PLUS] = ACTIONS(2809), + [anon_sym_DASH_DASH] = ACTIONS(2809), + [anon_sym_DQUOTE] = ACTIONS(2809), + [anon_sym_SQUOTE] = ACTIONS(2809), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2809), + [sym_number] = ACTIONS(2809), + [sym_private_property_identifier] = ACTIONS(2809), + [sym_this] = ACTIONS(2811), + [sym_super] = ACTIONS(2811), + [sym_true] = ACTIONS(2811), + [sym_false] = ACTIONS(2811), + [sym_null] = ACTIONS(2811), + [sym_undefined] = ACTIONS(2811), + [anon_sym_AT] = ACTIONS(2809), + [anon_sym_static] = ACTIONS(2811), + [anon_sym_readonly] = ACTIONS(2811), + [anon_sym_get] = ACTIONS(2811), + [anon_sym_set] = ACTIONS(2811), + [anon_sym_declare] = ACTIONS(2811), + [anon_sym_public] = ACTIONS(2811), + [anon_sym_private] = ACTIONS(2811), + [anon_sym_protected] = ACTIONS(2811), + [anon_sym_override] = ACTIONS(2811), + [anon_sym_module] = ACTIONS(2811), + [anon_sym_any] = ACTIONS(2811), + [anon_sym_number] = ACTIONS(2811), + [anon_sym_boolean] = ACTIONS(2811), + [anon_sym_string] = ACTIONS(2811), + [anon_sym_symbol] = ACTIONS(2811), + [anon_sym_object] = ACTIONS(2811), + [anon_sym_abstract] = ACTIONS(2811), + [anon_sym_interface] = ACTIONS(2811), + [anon_sym_enum] = ACTIONS(2811), [sym_html_comment] = ACTIONS(5), }, [894] = { - [ts_builtin_sym_end] = ACTIONS(2836), - [sym_identifier] = ACTIONS(2838), - [anon_sym_export] = ACTIONS(2838), - [anon_sym_default] = ACTIONS(2838), - [anon_sym_type] = ACTIONS(2838), - [anon_sym_namespace] = ACTIONS(2838), - [anon_sym_LBRACE] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(2836), - [anon_sym_typeof] = ACTIONS(2838), - [anon_sym_import] = ACTIONS(2838), - [anon_sym_with] = ACTIONS(2838), - [anon_sym_var] = ACTIONS(2838), - [anon_sym_let] = ACTIONS(2838), - [anon_sym_const] = ACTIONS(2838), - [anon_sym_BANG] = ACTIONS(2836), - [anon_sym_else] = ACTIONS(2838), - [anon_sym_if] = ACTIONS(2838), - [anon_sym_switch] = ACTIONS(2838), - [anon_sym_for] = ACTIONS(2838), - [anon_sym_LPAREN] = ACTIONS(2836), - [anon_sym_SEMI] = ACTIONS(2836), - [anon_sym_await] = ACTIONS(2838), - [anon_sym_while] = ACTIONS(2838), - [anon_sym_do] = ACTIONS(2838), - [anon_sym_try] = ACTIONS(2838), - [anon_sym_break] = ACTIONS(2838), - [anon_sym_continue] = ACTIONS(2838), - [anon_sym_debugger] = ACTIONS(2838), - [anon_sym_return] = ACTIONS(2838), - [anon_sym_throw] = ACTIONS(2838), - [anon_sym_case] = ACTIONS(2838), - [anon_sym_yield] = ACTIONS(2838), - [anon_sym_LBRACK] = ACTIONS(2836), - [sym_glimmer_opening_tag] = ACTIONS(2836), - [anon_sym_class] = ACTIONS(2838), - [anon_sym_async] = ACTIONS(2838), - [anon_sym_function] = ACTIONS(2838), - [anon_sym_new] = ACTIONS(2838), - [anon_sym_using] = ACTIONS(2838), - [anon_sym_PLUS] = ACTIONS(2838), - [anon_sym_DASH] = ACTIONS(2838), - [anon_sym_SLASH] = ACTIONS(2838), - [anon_sym_LT] = ACTIONS(2838), - [anon_sym_TILDE] = ACTIONS(2836), - [anon_sym_void] = ACTIONS(2838), - [anon_sym_delete] = ACTIONS(2838), - [anon_sym_PLUS_PLUS] = ACTIONS(2836), - [anon_sym_DASH_DASH] = ACTIONS(2836), - [anon_sym_DQUOTE] = ACTIONS(2836), - [anon_sym_SQUOTE] = ACTIONS(2836), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2836), - [sym_number] = ACTIONS(2836), - [sym_private_property_identifier] = ACTIONS(2836), - [sym_this] = ACTIONS(2838), - [sym_super] = ACTIONS(2838), - [sym_true] = ACTIONS(2838), - [sym_false] = ACTIONS(2838), - [sym_null] = ACTIONS(2838), - [sym_undefined] = ACTIONS(2838), - [anon_sym_AT] = ACTIONS(2836), - [anon_sym_static] = ACTIONS(2838), - [anon_sym_readonly] = ACTIONS(2838), - [anon_sym_get] = ACTIONS(2838), - [anon_sym_set] = ACTIONS(2838), - [anon_sym_declare] = ACTIONS(2838), - [anon_sym_public] = ACTIONS(2838), - [anon_sym_private] = ACTIONS(2838), - [anon_sym_protected] = ACTIONS(2838), - [anon_sym_override] = ACTIONS(2838), - [anon_sym_module] = ACTIONS(2838), - [anon_sym_any] = ACTIONS(2838), - [anon_sym_number] = ACTIONS(2838), - [anon_sym_boolean] = ACTIONS(2838), - [anon_sym_string] = ACTIONS(2838), - [anon_sym_symbol] = ACTIONS(2838), - [anon_sym_object] = ACTIONS(2838), - [anon_sym_abstract] = ACTIONS(2838), - [anon_sym_interface] = ACTIONS(2838), - [anon_sym_enum] = ACTIONS(2838), + [ts_builtin_sym_end] = ACTIONS(2813), + [sym_identifier] = ACTIONS(2815), + [anon_sym_export] = ACTIONS(2815), + [anon_sym_default] = ACTIONS(2815), + [anon_sym_type] = ACTIONS(2815), + [anon_sym_namespace] = ACTIONS(2815), + [anon_sym_LBRACE] = ACTIONS(2813), + [anon_sym_RBRACE] = ACTIONS(2813), + [anon_sym_typeof] = ACTIONS(2815), + [anon_sym_import] = ACTIONS(2815), + [anon_sym_with] = ACTIONS(2815), + [anon_sym_var] = ACTIONS(2815), + [anon_sym_let] = ACTIONS(2815), + [anon_sym_const] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(2813), + [anon_sym_else] = ACTIONS(2815), + [anon_sym_if] = ACTIONS(2815), + [anon_sym_switch] = ACTIONS(2815), + [anon_sym_for] = ACTIONS(2815), + [anon_sym_LPAREN] = ACTIONS(2813), + [anon_sym_SEMI] = ACTIONS(2813), + [anon_sym_await] = ACTIONS(2815), + [anon_sym_while] = ACTIONS(2815), + [anon_sym_do] = ACTIONS(2815), + [anon_sym_try] = ACTIONS(2815), + [anon_sym_break] = ACTIONS(2815), + [anon_sym_continue] = ACTIONS(2815), + [anon_sym_debugger] = ACTIONS(2815), + [anon_sym_return] = ACTIONS(2815), + [anon_sym_throw] = ACTIONS(2815), + [anon_sym_case] = ACTIONS(2815), + [anon_sym_yield] = ACTIONS(2815), + [anon_sym_LBRACK] = ACTIONS(2813), + [anon_sym_class] = ACTIONS(2815), + [anon_sym_async] = ACTIONS(2815), + [anon_sym_function] = ACTIONS(2815), + [anon_sym_new] = ACTIONS(2815), + [anon_sym_using] = ACTIONS(2815), + [anon_sym_PLUS] = ACTIONS(2815), + [anon_sym_DASH] = ACTIONS(2815), + [anon_sym_SLASH] = ACTIONS(2815), + [anon_sym_LT] = ACTIONS(2813), + [anon_sym_TILDE] = ACTIONS(2813), + [anon_sym_void] = ACTIONS(2815), + [anon_sym_delete] = ACTIONS(2815), + [anon_sym_PLUS_PLUS] = ACTIONS(2813), + [anon_sym_DASH_DASH] = ACTIONS(2813), + [anon_sym_DQUOTE] = ACTIONS(2813), + [anon_sym_SQUOTE] = ACTIONS(2813), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2813), + [sym_number] = ACTIONS(2813), + [sym_private_property_identifier] = ACTIONS(2813), + [sym_this] = ACTIONS(2815), + [sym_super] = ACTIONS(2815), + [sym_true] = ACTIONS(2815), + [sym_false] = ACTIONS(2815), + [sym_null] = ACTIONS(2815), + [sym_undefined] = ACTIONS(2815), + [anon_sym_AT] = ACTIONS(2813), + [anon_sym_static] = ACTIONS(2815), + [anon_sym_readonly] = ACTIONS(2815), + [anon_sym_get] = ACTIONS(2815), + [anon_sym_set] = ACTIONS(2815), + [anon_sym_declare] = ACTIONS(2815), + [anon_sym_public] = ACTIONS(2815), + [anon_sym_private] = ACTIONS(2815), + [anon_sym_protected] = ACTIONS(2815), + [anon_sym_override] = ACTIONS(2815), + [anon_sym_module] = ACTIONS(2815), + [anon_sym_any] = ACTIONS(2815), + [anon_sym_number] = ACTIONS(2815), + [anon_sym_boolean] = ACTIONS(2815), + [anon_sym_string] = ACTIONS(2815), + [anon_sym_symbol] = ACTIONS(2815), + [anon_sym_object] = ACTIONS(2815), + [anon_sym_abstract] = ACTIONS(2815), + [anon_sym_interface] = ACTIONS(2815), + [anon_sym_enum] = ACTIONS(2815), [sym_html_comment] = ACTIONS(5), }, [895] = { - [ts_builtin_sym_end] = ACTIONS(2840), - [sym_identifier] = ACTIONS(2842), - [anon_sym_export] = ACTIONS(2842), - [anon_sym_default] = ACTIONS(2842), - [anon_sym_type] = ACTIONS(2842), - [anon_sym_namespace] = ACTIONS(2842), - [anon_sym_LBRACE] = ACTIONS(2840), - [anon_sym_RBRACE] = ACTIONS(2840), - [anon_sym_typeof] = ACTIONS(2842), - [anon_sym_import] = ACTIONS(2842), - [anon_sym_with] = ACTIONS(2842), - [anon_sym_var] = ACTIONS(2842), - [anon_sym_let] = ACTIONS(2842), - [anon_sym_const] = ACTIONS(2842), - [anon_sym_BANG] = ACTIONS(2840), - [anon_sym_else] = ACTIONS(2842), - [anon_sym_if] = ACTIONS(2842), - [anon_sym_switch] = ACTIONS(2842), - [anon_sym_for] = ACTIONS(2842), - [anon_sym_LPAREN] = ACTIONS(2840), - [anon_sym_SEMI] = ACTIONS(2840), - [anon_sym_await] = ACTIONS(2842), - [anon_sym_while] = ACTIONS(2842), - [anon_sym_do] = ACTIONS(2842), - [anon_sym_try] = ACTIONS(2842), - [anon_sym_break] = ACTIONS(2842), - [anon_sym_continue] = ACTIONS(2842), - [anon_sym_debugger] = ACTIONS(2842), - [anon_sym_return] = ACTIONS(2842), - [anon_sym_throw] = ACTIONS(2842), - [anon_sym_case] = ACTIONS(2842), - [anon_sym_yield] = ACTIONS(2842), - [anon_sym_LBRACK] = ACTIONS(2840), - [sym_glimmer_opening_tag] = ACTIONS(2840), - [anon_sym_class] = ACTIONS(2842), - [anon_sym_async] = ACTIONS(2842), - [anon_sym_function] = ACTIONS(2842), - [anon_sym_new] = ACTIONS(2842), - [anon_sym_using] = ACTIONS(2842), - [anon_sym_PLUS] = ACTIONS(2842), - [anon_sym_DASH] = ACTIONS(2842), - [anon_sym_SLASH] = ACTIONS(2842), - [anon_sym_LT] = ACTIONS(2842), - [anon_sym_TILDE] = ACTIONS(2840), - [anon_sym_void] = ACTIONS(2842), - [anon_sym_delete] = ACTIONS(2842), - [anon_sym_PLUS_PLUS] = ACTIONS(2840), - [anon_sym_DASH_DASH] = ACTIONS(2840), - [anon_sym_DQUOTE] = ACTIONS(2840), - [anon_sym_SQUOTE] = ACTIONS(2840), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2840), - [sym_number] = ACTIONS(2840), - [sym_private_property_identifier] = ACTIONS(2840), - [sym_this] = ACTIONS(2842), - [sym_super] = ACTIONS(2842), - [sym_true] = ACTIONS(2842), - [sym_false] = ACTIONS(2842), - [sym_null] = ACTIONS(2842), - [sym_undefined] = ACTIONS(2842), - [anon_sym_AT] = ACTIONS(2840), - [anon_sym_static] = ACTIONS(2842), - [anon_sym_readonly] = ACTIONS(2842), - [anon_sym_get] = ACTIONS(2842), - [anon_sym_set] = ACTIONS(2842), - [anon_sym_declare] = ACTIONS(2842), - [anon_sym_public] = ACTIONS(2842), - [anon_sym_private] = ACTIONS(2842), - [anon_sym_protected] = ACTIONS(2842), - [anon_sym_override] = ACTIONS(2842), - [anon_sym_module] = ACTIONS(2842), - [anon_sym_any] = ACTIONS(2842), - [anon_sym_number] = ACTIONS(2842), - [anon_sym_boolean] = ACTIONS(2842), - [anon_sym_string] = ACTIONS(2842), - [anon_sym_symbol] = ACTIONS(2842), - [anon_sym_object] = ACTIONS(2842), - [anon_sym_abstract] = ACTIONS(2842), - [anon_sym_interface] = ACTIONS(2842), - [anon_sym_enum] = ACTIONS(2842), + [ts_builtin_sym_end] = ACTIONS(2817), + [sym_identifier] = ACTIONS(2819), + [anon_sym_export] = ACTIONS(2819), + [anon_sym_default] = ACTIONS(2819), + [anon_sym_type] = ACTIONS(2819), + [anon_sym_namespace] = ACTIONS(2819), + [anon_sym_LBRACE] = ACTIONS(2817), + [anon_sym_RBRACE] = ACTIONS(2817), + [anon_sym_typeof] = ACTIONS(2819), + [anon_sym_import] = ACTIONS(2819), + [anon_sym_with] = ACTIONS(2819), + [anon_sym_var] = ACTIONS(2819), + [anon_sym_let] = ACTIONS(2819), + [anon_sym_const] = ACTIONS(2819), + [anon_sym_BANG] = ACTIONS(2817), + [anon_sym_else] = ACTIONS(2819), + [anon_sym_if] = ACTIONS(2819), + [anon_sym_switch] = ACTIONS(2819), + [anon_sym_for] = ACTIONS(2819), + [anon_sym_LPAREN] = ACTIONS(2817), + [anon_sym_SEMI] = ACTIONS(2817), + [anon_sym_await] = ACTIONS(2819), + [anon_sym_while] = ACTIONS(2819), + [anon_sym_do] = ACTIONS(2819), + [anon_sym_try] = ACTIONS(2819), + [anon_sym_break] = ACTIONS(2819), + [anon_sym_continue] = ACTIONS(2819), + [anon_sym_debugger] = ACTIONS(2819), + [anon_sym_return] = ACTIONS(2819), + [anon_sym_throw] = ACTIONS(2819), + [anon_sym_case] = ACTIONS(2819), + [anon_sym_yield] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(2817), + [anon_sym_class] = ACTIONS(2819), + [anon_sym_async] = ACTIONS(2819), + [anon_sym_function] = ACTIONS(2819), + [anon_sym_new] = ACTIONS(2819), + [anon_sym_using] = ACTIONS(2819), + [anon_sym_PLUS] = ACTIONS(2819), + [anon_sym_DASH] = ACTIONS(2819), + [anon_sym_SLASH] = ACTIONS(2819), + [anon_sym_LT] = ACTIONS(2817), + [anon_sym_TILDE] = ACTIONS(2817), + [anon_sym_void] = ACTIONS(2819), + [anon_sym_delete] = ACTIONS(2819), + [anon_sym_PLUS_PLUS] = ACTIONS(2817), + [anon_sym_DASH_DASH] = ACTIONS(2817), + [anon_sym_DQUOTE] = ACTIONS(2817), + [anon_sym_SQUOTE] = ACTIONS(2817), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2817), + [sym_number] = ACTIONS(2817), + [sym_private_property_identifier] = ACTIONS(2817), + [sym_this] = ACTIONS(2819), + [sym_super] = ACTIONS(2819), + [sym_true] = ACTIONS(2819), + [sym_false] = ACTIONS(2819), + [sym_null] = ACTIONS(2819), + [sym_undefined] = ACTIONS(2819), + [anon_sym_AT] = ACTIONS(2817), + [anon_sym_static] = ACTIONS(2819), + [anon_sym_readonly] = ACTIONS(2819), + [anon_sym_get] = ACTIONS(2819), + [anon_sym_set] = ACTIONS(2819), + [anon_sym_declare] = ACTIONS(2819), + [anon_sym_public] = ACTIONS(2819), + [anon_sym_private] = ACTIONS(2819), + [anon_sym_protected] = ACTIONS(2819), + [anon_sym_override] = ACTIONS(2819), + [anon_sym_module] = ACTIONS(2819), + [anon_sym_any] = ACTIONS(2819), + [anon_sym_number] = ACTIONS(2819), + [anon_sym_boolean] = ACTIONS(2819), + [anon_sym_string] = ACTIONS(2819), + [anon_sym_symbol] = ACTIONS(2819), + [anon_sym_object] = ACTIONS(2819), + [anon_sym_abstract] = ACTIONS(2819), + [anon_sym_interface] = ACTIONS(2819), + [anon_sym_enum] = ACTIONS(2819), [sym_html_comment] = ACTIONS(5), }, [896] = { - [ts_builtin_sym_end] = ACTIONS(2844), - [sym_identifier] = ACTIONS(2846), - [anon_sym_export] = ACTIONS(2846), - [anon_sym_default] = ACTIONS(2846), - [anon_sym_type] = ACTIONS(2846), - [anon_sym_namespace] = ACTIONS(2846), - [anon_sym_LBRACE] = ACTIONS(2844), - [anon_sym_RBRACE] = ACTIONS(2844), - [anon_sym_typeof] = ACTIONS(2846), - [anon_sym_import] = ACTIONS(2846), - [anon_sym_with] = ACTIONS(2846), - [anon_sym_var] = ACTIONS(2846), - [anon_sym_let] = ACTIONS(2846), - [anon_sym_const] = ACTIONS(2846), - [anon_sym_BANG] = ACTIONS(2844), - [anon_sym_else] = ACTIONS(2846), - [anon_sym_if] = ACTIONS(2846), - [anon_sym_switch] = ACTIONS(2846), - [anon_sym_for] = ACTIONS(2846), - [anon_sym_LPAREN] = ACTIONS(2844), - [anon_sym_SEMI] = ACTIONS(2844), - [anon_sym_await] = ACTIONS(2846), - [anon_sym_while] = ACTIONS(2846), - [anon_sym_do] = ACTIONS(2846), - [anon_sym_try] = ACTIONS(2846), - [anon_sym_break] = ACTIONS(2846), - [anon_sym_continue] = ACTIONS(2846), - [anon_sym_debugger] = ACTIONS(2846), - [anon_sym_return] = ACTIONS(2846), - [anon_sym_throw] = ACTIONS(2846), - [anon_sym_case] = ACTIONS(2846), - [anon_sym_yield] = ACTIONS(2846), - [anon_sym_LBRACK] = ACTIONS(2844), - [sym_glimmer_opening_tag] = ACTIONS(2844), - [anon_sym_class] = ACTIONS(2846), - [anon_sym_async] = ACTIONS(2846), - [anon_sym_function] = ACTIONS(2846), - [anon_sym_new] = ACTIONS(2846), - [anon_sym_using] = ACTIONS(2846), - [anon_sym_PLUS] = ACTIONS(2846), - [anon_sym_DASH] = ACTIONS(2846), - [anon_sym_SLASH] = ACTIONS(2846), - [anon_sym_LT] = ACTIONS(2846), - [anon_sym_TILDE] = ACTIONS(2844), - [anon_sym_void] = ACTIONS(2846), - [anon_sym_delete] = ACTIONS(2846), - [anon_sym_PLUS_PLUS] = ACTIONS(2844), - [anon_sym_DASH_DASH] = ACTIONS(2844), - [anon_sym_DQUOTE] = ACTIONS(2844), - [anon_sym_SQUOTE] = ACTIONS(2844), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2844), - [sym_number] = ACTIONS(2844), - [sym_private_property_identifier] = ACTIONS(2844), - [sym_this] = ACTIONS(2846), - [sym_super] = ACTIONS(2846), - [sym_true] = ACTIONS(2846), - [sym_false] = ACTIONS(2846), - [sym_null] = ACTIONS(2846), - [sym_undefined] = ACTIONS(2846), - [anon_sym_AT] = ACTIONS(2844), - [anon_sym_static] = ACTIONS(2846), - [anon_sym_readonly] = ACTIONS(2846), - [anon_sym_get] = ACTIONS(2846), - [anon_sym_set] = ACTIONS(2846), - [anon_sym_declare] = ACTIONS(2846), - [anon_sym_public] = ACTIONS(2846), - [anon_sym_private] = ACTIONS(2846), - [anon_sym_protected] = ACTIONS(2846), - [anon_sym_override] = ACTIONS(2846), - [anon_sym_module] = ACTIONS(2846), - [anon_sym_any] = ACTIONS(2846), - [anon_sym_number] = ACTIONS(2846), - [anon_sym_boolean] = ACTIONS(2846), - [anon_sym_string] = ACTIONS(2846), - [anon_sym_symbol] = ACTIONS(2846), - [anon_sym_object] = ACTIONS(2846), - [anon_sym_abstract] = ACTIONS(2846), - [anon_sym_interface] = ACTIONS(2846), - [anon_sym_enum] = ACTIONS(2846), + [ts_builtin_sym_end] = ACTIONS(2809), + [sym_identifier] = ACTIONS(2811), + [anon_sym_export] = ACTIONS(2811), + [anon_sym_default] = ACTIONS(2811), + [anon_sym_type] = ACTIONS(2811), + [anon_sym_namespace] = ACTIONS(2811), + [anon_sym_LBRACE] = ACTIONS(2809), + [anon_sym_RBRACE] = ACTIONS(2809), + [anon_sym_typeof] = ACTIONS(2811), + [anon_sym_import] = ACTIONS(2811), + [anon_sym_with] = ACTIONS(2811), + [anon_sym_var] = ACTIONS(2811), + [anon_sym_let] = ACTIONS(2811), + [anon_sym_const] = ACTIONS(2811), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_else] = ACTIONS(2811), + [anon_sym_if] = ACTIONS(2811), + [anon_sym_switch] = ACTIONS(2811), + [anon_sym_for] = ACTIONS(2811), + [anon_sym_LPAREN] = ACTIONS(2809), + [anon_sym_SEMI] = ACTIONS(2809), + [anon_sym_await] = ACTIONS(2811), + [anon_sym_while] = ACTIONS(2811), + [anon_sym_do] = ACTIONS(2811), + [anon_sym_try] = ACTIONS(2811), + [anon_sym_break] = ACTIONS(2811), + [anon_sym_continue] = ACTIONS(2811), + [anon_sym_debugger] = ACTIONS(2811), + [anon_sym_return] = ACTIONS(2811), + [anon_sym_throw] = ACTIONS(2811), + [anon_sym_case] = ACTIONS(2811), + [anon_sym_yield] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2809), + [anon_sym_class] = ACTIONS(2811), + [anon_sym_async] = ACTIONS(2811), + [anon_sym_function] = ACTIONS(2811), + [anon_sym_new] = ACTIONS(2811), + [anon_sym_using] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(2811), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_SLASH] = ACTIONS(2811), + [anon_sym_LT] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_void] = ACTIONS(2811), + [anon_sym_delete] = ACTIONS(2811), + [anon_sym_PLUS_PLUS] = ACTIONS(2809), + [anon_sym_DASH_DASH] = ACTIONS(2809), + [anon_sym_DQUOTE] = ACTIONS(2809), + [anon_sym_SQUOTE] = ACTIONS(2809), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2809), + [sym_number] = ACTIONS(2809), + [sym_private_property_identifier] = ACTIONS(2809), + [sym_this] = ACTIONS(2811), + [sym_super] = ACTIONS(2811), + [sym_true] = ACTIONS(2811), + [sym_false] = ACTIONS(2811), + [sym_null] = ACTIONS(2811), + [sym_undefined] = ACTIONS(2811), + [anon_sym_AT] = ACTIONS(2809), + [anon_sym_static] = ACTIONS(2811), + [anon_sym_readonly] = ACTIONS(2811), + [anon_sym_get] = ACTIONS(2811), + [anon_sym_set] = ACTIONS(2811), + [anon_sym_declare] = ACTIONS(2811), + [anon_sym_public] = ACTIONS(2811), + [anon_sym_private] = ACTIONS(2811), + [anon_sym_protected] = ACTIONS(2811), + [anon_sym_override] = ACTIONS(2811), + [anon_sym_module] = ACTIONS(2811), + [anon_sym_any] = ACTIONS(2811), + [anon_sym_number] = ACTIONS(2811), + [anon_sym_boolean] = ACTIONS(2811), + [anon_sym_string] = ACTIONS(2811), + [anon_sym_symbol] = ACTIONS(2811), + [anon_sym_object] = ACTIONS(2811), + [anon_sym_abstract] = ACTIONS(2811), + [anon_sym_interface] = ACTIONS(2811), + [anon_sym_enum] = ACTIONS(2811), [sym_html_comment] = ACTIONS(5), }, [897] = { - [ts_builtin_sym_end] = ACTIONS(2848), - [sym_identifier] = ACTIONS(2850), - [anon_sym_export] = ACTIONS(2850), - [anon_sym_default] = ACTIONS(2850), - [anon_sym_type] = ACTIONS(2850), - [anon_sym_namespace] = ACTIONS(2850), - [anon_sym_LBRACE] = ACTIONS(2848), - [anon_sym_RBRACE] = ACTIONS(2848), - [anon_sym_typeof] = ACTIONS(2850), - [anon_sym_import] = ACTIONS(2850), - [anon_sym_with] = ACTIONS(2850), - [anon_sym_var] = ACTIONS(2850), - [anon_sym_let] = ACTIONS(2850), - [anon_sym_const] = ACTIONS(2850), - [anon_sym_BANG] = ACTIONS(2848), - [anon_sym_else] = ACTIONS(2850), - [anon_sym_if] = ACTIONS(2850), - [anon_sym_switch] = ACTIONS(2850), - [anon_sym_for] = ACTIONS(2850), - [anon_sym_LPAREN] = ACTIONS(2848), - [anon_sym_SEMI] = ACTIONS(2848), - [anon_sym_await] = ACTIONS(2850), - [anon_sym_while] = ACTIONS(2850), - [anon_sym_do] = ACTIONS(2850), - [anon_sym_try] = ACTIONS(2850), - [anon_sym_break] = ACTIONS(2850), - [anon_sym_continue] = ACTIONS(2850), - [anon_sym_debugger] = ACTIONS(2850), - [anon_sym_return] = ACTIONS(2850), - [anon_sym_throw] = ACTIONS(2850), - [anon_sym_case] = ACTIONS(2850), - [anon_sym_yield] = ACTIONS(2850), - [anon_sym_LBRACK] = ACTIONS(2848), - [sym_glimmer_opening_tag] = ACTIONS(2848), - [anon_sym_class] = ACTIONS(2850), - [anon_sym_async] = ACTIONS(2850), - [anon_sym_function] = ACTIONS(2850), - [anon_sym_new] = ACTIONS(2850), - [anon_sym_using] = ACTIONS(2850), - [anon_sym_PLUS] = ACTIONS(2850), - [anon_sym_DASH] = ACTIONS(2850), - [anon_sym_SLASH] = ACTIONS(2850), - [anon_sym_LT] = ACTIONS(2850), - [anon_sym_TILDE] = ACTIONS(2848), - [anon_sym_void] = ACTIONS(2850), - [anon_sym_delete] = ACTIONS(2850), - [anon_sym_PLUS_PLUS] = ACTIONS(2848), - [anon_sym_DASH_DASH] = ACTIONS(2848), - [anon_sym_DQUOTE] = ACTIONS(2848), - [anon_sym_SQUOTE] = ACTIONS(2848), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2848), - [sym_number] = ACTIONS(2848), - [sym_private_property_identifier] = ACTIONS(2848), - [sym_this] = ACTIONS(2850), - [sym_super] = ACTIONS(2850), - [sym_true] = ACTIONS(2850), - [sym_false] = ACTIONS(2850), - [sym_null] = ACTIONS(2850), - [sym_undefined] = ACTIONS(2850), - [anon_sym_AT] = ACTIONS(2848), - [anon_sym_static] = ACTIONS(2850), - [anon_sym_readonly] = ACTIONS(2850), - [anon_sym_get] = ACTIONS(2850), - [anon_sym_set] = ACTIONS(2850), - [anon_sym_declare] = ACTIONS(2850), - [anon_sym_public] = ACTIONS(2850), - [anon_sym_private] = ACTIONS(2850), - [anon_sym_protected] = ACTIONS(2850), - [anon_sym_override] = ACTIONS(2850), - [anon_sym_module] = ACTIONS(2850), - [anon_sym_any] = ACTIONS(2850), - [anon_sym_number] = ACTIONS(2850), - [anon_sym_boolean] = ACTIONS(2850), - [anon_sym_string] = ACTIONS(2850), - [anon_sym_symbol] = ACTIONS(2850), - [anon_sym_object] = ACTIONS(2850), - [anon_sym_abstract] = ACTIONS(2850), - [anon_sym_interface] = ACTIONS(2850), - [anon_sym_enum] = ACTIONS(2850), + [ts_builtin_sym_end] = ACTIONS(2821), + [sym_identifier] = ACTIONS(2823), + [anon_sym_export] = ACTIONS(2823), + [anon_sym_default] = ACTIONS(2823), + [anon_sym_type] = ACTIONS(2823), + [anon_sym_namespace] = ACTIONS(2823), + [anon_sym_LBRACE] = ACTIONS(2821), + [anon_sym_RBRACE] = ACTIONS(2821), + [anon_sym_typeof] = ACTIONS(2823), + [anon_sym_import] = ACTIONS(2823), + [anon_sym_with] = ACTIONS(2823), + [anon_sym_var] = ACTIONS(2823), + [anon_sym_let] = ACTIONS(2823), + [anon_sym_const] = ACTIONS(2823), + [anon_sym_BANG] = ACTIONS(2821), + [anon_sym_else] = ACTIONS(2823), + [anon_sym_if] = ACTIONS(2823), + [anon_sym_switch] = ACTIONS(2823), + [anon_sym_for] = ACTIONS(2823), + [anon_sym_LPAREN] = ACTIONS(2821), + [anon_sym_SEMI] = ACTIONS(2821), + [anon_sym_await] = ACTIONS(2823), + [anon_sym_while] = ACTIONS(2823), + [anon_sym_do] = ACTIONS(2823), + [anon_sym_try] = ACTIONS(2823), + [anon_sym_break] = ACTIONS(2823), + [anon_sym_continue] = ACTIONS(2823), + [anon_sym_debugger] = ACTIONS(2823), + [anon_sym_return] = ACTIONS(2823), + [anon_sym_throw] = ACTIONS(2823), + [anon_sym_case] = ACTIONS(2823), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_LBRACK] = ACTIONS(2821), + [anon_sym_class] = ACTIONS(2823), + [anon_sym_async] = ACTIONS(2823), + [anon_sym_function] = ACTIONS(2823), + [anon_sym_new] = ACTIONS(2823), + [anon_sym_using] = ACTIONS(2823), + [anon_sym_PLUS] = ACTIONS(2823), + [anon_sym_DASH] = ACTIONS(2823), + [anon_sym_SLASH] = ACTIONS(2823), + [anon_sym_LT] = ACTIONS(2821), + [anon_sym_TILDE] = ACTIONS(2821), + [anon_sym_void] = ACTIONS(2823), + [anon_sym_delete] = ACTIONS(2823), + [anon_sym_PLUS_PLUS] = ACTIONS(2821), + [anon_sym_DASH_DASH] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [anon_sym_SQUOTE] = ACTIONS(2821), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2821), + [sym_number] = ACTIONS(2821), + [sym_private_property_identifier] = ACTIONS(2821), + [sym_this] = ACTIONS(2823), + [sym_super] = ACTIONS(2823), + [sym_true] = ACTIONS(2823), + [sym_false] = ACTIONS(2823), + [sym_null] = ACTIONS(2823), + [sym_undefined] = ACTIONS(2823), + [anon_sym_AT] = ACTIONS(2821), + [anon_sym_static] = ACTIONS(2823), + [anon_sym_readonly] = ACTIONS(2823), + [anon_sym_get] = ACTIONS(2823), + [anon_sym_set] = ACTIONS(2823), + [anon_sym_declare] = ACTIONS(2823), + [anon_sym_public] = ACTIONS(2823), + [anon_sym_private] = ACTIONS(2823), + [anon_sym_protected] = ACTIONS(2823), + [anon_sym_override] = ACTIONS(2823), + [anon_sym_module] = ACTIONS(2823), + [anon_sym_any] = ACTIONS(2823), + [anon_sym_number] = ACTIONS(2823), + [anon_sym_boolean] = ACTIONS(2823), + [anon_sym_string] = ACTIONS(2823), + [anon_sym_symbol] = ACTIONS(2823), + [anon_sym_object] = ACTIONS(2823), + [anon_sym_abstract] = ACTIONS(2823), + [anon_sym_interface] = ACTIONS(2823), + [anon_sym_enum] = ACTIONS(2823), [sym_html_comment] = ACTIONS(5), }, [898] = { - [ts_builtin_sym_end] = ACTIONS(2852), - [sym_identifier] = ACTIONS(2854), - [anon_sym_export] = ACTIONS(2854), - [anon_sym_default] = ACTIONS(2854), - [anon_sym_type] = ACTIONS(2854), - [anon_sym_namespace] = ACTIONS(2854), - [anon_sym_LBRACE] = ACTIONS(2852), - [anon_sym_RBRACE] = ACTIONS(2852), - [anon_sym_typeof] = ACTIONS(2854), - [anon_sym_import] = ACTIONS(2854), - [anon_sym_with] = ACTIONS(2854), - [anon_sym_var] = ACTIONS(2854), - [anon_sym_let] = ACTIONS(2854), - [anon_sym_const] = ACTIONS(2854), - [anon_sym_BANG] = ACTIONS(2852), - [anon_sym_else] = ACTIONS(2854), - [anon_sym_if] = ACTIONS(2854), - [anon_sym_switch] = ACTIONS(2854), - [anon_sym_for] = ACTIONS(2854), - [anon_sym_LPAREN] = ACTIONS(2852), - [anon_sym_SEMI] = ACTIONS(2852), - [anon_sym_await] = ACTIONS(2854), - [anon_sym_while] = ACTIONS(2854), - [anon_sym_do] = ACTIONS(2854), - [anon_sym_try] = ACTIONS(2854), - [anon_sym_break] = ACTIONS(2854), - [anon_sym_continue] = ACTIONS(2854), - [anon_sym_debugger] = ACTIONS(2854), - [anon_sym_return] = ACTIONS(2854), - [anon_sym_throw] = ACTIONS(2854), - [anon_sym_case] = ACTIONS(2854), - [anon_sym_yield] = ACTIONS(2854), - [anon_sym_LBRACK] = ACTIONS(2852), - [sym_glimmer_opening_tag] = ACTIONS(2852), - [anon_sym_class] = ACTIONS(2854), - [anon_sym_async] = ACTIONS(2854), - [anon_sym_function] = ACTIONS(2854), - [anon_sym_new] = ACTIONS(2854), - [anon_sym_using] = ACTIONS(2854), - [anon_sym_PLUS] = ACTIONS(2854), - [anon_sym_DASH] = ACTIONS(2854), - [anon_sym_SLASH] = ACTIONS(2854), - [anon_sym_LT] = ACTIONS(2854), - [anon_sym_TILDE] = ACTIONS(2852), - [anon_sym_void] = ACTIONS(2854), - [anon_sym_delete] = ACTIONS(2854), - [anon_sym_PLUS_PLUS] = ACTIONS(2852), - [anon_sym_DASH_DASH] = ACTIONS(2852), - [anon_sym_DQUOTE] = ACTIONS(2852), - [anon_sym_SQUOTE] = ACTIONS(2852), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2852), - [sym_number] = ACTIONS(2852), - [sym_private_property_identifier] = ACTIONS(2852), - [sym_this] = ACTIONS(2854), - [sym_super] = ACTIONS(2854), - [sym_true] = ACTIONS(2854), - [sym_false] = ACTIONS(2854), - [sym_null] = ACTIONS(2854), - [sym_undefined] = ACTIONS(2854), - [anon_sym_AT] = ACTIONS(2852), - [anon_sym_static] = ACTIONS(2854), - [anon_sym_readonly] = ACTIONS(2854), - [anon_sym_get] = ACTIONS(2854), - [anon_sym_set] = ACTIONS(2854), - [anon_sym_declare] = ACTIONS(2854), - [anon_sym_public] = ACTIONS(2854), - [anon_sym_private] = ACTIONS(2854), - [anon_sym_protected] = ACTIONS(2854), - [anon_sym_override] = ACTIONS(2854), - [anon_sym_module] = ACTIONS(2854), - [anon_sym_any] = ACTIONS(2854), - [anon_sym_number] = ACTIONS(2854), - [anon_sym_boolean] = ACTIONS(2854), - [anon_sym_string] = ACTIONS(2854), - [anon_sym_symbol] = ACTIONS(2854), - [anon_sym_object] = ACTIONS(2854), - [anon_sym_abstract] = ACTIONS(2854), - [anon_sym_interface] = ACTIONS(2854), - [anon_sym_enum] = ACTIONS(2854), + [ts_builtin_sym_end] = ACTIONS(2825), + [sym_identifier] = ACTIONS(2827), + [anon_sym_export] = ACTIONS(2827), + [anon_sym_default] = ACTIONS(2827), + [anon_sym_type] = ACTIONS(2827), + [anon_sym_namespace] = ACTIONS(2827), + [anon_sym_LBRACE] = ACTIONS(2825), + [anon_sym_RBRACE] = ACTIONS(2825), + [anon_sym_typeof] = ACTIONS(2827), + [anon_sym_import] = ACTIONS(2827), + [anon_sym_with] = ACTIONS(2827), + [anon_sym_var] = ACTIONS(2827), + [anon_sym_let] = ACTIONS(2827), + [anon_sym_const] = ACTIONS(2827), + [anon_sym_BANG] = ACTIONS(2825), + [anon_sym_else] = ACTIONS(2827), + [anon_sym_if] = ACTIONS(2827), + [anon_sym_switch] = ACTIONS(2827), + [anon_sym_for] = ACTIONS(2827), + [anon_sym_LPAREN] = ACTIONS(2825), + [anon_sym_SEMI] = ACTIONS(2825), + [anon_sym_await] = ACTIONS(2827), + [anon_sym_while] = ACTIONS(2827), + [anon_sym_do] = ACTIONS(2827), + [anon_sym_try] = ACTIONS(2827), + [anon_sym_break] = ACTIONS(2827), + [anon_sym_continue] = ACTIONS(2827), + [anon_sym_debugger] = ACTIONS(2827), + [anon_sym_return] = ACTIONS(2827), + [anon_sym_throw] = ACTIONS(2827), + [anon_sym_case] = ACTIONS(2827), + [anon_sym_yield] = ACTIONS(2827), + [anon_sym_LBRACK] = ACTIONS(2825), + [anon_sym_class] = ACTIONS(2827), + [anon_sym_async] = ACTIONS(2827), + [anon_sym_function] = ACTIONS(2827), + [anon_sym_new] = ACTIONS(2827), + [anon_sym_using] = ACTIONS(2827), + [anon_sym_PLUS] = ACTIONS(2827), + [anon_sym_DASH] = ACTIONS(2827), + [anon_sym_SLASH] = ACTIONS(2827), + [anon_sym_LT] = ACTIONS(2825), + [anon_sym_TILDE] = ACTIONS(2825), + [anon_sym_void] = ACTIONS(2827), + [anon_sym_delete] = ACTIONS(2827), + [anon_sym_PLUS_PLUS] = ACTIONS(2825), + [anon_sym_DASH_DASH] = ACTIONS(2825), + [anon_sym_DQUOTE] = ACTIONS(2825), + [anon_sym_SQUOTE] = ACTIONS(2825), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2825), + [sym_number] = ACTIONS(2825), + [sym_private_property_identifier] = ACTIONS(2825), + [sym_this] = ACTIONS(2827), + [sym_super] = ACTIONS(2827), + [sym_true] = ACTIONS(2827), + [sym_false] = ACTIONS(2827), + [sym_null] = ACTIONS(2827), + [sym_undefined] = ACTIONS(2827), + [anon_sym_AT] = ACTIONS(2825), + [anon_sym_static] = ACTIONS(2827), + [anon_sym_readonly] = ACTIONS(2827), + [anon_sym_get] = ACTIONS(2827), + [anon_sym_set] = ACTIONS(2827), + [anon_sym_declare] = ACTIONS(2827), + [anon_sym_public] = ACTIONS(2827), + [anon_sym_private] = ACTIONS(2827), + [anon_sym_protected] = ACTIONS(2827), + [anon_sym_override] = ACTIONS(2827), + [anon_sym_module] = ACTIONS(2827), + [anon_sym_any] = ACTIONS(2827), + [anon_sym_number] = ACTIONS(2827), + [anon_sym_boolean] = ACTIONS(2827), + [anon_sym_string] = ACTIONS(2827), + [anon_sym_symbol] = ACTIONS(2827), + [anon_sym_object] = ACTIONS(2827), + [anon_sym_abstract] = ACTIONS(2827), + [anon_sym_interface] = ACTIONS(2827), + [anon_sym_enum] = ACTIONS(2827), [sym_html_comment] = ACTIONS(5), }, [899] = { - [ts_builtin_sym_end] = ACTIONS(1925), - [sym_identifier] = ACTIONS(1927), - [anon_sym_export] = ACTIONS(1927), - [anon_sym_default] = ACTIONS(1927), - [anon_sym_type] = ACTIONS(1927), - [anon_sym_namespace] = ACTIONS(1927), - [anon_sym_LBRACE] = ACTIONS(1925), - [anon_sym_RBRACE] = ACTIONS(1925), - [anon_sym_typeof] = ACTIONS(1927), - [anon_sym_import] = ACTIONS(1927), - [anon_sym_with] = ACTIONS(1927), - [anon_sym_var] = ACTIONS(1927), - [anon_sym_let] = ACTIONS(1927), - [anon_sym_const] = ACTIONS(1927), - [anon_sym_BANG] = ACTIONS(1925), - [anon_sym_else] = ACTIONS(1927), - [anon_sym_if] = ACTIONS(1927), - [anon_sym_switch] = ACTIONS(1927), - [anon_sym_for] = ACTIONS(1927), - [anon_sym_LPAREN] = ACTIONS(1925), - [anon_sym_SEMI] = ACTIONS(1925), - [anon_sym_await] = ACTIONS(1927), - [anon_sym_while] = ACTIONS(1927), - [anon_sym_do] = ACTIONS(1927), - [anon_sym_try] = ACTIONS(1927), - [anon_sym_break] = ACTIONS(1927), - [anon_sym_continue] = ACTIONS(1927), - [anon_sym_debugger] = ACTIONS(1927), - [anon_sym_return] = ACTIONS(1927), - [anon_sym_throw] = ACTIONS(1927), - [anon_sym_case] = ACTIONS(1927), - [anon_sym_yield] = ACTIONS(1927), - [anon_sym_LBRACK] = ACTIONS(1925), - [sym_glimmer_opening_tag] = ACTIONS(1925), - [anon_sym_class] = ACTIONS(1927), - [anon_sym_async] = ACTIONS(1927), - [anon_sym_function] = ACTIONS(1927), - [anon_sym_new] = ACTIONS(1927), - [anon_sym_using] = ACTIONS(1927), - [anon_sym_PLUS] = ACTIONS(1927), - [anon_sym_DASH] = ACTIONS(1927), - [anon_sym_SLASH] = ACTIONS(1927), - [anon_sym_LT] = ACTIONS(1927), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_void] = ACTIONS(1927), - [anon_sym_delete] = ACTIONS(1927), - [anon_sym_PLUS_PLUS] = ACTIONS(1925), - [anon_sym_DASH_DASH] = ACTIONS(1925), - [anon_sym_DQUOTE] = ACTIONS(1925), - [anon_sym_SQUOTE] = ACTIONS(1925), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1925), - [sym_number] = ACTIONS(1925), - [sym_private_property_identifier] = ACTIONS(1925), - [sym_this] = ACTIONS(1927), - [sym_super] = ACTIONS(1927), - [sym_true] = ACTIONS(1927), - [sym_false] = ACTIONS(1927), - [sym_null] = ACTIONS(1927), - [sym_undefined] = ACTIONS(1927), - [anon_sym_AT] = ACTIONS(1925), - [anon_sym_static] = ACTIONS(1927), - [anon_sym_readonly] = ACTIONS(1927), - [anon_sym_get] = ACTIONS(1927), - [anon_sym_set] = ACTIONS(1927), - [anon_sym_declare] = ACTIONS(1927), - [anon_sym_public] = ACTIONS(1927), - [anon_sym_private] = ACTIONS(1927), - [anon_sym_protected] = ACTIONS(1927), - [anon_sym_override] = ACTIONS(1927), - [anon_sym_module] = ACTIONS(1927), - [anon_sym_any] = ACTIONS(1927), - [anon_sym_number] = ACTIONS(1927), - [anon_sym_boolean] = ACTIONS(1927), - [anon_sym_string] = ACTIONS(1927), - [anon_sym_symbol] = ACTIONS(1927), - [anon_sym_object] = ACTIONS(1927), - [anon_sym_abstract] = ACTIONS(1927), - [anon_sym_interface] = ACTIONS(1927), - [anon_sym_enum] = ACTIONS(1927), + [ts_builtin_sym_end] = ACTIONS(2829), + [sym_identifier] = ACTIONS(2831), + [anon_sym_export] = ACTIONS(2831), + [anon_sym_default] = ACTIONS(2831), + [anon_sym_type] = ACTIONS(2831), + [anon_sym_namespace] = ACTIONS(2831), + [anon_sym_LBRACE] = ACTIONS(2829), + [anon_sym_RBRACE] = ACTIONS(2829), + [anon_sym_typeof] = ACTIONS(2831), + [anon_sym_import] = ACTIONS(2831), + [anon_sym_with] = ACTIONS(2831), + [anon_sym_var] = ACTIONS(2831), + [anon_sym_let] = ACTIONS(2831), + [anon_sym_const] = ACTIONS(2831), + [anon_sym_BANG] = ACTIONS(2829), + [anon_sym_else] = ACTIONS(2831), + [anon_sym_if] = ACTIONS(2831), + [anon_sym_switch] = ACTIONS(2831), + [anon_sym_for] = ACTIONS(2831), + [anon_sym_LPAREN] = ACTIONS(2829), + [anon_sym_SEMI] = ACTIONS(2829), + [anon_sym_await] = ACTIONS(2831), + [anon_sym_while] = ACTIONS(2831), + [anon_sym_do] = ACTIONS(2831), + [anon_sym_try] = ACTIONS(2831), + [anon_sym_break] = ACTIONS(2831), + [anon_sym_continue] = ACTIONS(2831), + [anon_sym_debugger] = ACTIONS(2831), + [anon_sym_return] = ACTIONS(2831), + [anon_sym_throw] = ACTIONS(2831), + [anon_sym_case] = ACTIONS(2831), + [anon_sym_yield] = ACTIONS(2831), + [anon_sym_LBRACK] = ACTIONS(2829), + [anon_sym_class] = ACTIONS(2831), + [anon_sym_async] = ACTIONS(2831), + [anon_sym_function] = ACTIONS(2831), + [anon_sym_new] = ACTIONS(2831), + [anon_sym_using] = ACTIONS(2831), + [anon_sym_PLUS] = ACTIONS(2831), + [anon_sym_DASH] = ACTIONS(2831), + [anon_sym_SLASH] = ACTIONS(2831), + [anon_sym_LT] = ACTIONS(2829), + [anon_sym_TILDE] = ACTIONS(2829), + [anon_sym_void] = ACTIONS(2831), + [anon_sym_delete] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2829), + [anon_sym_DASH_DASH] = ACTIONS(2829), + [anon_sym_DQUOTE] = ACTIONS(2829), + [anon_sym_SQUOTE] = ACTIONS(2829), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2829), + [sym_number] = ACTIONS(2829), + [sym_private_property_identifier] = ACTIONS(2829), + [sym_this] = ACTIONS(2831), + [sym_super] = ACTIONS(2831), + [sym_true] = ACTIONS(2831), + [sym_false] = ACTIONS(2831), + [sym_null] = ACTIONS(2831), + [sym_undefined] = ACTIONS(2831), + [anon_sym_AT] = ACTIONS(2829), + [anon_sym_static] = ACTIONS(2831), + [anon_sym_readonly] = ACTIONS(2831), + [anon_sym_get] = ACTIONS(2831), + [anon_sym_set] = ACTIONS(2831), + [anon_sym_declare] = ACTIONS(2831), + [anon_sym_public] = ACTIONS(2831), + [anon_sym_private] = ACTIONS(2831), + [anon_sym_protected] = ACTIONS(2831), + [anon_sym_override] = ACTIONS(2831), + [anon_sym_module] = ACTIONS(2831), + [anon_sym_any] = ACTIONS(2831), + [anon_sym_number] = ACTIONS(2831), + [anon_sym_boolean] = ACTIONS(2831), + [anon_sym_string] = ACTIONS(2831), + [anon_sym_symbol] = ACTIONS(2831), + [anon_sym_object] = ACTIONS(2831), + [anon_sym_abstract] = ACTIONS(2831), + [anon_sym_interface] = ACTIONS(2831), + [anon_sym_enum] = ACTIONS(2831), [sym_html_comment] = ACTIONS(5), }, [900] = { - [ts_builtin_sym_end] = ACTIONS(2856), - [sym_identifier] = ACTIONS(2858), - [anon_sym_export] = ACTIONS(2858), - [anon_sym_default] = ACTIONS(2858), - [anon_sym_type] = ACTIONS(2858), - [anon_sym_namespace] = ACTIONS(2858), - [anon_sym_LBRACE] = ACTIONS(2856), - [anon_sym_RBRACE] = ACTIONS(2856), - [anon_sym_typeof] = ACTIONS(2858), - [anon_sym_import] = ACTIONS(2858), - [anon_sym_with] = ACTIONS(2858), - [anon_sym_var] = ACTIONS(2858), - [anon_sym_let] = ACTIONS(2858), - [anon_sym_const] = ACTIONS(2858), - [anon_sym_BANG] = ACTIONS(2856), - [anon_sym_else] = ACTIONS(2858), - [anon_sym_if] = ACTIONS(2858), - [anon_sym_switch] = ACTIONS(2858), - [anon_sym_for] = ACTIONS(2858), - [anon_sym_LPAREN] = ACTIONS(2856), - [anon_sym_SEMI] = ACTIONS(2856), - [anon_sym_await] = ACTIONS(2858), - [anon_sym_while] = ACTIONS(2858), - [anon_sym_do] = ACTIONS(2858), - [anon_sym_try] = ACTIONS(2858), - [anon_sym_break] = ACTIONS(2858), - [anon_sym_continue] = ACTIONS(2858), - [anon_sym_debugger] = ACTIONS(2858), - [anon_sym_return] = ACTIONS(2858), - [anon_sym_throw] = ACTIONS(2858), - [anon_sym_case] = ACTIONS(2858), - [anon_sym_yield] = ACTIONS(2858), - [anon_sym_LBRACK] = ACTIONS(2856), - [sym_glimmer_opening_tag] = ACTIONS(2856), - [anon_sym_class] = ACTIONS(2858), - [anon_sym_async] = ACTIONS(2858), - [anon_sym_function] = ACTIONS(2858), - [anon_sym_new] = ACTIONS(2858), - [anon_sym_using] = ACTIONS(2858), - [anon_sym_PLUS] = ACTIONS(2858), - [anon_sym_DASH] = ACTIONS(2858), - [anon_sym_SLASH] = ACTIONS(2858), - [anon_sym_LT] = ACTIONS(2858), - [anon_sym_TILDE] = ACTIONS(2856), - [anon_sym_void] = ACTIONS(2858), - [anon_sym_delete] = ACTIONS(2858), - [anon_sym_PLUS_PLUS] = ACTIONS(2856), - [anon_sym_DASH_DASH] = ACTIONS(2856), - [anon_sym_DQUOTE] = ACTIONS(2856), - [anon_sym_SQUOTE] = ACTIONS(2856), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2856), - [sym_number] = ACTIONS(2856), - [sym_private_property_identifier] = ACTIONS(2856), - [sym_this] = ACTIONS(2858), - [sym_super] = ACTIONS(2858), - [sym_true] = ACTIONS(2858), - [sym_false] = ACTIONS(2858), - [sym_null] = ACTIONS(2858), - [sym_undefined] = ACTIONS(2858), - [anon_sym_AT] = ACTIONS(2856), - [anon_sym_static] = ACTIONS(2858), - [anon_sym_readonly] = ACTIONS(2858), - [anon_sym_get] = ACTIONS(2858), - [anon_sym_set] = ACTIONS(2858), - [anon_sym_declare] = ACTIONS(2858), - [anon_sym_public] = ACTIONS(2858), - [anon_sym_private] = ACTIONS(2858), - [anon_sym_protected] = ACTIONS(2858), - [anon_sym_override] = ACTIONS(2858), - [anon_sym_module] = ACTIONS(2858), - [anon_sym_any] = ACTIONS(2858), - [anon_sym_number] = ACTIONS(2858), - [anon_sym_boolean] = ACTIONS(2858), - [anon_sym_string] = ACTIONS(2858), - [anon_sym_symbol] = ACTIONS(2858), - [anon_sym_object] = ACTIONS(2858), - [anon_sym_abstract] = ACTIONS(2858), - [anon_sym_interface] = ACTIONS(2858), - [anon_sym_enum] = ACTIONS(2858), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_rest_pattern] = STATE(5165), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3773), + [sym_tuple_parameter] = STATE(5278), + [sym_optional_tuple_parameter] = STATE(5278), + [sym_optional_type] = STATE(5278), + [sym_rest_type] = STATE(5278), + [sym__tuple_type_member] = STATE(5278), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(2489), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(2833), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2495), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [901] = { - [ts_builtin_sym_end] = ACTIONS(2860), - [sym_identifier] = ACTIONS(2862), - [anon_sym_export] = ACTIONS(2862), - [anon_sym_default] = ACTIONS(2862), - [anon_sym_type] = ACTIONS(2862), - [anon_sym_namespace] = ACTIONS(2862), - [anon_sym_LBRACE] = ACTIONS(2860), - [anon_sym_RBRACE] = ACTIONS(2860), - [anon_sym_typeof] = ACTIONS(2862), - [anon_sym_import] = ACTIONS(2862), - [anon_sym_with] = ACTIONS(2862), - [anon_sym_var] = ACTIONS(2862), - [anon_sym_let] = ACTIONS(2862), - [anon_sym_const] = ACTIONS(2862), - [anon_sym_BANG] = ACTIONS(2860), - [anon_sym_else] = ACTIONS(2862), - [anon_sym_if] = ACTIONS(2862), - [anon_sym_switch] = ACTIONS(2862), - [anon_sym_for] = ACTIONS(2862), - [anon_sym_LPAREN] = ACTIONS(2860), - [anon_sym_SEMI] = ACTIONS(2860), - [anon_sym_await] = ACTIONS(2862), - [anon_sym_while] = ACTIONS(2862), - [anon_sym_do] = ACTIONS(2862), - [anon_sym_try] = ACTIONS(2862), - [anon_sym_break] = ACTIONS(2862), - [anon_sym_continue] = ACTIONS(2862), - [anon_sym_debugger] = ACTIONS(2862), - [anon_sym_return] = ACTIONS(2862), - [anon_sym_throw] = ACTIONS(2862), - [anon_sym_case] = ACTIONS(2862), - [anon_sym_yield] = ACTIONS(2862), - [anon_sym_LBRACK] = ACTIONS(2860), - [sym_glimmer_opening_tag] = ACTIONS(2860), - [anon_sym_class] = ACTIONS(2862), - [anon_sym_async] = ACTIONS(2862), - [anon_sym_function] = ACTIONS(2862), - [anon_sym_new] = ACTIONS(2862), - [anon_sym_using] = ACTIONS(2862), - [anon_sym_PLUS] = ACTIONS(2862), - [anon_sym_DASH] = ACTIONS(2862), - [anon_sym_SLASH] = ACTIONS(2862), - [anon_sym_LT] = ACTIONS(2862), - [anon_sym_TILDE] = ACTIONS(2860), - [anon_sym_void] = ACTIONS(2862), - [anon_sym_delete] = ACTIONS(2862), - [anon_sym_PLUS_PLUS] = ACTIONS(2860), - [anon_sym_DASH_DASH] = ACTIONS(2860), - [anon_sym_DQUOTE] = ACTIONS(2860), - [anon_sym_SQUOTE] = ACTIONS(2860), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2860), - [sym_number] = ACTIONS(2860), - [sym_private_property_identifier] = ACTIONS(2860), - [sym_this] = ACTIONS(2862), - [sym_super] = ACTIONS(2862), - [sym_true] = ACTIONS(2862), - [sym_false] = ACTIONS(2862), - [sym_null] = ACTIONS(2862), - [sym_undefined] = ACTIONS(2862), - [anon_sym_AT] = ACTIONS(2860), - [anon_sym_static] = ACTIONS(2862), - [anon_sym_readonly] = ACTIONS(2862), - [anon_sym_get] = ACTIONS(2862), - [anon_sym_set] = ACTIONS(2862), - [anon_sym_declare] = ACTIONS(2862), - [anon_sym_public] = ACTIONS(2862), - [anon_sym_private] = ACTIONS(2862), - [anon_sym_protected] = ACTIONS(2862), - [anon_sym_override] = ACTIONS(2862), - [anon_sym_module] = ACTIONS(2862), - [anon_sym_any] = ACTIONS(2862), - [anon_sym_number] = ACTIONS(2862), - [anon_sym_boolean] = ACTIONS(2862), - [anon_sym_string] = ACTIONS(2862), - [anon_sym_symbol] = ACTIONS(2862), - [anon_sym_object] = ACTIONS(2862), - [anon_sym_abstract] = ACTIONS(2862), - [anon_sym_interface] = ACTIONS(2862), - [anon_sym_enum] = ACTIONS(2862), + [ts_builtin_sym_end] = ACTIONS(2835), + [sym_identifier] = ACTIONS(2837), + [anon_sym_export] = ACTIONS(2837), + [anon_sym_default] = ACTIONS(2837), + [anon_sym_type] = ACTIONS(2837), + [anon_sym_namespace] = ACTIONS(2837), + [anon_sym_LBRACE] = ACTIONS(2835), + [anon_sym_RBRACE] = ACTIONS(2835), + [anon_sym_typeof] = ACTIONS(2837), + [anon_sym_import] = ACTIONS(2837), + [anon_sym_with] = ACTIONS(2837), + [anon_sym_var] = ACTIONS(2837), + [anon_sym_let] = ACTIONS(2837), + [anon_sym_const] = ACTIONS(2837), + [anon_sym_BANG] = ACTIONS(2835), + [anon_sym_else] = ACTIONS(2837), + [anon_sym_if] = ACTIONS(2837), + [anon_sym_switch] = ACTIONS(2837), + [anon_sym_for] = ACTIONS(2837), + [anon_sym_LPAREN] = ACTIONS(2835), + [anon_sym_SEMI] = ACTIONS(2835), + [anon_sym_await] = ACTIONS(2837), + [anon_sym_while] = ACTIONS(2837), + [anon_sym_do] = ACTIONS(2837), + [anon_sym_try] = ACTIONS(2837), + [anon_sym_break] = ACTIONS(2837), + [anon_sym_continue] = ACTIONS(2837), + [anon_sym_debugger] = ACTIONS(2837), + [anon_sym_return] = ACTIONS(2837), + [anon_sym_throw] = ACTIONS(2837), + [anon_sym_case] = ACTIONS(2837), + [anon_sym_yield] = ACTIONS(2837), + [anon_sym_LBRACK] = ACTIONS(2835), + [anon_sym_class] = ACTIONS(2837), + [anon_sym_async] = ACTIONS(2837), + [anon_sym_function] = ACTIONS(2837), + [anon_sym_new] = ACTIONS(2837), + [anon_sym_using] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_SLASH] = ACTIONS(2837), + [anon_sym_LT] = ACTIONS(2835), + [anon_sym_TILDE] = ACTIONS(2835), + [anon_sym_void] = ACTIONS(2837), + [anon_sym_delete] = ACTIONS(2837), + [anon_sym_PLUS_PLUS] = ACTIONS(2835), + [anon_sym_DASH_DASH] = ACTIONS(2835), + [anon_sym_DQUOTE] = ACTIONS(2835), + [anon_sym_SQUOTE] = ACTIONS(2835), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2835), + [sym_number] = ACTIONS(2835), + [sym_private_property_identifier] = ACTIONS(2835), + [sym_this] = ACTIONS(2837), + [sym_super] = ACTIONS(2837), + [sym_true] = ACTIONS(2837), + [sym_false] = ACTIONS(2837), + [sym_null] = ACTIONS(2837), + [sym_undefined] = ACTIONS(2837), + [anon_sym_AT] = ACTIONS(2835), + [anon_sym_static] = ACTIONS(2837), + [anon_sym_readonly] = ACTIONS(2837), + [anon_sym_get] = ACTIONS(2837), + [anon_sym_set] = ACTIONS(2837), + [anon_sym_declare] = ACTIONS(2837), + [anon_sym_public] = ACTIONS(2837), + [anon_sym_private] = ACTIONS(2837), + [anon_sym_protected] = ACTIONS(2837), + [anon_sym_override] = ACTIONS(2837), + [anon_sym_module] = ACTIONS(2837), + [anon_sym_any] = ACTIONS(2837), + [anon_sym_number] = ACTIONS(2837), + [anon_sym_boolean] = ACTIONS(2837), + [anon_sym_string] = ACTIONS(2837), + [anon_sym_symbol] = ACTIONS(2837), + [anon_sym_object] = ACTIONS(2837), + [anon_sym_abstract] = ACTIONS(2837), + [anon_sym_interface] = ACTIONS(2837), + [anon_sym_enum] = ACTIONS(2837), [sym_html_comment] = ACTIONS(5), }, [902] = { - [ts_builtin_sym_end] = ACTIONS(2860), - [sym_identifier] = ACTIONS(2862), - [anon_sym_export] = ACTIONS(2862), - [anon_sym_default] = ACTIONS(2862), - [anon_sym_type] = ACTIONS(2862), - [anon_sym_namespace] = ACTIONS(2862), - [anon_sym_LBRACE] = ACTIONS(2860), - [anon_sym_RBRACE] = ACTIONS(2860), - [anon_sym_typeof] = ACTIONS(2862), - [anon_sym_import] = ACTIONS(2862), - [anon_sym_with] = ACTIONS(2862), - [anon_sym_var] = ACTIONS(2862), - [anon_sym_let] = ACTIONS(2862), - [anon_sym_const] = ACTIONS(2862), - [anon_sym_BANG] = ACTIONS(2860), - [anon_sym_else] = ACTIONS(2862), - [anon_sym_if] = ACTIONS(2862), - [anon_sym_switch] = ACTIONS(2862), - [anon_sym_for] = ACTIONS(2862), - [anon_sym_LPAREN] = ACTIONS(2860), - [anon_sym_SEMI] = ACTIONS(2860), - [anon_sym_await] = ACTIONS(2862), - [anon_sym_while] = ACTIONS(2862), - [anon_sym_do] = ACTIONS(2862), - [anon_sym_try] = ACTIONS(2862), - [anon_sym_break] = ACTIONS(2862), - [anon_sym_continue] = ACTIONS(2862), - [anon_sym_debugger] = ACTIONS(2862), - [anon_sym_return] = ACTIONS(2862), - [anon_sym_throw] = ACTIONS(2862), - [anon_sym_case] = ACTIONS(2862), - [anon_sym_yield] = ACTIONS(2862), - [anon_sym_LBRACK] = ACTIONS(2860), - [sym_glimmer_opening_tag] = ACTIONS(2860), - [anon_sym_class] = ACTIONS(2862), - [anon_sym_async] = ACTIONS(2862), - [anon_sym_function] = ACTIONS(2862), - [anon_sym_new] = ACTIONS(2862), - [anon_sym_using] = ACTIONS(2862), - [anon_sym_PLUS] = ACTIONS(2862), - [anon_sym_DASH] = ACTIONS(2862), - [anon_sym_SLASH] = ACTIONS(2862), - [anon_sym_LT] = ACTIONS(2862), - [anon_sym_TILDE] = ACTIONS(2860), - [anon_sym_void] = ACTIONS(2862), - [anon_sym_delete] = ACTIONS(2862), - [anon_sym_PLUS_PLUS] = ACTIONS(2860), - [anon_sym_DASH_DASH] = ACTIONS(2860), - [anon_sym_DQUOTE] = ACTIONS(2860), - [anon_sym_SQUOTE] = ACTIONS(2860), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2860), - [sym_number] = ACTIONS(2860), - [sym_private_property_identifier] = ACTIONS(2860), - [sym_this] = ACTIONS(2862), - [sym_super] = ACTIONS(2862), - [sym_true] = ACTIONS(2862), - [sym_false] = ACTIONS(2862), - [sym_null] = ACTIONS(2862), - [sym_undefined] = ACTIONS(2862), - [anon_sym_AT] = ACTIONS(2860), - [anon_sym_static] = ACTIONS(2862), - [anon_sym_readonly] = ACTIONS(2862), - [anon_sym_get] = ACTIONS(2862), - [anon_sym_set] = ACTIONS(2862), - [anon_sym_declare] = ACTIONS(2862), - [anon_sym_public] = ACTIONS(2862), - [anon_sym_private] = ACTIONS(2862), - [anon_sym_protected] = ACTIONS(2862), - [anon_sym_override] = ACTIONS(2862), - [anon_sym_module] = ACTIONS(2862), - [anon_sym_any] = ACTIONS(2862), - [anon_sym_number] = ACTIONS(2862), - [anon_sym_boolean] = ACTIONS(2862), - [anon_sym_string] = ACTIONS(2862), - [anon_sym_symbol] = ACTIONS(2862), - [anon_sym_object] = ACTIONS(2862), - [anon_sym_abstract] = ACTIONS(2862), - [anon_sym_interface] = ACTIONS(2862), - [anon_sym_enum] = ACTIONS(2862), + [ts_builtin_sym_end] = ACTIONS(2839), + [sym_identifier] = ACTIONS(2841), + [anon_sym_export] = ACTIONS(2841), + [anon_sym_default] = ACTIONS(2841), + [anon_sym_type] = ACTIONS(2841), + [anon_sym_namespace] = ACTIONS(2841), + [anon_sym_LBRACE] = ACTIONS(2839), + [anon_sym_RBRACE] = ACTIONS(2839), + [anon_sym_typeof] = ACTIONS(2841), + [anon_sym_import] = ACTIONS(2841), + [anon_sym_with] = ACTIONS(2841), + [anon_sym_var] = ACTIONS(2841), + [anon_sym_let] = ACTIONS(2841), + [anon_sym_const] = ACTIONS(2841), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_else] = ACTIONS(2841), + [anon_sym_if] = ACTIONS(2841), + [anon_sym_switch] = ACTIONS(2841), + [anon_sym_for] = ACTIONS(2841), + [anon_sym_LPAREN] = ACTIONS(2839), + [anon_sym_SEMI] = ACTIONS(2839), + [anon_sym_await] = ACTIONS(2841), + [anon_sym_while] = ACTIONS(2841), + [anon_sym_do] = ACTIONS(2841), + [anon_sym_try] = ACTIONS(2841), + [anon_sym_break] = ACTIONS(2841), + [anon_sym_continue] = ACTIONS(2841), + [anon_sym_debugger] = ACTIONS(2841), + [anon_sym_return] = ACTIONS(2841), + [anon_sym_throw] = ACTIONS(2841), + [anon_sym_case] = ACTIONS(2841), + [anon_sym_yield] = ACTIONS(2841), + [anon_sym_LBRACK] = ACTIONS(2839), + [anon_sym_class] = ACTIONS(2841), + [anon_sym_async] = ACTIONS(2841), + [anon_sym_function] = ACTIONS(2841), + [anon_sym_new] = ACTIONS(2841), + [anon_sym_using] = ACTIONS(2841), + [anon_sym_PLUS] = ACTIONS(2841), + [anon_sym_DASH] = ACTIONS(2841), + [anon_sym_SLASH] = ACTIONS(2841), + [anon_sym_LT] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_void] = ACTIONS(2841), + [anon_sym_delete] = ACTIONS(2841), + [anon_sym_PLUS_PLUS] = ACTIONS(2839), + [anon_sym_DASH_DASH] = ACTIONS(2839), + [anon_sym_DQUOTE] = ACTIONS(2839), + [anon_sym_SQUOTE] = ACTIONS(2839), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2839), + [sym_number] = ACTIONS(2839), + [sym_private_property_identifier] = ACTIONS(2839), + [sym_this] = ACTIONS(2841), + [sym_super] = ACTIONS(2841), + [sym_true] = ACTIONS(2841), + [sym_false] = ACTIONS(2841), + [sym_null] = ACTIONS(2841), + [sym_undefined] = ACTIONS(2841), + [anon_sym_AT] = ACTIONS(2839), + [anon_sym_static] = ACTIONS(2841), + [anon_sym_readonly] = ACTIONS(2841), + [anon_sym_get] = ACTIONS(2841), + [anon_sym_set] = ACTIONS(2841), + [anon_sym_declare] = ACTIONS(2841), + [anon_sym_public] = ACTIONS(2841), + [anon_sym_private] = ACTIONS(2841), + [anon_sym_protected] = ACTIONS(2841), + [anon_sym_override] = ACTIONS(2841), + [anon_sym_module] = ACTIONS(2841), + [anon_sym_any] = ACTIONS(2841), + [anon_sym_number] = ACTIONS(2841), + [anon_sym_boolean] = ACTIONS(2841), + [anon_sym_string] = ACTIONS(2841), + [anon_sym_symbol] = ACTIONS(2841), + [anon_sym_object] = ACTIONS(2841), + [anon_sym_abstract] = ACTIONS(2841), + [anon_sym_interface] = ACTIONS(2841), + [anon_sym_enum] = ACTIONS(2841), [sym_html_comment] = ACTIONS(5), }, [903] = { - [ts_builtin_sym_end] = ACTIONS(2860), - [sym_identifier] = ACTIONS(2862), - [anon_sym_export] = ACTIONS(2862), - [anon_sym_default] = ACTIONS(2862), - [anon_sym_type] = ACTIONS(2862), - [anon_sym_namespace] = ACTIONS(2862), - [anon_sym_LBRACE] = ACTIONS(2860), - [anon_sym_RBRACE] = ACTIONS(2860), - [anon_sym_typeof] = ACTIONS(2862), - [anon_sym_import] = ACTIONS(2862), - [anon_sym_with] = ACTIONS(2862), - [anon_sym_var] = ACTIONS(2862), - [anon_sym_let] = ACTIONS(2862), - [anon_sym_const] = ACTIONS(2862), - [anon_sym_BANG] = ACTIONS(2860), - [anon_sym_else] = ACTIONS(2862), - [anon_sym_if] = ACTIONS(2862), - [anon_sym_switch] = ACTIONS(2862), - [anon_sym_for] = ACTIONS(2862), - [anon_sym_LPAREN] = ACTIONS(2860), - [anon_sym_SEMI] = ACTIONS(2860), - [anon_sym_await] = ACTIONS(2862), - [anon_sym_while] = ACTIONS(2862), - [anon_sym_do] = ACTIONS(2862), - [anon_sym_try] = ACTIONS(2862), - [anon_sym_break] = ACTIONS(2862), - [anon_sym_continue] = ACTIONS(2862), - [anon_sym_debugger] = ACTIONS(2862), - [anon_sym_return] = ACTIONS(2862), - [anon_sym_throw] = ACTIONS(2862), - [anon_sym_case] = ACTIONS(2862), - [anon_sym_yield] = ACTIONS(2862), - [anon_sym_LBRACK] = ACTIONS(2860), - [sym_glimmer_opening_tag] = ACTIONS(2860), - [anon_sym_class] = ACTIONS(2862), - [anon_sym_async] = ACTIONS(2862), - [anon_sym_function] = ACTIONS(2862), - [anon_sym_new] = ACTIONS(2862), - [anon_sym_using] = ACTIONS(2862), - [anon_sym_PLUS] = ACTIONS(2862), - [anon_sym_DASH] = ACTIONS(2862), - [anon_sym_SLASH] = ACTIONS(2862), - [anon_sym_LT] = ACTIONS(2862), - [anon_sym_TILDE] = ACTIONS(2860), - [anon_sym_void] = ACTIONS(2862), - [anon_sym_delete] = ACTIONS(2862), - [anon_sym_PLUS_PLUS] = ACTIONS(2860), - [anon_sym_DASH_DASH] = ACTIONS(2860), - [anon_sym_DQUOTE] = ACTIONS(2860), - [anon_sym_SQUOTE] = ACTIONS(2860), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2860), - [sym_number] = ACTIONS(2860), - [sym_private_property_identifier] = ACTIONS(2860), - [sym_this] = ACTIONS(2862), - [sym_super] = ACTIONS(2862), - [sym_true] = ACTIONS(2862), - [sym_false] = ACTIONS(2862), - [sym_null] = ACTIONS(2862), - [sym_undefined] = ACTIONS(2862), - [anon_sym_AT] = ACTIONS(2860), - [anon_sym_static] = ACTIONS(2862), - [anon_sym_readonly] = ACTIONS(2862), - [anon_sym_get] = ACTIONS(2862), - [anon_sym_set] = ACTIONS(2862), - [anon_sym_declare] = ACTIONS(2862), - [anon_sym_public] = ACTIONS(2862), - [anon_sym_private] = ACTIONS(2862), - [anon_sym_protected] = ACTIONS(2862), - [anon_sym_override] = ACTIONS(2862), - [anon_sym_module] = ACTIONS(2862), - [anon_sym_any] = ACTIONS(2862), - [anon_sym_number] = ACTIONS(2862), - [anon_sym_boolean] = ACTIONS(2862), - [anon_sym_string] = ACTIONS(2862), - [anon_sym_symbol] = ACTIONS(2862), - [anon_sym_object] = ACTIONS(2862), - [anon_sym_abstract] = ACTIONS(2862), - [anon_sym_interface] = ACTIONS(2862), - [anon_sym_enum] = ACTIONS(2862), + [ts_builtin_sym_end] = ACTIONS(2839), + [sym_identifier] = ACTIONS(2841), + [anon_sym_export] = ACTIONS(2841), + [anon_sym_default] = ACTIONS(2841), + [anon_sym_type] = ACTIONS(2841), + [anon_sym_namespace] = ACTIONS(2841), + [anon_sym_LBRACE] = ACTIONS(2839), + [anon_sym_RBRACE] = ACTIONS(2839), + [anon_sym_typeof] = ACTIONS(2841), + [anon_sym_import] = ACTIONS(2841), + [anon_sym_with] = ACTIONS(2841), + [anon_sym_var] = ACTIONS(2841), + [anon_sym_let] = ACTIONS(2841), + [anon_sym_const] = ACTIONS(2841), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_else] = ACTIONS(2841), + [anon_sym_if] = ACTIONS(2841), + [anon_sym_switch] = ACTIONS(2841), + [anon_sym_for] = ACTIONS(2841), + [anon_sym_LPAREN] = ACTIONS(2839), + [anon_sym_SEMI] = ACTIONS(2839), + [anon_sym_await] = ACTIONS(2841), + [anon_sym_while] = ACTIONS(2841), + [anon_sym_do] = ACTIONS(2841), + [anon_sym_try] = ACTIONS(2841), + [anon_sym_break] = ACTIONS(2841), + [anon_sym_continue] = ACTIONS(2841), + [anon_sym_debugger] = ACTIONS(2841), + [anon_sym_return] = ACTIONS(2841), + [anon_sym_throw] = ACTIONS(2841), + [anon_sym_case] = ACTIONS(2841), + [anon_sym_yield] = ACTIONS(2841), + [anon_sym_LBRACK] = ACTIONS(2839), + [anon_sym_class] = ACTIONS(2841), + [anon_sym_async] = ACTIONS(2841), + [anon_sym_function] = ACTIONS(2841), + [anon_sym_new] = ACTIONS(2841), + [anon_sym_using] = ACTIONS(2841), + [anon_sym_PLUS] = ACTIONS(2841), + [anon_sym_DASH] = ACTIONS(2841), + [anon_sym_SLASH] = ACTIONS(2841), + [anon_sym_LT] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_void] = ACTIONS(2841), + [anon_sym_delete] = ACTIONS(2841), + [anon_sym_PLUS_PLUS] = ACTIONS(2839), + [anon_sym_DASH_DASH] = ACTIONS(2839), + [anon_sym_DQUOTE] = ACTIONS(2839), + [anon_sym_SQUOTE] = ACTIONS(2839), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2839), + [sym_number] = ACTIONS(2839), + [sym_private_property_identifier] = ACTIONS(2839), + [sym_this] = ACTIONS(2841), + [sym_super] = ACTIONS(2841), + [sym_true] = ACTIONS(2841), + [sym_false] = ACTIONS(2841), + [sym_null] = ACTIONS(2841), + [sym_undefined] = ACTIONS(2841), + [anon_sym_AT] = ACTIONS(2839), + [anon_sym_static] = ACTIONS(2841), + [anon_sym_readonly] = ACTIONS(2841), + [anon_sym_get] = ACTIONS(2841), + [anon_sym_set] = ACTIONS(2841), + [anon_sym_declare] = ACTIONS(2841), + [anon_sym_public] = ACTIONS(2841), + [anon_sym_private] = ACTIONS(2841), + [anon_sym_protected] = ACTIONS(2841), + [anon_sym_override] = ACTIONS(2841), + [anon_sym_module] = ACTIONS(2841), + [anon_sym_any] = ACTIONS(2841), + [anon_sym_number] = ACTIONS(2841), + [anon_sym_boolean] = ACTIONS(2841), + [anon_sym_string] = ACTIONS(2841), + [anon_sym_symbol] = ACTIONS(2841), + [anon_sym_object] = ACTIONS(2841), + [anon_sym_abstract] = ACTIONS(2841), + [anon_sym_interface] = ACTIONS(2841), + [anon_sym_enum] = ACTIONS(2841), [sym_html_comment] = ACTIONS(5), }, [904] = { - [ts_builtin_sym_end] = ACTIONS(2864), - [sym_identifier] = ACTIONS(2866), - [anon_sym_export] = ACTIONS(2866), - [anon_sym_default] = ACTIONS(2866), - [anon_sym_type] = ACTIONS(2866), - [anon_sym_namespace] = ACTIONS(2866), - [anon_sym_LBRACE] = ACTIONS(2864), - [anon_sym_RBRACE] = ACTIONS(2864), - [anon_sym_typeof] = ACTIONS(2866), - [anon_sym_import] = ACTIONS(2866), - [anon_sym_with] = ACTIONS(2866), - [anon_sym_var] = ACTIONS(2866), - [anon_sym_let] = ACTIONS(2866), - [anon_sym_const] = ACTIONS(2866), - [anon_sym_BANG] = ACTIONS(2864), - [anon_sym_else] = ACTIONS(2866), - [anon_sym_if] = ACTIONS(2866), - [anon_sym_switch] = ACTIONS(2866), - [anon_sym_for] = ACTIONS(2866), - [anon_sym_LPAREN] = ACTIONS(2864), - [anon_sym_SEMI] = ACTIONS(2864), - [anon_sym_await] = ACTIONS(2866), - [anon_sym_while] = ACTIONS(2866), - [anon_sym_do] = ACTIONS(2866), - [anon_sym_try] = ACTIONS(2866), - [anon_sym_break] = ACTIONS(2866), - [anon_sym_continue] = ACTIONS(2866), - [anon_sym_debugger] = ACTIONS(2866), - [anon_sym_return] = ACTIONS(2866), - [anon_sym_throw] = ACTIONS(2866), - [anon_sym_case] = ACTIONS(2866), - [anon_sym_yield] = ACTIONS(2866), - [anon_sym_LBRACK] = ACTIONS(2864), - [sym_glimmer_opening_tag] = ACTIONS(2864), - [anon_sym_class] = ACTIONS(2866), - [anon_sym_async] = ACTIONS(2866), - [anon_sym_function] = ACTIONS(2866), - [anon_sym_new] = ACTIONS(2866), - [anon_sym_using] = ACTIONS(2866), - [anon_sym_PLUS] = ACTIONS(2866), - [anon_sym_DASH] = ACTIONS(2866), - [anon_sym_SLASH] = ACTIONS(2866), - [anon_sym_LT] = ACTIONS(2866), - [anon_sym_TILDE] = ACTIONS(2864), - [anon_sym_void] = ACTIONS(2866), - [anon_sym_delete] = ACTIONS(2866), - [anon_sym_PLUS_PLUS] = ACTIONS(2864), - [anon_sym_DASH_DASH] = ACTIONS(2864), - [anon_sym_DQUOTE] = ACTIONS(2864), - [anon_sym_SQUOTE] = ACTIONS(2864), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2864), - [sym_number] = ACTIONS(2864), - [sym_private_property_identifier] = ACTIONS(2864), - [sym_this] = ACTIONS(2866), - [sym_super] = ACTIONS(2866), - [sym_true] = ACTIONS(2866), - [sym_false] = ACTIONS(2866), - [sym_null] = ACTIONS(2866), - [sym_undefined] = ACTIONS(2866), - [anon_sym_AT] = ACTIONS(2864), - [anon_sym_static] = ACTIONS(2866), - [anon_sym_readonly] = ACTIONS(2866), - [anon_sym_get] = ACTIONS(2866), - [anon_sym_set] = ACTIONS(2866), - [anon_sym_declare] = ACTIONS(2866), - [anon_sym_public] = ACTIONS(2866), - [anon_sym_private] = ACTIONS(2866), - [anon_sym_protected] = ACTIONS(2866), - [anon_sym_override] = ACTIONS(2866), - [anon_sym_module] = ACTIONS(2866), - [anon_sym_any] = ACTIONS(2866), - [anon_sym_number] = ACTIONS(2866), - [anon_sym_boolean] = ACTIONS(2866), - [anon_sym_string] = ACTIONS(2866), - [anon_sym_symbol] = ACTIONS(2866), - [anon_sym_object] = ACTIONS(2866), - [anon_sym_abstract] = ACTIONS(2866), - [anon_sym_interface] = ACTIONS(2866), - [anon_sym_enum] = ACTIONS(2866), + [ts_builtin_sym_end] = ACTIONS(2839), + [sym_identifier] = ACTIONS(2841), + [anon_sym_export] = ACTIONS(2841), + [anon_sym_default] = ACTIONS(2841), + [anon_sym_type] = ACTIONS(2841), + [anon_sym_namespace] = ACTIONS(2841), + [anon_sym_LBRACE] = ACTIONS(2839), + [anon_sym_RBRACE] = ACTIONS(2839), + [anon_sym_typeof] = ACTIONS(2841), + [anon_sym_import] = ACTIONS(2841), + [anon_sym_with] = ACTIONS(2841), + [anon_sym_var] = ACTIONS(2841), + [anon_sym_let] = ACTIONS(2841), + [anon_sym_const] = ACTIONS(2841), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_else] = ACTIONS(2841), + [anon_sym_if] = ACTIONS(2841), + [anon_sym_switch] = ACTIONS(2841), + [anon_sym_for] = ACTIONS(2841), + [anon_sym_LPAREN] = ACTIONS(2839), + [anon_sym_SEMI] = ACTIONS(2839), + [anon_sym_await] = ACTIONS(2841), + [anon_sym_while] = ACTIONS(2841), + [anon_sym_do] = ACTIONS(2841), + [anon_sym_try] = ACTIONS(2841), + [anon_sym_break] = ACTIONS(2841), + [anon_sym_continue] = ACTIONS(2841), + [anon_sym_debugger] = ACTIONS(2841), + [anon_sym_return] = ACTIONS(2841), + [anon_sym_throw] = ACTIONS(2841), + [anon_sym_case] = ACTIONS(2841), + [anon_sym_yield] = ACTIONS(2841), + [anon_sym_LBRACK] = ACTIONS(2839), + [anon_sym_class] = ACTIONS(2841), + [anon_sym_async] = ACTIONS(2841), + [anon_sym_function] = ACTIONS(2841), + [anon_sym_new] = ACTIONS(2841), + [anon_sym_using] = ACTIONS(2841), + [anon_sym_PLUS] = ACTIONS(2841), + [anon_sym_DASH] = ACTIONS(2841), + [anon_sym_SLASH] = ACTIONS(2841), + [anon_sym_LT] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_void] = ACTIONS(2841), + [anon_sym_delete] = ACTIONS(2841), + [anon_sym_PLUS_PLUS] = ACTIONS(2839), + [anon_sym_DASH_DASH] = ACTIONS(2839), + [anon_sym_DQUOTE] = ACTIONS(2839), + [anon_sym_SQUOTE] = ACTIONS(2839), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2839), + [sym_number] = ACTIONS(2839), + [sym_private_property_identifier] = ACTIONS(2839), + [sym_this] = ACTIONS(2841), + [sym_super] = ACTIONS(2841), + [sym_true] = ACTIONS(2841), + [sym_false] = ACTIONS(2841), + [sym_null] = ACTIONS(2841), + [sym_undefined] = ACTIONS(2841), + [anon_sym_AT] = ACTIONS(2839), + [anon_sym_static] = ACTIONS(2841), + [anon_sym_readonly] = ACTIONS(2841), + [anon_sym_get] = ACTIONS(2841), + [anon_sym_set] = ACTIONS(2841), + [anon_sym_declare] = ACTIONS(2841), + [anon_sym_public] = ACTIONS(2841), + [anon_sym_private] = ACTIONS(2841), + [anon_sym_protected] = ACTIONS(2841), + [anon_sym_override] = ACTIONS(2841), + [anon_sym_module] = ACTIONS(2841), + [anon_sym_any] = ACTIONS(2841), + [anon_sym_number] = ACTIONS(2841), + [anon_sym_boolean] = ACTIONS(2841), + [anon_sym_string] = ACTIONS(2841), + [anon_sym_symbol] = ACTIONS(2841), + [anon_sym_object] = ACTIONS(2841), + [anon_sym_abstract] = ACTIONS(2841), + [anon_sym_interface] = ACTIONS(2841), + [anon_sym_enum] = ACTIONS(2841), [sym_html_comment] = ACTIONS(5), }, [905] = { - [ts_builtin_sym_end] = ACTIONS(2868), - [sym_identifier] = ACTIONS(2870), - [anon_sym_export] = ACTIONS(2870), - [anon_sym_default] = ACTIONS(2870), - [anon_sym_type] = ACTIONS(2870), - [anon_sym_namespace] = ACTIONS(2870), - [anon_sym_LBRACE] = ACTIONS(2868), - [anon_sym_RBRACE] = ACTIONS(2868), - [anon_sym_typeof] = ACTIONS(2870), - [anon_sym_import] = ACTIONS(2870), - [anon_sym_with] = ACTIONS(2870), - [anon_sym_var] = ACTIONS(2870), - [anon_sym_let] = ACTIONS(2870), - [anon_sym_const] = ACTIONS(2870), - [anon_sym_BANG] = ACTIONS(2868), - [anon_sym_else] = ACTIONS(2870), - [anon_sym_if] = ACTIONS(2870), - [anon_sym_switch] = ACTIONS(2870), - [anon_sym_for] = ACTIONS(2870), - [anon_sym_LPAREN] = ACTIONS(2868), - [anon_sym_SEMI] = ACTIONS(2868), - [anon_sym_await] = ACTIONS(2870), - [anon_sym_while] = ACTIONS(2870), - [anon_sym_do] = ACTIONS(2870), - [anon_sym_try] = ACTIONS(2870), - [anon_sym_break] = ACTIONS(2870), - [anon_sym_continue] = ACTIONS(2870), - [anon_sym_debugger] = ACTIONS(2870), - [anon_sym_return] = ACTIONS(2870), - [anon_sym_throw] = ACTIONS(2870), - [anon_sym_case] = ACTIONS(2870), - [anon_sym_yield] = ACTIONS(2870), - [anon_sym_LBRACK] = ACTIONS(2868), - [sym_glimmer_opening_tag] = ACTIONS(2868), - [anon_sym_class] = ACTIONS(2870), - [anon_sym_async] = ACTIONS(2870), - [anon_sym_function] = ACTIONS(2870), - [anon_sym_new] = ACTIONS(2870), - [anon_sym_using] = ACTIONS(2870), - [anon_sym_PLUS] = ACTIONS(2870), - [anon_sym_DASH] = ACTIONS(2870), - [anon_sym_SLASH] = ACTIONS(2870), - [anon_sym_LT] = ACTIONS(2870), - [anon_sym_TILDE] = ACTIONS(2868), - [anon_sym_void] = ACTIONS(2870), - [anon_sym_delete] = ACTIONS(2870), - [anon_sym_PLUS_PLUS] = ACTIONS(2868), - [anon_sym_DASH_DASH] = ACTIONS(2868), - [anon_sym_DQUOTE] = ACTIONS(2868), - [anon_sym_SQUOTE] = ACTIONS(2868), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2868), - [sym_number] = ACTIONS(2868), - [sym_private_property_identifier] = ACTIONS(2868), - [sym_this] = ACTIONS(2870), - [sym_super] = ACTIONS(2870), - [sym_true] = ACTIONS(2870), - [sym_false] = ACTIONS(2870), - [sym_null] = ACTIONS(2870), - [sym_undefined] = ACTIONS(2870), - [anon_sym_AT] = ACTIONS(2868), - [anon_sym_static] = ACTIONS(2870), - [anon_sym_readonly] = ACTIONS(2870), - [anon_sym_get] = ACTIONS(2870), - [anon_sym_set] = ACTIONS(2870), - [anon_sym_declare] = ACTIONS(2870), - [anon_sym_public] = ACTIONS(2870), - [anon_sym_private] = ACTIONS(2870), - [anon_sym_protected] = ACTIONS(2870), - [anon_sym_override] = ACTIONS(2870), - [anon_sym_module] = ACTIONS(2870), - [anon_sym_any] = ACTIONS(2870), - [anon_sym_number] = ACTIONS(2870), - [anon_sym_boolean] = ACTIONS(2870), - [anon_sym_string] = ACTIONS(2870), - [anon_sym_symbol] = ACTIONS(2870), - [anon_sym_object] = ACTIONS(2870), - [anon_sym_abstract] = ACTIONS(2870), - [anon_sym_interface] = ACTIONS(2870), - [anon_sym_enum] = ACTIONS(2870), + [ts_builtin_sym_end] = ACTIONS(2843), + [sym_identifier] = ACTIONS(2845), + [anon_sym_export] = ACTIONS(2845), + [anon_sym_default] = ACTIONS(2845), + [anon_sym_type] = ACTIONS(2845), + [anon_sym_namespace] = ACTIONS(2845), + [anon_sym_LBRACE] = ACTIONS(2843), + [anon_sym_RBRACE] = ACTIONS(2843), + [anon_sym_typeof] = ACTIONS(2845), + [anon_sym_import] = ACTIONS(2845), + [anon_sym_with] = ACTIONS(2845), + [anon_sym_var] = ACTIONS(2845), + [anon_sym_let] = ACTIONS(2845), + [anon_sym_const] = ACTIONS(2845), + [anon_sym_BANG] = ACTIONS(2843), + [anon_sym_else] = ACTIONS(2845), + [anon_sym_if] = ACTIONS(2845), + [anon_sym_switch] = ACTIONS(2845), + [anon_sym_for] = ACTIONS(2845), + [anon_sym_LPAREN] = ACTIONS(2843), + [anon_sym_SEMI] = ACTIONS(2843), + [anon_sym_await] = ACTIONS(2845), + [anon_sym_while] = ACTIONS(2845), + [anon_sym_do] = ACTIONS(2845), + [anon_sym_try] = ACTIONS(2845), + [anon_sym_break] = ACTIONS(2845), + [anon_sym_continue] = ACTIONS(2845), + [anon_sym_debugger] = ACTIONS(2845), + [anon_sym_return] = ACTIONS(2845), + [anon_sym_throw] = ACTIONS(2845), + [anon_sym_case] = ACTIONS(2845), + [anon_sym_yield] = ACTIONS(2845), + [anon_sym_LBRACK] = ACTIONS(2843), + [anon_sym_class] = ACTIONS(2845), + [anon_sym_async] = ACTIONS(2845), + [anon_sym_function] = ACTIONS(2845), + [anon_sym_new] = ACTIONS(2845), + [anon_sym_using] = ACTIONS(2845), + [anon_sym_PLUS] = ACTIONS(2845), + [anon_sym_DASH] = ACTIONS(2845), + [anon_sym_SLASH] = ACTIONS(2845), + [anon_sym_LT] = ACTIONS(2843), + [anon_sym_TILDE] = ACTIONS(2843), + [anon_sym_void] = ACTIONS(2845), + [anon_sym_delete] = ACTIONS(2845), + [anon_sym_PLUS_PLUS] = ACTIONS(2843), + [anon_sym_DASH_DASH] = ACTIONS(2843), + [anon_sym_DQUOTE] = ACTIONS(2843), + [anon_sym_SQUOTE] = ACTIONS(2843), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2843), + [sym_number] = ACTIONS(2843), + [sym_private_property_identifier] = ACTIONS(2843), + [sym_this] = ACTIONS(2845), + [sym_super] = ACTIONS(2845), + [sym_true] = ACTIONS(2845), + [sym_false] = ACTIONS(2845), + [sym_null] = ACTIONS(2845), + [sym_undefined] = ACTIONS(2845), + [anon_sym_AT] = ACTIONS(2843), + [anon_sym_static] = ACTIONS(2845), + [anon_sym_readonly] = ACTIONS(2845), + [anon_sym_get] = ACTIONS(2845), + [anon_sym_set] = ACTIONS(2845), + [anon_sym_declare] = ACTIONS(2845), + [anon_sym_public] = ACTIONS(2845), + [anon_sym_private] = ACTIONS(2845), + [anon_sym_protected] = ACTIONS(2845), + [anon_sym_override] = ACTIONS(2845), + [anon_sym_module] = ACTIONS(2845), + [anon_sym_any] = ACTIONS(2845), + [anon_sym_number] = ACTIONS(2845), + [anon_sym_boolean] = ACTIONS(2845), + [anon_sym_string] = ACTIONS(2845), + [anon_sym_symbol] = ACTIONS(2845), + [anon_sym_object] = ACTIONS(2845), + [anon_sym_abstract] = ACTIONS(2845), + [anon_sym_interface] = ACTIONS(2845), + [anon_sym_enum] = ACTIONS(2845), [sym_html_comment] = ACTIONS(5), }, [906] = { - [ts_builtin_sym_end] = ACTIONS(2872), - [sym_identifier] = ACTIONS(2874), - [anon_sym_export] = ACTIONS(2874), - [anon_sym_default] = ACTIONS(2874), - [anon_sym_type] = ACTIONS(2874), - [anon_sym_namespace] = ACTIONS(2874), - [anon_sym_LBRACE] = ACTIONS(2872), - [anon_sym_RBRACE] = ACTIONS(2872), - [anon_sym_typeof] = ACTIONS(2874), - [anon_sym_import] = ACTIONS(2874), - [anon_sym_with] = ACTIONS(2874), - [anon_sym_var] = ACTIONS(2874), - [anon_sym_let] = ACTIONS(2874), - [anon_sym_const] = ACTIONS(2874), - [anon_sym_BANG] = ACTIONS(2872), - [anon_sym_else] = ACTIONS(2874), - [anon_sym_if] = ACTIONS(2874), - [anon_sym_switch] = ACTIONS(2874), - [anon_sym_for] = ACTIONS(2874), - [anon_sym_LPAREN] = ACTIONS(2872), - [anon_sym_SEMI] = ACTIONS(2872), - [anon_sym_await] = ACTIONS(2874), - [anon_sym_while] = ACTIONS(2874), - [anon_sym_do] = ACTIONS(2874), - [anon_sym_try] = ACTIONS(2874), - [anon_sym_break] = ACTIONS(2874), - [anon_sym_continue] = ACTIONS(2874), - [anon_sym_debugger] = ACTIONS(2874), - [anon_sym_return] = ACTIONS(2874), - [anon_sym_throw] = ACTIONS(2874), - [anon_sym_case] = ACTIONS(2874), - [anon_sym_yield] = ACTIONS(2874), - [anon_sym_LBRACK] = ACTIONS(2872), - [sym_glimmer_opening_tag] = ACTIONS(2872), - [anon_sym_class] = ACTIONS(2874), - [anon_sym_async] = ACTIONS(2874), - [anon_sym_function] = ACTIONS(2874), - [anon_sym_new] = ACTIONS(2874), - [anon_sym_using] = ACTIONS(2874), - [anon_sym_PLUS] = ACTIONS(2874), - [anon_sym_DASH] = ACTIONS(2874), - [anon_sym_SLASH] = ACTIONS(2874), - [anon_sym_LT] = ACTIONS(2874), - [anon_sym_TILDE] = ACTIONS(2872), - [anon_sym_void] = ACTIONS(2874), - [anon_sym_delete] = ACTIONS(2874), - [anon_sym_PLUS_PLUS] = ACTIONS(2872), - [anon_sym_DASH_DASH] = ACTIONS(2872), - [anon_sym_DQUOTE] = ACTIONS(2872), - [anon_sym_SQUOTE] = ACTIONS(2872), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2872), - [sym_number] = ACTIONS(2872), - [sym_private_property_identifier] = ACTIONS(2872), - [sym_this] = ACTIONS(2874), - [sym_super] = ACTIONS(2874), - [sym_true] = ACTIONS(2874), - [sym_false] = ACTIONS(2874), - [sym_null] = ACTIONS(2874), - [sym_undefined] = ACTIONS(2874), - [anon_sym_AT] = ACTIONS(2872), - [anon_sym_static] = ACTIONS(2874), - [anon_sym_readonly] = ACTIONS(2874), - [anon_sym_get] = ACTIONS(2874), - [anon_sym_set] = ACTIONS(2874), - [anon_sym_declare] = ACTIONS(2874), - [anon_sym_public] = ACTIONS(2874), - [anon_sym_private] = ACTIONS(2874), - [anon_sym_protected] = ACTIONS(2874), - [anon_sym_override] = ACTIONS(2874), - [anon_sym_module] = ACTIONS(2874), - [anon_sym_any] = ACTIONS(2874), - [anon_sym_number] = ACTIONS(2874), - [anon_sym_boolean] = ACTIONS(2874), - [anon_sym_string] = ACTIONS(2874), - [anon_sym_symbol] = ACTIONS(2874), - [anon_sym_object] = ACTIONS(2874), - [anon_sym_abstract] = ACTIONS(2874), - [anon_sym_interface] = ACTIONS(2874), - [anon_sym_enum] = ACTIONS(2874), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_rest_pattern] = STATE(5165), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3773), + [sym_tuple_parameter] = STATE(5278), + [sym_optional_tuple_parameter] = STATE(5278), + [sym_optional_type] = STATE(5278), + [sym_rest_type] = STATE(5278), + [sym__tuple_type_member] = STATE(5278), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(2489), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(2847), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2495), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [907] = { - [ts_builtin_sym_end] = ACTIONS(2876), - [sym_identifier] = ACTIONS(2878), - [anon_sym_export] = ACTIONS(2878), - [anon_sym_default] = ACTIONS(2878), - [anon_sym_type] = ACTIONS(2878), - [anon_sym_namespace] = ACTIONS(2878), - [anon_sym_LBRACE] = ACTIONS(2876), - [anon_sym_RBRACE] = ACTIONS(2876), - [anon_sym_typeof] = ACTIONS(2878), - [anon_sym_import] = ACTIONS(2878), - [anon_sym_with] = ACTIONS(2878), - [anon_sym_var] = ACTIONS(2878), - [anon_sym_let] = ACTIONS(2878), - [anon_sym_const] = ACTIONS(2878), - [anon_sym_BANG] = ACTIONS(2876), - [anon_sym_else] = ACTIONS(2878), - [anon_sym_if] = ACTIONS(2878), - [anon_sym_switch] = ACTIONS(2878), - [anon_sym_for] = ACTIONS(2878), - [anon_sym_LPAREN] = ACTIONS(2876), - [anon_sym_SEMI] = ACTIONS(2876), - [anon_sym_await] = ACTIONS(2878), - [anon_sym_while] = ACTIONS(2878), - [anon_sym_do] = ACTIONS(2878), - [anon_sym_try] = ACTIONS(2878), - [anon_sym_break] = ACTIONS(2878), - [anon_sym_continue] = ACTIONS(2878), - [anon_sym_debugger] = ACTIONS(2878), - [anon_sym_return] = ACTIONS(2878), - [anon_sym_throw] = ACTIONS(2878), - [anon_sym_case] = ACTIONS(2878), - [anon_sym_yield] = ACTIONS(2878), - [anon_sym_LBRACK] = ACTIONS(2876), - [sym_glimmer_opening_tag] = ACTIONS(2876), - [anon_sym_class] = ACTIONS(2878), - [anon_sym_async] = ACTIONS(2878), - [anon_sym_function] = ACTIONS(2878), - [anon_sym_new] = ACTIONS(2878), - [anon_sym_using] = ACTIONS(2878), - [anon_sym_PLUS] = ACTIONS(2878), - [anon_sym_DASH] = ACTIONS(2878), - [anon_sym_SLASH] = ACTIONS(2878), - [anon_sym_LT] = ACTIONS(2878), - [anon_sym_TILDE] = ACTIONS(2876), - [anon_sym_void] = ACTIONS(2878), - [anon_sym_delete] = ACTIONS(2878), - [anon_sym_PLUS_PLUS] = ACTIONS(2876), - [anon_sym_DASH_DASH] = ACTIONS(2876), - [anon_sym_DQUOTE] = ACTIONS(2876), - [anon_sym_SQUOTE] = ACTIONS(2876), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2876), - [sym_number] = ACTIONS(2876), - [sym_private_property_identifier] = ACTIONS(2876), - [sym_this] = ACTIONS(2878), - [sym_super] = ACTIONS(2878), - [sym_true] = ACTIONS(2878), - [sym_false] = ACTIONS(2878), - [sym_null] = ACTIONS(2878), - [sym_undefined] = ACTIONS(2878), - [anon_sym_AT] = ACTIONS(2876), - [anon_sym_static] = ACTIONS(2878), - [anon_sym_readonly] = ACTIONS(2878), - [anon_sym_get] = ACTIONS(2878), - [anon_sym_set] = ACTIONS(2878), - [anon_sym_declare] = ACTIONS(2878), - [anon_sym_public] = ACTIONS(2878), - [anon_sym_private] = ACTIONS(2878), - [anon_sym_protected] = ACTIONS(2878), - [anon_sym_override] = ACTIONS(2878), - [anon_sym_module] = ACTIONS(2878), - [anon_sym_any] = ACTIONS(2878), - [anon_sym_number] = ACTIONS(2878), - [anon_sym_boolean] = ACTIONS(2878), - [anon_sym_string] = ACTIONS(2878), - [anon_sym_symbol] = ACTIONS(2878), - [anon_sym_object] = ACTIONS(2878), - [anon_sym_abstract] = ACTIONS(2878), - [anon_sym_interface] = ACTIONS(2878), - [anon_sym_enum] = ACTIONS(2878), + [ts_builtin_sym_end] = ACTIONS(2849), + [sym_identifier] = ACTIONS(2851), + [anon_sym_export] = ACTIONS(2851), + [anon_sym_default] = ACTIONS(2851), + [anon_sym_type] = ACTIONS(2851), + [anon_sym_namespace] = ACTIONS(2851), + [anon_sym_LBRACE] = ACTIONS(2849), + [anon_sym_RBRACE] = ACTIONS(2849), + [anon_sym_typeof] = ACTIONS(2851), + [anon_sym_import] = ACTIONS(2851), + [anon_sym_with] = ACTIONS(2851), + [anon_sym_var] = ACTIONS(2851), + [anon_sym_let] = ACTIONS(2851), + [anon_sym_const] = ACTIONS(2851), + [anon_sym_BANG] = ACTIONS(2849), + [anon_sym_else] = ACTIONS(2851), + [anon_sym_if] = ACTIONS(2851), + [anon_sym_switch] = ACTIONS(2851), + [anon_sym_for] = ACTIONS(2851), + [anon_sym_LPAREN] = ACTIONS(2849), + [anon_sym_SEMI] = ACTIONS(2849), + [anon_sym_await] = ACTIONS(2851), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_do] = ACTIONS(2851), + [anon_sym_try] = ACTIONS(2851), + [anon_sym_break] = ACTIONS(2851), + [anon_sym_continue] = ACTIONS(2851), + [anon_sym_debugger] = ACTIONS(2851), + [anon_sym_return] = ACTIONS(2851), + [anon_sym_throw] = ACTIONS(2851), + [anon_sym_case] = ACTIONS(2851), + [anon_sym_yield] = ACTIONS(2851), + [anon_sym_LBRACK] = ACTIONS(2849), + [anon_sym_class] = ACTIONS(2851), + [anon_sym_async] = ACTIONS(2851), + [anon_sym_function] = ACTIONS(2851), + [anon_sym_new] = ACTIONS(2851), + [anon_sym_using] = ACTIONS(2851), + [anon_sym_PLUS] = ACTIONS(2851), + [anon_sym_DASH] = ACTIONS(2851), + [anon_sym_SLASH] = ACTIONS(2851), + [anon_sym_LT] = ACTIONS(2849), + [anon_sym_TILDE] = ACTIONS(2849), + [anon_sym_void] = ACTIONS(2851), + [anon_sym_delete] = ACTIONS(2851), + [anon_sym_PLUS_PLUS] = ACTIONS(2849), + [anon_sym_DASH_DASH] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2849), + [anon_sym_SQUOTE] = ACTIONS(2849), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2849), + [sym_number] = ACTIONS(2849), + [sym_private_property_identifier] = ACTIONS(2849), + [sym_this] = ACTIONS(2851), + [sym_super] = ACTIONS(2851), + [sym_true] = ACTIONS(2851), + [sym_false] = ACTIONS(2851), + [sym_null] = ACTIONS(2851), + [sym_undefined] = ACTIONS(2851), + [anon_sym_AT] = ACTIONS(2849), + [anon_sym_static] = ACTIONS(2851), + [anon_sym_readonly] = ACTIONS(2851), + [anon_sym_get] = ACTIONS(2851), + [anon_sym_set] = ACTIONS(2851), + [anon_sym_declare] = ACTIONS(2851), + [anon_sym_public] = ACTIONS(2851), + [anon_sym_private] = ACTIONS(2851), + [anon_sym_protected] = ACTIONS(2851), + [anon_sym_override] = ACTIONS(2851), + [anon_sym_module] = ACTIONS(2851), + [anon_sym_any] = ACTIONS(2851), + [anon_sym_number] = ACTIONS(2851), + [anon_sym_boolean] = ACTIONS(2851), + [anon_sym_string] = ACTIONS(2851), + [anon_sym_symbol] = ACTIONS(2851), + [anon_sym_object] = ACTIONS(2851), + [anon_sym_abstract] = ACTIONS(2851), + [anon_sym_interface] = ACTIONS(2851), + [anon_sym_enum] = ACTIONS(2851), [sym_html_comment] = ACTIONS(5), }, [908] = { - [ts_builtin_sym_end] = ACTIONS(2880), - [sym_identifier] = ACTIONS(2882), - [anon_sym_export] = ACTIONS(2882), - [anon_sym_default] = ACTIONS(2882), - [anon_sym_type] = ACTIONS(2882), - [anon_sym_namespace] = ACTIONS(2882), - [anon_sym_LBRACE] = ACTIONS(2880), - [anon_sym_RBRACE] = ACTIONS(2880), - [anon_sym_typeof] = ACTIONS(2882), - [anon_sym_import] = ACTIONS(2882), - [anon_sym_with] = ACTIONS(2882), - [anon_sym_var] = ACTIONS(2882), - [anon_sym_let] = ACTIONS(2882), - [anon_sym_const] = ACTIONS(2882), - [anon_sym_BANG] = ACTIONS(2880), - [anon_sym_else] = ACTIONS(2882), - [anon_sym_if] = ACTIONS(2882), - [anon_sym_switch] = ACTIONS(2882), - [anon_sym_for] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2880), - [anon_sym_SEMI] = ACTIONS(2880), - [anon_sym_await] = ACTIONS(2882), - [anon_sym_while] = ACTIONS(2882), - [anon_sym_do] = ACTIONS(2882), - [anon_sym_try] = ACTIONS(2882), - [anon_sym_break] = ACTIONS(2882), - [anon_sym_continue] = ACTIONS(2882), - [anon_sym_debugger] = ACTIONS(2882), - [anon_sym_return] = ACTIONS(2882), - [anon_sym_throw] = ACTIONS(2882), - [anon_sym_case] = ACTIONS(2882), - [anon_sym_yield] = ACTIONS(2882), - [anon_sym_LBRACK] = ACTIONS(2880), - [sym_glimmer_opening_tag] = ACTIONS(2880), - [anon_sym_class] = ACTIONS(2882), - [anon_sym_async] = ACTIONS(2882), - [anon_sym_function] = ACTIONS(2882), - [anon_sym_new] = ACTIONS(2882), - [anon_sym_using] = ACTIONS(2882), - [anon_sym_PLUS] = ACTIONS(2882), - [anon_sym_DASH] = ACTIONS(2882), - [anon_sym_SLASH] = ACTIONS(2882), - [anon_sym_LT] = ACTIONS(2882), - [anon_sym_TILDE] = ACTIONS(2880), - [anon_sym_void] = ACTIONS(2882), - [anon_sym_delete] = ACTIONS(2882), - [anon_sym_PLUS_PLUS] = ACTIONS(2880), - [anon_sym_DASH_DASH] = ACTIONS(2880), - [anon_sym_DQUOTE] = ACTIONS(2880), - [anon_sym_SQUOTE] = ACTIONS(2880), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2880), - [sym_number] = ACTIONS(2880), - [sym_private_property_identifier] = ACTIONS(2880), - [sym_this] = ACTIONS(2882), - [sym_super] = ACTIONS(2882), - [sym_true] = ACTIONS(2882), - [sym_false] = ACTIONS(2882), - [sym_null] = ACTIONS(2882), - [sym_undefined] = ACTIONS(2882), - [anon_sym_AT] = ACTIONS(2880), - [anon_sym_static] = ACTIONS(2882), - [anon_sym_readonly] = ACTIONS(2882), - [anon_sym_get] = ACTIONS(2882), - [anon_sym_set] = ACTIONS(2882), - [anon_sym_declare] = ACTIONS(2882), - [anon_sym_public] = ACTIONS(2882), - [anon_sym_private] = ACTIONS(2882), - [anon_sym_protected] = ACTIONS(2882), - [anon_sym_override] = ACTIONS(2882), - [anon_sym_module] = ACTIONS(2882), - [anon_sym_any] = ACTIONS(2882), - [anon_sym_number] = ACTIONS(2882), - [anon_sym_boolean] = ACTIONS(2882), - [anon_sym_string] = ACTIONS(2882), - [anon_sym_symbol] = ACTIONS(2882), - [anon_sym_object] = ACTIONS(2882), - [anon_sym_abstract] = ACTIONS(2882), - [anon_sym_interface] = ACTIONS(2882), - [anon_sym_enum] = ACTIONS(2882), + [ts_builtin_sym_end] = ACTIONS(2853), + [sym_identifier] = ACTIONS(2855), + [anon_sym_export] = ACTIONS(2855), + [anon_sym_default] = ACTIONS(2855), + [anon_sym_type] = ACTIONS(2855), + [anon_sym_namespace] = ACTIONS(2855), + [anon_sym_LBRACE] = ACTIONS(2853), + [anon_sym_RBRACE] = ACTIONS(2853), + [anon_sym_typeof] = ACTIONS(2855), + [anon_sym_import] = ACTIONS(2855), + [anon_sym_with] = ACTIONS(2855), + [anon_sym_var] = ACTIONS(2855), + [anon_sym_let] = ACTIONS(2855), + [anon_sym_const] = ACTIONS(2855), + [anon_sym_BANG] = ACTIONS(2853), + [anon_sym_else] = ACTIONS(2855), + [anon_sym_if] = ACTIONS(2855), + [anon_sym_switch] = ACTIONS(2855), + [anon_sym_for] = ACTIONS(2855), + [anon_sym_LPAREN] = ACTIONS(2853), + [anon_sym_SEMI] = ACTIONS(2853), + [anon_sym_await] = ACTIONS(2855), + [anon_sym_while] = ACTIONS(2855), + [anon_sym_do] = ACTIONS(2855), + [anon_sym_try] = ACTIONS(2855), + [anon_sym_break] = ACTIONS(2855), + [anon_sym_continue] = ACTIONS(2855), + [anon_sym_debugger] = ACTIONS(2855), + [anon_sym_return] = ACTIONS(2855), + [anon_sym_throw] = ACTIONS(2855), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_yield] = ACTIONS(2855), + [anon_sym_LBRACK] = ACTIONS(2853), + [anon_sym_class] = ACTIONS(2855), + [anon_sym_async] = ACTIONS(2855), + [anon_sym_function] = ACTIONS(2855), + [anon_sym_new] = ACTIONS(2855), + [anon_sym_using] = ACTIONS(2855), + [anon_sym_PLUS] = ACTIONS(2855), + [anon_sym_DASH] = ACTIONS(2855), + [anon_sym_SLASH] = ACTIONS(2855), + [anon_sym_LT] = ACTIONS(2853), + [anon_sym_TILDE] = ACTIONS(2853), + [anon_sym_void] = ACTIONS(2855), + [anon_sym_delete] = ACTIONS(2855), + [anon_sym_PLUS_PLUS] = ACTIONS(2853), + [anon_sym_DASH_DASH] = ACTIONS(2853), + [anon_sym_DQUOTE] = ACTIONS(2853), + [anon_sym_SQUOTE] = ACTIONS(2853), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2853), + [sym_number] = ACTIONS(2853), + [sym_private_property_identifier] = ACTIONS(2853), + [sym_this] = ACTIONS(2855), + [sym_super] = ACTIONS(2855), + [sym_true] = ACTIONS(2855), + [sym_false] = ACTIONS(2855), + [sym_null] = ACTIONS(2855), + [sym_undefined] = ACTIONS(2855), + [anon_sym_AT] = ACTIONS(2853), + [anon_sym_static] = ACTIONS(2855), + [anon_sym_readonly] = ACTIONS(2855), + [anon_sym_get] = ACTIONS(2855), + [anon_sym_set] = ACTIONS(2855), + [anon_sym_declare] = ACTIONS(2855), + [anon_sym_public] = ACTIONS(2855), + [anon_sym_private] = ACTIONS(2855), + [anon_sym_protected] = ACTIONS(2855), + [anon_sym_override] = ACTIONS(2855), + [anon_sym_module] = ACTIONS(2855), + [anon_sym_any] = ACTIONS(2855), + [anon_sym_number] = ACTIONS(2855), + [anon_sym_boolean] = ACTIONS(2855), + [anon_sym_string] = ACTIONS(2855), + [anon_sym_symbol] = ACTIONS(2855), + [anon_sym_object] = ACTIONS(2855), + [anon_sym_abstract] = ACTIONS(2855), + [anon_sym_interface] = ACTIONS(2855), + [anon_sym_enum] = ACTIONS(2855), [sym_html_comment] = ACTIONS(5), }, [909] = { - [ts_builtin_sym_end] = ACTIONS(2776), - [sym_identifier] = ACTIONS(2778), - [anon_sym_export] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_type] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_RBRACE] = ACTIONS(2776), - [anon_sym_typeof] = ACTIONS(2778), - [anon_sym_import] = ACTIONS(2778), - [anon_sym_with] = ACTIONS(2778), - [anon_sym_var] = ACTIONS(2778), - [anon_sym_let] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_LPAREN] = ACTIONS(2776), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym_await] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_debugger] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_yield] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2776), - [sym_glimmer_opening_tag] = ACTIONS(2776), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_async] = ACTIONS(2778), - [anon_sym_function] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_SLASH] = ACTIONS(2778), - [anon_sym_LT] = ACTIONS(2778), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_void] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2776), - [sym_number] = ACTIONS(2776), - [sym_private_property_identifier] = ACTIONS(2776), - [sym_this] = ACTIONS(2778), - [sym_super] = ACTIONS(2778), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [sym_null] = ACTIONS(2778), - [sym_undefined] = ACTIONS(2778), - [anon_sym_AT] = ACTIONS(2776), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_readonly] = ACTIONS(2778), - [anon_sym_get] = ACTIONS(2778), - [anon_sym_set] = ACTIONS(2778), - [anon_sym_declare] = ACTIONS(2778), - [anon_sym_public] = ACTIONS(2778), - [anon_sym_private] = ACTIONS(2778), - [anon_sym_protected] = ACTIONS(2778), - [anon_sym_override] = ACTIONS(2778), - [anon_sym_module] = ACTIONS(2778), - [anon_sym_any] = ACTIONS(2778), - [anon_sym_number] = ACTIONS(2778), - [anon_sym_boolean] = ACTIONS(2778), - [anon_sym_string] = ACTIONS(2778), - [anon_sym_symbol] = ACTIONS(2778), - [anon_sym_object] = ACTIONS(2778), - [anon_sym_abstract] = ACTIONS(2778), - [anon_sym_interface] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), + [ts_builtin_sym_end] = ACTIONS(2857), + [sym_identifier] = ACTIONS(2859), + [anon_sym_export] = ACTIONS(2859), + [anon_sym_default] = ACTIONS(2859), + [anon_sym_type] = ACTIONS(2859), + [anon_sym_namespace] = ACTIONS(2859), + [anon_sym_LBRACE] = ACTIONS(2857), + [anon_sym_RBRACE] = ACTIONS(2857), + [anon_sym_typeof] = ACTIONS(2859), + [anon_sym_import] = ACTIONS(2859), + [anon_sym_with] = ACTIONS(2859), + [anon_sym_var] = ACTIONS(2859), + [anon_sym_let] = ACTIONS(2859), + [anon_sym_const] = ACTIONS(2859), + [anon_sym_BANG] = ACTIONS(2857), + [anon_sym_else] = ACTIONS(2859), + [anon_sym_if] = ACTIONS(2859), + [anon_sym_switch] = ACTIONS(2859), + [anon_sym_for] = ACTIONS(2859), + [anon_sym_LPAREN] = ACTIONS(2857), + [anon_sym_SEMI] = ACTIONS(2857), + [anon_sym_await] = ACTIONS(2859), + [anon_sym_while] = ACTIONS(2859), + [anon_sym_do] = ACTIONS(2859), + [anon_sym_try] = ACTIONS(2859), + [anon_sym_break] = ACTIONS(2859), + [anon_sym_continue] = ACTIONS(2859), + [anon_sym_debugger] = ACTIONS(2859), + [anon_sym_return] = ACTIONS(2859), + [anon_sym_throw] = ACTIONS(2859), + [anon_sym_case] = ACTIONS(2859), + [anon_sym_yield] = ACTIONS(2859), + [anon_sym_LBRACK] = ACTIONS(2857), + [anon_sym_class] = ACTIONS(2859), + [anon_sym_async] = ACTIONS(2859), + [anon_sym_function] = ACTIONS(2859), + [anon_sym_new] = ACTIONS(2859), + [anon_sym_using] = ACTIONS(2859), + [anon_sym_PLUS] = ACTIONS(2859), + [anon_sym_DASH] = ACTIONS(2859), + [anon_sym_SLASH] = ACTIONS(2859), + [anon_sym_LT] = ACTIONS(2857), + [anon_sym_TILDE] = ACTIONS(2857), + [anon_sym_void] = ACTIONS(2859), + [anon_sym_delete] = ACTIONS(2859), + [anon_sym_PLUS_PLUS] = ACTIONS(2857), + [anon_sym_DASH_DASH] = ACTIONS(2857), + [anon_sym_DQUOTE] = ACTIONS(2857), + [anon_sym_SQUOTE] = ACTIONS(2857), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2857), + [sym_number] = ACTIONS(2857), + [sym_private_property_identifier] = ACTIONS(2857), + [sym_this] = ACTIONS(2859), + [sym_super] = ACTIONS(2859), + [sym_true] = ACTIONS(2859), + [sym_false] = ACTIONS(2859), + [sym_null] = ACTIONS(2859), + [sym_undefined] = ACTIONS(2859), + [anon_sym_AT] = ACTIONS(2857), + [anon_sym_static] = ACTIONS(2859), + [anon_sym_readonly] = ACTIONS(2859), + [anon_sym_get] = ACTIONS(2859), + [anon_sym_set] = ACTIONS(2859), + [anon_sym_declare] = ACTIONS(2859), + [anon_sym_public] = ACTIONS(2859), + [anon_sym_private] = ACTIONS(2859), + [anon_sym_protected] = ACTIONS(2859), + [anon_sym_override] = ACTIONS(2859), + [anon_sym_module] = ACTIONS(2859), + [anon_sym_any] = ACTIONS(2859), + [anon_sym_number] = ACTIONS(2859), + [anon_sym_boolean] = ACTIONS(2859), + [anon_sym_string] = ACTIONS(2859), + [anon_sym_symbol] = ACTIONS(2859), + [anon_sym_object] = ACTIONS(2859), + [anon_sym_abstract] = ACTIONS(2859), + [anon_sym_interface] = ACTIONS(2859), + [anon_sym_enum] = ACTIONS(2859), [sym_html_comment] = ACTIONS(5), }, [910] = { - [ts_builtin_sym_end] = ACTIONS(2880), - [sym_identifier] = ACTIONS(2882), - [anon_sym_export] = ACTIONS(2882), - [anon_sym_default] = ACTIONS(2882), - [anon_sym_type] = ACTIONS(2882), - [anon_sym_namespace] = ACTIONS(2882), - [anon_sym_LBRACE] = ACTIONS(2880), - [anon_sym_RBRACE] = ACTIONS(2880), - [anon_sym_typeof] = ACTIONS(2882), - [anon_sym_import] = ACTIONS(2882), - [anon_sym_with] = ACTIONS(2882), - [anon_sym_var] = ACTIONS(2882), - [anon_sym_let] = ACTIONS(2882), - [anon_sym_const] = ACTIONS(2882), - [anon_sym_BANG] = ACTIONS(2880), - [anon_sym_else] = ACTIONS(2882), - [anon_sym_if] = ACTIONS(2882), - [anon_sym_switch] = ACTIONS(2882), - [anon_sym_for] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2880), - [anon_sym_SEMI] = ACTIONS(2880), - [anon_sym_await] = ACTIONS(2882), - [anon_sym_while] = ACTIONS(2882), - [anon_sym_do] = ACTIONS(2882), - [anon_sym_try] = ACTIONS(2882), - [anon_sym_break] = ACTIONS(2882), - [anon_sym_continue] = ACTIONS(2882), - [anon_sym_debugger] = ACTIONS(2882), - [anon_sym_return] = ACTIONS(2882), - [anon_sym_throw] = ACTIONS(2882), - [anon_sym_case] = ACTIONS(2882), - [anon_sym_yield] = ACTIONS(2882), - [anon_sym_LBRACK] = ACTIONS(2880), - [sym_glimmer_opening_tag] = ACTIONS(2880), - [anon_sym_class] = ACTIONS(2882), - [anon_sym_async] = ACTIONS(2882), - [anon_sym_function] = ACTIONS(2882), - [anon_sym_new] = ACTIONS(2882), - [anon_sym_using] = ACTIONS(2882), - [anon_sym_PLUS] = ACTIONS(2882), - [anon_sym_DASH] = ACTIONS(2882), - [anon_sym_SLASH] = ACTIONS(2882), - [anon_sym_LT] = ACTIONS(2882), - [anon_sym_TILDE] = ACTIONS(2880), - [anon_sym_void] = ACTIONS(2882), - [anon_sym_delete] = ACTIONS(2882), - [anon_sym_PLUS_PLUS] = ACTIONS(2880), - [anon_sym_DASH_DASH] = ACTIONS(2880), - [anon_sym_DQUOTE] = ACTIONS(2880), - [anon_sym_SQUOTE] = ACTIONS(2880), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2880), - [sym_number] = ACTIONS(2880), - [sym_private_property_identifier] = ACTIONS(2880), - [sym_this] = ACTIONS(2882), - [sym_super] = ACTIONS(2882), - [sym_true] = ACTIONS(2882), - [sym_false] = ACTIONS(2882), - [sym_null] = ACTIONS(2882), - [sym_undefined] = ACTIONS(2882), - [anon_sym_AT] = ACTIONS(2880), - [anon_sym_static] = ACTIONS(2882), - [anon_sym_readonly] = ACTIONS(2882), - [anon_sym_get] = ACTIONS(2882), - [anon_sym_set] = ACTIONS(2882), - [anon_sym_declare] = ACTIONS(2882), - [anon_sym_public] = ACTIONS(2882), - [anon_sym_private] = ACTIONS(2882), - [anon_sym_protected] = ACTIONS(2882), - [anon_sym_override] = ACTIONS(2882), - [anon_sym_module] = ACTIONS(2882), - [anon_sym_any] = ACTIONS(2882), - [anon_sym_number] = ACTIONS(2882), - [anon_sym_boolean] = ACTIONS(2882), - [anon_sym_string] = ACTIONS(2882), - [anon_sym_symbol] = ACTIONS(2882), - [anon_sym_object] = ACTIONS(2882), - [anon_sym_abstract] = ACTIONS(2882), - [anon_sym_interface] = ACTIONS(2882), - [anon_sym_enum] = ACTIONS(2882), + [ts_builtin_sym_end] = ACTIONS(2861), + [sym_identifier] = ACTIONS(2863), + [anon_sym_export] = ACTIONS(2863), + [anon_sym_default] = ACTIONS(2863), + [anon_sym_type] = ACTIONS(2863), + [anon_sym_namespace] = ACTIONS(2863), + [anon_sym_LBRACE] = ACTIONS(2861), + [anon_sym_RBRACE] = ACTIONS(2861), + [anon_sym_typeof] = ACTIONS(2863), + [anon_sym_import] = ACTIONS(2863), + [anon_sym_with] = ACTIONS(2863), + [anon_sym_var] = ACTIONS(2863), + [anon_sym_let] = ACTIONS(2863), + [anon_sym_const] = ACTIONS(2863), + [anon_sym_BANG] = ACTIONS(2861), + [anon_sym_else] = ACTIONS(2863), + [anon_sym_if] = ACTIONS(2863), + [anon_sym_switch] = ACTIONS(2863), + [anon_sym_for] = ACTIONS(2863), + [anon_sym_LPAREN] = ACTIONS(2861), + [anon_sym_SEMI] = ACTIONS(2861), + [anon_sym_await] = ACTIONS(2863), + [anon_sym_while] = ACTIONS(2863), + [anon_sym_do] = ACTIONS(2863), + [anon_sym_try] = ACTIONS(2863), + [anon_sym_break] = ACTIONS(2863), + [anon_sym_continue] = ACTIONS(2863), + [anon_sym_debugger] = ACTIONS(2863), + [anon_sym_return] = ACTIONS(2863), + [anon_sym_throw] = ACTIONS(2863), + [anon_sym_case] = ACTIONS(2863), + [anon_sym_yield] = ACTIONS(2863), + [anon_sym_LBRACK] = ACTIONS(2861), + [anon_sym_class] = ACTIONS(2863), + [anon_sym_async] = ACTIONS(2863), + [anon_sym_function] = ACTIONS(2863), + [anon_sym_new] = ACTIONS(2863), + [anon_sym_using] = ACTIONS(2863), + [anon_sym_PLUS] = ACTIONS(2863), + [anon_sym_DASH] = ACTIONS(2863), + [anon_sym_SLASH] = ACTIONS(2863), + [anon_sym_LT] = ACTIONS(2861), + [anon_sym_TILDE] = ACTIONS(2861), + [anon_sym_void] = ACTIONS(2863), + [anon_sym_delete] = ACTIONS(2863), + [anon_sym_PLUS_PLUS] = ACTIONS(2861), + [anon_sym_DASH_DASH] = ACTIONS(2861), + [anon_sym_DQUOTE] = ACTIONS(2861), + [anon_sym_SQUOTE] = ACTIONS(2861), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2861), + [sym_number] = ACTIONS(2861), + [sym_private_property_identifier] = ACTIONS(2861), + [sym_this] = ACTIONS(2863), + [sym_super] = ACTIONS(2863), + [sym_true] = ACTIONS(2863), + [sym_false] = ACTIONS(2863), + [sym_null] = ACTIONS(2863), + [sym_undefined] = ACTIONS(2863), + [anon_sym_AT] = ACTIONS(2861), + [anon_sym_static] = ACTIONS(2863), + [anon_sym_readonly] = ACTIONS(2863), + [anon_sym_get] = ACTIONS(2863), + [anon_sym_set] = ACTIONS(2863), + [anon_sym_declare] = ACTIONS(2863), + [anon_sym_public] = ACTIONS(2863), + [anon_sym_private] = ACTIONS(2863), + [anon_sym_protected] = ACTIONS(2863), + [anon_sym_override] = ACTIONS(2863), + [anon_sym_module] = ACTIONS(2863), + [anon_sym_any] = ACTIONS(2863), + [anon_sym_number] = ACTIONS(2863), + [anon_sym_boolean] = ACTIONS(2863), + [anon_sym_string] = ACTIONS(2863), + [anon_sym_symbol] = ACTIONS(2863), + [anon_sym_object] = ACTIONS(2863), + [anon_sym_abstract] = ACTIONS(2863), + [anon_sym_interface] = ACTIONS(2863), + [anon_sym_enum] = ACTIONS(2863), [sym_html_comment] = ACTIONS(5), }, [911] = { - [ts_builtin_sym_end] = ACTIONS(2884), - [sym_identifier] = ACTIONS(2886), - [anon_sym_export] = ACTIONS(2886), - [anon_sym_default] = ACTIONS(2886), - [anon_sym_type] = ACTIONS(2886), - [anon_sym_namespace] = ACTIONS(2886), - [anon_sym_LBRACE] = ACTIONS(2884), - [anon_sym_RBRACE] = ACTIONS(2884), - [anon_sym_typeof] = ACTIONS(2886), - [anon_sym_import] = ACTIONS(2886), - [anon_sym_with] = ACTIONS(2886), - [anon_sym_var] = ACTIONS(2886), - [anon_sym_let] = ACTIONS(2886), - [anon_sym_const] = ACTIONS(2886), - [anon_sym_BANG] = ACTIONS(2884), - [anon_sym_else] = ACTIONS(2886), - [anon_sym_if] = ACTIONS(2886), - [anon_sym_switch] = ACTIONS(2886), - [anon_sym_for] = ACTIONS(2886), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_SEMI] = ACTIONS(2884), - [anon_sym_await] = ACTIONS(2886), - [anon_sym_while] = ACTIONS(2886), - [anon_sym_do] = ACTIONS(2886), - [anon_sym_try] = ACTIONS(2886), - [anon_sym_break] = ACTIONS(2886), - [anon_sym_continue] = ACTIONS(2886), - [anon_sym_debugger] = ACTIONS(2886), - [anon_sym_return] = ACTIONS(2886), - [anon_sym_throw] = ACTIONS(2886), - [anon_sym_case] = ACTIONS(2886), - [anon_sym_yield] = ACTIONS(2886), - [anon_sym_LBRACK] = ACTIONS(2884), - [sym_glimmer_opening_tag] = ACTIONS(2884), - [anon_sym_class] = ACTIONS(2886), - [anon_sym_async] = ACTIONS(2886), - [anon_sym_function] = ACTIONS(2886), - [anon_sym_new] = ACTIONS(2886), - [anon_sym_using] = ACTIONS(2886), - [anon_sym_PLUS] = ACTIONS(2886), - [anon_sym_DASH] = ACTIONS(2886), - [anon_sym_SLASH] = ACTIONS(2886), - [anon_sym_LT] = ACTIONS(2886), - [anon_sym_TILDE] = ACTIONS(2884), - [anon_sym_void] = ACTIONS(2886), - [anon_sym_delete] = ACTIONS(2886), - [anon_sym_PLUS_PLUS] = ACTIONS(2884), - [anon_sym_DASH_DASH] = ACTIONS(2884), - [anon_sym_DQUOTE] = ACTIONS(2884), - [anon_sym_SQUOTE] = ACTIONS(2884), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2884), - [sym_number] = ACTIONS(2884), - [sym_private_property_identifier] = ACTIONS(2884), - [sym_this] = ACTIONS(2886), - [sym_super] = ACTIONS(2886), - [sym_true] = ACTIONS(2886), - [sym_false] = ACTIONS(2886), - [sym_null] = ACTIONS(2886), - [sym_undefined] = ACTIONS(2886), - [anon_sym_AT] = ACTIONS(2884), - [anon_sym_static] = ACTIONS(2886), - [anon_sym_readonly] = ACTIONS(2886), - [anon_sym_get] = ACTIONS(2886), - [anon_sym_set] = ACTIONS(2886), - [anon_sym_declare] = ACTIONS(2886), - [anon_sym_public] = ACTIONS(2886), - [anon_sym_private] = ACTIONS(2886), - [anon_sym_protected] = ACTIONS(2886), - [anon_sym_override] = ACTIONS(2886), - [anon_sym_module] = ACTIONS(2886), - [anon_sym_any] = ACTIONS(2886), - [anon_sym_number] = ACTIONS(2886), - [anon_sym_boolean] = ACTIONS(2886), - [anon_sym_string] = ACTIONS(2886), - [anon_sym_symbol] = ACTIONS(2886), - [anon_sym_object] = ACTIONS(2886), - [anon_sym_abstract] = ACTIONS(2886), - [anon_sym_interface] = ACTIONS(2886), - [anon_sym_enum] = ACTIONS(2886), + [ts_builtin_sym_end] = ACTIONS(2865), + [sym_identifier] = ACTIONS(2867), + [anon_sym_export] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_type] = ACTIONS(2867), + [anon_sym_namespace] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2865), + [anon_sym_RBRACE] = ACTIONS(2865), + [anon_sym_typeof] = ACTIONS(2867), + [anon_sym_import] = ACTIONS(2867), + [anon_sym_with] = ACTIONS(2867), + [anon_sym_var] = ACTIONS(2867), + [anon_sym_let] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_BANG] = ACTIONS(2865), + [anon_sym_else] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_LPAREN] = ACTIONS(2865), + [anon_sym_SEMI] = ACTIONS(2865), + [anon_sym_await] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_debugger] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_throw] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_yield] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2865), + [anon_sym_class] = ACTIONS(2867), + [anon_sym_async] = ACTIONS(2867), + [anon_sym_function] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_SLASH] = ACTIONS(2867), + [anon_sym_LT] = ACTIONS(2865), + [anon_sym_TILDE] = ACTIONS(2865), + [anon_sym_void] = ACTIONS(2867), + [anon_sym_delete] = ACTIONS(2867), + [anon_sym_PLUS_PLUS] = ACTIONS(2865), + [anon_sym_DASH_DASH] = ACTIONS(2865), + [anon_sym_DQUOTE] = ACTIONS(2865), + [anon_sym_SQUOTE] = ACTIONS(2865), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2865), + [sym_number] = ACTIONS(2865), + [sym_private_property_identifier] = ACTIONS(2865), + [sym_this] = ACTIONS(2867), + [sym_super] = ACTIONS(2867), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [sym_null] = ACTIONS(2867), + [sym_undefined] = ACTIONS(2867), + [anon_sym_AT] = ACTIONS(2865), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_readonly] = ACTIONS(2867), + [anon_sym_get] = ACTIONS(2867), + [anon_sym_set] = ACTIONS(2867), + [anon_sym_declare] = ACTIONS(2867), + [anon_sym_public] = ACTIONS(2867), + [anon_sym_private] = ACTIONS(2867), + [anon_sym_protected] = ACTIONS(2867), + [anon_sym_override] = ACTIONS(2867), + [anon_sym_module] = ACTIONS(2867), + [anon_sym_any] = ACTIONS(2867), + [anon_sym_number] = ACTIONS(2867), + [anon_sym_boolean] = ACTIONS(2867), + [anon_sym_string] = ACTIONS(2867), + [anon_sym_symbol] = ACTIONS(2867), + [anon_sym_object] = ACTIONS(2867), + [anon_sym_abstract] = ACTIONS(2867), + [anon_sym_interface] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), [sym_html_comment] = ACTIONS(5), }, [912] = { - [ts_builtin_sym_end] = ACTIONS(2888), - [sym_identifier] = ACTIONS(2890), - [anon_sym_export] = ACTIONS(2890), - [anon_sym_default] = ACTIONS(2890), - [anon_sym_type] = ACTIONS(2890), - [anon_sym_namespace] = ACTIONS(2890), - [anon_sym_LBRACE] = ACTIONS(2888), - [anon_sym_RBRACE] = ACTIONS(2888), - [anon_sym_typeof] = ACTIONS(2890), - [anon_sym_import] = ACTIONS(2890), - [anon_sym_with] = ACTIONS(2890), - [anon_sym_var] = ACTIONS(2890), - [anon_sym_let] = ACTIONS(2890), - [anon_sym_const] = ACTIONS(2890), - [anon_sym_BANG] = ACTIONS(2888), - [anon_sym_else] = ACTIONS(2890), - [anon_sym_if] = ACTIONS(2890), - [anon_sym_switch] = ACTIONS(2890), - [anon_sym_for] = ACTIONS(2890), - [anon_sym_LPAREN] = ACTIONS(2888), - [anon_sym_SEMI] = ACTIONS(2888), - [anon_sym_await] = ACTIONS(2890), - [anon_sym_while] = ACTIONS(2890), - [anon_sym_do] = ACTIONS(2890), - [anon_sym_try] = ACTIONS(2890), - [anon_sym_break] = ACTIONS(2890), - [anon_sym_continue] = ACTIONS(2890), - [anon_sym_debugger] = ACTIONS(2890), - [anon_sym_return] = ACTIONS(2890), - [anon_sym_throw] = ACTIONS(2890), - [anon_sym_case] = ACTIONS(2890), - [anon_sym_yield] = ACTIONS(2890), - [anon_sym_LBRACK] = ACTIONS(2888), - [sym_glimmer_opening_tag] = ACTIONS(2888), - [anon_sym_class] = ACTIONS(2890), - [anon_sym_async] = ACTIONS(2890), - [anon_sym_function] = ACTIONS(2890), - [anon_sym_new] = ACTIONS(2890), - [anon_sym_using] = ACTIONS(2890), - [anon_sym_PLUS] = ACTIONS(2890), - [anon_sym_DASH] = ACTIONS(2890), - [anon_sym_SLASH] = ACTIONS(2890), - [anon_sym_LT] = ACTIONS(2890), - [anon_sym_TILDE] = ACTIONS(2888), - [anon_sym_void] = ACTIONS(2890), - [anon_sym_delete] = ACTIONS(2890), - [anon_sym_PLUS_PLUS] = ACTIONS(2888), - [anon_sym_DASH_DASH] = ACTIONS(2888), - [anon_sym_DQUOTE] = ACTIONS(2888), - [anon_sym_SQUOTE] = ACTIONS(2888), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2888), - [sym_number] = ACTIONS(2888), - [sym_private_property_identifier] = ACTIONS(2888), - [sym_this] = ACTIONS(2890), - [sym_super] = ACTIONS(2890), - [sym_true] = ACTIONS(2890), - [sym_false] = ACTIONS(2890), - [sym_null] = ACTIONS(2890), - [sym_undefined] = ACTIONS(2890), - [anon_sym_AT] = ACTIONS(2888), - [anon_sym_static] = ACTIONS(2890), - [anon_sym_readonly] = ACTIONS(2890), - [anon_sym_get] = ACTIONS(2890), - [anon_sym_set] = ACTIONS(2890), - [anon_sym_declare] = ACTIONS(2890), - [anon_sym_public] = ACTIONS(2890), - [anon_sym_private] = ACTIONS(2890), - [anon_sym_protected] = ACTIONS(2890), - [anon_sym_override] = ACTIONS(2890), - [anon_sym_module] = ACTIONS(2890), - [anon_sym_any] = ACTIONS(2890), - [anon_sym_number] = ACTIONS(2890), - [anon_sym_boolean] = ACTIONS(2890), - [anon_sym_string] = ACTIONS(2890), - [anon_sym_symbol] = ACTIONS(2890), - [anon_sym_object] = ACTIONS(2890), - [anon_sym_abstract] = ACTIONS(2890), - [anon_sym_interface] = ACTIONS(2890), - [anon_sym_enum] = ACTIONS(2890), + [ts_builtin_sym_end] = ACTIONS(2869), + [sym_identifier] = ACTIONS(2871), + [anon_sym_export] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_type] = ACTIONS(2871), + [anon_sym_namespace] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_RBRACE] = ACTIONS(2869), + [anon_sym_typeof] = ACTIONS(2871), + [anon_sym_import] = ACTIONS(2871), + [anon_sym_with] = ACTIONS(2871), + [anon_sym_var] = ACTIONS(2871), + [anon_sym_let] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_else] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_LPAREN] = ACTIONS(2869), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym_await] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_do] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_debugger] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2871), + [anon_sym_yield] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2869), + [anon_sym_class] = ACTIONS(2871), + [anon_sym_async] = ACTIONS(2871), + [anon_sym_function] = ACTIONS(2871), + [anon_sym_new] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(2871), + [anon_sym_DASH] = ACTIONS(2871), + [anon_sym_SLASH] = ACTIONS(2871), + [anon_sym_LT] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_void] = ACTIONS(2871), + [anon_sym_delete] = ACTIONS(2871), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2869), + [sym_number] = ACTIONS(2869), + [sym_private_property_identifier] = ACTIONS(2869), + [sym_this] = ACTIONS(2871), + [sym_super] = ACTIONS(2871), + [sym_true] = ACTIONS(2871), + [sym_false] = ACTIONS(2871), + [sym_null] = ACTIONS(2871), + [sym_undefined] = ACTIONS(2871), + [anon_sym_AT] = ACTIONS(2869), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_readonly] = ACTIONS(2871), + [anon_sym_get] = ACTIONS(2871), + [anon_sym_set] = ACTIONS(2871), + [anon_sym_declare] = ACTIONS(2871), + [anon_sym_public] = ACTIONS(2871), + [anon_sym_private] = ACTIONS(2871), + [anon_sym_protected] = ACTIONS(2871), + [anon_sym_override] = ACTIONS(2871), + [anon_sym_module] = ACTIONS(2871), + [anon_sym_any] = ACTIONS(2871), + [anon_sym_number] = ACTIONS(2871), + [anon_sym_boolean] = ACTIONS(2871), + [anon_sym_string] = ACTIONS(2871), + [anon_sym_symbol] = ACTIONS(2871), + [anon_sym_object] = ACTIONS(2871), + [anon_sym_abstract] = ACTIONS(2871), + [anon_sym_interface] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), [sym_html_comment] = ACTIONS(5), }, [913] = { - [ts_builtin_sym_end] = ACTIONS(2892), - [sym_identifier] = ACTIONS(2894), - [anon_sym_export] = ACTIONS(2894), - [anon_sym_default] = ACTIONS(2894), - [anon_sym_type] = ACTIONS(2894), - [anon_sym_namespace] = ACTIONS(2894), - [anon_sym_LBRACE] = ACTIONS(2892), - [anon_sym_RBRACE] = ACTIONS(2892), - [anon_sym_typeof] = ACTIONS(2894), - [anon_sym_import] = ACTIONS(2894), - [anon_sym_with] = ACTIONS(2894), - [anon_sym_var] = ACTIONS(2894), - [anon_sym_let] = ACTIONS(2894), - [anon_sym_const] = ACTIONS(2894), - [anon_sym_BANG] = ACTIONS(2892), - [anon_sym_else] = ACTIONS(2894), - [anon_sym_if] = ACTIONS(2894), - [anon_sym_switch] = ACTIONS(2894), - [anon_sym_for] = ACTIONS(2894), - [anon_sym_LPAREN] = ACTIONS(2892), - [anon_sym_SEMI] = ACTIONS(2892), - [anon_sym_await] = ACTIONS(2894), - [anon_sym_while] = ACTIONS(2894), - [anon_sym_do] = ACTIONS(2894), - [anon_sym_try] = ACTIONS(2894), - [anon_sym_break] = ACTIONS(2894), - [anon_sym_continue] = ACTIONS(2894), - [anon_sym_debugger] = ACTIONS(2894), - [anon_sym_return] = ACTIONS(2894), - [anon_sym_throw] = ACTIONS(2894), - [anon_sym_case] = ACTIONS(2894), - [anon_sym_yield] = ACTIONS(2894), - [anon_sym_LBRACK] = ACTIONS(2892), - [sym_glimmer_opening_tag] = ACTIONS(2892), - [anon_sym_class] = ACTIONS(2894), - [anon_sym_async] = ACTIONS(2894), - [anon_sym_function] = ACTIONS(2894), - [anon_sym_new] = ACTIONS(2894), - [anon_sym_using] = ACTIONS(2894), - [anon_sym_PLUS] = ACTIONS(2894), - [anon_sym_DASH] = ACTIONS(2894), - [anon_sym_SLASH] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(2894), - [anon_sym_TILDE] = ACTIONS(2892), - [anon_sym_void] = ACTIONS(2894), - [anon_sym_delete] = ACTIONS(2894), - [anon_sym_PLUS_PLUS] = ACTIONS(2892), - [anon_sym_DASH_DASH] = ACTIONS(2892), - [anon_sym_DQUOTE] = ACTIONS(2892), - [anon_sym_SQUOTE] = ACTIONS(2892), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2892), - [sym_number] = ACTIONS(2892), - [sym_private_property_identifier] = ACTIONS(2892), - [sym_this] = ACTIONS(2894), - [sym_super] = ACTIONS(2894), - [sym_true] = ACTIONS(2894), - [sym_false] = ACTIONS(2894), - [sym_null] = ACTIONS(2894), - [sym_undefined] = ACTIONS(2894), - [anon_sym_AT] = ACTIONS(2892), - [anon_sym_static] = ACTIONS(2894), - [anon_sym_readonly] = ACTIONS(2894), - [anon_sym_get] = ACTIONS(2894), - [anon_sym_set] = ACTIONS(2894), - [anon_sym_declare] = ACTIONS(2894), - [anon_sym_public] = ACTIONS(2894), - [anon_sym_private] = ACTIONS(2894), - [anon_sym_protected] = ACTIONS(2894), - [anon_sym_override] = ACTIONS(2894), - [anon_sym_module] = ACTIONS(2894), - [anon_sym_any] = ACTIONS(2894), - [anon_sym_number] = ACTIONS(2894), - [anon_sym_boolean] = ACTIONS(2894), - [anon_sym_string] = ACTIONS(2894), - [anon_sym_symbol] = ACTIONS(2894), - [anon_sym_object] = ACTIONS(2894), - [anon_sym_abstract] = ACTIONS(2894), - [anon_sym_interface] = ACTIONS(2894), - [anon_sym_enum] = ACTIONS(2894), + [ts_builtin_sym_end] = ACTIONS(2873), + [sym_identifier] = ACTIONS(2875), + [anon_sym_export] = ACTIONS(2875), + [anon_sym_default] = ACTIONS(2875), + [anon_sym_type] = ACTIONS(2875), + [anon_sym_namespace] = ACTIONS(2875), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(2873), + [anon_sym_typeof] = ACTIONS(2875), + [anon_sym_import] = ACTIONS(2875), + [anon_sym_with] = ACTIONS(2875), + [anon_sym_var] = ACTIONS(2875), + [anon_sym_let] = ACTIONS(2875), + [anon_sym_const] = ACTIONS(2875), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_else] = ACTIONS(2875), + [anon_sym_if] = ACTIONS(2875), + [anon_sym_switch] = ACTIONS(2875), + [anon_sym_for] = ACTIONS(2875), + [anon_sym_LPAREN] = ACTIONS(2873), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym_await] = ACTIONS(2875), + [anon_sym_while] = ACTIONS(2875), + [anon_sym_do] = ACTIONS(2875), + [anon_sym_try] = ACTIONS(2875), + [anon_sym_break] = ACTIONS(2875), + [anon_sym_continue] = ACTIONS(2875), + [anon_sym_debugger] = ACTIONS(2875), + [anon_sym_return] = ACTIONS(2875), + [anon_sym_throw] = ACTIONS(2875), + [anon_sym_case] = ACTIONS(2875), + [anon_sym_yield] = ACTIONS(2875), + [anon_sym_LBRACK] = ACTIONS(2873), + [anon_sym_class] = ACTIONS(2875), + [anon_sym_async] = ACTIONS(2875), + [anon_sym_function] = ACTIONS(2875), + [anon_sym_new] = ACTIONS(2875), + [anon_sym_using] = ACTIONS(2875), + [anon_sym_PLUS] = ACTIONS(2875), + [anon_sym_DASH] = ACTIONS(2875), + [anon_sym_SLASH] = ACTIONS(2875), + [anon_sym_LT] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_void] = ACTIONS(2875), + [anon_sym_delete] = ACTIONS(2875), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2873), + [sym_number] = ACTIONS(2873), + [sym_private_property_identifier] = ACTIONS(2873), + [sym_this] = ACTIONS(2875), + [sym_super] = ACTIONS(2875), + [sym_true] = ACTIONS(2875), + [sym_false] = ACTIONS(2875), + [sym_null] = ACTIONS(2875), + [sym_undefined] = ACTIONS(2875), + [anon_sym_AT] = ACTIONS(2873), + [anon_sym_static] = ACTIONS(2875), + [anon_sym_readonly] = ACTIONS(2875), + [anon_sym_get] = ACTIONS(2875), + [anon_sym_set] = ACTIONS(2875), + [anon_sym_declare] = ACTIONS(2875), + [anon_sym_public] = ACTIONS(2875), + [anon_sym_private] = ACTIONS(2875), + [anon_sym_protected] = ACTIONS(2875), + [anon_sym_override] = ACTIONS(2875), + [anon_sym_module] = ACTIONS(2875), + [anon_sym_any] = ACTIONS(2875), + [anon_sym_number] = ACTIONS(2875), + [anon_sym_boolean] = ACTIONS(2875), + [anon_sym_string] = ACTIONS(2875), + [anon_sym_symbol] = ACTIONS(2875), + [anon_sym_object] = ACTIONS(2875), + [anon_sym_abstract] = ACTIONS(2875), + [anon_sym_interface] = ACTIONS(2875), + [anon_sym_enum] = ACTIONS(2875), [sym_html_comment] = ACTIONS(5), }, [914] = { - [ts_builtin_sym_end] = ACTIONS(2896), - [sym_identifier] = ACTIONS(2898), - [anon_sym_export] = ACTIONS(2898), - [anon_sym_default] = ACTIONS(2898), - [anon_sym_type] = ACTIONS(2898), - [anon_sym_namespace] = ACTIONS(2898), - [anon_sym_LBRACE] = ACTIONS(2896), - [anon_sym_RBRACE] = ACTIONS(2896), - [anon_sym_typeof] = ACTIONS(2898), - [anon_sym_import] = ACTIONS(2898), - [anon_sym_with] = ACTIONS(2898), - [anon_sym_var] = ACTIONS(2898), - [anon_sym_let] = ACTIONS(2898), - [anon_sym_const] = ACTIONS(2898), - [anon_sym_BANG] = ACTIONS(2896), - [anon_sym_else] = ACTIONS(2898), - [anon_sym_if] = ACTIONS(2898), - [anon_sym_switch] = ACTIONS(2898), - [anon_sym_for] = ACTIONS(2898), - [anon_sym_LPAREN] = ACTIONS(2896), - [anon_sym_SEMI] = ACTIONS(2896), - [anon_sym_await] = ACTIONS(2898), - [anon_sym_while] = ACTIONS(2898), - [anon_sym_do] = ACTIONS(2898), - [anon_sym_try] = ACTIONS(2898), - [anon_sym_break] = ACTIONS(2898), - [anon_sym_continue] = ACTIONS(2898), - [anon_sym_debugger] = ACTIONS(2898), - [anon_sym_return] = ACTIONS(2898), - [anon_sym_throw] = ACTIONS(2898), - [anon_sym_case] = ACTIONS(2898), - [anon_sym_yield] = ACTIONS(2898), - [anon_sym_LBRACK] = ACTIONS(2896), - [sym_glimmer_opening_tag] = ACTIONS(2896), - [anon_sym_class] = ACTIONS(2898), - [anon_sym_async] = ACTIONS(2898), - [anon_sym_function] = ACTIONS(2898), - [anon_sym_new] = ACTIONS(2898), - [anon_sym_using] = ACTIONS(2898), - [anon_sym_PLUS] = ACTIONS(2898), - [anon_sym_DASH] = ACTIONS(2898), - [anon_sym_SLASH] = ACTIONS(2898), - [anon_sym_LT] = ACTIONS(2898), - [anon_sym_TILDE] = ACTIONS(2896), - [anon_sym_void] = ACTIONS(2898), - [anon_sym_delete] = ACTIONS(2898), - [anon_sym_PLUS_PLUS] = ACTIONS(2896), - [anon_sym_DASH_DASH] = ACTIONS(2896), - [anon_sym_DQUOTE] = ACTIONS(2896), - [anon_sym_SQUOTE] = ACTIONS(2896), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2896), - [sym_number] = ACTIONS(2896), - [sym_private_property_identifier] = ACTIONS(2896), - [sym_this] = ACTIONS(2898), - [sym_super] = ACTIONS(2898), - [sym_true] = ACTIONS(2898), - [sym_false] = ACTIONS(2898), - [sym_null] = ACTIONS(2898), - [sym_undefined] = ACTIONS(2898), - [anon_sym_AT] = ACTIONS(2896), - [anon_sym_static] = ACTIONS(2898), - [anon_sym_readonly] = ACTIONS(2898), - [anon_sym_get] = ACTIONS(2898), - [anon_sym_set] = ACTIONS(2898), - [anon_sym_declare] = ACTIONS(2898), - [anon_sym_public] = ACTIONS(2898), - [anon_sym_private] = ACTIONS(2898), - [anon_sym_protected] = ACTIONS(2898), - [anon_sym_override] = ACTIONS(2898), - [anon_sym_module] = ACTIONS(2898), - [anon_sym_any] = ACTIONS(2898), - [anon_sym_number] = ACTIONS(2898), - [anon_sym_boolean] = ACTIONS(2898), - [anon_sym_string] = ACTIONS(2898), - [anon_sym_symbol] = ACTIONS(2898), - [anon_sym_object] = ACTIONS(2898), - [anon_sym_abstract] = ACTIONS(2898), - [anon_sym_interface] = ACTIONS(2898), - [anon_sym_enum] = ACTIONS(2898), + [ts_builtin_sym_end] = ACTIONS(2877), + [sym_identifier] = ACTIONS(2879), + [anon_sym_export] = ACTIONS(2879), + [anon_sym_default] = ACTIONS(2879), + [anon_sym_type] = ACTIONS(2879), + [anon_sym_namespace] = ACTIONS(2879), + [anon_sym_LBRACE] = ACTIONS(2877), + [anon_sym_RBRACE] = ACTIONS(2877), + [anon_sym_typeof] = ACTIONS(2879), + [anon_sym_import] = ACTIONS(2879), + [anon_sym_with] = ACTIONS(2879), + [anon_sym_var] = ACTIONS(2879), + [anon_sym_let] = ACTIONS(2879), + [anon_sym_const] = ACTIONS(2879), + [anon_sym_BANG] = ACTIONS(2877), + [anon_sym_else] = ACTIONS(2879), + [anon_sym_if] = ACTIONS(2879), + [anon_sym_switch] = ACTIONS(2879), + [anon_sym_for] = ACTIONS(2879), + [anon_sym_LPAREN] = ACTIONS(2877), + [anon_sym_SEMI] = ACTIONS(2877), + [anon_sym_await] = ACTIONS(2879), + [anon_sym_while] = ACTIONS(2879), + [anon_sym_do] = ACTIONS(2879), + [anon_sym_try] = ACTIONS(2879), + [anon_sym_break] = ACTIONS(2879), + [anon_sym_continue] = ACTIONS(2879), + [anon_sym_debugger] = ACTIONS(2879), + [anon_sym_return] = ACTIONS(2879), + [anon_sym_throw] = ACTIONS(2879), + [anon_sym_case] = ACTIONS(2879), + [anon_sym_yield] = ACTIONS(2879), + [anon_sym_LBRACK] = ACTIONS(2877), + [anon_sym_class] = ACTIONS(2879), + [anon_sym_async] = ACTIONS(2879), + [anon_sym_function] = ACTIONS(2879), + [anon_sym_new] = ACTIONS(2879), + [anon_sym_using] = ACTIONS(2879), + [anon_sym_PLUS] = ACTIONS(2879), + [anon_sym_DASH] = ACTIONS(2879), + [anon_sym_SLASH] = ACTIONS(2879), + [anon_sym_LT] = ACTIONS(2877), + [anon_sym_TILDE] = ACTIONS(2877), + [anon_sym_void] = ACTIONS(2879), + [anon_sym_delete] = ACTIONS(2879), + [anon_sym_PLUS_PLUS] = ACTIONS(2877), + [anon_sym_DASH_DASH] = ACTIONS(2877), + [anon_sym_DQUOTE] = ACTIONS(2877), + [anon_sym_SQUOTE] = ACTIONS(2877), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2877), + [sym_number] = ACTIONS(2877), + [sym_private_property_identifier] = ACTIONS(2877), + [sym_this] = ACTIONS(2879), + [sym_super] = ACTIONS(2879), + [sym_true] = ACTIONS(2879), + [sym_false] = ACTIONS(2879), + [sym_null] = ACTIONS(2879), + [sym_undefined] = ACTIONS(2879), + [anon_sym_AT] = ACTIONS(2877), + [anon_sym_static] = ACTIONS(2879), + [anon_sym_readonly] = ACTIONS(2879), + [anon_sym_get] = ACTIONS(2879), + [anon_sym_set] = ACTIONS(2879), + [anon_sym_declare] = ACTIONS(2879), + [anon_sym_public] = ACTIONS(2879), + [anon_sym_private] = ACTIONS(2879), + [anon_sym_protected] = ACTIONS(2879), + [anon_sym_override] = ACTIONS(2879), + [anon_sym_module] = ACTIONS(2879), + [anon_sym_any] = ACTIONS(2879), + [anon_sym_number] = ACTIONS(2879), + [anon_sym_boolean] = ACTIONS(2879), + [anon_sym_string] = ACTIONS(2879), + [anon_sym_symbol] = ACTIONS(2879), + [anon_sym_object] = ACTIONS(2879), + [anon_sym_abstract] = ACTIONS(2879), + [anon_sym_interface] = ACTIONS(2879), + [anon_sym_enum] = ACTIONS(2879), [sym_html_comment] = ACTIONS(5), }, [915] = { - [ts_builtin_sym_end] = ACTIONS(2900), - [sym_identifier] = ACTIONS(2902), - [anon_sym_export] = ACTIONS(2902), - [anon_sym_default] = ACTIONS(2902), - [anon_sym_type] = ACTIONS(2902), - [anon_sym_namespace] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_RBRACE] = ACTIONS(2900), - [anon_sym_typeof] = ACTIONS(2902), - [anon_sym_import] = ACTIONS(2902), - [anon_sym_with] = ACTIONS(2902), - [anon_sym_var] = ACTIONS(2902), - [anon_sym_let] = ACTIONS(2902), - [anon_sym_const] = ACTIONS(2902), - [anon_sym_BANG] = ACTIONS(2900), - [anon_sym_else] = ACTIONS(2902), - [anon_sym_if] = ACTIONS(2902), - [anon_sym_switch] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2900), - [anon_sym_await] = ACTIONS(2902), - [anon_sym_while] = ACTIONS(2902), - [anon_sym_do] = ACTIONS(2902), - [anon_sym_try] = ACTIONS(2902), - [anon_sym_break] = ACTIONS(2902), - [anon_sym_continue] = ACTIONS(2902), - [anon_sym_debugger] = ACTIONS(2902), - [anon_sym_return] = ACTIONS(2902), - [anon_sym_throw] = ACTIONS(2902), - [anon_sym_case] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2902), - [anon_sym_LBRACK] = ACTIONS(2900), - [sym_glimmer_opening_tag] = ACTIONS(2900), - [anon_sym_class] = ACTIONS(2902), - [anon_sym_async] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2902), - [anon_sym_new] = ACTIONS(2902), - [anon_sym_using] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2902), - [anon_sym_DASH] = ACTIONS(2902), - [anon_sym_SLASH] = ACTIONS(2902), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_TILDE] = ACTIONS(2900), - [anon_sym_void] = ACTIONS(2902), - [anon_sym_delete] = ACTIONS(2902), - [anon_sym_PLUS_PLUS] = ACTIONS(2900), - [anon_sym_DASH_DASH] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_SQUOTE] = ACTIONS(2900), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2900), - [sym_number] = ACTIONS(2900), - [sym_private_property_identifier] = ACTIONS(2900), - [sym_this] = ACTIONS(2902), - [sym_super] = ACTIONS(2902), - [sym_true] = ACTIONS(2902), - [sym_false] = ACTIONS(2902), - [sym_null] = ACTIONS(2902), - [sym_undefined] = ACTIONS(2902), - [anon_sym_AT] = ACTIONS(2900), - [anon_sym_static] = ACTIONS(2902), - [anon_sym_readonly] = ACTIONS(2902), - [anon_sym_get] = ACTIONS(2902), - [anon_sym_set] = ACTIONS(2902), - [anon_sym_declare] = ACTIONS(2902), - [anon_sym_public] = ACTIONS(2902), - [anon_sym_private] = ACTIONS(2902), - [anon_sym_protected] = ACTIONS(2902), - [anon_sym_override] = ACTIONS(2902), - [anon_sym_module] = ACTIONS(2902), - [anon_sym_any] = ACTIONS(2902), - [anon_sym_number] = ACTIONS(2902), - [anon_sym_boolean] = ACTIONS(2902), - [anon_sym_string] = ACTIONS(2902), - [anon_sym_symbol] = ACTIONS(2902), - [anon_sym_object] = ACTIONS(2902), - [anon_sym_abstract] = ACTIONS(2902), - [anon_sym_interface] = ACTIONS(2902), - [anon_sym_enum] = ACTIONS(2902), + [ts_builtin_sym_end] = ACTIONS(2881), + [sym_identifier] = ACTIONS(2883), + [anon_sym_export] = ACTIONS(2883), + [anon_sym_default] = ACTIONS(2883), + [anon_sym_type] = ACTIONS(2883), + [anon_sym_namespace] = ACTIONS(2883), + [anon_sym_LBRACE] = ACTIONS(2881), + [anon_sym_RBRACE] = ACTIONS(2881), + [anon_sym_typeof] = ACTIONS(2883), + [anon_sym_import] = ACTIONS(2883), + [anon_sym_with] = ACTIONS(2883), + [anon_sym_var] = ACTIONS(2883), + [anon_sym_let] = ACTIONS(2883), + [anon_sym_const] = ACTIONS(2883), + [anon_sym_BANG] = ACTIONS(2881), + [anon_sym_else] = ACTIONS(2883), + [anon_sym_if] = ACTIONS(2883), + [anon_sym_switch] = ACTIONS(2883), + [anon_sym_for] = ACTIONS(2883), + [anon_sym_LPAREN] = ACTIONS(2881), + [anon_sym_SEMI] = ACTIONS(2881), + [anon_sym_await] = ACTIONS(2883), + [anon_sym_while] = ACTIONS(2883), + [anon_sym_do] = ACTIONS(2883), + [anon_sym_try] = ACTIONS(2883), + [anon_sym_break] = ACTIONS(2883), + [anon_sym_continue] = ACTIONS(2883), + [anon_sym_debugger] = ACTIONS(2883), + [anon_sym_return] = ACTIONS(2883), + [anon_sym_throw] = ACTIONS(2883), + [anon_sym_case] = ACTIONS(2883), + [anon_sym_yield] = ACTIONS(2883), + [anon_sym_LBRACK] = ACTIONS(2881), + [anon_sym_class] = ACTIONS(2883), + [anon_sym_async] = ACTIONS(2883), + [anon_sym_function] = ACTIONS(2883), + [anon_sym_new] = ACTIONS(2883), + [anon_sym_using] = ACTIONS(2883), + [anon_sym_PLUS] = ACTIONS(2883), + [anon_sym_DASH] = ACTIONS(2883), + [anon_sym_SLASH] = ACTIONS(2883), + [anon_sym_LT] = ACTIONS(2881), + [anon_sym_TILDE] = ACTIONS(2881), + [anon_sym_void] = ACTIONS(2883), + [anon_sym_delete] = ACTIONS(2883), + [anon_sym_PLUS_PLUS] = ACTIONS(2881), + [anon_sym_DASH_DASH] = ACTIONS(2881), + [anon_sym_DQUOTE] = ACTIONS(2881), + [anon_sym_SQUOTE] = ACTIONS(2881), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2881), + [sym_number] = ACTIONS(2881), + [sym_private_property_identifier] = ACTIONS(2881), + [sym_this] = ACTIONS(2883), + [sym_super] = ACTIONS(2883), + [sym_true] = ACTIONS(2883), + [sym_false] = ACTIONS(2883), + [sym_null] = ACTIONS(2883), + [sym_undefined] = ACTIONS(2883), + [anon_sym_AT] = ACTIONS(2881), + [anon_sym_static] = ACTIONS(2883), + [anon_sym_readonly] = ACTIONS(2883), + [anon_sym_get] = ACTIONS(2883), + [anon_sym_set] = ACTIONS(2883), + [anon_sym_declare] = ACTIONS(2883), + [anon_sym_public] = ACTIONS(2883), + [anon_sym_private] = ACTIONS(2883), + [anon_sym_protected] = ACTIONS(2883), + [anon_sym_override] = ACTIONS(2883), + [anon_sym_module] = ACTIONS(2883), + [anon_sym_any] = ACTIONS(2883), + [anon_sym_number] = ACTIONS(2883), + [anon_sym_boolean] = ACTIONS(2883), + [anon_sym_string] = ACTIONS(2883), + [anon_sym_symbol] = ACTIONS(2883), + [anon_sym_object] = ACTIONS(2883), + [anon_sym_abstract] = ACTIONS(2883), + [anon_sym_interface] = ACTIONS(2883), + [anon_sym_enum] = ACTIONS(2883), [sym_html_comment] = ACTIONS(5), }, [916] = { - [ts_builtin_sym_end] = ACTIONS(2904), - [sym_identifier] = ACTIONS(2906), - [anon_sym_export] = ACTIONS(2906), - [anon_sym_default] = ACTIONS(2906), - [anon_sym_type] = ACTIONS(2906), - [anon_sym_namespace] = ACTIONS(2906), - [anon_sym_LBRACE] = ACTIONS(2904), - [anon_sym_RBRACE] = ACTIONS(2904), - [anon_sym_typeof] = ACTIONS(2906), - [anon_sym_import] = ACTIONS(2906), - [anon_sym_with] = ACTIONS(2906), - [anon_sym_var] = ACTIONS(2906), - [anon_sym_let] = ACTIONS(2906), - [anon_sym_const] = ACTIONS(2906), - [anon_sym_BANG] = ACTIONS(2904), - [anon_sym_else] = ACTIONS(2906), - [anon_sym_if] = ACTIONS(2906), - [anon_sym_switch] = ACTIONS(2906), - [anon_sym_for] = ACTIONS(2906), - [anon_sym_LPAREN] = ACTIONS(2904), - [anon_sym_SEMI] = ACTIONS(2904), - [anon_sym_await] = ACTIONS(2906), - [anon_sym_while] = ACTIONS(2906), - [anon_sym_do] = ACTIONS(2906), - [anon_sym_try] = ACTIONS(2906), - [anon_sym_break] = ACTIONS(2906), - [anon_sym_continue] = ACTIONS(2906), - [anon_sym_debugger] = ACTIONS(2906), - [anon_sym_return] = ACTIONS(2906), - [anon_sym_throw] = ACTIONS(2906), - [anon_sym_case] = ACTIONS(2906), - [anon_sym_yield] = ACTIONS(2906), - [anon_sym_LBRACK] = ACTIONS(2904), - [sym_glimmer_opening_tag] = ACTIONS(2904), - [anon_sym_class] = ACTIONS(2906), - [anon_sym_async] = ACTIONS(2906), - [anon_sym_function] = ACTIONS(2906), - [anon_sym_new] = ACTIONS(2906), - [anon_sym_using] = ACTIONS(2906), - [anon_sym_PLUS] = ACTIONS(2906), - [anon_sym_DASH] = ACTIONS(2906), - [anon_sym_SLASH] = ACTIONS(2906), - [anon_sym_LT] = ACTIONS(2906), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_void] = ACTIONS(2906), - [anon_sym_delete] = ACTIONS(2906), - [anon_sym_PLUS_PLUS] = ACTIONS(2904), - [anon_sym_DASH_DASH] = ACTIONS(2904), - [anon_sym_DQUOTE] = ACTIONS(2904), - [anon_sym_SQUOTE] = ACTIONS(2904), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2904), - [sym_number] = ACTIONS(2904), - [sym_private_property_identifier] = ACTIONS(2904), - [sym_this] = ACTIONS(2906), - [sym_super] = ACTIONS(2906), - [sym_true] = ACTIONS(2906), - [sym_false] = ACTIONS(2906), - [sym_null] = ACTIONS(2906), - [sym_undefined] = ACTIONS(2906), - [anon_sym_AT] = ACTIONS(2904), - [anon_sym_static] = ACTIONS(2906), - [anon_sym_readonly] = ACTIONS(2906), - [anon_sym_get] = ACTIONS(2906), - [anon_sym_set] = ACTIONS(2906), - [anon_sym_declare] = ACTIONS(2906), - [anon_sym_public] = ACTIONS(2906), - [anon_sym_private] = ACTIONS(2906), - [anon_sym_protected] = ACTIONS(2906), - [anon_sym_override] = ACTIONS(2906), - [anon_sym_module] = ACTIONS(2906), - [anon_sym_any] = ACTIONS(2906), - [anon_sym_number] = ACTIONS(2906), - [anon_sym_boolean] = ACTIONS(2906), - [anon_sym_string] = ACTIONS(2906), - [anon_sym_symbol] = ACTIONS(2906), - [anon_sym_object] = ACTIONS(2906), - [anon_sym_abstract] = ACTIONS(2906), - [anon_sym_interface] = ACTIONS(2906), - [anon_sym_enum] = ACTIONS(2906), + [ts_builtin_sym_end] = ACTIONS(2873), + [sym_identifier] = ACTIONS(2875), + [anon_sym_export] = ACTIONS(2875), + [anon_sym_default] = ACTIONS(2875), + [anon_sym_type] = ACTIONS(2875), + [anon_sym_namespace] = ACTIONS(2875), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(2873), + [anon_sym_typeof] = ACTIONS(2875), + [anon_sym_import] = ACTIONS(2875), + [anon_sym_with] = ACTIONS(2875), + [anon_sym_var] = ACTIONS(2875), + [anon_sym_let] = ACTIONS(2875), + [anon_sym_const] = ACTIONS(2875), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_else] = ACTIONS(2875), + [anon_sym_if] = ACTIONS(2875), + [anon_sym_switch] = ACTIONS(2875), + [anon_sym_for] = ACTIONS(2875), + [anon_sym_LPAREN] = ACTIONS(2873), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym_await] = ACTIONS(2875), + [anon_sym_while] = ACTIONS(2875), + [anon_sym_do] = ACTIONS(2875), + [anon_sym_try] = ACTIONS(2875), + [anon_sym_break] = ACTIONS(2875), + [anon_sym_continue] = ACTIONS(2875), + [anon_sym_debugger] = ACTIONS(2875), + [anon_sym_return] = ACTIONS(2875), + [anon_sym_throw] = ACTIONS(2875), + [anon_sym_case] = ACTIONS(2875), + [anon_sym_yield] = ACTIONS(2875), + [anon_sym_LBRACK] = ACTIONS(2873), + [anon_sym_class] = ACTIONS(2875), + [anon_sym_async] = ACTIONS(2875), + [anon_sym_function] = ACTIONS(2875), + [anon_sym_new] = ACTIONS(2875), + [anon_sym_using] = ACTIONS(2875), + [anon_sym_PLUS] = ACTIONS(2875), + [anon_sym_DASH] = ACTIONS(2875), + [anon_sym_SLASH] = ACTIONS(2875), + [anon_sym_LT] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_void] = ACTIONS(2875), + [anon_sym_delete] = ACTIONS(2875), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2873), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2873), + [sym_number] = ACTIONS(2873), + [sym_private_property_identifier] = ACTIONS(2873), + [sym_this] = ACTIONS(2875), + [sym_super] = ACTIONS(2875), + [sym_true] = ACTIONS(2875), + [sym_false] = ACTIONS(2875), + [sym_null] = ACTIONS(2875), + [sym_undefined] = ACTIONS(2875), + [anon_sym_AT] = ACTIONS(2873), + [anon_sym_static] = ACTIONS(2875), + [anon_sym_readonly] = ACTIONS(2875), + [anon_sym_get] = ACTIONS(2875), + [anon_sym_set] = ACTIONS(2875), + [anon_sym_declare] = ACTIONS(2875), + [anon_sym_public] = ACTIONS(2875), + [anon_sym_private] = ACTIONS(2875), + [anon_sym_protected] = ACTIONS(2875), + [anon_sym_override] = ACTIONS(2875), + [anon_sym_module] = ACTIONS(2875), + [anon_sym_any] = ACTIONS(2875), + [anon_sym_number] = ACTIONS(2875), + [anon_sym_boolean] = ACTIONS(2875), + [anon_sym_string] = ACTIONS(2875), + [anon_sym_symbol] = ACTIONS(2875), + [anon_sym_object] = ACTIONS(2875), + [anon_sym_abstract] = ACTIONS(2875), + [anon_sym_interface] = ACTIONS(2875), + [anon_sym_enum] = ACTIONS(2875), [sym_html_comment] = ACTIONS(5), }, [917] = { - [ts_builtin_sym_end] = ACTIONS(2908), - [sym_identifier] = ACTIONS(2910), - [anon_sym_export] = ACTIONS(2910), - [anon_sym_default] = ACTIONS(2910), - [anon_sym_type] = ACTIONS(2910), - [anon_sym_namespace] = ACTIONS(2910), - [anon_sym_LBRACE] = ACTIONS(2908), - [anon_sym_RBRACE] = ACTIONS(2908), - [anon_sym_typeof] = ACTIONS(2910), - [anon_sym_import] = ACTIONS(2910), - [anon_sym_with] = ACTIONS(2910), - [anon_sym_var] = ACTIONS(2910), - [anon_sym_let] = ACTIONS(2910), - [anon_sym_const] = ACTIONS(2910), - [anon_sym_BANG] = ACTIONS(2908), - [anon_sym_else] = ACTIONS(2910), - [anon_sym_if] = ACTIONS(2910), - [anon_sym_switch] = ACTIONS(2910), - [anon_sym_for] = ACTIONS(2910), - [anon_sym_LPAREN] = ACTIONS(2908), - [anon_sym_SEMI] = ACTIONS(2908), - [anon_sym_await] = ACTIONS(2910), - [anon_sym_while] = ACTIONS(2910), - [anon_sym_do] = ACTIONS(2910), - [anon_sym_try] = ACTIONS(2910), - [anon_sym_break] = ACTIONS(2910), - [anon_sym_continue] = ACTIONS(2910), - [anon_sym_debugger] = ACTIONS(2910), - [anon_sym_return] = ACTIONS(2910), - [anon_sym_throw] = ACTIONS(2910), - [anon_sym_case] = ACTIONS(2910), - [anon_sym_yield] = ACTIONS(2910), - [anon_sym_LBRACK] = ACTIONS(2908), - [sym_glimmer_opening_tag] = ACTIONS(2908), - [anon_sym_class] = ACTIONS(2910), - [anon_sym_async] = ACTIONS(2910), - [anon_sym_function] = ACTIONS(2910), - [anon_sym_new] = ACTIONS(2910), - [anon_sym_using] = ACTIONS(2910), - [anon_sym_PLUS] = ACTIONS(2910), - [anon_sym_DASH] = ACTIONS(2910), - [anon_sym_SLASH] = ACTIONS(2910), - [anon_sym_LT] = ACTIONS(2910), - [anon_sym_TILDE] = ACTIONS(2908), - [anon_sym_void] = ACTIONS(2910), - [anon_sym_delete] = ACTIONS(2910), - [anon_sym_PLUS_PLUS] = ACTIONS(2908), - [anon_sym_DASH_DASH] = ACTIONS(2908), - [anon_sym_DQUOTE] = ACTIONS(2908), - [anon_sym_SQUOTE] = ACTIONS(2908), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2908), - [sym_number] = ACTIONS(2908), - [sym_private_property_identifier] = ACTIONS(2908), - [sym_this] = ACTIONS(2910), - [sym_super] = ACTIONS(2910), - [sym_true] = ACTIONS(2910), - [sym_false] = ACTIONS(2910), - [sym_null] = ACTIONS(2910), - [sym_undefined] = ACTIONS(2910), - [anon_sym_AT] = ACTIONS(2908), - [anon_sym_static] = ACTIONS(2910), - [anon_sym_readonly] = ACTIONS(2910), - [anon_sym_get] = ACTIONS(2910), - [anon_sym_set] = ACTIONS(2910), - [anon_sym_declare] = ACTIONS(2910), - [anon_sym_public] = ACTIONS(2910), - [anon_sym_private] = ACTIONS(2910), - [anon_sym_protected] = ACTIONS(2910), - [anon_sym_override] = ACTIONS(2910), - [anon_sym_module] = ACTIONS(2910), - [anon_sym_any] = ACTIONS(2910), - [anon_sym_number] = ACTIONS(2910), - [anon_sym_boolean] = ACTIONS(2910), - [anon_sym_string] = ACTIONS(2910), - [anon_sym_symbol] = ACTIONS(2910), - [anon_sym_object] = ACTIONS(2910), - [anon_sym_abstract] = ACTIONS(2910), - [anon_sym_interface] = ACTIONS(2910), - [anon_sym_enum] = ACTIONS(2910), + [ts_builtin_sym_end] = ACTIONS(2885), + [sym_identifier] = ACTIONS(2887), + [anon_sym_export] = ACTIONS(2887), + [anon_sym_default] = ACTIONS(2887), + [anon_sym_type] = ACTIONS(2887), + [anon_sym_namespace] = ACTIONS(2887), + [anon_sym_LBRACE] = ACTIONS(2885), + [anon_sym_RBRACE] = ACTIONS(2885), + [anon_sym_typeof] = ACTIONS(2887), + [anon_sym_import] = ACTIONS(2887), + [anon_sym_with] = ACTIONS(2887), + [anon_sym_var] = ACTIONS(2887), + [anon_sym_let] = ACTIONS(2887), + [anon_sym_const] = ACTIONS(2887), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_else] = ACTIONS(2887), + [anon_sym_if] = ACTIONS(2887), + [anon_sym_switch] = ACTIONS(2887), + [anon_sym_for] = ACTIONS(2887), + [anon_sym_LPAREN] = ACTIONS(2885), + [anon_sym_SEMI] = ACTIONS(2885), + [anon_sym_await] = ACTIONS(2887), + [anon_sym_while] = ACTIONS(2887), + [anon_sym_do] = ACTIONS(2887), + [anon_sym_try] = ACTIONS(2887), + [anon_sym_break] = ACTIONS(2887), + [anon_sym_continue] = ACTIONS(2887), + [anon_sym_debugger] = ACTIONS(2887), + [anon_sym_return] = ACTIONS(2887), + [anon_sym_throw] = ACTIONS(2887), + [anon_sym_case] = ACTIONS(2887), + [anon_sym_yield] = ACTIONS(2887), + [anon_sym_LBRACK] = ACTIONS(2885), + [anon_sym_class] = ACTIONS(2887), + [anon_sym_async] = ACTIONS(2887), + [anon_sym_function] = ACTIONS(2887), + [anon_sym_new] = ACTIONS(2887), + [anon_sym_using] = ACTIONS(2887), + [anon_sym_PLUS] = ACTIONS(2887), + [anon_sym_DASH] = ACTIONS(2887), + [anon_sym_SLASH] = ACTIONS(2887), + [anon_sym_LT] = ACTIONS(2885), + [anon_sym_TILDE] = ACTIONS(2885), + [anon_sym_void] = ACTIONS(2887), + [anon_sym_delete] = ACTIONS(2887), + [anon_sym_PLUS_PLUS] = ACTIONS(2885), + [anon_sym_DASH_DASH] = ACTIONS(2885), + [anon_sym_DQUOTE] = ACTIONS(2885), + [anon_sym_SQUOTE] = ACTIONS(2885), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2885), + [sym_number] = ACTIONS(2885), + [sym_private_property_identifier] = ACTIONS(2885), + [sym_this] = ACTIONS(2887), + [sym_super] = ACTIONS(2887), + [sym_true] = ACTIONS(2887), + [sym_false] = ACTIONS(2887), + [sym_null] = ACTIONS(2887), + [sym_undefined] = ACTIONS(2887), + [anon_sym_AT] = ACTIONS(2885), + [anon_sym_static] = ACTIONS(2887), + [anon_sym_readonly] = ACTIONS(2887), + [anon_sym_get] = ACTIONS(2887), + [anon_sym_set] = ACTIONS(2887), + [anon_sym_declare] = ACTIONS(2887), + [anon_sym_public] = ACTIONS(2887), + [anon_sym_private] = ACTIONS(2887), + [anon_sym_protected] = ACTIONS(2887), + [anon_sym_override] = ACTIONS(2887), + [anon_sym_module] = ACTIONS(2887), + [anon_sym_any] = ACTIONS(2887), + [anon_sym_number] = ACTIONS(2887), + [anon_sym_boolean] = ACTIONS(2887), + [anon_sym_string] = ACTIONS(2887), + [anon_sym_symbol] = ACTIONS(2887), + [anon_sym_object] = ACTIONS(2887), + [anon_sym_abstract] = ACTIONS(2887), + [anon_sym_interface] = ACTIONS(2887), + [anon_sym_enum] = ACTIONS(2887), [sym_html_comment] = ACTIONS(5), }, [918] = { - [ts_builtin_sym_end] = ACTIONS(2904), - [sym_identifier] = ACTIONS(2906), - [anon_sym_export] = ACTIONS(2906), - [anon_sym_default] = ACTIONS(2906), - [anon_sym_type] = ACTIONS(2906), - [anon_sym_namespace] = ACTIONS(2906), - [anon_sym_LBRACE] = ACTIONS(2904), - [anon_sym_RBRACE] = ACTIONS(2904), - [anon_sym_typeof] = ACTIONS(2906), - [anon_sym_import] = ACTIONS(2906), - [anon_sym_with] = ACTIONS(2906), - [anon_sym_var] = ACTIONS(2906), - [anon_sym_let] = ACTIONS(2906), - [anon_sym_const] = ACTIONS(2906), - [anon_sym_BANG] = ACTIONS(2904), - [anon_sym_else] = ACTIONS(2906), - [anon_sym_if] = ACTIONS(2906), - [anon_sym_switch] = ACTIONS(2906), - [anon_sym_for] = ACTIONS(2906), - [anon_sym_LPAREN] = ACTIONS(2904), - [anon_sym_SEMI] = ACTIONS(2904), - [anon_sym_await] = ACTIONS(2906), - [anon_sym_while] = ACTIONS(2906), - [anon_sym_do] = ACTIONS(2906), - [anon_sym_try] = ACTIONS(2906), - [anon_sym_break] = ACTIONS(2906), - [anon_sym_continue] = ACTIONS(2906), - [anon_sym_debugger] = ACTIONS(2906), - [anon_sym_return] = ACTIONS(2906), - [anon_sym_throw] = ACTIONS(2906), - [anon_sym_case] = ACTIONS(2906), - [anon_sym_yield] = ACTIONS(2906), - [anon_sym_LBRACK] = ACTIONS(2904), - [sym_glimmer_opening_tag] = ACTIONS(2904), - [anon_sym_class] = ACTIONS(2906), - [anon_sym_async] = ACTIONS(2906), - [anon_sym_function] = ACTIONS(2906), - [anon_sym_new] = ACTIONS(2906), - [anon_sym_using] = ACTIONS(2906), - [anon_sym_PLUS] = ACTIONS(2906), - [anon_sym_DASH] = ACTIONS(2906), - [anon_sym_SLASH] = ACTIONS(2906), - [anon_sym_LT] = ACTIONS(2906), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_void] = ACTIONS(2906), - [anon_sym_delete] = ACTIONS(2906), - [anon_sym_PLUS_PLUS] = ACTIONS(2904), - [anon_sym_DASH_DASH] = ACTIONS(2904), - [anon_sym_DQUOTE] = ACTIONS(2904), - [anon_sym_SQUOTE] = ACTIONS(2904), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2904), - [sym_number] = ACTIONS(2904), - [sym_private_property_identifier] = ACTIONS(2904), - [sym_this] = ACTIONS(2906), - [sym_super] = ACTIONS(2906), - [sym_true] = ACTIONS(2906), - [sym_false] = ACTIONS(2906), - [sym_null] = ACTIONS(2906), - [sym_undefined] = ACTIONS(2906), - [anon_sym_AT] = ACTIONS(2904), - [anon_sym_static] = ACTIONS(2906), - [anon_sym_readonly] = ACTIONS(2906), - [anon_sym_get] = ACTIONS(2906), - [anon_sym_set] = ACTIONS(2906), - [anon_sym_declare] = ACTIONS(2906), - [anon_sym_public] = ACTIONS(2906), - [anon_sym_private] = ACTIONS(2906), - [anon_sym_protected] = ACTIONS(2906), - [anon_sym_override] = ACTIONS(2906), - [anon_sym_module] = ACTIONS(2906), - [anon_sym_any] = ACTIONS(2906), - [anon_sym_number] = ACTIONS(2906), - [anon_sym_boolean] = ACTIONS(2906), - [anon_sym_string] = ACTIONS(2906), - [anon_sym_symbol] = ACTIONS(2906), - [anon_sym_object] = ACTIONS(2906), - [anon_sym_abstract] = ACTIONS(2906), - [anon_sym_interface] = ACTIONS(2906), - [anon_sym_enum] = ACTIONS(2906), + [ts_builtin_sym_end] = ACTIONS(2889), + [sym_identifier] = ACTIONS(2891), + [anon_sym_export] = ACTIONS(2891), + [anon_sym_default] = ACTIONS(2891), + [anon_sym_type] = ACTIONS(2891), + [anon_sym_namespace] = ACTIONS(2891), + [anon_sym_LBRACE] = ACTIONS(2889), + [anon_sym_RBRACE] = ACTIONS(2889), + [anon_sym_typeof] = ACTIONS(2891), + [anon_sym_import] = ACTIONS(2891), + [anon_sym_with] = ACTIONS(2891), + [anon_sym_var] = ACTIONS(2891), + [anon_sym_let] = ACTIONS(2891), + [anon_sym_const] = ACTIONS(2891), + [anon_sym_BANG] = ACTIONS(2889), + [anon_sym_else] = ACTIONS(2891), + [anon_sym_if] = ACTIONS(2891), + [anon_sym_switch] = ACTIONS(2891), + [anon_sym_for] = ACTIONS(2891), + [anon_sym_LPAREN] = ACTIONS(2889), + [anon_sym_SEMI] = ACTIONS(2889), + [anon_sym_await] = ACTIONS(2891), + [anon_sym_while] = ACTIONS(2891), + [anon_sym_do] = ACTIONS(2891), + [anon_sym_try] = ACTIONS(2891), + [anon_sym_break] = ACTIONS(2891), + [anon_sym_continue] = ACTIONS(2891), + [anon_sym_debugger] = ACTIONS(2891), + [anon_sym_return] = ACTIONS(2891), + [anon_sym_throw] = ACTIONS(2891), + [anon_sym_case] = ACTIONS(2891), + [anon_sym_yield] = ACTIONS(2891), + [anon_sym_LBRACK] = ACTIONS(2889), + [anon_sym_class] = ACTIONS(2891), + [anon_sym_async] = ACTIONS(2891), + [anon_sym_function] = ACTIONS(2891), + [anon_sym_new] = ACTIONS(2891), + [anon_sym_using] = ACTIONS(2891), + [anon_sym_PLUS] = ACTIONS(2891), + [anon_sym_DASH] = ACTIONS(2891), + [anon_sym_SLASH] = ACTIONS(2891), + [anon_sym_LT] = ACTIONS(2889), + [anon_sym_TILDE] = ACTIONS(2889), + [anon_sym_void] = ACTIONS(2891), + [anon_sym_delete] = ACTIONS(2891), + [anon_sym_PLUS_PLUS] = ACTIONS(2889), + [anon_sym_DASH_DASH] = ACTIONS(2889), + [anon_sym_DQUOTE] = ACTIONS(2889), + [anon_sym_SQUOTE] = ACTIONS(2889), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2889), + [sym_number] = ACTIONS(2889), + [sym_private_property_identifier] = ACTIONS(2889), + [sym_this] = ACTIONS(2891), + [sym_super] = ACTIONS(2891), + [sym_true] = ACTIONS(2891), + [sym_false] = ACTIONS(2891), + [sym_null] = ACTIONS(2891), + [sym_undefined] = ACTIONS(2891), + [anon_sym_AT] = ACTIONS(2889), + [anon_sym_static] = ACTIONS(2891), + [anon_sym_readonly] = ACTIONS(2891), + [anon_sym_get] = ACTIONS(2891), + [anon_sym_set] = ACTIONS(2891), + [anon_sym_declare] = ACTIONS(2891), + [anon_sym_public] = ACTIONS(2891), + [anon_sym_private] = ACTIONS(2891), + [anon_sym_protected] = ACTIONS(2891), + [anon_sym_override] = ACTIONS(2891), + [anon_sym_module] = ACTIONS(2891), + [anon_sym_any] = ACTIONS(2891), + [anon_sym_number] = ACTIONS(2891), + [anon_sym_boolean] = ACTIONS(2891), + [anon_sym_string] = ACTIONS(2891), + [anon_sym_symbol] = ACTIONS(2891), + [anon_sym_object] = ACTIONS(2891), + [anon_sym_abstract] = ACTIONS(2891), + [anon_sym_interface] = ACTIONS(2891), + [anon_sym_enum] = ACTIONS(2891), [sym_html_comment] = ACTIONS(5), }, [919] = { - [ts_builtin_sym_end] = ACTIONS(2912), - [sym_identifier] = ACTIONS(2914), - [anon_sym_export] = ACTIONS(2914), - [anon_sym_default] = ACTIONS(2914), - [anon_sym_type] = ACTIONS(2914), - [anon_sym_namespace] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2912), - [anon_sym_RBRACE] = ACTIONS(2912), - [anon_sym_typeof] = ACTIONS(2914), - [anon_sym_import] = ACTIONS(2914), - [anon_sym_with] = ACTIONS(2914), - [anon_sym_var] = ACTIONS(2914), - [anon_sym_let] = ACTIONS(2914), - [anon_sym_const] = ACTIONS(2914), - [anon_sym_BANG] = ACTIONS(2912), - [anon_sym_else] = ACTIONS(2914), - [anon_sym_if] = ACTIONS(2914), - [anon_sym_switch] = ACTIONS(2914), - [anon_sym_for] = ACTIONS(2914), - [anon_sym_LPAREN] = ACTIONS(2912), - [anon_sym_SEMI] = ACTIONS(2912), - [anon_sym_await] = ACTIONS(2914), - [anon_sym_while] = ACTIONS(2914), - [anon_sym_do] = ACTIONS(2914), - [anon_sym_try] = ACTIONS(2914), - [anon_sym_break] = ACTIONS(2914), - [anon_sym_continue] = ACTIONS(2914), - [anon_sym_debugger] = ACTIONS(2914), - [anon_sym_return] = ACTIONS(2914), - [anon_sym_throw] = ACTIONS(2914), - [anon_sym_case] = ACTIONS(2914), - [anon_sym_yield] = ACTIONS(2914), - [anon_sym_LBRACK] = ACTIONS(2912), - [sym_glimmer_opening_tag] = ACTIONS(2912), - [anon_sym_class] = ACTIONS(2914), - [anon_sym_async] = ACTIONS(2914), - [anon_sym_function] = ACTIONS(2914), - [anon_sym_new] = ACTIONS(2914), - [anon_sym_using] = ACTIONS(2914), - [anon_sym_PLUS] = ACTIONS(2914), - [anon_sym_DASH] = ACTIONS(2914), - [anon_sym_SLASH] = ACTIONS(2914), - [anon_sym_LT] = ACTIONS(2914), - [anon_sym_TILDE] = ACTIONS(2912), - [anon_sym_void] = ACTIONS(2914), - [anon_sym_delete] = ACTIONS(2914), - [anon_sym_PLUS_PLUS] = ACTIONS(2912), - [anon_sym_DASH_DASH] = ACTIONS(2912), - [anon_sym_DQUOTE] = ACTIONS(2912), - [anon_sym_SQUOTE] = ACTIONS(2912), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2912), - [sym_number] = ACTIONS(2912), - [sym_private_property_identifier] = ACTIONS(2912), - [sym_this] = ACTIONS(2914), - [sym_super] = ACTIONS(2914), - [sym_true] = ACTIONS(2914), - [sym_false] = ACTIONS(2914), - [sym_null] = ACTIONS(2914), - [sym_undefined] = ACTIONS(2914), - [anon_sym_AT] = ACTIONS(2912), - [anon_sym_static] = ACTIONS(2914), - [anon_sym_readonly] = ACTIONS(2914), - [anon_sym_get] = ACTIONS(2914), - [anon_sym_set] = ACTIONS(2914), - [anon_sym_declare] = ACTIONS(2914), - [anon_sym_public] = ACTIONS(2914), - [anon_sym_private] = ACTIONS(2914), - [anon_sym_protected] = ACTIONS(2914), - [anon_sym_override] = ACTIONS(2914), - [anon_sym_module] = ACTIONS(2914), - [anon_sym_any] = ACTIONS(2914), - [anon_sym_number] = ACTIONS(2914), - [anon_sym_boolean] = ACTIONS(2914), - [anon_sym_string] = ACTIONS(2914), - [anon_sym_symbol] = ACTIONS(2914), - [anon_sym_object] = ACTIONS(2914), - [anon_sym_abstract] = ACTIONS(2914), - [anon_sym_interface] = ACTIONS(2914), - [anon_sym_enum] = ACTIONS(2914), + [ts_builtin_sym_end] = ACTIONS(2893), + [sym_identifier] = ACTIONS(2895), + [anon_sym_export] = ACTIONS(2895), + [anon_sym_default] = ACTIONS(2895), + [anon_sym_type] = ACTIONS(2895), + [anon_sym_namespace] = ACTIONS(2895), + [anon_sym_LBRACE] = ACTIONS(2893), + [anon_sym_RBRACE] = ACTIONS(2893), + [anon_sym_typeof] = ACTIONS(2895), + [anon_sym_import] = ACTIONS(2895), + [anon_sym_with] = ACTIONS(2895), + [anon_sym_var] = ACTIONS(2895), + [anon_sym_let] = ACTIONS(2895), + [anon_sym_const] = ACTIONS(2895), + [anon_sym_BANG] = ACTIONS(2893), + [anon_sym_else] = ACTIONS(2895), + [anon_sym_if] = ACTIONS(2895), + [anon_sym_switch] = ACTIONS(2895), + [anon_sym_for] = ACTIONS(2895), + [anon_sym_LPAREN] = ACTIONS(2893), + [anon_sym_SEMI] = ACTIONS(2893), + [anon_sym_await] = ACTIONS(2895), + [anon_sym_while] = ACTIONS(2895), + [anon_sym_do] = ACTIONS(2895), + [anon_sym_try] = ACTIONS(2895), + [anon_sym_break] = ACTIONS(2895), + [anon_sym_continue] = ACTIONS(2895), + [anon_sym_debugger] = ACTIONS(2895), + [anon_sym_return] = ACTIONS(2895), + [anon_sym_throw] = ACTIONS(2895), + [anon_sym_case] = ACTIONS(2895), + [anon_sym_yield] = ACTIONS(2895), + [anon_sym_LBRACK] = ACTIONS(2893), + [anon_sym_class] = ACTIONS(2895), + [anon_sym_async] = ACTIONS(2895), + [anon_sym_function] = ACTIONS(2895), + [anon_sym_new] = ACTIONS(2895), + [anon_sym_using] = ACTIONS(2895), + [anon_sym_PLUS] = ACTIONS(2895), + [anon_sym_DASH] = ACTIONS(2895), + [anon_sym_SLASH] = ACTIONS(2895), + [anon_sym_LT] = ACTIONS(2893), + [anon_sym_TILDE] = ACTIONS(2893), + [anon_sym_void] = ACTIONS(2895), + [anon_sym_delete] = ACTIONS(2895), + [anon_sym_PLUS_PLUS] = ACTIONS(2893), + [anon_sym_DASH_DASH] = ACTIONS(2893), + [anon_sym_DQUOTE] = ACTIONS(2893), + [anon_sym_SQUOTE] = ACTIONS(2893), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2893), + [sym_number] = ACTIONS(2893), + [sym_private_property_identifier] = ACTIONS(2893), + [sym_this] = ACTIONS(2895), + [sym_super] = ACTIONS(2895), + [sym_true] = ACTIONS(2895), + [sym_false] = ACTIONS(2895), + [sym_null] = ACTIONS(2895), + [sym_undefined] = ACTIONS(2895), + [anon_sym_AT] = ACTIONS(2893), + [anon_sym_static] = ACTIONS(2895), + [anon_sym_readonly] = ACTIONS(2895), + [anon_sym_get] = ACTIONS(2895), + [anon_sym_set] = ACTIONS(2895), + [anon_sym_declare] = ACTIONS(2895), + [anon_sym_public] = ACTIONS(2895), + [anon_sym_private] = ACTIONS(2895), + [anon_sym_protected] = ACTIONS(2895), + [anon_sym_override] = ACTIONS(2895), + [anon_sym_module] = ACTIONS(2895), + [anon_sym_any] = ACTIONS(2895), + [anon_sym_number] = ACTIONS(2895), + [anon_sym_boolean] = ACTIONS(2895), + [anon_sym_string] = ACTIONS(2895), + [anon_sym_symbol] = ACTIONS(2895), + [anon_sym_object] = ACTIONS(2895), + [anon_sym_abstract] = ACTIONS(2895), + [anon_sym_interface] = ACTIONS(2895), + [anon_sym_enum] = ACTIONS(2895), [sym_html_comment] = ACTIONS(5), }, [920] = { - [ts_builtin_sym_end] = ACTIONS(2916), - [sym_identifier] = ACTIONS(2918), - [anon_sym_export] = ACTIONS(2918), - [anon_sym_default] = ACTIONS(2918), - [anon_sym_type] = ACTIONS(2918), - [anon_sym_namespace] = ACTIONS(2918), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_RBRACE] = ACTIONS(2916), - [anon_sym_typeof] = ACTIONS(2918), - [anon_sym_import] = ACTIONS(2918), - [anon_sym_with] = ACTIONS(2918), - [anon_sym_var] = ACTIONS(2918), - [anon_sym_let] = ACTIONS(2918), - [anon_sym_const] = ACTIONS(2918), - [anon_sym_BANG] = ACTIONS(2916), - [anon_sym_else] = ACTIONS(2918), - [anon_sym_if] = ACTIONS(2918), - [anon_sym_switch] = ACTIONS(2918), - [anon_sym_for] = ACTIONS(2918), - [anon_sym_LPAREN] = ACTIONS(2916), - [anon_sym_SEMI] = ACTIONS(2916), - [anon_sym_await] = ACTIONS(2918), - [anon_sym_while] = ACTIONS(2918), - [anon_sym_do] = ACTIONS(2918), - [anon_sym_try] = ACTIONS(2918), - [anon_sym_break] = ACTIONS(2918), - [anon_sym_continue] = ACTIONS(2918), - [anon_sym_debugger] = ACTIONS(2918), - [anon_sym_return] = ACTIONS(2918), - [anon_sym_throw] = ACTIONS(2918), - [anon_sym_case] = ACTIONS(2918), - [anon_sym_yield] = ACTIONS(2918), - [anon_sym_LBRACK] = ACTIONS(2916), - [sym_glimmer_opening_tag] = ACTIONS(2916), - [anon_sym_class] = ACTIONS(2918), - [anon_sym_async] = ACTIONS(2918), - [anon_sym_function] = ACTIONS(2918), - [anon_sym_new] = ACTIONS(2918), - [anon_sym_using] = ACTIONS(2918), - [anon_sym_PLUS] = ACTIONS(2918), - [anon_sym_DASH] = ACTIONS(2918), - [anon_sym_SLASH] = ACTIONS(2918), - [anon_sym_LT] = ACTIONS(2918), - [anon_sym_TILDE] = ACTIONS(2916), - [anon_sym_void] = ACTIONS(2918), - [anon_sym_delete] = ACTIONS(2918), - [anon_sym_PLUS_PLUS] = ACTIONS(2916), - [anon_sym_DASH_DASH] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [anon_sym_SQUOTE] = ACTIONS(2916), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2916), - [sym_number] = ACTIONS(2916), - [sym_private_property_identifier] = ACTIONS(2916), - [sym_this] = ACTIONS(2918), - [sym_super] = ACTIONS(2918), - [sym_true] = ACTIONS(2918), - [sym_false] = ACTIONS(2918), - [sym_null] = ACTIONS(2918), - [sym_undefined] = ACTIONS(2918), - [anon_sym_AT] = ACTIONS(2916), - [anon_sym_static] = ACTIONS(2918), - [anon_sym_readonly] = ACTIONS(2918), - [anon_sym_get] = ACTIONS(2918), - [anon_sym_set] = ACTIONS(2918), - [anon_sym_declare] = ACTIONS(2918), - [anon_sym_public] = ACTIONS(2918), - [anon_sym_private] = ACTIONS(2918), - [anon_sym_protected] = ACTIONS(2918), - [anon_sym_override] = ACTIONS(2918), - [anon_sym_module] = ACTIONS(2918), - [anon_sym_any] = ACTIONS(2918), - [anon_sym_number] = ACTIONS(2918), - [anon_sym_boolean] = ACTIONS(2918), - [anon_sym_string] = ACTIONS(2918), - [anon_sym_symbol] = ACTIONS(2918), - [anon_sym_object] = ACTIONS(2918), - [anon_sym_abstract] = ACTIONS(2918), - [anon_sym_interface] = ACTIONS(2918), - [anon_sym_enum] = ACTIONS(2918), + [ts_builtin_sym_end] = ACTIONS(2897), + [sym_identifier] = ACTIONS(2899), + [anon_sym_export] = ACTIONS(2899), + [anon_sym_default] = ACTIONS(2899), + [anon_sym_type] = ACTIONS(2899), + [anon_sym_namespace] = ACTIONS(2899), + [anon_sym_LBRACE] = ACTIONS(2897), + [anon_sym_RBRACE] = ACTIONS(2897), + [anon_sym_typeof] = ACTIONS(2899), + [anon_sym_import] = ACTIONS(2899), + [anon_sym_with] = ACTIONS(2899), + [anon_sym_var] = ACTIONS(2899), + [anon_sym_let] = ACTIONS(2899), + [anon_sym_const] = ACTIONS(2899), + [anon_sym_BANG] = ACTIONS(2897), + [anon_sym_else] = ACTIONS(2899), + [anon_sym_if] = ACTIONS(2899), + [anon_sym_switch] = ACTIONS(2899), + [anon_sym_for] = ACTIONS(2899), + [anon_sym_LPAREN] = ACTIONS(2897), + [anon_sym_SEMI] = ACTIONS(2897), + [anon_sym_await] = ACTIONS(2899), + [anon_sym_while] = ACTIONS(2899), + [anon_sym_do] = ACTIONS(2899), + [anon_sym_try] = ACTIONS(2899), + [anon_sym_break] = ACTIONS(2899), + [anon_sym_continue] = ACTIONS(2899), + [anon_sym_debugger] = ACTIONS(2899), + [anon_sym_return] = ACTIONS(2899), + [anon_sym_throw] = ACTIONS(2899), + [anon_sym_case] = ACTIONS(2899), + [anon_sym_yield] = ACTIONS(2899), + [anon_sym_LBRACK] = ACTIONS(2897), + [anon_sym_class] = ACTIONS(2899), + [anon_sym_async] = ACTIONS(2899), + [anon_sym_function] = ACTIONS(2899), + [anon_sym_new] = ACTIONS(2899), + [anon_sym_using] = ACTIONS(2899), + [anon_sym_PLUS] = ACTIONS(2899), + [anon_sym_DASH] = ACTIONS(2899), + [anon_sym_SLASH] = ACTIONS(2899), + [anon_sym_LT] = ACTIONS(2897), + [anon_sym_TILDE] = ACTIONS(2897), + [anon_sym_void] = ACTIONS(2899), + [anon_sym_delete] = ACTIONS(2899), + [anon_sym_PLUS_PLUS] = ACTIONS(2897), + [anon_sym_DASH_DASH] = ACTIONS(2897), + [anon_sym_DQUOTE] = ACTIONS(2897), + [anon_sym_SQUOTE] = ACTIONS(2897), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2897), + [sym_number] = ACTIONS(2897), + [sym_private_property_identifier] = ACTIONS(2897), + [sym_this] = ACTIONS(2899), + [sym_super] = ACTIONS(2899), + [sym_true] = ACTIONS(2899), + [sym_false] = ACTIONS(2899), + [sym_null] = ACTIONS(2899), + [sym_undefined] = ACTIONS(2899), + [anon_sym_AT] = ACTIONS(2897), + [anon_sym_static] = ACTIONS(2899), + [anon_sym_readonly] = ACTIONS(2899), + [anon_sym_get] = ACTIONS(2899), + [anon_sym_set] = ACTIONS(2899), + [anon_sym_declare] = ACTIONS(2899), + [anon_sym_public] = ACTIONS(2899), + [anon_sym_private] = ACTIONS(2899), + [anon_sym_protected] = ACTIONS(2899), + [anon_sym_override] = ACTIONS(2899), + [anon_sym_module] = ACTIONS(2899), + [anon_sym_any] = ACTIONS(2899), + [anon_sym_number] = ACTIONS(2899), + [anon_sym_boolean] = ACTIONS(2899), + [anon_sym_string] = ACTIONS(2899), + [anon_sym_symbol] = ACTIONS(2899), + [anon_sym_object] = ACTIONS(2899), + [anon_sym_abstract] = ACTIONS(2899), + [anon_sym_interface] = ACTIONS(2899), + [anon_sym_enum] = ACTIONS(2899), [sym_html_comment] = ACTIONS(5), }, [921] = { - [ts_builtin_sym_end] = ACTIONS(2920), - [sym_identifier] = ACTIONS(2922), - [anon_sym_export] = ACTIONS(2922), - [anon_sym_default] = ACTIONS(2922), - [anon_sym_type] = ACTIONS(2922), - [anon_sym_namespace] = ACTIONS(2922), - [anon_sym_LBRACE] = ACTIONS(2920), - [anon_sym_RBRACE] = ACTIONS(2920), - [anon_sym_typeof] = ACTIONS(2922), - [anon_sym_import] = ACTIONS(2922), - [anon_sym_with] = ACTIONS(2922), - [anon_sym_var] = ACTIONS(2922), - [anon_sym_let] = ACTIONS(2922), - [anon_sym_const] = ACTIONS(2922), - [anon_sym_BANG] = ACTIONS(2920), - [anon_sym_else] = ACTIONS(2922), - [anon_sym_if] = ACTIONS(2922), - [anon_sym_switch] = ACTIONS(2922), - [anon_sym_for] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2920), - [anon_sym_SEMI] = ACTIONS(2920), - [anon_sym_await] = ACTIONS(2922), - [anon_sym_while] = ACTIONS(2922), - [anon_sym_do] = ACTIONS(2922), - [anon_sym_try] = ACTIONS(2922), - [anon_sym_break] = ACTIONS(2922), - [anon_sym_continue] = ACTIONS(2922), - [anon_sym_debugger] = ACTIONS(2922), - [anon_sym_return] = ACTIONS(2922), - [anon_sym_throw] = ACTIONS(2922), - [anon_sym_case] = ACTIONS(2922), - [anon_sym_yield] = ACTIONS(2922), - [anon_sym_LBRACK] = ACTIONS(2920), - [sym_glimmer_opening_tag] = ACTIONS(2920), - [anon_sym_class] = ACTIONS(2922), - [anon_sym_async] = ACTIONS(2922), - [anon_sym_function] = ACTIONS(2922), - [anon_sym_new] = ACTIONS(2922), - [anon_sym_using] = ACTIONS(2922), - [anon_sym_PLUS] = ACTIONS(2922), - [anon_sym_DASH] = ACTIONS(2922), - [anon_sym_SLASH] = ACTIONS(2922), - [anon_sym_LT] = ACTIONS(2922), - [anon_sym_TILDE] = ACTIONS(2920), - [anon_sym_void] = ACTIONS(2922), - [anon_sym_delete] = ACTIONS(2922), - [anon_sym_PLUS_PLUS] = ACTIONS(2920), - [anon_sym_DASH_DASH] = ACTIONS(2920), - [anon_sym_DQUOTE] = ACTIONS(2920), - [anon_sym_SQUOTE] = ACTIONS(2920), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2920), - [sym_number] = ACTIONS(2920), - [sym_private_property_identifier] = ACTIONS(2920), - [sym_this] = ACTIONS(2922), - [sym_super] = ACTIONS(2922), - [sym_true] = ACTIONS(2922), - [sym_false] = ACTIONS(2922), - [sym_null] = ACTIONS(2922), - [sym_undefined] = ACTIONS(2922), - [anon_sym_AT] = ACTIONS(2920), - [anon_sym_static] = ACTIONS(2922), - [anon_sym_readonly] = ACTIONS(2922), - [anon_sym_get] = ACTIONS(2922), - [anon_sym_set] = ACTIONS(2922), - [anon_sym_declare] = ACTIONS(2922), - [anon_sym_public] = ACTIONS(2922), - [anon_sym_private] = ACTIONS(2922), - [anon_sym_protected] = ACTIONS(2922), - [anon_sym_override] = ACTIONS(2922), - [anon_sym_module] = ACTIONS(2922), - [anon_sym_any] = ACTIONS(2922), - [anon_sym_number] = ACTIONS(2922), - [anon_sym_boolean] = ACTIONS(2922), - [anon_sym_string] = ACTIONS(2922), - [anon_sym_symbol] = ACTIONS(2922), - [anon_sym_object] = ACTIONS(2922), - [anon_sym_abstract] = ACTIONS(2922), - [anon_sym_interface] = ACTIONS(2922), - [anon_sym_enum] = ACTIONS(2922), + [ts_builtin_sym_end] = ACTIONS(2901), + [sym_identifier] = ACTIONS(2903), + [anon_sym_export] = ACTIONS(2903), + [anon_sym_default] = ACTIONS(2903), + [anon_sym_type] = ACTIONS(2903), + [anon_sym_namespace] = ACTIONS(2903), + [anon_sym_LBRACE] = ACTIONS(2901), + [anon_sym_RBRACE] = ACTIONS(2901), + [anon_sym_typeof] = ACTIONS(2903), + [anon_sym_import] = ACTIONS(2903), + [anon_sym_with] = ACTIONS(2903), + [anon_sym_var] = ACTIONS(2903), + [anon_sym_let] = ACTIONS(2903), + [anon_sym_const] = ACTIONS(2903), + [anon_sym_BANG] = ACTIONS(2901), + [anon_sym_else] = ACTIONS(2903), + [anon_sym_if] = ACTIONS(2903), + [anon_sym_switch] = ACTIONS(2903), + [anon_sym_for] = ACTIONS(2903), + [anon_sym_LPAREN] = ACTIONS(2901), + [anon_sym_SEMI] = ACTIONS(2901), + [anon_sym_await] = ACTIONS(2903), + [anon_sym_while] = ACTIONS(2903), + [anon_sym_do] = ACTIONS(2903), + [anon_sym_try] = ACTIONS(2903), + [anon_sym_break] = ACTIONS(2903), + [anon_sym_continue] = ACTIONS(2903), + [anon_sym_debugger] = ACTIONS(2903), + [anon_sym_return] = ACTIONS(2903), + [anon_sym_throw] = ACTIONS(2903), + [anon_sym_case] = ACTIONS(2903), + [anon_sym_yield] = ACTIONS(2903), + [anon_sym_LBRACK] = ACTIONS(2901), + [anon_sym_class] = ACTIONS(2903), + [anon_sym_async] = ACTIONS(2903), + [anon_sym_function] = ACTIONS(2903), + [anon_sym_new] = ACTIONS(2903), + [anon_sym_using] = ACTIONS(2903), + [anon_sym_PLUS] = ACTIONS(2903), + [anon_sym_DASH] = ACTIONS(2903), + [anon_sym_SLASH] = ACTIONS(2903), + [anon_sym_LT] = ACTIONS(2901), + [anon_sym_TILDE] = ACTIONS(2901), + [anon_sym_void] = ACTIONS(2903), + [anon_sym_delete] = ACTIONS(2903), + [anon_sym_PLUS_PLUS] = ACTIONS(2901), + [anon_sym_DASH_DASH] = ACTIONS(2901), + [anon_sym_DQUOTE] = ACTIONS(2901), + [anon_sym_SQUOTE] = ACTIONS(2901), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2901), + [sym_number] = ACTIONS(2901), + [sym_private_property_identifier] = ACTIONS(2901), + [sym_this] = ACTIONS(2903), + [sym_super] = ACTIONS(2903), + [sym_true] = ACTIONS(2903), + [sym_false] = ACTIONS(2903), + [sym_null] = ACTIONS(2903), + [sym_undefined] = ACTIONS(2903), + [anon_sym_AT] = ACTIONS(2901), + [anon_sym_static] = ACTIONS(2903), + [anon_sym_readonly] = ACTIONS(2903), + [anon_sym_get] = ACTIONS(2903), + [anon_sym_set] = ACTIONS(2903), + [anon_sym_declare] = ACTIONS(2903), + [anon_sym_public] = ACTIONS(2903), + [anon_sym_private] = ACTIONS(2903), + [anon_sym_protected] = ACTIONS(2903), + [anon_sym_override] = ACTIONS(2903), + [anon_sym_module] = ACTIONS(2903), + [anon_sym_any] = ACTIONS(2903), + [anon_sym_number] = ACTIONS(2903), + [anon_sym_boolean] = ACTIONS(2903), + [anon_sym_string] = ACTIONS(2903), + [anon_sym_symbol] = ACTIONS(2903), + [anon_sym_object] = ACTIONS(2903), + [anon_sym_abstract] = ACTIONS(2903), + [anon_sym_interface] = ACTIONS(2903), + [anon_sym_enum] = ACTIONS(2903), [sym_html_comment] = ACTIONS(5), }, [922] = { - [sym_import] = STATE(4676), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5631), - [sym_rest_pattern] = STATE(5271), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(3304), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3830), - [sym_tuple_parameter] = STATE(4907), - [sym_optional_tuple_parameter] = STATE(4907), - [sym_optional_type] = STATE(4907), - [sym_rest_type] = STATE(4907), - [sym__tuple_type_member] = STATE(4907), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5461), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(2560), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_COMMA] = ACTIONS(2924), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_RBRACK] = ACTIONS(2926), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2566), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [ts_builtin_sym_end] = ACTIONS(2905), + [sym_identifier] = ACTIONS(2907), + [anon_sym_export] = ACTIONS(2907), + [anon_sym_default] = ACTIONS(2907), + [anon_sym_type] = ACTIONS(2907), + [anon_sym_namespace] = ACTIONS(2907), + [anon_sym_LBRACE] = ACTIONS(2905), + [anon_sym_RBRACE] = ACTIONS(2905), + [anon_sym_typeof] = ACTIONS(2907), + [anon_sym_import] = ACTIONS(2907), + [anon_sym_with] = ACTIONS(2907), + [anon_sym_var] = ACTIONS(2907), + [anon_sym_let] = ACTIONS(2907), + [anon_sym_const] = ACTIONS(2907), + [anon_sym_BANG] = ACTIONS(2905), + [anon_sym_else] = ACTIONS(2907), + [anon_sym_if] = ACTIONS(2907), + [anon_sym_switch] = ACTIONS(2907), + [anon_sym_for] = ACTIONS(2907), + [anon_sym_LPAREN] = ACTIONS(2905), + [anon_sym_SEMI] = ACTIONS(2905), + [anon_sym_await] = ACTIONS(2907), + [anon_sym_while] = ACTIONS(2907), + [anon_sym_do] = ACTIONS(2907), + [anon_sym_try] = ACTIONS(2907), + [anon_sym_break] = ACTIONS(2907), + [anon_sym_continue] = ACTIONS(2907), + [anon_sym_debugger] = ACTIONS(2907), + [anon_sym_return] = ACTIONS(2907), + [anon_sym_throw] = ACTIONS(2907), + [anon_sym_case] = ACTIONS(2907), + [anon_sym_yield] = ACTIONS(2907), + [anon_sym_LBRACK] = ACTIONS(2905), + [anon_sym_class] = ACTIONS(2907), + [anon_sym_async] = ACTIONS(2907), + [anon_sym_function] = ACTIONS(2907), + [anon_sym_new] = ACTIONS(2907), + [anon_sym_using] = ACTIONS(2907), + [anon_sym_PLUS] = ACTIONS(2907), + [anon_sym_DASH] = ACTIONS(2907), + [anon_sym_SLASH] = ACTIONS(2907), + [anon_sym_LT] = ACTIONS(2905), + [anon_sym_TILDE] = ACTIONS(2905), + [anon_sym_void] = ACTIONS(2907), + [anon_sym_delete] = ACTIONS(2907), + [anon_sym_PLUS_PLUS] = ACTIONS(2905), + [anon_sym_DASH_DASH] = ACTIONS(2905), + [anon_sym_DQUOTE] = ACTIONS(2905), + [anon_sym_SQUOTE] = ACTIONS(2905), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2905), + [sym_number] = ACTIONS(2905), + [sym_private_property_identifier] = ACTIONS(2905), + [sym_this] = ACTIONS(2907), + [sym_super] = ACTIONS(2907), + [sym_true] = ACTIONS(2907), + [sym_false] = ACTIONS(2907), + [sym_null] = ACTIONS(2907), + [sym_undefined] = ACTIONS(2907), + [anon_sym_AT] = ACTIONS(2905), + [anon_sym_static] = ACTIONS(2907), + [anon_sym_readonly] = ACTIONS(2907), + [anon_sym_get] = ACTIONS(2907), + [anon_sym_set] = ACTIONS(2907), + [anon_sym_declare] = ACTIONS(2907), + [anon_sym_public] = ACTIONS(2907), + [anon_sym_private] = ACTIONS(2907), + [anon_sym_protected] = ACTIONS(2907), + [anon_sym_override] = ACTIONS(2907), + [anon_sym_module] = ACTIONS(2907), + [anon_sym_any] = ACTIONS(2907), + [anon_sym_number] = ACTIONS(2907), + [anon_sym_boolean] = ACTIONS(2907), + [anon_sym_string] = ACTIONS(2907), + [anon_sym_symbol] = ACTIONS(2907), + [anon_sym_object] = ACTIONS(2907), + [anon_sym_abstract] = ACTIONS(2907), + [anon_sym_interface] = ACTIONS(2907), + [anon_sym_enum] = ACTIONS(2907), [sym_html_comment] = ACTIONS(5), }, [923] = { - [ts_builtin_sym_end] = ACTIONS(2928), - [sym_identifier] = ACTIONS(2930), - [anon_sym_export] = ACTIONS(2930), - [anon_sym_default] = ACTIONS(2930), - [anon_sym_type] = ACTIONS(2930), - [anon_sym_namespace] = ACTIONS(2930), - [anon_sym_LBRACE] = ACTIONS(2928), - [anon_sym_RBRACE] = ACTIONS(2928), - [anon_sym_typeof] = ACTIONS(2930), - [anon_sym_import] = ACTIONS(2930), - [anon_sym_with] = ACTIONS(2930), - [anon_sym_var] = ACTIONS(2930), - [anon_sym_let] = ACTIONS(2930), - [anon_sym_const] = ACTIONS(2930), - [anon_sym_BANG] = ACTIONS(2928), - [anon_sym_else] = ACTIONS(2930), - [anon_sym_if] = ACTIONS(2930), - [anon_sym_switch] = ACTIONS(2930), - [anon_sym_for] = ACTIONS(2930), - [anon_sym_LPAREN] = ACTIONS(2928), - [anon_sym_SEMI] = ACTIONS(2928), - [anon_sym_await] = ACTIONS(2930), - [anon_sym_while] = ACTIONS(2930), - [anon_sym_do] = ACTIONS(2930), - [anon_sym_try] = ACTIONS(2930), - [anon_sym_break] = ACTIONS(2930), - [anon_sym_continue] = ACTIONS(2930), - [anon_sym_debugger] = ACTIONS(2930), - [anon_sym_return] = ACTIONS(2930), - [anon_sym_throw] = ACTIONS(2930), - [anon_sym_case] = ACTIONS(2930), - [anon_sym_yield] = ACTIONS(2930), - [anon_sym_LBRACK] = ACTIONS(2928), - [sym_glimmer_opening_tag] = ACTIONS(2928), - [anon_sym_class] = ACTIONS(2930), - [anon_sym_async] = ACTIONS(2930), - [anon_sym_function] = ACTIONS(2930), - [anon_sym_new] = ACTIONS(2930), - [anon_sym_using] = ACTIONS(2930), - [anon_sym_PLUS] = ACTIONS(2930), - [anon_sym_DASH] = ACTIONS(2930), - [anon_sym_SLASH] = ACTIONS(2930), - [anon_sym_LT] = ACTIONS(2930), - [anon_sym_TILDE] = ACTIONS(2928), - [anon_sym_void] = ACTIONS(2930), - [anon_sym_delete] = ACTIONS(2930), - [anon_sym_PLUS_PLUS] = ACTIONS(2928), - [anon_sym_DASH_DASH] = ACTIONS(2928), - [anon_sym_DQUOTE] = ACTIONS(2928), - [anon_sym_SQUOTE] = ACTIONS(2928), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2928), - [sym_number] = ACTIONS(2928), - [sym_private_property_identifier] = ACTIONS(2928), - [sym_this] = ACTIONS(2930), - [sym_super] = ACTIONS(2930), - [sym_true] = ACTIONS(2930), - [sym_false] = ACTIONS(2930), - [sym_null] = ACTIONS(2930), - [sym_undefined] = ACTIONS(2930), - [anon_sym_AT] = ACTIONS(2928), - [anon_sym_static] = ACTIONS(2930), - [anon_sym_readonly] = ACTIONS(2930), - [anon_sym_get] = ACTIONS(2930), - [anon_sym_set] = ACTIONS(2930), - [anon_sym_declare] = ACTIONS(2930), - [anon_sym_public] = ACTIONS(2930), - [anon_sym_private] = ACTIONS(2930), - [anon_sym_protected] = ACTIONS(2930), - [anon_sym_override] = ACTIONS(2930), - [anon_sym_module] = ACTIONS(2930), - [anon_sym_any] = ACTIONS(2930), - [anon_sym_number] = ACTIONS(2930), - [anon_sym_boolean] = ACTIONS(2930), - [anon_sym_string] = ACTIONS(2930), - [anon_sym_symbol] = ACTIONS(2930), - [anon_sym_object] = ACTIONS(2930), - [anon_sym_abstract] = ACTIONS(2930), - [anon_sym_interface] = ACTIONS(2930), - [anon_sym_enum] = ACTIONS(2930), + [ts_builtin_sym_end] = ACTIONS(2909), + [sym_identifier] = ACTIONS(2911), + [anon_sym_export] = ACTIONS(2911), + [anon_sym_default] = ACTIONS(2911), + [anon_sym_type] = ACTIONS(2911), + [anon_sym_namespace] = ACTIONS(2911), + [anon_sym_LBRACE] = ACTIONS(2909), + [anon_sym_RBRACE] = ACTIONS(2909), + [anon_sym_typeof] = ACTIONS(2911), + [anon_sym_import] = ACTIONS(2911), + [anon_sym_with] = ACTIONS(2911), + [anon_sym_var] = ACTIONS(2911), + [anon_sym_let] = ACTIONS(2911), + [anon_sym_const] = ACTIONS(2911), + [anon_sym_BANG] = ACTIONS(2909), + [anon_sym_else] = ACTIONS(2911), + [anon_sym_if] = ACTIONS(2911), + [anon_sym_switch] = ACTIONS(2911), + [anon_sym_for] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(2909), + [anon_sym_SEMI] = ACTIONS(2909), + [anon_sym_await] = ACTIONS(2911), + [anon_sym_while] = ACTIONS(2911), + [anon_sym_do] = ACTIONS(2911), + [anon_sym_try] = ACTIONS(2911), + [anon_sym_break] = ACTIONS(2911), + [anon_sym_continue] = ACTIONS(2911), + [anon_sym_debugger] = ACTIONS(2911), + [anon_sym_return] = ACTIONS(2911), + [anon_sym_throw] = ACTIONS(2911), + [anon_sym_case] = ACTIONS(2911), + [anon_sym_yield] = ACTIONS(2911), + [anon_sym_LBRACK] = ACTIONS(2909), + [anon_sym_class] = ACTIONS(2911), + [anon_sym_async] = ACTIONS(2911), + [anon_sym_function] = ACTIONS(2911), + [anon_sym_new] = ACTIONS(2911), + [anon_sym_using] = ACTIONS(2911), + [anon_sym_PLUS] = ACTIONS(2911), + [anon_sym_DASH] = ACTIONS(2911), + [anon_sym_SLASH] = ACTIONS(2911), + [anon_sym_LT] = ACTIONS(2909), + [anon_sym_TILDE] = ACTIONS(2909), + [anon_sym_void] = ACTIONS(2911), + [anon_sym_delete] = ACTIONS(2911), + [anon_sym_PLUS_PLUS] = ACTIONS(2909), + [anon_sym_DASH_DASH] = ACTIONS(2909), + [anon_sym_DQUOTE] = ACTIONS(2909), + [anon_sym_SQUOTE] = ACTIONS(2909), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2909), + [sym_number] = ACTIONS(2909), + [sym_private_property_identifier] = ACTIONS(2909), + [sym_this] = ACTIONS(2911), + [sym_super] = ACTIONS(2911), + [sym_true] = ACTIONS(2911), + [sym_false] = ACTIONS(2911), + [sym_null] = ACTIONS(2911), + [sym_undefined] = ACTIONS(2911), + [anon_sym_AT] = ACTIONS(2909), + [anon_sym_static] = ACTIONS(2911), + [anon_sym_readonly] = ACTIONS(2911), + [anon_sym_get] = ACTIONS(2911), + [anon_sym_set] = ACTIONS(2911), + [anon_sym_declare] = ACTIONS(2911), + [anon_sym_public] = ACTIONS(2911), + [anon_sym_private] = ACTIONS(2911), + [anon_sym_protected] = ACTIONS(2911), + [anon_sym_override] = ACTIONS(2911), + [anon_sym_module] = ACTIONS(2911), + [anon_sym_any] = ACTIONS(2911), + [anon_sym_number] = ACTIONS(2911), + [anon_sym_boolean] = ACTIONS(2911), + [anon_sym_string] = ACTIONS(2911), + [anon_sym_symbol] = ACTIONS(2911), + [anon_sym_object] = ACTIONS(2911), + [anon_sym_abstract] = ACTIONS(2911), + [anon_sym_interface] = ACTIONS(2911), + [anon_sym_enum] = ACTIONS(2911), [sym_html_comment] = ACTIONS(5), }, [924] = { - [ts_builtin_sym_end] = ACTIONS(2932), - [sym_identifier] = ACTIONS(2934), - [anon_sym_export] = ACTIONS(2934), - [anon_sym_default] = ACTIONS(2934), - [anon_sym_type] = ACTIONS(2934), - [anon_sym_namespace] = ACTIONS(2934), - [anon_sym_LBRACE] = ACTIONS(2932), - [anon_sym_RBRACE] = ACTIONS(2932), - [anon_sym_typeof] = ACTIONS(2934), - [anon_sym_import] = ACTIONS(2934), - [anon_sym_with] = ACTIONS(2934), - [anon_sym_var] = ACTIONS(2934), - [anon_sym_let] = ACTIONS(2934), - [anon_sym_const] = ACTIONS(2934), - [anon_sym_BANG] = ACTIONS(2932), - [anon_sym_else] = ACTIONS(2934), - [anon_sym_if] = ACTIONS(2934), - [anon_sym_switch] = ACTIONS(2934), - [anon_sym_for] = ACTIONS(2934), - [anon_sym_LPAREN] = ACTIONS(2932), - [anon_sym_SEMI] = ACTIONS(2932), - [anon_sym_await] = ACTIONS(2934), - [anon_sym_while] = ACTIONS(2934), - [anon_sym_do] = ACTIONS(2934), - [anon_sym_try] = ACTIONS(2934), - [anon_sym_break] = ACTIONS(2934), - [anon_sym_continue] = ACTIONS(2934), - [anon_sym_debugger] = ACTIONS(2934), - [anon_sym_return] = ACTIONS(2934), - [anon_sym_throw] = ACTIONS(2934), - [anon_sym_case] = ACTIONS(2934), - [anon_sym_yield] = ACTIONS(2934), - [anon_sym_LBRACK] = ACTIONS(2932), - [sym_glimmer_opening_tag] = ACTIONS(2932), - [anon_sym_class] = ACTIONS(2934), - [anon_sym_async] = ACTIONS(2934), - [anon_sym_function] = ACTIONS(2934), - [anon_sym_new] = ACTIONS(2934), - [anon_sym_using] = ACTIONS(2934), - [anon_sym_PLUS] = ACTIONS(2934), - [anon_sym_DASH] = ACTIONS(2934), - [anon_sym_SLASH] = ACTIONS(2934), - [anon_sym_LT] = ACTIONS(2934), - [anon_sym_TILDE] = ACTIONS(2932), - [anon_sym_void] = ACTIONS(2934), - [anon_sym_delete] = ACTIONS(2934), - [anon_sym_PLUS_PLUS] = ACTIONS(2932), - [anon_sym_DASH_DASH] = ACTIONS(2932), - [anon_sym_DQUOTE] = ACTIONS(2932), - [anon_sym_SQUOTE] = ACTIONS(2932), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2932), - [sym_number] = ACTIONS(2932), - [sym_private_property_identifier] = ACTIONS(2932), - [sym_this] = ACTIONS(2934), - [sym_super] = ACTIONS(2934), - [sym_true] = ACTIONS(2934), - [sym_false] = ACTIONS(2934), - [sym_null] = ACTIONS(2934), - [sym_undefined] = ACTIONS(2934), - [anon_sym_AT] = ACTIONS(2932), - [anon_sym_static] = ACTIONS(2934), - [anon_sym_readonly] = ACTIONS(2934), - [anon_sym_get] = ACTIONS(2934), - [anon_sym_set] = ACTIONS(2934), - [anon_sym_declare] = ACTIONS(2934), - [anon_sym_public] = ACTIONS(2934), - [anon_sym_private] = ACTIONS(2934), - [anon_sym_protected] = ACTIONS(2934), - [anon_sym_override] = ACTIONS(2934), - [anon_sym_module] = ACTIONS(2934), - [anon_sym_any] = ACTIONS(2934), - [anon_sym_number] = ACTIONS(2934), - [anon_sym_boolean] = ACTIONS(2934), - [anon_sym_string] = ACTIONS(2934), - [anon_sym_symbol] = ACTIONS(2934), - [anon_sym_object] = ACTIONS(2934), - [anon_sym_abstract] = ACTIONS(2934), - [anon_sym_interface] = ACTIONS(2934), - [anon_sym_enum] = ACTIONS(2934), + [ts_builtin_sym_end] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2915), + [anon_sym_export] = ACTIONS(2915), + [anon_sym_default] = ACTIONS(2915), + [anon_sym_type] = ACTIONS(2915), + [anon_sym_namespace] = ACTIONS(2915), + [anon_sym_LBRACE] = ACTIONS(2913), + [anon_sym_RBRACE] = ACTIONS(2913), + [anon_sym_typeof] = ACTIONS(2915), + [anon_sym_import] = ACTIONS(2915), + [anon_sym_with] = ACTIONS(2915), + [anon_sym_var] = ACTIONS(2915), + [anon_sym_let] = ACTIONS(2915), + [anon_sym_const] = ACTIONS(2915), + [anon_sym_BANG] = ACTIONS(2913), + [anon_sym_else] = ACTIONS(2915), + [anon_sym_if] = ACTIONS(2915), + [anon_sym_switch] = ACTIONS(2915), + [anon_sym_for] = ACTIONS(2915), + [anon_sym_LPAREN] = ACTIONS(2913), + [anon_sym_SEMI] = ACTIONS(2913), + [anon_sym_await] = ACTIONS(2915), + [anon_sym_while] = ACTIONS(2915), + [anon_sym_do] = ACTIONS(2915), + [anon_sym_try] = ACTIONS(2915), + [anon_sym_break] = ACTIONS(2915), + [anon_sym_continue] = ACTIONS(2915), + [anon_sym_debugger] = ACTIONS(2915), + [anon_sym_return] = ACTIONS(2915), + [anon_sym_throw] = ACTIONS(2915), + [anon_sym_case] = ACTIONS(2915), + [anon_sym_yield] = ACTIONS(2915), + [anon_sym_LBRACK] = ACTIONS(2913), + [anon_sym_class] = ACTIONS(2915), + [anon_sym_async] = ACTIONS(2915), + [anon_sym_function] = ACTIONS(2915), + [anon_sym_new] = ACTIONS(2915), + [anon_sym_using] = ACTIONS(2915), + [anon_sym_PLUS] = ACTIONS(2915), + [anon_sym_DASH] = ACTIONS(2915), + [anon_sym_SLASH] = ACTIONS(2915), + [anon_sym_LT] = ACTIONS(2913), + [anon_sym_TILDE] = ACTIONS(2913), + [anon_sym_void] = ACTIONS(2915), + [anon_sym_delete] = ACTIONS(2915), + [anon_sym_PLUS_PLUS] = ACTIONS(2913), + [anon_sym_DASH_DASH] = ACTIONS(2913), + [anon_sym_DQUOTE] = ACTIONS(2913), + [anon_sym_SQUOTE] = ACTIONS(2913), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2913), + [sym_number] = ACTIONS(2913), + [sym_private_property_identifier] = ACTIONS(2913), + [sym_this] = ACTIONS(2915), + [sym_super] = ACTIONS(2915), + [sym_true] = ACTIONS(2915), + [sym_false] = ACTIONS(2915), + [sym_null] = ACTIONS(2915), + [sym_undefined] = ACTIONS(2915), + [anon_sym_AT] = ACTIONS(2913), + [anon_sym_static] = ACTIONS(2915), + [anon_sym_readonly] = ACTIONS(2915), + [anon_sym_get] = ACTIONS(2915), + [anon_sym_set] = ACTIONS(2915), + [anon_sym_declare] = ACTIONS(2915), + [anon_sym_public] = ACTIONS(2915), + [anon_sym_private] = ACTIONS(2915), + [anon_sym_protected] = ACTIONS(2915), + [anon_sym_override] = ACTIONS(2915), + [anon_sym_module] = ACTIONS(2915), + [anon_sym_any] = ACTIONS(2915), + [anon_sym_number] = ACTIONS(2915), + [anon_sym_boolean] = ACTIONS(2915), + [anon_sym_string] = ACTIONS(2915), + [anon_sym_symbol] = ACTIONS(2915), + [anon_sym_object] = ACTIONS(2915), + [anon_sym_abstract] = ACTIONS(2915), + [anon_sym_interface] = ACTIONS(2915), + [anon_sym_enum] = ACTIONS(2915), [sym_html_comment] = ACTIONS(5), }, [925] = { - [sym_import] = STATE(4676), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5631), - [sym_rest_pattern] = STATE(5271), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(3304), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3830), - [sym_tuple_parameter] = STATE(4538), - [sym_optional_tuple_parameter] = STATE(4538), - [sym_optional_type] = STATE(4538), - [sym_rest_type] = STATE(4538), - [sym__tuple_type_member] = STATE(4538), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5461), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(2560), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_COMMA] = ACTIONS(2936), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_RBRACK] = ACTIONS(2938), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2566), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [ts_builtin_sym_end] = ACTIONS(2917), + [sym_identifier] = ACTIONS(2919), + [anon_sym_export] = ACTIONS(2919), + [anon_sym_default] = ACTIONS(2919), + [anon_sym_type] = ACTIONS(2919), + [anon_sym_namespace] = ACTIONS(2919), + [anon_sym_LBRACE] = ACTIONS(2917), + [anon_sym_RBRACE] = ACTIONS(2917), + [anon_sym_typeof] = ACTIONS(2919), + [anon_sym_import] = ACTIONS(2919), + [anon_sym_with] = ACTIONS(2919), + [anon_sym_var] = ACTIONS(2919), + [anon_sym_let] = ACTIONS(2919), + [anon_sym_const] = ACTIONS(2919), + [anon_sym_BANG] = ACTIONS(2917), + [anon_sym_else] = ACTIONS(2919), + [anon_sym_if] = ACTIONS(2919), + [anon_sym_switch] = ACTIONS(2919), + [anon_sym_for] = ACTIONS(2919), + [anon_sym_LPAREN] = ACTIONS(2917), + [anon_sym_SEMI] = ACTIONS(2917), + [anon_sym_await] = ACTIONS(2919), + [anon_sym_while] = ACTIONS(2919), + [anon_sym_do] = ACTIONS(2919), + [anon_sym_try] = ACTIONS(2919), + [anon_sym_break] = ACTIONS(2919), + [anon_sym_continue] = ACTIONS(2919), + [anon_sym_debugger] = ACTIONS(2919), + [anon_sym_return] = ACTIONS(2919), + [anon_sym_throw] = ACTIONS(2919), + [anon_sym_case] = ACTIONS(2919), + [anon_sym_yield] = ACTIONS(2919), + [anon_sym_LBRACK] = ACTIONS(2917), + [anon_sym_class] = ACTIONS(2919), + [anon_sym_async] = ACTIONS(2919), + [anon_sym_function] = ACTIONS(2919), + [anon_sym_new] = ACTIONS(2919), + [anon_sym_using] = ACTIONS(2919), + [anon_sym_PLUS] = ACTIONS(2919), + [anon_sym_DASH] = ACTIONS(2919), + [anon_sym_SLASH] = ACTIONS(2919), + [anon_sym_LT] = ACTIONS(2917), + [anon_sym_TILDE] = ACTIONS(2917), + [anon_sym_void] = ACTIONS(2919), + [anon_sym_delete] = ACTIONS(2919), + [anon_sym_PLUS_PLUS] = ACTIONS(2917), + [anon_sym_DASH_DASH] = ACTIONS(2917), + [anon_sym_DQUOTE] = ACTIONS(2917), + [anon_sym_SQUOTE] = ACTIONS(2917), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2917), + [sym_number] = ACTIONS(2917), + [sym_private_property_identifier] = ACTIONS(2917), + [sym_this] = ACTIONS(2919), + [sym_super] = ACTIONS(2919), + [sym_true] = ACTIONS(2919), + [sym_false] = ACTIONS(2919), + [sym_null] = ACTIONS(2919), + [sym_undefined] = ACTIONS(2919), + [anon_sym_AT] = ACTIONS(2917), + [anon_sym_static] = ACTIONS(2919), + [anon_sym_readonly] = ACTIONS(2919), + [anon_sym_get] = ACTIONS(2919), + [anon_sym_set] = ACTIONS(2919), + [anon_sym_declare] = ACTIONS(2919), + [anon_sym_public] = ACTIONS(2919), + [anon_sym_private] = ACTIONS(2919), + [anon_sym_protected] = ACTIONS(2919), + [anon_sym_override] = ACTIONS(2919), + [anon_sym_module] = ACTIONS(2919), + [anon_sym_any] = ACTIONS(2919), + [anon_sym_number] = ACTIONS(2919), + [anon_sym_boolean] = ACTIONS(2919), + [anon_sym_string] = ACTIONS(2919), + [anon_sym_symbol] = ACTIONS(2919), + [anon_sym_object] = ACTIONS(2919), + [anon_sym_abstract] = ACTIONS(2919), + [anon_sym_interface] = ACTIONS(2919), + [anon_sym_enum] = ACTIONS(2919), [sym_html_comment] = ACTIONS(5), }, [926] = { - [ts_builtin_sym_end] = ACTIONS(2940), - [sym_identifier] = ACTIONS(2942), - [anon_sym_export] = ACTIONS(2942), - [anon_sym_default] = ACTIONS(2942), - [anon_sym_type] = ACTIONS(2942), - [anon_sym_namespace] = ACTIONS(2942), - [anon_sym_LBRACE] = ACTIONS(2940), - [anon_sym_RBRACE] = ACTIONS(2940), - [anon_sym_typeof] = ACTIONS(2942), - [anon_sym_import] = ACTIONS(2942), - [anon_sym_with] = ACTIONS(2942), - [anon_sym_var] = ACTIONS(2942), - [anon_sym_let] = ACTIONS(2942), - [anon_sym_const] = ACTIONS(2942), - [anon_sym_BANG] = ACTIONS(2940), - [anon_sym_else] = ACTIONS(2942), - [anon_sym_if] = ACTIONS(2942), - [anon_sym_switch] = ACTIONS(2942), - [anon_sym_for] = ACTIONS(2942), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_SEMI] = ACTIONS(2940), - [anon_sym_await] = ACTIONS(2942), - [anon_sym_while] = ACTIONS(2942), - [anon_sym_do] = ACTIONS(2942), - [anon_sym_try] = ACTIONS(2942), - [anon_sym_break] = ACTIONS(2942), - [anon_sym_continue] = ACTIONS(2942), - [anon_sym_debugger] = ACTIONS(2942), - [anon_sym_return] = ACTIONS(2942), - [anon_sym_throw] = ACTIONS(2942), - [anon_sym_case] = ACTIONS(2942), - [anon_sym_yield] = ACTIONS(2942), - [anon_sym_LBRACK] = ACTIONS(2940), - [sym_glimmer_opening_tag] = ACTIONS(2940), - [anon_sym_class] = ACTIONS(2942), - [anon_sym_async] = ACTIONS(2942), - [anon_sym_function] = ACTIONS(2942), - [anon_sym_new] = ACTIONS(2942), - [anon_sym_using] = ACTIONS(2942), - [anon_sym_PLUS] = ACTIONS(2942), - [anon_sym_DASH] = ACTIONS(2942), - [anon_sym_SLASH] = ACTIONS(2942), - [anon_sym_LT] = ACTIONS(2942), - [anon_sym_TILDE] = ACTIONS(2940), - [anon_sym_void] = ACTIONS(2942), - [anon_sym_delete] = ACTIONS(2942), - [anon_sym_PLUS_PLUS] = ACTIONS(2940), - [anon_sym_DASH_DASH] = ACTIONS(2940), - [anon_sym_DQUOTE] = ACTIONS(2940), - [anon_sym_SQUOTE] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2940), - [sym_number] = ACTIONS(2940), - [sym_private_property_identifier] = ACTIONS(2940), - [sym_this] = ACTIONS(2942), - [sym_super] = ACTIONS(2942), - [sym_true] = ACTIONS(2942), - [sym_false] = ACTIONS(2942), - [sym_null] = ACTIONS(2942), - [sym_undefined] = ACTIONS(2942), - [anon_sym_AT] = ACTIONS(2940), - [anon_sym_static] = ACTIONS(2942), - [anon_sym_readonly] = ACTIONS(2942), - [anon_sym_get] = ACTIONS(2942), - [anon_sym_set] = ACTIONS(2942), - [anon_sym_declare] = ACTIONS(2942), - [anon_sym_public] = ACTIONS(2942), - [anon_sym_private] = ACTIONS(2942), - [anon_sym_protected] = ACTIONS(2942), - [anon_sym_override] = ACTIONS(2942), - [anon_sym_module] = ACTIONS(2942), - [anon_sym_any] = ACTIONS(2942), - [anon_sym_number] = ACTIONS(2942), - [anon_sym_boolean] = ACTIONS(2942), - [anon_sym_string] = ACTIONS(2942), - [anon_sym_symbol] = ACTIONS(2942), - [anon_sym_object] = ACTIONS(2942), - [anon_sym_abstract] = ACTIONS(2942), - [anon_sym_interface] = ACTIONS(2942), - [anon_sym_enum] = ACTIONS(2942), + [ts_builtin_sym_end] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2915), + [anon_sym_export] = ACTIONS(2915), + [anon_sym_default] = ACTIONS(2915), + [anon_sym_type] = ACTIONS(2915), + [anon_sym_namespace] = ACTIONS(2915), + [anon_sym_LBRACE] = ACTIONS(2913), + [anon_sym_RBRACE] = ACTIONS(2913), + [anon_sym_typeof] = ACTIONS(2915), + [anon_sym_import] = ACTIONS(2915), + [anon_sym_with] = ACTIONS(2915), + [anon_sym_var] = ACTIONS(2915), + [anon_sym_let] = ACTIONS(2915), + [anon_sym_const] = ACTIONS(2915), + [anon_sym_BANG] = ACTIONS(2913), + [anon_sym_else] = ACTIONS(2915), + [anon_sym_if] = ACTIONS(2915), + [anon_sym_switch] = ACTIONS(2915), + [anon_sym_for] = ACTIONS(2915), + [anon_sym_LPAREN] = ACTIONS(2913), + [anon_sym_SEMI] = ACTIONS(2913), + [anon_sym_await] = ACTIONS(2915), + [anon_sym_while] = ACTIONS(2915), + [anon_sym_do] = ACTIONS(2915), + [anon_sym_try] = ACTIONS(2915), + [anon_sym_break] = ACTIONS(2915), + [anon_sym_continue] = ACTIONS(2915), + [anon_sym_debugger] = ACTIONS(2915), + [anon_sym_return] = ACTIONS(2915), + [anon_sym_throw] = ACTIONS(2915), + [anon_sym_case] = ACTIONS(2915), + [anon_sym_yield] = ACTIONS(2915), + [anon_sym_LBRACK] = ACTIONS(2913), + [anon_sym_class] = ACTIONS(2915), + [anon_sym_async] = ACTIONS(2915), + [anon_sym_function] = ACTIONS(2915), + [anon_sym_new] = ACTIONS(2915), + [anon_sym_using] = ACTIONS(2915), + [anon_sym_PLUS] = ACTIONS(2915), + [anon_sym_DASH] = ACTIONS(2915), + [anon_sym_SLASH] = ACTIONS(2915), + [anon_sym_LT] = ACTIONS(2913), + [anon_sym_TILDE] = ACTIONS(2913), + [anon_sym_void] = ACTIONS(2915), + [anon_sym_delete] = ACTIONS(2915), + [anon_sym_PLUS_PLUS] = ACTIONS(2913), + [anon_sym_DASH_DASH] = ACTIONS(2913), + [anon_sym_DQUOTE] = ACTIONS(2913), + [anon_sym_SQUOTE] = ACTIONS(2913), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2913), + [sym_number] = ACTIONS(2913), + [sym_private_property_identifier] = ACTIONS(2913), + [sym_this] = ACTIONS(2915), + [sym_super] = ACTIONS(2915), + [sym_true] = ACTIONS(2915), + [sym_false] = ACTIONS(2915), + [sym_null] = ACTIONS(2915), + [sym_undefined] = ACTIONS(2915), + [anon_sym_AT] = ACTIONS(2913), + [anon_sym_static] = ACTIONS(2915), + [anon_sym_readonly] = ACTIONS(2915), + [anon_sym_get] = ACTIONS(2915), + [anon_sym_set] = ACTIONS(2915), + [anon_sym_declare] = ACTIONS(2915), + [anon_sym_public] = ACTIONS(2915), + [anon_sym_private] = ACTIONS(2915), + [anon_sym_protected] = ACTIONS(2915), + [anon_sym_override] = ACTIONS(2915), + [anon_sym_module] = ACTIONS(2915), + [anon_sym_any] = ACTIONS(2915), + [anon_sym_number] = ACTIONS(2915), + [anon_sym_boolean] = ACTIONS(2915), + [anon_sym_string] = ACTIONS(2915), + [anon_sym_symbol] = ACTIONS(2915), + [anon_sym_object] = ACTIONS(2915), + [anon_sym_abstract] = ACTIONS(2915), + [anon_sym_interface] = ACTIONS(2915), + [anon_sym_enum] = ACTIONS(2915), [sym_html_comment] = ACTIONS(5), }, [927] = { - [ts_builtin_sym_end] = ACTIONS(2944), - [sym_identifier] = ACTIONS(2946), - [anon_sym_export] = ACTIONS(2946), - [anon_sym_default] = ACTIONS(2946), - [anon_sym_type] = ACTIONS(2946), - [anon_sym_namespace] = ACTIONS(2946), - [anon_sym_LBRACE] = ACTIONS(2944), - [anon_sym_RBRACE] = ACTIONS(2944), - [anon_sym_typeof] = ACTIONS(2946), - [anon_sym_import] = ACTIONS(2946), - [anon_sym_with] = ACTIONS(2946), - [anon_sym_var] = ACTIONS(2946), - [anon_sym_let] = ACTIONS(2946), - [anon_sym_const] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2944), - [anon_sym_else] = ACTIONS(2946), - [anon_sym_if] = ACTIONS(2946), - [anon_sym_switch] = ACTIONS(2946), - [anon_sym_for] = ACTIONS(2946), - [anon_sym_LPAREN] = ACTIONS(2944), - [anon_sym_SEMI] = ACTIONS(2944), - [anon_sym_await] = ACTIONS(2946), - [anon_sym_while] = ACTIONS(2946), - [anon_sym_do] = ACTIONS(2946), - [anon_sym_try] = ACTIONS(2946), - [anon_sym_break] = ACTIONS(2946), - [anon_sym_continue] = ACTIONS(2946), - [anon_sym_debugger] = ACTIONS(2946), - [anon_sym_return] = ACTIONS(2946), - [anon_sym_throw] = ACTIONS(2946), - [anon_sym_case] = ACTIONS(2946), - [anon_sym_yield] = ACTIONS(2946), - [anon_sym_LBRACK] = ACTIONS(2944), - [sym_glimmer_opening_tag] = ACTIONS(2944), - [anon_sym_class] = ACTIONS(2946), - [anon_sym_async] = ACTIONS(2946), - [anon_sym_function] = ACTIONS(2946), - [anon_sym_new] = ACTIONS(2946), - [anon_sym_using] = ACTIONS(2946), - [anon_sym_PLUS] = ACTIONS(2946), - [anon_sym_DASH] = ACTIONS(2946), - [anon_sym_SLASH] = ACTIONS(2946), - [anon_sym_LT] = ACTIONS(2946), - [anon_sym_TILDE] = ACTIONS(2944), - [anon_sym_void] = ACTIONS(2946), - [anon_sym_delete] = ACTIONS(2946), - [anon_sym_PLUS_PLUS] = ACTIONS(2944), - [anon_sym_DASH_DASH] = ACTIONS(2944), - [anon_sym_DQUOTE] = ACTIONS(2944), - [anon_sym_SQUOTE] = ACTIONS(2944), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2944), - [sym_number] = ACTIONS(2944), - [sym_private_property_identifier] = ACTIONS(2944), - [sym_this] = ACTIONS(2946), - [sym_super] = ACTIONS(2946), - [sym_true] = ACTIONS(2946), - [sym_false] = ACTIONS(2946), - [sym_null] = ACTIONS(2946), - [sym_undefined] = ACTIONS(2946), - [anon_sym_AT] = ACTIONS(2944), - [anon_sym_static] = ACTIONS(2946), - [anon_sym_readonly] = ACTIONS(2946), - [anon_sym_get] = ACTIONS(2946), - [anon_sym_set] = ACTIONS(2946), - [anon_sym_declare] = ACTIONS(2946), - [anon_sym_public] = ACTIONS(2946), - [anon_sym_private] = ACTIONS(2946), - [anon_sym_protected] = ACTIONS(2946), - [anon_sym_override] = ACTIONS(2946), - [anon_sym_module] = ACTIONS(2946), - [anon_sym_any] = ACTIONS(2946), - [anon_sym_number] = ACTIONS(2946), - [anon_sym_boolean] = ACTIONS(2946), - [anon_sym_string] = ACTIONS(2946), - [anon_sym_symbol] = ACTIONS(2946), - [anon_sym_object] = ACTIONS(2946), - [anon_sym_abstract] = ACTIONS(2946), - [anon_sym_interface] = ACTIONS(2946), - [anon_sym_enum] = ACTIONS(2946), + [ts_builtin_sym_end] = ACTIONS(2921), + [sym_identifier] = ACTIONS(2923), + [anon_sym_export] = ACTIONS(2923), + [anon_sym_default] = ACTIONS(2923), + [anon_sym_type] = ACTIONS(2923), + [anon_sym_namespace] = ACTIONS(2923), + [anon_sym_LBRACE] = ACTIONS(2921), + [anon_sym_RBRACE] = ACTIONS(2921), + [anon_sym_typeof] = ACTIONS(2923), + [anon_sym_import] = ACTIONS(2923), + [anon_sym_with] = ACTIONS(2923), + [anon_sym_var] = ACTIONS(2923), + [anon_sym_let] = ACTIONS(2923), + [anon_sym_const] = ACTIONS(2923), + [anon_sym_BANG] = ACTIONS(2921), + [anon_sym_else] = ACTIONS(2923), + [anon_sym_if] = ACTIONS(2923), + [anon_sym_switch] = ACTIONS(2923), + [anon_sym_for] = ACTIONS(2923), + [anon_sym_LPAREN] = ACTIONS(2921), + [anon_sym_SEMI] = ACTIONS(2921), + [anon_sym_await] = ACTIONS(2923), + [anon_sym_while] = ACTIONS(2923), + [anon_sym_do] = ACTIONS(2923), + [anon_sym_try] = ACTIONS(2923), + [anon_sym_break] = ACTIONS(2923), + [anon_sym_continue] = ACTIONS(2923), + [anon_sym_debugger] = ACTIONS(2923), + [anon_sym_return] = ACTIONS(2923), + [anon_sym_throw] = ACTIONS(2923), + [anon_sym_case] = ACTIONS(2923), + [anon_sym_yield] = ACTIONS(2923), + [anon_sym_LBRACK] = ACTIONS(2921), + [anon_sym_class] = ACTIONS(2923), + [anon_sym_async] = ACTIONS(2923), + [anon_sym_function] = ACTIONS(2923), + [anon_sym_new] = ACTIONS(2923), + [anon_sym_using] = ACTIONS(2923), + [anon_sym_PLUS] = ACTIONS(2923), + [anon_sym_DASH] = ACTIONS(2923), + [anon_sym_SLASH] = ACTIONS(2923), + [anon_sym_LT] = ACTIONS(2921), + [anon_sym_TILDE] = ACTIONS(2921), + [anon_sym_void] = ACTIONS(2923), + [anon_sym_delete] = ACTIONS(2923), + [anon_sym_PLUS_PLUS] = ACTIONS(2921), + [anon_sym_DASH_DASH] = ACTIONS(2921), + [anon_sym_DQUOTE] = ACTIONS(2921), + [anon_sym_SQUOTE] = ACTIONS(2921), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2921), + [sym_number] = ACTIONS(2921), + [sym_private_property_identifier] = ACTIONS(2921), + [sym_this] = ACTIONS(2923), + [sym_super] = ACTIONS(2923), + [sym_true] = ACTIONS(2923), + [sym_false] = ACTIONS(2923), + [sym_null] = ACTIONS(2923), + [sym_undefined] = ACTIONS(2923), + [anon_sym_AT] = ACTIONS(2921), + [anon_sym_static] = ACTIONS(2923), + [anon_sym_readonly] = ACTIONS(2923), + [anon_sym_get] = ACTIONS(2923), + [anon_sym_set] = ACTIONS(2923), + [anon_sym_declare] = ACTIONS(2923), + [anon_sym_public] = ACTIONS(2923), + [anon_sym_private] = ACTIONS(2923), + [anon_sym_protected] = ACTIONS(2923), + [anon_sym_override] = ACTIONS(2923), + [anon_sym_module] = ACTIONS(2923), + [anon_sym_any] = ACTIONS(2923), + [anon_sym_number] = ACTIONS(2923), + [anon_sym_boolean] = ACTIONS(2923), + [anon_sym_string] = ACTIONS(2923), + [anon_sym_symbol] = ACTIONS(2923), + [anon_sym_object] = ACTIONS(2923), + [anon_sym_abstract] = ACTIONS(2923), + [anon_sym_interface] = ACTIONS(2923), + [anon_sym_enum] = ACTIONS(2923), [sym_html_comment] = ACTIONS(5), }, [928] = { - [ts_builtin_sym_end] = ACTIONS(2544), - [sym_identifier] = ACTIONS(2546), - [anon_sym_export] = ACTIONS(2546), - [anon_sym_default] = ACTIONS(2546), - [anon_sym_type] = ACTIONS(2546), - [anon_sym_namespace] = ACTIONS(2546), - [anon_sym_LBRACE] = ACTIONS(2544), - [anon_sym_RBRACE] = ACTIONS(2544), - [anon_sym_typeof] = ACTIONS(2546), - [anon_sym_import] = ACTIONS(2546), - [anon_sym_with] = ACTIONS(2546), - [anon_sym_var] = ACTIONS(2546), - [anon_sym_let] = ACTIONS(2546), - [anon_sym_const] = ACTIONS(2546), - [anon_sym_BANG] = ACTIONS(2544), - [anon_sym_else] = ACTIONS(2546), - [anon_sym_if] = ACTIONS(2546), - [anon_sym_switch] = ACTIONS(2546), - [anon_sym_for] = ACTIONS(2546), - [anon_sym_LPAREN] = ACTIONS(2544), - [anon_sym_SEMI] = ACTIONS(2544), - [anon_sym_await] = ACTIONS(2546), - [anon_sym_while] = ACTIONS(2546), - [anon_sym_do] = ACTIONS(2546), - [anon_sym_try] = ACTIONS(2546), - [anon_sym_break] = ACTIONS(2546), - [anon_sym_continue] = ACTIONS(2546), - [anon_sym_debugger] = ACTIONS(2546), - [anon_sym_return] = ACTIONS(2546), - [anon_sym_throw] = ACTIONS(2546), - [anon_sym_case] = ACTIONS(2546), - [anon_sym_yield] = ACTIONS(2546), - [anon_sym_LBRACK] = ACTIONS(2544), - [sym_glimmer_opening_tag] = ACTIONS(2544), - [anon_sym_class] = ACTIONS(2546), - [anon_sym_async] = ACTIONS(2546), - [anon_sym_function] = ACTIONS(2546), - [anon_sym_new] = ACTIONS(2546), - [anon_sym_using] = ACTIONS(2546), - [anon_sym_PLUS] = ACTIONS(2546), - [anon_sym_DASH] = ACTIONS(2546), - [anon_sym_SLASH] = ACTIONS(2546), - [anon_sym_LT] = ACTIONS(2546), - [anon_sym_TILDE] = ACTIONS(2544), - [anon_sym_void] = ACTIONS(2546), - [anon_sym_delete] = ACTIONS(2546), - [anon_sym_PLUS_PLUS] = ACTIONS(2544), - [anon_sym_DASH_DASH] = ACTIONS(2544), - [anon_sym_DQUOTE] = ACTIONS(2544), - [anon_sym_SQUOTE] = ACTIONS(2544), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2544), - [sym_number] = ACTIONS(2544), - [sym_private_property_identifier] = ACTIONS(2544), - [sym_this] = ACTIONS(2546), - [sym_super] = ACTIONS(2546), - [sym_true] = ACTIONS(2546), - [sym_false] = ACTIONS(2546), - [sym_null] = ACTIONS(2546), - [sym_undefined] = ACTIONS(2546), - [anon_sym_AT] = ACTIONS(2544), - [anon_sym_static] = ACTIONS(2546), - [anon_sym_readonly] = ACTIONS(2546), - [anon_sym_get] = ACTIONS(2546), - [anon_sym_set] = ACTIONS(2546), - [anon_sym_declare] = ACTIONS(2546), - [anon_sym_public] = ACTIONS(2546), - [anon_sym_private] = ACTIONS(2546), - [anon_sym_protected] = ACTIONS(2546), - [anon_sym_override] = ACTIONS(2546), - [anon_sym_module] = ACTIONS(2546), - [anon_sym_any] = ACTIONS(2546), - [anon_sym_number] = ACTIONS(2546), - [anon_sym_boolean] = ACTIONS(2546), - [anon_sym_string] = ACTIONS(2546), - [anon_sym_symbol] = ACTIONS(2546), - [anon_sym_object] = ACTIONS(2546), - [anon_sym_abstract] = ACTIONS(2546), - [anon_sym_interface] = ACTIONS(2546), - [anon_sym_enum] = ACTIONS(2546), + [ts_builtin_sym_end] = ACTIONS(2925), + [sym_identifier] = ACTIONS(2927), + [anon_sym_export] = ACTIONS(2927), + [anon_sym_default] = ACTIONS(2927), + [anon_sym_type] = ACTIONS(2927), + [anon_sym_namespace] = ACTIONS(2927), + [anon_sym_LBRACE] = ACTIONS(2925), + [anon_sym_RBRACE] = ACTIONS(2925), + [anon_sym_typeof] = ACTIONS(2927), + [anon_sym_import] = ACTIONS(2927), + [anon_sym_with] = ACTIONS(2927), + [anon_sym_var] = ACTIONS(2927), + [anon_sym_let] = ACTIONS(2927), + [anon_sym_const] = ACTIONS(2927), + [anon_sym_BANG] = ACTIONS(2925), + [anon_sym_else] = ACTIONS(2927), + [anon_sym_if] = ACTIONS(2927), + [anon_sym_switch] = ACTIONS(2927), + [anon_sym_for] = ACTIONS(2927), + [anon_sym_LPAREN] = ACTIONS(2925), + [anon_sym_SEMI] = ACTIONS(2925), + [anon_sym_await] = ACTIONS(2927), + [anon_sym_while] = ACTIONS(2927), + [anon_sym_do] = ACTIONS(2927), + [anon_sym_try] = ACTIONS(2927), + [anon_sym_break] = ACTIONS(2927), + [anon_sym_continue] = ACTIONS(2927), + [anon_sym_debugger] = ACTIONS(2927), + [anon_sym_return] = ACTIONS(2927), + [anon_sym_throw] = ACTIONS(2927), + [anon_sym_case] = ACTIONS(2927), + [anon_sym_yield] = ACTIONS(2927), + [anon_sym_LBRACK] = ACTIONS(2925), + [anon_sym_class] = ACTIONS(2927), + [anon_sym_async] = ACTIONS(2927), + [anon_sym_function] = ACTIONS(2927), + [anon_sym_new] = ACTIONS(2927), + [anon_sym_using] = ACTIONS(2927), + [anon_sym_PLUS] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(2927), + [anon_sym_SLASH] = ACTIONS(2927), + [anon_sym_LT] = ACTIONS(2925), + [anon_sym_TILDE] = ACTIONS(2925), + [anon_sym_void] = ACTIONS(2927), + [anon_sym_delete] = ACTIONS(2927), + [anon_sym_PLUS_PLUS] = ACTIONS(2925), + [anon_sym_DASH_DASH] = ACTIONS(2925), + [anon_sym_DQUOTE] = ACTIONS(2925), + [anon_sym_SQUOTE] = ACTIONS(2925), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2925), + [sym_number] = ACTIONS(2925), + [sym_private_property_identifier] = ACTIONS(2925), + [sym_this] = ACTIONS(2927), + [sym_super] = ACTIONS(2927), + [sym_true] = ACTIONS(2927), + [sym_false] = ACTIONS(2927), + [sym_null] = ACTIONS(2927), + [sym_undefined] = ACTIONS(2927), + [anon_sym_AT] = ACTIONS(2925), + [anon_sym_static] = ACTIONS(2927), + [anon_sym_readonly] = ACTIONS(2927), + [anon_sym_get] = ACTIONS(2927), + [anon_sym_set] = ACTIONS(2927), + [anon_sym_declare] = ACTIONS(2927), + [anon_sym_public] = ACTIONS(2927), + [anon_sym_private] = ACTIONS(2927), + [anon_sym_protected] = ACTIONS(2927), + [anon_sym_override] = ACTIONS(2927), + [anon_sym_module] = ACTIONS(2927), + [anon_sym_any] = ACTIONS(2927), + [anon_sym_number] = ACTIONS(2927), + [anon_sym_boolean] = ACTIONS(2927), + [anon_sym_string] = ACTIONS(2927), + [anon_sym_symbol] = ACTIONS(2927), + [anon_sym_object] = ACTIONS(2927), + [anon_sym_abstract] = ACTIONS(2927), + [anon_sym_interface] = ACTIONS(2927), + [anon_sym_enum] = ACTIONS(2927), [sym_html_comment] = ACTIONS(5), }, [929] = { - [ts_builtin_sym_end] = ACTIONS(2948), - [sym_identifier] = ACTIONS(2950), - [anon_sym_export] = ACTIONS(2950), - [anon_sym_default] = ACTIONS(2950), - [anon_sym_type] = ACTIONS(2950), - [anon_sym_namespace] = ACTIONS(2950), - [anon_sym_LBRACE] = ACTIONS(2948), - [anon_sym_RBRACE] = ACTIONS(2948), - [anon_sym_typeof] = ACTIONS(2950), - [anon_sym_import] = ACTIONS(2950), - [anon_sym_with] = ACTIONS(2950), - [anon_sym_var] = ACTIONS(2950), - [anon_sym_let] = ACTIONS(2950), - [anon_sym_const] = ACTIONS(2950), - [anon_sym_BANG] = ACTIONS(2948), - [anon_sym_else] = ACTIONS(2950), - [anon_sym_if] = ACTIONS(2950), - [anon_sym_switch] = ACTIONS(2950), - [anon_sym_for] = ACTIONS(2950), - [anon_sym_LPAREN] = ACTIONS(2948), - [anon_sym_SEMI] = ACTIONS(2948), - [anon_sym_await] = ACTIONS(2950), - [anon_sym_while] = ACTIONS(2950), - [anon_sym_do] = ACTIONS(2950), - [anon_sym_try] = ACTIONS(2950), - [anon_sym_break] = ACTIONS(2950), - [anon_sym_continue] = ACTIONS(2950), - [anon_sym_debugger] = ACTIONS(2950), - [anon_sym_return] = ACTIONS(2950), - [anon_sym_throw] = ACTIONS(2950), - [anon_sym_case] = ACTIONS(2950), - [anon_sym_yield] = ACTIONS(2950), - [anon_sym_LBRACK] = ACTIONS(2948), - [sym_glimmer_opening_tag] = ACTIONS(2948), - [anon_sym_class] = ACTIONS(2950), - [anon_sym_async] = ACTIONS(2950), - [anon_sym_function] = ACTIONS(2950), - [anon_sym_new] = ACTIONS(2950), - [anon_sym_using] = ACTIONS(2950), - [anon_sym_PLUS] = ACTIONS(2950), - [anon_sym_DASH] = ACTIONS(2950), - [anon_sym_SLASH] = ACTIONS(2950), - [anon_sym_LT] = ACTIONS(2950), - [anon_sym_TILDE] = ACTIONS(2948), - [anon_sym_void] = ACTIONS(2950), - [anon_sym_delete] = ACTIONS(2950), - [anon_sym_PLUS_PLUS] = ACTIONS(2948), - [anon_sym_DASH_DASH] = ACTIONS(2948), - [anon_sym_DQUOTE] = ACTIONS(2948), - [anon_sym_SQUOTE] = ACTIONS(2948), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2948), - [sym_number] = ACTIONS(2948), - [sym_private_property_identifier] = ACTIONS(2948), - [sym_this] = ACTIONS(2950), - [sym_super] = ACTIONS(2950), - [sym_true] = ACTIONS(2950), - [sym_false] = ACTIONS(2950), - [sym_null] = ACTIONS(2950), - [sym_undefined] = ACTIONS(2950), - [anon_sym_AT] = ACTIONS(2948), - [anon_sym_static] = ACTIONS(2950), - [anon_sym_readonly] = ACTIONS(2950), - [anon_sym_get] = ACTIONS(2950), - [anon_sym_set] = ACTIONS(2950), - [anon_sym_declare] = ACTIONS(2950), - [anon_sym_public] = ACTIONS(2950), - [anon_sym_private] = ACTIONS(2950), - [anon_sym_protected] = ACTIONS(2950), - [anon_sym_override] = ACTIONS(2950), - [anon_sym_module] = ACTIONS(2950), - [anon_sym_any] = ACTIONS(2950), - [anon_sym_number] = ACTIONS(2950), - [anon_sym_boolean] = ACTIONS(2950), - [anon_sym_string] = ACTIONS(2950), - [anon_sym_symbol] = ACTIONS(2950), - [anon_sym_object] = ACTIONS(2950), - [anon_sym_abstract] = ACTIONS(2950), - [anon_sym_interface] = ACTIONS(2950), - [anon_sym_enum] = ACTIONS(2950), + [ts_builtin_sym_end] = ACTIONS(2561), + [sym_identifier] = ACTIONS(2563), + [anon_sym_export] = ACTIONS(2563), + [anon_sym_default] = ACTIONS(2563), + [anon_sym_type] = ACTIONS(2563), + [anon_sym_namespace] = ACTIONS(2563), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_RBRACE] = ACTIONS(2561), + [anon_sym_typeof] = ACTIONS(2563), + [anon_sym_import] = ACTIONS(2563), + [anon_sym_with] = ACTIONS(2563), + [anon_sym_var] = ACTIONS(2563), + [anon_sym_let] = ACTIONS(2563), + [anon_sym_const] = ACTIONS(2563), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_else] = ACTIONS(2563), + [anon_sym_if] = ACTIONS(2563), + [anon_sym_switch] = ACTIONS(2563), + [anon_sym_for] = ACTIONS(2563), + [anon_sym_LPAREN] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_await] = ACTIONS(2563), + [anon_sym_while] = ACTIONS(2563), + [anon_sym_do] = ACTIONS(2563), + [anon_sym_try] = ACTIONS(2563), + [anon_sym_break] = ACTIONS(2563), + [anon_sym_continue] = ACTIONS(2563), + [anon_sym_debugger] = ACTIONS(2563), + [anon_sym_return] = ACTIONS(2563), + [anon_sym_throw] = ACTIONS(2563), + [anon_sym_case] = ACTIONS(2563), + [anon_sym_yield] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(2561), + [anon_sym_class] = ACTIONS(2563), + [anon_sym_async] = ACTIONS(2563), + [anon_sym_function] = ACTIONS(2563), + [anon_sym_new] = ACTIONS(2563), + [anon_sym_using] = ACTIONS(2563), + [anon_sym_PLUS] = ACTIONS(2563), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_SLASH] = ACTIONS(2563), + [anon_sym_LT] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_void] = ACTIONS(2563), + [anon_sym_delete] = ACTIONS(2563), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2561), + [sym_number] = ACTIONS(2561), + [sym_private_property_identifier] = ACTIONS(2561), + [sym_this] = ACTIONS(2563), + [sym_super] = ACTIONS(2563), + [sym_true] = ACTIONS(2563), + [sym_false] = ACTIONS(2563), + [sym_null] = ACTIONS(2563), + [sym_undefined] = ACTIONS(2563), + [anon_sym_AT] = ACTIONS(2561), + [anon_sym_static] = ACTIONS(2563), + [anon_sym_readonly] = ACTIONS(2563), + [anon_sym_get] = ACTIONS(2563), + [anon_sym_set] = ACTIONS(2563), + [anon_sym_declare] = ACTIONS(2563), + [anon_sym_public] = ACTIONS(2563), + [anon_sym_private] = ACTIONS(2563), + [anon_sym_protected] = ACTIONS(2563), + [anon_sym_override] = ACTIONS(2563), + [anon_sym_module] = ACTIONS(2563), + [anon_sym_any] = ACTIONS(2563), + [anon_sym_number] = ACTIONS(2563), + [anon_sym_boolean] = ACTIONS(2563), + [anon_sym_string] = ACTIONS(2563), + [anon_sym_symbol] = ACTIONS(2563), + [anon_sym_object] = ACTIONS(2563), + [anon_sym_abstract] = ACTIONS(2563), + [anon_sym_interface] = ACTIONS(2563), + [anon_sym_enum] = ACTIONS(2563), [sym_html_comment] = ACTIONS(5), }, [930] = { - [ts_builtin_sym_end] = ACTIONS(2952), - [sym_identifier] = ACTIONS(2954), - [anon_sym_export] = ACTIONS(2954), - [anon_sym_default] = ACTIONS(2954), - [anon_sym_type] = ACTIONS(2954), - [anon_sym_namespace] = ACTIONS(2954), - [anon_sym_LBRACE] = ACTIONS(2952), - [anon_sym_RBRACE] = ACTIONS(2952), - [anon_sym_typeof] = ACTIONS(2954), - [anon_sym_import] = ACTIONS(2954), - [anon_sym_with] = ACTIONS(2954), - [anon_sym_var] = ACTIONS(2954), - [anon_sym_let] = ACTIONS(2954), - [anon_sym_const] = ACTIONS(2954), - [anon_sym_BANG] = ACTIONS(2952), - [anon_sym_else] = ACTIONS(2954), - [anon_sym_if] = ACTIONS(2954), - [anon_sym_switch] = ACTIONS(2954), - [anon_sym_for] = ACTIONS(2954), - [anon_sym_LPAREN] = ACTIONS(2952), - [anon_sym_SEMI] = ACTIONS(2952), - [anon_sym_await] = ACTIONS(2954), - [anon_sym_while] = ACTIONS(2954), - [anon_sym_do] = ACTIONS(2954), - [anon_sym_try] = ACTIONS(2954), - [anon_sym_break] = ACTIONS(2954), - [anon_sym_continue] = ACTIONS(2954), - [anon_sym_debugger] = ACTIONS(2954), - [anon_sym_return] = ACTIONS(2954), - [anon_sym_throw] = ACTIONS(2954), - [anon_sym_case] = ACTIONS(2954), - [anon_sym_yield] = ACTIONS(2954), - [anon_sym_LBRACK] = ACTIONS(2952), - [sym_glimmer_opening_tag] = ACTIONS(2952), - [anon_sym_class] = ACTIONS(2954), - [anon_sym_async] = ACTIONS(2954), - [anon_sym_function] = ACTIONS(2954), - [anon_sym_new] = ACTIONS(2954), - [anon_sym_using] = ACTIONS(2954), - [anon_sym_PLUS] = ACTIONS(2954), - [anon_sym_DASH] = ACTIONS(2954), - [anon_sym_SLASH] = ACTIONS(2954), - [anon_sym_LT] = ACTIONS(2954), - [anon_sym_TILDE] = ACTIONS(2952), - [anon_sym_void] = ACTIONS(2954), - [anon_sym_delete] = ACTIONS(2954), - [anon_sym_PLUS_PLUS] = ACTIONS(2952), - [anon_sym_DASH_DASH] = ACTIONS(2952), - [anon_sym_DQUOTE] = ACTIONS(2952), - [anon_sym_SQUOTE] = ACTIONS(2952), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2952), - [sym_number] = ACTIONS(2952), - [sym_private_property_identifier] = ACTIONS(2952), - [sym_this] = ACTIONS(2954), - [sym_super] = ACTIONS(2954), - [sym_true] = ACTIONS(2954), - [sym_false] = ACTIONS(2954), - [sym_null] = ACTIONS(2954), - [sym_undefined] = ACTIONS(2954), - [anon_sym_AT] = ACTIONS(2952), - [anon_sym_static] = ACTIONS(2954), - [anon_sym_readonly] = ACTIONS(2954), - [anon_sym_get] = ACTIONS(2954), - [anon_sym_set] = ACTIONS(2954), - [anon_sym_declare] = ACTIONS(2954), - [anon_sym_public] = ACTIONS(2954), - [anon_sym_private] = ACTIONS(2954), - [anon_sym_protected] = ACTIONS(2954), - [anon_sym_override] = ACTIONS(2954), - [anon_sym_module] = ACTIONS(2954), - [anon_sym_any] = ACTIONS(2954), - [anon_sym_number] = ACTIONS(2954), - [anon_sym_boolean] = ACTIONS(2954), - [anon_sym_string] = ACTIONS(2954), - [anon_sym_symbol] = ACTIONS(2954), - [anon_sym_object] = ACTIONS(2954), - [anon_sym_abstract] = ACTIONS(2954), - [anon_sym_interface] = ACTIONS(2954), - [anon_sym_enum] = ACTIONS(2954), + [ts_builtin_sym_end] = ACTIONS(2929), + [sym_identifier] = ACTIONS(2931), + [anon_sym_export] = ACTIONS(2931), + [anon_sym_default] = ACTIONS(2931), + [anon_sym_type] = ACTIONS(2931), + [anon_sym_namespace] = ACTIONS(2931), + [anon_sym_LBRACE] = ACTIONS(2929), + [anon_sym_RBRACE] = ACTIONS(2929), + [anon_sym_typeof] = ACTIONS(2931), + [anon_sym_import] = ACTIONS(2931), + [anon_sym_with] = ACTIONS(2931), + [anon_sym_var] = ACTIONS(2931), + [anon_sym_let] = ACTIONS(2931), + [anon_sym_const] = ACTIONS(2931), + [anon_sym_BANG] = ACTIONS(2929), + [anon_sym_else] = ACTIONS(2931), + [anon_sym_if] = ACTIONS(2931), + [anon_sym_switch] = ACTIONS(2931), + [anon_sym_for] = ACTIONS(2931), + [anon_sym_LPAREN] = ACTIONS(2929), + [anon_sym_SEMI] = ACTIONS(2929), + [anon_sym_await] = ACTIONS(2931), + [anon_sym_while] = ACTIONS(2931), + [anon_sym_do] = ACTIONS(2931), + [anon_sym_try] = ACTIONS(2931), + [anon_sym_break] = ACTIONS(2931), + [anon_sym_continue] = ACTIONS(2931), + [anon_sym_debugger] = ACTIONS(2931), + [anon_sym_return] = ACTIONS(2931), + [anon_sym_throw] = ACTIONS(2931), + [anon_sym_case] = ACTIONS(2931), + [anon_sym_yield] = ACTIONS(2931), + [anon_sym_LBRACK] = ACTIONS(2929), + [anon_sym_class] = ACTIONS(2931), + [anon_sym_async] = ACTIONS(2931), + [anon_sym_function] = ACTIONS(2931), + [anon_sym_new] = ACTIONS(2931), + [anon_sym_using] = ACTIONS(2931), + [anon_sym_PLUS] = ACTIONS(2931), + [anon_sym_DASH] = ACTIONS(2931), + [anon_sym_SLASH] = ACTIONS(2931), + [anon_sym_LT] = ACTIONS(2929), + [anon_sym_TILDE] = ACTIONS(2929), + [anon_sym_void] = ACTIONS(2931), + [anon_sym_delete] = ACTIONS(2931), + [anon_sym_PLUS_PLUS] = ACTIONS(2929), + [anon_sym_DASH_DASH] = ACTIONS(2929), + [anon_sym_DQUOTE] = ACTIONS(2929), + [anon_sym_SQUOTE] = ACTIONS(2929), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2929), + [sym_number] = ACTIONS(2929), + [sym_private_property_identifier] = ACTIONS(2929), + [sym_this] = ACTIONS(2931), + [sym_super] = ACTIONS(2931), + [sym_true] = ACTIONS(2931), + [sym_false] = ACTIONS(2931), + [sym_null] = ACTIONS(2931), + [sym_undefined] = ACTIONS(2931), + [anon_sym_AT] = ACTIONS(2929), + [anon_sym_static] = ACTIONS(2931), + [anon_sym_readonly] = ACTIONS(2931), + [anon_sym_get] = ACTIONS(2931), + [anon_sym_set] = ACTIONS(2931), + [anon_sym_declare] = ACTIONS(2931), + [anon_sym_public] = ACTIONS(2931), + [anon_sym_private] = ACTIONS(2931), + [anon_sym_protected] = ACTIONS(2931), + [anon_sym_override] = ACTIONS(2931), + [anon_sym_module] = ACTIONS(2931), + [anon_sym_any] = ACTIONS(2931), + [anon_sym_number] = ACTIONS(2931), + [anon_sym_boolean] = ACTIONS(2931), + [anon_sym_string] = ACTIONS(2931), + [anon_sym_symbol] = ACTIONS(2931), + [anon_sym_object] = ACTIONS(2931), + [anon_sym_abstract] = ACTIONS(2931), + [anon_sym_interface] = ACTIONS(2931), + [anon_sym_enum] = ACTIONS(2931), [sym_html_comment] = ACTIONS(5), }, [931] = { - [ts_builtin_sym_end] = ACTIONS(2956), - [sym_identifier] = ACTIONS(2958), - [anon_sym_export] = ACTIONS(2958), - [anon_sym_default] = ACTIONS(2958), - [anon_sym_type] = ACTIONS(2958), - [anon_sym_namespace] = ACTIONS(2958), - [anon_sym_LBRACE] = ACTIONS(2956), - [anon_sym_RBRACE] = ACTIONS(2956), - [anon_sym_typeof] = ACTIONS(2958), - [anon_sym_import] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2958), - [anon_sym_var] = ACTIONS(2958), - [anon_sym_let] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2958), - [anon_sym_BANG] = ACTIONS(2956), - [anon_sym_else] = ACTIONS(2958), - [anon_sym_if] = ACTIONS(2958), - [anon_sym_switch] = ACTIONS(2958), - [anon_sym_for] = ACTIONS(2958), - [anon_sym_LPAREN] = ACTIONS(2956), - [anon_sym_SEMI] = ACTIONS(2956), - [anon_sym_await] = ACTIONS(2958), - [anon_sym_while] = ACTIONS(2958), - [anon_sym_do] = ACTIONS(2958), - [anon_sym_try] = ACTIONS(2958), - [anon_sym_break] = ACTIONS(2958), - [anon_sym_continue] = ACTIONS(2958), - [anon_sym_debugger] = ACTIONS(2958), - [anon_sym_return] = ACTIONS(2958), - [anon_sym_throw] = ACTIONS(2958), - [anon_sym_case] = ACTIONS(2958), - [anon_sym_yield] = ACTIONS(2958), - [anon_sym_LBRACK] = ACTIONS(2956), - [sym_glimmer_opening_tag] = ACTIONS(2956), - [anon_sym_class] = ACTIONS(2958), - [anon_sym_async] = ACTIONS(2958), - [anon_sym_function] = ACTIONS(2958), - [anon_sym_new] = ACTIONS(2958), - [anon_sym_using] = ACTIONS(2958), - [anon_sym_PLUS] = ACTIONS(2958), - [anon_sym_DASH] = ACTIONS(2958), - [anon_sym_SLASH] = ACTIONS(2958), - [anon_sym_LT] = ACTIONS(2958), - [anon_sym_TILDE] = ACTIONS(2956), - [anon_sym_void] = ACTIONS(2958), - [anon_sym_delete] = ACTIONS(2958), - [anon_sym_PLUS_PLUS] = ACTIONS(2956), - [anon_sym_DASH_DASH] = ACTIONS(2956), - [anon_sym_DQUOTE] = ACTIONS(2956), - [anon_sym_SQUOTE] = ACTIONS(2956), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2956), - [sym_number] = ACTIONS(2956), - [sym_private_property_identifier] = ACTIONS(2956), - [sym_this] = ACTIONS(2958), - [sym_super] = ACTIONS(2958), - [sym_true] = ACTIONS(2958), - [sym_false] = ACTIONS(2958), - [sym_null] = ACTIONS(2958), - [sym_undefined] = ACTIONS(2958), - [anon_sym_AT] = ACTIONS(2956), - [anon_sym_static] = ACTIONS(2958), - [anon_sym_readonly] = ACTIONS(2958), - [anon_sym_get] = ACTIONS(2958), - [anon_sym_set] = ACTIONS(2958), - [anon_sym_declare] = ACTIONS(2958), - [anon_sym_public] = ACTIONS(2958), - [anon_sym_private] = ACTIONS(2958), - [anon_sym_protected] = ACTIONS(2958), - [anon_sym_override] = ACTIONS(2958), - [anon_sym_module] = ACTIONS(2958), - [anon_sym_any] = ACTIONS(2958), - [anon_sym_number] = ACTIONS(2958), - [anon_sym_boolean] = ACTIONS(2958), - [anon_sym_string] = ACTIONS(2958), - [anon_sym_symbol] = ACTIONS(2958), - [anon_sym_object] = ACTIONS(2958), - [anon_sym_abstract] = ACTIONS(2958), - [anon_sym_interface] = ACTIONS(2958), - [anon_sym_enum] = ACTIONS(2958), + [ts_builtin_sym_end] = ACTIONS(2933), + [sym_identifier] = ACTIONS(2935), + [anon_sym_export] = ACTIONS(2935), + [anon_sym_default] = ACTIONS(2935), + [anon_sym_type] = ACTIONS(2935), + [anon_sym_namespace] = ACTIONS(2935), + [anon_sym_LBRACE] = ACTIONS(2933), + [anon_sym_RBRACE] = ACTIONS(2933), + [anon_sym_typeof] = ACTIONS(2935), + [anon_sym_import] = ACTIONS(2935), + [anon_sym_with] = ACTIONS(2935), + [anon_sym_var] = ACTIONS(2935), + [anon_sym_let] = ACTIONS(2935), + [anon_sym_const] = ACTIONS(2935), + [anon_sym_BANG] = ACTIONS(2933), + [anon_sym_else] = ACTIONS(2935), + [anon_sym_if] = ACTIONS(2935), + [anon_sym_switch] = ACTIONS(2935), + [anon_sym_for] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2933), + [anon_sym_SEMI] = ACTIONS(2933), + [anon_sym_await] = ACTIONS(2935), + [anon_sym_while] = ACTIONS(2935), + [anon_sym_do] = ACTIONS(2935), + [anon_sym_try] = ACTIONS(2935), + [anon_sym_break] = ACTIONS(2935), + [anon_sym_continue] = ACTIONS(2935), + [anon_sym_debugger] = ACTIONS(2935), + [anon_sym_return] = ACTIONS(2935), + [anon_sym_throw] = ACTIONS(2935), + [anon_sym_case] = ACTIONS(2935), + [anon_sym_yield] = ACTIONS(2935), + [anon_sym_LBRACK] = ACTIONS(2933), + [anon_sym_class] = ACTIONS(2935), + [anon_sym_async] = ACTIONS(2935), + [anon_sym_function] = ACTIONS(2935), + [anon_sym_new] = ACTIONS(2935), + [anon_sym_using] = ACTIONS(2935), + [anon_sym_PLUS] = ACTIONS(2935), + [anon_sym_DASH] = ACTIONS(2935), + [anon_sym_SLASH] = ACTIONS(2935), + [anon_sym_LT] = ACTIONS(2933), + [anon_sym_TILDE] = ACTIONS(2933), + [anon_sym_void] = ACTIONS(2935), + [anon_sym_delete] = ACTIONS(2935), + [anon_sym_PLUS_PLUS] = ACTIONS(2933), + [anon_sym_DASH_DASH] = ACTIONS(2933), + [anon_sym_DQUOTE] = ACTIONS(2933), + [anon_sym_SQUOTE] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2933), + [sym_number] = ACTIONS(2933), + [sym_private_property_identifier] = ACTIONS(2933), + [sym_this] = ACTIONS(2935), + [sym_super] = ACTIONS(2935), + [sym_true] = ACTIONS(2935), + [sym_false] = ACTIONS(2935), + [sym_null] = ACTIONS(2935), + [sym_undefined] = ACTIONS(2935), + [anon_sym_AT] = ACTIONS(2933), + [anon_sym_static] = ACTIONS(2935), + [anon_sym_readonly] = ACTIONS(2935), + [anon_sym_get] = ACTIONS(2935), + [anon_sym_set] = ACTIONS(2935), + [anon_sym_declare] = ACTIONS(2935), + [anon_sym_public] = ACTIONS(2935), + [anon_sym_private] = ACTIONS(2935), + [anon_sym_protected] = ACTIONS(2935), + [anon_sym_override] = ACTIONS(2935), + [anon_sym_module] = ACTIONS(2935), + [anon_sym_any] = ACTIONS(2935), + [anon_sym_number] = ACTIONS(2935), + [anon_sym_boolean] = ACTIONS(2935), + [anon_sym_string] = ACTIONS(2935), + [anon_sym_symbol] = ACTIONS(2935), + [anon_sym_object] = ACTIONS(2935), + [anon_sym_abstract] = ACTIONS(2935), + [anon_sym_interface] = ACTIONS(2935), + [anon_sym_enum] = ACTIONS(2935), [sym_html_comment] = ACTIONS(5), }, [932] = { - [ts_builtin_sym_end] = ACTIONS(2960), - [sym_identifier] = ACTIONS(2962), - [anon_sym_export] = ACTIONS(2962), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_type] = ACTIONS(2962), - [anon_sym_namespace] = ACTIONS(2962), - [anon_sym_LBRACE] = ACTIONS(2960), - [anon_sym_RBRACE] = ACTIONS(2960), - [anon_sym_typeof] = ACTIONS(2962), - [anon_sym_import] = ACTIONS(2962), - [anon_sym_with] = ACTIONS(2962), - [anon_sym_var] = ACTIONS(2962), - [anon_sym_let] = ACTIONS(2962), - [anon_sym_const] = ACTIONS(2962), - [anon_sym_BANG] = ACTIONS(2960), - [anon_sym_else] = ACTIONS(2962), - [anon_sym_if] = ACTIONS(2962), - [anon_sym_switch] = ACTIONS(2962), - [anon_sym_for] = ACTIONS(2962), - [anon_sym_LPAREN] = ACTIONS(2960), - [anon_sym_SEMI] = ACTIONS(2960), - [anon_sym_await] = ACTIONS(2962), - [anon_sym_while] = ACTIONS(2962), - [anon_sym_do] = ACTIONS(2962), - [anon_sym_try] = ACTIONS(2962), - [anon_sym_break] = ACTIONS(2962), - [anon_sym_continue] = ACTIONS(2962), - [anon_sym_debugger] = ACTIONS(2962), - [anon_sym_return] = ACTIONS(2962), - [anon_sym_throw] = ACTIONS(2962), - [anon_sym_case] = ACTIONS(2962), - [anon_sym_yield] = ACTIONS(2962), - [anon_sym_LBRACK] = ACTIONS(2960), - [sym_glimmer_opening_tag] = ACTIONS(2960), - [anon_sym_class] = ACTIONS(2962), - [anon_sym_async] = ACTIONS(2962), - [anon_sym_function] = ACTIONS(2962), - [anon_sym_new] = ACTIONS(2962), - [anon_sym_using] = ACTIONS(2962), - [anon_sym_PLUS] = ACTIONS(2962), - [anon_sym_DASH] = ACTIONS(2962), - [anon_sym_SLASH] = ACTIONS(2962), - [anon_sym_LT] = ACTIONS(2962), - [anon_sym_TILDE] = ACTIONS(2960), - [anon_sym_void] = ACTIONS(2962), - [anon_sym_delete] = ACTIONS(2962), - [anon_sym_PLUS_PLUS] = ACTIONS(2960), - [anon_sym_DASH_DASH] = ACTIONS(2960), - [anon_sym_DQUOTE] = ACTIONS(2960), - [anon_sym_SQUOTE] = ACTIONS(2960), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2960), - [sym_number] = ACTIONS(2960), - [sym_private_property_identifier] = ACTIONS(2960), - [sym_this] = ACTIONS(2962), - [sym_super] = ACTIONS(2962), - [sym_true] = ACTIONS(2962), - [sym_false] = ACTIONS(2962), - [sym_null] = ACTIONS(2962), - [sym_undefined] = ACTIONS(2962), - [anon_sym_AT] = ACTIONS(2960), - [anon_sym_static] = ACTIONS(2962), - [anon_sym_readonly] = ACTIONS(2962), - [anon_sym_get] = ACTIONS(2962), - [anon_sym_set] = ACTIONS(2962), - [anon_sym_declare] = ACTIONS(2962), - [anon_sym_public] = ACTIONS(2962), - [anon_sym_private] = ACTIONS(2962), - [anon_sym_protected] = ACTIONS(2962), - [anon_sym_override] = ACTIONS(2962), - [anon_sym_module] = ACTIONS(2962), - [anon_sym_any] = ACTIONS(2962), - [anon_sym_number] = ACTIONS(2962), - [anon_sym_boolean] = ACTIONS(2962), - [anon_sym_string] = ACTIONS(2962), - [anon_sym_symbol] = ACTIONS(2962), - [anon_sym_object] = ACTIONS(2962), - [anon_sym_abstract] = ACTIONS(2962), - [anon_sym_interface] = ACTIONS(2962), - [anon_sym_enum] = ACTIONS(2962), + [ts_builtin_sym_end] = ACTIONS(2937), + [sym_identifier] = ACTIONS(2939), + [anon_sym_export] = ACTIONS(2939), + [anon_sym_default] = ACTIONS(2939), + [anon_sym_type] = ACTIONS(2939), + [anon_sym_namespace] = ACTIONS(2939), + [anon_sym_LBRACE] = ACTIONS(2937), + [anon_sym_RBRACE] = ACTIONS(2937), + [anon_sym_typeof] = ACTIONS(2939), + [anon_sym_import] = ACTIONS(2939), + [anon_sym_with] = ACTIONS(2939), + [anon_sym_var] = ACTIONS(2939), + [anon_sym_let] = ACTIONS(2939), + [anon_sym_const] = ACTIONS(2939), + [anon_sym_BANG] = ACTIONS(2937), + [anon_sym_else] = ACTIONS(2939), + [anon_sym_if] = ACTIONS(2939), + [anon_sym_switch] = ACTIONS(2939), + [anon_sym_for] = ACTIONS(2939), + [anon_sym_LPAREN] = ACTIONS(2937), + [anon_sym_SEMI] = ACTIONS(2937), + [anon_sym_await] = ACTIONS(2939), + [anon_sym_while] = ACTIONS(2939), + [anon_sym_do] = ACTIONS(2939), + [anon_sym_try] = ACTIONS(2939), + [anon_sym_break] = ACTIONS(2939), + [anon_sym_continue] = ACTIONS(2939), + [anon_sym_debugger] = ACTIONS(2939), + [anon_sym_return] = ACTIONS(2939), + [anon_sym_throw] = ACTIONS(2939), + [anon_sym_case] = ACTIONS(2939), + [anon_sym_yield] = ACTIONS(2939), + [anon_sym_LBRACK] = ACTIONS(2937), + [anon_sym_class] = ACTIONS(2939), + [anon_sym_async] = ACTIONS(2939), + [anon_sym_function] = ACTIONS(2939), + [anon_sym_new] = ACTIONS(2939), + [anon_sym_using] = ACTIONS(2939), + [anon_sym_PLUS] = ACTIONS(2939), + [anon_sym_DASH] = ACTIONS(2939), + [anon_sym_SLASH] = ACTIONS(2939), + [anon_sym_LT] = ACTIONS(2937), + [anon_sym_TILDE] = ACTIONS(2937), + [anon_sym_void] = ACTIONS(2939), + [anon_sym_delete] = ACTIONS(2939), + [anon_sym_PLUS_PLUS] = ACTIONS(2937), + [anon_sym_DASH_DASH] = ACTIONS(2937), + [anon_sym_DQUOTE] = ACTIONS(2937), + [anon_sym_SQUOTE] = ACTIONS(2937), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2937), + [sym_number] = ACTIONS(2937), + [sym_private_property_identifier] = ACTIONS(2937), + [sym_this] = ACTIONS(2939), + [sym_super] = ACTIONS(2939), + [sym_true] = ACTIONS(2939), + [sym_false] = ACTIONS(2939), + [sym_null] = ACTIONS(2939), + [sym_undefined] = ACTIONS(2939), + [anon_sym_AT] = ACTIONS(2937), + [anon_sym_static] = ACTIONS(2939), + [anon_sym_readonly] = ACTIONS(2939), + [anon_sym_get] = ACTIONS(2939), + [anon_sym_set] = ACTIONS(2939), + [anon_sym_declare] = ACTIONS(2939), + [anon_sym_public] = ACTIONS(2939), + [anon_sym_private] = ACTIONS(2939), + [anon_sym_protected] = ACTIONS(2939), + [anon_sym_override] = ACTIONS(2939), + [anon_sym_module] = ACTIONS(2939), + [anon_sym_any] = ACTIONS(2939), + [anon_sym_number] = ACTIONS(2939), + [anon_sym_boolean] = ACTIONS(2939), + [anon_sym_string] = ACTIONS(2939), + [anon_sym_symbol] = ACTIONS(2939), + [anon_sym_object] = ACTIONS(2939), + [anon_sym_abstract] = ACTIONS(2939), + [anon_sym_interface] = ACTIONS(2939), + [anon_sym_enum] = ACTIONS(2939), [sym_html_comment] = ACTIONS(5), }, [933] = { - [ts_builtin_sym_end] = ACTIONS(2964), - [sym_identifier] = ACTIONS(2966), - [anon_sym_export] = ACTIONS(2966), - [anon_sym_default] = ACTIONS(2966), - [anon_sym_type] = ACTIONS(2966), - [anon_sym_namespace] = ACTIONS(2966), - [anon_sym_LBRACE] = ACTIONS(2964), - [anon_sym_RBRACE] = ACTIONS(2964), - [anon_sym_typeof] = ACTIONS(2966), - [anon_sym_import] = ACTIONS(2966), - [anon_sym_with] = ACTIONS(2966), - [anon_sym_var] = ACTIONS(2966), - [anon_sym_let] = ACTIONS(2966), - [anon_sym_const] = ACTIONS(2966), - [anon_sym_BANG] = ACTIONS(2964), - [anon_sym_else] = ACTIONS(2966), - [anon_sym_if] = ACTIONS(2966), - [anon_sym_switch] = ACTIONS(2966), - [anon_sym_for] = ACTIONS(2966), - [anon_sym_LPAREN] = ACTIONS(2964), - [anon_sym_SEMI] = ACTIONS(2964), - [anon_sym_await] = ACTIONS(2966), - [anon_sym_while] = ACTIONS(2966), - [anon_sym_do] = ACTIONS(2966), - [anon_sym_try] = ACTIONS(2966), - [anon_sym_break] = ACTIONS(2966), - [anon_sym_continue] = ACTIONS(2966), - [anon_sym_debugger] = ACTIONS(2966), - [anon_sym_return] = ACTIONS(2966), - [anon_sym_throw] = ACTIONS(2966), - [anon_sym_case] = ACTIONS(2966), - [anon_sym_yield] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(2964), - [sym_glimmer_opening_tag] = ACTIONS(2964), - [anon_sym_class] = ACTIONS(2966), - [anon_sym_async] = ACTIONS(2966), - [anon_sym_function] = ACTIONS(2966), - [anon_sym_new] = ACTIONS(2966), - [anon_sym_using] = ACTIONS(2966), - [anon_sym_PLUS] = ACTIONS(2966), - [anon_sym_DASH] = ACTIONS(2966), - [anon_sym_SLASH] = ACTIONS(2966), - [anon_sym_LT] = ACTIONS(2966), - [anon_sym_TILDE] = ACTIONS(2964), - [anon_sym_void] = ACTIONS(2966), - [anon_sym_delete] = ACTIONS(2966), - [anon_sym_PLUS_PLUS] = ACTIONS(2964), - [anon_sym_DASH_DASH] = ACTIONS(2964), - [anon_sym_DQUOTE] = ACTIONS(2964), - [anon_sym_SQUOTE] = ACTIONS(2964), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2964), - [sym_number] = ACTIONS(2964), - [sym_private_property_identifier] = ACTIONS(2964), - [sym_this] = ACTIONS(2966), - [sym_super] = ACTIONS(2966), - [sym_true] = ACTIONS(2966), - [sym_false] = ACTIONS(2966), - [sym_null] = ACTIONS(2966), - [sym_undefined] = ACTIONS(2966), - [anon_sym_AT] = ACTIONS(2964), - [anon_sym_static] = ACTIONS(2966), - [anon_sym_readonly] = ACTIONS(2966), - [anon_sym_get] = ACTIONS(2966), - [anon_sym_set] = ACTIONS(2966), - [anon_sym_declare] = ACTIONS(2966), - [anon_sym_public] = ACTIONS(2966), - [anon_sym_private] = ACTIONS(2966), - [anon_sym_protected] = ACTIONS(2966), - [anon_sym_override] = ACTIONS(2966), - [anon_sym_module] = ACTIONS(2966), - [anon_sym_any] = ACTIONS(2966), - [anon_sym_number] = ACTIONS(2966), - [anon_sym_boolean] = ACTIONS(2966), - [anon_sym_string] = ACTIONS(2966), - [anon_sym_symbol] = ACTIONS(2966), - [anon_sym_object] = ACTIONS(2966), - [anon_sym_abstract] = ACTIONS(2966), - [anon_sym_interface] = ACTIONS(2966), - [anon_sym_enum] = ACTIONS(2966), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_rest_pattern] = STATE(5165), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3773), + [sym_tuple_parameter] = STATE(5278), + [sym_optional_tuple_parameter] = STATE(5278), + [sym_optional_type] = STATE(5278), + [sym_rest_type] = STATE(5278), + [sym__tuple_type_member] = STATE(5278), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(2489), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(2941), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2495), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [934] = { - [ts_builtin_sym_end] = ACTIONS(2968), - [sym_identifier] = ACTIONS(2970), - [anon_sym_export] = ACTIONS(2970), - [anon_sym_default] = ACTIONS(2970), - [anon_sym_type] = ACTIONS(2970), - [anon_sym_namespace] = ACTIONS(2970), - [anon_sym_LBRACE] = ACTIONS(2968), - [anon_sym_RBRACE] = ACTIONS(2968), - [anon_sym_typeof] = ACTIONS(2970), - [anon_sym_import] = ACTIONS(2970), - [anon_sym_with] = ACTIONS(2970), - [anon_sym_var] = ACTIONS(2970), - [anon_sym_let] = ACTIONS(2970), - [anon_sym_const] = ACTIONS(2970), - [anon_sym_BANG] = ACTIONS(2968), - [anon_sym_else] = ACTIONS(2970), - [anon_sym_if] = ACTIONS(2970), - [anon_sym_switch] = ACTIONS(2970), - [anon_sym_for] = ACTIONS(2970), - [anon_sym_LPAREN] = ACTIONS(2968), - [anon_sym_SEMI] = ACTIONS(2968), - [anon_sym_await] = ACTIONS(2970), - [anon_sym_while] = ACTIONS(2970), - [anon_sym_do] = ACTIONS(2970), - [anon_sym_try] = ACTIONS(2970), - [anon_sym_break] = ACTIONS(2970), - [anon_sym_continue] = ACTIONS(2970), - [anon_sym_debugger] = ACTIONS(2970), - [anon_sym_return] = ACTIONS(2970), - [anon_sym_throw] = ACTIONS(2970), - [anon_sym_case] = ACTIONS(2970), - [anon_sym_yield] = ACTIONS(2970), - [anon_sym_LBRACK] = ACTIONS(2968), - [sym_glimmer_opening_tag] = ACTIONS(2968), - [anon_sym_class] = ACTIONS(2970), - [anon_sym_async] = ACTIONS(2970), - [anon_sym_function] = ACTIONS(2970), - [anon_sym_new] = ACTIONS(2970), - [anon_sym_using] = ACTIONS(2970), - [anon_sym_PLUS] = ACTIONS(2970), - [anon_sym_DASH] = ACTIONS(2970), - [anon_sym_SLASH] = ACTIONS(2970), - [anon_sym_LT] = ACTIONS(2970), - [anon_sym_TILDE] = ACTIONS(2968), - [anon_sym_void] = ACTIONS(2970), - [anon_sym_delete] = ACTIONS(2970), - [anon_sym_PLUS_PLUS] = ACTIONS(2968), - [anon_sym_DASH_DASH] = ACTIONS(2968), - [anon_sym_DQUOTE] = ACTIONS(2968), - [anon_sym_SQUOTE] = ACTIONS(2968), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2968), - [sym_number] = ACTIONS(2968), - [sym_private_property_identifier] = ACTIONS(2968), - [sym_this] = ACTIONS(2970), - [sym_super] = ACTIONS(2970), - [sym_true] = ACTIONS(2970), - [sym_false] = ACTIONS(2970), - [sym_null] = ACTIONS(2970), - [sym_undefined] = ACTIONS(2970), - [anon_sym_AT] = ACTIONS(2968), - [anon_sym_static] = ACTIONS(2970), - [anon_sym_readonly] = ACTIONS(2970), - [anon_sym_get] = ACTIONS(2970), - [anon_sym_set] = ACTIONS(2970), - [anon_sym_declare] = ACTIONS(2970), - [anon_sym_public] = ACTIONS(2970), - [anon_sym_private] = ACTIONS(2970), - [anon_sym_protected] = ACTIONS(2970), - [anon_sym_override] = ACTIONS(2970), - [anon_sym_module] = ACTIONS(2970), - [anon_sym_any] = ACTIONS(2970), - [anon_sym_number] = ACTIONS(2970), - [anon_sym_boolean] = ACTIONS(2970), - [anon_sym_string] = ACTIONS(2970), - [anon_sym_symbol] = ACTIONS(2970), - [anon_sym_object] = ACTIONS(2970), - [anon_sym_abstract] = ACTIONS(2970), - [anon_sym_interface] = ACTIONS(2970), - [anon_sym_enum] = ACTIONS(2970), + [ts_builtin_sym_end] = ACTIONS(2943), + [sym_identifier] = ACTIONS(2945), + [anon_sym_export] = ACTIONS(2945), + [anon_sym_default] = ACTIONS(2945), + [anon_sym_type] = ACTIONS(2945), + [anon_sym_namespace] = ACTIONS(2945), + [anon_sym_LBRACE] = ACTIONS(2943), + [anon_sym_RBRACE] = ACTIONS(2943), + [anon_sym_typeof] = ACTIONS(2945), + [anon_sym_import] = ACTIONS(2945), + [anon_sym_with] = ACTIONS(2945), + [anon_sym_var] = ACTIONS(2945), + [anon_sym_let] = ACTIONS(2945), + [anon_sym_const] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2943), + [anon_sym_else] = ACTIONS(2945), + [anon_sym_if] = ACTIONS(2945), + [anon_sym_switch] = ACTIONS(2945), + [anon_sym_for] = ACTIONS(2945), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_SEMI] = ACTIONS(2943), + [anon_sym_await] = ACTIONS(2945), + [anon_sym_while] = ACTIONS(2945), + [anon_sym_do] = ACTIONS(2945), + [anon_sym_try] = ACTIONS(2945), + [anon_sym_break] = ACTIONS(2945), + [anon_sym_continue] = ACTIONS(2945), + [anon_sym_debugger] = ACTIONS(2945), + [anon_sym_return] = ACTIONS(2945), + [anon_sym_throw] = ACTIONS(2945), + [anon_sym_case] = ACTIONS(2945), + [anon_sym_yield] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(2943), + [anon_sym_class] = ACTIONS(2945), + [anon_sym_async] = ACTIONS(2945), + [anon_sym_function] = ACTIONS(2945), + [anon_sym_new] = ACTIONS(2945), + [anon_sym_using] = ACTIONS(2945), + [anon_sym_PLUS] = ACTIONS(2945), + [anon_sym_DASH] = ACTIONS(2945), + [anon_sym_SLASH] = ACTIONS(2945), + [anon_sym_LT] = ACTIONS(2943), + [anon_sym_TILDE] = ACTIONS(2943), + [anon_sym_void] = ACTIONS(2945), + [anon_sym_delete] = ACTIONS(2945), + [anon_sym_PLUS_PLUS] = ACTIONS(2943), + [anon_sym_DASH_DASH] = ACTIONS(2943), + [anon_sym_DQUOTE] = ACTIONS(2943), + [anon_sym_SQUOTE] = ACTIONS(2943), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2943), + [sym_number] = ACTIONS(2943), + [sym_private_property_identifier] = ACTIONS(2943), + [sym_this] = ACTIONS(2945), + [sym_super] = ACTIONS(2945), + [sym_true] = ACTIONS(2945), + [sym_false] = ACTIONS(2945), + [sym_null] = ACTIONS(2945), + [sym_undefined] = ACTIONS(2945), + [anon_sym_AT] = ACTIONS(2943), + [anon_sym_static] = ACTIONS(2945), + [anon_sym_readonly] = ACTIONS(2945), + [anon_sym_get] = ACTIONS(2945), + [anon_sym_set] = ACTIONS(2945), + [anon_sym_declare] = ACTIONS(2945), + [anon_sym_public] = ACTIONS(2945), + [anon_sym_private] = ACTIONS(2945), + [anon_sym_protected] = ACTIONS(2945), + [anon_sym_override] = ACTIONS(2945), + [anon_sym_module] = ACTIONS(2945), + [anon_sym_any] = ACTIONS(2945), + [anon_sym_number] = ACTIONS(2945), + [anon_sym_boolean] = ACTIONS(2945), + [anon_sym_string] = ACTIONS(2945), + [anon_sym_symbol] = ACTIONS(2945), + [anon_sym_object] = ACTIONS(2945), + [anon_sym_abstract] = ACTIONS(2945), + [anon_sym_interface] = ACTIONS(2945), + [anon_sym_enum] = ACTIONS(2945), [sym_html_comment] = ACTIONS(5), }, [935] = { - [sym_import] = STATE(4676), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5631), - [sym_rest_pattern] = STATE(5271), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(3304), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3830), - [sym_tuple_parameter] = STATE(5296), - [sym_optional_tuple_parameter] = STATE(5296), - [sym_optional_type] = STATE(5296), - [sym_rest_type] = STATE(5296), - [sym__tuple_type_member] = STATE(5296), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5461), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(2560), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_RBRACK] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2566), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_rest_pattern] = STATE(5165), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3773), + [sym_tuple_parameter] = STATE(5278), + [sym_optional_tuple_parameter] = STATE(5278), + [sym_optional_type] = STATE(5278), + [sym_rest_type] = STATE(5278), + [sym__tuple_type_member] = STATE(5278), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(2489), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(2947), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2495), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [936] = { - [sym_import] = STATE(4676), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5631), - [sym_rest_pattern] = STATE(5271), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(3304), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3830), - [sym_tuple_parameter] = STATE(5296), - [sym_optional_tuple_parameter] = STATE(5296), - [sym_optional_type] = STATE(5296), - [sym_rest_type] = STATE(5296), - [sym__tuple_type_member] = STATE(5296), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5461), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(2560), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_RBRACK] = ACTIONS(2974), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2566), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [ts_builtin_sym_end] = ACTIONS(2949), + [sym_identifier] = ACTIONS(2951), + [anon_sym_export] = ACTIONS(2951), + [anon_sym_default] = ACTIONS(2951), + [anon_sym_type] = ACTIONS(2951), + [anon_sym_namespace] = ACTIONS(2951), + [anon_sym_LBRACE] = ACTIONS(2949), + [anon_sym_RBRACE] = ACTIONS(2949), + [anon_sym_typeof] = ACTIONS(2951), + [anon_sym_import] = ACTIONS(2951), + [anon_sym_with] = ACTIONS(2951), + [anon_sym_var] = ACTIONS(2951), + [anon_sym_let] = ACTIONS(2951), + [anon_sym_const] = ACTIONS(2951), + [anon_sym_BANG] = ACTIONS(2949), + [anon_sym_else] = ACTIONS(2951), + [anon_sym_if] = ACTIONS(2951), + [anon_sym_switch] = ACTIONS(2951), + [anon_sym_for] = ACTIONS(2951), + [anon_sym_LPAREN] = ACTIONS(2949), + [anon_sym_SEMI] = ACTIONS(2949), + [anon_sym_await] = ACTIONS(2951), + [anon_sym_while] = ACTIONS(2951), + [anon_sym_do] = ACTIONS(2951), + [anon_sym_try] = ACTIONS(2951), + [anon_sym_break] = ACTIONS(2951), + [anon_sym_continue] = ACTIONS(2951), + [anon_sym_debugger] = ACTIONS(2951), + [anon_sym_return] = ACTIONS(2951), + [anon_sym_throw] = ACTIONS(2951), + [anon_sym_case] = ACTIONS(2951), + [anon_sym_yield] = ACTIONS(2951), + [anon_sym_LBRACK] = ACTIONS(2949), + [anon_sym_class] = ACTIONS(2951), + [anon_sym_async] = ACTIONS(2951), + [anon_sym_function] = ACTIONS(2951), + [anon_sym_new] = ACTIONS(2951), + [anon_sym_using] = ACTIONS(2951), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_SLASH] = ACTIONS(2951), + [anon_sym_LT] = ACTIONS(2949), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_void] = ACTIONS(2951), + [anon_sym_delete] = ACTIONS(2951), + [anon_sym_PLUS_PLUS] = ACTIONS(2949), + [anon_sym_DASH_DASH] = ACTIONS(2949), + [anon_sym_DQUOTE] = ACTIONS(2949), + [anon_sym_SQUOTE] = ACTIONS(2949), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2949), + [sym_number] = ACTIONS(2949), + [sym_private_property_identifier] = ACTIONS(2949), + [sym_this] = ACTIONS(2951), + [sym_super] = ACTIONS(2951), + [sym_true] = ACTIONS(2951), + [sym_false] = ACTIONS(2951), + [sym_null] = ACTIONS(2951), + [sym_undefined] = ACTIONS(2951), + [anon_sym_AT] = ACTIONS(2949), + [anon_sym_static] = ACTIONS(2951), + [anon_sym_readonly] = ACTIONS(2951), + [anon_sym_get] = ACTIONS(2951), + [anon_sym_set] = ACTIONS(2951), + [anon_sym_declare] = ACTIONS(2951), + [anon_sym_public] = ACTIONS(2951), + [anon_sym_private] = ACTIONS(2951), + [anon_sym_protected] = ACTIONS(2951), + [anon_sym_override] = ACTIONS(2951), + [anon_sym_module] = ACTIONS(2951), + [anon_sym_any] = ACTIONS(2951), + [anon_sym_number] = ACTIONS(2951), + [anon_sym_boolean] = ACTIONS(2951), + [anon_sym_string] = ACTIONS(2951), + [anon_sym_symbol] = ACTIONS(2951), + [anon_sym_object] = ACTIONS(2951), + [anon_sym_abstract] = ACTIONS(2951), + [anon_sym_interface] = ACTIONS(2951), + [anon_sym_enum] = ACTIONS(2951), [sym_html_comment] = ACTIONS(5), }, [937] = { - [sym_import] = STATE(4676), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5631), - [sym_rest_pattern] = STATE(5271), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(3304), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3830), - [sym_tuple_parameter] = STATE(5296), - [sym_optional_tuple_parameter] = STATE(5296), - [sym_optional_type] = STATE(5296), - [sym_rest_type] = STATE(5296), - [sym__tuple_type_member] = STATE(5296), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5461), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(2560), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_RBRACK] = ACTIONS(2976), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2566), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [ts_builtin_sym_end] = ACTIONS(2953), + [sym_identifier] = ACTIONS(2955), + [anon_sym_export] = ACTIONS(2955), + [anon_sym_default] = ACTIONS(2955), + [anon_sym_type] = ACTIONS(2955), + [anon_sym_namespace] = ACTIONS(2955), + [anon_sym_LBRACE] = ACTIONS(2953), + [anon_sym_RBRACE] = ACTIONS(2953), + [anon_sym_typeof] = ACTIONS(2955), + [anon_sym_import] = ACTIONS(2955), + [anon_sym_with] = ACTIONS(2955), + [anon_sym_var] = ACTIONS(2955), + [anon_sym_let] = ACTIONS(2955), + [anon_sym_const] = ACTIONS(2955), + [anon_sym_BANG] = ACTIONS(2953), + [anon_sym_else] = ACTIONS(2955), + [anon_sym_if] = ACTIONS(2955), + [anon_sym_switch] = ACTIONS(2955), + [anon_sym_for] = ACTIONS(2955), + [anon_sym_LPAREN] = ACTIONS(2953), + [anon_sym_SEMI] = ACTIONS(2953), + [anon_sym_await] = ACTIONS(2955), + [anon_sym_while] = ACTIONS(2955), + [anon_sym_do] = ACTIONS(2955), + [anon_sym_try] = ACTIONS(2955), + [anon_sym_break] = ACTIONS(2955), + [anon_sym_continue] = ACTIONS(2955), + [anon_sym_debugger] = ACTIONS(2955), + [anon_sym_return] = ACTIONS(2955), + [anon_sym_throw] = ACTIONS(2955), + [anon_sym_case] = ACTIONS(2955), + [anon_sym_yield] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2953), + [anon_sym_class] = ACTIONS(2955), + [anon_sym_async] = ACTIONS(2955), + [anon_sym_function] = ACTIONS(2955), + [anon_sym_new] = ACTIONS(2955), + [anon_sym_using] = ACTIONS(2955), + [anon_sym_PLUS] = ACTIONS(2955), + [anon_sym_DASH] = ACTIONS(2955), + [anon_sym_SLASH] = ACTIONS(2955), + [anon_sym_LT] = ACTIONS(2953), + [anon_sym_TILDE] = ACTIONS(2953), + [anon_sym_void] = ACTIONS(2955), + [anon_sym_delete] = ACTIONS(2955), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_DQUOTE] = ACTIONS(2953), + [anon_sym_SQUOTE] = ACTIONS(2953), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2953), + [sym_number] = ACTIONS(2953), + [sym_private_property_identifier] = ACTIONS(2953), + [sym_this] = ACTIONS(2955), + [sym_super] = ACTIONS(2955), + [sym_true] = ACTIONS(2955), + [sym_false] = ACTIONS(2955), + [sym_null] = ACTIONS(2955), + [sym_undefined] = ACTIONS(2955), + [anon_sym_AT] = ACTIONS(2953), + [anon_sym_static] = ACTIONS(2955), + [anon_sym_readonly] = ACTIONS(2955), + [anon_sym_get] = ACTIONS(2955), + [anon_sym_set] = ACTIONS(2955), + [anon_sym_declare] = ACTIONS(2955), + [anon_sym_public] = ACTIONS(2955), + [anon_sym_private] = ACTIONS(2955), + [anon_sym_protected] = ACTIONS(2955), + [anon_sym_override] = ACTIONS(2955), + [anon_sym_module] = ACTIONS(2955), + [anon_sym_any] = ACTIONS(2955), + [anon_sym_number] = ACTIONS(2955), + [anon_sym_boolean] = ACTIONS(2955), + [anon_sym_string] = ACTIONS(2955), + [anon_sym_symbol] = ACTIONS(2955), + [anon_sym_object] = ACTIONS(2955), + [anon_sym_abstract] = ACTIONS(2955), + [anon_sym_interface] = ACTIONS(2955), + [anon_sym_enum] = ACTIONS(2955), [sym_html_comment] = ACTIONS(5), }, [938] = { - [sym_import] = STATE(4676), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5631), - [sym_rest_pattern] = STATE(5271), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(3304), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3830), - [sym_tuple_parameter] = STATE(5296), - [sym_optional_tuple_parameter] = STATE(5296), - [sym_optional_type] = STATE(5296), - [sym_rest_type] = STATE(5296), - [sym__tuple_type_member] = STATE(5296), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5461), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(2560), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_RBRACK] = ACTIONS(2978), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2566), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [ts_builtin_sym_end] = ACTIONS(2561), + [sym_identifier] = ACTIONS(2563), + [anon_sym_export] = ACTIONS(2563), + [anon_sym_default] = ACTIONS(2563), + [anon_sym_type] = ACTIONS(2563), + [anon_sym_namespace] = ACTIONS(2563), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_RBRACE] = ACTIONS(2561), + [anon_sym_typeof] = ACTIONS(2563), + [anon_sym_import] = ACTIONS(2563), + [anon_sym_with] = ACTIONS(2563), + [anon_sym_var] = ACTIONS(2563), + [anon_sym_let] = ACTIONS(2563), + [anon_sym_const] = ACTIONS(2563), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_else] = ACTIONS(2563), + [anon_sym_if] = ACTIONS(2563), + [anon_sym_switch] = ACTIONS(2563), + [anon_sym_for] = ACTIONS(2563), + [anon_sym_LPAREN] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_await] = ACTIONS(2563), + [anon_sym_while] = ACTIONS(2563), + [anon_sym_do] = ACTIONS(2563), + [anon_sym_try] = ACTIONS(2563), + [anon_sym_break] = ACTIONS(2563), + [anon_sym_continue] = ACTIONS(2563), + [anon_sym_debugger] = ACTIONS(2563), + [anon_sym_return] = ACTIONS(2563), + [anon_sym_throw] = ACTIONS(2563), + [anon_sym_case] = ACTIONS(2563), + [anon_sym_yield] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(2561), + [anon_sym_class] = ACTIONS(2563), + [anon_sym_async] = ACTIONS(2563), + [anon_sym_function] = ACTIONS(2563), + [anon_sym_new] = ACTIONS(2563), + [anon_sym_using] = ACTIONS(2563), + [anon_sym_PLUS] = ACTIONS(2563), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_SLASH] = ACTIONS(2563), + [anon_sym_LT] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_void] = ACTIONS(2563), + [anon_sym_delete] = ACTIONS(2563), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2561), + [sym_number] = ACTIONS(2561), + [sym_private_property_identifier] = ACTIONS(2561), + [sym_this] = ACTIONS(2563), + [sym_super] = ACTIONS(2563), + [sym_true] = ACTIONS(2563), + [sym_false] = ACTIONS(2563), + [sym_null] = ACTIONS(2563), + [sym_undefined] = ACTIONS(2563), + [anon_sym_AT] = ACTIONS(2561), + [anon_sym_static] = ACTIONS(2563), + [anon_sym_readonly] = ACTIONS(2563), + [anon_sym_get] = ACTIONS(2563), + [anon_sym_set] = ACTIONS(2563), + [anon_sym_declare] = ACTIONS(2563), + [anon_sym_public] = ACTIONS(2563), + [anon_sym_private] = ACTIONS(2563), + [anon_sym_protected] = ACTIONS(2563), + [anon_sym_override] = ACTIONS(2563), + [anon_sym_module] = ACTIONS(2563), + [anon_sym_any] = ACTIONS(2563), + [anon_sym_number] = ACTIONS(2563), + [anon_sym_boolean] = ACTIONS(2563), + [anon_sym_string] = ACTIONS(2563), + [anon_sym_symbol] = ACTIONS(2563), + [anon_sym_object] = ACTIONS(2563), + [anon_sym_abstract] = ACTIONS(2563), + [anon_sym_interface] = ACTIONS(2563), + [anon_sym_enum] = ACTIONS(2563), [sym_html_comment] = ACTIONS(5), }, [939] = { - [sym_import] = STATE(4676), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5631), - [sym_rest_pattern] = STATE(5271), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(3304), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3830), - [sym_tuple_parameter] = STATE(5296), - [sym_optional_tuple_parameter] = STATE(5296), - [sym_optional_type] = STATE(5296), - [sym_rest_type] = STATE(5296), - [sym__tuple_type_member] = STATE(5296), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5461), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(2560), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_RBRACK] = ACTIONS(2980), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2566), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [ts_builtin_sym_end] = ACTIONS(2957), + [sym_identifier] = ACTIONS(2959), + [anon_sym_export] = ACTIONS(2959), + [anon_sym_default] = ACTIONS(2959), + [anon_sym_type] = ACTIONS(2959), + [anon_sym_namespace] = ACTIONS(2959), + [anon_sym_LBRACE] = ACTIONS(2957), + [anon_sym_RBRACE] = ACTIONS(2957), + [anon_sym_typeof] = ACTIONS(2959), + [anon_sym_import] = ACTIONS(2959), + [anon_sym_with] = ACTIONS(2959), + [anon_sym_var] = ACTIONS(2959), + [anon_sym_let] = ACTIONS(2959), + [anon_sym_const] = ACTIONS(2959), + [anon_sym_BANG] = ACTIONS(2957), + [anon_sym_else] = ACTIONS(2959), + [anon_sym_if] = ACTIONS(2959), + [anon_sym_switch] = ACTIONS(2959), + [anon_sym_for] = ACTIONS(2959), + [anon_sym_LPAREN] = ACTIONS(2957), + [anon_sym_SEMI] = ACTIONS(2957), + [anon_sym_await] = ACTIONS(2959), + [anon_sym_while] = ACTIONS(2959), + [anon_sym_do] = ACTIONS(2959), + [anon_sym_try] = ACTIONS(2959), + [anon_sym_break] = ACTIONS(2959), + [anon_sym_continue] = ACTIONS(2959), + [anon_sym_debugger] = ACTIONS(2959), + [anon_sym_return] = ACTIONS(2959), + [anon_sym_throw] = ACTIONS(2959), + [anon_sym_case] = ACTIONS(2959), + [anon_sym_yield] = ACTIONS(2959), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_class] = ACTIONS(2959), + [anon_sym_async] = ACTIONS(2959), + [anon_sym_function] = ACTIONS(2959), + [anon_sym_new] = ACTIONS(2959), + [anon_sym_using] = ACTIONS(2959), + [anon_sym_PLUS] = ACTIONS(2959), + [anon_sym_DASH] = ACTIONS(2959), + [anon_sym_SLASH] = ACTIONS(2959), + [anon_sym_LT] = ACTIONS(2957), + [anon_sym_TILDE] = ACTIONS(2957), + [anon_sym_void] = ACTIONS(2959), + [anon_sym_delete] = ACTIONS(2959), + [anon_sym_PLUS_PLUS] = ACTIONS(2957), + [anon_sym_DASH_DASH] = ACTIONS(2957), + [anon_sym_DQUOTE] = ACTIONS(2957), + [anon_sym_SQUOTE] = ACTIONS(2957), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2957), + [sym_number] = ACTIONS(2957), + [sym_private_property_identifier] = ACTIONS(2957), + [sym_this] = ACTIONS(2959), + [sym_super] = ACTIONS(2959), + [sym_true] = ACTIONS(2959), + [sym_false] = ACTIONS(2959), + [sym_null] = ACTIONS(2959), + [sym_undefined] = ACTIONS(2959), + [anon_sym_AT] = ACTIONS(2957), + [anon_sym_static] = ACTIONS(2959), + [anon_sym_readonly] = ACTIONS(2959), + [anon_sym_get] = ACTIONS(2959), + [anon_sym_set] = ACTIONS(2959), + [anon_sym_declare] = ACTIONS(2959), + [anon_sym_public] = ACTIONS(2959), + [anon_sym_private] = ACTIONS(2959), + [anon_sym_protected] = ACTIONS(2959), + [anon_sym_override] = ACTIONS(2959), + [anon_sym_module] = ACTIONS(2959), + [anon_sym_any] = ACTIONS(2959), + [anon_sym_number] = ACTIONS(2959), + [anon_sym_boolean] = ACTIONS(2959), + [anon_sym_string] = ACTIONS(2959), + [anon_sym_symbol] = ACTIONS(2959), + [anon_sym_object] = ACTIONS(2959), + [anon_sym_abstract] = ACTIONS(2959), + [anon_sym_interface] = ACTIONS(2959), + [anon_sym_enum] = ACTIONS(2959), [sym_html_comment] = ACTIONS(5), }, [940] = { - [sym_import] = STATE(4676), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5631), - [sym_rest_pattern] = STATE(5271), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(3304), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3830), - [sym_tuple_parameter] = STATE(5296), - [sym_optional_tuple_parameter] = STATE(5296), - [sym_optional_type] = STATE(5296), - [sym_rest_type] = STATE(5296), - [sym__tuple_type_member] = STATE(5296), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5461), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(2560), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_RBRACK] = ACTIONS(2982), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2566), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [ts_builtin_sym_end] = ACTIONS(2961), + [sym_identifier] = ACTIONS(2963), + [anon_sym_export] = ACTIONS(2963), + [anon_sym_default] = ACTIONS(2963), + [anon_sym_type] = ACTIONS(2963), + [anon_sym_namespace] = ACTIONS(2963), + [anon_sym_LBRACE] = ACTIONS(2961), + [anon_sym_RBRACE] = ACTIONS(2961), + [anon_sym_typeof] = ACTIONS(2963), + [anon_sym_import] = ACTIONS(2963), + [anon_sym_with] = ACTIONS(2963), + [anon_sym_var] = ACTIONS(2963), + [anon_sym_let] = ACTIONS(2963), + [anon_sym_const] = ACTIONS(2963), + [anon_sym_BANG] = ACTIONS(2961), + [anon_sym_else] = ACTIONS(2963), + [anon_sym_if] = ACTIONS(2963), + [anon_sym_switch] = ACTIONS(2963), + [anon_sym_for] = ACTIONS(2963), + [anon_sym_LPAREN] = ACTIONS(2961), + [anon_sym_SEMI] = ACTIONS(2961), + [anon_sym_await] = ACTIONS(2963), + [anon_sym_while] = ACTIONS(2963), + [anon_sym_do] = ACTIONS(2963), + [anon_sym_try] = ACTIONS(2963), + [anon_sym_break] = ACTIONS(2963), + [anon_sym_continue] = ACTIONS(2963), + [anon_sym_debugger] = ACTIONS(2963), + [anon_sym_return] = ACTIONS(2963), + [anon_sym_throw] = ACTIONS(2963), + [anon_sym_case] = ACTIONS(2963), + [anon_sym_yield] = ACTIONS(2963), + [anon_sym_LBRACK] = ACTIONS(2961), + [anon_sym_class] = ACTIONS(2963), + [anon_sym_async] = ACTIONS(2963), + [anon_sym_function] = ACTIONS(2963), + [anon_sym_new] = ACTIONS(2963), + [anon_sym_using] = ACTIONS(2963), + [anon_sym_PLUS] = ACTIONS(2963), + [anon_sym_DASH] = ACTIONS(2963), + [anon_sym_SLASH] = ACTIONS(2963), + [anon_sym_LT] = ACTIONS(2961), + [anon_sym_TILDE] = ACTIONS(2961), + [anon_sym_void] = ACTIONS(2963), + [anon_sym_delete] = ACTIONS(2963), + [anon_sym_PLUS_PLUS] = ACTIONS(2961), + [anon_sym_DASH_DASH] = ACTIONS(2961), + [anon_sym_DQUOTE] = ACTIONS(2961), + [anon_sym_SQUOTE] = ACTIONS(2961), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2961), + [sym_number] = ACTIONS(2961), + [sym_private_property_identifier] = ACTIONS(2961), + [sym_this] = ACTIONS(2963), + [sym_super] = ACTIONS(2963), + [sym_true] = ACTIONS(2963), + [sym_false] = ACTIONS(2963), + [sym_null] = ACTIONS(2963), + [sym_undefined] = ACTIONS(2963), + [anon_sym_AT] = ACTIONS(2961), + [anon_sym_static] = ACTIONS(2963), + [anon_sym_readonly] = ACTIONS(2963), + [anon_sym_get] = ACTIONS(2963), + [anon_sym_set] = ACTIONS(2963), + [anon_sym_declare] = ACTIONS(2963), + [anon_sym_public] = ACTIONS(2963), + [anon_sym_private] = ACTIONS(2963), + [anon_sym_protected] = ACTIONS(2963), + [anon_sym_override] = ACTIONS(2963), + [anon_sym_module] = ACTIONS(2963), + [anon_sym_any] = ACTIONS(2963), + [anon_sym_number] = ACTIONS(2963), + [anon_sym_boolean] = ACTIONS(2963), + [anon_sym_string] = ACTIONS(2963), + [anon_sym_symbol] = ACTIONS(2963), + [anon_sym_object] = ACTIONS(2963), + [anon_sym_abstract] = ACTIONS(2963), + [anon_sym_interface] = ACTIONS(2963), + [anon_sym_enum] = ACTIONS(2963), [sym_html_comment] = ACTIONS(5), }, [941] = { - [sym_import] = STATE(4676), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5631), - [sym_rest_pattern] = STATE(5271), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(3304), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3830), - [sym_tuple_parameter] = STATE(5296), - [sym_optional_tuple_parameter] = STATE(5296), - [sym_optional_type] = STATE(5296), - [sym_rest_type] = STATE(5296), - [sym__tuple_type_member] = STATE(5296), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5461), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(2560), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_RBRACK] = ACTIONS(2984), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2566), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [ts_builtin_sym_end] = ACTIONS(2965), + [sym_identifier] = ACTIONS(2967), + [anon_sym_export] = ACTIONS(2967), + [anon_sym_default] = ACTIONS(2967), + [anon_sym_type] = ACTIONS(2967), + [anon_sym_namespace] = ACTIONS(2967), + [anon_sym_LBRACE] = ACTIONS(2965), + [anon_sym_RBRACE] = ACTIONS(2965), + [anon_sym_typeof] = ACTIONS(2967), + [anon_sym_import] = ACTIONS(2967), + [anon_sym_with] = ACTIONS(2967), + [anon_sym_var] = ACTIONS(2967), + [anon_sym_let] = ACTIONS(2967), + [anon_sym_const] = ACTIONS(2967), + [anon_sym_BANG] = ACTIONS(2965), + [anon_sym_else] = ACTIONS(2967), + [anon_sym_if] = ACTIONS(2967), + [anon_sym_switch] = ACTIONS(2967), + [anon_sym_for] = ACTIONS(2967), + [anon_sym_LPAREN] = ACTIONS(2965), + [anon_sym_SEMI] = ACTIONS(2965), + [anon_sym_await] = ACTIONS(2967), + [anon_sym_while] = ACTIONS(2967), + [anon_sym_do] = ACTIONS(2967), + [anon_sym_try] = ACTIONS(2967), + [anon_sym_break] = ACTIONS(2967), + [anon_sym_continue] = ACTIONS(2967), + [anon_sym_debugger] = ACTIONS(2967), + [anon_sym_return] = ACTIONS(2967), + [anon_sym_throw] = ACTIONS(2967), + [anon_sym_case] = ACTIONS(2967), + [anon_sym_yield] = ACTIONS(2967), + [anon_sym_LBRACK] = ACTIONS(2965), + [anon_sym_class] = ACTIONS(2967), + [anon_sym_async] = ACTIONS(2967), + [anon_sym_function] = ACTIONS(2967), + [anon_sym_new] = ACTIONS(2967), + [anon_sym_using] = ACTIONS(2967), + [anon_sym_PLUS] = ACTIONS(2967), + [anon_sym_DASH] = ACTIONS(2967), + [anon_sym_SLASH] = ACTIONS(2967), + [anon_sym_LT] = ACTIONS(2965), + [anon_sym_TILDE] = ACTIONS(2965), + [anon_sym_void] = ACTIONS(2967), + [anon_sym_delete] = ACTIONS(2967), + [anon_sym_PLUS_PLUS] = ACTIONS(2965), + [anon_sym_DASH_DASH] = ACTIONS(2965), + [anon_sym_DQUOTE] = ACTIONS(2965), + [anon_sym_SQUOTE] = ACTIONS(2965), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2965), + [sym_number] = ACTIONS(2965), + [sym_private_property_identifier] = ACTIONS(2965), + [sym_this] = ACTIONS(2967), + [sym_super] = ACTIONS(2967), + [sym_true] = ACTIONS(2967), + [sym_false] = ACTIONS(2967), + [sym_null] = ACTIONS(2967), + [sym_undefined] = ACTIONS(2967), + [anon_sym_AT] = ACTIONS(2965), + [anon_sym_static] = ACTIONS(2967), + [anon_sym_readonly] = ACTIONS(2967), + [anon_sym_get] = ACTIONS(2967), + [anon_sym_set] = ACTIONS(2967), + [anon_sym_declare] = ACTIONS(2967), + [anon_sym_public] = ACTIONS(2967), + [anon_sym_private] = ACTIONS(2967), + [anon_sym_protected] = ACTIONS(2967), + [anon_sym_override] = ACTIONS(2967), + [anon_sym_module] = ACTIONS(2967), + [anon_sym_any] = ACTIONS(2967), + [anon_sym_number] = ACTIONS(2967), + [anon_sym_boolean] = ACTIONS(2967), + [anon_sym_string] = ACTIONS(2967), + [anon_sym_symbol] = ACTIONS(2967), + [anon_sym_object] = ACTIONS(2967), + [anon_sym_abstract] = ACTIONS(2967), + [anon_sym_interface] = ACTIONS(2967), + [anon_sym_enum] = ACTIONS(2967), [sym_html_comment] = ACTIONS(5), }, [942] = { - [sym_import] = STATE(4676), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5631), - [sym_rest_pattern] = STATE(5271), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(3304), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3830), - [sym_tuple_parameter] = STATE(5296), - [sym_optional_tuple_parameter] = STATE(5296), - [sym_optional_type] = STATE(5296), - [sym_rest_type] = STATE(5296), - [sym__tuple_type_member] = STATE(5296), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5461), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(2560), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_RBRACK] = ACTIONS(2986), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2566), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [ts_builtin_sym_end] = ACTIONS(2969), + [sym_identifier] = ACTIONS(2971), + [anon_sym_export] = ACTIONS(2971), + [anon_sym_default] = ACTIONS(2971), + [anon_sym_type] = ACTIONS(2971), + [anon_sym_namespace] = ACTIONS(2971), + [anon_sym_LBRACE] = ACTIONS(2969), + [anon_sym_RBRACE] = ACTIONS(2969), + [anon_sym_typeof] = ACTIONS(2971), + [anon_sym_import] = ACTIONS(2971), + [anon_sym_with] = ACTIONS(2971), + [anon_sym_var] = ACTIONS(2971), + [anon_sym_let] = ACTIONS(2971), + [anon_sym_const] = ACTIONS(2971), + [anon_sym_BANG] = ACTIONS(2969), + [anon_sym_else] = ACTIONS(2971), + [anon_sym_if] = ACTIONS(2971), + [anon_sym_switch] = ACTIONS(2971), + [anon_sym_for] = ACTIONS(2971), + [anon_sym_LPAREN] = ACTIONS(2969), + [anon_sym_SEMI] = ACTIONS(2969), + [anon_sym_await] = ACTIONS(2971), + [anon_sym_while] = ACTIONS(2971), + [anon_sym_do] = ACTIONS(2971), + [anon_sym_try] = ACTIONS(2971), + [anon_sym_break] = ACTIONS(2971), + [anon_sym_continue] = ACTIONS(2971), + [anon_sym_debugger] = ACTIONS(2971), + [anon_sym_return] = ACTIONS(2971), + [anon_sym_throw] = ACTIONS(2971), + [anon_sym_case] = ACTIONS(2971), + [anon_sym_yield] = ACTIONS(2971), + [anon_sym_LBRACK] = ACTIONS(2969), + [anon_sym_class] = ACTIONS(2971), + [anon_sym_async] = ACTIONS(2971), + [anon_sym_function] = ACTIONS(2971), + [anon_sym_new] = ACTIONS(2971), + [anon_sym_using] = ACTIONS(2971), + [anon_sym_PLUS] = ACTIONS(2971), + [anon_sym_DASH] = ACTIONS(2971), + [anon_sym_SLASH] = ACTIONS(2971), + [anon_sym_LT] = ACTIONS(2969), + [anon_sym_TILDE] = ACTIONS(2969), + [anon_sym_void] = ACTIONS(2971), + [anon_sym_delete] = ACTIONS(2971), + [anon_sym_PLUS_PLUS] = ACTIONS(2969), + [anon_sym_DASH_DASH] = ACTIONS(2969), + [anon_sym_DQUOTE] = ACTIONS(2969), + [anon_sym_SQUOTE] = ACTIONS(2969), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2969), + [sym_number] = ACTIONS(2969), + [sym_private_property_identifier] = ACTIONS(2969), + [sym_this] = ACTIONS(2971), + [sym_super] = ACTIONS(2971), + [sym_true] = ACTIONS(2971), + [sym_false] = ACTIONS(2971), + [sym_null] = ACTIONS(2971), + [sym_undefined] = ACTIONS(2971), + [anon_sym_AT] = ACTIONS(2969), + [anon_sym_static] = ACTIONS(2971), + [anon_sym_readonly] = ACTIONS(2971), + [anon_sym_get] = ACTIONS(2971), + [anon_sym_set] = ACTIONS(2971), + [anon_sym_declare] = ACTIONS(2971), + [anon_sym_public] = ACTIONS(2971), + [anon_sym_private] = ACTIONS(2971), + [anon_sym_protected] = ACTIONS(2971), + [anon_sym_override] = ACTIONS(2971), + [anon_sym_module] = ACTIONS(2971), + [anon_sym_any] = ACTIONS(2971), + [anon_sym_number] = ACTIONS(2971), + [anon_sym_boolean] = ACTIONS(2971), + [anon_sym_string] = ACTIONS(2971), + [anon_sym_symbol] = ACTIONS(2971), + [anon_sym_object] = ACTIONS(2971), + [anon_sym_abstract] = ACTIONS(2971), + [anon_sym_interface] = ACTIONS(2971), + [anon_sym_enum] = ACTIONS(2971), [sym_html_comment] = ACTIONS(5), }, [943] = { - [sym_import] = STATE(4676), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5631), - [sym_rest_pattern] = STATE(5271), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(3304), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3830), - [sym_tuple_parameter] = STATE(5296), - [sym_optional_tuple_parameter] = STATE(5296), - [sym_optional_type] = STATE(5296), - [sym_rest_type] = STATE(5296), - [sym__tuple_type_member] = STATE(5296), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5461), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(2560), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_RBRACK] = ACTIONS(2988), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2566), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [ts_builtin_sym_end] = ACTIONS(2973), + [sym_identifier] = ACTIONS(2975), + [anon_sym_export] = ACTIONS(2975), + [anon_sym_default] = ACTIONS(2975), + [anon_sym_type] = ACTIONS(2975), + [anon_sym_namespace] = ACTIONS(2975), + [anon_sym_LBRACE] = ACTIONS(2973), + [anon_sym_RBRACE] = ACTIONS(2973), + [anon_sym_typeof] = ACTIONS(2975), + [anon_sym_import] = ACTIONS(2975), + [anon_sym_with] = ACTIONS(2975), + [anon_sym_var] = ACTIONS(2975), + [anon_sym_let] = ACTIONS(2975), + [anon_sym_const] = ACTIONS(2975), + [anon_sym_BANG] = ACTIONS(2973), + [anon_sym_else] = ACTIONS(2975), + [anon_sym_if] = ACTIONS(2975), + [anon_sym_switch] = ACTIONS(2975), + [anon_sym_for] = ACTIONS(2975), + [anon_sym_LPAREN] = ACTIONS(2973), + [anon_sym_SEMI] = ACTIONS(2973), + [anon_sym_await] = ACTIONS(2975), + [anon_sym_while] = ACTIONS(2975), + [anon_sym_do] = ACTIONS(2975), + [anon_sym_try] = ACTIONS(2975), + [anon_sym_break] = ACTIONS(2975), + [anon_sym_continue] = ACTIONS(2975), + [anon_sym_debugger] = ACTIONS(2975), + [anon_sym_return] = ACTIONS(2975), + [anon_sym_throw] = ACTIONS(2975), + [anon_sym_case] = ACTIONS(2975), + [anon_sym_yield] = ACTIONS(2975), + [anon_sym_LBRACK] = ACTIONS(2973), + [anon_sym_class] = ACTIONS(2975), + [anon_sym_async] = ACTIONS(2975), + [anon_sym_function] = ACTIONS(2975), + [anon_sym_new] = ACTIONS(2975), + [anon_sym_using] = ACTIONS(2975), + [anon_sym_PLUS] = ACTIONS(2975), + [anon_sym_DASH] = ACTIONS(2975), + [anon_sym_SLASH] = ACTIONS(2975), + [anon_sym_LT] = ACTIONS(2973), + [anon_sym_TILDE] = ACTIONS(2973), + [anon_sym_void] = ACTIONS(2975), + [anon_sym_delete] = ACTIONS(2975), + [anon_sym_PLUS_PLUS] = ACTIONS(2973), + [anon_sym_DASH_DASH] = ACTIONS(2973), + [anon_sym_DQUOTE] = ACTIONS(2973), + [anon_sym_SQUOTE] = ACTIONS(2973), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2973), + [sym_number] = ACTIONS(2973), + [sym_private_property_identifier] = ACTIONS(2973), + [sym_this] = ACTIONS(2975), + [sym_super] = ACTIONS(2975), + [sym_true] = ACTIONS(2975), + [sym_false] = ACTIONS(2975), + [sym_null] = ACTIONS(2975), + [sym_undefined] = ACTIONS(2975), + [anon_sym_AT] = ACTIONS(2973), + [anon_sym_static] = ACTIONS(2975), + [anon_sym_readonly] = ACTIONS(2975), + [anon_sym_get] = ACTIONS(2975), + [anon_sym_set] = ACTIONS(2975), + [anon_sym_declare] = ACTIONS(2975), + [anon_sym_public] = ACTIONS(2975), + [anon_sym_private] = ACTIONS(2975), + [anon_sym_protected] = ACTIONS(2975), + [anon_sym_override] = ACTIONS(2975), + [anon_sym_module] = ACTIONS(2975), + [anon_sym_any] = ACTIONS(2975), + [anon_sym_number] = ACTIONS(2975), + [anon_sym_boolean] = ACTIONS(2975), + [anon_sym_string] = ACTIONS(2975), + [anon_sym_symbol] = ACTIONS(2975), + [anon_sym_object] = ACTIONS(2975), + [anon_sym_abstract] = ACTIONS(2975), + [anon_sym_interface] = ACTIONS(2975), + [anon_sym_enum] = ACTIONS(2975), [sym_html_comment] = ACTIONS(5), }, [944] = { - [sym_import] = STATE(4676), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5631), - [sym_rest_pattern] = STATE(5271), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(3304), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3830), - [sym_tuple_parameter] = STATE(5296), - [sym_optional_tuple_parameter] = STATE(5296), - [sym_optional_type] = STATE(5296), - [sym_rest_type] = STATE(5296), - [sym__tuple_type_member] = STATE(5296), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5461), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(2560), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_RBRACK] = ACTIONS(2990), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2566), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [ts_builtin_sym_end] = ACTIONS(2977), + [sym_identifier] = ACTIONS(2979), + [anon_sym_export] = ACTIONS(2979), + [anon_sym_default] = ACTIONS(2979), + [anon_sym_type] = ACTIONS(2979), + [anon_sym_namespace] = ACTIONS(2979), + [anon_sym_LBRACE] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(2977), + [anon_sym_typeof] = ACTIONS(2979), + [anon_sym_import] = ACTIONS(2979), + [anon_sym_with] = ACTIONS(2979), + [anon_sym_var] = ACTIONS(2979), + [anon_sym_let] = ACTIONS(2979), + [anon_sym_const] = ACTIONS(2979), + [anon_sym_BANG] = ACTIONS(2977), + [anon_sym_else] = ACTIONS(2979), + [anon_sym_if] = ACTIONS(2979), + [anon_sym_switch] = ACTIONS(2979), + [anon_sym_for] = ACTIONS(2979), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_SEMI] = ACTIONS(2977), + [anon_sym_await] = ACTIONS(2979), + [anon_sym_while] = ACTIONS(2979), + [anon_sym_do] = ACTIONS(2979), + [anon_sym_try] = ACTIONS(2979), + [anon_sym_break] = ACTIONS(2979), + [anon_sym_continue] = ACTIONS(2979), + [anon_sym_debugger] = ACTIONS(2979), + [anon_sym_return] = ACTIONS(2979), + [anon_sym_throw] = ACTIONS(2979), + [anon_sym_case] = ACTIONS(2979), + [anon_sym_yield] = ACTIONS(2979), + [anon_sym_LBRACK] = ACTIONS(2977), + [anon_sym_class] = ACTIONS(2979), + [anon_sym_async] = ACTIONS(2979), + [anon_sym_function] = ACTIONS(2979), + [anon_sym_new] = ACTIONS(2979), + [anon_sym_using] = ACTIONS(2979), + [anon_sym_PLUS] = ACTIONS(2979), + [anon_sym_DASH] = ACTIONS(2979), + [anon_sym_SLASH] = ACTIONS(2979), + [anon_sym_LT] = ACTIONS(2977), + [anon_sym_TILDE] = ACTIONS(2977), + [anon_sym_void] = ACTIONS(2979), + [anon_sym_delete] = ACTIONS(2979), + [anon_sym_PLUS_PLUS] = ACTIONS(2977), + [anon_sym_DASH_DASH] = ACTIONS(2977), + [anon_sym_DQUOTE] = ACTIONS(2977), + [anon_sym_SQUOTE] = ACTIONS(2977), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2977), + [sym_number] = ACTIONS(2977), + [sym_private_property_identifier] = ACTIONS(2977), + [sym_this] = ACTIONS(2979), + [sym_super] = ACTIONS(2979), + [sym_true] = ACTIONS(2979), + [sym_false] = ACTIONS(2979), + [sym_null] = ACTIONS(2979), + [sym_undefined] = ACTIONS(2979), + [anon_sym_AT] = ACTIONS(2977), + [anon_sym_static] = ACTIONS(2979), + [anon_sym_readonly] = ACTIONS(2979), + [anon_sym_get] = ACTIONS(2979), + [anon_sym_set] = ACTIONS(2979), + [anon_sym_declare] = ACTIONS(2979), + [anon_sym_public] = ACTIONS(2979), + [anon_sym_private] = ACTIONS(2979), + [anon_sym_protected] = ACTIONS(2979), + [anon_sym_override] = ACTIONS(2979), + [anon_sym_module] = ACTIONS(2979), + [anon_sym_any] = ACTIONS(2979), + [anon_sym_number] = ACTIONS(2979), + [anon_sym_boolean] = ACTIONS(2979), + [anon_sym_string] = ACTIONS(2979), + [anon_sym_symbol] = ACTIONS(2979), + [anon_sym_object] = ACTIONS(2979), + [anon_sym_abstract] = ACTIONS(2979), + [anon_sym_interface] = ACTIONS(2979), + [anon_sym_enum] = ACTIONS(2979), [sym_html_comment] = ACTIONS(5), }, [945] = { - [sym_import] = STATE(4676), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5631), - [sym_rest_pattern] = STATE(5271), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(3304), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3830), - [sym_tuple_parameter] = STATE(5296), - [sym_optional_tuple_parameter] = STATE(5296), - [sym_optional_type] = STATE(5296), - [sym_rest_type] = STATE(5296), - [sym__tuple_type_member] = STATE(5296), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5461), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(2560), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2566), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_rest_pattern] = STATE(5165), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3773), + [sym_tuple_parameter] = STATE(5278), + [sym_optional_tuple_parameter] = STATE(5278), + [sym_optional_type] = STATE(5278), + [sym_rest_type] = STATE(5278), + [sym__tuple_type_member] = STATE(5278), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(2489), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2495), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [946] = { - [sym_identifier] = ACTIONS(2522), - [anon_sym_export] = ACTIONS(2522), - [anon_sym_type] = ACTIONS(2522), - [anon_sym_namespace] = ACTIONS(2522), - [anon_sym_LBRACE] = ACTIONS(2520), - [anon_sym_typeof] = ACTIONS(2522), - [anon_sym_import] = ACTIONS(2522), - [anon_sym_with] = ACTIONS(2522), - [anon_sym_var] = ACTIONS(2522), - [anon_sym_let] = ACTIONS(2522), - [anon_sym_const] = ACTIONS(2522), - [anon_sym_BANG] = ACTIONS(2520), - [anon_sym_if] = ACTIONS(2522), - [anon_sym_switch] = ACTIONS(2522), - [anon_sym_for] = ACTIONS(2522), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_SEMI] = ACTIONS(2520), - [anon_sym_await] = ACTIONS(2522), - [anon_sym_while] = ACTIONS(2522), - [anon_sym_do] = ACTIONS(2522), - [anon_sym_try] = ACTIONS(2522), - [anon_sym_break] = ACTIONS(2522), - [anon_sym_continue] = ACTIONS(2522), - [anon_sym_debugger] = ACTIONS(2522), - [anon_sym_return] = ACTIONS(2522), - [anon_sym_throw] = ACTIONS(2522), - [anon_sym_yield] = ACTIONS(2522), - [anon_sym_LBRACK] = ACTIONS(2520), - [sym_glimmer_opening_tag] = ACTIONS(2520), - [anon_sym_class] = ACTIONS(2522), - [anon_sym_async] = ACTIONS(2522), - [anon_sym_function] = ACTIONS(2522), - [anon_sym_new] = ACTIONS(2522), - [anon_sym_using] = ACTIONS(2522), - [anon_sym_PLUS] = ACTIONS(2522), - [anon_sym_DASH] = ACTIONS(2522), - [anon_sym_SLASH] = ACTIONS(2522), - [anon_sym_LT] = ACTIONS(2522), - [anon_sym_TILDE] = ACTIONS(2520), - [anon_sym_void] = ACTIONS(2522), - [anon_sym_delete] = ACTIONS(2522), - [anon_sym_PLUS_PLUS] = ACTIONS(2520), - [anon_sym_DASH_DASH] = ACTIONS(2520), - [anon_sym_DQUOTE] = ACTIONS(2520), - [anon_sym_SQUOTE] = ACTIONS(2520), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2520), - [sym_number] = ACTIONS(2520), - [sym_private_property_identifier] = ACTIONS(2520), - [sym_this] = ACTIONS(2522), - [sym_super] = ACTIONS(2522), - [sym_true] = ACTIONS(2522), - [sym_false] = ACTIONS(2522), - [sym_null] = ACTIONS(2522), - [sym_undefined] = ACTIONS(2522), - [anon_sym_AT] = ACTIONS(2520), - [anon_sym_static] = ACTIONS(2522), - [anon_sym_readonly] = ACTIONS(2522), - [anon_sym_get] = ACTIONS(2522), - [anon_sym_set] = ACTIONS(2522), - [anon_sym_declare] = ACTIONS(2522), - [anon_sym_public] = ACTIONS(2522), - [anon_sym_private] = ACTIONS(2522), - [anon_sym_protected] = ACTIONS(2522), - [anon_sym_override] = ACTIONS(2522), - [anon_sym_module] = ACTIONS(2522), - [anon_sym_any] = ACTIONS(2522), - [anon_sym_number] = ACTIONS(2522), - [anon_sym_boolean] = ACTIONS(2522), - [anon_sym_string] = ACTIONS(2522), - [anon_sym_symbol] = ACTIONS(2522), - [anon_sym_object] = ACTIONS(2522), - [anon_sym_abstract] = ACTIONS(2522), - [anon_sym_interface] = ACTIONS(2522), - [anon_sym_enum] = ACTIONS(2522), + [sym_import] = STATE(4950), + [sym_nested_identifier] = STATE(5535), + [sym_string] = STATE(3265), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(3076), + [sym__type_query_call_expression_in_type_annotation] = STATE(3200), + [sym_asserts] = STATE(3229), + [sym_type] = STATE(3242), + [sym_constructor_type] = STATE(3271), + [sym_primary_type] = STATE(3272), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3271), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_predicate] = STATE(3229), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3212), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5146), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3271), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3271), + [sym_identifier] = ACTIONS(2981), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_new] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_this] = ACTIONS(2985), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_any] = ACTIONS(1032), + [anon_sym_number] = ACTIONS(1032), + [anon_sym_boolean] = ACTIONS(1032), + [anon_sym_string] = ACTIONS(1032), + [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_object] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_asserts] = ACTIONS(2987), + [anon_sym_infer] = ACTIONS(1026), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), [sym_html_comment] = ACTIONS(5), }, [947] = { - [sym_identifier] = ACTIONS(2502), - [anon_sym_export] = ACTIONS(2502), - [anon_sym_type] = ACTIONS(2502), - [anon_sym_namespace] = ACTIONS(2502), - [anon_sym_LBRACE] = ACTIONS(2500), - [anon_sym_typeof] = ACTIONS(2502), - [anon_sym_import] = ACTIONS(2502), - [anon_sym_with] = ACTIONS(2502), - [anon_sym_var] = ACTIONS(2502), - [anon_sym_let] = ACTIONS(2502), - [anon_sym_const] = ACTIONS(2502), - [anon_sym_BANG] = ACTIONS(2500), - [anon_sym_if] = ACTIONS(2502), - [anon_sym_switch] = ACTIONS(2502), - [anon_sym_for] = ACTIONS(2502), - [anon_sym_LPAREN] = ACTIONS(2500), - [anon_sym_SEMI] = ACTIONS(2500), - [anon_sym_await] = ACTIONS(2502), - [anon_sym_while] = ACTIONS(2502), - [anon_sym_do] = ACTIONS(2502), - [anon_sym_try] = ACTIONS(2502), - [anon_sym_break] = ACTIONS(2502), - [anon_sym_continue] = ACTIONS(2502), - [anon_sym_debugger] = ACTIONS(2502), - [anon_sym_return] = ACTIONS(2502), - [anon_sym_throw] = ACTIONS(2502), - [anon_sym_yield] = ACTIONS(2502), - [anon_sym_LBRACK] = ACTIONS(2500), - [sym_glimmer_opening_tag] = ACTIONS(2500), - [anon_sym_class] = ACTIONS(2502), - [anon_sym_async] = ACTIONS(2502), - [anon_sym_function] = ACTIONS(2502), - [anon_sym_new] = ACTIONS(2502), - [anon_sym_using] = ACTIONS(2502), - [anon_sym_PLUS] = ACTIONS(2502), - [anon_sym_DASH] = ACTIONS(2502), - [anon_sym_SLASH] = ACTIONS(2502), - [anon_sym_LT] = ACTIONS(2502), - [anon_sym_TILDE] = ACTIONS(2500), - [anon_sym_void] = ACTIONS(2502), - [anon_sym_delete] = ACTIONS(2502), - [anon_sym_PLUS_PLUS] = ACTIONS(2500), - [anon_sym_DASH_DASH] = ACTIONS(2500), - [anon_sym_DQUOTE] = ACTIONS(2500), - [anon_sym_SQUOTE] = ACTIONS(2500), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2500), - [sym_number] = ACTIONS(2500), - [sym_private_property_identifier] = ACTIONS(2500), - [sym_this] = ACTIONS(2502), - [sym_super] = ACTIONS(2502), - [sym_true] = ACTIONS(2502), - [sym_false] = ACTIONS(2502), - [sym_null] = ACTIONS(2502), - [sym_undefined] = ACTIONS(2502), - [anon_sym_AT] = ACTIONS(2500), - [anon_sym_static] = ACTIONS(2502), - [anon_sym_readonly] = ACTIONS(2502), - [anon_sym_get] = ACTIONS(2502), - [anon_sym_set] = ACTIONS(2502), - [anon_sym_declare] = ACTIONS(2502), - [anon_sym_public] = ACTIONS(2502), - [anon_sym_private] = ACTIONS(2502), - [anon_sym_protected] = ACTIONS(2502), - [anon_sym_override] = ACTIONS(2502), - [anon_sym_module] = ACTIONS(2502), - [anon_sym_any] = ACTIONS(2502), - [anon_sym_number] = ACTIONS(2502), - [anon_sym_boolean] = ACTIONS(2502), - [anon_sym_string] = ACTIONS(2502), - [anon_sym_symbol] = ACTIONS(2502), - [anon_sym_object] = ACTIONS(2502), - [anon_sym_abstract] = ACTIONS(2502), - [anon_sym_interface] = ACTIONS(2502), - [anon_sym_enum] = ACTIONS(2502), + [sym_identifier] = ACTIONS(2989), + [anon_sym_export] = ACTIONS(2989), + [anon_sym_type] = ACTIONS(2989), + [anon_sym_namespace] = ACTIONS(2989), + [anon_sym_LBRACE] = ACTIONS(2991), + [anon_sym_typeof] = ACTIONS(2989), + [anon_sym_import] = ACTIONS(2989), + [anon_sym_with] = ACTIONS(2989), + [anon_sym_var] = ACTIONS(2989), + [anon_sym_let] = ACTIONS(2989), + [anon_sym_const] = ACTIONS(2989), + [anon_sym_BANG] = ACTIONS(2991), + [anon_sym_if] = ACTIONS(2989), + [anon_sym_switch] = ACTIONS(2989), + [anon_sym_for] = ACTIONS(2989), + [anon_sym_LPAREN] = ACTIONS(2991), + [anon_sym_SEMI] = ACTIONS(2991), + [anon_sym_await] = ACTIONS(2989), + [anon_sym_while] = ACTIONS(2989), + [anon_sym_do] = ACTIONS(2989), + [anon_sym_try] = ACTIONS(2989), + [anon_sym_break] = ACTIONS(2989), + [anon_sym_continue] = ACTIONS(2989), + [anon_sym_debugger] = ACTIONS(2989), + [anon_sym_return] = ACTIONS(2989), + [anon_sym_throw] = ACTIONS(2989), + [anon_sym_yield] = ACTIONS(2989), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_class] = ACTIONS(2989), + [anon_sym_async] = ACTIONS(2989), + [anon_sym_function] = ACTIONS(2989), + [anon_sym_new] = ACTIONS(2989), + [anon_sym_using] = ACTIONS(2989), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_SLASH] = ACTIONS(2989), + [anon_sym_LT] = ACTIONS(2991), + [anon_sym_TILDE] = ACTIONS(2991), + [anon_sym_void] = ACTIONS(2989), + [anon_sym_delete] = ACTIONS(2989), + [anon_sym_PLUS_PLUS] = ACTIONS(2991), + [anon_sym_DASH_DASH] = ACTIONS(2991), + [anon_sym_DQUOTE] = ACTIONS(2991), + [anon_sym_SQUOTE] = ACTIONS(2991), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2991), + [sym_number] = ACTIONS(2991), + [sym_private_property_identifier] = ACTIONS(2991), + [sym_this] = ACTIONS(2989), + [sym_super] = ACTIONS(2989), + [sym_true] = ACTIONS(2989), + [sym_false] = ACTIONS(2989), + [sym_null] = ACTIONS(2989), + [sym_undefined] = ACTIONS(2989), + [anon_sym_AT] = ACTIONS(2991), + [anon_sym_static] = ACTIONS(2989), + [anon_sym_readonly] = ACTIONS(2989), + [anon_sym_get] = ACTIONS(2989), + [anon_sym_set] = ACTIONS(2989), + [anon_sym_declare] = ACTIONS(2989), + [anon_sym_public] = ACTIONS(2989), + [anon_sym_private] = ACTIONS(2989), + [anon_sym_protected] = ACTIONS(2989), + [anon_sym_override] = ACTIONS(2989), + [anon_sym_module] = ACTIONS(2989), + [anon_sym_any] = ACTIONS(2989), + [anon_sym_number] = ACTIONS(2989), + [anon_sym_boolean] = ACTIONS(2989), + [anon_sym_string] = ACTIONS(2989), + [anon_sym_symbol] = ACTIONS(2989), + [anon_sym_object] = ACTIONS(2989), + [anon_sym_abstract] = ACTIONS(2989), + [anon_sym_interface] = ACTIONS(2989), + [anon_sym_enum] = ACTIONS(2989), [sym_html_comment] = ACTIONS(5), }, [948] = { - [sym_identifier] = ACTIONS(2992), - [anon_sym_export] = ACTIONS(2992), - [anon_sym_type] = ACTIONS(2992), - [anon_sym_namespace] = ACTIONS(2992), - [anon_sym_LBRACE] = ACTIONS(2994), - [anon_sym_typeof] = ACTIONS(2992), - [anon_sym_import] = ACTIONS(2992), - [anon_sym_with] = ACTIONS(2992), - [anon_sym_var] = ACTIONS(2992), - [anon_sym_let] = ACTIONS(2992), - [anon_sym_const] = ACTIONS(2992), - [anon_sym_BANG] = ACTIONS(2994), - [anon_sym_if] = ACTIONS(2992), - [anon_sym_switch] = ACTIONS(2992), - [anon_sym_for] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2994), - [anon_sym_SEMI] = ACTIONS(2994), - [anon_sym_await] = ACTIONS(2992), - [anon_sym_while] = ACTIONS(2992), - [anon_sym_do] = ACTIONS(2992), - [anon_sym_try] = ACTIONS(2992), - [anon_sym_break] = ACTIONS(2992), - [anon_sym_continue] = ACTIONS(2992), - [anon_sym_debugger] = ACTIONS(2992), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_throw] = ACTIONS(2992), - [anon_sym_yield] = ACTIONS(2992), - [anon_sym_LBRACK] = ACTIONS(2994), - [sym_glimmer_opening_tag] = ACTIONS(2994), - [anon_sym_class] = ACTIONS(2992), - [anon_sym_async] = ACTIONS(2992), - [anon_sym_function] = ACTIONS(2992), - [anon_sym_new] = ACTIONS(2992), - [anon_sym_using] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2992), - [anon_sym_DASH] = ACTIONS(2992), - [anon_sym_SLASH] = ACTIONS(2992), - [anon_sym_LT] = ACTIONS(2992), - [anon_sym_TILDE] = ACTIONS(2994), - [anon_sym_void] = ACTIONS(2992), - [anon_sym_delete] = ACTIONS(2992), - [anon_sym_PLUS_PLUS] = ACTIONS(2994), - [anon_sym_DASH_DASH] = ACTIONS(2994), - [anon_sym_DQUOTE] = ACTIONS(2994), - [anon_sym_SQUOTE] = ACTIONS(2994), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2994), - [sym_number] = ACTIONS(2994), - [sym_private_property_identifier] = ACTIONS(2994), - [sym_this] = ACTIONS(2992), - [sym_super] = ACTIONS(2992), - [sym_true] = ACTIONS(2992), - [sym_false] = ACTIONS(2992), - [sym_null] = ACTIONS(2992), - [sym_undefined] = ACTIONS(2992), - [anon_sym_AT] = ACTIONS(2994), - [anon_sym_static] = ACTIONS(2992), - [anon_sym_readonly] = ACTIONS(2992), - [anon_sym_get] = ACTIONS(2992), - [anon_sym_set] = ACTIONS(2992), - [anon_sym_declare] = ACTIONS(2992), - [anon_sym_public] = ACTIONS(2992), - [anon_sym_private] = ACTIONS(2992), - [anon_sym_protected] = ACTIONS(2992), - [anon_sym_override] = ACTIONS(2992), - [anon_sym_module] = ACTIONS(2992), - [anon_sym_any] = ACTIONS(2992), - [anon_sym_number] = ACTIONS(2992), - [anon_sym_boolean] = ACTIONS(2992), - [anon_sym_string] = ACTIONS(2992), - [anon_sym_symbol] = ACTIONS(2992), - [anon_sym_object] = ACTIONS(2992), - [anon_sym_abstract] = ACTIONS(2992), - [anon_sym_interface] = ACTIONS(2992), - [anon_sym_enum] = ACTIONS(2992), + [sym_import] = STATE(4578), + [sym_nested_identifier] = STATE(5796), + [sym_string] = STATE(3437), + [sym_formal_parameters] = STATE(5519), + [sym_nested_type_identifier] = STATE(3278), + [sym__type_query_member_expression_in_type_annotation] = STATE(3181), + [sym__type_query_call_expression_in_type_annotation] = STATE(3311), + [sym_asserts] = STATE(3445), + [sym_type] = STATE(3447), + [sym_constructor_type] = STATE(3448), + [sym_primary_type] = STATE(3450), + [sym_template_literal_type] = STATE(3453), + [sym_infer_type] = STATE(3448), + [sym_conditional_type] = STATE(3453), + [sym_generic_type] = STATE(3453), + [sym_type_predicate] = STATE(3445), + [sym_type_query] = STATE(3453), + [sym_index_type_query] = STATE(3453), + [sym_lookup_type] = STATE(3453), + [sym_literal_type] = STATE(3453), + [sym__number] = STATE(3454), + [sym_existential_type] = STATE(3453), + [sym_flow_maybe_type] = STATE(3453), + [sym_parenthesized_type] = STATE(3453), + [sym_predefined_type] = STATE(3305), + [sym_object_type] = STATE(3453), + [sym_type_parameters] = STATE(5251), + [sym_array_type] = STATE(3453), + [sym_tuple_type] = STATE(3453), + [sym_readonly_type] = STATE(3448), + [sym_union_type] = STATE(3453), + [sym_intersection_type] = STATE(3453), + [sym_function_type] = STATE(3448), + [sym_identifier] = ACTIONS(2993), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_typeof] = ACTIONS(2999), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3003), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_new] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_PIPE] = ACTIONS(3011), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3015), + [anon_sym_DQUOTE] = ACTIONS(3017), + [anon_sym_SQUOTE] = ACTIONS(3019), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3021), + [sym_number] = ACTIONS(3023), + [sym_this] = ACTIONS(3025), + [sym_true] = ACTIONS(3027), + [sym_false] = ACTIONS(3027), + [sym_null] = ACTIONS(3027), + [sym_undefined] = ACTIONS(3027), + [anon_sym_readonly] = ACTIONS(3029), + [anon_sym_QMARK] = ACTIONS(3031), + [anon_sym_any] = ACTIONS(3015), + [anon_sym_number] = ACTIONS(3015), + [anon_sym_boolean] = ACTIONS(3015), + [anon_sym_string] = ACTIONS(3015), + [anon_sym_symbol] = ACTIONS(3015), + [anon_sym_object] = ACTIONS(3015), + [anon_sym_abstract] = ACTIONS(3033), + [anon_sym_asserts] = ACTIONS(3035), + [anon_sym_infer] = ACTIONS(3037), + [anon_sym_keyof] = ACTIONS(3039), + [anon_sym_unique] = ACTIONS(3041), + [anon_sym_unknown] = ACTIONS(3015), + [anon_sym_never] = ACTIONS(3015), + [anon_sym_LBRACE_PIPE] = ACTIONS(3043), [sym_html_comment] = ACTIONS(5), }, [949] = { - [sym_identifier] = ACTIONS(2996), - [anon_sym_export] = ACTIONS(2996), - [anon_sym_type] = ACTIONS(2996), - [anon_sym_namespace] = ACTIONS(2996), - [anon_sym_LBRACE] = ACTIONS(2998), - [anon_sym_typeof] = ACTIONS(2996), - [anon_sym_import] = ACTIONS(2996), - [anon_sym_with] = ACTIONS(2996), - [anon_sym_var] = ACTIONS(2996), - [anon_sym_let] = ACTIONS(2996), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_BANG] = ACTIONS(2998), - [anon_sym_if] = ACTIONS(2996), - [anon_sym_switch] = ACTIONS(2996), - [anon_sym_for] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(2998), - [anon_sym_SEMI] = ACTIONS(2998), - [anon_sym_await] = ACTIONS(2996), - [anon_sym_while] = ACTIONS(2996), - [anon_sym_do] = ACTIONS(2996), - [anon_sym_try] = ACTIONS(2996), - [anon_sym_break] = ACTIONS(2996), - [anon_sym_continue] = ACTIONS(2996), - [anon_sym_debugger] = ACTIONS(2996), - [anon_sym_return] = ACTIONS(2996), - [anon_sym_throw] = ACTIONS(2996), - [anon_sym_yield] = ACTIONS(2996), - [anon_sym_LBRACK] = ACTIONS(2998), - [sym_glimmer_opening_tag] = ACTIONS(2998), - [anon_sym_class] = ACTIONS(2996), - [anon_sym_async] = ACTIONS(2996), - [anon_sym_function] = ACTIONS(2996), - [anon_sym_new] = ACTIONS(2996), - [anon_sym_using] = ACTIONS(2996), - [anon_sym_PLUS] = ACTIONS(2996), - [anon_sym_DASH] = ACTIONS(2996), - [anon_sym_SLASH] = ACTIONS(2996), - [anon_sym_LT] = ACTIONS(2996), - [anon_sym_TILDE] = ACTIONS(2998), - [anon_sym_void] = ACTIONS(2996), - [anon_sym_delete] = ACTIONS(2996), - [anon_sym_PLUS_PLUS] = ACTIONS(2998), - [anon_sym_DASH_DASH] = ACTIONS(2998), - [anon_sym_DQUOTE] = ACTIONS(2998), - [anon_sym_SQUOTE] = ACTIONS(2998), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2998), - [sym_number] = ACTIONS(2998), - [sym_private_property_identifier] = ACTIONS(2998), - [sym_this] = ACTIONS(2996), - [sym_super] = ACTIONS(2996), - [sym_true] = ACTIONS(2996), - [sym_false] = ACTIONS(2996), - [sym_null] = ACTIONS(2996), - [sym_undefined] = ACTIONS(2996), - [anon_sym_AT] = ACTIONS(2998), - [anon_sym_static] = ACTIONS(2996), - [anon_sym_readonly] = ACTIONS(2996), - [anon_sym_get] = ACTIONS(2996), - [anon_sym_set] = ACTIONS(2996), - [anon_sym_declare] = ACTIONS(2996), - [anon_sym_public] = ACTIONS(2996), - [anon_sym_private] = ACTIONS(2996), - [anon_sym_protected] = ACTIONS(2996), - [anon_sym_override] = ACTIONS(2996), - [anon_sym_module] = ACTIONS(2996), - [anon_sym_any] = ACTIONS(2996), - [anon_sym_number] = ACTIONS(2996), - [anon_sym_boolean] = ACTIONS(2996), - [anon_sym_string] = ACTIONS(2996), - [anon_sym_symbol] = ACTIONS(2996), - [anon_sym_object] = ACTIONS(2996), - [anon_sym_abstract] = ACTIONS(2996), - [anon_sym_interface] = ACTIONS(2996), - [anon_sym_enum] = ACTIONS(2996), + [sym_import] = STATE(4650), + [sym_nested_identifier] = STATE(5567), + [sym_string] = STATE(1975), + [sym_formal_parameters] = STATE(5527), + [sym_nested_type_identifier] = STATE(1865), + [sym__type_query_member_expression_in_type_annotation] = STATE(1781), + [sym__type_query_call_expression_in_type_annotation] = STATE(1911), + [sym_asserts] = STATE(1991), + [sym_type] = STATE(1992), + [sym_constructor_type] = STATE(1912), + [sym_primary_type] = STATE(1915), + [sym_template_literal_type] = STATE(1916), + [sym_infer_type] = STATE(1912), + [sym_conditional_type] = STATE(1916), + [sym_generic_type] = STATE(1916), + [sym_type_predicate] = STATE(1991), + [sym_type_query] = STATE(1916), + [sym_index_type_query] = STATE(1916), + [sym_lookup_type] = STATE(1916), + [sym_literal_type] = STATE(1916), + [sym__number] = STATE(1918), + [sym_existential_type] = STATE(1916), + [sym_flow_maybe_type] = STATE(1916), + [sym_parenthesized_type] = STATE(1916), + [sym_predefined_type] = STATE(1822), + [sym_object_type] = STATE(1916), + [sym_type_parameters] = STATE(5243), + [sym_array_type] = STATE(1916), + [sym_tuple_type] = STATE(1916), + [sym_readonly_type] = STATE(1912), + [sym_union_type] = STATE(1916), + [sym_intersection_type] = STATE(1916), + [sym_function_type] = STATE(1912), + [sym_identifier] = ACTIONS(3045), + [anon_sym_STAR] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3053), + [anon_sym_LPAREN] = ACTIONS(3055), + [anon_sym_LBRACK] = ACTIONS(3057), + [anon_sym_new] = ACTIONS(3059), + [anon_sym_AMP] = ACTIONS(3061), + [anon_sym_PIPE] = ACTIONS(3063), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3067), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3069), + [sym_number] = ACTIONS(3071), + [sym_this] = ACTIONS(3073), + [sym_true] = ACTIONS(3075), + [sym_false] = ACTIONS(3075), + [sym_null] = ACTIONS(3075), + [sym_undefined] = ACTIONS(3075), + [anon_sym_readonly] = ACTIONS(3077), + [anon_sym_QMARK] = ACTIONS(3079), + [anon_sym_any] = ACTIONS(3067), + [anon_sym_number] = ACTIONS(3067), + [anon_sym_boolean] = ACTIONS(3067), + [anon_sym_string] = ACTIONS(3067), + [anon_sym_symbol] = ACTIONS(3067), + [anon_sym_object] = ACTIONS(3067), + [anon_sym_abstract] = ACTIONS(3081), + [anon_sym_asserts] = ACTIONS(3083), + [anon_sym_infer] = ACTIONS(3085), + [anon_sym_keyof] = ACTIONS(3087), + [anon_sym_unique] = ACTIONS(3089), + [anon_sym_unknown] = ACTIONS(3067), + [anon_sym_never] = ACTIONS(3067), + [anon_sym_LBRACE_PIPE] = ACTIONS(3091), [sym_html_comment] = ACTIONS(5), }, [950] = { - [sym_identifier] = ACTIONS(3000), - [anon_sym_export] = ACTIONS(3000), - [anon_sym_type] = ACTIONS(3000), - [anon_sym_namespace] = ACTIONS(3000), - [anon_sym_LBRACE] = ACTIONS(3002), - [anon_sym_typeof] = ACTIONS(3000), - [anon_sym_import] = ACTIONS(3000), - [anon_sym_with] = ACTIONS(3000), - [anon_sym_var] = ACTIONS(3000), - [anon_sym_let] = ACTIONS(3000), - [anon_sym_const] = ACTIONS(3000), - [anon_sym_BANG] = ACTIONS(3002), - [anon_sym_if] = ACTIONS(3000), - [anon_sym_switch] = ACTIONS(3000), - [anon_sym_for] = ACTIONS(3000), - [anon_sym_LPAREN] = ACTIONS(3002), - [anon_sym_SEMI] = ACTIONS(3002), - [anon_sym_await] = ACTIONS(3000), - [anon_sym_while] = ACTIONS(3000), - [anon_sym_do] = ACTIONS(3000), - [anon_sym_try] = ACTIONS(3000), - [anon_sym_break] = ACTIONS(3000), - [anon_sym_continue] = ACTIONS(3000), - [anon_sym_debugger] = ACTIONS(3000), - [anon_sym_return] = ACTIONS(3000), - [anon_sym_throw] = ACTIONS(3000), - [anon_sym_yield] = ACTIONS(3000), - [anon_sym_LBRACK] = ACTIONS(3002), - [sym_glimmer_opening_tag] = ACTIONS(3002), - [anon_sym_class] = ACTIONS(3000), - [anon_sym_async] = ACTIONS(3000), - [anon_sym_function] = ACTIONS(3000), - [anon_sym_new] = ACTIONS(3000), - [anon_sym_using] = ACTIONS(3000), - [anon_sym_PLUS] = ACTIONS(3000), - [anon_sym_DASH] = ACTIONS(3000), - [anon_sym_SLASH] = ACTIONS(3000), - [anon_sym_LT] = ACTIONS(3000), - [anon_sym_TILDE] = ACTIONS(3002), - [anon_sym_void] = ACTIONS(3000), - [anon_sym_delete] = ACTIONS(3000), - [anon_sym_PLUS_PLUS] = ACTIONS(3002), - [anon_sym_DASH_DASH] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3002), - [anon_sym_SQUOTE] = ACTIONS(3002), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3002), - [sym_number] = ACTIONS(3002), - [sym_private_property_identifier] = ACTIONS(3002), - [sym_this] = ACTIONS(3000), - [sym_super] = ACTIONS(3000), - [sym_true] = ACTIONS(3000), - [sym_false] = ACTIONS(3000), - [sym_null] = ACTIONS(3000), - [sym_undefined] = ACTIONS(3000), - [anon_sym_AT] = ACTIONS(3002), - [anon_sym_static] = ACTIONS(3000), - [anon_sym_readonly] = ACTIONS(3000), - [anon_sym_get] = ACTIONS(3000), - [anon_sym_set] = ACTIONS(3000), - [anon_sym_declare] = ACTIONS(3000), - [anon_sym_public] = ACTIONS(3000), - [anon_sym_private] = ACTIONS(3000), - [anon_sym_protected] = ACTIONS(3000), - [anon_sym_override] = ACTIONS(3000), - [anon_sym_module] = ACTIONS(3000), - [anon_sym_any] = ACTIONS(3000), - [anon_sym_number] = ACTIONS(3000), - [anon_sym_boolean] = ACTIONS(3000), - [anon_sym_string] = ACTIONS(3000), - [anon_sym_symbol] = ACTIONS(3000), - [anon_sym_object] = ACTIONS(3000), - [anon_sym_abstract] = ACTIONS(3000), - [anon_sym_interface] = ACTIONS(3000), - [anon_sym_enum] = ACTIONS(3000), + [sym_identifier] = ACTIONS(3093), + [anon_sym_export] = ACTIONS(3093), + [anon_sym_type] = ACTIONS(3093), + [anon_sym_namespace] = ACTIONS(3093), + [anon_sym_LBRACE] = ACTIONS(3095), + [anon_sym_typeof] = ACTIONS(3093), + [anon_sym_import] = ACTIONS(3093), + [anon_sym_with] = ACTIONS(3093), + [anon_sym_var] = ACTIONS(3093), + [anon_sym_let] = ACTIONS(3093), + [anon_sym_const] = ACTIONS(3093), + [anon_sym_BANG] = ACTIONS(3095), + [anon_sym_if] = ACTIONS(3093), + [anon_sym_switch] = ACTIONS(3093), + [anon_sym_for] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_SEMI] = ACTIONS(3095), + [anon_sym_await] = ACTIONS(3093), + [anon_sym_while] = ACTIONS(3093), + [anon_sym_do] = ACTIONS(3093), + [anon_sym_try] = ACTIONS(3093), + [anon_sym_break] = ACTIONS(3093), + [anon_sym_continue] = ACTIONS(3093), + [anon_sym_debugger] = ACTIONS(3093), + [anon_sym_return] = ACTIONS(3093), + [anon_sym_throw] = ACTIONS(3093), + [anon_sym_yield] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(3095), + [anon_sym_class] = ACTIONS(3093), + [anon_sym_async] = ACTIONS(3093), + [anon_sym_function] = ACTIONS(3093), + [anon_sym_new] = ACTIONS(3093), + [anon_sym_using] = ACTIONS(3093), + [anon_sym_PLUS] = ACTIONS(3093), + [anon_sym_DASH] = ACTIONS(3093), + [anon_sym_SLASH] = ACTIONS(3093), + [anon_sym_LT] = ACTIONS(3095), + [anon_sym_TILDE] = ACTIONS(3095), + [anon_sym_void] = ACTIONS(3093), + [anon_sym_delete] = ACTIONS(3093), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_DQUOTE] = ACTIONS(3095), + [anon_sym_SQUOTE] = ACTIONS(3095), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3095), + [sym_number] = ACTIONS(3095), + [sym_private_property_identifier] = ACTIONS(3095), + [sym_this] = ACTIONS(3093), + [sym_super] = ACTIONS(3093), + [sym_true] = ACTIONS(3093), + [sym_false] = ACTIONS(3093), + [sym_null] = ACTIONS(3093), + [sym_undefined] = ACTIONS(3093), + [anon_sym_AT] = ACTIONS(3095), + [anon_sym_static] = ACTIONS(3093), + [anon_sym_readonly] = ACTIONS(3093), + [anon_sym_get] = ACTIONS(3093), + [anon_sym_set] = ACTIONS(3093), + [anon_sym_declare] = ACTIONS(3093), + [anon_sym_public] = ACTIONS(3093), + [anon_sym_private] = ACTIONS(3093), + [anon_sym_protected] = ACTIONS(3093), + [anon_sym_override] = ACTIONS(3093), + [anon_sym_module] = ACTIONS(3093), + [anon_sym_any] = ACTIONS(3093), + [anon_sym_number] = ACTIONS(3093), + [anon_sym_boolean] = ACTIONS(3093), + [anon_sym_string] = ACTIONS(3093), + [anon_sym_symbol] = ACTIONS(3093), + [anon_sym_object] = ACTIONS(3093), + [anon_sym_abstract] = ACTIONS(3093), + [anon_sym_interface] = ACTIONS(3093), + [anon_sym_enum] = ACTIONS(3093), [sym_html_comment] = ACTIONS(5), }, [951] = { - [sym_identifier] = ACTIONS(3004), - [anon_sym_export] = ACTIONS(3004), - [anon_sym_type] = ACTIONS(3004), - [anon_sym_namespace] = ACTIONS(3004), - [anon_sym_LBRACE] = ACTIONS(3006), - [anon_sym_typeof] = ACTIONS(3004), - [anon_sym_import] = ACTIONS(3004), - [anon_sym_with] = ACTIONS(3004), - [anon_sym_var] = ACTIONS(3004), - [anon_sym_let] = ACTIONS(3004), - [anon_sym_const] = ACTIONS(3004), - [anon_sym_BANG] = ACTIONS(3006), - [anon_sym_if] = ACTIONS(3004), - [anon_sym_switch] = ACTIONS(3004), - [anon_sym_for] = ACTIONS(3004), - [anon_sym_LPAREN] = ACTIONS(3006), - [anon_sym_SEMI] = ACTIONS(3006), - [anon_sym_await] = ACTIONS(3004), - [anon_sym_while] = ACTIONS(3004), - [anon_sym_do] = ACTIONS(3004), - [anon_sym_try] = ACTIONS(3004), - [anon_sym_break] = ACTIONS(3004), - [anon_sym_continue] = ACTIONS(3004), - [anon_sym_debugger] = ACTIONS(3004), - [anon_sym_return] = ACTIONS(3004), - [anon_sym_throw] = ACTIONS(3004), - [anon_sym_yield] = ACTIONS(3004), - [anon_sym_LBRACK] = ACTIONS(3006), - [sym_glimmer_opening_tag] = ACTIONS(3006), - [anon_sym_class] = ACTIONS(3004), - [anon_sym_async] = ACTIONS(3004), - [anon_sym_function] = ACTIONS(3004), - [anon_sym_new] = ACTIONS(3004), - [anon_sym_using] = ACTIONS(3004), - [anon_sym_PLUS] = ACTIONS(3004), - [anon_sym_DASH] = ACTIONS(3004), - [anon_sym_SLASH] = ACTIONS(3004), - [anon_sym_LT] = ACTIONS(3004), - [anon_sym_TILDE] = ACTIONS(3006), - [anon_sym_void] = ACTIONS(3004), - [anon_sym_delete] = ACTIONS(3004), - [anon_sym_PLUS_PLUS] = ACTIONS(3006), - [anon_sym_DASH_DASH] = ACTIONS(3006), - [anon_sym_DQUOTE] = ACTIONS(3006), - [anon_sym_SQUOTE] = ACTIONS(3006), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3006), - [sym_number] = ACTIONS(3006), - [sym_private_property_identifier] = ACTIONS(3006), - [sym_this] = ACTIONS(3004), - [sym_super] = ACTIONS(3004), - [sym_true] = ACTIONS(3004), - [sym_false] = ACTIONS(3004), - [sym_null] = ACTIONS(3004), - [sym_undefined] = ACTIONS(3004), - [anon_sym_AT] = ACTIONS(3006), - [anon_sym_static] = ACTIONS(3004), - [anon_sym_readonly] = ACTIONS(3004), - [anon_sym_get] = ACTIONS(3004), - [anon_sym_set] = ACTIONS(3004), - [anon_sym_declare] = ACTIONS(3004), - [anon_sym_public] = ACTIONS(3004), - [anon_sym_private] = ACTIONS(3004), - [anon_sym_protected] = ACTIONS(3004), - [anon_sym_override] = ACTIONS(3004), - [anon_sym_module] = ACTIONS(3004), - [anon_sym_any] = ACTIONS(3004), - [anon_sym_number] = ACTIONS(3004), - [anon_sym_boolean] = ACTIONS(3004), - [anon_sym_string] = ACTIONS(3004), - [anon_sym_symbol] = ACTIONS(3004), - [anon_sym_object] = ACTIONS(3004), - [anon_sym_abstract] = ACTIONS(3004), - [anon_sym_interface] = ACTIONS(3004), - [anon_sym_enum] = ACTIONS(3004), + [sym_import] = STATE(4808), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5569), + [sym_nested_type_identifier] = STATE(3487), + [sym__type_query_member_expression_in_type_annotation] = STATE(3388), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_asserts] = STATE(3018), + [sym_type] = STATE(3849), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_predicate] = STATE(3018), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3697), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5361), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_typeof] = ACTIONS(3101), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_PIPE] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3109), + [anon_sym_SQUOTE] = ACTIONS(3111), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(3113), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3117), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(3119), + [anon_sym_asserts] = ACTIONS(3121), + [anon_sym_infer] = ACTIONS(3123), + [anon_sym_keyof] = ACTIONS(3125), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(3127), [sym_html_comment] = ACTIONS(5), }, [952] = { - [sym_identifier] = ACTIONS(3008), - [anon_sym_export] = ACTIONS(3008), - [anon_sym_type] = ACTIONS(3008), - [anon_sym_namespace] = ACTIONS(3008), - [anon_sym_LBRACE] = ACTIONS(3010), - [anon_sym_typeof] = ACTIONS(3008), - [anon_sym_import] = ACTIONS(3008), - [anon_sym_with] = ACTIONS(3008), - [anon_sym_var] = ACTIONS(3008), - [anon_sym_let] = ACTIONS(3008), - [anon_sym_const] = ACTIONS(3008), - [anon_sym_BANG] = ACTIONS(3010), - [anon_sym_if] = ACTIONS(3008), - [anon_sym_switch] = ACTIONS(3008), - [anon_sym_for] = ACTIONS(3008), - [anon_sym_LPAREN] = ACTIONS(3010), - [anon_sym_SEMI] = ACTIONS(3010), - [anon_sym_await] = ACTIONS(3008), - [anon_sym_while] = ACTIONS(3008), - [anon_sym_do] = ACTIONS(3008), - [anon_sym_try] = ACTIONS(3008), - [anon_sym_break] = ACTIONS(3008), - [anon_sym_continue] = ACTIONS(3008), - [anon_sym_debugger] = ACTIONS(3008), - [anon_sym_return] = ACTIONS(3008), - [anon_sym_throw] = ACTIONS(3008), - [anon_sym_yield] = ACTIONS(3008), - [anon_sym_LBRACK] = ACTIONS(3010), - [sym_glimmer_opening_tag] = ACTIONS(3010), - [anon_sym_class] = ACTIONS(3008), - [anon_sym_async] = ACTIONS(3008), - [anon_sym_function] = ACTIONS(3008), - [anon_sym_new] = ACTIONS(3008), - [anon_sym_using] = ACTIONS(3008), - [anon_sym_PLUS] = ACTIONS(3008), - [anon_sym_DASH] = ACTIONS(3008), - [anon_sym_SLASH] = ACTIONS(3008), - [anon_sym_LT] = ACTIONS(3008), - [anon_sym_TILDE] = ACTIONS(3010), - [anon_sym_void] = ACTIONS(3008), - [anon_sym_delete] = ACTIONS(3008), - [anon_sym_PLUS_PLUS] = ACTIONS(3010), - [anon_sym_DASH_DASH] = ACTIONS(3010), - [anon_sym_DQUOTE] = ACTIONS(3010), - [anon_sym_SQUOTE] = ACTIONS(3010), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3010), - [sym_number] = ACTIONS(3010), - [sym_private_property_identifier] = ACTIONS(3010), - [sym_this] = ACTIONS(3008), - [sym_super] = ACTIONS(3008), - [sym_true] = ACTIONS(3008), - [sym_false] = ACTIONS(3008), - [sym_null] = ACTIONS(3008), - [sym_undefined] = ACTIONS(3008), - [anon_sym_AT] = ACTIONS(3010), - [anon_sym_static] = ACTIONS(3008), - [anon_sym_readonly] = ACTIONS(3008), - [anon_sym_get] = ACTIONS(3008), - [anon_sym_set] = ACTIONS(3008), - [anon_sym_declare] = ACTIONS(3008), - [anon_sym_public] = ACTIONS(3008), - [anon_sym_private] = ACTIONS(3008), - [anon_sym_protected] = ACTIONS(3008), - [anon_sym_override] = ACTIONS(3008), - [anon_sym_module] = ACTIONS(3008), - [anon_sym_any] = ACTIONS(3008), - [anon_sym_number] = ACTIONS(3008), - [anon_sym_boolean] = ACTIONS(3008), - [anon_sym_string] = ACTIONS(3008), - [anon_sym_symbol] = ACTIONS(3008), - [anon_sym_object] = ACTIONS(3008), - [anon_sym_abstract] = ACTIONS(3008), - [anon_sym_interface] = ACTIONS(3008), - [anon_sym_enum] = ACTIONS(3008), + [sym_identifier] = ACTIONS(3129), + [anon_sym_export] = ACTIONS(3129), + [anon_sym_type] = ACTIONS(3129), + [anon_sym_namespace] = ACTIONS(3129), + [anon_sym_LBRACE] = ACTIONS(3131), + [anon_sym_typeof] = ACTIONS(3129), + [anon_sym_import] = ACTIONS(3129), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_var] = ACTIONS(3129), + [anon_sym_let] = ACTIONS(3129), + [anon_sym_const] = ACTIONS(3129), + [anon_sym_BANG] = ACTIONS(3131), + [anon_sym_if] = ACTIONS(3129), + [anon_sym_switch] = ACTIONS(3129), + [anon_sym_for] = ACTIONS(3129), + [anon_sym_LPAREN] = ACTIONS(3131), + [anon_sym_SEMI] = ACTIONS(3131), + [anon_sym_await] = ACTIONS(3129), + [anon_sym_while] = ACTIONS(3129), + [anon_sym_do] = ACTIONS(3129), + [anon_sym_try] = ACTIONS(3129), + [anon_sym_break] = ACTIONS(3129), + [anon_sym_continue] = ACTIONS(3129), + [anon_sym_debugger] = ACTIONS(3129), + [anon_sym_return] = ACTIONS(3129), + [anon_sym_throw] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3129), + [anon_sym_LBRACK] = ACTIONS(3131), + [anon_sym_class] = ACTIONS(3129), + [anon_sym_async] = ACTIONS(3129), + [anon_sym_function] = ACTIONS(3129), + [anon_sym_new] = ACTIONS(3129), + [anon_sym_using] = ACTIONS(3129), + [anon_sym_PLUS] = ACTIONS(3129), + [anon_sym_DASH] = ACTIONS(3129), + [anon_sym_SLASH] = ACTIONS(3129), + [anon_sym_LT] = ACTIONS(3131), + [anon_sym_TILDE] = ACTIONS(3131), + [anon_sym_void] = ACTIONS(3129), + [anon_sym_delete] = ACTIONS(3129), + [anon_sym_PLUS_PLUS] = ACTIONS(3131), + [anon_sym_DASH_DASH] = ACTIONS(3131), + [anon_sym_DQUOTE] = ACTIONS(3131), + [anon_sym_SQUOTE] = ACTIONS(3131), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3131), + [sym_number] = ACTIONS(3131), + [sym_private_property_identifier] = ACTIONS(3131), + [sym_this] = ACTIONS(3129), + [sym_super] = ACTIONS(3129), + [sym_true] = ACTIONS(3129), + [sym_false] = ACTIONS(3129), + [sym_null] = ACTIONS(3129), + [sym_undefined] = ACTIONS(3129), + [anon_sym_AT] = ACTIONS(3131), + [anon_sym_static] = ACTIONS(3129), + [anon_sym_readonly] = ACTIONS(3129), + [anon_sym_get] = ACTIONS(3129), + [anon_sym_set] = ACTIONS(3129), + [anon_sym_declare] = ACTIONS(3129), + [anon_sym_public] = ACTIONS(3129), + [anon_sym_private] = ACTIONS(3129), + [anon_sym_protected] = ACTIONS(3129), + [anon_sym_override] = ACTIONS(3129), + [anon_sym_module] = ACTIONS(3129), + [anon_sym_any] = ACTIONS(3129), + [anon_sym_number] = ACTIONS(3129), + [anon_sym_boolean] = ACTIONS(3129), + [anon_sym_string] = ACTIONS(3129), + [anon_sym_symbol] = ACTIONS(3129), + [anon_sym_object] = ACTIONS(3129), + [anon_sym_abstract] = ACTIONS(3129), + [anon_sym_interface] = ACTIONS(3129), + [anon_sym_enum] = ACTIONS(3129), [sym_html_comment] = ACTIONS(5), }, [953] = { - [sym_identifier] = ACTIONS(2992), - [anon_sym_export] = ACTIONS(2992), - [anon_sym_type] = ACTIONS(2992), - [anon_sym_namespace] = ACTIONS(2992), - [anon_sym_LBRACE] = ACTIONS(2994), - [anon_sym_typeof] = ACTIONS(2992), - [anon_sym_import] = ACTIONS(2992), - [anon_sym_with] = ACTIONS(2992), - [anon_sym_var] = ACTIONS(2992), - [anon_sym_let] = ACTIONS(2992), - [anon_sym_const] = ACTIONS(2992), - [anon_sym_BANG] = ACTIONS(2994), - [anon_sym_if] = ACTIONS(2992), - [anon_sym_switch] = ACTIONS(2992), - [anon_sym_for] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2994), - [anon_sym_SEMI] = ACTIONS(2994), - [anon_sym_await] = ACTIONS(2992), - [anon_sym_while] = ACTIONS(2992), - [anon_sym_do] = ACTIONS(2992), - [anon_sym_try] = ACTIONS(2992), - [anon_sym_break] = ACTIONS(2992), - [anon_sym_continue] = ACTIONS(2992), - [anon_sym_debugger] = ACTIONS(2992), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_throw] = ACTIONS(2992), - [anon_sym_yield] = ACTIONS(2992), - [anon_sym_LBRACK] = ACTIONS(2994), - [sym_glimmer_opening_tag] = ACTIONS(2994), - [anon_sym_class] = ACTIONS(2992), - [anon_sym_async] = ACTIONS(2992), - [anon_sym_function] = ACTIONS(2992), - [anon_sym_new] = ACTIONS(2992), - [anon_sym_using] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2992), - [anon_sym_DASH] = ACTIONS(2992), - [anon_sym_SLASH] = ACTIONS(2992), - [anon_sym_LT] = ACTIONS(2992), - [anon_sym_TILDE] = ACTIONS(2994), - [anon_sym_void] = ACTIONS(2992), - [anon_sym_delete] = ACTIONS(2992), - [anon_sym_PLUS_PLUS] = ACTIONS(2994), - [anon_sym_DASH_DASH] = ACTIONS(2994), - [anon_sym_DQUOTE] = ACTIONS(2994), - [anon_sym_SQUOTE] = ACTIONS(2994), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2994), - [sym_number] = ACTIONS(2994), - [sym_private_property_identifier] = ACTIONS(2994), - [sym_this] = ACTIONS(2992), - [sym_super] = ACTIONS(2992), - [sym_true] = ACTIONS(2992), - [sym_false] = ACTIONS(2992), - [sym_null] = ACTIONS(2992), - [sym_undefined] = ACTIONS(2992), - [anon_sym_AT] = ACTIONS(2994), - [anon_sym_static] = ACTIONS(2992), - [anon_sym_readonly] = ACTIONS(2992), - [anon_sym_get] = ACTIONS(2992), - [anon_sym_set] = ACTIONS(2992), - [anon_sym_declare] = ACTIONS(2992), - [anon_sym_public] = ACTIONS(2992), - [anon_sym_private] = ACTIONS(2992), - [anon_sym_protected] = ACTIONS(2992), - [anon_sym_override] = ACTIONS(2992), - [anon_sym_module] = ACTIONS(2992), - [anon_sym_any] = ACTIONS(2992), - [anon_sym_number] = ACTIONS(2992), - [anon_sym_boolean] = ACTIONS(2992), - [anon_sym_string] = ACTIONS(2992), - [anon_sym_symbol] = ACTIONS(2992), - [anon_sym_object] = ACTIONS(2992), - [anon_sym_abstract] = ACTIONS(2992), - [anon_sym_interface] = ACTIONS(2992), - [anon_sym_enum] = ACTIONS(2992), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_asserts] = STATE(3023), + [sym_type] = STATE(3095), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_predicate] = STATE(3023), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3056), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(3135), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_asserts] = ACTIONS(3137), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [954] = { - [sym_identifier] = ACTIONS(2992), - [anon_sym_export] = ACTIONS(2992), - [anon_sym_type] = ACTIONS(2992), - [anon_sym_namespace] = ACTIONS(2992), - [anon_sym_LBRACE] = ACTIONS(2994), - [anon_sym_typeof] = ACTIONS(2992), - [anon_sym_import] = ACTIONS(2992), - [anon_sym_with] = ACTIONS(2992), - [anon_sym_var] = ACTIONS(2992), - [anon_sym_let] = ACTIONS(2992), - [anon_sym_const] = ACTIONS(2992), - [anon_sym_BANG] = ACTIONS(2994), - [anon_sym_if] = ACTIONS(2992), - [anon_sym_switch] = ACTIONS(2992), - [anon_sym_for] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2994), - [anon_sym_SEMI] = ACTIONS(2994), - [anon_sym_await] = ACTIONS(2992), - [anon_sym_while] = ACTIONS(2992), - [anon_sym_do] = ACTIONS(2992), - [anon_sym_try] = ACTIONS(2992), - [anon_sym_break] = ACTIONS(2992), - [anon_sym_continue] = ACTIONS(2992), - [anon_sym_debugger] = ACTIONS(2992), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_throw] = ACTIONS(2992), - [anon_sym_yield] = ACTIONS(2992), - [anon_sym_LBRACK] = ACTIONS(2994), - [sym_glimmer_opening_tag] = ACTIONS(2994), - [anon_sym_class] = ACTIONS(2992), - [anon_sym_async] = ACTIONS(2992), - [anon_sym_function] = ACTIONS(2992), - [anon_sym_new] = ACTIONS(2992), - [anon_sym_using] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2992), - [anon_sym_DASH] = ACTIONS(2992), - [anon_sym_SLASH] = ACTIONS(2992), - [anon_sym_LT] = ACTIONS(2992), - [anon_sym_TILDE] = ACTIONS(2994), - [anon_sym_void] = ACTIONS(2992), - [anon_sym_delete] = ACTIONS(2992), - [anon_sym_PLUS_PLUS] = ACTIONS(2994), - [anon_sym_DASH_DASH] = ACTIONS(2994), - [anon_sym_DQUOTE] = ACTIONS(2994), - [anon_sym_SQUOTE] = ACTIONS(2994), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2994), - [sym_number] = ACTIONS(2994), - [sym_private_property_identifier] = ACTIONS(2994), - [sym_this] = ACTIONS(2992), - [sym_super] = ACTIONS(2992), - [sym_true] = ACTIONS(2992), - [sym_false] = ACTIONS(2992), - [sym_null] = ACTIONS(2992), - [sym_undefined] = ACTIONS(2992), - [anon_sym_AT] = ACTIONS(2994), - [anon_sym_static] = ACTIONS(2992), - [anon_sym_readonly] = ACTIONS(2992), - [anon_sym_get] = ACTIONS(2992), - [anon_sym_set] = ACTIONS(2992), - [anon_sym_declare] = ACTIONS(2992), - [anon_sym_public] = ACTIONS(2992), - [anon_sym_private] = ACTIONS(2992), - [anon_sym_protected] = ACTIONS(2992), - [anon_sym_override] = ACTIONS(2992), - [anon_sym_module] = ACTIONS(2992), - [anon_sym_any] = ACTIONS(2992), - [anon_sym_number] = ACTIONS(2992), - [anon_sym_boolean] = ACTIONS(2992), - [anon_sym_string] = ACTIONS(2992), - [anon_sym_symbol] = ACTIONS(2992), - [anon_sym_object] = ACTIONS(2992), - [anon_sym_abstract] = ACTIONS(2992), - [anon_sym_interface] = ACTIONS(2992), - [anon_sym_enum] = ACTIONS(2992), + [sym_identifier] = ACTIONS(2531), + [anon_sym_export] = ACTIONS(2531), + [anon_sym_type] = ACTIONS(2531), + [anon_sym_namespace] = ACTIONS(2531), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_typeof] = ACTIONS(2531), + [anon_sym_import] = ACTIONS(2531), + [anon_sym_with] = ACTIONS(2531), + [anon_sym_var] = ACTIONS(2531), + [anon_sym_let] = ACTIONS(2531), + [anon_sym_const] = ACTIONS(2531), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_if] = ACTIONS(2531), + [anon_sym_switch] = ACTIONS(2531), + [anon_sym_for] = ACTIONS(2531), + [anon_sym_LPAREN] = ACTIONS(2529), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_await] = ACTIONS(2531), + [anon_sym_while] = ACTIONS(2531), + [anon_sym_do] = ACTIONS(2531), + [anon_sym_try] = ACTIONS(2531), + [anon_sym_break] = ACTIONS(2531), + [anon_sym_continue] = ACTIONS(2531), + [anon_sym_debugger] = ACTIONS(2531), + [anon_sym_return] = ACTIONS(2531), + [anon_sym_throw] = ACTIONS(2531), + [anon_sym_yield] = ACTIONS(2531), + [anon_sym_LBRACK] = ACTIONS(2529), + [anon_sym_class] = ACTIONS(2531), + [anon_sym_async] = ACTIONS(2531), + [anon_sym_function] = ACTIONS(2531), + [anon_sym_new] = ACTIONS(2531), + [anon_sym_using] = ACTIONS(2531), + [anon_sym_PLUS] = ACTIONS(2531), + [anon_sym_DASH] = ACTIONS(2531), + [anon_sym_SLASH] = ACTIONS(2531), + [anon_sym_LT] = ACTIONS(2529), + [anon_sym_TILDE] = ACTIONS(2529), + [anon_sym_void] = ACTIONS(2531), + [anon_sym_delete] = ACTIONS(2531), + [anon_sym_PLUS_PLUS] = ACTIONS(2529), + [anon_sym_DASH_DASH] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2529), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2529), + [sym_number] = ACTIONS(2529), + [sym_private_property_identifier] = ACTIONS(2529), + [sym_this] = ACTIONS(2531), + [sym_super] = ACTIONS(2531), + [sym_true] = ACTIONS(2531), + [sym_false] = ACTIONS(2531), + [sym_null] = ACTIONS(2531), + [sym_undefined] = ACTIONS(2531), + [anon_sym_AT] = ACTIONS(2529), + [anon_sym_static] = ACTIONS(2531), + [anon_sym_readonly] = ACTIONS(2531), + [anon_sym_get] = ACTIONS(2531), + [anon_sym_set] = ACTIONS(2531), + [anon_sym_declare] = ACTIONS(2531), + [anon_sym_public] = ACTIONS(2531), + [anon_sym_private] = ACTIONS(2531), + [anon_sym_protected] = ACTIONS(2531), + [anon_sym_override] = ACTIONS(2531), + [anon_sym_module] = ACTIONS(2531), + [anon_sym_any] = ACTIONS(2531), + [anon_sym_number] = ACTIONS(2531), + [anon_sym_boolean] = ACTIONS(2531), + [anon_sym_string] = ACTIONS(2531), + [anon_sym_symbol] = ACTIONS(2531), + [anon_sym_object] = ACTIONS(2531), + [anon_sym_abstract] = ACTIONS(2531), + [anon_sym_interface] = ACTIONS(2531), + [anon_sym_enum] = ACTIONS(2531), [sym_html_comment] = ACTIONS(5), }, [955] = { - [sym_identifier] = ACTIONS(2992), - [anon_sym_export] = ACTIONS(2992), - [anon_sym_type] = ACTIONS(2992), - [anon_sym_namespace] = ACTIONS(2992), - [anon_sym_LBRACE] = ACTIONS(2994), - [anon_sym_typeof] = ACTIONS(2992), - [anon_sym_import] = ACTIONS(2992), - [anon_sym_with] = ACTIONS(2992), - [anon_sym_var] = ACTIONS(2992), - [anon_sym_let] = ACTIONS(2992), - [anon_sym_const] = ACTIONS(2992), - [anon_sym_BANG] = ACTIONS(2994), - [anon_sym_if] = ACTIONS(2992), - [anon_sym_switch] = ACTIONS(2992), - [anon_sym_for] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2994), - [anon_sym_SEMI] = ACTIONS(2994), - [anon_sym_await] = ACTIONS(2992), - [anon_sym_while] = ACTIONS(2992), - [anon_sym_do] = ACTIONS(2992), - [anon_sym_try] = ACTIONS(2992), - [anon_sym_break] = ACTIONS(2992), - [anon_sym_continue] = ACTIONS(2992), - [anon_sym_debugger] = ACTIONS(2992), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_throw] = ACTIONS(2992), - [anon_sym_yield] = ACTIONS(2992), - [anon_sym_LBRACK] = ACTIONS(2994), - [sym_glimmer_opening_tag] = ACTIONS(2994), - [anon_sym_class] = ACTIONS(2992), - [anon_sym_async] = ACTIONS(2992), - [anon_sym_function] = ACTIONS(2992), - [anon_sym_new] = ACTIONS(2992), - [anon_sym_using] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2992), - [anon_sym_DASH] = ACTIONS(2992), - [anon_sym_SLASH] = ACTIONS(2992), - [anon_sym_LT] = ACTIONS(2992), - [anon_sym_TILDE] = ACTIONS(2994), - [anon_sym_void] = ACTIONS(2992), - [anon_sym_delete] = ACTIONS(2992), - [anon_sym_PLUS_PLUS] = ACTIONS(2994), - [anon_sym_DASH_DASH] = ACTIONS(2994), - [anon_sym_DQUOTE] = ACTIONS(2994), - [anon_sym_SQUOTE] = ACTIONS(2994), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2994), - [sym_number] = ACTIONS(2994), - [sym_private_property_identifier] = ACTIONS(2994), - [sym_this] = ACTIONS(2992), - [sym_super] = ACTIONS(2992), - [sym_true] = ACTIONS(2992), - [sym_false] = ACTIONS(2992), - [sym_null] = ACTIONS(2992), - [sym_undefined] = ACTIONS(2992), - [anon_sym_AT] = ACTIONS(2994), - [anon_sym_static] = ACTIONS(2992), - [anon_sym_readonly] = ACTIONS(2992), - [anon_sym_get] = ACTIONS(2992), - [anon_sym_set] = ACTIONS(2992), - [anon_sym_declare] = ACTIONS(2992), - [anon_sym_public] = ACTIONS(2992), - [anon_sym_private] = ACTIONS(2992), - [anon_sym_protected] = ACTIONS(2992), - [anon_sym_override] = ACTIONS(2992), - [anon_sym_module] = ACTIONS(2992), - [anon_sym_any] = ACTIONS(2992), - [anon_sym_number] = ACTIONS(2992), - [anon_sym_boolean] = ACTIONS(2992), - [anon_sym_string] = ACTIONS(2992), - [anon_sym_symbol] = ACTIONS(2992), - [anon_sym_object] = ACTIONS(2992), - [anon_sym_abstract] = ACTIONS(2992), - [anon_sym_interface] = ACTIONS(2992), - [anon_sym_enum] = ACTIONS(2992), + [sym_identifier] = ACTIONS(3129), + [anon_sym_export] = ACTIONS(3129), + [anon_sym_type] = ACTIONS(3129), + [anon_sym_namespace] = ACTIONS(3129), + [anon_sym_LBRACE] = ACTIONS(3131), + [anon_sym_typeof] = ACTIONS(3129), + [anon_sym_import] = ACTIONS(3129), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_var] = ACTIONS(3129), + [anon_sym_let] = ACTIONS(3129), + [anon_sym_const] = ACTIONS(3129), + [anon_sym_BANG] = ACTIONS(3131), + [anon_sym_if] = ACTIONS(3129), + [anon_sym_switch] = ACTIONS(3129), + [anon_sym_for] = ACTIONS(3129), + [anon_sym_LPAREN] = ACTIONS(3131), + [anon_sym_SEMI] = ACTIONS(3131), + [anon_sym_await] = ACTIONS(3129), + [anon_sym_while] = ACTIONS(3129), + [anon_sym_do] = ACTIONS(3129), + [anon_sym_try] = ACTIONS(3129), + [anon_sym_break] = ACTIONS(3129), + [anon_sym_continue] = ACTIONS(3129), + [anon_sym_debugger] = ACTIONS(3129), + [anon_sym_return] = ACTIONS(3129), + [anon_sym_throw] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3129), + [anon_sym_LBRACK] = ACTIONS(3131), + [anon_sym_class] = ACTIONS(3129), + [anon_sym_async] = ACTIONS(3129), + [anon_sym_function] = ACTIONS(3129), + [anon_sym_new] = ACTIONS(3129), + [anon_sym_using] = ACTIONS(3129), + [anon_sym_PLUS] = ACTIONS(3129), + [anon_sym_DASH] = ACTIONS(3129), + [anon_sym_SLASH] = ACTIONS(3129), + [anon_sym_LT] = ACTIONS(3131), + [anon_sym_TILDE] = ACTIONS(3131), + [anon_sym_void] = ACTIONS(3129), + [anon_sym_delete] = ACTIONS(3129), + [anon_sym_PLUS_PLUS] = ACTIONS(3131), + [anon_sym_DASH_DASH] = ACTIONS(3131), + [anon_sym_DQUOTE] = ACTIONS(3131), + [anon_sym_SQUOTE] = ACTIONS(3131), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3131), + [sym_number] = ACTIONS(3131), + [sym_private_property_identifier] = ACTIONS(3131), + [sym_this] = ACTIONS(3129), + [sym_super] = ACTIONS(3129), + [sym_true] = ACTIONS(3129), + [sym_false] = ACTIONS(3129), + [sym_null] = ACTIONS(3129), + [sym_undefined] = ACTIONS(3129), + [anon_sym_AT] = ACTIONS(3131), + [anon_sym_static] = ACTIONS(3129), + [anon_sym_readonly] = ACTIONS(3129), + [anon_sym_get] = ACTIONS(3129), + [anon_sym_set] = ACTIONS(3129), + [anon_sym_declare] = ACTIONS(3129), + [anon_sym_public] = ACTIONS(3129), + [anon_sym_private] = ACTIONS(3129), + [anon_sym_protected] = ACTIONS(3129), + [anon_sym_override] = ACTIONS(3129), + [anon_sym_module] = ACTIONS(3129), + [anon_sym_any] = ACTIONS(3129), + [anon_sym_number] = ACTIONS(3129), + [anon_sym_boolean] = ACTIONS(3129), + [anon_sym_string] = ACTIONS(3129), + [anon_sym_symbol] = ACTIONS(3129), + [anon_sym_object] = ACTIONS(3129), + [anon_sym_abstract] = ACTIONS(3129), + [anon_sym_interface] = ACTIONS(3129), + [anon_sym_enum] = ACTIONS(3129), [sym_html_comment] = ACTIONS(5), }, [956] = { - [sym_identifier] = ACTIONS(2992), - [anon_sym_export] = ACTIONS(2992), - [anon_sym_type] = ACTIONS(2992), - [anon_sym_namespace] = ACTIONS(2992), - [anon_sym_LBRACE] = ACTIONS(2994), - [anon_sym_typeof] = ACTIONS(2992), - [anon_sym_import] = ACTIONS(2992), - [anon_sym_with] = ACTIONS(2992), - [anon_sym_var] = ACTIONS(2992), - [anon_sym_let] = ACTIONS(2992), - [anon_sym_const] = ACTIONS(2992), - [anon_sym_BANG] = ACTIONS(2994), - [anon_sym_if] = ACTIONS(2992), - [anon_sym_switch] = ACTIONS(2992), - [anon_sym_for] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2994), - [anon_sym_SEMI] = ACTIONS(2994), - [anon_sym_await] = ACTIONS(2992), - [anon_sym_while] = ACTIONS(2992), - [anon_sym_do] = ACTIONS(2992), - [anon_sym_try] = ACTIONS(2992), - [anon_sym_break] = ACTIONS(2992), - [anon_sym_continue] = ACTIONS(2992), - [anon_sym_debugger] = ACTIONS(2992), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_throw] = ACTIONS(2992), - [anon_sym_yield] = ACTIONS(2992), - [anon_sym_LBRACK] = ACTIONS(2994), - [sym_glimmer_opening_tag] = ACTIONS(2994), - [anon_sym_class] = ACTIONS(2992), - [anon_sym_async] = ACTIONS(2992), - [anon_sym_function] = ACTIONS(2992), - [anon_sym_new] = ACTIONS(2992), - [anon_sym_using] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2992), - [anon_sym_DASH] = ACTIONS(2992), - [anon_sym_SLASH] = ACTIONS(2992), - [anon_sym_LT] = ACTIONS(2992), - [anon_sym_TILDE] = ACTIONS(2994), - [anon_sym_void] = ACTIONS(2992), - [anon_sym_delete] = ACTIONS(2992), - [anon_sym_PLUS_PLUS] = ACTIONS(2994), - [anon_sym_DASH_DASH] = ACTIONS(2994), - [anon_sym_DQUOTE] = ACTIONS(2994), - [anon_sym_SQUOTE] = ACTIONS(2994), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2994), - [sym_number] = ACTIONS(2994), - [sym_private_property_identifier] = ACTIONS(2994), - [sym_this] = ACTIONS(2992), - [sym_super] = ACTIONS(2992), - [sym_true] = ACTIONS(2992), - [sym_false] = ACTIONS(2992), - [sym_null] = ACTIONS(2992), - [sym_undefined] = ACTIONS(2992), - [anon_sym_AT] = ACTIONS(2994), - [anon_sym_static] = ACTIONS(2992), - [anon_sym_readonly] = ACTIONS(2992), - [anon_sym_get] = ACTIONS(2992), - [anon_sym_set] = ACTIONS(2992), - [anon_sym_declare] = ACTIONS(2992), - [anon_sym_public] = ACTIONS(2992), - [anon_sym_private] = ACTIONS(2992), - [anon_sym_protected] = ACTIONS(2992), - [anon_sym_override] = ACTIONS(2992), - [anon_sym_module] = ACTIONS(2992), - [anon_sym_any] = ACTIONS(2992), - [anon_sym_number] = ACTIONS(2992), - [anon_sym_boolean] = ACTIONS(2992), - [anon_sym_string] = ACTIONS(2992), - [anon_sym_symbol] = ACTIONS(2992), - [anon_sym_object] = ACTIONS(2992), - [anon_sym_abstract] = ACTIONS(2992), - [anon_sym_interface] = ACTIONS(2992), - [anon_sym_enum] = ACTIONS(2992), + [sym_identifier] = ACTIONS(3129), + [anon_sym_export] = ACTIONS(3129), + [anon_sym_type] = ACTIONS(3129), + [anon_sym_namespace] = ACTIONS(3129), + [anon_sym_LBRACE] = ACTIONS(3131), + [anon_sym_typeof] = ACTIONS(3129), + [anon_sym_import] = ACTIONS(3129), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_var] = ACTIONS(3129), + [anon_sym_let] = ACTIONS(3129), + [anon_sym_const] = ACTIONS(3129), + [anon_sym_BANG] = ACTIONS(3131), + [anon_sym_if] = ACTIONS(3129), + [anon_sym_switch] = ACTIONS(3129), + [anon_sym_for] = ACTIONS(3129), + [anon_sym_LPAREN] = ACTIONS(3131), + [anon_sym_SEMI] = ACTIONS(3131), + [anon_sym_await] = ACTIONS(3129), + [anon_sym_while] = ACTIONS(3129), + [anon_sym_do] = ACTIONS(3129), + [anon_sym_try] = ACTIONS(3129), + [anon_sym_break] = ACTIONS(3129), + [anon_sym_continue] = ACTIONS(3129), + [anon_sym_debugger] = ACTIONS(3129), + [anon_sym_return] = ACTIONS(3129), + [anon_sym_throw] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3129), + [anon_sym_LBRACK] = ACTIONS(3131), + [anon_sym_class] = ACTIONS(3129), + [anon_sym_async] = ACTIONS(3129), + [anon_sym_function] = ACTIONS(3129), + [anon_sym_new] = ACTIONS(3129), + [anon_sym_using] = ACTIONS(3129), + [anon_sym_PLUS] = ACTIONS(3129), + [anon_sym_DASH] = ACTIONS(3129), + [anon_sym_SLASH] = ACTIONS(3129), + [anon_sym_LT] = ACTIONS(3131), + [anon_sym_TILDE] = ACTIONS(3131), + [anon_sym_void] = ACTIONS(3129), + [anon_sym_delete] = ACTIONS(3129), + [anon_sym_PLUS_PLUS] = ACTIONS(3131), + [anon_sym_DASH_DASH] = ACTIONS(3131), + [anon_sym_DQUOTE] = ACTIONS(3131), + [anon_sym_SQUOTE] = ACTIONS(3131), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3131), + [sym_number] = ACTIONS(3131), + [sym_private_property_identifier] = ACTIONS(3131), + [sym_this] = ACTIONS(3129), + [sym_super] = ACTIONS(3129), + [sym_true] = ACTIONS(3129), + [sym_false] = ACTIONS(3129), + [sym_null] = ACTIONS(3129), + [sym_undefined] = ACTIONS(3129), + [anon_sym_AT] = ACTIONS(3131), + [anon_sym_static] = ACTIONS(3129), + [anon_sym_readonly] = ACTIONS(3129), + [anon_sym_get] = ACTIONS(3129), + [anon_sym_set] = ACTIONS(3129), + [anon_sym_declare] = ACTIONS(3129), + [anon_sym_public] = ACTIONS(3129), + [anon_sym_private] = ACTIONS(3129), + [anon_sym_protected] = ACTIONS(3129), + [anon_sym_override] = ACTIONS(3129), + [anon_sym_module] = ACTIONS(3129), + [anon_sym_any] = ACTIONS(3129), + [anon_sym_number] = ACTIONS(3129), + [anon_sym_boolean] = ACTIONS(3129), + [anon_sym_string] = ACTIONS(3129), + [anon_sym_symbol] = ACTIONS(3129), + [anon_sym_object] = ACTIONS(3129), + [anon_sym_abstract] = ACTIONS(3129), + [anon_sym_interface] = ACTIONS(3129), + [anon_sym_enum] = ACTIONS(3129), [sym_html_comment] = ACTIONS(5), }, [957] = { - [sym_identifier] = ACTIONS(2992), - [anon_sym_export] = ACTIONS(2992), - [anon_sym_type] = ACTIONS(2992), - [anon_sym_namespace] = ACTIONS(2992), - [anon_sym_LBRACE] = ACTIONS(2994), - [anon_sym_typeof] = ACTIONS(2992), - [anon_sym_import] = ACTIONS(2992), - [anon_sym_with] = ACTIONS(2992), - [anon_sym_var] = ACTIONS(2992), - [anon_sym_let] = ACTIONS(2992), - [anon_sym_const] = ACTIONS(2992), - [anon_sym_BANG] = ACTIONS(2994), - [anon_sym_if] = ACTIONS(2992), - [anon_sym_switch] = ACTIONS(2992), - [anon_sym_for] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2994), - [anon_sym_SEMI] = ACTIONS(2994), - [anon_sym_await] = ACTIONS(2992), - [anon_sym_while] = ACTIONS(2992), - [anon_sym_do] = ACTIONS(2992), - [anon_sym_try] = ACTIONS(2992), - [anon_sym_break] = ACTIONS(2992), - [anon_sym_continue] = ACTIONS(2992), - [anon_sym_debugger] = ACTIONS(2992), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_throw] = ACTIONS(2992), - [anon_sym_yield] = ACTIONS(2992), - [anon_sym_LBRACK] = ACTIONS(2994), - [sym_glimmer_opening_tag] = ACTIONS(2994), - [anon_sym_class] = ACTIONS(2992), - [anon_sym_async] = ACTIONS(2992), - [anon_sym_function] = ACTIONS(2992), - [anon_sym_new] = ACTIONS(2992), - [anon_sym_using] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2992), - [anon_sym_DASH] = ACTIONS(2992), - [anon_sym_SLASH] = ACTIONS(2992), - [anon_sym_LT] = ACTIONS(2992), - [anon_sym_TILDE] = ACTIONS(2994), - [anon_sym_void] = ACTIONS(2992), - [anon_sym_delete] = ACTIONS(2992), - [anon_sym_PLUS_PLUS] = ACTIONS(2994), - [anon_sym_DASH_DASH] = ACTIONS(2994), - [anon_sym_DQUOTE] = ACTIONS(2994), - [anon_sym_SQUOTE] = ACTIONS(2994), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2994), - [sym_number] = ACTIONS(2994), - [sym_private_property_identifier] = ACTIONS(2994), - [sym_this] = ACTIONS(2992), - [sym_super] = ACTIONS(2992), - [sym_true] = ACTIONS(2992), - [sym_false] = ACTIONS(2992), - [sym_null] = ACTIONS(2992), - [sym_undefined] = ACTIONS(2992), - [anon_sym_AT] = ACTIONS(2994), - [anon_sym_static] = ACTIONS(2992), - [anon_sym_readonly] = ACTIONS(2992), - [anon_sym_get] = ACTIONS(2992), - [anon_sym_set] = ACTIONS(2992), - [anon_sym_declare] = ACTIONS(2992), - [anon_sym_public] = ACTIONS(2992), - [anon_sym_private] = ACTIONS(2992), - [anon_sym_protected] = ACTIONS(2992), - [anon_sym_override] = ACTIONS(2992), - [anon_sym_module] = ACTIONS(2992), - [anon_sym_any] = ACTIONS(2992), - [anon_sym_number] = ACTIONS(2992), - [anon_sym_boolean] = ACTIONS(2992), - [anon_sym_string] = ACTIONS(2992), - [anon_sym_symbol] = ACTIONS(2992), - [anon_sym_object] = ACTIONS(2992), - [anon_sym_abstract] = ACTIONS(2992), - [anon_sym_interface] = ACTIONS(2992), - [anon_sym_enum] = ACTIONS(2992), + [sym_import] = STATE(4650), + [sym_nested_identifier] = STATE(5567), + [sym_string] = STATE(1975), + [sym_formal_parameters] = STATE(5527), + [sym_nested_type_identifier] = STATE(1865), + [sym__type_query_member_expression_in_type_annotation] = STATE(1781), + [sym__type_query_call_expression_in_type_annotation] = STATE(1911), + [sym_asserts] = STATE(2039), + [sym_type] = STATE(2040), + [sym_constructor_type] = STATE(1912), + [sym_primary_type] = STATE(1915), + [sym_template_literal_type] = STATE(1916), + [sym_infer_type] = STATE(1912), + [sym_conditional_type] = STATE(1916), + [sym_generic_type] = STATE(1916), + [sym_type_predicate] = STATE(2039), + [sym_type_query] = STATE(1916), + [sym_index_type_query] = STATE(1916), + [sym_lookup_type] = STATE(1916), + [sym_literal_type] = STATE(1916), + [sym__number] = STATE(1918), + [sym_existential_type] = STATE(1916), + [sym_flow_maybe_type] = STATE(1916), + [sym_parenthesized_type] = STATE(1916), + [sym_predefined_type] = STATE(1822), + [sym_object_type] = STATE(1916), + [sym_type_parameters] = STATE(5243), + [sym_array_type] = STATE(1916), + [sym_tuple_type] = STATE(1916), + [sym_readonly_type] = STATE(1912), + [sym_union_type] = STATE(1916), + [sym_intersection_type] = STATE(1916), + [sym_function_type] = STATE(1912), + [sym_identifier] = ACTIONS(3045), + [anon_sym_STAR] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3053), + [anon_sym_LPAREN] = ACTIONS(3055), + [anon_sym_LBRACK] = ACTIONS(3057), + [anon_sym_new] = ACTIONS(3059), + [anon_sym_AMP] = ACTIONS(3061), + [anon_sym_PIPE] = ACTIONS(3063), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3067), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3069), + [sym_number] = ACTIONS(3071), + [sym_this] = ACTIONS(3073), + [sym_true] = ACTIONS(3075), + [sym_false] = ACTIONS(3075), + [sym_null] = ACTIONS(3075), + [sym_undefined] = ACTIONS(3075), + [anon_sym_readonly] = ACTIONS(3077), + [anon_sym_QMARK] = ACTIONS(3079), + [anon_sym_any] = ACTIONS(3067), + [anon_sym_number] = ACTIONS(3067), + [anon_sym_boolean] = ACTIONS(3067), + [anon_sym_string] = ACTIONS(3067), + [anon_sym_symbol] = ACTIONS(3067), + [anon_sym_object] = ACTIONS(3067), + [anon_sym_abstract] = ACTIONS(3081), + [anon_sym_asserts] = ACTIONS(3083), + [anon_sym_infer] = ACTIONS(3085), + [anon_sym_keyof] = ACTIONS(3087), + [anon_sym_unique] = ACTIONS(3089), + [anon_sym_unknown] = ACTIONS(3067), + [anon_sym_never] = ACTIONS(3067), + [anon_sym_LBRACE_PIPE] = ACTIONS(3091), [sym_html_comment] = ACTIONS(5), }, [958] = { - [sym_identifier] = ACTIONS(2992), - [anon_sym_export] = ACTIONS(2992), - [anon_sym_type] = ACTIONS(2992), - [anon_sym_namespace] = ACTIONS(2992), - [anon_sym_LBRACE] = ACTIONS(2994), - [anon_sym_typeof] = ACTIONS(2992), - [anon_sym_import] = ACTIONS(2992), - [anon_sym_with] = ACTIONS(2992), - [anon_sym_var] = ACTIONS(2992), - [anon_sym_let] = ACTIONS(2992), - [anon_sym_const] = ACTIONS(2992), - [anon_sym_BANG] = ACTIONS(2994), - [anon_sym_if] = ACTIONS(2992), - [anon_sym_switch] = ACTIONS(2992), - [anon_sym_for] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2994), - [anon_sym_SEMI] = ACTIONS(2994), - [anon_sym_await] = ACTIONS(2992), - [anon_sym_while] = ACTIONS(2992), - [anon_sym_do] = ACTIONS(2992), - [anon_sym_try] = ACTIONS(2992), - [anon_sym_break] = ACTIONS(2992), - [anon_sym_continue] = ACTIONS(2992), - [anon_sym_debugger] = ACTIONS(2992), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_throw] = ACTIONS(2992), - [anon_sym_yield] = ACTIONS(2992), - [anon_sym_LBRACK] = ACTIONS(2994), - [sym_glimmer_opening_tag] = ACTIONS(2994), - [anon_sym_class] = ACTIONS(2992), - [anon_sym_async] = ACTIONS(2992), - [anon_sym_function] = ACTIONS(2992), - [anon_sym_new] = ACTIONS(2992), - [anon_sym_using] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2992), - [anon_sym_DASH] = ACTIONS(2992), - [anon_sym_SLASH] = ACTIONS(2992), - [anon_sym_LT] = ACTIONS(2992), - [anon_sym_TILDE] = ACTIONS(2994), - [anon_sym_void] = ACTIONS(2992), - [anon_sym_delete] = ACTIONS(2992), - [anon_sym_PLUS_PLUS] = ACTIONS(2994), - [anon_sym_DASH_DASH] = ACTIONS(2994), - [anon_sym_DQUOTE] = ACTIONS(2994), - [anon_sym_SQUOTE] = ACTIONS(2994), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2994), - [sym_number] = ACTIONS(2994), - [sym_private_property_identifier] = ACTIONS(2994), - [sym_this] = ACTIONS(2992), - [sym_super] = ACTIONS(2992), - [sym_true] = ACTIONS(2992), - [sym_false] = ACTIONS(2992), - [sym_null] = ACTIONS(2992), - [sym_undefined] = ACTIONS(2992), - [anon_sym_AT] = ACTIONS(2994), - [anon_sym_static] = ACTIONS(2992), - [anon_sym_readonly] = ACTIONS(2992), - [anon_sym_get] = ACTIONS(2992), - [anon_sym_set] = ACTIONS(2992), - [anon_sym_declare] = ACTIONS(2992), - [anon_sym_public] = ACTIONS(2992), - [anon_sym_private] = ACTIONS(2992), - [anon_sym_protected] = ACTIONS(2992), - [anon_sym_override] = ACTIONS(2992), - [anon_sym_module] = ACTIONS(2992), - [anon_sym_any] = ACTIONS(2992), - [anon_sym_number] = ACTIONS(2992), - [anon_sym_boolean] = ACTIONS(2992), - [anon_sym_string] = ACTIONS(2992), - [anon_sym_symbol] = ACTIONS(2992), - [anon_sym_object] = ACTIONS(2992), - [anon_sym_abstract] = ACTIONS(2992), - [anon_sym_interface] = ACTIONS(2992), - [anon_sym_enum] = ACTIONS(2992), + [sym_identifier] = ACTIONS(3129), + [anon_sym_export] = ACTIONS(3129), + [anon_sym_type] = ACTIONS(3129), + [anon_sym_namespace] = ACTIONS(3129), + [anon_sym_LBRACE] = ACTIONS(3131), + [anon_sym_typeof] = ACTIONS(3129), + [anon_sym_import] = ACTIONS(3129), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_var] = ACTIONS(3129), + [anon_sym_let] = ACTIONS(3129), + [anon_sym_const] = ACTIONS(3129), + [anon_sym_BANG] = ACTIONS(3131), + [anon_sym_if] = ACTIONS(3129), + [anon_sym_switch] = ACTIONS(3129), + [anon_sym_for] = ACTIONS(3129), + [anon_sym_LPAREN] = ACTIONS(3131), + [anon_sym_SEMI] = ACTIONS(3131), + [anon_sym_await] = ACTIONS(3129), + [anon_sym_while] = ACTIONS(3129), + [anon_sym_do] = ACTIONS(3129), + [anon_sym_try] = ACTIONS(3129), + [anon_sym_break] = ACTIONS(3129), + [anon_sym_continue] = ACTIONS(3129), + [anon_sym_debugger] = ACTIONS(3129), + [anon_sym_return] = ACTIONS(3129), + [anon_sym_throw] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3129), + [anon_sym_LBRACK] = ACTIONS(3131), + [anon_sym_class] = ACTIONS(3129), + [anon_sym_async] = ACTIONS(3129), + [anon_sym_function] = ACTIONS(3129), + [anon_sym_new] = ACTIONS(3129), + [anon_sym_using] = ACTIONS(3129), + [anon_sym_PLUS] = ACTIONS(3129), + [anon_sym_DASH] = ACTIONS(3129), + [anon_sym_SLASH] = ACTIONS(3129), + [anon_sym_LT] = ACTIONS(3131), + [anon_sym_TILDE] = ACTIONS(3131), + [anon_sym_void] = ACTIONS(3129), + [anon_sym_delete] = ACTIONS(3129), + [anon_sym_PLUS_PLUS] = ACTIONS(3131), + [anon_sym_DASH_DASH] = ACTIONS(3131), + [anon_sym_DQUOTE] = ACTIONS(3131), + [anon_sym_SQUOTE] = ACTIONS(3131), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3131), + [sym_number] = ACTIONS(3131), + [sym_private_property_identifier] = ACTIONS(3131), + [sym_this] = ACTIONS(3129), + [sym_super] = ACTIONS(3129), + [sym_true] = ACTIONS(3129), + [sym_false] = ACTIONS(3129), + [sym_null] = ACTIONS(3129), + [sym_undefined] = ACTIONS(3129), + [anon_sym_AT] = ACTIONS(3131), + [anon_sym_static] = ACTIONS(3129), + [anon_sym_readonly] = ACTIONS(3129), + [anon_sym_get] = ACTIONS(3129), + [anon_sym_set] = ACTIONS(3129), + [anon_sym_declare] = ACTIONS(3129), + [anon_sym_public] = ACTIONS(3129), + [anon_sym_private] = ACTIONS(3129), + [anon_sym_protected] = ACTIONS(3129), + [anon_sym_override] = ACTIONS(3129), + [anon_sym_module] = ACTIONS(3129), + [anon_sym_any] = ACTIONS(3129), + [anon_sym_number] = ACTIONS(3129), + [anon_sym_boolean] = ACTIONS(3129), + [anon_sym_string] = ACTIONS(3129), + [anon_sym_symbol] = ACTIONS(3129), + [anon_sym_object] = ACTIONS(3129), + [anon_sym_abstract] = ACTIONS(3129), + [anon_sym_interface] = ACTIONS(3129), + [anon_sym_enum] = ACTIONS(3129), [sym_html_comment] = ACTIONS(5), }, [959] = { - [sym_identifier] = ACTIONS(2992), - [anon_sym_export] = ACTIONS(2992), - [anon_sym_type] = ACTIONS(2992), - [anon_sym_namespace] = ACTIONS(2992), - [anon_sym_LBRACE] = ACTIONS(2994), - [anon_sym_typeof] = ACTIONS(2992), - [anon_sym_import] = ACTIONS(2992), - [anon_sym_with] = ACTIONS(2992), - [anon_sym_var] = ACTIONS(2992), - [anon_sym_let] = ACTIONS(2992), - [anon_sym_const] = ACTIONS(2992), - [anon_sym_BANG] = ACTIONS(2994), - [anon_sym_if] = ACTIONS(2992), - [anon_sym_switch] = ACTIONS(2992), - [anon_sym_for] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2994), - [anon_sym_SEMI] = ACTIONS(2994), - [anon_sym_await] = ACTIONS(2992), - [anon_sym_while] = ACTIONS(2992), - [anon_sym_do] = ACTIONS(2992), - [anon_sym_try] = ACTIONS(2992), - [anon_sym_break] = ACTIONS(2992), - [anon_sym_continue] = ACTIONS(2992), - [anon_sym_debugger] = ACTIONS(2992), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_throw] = ACTIONS(2992), - [anon_sym_yield] = ACTIONS(2992), - [anon_sym_LBRACK] = ACTIONS(2994), - [sym_glimmer_opening_tag] = ACTIONS(2994), - [anon_sym_class] = ACTIONS(2992), - [anon_sym_async] = ACTIONS(2992), - [anon_sym_function] = ACTIONS(2992), - [anon_sym_new] = ACTIONS(2992), - [anon_sym_using] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2992), - [anon_sym_DASH] = ACTIONS(2992), - [anon_sym_SLASH] = ACTIONS(2992), - [anon_sym_LT] = ACTIONS(2992), - [anon_sym_TILDE] = ACTIONS(2994), - [anon_sym_void] = ACTIONS(2992), - [anon_sym_delete] = ACTIONS(2992), - [anon_sym_PLUS_PLUS] = ACTIONS(2994), - [anon_sym_DASH_DASH] = ACTIONS(2994), - [anon_sym_DQUOTE] = ACTIONS(2994), - [anon_sym_SQUOTE] = ACTIONS(2994), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2994), - [sym_number] = ACTIONS(2994), - [sym_private_property_identifier] = ACTIONS(2994), - [sym_this] = ACTIONS(2992), - [sym_super] = ACTIONS(2992), - [sym_true] = ACTIONS(2992), - [sym_false] = ACTIONS(2992), - [sym_null] = ACTIONS(2992), - [sym_undefined] = ACTIONS(2992), - [anon_sym_AT] = ACTIONS(2994), - [anon_sym_static] = ACTIONS(2992), - [anon_sym_readonly] = ACTIONS(2992), - [anon_sym_get] = ACTIONS(2992), - [anon_sym_set] = ACTIONS(2992), - [anon_sym_declare] = ACTIONS(2992), - [anon_sym_public] = ACTIONS(2992), - [anon_sym_private] = ACTIONS(2992), - [anon_sym_protected] = ACTIONS(2992), - [anon_sym_override] = ACTIONS(2992), - [anon_sym_module] = ACTIONS(2992), - [anon_sym_any] = ACTIONS(2992), - [anon_sym_number] = ACTIONS(2992), - [anon_sym_boolean] = ACTIONS(2992), - [anon_sym_string] = ACTIONS(2992), - [anon_sym_symbol] = ACTIONS(2992), - [anon_sym_object] = ACTIONS(2992), - [anon_sym_abstract] = ACTIONS(2992), - [anon_sym_interface] = ACTIONS(2992), - [anon_sym_enum] = ACTIONS(2992), + [sym_import] = STATE(4578), + [sym_nested_identifier] = STATE(5796), + [sym_string] = STATE(3437), + [sym_formal_parameters] = STATE(5519), + [sym_nested_type_identifier] = STATE(3278), + [sym__type_query_member_expression_in_type_annotation] = STATE(3181), + [sym__type_query_call_expression_in_type_annotation] = STATE(3311), + [sym_asserts] = STATE(3918), + [sym_type] = STATE(3502), + [sym_constructor_type] = STATE(3448), + [sym_primary_type] = STATE(3450), + [sym_template_literal_type] = STATE(3453), + [sym_infer_type] = STATE(3448), + [sym_conditional_type] = STATE(3453), + [sym_generic_type] = STATE(3453), + [sym_type_predicate] = STATE(3919), + [sym_type_query] = STATE(3453), + [sym_index_type_query] = STATE(3453), + [sym_lookup_type] = STATE(3453), + [sym_literal_type] = STATE(3453), + [sym__number] = STATE(3454), + [sym_existential_type] = STATE(3453), + [sym_flow_maybe_type] = STATE(3453), + [sym_parenthesized_type] = STATE(3453), + [sym_predefined_type] = STATE(3305), + [sym_object_type] = STATE(3453), + [sym_type_parameters] = STATE(5251), + [sym_array_type] = STATE(3453), + [sym_tuple_type] = STATE(3453), + [sym_readonly_type] = STATE(3448), + [sym_union_type] = STATE(3453), + [sym_intersection_type] = STATE(3453), + [sym_function_type] = STATE(3448), + [sym_identifier] = ACTIONS(2993), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_typeof] = ACTIONS(2999), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3003), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_new] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_PIPE] = ACTIONS(3011), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3015), + [anon_sym_DQUOTE] = ACTIONS(3017), + [anon_sym_SQUOTE] = ACTIONS(3019), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3021), + [sym_number] = ACTIONS(3023), + [sym_this] = ACTIONS(3025), + [sym_true] = ACTIONS(3027), + [sym_false] = ACTIONS(3027), + [sym_null] = ACTIONS(3027), + [sym_undefined] = ACTIONS(3027), + [anon_sym_readonly] = ACTIONS(3029), + [anon_sym_QMARK] = ACTIONS(3031), + [anon_sym_any] = ACTIONS(3015), + [anon_sym_number] = ACTIONS(3015), + [anon_sym_boolean] = ACTIONS(3015), + [anon_sym_string] = ACTIONS(3015), + [anon_sym_symbol] = ACTIONS(3015), + [anon_sym_object] = ACTIONS(3015), + [anon_sym_abstract] = ACTIONS(3033), + [anon_sym_asserts] = ACTIONS(3035), + [anon_sym_infer] = ACTIONS(3037), + [anon_sym_keyof] = ACTIONS(3039), + [anon_sym_unique] = ACTIONS(3041), + [anon_sym_unknown] = ACTIONS(3015), + [anon_sym_never] = ACTIONS(3015), + [anon_sym_LBRACE_PIPE] = ACTIONS(3043), [sym_html_comment] = ACTIONS(5), }, [960] = { - [sym_import] = STATE(4581), - [sym_nested_identifier] = STATE(5819), - [sym_string] = STATE(3407), - [sym_formal_parameters] = STATE(5869), - [sym_nested_type_identifier] = STATE(3269), - [sym__type_query_member_expression_in_type_annotation] = STATE(3187), - [sym__type_query_call_expression_in_type_annotation] = STATE(3319), - [sym_asserts] = STATE(4058), - [sym_type] = STATE(3496), - [sym_constructor_type] = STATE(3422), - [sym_primary_type] = STATE(3426), - [sym_template_literal_type] = STATE(3428), - [sym_infer_type] = STATE(3422), - [sym_conditional_type] = STATE(3428), - [sym_generic_type] = STATE(3428), - [sym_type_predicate] = STATE(4060), - [sym_type_query] = STATE(3428), - [sym_index_type_query] = STATE(3428), - [sym_lookup_type] = STATE(3428), - [sym_literal_type] = STATE(3428), - [sym__number] = STATE(3432), - [sym_existential_type] = STATE(3428), - [sym_flow_maybe_type] = STATE(3428), - [sym_parenthesized_type] = STATE(3428), - [sym_predefined_type] = STATE(3313), - [sym_object_type] = STATE(3428), - [sym_type_parameters] = STATE(5263), - [sym_array_type] = STATE(3428), - [sym_tuple_type] = STATE(3428), - [sym_readonly_type] = STATE(3422), - [sym_union_type] = STATE(3428), - [sym_intersection_type] = STATE(3428), - [sym_function_type] = STATE(3422), - [sym_identifier] = ACTIONS(3012), - [anon_sym_STAR] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3016), - [anon_sym_typeof] = ACTIONS(3018), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3020), - [anon_sym_LPAREN] = ACTIONS(3022), - [anon_sym_LBRACK] = ACTIONS(3024), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_AMP] = ACTIONS(3028), - [anon_sym_PIPE] = ACTIONS(3030), - [anon_sym_PLUS] = ACTIONS(3032), - [anon_sym_DASH] = ACTIONS(3032), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3034), - [anon_sym_DQUOTE] = ACTIONS(3036), - [anon_sym_SQUOTE] = ACTIONS(3038), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3040), - [sym_number] = ACTIONS(3042), - [sym_this] = ACTIONS(3044), - [sym_true] = ACTIONS(3046), - [sym_false] = ACTIONS(3046), - [sym_null] = ACTIONS(3046), - [sym_undefined] = ACTIONS(3046), - [anon_sym_readonly] = ACTIONS(3048), - [anon_sym_QMARK] = ACTIONS(3050), - [anon_sym_any] = ACTIONS(3034), - [anon_sym_number] = ACTIONS(3034), - [anon_sym_boolean] = ACTIONS(3034), - [anon_sym_string] = ACTIONS(3034), - [anon_sym_symbol] = ACTIONS(3034), - [anon_sym_object] = ACTIONS(3034), - [anon_sym_abstract] = ACTIONS(3052), - [anon_sym_asserts] = ACTIONS(3054), - [anon_sym_infer] = ACTIONS(3056), - [anon_sym_keyof] = ACTIONS(3058), - [anon_sym_unique] = ACTIONS(3060), - [anon_sym_unknown] = ACTIONS(3034), - [anon_sym_never] = ACTIONS(3034), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), + [sym_identifier] = ACTIONS(3129), + [anon_sym_export] = ACTIONS(3129), + [anon_sym_type] = ACTIONS(3129), + [anon_sym_namespace] = ACTIONS(3129), + [anon_sym_LBRACE] = ACTIONS(3131), + [anon_sym_typeof] = ACTIONS(3129), + [anon_sym_import] = ACTIONS(3129), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_var] = ACTIONS(3129), + [anon_sym_let] = ACTIONS(3129), + [anon_sym_const] = ACTIONS(3129), + [anon_sym_BANG] = ACTIONS(3131), + [anon_sym_if] = ACTIONS(3129), + [anon_sym_switch] = ACTIONS(3129), + [anon_sym_for] = ACTIONS(3129), + [anon_sym_LPAREN] = ACTIONS(3131), + [anon_sym_SEMI] = ACTIONS(3131), + [anon_sym_await] = ACTIONS(3129), + [anon_sym_while] = ACTIONS(3129), + [anon_sym_do] = ACTIONS(3129), + [anon_sym_try] = ACTIONS(3129), + [anon_sym_break] = ACTIONS(3129), + [anon_sym_continue] = ACTIONS(3129), + [anon_sym_debugger] = ACTIONS(3129), + [anon_sym_return] = ACTIONS(3129), + [anon_sym_throw] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3129), + [anon_sym_LBRACK] = ACTIONS(3131), + [anon_sym_class] = ACTIONS(3129), + [anon_sym_async] = ACTIONS(3129), + [anon_sym_function] = ACTIONS(3129), + [anon_sym_new] = ACTIONS(3129), + [anon_sym_using] = ACTIONS(3129), + [anon_sym_PLUS] = ACTIONS(3129), + [anon_sym_DASH] = ACTIONS(3129), + [anon_sym_SLASH] = ACTIONS(3129), + [anon_sym_LT] = ACTIONS(3131), + [anon_sym_TILDE] = ACTIONS(3131), + [anon_sym_void] = ACTIONS(3129), + [anon_sym_delete] = ACTIONS(3129), + [anon_sym_PLUS_PLUS] = ACTIONS(3131), + [anon_sym_DASH_DASH] = ACTIONS(3131), + [anon_sym_DQUOTE] = ACTIONS(3131), + [anon_sym_SQUOTE] = ACTIONS(3131), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3131), + [sym_number] = ACTIONS(3131), + [sym_private_property_identifier] = ACTIONS(3131), + [sym_this] = ACTIONS(3129), + [sym_super] = ACTIONS(3129), + [sym_true] = ACTIONS(3129), + [sym_false] = ACTIONS(3129), + [sym_null] = ACTIONS(3129), + [sym_undefined] = ACTIONS(3129), + [anon_sym_AT] = ACTIONS(3131), + [anon_sym_static] = ACTIONS(3129), + [anon_sym_readonly] = ACTIONS(3129), + [anon_sym_get] = ACTIONS(3129), + [anon_sym_set] = ACTIONS(3129), + [anon_sym_declare] = ACTIONS(3129), + [anon_sym_public] = ACTIONS(3129), + [anon_sym_private] = ACTIONS(3129), + [anon_sym_protected] = ACTIONS(3129), + [anon_sym_override] = ACTIONS(3129), + [anon_sym_module] = ACTIONS(3129), + [anon_sym_any] = ACTIONS(3129), + [anon_sym_number] = ACTIONS(3129), + [anon_sym_boolean] = ACTIONS(3129), + [anon_sym_string] = ACTIONS(3129), + [anon_sym_symbol] = ACTIONS(3129), + [anon_sym_object] = ACTIONS(3129), + [anon_sym_abstract] = ACTIONS(3129), + [anon_sym_interface] = ACTIONS(3129), + [anon_sym_enum] = ACTIONS(3129), [sym_html_comment] = ACTIONS(5), }, [961] = { - [sym_import] = STATE(4581), - [sym_nested_identifier] = STATE(5819), - [sym_string] = STATE(3407), - [sym_formal_parameters] = STATE(5869), - [sym_nested_type_identifier] = STATE(3269), - [sym__type_query_member_expression_in_type_annotation] = STATE(3187), - [sym__type_query_call_expression_in_type_annotation] = STATE(3319), - [sym_asserts] = STATE(3381), - [sym_type] = STATE(3385), - [sym_constructor_type] = STATE(3422), - [sym_primary_type] = STATE(3426), - [sym_template_literal_type] = STATE(3428), - [sym_infer_type] = STATE(3422), - [sym_conditional_type] = STATE(3428), - [sym_generic_type] = STATE(3428), - [sym_type_predicate] = STATE(3381), - [sym_type_query] = STATE(3428), - [sym_index_type_query] = STATE(3428), - [sym_lookup_type] = STATE(3428), - [sym_literal_type] = STATE(3428), - [sym__number] = STATE(3432), - [sym_existential_type] = STATE(3428), - [sym_flow_maybe_type] = STATE(3428), - [sym_parenthesized_type] = STATE(3428), - [sym_predefined_type] = STATE(3313), - [sym_object_type] = STATE(3428), - [sym_type_parameters] = STATE(5263), - [sym_array_type] = STATE(3428), - [sym_tuple_type] = STATE(3428), - [sym_readonly_type] = STATE(3422), - [sym_union_type] = STATE(3428), - [sym_intersection_type] = STATE(3428), - [sym_function_type] = STATE(3422), - [sym_identifier] = ACTIONS(3012), - [anon_sym_STAR] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3016), - [anon_sym_typeof] = ACTIONS(3018), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3020), - [anon_sym_LPAREN] = ACTIONS(3022), - [anon_sym_LBRACK] = ACTIONS(3024), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_AMP] = ACTIONS(3028), - [anon_sym_PIPE] = ACTIONS(3030), - [anon_sym_PLUS] = ACTIONS(3032), - [anon_sym_DASH] = ACTIONS(3032), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3034), - [anon_sym_DQUOTE] = ACTIONS(3036), - [anon_sym_SQUOTE] = ACTIONS(3038), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3040), - [sym_number] = ACTIONS(3042), - [sym_this] = ACTIONS(3044), - [sym_true] = ACTIONS(3046), - [sym_false] = ACTIONS(3046), - [sym_null] = ACTIONS(3046), - [sym_undefined] = ACTIONS(3046), - [anon_sym_readonly] = ACTIONS(3048), - [anon_sym_QMARK] = ACTIONS(3050), - [anon_sym_any] = ACTIONS(3034), - [anon_sym_number] = ACTIONS(3034), - [anon_sym_boolean] = ACTIONS(3034), - [anon_sym_string] = ACTIONS(3034), - [anon_sym_symbol] = ACTIONS(3034), - [anon_sym_object] = ACTIONS(3034), - [anon_sym_abstract] = ACTIONS(3052), - [anon_sym_asserts] = ACTIONS(3054), - [anon_sym_infer] = ACTIONS(3056), - [anon_sym_keyof] = ACTIONS(3058), - [anon_sym_unique] = ACTIONS(3060), - [anon_sym_unknown] = ACTIONS(3034), - [anon_sym_never] = ACTIONS(3034), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), + [sym_import] = STATE(4950), + [sym_nested_identifier] = STATE(5535), + [sym_string] = STATE(3265), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(3076), + [sym__type_query_call_expression_in_type_annotation] = STATE(3200), + [sym_asserts] = STATE(3811), + [sym_type] = STATE(3302), + [sym_constructor_type] = STATE(3271), + [sym_primary_type] = STATE(3272), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3271), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_predicate] = STATE(3862), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3212), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5146), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3271), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3271), + [sym_identifier] = ACTIONS(2981), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_new] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_this] = ACTIONS(2985), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_any] = ACTIONS(1032), + [anon_sym_number] = ACTIONS(1032), + [anon_sym_boolean] = ACTIONS(1032), + [anon_sym_string] = ACTIONS(1032), + [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_object] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_asserts] = ACTIONS(2987), + [anon_sym_infer] = ACTIONS(1026), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), [sym_html_comment] = ACTIONS(5), }, [962] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_asserts] = STATE(2954), - [sym_type] = STATE(3150), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_predicate] = STATE(2954), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(3069), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(3066), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_asserts] = ACTIONS(3068), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_asserts] = STATE(3023), + [sym_type] = STATE(3711), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_predicate] = STATE(3023), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3494), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3139), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(3141), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_asserts] = ACTIONS(3143), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [963] = { - [sym_import] = STATE(4801), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5705), - [sym_nested_type_identifier] = STATE(3495), - [sym__type_query_member_expression_in_type_annotation] = STATE(3462), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_asserts] = STATE(3027), - [sym_type] = STATE(3811), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_predicate] = STATE(3027), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(3646), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5376), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(3070), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_typeof] = ACTIONS(3074), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(3076), - [anon_sym_AMP] = ACTIONS(3078), - [anon_sym_PIPE] = ACTIONS(3080), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(2344), - [anon_sym_SQUOTE] = ACTIONS(2346), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(3082), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(3084), - [anon_sym_QMARK] = ACTIONS(3086), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(3088), - [anon_sym_asserts] = ACTIONS(3090), - [anon_sym_infer] = ACTIONS(3092), - [anon_sym_keyof] = ACTIONS(3094), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3096), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_asserts] = STATE(5193), + [sym_type] = STATE(3340), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_predicate] = STATE(5196), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3056), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(3135), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_asserts] = ACTIONS(3137), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [964] = { - [sym_import] = STATE(4763), - [sym_nested_identifier] = STATE(5701), - [sym_string] = STATE(1961), - [sym_formal_parameters] = STATE(5838), - [sym_nested_type_identifier] = STATE(1823), - [sym__type_query_member_expression_in_type_annotation] = STATE(1867), - [sym__type_query_call_expression_in_type_annotation] = STATE(1905), - [sym_asserts] = STATE(2037), - [sym_type] = STATE(2039), - [sym_constructor_type] = STATE(1910), - [sym_primary_type] = STATE(1913), - [sym_template_literal_type] = STATE(1916), - [sym_infer_type] = STATE(1910), - [sym_conditional_type] = STATE(1916), - [sym_generic_type] = STATE(1916), - [sym_type_predicate] = STATE(2037), - [sym_type_query] = STATE(1916), - [sym_index_type_query] = STATE(1916), - [sym_lookup_type] = STATE(1916), - [sym_literal_type] = STATE(1916), - [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1916), - [sym_flow_maybe_type] = STATE(1916), - [sym_parenthesized_type] = STATE(1916), - [sym_predefined_type] = STATE(1815), - [sym_object_type] = STATE(1916), - [sym_type_parameters] = STATE(5278), - [sym_array_type] = STATE(1916), - [sym_tuple_type] = STATE(1916), - [sym_readonly_type] = STATE(1910), - [sym_union_type] = STATE(1916), - [sym_intersection_type] = STATE(1916), - [sym_function_type] = STATE(1910), - [sym_identifier] = ACTIONS(3098), - [anon_sym_STAR] = ACTIONS(3100), - [anon_sym_LBRACE] = ACTIONS(3102), - [anon_sym_typeof] = ACTIONS(3104), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3106), - [anon_sym_LPAREN] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(3110), - [anon_sym_new] = ACTIONS(3112), - [anon_sym_AMP] = ACTIONS(3114), - [anon_sym_PIPE] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3122), - [sym_number] = ACTIONS(3124), - [sym_this] = ACTIONS(3126), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [sym_null] = ACTIONS(3128), - [sym_undefined] = ACTIONS(3128), - [anon_sym_readonly] = ACTIONS(3130), - [anon_sym_QMARK] = ACTIONS(3132), - [anon_sym_any] = ACTIONS(3120), - [anon_sym_number] = ACTIONS(3120), - [anon_sym_boolean] = ACTIONS(3120), - [anon_sym_string] = ACTIONS(3120), - [anon_sym_symbol] = ACTIONS(3120), - [anon_sym_object] = ACTIONS(3120), - [anon_sym_abstract] = ACTIONS(3134), - [anon_sym_asserts] = ACTIONS(3136), - [anon_sym_infer] = ACTIONS(3138), - [anon_sym_keyof] = ACTIONS(3140), - [anon_sym_unique] = ACTIONS(3142), - [anon_sym_unknown] = ACTIONS(3120), - [anon_sym_never] = ACTIONS(3120), - [anon_sym_LBRACE_PIPE] = ACTIONS(3144), + [sym_import] = STATE(4950), + [sym_nested_identifier] = STATE(5535), + [sym_string] = STATE(3265), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(3076), + [sym__type_query_call_expression_in_type_annotation] = STATE(3200), + [sym_asserts] = STATE(3270), + [sym_type] = STATE(3275), + [sym_constructor_type] = STATE(3271), + [sym_primary_type] = STATE(3272), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3271), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_predicate] = STATE(3270), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3212), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5146), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3271), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3271), + [sym_identifier] = ACTIONS(2981), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_new] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_this] = ACTIONS(2985), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_any] = ACTIONS(1032), + [anon_sym_number] = ACTIONS(1032), + [anon_sym_boolean] = ACTIONS(1032), + [anon_sym_string] = ACTIONS(1032), + [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_object] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_asserts] = ACTIONS(2987), + [anon_sym_infer] = ACTIONS(1026), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), [sym_html_comment] = ACTIONS(5), }, [965] = { - [sym_import] = STATE(4581), - [sym_nested_identifier] = STATE(5819), - [sym_string] = STATE(3407), - [sym_formal_parameters] = STATE(5869), - [sym_nested_type_identifier] = STATE(3269), - [sym__type_query_member_expression_in_type_annotation] = STATE(3187), - [sym__type_query_call_expression_in_type_annotation] = STATE(3319), - [sym_asserts] = STATE(3408), - [sym_type] = STATE(3409), - [sym_constructor_type] = STATE(3422), - [sym_primary_type] = STATE(3426), - [sym_template_literal_type] = STATE(3428), - [sym_infer_type] = STATE(3422), - [sym_conditional_type] = STATE(3428), - [sym_generic_type] = STATE(3428), - [sym_type_predicate] = STATE(3408), - [sym_type_query] = STATE(3428), - [sym_index_type_query] = STATE(3428), - [sym_lookup_type] = STATE(3428), - [sym_literal_type] = STATE(3428), - [sym__number] = STATE(3432), - [sym_existential_type] = STATE(3428), - [sym_flow_maybe_type] = STATE(3428), - [sym_parenthesized_type] = STATE(3428), - [sym_predefined_type] = STATE(3313), - [sym_object_type] = STATE(3428), - [sym_type_parameters] = STATE(5263), - [sym_array_type] = STATE(3428), - [sym_tuple_type] = STATE(3428), - [sym_readonly_type] = STATE(3422), - [sym_union_type] = STATE(3428), - [sym_intersection_type] = STATE(3428), - [sym_function_type] = STATE(3422), - [sym_identifier] = ACTIONS(3012), - [anon_sym_STAR] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3016), - [anon_sym_typeof] = ACTIONS(3018), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3020), - [anon_sym_LPAREN] = ACTIONS(3022), - [anon_sym_LBRACK] = ACTIONS(3024), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_AMP] = ACTIONS(3028), - [anon_sym_PIPE] = ACTIONS(3030), - [anon_sym_PLUS] = ACTIONS(3032), - [anon_sym_DASH] = ACTIONS(3032), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3034), - [anon_sym_DQUOTE] = ACTIONS(3036), - [anon_sym_SQUOTE] = ACTIONS(3038), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3040), - [sym_number] = ACTIONS(3042), - [sym_this] = ACTIONS(3044), - [sym_true] = ACTIONS(3046), - [sym_false] = ACTIONS(3046), - [sym_null] = ACTIONS(3046), - [sym_undefined] = ACTIONS(3046), - [anon_sym_readonly] = ACTIONS(3048), - [anon_sym_QMARK] = ACTIONS(3050), - [anon_sym_any] = ACTIONS(3034), - [anon_sym_number] = ACTIONS(3034), - [anon_sym_boolean] = ACTIONS(3034), - [anon_sym_string] = ACTIONS(3034), - [anon_sym_symbol] = ACTIONS(3034), - [anon_sym_object] = ACTIONS(3034), - [anon_sym_abstract] = ACTIONS(3052), - [anon_sym_asserts] = ACTIONS(3054), - [anon_sym_infer] = ACTIONS(3056), - [anon_sym_keyof] = ACTIONS(3058), - [anon_sym_unique] = ACTIONS(3060), - [anon_sym_unknown] = ACTIONS(3034), - [anon_sym_never] = ACTIONS(3034), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), + [sym_identifier] = ACTIONS(3129), + [anon_sym_export] = ACTIONS(3129), + [anon_sym_type] = ACTIONS(3129), + [anon_sym_namespace] = ACTIONS(3129), + [anon_sym_LBRACE] = ACTIONS(3131), + [anon_sym_typeof] = ACTIONS(3129), + [anon_sym_import] = ACTIONS(3129), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_var] = ACTIONS(3129), + [anon_sym_let] = ACTIONS(3129), + [anon_sym_const] = ACTIONS(3129), + [anon_sym_BANG] = ACTIONS(3131), + [anon_sym_if] = ACTIONS(3129), + [anon_sym_switch] = ACTIONS(3129), + [anon_sym_for] = ACTIONS(3129), + [anon_sym_LPAREN] = ACTIONS(3131), + [anon_sym_SEMI] = ACTIONS(3131), + [anon_sym_await] = ACTIONS(3129), + [anon_sym_while] = ACTIONS(3129), + [anon_sym_do] = ACTIONS(3129), + [anon_sym_try] = ACTIONS(3129), + [anon_sym_break] = ACTIONS(3129), + [anon_sym_continue] = ACTIONS(3129), + [anon_sym_debugger] = ACTIONS(3129), + [anon_sym_return] = ACTIONS(3129), + [anon_sym_throw] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3129), + [anon_sym_LBRACK] = ACTIONS(3131), + [anon_sym_class] = ACTIONS(3129), + [anon_sym_async] = ACTIONS(3129), + [anon_sym_function] = ACTIONS(3129), + [anon_sym_new] = ACTIONS(3129), + [anon_sym_using] = ACTIONS(3129), + [anon_sym_PLUS] = ACTIONS(3129), + [anon_sym_DASH] = ACTIONS(3129), + [anon_sym_SLASH] = ACTIONS(3129), + [anon_sym_LT] = ACTIONS(3131), + [anon_sym_TILDE] = ACTIONS(3131), + [anon_sym_void] = ACTIONS(3129), + [anon_sym_delete] = ACTIONS(3129), + [anon_sym_PLUS_PLUS] = ACTIONS(3131), + [anon_sym_DASH_DASH] = ACTIONS(3131), + [anon_sym_DQUOTE] = ACTIONS(3131), + [anon_sym_SQUOTE] = ACTIONS(3131), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3131), + [sym_number] = ACTIONS(3131), + [sym_private_property_identifier] = ACTIONS(3131), + [sym_this] = ACTIONS(3129), + [sym_super] = ACTIONS(3129), + [sym_true] = ACTIONS(3129), + [sym_false] = ACTIONS(3129), + [sym_null] = ACTIONS(3129), + [sym_undefined] = ACTIONS(3129), + [anon_sym_AT] = ACTIONS(3131), + [anon_sym_static] = ACTIONS(3129), + [anon_sym_readonly] = ACTIONS(3129), + [anon_sym_get] = ACTIONS(3129), + [anon_sym_set] = ACTIONS(3129), + [anon_sym_declare] = ACTIONS(3129), + [anon_sym_public] = ACTIONS(3129), + [anon_sym_private] = ACTIONS(3129), + [anon_sym_protected] = ACTIONS(3129), + [anon_sym_override] = ACTIONS(3129), + [anon_sym_module] = ACTIONS(3129), + [anon_sym_any] = ACTIONS(3129), + [anon_sym_number] = ACTIONS(3129), + [anon_sym_boolean] = ACTIONS(3129), + [anon_sym_string] = ACTIONS(3129), + [anon_sym_symbol] = ACTIONS(3129), + [anon_sym_object] = ACTIONS(3129), + [anon_sym_abstract] = ACTIONS(3129), + [anon_sym_interface] = ACTIONS(3129), + [anon_sym_enum] = ACTIONS(3129), [sym_html_comment] = ACTIONS(5), }, [966] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_asserts] = STATE(3027), - [sym_type] = STATE(3088), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_predicate] = STATE(3027), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(3069), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(3066), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_asserts] = ACTIONS(3068), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_identifier] = ACTIONS(3129), + [anon_sym_export] = ACTIONS(3129), + [anon_sym_type] = ACTIONS(3129), + [anon_sym_namespace] = ACTIONS(3129), + [anon_sym_LBRACE] = ACTIONS(3131), + [anon_sym_typeof] = ACTIONS(3129), + [anon_sym_import] = ACTIONS(3129), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_var] = ACTIONS(3129), + [anon_sym_let] = ACTIONS(3129), + [anon_sym_const] = ACTIONS(3129), + [anon_sym_BANG] = ACTIONS(3131), + [anon_sym_if] = ACTIONS(3129), + [anon_sym_switch] = ACTIONS(3129), + [anon_sym_for] = ACTIONS(3129), + [anon_sym_LPAREN] = ACTIONS(3131), + [anon_sym_SEMI] = ACTIONS(3131), + [anon_sym_await] = ACTIONS(3129), + [anon_sym_while] = ACTIONS(3129), + [anon_sym_do] = ACTIONS(3129), + [anon_sym_try] = ACTIONS(3129), + [anon_sym_break] = ACTIONS(3129), + [anon_sym_continue] = ACTIONS(3129), + [anon_sym_debugger] = ACTIONS(3129), + [anon_sym_return] = ACTIONS(3129), + [anon_sym_throw] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3129), + [anon_sym_LBRACK] = ACTIONS(3131), + [anon_sym_class] = ACTIONS(3129), + [anon_sym_async] = ACTIONS(3129), + [anon_sym_function] = ACTIONS(3129), + [anon_sym_new] = ACTIONS(3129), + [anon_sym_using] = ACTIONS(3129), + [anon_sym_PLUS] = ACTIONS(3129), + [anon_sym_DASH] = ACTIONS(3129), + [anon_sym_SLASH] = ACTIONS(3129), + [anon_sym_LT] = ACTIONS(3131), + [anon_sym_TILDE] = ACTIONS(3131), + [anon_sym_void] = ACTIONS(3129), + [anon_sym_delete] = ACTIONS(3129), + [anon_sym_PLUS_PLUS] = ACTIONS(3131), + [anon_sym_DASH_DASH] = ACTIONS(3131), + [anon_sym_DQUOTE] = ACTIONS(3131), + [anon_sym_SQUOTE] = ACTIONS(3131), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3131), + [sym_number] = ACTIONS(3131), + [sym_private_property_identifier] = ACTIONS(3131), + [sym_this] = ACTIONS(3129), + [sym_super] = ACTIONS(3129), + [sym_true] = ACTIONS(3129), + [sym_false] = ACTIONS(3129), + [sym_null] = ACTIONS(3129), + [sym_undefined] = ACTIONS(3129), + [anon_sym_AT] = ACTIONS(3131), + [anon_sym_static] = ACTIONS(3129), + [anon_sym_readonly] = ACTIONS(3129), + [anon_sym_get] = ACTIONS(3129), + [anon_sym_set] = ACTIONS(3129), + [anon_sym_declare] = ACTIONS(3129), + [anon_sym_public] = ACTIONS(3129), + [anon_sym_private] = ACTIONS(3129), + [anon_sym_protected] = ACTIONS(3129), + [anon_sym_override] = ACTIONS(3129), + [anon_sym_module] = ACTIONS(3129), + [anon_sym_any] = ACTIONS(3129), + [anon_sym_number] = ACTIONS(3129), + [anon_sym_boolean] = ACTIONS(3129), + [anon_sym_string] = ACTIONS(3129), + [anon_sym_symbol] = ACTIONS(3129), + [anon_sym_object] = ACTIONS(3129), + [anon_sym_abstract] = ACTIONS(3129), + [anon_sym_interface] = ACTIONS(3129), + [anon_sym_enum] = ACTIONS(3129), [sym_html_comment] = ACTIONS(5), }, [967] = { - [sym_import] = STATE(4763), - [sym_nested_identifier] = STATE(5701), - [sym_string] = STATE(1961), - [sym_formal_parameters] = STATE(5838), - [sym_nested_type_identifier] = STATE(1823), - [sym__type_query_member_expression_in_type_annotation] = STATE(1867), - [sym__type_query_call_expression_in_type_annotation] = STATE(1905), - [sym_asserts] = STATE(1992), - [sym_type] = STATE(1993), - [sym_constructor_type] = STATE(1910), - [sym_primary_type] = STATE(1913), - [sym_template_literal_type] = STATE(1916), - [sym_infer_type] = STATE(1910), - [sym_conditional_type] = STATE(1916), - [sym_generic_type] = STATE(1916), - [sym_type_predicate] = STATE(1992), - [sym_type_query] = STATE(1916), - [sym_index_type_query] = STATE(1916), - [sym_lookup_type] = STATE(1916), - [sym_literal_type] = STATE(1916), - [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1916), - [sym_flow_maybe_type] = STATE(1916), - [sym_parenthesized_type] = STATE(1916), - [sym_predefined_type] = STATE(1815), - [sym_object_type] = STATE(1916), - [sym_type_parameters] = STATE(5278), - [sym_array_type] = STATE(1916), - [sym_tuple_type] = STATE(1916), - [sym_readonly_type] = STATE(1910), - [sym_union_type] = STATE(1916), - [sym_intersection_type] = STATE(1916), - [sym_function_type] = STATE(1910), - [sym_identifier] = ACTIONS(3098), - [anon_sym_STAR] = ACTIONS(3100), - [anon_sym_LBRACE] = ACTIONS(3102), - [anon_sym_typeof] = ACTIONS(3104), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3106), - [anon_sym_LPAREN] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(3110), - [anon_sym_new] = ACTIONS(3112), - [anon_sym_AMP] = ACTIONS(3114), - [anon_sym_PIPE] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3122), - [sym_number] = ACTIONS(3124), - [sym_this] = ACTIONS(3126), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [sym_null] = ACTIONS(3128), - [sym_undefined] = ACTIONS(3128), - [anon_sym_readonly] = ACTIONS(3130), - [anon_sym_QMARK] = ACTIONS(3132), - [anon_sym_any] = ACTIONS(3120), - [anon_sym_number] = ACTIONS(3120), - [anon_sym_boolean] = ACTIONS(3120), - [anon_sym_string] = ACTIONS(3120), - [anon_sym_symbol] = ACTIONS(3120), - [anon_sym_object] = ACTIONS(3120), - [anon_sym_abstract] = ACTIONS(3134), - [anon_sym_asserts] = ACTIONS(3136), - [anon_sym_infer] = ACTIONS(3138), - [anon_sym_keyof] = ACTIONS(3140), - [anon_sym_unique] = ACTIONS(3142), - [anon_sym_unknown] = ACTIONS(3120), - [anon_sym_never] = ACTIONS(3120), - [anon_sym_LBRACE_PIPE] = ACTIONS(3144), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_asserts] = STATE(3018), + [sym_type] = STATE(3731), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_predicate] = STATE(3018), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3494), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3139), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(3141), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_asserts] = ACTIONS(3143), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [968] = { - [sym_import] = STATE(4535), - [sym_nested_identifier] = STATE(5487), - [sym_string] = STATE(1620), - [sym_formal_parameters] = STATE(5661), - [sym_nested_type_identifier] = STATE(1526), - [sym__type_query_member_expression_in_type_annotation] = STATE(1527), - [sym__type_query_call_expression_in_type_annotation] = STATE(1573), - [sym_asserts] = STATE(1556), - [sym_type] = STATE(1557), - [sym_constructor_type] = STATE(1599), - [sym_primary_type] = STATE(1597), - [sym_template_literal_type] = STATE(1601), - [sym_infer_type] = STATE(1599), - [sym_conditional_type] = STATE(1601), - [sym_generic_type] = STATE(1601), - [sym_type_predicate] = STATE(1556), - [sym_type_query] = STATE(1601), - [sym_index_type_query] = STATE(1601), - [sym_lookup_type] = STATE(1601), - [sym_literal_type] = STATE(1601), - [sym__number] = STATE(1628), - [sym_existential_type] = STATE(1601), - [sym_flow_maybe_type] = STATE(1601), - [sym_parenthesized_type] = STATE(1601), - [sym_predefined_type] = STATE(1517), - [sym_object_type] = STATE(1601), - [sym_type_parameters] = STATE(5219), - [sym_array_type] = STATE(1601), - [sym_tuple_type] = STATE(1601), - [sym_readonly_type] = STATE(1599), - [sym_union_type] = STATE(1601), - [sym_intersection_type] = STATE(1601), - [sym_function_type] = STATE(1599), - [sym_identifier] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3150), - [anon_sym_typeof] = ACTIONS(3152), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3156), - [anon_sym_LBRACK] = ACTIONS(3158), - [anon_sym_new] = ACTIONS(3160), - [anon_sym_AMP] = ACTIONS(3162), - [anon_sym_PIPE] = ACTIONS(3164), - [anon_sym_PLUS] = ACTIONS(3166), - [anon_sym_DASH] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3170), - [sym_number] = ACTIONS(3172), - [sym_this] = ACTIONS(3174), - [sym_true] = ACTIONS(3176), - [sym_false] = ACTIONS(3176), - [sym_null] = ACTIONS(3176), - [sym_undefined] = ACTIONS(3176), - [anon_sym_readonly] = ACTIONS(3178), - [anon_sym_QMARK] = ACTIONS(3180), - [anon_sym_any] = ACTIONS(3168), - [anon_sym_number] = ACTIONS(3168), - [anon_sym_boolean] = ACTIONS(3168), - [anon_sym_string] = ACTIONS(3168), - [anon_sym_symbol] = ACTIONS(3168), - [anon_sym_object] = ACTIONS(3168), - [anon_sym_abstract] = ACTIONS(3182), - [anon_sym_asserts] = ACTIONS(3184), - [anon_sym_infer] = ACTIONS(3186), - [anon_sym_keyof] = ACTIONS(3188), - [anon_sym_unique] = ACTIONS(3190), - [anon_sym_unknown] = ACTIONS(3168), - [anon_sym_never] = ACTIONS(3168), - [anon_sym_LBRACE_PIPE] = ACTIONS(3192), + [sym_import] = STATE(4531), + [sym_nested_identifier] = STATE(5486), + [sym_string] = STATE(1632), + [sym_formal_parameters] = STATE(5639), + [sym_nested_type_identifier] = STATE(1527), + [sym__type_query_member_expression_in_type_annotation] = STATE(1514), + [sym__type_query_call_expression_in_type_annotation] = STATE(1574), + [sym_asserts] = STATE(1631), + [sym_type] = STATE(1634), + [sym_constructor_type] = STATE(1544), + [sym_primary_type] = STATE(1554), + [sym_template_literal_type] = STATE(1556), + [sym_infer_type] = STATE(1544), + [sym_conditional_type] = STATE(1556), + [sym_generic_type] = STATE(1556), + [sym_type_predicate] = STATE(1631), + [sym_type_query] = STATE(1556), + [sym_index_type_query] = STATE(1556), + [sym_lookup_type] = STATE(1556), + [sym_literal_type] = STATE(1556), + [sym__number] = STATE(1536), + [sym_existential_type] = STATE(1556), + [sym_flow_maybe_type] = STATE(1556), + [sym_parenthesized_type] = STATE(1556), + [sym_predefined_type] = STATE(1524), + [sym_object_type] = STATE(1556), + [sym_type_parameters] = STATE(5205), + [sym_array_type] = STATE(1556), + [sym_tuple_type] = STATE(1556), + [sym_readonly_type] = STATE(1544), + [sym_union_type] = STATE(1556), + [sym_intersection_type] = STATE(1556), + [sym_function_type] = STATE(1544), + [sym_identifier] = ACTIONS(3145), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_typeof] = ACTIONS(3151), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_PIPE] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3169), + [sym_number] = ACTIONS(3171), + [sym_this] = ACTIONS(3173), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [sym_null] = ACTIONS(3175), + [sym_undefined] = ACTIONS(3175), + [anon_sym_readonly] = ACTIONS(3177), + [anon_sym_QMARK] = ACTIONS(3179), + [anon_sym_any] = ACTIONS(3167), + [anon_sym_number] = ACTIONS(3167), + [anon_sym_boolean] = ACTIONS(3167), + [anon_sym_string] = ACTIONS(3167), + [anon_sym_symbol] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3181), + [anon_sym_asserts] = ACTIONS(3183), + [anon_sym_infer] = ACTIONS(3185), + [anon_sym_keyof] = ACTIONS(3187), + [anon_sym_unique] = ACTIONS(3189), + [anon_sym_unknown] = ACTIONS(3167), + [anon_sym_never] = ACTIONS(3167), + [anon_sym_LBRACE_PIPE] = ACTIONS(3191), [sym_html_comment] = ACTIONS(5), }, [969] = { - [sym_import] = STATE(4676), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(3304), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_asserts] = STATE(2954), - [sym_type] = STATE(3648), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_predicate] = STATE(2954), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(3486), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5461), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(3196), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_asserts] = ACTIONS(3198), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_identifier] = ACTIONS(2509), + [anon_sym_export] = ACTIONS(2509), + [anon_sym_type] = ACTIONS(2509), + [anon_sym_namespace] = ACTIONS(2509), + [anon_sym_LBRACE] = ACTIONS(2507), + [anon_sym_typeof] = ACTIONS(2509), + [anon_sym_import] = ACTIONS(2509), + [anon_sym_with] = ACTIONS(2509), + [anon_sym_var] = ACTIONS(2509), + [anon_sym_let] = ACTIONS(2509), + [anon_sym_const] = ACTIONS(2509), + [anon_sym_BANG] = ACTIONS(2507), + [anon_sym_if] = ACTIONS(2509), + [anon_sym_switch] = ACTIONS(2509), + [anon_sym_for] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(2507), + [anon_sym_SEMI] = ACTIONS(2507), + [anon_sym_await] = ACTIONS(2509), + [anon_sym_while] = ACTIONS(2509), + [anon_sym_do] = ACTIONS(2509), + [anon_sym_try] = ACTIONS(2509), + [anon_sym_break] = ACTIONS(2509), + [anon_sym_continue] = ACTIONS(2509), + [anon_sym_debugger] = ACTIONS(2509), + [anon_sym_return] = ACTIONS(2509), + [anon_sym_throw] = ACTIONS(2509), + [anon_sym_yield] = ACTIONS(2509), + [anon_sym_LBRACK] = ACTIONS(2507), + [anon_sym_class] = ACTIONS(2509), + [anon_sym_async] = ACTIONS(2509), + [anon_sym_function] = ACTIONS(2509), + [anon_sym_new] = ACTIONS(2509), + [anon_sym_using] = ACTIONS(2509), + [anon_sym_PLUS] = ACTIONS(2509), + [anon_sym_DASH] = ACTIONS(2509), + [anon_sym_SLASH] = ACTIONS(2509), + [anon_sym_LT] = ACTIONS(2507), + [anon_sym_TILDE] = ACTIONS(2507), + [anon_sym_void] = ACTIONS(2509), + [anon_sym_delete] = ACTIONS(2509), + [anon_sym_PLUS_PLUS] = ACTIONS(2507), + [anon_sym_DASH_DASH] = ACTIONS(2507), + [anon_sym_DQUOTE] = ACTIONS(2507), + [anon_sym_SQUOTE] = ACTIONS(2507), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2507), + [sym_number] = ACTIONS(2507), + [sym_private_property_identifier] = ACTIONS(2507), + [sym_this] = ACTIONS(2509), + [sym_super] = ACTIONS(2509), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_null] = ACTIONS(2509), + [sym_undefined] = ACTIONS(2509), + [anon_sym_AT] = ACTIONS(2507), + [anon_sym_static] = ACTIONS(2509), + [anon_sym_readonly] = ACTIONS(2509), + [anon_sym_get] = ACTIONS(2509), + [anon_sym_set] = ACTIONS(2509), + [anon_sym_declare] = ACTIONS(2509), + [anon_sym_public] = ACTIONS(2509), + [anon_sym_private] = ACTIONS(2509), + [anon_sym_protected] = ACTIONS(2509), + [anon_sym_override] = ACTIONS(2509), + [anon_sym_module] = ACTIONS(2509), + [anon_sym_any] = ACTIONS(2509), + [anon_sym_number] = ACTIONS(2509), + [anon_sym_boolean] = ACTIONS(2509), + [anon_sym_string] = ACTIONS(2509), + [anon_sym_symbol] = ACTIONS(2509), + [anon_sym_object] = ACTIONS(2509), + [anon_sym_abstract] = ACTIONS(2509), + [anon_sym_interface] = ACTIONS(2509), + [anon_sym_enum] = ACTIONS(2509), [sym_html_comment] = ACTIONS(5), }, [970] = { - [sym_import] = STATE(4676), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(3304), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_asserts] = STATE(3027), - [sym_type] = STATE(3653), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_predicate] = STATE(3027), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(3486), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5461), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(3194), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(3196), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_asserts] = ACTIONS(3198), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_identifier] = ACTIONS(3129), + [anon_sym_export] = ACTIONS(3129), + [anon_sym_type] = ACTIONS(3129), + [anon_sym_namespace] = ACTIONS(3129), + [anon_sym_LBRACE] = ACTIONS(3131), + [anon_sym_typeof] = ACTIONS(3129), + [anon_sym_import] = ACTIONS(3129), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_var] = ACTIONS(3129), + [anon_sym_let] = ACTIONS(3129), + [anon_sym_const] = ACTIONS(3129), + [anon_sym_BANG] = ACTIONS(3131), + [anon_sym_if] = ACTIONS(3129), + [anon_sym_switch] = ACTIONS(3129), + [anon_sym_for] = ACTIONS(3129), + [anon_sym_LPAREN] = ACTIONS(3131), + [anon_sym_SEMI] = ACTIONS(3131), + [anon_sym_await] = ACTIONS(3129), + [anon_sym_while] = ACTIONS(3129), + [anon_sym_do] = ACTIONS(3129), + [anon_sym_try] = ACTIONS(3129), + [anon_sym_break] = ACTIONS(3129), + [anon_sym_continue] = ACTIONS(3129), + [anon_sym_debugger] = ACTIONS(3129), + [anon_sym_return] = ACTIONS(3129), + [anon_sym_throw] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3129), + [anon_sym_LBRACK] = ACTIONS(3131), + [anon_sym_class] = ACTIONS(3129), + [anon_sym_async] = ACTIONS(3129), + [anon_sym_function] = ACTIONS(3129), + [anon_sym_new] = ACTIONS(3129), + [anon_sym_using] = ACTIONS(3129), + [anon_sym_PLUS] = ACTIONS(3129), + [anon_sym_DASH] = ACTIONS(3129), + [anon_sym_SLASH] = ACTIONS(3129), + [anon_sym_LT] = ACTIONS(3131), + [anon_sym_TILDE] = ACTIONS(3131), + [anon_sym_void] = ACTIONS(3129), + [anon_sym_delete] = ACTIONS(3129), + [anon_sym_PLUS_PLUS] = ACTIONS(3131), + [anon_sym_DASH_DASH] = ACTIONS(3131), + [anon_sym_DQUOTE] = ACTIONS(3131), + [anon_sym_SQUOTE] = ACTIONS(3131), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3131), + [sym_number] = ACTIONS(3131), + [sym_private_property_identifier] = ACTIONS(3131), + [sym_this] = ACTIONS(3129), + [sym_super] = ACTIONS(3129), + [sym_true] = ACTIONS(3129), + [sym_false] = ACTIONS(3129), + [sym_null] = ACTIONS(3129), + [sym_undefined] = ACTIONS(3129), + [anon_sym_AT] = ACTIONS(3131), + [anon_sym_static] = ACTIONS(3129), + [anon_sym_readonly] = ACTIONS(3129), + [anon_sym_get] = ACTIONS(3129), + [anon_sym_set] = ACTIONS(3129), + [anon_sym_declare] = ACTIONS(3129), + [anon_sym_public] = ACTIONS(3129), + [anon_sym_private] = ACTIONS(3129), + [anon_sym_protected] = ACTIONS(3129), + [anon_sym_override] = ACTIONS(3129), + [anon_sym_module] = ACTIONS(3129), + [anon_sym_any] = ACTIONS(3129), + [anon_sym_number] = ACTIONS(3129), + [anon_sym_boolean] = ACTIONS(3129), + [anon_sym_string] = ACTIONS(3129), + [anon_sym_symbol] = ACTIONS(3129), + [anon_sym_object] = ACTIONS(3129), + [anon_sym_abstract] = ACTIONS(3129), + [anon_sym_interface] = ACTIONS(3129), + [anon_sym_enum] = ACTIONS(3129), [sym_html_comment] = ACTIONS(5), }, [971] = { - [sym_import] = STATE(4535), - [sym_nested_identifier] = STATE(5487), - [sym_string] = STATE(1620), - [sym_formal_parameters] = STATE(5661), - [sym_nested_type_identifier] = STATE(1526), - [sym__type_query_member_expression_in_type_annotation] = STATE(1527), - [sym__type_query_call_expression_in_type_annotation] = STATE(1573), - [sym_asserts] = STATE(1590), - [sym_type] = STATE(1593), - [sym_constructor_type] = STATE(1599), - [sym_primary_type] = STATE(1597), - [sym_template_literal_type] = STATE(1601), - [sym_infer_type] = STATE(1599), - [sym_conditional_type] = STATE(1601), - [sym_generic_type] = STATE(1601), - [sym_type_predicate] = STATE(1590), - [sym_type_query] = STATE(1601), - [sym_index_type_query] = STATE(1601), - [sym_lookup_type] = STATE(1601), - [sym_literal_type] = STATE(1601), - [sym__number] = STATE(1628), - [sym_existential_type] = STATE(1601), - [sym_flow_maybe_type] = STATE(1601), - [sym_parenthesized_type] = STATE(1601), - [sym_predefined_type] = STATE(1517), - [sym_object_type] = STATE(1601), - [sym_type_parameters] = STATE(5219), - [sym_array_type] = STATE(1601), - [sym_tuple_type] = STATE(1601), - [sym_readonly_type] = STATE(1599), - [sym_union_type] = STATE(1601), - [sym_intersection_type] = STATE(1601), - [sym_function_type] = STATE(1599), - [sym_identifier] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3150), - [anon_sym_typeof] = ACTIONS(3152), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3156), - [anon_sym_LBRACK] = ACTIONS(3158), - [anon_sym_new] = ACTIONS(3160), - [anon_sym_AMP] = ACTIONS(3162), - [anon_sym_PIPE] = ACTIONS(3164), - [anon_sym_PLUS] = ACTIONS(3166), - [anon_sym_DASH] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3170), - [sym_number] = ACTIONS(3172), - [sym_this] = ACTIONS(3174), - [sym_true] = ACTIONS(3176), - [sym_false] = ACTIONS(3176), - [sym_null] = ACTIONS(3176), - [sym_undefined] = ACTIONS(3176), - [anon_sym_readonly] = ACTIONS(3178), - [anon_sym_QMARK] = ACTIONS(3180), - [anon_sym_any] = ACTIONS(3168), - [anon_sym_number] = ACTIONS(3168), - [anon_sym_boolean] = ACTIONS(3168), - [anon_sym_string] = ACTIONS(3168), - [anon_sym_symbol] = ACTIONS(3168), - [anon_sym_object] = ACTIONS(3168), - [anon_sym_abstract] = ACTIONS(3182), - [anon_sym_asserts] = ACTIONS(3184), - [anon_sym_infer] = ACTIONS(3186), - [anon_sym_keyof] = ACTIONS(3188), - [anon_sym_unique] = ACTIONS(3190), - [anon_sym_unknown] = ACTIONS(3168), - [anon_sym_never] = ACTIONS(3168), - [anon_sym_LBRACE_PIPE] = ACTIONS(3192), + [sym_import] = STATE(4531), + [sym_nested_identifier] = STATE(5486), + [sym_string] = STATE(1632), + [sym_formal_parameters] = STATE(5639), + [sym_nested_type_identifier] = STATE(1527), + [sym__type_query_member_expression_in_type_annotation] = STATE(1514), + [sym__type_query_call_expression_in_type_annotation] = STATE(1574), + [sym_asserts] = STATE(1560), + [sym_type] = STATE(1561), + [sym_constructor_type] = STATE(1544), + [sym_primary_type] = STATE(1554), + [sym_template_literal_type] = STATE(1556), + [sym_infer_type] = STATE(1544), + [sym_conditional_type] = STATE(1556), + [sym_generic_type] = STATE(1556), + [sym_type_predicate] = STATE(1560), + [sym_type_query] = STATE(1556), + [sym_index_type_query] = STATE(1556), + [sym_lookup_type] = STATE(1556), + [sym_literal_type] = STATE(1556), + [sym__number] = STATE(1536), + [sym_existential_type] = STATE(1556), + [sym_flow_maybe_type] = STATE(1556), + [sym_parenthesized_type] = STATE(1556), + [sym_predefined_type] = STATE(1524), + [sym_object_type] = STATE(1556), + [sym_type_parameters] = STATE(5205), + [sym_array_type] = STATE(1556), + [sym_tuple_type] = STATE(1556), + [sym_readonly_type] = STATE(1544), + [sym_union_type] = STATE(1556), + [sym_intersection_type] = STATE(1556), + [sym_function_type] = STATE(1544), + [sym_identifier] = ACTIONS(3145), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_typeof] = ACTIONS(3151), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_PIPE] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3169), + [sym_number] = ACTIONS(3171), + [sym_this] = ACTIONS(3173), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [sym_null] = ACTIONS(3175), + [sym_undefined] = ACTIONS(3175), + [anon_sym_readonly] = ACTIONS(3177), + [anon_sym_QMARK] = ACTIONS(3179), + [anon_sym_any] = ACTIONS(3167), + [anon_sym_number] = ACTIONS(3167), + [anon_sym_boolean] = ACTIONS(3167), + [anon_sym_string] = ACTIONS(3167), + [anon_sym_symbol] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3181), + [anon_sym_asserts] = ACTIONS(3183), + [anon_sym_infer] = ACTIONS(3185), + [anon_sym_keyof] = ACTIONS(3187), + [anon_sym_unique] = ACTIONS(3189), + [anon_sym_unknown] = ACTIONS(3167), + [anon_sym_never] = ACTIONS(3167), + [anon_sym_LBRACE_PIPE] = ACTIONS(3191), [sym_html_comment] = ACTIONS(5), }, [972] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5574), - [sym_string] = STATE(3242), - [sym_formal_parameters] = STATE(5809), - [sym_nested_type_identifier] = STATE(3153), - [sym__type_query_member_expression_in_type_annotation] = STATE(3081), - [sym__type_query_call_expression_in_type_annotation] = STATE(3197), - [sym_asserts] = STATE(3852), - [sym_type] = STATE(3312), - [sym_constructor_type] = STATE(3250), - [sym_primary_type] = STATE(3251), - [sym_template_literal_type] = STATE(3252), - [sym_infer_type] = STATE(3250), - [sym_conditional_type] = STATE(3252), - [sym_generic_type] = STATE(3252), - [sym_type_predicate] = STATE(3853), - [sym_type_query] = STATE(3252), - [sym_index_type_query] = STATE(3252), - [sym_lookup_type] = STATE(3252), - [sym_literal_type] = STATE(3252), - [sym__number] = STATE(3253), - [sym_existential_type] = STATE(3252), - [sym_flow_maybe_type] = STATE(3252), - [sym_parenthesized_type] = STATE(3252), - [sym_predefined_type] = STATE(3162), - [sym_object_type] = STATE(3252), - [sym_type_parameters] = STATE(5159), - [sym_array_type] = STATE(3252), - [sym_tuple_type] = STATE(3252), - [sym_readonly_type] = STATE(3250), - [sym_union_type] = STATE(3252), - [sym_intersection_type] = STATE(3252), - [sym_function_type] = STATE(3250), - [sym_identifier] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_new] = ACTIONS(1635), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [anon_sym_DQUOTE] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(3204), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_asserts] = ACTIONS(3206), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_identifier] = ACTIONS(3193), + [anon_sym_export] = ACTIONS(3193), + [anon_sym_type] = ACTIONS(3193), + [anon_sym_namespace] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(3195), + [anon_sym_typeof] = ACTIONS(3193), + [anon_sym_import] = ACTIONS(3193), + [anon_sym_with] = ACTIONS(3193), + [anon_sym_var] = ACTIONS(3193), + [anon_sym_let] = ACTIONS(3193), + [anon_sym_const] = ACTIONS(3193), + [anon_sym_BANG] = ACTIONS(3195), + [anon_sym_if] = ACTIONS(3193), + [anon_sym_switch] = ACTIONS(3193), + [anon_sym_for] = ACTIONS(3193), + [anon_sym_LPAREN] = ACTIONS(3195), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_await] = ACTIONS(3193), + [anon_sym_while] = ACTIONS(3193), + [anon_sym_do] = ACTIONS(3193), + [anon_sym_try] = ACTIONS(3193), + [anon_sym_break] = ACTIONS(3193), + [anon_sym_continue] = ACTIONS(3193), + [anon_sym_debugger] = ACTIONS(3193), + [anon_sym_return] = ACTIONS(3193), + [anon_sym_throw] = ACTIONS(3193), + [anon_sym_yield] = ACTIONS(3193), + [anon_sym_LBRACK] = ACTIONS(3195), + [anon_sym_class] = ACTIONS(3193), + [anon_sym_async] = ACTIONS(3193), + [anon_sym_function] = ACTIONS(3193), + [anon_sym_new] = ACTIONS(3193), + [anon_sym_using] = ACTIONS(3193), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(3193), + [anon_sym_LT] = ACTIONS(3195), + [anon_sym_TILDE] = ACTIONS(3195), + [anon_sym_void] = ACTIONS(3193), + [anon_sym_delete] = ACTIONS(3193), + [anon_sym_PLUS_PLUS] = ACTIONS(3195), + [anon_sym_DASH_DASH] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(3195), + [anon_sym_SQUOTE] = ACTIONS(3195), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3195), + [sym_number] = ACTIONS(3195), + [sym_private_property_identifier] = ACTIONS(3195), + [sym_this] = ACTIONS(3193), + [sym_super] = ACTIONS(3193), + [sym_true] = ACTIONS(3193), + [sym_false] = ACTIONS(3193), + [sym_null] = ACTIONS(3193), + [sym_undefined] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(3195), + [anon_sym_static] = ACTIONS(3193), + [anon_sym_readonly] = ACTIONS(3193), + [anon_sym_get] = ACTIONS(3193), + [anon_sym_set] = ACTIONS(3193), + [anon_sym_declare] = ACTIONS(3193), + [anon_sym_public] = ACTIONS(3193), + [anon_sym_private] = ACTIONS(3193), + [anon_sym_protected] = ACTIONS(3193), + [anon_sym_override] = ACTIONS(3193), + [anon_sym_module] = ACTIONS(3193), + [anon_sym_any] = ACTIONS(3193), + [anon_sym_number] = ACTIONS(3193), + [anon_sym_boolean] = ACTIONS(3193), + [anon_sym_string] = ACTIONS(3193), + [anon_sym_symbol] = ACTIONS(3193), + [anon_sym_object] = ACTIONS(3193), + [anon_sym_abstract] = ACTIONS(3193), + [anon_sym_interface] = ACTIONS(3193), + [anon_sym_enum] = ACTIONS(3193), [sym_html_comment] = ACTIONS(5), }, [973] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_asserts] = STATE(5292), - [sym_type] = STATE(3415), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_predicate] = STATE(5398), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(3069), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(3066), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_asserts] = ACTIONS(3068), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_asserts] = STATE(3018), + [sym_type] = STATE(3146), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_predicate] = STATE(3018), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3056), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(3135), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_asserts] = ACTIONS(3137), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [974] = { - [sym_import] = STATE(4801), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5705), - [sym_nested_type_identifier] = STATE(3495), - [sym__type_query_member_expression_in_type_annotation] = STATE(3462), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_asserts] = STATE(2954), - [sym_type] = STATE(3777), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_predicate] = STATE(2954), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(3646), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5376), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(3070), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_typeof] = ACTIONS(3074), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(3076), - [anon_sym_AMP] = ACTIONS(3078), - [anon_sym_PIPE] = ACTIONS(3080), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(2344), - [anon_sym_SQUOTE] = ACTIONS(2346), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(3082), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(3084), - [anon_sym_QMARK] = ACTIONS(3086), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(3088), - [anon_sym_asserts] = ACTIONS(3090), - [anon_sym_infer] = ACTIONS(3092), - [anon_sym_keyof] = ACTIONS(3094), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3096), + [sym_import] = STATE(4808), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5569), + [sym_nested_type_identifier] = STATE(3487), + [sym__type_query_member_expression_in_type_annotation] = STATE(3388), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_asserts] = STATE(3023), + [sym_type] = STATE(3857), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_predicate] = STATE(3023), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3697), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5361), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_typeof] = ACTIONS(3101), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_PIPE] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3109), + [anon_sym_SQUOTE] = ACTIONS(3111), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(3113), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3117), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(3119), + [anon_sym_asserts] = ACTIONS(3121), + [anon_sym_infer] = ACTIONS(3123), + [anon_sym_keyof] = ACTIONS(3125), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(3127), [sym_html_comment] = ACTIONS(5), }, [975] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5574), - [sym_string] = STATE(3242), - [sym_formal_parameters] = STATE(5809), - [sym_nested_type_identifier] = STATE(3153), - [sym__type_query_member_expression_in_type_annotation] = STATE(3081), - [sym__type_query_call_expression_in_type_annotation] = STATE(3197), - [sym_asserts] = STATE(3283), - [sym_type] = STATE(3289), - [sym_constructor_type] = STATE(3250), - [sym_primary_type] = STATE(3251), - [sym_template_literal_type] = STATE(3252), - [sym_infer_type] = STATE(3250), - [sym_conditional_type] = STATE(3252), - [sym_generic_type] = STATE(3252), - [sym_type_predicate] = STATE(3283), - [sym_type_query] = STATE(3252), - [sym_index_type_query] = STATE(3252), - [sym_lookup_type] = STATE(3252), - [sym_literal_type] = STATE(3252), - [sym__number] = STATE(3253), - [sym_existential_type] = STATE(3252), - [sym_flow_maybe_type] = STATE(3252), - [sym_parenthesized_type] = STATE(3252), - [sym_predefined_type] = STATE(3162), - [sym_object_type] = STATE(3252), - [sym_type_parameters] = STATE(5159), - [sym_array_type] = STATE(3252), - [sym_tuple_type] = STATE(3252), - [sym_readonly_type] = STATE(3250), - [sym_union_type] = STATE(3252), - [sym_intersection_type] = STATE(3252), - [sym_function_type] = STATE(3250), - [sym_identifier] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_new] = ACTIONS(1635), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [anon_sym_DQUOTE] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(3204), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_asserts] = ACTIONS(3206), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_identifier] = ACTIONS(3197), + [anon_sym_export] = ACTIONS(3197), + [anon_sym_type] = ACTIONS(3197), + [anon_sym_namespace] = ACTIONS(3197), + [anon_sym_LBRACE] = ACTIONS(3199), + [anon_sym_typeof] = ACTIONS(3197), + [anon_sym_import] = ACTIONS(3197), + [anon_sym_with] = ACTIONS(3197), + [anon_sym_var] = ACTIONS(3197), + [anon_sym_let] = ACTIONS(3197), + [anon_sym_const] = ACTIONS(3197), + [anon_sym_BANG] = ACTIONS(3199), + [anon_sym_if] = ACTIONS(3197), + [anon_sym_switch] = ACTIONS(3197), + [anon_sym_for] = ACTIONS(3197), + [anon_sym_LPAREN] = ACTIONS(3199), + [anon_sym_SEMI] = ACTIONS(3199), + [anon_sym_await] = ACTIONS(3197), + [anon_sym_while] = ACTIONS(3197), + [anon_sym_do] = ACTIONS(3197), + [anon_sym_try] = ACTIONS(3197), + [anon_sym_break] = ACTIONS(3197), + [anon_sym_continue] = ACTIONS(3197), + [anon_sym_debugger] = ACTIONS(3197), + [anon_sym_return] = ACTIONS(3197), + [anon_sym_throw] = ACTIONS(3197), + [anon_sym_yield] = ACTIONS(3197), + [anon_sym_LBRACK] = ACTIONS(3199), + [anon_sym_class] = ACTIONS(3197), + [anon_sym_async] = ACTIONS(3197), + [anon_sym_function] = ACTIONS(3197), + [anon_sym_new] = ACTIONS(3197), + [anon_sym_using] = ACTIONS(3197), + [anon_sym_PLUS] = ACTIONS(3197), + [anon_sym_DASH] = ACTIONS(3197), + [anon_sym_SLASH] = ACTIONS(3197), + [anon_sym_LT] = ACTIONS(3199), + [anon_sym_TILDE] = ACTIONS(3199), + [anon_sym_void] = ACTIONS(3197), + [anon_sym_delete] = ACTIONS(3197), + [anon_sym_PLUS_PLUS] = ACTIONS(3199), + [anon_sym_DASH_DASH] = ACTIONS(3199), + [anon_sym_DQUOTE] = ACTIONS(3199), + [anon_sym_SQUOTE] = ACTIONS(3199), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3199), + [sym_number] = ACTIONS(3199), + [sym_private_property_identifier] = ACTIONS(3199), + [sym_this] = ACTIONS(3197), + [sym_super] = ACTIONS(3197), + [sym_true] = ACTIONS(3197), + [sym_false] = ACTIONS(3197), + [sym_null] = ACTIONS(3197), + [sym_undefined] = ACTIONS(3197), + [anon_sym_AT] = ACTIONS(3199), + [anon_sym_static] = ACTIONS(3197), + [anon_sym_readonly] = ACTIONS(3197), + [anon_sym_get] = ACTIONS(3197), + [anon_sym_set] = ACTIONS(3197), + [anon_sym_declare] = ACTIONS(3197), + [anon_sym_public] = ACTIONS(3197), + [anon_sym_private] = ACTIONS(3197), + [anon_sym_protected] = ACTIONS(3197), + [anon_sym_override] = ACTIONS(3197), + [anon_sym_module] = ACTIONS(3197), + [anon_sym_any] = ACTIONS(3197), + [anon_sym_number] = ACTIONS(3197), + [anon_sym_boolean] = ACTIONS(3197), + [anon_sym_string] = ACTIONS(3197), + [anon_sym_symbol] = ACTIONS(3197), + [anon_sym_object] = ACTIONS(3197), + [anon_sym_abstract] = ACTIONS(3197), + [anon_sym_interface] = ACTIONS(3197), + [anon_sym_enum] = ACTIONS(3197), [sym_html_comment] = ACTIONS(5), }, [976] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5574), - [sym_string] = STATE(3242), - [sym_formal_parameters] = STATE(5809), - [sym_nested_type_identifier] = STATE(3153), - [sym__type_query_member_expression_in_type_annotation] = STATE(3081), - [sym__type_query_call_expression_in_type_annotation] = STATE(3197), - [sym_asserts] = STATE(3246), - [sym_type] = STATE(3274), - [sym_constructor_type] = STATE(3250), - [sym_primary_type] = STATE(3251), - [sym_template_literal_type] = STATE(3252), - [sym_infer_type] = STATE(3250), - [sym_conditional_type] = STATE(3252), - [sym_generic_type] = STATE(3252), - [sym_type_predicate] = STATE(3246), - [sym_type_query] = STATE(3252), - [sym_index_type_query] = STATE(3252), - [sym_lookup_type] = STATE(3252), - [sym_literal_type] = STATE(3252), - [sym__number] = STATE(3253), - [sym_existential_type] = STATE(3252), - [sym_flow_maybe_type] = STATE(3252), - [sym_parenthesized_type] = STATE(3252), - [sym_predefined_type] = STATE(3162), - [sym_object_type] = STATE(3252), - [sym_type_parameters] = STATE(5159), - [sym_array_type] = STATE(3252), - [sym_tuple_type] = STATE(3252), - [sym_readonly_type] = STATE(3250), - [sym_union_type] = STATE(3252), - [sym_intersection_type] = STATE(3252), - [sym_function_type] = STATE(3250), - [sym_identifier] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_new] = ACTIONS(1635), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [anon_sym_DQUOTE] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(3204), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_asserts] = ACTIONS(3206), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_import] = STATE(4578), + [sym_nested_identifier] = STATE(5796), + [sym_string] = STATE(3437), + [sym_formal_parameters] = STATE(5519), + [sym_nested_type_identifier] = STATE(3278), + [sym__type_query_member_expression_in_type_annotation] = STATE(3181), + [sym__type_query_call_expression_in_type_annotation] = STATE(3311), + [sym_asserts] = STATE(3355), + [sym_type] = STATE(3356), + [sym_constructor_type] = STATE(3448), + [sym_primary_type] = STATE(3450), + [sym_template_literal_type] = STATE(3453), + [sym_infer_type] = STATE(3448), + [sym_conditional_type] = STATE(3453), + [sym_generic_type] = STATE(3453), + [sym_type_predicate] = STATE(3355), + [sym_type_query] = STATE(3453), + [sym_index_type_query] = STATE(3453), + [sym_lookup_type] = STATE(3453), + [sym_literal_type] = STATE(3453), + [sym__number] = STATE(3454), + [sym_existential_type] = STATE(3453), + [sym_flow_maybe_type] = STATE(3453), + [sym_parenthesized_type] = STATE(3453), + [sym_predefined_type] = STATE(3305), + [sym_object_type] = STATE(3453), + [sym_type_parameters] = STATE(5251), + [sym_array_type] = STATE(3453), + [sym_tuple_type] = STATE(3453), + [sym_readonly_type] = STATE(3448), + [sym_union_type] = STATE(3453), + [sym_intersection_type] = STATE(3453), + [sym_function_type] = STATE(3448), + [sym_identifier] = ACTIONS(2993), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_typeof] = ACTIONS(2999), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3003), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_new] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_PIPE] = ACTIONS(3011), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3015), + [anon_sym_DQUOTE] = ACTIONS(3017), + [anon_sym_SQUOTE] = ACTIONS(3019), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3021), + [sym_number] = ACTIONS(3023), + [sym_this] = ACTIONS(3025), + [sym_true] = ACTIONS(3027), + [sym_false] = ACTIONS(3027), + [sym_null] = ACTIONS(3027), + [sym_undefined] = ACTIONS(3027), + [anon_sym_readonly] = ACTIONS(3029), + [anon_sym_QMARK] = ACTIONS(3031), + [anon_sym_any] = ACTIONS(3015), + [anon_sym_number] = ACTIONS(3015), + [anon_sym_boolean] = ACTIONS(3015), + [anon_sym_string] = ACTIONS(3015), + [anon_sym_symbol] = ACTIONS(3015), + [anon_sym_object] = ACTIONS(3015), + [anon_sym_abstract] = ACTIONS(3033), + [anon_sym_asserts] = ACTIONS(3035), + [anon_sym_infer] = ACTIONS(3037), + [anon_sym_keyof] = ACTIONS(3039), + [anon_sym_unique] = ACTIONS(3041), + [anon_sym_unknown] = ACTIONS(3015), + [anon_sym_never] = ACTIONS(3015), + [anon_sym_LBRACE_PIPE] = ACTIONS(3043), [sym_html_comment] = ACTIONS(5), }, [977] = { - [sym_identifier] = ACTIONS(3208), - [anon_sym_export] = ACTIONS(3208), - [anon_sym_type] = ACTIONS(3208), - [anon_sym_EQ] = ACTIONS(3208), - [anon_sym_namespace] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_COMMA] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3210), - [anon_sym_typeof] = ACTIONS(3208), - [anon_sym_import] = ACTIONS(3208), - [anon_sym_let] = ACTIONS(3208), - [anon_sym_BANG] = ACTIONS(3210), - [anon_sym_LPAREN] = ACTIONS(3210), - [anon_sym_RPAREN] = ACTIONS(3210), - [anon_sym_await] = ACTIONS(3208), - [anon_sym_COLON] = ACTIONS(3210), - [anon_sym_yield] = ACTIONS(3208), - [anon_sym_LBRACK] = ACTIONS(3210), - [anon_sym_RBRACK] = ACTIONS(3210), - [sym_glimmer_opening_tag] = ACTIONS(3210), - [anon_sym_DOT] = ACTIONS(3208), - [anon_sym_class] = ACTIONS(3208), - [anon_sym_async] = ACTIONS(3208), - [anon_sym_function] = ACTIONS(3208), - [anon_sym_EQ_GT] = ACTIONS(3210), - [anon_sym_QMARK_DOT] = ACTIONS(3210), - [anon_sym_new] = ACTIONS(3208), - [anon_sym_using] = ACTIONS(3208), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3210), - [anon_sym_AMP] = ACTIONS(3210), - [anon_sym_PIPE] = ACTIONS(3210), - [anon_sym_PLUS] = ACTIONS(3208), - [anon_sym_DASH] = ACTIONS(3208), - [anon_sym_SLASH] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(3208), - [anon_sym_GT] = ACTIONS(3210), - [anon_sym_TILDE] = ACTIONS(3210), - [anon_sym_void] = ACTIONS(3208), - [anon_sym_delete] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3210), - [anon_sym_DASH_DASH] = ACTIONS(3210), - [anon_sym_DQUOTE] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3210), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3210), - [sym_number] = ACTIONS(3210), - [sym_private_property_identifier] = ACTIONS(3210), - [sym_this] = ACTIONS(3208), - [sym_super] = ACTIONS(3208), - [sym_true] = ACTIONS(3208), - [sym_false] = ACTIONS(3208), - [sym_null] = ACTIONS(3208), - [sym_undefined] = ACTIONS(3208), - [anon_sym_AT] = ACTIONS(3210), - [anon_sym_static] = ACTIONS(3208), - [anon_sym_readonly] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3208), - [anon_sym_set] = ACTIONS(3208), - [anon_sym_QMARK] = ACTIONS(3208), - [anon_sym_declare] = ACTIONS(3208), - [anon_sym_public] = ACTIONS(3208), - [anon_sym_private] = ACTIONS(3208), - [anon_sym_protected] = ACTIONS(3208), - [anon_sym_override] = ACTIONS(3208), - [anon_sym_module] = ACTIONS(3208), - [anon_sym_any] = ACTIONS(3208), - [anon_sym_number] = ACTIONS(3208), - [anon_sym_boolean] = ACTIONS(3208), - [anon_sym_string] = ACTIONS(3208), - [anon_sym_symbol] = ACTIONS(3208), - [anon_sym_object] = ACTIONS(3208), - [anon_sym_abstract] = ACTIONS(3208), - [anon_sym_extends] = ACTIONS(3208), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3758), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_GT] = ACTIONS(3201), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [978] = { - [sym_identifier] = ACTIONS(3212), - [anon_sym_export] = ACTIONS(3212), - [anon_sym_type] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3212), - [anon_sym_namespace] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3214), - [anon_sym_COMMA] = ACTIONS(3214), - [anon_sym_RBRACE] = ACTIONS(3214), - [anon_sym_typeof] = ACTIONS(3212), - [anon_sym_import] = ACTIONS(3212), - [anon_sym_let] = ACTIONS(3212), - [anon_sym_BANG] = ACTIONS(3214), - [anon_sym_LPAREN] = ACTIONS(3214), - [anon_sym_RPAREN] = ACTIONS(3214), - [anon_sym_await] = ACTIONS(3212), - [anon_sym_COLON] = ACTIONS(3214), - [anon_sym_yield] = ACTIONS(3212), - [anon_sym_LBRACK] = ACTIONS(3214), - [anon_sym_RBRACK] = ACTIONS(3214), - [sym_glimmer_opening_tag] = ACTIONS(3214), - [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_class] = ACTIONS(3212), - [anon_sym_async] = ACTIONS(3212), - [anon_sym_function] = ACTIONS(3212), - [anon_sym_EQ_GT] = ACTIONS(3214), - [anon_sym_QMARK_DOT] = ACTIONS(3214), - [anon_sym_new] = ACTIONS(3212), - [anon_sym_using] = ACTIONS(3212), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3214), - [anon_sym_AMP] = ACTIONS(3214), - [anon_sym_PIPE] = ACTIONS(3214), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_GT] = ACTIONS(3214), - [anon_sym_TILDE] = ACTIONS(3214), - [anon_sym_void] = ACTIONS(3212), - [anon_sym_delete] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3214), - [anon_sym_DASH_DASH] = ACTIONS(3214), - [anon_sym_DQUOTE] = ACTIONS(3214), - [anon_sym_SQUOTE] = ACTIONS(3214), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3214), - [sym_number] = ACTIONS(3214), - [sym_private_property_identifier] = ACTIONS(3214), - [sym_this] = ACTIONS(3212), - [sym_super] = ACTIONS(3212), - [sym_true] = ACTIONS(3212), - [sym_false] = ACTIONS(3212), - [sym_null] = ACTIONS(3212), - [sym_undefined] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3214), - [anon_sym_static] = ACTIONS(3212), - [anon_sym_readonly] = ACTIONS(3212), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_QMARK] = ACTIONS(3212), - [anon_sym_declare] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_override] = ACTIONS(3212), - [anon_sym_module] = ACTIONS(3212), - [anon_sym_any] = ACTIONS(3212), - [anon_sym_number] = ACTIONS(3212), - [anon_sym_boolean] = ACTIONS(3212), - [anon_sym_string] = ACTIONS(3212), - [anon_sym_symbol] = ACTIONS(3212), - [anon_sym_object] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_extends] = ACTIONS(3212), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3758), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_GT] = ACTIONS(3203), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [979] = { - [sym_identifier] = ACTIONS(3216), - [anon_sym_export] = ACTIONS(3216), - [anon_sym_type] = ACTIONS(3216), - [anon_sym_EQ] = ACTIONS(3216), - [anon_sym_namespace] = ACTIONS(3216), - [anon_sym_LBRACE] = ACTIONS(3218), - [anon_sym_COMMA] = ACTIONS(3218), - [anon_sym_RBRACE] = ACTIONS(3218), - [anon_sym_typeof] = ACTIONS(3216), - [anon_sym_import] = ACTIONS(3216), - [anon_sym_let] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3218), - [anon_sym_LPAREN] = ACTIONS(3218), - [anon_sym_RPAREN] = ACTIONS(3218), - [anon_sym_await] = ACTIONS(3216), - [anon_sym_COLON] = ACTIONS(3218), - [anon_sym_yield] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3218), - [anon_sym_RBRACK] = ACTIONS(3218), - [sym_glimmer_opening_tag] = ACTIONS(3218), - [anon_sym_DOT] = ACTIONS(3216), - [anon_sym_class] = ACTIONS(3216), - [anon_sym_async] = ACTIONS(3216), - [anon_sym_function] = ACTIONS(3216), - [anon_sym_EQ_GT] = ACTIONS(3218), - [anon_sym_QMARK_DOT] = ACTIONS(3218), - [anon_sym_new] = ACTIONS(3216), - [anon_sym_using] = ACTIONS(3216), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3218), - [anon_sym_AMP] = ACTIONS(3218), - [anon_sym_PIPE] = ACTIONS(3218), - [anon_sym_PLUS] = ACTIONS(3216), - [anon_sym_DASH] = ACTIONS(3216), - [anon_sym_SLASH] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3216), - [anon_sym_GT] = ACTIONS(3218), - [anon_sym_TILDE] = ACTIONS(3218), - [anon_sym_void] = ACTIONS(3216), - [anon_sym_delete] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3218), - [anon_sym_DASH_DASH] = ACTIONS(3218), - [anon_sym_DQUOTE] = ACTIONS(3218), - [anon_sym_SQUOTE] = ACTIONS(3218), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3218), - [sym_number] = ACTIONS(3218), - [sym_private_property_identifier] = ACTIONS(3218), - [sym_this] = ACTIONS(3216), - [sym_super] = ACTIONS(3216), - [sym_true] = ACTIONS(3216), - [sym_false] = ACTIONS(3216), - [sym_null] = ACTIONS(3216), - [sym_undefined] = ACTIONS(3216), - [anon_sym_AT] = ACTIONS(3218), - [anon_sym_static] = ACTIONS(3216), - [anon_sym_readonly] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3216), - [anon_sym_set] = ACTIONS(3216), - [anon_sym_QMARK] = ACTIONS(3216), - [anon_sym_declare] = ACTIONS(3216), - [anon_sym_public] = ACTIONS(3216), - [anon_sym_private] = ACTIONS(3216), - [anon_sym_protected] = ACTIONS(3216), - [anon_sym_override] = ACTIONS(3216), - [anon_sym_module] = ACTIONS(3216), - [anon_sym_any] = ACTIONS(3216), - [anon_sym_number] = ACTIONS(3216), - [anon_sym_boolean] = ACTIONS(3216), - [anon_sym_string] = ACTIONS(3216), - [anon_sym_symbol] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3216), - [anon_sym_abstract] = ACTIONS(3216), - [anon_sym_extends] = ACTIONS(3216), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4432), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(3205), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [980] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3849), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_GT] = ACTIONS(3220), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3758), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_GT] = ACTIONS(3207), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [981] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3849), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_GT] = ACTIONS(3222), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3775), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_type_parameter] = STATE(4908), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3209), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [982] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3849), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_GT] = ACTIONS(3224), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3758), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_GT] = ACTIONS(3213), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [983] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3849), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_GT] = ACTIONS(3226), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3758), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_GT] = ACTIONS(3215), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [984] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(4435), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_RBRACK] = ACTIONS(3228), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4409), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(3217), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [985] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(4399), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_RBRACK] = ACTIONS(3230), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3758), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_GT] = ACTIONS(3219), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [986] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3872), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_type_parameter] = STATE(4972), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(3232), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3234), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4486), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(3221), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [987] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3849), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_GT] = ACTIONS(3236), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3758), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_GT] = ACTIONS(3223), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [988] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3849), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_identifier] = ACTIONS(3225), + [anon_sym_export] = ACTIONS(3225), + [anon_sym_type] = ACTIONS(3225), + [anon_sym_EQ] = ACTIONS(3225), + [anon_sym_namespace] = ACTIONS(3225), + [anon_sym_LBRACE] = ACTIONS(3227), + [anon_sym_COMMA] = ACTIONS(3227), + [anon_sym_RBRACE] = ACTIONS(3227), + [anon_sym_typeof] = ACTIONS(3225), + [anon_sym_import] = ACTIONS(3225), + [anon_sym_let] = ACTIONS(3225), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_LPAREN] = ACTIONS(3227), + [anon_sym_RPAREN] = ACTIONS(3227), + [anon_sym_await] = ACTIONS(3225), + [anon_sym_COLON] = ACTIONS(3227), + [anon_sym_yield] = ACTIONS(3225), + [anon_sym_LBRACK] = ACTIONS(3227), + [anon_sym_RBRACK] = ACTIONS(3227), + [anon_sym_DOT] = ACTIONS(3225), + [anon_sym_class] = ACTIONS(3225), + [anon_sym_async] = ACTIONS(3225), + [anon_sym_function] = ACTIONS(3225), + [anon_sym_EQ_GT] = ACTIONS(3227), + [anon_sym_QMARK_DOT] = ACTIONS(3227), + [anon_sym_new] = ACTIONS(3225), + [anon_sym_using] = ACTIONS(3225), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3227), + [anon_sym_AMP] = ACTIONS(3227), + [anon_sym_PIPE] = ACTIONS(3227), + [anon_sym_PLUS] = ACTIONS(3225), + [anon_sym_DASH] = ACTIONS(3225), + [anon_sym_SLASH] = ACTIONS(3225), + [anon_sym_LT] = ACTIONS(3227), + [anon_sym_GT] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(3227), + [anon_sym_void] = ACTIONS(3225), + [anon_sym_delete] = ACTIONS(3225), + [anon_sym_PLUS_PLUS] = ACTIONS(3227), + [anon_sym_DASH_DASH] = ACTIONS(3227), + [anon_sym_DQUOTE] = ACTIONS(3227), + [anon_sym_SQUOTE] = ACTIONS(3227), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3227), + [sym_number] = ACTIONS(3227), + [sym_private_property_identifier] = ACTIONS(3227), + [sym_this] = ACTIONS(3225), + [sym_super] = ACTIONS(3225), + [sym_true] = ACTIONS(3225), + [sym_false] = ACTIONS(3225), + [sym_null] = ACTIONS(3225), + [sym_undefined] = ACTIONS(3225), + [anon_sym_AT] = ACTIONS(3227), + [anon_sym_static] = ACTIONS(3225), + [anon_sym_readonly] = ACTIONS(3225), + [anon_sym_get] = ACTIONS(3225), + [anon_sym_set] = ACTIONS(3225), + [anon_sym_QMARK] = ACTIONS(3225), + [anon_sym_declare] = ACTIONS(3225), + [anon_sym_public] = ACTIONS(3225), + [anon_sym_private] = ACTIONS(3225), + [anon_sym_protected] = ACTIONS(3225), + [anon_sym_override] = ACTIONS(3225), + [anon_sym_module] = ACTIONS(3225), + [anon_sym_any] = ACTIONS(3225), + [anon_sym_number] = ACTIONS(3225), + [anon_sym_boolean] = ACTIONS(3225), + [anon_sym_string] = ACTIONS(3225), + [anon_sym_symbol] = ACTIONS(3225), + [anon_sym_object] = ACTIONS(3225), + [anon_sym_abstract] = ACTIONS(3225), + [anon_sym_extends] = ACTIONS(3225), [sym_html_comment] = ACTIONS(5), }, [989] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(4430), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_RBRACK] = ACTIONS(3240), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3758), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_GT] = ACTIONS(3229), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [990] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3849), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_GT] = ACTIONS(3242), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3758), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_GT] = ACTIONS(3231), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [991] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3849), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_GT] = ACTIONS(3244), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_identifier] = ACTIONS(3233), + [anon_sym_export] = ACTIONS(3233), + [anon_sym_type] = ACTIONS(3233), + [anon_sym_EQ] = ACTIONS(3233), + [anon_sym_namespace] = ACTIONS(3233), + [anon_sym_LBRACE] = ACTIONS(3235), + [anon_sym_COMMA] = ACTIONS(3235), + [anon_sym_RBRACE] = ACTIONS(3235), + [anon_sym_typeof] = ACTIONS(3233), + [anon_sym_import] = ACTIONS(3233), + [anon_sym_let] = ACTIONS(3233), + [anon_sym_BANG] = ACTIONS(3235), + [anon_sym_LPAREN] = ACTIONS(3235), + [anon_sym_RPAREN] = ACTIONS(3235), + [anon_sym_await] = ACTIONS(3233), + [anon_sym_COLON] = ACTIONS(3235), + [anon_sym_yield] = ACTIONS(3233), + [anon_sym_LBRACK] = ACTIONS(3235), + [anon_sym_RBRACK] = ACTIONS(3235), + [anon_sym_DOT] = ACTIONS(3233), + [anon_sym_class] = ACTIONS(3233), + [anon_sym_async] = ACTIONS(3233), + [anon_sym_function] = ACTIONS(3233), + [anon_sym_EQ_GT] = ACTIONS(3235), + [anon_sym_QMARK_DOT] = ACTIONS(3235), + [anon_sym_new] = ACTIONS(3233), + [anon_sym_using] = ACTIONS(3233), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3235), + [anon_sym_AMP] = ACTIONS(3235), + [anon_sym_PIPE] = ACTIONS(3235), + [anon_sym_PLUS] = ACTIONS(3233), + [anon_sym_DASH] = ACTIONS(3233), + [anon_sym_SLASH] = ACTIONS(3233), + [anon_sym_LT] = ACTIONS(3235), + [anon_sym_GT] = ACTIONS(3235), + [anon_sym_TILDE] = ACTIONS(3235), + [anon_sym_void] = ACTIONS(3233), + [anon_sym_delete] = ACTIONS(3233), + [anon_sym_PLUS_PLUS] = ACTIONS(3235), + [anon_sym_DASH_DASH] = ACTIONS(3235), + [anon_sym_DQUOTE] = ACTIONS(3235), + [anon_sym_SQUOTE] = ACTIONS(3235), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3235), + [sym_number] = ACTIONS(3235), + [sym_private_property_identifier] = ACTIONS(3235), + [sym_this] = ACTIONS(3233), + [sym_super] = ACTIONS(3233), + [sym_true] = ACTIONS(3233), + [sym_false] = ACTIONS(3233), + [sym_null] = ACTIONS(3233), + [sym_undefined] = ACTIONS(3233), + [anon_sym_AT] = ACTIONS(3235), + [anon_sym_static] = ACTIONS(3233), + [anon_sym_readonly] = ACTIONS(3233), + [anon_sym_get] = ACTIONS(3233), + [anon_sym_set] = ACTIONS(3233), + [anon_sym_QMARK] = ACTIONS(3233), + [anon_sym_declare] = ACTIONS(3233), + [anon_sym_public] = ACTIONS(3233), + [anon_sym_private] = ACTIONS(3233), + [anon_sym_protected] = ACTIONS(3233), + [anon_sym_override] = ACTIONS(3233), + [anon_sym_module] = ACTIONS(3233), + [anon_sym_any] = ACTIONS(3233), + [anon_sym_number] = ACTIONS(3233), + [anon_sym_boolean] = ACTIONS(3233), + [anon_sym_string] = ACTIONS(3233), + [anon_sym_symbol] = ACTIONS(3233), + [anon_sym_object] = ACTIONS(3233), + [anon_sym_abstract] = ACTIONS(3233), + [anon_sym_extends] = ACTIONS(3233), [sym_html_comment] = ACTIONS(5), }, [992] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3849), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_GT] = ACTIONS(3246), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_identifier] = ACTIONS(3237), + [anon_sym_export] = ACTIONS(3237), + [anon_sym_type] = ACTIONS(3237), + [anon_sym_EQ] = ACTIONS(3237), + [anon_sym_namespace] = ACTIONS(3237), + [anon_sym_LBRACE] = ACTIONS(3239), + [anon_sym_COMMA] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(3239), + [anon_sym_typeof] = ACTIONS(3237), + [anon_sym_import] = ACTIONS(3237), + [anon_sym_let] = ACTIONS(3237), + [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_LPAREN] = ACTIONS(3239), + [anon_sym_RPAREN] = ACTIONS(3239), + [anon_sym_await] = ACTIONS(3237), + [anon_sym_COLON] = ACTIONS(3239), + [anon_sym_yield] = ACTIONS(3237), + [anon_sym_LBRACK] = ACTIONS(3239), + [anon_sym_RBRACK] = ACTIONS(3239), + [anon_sym_DOT] = ACTIONS(3237), + [anon_sym_class] = ACTIONS(3237), + [anon_sym_async] = ACTIONS(3237), + [anon_sym_function] = ACTIONS(3237), + [anon_sym_EQ_GT] = ACTIONS(3239), + [anon_sym_QMARK_DOT] = ACTIONS(3239), + [anon_sym_new] = ACTIONS(3237), + [anon_sym_using] = ACTIONS(3237), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3239), + [anon_sym_AMP] = ACTIONS(3239), + [anon_sym_PIPE] = ACTIONS(3239), + [anon_sym_PLUS] = ACTIONS(3237), + [anon_sym_DASH] = ACTIONS(3237), + [anon_sym_SLASH] = ACTIONS(3237), + [anon_sym_LT] = ACTIONS(3239), + [anon_sym_GT] = ACTIONS(3239), + [anon_sym_TILDE] = ACTIONS(3239), + [anon_sym_void] = ACTIONS(3237), + [anon_sym_delete] = ACTIONS(3237), + [anon_sym_PLUS_PLUS] = ACTIONS(3239), + [anon_sym_DASH_DASH] = ACTIONS(3239), + [anon_sym_DQUOTE] = ACTIONS(3239), + [anon_sym_SQUOTE] = ACTIONS(3239), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3239), + [sym_number] = ACTIONS(3239), + [sym_private_property_identifier] = ACTIONS(3239), + [sym_this] = ACTIONS(3237), + [sym_super] = ACTIONS(3237), + [sym_true] = ACTIONS(3237), + [sym_false] = ACTIONS(3237), + [sym_null] = ACTIONS(3237), + [sym_undefined] = ACTIONS(3237), + [anon_sym_AT] = ACTIONS(3239), + [anon_sym_static] = ACTIONS(3237), + [anon_sym_readonly] = ACTIONS(3237), + [anon_sym_get] = ACTIONS(3237), + [anon_sym_set] = ACTIONS(3237), + [anon_sym_QMARK] = ACTIONS(3237), + [anon_sym_declare] = ACTIONS(3237), + [anon_sym_public] = ACTIONS(3237), + [anon_sym_private] = ACTIONS(3237), + [anon_sym_protected] = ACTIONS(3237), + [anon_sym_override] = ACTIONS(3237), + [anon_sym_module] = ACTIONS(3237), + [anon_sym_any] = ACTIONS(3237), + [anon_sym_number] = ACTIONS(3237), + [anon_sym_boolean] = ACTIONS(3237), + [anon_sym_string] = ACTIONS(3237), + [anon_sym_symbol] = ACTIONS(3237), + [anon_sym_object] = ACTIONS(3237), + [anon_sym_abstract] = ACTIONS(3237), + [anon_sym_extends] = ACTIONS(3237), [sym_html_comment] = ACTIONS(5), }, [993] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3849), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_GT] = ACTIONS(3248), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3758), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_GT] = ACTIONS(3241), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [994] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(4482), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_RBRACK] = ACTIONS(3250), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4435), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(3243), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [995] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3849), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_GT] = ACTIONS(3252), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3758), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_GT] = ACTIONS(3245), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [996] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3849), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_GT] = ACTIONS(3254), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3758), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_GT] = ACTIONS(3247), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [997] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(4473), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_RBRACK] = ACTIONS(3256), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4461), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(3249), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [998] = { - [sym_import] = STATE(4535), - [sym_nested_identifier] = STATE(5487), - [sym_string] = STATE(1620), - [sym_formal_parameters] = STATE(5661), - [sym_nested_type_identifier] = STATE(1526), - [sym__type_query_member_expression_in_type_annotation] = STATE(1527), - [sym__type_query_call_expression_in_type_annotation] = STATE(1573), - [sym_type] = STATE(1641), - [sym_constructor_type] = STATE(1599), - [sym_primary_type] = STATE(1597), - [sym_template_literal_type] = STATE(1601), - [sym_infer_type] = STATE(1599), - [sym_conditional_type] = STATE(1601), - [sym_generic_type] = STATE(1601), - [sym_type_query] = STATE(1601), - [sym_index_type_query] = STATE(1601), - [sym_lookup_type] = STATE(1601), - [sym_literal_type] = STATE(1601), - [sym__number] = STATE(1628), - [sym_existential_type] = STATE(1601), - [sym_flow_maybe_type] = STATE(1601), - [sym_parenthesized_type] = STATE(1601), - [sym_predefined_type] = STATE(1601), - [sym_object_type] = STATE(1601), - [sym_type_parameters] = STATE(5219), - [sym_array_type] = STATE(1601), - [sym_tuple_type] = STATE(1601), - [sym_readonly_type] = STATE(1599), - [sym_union_type] = STATE(1601), - [sym_intersection_type] = STATE(1601), - [sym_function_type] = STATE(1599), - [sym_identifier] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3150), - [anon_sym_typeof] = ACTIONS(3152), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3156), - [anon_sym_LBRACK] = ACTIONS(3158), - [anon_sym_new] = ACTIONS(3160), - [anon_sym_AMP] = ACTIONS(3162), - [anon_sym_PIPE] = ACTIONS(3164), - [anon_sym_PLUS] = ACTIONS(3166), - [anon_sym_DASH] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3170), - [sym_number] = ACTIONS(3172), - [sym_this] = ACTIONS(3260), - [sym_true] = ACTIONS(3176), - [sym_false] = ACTIONS(3176), - [sym_null] = ACTIONS(3176), - [sym_undefined] = ACTIONS(3176), - [anon_sym_readonly] = ACTIONS(3178), - [anon_sym_QMARK] = ACTIONS(3180), - [anon_sym_any] = ACTIONS(3168), - [anon_sym_number] = ACTIONS(3168), - [anon_sym_boolean] = ACTIONS(3168), - [anon_sym_string] = ACTIONS(3168), - [anon_sym_symbol] = ACTIONS(3168), - [anon_sym_object] = ACTIONS(3168), - [anon_sym_abstract] = ACTIONS(3182), - [anon_sym_infer] = ACTIONS(3186), - [anon_sym_keyof] = ACTIONS(3188), - [anon_sym_unique] = ACTIONS(3190), - [anon_sym_unknown] = ACTIONS(3168), - [anon_sym_never] = ACTIONS(3168), - [anon_sym_LBRACE_PIPE] = ACTIONS(3192), + [sym_import] = STATE(4531), + [sym_nested_identifier] = STATE(5486), + [sym_string] = STATE(1632), + [sym_formal_parameters] = STATE(5639), + [sym_nested_type_identifier] = STATE(1527), + [sym__type_query_member_expression_in_type_annotation] = STATE(1514), + [sym__type_query_call_expression_in_type_annotation] = STATE(1574), + [sym_type] = STATE(1643), + [sym_constructor_type] = STATE(1544), + [sym_primary_type] = STATE(1554), + [sym_template_literal_type] = STATE(1556), + [sym_infer_type] = STATE(1544), + [sym_conditional_type] = STATE(1556), + [sym_generic_type] = STATE(1556), + [sym_type_query] = STATE(1556), + [sym_index_type_query] = STATE(1556), + [sym_lookup_type] = STATE(1556), + [sym_literal_type] = STATE(1556), + [sym__number] = STATE(1536), + [sym_existential_type] = STATE(1556), + [sym_flow_maybe_type] = STATE(1556), + [sym_parenthesized_type] = STATE(1556), + [sym_predefined_type] = STATE(1556), + [sym_object_type] = STATE(1556), + [sym_type_parameters] = STATE(5205), + [sym_array_type] = STATE(1556), + [sym_tuple_type] = STATE(1556), + [sym_readonly_type] = STATE(1544), + [sym_union_type] = STATE(1556), + [sym_intersection_type] = STATE(1556), + [sym_function_type] = STATE(1544), + [sym_identifier] = ACTIONS(3251), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_typeof] = ACTIONS(3151), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_PIPE] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3169), + [sym_number] = ACTIONS(3171), + [sym_this] = ACTIONS(3253), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [sym_null] = ACTIONS(3175), + [sym_undefined] = ACTIONS(3175), + [anon_sym_readonly] = ACTIONS(3177), + [anon_sym_QMARK] = ACTIONS(3179), + [anon_sym_any] = ACTIONS(3167), + [anon_sym_number] = ACTIONS(3167), + [anon_sym_boolean] = ACTIONS(3167), + [anon_sym_string] = ACTIONS(3167), + [anon_sym_symbol] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3181), + [anon_sym_infer] = ACTIONS(3185), + [anon_sym_keyof] = ACTIONS(3187), + [anon_sym_unique] = ACTIONS(3189), + [anon_sym_unknown] = ACTIONS(3167), + [anon_sym_never] = ACTIONS(3167), + [anon_sym_LBRACE_PIPE] = ACTIONS(3191), [sym_html_comment] = ACTIONS(5), }, [999] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3897), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4473), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1000] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5574), - [sym_string] = STATE(3242), - [sym_formal_parameters] = STATE(5809), - [sym_nested_type_identifier] = STATE(3153), - [sym__type_query_member_expression_in_type_annotation] = STATE(3081), - [sym__type_query_call_expression_in_type_annotation] = STATE(3197), - [sym_type] = STATE(3982), - [sym_constructor_type] = STATE(3250), - [sym_primary_type] = STATE(3251), - [sym_template_literal_type] = STATE(3252), - [sym_infer_type] = STATE(3250), - [sym_conditional_type] = STATE(3252), - [sym_generic_type] = STATE(3252), - [sym_type_query] = STATE(3252), - [sym_index_type_query] = STATE(3252), - [sym_lookup_type] = STATE(3252), - [sym_literal_type] = STATE(3252), - [sym__number] = STATE(3253), - [sym_existential_type] = STATE(3252), - [sym_flow_maybe_type] = STATE(3252), - [sym_parenthesized_type] = STATE(3252), - [sym_predefined_type] = STATE(3252), - [sym_object_type] = STATE(3252), - [sym_type_parameters] = STATE(5159), - [sym_array_type] = STATE(3252), - [sym_tuple_type] = STATE(3252), - [sym_readonly_type] = STATE(3250), - [sym_union_type] = STATE(3252), - [sym_intersection_type] = STATE(3252), - [sym_function_type] = STATE(3250), - [sym_identifier] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_new] = ACTIONS(1635), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [anon_sym_DQUOTE] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(1651), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_import] = STATE(4531), + [sym_nested_identifier] = STATE(5486), + [sym_string] = STATE(1632), + [sym_formal_parameters] = STATE(5639), + [sym_nested_type_identifier] = STATE(1527), + [sym__type_query_member_expression_in_type_annotation] = STATE(1514), + [sym__type_query_call_expression_in_type_annotation] = STATE(1574), + [sym_type] = STATE(1645), + [sym_constructor_type] = STATE(1544), + [sym_primary_type] = STATE(1554), + [sym_template_literal_type] = STATE(1556), + [sym_infer_type] = STATE(1544), + [sym_conditional_type] = STATE(1556), + [sym_generic_type] = STATE(1556), + [sym_type_query] = STATE(1556), + [sym_index_type_query] = STATE(1556), + [sym_lookup_type] = STATE(1556), + [sym_literal_type] = STATE(1556), + [sym__number] = STATE(1536), + [sym_existential_type] = STATE(1556), + [sym_flow_maybe_type] = STATE(1556), + [sym_parenthesized_type] = STATE(1556), + [sym_predefined_type] = STATE(1556), + [sym_object_type] = STATE(1556), + [sym_type_parameters] = STATE(5205), + [sym_array_type] = STATE(1556), + [sym_tuple_type] = STATE(1556), + [sym_readonly_type] = STATE(1544), + [sym_union_type] = STATE(1556), + [sym_intersection_type] = STATE(1556), + [sym_function_type] = STATE(1544), + [sym_identifier] = ACTIONS(3251), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_typeof] = ACTIONS(3151), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_PIPE] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3169), + [sym_number] = ACTIONS(3171), + [sym_this] = ACTIONS(3253), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [sym_null] = ACTIONS(3175), + [sym_undefined] = ACTIONS(3175), + [anon_sym_readonly] = ACTIONS(3177), + [anon_sym_QMARK] = ACTIONS(3179), + [anon_sym_any] = ACTIONS(3167), + [anon_sym_number] = ACTIONS(3167), + [anon_sym_boolean] = ACTIONS(3167), + [anon_sym_string] = ACTIONS(3167), + [anon_sym_symbol] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3181), + [anon_sym_infer] = ACTIONS(3185), + [anon_sym_keyof] = ACTIONS(3187), + [anon_sym_unique] = ACTIONS(3189), + [anon_sym_unknown] = ACTIONS(3167), + [anon_sym_never] = ACTIONS(3167), + [anon_sym_LBRACE_PIPE] = ACTIONS(3191), [sym_html_comment] = ACTIONS(5), }, [1001] = { - [sym_import] = STATE(4535), - [sym_nested_identifier] = STATE(5487), - [sym_string] = STATE(1620), - [sym_formal_parameters] = STATE(5661), - [sym_nested_type_identifier] = STATE(1526), - [sym__type_query_member_expression_in_type_annotation] = STATE(1527), - [sym__type_query_call_expression_in_type_annotation] = STATE(1573), - [sym_type] = STATE(1642), - [sym_constructor_type] = STATE(1599), - [sym_primary_type] = STATE(1597), - [sym_template_literal_type] = STATE(1601), - [sym_infer_type] = STATE(1599), - [sym_conditional_type] = STATE(1601), - [sym_generic_type] = STATE(1601), - [sym_type_query] = STATE(1601), - [sym_index_type_query] = STATE(1601), - [sym_lookup_type] = STATE(1601), - [sym_literal_type] = STATE(1601), - [sym__number] = STATE(1628), - [sym_existential_type] = STATE(1601), - [sym_flow_maybe_type] = STATE(1601), - [sym_parenthesized_type] = STATE(1601), - [sym_predefined_type] = STATE(1601), - [sym_object_type] = STATE(1601), - [sym_type_parameters] = STATE(5219), - [sym_array_type] = STATE(1601), - [sym_tuple_type] = STATE(1601), - [sym_readonly_type] = STATE(1599), - [sym_union_type] = STATE(1601), - [sym_intersection_type] = STATE(1601), - [sym_function_type] = STATE(1599), - [sym_identifier] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3150), - [anon_sym_typeof] = ACTIONS(3152), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3156), - [anon_sym_LBRACK] = ACTIONS(3158), - [anon_sym_new] = ACTIONS(3160), - [anon_sym_AMP] = ACTIONS(3162), - [anon_sym_PIPE] = ACTIONS(3164), - [anon_sym_PLUS] = ACTIONS(3166), - [anon_sym_DASH] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3170), - [sym_number] = ACTIONS(3172), - [sym_this] = ACTIONS(3260), - [sym_true] = ACTIONS(3176), - [sym_false] = ACTIONS(3176), - [sym_null] = ACTIONS(3176), - [sym_undefined] = ACTIONS(3176), - [anon_sym_readonly] = ACTIONS(3178), - [anon_sym_QMARK] = ACTIONS(3180), - [anon_sym_any] = ACTIONS(3168), - [anon_sym_number] = ACTIONS(3168), - [anon_sym_boolean] = ACTIONS(3168), - [anon_sym_string] = ACTIONS(3168), - [anon_sym_symbol] = ACTIONS(3168), - [anon_sym_object] = ACTIONS(3168), - [anon_sym_abstract] = ACTIONS(3182), - [anon_sym_infer] = ACTIONS(3186), - [anon_sym_keyof] = ACTIONS(3188), - [anon_sym_unique] = ACTIONS(3190), - [anon_sym_unknown] = ACTIONS(3168), - [anon_sym_never] = ACTIONS(3168), - [anon_sym_LBRACE_PIPE] = ACTIONS(3192), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3883), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1002] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3154), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(2955), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1003] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(2946), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(2972), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1004] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(2947), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4433), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1005] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(4410), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4950), + [sym_nested_identifier] = STATE(5535), + [sym_string] = STATE(3265), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(3076), + [sym__type_query_call_expression_in_type_annotation] = STATE(3200), + [sym_type] = STATE(4104), + [sym_constructor_type] = STATE(3271), + [sym_primary_type] = STATE(3272), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3271), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3273), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5146), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3271), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3271), + [sym_identifier] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_new] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_this] = ACTIONS(1634), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_any] = ACTIONS(1032), + [anon_sym_number] = ACTIONS(1032), + [anon_sym_boolean] = ACTIONS(1032), + [anon_sym_string] = ACTIONS(1032), + [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_object] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_infer] = ACTIONS(1026), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), [sym_html_comment] = ACTIONS(5), }, [1006] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3781), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3340), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1007] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5574), - [sym_string] = STATE(3242), - [sym_formal_parameters] = STATE(5809), - [sym_nested_type_identifier] = STATE(3153), - [sym__type_query_member_expression_in_type_annotation] = STATE(3081), - [sym__type_query_call_expression_in_type_annotation] = STATE(3197), - [sym_type] = STATE(3944), - [sym_constructor_type] = STATE(3250), - [sym_primary_type] = STATE(3251), - [sym_template_literal_type] = STATE(3252), - [sym_infer_type] = STATE(3250), - [sym_conditional_type] = STATE(3252), - [sym_generic_type] = STATE(3252), - [sym_type_query] = STATE(3252), - [sym_index_type_query] = STATE(3252), - [sym_lookup_type] = STATE(3252), - [sym_literal_type] = STATE(3252), - [sym__number] = STATE(3253), - [sym_existential_type] = STATE(3252), - [sym_flow_maybe_type] = STATE(3252), - [sym_parenthesized_type] = STATE(3252), - [sym_predefined_type] = STATE(3252), - [sym_object_type] = STATE(3252), - [sym_type_parameters] = STATE(5159), - [sym_array_type] = STATE(3252), - [sym_tuple_type] = STATE(3252), - [sym_readonly_type] = STATE(3250), - [sym_union_type] = STATE(3252), - [sym_intersection_type] = STATE(3252), - [sym_function_type] = STATE(3250), - [sym_identifier] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_new] = ACTIONS(1635), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [anon_sym_DQUOTE] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(1651), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3019), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1008] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3152), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3150), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1009] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(4974), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2948), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3755), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1010] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(4974), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2945), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4950), + [sym_nested_identifier] = STATE(5535), + [sym_string] = STATE(3265), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(3076), + [sym__type_query_call_expression_in_type_annotation] = STATE(3200), + [sym_type] = STATE(4254), + [sym_constructor_type] = STATE(3271), + [sym_primary_type] = STATE(3272), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3271), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3273), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5146), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3271), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3271), + [sym_identifier] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_new] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_this] = ACTIONS(1634), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_any] = ACTIONS(1032), + [anon_sym_number] = ACTIONS(1032), + [anon_sym_boolean] = ACTIONS(1032), + [anon_sym_string] = ACTIONS(1032), + [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_object] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_infer] = ACTIONS(1026), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), [sym_html_comment] = ACTIONS(5), }, [1011] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3415), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3153), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1012] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3808), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4622), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2949), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1013] = { - [sym_import] = STATE(4763), - [sym_nested_identifier] = STATE(5701), - [sym_string] = STATE(1961), - [sym_formal_parameters] = STATE(5838), - [sym_nested_type_identifier] = STATE(1823), - [sym__type_query_member_expression_in_type_annotation] = STATE(1867), - [sym__type_query_call_expression_in_type_annotation] = STATE(1905), - [sym_type] = STATE(2000), - [sym_constructor_type] = STATE(1910), - [sym_primary_type] = STATE(1913), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4622), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [sym_html_comment] = ACTIONS(5), + }, + [1014] = { + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3768), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), + [sym_html_comment] = ACTIONS(5), + }, + [1015] = { + [sym_import] = STATE(4650), + [sym_nested_identifier] = STATE(5567), + [sym_string] = STATE(1975), + [sym_formal_parameters] = STATE(5527), + [sym_nested_type_identifier] = STATE(1865), + [sym__type_query_member_expression_in_type_annotation] = STATE(1781), + [sym__type_query_call_expression_in_type_annotation] = STATE(1911), + [sym_type] = STATE(1998), + [sym_constructor_type] = STATE(1912), + [sym_primary_type] = STATE(1915), [sym_template_literal_type] = STATE(1916), - [sym_infer_type] = STATE(1910), + [sym_infer_type] = STATE(1912), [sym_conditional_type] = STATE(1916), [sym_generic_type] = STATE(1916), [sym_type_query] = STATE(1916), @@ -126783,68 +125116,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_type] = STATE(1916), [sym_predefined_type] = STATE(1916), [sym_object_type] = STATE(1916), - [sym_type_parameters] = STATE(5278), + [sym_type_parameters] = STATE(5243), [sym_array_type] = STATE(1916), [sym_tuple_type] = STATE(1916), - [sym_readonly_type] = STATE(1910), + [sym_readonly_type] = STATE(1912), [sym_union_type] = STATE(1916), [sym_intersection_type] = STATE(1916), - [sym_function_type] = STATE(1910), - [sym_identifier] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(3100), - [anon_sym_LBRACE] = ACTIONS(3102), - [anon_sym_typeof] = ACTIONS(3104), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3106), - [anon_sym_LPAREN] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(3110), - [anon_sym_new] = ACTIONS(3112), - [anon_sym_AMP] = ACTIONS(3114), - [anon_sym_PIPE] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3122), - [sym_number] = ACTIONS(3124), - [sym_this] = ACTIONS(3264), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [sym_null] = ACTIONS(3128), - [sym_undefined] = ACTIONS(3128), - [anon_sym_readonly] = ACTIONS(3130), - [anon_sym_QMARK] = ACTIONS(3132), - [anon_sym_any] = ACTIONS(3120), - [anon_sym_number] = ACTIONS(3120), - [anon_sym_boolean] = ACTIONS(3120), - [anon_sym_string] = ACTIONS(3120), - [anon_sym_symbol] = ACTIONS(3120), - [anon_sym_object] = ACTIONS(3120), - [anon_sym_abstract] = ACTIONS(3134), - [anon_sym_infer] = ACTIONS(3138), - [anon_sym_keyof] = ACTIONS(3140), - [anon_sym_unique] = ACTIONS(3142), - [anon_sym_unknown] = ACTIONS(3120), - [anon_sym_never] = ACTIONS(3120), - [anon_sym_LBRACE_PIPE] = ACTIONS(3144), + [sym_function_type] = STATE(1912), + [sym_identifier] = ACTIONS(3255), + [anon_sym_STAR] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3053), + [anon_sym_LPAREN] = ACTIONS(3055), + [anon_sym_LBRACK] = ACTIONS(3057), + [anon_sym_new] = ACTIONS(3059), + [anon_sym_AMP] = ACTIONS(3061), + [anon_sym_PIPE] = ACTIONS(3063), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3067), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3069), + [sym_number] = ACTIONS(3071), + [sym_this] = ACTIONS(3257), + [sym_true] = ACTIONS(3075), + [sym_false] = ACTIONS(3075), + [sym_null] = ACTIONS(3075), + [sym_undefined] = ACTIONS(3075), + [anon_sym_readonly] = ACTIONS(3077), + [anon_sym_QMARK] = ACTIONS(3079), + [anon_sym_any] = ACTIONS(3067), + [anon_sym_number] = ACTIONS(3067), + [anon_sym_boolean] = ACTIONS(3067), + [anon_sym_string] = ACTIONS(3067), + [anon_sym_symbol] = ACTIONS(3067), + [anon_sym_object] = ACTIONS(3067), + [anon_sym_abstract] = ACTIONS(3081), + [anon_sym_infer] = ACTIONS(3085), + [anon_sym_keyof] = ACTIONS(3087), + [anon_sym_unique] = ACTIONS(3089), + [anon_sym_unknown] = ACTIONS(3067), + [anon_sym_never] = ACTIONS(3067), + [anon_sym_LBRACE_PIPE] = ACTIONS(3091), [sym_html_comment] = ACTIONS(5), }, - [1014] = { - [sym_import] = STATE(4763), - [sym_nested_identifier] = STATE(5701), - [sym_string] = STATE(1961), - [sym_formal_parameters] = STATE(5838), - [sym_nested_type_identifier] = STATE(1823), - [sym__type_query_member_expression_in_type_annotation] = STATE(1867), - [sym__type_query_call_expression_in_type_annotation] = STATE(1905), - [sym_type] = STATE(2001), - [sym_constructor_type] = STATE(1910), - [sym_primary_type] = STATE(1913), + [1016] = { + [sym_import] = STATE(4650), + [sym_nested_identifier] = STATE(5567), + [sym_string] = STATE(1975), + [sym_formal_parameters] = STATE(5527), + [sym_nested_type_identifier] = STATE(1865), + [sym__type_query_member_expression_in_type_annotation] = STATE(1781), + [sym__type_query_call_expression_in_type_annotation] = STATE(1911), + [sym_type] = STATE(1999), + [sym_constructor_type] = STATE(1912), + [sym_primary_type] = STATE(1915), [sym_template_literal_type] = STATE(1916), - [sym_infer_type] = STATE(1910), + [sym_infer_type] = STATE(1912), [sym_conditional_type] = STATE(1916), [sym_generic_type] = STATE(1916), [sym_type_query] = STATE(1916), @@ -126857,216 +125190,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_type] = STATE(1916), [sym_predefined_type] = STATE(1916), [sym_object_type] = STATE(1916), - [sym_type_parameters] = STATE(5278), + [sym_type_parameters] = STATE(5243), [sym_array_type] = STATE(1916), [sym_tuple_type] = STATE(1916), - [sym_readonly_type] = STATE(1910), + [sym_readonly_type] = STATE(1912), [sym_union_type] = STATE(1916), [sym_intersection_type] = STATE(1916), - [sym_function_type] = STATE(1910), - [sym_identifier] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(3100), - [anon_sym_LBRACE] = ACTIONS(3102), - [anon_sym_typeof] = ACTIONS(3104), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3106), - [anon_sym_LPAREN] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(3110), - [anon_sym_new] = ACTIONS(3112), - [anon_sym_AMP] = ACTIONS(3114), - [anon_sym_PIPE] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3122), - [sym_number] = ACTIONS(3124), - [sym_this] = ACTIONS(3264), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [sym_null] = ACTIONS(3128), - [sym_undefined] = ACTIONS(3128), - [anon_sym_readonly] = ACTIONS(3130), - [anon_sym_QMARK] = ACTIONS(3132), - [anon_sym_any] = ACTIONS(3120), - [anon_sym_number] = ACTIONS(3120), - [anon_sym_boolean] = ACTIONS(3120), - [anon_sym_string] = ACTIONS(3120), - [anon_sym_symbol] = ACTIONS(3120), - [anon_sym_object] = ACTIONS(3120), - [anon_sym_abstract] = ACTIONS(3134), - [anon_sym_infer] = ACTIONS(3138), - [anon_sym_keyof] = ACTIONS(3140), - [anon_sym_unique] = ACTIONS(3142), - [anon_sym_unknown] = ACTIONS(3120), - [anon_sym_never] = ACTIONS(3120), - [anon_sym_LBRACE_PIPE] = ACTIONS(3144), - [sym_html_comment] = ACTIONS(5), - }, - [1015] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3826), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym_html_comment] = ACTIONS(5), - }, - [1016] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3849), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_function_type] = STATE(1912), + [sym_identifier] = ACTIONS(3255), + [anon_sym_STAR] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3053), + [anon_sym_LPAREN] = ACTIONS(3055), + [anon_sym_LBRACK] = ACTIONS(3057), + [anon_sym_new] = ACTIONS(3059), + [anon_sym_AMP] = ACTIONS(3061), + [anon_sym_PIPE] = ACTIONS(3063), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3067), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3069), + [sym_number] = ACTIONS(3071), + [sym_this] = ACTIONS(3257), + [sym_true] = ACTIONS(3075), + [sym_false] = ACTIONS(3075), + [sym_null] = ACTIONS(3075), + [sym_undefined] = ACTIONS(3075), + [anon_sym_readonly] = ACTIONS(3077), + [anon_sym_QMARK] = ACTIONS(3079), + [anon_sym_any] = ACTIONS(3067), + [anon_sym_number] = ACTIONS(3067), + [anon_sym_boolean] = ACTIONS(3067), + [anon_sym_string] = ACTIONS(3067), + [anon_sym_symbol] = ACTIONS(3067), + [anon_sym_object] = ACTIONS(3067), + [anon_sym_abstract] = ACTIONS(3081), + [anon_sym_infer] = ACTIONS(3085), + [anon_sym_keyof] = ACTIONS(3087), + [anon_sym_unique] = ACTIONS(3089), + [anon_sym_unknown] = ACTIONS(3067), + [anon_sym_never] = ACTIONS(3067), + [anon_sym_LBRACE_PIPE] = ACTIONS(3091), [sym_html_comment] = ACTIONS(5), }, [1017] = { - [sym_import] = STATE(4763), - [sym_nested_identifier] = STATE(5701), - [sym_string] = STATE(1961), - [sym_formal_parameters] = STATE(5838), - [sym_nested_type_identifier] = STATE(1823), - [sym__type_query_member_expression_in_type_annotation] = STATE(1867), - [sym__type_query_call_expression_in_type_annotation] = STATE(1905), + [sym_import] = STATE(4650), + [sym_nested_identifier] = STATE(5567), + [sym_string] = STATE(1975), + [sym_formal_parameters] = STATE(5527), + [sym_nested_type_identifier] = STATE(1865), + [sym__type_query_member_expression_in_type_annotation] = STATE(1781), + [sym__type_query_call_expression_in_type_annotation] = STATE(1911), [sym_type] = STATE(2033), - [sym_constructor_type] = STATE(1910), - [sym_primary_type] = STATE(1913), + [sym_constructor_type] = STATE(1912), + [sym_primary_type] = STATE(1915), [sym_template_literal_type] = STATE(1916), - [sym_infer_type] = STATE(1910), + [sym_infer_type] = STATE(1912), [sym_conditional_type] = STATE(1916), [sym_generic_type] = STATE(1916), [sym_type_query] = STATE(1916), @@ -127079,68 +125264,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_type] = STATE(1916), [sym_predefined_type] = STATE(1916), [sym_object_type] = STATE(1916), - [sym_type_parameters] = STATE(5278), + [sym_type_parameters] = STATE(5243), [sym_array_type] = STATE(1916), [sym_tuple_type] = STATE(1916), - [sym_readonly_type] = STATE(1910), + [sym_readonly_type] = STATE(1912), [sym_union_type] = STATE(1916), [sym_intersection_type] = STATE(1916), - [sym_function_type] = STATE(1910), - [sym_identifier] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(3100), - [anon_sym_LBRACE] = ACTIONS(3102), - [anon_sym_typeof] = ACTIONS(3104), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3106), - [anon_sym_LPAREN] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(3110), - [anon_sym_new] = ACTIONS(3112), - [anon_sym_AMP] = ACTIONS(3114), - [anon_sym_PIPE] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3122), - [sym_number] = ACTIONS(3124), - [sym_this] = ACTIONS(3264), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [sym_null] = ACTIONS(3128), - [sym_undefined] = ACTIONS(3128), - [anon_sym_readonly] = ACTIONS(3130), - [anon_sym_QMARK] = ACTIONS(3132), - [anon_sym_any] = ACTIONS(3120), - [anon_sym_number] = ACTIONS(3120), - [anon_sym_boolean] = ACTIONS(3120), - [anon_sym_string] = ACTIONS(3120), - [anon_sym_symbol] = ACTIONS(3120), - [anon_sym_object] = ACTIONS(3120), - [anon_sym_abstract] = ACTIONS(3134), - [anon_sym_infer] = ACTIONS(3138), - [anon_sym_keyof] = ACTIONS(3140), - [anon_sym_unique] = ACTIONS(3142), - [anon_sym_unknown] = ACTIONS(3120), - [anon_sym_never] = ACTIONS(3120), - [anon_sym_LBRACE_PIPE] = ACTIONS(3144), + [sym_function_type] = STATE(1912), + [sym_identifier] = ACTIONS(3255), + [anon_sym_STAR] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3053), + [anon_sym_LPAREN] = ACTIONS(3055), + [anon_sym_LBRACK] = ACTIONS(3057), + [anon_sym_new] = ACTIONS(3059), + [anon_sym_AMP] = ACTIONS(3061), + [anon_sym_PIPE] = ACTIONS(3063), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3067), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3069), + [sym_number] = ACTIONS(3071), + [sym_this] = ACTIONS(3257), + [sym_true] = ACTIONS(3075), + [sym_false] = ACTIONS(3075), + [sym_null] = ACTIONS(3075), + [sym_undefined] = ACTIONS(3075), + [anon_sym_readonly] = ACTIONS(3077), + [anon_sym_QMARK] = ACTIONS(3079), + [anon_sym_any] = ACTIONS(3067), + [anon_sym_number] = ACTIONS(3067), + [anon_sym_boolean] = ACTIONS(3067), + [anon_sym_string] = ACTIONS(3067), + [anon_sym_symbol] = ACTIONS(3067), + [anon_sym_object] = ACTIONS(3067), + [anon_sym_abstract] = ACTIONS(3081), + [anon_sym_infer] = ACTIONS(3085), + [anon_sym_keyof] = ACTIONS(3087), + [anon_sym_unique] = ACTIONS(3089), + [anon_sym_unknown] = ACTIONS(3067), + [anon_sym_never] = ACTIONS(3067), + [anon_sym_LBRACE_PIPE] = ACTIONS(3091), [sym_html_comment] = ACTIONS(5), }, [1018] = { - [sym_import] = STATE(4763), - [sym_nested_identifier] = STATE(5701), - [sym_string] = STATE(1961), - [sym_formal_parameters] = STATE(5838), - [sym_nested_type_identifier] = STATE(1823), - [sym__type_query_member_expression_in_type_annotation] = STATE(1867), - [sym__type_query_call_expression_in_type_annotation] = STATE(1905), - [sym_type] = STATE(2034), - [sym_constructor_type] = STATE(1910), - [sym_primary_type] = STATE(1913), + [sym_import] = STATE(4650), + [sym_nested_identifier] = STATE(5567), + [sym_string] = STATE(1975), + [sym_formal_parameters] = STATE(5527), + [sym_nested_type_identifier] = STATE(1865), + [sym__type_query_member_expression_in_type_annotation] = STATE(1781), + [sym__type_query_call_expression_in_type_annotation] = STATE(1911), + [sym_type] = STATE(2036), + [sym_constructor_type] = STATE(1912), + [sym_primary_type] = STATE(1915), [sym_template_literal_type] = STATE(1916), - [sym_infer_type] = STATE(1910), + [sym_infer_type] = STATE(1912), [sym_conditional_type] = STATE(1916), [sym_generic_type] = STATE(1916), [sym_type_query] = STATE(1916), @@ -127153,364 +125338,290 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_type] = STATE(1916), [sym_predefined_type] = STATE(1916), [sym_object_type] = STATE(1916), - [sym_type_parameters] = STATE(5278), + [sym_type_parameters] = STATE(5243), [sym_array_type] = STATE(1916), [sym_tuple_type] = STATE(1916), - [sym_readonly_type] = STATE(1910), + [sym_readonly_type] = STATE(1912), [sym_union_type] = STATE(1916), [sym_intersection_type] = STATE(1916), - [sym_function_type] = STATE(1910), - [sym_identifier] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(3100), - [anon_sym_LBRACE] = ACTIONS(3102), - [anon_sym_typeof] = ACTIONS(3104), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3106), - [anon_sym_LPAREN] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(3110), - [anon_sym_new] = ACTIONS(3112), - [anon_sym_AMP] = ACTIONS(3114), - [anon_sym_PIPE] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3122), - [sym_number] = ACTIONS(3124), - [sym_this] = ACTIONS(3264), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [sym_null] = ACTIONS(3128), - [sym_undefined] = ACTIONS(3128), - [anon_sym_readonly] = ACTIONS(3130), - [anon_sym_QMARK] = ACTIONS(3132), - [anon_sym_any] = ACTIONS(3120), - [anon_sym_number] = ACTIONS(3120), - [anon_sym_boolean] = ACTIONS(3120), - [anon_sym_string] = ACTIONS(3120), - [anon_sym_symbol] = ACTIONS(3120), - [anon_sym_object] = ACTIONS(3120), - [anon_sym_abstract] = ACTIONS(3134), - [anon_sym_infer] = ACTIONS(3138), - [anon_sym_keyof] = ACTIONS(3140), - [anon_sym_unique] = ACTIONS(3142), - [anon_sym_unknown] = ACTIONS(3120), - [anon_sym_never] = ACTIONS(3120), - [anon_sym_LBRACE_PIPE] = ACTIONS(3144), + [sym_function_type] = STATE(1912), + [sym_identifier] = ACTIONS(3255), + [anon_sym_STAR] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3053), + [anon_sym_LPAREN] = ACTIONS(3055), + [anon_sym_LBRACK] = ACTIONS(3057), + [anon_sym_new] = ACTIONS(3059), + [anon_sym_AMP] = ACTIONS(3061), + [anon_sym_PIPE] = ACTIONS(3063), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3067), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3069), + [sym_number] = ACTIONS(3071), + [sym_this] = ACTIONS(3257), + [sym_true] = ACTIONS(3075), + [sym_false] = ACTIONS(3075), + [sym_null] = ACTIONS(3075), + [sym_undefined] = ACTIONS(3075), + [anon_sym_readonly] = ACTIONS(3077), + [anon_sym_QMARK] = ACTIONS(3079), + [anon_sym_any] = ACTIONS(3067), + [anon_sym_number] = ACTIONS(3067), + [anon_sym_boolean] = ACTIONS(3067), + [anon_sym_string] = ACTIONS(3067), + [anon_sym_symbol] = ACTIONS(3067), + [anon_sym_object] = ACTIONS(3067), + [anon_sym_abstract] = ACTIONS(3081), + [anon_sym_infer] = ACTIONS(3085), + [anon_sym_keyof] = ACTIONS(3087), + [anon_sym_unique] = ACTIONS(3089), + [anon_sym_unknown] = ACTIONS(3067), + [anon_sym_never] = ACTIONS(3067), + [anon_sym_LBRACE_PIPE] = ACTIONS(3091), [sym_html_comment] = ACTIONS(5), }, [1019] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(4974), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(4113), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(4403), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3758), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1020] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(4116), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4578), + [sym_nested_identifier] = STATE(5796), + [sym_string] = STATE(3437), + [sym_formal_parameters] = STATE(5519), + [sym_nested_type_identifier] = STATE(3278), + [sym__type_query_member_expression_in_type_annotation] = STATE(3181), + [sym__type_query_call_expression_in_type_annotation] = STATE(3311), + [sym_type] = STATE(3384), + [sym_constructor_type] = STATE(3448), + [sym_primary_type] = STATE(3450), + [sym_template_literal_type] = STATE(3453), + [sym_infer_type] = STATE(3448), + [sym_conditional_type] = STATE(3453), + [sym_generic_type] = STATE(3453), + [sym_type_query] = STATE(3453), + [sym_index_type_query] = STATE(3453), + [sym_lookup_type] = STATE(3453), + [sym_literal_type] = STATE(3453), + [sym__number] = STATE(3454), + [sym_existential_type] = STATE(3453), + [sym_flow_maybe_type] = STATE(3453), + [sym_parenthesized_type] = STATE(3453), + [sym_predefined_type] = STATE(3453), + [sym_object_type] = STATE(3453), + [sym_type_parameters] = STATE(5251), + [sym_array_type] = STATE(3453), + [sym_tuple_type] = STATE(3453), + [sym_readonly_type] = STATE(3448), + [sym_union_type] = STATE(3453), + [sym_intersection_type] = STATE(3453), + [sym_function_type] = STATE(3448), + [sym_identifier] = ACTIONS(3259), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_typeof] = ACTIONS(2999), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3003), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_new] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_PIPE] = ACTIONS(3011), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3015), + [anon_sym_DQUOTE] = ACTIONS(3017), + [anon_sym_SQUOTE] = ACTIONS(3019), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3021), + [sym_number] = ACTIONS(3023), + [sym_this] = ACTIONS(3261), + [sym_true] = ACTIONS(3027), + [sym_false] = ACTIONS(3027), + [sym_null] = ACTIONS(3027), + [sym_undefined] = ACTIONS(3027), + [anon_sym_readonly] = ACTIONS(3029), + [anon_sym_QMARK] = ACTIONS(3031), + [anon_sym_any] = ACTIONS(3015), + [anon_sym_number] = ACTIONS(3015), + [anon_sym_boolean] = ACTIONS(3015), + [anon_sym_string] = ACTIONS(3015), + [anon_sym_symbol] = ACTIONS(3015), + [anon_sym_object] = ACTIONS(3015), + [anon_sym_abstract] = ACTIONS(3033), + [anon_sym_infer] = ACTIONS(3037), + [anon_sym_keyof] = ACTIONS(3039), + [anon_sym_unique] = ACTIONS(3041), + [anon_sym_unknown] = ACTIONS(3015), + [anon_sym_never] = ACTIONS(3015), + [anon_sym_LBRACE_PIPE] = ACTIONS(3043), [sym_html_comment] = ACTIONS(5), }, [1021] = { - [sym_import] = STATE(4581), - [sym_nested_identifier] = STATE(5819), - [sym_string] = STATE(3407), - [sym_formal_parameters] = STATE(5869), - [sym_nested_type_identifier] = STATE(3269), - [sym__type_query_member_expression_in_type_annotation] = STATE(3187), - [sym__type_query_call_expression_in_type_annotation] = STATE(3319), - [sym_type] = STATE(3368), - [sym_constructor_type] = STATE(3422), - [sym_primary_type] = STATE(3426), - [sym_template_literal_type] = STATE(3428), - [sym_infer_type] = STATE(3422), - [sym_conditional_type] = STATE(3428), - [sym_generic_type] = STATE(3428), - [sym_type_query] = STATE(3428), - [sym_index_type_query] = STATE(3428), - [sym_lookup_type] = STATE(3428), - [sym_literal_type] = STATE(3428), - [sym__number] = STATE(3432), - [sym_existential_type] = STATE(3428), - [sym_flow_maybe_type] = STATE(3428), - [sym_parenthesized_type] = STATE(3428), - [sym_predefined_type] = STATE(3428), - [sym_object_type] = STATE(3428), - [sym_type_parameters] = STATE(5263), - [sym_array_type] = STATE(3428), - [sym_tuple_type] = STATE(3428), - [sym_readonly_type] = STATE(3422), - [sym_union_type] = STATE(3428), - [sym_intersection_type] = STATE(3428), - [sym_function_type] = STATE(3422), - [sym_identifier] = ACTIONS(3266), - [anon_sym_STAR] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3016), - [anon_sym_typeof] = ACTIONS(3018), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3020), - [anon_sym_LPAREN] = ACTIONS(3022), - [anon_sym_LBRACK] = ACTIONS(3024), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_AMP] = ACTIONS(3028), - [anon_sym_PIPE] = ACTIONS(3030), - [anon_sym_PLUS] = ACTIONS(3032), - [anon_sym_DASH] = ACTIONS(3032), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3034), - [anon_sym_DQUOTE] = ACTIONS(3036), - [anon_sym_SQUOTE] = ACTIONS(3038), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3040), - [sym_number] = ACTIONS(3042), - [sym_this] = ACTIONS(3268), - [sym_true] = ACTIONS(3046), - [sym_false] = ACTIONS(3046), - [sym_null] = ACTIONS(3046), - [sym_undefined] = ACTIONS(3046), - [anon_sym_readonly] = ACTIONS(3048), - [anon_sym_QMARK] = ACTIONS(3050), - [anon_sym_any] = ACTIONS(3034), - [anon_sym_number] = ACTIONS(3034), - [anon_sym_boolean] = ACTIONS(3034), - [anon_sym_string] = ACTIONS(3034), - [anon_sym_symbol] = ACTIONS(3034), - [anon_sym_object] = ACTIONS(3034), - [anon_sym_abstract] = ACTIONS(3052), - [anon_sym_infer] = ACTIONS(3056), - [anon_sym_keyof] = ACTIONS(3058), - [anon_sym_unique] = ACTIONS(3060), - [anon_sym_unknown] = ACTIONS(3034), - [anon_sym_never] = ACTIONS(3034), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), + [sym_import] = STATE(4578), + [sym_nested_identifier] = STATE(5796), + [sym_string] = STATE(3437), + [sym_formal_parameters] = STATE(5519), + [sym_nested_type_identifier] = STATE(3278), + [sym__type_query_member_expression_in_type_annotation] = STATE(3181), + [sym__type_query_call_expression_in_type_annotation] = STATE(3311), + [sym_type] = STATE(3354), + [sym_constructor_type] = STATE(3448), + [sym_primary_type] = STATE(3450), + [sym_template_literal_type] = STATE(3453), + [sym_infer_type] = STATE(3448), + [sym_conditional_type] = STATE(3453), + [sym_generic_type] = STATE(3453), + [sym_type_query] = STATE(3453), + [sym_index_type_query] = STATE(3453), + [sym_lookup_type] = STATE(3453), + [sym_literal_type] = STATE(3453), + [sym__number] = STATE(3454), + [sym_existential_type] = STATE(3453), + [sym_flow_maybe_type] = STATE(3453), + [sym_parenthesized_type] = STATE(3453), + [sym_predefined_type] = STATE(3453), + [sym_object_type] = STATE(3453), + [sym_type_parameters] = STATE(5251), + [sym_array_type] = STATE(3453), + [sym_tuple_type] = STATE(3453), + [sym_readonly_type] = STATE(3448), + [sym_union_type] = STATE(3453), + [sym_intersection_type] = STATE(3453), + [sym_function_type] = STATE(3448), + [sym_identifier] = ACTIONS(3259), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_typeof] = ACTIONS(2999), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3003), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_new] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_PIPE] = ACTIONS(3011), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3015), + [anon_sym_DQUOTE] = ACTIONS(3017), + [anon_sym_SQUOTE] = ACTIONS(3019), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3021), + [sym_number] = ACTIONS(3023), + [sym_this] = ACTIONS(3261), + [sym_true] = ACTIONS(3027), + [sym_false] = ACTIONS(3027), + [sym_null] = ACTIONS(3027), + [sym_undefined] = ACTIONS(3027), + [anon_sym_readonly] = ACTIONS(3029), + [anon_sym_QMARK] = ACTIONS(3031), + [anon_sym_any] = ACTIONS(3015), + [anon_sym_number] = ACTIONS(3015), + [anon_sym_boolean] = ACTIONS(3015), + [anon_sym_string] = ACTIONS(3015), + [anon_sym_symbol] = ACTIONS(3015), + [anon_sym_object] = ACTIONS(3015), + [anon_sym_abstract] = ACTIONS(3033), + [anon_sym_infer] = ACTIONS(3037), + [anon_sym_keyof] = ACTIONS(3039), + [anon_sym_unique] = ACTIONS(3041), + [anon_sym_unknown] = ACTIONS(3015), + [anon_sym_never] = ACTIONS(3015), + [anon_sym_LBRACE_PIPE] = ACTIONS(3043), [sym_html_comment] = ACTIONS(5), }, [1022] = { - [sym_import] = STATE(4581), - [sym_nested_identifier] = STATE(5819), - [sym_string] = STATE(3407), - [sym_formal_parameters] = STATE(5869), - [sym_nested_type_identifier] = STATE(3269), - [sym__type_query_member_expression_in_type_annotation] = STATE(3187), - [sym__type_query_call_expression_in_type_annotation] = STATE(3319), - [sym_type] = STATE(3369), - [sym_constructor_type] = STATE(3422), - [sym_primary_type] = STATE(3426), - [sym_template_literal_type] = STATE(3428), - [sym_infer_type] = STATE(3422), - [sym_conditional_type] = STATE(3428), - [sym_generic_type] = STATE(3428), - [sym_type_query] = STATE(3428), - [sym_index_type_query] = STATE(3428), - [sym_lookup_type] = STATE(3428), - [sym_literal_type] = STATE(3428), - [sym__number] = STATE(3432), - [sym_existential_type] = STATE(3428), - [sym_flow_maybe_type] = STATE(3428), - [sym_parenthesized_type] = STATE(3428), - [sym_predefined_type] = STATE(3428), - [sym_object_type] = STATE(3428), - [sym_type_parameters] = STATE(5263), - [sym_array_type] = STATE(3428), - [sym_tuple_type] = STATE(3428), - [sym_readonly_type] = STATE(3422), - [sym_union_type] = STATE(3428), - [sym_intersection_type] = STATE(3428), - [sym_function_type] = STATE(3422), - [sym_identifier] = ACTIONS(3266), - [anon_sym_STAR] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3016), - [anon_sym_typeof] = ACTIONS(3018), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3020), - [anon_sym_LPAREN] = ACTIONS(3022), - [anon_sym_LBRACK] = ACTIONS(3024), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_AMP] = ACTIONS(3028), - [anon_sym_PIPE] = ACTIONS(3030), - [anon_sym_PLUS] = ACTIONS(3032), - [anon_sym_DASH] = ACTIONS(3032), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3034), - [anon_sym_DQUOTE] = ACTIONS(3036), - [anon_sym_SQUOTE] = ACTIONS(3038), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3040), - [sym_number] = ACTIONS(3042), - [sym_this] = ACTIONS(3268), - [sym_true] = ACTIONS(3046), - [sym_false] = ACTIONS(3046), - [sym_null] = ACTIONS(3046), - [sym_undefined] = ACTIONS(3046), - [anon_sym_readonly] = ACTIONS(3048), - [anon_sym_QMARK] = ACTIONS(3050), - [anon_sym_any] = ACTIONS(3034), - [anon_sym_number] = ACTIONS(3034), - [anon_sym_boolean] = ACTIONS(3034), - [anon_sym_string] = ACTIONS(3034), - [anon_sym_symbol] = ACTIONS(3034), - [anon_sym_object] = ACTIONS(3034), - [anon_sym_abstract] = ACTIONS(3052), - [anon_sym_infer] = ACTIONS(3056), - [anon_sym_keyof] = ACTIONS(3058), - [anon_sym_unique] = ACTIONS(3060), - [anon_sym_unknown] = ACTIONS(3034), - [anon_sym_never] = ACTIONS(3034), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), - [sym_html_comment] = ACTIONS(5), - }, - [1023] = { - [sym_import] = STATE(4763), - [sym_nested_identifier] = STATE(5701), - [sym_string] = STATE(1961), - [sym_formal_parameters] = STATE(5838), - [sym_nested_type_identifier] = STATE(1823), - [sym__type_query_member_expression_in_type_annotation] = STATE(1867), - [sym__type_query_call_expression_in_type_annotation] = STATE(1905), - [sym_type] = STATE(2060), - [sym_constructor_type] = STATE(1910), - [sym_primary_type] = STATE(1913), + [sym_import] = STATE(4650), + [sym_nested_identifier] = STATE(5567), + [sym_string] = STATE(1975), + [sym_formal_parameters] = STATE(5527), + [sym_nested_type_identifier] = STATE(1865), + [sym__type_query_member_expression_in_type_annotation] = STATE(1781), + [sym__type_query_call_expression_in_type_annotation] = STATE(1911), + [sym_type] = STATE(2061), + [sym_constructor_type] = STATE(1912), + [sym_primary_type] = STATE(1915), [sym_template_literal_type] = STATE(1916), - [sym_infer_type] = STATE(1910), + [sym_infer_type] = STATE(1912), [sym_conditional_type] = STATE(1916), [sym_generic_type] = STATE(1916), [sym_type_query] = STATE(1916), @@ -127523,68 +125634,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_type] = STATE(1916), [sym_predefined_type] = STATE(1916), [sym_object_type] = STATE(1916), - [sym_type_parameters] = STATE(5278), + [sym_type_parameters] = STATE(5243), [sym_array_type] = STATE(1916), [sym_tuple_type] = STATE(1916), - [sym_readonly_type] = STATE(1910), + [sym_readonly_type] = STATE(1912), [sym_union_type] = STATE(1916), [sym_intersection_type] = STATE(1916), - [sym_function_type] = STATE(1910), - [sym_identifier] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(3100), - [anon_sym_LBRACE] = ACTIONS(3102), - [anon_sym_typeof] = ACTIONS(3104), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3106), - [anon_sym_LPAREN] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(3110), - [anon_sym_new] = ACTIONS(3112), - [anon_sym_AMP] = ACTIONS(3114), - [anon_sym_PIPE] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3122), - [sym_number] = ACTIONS(3124), - [sym_this] = ACTIONS(3264), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [sym_null] = ACTIONS(3128), - [sym_undefined] = ACTIONS(3128), - [anon_sym_readonly] = ACTIONS(3130), - [anon_sym_QMARK] = ACTIONS(3132), - [anon_sym_any] = ACTIONS(3120), - [anon_sym_number] = ACTIONS(3120), - [anon_sym_boolean] = ACTIONS(3120), - [anon_sym_string] = ACTIONS(3120), - [anon_sym_symbol] = ACTIONS(3120), - [anon_sym_object] = ACTIONS(3120), - [anon_sym_abstract] = ACTIONS(3134), - [anon_sym_infer] = ACTIONS(3138), - [anon_sym_keyof] = ACTIONS(3140), - [anon_sym_unique] = ACTIONS(3142), - [anon_sym_unknown] = ACTIONS(3120), - [anon_sym_never] = ACTIONS(3120), - [anon_sym_LBRACE_PIPE] = ACTIONS(3144), + [sym_function_type] = STATE(1912), + [sym_identifier] = ACTIONS(3255), + [anon_sym_STAR] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3053), + [anon_sym_LPAREN] = ACTIONS(3055), + [anon_sym_LBRACK] = ACTIONS(3057), + [anon_sym_new] = ACTIONS(3059), + [anon_sym_AMP] = ACTIONS(3061), + [anon_sym_PIPE] = ACTIONS(3063), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3067), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3069), + [sym_number] = ACTIONS(3071), + [sym_this] = ACTIONS(3257), + [sym_true] = ACTIONS(3075), + [sym_false] = ACTIONS(3075), + [sym_null] = ACTIONS(3075), + [sym_undefined] = ACTIONS(3075), + [anon_sym_readonly] = ACTIONS(3077), + [anon_sym_QMARK] = ACTIONS(3079), + [anon_sym_any] = ACTIONS(3067), + [anon_sym_number] = ACTIONS(3067), + [anon_sym_boolean] = ACTIONS(3067), + [anon_sym_string] = ACTIONS(3067), + [anon_sym_symbol] = ACTIONS(3067), + [anon_sym_object] = ACTIONS(3067), + [anon_sym_abstract] = ACTIONS(3081), + [anon_sym_infer] = ACTIONS(3085), + [anon_sym_keyof] = ACTIONS(3087), + [anon_sym_unique] = ACTIONS(3089), + [anon_sym_unknown] = ACTIONS(3067), + [anon_sym_never] = ACTIONS(3067), + [anon_sym_LBRACE_PIPE] = ACTIONS(3091), [sym_html_comment] = ACTIONS(5), }, - [1024] = { - [sym_import] = STATE(4763), - [sym_nested_identifier] = STATE(5701), - [sym_string] = STATE(1961), - [sym_formal_parameters] = STATE(5838), - [sym_nested_type_identifier] = STATE(1823), - [sym__type_query_member_expression_in_type_annotation] = STATE(1867), - [sym__type_query_call_expression_in_type_annotation] = STATE(1905), - [sym_type] = STATE(2061), - [sym_constructor_type] = STATE(1910), - [sym_primary_type] = STATE(1913), + [1023] = { + [sym_import] = STATE(4650), + [sym_nested_identifier] = STATE(5567), + [sym_string] = STATE(1975), + [sym_formal_parameters] = STATE(5527), + [sym_nested_type_identifier] = STATE(1865), + [sym__type_query_member_expression_in_type_annotation] = STATE(1781), + [sym__type_query_call_expression_in_type_annotation] = STATE(1911), + [sym_type] = STATE(2062), + [sym_constructor_type] = STATE(1912), + [sym_primary_type] = STATE(1915), [sym_template_literal_type] = STATE(1916), - [sym_infer_type] = STATE(1910), + [sym_infer_type] = STATE(1912), [sym_conditional_type] = STATE(1916), [sym_generic_type] = STATE(1916), [sym_type_query] = STATE(1916), @@ -127597,68 +125708,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_type] = STATE(1916), [sym_predefined_type] = STATE(1916), [sym_object_type] = STATE(1916), - [sym_type_parameters] = STATE(5278), + [sym_type_parameters] = STATE(5243), [sym_array_type] = STATE(1916), [sym_tuple_type] = STATE(1916), - [sym_readonly_type] = STATE(1910), + [sym_readonly_type] = STATE(1912), [sym_union_type] = STATE(1916), [sym_intersection_type] = STATE(1916), - [sym_function_type] = STATE(1910), - [sym_identifier] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(3100), - [anon_sym_LBRACE] = ACTIONS(3102), - [anon_sym_typeof] = ACTIONS(3104), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3106), - [anon_sym_LPAREN] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(3110), - [anon_sym_new] = ACTIONS(3112), - [anon_sym_AMP] = ACTIONS(3114), - [anon_sym_PIPE] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3122), - [sym_number] = ACTIONS(3124), - [sym_this] = ACTIONS(3264), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [sym_null] = ACTIONS(3128), - [sym_undefined] = ACTIONS(3128), - [anon_sym_readonly] = ACTIONS(3130), - [anon_sym_QMARK] = ACTIONS(3132), - [anon_sym_any] = ACTIONS(3120), - [anon_sym_number] = ACTIONS(3120), - [anon_sym_boolean] = ACTIONS(3120), - [anon_sym_string] = ACTIONS(3120), - [anon_sym_symbol] = ACTIONS(3120), - [anon_sym_object] = ACTIONS(3120), - [anon_sym_abstract] = ACTIONS(3134), - [anon_sym_infer] = ACTIONS(3138), - [anon_sym_keyof] = ACTIONS(3140), - [anon_sym_unique] = ACTIONS(3142), - [anon_sym_unknown] = ACTIONS(3120), - [anon_sym_never] = ACTIONS(3120), - [anon_sym_LBRACE_PIPE] = ACTIONS(3144), + [sym_function_type] = STATE(1912), + [sym_identifier] = ACTIONS(3255), + [anon_sym_STAR] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3053), + [anon_sym_LPAREN] = ACTIONS(3055), + [anon_sym_LBRACK] = ACTIONS(3057), + [anon_sym_new] = ACTIONS(3059), + [anon_sym_AMP] = ACTIONS(3061), + [anon_sym_PIPE] = ACTIONS(3063), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3067), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3069), + [sym_number] = ACTIONS(3071), + [sym_this] = ACTIONS(3257), + [sym_true] = ACTIONS(3075), + [sym_false] = ACTIONS(3075), + [sym_null] = ACTIONS(3075), + [sym_undefined] = ACTIONS(3075), + [anon_sym_readonly] = ACTIONS(3077), + [anon_sym_QMARK] = ACTIONS(3079), + [anon_sym_any] = ACTIONS(3067), + [anon_sym_number] = ACTIONS(3067), + [anon_sym_boolean] = ACTIONS(3067), + [anon_sym_string] = ACTIONS(3067), + [anon_sym_symbol] = ACTIONS(3067), + [anon_sym_object] = ACTIONS(3067), + [anon_sym_abstract] = ACTIONS(3081), + [anon_sym_infer] = ACTIONS(3085), + [anon_sym_keyof] = ACTIONS(3087), + [anon_sym_unique] = ACTIONS(3089), + [anon_sym_unknown] = ACTIONS(3067), + [anon_sym_never] = ACTIONS(3067), + [anon_sym_LBRACE_PIPE] = ACTIONS(3091), [sym_html_comment] = ACTIONS(5), }, - [1025] = { - [sym_import] = STATE(4763), - [sym_nested_identifier] = STATE(5701), - [sym_string] = STATE(1961), - [sym_formal_parameters] = STATE(5838), - [sym_nested_type_identifier] = STATE(1823), - [sym__type_query_member_expression_in_type_annotation] = STATE(1867), - [sym__type_query_call_expression_in_type_annotation] = STATE(1905), - [sym_type] = STATE(1881), - [sym_constructor_type] = STATE(1910), - [sym_primary_type] = STATE(1913), + [1024] = { + [sym_import] = STATE(4650), + [sym_nested_identifier] = STATE(5567), + [sym_string] = STATE(1975), + [sym_formal_parameters] = STATE(5527), + [sym_nested_type_identifier] = STATE(1865), + [sym__type_query_member_expression_in_type_annotation] = STATE(1781), + [sym__type_query_call_expression_in_type_annotation] = STATE(1911), + [sym_type] = STATE(1882), + [sym_constructor_type] = STATE(1912), + [sym_primary_type] = STATE(1915), [sym_template_literal_type] = STATE(1916), - [sym_infer_type] = STATE(1910), + [sym_infer_type] = STATE(1912), [sym_conditional_type] = STATE(1916), [sym_generic_type] = STATE(1916), [sym_type_query] = STATE(1916), @@ -127671,68 +125782,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_type] = STATE(1916), [sym_predefined_type] = STATE(1916), [sym_object_type] = STATE(1916), - [sym_type_parameters] = STATE(5278), + [sym_type_parameters] = STATE(5243), [sym_array_type] = STATE(1916), [sym_tuple_type] = STATE(1916), - [sym_readonly_type] = STATE(1910), + [sym_readonly_type] = STATE(1912), [sym_union_type] = STATE(1916), [sym_intersection_type] = STATE(1916), - [sym_function_type] = STATE(1910), - [sym_identifier] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(3100), - [anon_sym_LBRACE] = ACTIONS(3102), - [anon_sym_typeof] = ACTIONS(3104), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3106), - [anon_sym_LPAREN] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(3110), - [anon_sym_new] = ACTIONS(3112), - [anon_sym_AMP] = ACTIONS(3114), - [anon_sym_PIPE] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3122), - [sym_number] = ACTIONS(3124), - [sym_this] = ACTIONS(3264), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [sym_null] = ACTIONS(3128), - [sym_undefined] = ACTIONS(3128), - [anon_sym_readonly] = ACTIONS(3130), - [anon_sym_QMARK] = ACTIONS(3132), - [anon_sym_any] = ACTIONS(3120), - [anon_sym_number] = ACTIONS(3120), - [anon_sym_boolean] = ACTIONS(3120), - [anon_sym_string] = ACTIONS(3120), - [anon_sym_symbol] = ACTIONS(3120), - [anon_sym_object] = ACTIONS(3120), - [anon_sym_abstract] = ACTIONS(3134), - [anon_sym_infer] = ACTIONS(3138), - [anon_sym_keyof] = ACTIONS(3140), - [anon_sym_unique] = ACTIONS(3142), - [anon_sym_unknown] = ACTIONS(3120), - [anon_sym_never] = ACTIONS(3120), - [anon_sym_LBRACE_PIPE] = ACTIONS(3144), + [sym_function_type] = STATE(1912), + [sym_identifier] = ACTIONS(3255), + [anon_sym_STAR] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3053), + [anon_sym_LPAREN] = ACTIONS(3055), + [anon_sym_LBRACK] = ACTIONS(3057), + [anon_sym_new] = ACTIONS(3059), + [anon_sym_AMP] = ACTIONS(3061), + [anon_sym_PIPE] = ACTIONS(3063), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3067), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3069), + [sym_number] = ACTIONS(3071), + [sym_this] = ACTIONS(3257), + [sym_true] = ACTIONS(3075), + [sym_false] = ACTIONS(3075), + [sym_null] = ACTIONS(3075), + [sym_undefined] = ACTIONS(3075), + [anon_sym_readonly] = ACTIONS(3077), + [anon_sym_QMARK] = ACTIONS(3079), + [anon_sym_any] = ACTIONS(3067), + [anon_sym_number] = ACTIONS(3067), + [anon_sym_boolean] = ACTIONS(3067), + [anon_sym_string] = ACTIONS(3067), + [anon_sym_symbol] = ACTIONS(3067), + [anon_sym_object] = ACTIONS(3067), + [anon_sym_abstract] = ACTIONS(3081), + [anon_sym_infer] = ACTIONS(3085), + [anon_sym_keyof] = ACTIONS(3087), + [anon_sym_unique] = ACTIONS(3089), + [anon_sym_unknown] = ACTIONS(3067), + [anon_sym_never] = ACTIONS(3067), + [anon_sym_LBRACE_PIPE] = ACTIONS(3091), [sym_html_comment] = ACTIONS(5), }, - [1026] = { - [sym_import] = STATE(4763), - [sym_nested_identifier] = STATE(5701), - [sym_string] = STATE(1961), - [sym_formal_parameters] = STATE(5838), - [sym_nested_type_identifier] = STATE(1823), - [sym__type_query_member_expression_in_type_annotation] = STATE(1867), - [sym__type_query_call_expression_in_type_annotation] = STATE(1905), - [sym_type] = STATE(1882), - [sym_constructor_type] = STATE(1910), - [sym_primary_type] = STATE(1913), + [1025] = { + [sym_import] = STATE(4650), + [sym_nested_identifier] = STATE(5567), + [sym_string] = STATE(1975), + [sym_formal_parameters] = STATE(5527), + [sym_nested_type_identifier] = STATE(1865), + [sym__type_query_member_expression_in_type_annotation] = STATE(1781), + [sym__type_query_call_expression_in_type_annotation] = STATE(1911), + [sym_type] = STATE(1883), + [sym_constructor_type] = STATE(1912), + [sym_primary_type] = STATE(1915), [sym_template_literal_type] = STATE(1916), - [sym_infer_type] = STATE(1910), + [sym_infer_type] = STATE(1912), [sym_conditional_type] = STATE(1916), [sym_generic_type] = STATE(1916), [sym_type_query] = STATE(1916), @@ -127745,2362 +125856,2436 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_type] = STATE(1916), [sym_predefined_type] = STATE(1916), [sym_object_type] = STATE(1916), - [sym_type_parameters] = STATE(5278), + [sym_type_parameters] = STATE(5243), [sym_array_type] = STATE(1916), [sym_tuple_type] = STATE(1916), - [sym_readonly_type] = STATE(1910), + [sym_readonly_type] = STATE(1912), [sym_union_type] = STATE(1916), [sym_intersection_type] = STATE(1916), - [sym_function_type] = STATE(1910), - [sym_identifier] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(3100), - [anon_sym_LBRACE] = ACTIONS(3102), - [anon_sym_typeof] = ACTIONS(3104), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3106), - [anon_sym_LPAREN] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(3110), - [anon_sym_new] = ACTIONS(3112), - [anon_sym_AMP] = ACTIONS(3114), - [anon_sym_PIPE] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3122), - [sym_number] = ACTIONS(3124), - [sym_this] = ACTIONS(3264), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [sym_null] = ACTIONS(3128), - [sym_undefined] = ACTIONS(3128), - [anon_sym_readonly] = ACTIONS(3130), - [anon_sym_QMARK] = ACTIONS(3132), - [anon_sym_any] = ACTIONS(3120), - [anon_sym_number] = ACTIONS(3120), - [anon_sym_boolean] = ACTIONS(3120), - [anon_sym_string] = ACTIONS(3120), - [anon_sym_symbol] = ACTIONS(3120), - [anon_sym_object] = ACTIONS(3120), - [anon_sym_abstract] = ACTIONS(3134), - [anon_sym_infer] = ACTIONS(3138), - [anon_sym_keyof] = ACTIONS(3140), - [anon_sym_unique] = ACTIONS(3142), - [anon_sym_unknown] = ACTIONS(3120), - [anon_sym_never] = ACTIONS(3120), - [anon_sym_LBRACE_PIPE] = ACTIONS(3144), + [sym_function_type] = STATE(1912), + [sym_identifier] = ACTIONS(3255), + [anon_sym_STAR] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3053), + [anon_sym_LPAREN] = ACTIONS(3055), + [anon_sym_LBRACK] = ACTIONS(3057), + [anon_sym_new] = ACTIONS(3059), + [anon_sym_AMP] = ACTIONS(3061), + [anon_sym_PIPE] = ACTIONS(3063), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3067), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3069), + [sym_number] = ACTIONS(3071), + [sym_this] = ACTIONS(3257), + [sym_true] = ACTIONS(3075), + [sym_false] = ACTIONS(3075), + [sym_null] = ACTIONS(3075), + [sym_undefined] = ACTIONS(3075), + [anon_sym_readonly] = ACTIONS(3077), + [anon_sym_QMARK] = ACTIONS(3079), + [anon_sym_any] = ACTIONS(3067), + [anon_sym_number] = ACTIONS(3067), + [anon_sym_boolean] = ACTIONS(3067), + [anon_sym_string] = ACTIONS(3067), + [anon_sym_symbol] = ACTIONS(3067), + [anon_sym_object] = ACTIONS(3067), + [anon_sym_abstract] = ACTIONS(3081), + [anon_sym_infer] = ACTIONS(3085), + [anon_sym_keyof] = ACTIONS(3087), + [anon_sym_unique] = ACTIONS(3089), + [anon_sym_unknown] = ACTIONS(3067), + [anon_sym_never] = ACTIONS(3067), + [anon_sym_LBRACE_PIPE] = ACTIONS(3091), + [sym_html_comment] = ACTIONS(5), + }, + [1026] = { + [sym_import] = STATE(4950), + [sym_nested_identifier] = STATE(5535), + [sym_string] = STATE(3265), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(3076), + [sym__type_query_call_expression_in_type_annotation] = STATE(3200), + [sym_type] = STATE(3962), + [sym_constructor_type] = STATE(3271), + [sym_primary_type] = STATE(3272), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3271), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3273), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5146), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3271), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3271), + [sym_identifier] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_new] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_this] = ACTIONS(1634), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_any] = ACTIONS(1032), + [anon_sym_number] = ACTIONS(1032), + [anon_sym_boolean] = ACTIONS(1032), + [anon_sym_string] = ACTIONS(1032), + [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_object] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_infer] = ACTIONS(1026), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), [sym_html_comment] = ACTIONS(5), }, [1027] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3845), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4950), + [sym_nested_identifier] = STATE(5535), + [sym_string] = STATE(3265), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(3076), + [sym__type_query_call_expression_in_type_annotation] = STATE(3200), + [sym_type] = STATE(3282), + [sym_constructor_type] = STATE(3271), + [sym_primary_type] = STATE(3272), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3271), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3273), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5146), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3271), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3271), + [sym_identifier] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_new] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_this] = ACTIONS(1634), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_any] = ACTIONS(1032), + [anon_sym_number] = ACTIONS(1032), + [anon_sym_boolean] = ACTIONS(1032), + [anon_sym_string] = ACTIONS(1032), + [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_object] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_infer] = ACTIONS(1026), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), [sym_html_comment] = ACTIONS(5), }, [1028] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5574), - [sym_string] = STATE(3242), - [sym_formal_parameters] = STATE(5809), - [sym_nested_type_identifier] = STATE(3153), - [sym__type_query_member_expression_in_type_annotation] = STATE(3081), - [sym__type_query_call_expression_in_type_annotation] = STATE(3197), - [sym_type] = STATE(3948), - [sym_constructor_type] = STATE(3250), - [sym_primary_type] = STATE(3251), - [sym_template_literal_type] = STATE(3252), - [sym_infer_type] = STATE(3250), - [sym_conditional_type] = STATE(3252), - [sym_generic_type] = STATE(3252), - [sym_type_query] = STATE(3252), - [sym_index_type_query] = STATE(3252), - [sym_lookup_type] = STATE(3252), - [sym_literal_type] = STATE(3252), - [sym__number] = STATE(3253), - [sym_existential_type] = STATE(3252), - [sym_flow_maybe_type] = STATE(3252), - [sym_parenthesized_type] = STATE(3252), - [sym_predefined_type] = STATE(3252), - [sym_object_type] = STATE(3252), - [sym_type_parameters] = STATE(5159), - [sym_array_type] = STATE(3252), - [sym_tuple_type] = STATE(3252), - [sym_readonly_type] = STATE(3250), - [sym_union_type] = STATE(3252), - [sym_intersection_type] = STATE(3252), - [sym_function_type] = STATE(3250), - [sym_identifier] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_new] = ACTIONS(1635), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [anon_sym_DQUOTE] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(1651), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_import] = STATE(4950), + [sym_nested_identifier] = STATE(5535), + [sym_string] = STATE(3265), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(3076), + [sym__type_query_call_expression_in_type_annotation] = STATE(3200), + [sym_type] = STATE(3283), + [sym_constructor_type] = STATE(3271), + [sym_primary_type] = STATE(3272), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3271), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3273), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5146), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3271), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3271), + [sym_identifier] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_new] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_this] = ACTIONS(1634), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_any] = ACTIONS(1032), + [anon_sym_number] = ACTIONS(1032), + [anon_sym_boolean] = ACTIONS(1032), + [anon_sym_string] = ACTIONS(1032), + [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_object] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_infer] = ACTIONS(1026), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), [sym_html_comment] = ACTIONS(5), }, [1029] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5574), - [sym_string] = STATE(3242), - [sym_formal_parameters] = STATE(5809), - [sym_nested_type_identifier] = STATE(3153), - [sym__type_query_member_expression_in_type_annotation] = STATE(3081), - [sym__type_query_call_expression_in_type_annotation] = STATE(3197), - [sym_type] = STATE(3247), - [sym_constructor_type] = STATE(3250), - [sym_primary_type] = STATE(3251), - [sym_template_literal_type] = STATE(3252), - [sym_infer_type] = STATE(3250), - [sym_conditional_type] = STATE(3252), - [sym_generic_type] = STATE(3252), - [sym_type_query] = STATE(3252), - [sym_index_type_query] = STATE(3252), - [sym_lookup_type] = STATE(3252), - [sym_literal_type] = STATE(3252), - [sym__number] = STATE(3253), - [sym_existential_type] = STATE(3252), - [sym_flow_maybe_type] = STATE(3252), - [sym_parenthesized_type] = STATE(3252), - [sym_predefined_type] = STATE(3252), - [sym_object_type] = STATE(3252), - [sym_type_parameters] = STATE(5159), - [sym_array_type] = STATE(3252), - [sym_tuple_type] = STATE(3252), - [sym_readonly_type] = STATE(3250), - [sym_union_type] = STATE(3252), - [sym_intersection_type] = STATE(3252), - [sym_function_type] = STATE(3250), - [sym_identifier] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_new] = ACTIONS(1635), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [anon_sym_DQUOTE] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(1651), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_import] = STATE(4950), + [sym_nested_identifier] = STATE(5535), + [sym_string] = STATE(3265), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(3076), + [sym__type_query_call_expression_in_type_annotation] = STATE(3200), + [sym_type] = STATE(3222), + [sym_constructor_type] = STATE(3271), + [sym_primary_type] = STATE(3272), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3271), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3273), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5146), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3271), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3271), + [sym_identifier] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_new] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_this] = ACTIONS(1634), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_any] = ACTIONS(1032), + [anon_sym_number] = ACTIONS(1032), + [anon_sym_boolean] = ACTIONS(1032), + [anon_sym_string] = ACTIONS(1032), + [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_object] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_infer] = ACTIONS(1026), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), [sym_html_comment] = ACTIONS(5), }, [1030] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5574), - [sym_string] = STATE(3242), - [sym_formal_parameters] = STATE(5809), - [sym_nested_type_identifier] = STATE(3153), - [sym__type_query_member_expression_in_type_annotation] = STATE(3081), - [sym__type_query_call_expression_in_type_annotation] = STATE(3197), - [sym_type] = STATE(3255), - [sym_constructor_type] = STATE(3250), - [sym_primary_type] = STATE(3251), - [sym_template_literal_type] = STATE(3252), - [sym_infer_type] = STATE(3250), - [sym_conditional_type] = STATE(3252), - [sym_generic_type] = STATE(3252), - [sym_type_query] = STATE(3252), - [sym_index_type_query] = STATE(3252), - [sym_lookup_type] = STATE(3252), - [sym_literal_type] = STATE(3252), - [sym__number] = STATE(3253), - [sym_existential_type] = STATE(3252), - [sym_flow_maybe_type] = STATE(3252), - [sym_parenthesized_type] = STATE(3252), - [sym_predefined_type] = STATE(3252), - [sym_object_type] = STATE(3252), - [sym_type_parameters] = STATE(5159), - [sym_array_type] = STATE(3252), - [sym_tuple_type] = STATE(3252), - [sym_readonly_type] = STATE(3250), - [sym_union_type] = STATE(3252), - [sym_intersection_type] = STATE(3252), - [sym_function_type] = STATE(3250), - [sym_identifier] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_new] = ACTIONS(1635), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [anon_sym_DQUOTE] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(1651), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5535), + [sym_string] = STATE(3265), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(5001), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(3216), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3273), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_this] = ACTIONS(1634), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_any] = ACTIONS(1032), + [anon_sym_number] = ACTIONS(1032), + [anon_sym_boolean] = ACTIONS(1032), + [anon_sym_string] = ACTIONS(1032), + [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_object] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), [sym_html_comment] = ACTIONS(5), }, [1031] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5574), - [sym_string] = STATE(3242), - [sym_formal_parameters] = STATE(5809), - [sym_nested_type_identifier] = STATE(3153), - [sym__type_query_member_expression_in_type_annotation] = STATE(3081), - [sym__type_query_call_expression_in_type_annotation] = STATE(3197), - [sym_type] = STATE(3257), - [sym_constructor_type] = STATE(3250), - [sym_primary_type] = STATE(3251), - [sym_template_literal_type] = STATE(3252), - [sym_infer_type] = STATE(3250), - [sym_conditional_type] = STATE(3252), - [sym_generic_type] = STATE(3252), - [sym_type_query] = STATE(3252), - [sym_index_type_query] = STATE(3252), - [sym_lookup_type] = STATE(3252), - [sym_literal_type] = STATE(3252), - [sym__number] = STATE(3253), - [sym_existential_type] = STATE(3252), - [sym_flow_maybe_type] = STATE(3252), - [sym_parenthesized_type] = STATE(3252), - [sym_predefined_type] = STATE(3252), - [sym_object_type] = STATE(3252), - [sym_type_parameters] = STATE(5159), - [sym_array_type] = STATE(3252), - [sym_tuple_type] = STATE(3252), - [sym_readonly_type] = STATE(3250), - [sym_union_type] = STATE(3252), - [sym_intersection_type] = STATE(3252), - [sym_function_type] = STATE(3250), - [sym_identifier] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_new] = ACTIONS(1635), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [anon_sym_DQUOTE] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(1651), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5535), + [sym_string] = STATE(3265), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(5001), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(3254), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3273), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_this] = ACTIONS(1634), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_any] = ACTIONS(1032), + [anon_sym_number] = ACTIONS(1032), + [anon_sym_boolean] = ACTIONS(1032), + [anon_sym_string] = ACTIONS(1032), + [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_object] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), [sym_html_comment] = ACTIONS(5), }, [1032] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5574), - [sym_string] = STATE(3242), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(3153), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(4984), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(3222), - [sym_template_literal_type] = STATE(3252), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(3252), - [sym_generic_type] = STATE(3252), - [sym_type_query] = STATE(3252), - [sym_index_type_query] = STATE(3252), - [sym_lookup_type] = STATE(3252), - [sym_literal_type] = STATE(3252), - [sym__number] = STATE(3253), - [sym_existential_type] = STATE(3252), - [sym_flow_maybe_type] = STATE(3252), - [sym_parenthesized_type] = STATE(3252), - [sym_predefined_type] = STATE(3252), - [sym_object_type] = STATE(3252), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(3252), - [sym_tuple_type] = STATE(3252), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(3252), - [sym_intersection_type] = STATE(3252), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [anon_sym_DQUOTE] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(1651), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3021), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1033] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5574), - [sym_string] = STATE(3242), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(3153), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(4984), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(3227), - [sym_template_literal_type] = STATE(3252), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(3252), - [sym_generic_type] = STATE(3252), - [sym_type_query] = STATE(3252), - [sym_index_type_query] = STATE(3252), - [sym_lookup_type] = STATE(3252), - [sym_literal_type] = STATE(3252), - [sym__number] = STATE(3253), - [sym_existential_type] = STATE(3252), - [sym_flow_maybe_type] = STATE(3252), - [sym_parenthesized_type] = STATE(3252), - [sym_predefined_type] = STATE(3252), - [sym_object_type] = STATE(3252), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(3252), - [sym_tuple_type] = STATE(3252), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(3252), - [sym_intersection_type] = STATE(3252), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [anon_sym_DQUOTE] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(1651), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3713), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1034] = { - [sym_import] = STATE(4676), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(3304), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(2955), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5461), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4622), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(4133), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(4403), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1035] = { - [sym_import] = STATE(4676), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(3304), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3649), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5461), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4950), + [sym_nested_identifier] = STATE(5535), + [sym_string] = STATE(3265), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(3076), + [sym__type_query_call_expression_in_type_annotation] = STATE(3200), + [sym_type] = STATE(3983), + [sym_constructor_type] = STATE(3271), + [sym_primary_type] = STATE(3272), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3271), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3273), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5146), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3271), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3271), + [sym_identifier] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_new] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_this] = ACTIONS(1634), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_any] = ACTIONS(1032), + [anon_sym_number] = ACTIONS(1032), + [anon_sym_boolean] = ACTIONS(1032), + [anon_sym_string] = ACTIONS(1032), + [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_object] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_infer] = ACTIONS(1026), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), [sym_html_comment] = ACTIONS(5), }, [1036] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(2955), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4137), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1037] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5574), - [sym_string] = STATE(3242), - [sym_formal_parameters] = STATE(5809), - [sym_nested_type_identifier] = STATE(3153), - [sym__type_query_member_expression_in_type_annotation] = STATE(3081), - [sym__type_query_call_expression_in_type_annotation] = STATE(3197), - [sym_type] = STATE(3479), - [sym_constructor_type] = STATE(3250), - [sym_primary_type] = STATE(3251), - [sym_template_literal_type] = STATE(3252), - [sym_infer_type] = STATE(3250), - [sym_conditional_type] = STATE(3252), - [sym_generic_type] = STATE(3252), - [sym_type_query] = STATE(3252), - [sym_index_type_query] = STATE(3252), - [sym_lookup_type] = STATE(3252), - [sym_literal_type] = STATE(3252), - [sym__number] = STATE(3253), - [sym_existential_type] = STATE(3252), - [sym_flow_maybe_type] = STATE(3252), - [sym_parenthesized_type] = STATE(3252), - [sym_predefined_type] = STATE(3252), - [sym_object_type] = STATE(3252), - [sym_type_parameters] = STATE(5159), - [sym_array_type] = STATE(3252), - [sym_tuple_type] = STATE(3252), - [sym_readonly_type] = STATE(3250), - [sym_union_type] = STATE(3252), - [sym_intersection_type] = STATE(3252), - [sym_function_type] = STATE(3250), - [sym_identifier] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_new] = ACTIONS(1635), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [anon_sym_DQUOTE] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(1651), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(2947), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1038] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5574), - [sym_string] = STATE(3242), - [sym_formal_parameters] = STATE(5809), - [sym_nested_type_identifier] = STATE(3153), - [sym__type_query_member_expression_in_type_annotation] = STATE(3081), - [sym__type_query_call_expression_in_type_annotation] = STATE(3197), - [sym_type] = STATE(3963), - [sym_constructor_type] = STATE(3250), - [sym_primary_type] = STATE(3251), - [sym_template_literal_type] = STATE(3252), - [sym_infer_type] = STATE(3250), - [sym_conditional_type] = STATE(3252), - [sym_generic_type] = STATE(3252), - [sym_type_query] = STATE(3252), - [sym_index_type_query] = STATE(3252), - [sym_lookup_type] = STATE(3252), - [sym_literal_type] = STATE(3252), - [sym__number] = STATE(3253), - [sym_existential_type] = STATE(3252), - [sym_flow_maybe_type] = STATE(3252), - [sym_parenthesized_type] = STATE(3252), - [sym_predefined_type] = STATE(3252), - [sym_object_type] = STATE(3252), - [sym_type_parameters] = STATE(5159), - [sym_array_type] = STATE(3252), - [sym_tuple_type] = STATE(3252), - [sym_readonly_type] = STATE(3250), - [sym_union_type] = STATE(3252), - [sym_intersection_type] = STATE(3252), - [sym_function_type] = STATE(3250), - [sym_identifier] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_new] = ACTIONS(1635), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [anon_sym_DQUOTE] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(1651), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3730), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1039] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5574), - [sym_string] = STATE(3242), - [sym_formal_parameters] = STATE(5809), - [sym_nested_type_identifier] = STATE(3153), - [sym__type_query_member_expression_in_type_annotation] = STATE(3081), - [sym__type_query_call_expression_in_type_annotation] = STATE(3197), - [sym_type] = STATE(3500), - [sym_constructor_type] = STATE(3250), - [sym_primary_type] = STATE(3251), - [sym_template_literal_type] = STATE(3252), - [sym_infer_type] = STATE(3250), - [sym_conditional_type] = STATE(3252), - [sym_generic_type] = STATE(3252), - [sym_type_query] = STATE(3252), - [sym_index_type_query] = STATE(3252), - [sym_lookup_type] = STATE(3252), - [sym_literal_type] = STATE(3252), - [sym__number] = STATE(3253), - [sym_existential_type] = STATE(3252), - [sym_flow_maybe_type] = STATE(3252), - [sym_parenthesized_type] = STATE(3252), - [sym_predefined_type] = STATE(3252), - [sym_object_type] = STATE(3252), - [sym_type_parameters] = STATE(5159), - [sym_array_type] = STATE(3252), - [sym_tuple_type] = STATE(3252), - [sym_readonly_type] = STATE(3250), - [sym_union_type] = STATE(3252), - [sym_intersection_type] = STATE(3252), - [sym_function_type] = STATE(3250), - [sym_identifier] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_new] = ACTIONS(1635), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [anon_sym_DQUOTE] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(1651), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3732), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1040] = { - [sym_import] = STATE(4676), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(3304), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3025), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5461), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3733), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1041] = { - [sym_import] = STATE(4676), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(3304), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3652), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5461), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4950), + [sym_nested_identifier] = STATE(5535), + [sym_string] = STATE(3265), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(3076), + [sym__type_query_call_expression_in_type_annotation] = STATE(3200), + [sym_type] = STATE(3246), + [sym_constructor_type] = STATE(3271), + [sym_primary_type] = STATE(3272), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3271), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3273), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5146), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3271), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3271), + [sym_identifier] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_new] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_this] = ACTIONS(1634), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_any] = ACTIONS(1032), + [anon_sym_number] = ACTIONS(1032), + [anon_sym_boolean] = ACTIONS(1032), + [anon_sym_string] = ACTIONS(1032), + [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_object] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_infer] = ACTIONS(1026), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), [sym_html_comment] = ACTIONS(5), }, [1042] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5574), - [sym_string] = STATE(3242), - [sym_formal_parameters] = STATE(5809), - [sym_nested_type_identifier] = STATE(3153), - [sym__type_query_member_expression_in_type_annotation] = STATE(3081), - [sym__type_query_call_expression_in_type_annotation] = STATE(3197), - [sym_type] = STATE(3228), - [sym_constructor_type] = STATE(3250), - [sym_primary_type] = STATE(3251), - [sym_template_literal_type] = STATE(3252), - [sym_infer_type] = STATE(3250), - [sym_conditional_type] = STATE(3252), - [sym_generic_type] = STATE(3252), - [sym_type_query] = STATE(3252), - [sym_index_type_query] = STATE(3252), - [sym_lookup_type] = STATE(3252), - [sym_literal_type] = STATE(3252), - [sym__number] = STATE(3253), - [sym_existential_type] = STATE(3252), - [sym_flow_maybe_type] = STATE(3252), - [sym_parenthesized_type] = STATE(3252), - [sym_predefined_type] = STATE(3252), - [sym_object_type] = STATE(3252), - [sym_type_parameters] = STATE(5159), - [sym_array_type] = STATE(3252), - [sym_tuple_type] = STATE(3252), - [sym_readonly_type] = STATE(3250), - [sym_union_type] = STATE(3252), - [sym_intersection_type] = STATE(3252), - [sym_function_type] = STATE(3250), - [sym_identifier] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_new] = ACTIONS(1635), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [anon_sym_DQUOTE] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(1651), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_import] = STATE(4950), + [sym_nested_identifier] = STATE(5535), + [sym_string] = STATE(3265), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(3076), + [sym__type_query_call_expression_in_type_annotation] = STATE(3200), + [sym_type] = STATE(3248), + [sym_constructor_type] = STATE(3271), + [sym_primary_type] = STATE(3272), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3271), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3273), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5146), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3271), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3271), + [sym_identifier] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_new] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_this] = ACTIONS(1634), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_any] = ACTIONS(1032), + [anon_sym_number] = ACTIONS(1032), + [anon_sym_boolean] = ACTIONS(1032), + [anon_sym_string] = ACTIONS(1032), + [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_object] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_infer] = ACTIONS(1026), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), [sym_html_comment] = ACTIONS(5), }, [1043] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5574), - [sym_string] = STATE(3242), - [sym_formal_parameters] = STATE(5809), - [sym_nested_type_identifier] = STATE(3153), - [sym__type_query_member_expression_in_type_annotation] = STATE(3081), - [sym__type_query_call_expression_in_type_annotation] = STATE(3197), - [sym_type] = STATE(3265), - [sym_constructor_type] = STATE(3250), - [sym_primary_type] = STATE(3251), - [sym_template_literal_type] = STATE(3252), - [sym_infer_type] = STATE(3250), - [sym_conditional_type] = STATE(3252), - [sym_generic_type] = STATE(3252), - [sym_type_query] = STATE(3252), - [sym_index_type_query] = STATE(3252), - [sym_lookup_type] = STATE(3252), - [sym_literal_type] = STATE(3252), - [sym__number] = STATE(3253), - [sym_existential_type] = STATE(3252), - [sym_flow_maybe_type] = STATE(3252), - [sym_parenthesized_type] = STATE(3252), - [sym_predefined_type] = STATE(3252), - [sym_object_type] = STATE(3252), - [sym_type_parameters] = STATE(5159), - [sym_array_type] = STATE(3252), - [sym_tuple_type] = STATE(3252), - [sym_readonly_type] = STATE(3250), - [sym_union_type] = STATE(3252), - [sym_intersection_type] = STATE(3252), - [sym_function_type] = STATE(3250), - [sym_identifier] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_new] = ACTIONS(1635), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [anon_sym_DQUOTE] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(1651), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(2955), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1044] = { - [sym_import] = STATE(4676), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(3304), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3654), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5461), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(2972), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1045] = { - [sym_import] = STATE(4676), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(3304), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3655), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5461), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4498), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1046] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5574), - [sym_string] = STATE(3242), - [sym_formal_parameters] = STATE(5809), - [sym_nested_type_identifier] = STATE(3153), - [sym__type_query_member_expression_in_type_annotation] = STATE(3081), - [sym__type_query_call_expression_in_type_annotation] = STATE(3197), - [sym_type] = STATE(3473), - [sym_constructor_type] = STATE(3250), - [sym_primary_type] = STATE(3251), - [sym_template_literal_type] = STATE(3252), - [sym_infer_type] = STATE(3250), - [sym_conditional_type] = STATE(3252), - [sym_generic_type] = STATE(3252), - [sym_type_query] = STATE(3252), - [sym_index_type_query] = STATE(3252), - [sym_lookup_type] = STATE(3252), - [sym_literal_type] = STATE(3252), - [sym__number] = STATE(3253), - [sym_existential_type] = STATE(3252), - [sym_flow_maybe_type] = STATE(3252), - [sym_parenthesized_type] = STATE(3252), - [sym_predefined_type] = STATE(3252), - [sym_object_type] = STATE(3252), - [sym_type_parameters] = STATE(5159), - [sym_array_type] = STATE(3252), - [sym_tuple_type] = STATE(3252), - [sym_readonly_type] = STATE(3250), - [sym_union_type] = STATE(3252), - [sym_intersection_type] = STATE(3252), - [sym_function_type] = STATE(3250), - [sym_identifier] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_new] = ACTIONS(1635), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [anon_sym_DQUOTE] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(1651), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_import] = STATE(4950), + [sym_nested_identifier] = STATE(5535), + [sym_string] = STATE(3265), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(3076), + [sym__type_query_call_expression_in_type_annotation] = STATE(3200), + [sym_type] = STATE(4005), + [sym_constructor_type] = STATE(3271), + [sym_primary_type] = STATE(3272), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3271), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3273), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5146), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3271), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3271), + [sym_identifier] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_new] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_this] = ACTIONS(1634), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_any] = ACTIONS(1032), + [anon_sym_number] = ACTIONS(1032), + [anon_sym_boolean] = ACTIONS(1032), + [anon_sym_string] = ACTIONS(1032), + [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_object] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_infer] = ACTIONS(1026), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), [sym_html_comment] = ACTIONS(5), }, [1047] = { - [sym_import] = STATE(4676), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(3304), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(2946), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5461), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(2962), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1048] = { - [sym_import] = STATE(4676), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(3304), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(2947), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5461), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3542), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1049] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(4472), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4950), + [sym_nested_identifier] = STATE(5535), + [sym_string] = STATE(3265), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(3076), + [sym__type_query_call_expression_in_type_annotation] = STATE(3200), + [sym_type] = STATE(3466), + [sym_constructor_type] = STATE(3271), + [sym_primary_type] = STATE(3272), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3271), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3273), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5146), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3271), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3271), + [sym_identifier] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_new] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_this] = ACTIONS(1634), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_any] = ACTIONS(1032), + [anon_sym_number] = ACTIONS(1032), + [anon_sym_boolean] = ACTIONS(1032), + [anon_sym_string] = ACTIONS(1032), + [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_object] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_infer] = ACTIONS(1026), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), [sym_html_comment] = ACTIONS(5), }, [1050] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5574), - [sym_string] = STATE(3242), - [sym_formal_parameters] = STATE(5809), - [sym_nested_type_identifier] = STATE(3153), - [sym__type_query_member_expression_in_type_annotation] = STATE(3081), - [sym__type_query_call_expression_in_type_annotation] = STATE(3197), - [sym_type] = STATE(3979), - [sym_constructor_type] = STATE(3250), - [sym_primary_type] = STATE(3251), - [sym_template_literal_type] = STATE(3252), - [sym_infer_type] = STATE(3250), - [sym_conditional_type] = STATE(3252), - [sym_generic_type] = STATE(3252), - [sym_type_query] = STATE(3252), - [sym_index_type_query] = STATE(3252), - [sym_lookup_type] = STATE(3252), - [sym_literal_type] = STATE(3252), - [sym__number] = STATE(3253), - [sym_existential_type] = STATE(3252), - [sym_flow_maybe_type] = STATE(3252), - [sym_parenthesized_type] = STATE(3252), - [sym_predefined_type] = STATE(3252), - [sym_object_type] = STATE(3252), - [sym_type_parameters] = STATE(5159), - [sym_array_type] = STATE(3252), - [sym_tuple_type] = STATE(3252), - [sym_readonly_type] = STATE(3250), - [sym_union_type] = STATE(3252), - [sym_intersection_type] = STATE(3252), - [sym_function_type] = STATE(3250), - [sym_identifier] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_new] = ACTIONS(1635), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [anon_sym_DQUOTE] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(1651), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_import] = STATE(4950), + [sym_nested_identifier] = STATE(5535), + [sym_string] = STATE(3265), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(3076), + [sym__type_query_call_expression_in_type_annotation] = STATE(3200), + [sym_type] = STATE(3464), + [sym_constructor_type] = STATE(3271), + [sym_primary_type] = STATE(3272), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3271), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3273), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5146), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3271), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3271), + [sym_identifier] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_new] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_this] = ACTIONS(1634), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_any] = ACTIONS(1032), + [anon_sym_number] = ACTIONS(1032), + [anon_sym_boolean] = ACTIONS(1032), + [anon_sym_string] = ACTIONS(1032), + [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_object] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_infer] = ACTIONS(1026), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), [sym_html_comment] = ACTIONS(5), }, [1051] = { - [sym_import] = STATE(4676), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(3304), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3045), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5461), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4950), + [sym_nested_identifier] = STATE(5535), + [sym_string] = STATE(3265), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(3076), + [sym__type_query_call_expression_in_type_annotation] = STATE(3200), + [sym_type] = STATE(3467), + [sym_constructor_type] = STATE(3271), + [sym_primary_type] = STATE(3272), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3271), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3273), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5146), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3271), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3271), + [sym_identifier] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_new] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_this] = ACTIONS(1634), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_any] = ACTIONS(1032), + [anon_sym_number] = ACTIONS(1032), + [anon_sym_boolean] = ACTIONS(1032), + [anon_sym_string] = ACTIONS(1032), + [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_object] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_infer] = ACTIONS(1026), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), [sym_html_comment] = ACTIONS(5), }, [1052] = { - [sym_import] = STATE(4676), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(3304), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3658), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5461), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4514), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1053] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(4422), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4950), + [sym_nested_identifier] = STATE(5535), + [sym_string] = STATE(3265), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(3076), + [sym__type_query_call_expression_in_type_annotation] = STATE(3200), + [sym_type] = STATE(3261), + [sym_constructor_type] = STATE(3271), + [sym_primary_type] = STATE(3272), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3271), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3273), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5146), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3271), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3271), + [sym_identifier] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_new] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_this] = ACTIONS(1634), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_any] = ACTIONS(1032), + [anon_sym_number] = ACTIONS(1032), + [anon_sym_boolean] = ACTIONS(1032), + [anon_sym_string] = ACTIONS(1032), + [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_object] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_infer] = ACTIONS(1026), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), [sym_html_comment] = ACTIONS(5), }, [1054] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(4424), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4950), + [sym_nested_identifier] = STATE(5535), + [sym_string] = STATE(3265), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(3076), + [sym__type_query_call_expression_in_type_annotation] = STATE(3200), + [sym_type] = STATE(3267), + [sym_constructor_type] = STATE(3271), + [sym_primary_type] = STATE(3272), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3271), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3273), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5146), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3271), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3271), + [sym_identifier] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_new] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_this] = ACTIONS(1634), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_any] = ACTIONS(1032), + [anon_sym_number] = ACTIONS(1032), + [anon_sym_boolean] = ACTIONS(1032), + [anon_sym_string] = ACTIONS(1032), + [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_object] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_infer] = ACTIONS(1026), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), [sym_html_comment] = ACTIONS(5), }, [1055] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3089), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4386), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1056] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5574), - [sym_string] = STATE(3242), - [sym_formal_parameters] = STATE(5809), - [sym_nested_type_identifier] = STATE(3153), - [sym__type_query_member_expression_in_type_annotation] = STATE(3081), - [sym__type_query_call_expression_in_type_annotation] = STATE(3197), - [sym_type] = STATE(3238), - [sym_constructor_type] = STATE(3250), - [sym_primary_type] = STATE(3251), - [sym_template_literal_type] = STATE(3252), - [sym_infer_type] = STATE(3250), - [sym_conditional_type] = STATE(3252), - [sym_generic_type] = STATE(3252), - [sym_type_query] = STATE(3252), - [sym_index_type_query] = STATE(3252), - [sym_lookup_type] = STATE(3252), - [sym_literal_type] = STATE(3252), - [sym__number] = STATE(3253), - [sym_existential_type] = STATE(3252), - [sym_flow_maybe_type] = STATE(3252), - [sym_parenthesized_type] = STATE(3252), - [sym_predefined_type] = STATE(3252), - [sym_object_type] = STATE(3252), - [sym_type_parameters] = STATE(5159), - [sym_array_type] = STATE(3252), - [sym_tuple_type] = STATE(3252), - [sym_readonly_type] = STATE(3250), - [sym_union_type] = STATE(3252), - [sym_intersection_type] = STATE(3252), - [sym_function_type] = STATE(3250), - [sym_identifier] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_new] = ACTIONS(1635), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [anon_sym_DQUOTE] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(1651), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3835), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1057] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5574), - [sym_string] = STATE(3242), - [sym_formal_parameters] = STATE(5809), - [sym_nested_type_identifier] = STATE(3153), - [sym__type_query_member_expression_in_type_annotation] = STATE(3081), - [sym__type_query_call_expression_in_type_annotation] = STATE(3197), - [sym_type] = STATE(3258), - [sym_constructor_type] = STATE(3250), - [sym_primary_type] = STATE(3251), - [sym_template_literal_type] = STATE(3252), - [sym_infer_type] = STATE(3250), - [sym_conditional_type] = STATE(3252), - [sym_generic_type] = STATE(3252), - [sym_type_query] = STATE(3252), - [sym_index_type_query] = STATE(3252), - [sym_lookup_type] = STATE(3252), - [sym_literal_type] = STATE(3252), - [sym__number] = STATE(3253), - [sym_existential_type] = STATE(3252), - [sym_flow_maybe_type] = STATE(3252), - [sym_parenthesized_type] = STATE(3252), - [sym_predefined_type] = STATE(3252), - [sym_object_type] = STATE(3252), - [sym_type_parameters] = STATE(5159), - [sym_array_type] = STATE(3252), - [sym_tuple_type] = STATE(3252), - [sym_readonly_type] = STATE(3250), - [sym_union_type] = STATE(3252), - [sym_intersection_type] = STATE(3252), - [sym_function_type] = STATE(3250), - [sym_identifier] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_new] = ACTIONS(1635), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [anon_sym_DQUOTE] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(1651), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_import] = STATE(4650), + [sym_nested_identifier] = STATE(5567), + [sym_string] = STATE(1975), + [sym_formal_parameters] = STATE(5527), + [sym_nested_type_identifier] = STATE(1865), + [sym__type_query_member_expression_in_type_annotation] = STATE(1781), + [sym__type_query_call_expression_in_type_annotation] = STATE(1911), + [sym_type] = STATE(1941), + [sym_constructor_type] = STATE(1912), + [sym_primary_type] = STATE(1915), + [sym_template_literal_type] = STATE(1916), + [sym_infer_type] = STATE(1912), + [sym_conditional_type] = STATE(1916), + [sym_generic_type] = STATE(1916), + [sym_type_query] = STATE(1916), + [sym_index_type_query] = STATE(1916), + [sym_lookup_type] = STATE(1916), + [sym_literal_type] = STATE(1916), + [sym__number] = STATE(1918), + [sym_existential_type] = STATE(1916), + [sym_flow_maybe_type] = STATE(1916), + [sym_parenthesized_type] = STATE(1916), + [sym_predefined_type] = STATE(1916), + [sym_object_type] = STATE(1916), + [sym_type_parameters] = STATE(5243), + [sym_array_type] = STATE(1916), + [sym_tuple_type] = STATE(1916), + [sym_readonly_type] = STATE(1912), + [sym_union_type] = STATE(1916), + [sym_intersection_type] = STATE(1916), + [sym_function_type] = STATE(1912), + [sym_identifier] = ACTIONS(3255), + [anon_sym_STAR] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3053), + [anon_sym_LPAREN] = ACTIONS(3055), + [anon_sym_LBRACK] = ACTIONS(3057), + [anon_sym_new] = ACTIONS(3059), + [anon_sym_AMP] = ACTIONS(3061), + [anon_sym_PIPE] = ACTIONS(3063), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3067), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3069), + [sym_number] = ACTIONS(3071), + [sym_this] = ACTIONS(3257), + [sym_true] = ACTIONS(3075), + [sym_false] = ACTIONS(3075), + [sym_null] = ACTIONS(3075), + [sym_undefined] = ACTIONS(3075), + [anon_sym_readonly] = ACTIONS(3077), + [anon_sym_QMARK] = ACTIONS(3079), + [anon_sym_any] = ACTIONS(3067), + [anon_sym_number] = ACTIONS(3067), + [anon_sym_boolean] = ACTIONS(3067), + [anon_sym_string] = ACTIONS(3067), + [anon_sym_symbol] = ACTIONS(3067), + [anon_sym_object] = ACTIONS(3067), + [anon_sym_abstract] = ACTIONS(3081), + [anon_sym_infer] = ACTIONS(3085), + [anon_sym_keyof] = ACTIONS(3087), + [anon_sym_unique] = ACTIONS(3089), + [anon_sym_unknown] = ACTIONS(3067), + [anon_sym_never] = ACTIONS(3067), + [anon_sym_LBRACE_PIPE] = ACTIONS(3091), [sym_html_comment] = ACTIONS(5), }, [1058] = { - [sym_import] = STATE(4763), - [sym_nested_identifier] = STATE(5701), - [sym_string] = STATE(1961), - [sym_formal_parameters] = STATE(5838), - [sym_nested_type_identifier] = STATE(1823), - [sym__type_query_member_expression_in_type_annotation] = STATE(1867), - [sym__type_query_call_expression_in_type_annotation] = STATE(1905), + [sym_import] = STATE(4650), + [sym_nested_identifier] = STATE(5567), + [sym_string] = STATE(1975), + [sym_formal_parameters] = STATE(5527), + [sym_nested_type_identifier] = STATE(1865), + [sym__type_query_member_expression_in_type_annotation] = STATE(1781), + [sym__type_query_call_expression_in_type_annotation] = STATE(1911), [sym_type] = STATE(1942), - [sym_constructor_type] = STATE(1910), - [sym_primary_type] = STATE(1913), + [sym_constructor_type] = STATE(1912), + [sym_primary_type] = STATE(1915), [sym_template_literal_type] = STATE(1916), - [sym_infer_type] = STATE(1910), + [sym_infer_type] = STATE(1912), [sym_conditional_type] = STATE(1916), [sym_generic_type] = STATE(1916), [sym_type_query] = STATE(1916), @@ -130113,4286 +128298,4064 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_type] = STATE(1916), [sym_predefined_type] = STATE(1916), [sym_object_type] = STATE(1916), - [sym_type_parameters] = STATE(5278), + [sym_type_parameters] = STATE(5243), [sym_array_type] = STATE(1916), [sym_tuple_type] = STATE(1916), - [sym_readonly_type] = STATE(1910), + [sym_readonly_type] = STATE(1912), [sym_union_type] = STATE(1916), [sym_intersection_type] = STATE(1916), - [sym_function_type] = STATE(1910), - [sym_identifier] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(3100), - [anon_sym_LBRACE] = ACTIONS(3102), - [anon_sym_typeof] = ACTIONS(3104), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3106), - [anon_sym_LPAREN] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(3110), - [anon_sym_new] = ACTIONS(3112), - [anon_sym_AMP] = ACTIONS(3114), - [anon_sym_PIPE] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3122), - [sym_number] = ACTIONS(3124), - [sym_this] = ACTIONS(3264), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [sym_null] = ACTIONS(3128), - [sym_undefined] = ACTIONS(3128), - [anon_sym_readonly] = ACTIONS(3130), - [anon_sym_QMARK] = ACTIONS(3132), - [anon_sym_any] = ACTIONS(3120), - [anon_sym_number] = ACTIONS(3120), - [anon_sym_boolean] = ACTIONS(3120), - [anon_sym_string] = ACTIONS(3120), - [anon_sym_symbol] = ACTIONS(3120), - [anon_sym_object] = ACTIONS(3120), - [anon_sym_abstract] = ACTIONS(3134), - [anon_sym_infer] = ACTIONS(3138), - [anon_sym_keyof] = ACTIONS(3140), - [anon_sym_unique] = ACTIONS(3142), - [anon_sym_unknown] = ACTIONS(3120), - [anon_sym_never] = ACTIONS(3120), - [anon_sym_LBRACE_PIPE] = ACTIONS(3144), + [sym_function_type] = STATE(1912), + [sym_identifier] = ACTIONS(3255), + [anon_sym_STAR] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3053), + [anon_sym_LPAREN] = ACTIONS(3055), + [anon_sym_LBRACK] = ACTIONS(3057), + [anon_sym_new] = ACTIONS(3059), + [anon_sym_AMP] = ACTIONS(3061), + [anon_sym_PIPE] = ACTIONS(3063), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3067), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3069), + [sym_number] = ACTIONS(3071), + [sym_this] = ACTIONS(3257), + [sym_true] = ACTIONS(3075), + [sym_false] = ACTIONS(3075), + [sym_null] = ACTIONS(3075), + [sym_undefined] = ACTIONS(3075), + [anon_sym_readonly] = ACTIONS(3077), + [anon_sym_QMARK] = ACTIONS(3079), + [anon_sym_any] = ACTIONS(3067), + [anon_sym_number] = ACTIONS(3067), + [anon_sym_boolean] = ACTIONS(3067), + [anon_sym_string] = ACTIONS(3067), + [anon_sym_symbol] = ACTIONS(3067), + [anon_sym_object] = ACTIONS(3067), + [anon_sym_abstract] = ACTIONS(3081), + [anon_sym_infer] = ACTIONS(3085), + [anon_sym_keyof] = ACTIONS(3087), + [anon_sym_unique] = ACTIONS(3089), + [anon_sym_unknown] = ACTIONS(3067), + [anon_sym_never] = ACTIONS(3067), + [anon_sym_LBRACE_PIPE] = ACTIONS(3091), [sym_html_comment] = ACTIONS(5), }, [1059] = { - [sym_import] = STATE(4763), - [sym_nested_identifier] = STATE(5701), - [sym_string] = STATE(1961), - [sym_formal_parameters] = STATE(5838), - [sym_nested_type_identifier] = STATE(1823), - [sym__type_query_member_expression_in_type_annotation] = STATE(1867), - [sym__type_query_call_expression_in_type_annotation] = STATE(1905), - [sym_type] = STATE(1943), - [sym_constructor_type] = STATE(1910), - [sym_primary_type] = STATE(1913), - [sym_template_literal_type] = STATE(1916), - [sym_infer_type] = STATE(1910), - [sym_conditional_type] = STATE(1916), - [sym_generic_type] = STATE(1916), - [sym_type_query] = STATE(1916), - [sym_index_type_query] = STATE(1916), - [sym_lookup_type] = STATE(1916), - [sym_literal_type] = STATE(1916), - [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1916), - [sym_flow_maybe_type] = STATE(1916), - [sym_parenthesized_type] = STATE(1916), - [sym_predefined_type] = STATE(1916), - [sym_object_type] = STATE(1916), - [sym_type_parameters] = STATE(5278), - [sym_array_type] = STATE(1916), - [sym_tuple_type] = STATE(1916), - [sym_readonly_type] = STATE(1910), - [sym_union_type] = STATE(1916), - [sym_intersection_type] = STATE(1916), - [sym_function_type] = STATE(1910), - [sym_identifier] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(3100), - [anon_sym_LBRACE] = ACTIONS(3102), - [anon_sym_typeof] = ACTIONS(3104), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3106), - [anon_sym_LPAREN] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(3110), - [anon_sym_new] = ACTIONS(3112), - [anon_sym_AMP] = ACTIONS(3114), - [anon_sym_PIPE] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3122), - [sym_number] = ACTIONS(3124), - [sym_this] = ACTIONS(3264), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [sym_null] = ACTIONS(3128), - [sym_undefined] = ACTIONS(3128), - [anon_sym_readonly] = ACTIONS(3130), - [anon_sym_QMARK] = ACTIONS(3132), - [anon_sym_any] = ACTIONS(3120), - [anon_sym_number] = ACTIONS(3120), - [anon_sym_boolean] = ACTIONS(3120), - [anon_sym_string] = ACTIONS(3120), - [anon_sym_symbol] = ACTIONS(3120), - [anon_sym_object] = ACTIONS(3120), - [anon_sym_abstract] = ACTIONS(3134), - [anon_sym_infer] = ACTIONS(3138), - [anon_sym_keyof] = ACTIONS(3140), - [anon_sym_unique] = ACTIONS(3142), - [anon_sym_unknown] = ACTIONS(3120), - [anon_sym_never] = ACTIONS(3120), - [anon_sym_LBRACE_PIPE] = ACTIONS(3144), + [sym_import] = STATE(4950), + [sym_nested_identifier] = STATE(5535), + [sym_string] = STATE(3265), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(3076), + [sym__type_query_call_expression_in_type_annotation] = STATE(3200), + [sym_type] = STATE(3239), + [sym_constructor_type] = STATE(3271), + [sym_primary_type] = STATE(3272), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3271), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3273), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5146), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3271), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3271), + [sym_identifier] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_new] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_this] = ACTIONS(1634), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_any] = ACTIONS(1032), + [anon_sym_number] = ACTIONS(1032), + [anon_sym_boolean] = ACTIONS(1032), + [anon_sym_string] = ACTIONS(1032), + [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_object] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_infer] = ACTIONS(1026), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), [sym_html_comment] = ACTIONS(5), }, [1060] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5574), - [sym_string] = STATE(3242), - [sym_formal_parameters] = STATE(5809), - [sym_nested_type_identifier] = STATE(3153), - [sym__type_query_member_expression_in_type_annotation] = STATE(3081), - [sym__type_query_call_expression_in_type_annotation] = STATE(3197), - [sym_type] = STATE(3244), - [sym_constructor_type] = STATE(3250), - [sym_primary_type] = STATE(3251), - [sym_template_literal_type] = STATE(3252), - [sym_infer_type] = STATE(3250), - [sym_conditional_type] = STATE(3252), - [sym_generic_type] = STATE(3252), - [sym_type_query] = STATE(3252), - [sym_index_type_query] = STATE(3252), - [sym_lookup_type] = STATE(3252), - [sym_literal_type] = STATE(3252), - [sym__number] = STATE(3253), - [sym_existential_type] = STATE(3252), - [sym_flow_maybe_type] = STATE(3252), - [sym_parenthesized_type] = STATE(3252), - [sym_predefined_type] = STATE(3252), - [sym_object_type] = STATE(3252), - [sym_type_parameters] = STATE(5159), - [sym_array_type] = STATE(3252), - [sym_tuple_type] = STATE(3252), - [sym_readonly_type] = STATE(3250), - [sym_union_type] = STATE(3252), - [sym_intersection_type] = STATE(3252), - [sym_function_type] = STATE(3250), - [sym_identifier] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_new] = ACTIONS(1635), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [anon_sym_DQUOTE] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(1651), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_import] = STATE(4950), + [sym_nested_identifier] = STATE(5535), + [sym_string] = STATE(3265), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(3076), + [sym__type_query_call_expression_in_type_annotation] = STATE(3200), + [sym_type] = STATE(3240), + [sym_constructor_type] = STATE(3271), + [sym_primary_type] = STATE(3272), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3271), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3273), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5146), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3271), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3271), + [sym_identifier] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_new] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_this] = ACTIONS(1634), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_any] = ACTIONS(1032), + [anon_sym_number] = ACTIONS(1032), + [anon_sym_boolean] = ACTIONS(1032), + [anon_sym_string] = ACTIONS(1032), + [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_object] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_infer] = ACTIONS(1026), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), [sym_html_comment] = ACTIONS(5), }, [1061] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5574), - [sym_string] = STATE(3242), - [sym_formal_parameters] = STATE(5809), - [sym_nested_type_identifier] = STATE(3153), - [sym__type_query_member_expression_in_type_annotation] = STATE(3081), - [sym__type_query_call_expression_in_type_annotation] = STATE(3197), - [sym_type] = STATE(3275), - [sym_constructor_type] = STATE(3250), - [sym_primary_type] = STATE(3251), - [sym_template_literal_type] = STATE(3252), - [sym_infer_type] = STATE(3250), - [sym_conditional_type] = STATE(3252), - [sym_generic_type] = STATE(3252), - [sym_type_query] = STATE(3252), - [sym_index_type_query] = STATE(3252), - [sym_lookup_type] = STATE(3252), - [sym_literal_type] = STATE(3252), - [sym__number] = STATE(3253), - [sym_existential_type] = STATE(3252), - [sym_flow_maybe_type] = STATE(3252), - [sym_parenthesized_type] = STATE(3252), - [sym_predefined_type] = STATE(3252), - [sym_object_type] = STATE(3252), - [sym_type_parameters] = STATE(5159), - [sym_array_type] = STATE(3252), - [sym_tuple_type] = STATE(3252), - [sym_readonly_type] = STATE(3250), - [sym_union_type] = STATE(3252), - [sym_intersection_type] = STATE(3252), - [sym_function_type] = STATE(3250), - [sym_identifier] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_new] = ACTIONS(1635), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [anon_sym_DQUOTE] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(1651), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_import] = STATE(4950), + [sym_nested_identifier] = STATE(5535), + [sym_string] = STATE(3265), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(3076), + [sym__type_query_call_expression_in_type_annotation] = STATE(3200), + [sym_type] = STATE(3243), + [sym_constructor_type] = STATE(3271), + [sym_primary_type] = STATE(3272), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3271), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3273), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5146), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3271), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3271), + [sym_identifier] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_new] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_this] = ACTIONS(1634), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_any] = ACTIONS(1032), + [anon_sym_number] = ACTIONS(1032), + [anon_sym_boolean] = ACTIONS(1032), + [anon_sym_string] = ACTIONS(1032), + [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_object] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_infer] = ACTIONS(1026), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), [sym_html_comment] = ACTIONS(5), }, [1062] = { - [sym_import] = STATE(4676), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(3304), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(4423), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5461), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4950), + [sym_nested_identifier] = STATE(5535), + [sym_string] = STATE(3265), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(3076), + [sym__type_query_call_expression_in_type_annotation] = STATE(3200), + [sym_type] = STATE(3244), + [sym_constructor_type] = STATE(3271), + [sym_primary_type] = STATE(3272), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3271), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3273), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5146), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3271), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3271), + [sym_identifier] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_new] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_this] = ACTIONS(1634), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_any] = ACTIONS(1032), + [anon_sym_number] = ACTIONS(1032), + [anon_sym_boolean] = ACTIONS(1032), + [anon_sym_string] = ACTIONS(1032), + [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_object] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_infer] = ACTIONS(1026), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), [sym_html_comment] = ACTIONS(5), }, [1063] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5574), - [sym_string] = STATE(3242), - [sym_formal_parameters] = STATE(5809), - [sym_nested_type_identifier] = STATE(3153), - [sym__type_query_member_expression_in_type_annotation] = STATE(3081), - [sym__type_query_call_expression_in_type_annotation] = STATE(3197), - [sym_type] = STATE(3273), - [sym_constructor_type] = STATE(3250), - [sym_primary_type] = STATE(3251), - [sym_template_literal_type] = STATE(3252), - [sym_infer_type] = STATE(3250), - [sym_conditional_type] = STATE(3252), - [sym_generic_type] = STATE(3252), - [sym_type_query] = STATE(3252), - [sym_index_type_query] = STATE(3252), - [sym_lookup_type] = STATE(3252), - [sym_literal_type] = STATE(3252), - [sym__number] = STATE(3253), - [sym_existential_type] = STATE(3252), - [sym_flow_maybe_type] = STATE(3252), - [sym_parenthesized_type] = STATE(3252), - [sym_predefined_type] = STATE(3252), - [sym_object_type] = STATE(3252), - [sym_type_parameters] = STATE(5159), - [sym_array_type] = STATE(3252), - [sym_tuple_type] = STATE(3252), - [sym_readonly_type] = STATE(3250), - [sym_union_type] = STATE(3252), - [sym_intersection_type] = STATE(3252), - [sym_function_type] = STATE(3250), - [sym_identifier] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_new] = ACTIONS(1635), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [anon_sym_DQUOTE] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(1651), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_import] = STATE(4531), + [sym_nested_identifier] = STATE(5486), + [sym_string] = STATE(1632), + [sym_formal_parameters] = STATE(5639), + [sym_nested_type_identifier] = STATE(1527), + [sym__type_query_member_expression_in_type_annotation] = STATE(1514), + [sym__type_query_call_expression_in_type_annotation] = STATE(1574), + [sym_type] = STATE(1594), + [sym_constructor_type] = STATE(1544), + [sym_primary_type] = STATE(1554), + [sym_template_literal_type] = STATE(1556), + [sym_infer_type] = STATE(1544), + [sym_conditional_type] = STATE(1556), + [sym_generic_type] = STATE(1556), + [sym_type_query] = STATE(1556), + [sym_index_type_query] = STATE(1556), + [sym_lookup_type] = STATE(1556), + [sym_literal_type] = STATE(1556), + [sym__number] = STATE(1536), + [sym_existential_type] = STATE(1556), + [sym_flow_maybe_type] = STATE(1556), + [sym_parenthesized_type] = STATE(1556), + [sym_predefined_type] = STATE(1556), + [sym_object_type] = STATE(1556), + [sym_type_parameters] = STATE(5205), + [sym_array_type] = STATE(1556), + [sym_tuple_type] = STATE(1556), + [sym_readonly_type] = STATE(1544), + [sym_union_type] = STATE(1556), + [sym_intersection_type] = STATE(1556), + [sym_function_type] = STATE(1544), + [sym_identifier] = ACTIONS(3251), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_typeof] = ACTIONS(3151), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_PIPE] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3169), + [sym_number] = ACTIONS(3171), + [sym_this] = ACTIONS(3253), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [sym_null] = ACTIONS(3175), + [sym_undefined] = ACTIONS(3175), + [anon_sym_readonly] = ACTIONS(3177), + [anon_sym_QMARK] = ACTIONS(3179), + [anon_sym_any] = ACTIONS(3167), + [anon_sym_number] = ACTIONS(3167), + [anon_sym_boolean] = ACTIONS(3167), + [anon_sym_string] = ACTIONS(3167), + [anon_sym_symbol] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3181), + [anon_sym_infer] = ACTIONS(3185), + [anon_sym_keyof] = ACTIONS(3187), + [anon_sym_unique] = ACTIONS(3189), + [anon_sym_unknown] = ACTIONS(3167), + [anon_sym_never] = ACTIONS(3167), + [anon_sym_LBRACE_PIPE] = ACTIONS(3191), [sym_html_comment] = ACTIONS(5), }, [1064] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5574), - [sym_string] = STATE(3242), - [sym_formal_parameters] = STATE(5809), - [sym_nested_type_identifier] = STATE(3153), - [sym__type_query_member_expression_in_type_annotation] = STATE(3081), - [sym__type_query_call_expression_in_type_annotation] = STATE(3197), - [sym_type] = STATE(3284), - [sym_constructor_type] = STATE(3250), - [sym_primary_type] = STATE(3251), - [sym_template_literal_type] = STATE(3252), - [sym_infer_type] = STATE(3250), - [sym_conditional_type] = STATE(3252), - [sym_generic_type] = STATE(3252), - [sym_type_query] = STATE(3252), - [sym_index_type_query] = STATE(3252), - [sym_lookup_type] = STATE(3252), - [sym_literal_type] = STATE(3252), - [sym__number] = STATE(3253), - [sym_existential_type] = STATE(3252), - [sym_flow_maybe_type] = STATE(3252), - [sym_parenthesized_type] = STATE(3252), - [sym_predefined_type] = STATE(3252), - [sym_object_type] = STATE(3252), - [sym_type_parameters] = STATE(5159), - [sym_array_type] = STATE(3252), - [sym_tuple_type] = STATE(3252), - [sym_readonly_type] = STATE(3250), - [sym_union_type] = STATE(3252), - [sym_intersection_type] = STATE(3252), - [sym_function_type] = STATE(3250), - [sym_identifier] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_new] = ACTIONS(1635), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [anon_sym_DQUOTE] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(1651), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_import] = STATE(4531), + [sym_nested_identifier] = STATE(5486), + [sym_string] = STATE(1632), + [sym_formal_parameters] = STATE(5639), + [sym_nested_type_identifier] = STATE(1527), + [sym__type_query_member_expression_in_type_annotation] = STATE(1514), + [sym__type_query_call_expression_in_type_annotation] = STATE(1574), + [sym_type] = STATE(1595), + [sym_constructor_type] = STATE(1544), + [sym_primary_type] = STATE(1554), + [sym_template_literal_type] = STATE(1556), + [sym_infer_type] = STATE(1544), + [sym_conditional_type] = STATE(1556), + [sym_generic_type] = STATE(1556), + [sym_type_query] = STATE(1556), + [sym_index_type_query] = STATE(1556), + [sym_lookup_type] = STATE(1556), + [sym_literal_type] = STATE(1556), + [sym__number] = STATE(1536), + [sym_existential_type] = STATE(1556), + [sym_flow_maybe_type] = STATE(1556), + [sym_parenthesized_type] = STATE(1556), + [sym_predefined_type] = STATE(1556), + [sym_object_type] = STATE(1556), + [sym_type_parameters] = STATE(5205), + [sym_array_type] = STATE(1556), + [sym_tuple_type] = STATE(1556), + [sym_readonly_type] = STATE(1544), + [sym_union_type] = STATE(1556), + [sym_intersection_type] = STATE(1556), + [sym_function_type] = STATE(1544), + [sym_identifier] = ACTIONS(3251), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_typeof] = ACTIONS(3151), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_PIPE] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3169), + [sym_number] = ACTIONS(3171), + [sym_this] = ACTIONS(3253), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [sym_null] = ACTIONS(3175), + [sym_undefined] = ACTIONS(3175), + [anon_sym_readonly] = ACTIONS(3177), + [anon_sym_QMARK] = ACTIONS(3179), + [anon_sym_any] = ACTIONS(3167), + [anon_sym_number] = ACTIONS(3167), + [anon_sym_boolean] = ACTIONS(3167), + [anon_sym_string] = ACTIONS(3167), + [anon_sym_symbol] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3181), + [anon_sym_infer] = ACTIONS(3185), + [anon_sym_keyof] = ACTIONS(3187), + [anon_sym_unique] = ACTIONS(3189), + [anon_sym_unknown] = ACTIONS(3167), + [anon_sym_never] = ACTIONS(3167), + [anon_sym_LBRACE_PIPE] = ACTIONS(3191), [sym_html_comment] = ACTIONS(5), }, [1065] = { - [sym_import] = STATE(4535), - [sym_nested_identifier] = STATE(5487), - [sym_string] = STATE(1620), - [sym_formal_parameters] = STATE(5661), - [sym_nested_type_identifier] = STATE(1526), - [sym__type_query_member_expression_in_type_annotation] = STATE(1527), - [sym__type_query_call_expression_in_type_annotation] = STATE(1573), - [sym_type] = STATE(1536), - [sym_constructor_type] = STATE(1599), - [sym_primary_type] = STATE(1597), - [sym_template_literal_type] = STATE(1601), - [sym_infer_type] = STATE(1599), - [sym_conditional_type] = STATE(1601), - [sym_generic_type] = STATE(1601), - [sym_type_query] = STATE(1601), - [sym_index_type_query] = STATE(1601), - [sym_lookup_type] = STATE(1601), - [sym_literal_type] = STATE(1601), - [sym__number] = STATE(1628), - [sym_existential_type] = STATE(1601), - [sym_flow_maybe_type] = STATE(1601), - [sym_parenthesized_type] = STATE(1601), - [sym_predefined_type] = STATE(1601), - [sym_object_type] = STATE(1601), - [sym_type_parameters] = STATE(5219), - [sym_array_type] = STATE(1601), - [sym_tuple_type] = STATE(1601), - [sym_readonly_type] = STATE(1599), - [sym_union_type] = STATE(1601), - [sym_intersection_type] = STATE(1601), - [sym_function_type] = STATE(1599), - [sym_identifier] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3150), - [anon_sym_typeof] = ACTIONS(3152), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3156), - [anon_sym_LBRACK] = ACTIONS(3158), - [anon_sym_new] = ACTIONS(3160), - [anon_sym_AMP] = ACTIONS(3162), - [anon_sym_PIPE] = ACTIONS(3164), - [anon_sym_PLUS] = ACTIONS(3166), - [anon_sym_DASH] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3170), - [sym_number] = ACTIONS(3172), - [sym_this] = ACTIONS(3260), - [sym_true] = ACTIONS(3176), - [sym_false] = ACTIONS(3176), - [sym_null] = ACTIONS(3176), - [sym_undefined] = ACTIONS(3176), - [anon_sym_readonly] = ACTIONS(3178), - [anon_sym_QMARK] = ACTIONS(3180), - [anon_sym_any] = ACTIONS(3168), - [anon_sym_number] = ACTIONS(3168), - [anon_sym_boolean] = ACTIONS(3168), - [anon_sym_string] = ACTIONS(3168), - [anon_sym_symbol] = ACTIONS(3168), - [anon_sym_object] = ACTIONS(3168), - [anon_sym_abstract] = ACTIONS(3182), - [anon_sym_infer] = ACTIONS(3186), - [anon_sym_keyof] = ACTIONS(3188), - [anon_sym_unique] = ACTIONS(3190), - [anon_sym_unknown] = ACTIONS(3168), - [anon_sym_never] = ACTIONS(3168), - [anon_sym_LBRACE_PIPE] = ACTIONS(3192), + [sym_import] = STATE(4531), + [sym_nested_identifier] = STATE(5486), + [sym_string] = STATE(1632), + [sym_formal_parameters] = STATE(5639), + [sym_nested_type_identifier] = STATE(1527), + [sym__type_query_member_expression_in_type_annotation] = STATE(1514), + [sym__type_query_call_expression_in_type_annotation] = STATE(1574), + [sym_type] = STATE(1592), + [sym_constructor_type] = STATE(1544), + [sym_primary_type] = STATE(1554), + [sym_template_literal_type] = STATE(1556), + [sym_infer_type] = STATE(1544), + [sym_conditional_type] = STATE(1556), + [sym_generic_type] = STATE(1556), + [sym_type_query] = STATE(1556), + [sym_index_type_query] = STATE(1556), + [sym_lookup_type] = STATE(1556), + [sym_literal_type] = STATE(1556), + [sym__number] = STATE(1536), + [sym_existential_type] = STATE(1556), + [sym_flow_maybe_type] = STATE(1556), + [sym_parenthesized_type] = STATE(1556), + [sym_predefined_type] = STATE(1556), + [sym_object_type] = STATE(1556), + [sym_type_parameters] = STATE(5205), + [sym_array_type] = STATE(1556), + [sym_tuple_type] = STATE(1556), + [sym_readonly_type] = STATE(1544), + [sym_union_type] = STATE(1556), + [sym_intersection_type] = STATE(1556), + [sym_function_type] = STATE(1544), + [sym_identifier] = ACTIONS(3251), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_typeof] = ACTIONS(3151), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_PIPE] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3169), + [sym_number] = ACTIONS(3171), + [sym_this] = ACTIONS(3253), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [sym_null] = ACTIONS(3175), + [sym_undefined] = ACTIONS(3175), + [anon_sym_readonly] = ACTIONS(3177), + [anon_sym_QMARK] = ACTIONS(3179), + [anon_sym_any] = ACTIONS(3167), + [anon_sym_number] = ACTIONS(3167), + [anon_sym_boolean] = ACTIONS(3167), + [anon_sym_string] = ACTIONS(3167), + [anon_sym_symbol] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3181), + [anon_sym_infer] = ACTIONS(3185), + [anon_sym_keyof] = ACTIONS(3187), + [anon_sym_unique] = ACTIONS(3189), + [anon_sym_unknown] = ACTIONS(3167), + [anon_sym_never] = ACTIONS(3167), + [anon_sym_LBRACE_PIPE] = ACTIONS(3191), [sym_html_comment] = ACTIONS(5), }, [1066] = { - [sym_import] = STATE(4535), - [sym_nested_identifier] = STATE(5487), - [sym_string] = STATE(1620), - [sym_formal_parameters] = STATE(5661), - [sym_nested_type_identifier] = STATE(1526), - [sym__type_query_member_expression_in_type_annotation] = STATE(1527), - [sym__type_query_call_expression_in_type_annotation] = STATE(1573), - [sym_type] = STATE(1537), - [sym_constructor_type] = STATE(1599), - [sym_primary_type] = STATE(1597), - [sym_template_literal_type] = STATE(1601), - [sym_infer_type] = STATE(1599), - [sym_conditional_type] = STATE(1601), - [sym_generic_type] = STATE(1601), - [sym_type_query] = STATE(1601), - [sym_index_type_query] = STATE(1601), - [sym_lookup_type] = STATE(1601), - [sym_literal_type] = STATE(1601), - [sym__number] = STATE(1628), - [sym_existential_type] = STATE(1601), - [sym_flow_maybe_type] = STATE(1601), - [sym_parenthesized_type] = STATE(1601), - [sym_predefined_type] = STATE(1601), - [sym_object_type] = STATE(1601), - [sym_type_parameters] = STATE(5219), - [sym_array_type] = STATE(1601), - [sym_tuple_type] = STATE(1601), - [sym_readonly_type] = STATE(1599), - [sym_union_type] = STATE(1601), - [sym_intersection_type] = STATE(1601), - [sym_function_type] = STATE(1599), - [sym_identifier] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3150), - [anon_sym_typeof] = ACTIONS(3152), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3156), - [anon_sym_LBRACK] = ACTIONS(3158), - [anon_sym_new] = ACTIONS(3160), - [anon_sym_AMP] = ACTIONS(3162), - [anon_sym_PIPE] = ACTIONS(3164), - [anon_sym_PLUS] = ACTIONS(3166), - [anon_sym_DASH] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3170), - [sym_number] = ACTIONS(3172), - [sym_this] = ACTIONS(3260), - [sym_true] = ACTIONS(3176), - [sym_false] = ACTIONS(3176), - [sym_null] = ACTIONS(3176), - [sym_undefined] = ACTIONS(3176), - [anon_sym_readonly] = ACTIONS(3178), - [anon_sym_QMARK] = ACTIONS(3180), - [anon_sym_any] = ACTIONS(3168), - [anon_sym_number] = ACTIONS(3168), - [anon_sym_boolean] = ACTIONS(3168), - [anon_sym_string] = ACTIONS(3168), - [anon_sym_symbol] = ACTIONS(3168), - [anon_sym_object] = ACTIONS(3168), - [anon_sym_abstract] = ACTIONS(3182), - [anon_sym_infer] = ACTIONS(3186), - [anon_sym_keyof] = ACTIONS(3188), - [anon_sym_unique] = ACTIONS(3190), - [anon_sym_unknown] = ACTIONS(3168), - [anon_sym_never] = ACTIONS(3168), - [anon_sym_LBRACE_PIPE] = ACTIONS(3192), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5486), + [sym_string] = STATE(1632), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(1527), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4541), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(1649), + [sym_template_literal_type] = STATE(1556), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(1556), + [sym_generic_type] = STATE(1556), + [sym_type_query] = STATE(1556), + [sym_index_type_query] = STATE(1556), + [sym_lookup_type] = STATE(1556), + [sym_literal_type] = STATE(1556), + [sym__number] = STATE(1536), + [sym_existential_type] = STATE(1556), + [sym_flow_maybe_type] = STATE(1556), + [sym_parenthesized_type] = STATE(1556), + [sym_predefined_type] = STATE(1556), + [sym_object_type] = STATE(1556), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(1556), + [sym_tuple_type] = STATE(1556), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(1556), + [sym_intersection_type] = STATE(1556), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3251), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_typeof] = ACTIONS(3151), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_PIPE] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3169), + [sym_number] = ACTIONS(3171), + [sym_this] = ACTIONS(3253), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [sym_null] = ACTIONS(3175), + [sym_undefined] = ACTIONS(3175), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(3179), + [anon_sym_any] = ACTIONS(3167), + [anon_sym_number] = ACTIONS(3167), + [anon_sym_boolean] = ACTIONS(3167), + [anon_sym_string] = ACTIONS(3167), + [anon_sym_symbol] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(3187), + [anon_sym_unique] = ACTIONS(3189), + [anon_sym_unknown] = ACTIONS(3167), + [anon_sym_never] = ACTIONS(3167), + [anon_sym_LBRACE_PIPE] = ACTIONS(3191), [sym_html_comment] = ACTIONS(5), }, [1067] = { - [sym_import] = STATE(4535), - [sym_nested_identifier] = STATE(5487), - [sym_string] = STATE(1620), - [sym_formal_parameters] = STATE(5661), - [sym_nested_type_identifier] = STATE(1526), - [sym__type_query_member_expression_in_type_annotation] = STATE(1527), - [sym__type_query_call_expression_in_type_annotation] = STATE(1573), - [sym_type] = STATE(1543), - [sym_constructor_type] = STATE(1599), - [sym_primary_type] = STATE(1597), - [sym_template_literal_type] = STATE(1601), - [sym_infer_type] = STATE(1599), - [sym_conditional_type] = STATE(1601), - [sym_generic_type] = STATE(1601), - [sym_type_query] = STATE(1601), - [sym_index_type_query] = STATE(1601), - [sym_lookup_type] = STATE(1601), - [sym_literal_type] = STATE(1601), - [sym__number] = STATE(1628), - [sym_existential_type] = STATE(1601), - [sym_flow_maybe_type] = STATE(1601), - [sym_parenthesized_type] = STATE(1601), - [sym_predefined_type] = STATE(1601), - [sym_object_type] = STATE(1601), - [sym_type_parameters] = STATE(5219), - [sym_array_type] = STATE(1601), - [sym_tuple_type] = STATE(1601), - [sym_readonly_type] = STATE(1599), - [sym_union_type] = STATE(1601), - [sym_intersection_type] = STATE(1601), - [sym_function_type] = STATE(1599), - [sym_identifier] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3150), - [anon_sym_typeof] = ACTIONS(3152), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3156), - [anon_sym_LBRACK] = ACTIONS(3158), - [anon_sym_new] = ACTIONS(3160), - [anon_sym_AMP] = ACTIONS(3162), - [anon_sym_PIPE] = ACTIONS(3164), - [anon_sym_PLUS] = ACTIONS(3166), - [anon_sym_DASH] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3170), - [sym_number] = ACTIONS(3172), - [sym_this] = ACTIONS(3260), - [sym_true] = ACTIONS(3176), - [sym_false] = ACTIONS(3176), - [sym_null] = ACTIONS(3176), - [sym_undefined] = ACTIONS(3176), - [anon_sym_readonly] = ACTIONS(3178), - [anon_sym_QMARK] = ACTIONS(3180), - [anon_sym_any] = ACTIONS(3168), - [anon_sym_number] = ACTIONS(3168), - [anon_sym_boolean] = ACTIONS(3168), - [anon_sym_string] = ACTIONS(3168), - [anon_sym_symbol] = ACTIONS(3168), - [anon_sym_object] = ACTIONS(3168), - [anon_sym_abstract] = ACTIONS(3182), - [anon_sym_infer] = ACTIONS(3186), - [anon_sym_keyof] = ACTIONS(3188), - [anon_sym_unique] = ACTIONS(3190), - [anon_sym_unknown] = ACTIONS(3168), - [anon_sym_never] = ACTIONS(3168), - [anon_sym_LBRACE_PIPE] = ACTIONS(3192), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5486), + [sym_string] = STATE(1632), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(1527), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4541), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(1558), + [sym_template_literal_type] = STATE(1556), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(1556), + [sym_generic_type] = STATE(1556), + [sym_type_query] = STATE(1556), + [sym_index_type_query] = STATE(1556), + [sym_lookup_type] = STATE(1556), + [sym_literal_type] = STATE(1556), + [sym__number] = STATE(1536), + [sym_existential_type] = STATE(1556), + [sym_flow_maybe_type] = STATE(1556), + [sym_parenthesized_type] = STATE(1556), + [sym_predefined_type] = STATE(1556), + [sym_object_type] = STATE(1556), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(1556), + [sym_tuple_type] = STATE(1556), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(1556), + [sym_intersection_type] = STATE(1556), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3251), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_typeof] = ACTIONS(3151), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_PIPE] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3169), + [sym_number] = ACTIONS(3171), + [sym_this] = ACTIONS(3253), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [sym_null] = ACTIONS(3175), + [sym_undefined] = ACTIONS(3175), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(3179), + [anon_sym_any] = ACTIONS(3167), + [anon_sym_number] = ACTIONS(3167), + [anon_sym_boolean] = ACTIONS(3167), + [anon_sym_string] = ACTIONS(3167), + [anon_sym_symbol] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(3187), + [anon_sym_unique] = ACTIONS(3189), + [anon_sym_unknown] = ACTIONS(3167), + [anon_sym_never] = ACTIONS(3167), + [anon_sym_LBRACE_PIPE] = ACTIONS(3191), [sym_html_comment] = ACTIONS(5), }, [1068] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5487), - [sym_string] = STATE(1620), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(1526), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(4539), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(1548), - [sym_template_literal_type] = STATE(1601), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(1601), - [sym_generic_type] = STATE(1601), - [sym_type_query] = STATE(1601), - [sym_index_type_query] = STATE(1601), - [sym_lookup_type] = STATE(1601), - [sym_literal_type] = STATE(1601), - [sym__number] = STATE(1628), - [sym_existential_type] = STATE(1601), - [sym_flow_maybe_type] = STATE(1601), - [sym_parenthesized_type] = STATE(1601), - [sym_predefined_type] = STATE(1601), - [sym_object_type] = STATE(1601), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(1601), - [sym_tuple_type] = STATE(1601), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(1601), - [sym_intersection_type] = STATE(1601), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3150), - [anon_sym_typeof] = ACTIONS(3152), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3156), - [anon_sym_LBRACK] = ACTIONS(3158), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(3162), - [anon_sym_PIPE] = ACTIONS(3164), - [anon_sym_PLUS] = ACTIONS(3166), - [anon_sym_DASH] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3170), - [sym_number] = ACTIONS(3172), - [sym_this] = ACTIONS(3260), - [sym_true] = ACTIONS(3176), - [sym_false] = ACTIONS(3176), - [sym_null] = ACTIONS(3176), - [sym_undefined] = ACTIONS(3176), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(3180), - [anon_sym_any] = ACTIONS(3168), - [anon_sym_number] = ACTIONS(3168), - [anon_sym_boolean] = ACTIONS(3168), - [anon_sym_string] = ACTIONS(3168), - [anon_sym_symbol] = ACTIONS(3168), - [anon_sym_object] = ACTIONS(3168), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(3188), - [anon_sym_unique] = ACTIONS(3190), - [anon_sym_unknown] = ACTIONS(3168), - [anon_sym_never] = ACTIONS(3168), - [anon_sym_LBRACE_PIPE] = ACTIONS(3192), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3021), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1069] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5487), - [sym_string] = STATE(1620), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(1526), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(4539), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(1558), - [sym_template_literal_type] = STATE(1601), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(1601), - [sym_generic_type] = STATE(1601), - [sym_type_query] = STATE(1601), - [sym_index_type_query] = STATE(1601), - [sym_lookup_type] = STATE(1601), - [sym_literal_type] = STATE(1601), - [sym__number] = STATE(1628), - [sym_existential_type] = STATE(1601), - [sym_flow_maybe_type] = STATE(1601), - [sym_parenthesized_type] = STATE(1601), - [sym_predefined_type] = STATE(1601), - [sym_object_type] = STATE(1601), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(1601), - [sym_tuple_type] = STATE(1601), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(1601), - [sym_intersection_type] = STATE(1601), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3150), - [anon_sym_typeof] = ACTIONS(3152), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3156), - [anon_sym_LBRACK] = ACTIONS(3158), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(3162), - [anon_sym_PIPE] = ACTIONS(3164), - [anon_sym_PLUS] = ACTIONS(3166), - [anon_sym_DASH] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3170), - [sym_number] = ACTIONS(3172), - [sym_this] = ACTIONS(3260), - [sym_true] = ACTIONS(3176), - [sym_false] = ACTIONS(3176), - [sym_null] = ACTIONS(3176), - [sym_undefined] = ACTIONS(3176), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(3180), - [anon_sym_any] = ACTIONS(3168), - [anon_sym_number] = ACTIONS(3168), - [anon_sym_boolean] = ACTIONS(3168), - [anon_sym_string] = ACTIONS(3168), - [anon_sym_symbol] = ACTIONS(3168), - [anon_sym_object] = ACTIONS(3168), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(3188), - [anon_sym_unique] = ACTIONS(3190), - [anon_sym_unknown] = ACTIONS(3168), - [anon_sym_never] = ACTIONS(3168), - [anon_sym_LBRACE_PIPE] = ACTIONS(3192), + [sym_import] = STATE(4531), + [sym_nested_identifier] = STATE(5486), + [sym_string] = STATE(1632), + [sym_formal_parameters] = STATE(5639), + [sym_nested_type_identifier] = STATE(1527), + [sym__type_query_member_expression_in_type_annotation] = STATE(1514), + [sym__type_query_call_expression_in_type_annotation] = STATE(1574), + [sym_type] = STATE(1642), + [sym_constructor_type] = STATE(1544), + [sym_primary_type] = STATE(1554), + [sym_template_literal_type] = STATE(1556), + [sym_infer_type] = STATE(1544), + [sym_conditional_type] = STATE(1556), + [sym_generic_type] = STATE(1556), + [sym_type_query] = STATE(1556), + [sym_index_type_query] = STATE(1556), + [sym_lookup_type] = STATE(1556), + [sym_literal_type] = STATE(1556), + [sym__number] = STATE(1536), + [sym_existential_type] = STATE(1556), + [sym_flow_maybe_type] = STATE(1556), + [sym_parenthesized_type] = STATE(1556), + [sym_predefined_type] = STATE(1556), + [sym_object_type] = STATE(1556), + [sym_type_parameters] = STATE(5205), + [sym_array_type] = STATE(1556), + [sym_tuple_type] = STATE(1556), + [sym_readonly_type] = STATE(1544), + [sym_union_type] = STATE(1556), + [sym_intersection_type] = STATE(1556), + [sym_function_type] = STATE(1544), + [sym_identifier] = ACTIONS(3251), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_typeof] = ACTIONS(3151), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_PIPE] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3169), + [sym_number] = ACTIONS(3171), + [sym_this] = ACTIONS(3253), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [sym_null] = ACTIONS(3175), + [sym_undefined] = ACTIONS(3175), + [anon_sym_readonly] = ACTIONS(3177), + [anon_sym_QMARK] = ACTIONS(3179), + [anon_sym_any] = ACTIONS(3167), + [anon_sym_number] = ACTIONS(3167), + [anon_sym_boolean] = ACTIONS(3167), + [anon_sym_string] = ACTIONS(3167), + [anon_sym_symbol] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3181), + [anon_sym_infer] = ACTIONS(3185), + [anon_sym_keyof] = ACTIONS(3187), + [anon_sym_unique] = ACTIONS(3189), + [anon_sym_unknown] = ACTIONS(3167), + [anon_sym_never] = ACTIONS(3167), + [anon_sym_LBRACE_PIPE] = ACTIONS(3191), [sym_html_comment] = ACTIONS(5), }, [1070] = { - [sym_import] = STATE(4535), - [sym_nested_identifier] = STATE(5487), - [sym_string] = STATE(1620), - [sym_formal_parameters] = STATE(5661), - [sym_nested_type_identifier] = STATE(1526), - [sym__type_query_member_expression_in_type_annotation] = STATE(1527), - [sym__type_query_call_expression_in_type_annotation] = STATE(1573), - [sym_type] = STATE(1606), - [sym_constructor_type] = STATE(1599), - [sym_primary_type] = STATE(1597), - [sym_template_literal_type] = STATE(1601), - [sym_infer_type] = STATE(1599), - [sym_conditional_type] = STATE(1601), - [sym_generic_type] = STATE(1601), - [sym_type_query] = STATE(1601), - [sym_index_type_query] = STATE(1601), - [sym_lookup_type] = STATE(1601), - [sym_literal_type] = STATE(1601), - [sym__number] = STATE(1628), - [sym_existential_type] = STATE(1601), - [sym_flow_maybe_type] = STATE(1601), - [sym_parenthesized_type] = STATE(1601), - [sym_predefined_type] = STATE(1601), - [sym_object_type] = STATE(1601), - [sym_type_parameters] = STATE(5219), - [sym_array_type] = STATE(1601), - [sym_tuple_type] = STATE(1601), - [sym_readonly_type] = STATE(1599), - [sym_union_type] = STATE(1601), - [sym_intersection_type] = STATE(1601), - [sym_function_type] = STATE(1599), - [sym_identifier] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3150), - [anon_sym_typeof] = ACTIONS(3152), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3156), - [anon_sym_LBRACK] = ACTIONS(3158), - [anon_sym_new] = ACTIONS(3160), - [anon_sym_AMP] = ACTIONS(3162), - [anon_sym_PIPE] = ACTIONS(3164), - [anon_sym_PLUS] = ACTIONS(3166), - [anon_sym_DASH] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3170), - [sym_number] = ACTIONS(3172), - [sym_this] = ACTIONS(3260), - [sym_true] = ACTIONS(3176), - [sym_false] = ACTIONS(3176), - [sym_null] = ACTIONS(3176), - [sym_undefined] = ACTIONS(3176), - [anon_sym_readonly] = ACTIONS(3178), - [anon_sym_QMARK] = ACTIONS(3180), - [anon_sym_any] = ACTIONS(3168), - [anon_sym_number] = ACTIONS(3168), - [anon_sym_boolean] = ACTIONS(3168), - [anon_sym_string] = ACTIONS(3168), - [anon_sym_symbol] = ACTIONS(3168), - [anon_sym_object] = ACTIONS(3168), - [anon_sym_abstract] = ACTIONS(3182), - [anon_sym_infer] = ACTIONS(3186), - [anon_sym_keyof] = ACTIONS(3188), - [anon_sym_unique] = ACTIONS(3190), - [anon_sym_unknown] = ACTIONS(3168), - [anon_sym_never] = ACTIONS(3168), - [anon_sym_LBRACE_PIPE] = ACTIONS(3192), + [sym_import] = STATE(4531), + [sym_nested_identifier] = STATE(5486), + [sym_string] = STATE(1632), + [sym_formal_parameters] = STATE(5639), + [sym_nested_type_identifier] = STATE(1527), + [sym__type_query_member_expression_in_type_annotation] = STATE(1514), + [sym__type_query_call_expression_in_type_annotation] = STATE(1574), + [sym_type] = STATE(1644), + [sym_constructor_type] = STATE(1544), + [sym_primary_type] = STATE(1554), + [sym_template_literal_type] = STATE(1556), + [sym_infer_type] = STATE(1544), + [sym_conditional_type] = STATE(1556), + [sym_generic_type] = STATE(1556), + [sym_type_query] = STATE(1556), + [sym_index_type_query] = STATE(1556), + [sym_lookup_type] = STATE(1556), + [sym_literal_type] = STATE(1556), + [sym__number] = STATE(1536), + [sym_existential_type] = STATE(1556), + [sym_flow_maybe_type] = STATE(1556), + [sym_parenthesized_type] = STATE(1556), + [sym_predefined_type] = STATE(1556), + [sym_object_type] = STATE(1556), + [sym_type_parameters] = STATE(5205), + [sym_array_type] = STATE(1556), + [sym_tuple_type] = STATE(1556), + [sym_readonly_type] = STATE(1544), + [sym_union_type] = STATE(1556), + [sym_intersection_type] = STATE(1556), + [sym_function_type] = STATE(1544), + [sym_identifier] = ACTIONS(3251), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_typeof] = ACTIONS(3151), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_PIPE] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3169), + [sym_number] = ACTIONS(3171), + [sym_this] = ACTIONS(3253), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [sym_null] = ACTIONS(3175), + [sym_undefined] = ACTIONS(3175), + [anon_sym_readonly] = ACTIONS(3177), + [anon_sym_QMARK] = ACTIONS(3179), + [anon_sym_any] = ACTIONS(3167), + [anon_sym_number] = ACTIONS(3167), + [anon_sym_boolean] = ACTIONS(3167), + [anon_sym_string] = ACTIONS(3167), + [anon_sym_symbol] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3181), + [anon_sym_infer] = ACTIONS(3185), + [anon_sym_keyof] = ACTIONS(3187), + [anon_sym_unique] = ACTIONS(3189), + [anon_sym_unknown] = ACTIONS(3167), + [anon_sym_never] = ACTIONS(3167), + [anon_sym_LBRACE_PIPE] = ACTIONS(3191), [sym_html_comment] = ACTIONS(5), }, [1071] = { - [sym_import] = STATE(4535), - [sym_nested_identifier] = STATE(5487), - [sym_string] = STATE(1620), - [sym_formal_parameters] = STATE(5661), - [sym_nested_type_identifier] = STATE(1526), - [sym__type_query_member_expression_in_type_annotation] = STATE(1527), - [sym__type_query_call_expression_in_type_annotation] = STATE(1573), - [sym_type] = STATE(1613), - [sym_constructor_type] = STATE(1599), - [sym_primary_type] = STATE(1597), - [sym_template_literal_type] = STATE(1601), - [sym_infer_type] = STATE(1599), - [sym_conditional_type] = STATE(1601), - [sym_generic_type] = STATE(1601), - [sym_type_query] = STATE(1601), - [sym_index_type_query] = STATE(1601), - [sym_lookup_type] = STATE(1601), - [sym_literal_type] = STATE(1601), - [sym__number] = STATE(1628), - [sym_existential_type] = STATE(1601), - [sym_flow_maybe_type] = STATE(1601), - [sym_parenthesized_type] = STATE(1601), - [sym_predefined_type] = STATE(1601), - [sym_object_type] = STATE(1601), - [sym_type_parameters] = STATE(5219), - [sym_array_type] = STATE(1601), - [sym_tuple_type] = STATE(1601), - [sym_readonly_type] = STATE(1599), - [sym_union_type] = STATE(1601), - [sym_intersection_type] = STATE(1601), - [sym_function_type] = STATE(1599), - [sym_identifier] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3150), - [anon_sym_typeof] = ACTIONS(3152), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3156), - [anon_sym_LBRACK] = ACTIONS(3158), - [anon_sym_new] = ACTIONS(3160), - [anon_sym_AMP] = ACTIONS(3162), - [anon_sym_PIPE] = ACTIONS(3164), - [anon_sym_PLUS] = ACTIONS(3166), - [anon_sym_DASH] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3170), - [sym_number] = ACTIONS(3172), - [sym_this] = ACTIONS(3260), - [sym_true] = ACTIONS(3176), - [sym_false] = ACTIONS(3176), - [sym_null] = ACTIONS(3176), - [sym_undefined] = ACTIONS(3176), - [anon_sym_readonly] = ACTIONS(3178), - [anon_sym_QMARK] = ACTIONS(3180), - [anon_sym_any] = ACTIONS(3168), - [anon_sym_number] = ACTIONS(3168), - [anon_sym_boolean] = ACTIONS(3168), - [anon_sym_string] = ACTIONS(3168), - [anon_sym_symbol] = ACTIONS(3168), - [anon_sym_object] = ACTIONS(3168), - [anon_sym_abstract] = ACTIONS(3182), - [anon_sym_infer] = ACTIONS(3186), - [anon_sym_keyof] = ACTIONS(3188), - [anon_sym_unique] = ACTIONS(3190), - [anon_sym_unknown] = ACTIONS(3168), - [anon_sym_never] = ACTIONS(3168), - [anon_sym_LBRACE_PIPE] = ACTIONS(3192), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4437), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1072] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3045), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4531), + [sym_nested_identifier] = STATE(5486), + [sym_string] = STATE(1632), + [sym_formal_parameters] = STATE(5639), + [sym_nested_type_identifier] = STATE(1527), + [sym__type_query_member_expression_in_type_annotation] = STATE(1514), + [sym__type_query_call_expression_in_type_annotation] = STATE(1574), + [sym_type] = STATE(1553), + [sym_constructor_type] = STATE(1544), + [sym_primary_type] = STATE(1554), + [sym_template_literal_type] = STATE(1556), + [sym_infer_type] = STATE(1544), + [sym_conditional_type] = STATE(1556), + [sym_generic_type] = STATE(1556), + [sym_type_query] = STATE(1556), + [sym_index_type_query] = STATE(1556), + [sym_lookup_type] = STATE(1556), + [sym_literal_type] = STATE(1556), + [sym__number] = STATE(1536), + [sym_existential_type] = STATE(1556), + [sym_flow_maybe_type] = STATE(1556), + [sym_parenthesized_type] = STATE(1556), + [sym_predefined_type] = STATE(1556), + [sym_object_type] = STATE(1556), + [sym_type_parameters] = STATE(5205), + [sym_array_type] = STATE(1556), + [sym_tuple_type] = STATE(1556), + [sym_readonly_type] = STATE(1544), + [sym_union_type] = STATE(1556), + [sym_intersection_type] = STATE(1556), + [sym_function_type] = STATE(1544), + [sym_identifier] = ACTIONS(3251), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_typeof] = ACTIONS(3151), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_PIPE] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3169), + [sym_number] = ACTIONS(3171), + [sym_this] = ACTIONS(3253), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [sym_null] = ACTIONS(3175), + [sym_undefined] = ACTIONS(3175), + [anon_sym_readonly] = ACTIONS(3177), + [anon_sym_QMARK] = ACTIONS(3179), + [anon_sym_any] = ACTIONS(3167), + [anon_sym_number] = ACTIONS(3167), + [anon_sym_boolean] = ACTIONS(3167), + [anon_sym_string] = ACTIONS(3167), + [anon_sym_symbol] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3181), + [anon_sym_infer] = ACTIONS(3185), + [anon_sym_keyof] = ACTIONS(3187), + [anon_sym_unique] = ACTIONS(3189), + [anon_sym_unknown] = ACTIONS(3167), + [anon_sym_never] = ACTIONS(3167), + [anon_sym_LBRACE_PIPE] = ACTIONS(3191), [sym_html_comment] = ACTIONS(5), }, [1073] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3872), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4531), + [sym_nested_identifier] = STATE(5486), + [sym_string] = STATE(1632), + [sym_formal_parameters] = STATE(5639), + [sym_nested_type_identifier] = STATE(1527), + [sym__type_query_member_expression_in_type_annotation] = STATE(1514), + [sym__type_query_call_expression_in_type_annotation] = STATE(1574), + [sym_type] = STATE(1557), + [sym_constructor_type] = STATE(1544), + [sym_primary_type] = STATE(1554), + [sym_template_literal_type] = STATE(1556), + [sym_infer_type] = STATE(1544), + [sym_conditional_type] = STATE(1556), + [sym_generic_type] = STATE(1556), + [sym_type_query] = STATE(1556), + [sym_index_type_query] = STATE(1556), + [sym_lookup_type] = STATE(1556), + [sym_literal_type] = STATE(1556), + [sym__number] = STATE(1536), + [sym_existential_type] = STATE(1556), + [sym_flow_maybe_type] = STATE(1556), + [sym_parenthesized_type] = STATE(1556), + [sym_predefined_type] = STATE(1556), + [sym_object_type] = STATE(1556), + [sym_type_parameters] = STATE(5205), + [sym_array_type] = STATE(1556), + [sym_tuple_type] = STATE(1556), + [sym_readonly_type] = STATE(1544), + [sym_union_type] = STATE(1556), + [sym_intersection_type] = STATE(1556), + [sym_function_type] = STATE(1544), + [sym_identifier] = ACTIONS(3251), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_typeof] = ACTIONS(3151), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_PIPE] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3169), + [sym_number] = ACTIONS(3171), + [sym_this] = ACTIONS(3253), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [sym_null] = ACTIONS(3175), + [sym_undefined] = ACTIONS(3175), + [anon_sym_readonly] = ACTIONS(3177), + [anon_sym_QMARK] = ACTIONS(3179), + [anon_sym_any] = ACTIONS(3167), + [anon_sym_number] = ACTIONS(3167), + [anon_sym_boolean] = ACTIONS(3167), + [anon_sym_string] = ACTIONS(3167), + [anon_sym_symbol] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3181), + [anon_sym_infer] = ACTIONS(3185), + [anon_sym_keyof] = ACTIONS(3187), + [anon_sym_unique] = ACTIONS(3189), + [anon_sym_unknown] = ACTIONS(3167), + [anon_sym_never] = ACTIONS(3167), + [anon_sym_LBRACE_PIPE] = ACTIONS(3191), [sym_html_comment] = ACTIONS(5), }, [1074] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(4432), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4415), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1075] = { - [sym_import] = STATE(4535), - [sym_nested_identifier] = STATE(5487), - [sym_string] = STATE(1620), - [sym_formal_parameters] = STATE(5661), - [sym_nested_type_identifier] = STATE(1526), - [sym__type_query_member_expression_in_type_annotation] = STATE(1527), - [sym__type_query_call_expression_in_type_annotation] = STATE(1573), - [sym_type] = STATE(1549), - [sym_constructor_type] = STATE(1599), - [sym_primary_type] = STATE(1597), - [sym_template_literal_type] = STATE(1601), - [sym_infer_type] = STATE(1599), - [sym_conditional_type] = STATE(1601), - [sym_generic_type] = STATE(1601), - [sym_type_query] = STATE(1601), - [sym_index_type_query] = STATE(1601), - [sym_lookup_type] = STATE(1601), - [sym_literal_type] = STATE(1601), - [sym__number] = STATE(1628), - [sym_existential_type] = STATE(1601), - [sym_flow_maybe_type] = STATE(1601), - [sym_parenthesized_type] = STATE(1601), - [sym_predefined_type] = STATE(1601), - [sym_object_type] = STATE(1601), - [sym_type_parameters] = STATE(5219), - [sym_array_type] = STATE(1601), - [sym_tuple_type] = STATE(1601), - [sym_readonly_type] = STATE(1599), - [sym_union_type] = STATE(1601), - [sym_intersection_type] = STATE(1601), - [sym_function_type] = STATE(1599), - [sym_identifier] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3150), - [anon_sym_typeof] = ACTIONS(3152), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3156), - [anon_sym_LBRACK] = ACTIONS(3158), - [anon_sym_new] = ACTIONS(3160), - [anon_sym_AMP] = ACTIONS(3162), - [anon_sym_PIPE] = ACTIONS(3164), - [anon_sym_PLUS] = ACTIONS(3166), - [anon_sym_DASH] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3170), - [sym_number] = ACTIONS(3172), - [sym_this] = ACTIONS(3260), - [sym_true] = ACTIONS(3176), - [sym_false] = ACTIONS(3176), - [sym_null] = ACTIONS(3176), - [sym_undefined] = ACTIONS(3176), - [anon_sym_readonly] = ACTIONS(3178), - [anon_sym_QMARK] = ACTIONS(3180), - [anon_sym_any] = ACTIONS(3168), - [anon_sym_number] = ACTIONS(3168), - [anon_sym_boolean] = ACTIONS(3168), - [anon_sym_string] = ACTIONS(3168), - [anon_sym_symbol] = ACTIONS(3168), - [anon_sym_object] = ACTIONS(3168), - [anon_sym_abstract] = ACTIONS(3182), - [anon_sym_infer] = ACTIONS(3186), - [anon_sym_keyof] = ACTIONS(3188), - [anon_sym_unique] = ACTIONS(3190), - [anon_sym_unknown] = ACTIONS(3168), - [anon_sym_never] = ACTIONS(3168), - [anon_sym_LBRACE_PIPE] = ACTIONS(3192), + [sym_import] = STATE(4531), + [sym_nested_identifier] = STATE(5486), + [sym_string] = STATE(1632), + [sym_formal_parameters] = STATE(5639), + [sym_nested_type_identifier] = STATE(1527), + [sym__type_query_member_expression_in_type_annotation] = STATE(1514), + [sym__type_query_call_expression_in_type_annotation] = STATE(1574), + [sym_type] = STATE(1577), + [sym_constructor_type] = STATE(1544), + [sym_primary_type] = STATE(1554), + [sym_template_literal_type] = STATE(1556), + [sym_infer_type] = STATE(1544), + [sym_conditional_type] = STATE(1556), + [sym_generic_type] = STATE(1556), + [sym_type_query] = STATE(1556), + [sym_index_type_query] = STATE(1556), + [sym_lookup_type] = STATE(1556), + [sym_literal_type] = STATE(1556), + [sym__number] = STATE(1536), + [sym_existential_type] = STATE(1556), + [sym_flow_maybe_type] = STATE(1556), + [sym_parenthesized_type] = STATE(1556), + [sym_predefined_type] = STATE(1556), + [sym_object_type] = STATE(1556), + [sym_type_parameters] = STATE(5205), + [sym_array_type] = STATE(1556), + [sym_tuple_type] = STATE(1556), + [sym_readonly_type] = STATE(1544), + [sym_union_type] = STATE(1556), + [sym_intersection_type] = STATE(1556), + [sym_function_type] = STATE(1544), + [sym_identifier] = ACTIONS(3251), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_typeof] = ACTIONS(3151), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_PIPE] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3169), + [sym_number] = ACTIONS(3171), + [sym_this] = ACTIONS(3253), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [sym_null] = ACTIONS(3175), + [sym_undefined] = ACTIONS(3175), + [anon_sym_readonly] = ACTIONS(3177), + [anon_sym_QMARK] = ACTIONS(3179), + [anon_sym_any] = ACTIONS(3167), + [anon_sym_number] = ACTIONS(3167), + [anon_sym_boolean] = ACTIONS(3167), + [anon_sym_string] = ACTIONS(3167), + [anon_sym_symbol] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3181), + [anon_sym_infer] = ACTIONS(3185), + [anon_sym_keyof] = ACTIONS(3187), + [anon_sym_unique] = ACTIONS(3189), + [anon_sym_unknown] = ACTIONS(3167), + [anon_sym_never] = ACTIONS(3167), + [anon_sym_LBRACE_PIPE] = ACTIONS(3191), [sym_html_comment] = ACTIONS(5), }, [1076] = { - [sym_import] = STATE(4535), - [sym_nested_identifier] = STATE(5487), - [sym_string] = STATE(1620), - [sym_formal_parameters] = STATE(5661), - [sym_nested_type_identifier] = STATE(1526), - [sym__type_query_member_expression_in_type_annotation] = STATE(1527), - [sym__type_query_call_expression_in_type_annotation] = STATE(1573), - [sym_type] = STATE(1554), - [sym_constructor_type] = STATE(1599), - [sym_primary_type] = STATE(1597), - [sym_template_literal_type] = STATE(1601), - [sym_infer_type] = STATE(1599), - [sym_conditional_type] = STATE(1601), - [sym_generic_type] = STATE(1601), - [sym_type_query] = STATE(1601), - [sym_index_type_query] = STATE(1601), - [sym_lookup_type] = STATE(1601), - [sym_literal_type] = STATE(1601), - [sym__number] = STATE(1628), - [sym_existential_type] = STATE(1601), - [sym_flow_maybe_type] = STATE(1601), - [sym_parenthesized_type] = STATE(1601), - [sym_predefined_type] = STATE(1601), - [sym_object_type] = STATE(1601), - [sym_type_parameters] = STATE(5219), - [sym_array_type] = STATE(1601), - [sym_tuple_type] = STATE(1601), - [sym_readonly_type] = STATE(1599), - [sym_union_type] = STATE(1601), - [sym_intersection_type] = STATE(1601), - [sym_function_type] = STATE(1599), - [sym_identifier] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3150), - [anon_sym_typeof] = ACTIONS(3152), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3156), - [anon_sym_LBRACK] = ACTIONS(3158), - [anon_sym_new] = ACTIONS(3160), - [anon_sym_AMP] = ACTIONS(3162), - [anon_sym_PIPE] = ACTIONS(3164), - [anon_sym_PLUS] = ACTIONS(3166), - [anon_sym_DASH] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3170), - [sym_number] = ACTIONS(3172), - [sym_this] = ACTIONS(3260), - [sym_true] = ACTIONS(3176), - [sym_false] = ACTIONS(3176), - [sym_null] = ACTIONS(3176), - [sym_undefined] = ACTIONS(3176), - [anon_sym_readonly] = ACTIONS(3178), - [anon_sym_QMARK] = ACTIONS(3180), - [anon_sym_any] = ACTIONS(3168), - [anon_sym_number] = ACTIONS(3168), - [anon_sym_boolean] = ACTIONS(3168), - [anon_sym_string] = ACTIONS(3168), - [anon_sym_symbol] = ACTIONS(3168), - [anon_sym_object] = ACTIONS(3168), - [anon_sym_abstract] = ACTIONS(3182), - [anon_sym_infer] = ACTIONS(3186), - [anon_sym_keyof] = ACTIONS(3188), - [anon_sym_unique] = ACTIONS(3190), - [anon_sym_unknown] = ACTIONS(3168), - [anon_sym_never] = ACTIONS(3168), - [anon_sym_LBRACE_PIPE] = ACTIONS(3192), + [sym_import] = STATE(4531), + [sym_nested_identifier] = STATE(5486), + [sym_string] = STATE(1632), + [sym_formal_parameters] = STATE(5639), + [sym_nested_type_identifier] = STATE(1527), + [sym__type_query_member_expression_in_type_annotation] = STATE(1514), + [sym__type_query_call_expression_in_type_annotation] = STATE(1574), + [sym_type] = STATE(1578), + [sym_constructor_type] = STATE(1544), + [sym_primary_type] = STATE(1554), + [sym_template_literal_type] = STATE(1556), + [sym_infer_type] = STATE(1544), + [sym_conditional_type] = STATE(1556), + [sym_generic_type] = STATE(1556), + [sym_type_query] = STATE(1556), + [sym_index_type_query] = STATE(1556), + [sym_lookup_type] = STATE(1556), + [sym_literal_type] = STATE(1556), + [sym__number] = STATE(1536), + [sym_existential_type] = STATE(1556), + [sym_flow_maybe_type] = STATE(1556), + [sym_parenthesized_type] = STATE(1556), + [sym_predefined_type] = STATE(1556), + [sym_object_type] = STATE(1556), + [sym_type_parameters] = STATE(5205), + [sym_array_type] = STATE(1556), + [sym_tuple_type] = STATE(1556), + [sym_readonly_type] = STATE(1544), + [sym_union_type] = STATE(1556), + [sym_intersection_type] = STATE(1556), + [sym_function_type] = STATE(1544), + [sym_identifier] = ACTIONS(3251), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_typeof] = ACTIONS(3151), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_PIPE] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3169), + [sym_number] = ACTIONS(3171), + [sym_this] = ACTIONS(3253), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [sym_null] = ACTIONS(3175), + [sym_undefined] = ACTIONS(3175), + [anon_sym_readonly] = ACTIONS(3177), + [anon_sym_QMARK] = ACTIONS(3179), + [anon_sym_any] = ACTIONS(3167), + [anon_sym_number] = ACTIONS(3167), + [anon_sym_boolean] = ACTIONS(3167), + [anon_sym_string] = ACTIONS(3167), + [anon_sym_symbol] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3181), + [anon_sym_infer] = ACTIONS(3185), + [anon_sym_keyof] = ACTIONS(3187), + [anon_sym_unique] = ACTIONS(3189), + [anon_sym_unknown] = ACTIONS(3167), + [anon_sym_never] = ACTIONS(3167), + [anon_sym_LBRACE_PIPE] = ACTIONS(3191), [sym_html_comment] = ACTIONS(5), }, [1077] = { - [sym_import] = STATE(4535), - [sym_nested_identifier] = STATE(5487), - [sym_string] = STATE(1620), - [sym_formal_parameters] = STATE(5661), - [sym_nested_type_identifier] = STATE(1526), - [sym__type_query_member_expression_in_type_annotation] = STATE(1527), - [sym__type_query_call_expression_in_type_annotation] = STATE(1573), - [sym_type] = STATE(1528), - [sym_constructor_type] = STATE(1599), - [sym_primary_type] = STATE(1597), - [sym_template_literal_type] = STATE(1601), - [sym_infer_type] = STATE(1599), - [sym_conditional_type] = STATE(1601), - [sym_generic_type] = STATE(1601), - [sym_type_query] = STATE(1601), - [sym_index_type_query] = STATE(1601), - [sym_lookup_type] = STATE(1601), - [sym_literal_type] = STATE(1601), - [sym__number] = STATE(1628), - [sym_existential_type] = STATE(1601), - [sym_flow_maybe_type] = STATE(1601), - [sym_parenthesized_type] = STATE(1601), - [sym_predefined_type] = STATE(1601), - [sym_object_type] = STATE(1601), - [sym_type_parameters] = STATE(5219), - [sym_array_type] = STATE(1601), - [sym_tuple_type] = STATE(1601), - [sym_readonly_type] = STATE(1599), - [sym_union_type] = STATE(1601), - [sym_intersection_type] = STATE(1601), - [sym_function_type] = STATE(1599), - [sym_identifier] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3150), - [anon_sym_typeof] = ACTIONS(3152), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3156), - [anon_sym_LBRACK] = ACTIONS(3158), - [anon_sym_new] = ACTIONS(3160), - [anon_sym_AMP] = ACTIONS(3162), - [anon_sym_PIPE] = ACTIONS(3164), - [anon_sym_PLUS] = ACTIONS(3166), - [anon_sym_DASH] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3170), - [sym_number] = ACTIONS(3172), - [sym_this] = ACTIONS(3260), - [sym_true] = ACTIONS(3176), - [sym_false] = ACTIONS(3176), - [sym_null] = ACTIONS(3176), - [sym_undefined] = ACTIONS(3176), - [anon_sym_readonly] = ACTIONS(3178), - [anon_sym_QMARK] = ACTIONS(3180), - [anon_sym_any] = ACTIONS(3168), - [anon_sym_number] = ACTIONS(3168), - [anon_sym_boolean] = ACTIONS(3168), - [anon_sym_string] = ACTIONS(3168), - [anon_sym_symbol] = ACTIONS(3168), - [anon_sym_object] = ACTIONS(3168), - [anon_sym_abstract] = ACTIONS(3182), - [anon_sym_infer] = ACTIONS(3186), - [anon_sym_keyof] = ACTIONS(3188), - [anon_sym_unique] = ACTIONS(3190), - [anon_sym_unknown] = ACTIONS(3168), - [anon_sym_never] = ACTIONS(3168), - [anon_sym_LBRACE_PIPE] = ACTIONS(3192), + [sym_import] = STATE(4531), + [sym_nested_identifier] = STATE(5486), + [sym_string] = STATE(1632), + [sym_formal_parameters] = STATE(5639), + [sym_nested_type_identifier] = STATE(1527), + [sym__type_query_member_expression_in_type_annotation] = STATE(1514), + [sym__type_query_call_expression_in_type_annotation] = STATE(1574), + [sym_type] = STATE(1600), + [sym_constructor_type] = STATE(1544), + [sym_primary_type] = STATE(1554), + [sym_template_literal_type] = STATE(1556), + [sym_infer_type] = STATE(1544), + [sym_conditional_type] = STATE(1556), + [sym_generic_type] = STATE(1556), + [sym_type_query] = STATE(1556), + [sym_index_type_query] = STATE(1556), + [sym_lookup_type] = STATE(1556), + [sym_literal_type] = STATE(1556), + [sym__number] = STATE(1536), + [sym_existential_type] = STATE(1556), + [sym_flow_maybe_type] = STATE(1556), + [sym_parenthesized_type] = STATE(1556), + [sym_predefined_type] = STATE(1556), + [sym_object_type] = STATE(1556), + [sym_type_parameters] = STATE(5205), + [sym_array_type] = STATE(1556), + [sym_tuple_type] = STATE(1556), + [sym_readonly_type] = STATE(1544), + [sym_union_type] = STATE(1556), + [sym_intersection_type] = STATE(1556), + [sym_function_type] = STATE(1544), + [sym_identifier] = ACTIONS(3251), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_typeof] = ACTIONS(3151), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_PIPE] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3169), + [sym_number] = ACTIONS(3171), + [sym_this] = ACTIONS(3253), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [sym_null] = ACTIONS(3175), + [sym_undefined] = ACTIONS(3175), + [anon_sym_readonly] = ACTIONS(3177), + [anon_sym_QMARK] = ACTIONS(3179), + [anon_sym_any] = ACTIONS(3167), + [anon_sym_number] = ACTIONS(3167), + [anon_sym_boolean] = ACTIONS(3167), + [anon_sym_string] = ACTIONS(3167), + [anon_sym_symbol] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3181), + [anon_sym_infer] = ACTIONS(3185), + [anon_sym_keyof] = ACTIONS(3187), + [anon_sym_unique] = ACTIONS(3189), + [anon_sym_unknown] = ACTIONS(3167), + [anon_sym_never] = ACTIONS(3167), + [anon_sym_LBRACE_PIPE] = ACTIONS(3191), [sym_html_comment] = ACTIONS(5), }, [1078] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(4405), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4531), + [sym_nested_identifier] = STATE(5486), + [sym_string] = STATE(1632), + [sym_formal_parameters] = STATE(5639), + [sym_nested_type_identifier] = STATE(1527), + [sym__type_query_member_expression_in_type_annotation] = STATE(1514), + [sym__type_query_call_expression_in_type_annotation] = STATE(1574), + [sym_type] = STATE(1605), + [sym_constructor_type] = STATE(1544), + [sym_primary_type] = STATE(1554), + [sym_template_literal_type] = STATE(1556), + [sym_infer_type] = STATE(1544), + [sym_conditional_type] = STATE(1556), + [sym_generic_type] = STATE(1556), + [sym_type_query] = STATE(1556), + [sym_index_type_query] = STATE(1556), + [sym_lookup_type] = STATE(1556), + [sym_literal_type] = STATE(1556), + [sym__number] = STATE(1536), + [sym_existential_type] = STATE(1556), + [sym_flow_maybe_type] = STATE(1556), + [sym_parenthesized_type] = STATE(1556), + [sym_predefined_type] = STATE(1556), + [sym_object_type] = STATE(1556), + [sym_type_parameters] = STATE(5205), + [sym_array_type] = STATE(1556), + [sym_tuple_type] = STATE(1556), + [sym_readonly_type] = STATE(1544), + [sym_union_type] = STATE(1556), + [sym_intersection_type] = STATE(1556), + [sym_function_type] = STATE(1544), + [sym_identifier] = ACTIONS(3251), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_typeof] = ACTIONS(3151), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_PIPE] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3169), + [sym_number] = ACTIONS(3171), + [sym_this] = ACTIONS(3253), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [sym_null] = ACTIONS(3175), + [sym_undefined] = ACTIONS(3175), + [anon_sym_readonly] = ACTIONS(3177), + [anon_sym_QMARK] = ACTIONS(3179), + [anon_sym_any] = ACTIONS(3167), + [anon_sym_number] = ACTIONS(3167), + [anon_sym_boolean] = ACTIONS(3167), + [anon_sym_string] = ACTIONS(3167), + [anon_sym_symbol] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3181), + [anon_sym_infer] = ACTIONS(3185), + [anon_sym_keyof] = ACTIONS(3187), + [anon_sym_unique] = ACTIONS(3189), + [anon_sym_unknown] = ACTIONS(3167), + [anon_sym_never] = ACTIONS(3167), + [anon_sym_LBRACE_PIPE] = ACTIONS(3191), [sym_html_comment] = ACTIONS(5), }, [1079] = { - [sym_import] = STATE(4535), - [sym_nested_identifier] = STATE(5487), - [sym_string] = STATE(1620), - [sym_formal_parameters] = STATE(5661), - [sym_nested_type_identifier] = STATE(1526), - [sym__type_query_member_expression_in_type_annotation] = STATE(1527), - [sym__type_query_call_expression_in_type_annotation] = STATE(1573), - [sym_type] = STATE(1575), - [sym_constructor_type] = STATE(1599), - [sym_primary_type] = STATE(1597), - [sym_template_literal_type] = STATE(1601), - [sym_infer_type] = STATE(1599), - [sym_conditional_type] = STATE(1601), - [sym_generic_type] = STATE(1601), - [sym_type_query] = STATE(1601), - [sym_index_type_query] = STATE(1601), - [sym_lookup_type] = STATE(1601), - [sym_literal_type] = STATE(1601), - [sym__number] = STATE(1628), - [sym_existential_type] = STATE(1601), - [sym_flow_maybe_type] = STATE(1601), - [sym_parenthesized_type] = STATE(1601), - [sym_predefined_type] = STATE(1601), - [sym_object_type] = STATE(1601), - [sym_type_parameters] = STATE(5219), - [sym_array_type] = STATE(1601), - [sym_tuple_type] = STATE(1601), - [sym_readonly_type] = STATE(1599), - [sym_union_type] = STATE(1601), - [sym_intersection_type] = STATE(1601), - [sym_function_type] = STATE(1599), - [sym_identifier] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3150), - [anon_sym_typeof] = ACTIONS(3152), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3156), - [anon_sym_LBRACK] = ACTIONS(3158), - [anon_sym_new] = ACTIONS(3160), - [anon_sym_AMP] = ACTIONS(3162), - [anon_sym_PIPE] = ACTIONS(3164), - [anon_sym_PLUS] = ACTIONS(3166), - [anon_sym_DASH] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3170), - [sym_number] = ACTIONS(3172), - [sym_this] = ACTIONS(3260), - [sym_true] = ACTIONS(3176), - [sym_false] = ACTIONS(3176), - [sym_null] = ACTIONS(3176), - [sym_undefined] = ACTIONS(3176), - [anon_sym_readonly] = ACTIONS(3178), - [anon_sym_QMARK] = ACTIONS(3180), - [anon_sym_any] = ACTIONS(3168), - [anon_sym_number] = ACTIONS(3168), - [anon_sym_boolean] = ACTIONS(3168), - [anon_sym_string] = ACTIONS(3168), - [anon_sym_symbol] = ACTIONS(3168), - [anon_sym_object] = ACTIONS(3168), - [anon_sym_abstract] = ACTIONS(3182), - [anon_sym_infer] = ACTIONS(3186), - [anon_sym_keyof] = ACTIONS(3188), - [anon_sym_unique] = ACTIONS(3190), - [anon_sym_unknown] = ACTIONS(3168), - [anon_sym_never] = ACTIONS(3168), - [anon_sym_LBRACE_PIPE] = ACTIONS(3192), + [sym_import] = STATE(4578), + [sym_nested_identifier] = STATE(5796), + [sym_string] = STATE(3437), + [sym_formal_parameters] = STATE(5519), + [sym_nested_type_identifier] = STATE(3278), + [sym__type_query_member_expression_in_type_annotation] = STATE(3181), + [sym__type_query_call_expression_in_type_annotation] = STATE(3311), + [sym_type] = STATE(3406), + [sym_constructor_type] = STATE(3448), + [sym_primary_type] = STATE(3450), + [sym_template_literal_type] = STATE(3453), + [sym_infer_type] = STATE(3448), + [sym_conditional_type] = STATE(3453), + [sym_generic_type] = STATE(3453), + [sym_type_query] = STATE(3453), + [sym_index_type_query] = STATE(3453), + [sym_lookup_type] = STATE(3453), + [sym_literal_type] = STATE(3453), + [sym__number] = STATE(3454), + [sym_existential_type] = STATE(3453), + [sym_flow_maybe_type] = STATE(3453), + [sym_parenthesized_type] = STATE(3453), + [sym_predefined_type] = STATE(3453), + [sym_object_type] = STATE(3453), + [sym_type_parameters] = STATE(5251), + [sym_array_type] = STATE(3453), + [sym_tuple_type] = STATE(3453), + [sym_readonly_type] = STATE(3448), + [sym_union_type] = STATE(3453), + [sym_intersection_type] = STATE(3453), + [sym_function_type] = STATE(3448), + [sym_identifier] = ACTIONS(3259), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_typeof] = ACTIONS(2999), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3003), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_new] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_PIPE] = ACTIONS(3011), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3015), + [anon_sym_DQUOTE] = ACTIONS(3017), + [anon_sym_SQUOTE] = ACTIONS(3019), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3021), + [sym_number] = ACTIONS(3023), + [sym_this] = ACTIONS(3261), + [sym_true] = ACTIONS(3027), + [sym_false] = ACTIONS(3027), + [sym_null] = ACTIONS(3027), + [sym_undefined] = ACTIONS(3027), + [anon_sym_readonly] = ACTIONS(3029), + [anon_sym_QMARK] = ACTIONS(3031), + [anon_sym_any] = ACTIONS(3015), + [anon_sym_number] = ACTIONS(3015), + [anon_sym_boolean] = ACTIONS(3015), + [anon_sym_string] = ACTIONS(3015), + [anon_sym_symbol] = ACTIONS(3015), + [anon_sym_object] = ACTIONS(3015), + [anon_sym_abstract] = ACTIONS(3033), + [anon_sym_infer] = ACTIONS(3037), + [anon_sym_keyof] = ACTIONS(3039), + [anon_sym_unique] = ACTIONS(3041), + [anon_sym_unknown] = ACTIONS(3015), + [anon_sym_never] = ACTIONS(3015), + [anon_sym_LBRACE_PIPE] = ACTIONS(3043), [sym_html_comment] = ACTIONS(5), }, [1080] = { - [sym_import] = STATE(4676), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(3304), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(4520), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5461), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4578), + [sym_nested_identifier] = STATE(5796), + [sym_string] = STATE(3437), + [sym_formal_parameters] = STATE(5519), + [sym_nested_type_identifier] = STATE(3278), + [sym__type_query_member_expression_in_type_annotation] = STATE(3181), + [sym__type_query_call_expression_in_type_annotation] = STATE(3311), + [sym_type] = STATE(3436), + [sym_constructor_type] = STATE(3448), + [sym_primary_type] = STATE(3450), + [sym_template_literal_type] = STATE(3453), + [sym_infer_type] = STATE(3448), + [sym_conditional_type] = STATE(3453), + [sym_generic_type] = STATE(3453), + [sym_type_query] = STATE(3453), + [sym_index_type_query] = STATE(3453), + [sym_lookup_type] = STATE(3453), + [sym_literal_type] = STATE(3453), + [sym__number] = STATE(3454), + [sym_existential_type] = STATE(3453), + [sym_flow_maybe_type] = STATE(3453), + [sym_parenthesized_type] = STATE(3453), + [sym_predefined_type] = STATE(3453), + [sym_object_type] = STATE(3453), + [sym_type_parameters] = STATE(5251), + [sym_array_type] = STATE(3453), + [sym_tuple_type] = STATE(3453), + [sym_readonly_type] = STATE(3448), + [sym_union_type] = STATE(3453), + [sym_intersection_type] = STATE(3453), + [sym_function_type] = STATE(3448), + [sym_identifier] = ACTIONS(3259), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_typeof] = ACTIONS(2999), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3003), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_new] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_PIPE] = ACTIONS(3011), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3015), + [anon_sym_DQUOTE] = ACTIONS(3017), + [anon_sym_SQUOTE] = ACTIONS(3019), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3021), + [sym_number] = ACTIONS(3023), + [sym_this] = ACTIONS(3261), + [sym_true] = ACTIONS(3027), + [sym_false] = ACTIONS(3027), + [sym_null] = ACTIONS(3027), + [sym_undefined] = ACTIONS(3027), + [anon_sym_readonly] = ACTIONS(3029), + [anon_sym_QMARK] = ACTIONS(3031), + [anon_sym_any] = ACTIONS(3015), + [anon_sym_number] = ACTIONS(3015), + [anon_sym_boolean] = ACTIONS(3015), + [anon_sym_string] = ACTIONS(3015), + [anon_sym_symbol] = ACTIONS(3015), + [anon_sym_object] = ACTIONS(3015), + [anon_sym_abstract] = ACTIONS(3033), + [anon_sym_infer] = ACTIONS(3037), + [anon_sym_keyof] = ACTIONS(3039), + [anon_sym_unique] = ACTIONS(3041), + [anon_sym_unknown] = ACTIONS(3015), + [anon_sym_never] = ACTIONS(3015), + [anon_sym_LBRACE_PIPE] = ACTIONS(3043), [sym_html_comment] = ACTIONS(5), }, [1081] = { - [sym_import] = STATE(4535), - [sym_nested_identifier] = STATE(5487), - [sym_string] = STATE(1620), - [sym_formal_parameters] = STATE(5661), - [sym_nested_type_identifier] = STATE(1526), - [sym__type_query_member_expression_in_type_annotation] = STATE(1527), - [sym__type_query_call_expression_in_type_annotation] = STATE(1573), - [sym_type] = STATE(1600), - [sym_constructor_type] = STATE(1599), - [sym_primary_type] = STATE(1597), - [sym_template_literal_type] = STATE(1601), - [sym_infer_type] = STATE(1599), - [sym_conditional_type] = STATE(1601), - [sym_generic_type] = STATE(1601), - [sym_type_query] = STATE(1601), - [sym_index_type_query] = STATE(1601), - [sym_lookup_type] = STATE(1601), - [sym_literal_type] = STATE(1601), - [sym__number] = STATE(1628), - [sym_existential_type] = STATE(1601), - [sym_flow_maybe_type] = STATE(1601), - [sym_parenthesized_type] = STATE(1601), - [sym_predefined_type] = STATE(1601), - [sym_object_type] = STATE(1601), - [sym_type_parameters] = STATE(5219), - [sym_array_type] = STATE(1601), - [sym_tuple_type] = STATE(1601), - [sym_readonly_type] = STATE(1599), - [sym_union_type] = STATE(1601), - [sym_intersection_type] = STATE(1601), - [sym_function_type] = STATE(1599), - [sym_identifier] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3150), - [anon_sym_typeof] = ACTIONS(3152), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3156), - [anon_sym_LBRACK] = ACTIONS(3158), - [anon_sym_new] = ACTIONS(3160), - [anon_sym_AMP] = ACTIONS(3162), - [anon_sym_PIPE] = ACTIONS(3164), - [anon_sym_PLUS] = ACTIONS(3166), - [anon_sym_DASH] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3170), - [sym_number] = ACTIONS(3172), - [sym_this] = ACTIONS(3260), - [sym_true] = ACTIONS(3176), - [sym_false] = ACTIONS(3176), - [sym_null] = ACTIONS(3176), - [sym_undefined] = ACTIONS(3176), - [anon_sym_readonly] = ACTIONS(3178), - [anon_sym_QMARK] = ACTIONS(3180), - [anon_sym_any] = ACTIONS(3168), - [anon_sym_number] = ACTIONS(3168), - [anon_sym_boolean] = ACTIONS(3168), - [anon_sym_string] = ACTIONS(3168), - [anon_sym_symbol] = ACTIONS(3168), - [anon_sym_object] = ACTIONS(3168), - [anon_sym_abstract] = ACTIONS(3182), - [anon_sym_infer] = ACTIONS(3186), - [anon_sym_keyof] = ACTIONS(3188), - [anon_sym_unique] = ACTIONS(3190), - [anon_sym_unknown] = ACTIONS(3168), - [anon_sym_never] = ACTIONS(3168), - [anon_sym_LBRACE_PIPE] = ACTIONS(3192), + [sym_import] = STATE(4578), + [sym_nested_identifier] = STATE(5796), + [sym_string] = STATE(3437), + [sym_formal_parameters] = STATE(5519), + [sym_nested_type_identifier] = STATE(3278), + [sym__type_query_member_expression_in_type_annotation] = STATE(3181), + [sym__type_query_call_expression_in_type_annotation] = STATE(3311), + [sym_type] = STATE(3335), + [sym_constructor_type] = STATE(3448), + [sym_primary_type] = STATE(3450), + [sym_template_literal_type] = STATE(3453), + [sym_infer_type] = STATE(3448), + [sym_conditional_type] = STATE(3453), + [sym_generic_type] = STATE(3453), + [sym_type_query] = STATE(3453), + [sym_index_type_query] = STATE(3453), + [sym_lookup_type] = STATE(3453), + [sym_literal_type] = STATE(3453), + [sym__number] = STATE(3454), + [sym_existential_type] = STATE(3453), + [sym_flow_maybe_type] = STATE(3453), + [sym_parenthesized_type] = STATE(3453), + [sym_predefined_type] = STATE(3453), + [sym_object_type] = STATE(3453), + [sym_type_parameters] = STATE(5251), + [sym_array_type] = STATE(3453), + [sym_tuple_type] = STATE(3453), + [sym_readonly_type] = STATE(3448), + [sym_union_type] = STATE(3453), + [sym_intersection_type] = STATE(3453), + [sym_function_type] = STATE(3448), + [sym_identifier] = ACTIONS(3259), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_typeof] = ACTIONS(2999), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3003), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_new] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_PIPE] = ACTIONS(3011), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3015), + [anon_sym_DQUOTE] = ACTIONS(3017), + [anon_sym_SQUOTE] = ACTIONS(3019), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3021), + [sym_number] = ACTIONS(3023), + [sym_this] = ACTIONS(3261), + [sym_true] = ACTIONS(3027), + [sym_false] = ACTIONS(3027), + [sym_null] = ACTIONS(3027), + [sym_undefined] = ACTIONS(3027), + [anon_sym_readonly] = ACTIONS(3029), + [anon_sym_QMARK] = ACTIONS(3031), + [anon_sym_any] = ACTIONS(3015), + [anon_sym_number] = ACTIONS(3015), + [anon_sym_boolean] = ACTIONS(3015), + [anon_sym_string] = ACTIONS(3015), + [anon_sym_symbol] = ACTIONS(3015), + [anon_sym_object] = ACTIONS(3015), + [anon_sym_abstract] = ACTIONS(3033), + [anon_sym_infer] = ACTIONS(3037), + [anon_sym_keyof] = ACTIONS(3039), + [anon_sym_unique] = ACTIONS(3041), + [anon_sym_unknown] = ACTIONS(3015), + [anon_sym_never] = ACTIONS(3015), + [anon_sym_LBRACE_PIPE] = ACTIONS(3043), [sym_html_comment] = ACTIONS(5), }, [1082] = { - [sym_import] = STATE(4581), - [sym_nested_identifier] = STATE(5819), - [sym_string] = STATE(3407), - [sym_formal_parameters] = STATE(5869), - [sym_nested_type_identifier] = STATE(3269), - [sym__type_query_member_expression_in_type_annotation] = STATE(3187), - [sym__type_query_call_expression_in_type_annotation] = STATE(3319), - [sym_type] = STATE(3330), - [sym_constructor_type] = STATE(3422), - [sym_primary_type] = STATE(3426), - [sym_template_literal_type] = STATE(3428), - [sym_infer_type] = STATE(3422), - [sym_conditional_type] = STATE(3428), - [sym_generic_type] = STATE(3428), - [sym_type_query] = STATE(3428), - [sym_index_type_query] = STATE(3428), - [sym_lookup_type] = STATE(3428), - [sym_literal_type] = STATE(3428), - [sym__number] = STATE(3432), - [sym_existential_type] = STATE(3428), - [sym_flow_maybe_type] = STATE(3428), - [sym_parenthesized_type] = STATE(3428), - [sym_predefined_type] = STATE(3428), - [sym_object_type] = STATE(3428), - [sym_type_parameters] = STATE(5263), - [sym_array_type] = STATE(3428), - [sym_tuple_type] = STATE(3428), - [sym_readonly_type] = STATE(3422), - [sym_union_type] = STATE(3428), - [sym_intersection_type] = STATE(3428), - [sym_function_type] = STATE(3422), - [sym_identifier] = ACTIONS(3266), - [anon_sym_STAR] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3016), - [anon_sym_typeof] = ACTIONS(3018), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3020), - [anon_sym_LPAREN] = ACTIONS(3022), - [anon_sym_LBRACK] = ACTIONS(3024), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_AMP] = ACTIONS(3028), - [anon_sym_PIPE] = ACTIONS(3030), - [anon_sym_PLUS] = ACTIONS(3032), - [anon_sym_DASH] = ACTIONS(3032), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3034), - [anon_sym_DQUOTE] = ACTIONS(3036), - [anon_sym_SQUOTE] = ACTIONS(3038), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3040), - [sym_number] = ACTIONS(3042), - [sym_this] = ACTIONS(3268), - [sym_true] = ACTIONS(3046), - [sym_false] = ACTIONS(3046), - [sym_null] = ACTIONS(3046), - [sym_undefined] = ACTIONS(3046), - [anon_sym_readonly] = ACTIONS(3048), - [anon_sym_QMARK] = ACTIONS(3050), - [anon_sym_any] = ACTIONS(3034), - [anon_sym_number] = ACTIONS(3034), - [anon_sym_boolean] = ACTIONS(3034), - [anon_sym_string] = ACTIONS(3034), - [anon_sym_symbol] = ACTIONS(3034), - [anon_sym_object] = ACTIONS(3034), - [anon_sym_abstract] = ACTIONS(3052), - [anon_sym_infer] = ACTIONS(3056), - [anon_sym_keyof] = ACTIONS(3058), - [anon_sym_unique] = ACTIONS(3060), - [anon_sym_unknown] = ACTIONS(3034), - [anon_sym_never] = ACTIONS(3034), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5796), + [sym_string] = STATE(3437), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(3278), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4587), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(3338), + [sym_template_literal_type] = STATE(3453), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3453), + [sym_generic_type] = STATE(3453), + [sym_type_query] = STATE(3453), + [sym_index_type_query] = STATE(3453), + [sym_lookup_type] = STATE(3453), + [sym_literal_type] = STATE(3453), + [sym__number] = STATE(3454), + [sym_existential_type] = STATE(3453), + [sym_flow_maybe_type] = STATE(3453), + [sym_parenthesized_type] = STATE(3453), + [sym_predefined_type] = STATE(3453), + [sym_object_type] = STATE(3453), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3453), + [sym_tuple_type] = STATE(3453), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3453), + [sym_intersection_type] = STATE(3453), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3259), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_typeof] = ACTIONS(2999), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3003), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_PIPE] = ACTIONS(3011), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3015), + [anon_sym_DQUOTE] = ACTIONS(3017), + [anon_sym_SQUOTE] = ACTIONS(3019), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3021), + [sym_number] = ACTIONS(3023), + [sym_this] = ACTIONS(3261), + [sym_true] = ACTIONS(3027), + [sym_false] = ACTIONS(3027), + [sym_null] = ACTIONS(3027), + [sym_undefined] = ACTIONS(3027), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(3031), + [anon_sym_any] = ACTIONS(3015), + [anon_sym_number] = ACTIONS(3015), + [anon_sym_boolean] = ACTIONS(3015), + [anon_sym_string] = ACTIONS(3015), + [anon_sym_symbol] = ACTIONS(3015), + [anon_sym_object] = ACTIONS(3015), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(3039), + [anon_sym_unique] = ACTIONS(3041), + [anon_sym_unknown] = ACTIONS(3015), + [anon_sym_never] = ACTIONS(3015), + [anon_sym_LBRACE_PIPE] = ACTIONS(3043), [sym_html_comment] = ACTIONS(5), }, [1083] = { - [sym_import] = STATE(4581), - [sym_nested_identifier] = STATE(5819), - [sym_string] = STATE(3407), - [sym_formal_parameters] = STATE(5869), - [sym_nested_type_identifier] = STATE(3269), - [sym__type_query_member_expression_in_type_annotation] = STATE(3187), - [sym__type_query_call_expression_in_type_annotation] = STATE(3319), - [sym_type] = STATE(3365), - [sym_constructor_type] = STATE(3422), - [sym_primary_type] = STATE(3426), - [sym_template_literal_type] = STATE(3428), - [sym_infer_type] = STATE(3422), - [sym_conditional_type] = STATE(3428), - [sym_generic_type] = STATE(3428), - [sym_type_query] = STATE(3428), - [sym_index_type_query] = STATE(3428), - [sym_lookup_type] = STATE(3428), - [sym_literal_type] = STATE(3428), - [sym__number] = STATE(3432), - [sym_existential_type] = STATE(3428), - [sym_flow_maybe_type] = STATE(3428), - [sym_parenthesized_type] = STATE(3428), - [sym_predefined_type] = STATE(3428), - [sym_object_type] = STATE(3428), - [sym_type_parameters] = STATE(5263), - [sym_array_type] = STATE(3428), - [sym_tuple_type] = STATE(3428), - [sym_readonly_type] = STATE(3422), - [sym_union_type] = STATE(3428), - [sym_intersection_type] = STATE(3428), - [sym_function_type] = STATE(3422), - [sym_identifier] = ACTIONS(3266), - [anon_sym_STAR] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3016), - [anon_sym_typeof] = ACTIONS(3018), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3020), - [anon_sym_LPAREN] = ACTIONS(3022), - [anon_sym_LBRACK] = ACTIONS(3024), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_AMP] = ACTIONS(3028), - [anon_sym_PIPE] = ACTIONS(3030), - [anon_sym_PLUS] = ACTIONS(3032), - [anon_sym_DASH] = ACTIONS(3032), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3034), - [anon_sym_DQUOTE] = ACTIONS(3036), - [anon_sym_SQUOTE] = ACTIONS(3038), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3040), - [sym_number] = ACTIONS(3042), - [sym_this] = ACTIONS(3268), - [sym_true] = ACTIONS(3046), - [sym_false] = ACTIONS(3046), - [sym_null] = ACTIONS(3046), - [sym_undefined] = ACTIONS(3046), - [anon_sym_readonly] = ACTIONS(3048), - [anon_sym_QMARK] = ACTIONS(3050), - [anon_sym_any] = ACTIONS(3034), - [anon_sym_number] = ACTIONS(3034), - [anon_sym_boolean] = ACTIONS(3034), - [anon_sym_string] = ACTIONS(3034), - [anon_sym_symbol] = ACTIONS(3034), - [anon_sym_object] = ACTIONS(3034), - [anon_sym_abstract] = ACTIONS(3052), - [anon_sym_infer] = ACTIONS(3056), - [anon_sym_keyof] = ACTIONS(3058), - [anon_sym_unique] = ACTIONS(3060), - [anon_sym_unknown] = ACTIONS(3034), - [anon_sym_never] = ACTIONS(3034), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4490), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1084] = { - [sym_import] = STATE(4581), - [sym_nested_identifier] = STATE(5819), - [sym_string] = STATE(3407), - [sym_formal_parameters] = STATE(5869), - [sym_nested_type_identifier] = STATE(3269), - [sym__type_query_member_expression_in_type_annotation] = STATE(3187), - [sym__type_query_call_expression_in_type_annotation] = STATE(3319), - [sym_type] = STATE(3384), - [sym_constructor_type] = STATE(3422), - [sym_primary_type] = STATE(3426), - [sym_template_literal_type] = STATE(3428), - [sym_infer_type] = STATE(3422), - [sym_conditional_type] = STATE(3428), - [sym_generic_type] = STATE(3428), - [sym_type_query] = STATE(3428), - [sym_index_type_query] = STATE(3428), - [sym_lookup_type] = STATE(3428), - [sym_literal_type] = STATE(3428), - [sym__number] = STATE(3432), - [sym_existential_type] = STATE(3428), - [sym_flow_maybe_type] = STATE(3428), - [sym_parenthesized_type] = STATE(3428), - [sym_predefined_type] = STATE(3428), - [sym_object_type] = STATE(3428), - [sym_type_parameters] = STATE(5263), - [sym_array_type] = STATE(3428), - [sym_tuple_type] = STATE(3428), - [sym_readonly_type] = STATE(3422), - [sym_union_type] = STATE(3428), - [sym_intersection_type] = STATE(3428), - [sym_function_type] = STATE(3422), - [sym_identifier] = ACTIONS(3266), - [anon_sym_STAR] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3016), - [anon_sym_typeof] = ACTIONS(3018), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3020), - [anon_sym_LPAREN] = ACTIONS(3022), - [anon_sym_LBRACK] = ACTIONS(3024), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_AMP] = ACTIONS(3028), - [anon_sym_PIPE] = ACTIONS(3030), - [anon_sym_PLUS] = ACTIONS(3032), - [anon_sym_DASH] = ACTIONS(3032), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3034), - [anon_sym_DQUOTE] = ACTIONS(3036), - [anon_sym_SQUOTE] = ACTIONS(3038), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3040), - [sym_number] = ACTIONS(3042), - [sym_this] = ACTIONS(3268), - [sym_true] = ACTIONS(3046), - [sym_false] = ACTIONS(3046), - [sym_null] = ACTIONS(3046), - [sym_undefined] = ACTIONS(3046), - [anon_sym_readonly] = ACTIONS(3048), - [anon_sym_QMARK] = ACTIONS(3050), - [anon_sym_any] = ACTIONS(3034), - [anon_sym_number] = ACTIONS(3034), - [anon_sym_boolean] = ACTIONS(3034), - [anon_sym_string] = ACTIONS(3034), - [anon_sym_symbol] = ACTIONS(3034), - [anon_sym_object] = ACTIONS(3034), - [anon_sym_abstract] = ACTIONS(3052), - [anon_sym_infer] = ACTIONS(3056), - [anon_sym_keyof] = ACTIONS(3058), - [anon_sym_unique] = ACTIONS(3060), - [anon_sym_unknown] = ACTIONS(3034), - [anon_sym_never] = ACTIONS(3034), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3788), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1085] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5819), - [sym_string] = STATE(3407), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(3269), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(4590), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(3390), - [sym_template_literal_type] = STATE(3428), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(3428), - [sym_generic_type] = STATE(3428), - [sym_type_query] = STATE(3428), - [sym_index_type_query] = STATE(3428), - [sym_lookup_type] = STATE(3428), - [sym_literal_type] = STATE(3428), - [sym__number] = STATE(3432), - [sym_existential_type] = STATE(3428), - [sym_flow_maybe_type] = STATE(3428), - [sym_parenthesized_type] = STATE(3428), - [sym_predefined_type] = STATE(3428), - [sym_object_type] = STATE(3428), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(3428), - [sym_tuple_type] = STATE(3428), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(3428), - [sym_intersection_type] = STATE(3428), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(3266), - [anon_sym_STAR] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3016), - [anon_sym_typeof] = ACTIONS(3018), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3020), - [anon_sym_LPAREN] = ACTIONS(3022), - [anon_sym_LBRACK] = ACTIONS(3024), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(3028), - [anon_sym_PIPE] = ACTIONS(3030), - [anon_sym_PLUS] = ACTIONS(3032), - [anon_sym_DASH] = ACTIONS(3032), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3034), - [anon_sym_DQUOTE] = ACTIONS(3036), - [anon_sym_SQUOTE] = ACTIONS(3038), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3040), - [sym_number] = ACTIONS(3042), - [sym_this] = ACTIONS(3268), - [sym_true] = ACTIONS(3046), - [sym_false] = ACTIONS(3046), - [sym_null] = ACTIONS(3046), - [sym_undefined] = ACTIONS(3046), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(3050), - [anon_sym_any] = ACTIONS(3034), - [anon_sym_number] = ACTIONS(3034), - [anon_sym_boolean] = ACTIONS(3034), - [anon_sym_string] = ACTIONS(3034), - [anon_sym_symbol] = ACTIONS(3034), - [anon_sym_object] = ACTIONS(3034), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(3058), - [anon_sym_unique] = ACTIONS(3060), - [anon_sym_unknown] = ACTIONS(3034), - [anon_sym_never] = ACTIONS(3034), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(2962), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1086] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5819), - [sym_string] = STATE(3407), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(3269), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(4590), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(3405), - [sym_template_literal_type] = STATE(3428), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(3428), - [sym_generic_type] = STATE(3428), - [sym_type_query] = STATE(3428), - [sym_index_type_query] = STATE(3428), - [sym_lookup_type] = STATE(3428), - [sym_literal_type] = STATE(3428), - [sym__number] = STATE(3432), - [sym_existential_type] = STATE(3428), - [sym_flow_maybe_type] = STATE(3428), - [sym_parenthesized_type] = STATE(3428), - [sym_predefined_type] = STATE(3428), - [sym_object_type] = STATE(3428), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(3428), - [sym_tuple_type] = STATE(3428), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(3428), - [sym_intersection_type] = STATE(3428), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(3266), - [anon_sym_STAR] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3016), - [anon_sym_typeof] = ACTIONS(3018), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3020), - [anon_sym_LPAREN] = ACTIONS(3022), - [anon_sym_LBRACK] = ACTIONS(3024), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(3028), - [anon_sym_PIPE] = ACTIONS(3030), - [anon_sym_PLUS] = ACTIONS(3032), - [anon_sym_DASH] = ACTIONS(3032), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3034), - [anon_sym_DQUOTE] = ACTIONS(3036), - [anon_sym_SQUOTE] = ACTIONS(3038), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3040), - [sym_number] = ACTIONS(3042), - [sym_this] = ACTIONS(3268), - [sym_true] = ACTIONS(3046), - [sym_false] = ACTIONS(3046), - [sym_null] = ACTIONS(3046), - [sym_undefined] = ACTIONS(3046), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(3050), - [anon_sym_any] = ACTIONS(3034), - [anon_sym_number] = ACTIONS(3034), - [anon_sym_boolean] = ACTIONS(3034), - [anon_sym_string] = ACTIONS(3034), - [anon_sym_symbol] = ACTIONS(3034), - [anon_sym_object] = ACTIONS(3034), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(3058), - [anon_sym_unique] = ACTIONS(3060), - [anon_sym_unknown] = ACTIONS(3034), - [anon_sym_never] = ACTIONS(3034), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3096), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1087] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(4478), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4578), + [sym_nested_identifier] = STATE(5796), + [sym_string] = STATE(3437), + [sym_formal_parameters] = STATE(5519), + [sym_nested_type_identifier] = STATE(3278), + [sym__type_query_member_expression_in_type_annotation] = STATE(3181), + [sym__type_query_call_expression_in_type_annotation] = STATE(3311), + [sym_type] = STATE(3373), + [sym_constructor_type] = STATE(3448), + [sym_primary_type] = STATE(3450), + [sym_template_literal_type] = STATE(3453), + [sym_infer_type] = STATE(3448), + [sym_conditional_type] = STATE(3453), + [sym_generic_type] = STATE(3453), + [sym_type_query] = STATE(3453), + [sym_index_type_query] = STATE(3453), + [sym_lookup_type] = STATE(3453), + [sym_literal_type] = STATE(3453), + [sym__number] = STATE(3454), + [sym_existential_type] = STATE(3453), + [sym_flow_maybe_type] = STATE(3453), + [sym_parenthesized_type] = STATE(3453), + [sym_predefined_type] = STATE(3453), + [sym_object_type] = STATE(3453), + [sym_type_parameters] = STATE(5251), + [sym_array_type] = STATE(3453), + [sym_tuple_type] = STATE(3453), + [sym_readonly_type] = STATE(3448), + [sym_union_type] = STATE(3453), + [sym_intersection_type] = STATE(3453), + [sym_function_type] = STATE(3448), + [sym_identifier] = ACTIONS(3259), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_typeof] = ACTIONS(2999), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3003), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_new] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_PIPE] = ACTIONS(3011), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3015), + [anon_sym_DQUOTE] = ACTIONS(3017), + [anon_sym_SQUOTE] = ACTIONS(3019), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3021), + [sym_number] = ACTIONS(3023), + [sym_this] = ACTIONS(3261), + [sym_true] = ACTIONS(3027), + [sym_false] = ACTIONS(3027), + [sym_null] = ACTIONS(3027), + [sym_undefined] = ACTIONS(3027), + [anon_sym_readonly] = ACTIONS(3029), + [anon_sym_QMARK] = ACTIONS(3031), + [anon_sym_any] = ACTIONS(3015), + [anon_sym_number] = ACTIONS(3015), + [anon_sym_boolean] = ACTIONS(3015), + [anon_sym_string] = ACTIONS(3015), + [anon_sym_symbol] = ACTIONS(3015), + [anon_sym_object] = ACTIONS(3015), + [anon_sym_abstract] = ACTIONS(3033), + [anon_sym_infer] = ACTIONS(3037), + [anon_sym_keyof] = ACTIONS(3039), + [anon_sym_unique] = ACTIONS(3041), + [anon_sym_unknown] = ACTIONS(3015), + [anon_sym_never] = ACTIONS(3015), + [anon_sym_LBRACE_PIPE] = ACTIONS(3043), [sym_html_comment] = ACTIONS(5), }, [1088] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3025), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4578), + [sym_nested_identifier] = STATE(5796), + [sym_string] = STATE(3437), + [sym_formal_parameters] = STATE(5519), + [sym_nested_type_identifier] = STATE(3278), + [sym__type_query_member_expression_in_type_annotation] = STATE(3181), + [sym__type_query_call_expression_in_type_annotation] = STATE(3311), + [sym_type] = STATE(3375), + [sym_constructor_type] = STATE(3448), + [sym_primary_type] = STATE(3450), + [sym_template_literal_type] = STATE(3453), + [sym_infer_type] = STATE(3448), + [sym_conditional_type] = STATE(3453), + [sym_generic_type] = STATE(3453), + [sym_type_query] = STATE(3453), + [sym_index_type_query] = STATE(3453), + [sym_lookup_type] = STATE(3453), + [sym_literal_type] = STATE(3453), + [sym__number] = STATE(3454), + [sym_existential_type] = STATE(3453), + [sym_flow_maybe_type] = STATE(3453), + [sym_parenthesized_type] = STATE(3453), + [sym_predefined_type] = STATE(3453), + [sym_object_type] = STATE(3453), + [sym_type_parameters] = STATE(5251), + [sym_array_type] = STATE(3453), + [sym_tuple_type] = STATE(3453), + [sym_readonly_type] = STATE(3448), + [sym_union_type] = STATE(3453), + [sym_intersection_type] = STATE(3453), + [sym_function_type] = STATE(3448), + [sym_identifier] = ACTIONS(3259), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_typeof] = ACTIONS(2999), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3003), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_new] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_PIPE] = ACTIONS(3011), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3015), + [anon_sym_DQUOTE] = ACTIONS(3017), + [anon_sym_SQUOTE] = ACTIONS(3019), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3021), + [sym_number] = ACTIONS(3023), + [sym_this] = ACTIONS(3261), + [sym_true] = ACTIONS(3027), + [sym_false] = ACTIONS(3027), + [sym_null] = ACTIONS(3027), + [sym_undefined] = ACTIONS(3027), + [anon_sym_readonly] = ACTIONS(3029), + [anon_sym_QMARK] = ACTIONS(3031), + [anon_sym_any] = ACTIONS(3015), + [anon_sym_number] = ACTIONS(3015), + [anon_sym_boolean] = ACTIONS(3015), + [anon_sym_string] = ACTIONS(3015), + [anon_sym_symbol] = ACTIONS(3015), + [anon_sym_object] = ACTIONS(3015), + [anon_sym_abstract] = ACTIONS(3033), + [anon_sym_infer] = ACTIONS(3037), + [anon_sym_keyof] = ACTIONS(3039), + [anon_sym_unique] = ACTIONS(3041), + [anon_sym_unknown] = ACTIONS(3015), + [anon_sym_never] = ACTIONS(3015), + [anon_sym_LBRACE_PIPE] = ACTIONS(3043), [sym_html_comment] = ACTIONS(5), }, [1089] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3116), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4578), + [sym_nested_identifier] = STATE(5796), + [sym_string] = STATE(3437), + [sym_formal_parameters] = STATE(5519), + [sym_nested_type_identifier] = STATE(3278), + [sym__type_query_member_expression_in_type_annotation] = STATE(3181), + [sym__type_query_call_expression_in_type_annotation] = STATE(3311), + [sym_type] = STATE(3432), + [sym_constructor_type] = STATE(3448), + [sym_primary_type] = STATE(3450), + [sym_template_literal_type] = STATE(3453), + [sym_infer_type] = STATE(3448), + [sym_conditional_type] = STATE(3453), + [sym_generic_type] = STATE(3453), + [sym_type_query] = STATE(3453), + [sym_index_type_query] = STATE(3453), + [sym_lookup_type] = STATE(3453), + [sym_literal_type] = STATE(3453), + [sym__number] = STATE(3454), + [sym_existential_type] = STATE(3453), + [sym_flow_maybe_type] = STATE(3453), + [sym_parenthesized_type] = STATE(3453), + [sym_predefined_type] = STATE(3453), + [sym_object_type] = STATE(3453), + [sym_type_parameters] = STATE(5251), + [sym_array_type] = STATE(3453), + [sym_tuple_type] = STATE(3453), + [sym_readonly_type] = STATE(3448), + [sym_union_type] = STATE(3453), + [sym_intersection_type] = STATE(3453), + [sym_function_type] = STATE(3448), + [sym_identifier] = ACTIONS(3259), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_typeof] = ACTIONS(2999), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3003), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_new] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_PIPE] = ACTIONS(3011), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3015), + [anon_sym_DQUOTE] = ACTIONS(3017), + [anon_sym_SQUOTE] = ACTIONS(3019), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3021), + [sym_number] = ACTIONS(3023), + [sym_this] = ACTIONS(3261), + [sym_true] = ACTIONS(3027), + [sym_false] = ACTIONS(3027), + [sym_null] = ACTIONS(3027), + [sym_undefined] = ACTIONS(3027), + [anon_sym_readonly] = ACTIONS(3029), + [anon_sym_QMARK] = ACTIONS(3031), + [anon_sym_any] = ACTIONS(3015), + [anon_sym_number] = ACTIONS(3015), + [anon_sym_boolean] = ACTIONS(3015), + [anon_sym_string] = ACTIONS(3015), + [anon_sym_symbol] = ACTIONS(3015), + [anon_sym_object] = ACTIONS(3015), + [anon_sym_abstract] = ACTIONS(3033), + [anon_sym_infer] = ACTIONS(3037), + [anon_sym_keyof] = ACTIONS(3039), + [anon_sym_unique] = ACTIONS(3041), + [anon_sym_unknown] = ACTIONS(3015), + [anon_sym_never] = ACTIONS(3015), + [anon_sym_LBRACE_PIPE] = ACTIONS(3043), [sym_html_comment] = ACTIONS(5), }, [1090] = { - [sym_import] = STATE(4581), - [sym_nested_identifier] = STATE(5819), - [sym_string] = STATE(3407), - [sym_formal_parameters] = STATE(5869), - [sym_nested_type_identifier] = STATE(3269), - [sym__type_query_member_expression_in_type_annotation] = STATE(3187), - [sym__type_query_call_expression_in_type_annotation] = STATE(3319), - [sym_type] = STATE(3423), - [sym_constructor_type] = STATE(3422), - [sym_primary_type] = STATE(3426), - [sym_template_literal_type] = STATE(3428), - [sym_infer_type] = STATE(3422), - [sym_conditional_type] = STATE(3428), - [sym_generic_type] = STATE(3428), - [sym_type_query] = STATE(3428), - [sym_index_type_query] = STATE(3428), - [sym_lookup_type] = STATE(3428), - [sym_literal_type] = STATE(3428), - [sym__number] = STATE(3432), - [sym_existential_type] = STATE(3428), - [sym_flow_maybe_type] = STATE(3428), - [sym_parenthesized_type] = STATE(3428), - [sym_predefined_type] = STATE(3428), - [sym_object_type] = STATE(3428), - [sym_type_parameters] = STATE(5263), - [sym_array_type] = STATE(3428), - [sym_tuple_type] = STATE(3428), - [sym_readonly_type] = STATE(3422), - [sym_union_type] = STATE(3428), - [sym_intersection_type] = STATE(3428), - [sym_function_type] = STATE(3422), - [sym_identifier] = ACTIONS(3266), - [anon_sym_STAR] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3016), - [anon_sym_typeof] = ACTIONS(3018), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3020), - [anon_sym_LPAREN] = ACTIONS(3022), - [anon_sym_LBRACK] = ACTIONS(3024), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_AMP] = ACTIONS(3028), - [anon_sym_PIPE] = ACTIONS(3030), - [anon_sym_PLUS] = ACTIONS(3032), - [anon_sym_DASH] = ACTIONS(3032), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3034), - [anon_sym_DQUOTE] = ACTIONS(3036), - [anon_sym_SQUOTE] = ACTIONS(3038), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3040), - [sym_number] = ACTIONS(3042), - [sym_this] = ACTIONS(3268), - [sym_true] = ACTIONS(3046), - [sym_false] = ACTIONS(3046), - [sym_null] = ACTIONS(3046), - [sym_undefined] = ACTIONS(3046), - [anon_sym_readonly] = ACTIONS(3048), - [anon_sym_QMARK] = ACTIONS(3050), - [anon_sym_any] = ACTIONS(3034), - [anon_sym_number] = ACTIONS(3034), - [anon_sym_boolean] = ACTIONS(3034), - [anon_sym_string] = ACTIONS(3034), - [anon_sym_symbol] = ACTIONS(3034), - [anon_sym_object] = ACTIONS(3034), - [anon_sym_abstract] = ACTIONS(3052), - [anon_sym_infer] = ACTIONS(3056), - [anon_sym_keyof] = ACTIONS(3058), - [anon_sym_unique] = ACTIONS(3060), - [anon_sym_unknown] = ACTIONS(3034), - [anon_sym_never] = ACTIONS(3034), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), + [sym_import] = STATE(4578), + [sym_nested_identifier] = STATE(5796), + [sym_string] = STATE(3437), + [sym_formal_parameters] = STATE(5519), + [sym_nested_type_identifier] = STATE(3278), + [sym__type_query_member_expression_in_type_annotation] = STATE(3181), + [sym__type_query_call_expression_in_type_annotation] = STATE(3311), + [sym_type] = STATE(3433), + [sym_constructor_type] = STATE(3448), + [sym_primary_type] = STATE(3450), + [sym_template_literal_type] = STATE(3453), + [sym_infer_type] = STATE(3448), + [sym_conditional_type] = STATE(3453), + [sym_generic_type] = STATE(3453), + [sym_type_query] = STATE(3453), + [sym_index_type_query] = STATE(3453), + [sym_lookup_type] = STATE(3453), + [sym_literal_type] = STATE(3453), + [sym__number] = STATE(3454), + [sym_existential_type] = STATE(3453), + [sym_flow_maybe_type] = STATE(3453), + [sym_parenthesized_type] = STATE(3453), + [sym_predefined_type] = STATE(3453), + [sym_object_type] = STATE(3453), + [sym_type_parameters] = STATE(5251), + [sym_array_type] = STATE(3453), + [sym_tuple_type] = STATE(3453), + [sym_readonly_type] = STATE(3448), + [sym_union_type] = STATE(3453), + [sym_intersection_type] = STATE(3453), + [sym_function_type] = STATE(3448), + [sym_identifier] = ACTIONS(3259), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_typeof] = ACTIONS(2999), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3003), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_new] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_PIPE] = ACTIONS(3011), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3015), + [anon_sym_DQUOTE] = ACTIONS(3017), + [anon_sym_SQUOTE] = ACTIONS(3019), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3021), + [sym_number] = ACTIONS(3023), + [sym_this] = ACTIONS(3261), + [sym_true] = ACTIONS(3027), + [sym_false] = ACTIONS(3027), + [sym_null] = ACTIONS(3027), + [sym_undefined] = ACTIONS(3027), + [anon_sym_readonly] = ACTIONS(3029), + [anon_sym_QMARK] = ACTIONS(3031), + [anon_sym_any] = ACTIONS(3015), + [anon_sym_number] = ACTIONS(3015), + [anon_sym_boolean] = ACTIONS(3015), + [anon_sym_string] = ACTIONS(3015), + [anon_sym_symbol] = ACTIONS(3015), + [anon_sym_object] = ACTIONS(3015), + [anon_sym_abstract] = ACTIONS(3033), + [anon_sym_infer] = ACTIONS(3037), + [anon_sym_keyof] = ACTIONS(3039), + [anon_sym_unique] = ACTIONS(3041), + [anon_sym_unknown] = ACTIONS(3015), + [anon_sym_never] = ACTIONS(3015), + [anon_sym_LBRACE_PIPE] = ACTIONS(3043), [sym_html_comment] = ACTIONS(5), }, [1091] = { - [sym_import] = STATE(4581), - [sym_nested_identifier] = STATE(5819), - [sym_string] = STATE(3407), - [sym_formal_parameters] = STATE(5869), - [sym_nested_type_identifier] = STATE(3269), - [sym__type_query_member_expression_in_type_annotation] = STATE(3187), - [sym__type_query_call_expression_in_type_annotation] = STATE(3319), - [sym_type] = STATE(3424), - [sym_constructor_type] = STATE(3422), - [sym_primary_type] = STATE(3426), - [sym_template_literal_type] = STATE(3428), - [sym_infer_type] = STATE(3422), - [sym_conditional_type] = STATE(3428), - [sym_generic_type] = STATE(3428), - [sym_type_query] = STATE(3428), - [sym_index_type_query] = STATE(3428), - [sym_lookup_type] = STATE(3428), - [sym_literal_type] = STATE(3428), - [sym__number] = STATE(3432), - [sym_existential_type] = STATE(3428), - [sym_flow_maybe_type] = STATE(3428), - [sym_parenthesized_type] = STATE(3428), - [sym_predefined_type] = STATE(3428), - [sym_object_type] = STATE(3428), - [sym_type_parameters] = STATE(5263), - [sym_array_type] = STATE(3428), - [sym_tuple_type] = STATE(3428), - [sym_readonly_type] = STATE(3422), - [sym_union_type] = STATE(3428), - [sym_intersection_type] = STATE(3428), - [sym_function_type] = STATE(3422), - [sym_identifier] = ACTIONS(3266), - [anon_sym_STAR] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3016), - [anon_sym_typeof] = ACTIONS(3018), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3020), - [anon_sym_LPAREN] = ACTIONS(3022), - [anon_sym_LBRACK] = ACTIONS(3024), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_AMP] = ACTIONS(3028), - [anon_sym_PIPE] = ACTIONS(3030), - [anon_sym_PLUS] = ACTIONS(3032), - [anon_sym_DASH] = ACTIONS(3032), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3034), - [anon_sym_DQUOTE] = ACTIONS(3036), - [anon_sym_SQUOTE] = ACTIONS(3038), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3040), - [sym_number] = ACTIONS(3042), - [sym_this] = ACTIONS(3268), - [sym_true] = ACTIONS(3046), - [sym_false] = ACTIONS(3046), - [sym_null] = ACTIONS(3046), - [sym_undefined] = ACTIONS(3046), - [anon_sym_readonly] = ACTIONS(3048), - [anon_sym_QMARK] = ACTIONS(3050), - [anon_sym_any] = ACTIONS(3034), - [anon_sym_number] = ACTIONS(3034), - [anon_sym_boolean] = ACTIONS(3034), - [anon_sym_string] = ACTIONS(3034), - [anon_sym_symbol] = ACTIONS(3034), - [anon_sym_object] = ACTIONS(3034), - [anon_sym_abstract] = ACTIONS(3052), - [anon_sym_infer] = ACTIONS(3056), - [anon_sym_keyof] = ACTIONS(3058), - [anon_sym_unique] = ACTIONS(3060), - [anon_sym_unknown] = ACTIONS(3034), - [anon_sym_never] = ACTIONS(3034), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4420), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1092] = { - [sym_import] = STATE(4581), - [sym_nested_identifier] = STATE(5819), - [sym_string] = STATE(3407), - [sym_formal_parameters] = STATE(5869), - [sym_nested_type_identifier] = STATE(3269), - [sym__type_query_member_expression_in_type_annotation] = STATE(3187), - [sym__type_query_call_expression_in_type_annotation] = STATE(3319), - [sym_type] = STATE(3329), - [sym_constructor_type] = STATE(3422), - [sym_primary_type] = STATE(3426), - [sym_template_literal_type] = STATE(3428), - [sym_infer_type] = STATE(3422), - [sym_conditional_type] = STATE(3428), - [sym_generic_type] = STATE(3428), - [sym_type_query] = STATE(3428), - [sym_index_type_query] = STATE(3428), - [sym_lookup_type] = STATE(3428), - [sym_literal_type] = STATE(3428), - [sym__number] = STATE(3432), - [sym_existential_type] = STATE(3428), - [sym_flow_maybe_type] = STATE(3428), - [sym_parenthesized_type] = STATE(3428), - [sym_predefined_type] = STATE(3428), - [sym_object_type] = STATE(3428), - [sym_type_parameters] = STATE(5263), - [sym_array_type] = STATE(3428), - [sym_tuple_type] = STATE(3428), - [sym_readonly_type] = STATE(3422), - [sym_union_type] = STATE(3428), - [sym_intersection_type] = STATE(3428), - [sym_function_type] = STATE(3422), - [sym_identifier] = ACTIONS(3266), - [anon_sym_STAR] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3016), - [anon_sym_typeof] = ACTIONS(3018), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3020), - [anon_sym_LPAREN] = ACTIONS(3022), - [anon_sym_LBRACK] = ACTIONS(3024), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_AMP] = ACTIONS(3028), - [anon_sym_PIPE] = ACTIONS(3030), - [anon_sym_PLUS] = ACTIONS(3032), - [anon_sym_DASH] = ACTIONS(3032), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3034), - [anon_sym_DQUOTE] = ACTIONS(3036), - [anon_sym_SQUOTE] = ACTIONS(3038), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3040), - [sym_number] = ACTIONS(3042), - [sym_this] = ACTIONS(3268), - [sym_true] = ACTIONS(3046), - [sym_false] = ACTIONS(3046), - [sym_null] = ACTIONS(3046), - [sym_undefined] = ACTIONS(3046), - [anon_sym_readonly] = ACTIONS(3048), - [anon_sym_QMARK] = ACTIONS(3050), - [anon_sym_any] = ACTIONS(3034), - [anon_sym_number] = ACTIONS(3034), - [anon_sym_boolean] = ACTIONS(3034), - [anon_sym_string] = ACTIONS(3034), - [anon_sym_symbol] = ACTIONS(3034), - [anon_sym_object] = ACTIONS(3034), - [anon_sym_abstract] = ACTIONS(3052), - [anon_sym_infer] = ACTIONS(3056), - [anon_sym_keyof] = ACTIONS(3058), - [anon_sym_unique] = ACTIONS(3060), - [anon_sym_unknown] = ACTIONS(3034), - [anon_sym_never] = ACTIONS(3034), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), + [sym_import] = STATE(4578), + [sym_nested_identifier] = STATE(5796), + [sym_string] = STATE(3437), + [sym_formal_parameters] = STATE(5519), + [sym_nested_type_identifier] = STATE(3278), + [sym__type_query_member_expression_in_type_annotation] = STATE(3181), + [sym__type_query_call_expression_in_type_annotation] = STATE(3311), + [sym_type] = STATE(3328), + [sym_constructor_type] = STATE(3448), + [sym_primary_type] = STATE(3450), + [sym_template_literal_type] = STATE(3453), + [sym_infer_type] = STATE(3448), + [sym_conditional_type] = STATE(3453), + [sym_generic_type] = STATE(3453), + [sym_type_query] = STATE(3453), + [sym_index_type_query] = STATE(3453), + [sym_lookup_type] = STATE(3453), + [sym_literal_type] = STATE(3453), + [sym__number] = STATE(3454), + [sym_existential_type] = STATE(3453), + [sym_flow_maybe_type] = STATE(3453), + [sym_parenthesized_type] = STATE(3453), + [sym_predefined_type] = STATE(3453), + [sym_object_type] = STATE(3453), + [sym_type_parameters] = STATE(5251), + [sym_array_type] = STATE(3453), + [sym_tuple_type] = STATE(3453), + [sym_readonly_type] = STATE(3448), + [sym_union_type] = STATE(3453), + [sym_intersection_type] = STATE(3453), + [sym_function_type] = STATE(3448), + [sym_identifier] = ACTIONS(3259), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_typeof] = ACTIONS(2999), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3003), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_new] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_PIPE] = ACTIONS(3011), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3015), + [anon_sym_DQUOTE] = ACTIONS(3017), + [anon_sym_SQUOTE] = ACTIONS(3019), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3021), + [sym_number] = ACTIONS(3023), + [sym_this] = ACTIONS(3261), + [sym_true] = ACTIONS(3027), + [sym_false] = ACTIONS(3027), + [sym_null] = ACTIONS(3027), + [sym_undefined] = ACTIONS(3027), + [anon_sym_readonly] = ACTIONS(3029), + [anon_sym_QMARK] = ACTIONS(3031), + [anon_sym_any] = ACTIONS(3015), + [anon_sym_number] = ACTIONS(3015), + [anon_sym_boolean] = ACTIONS(3015), + [anon_sym_string] = ACTIONS(3015), + [anon_sym_symbol] = ACTIONS(3015), + [anon_sym_object] = ACTIONS(3015), + [anon_sym_abstract] = ACTIONS(3033), + [anon_sym_infer] = ACTIONS(3037), + [anon_sym_keyof] = ACTIONS(3039), + [anon_sym_unique] = ACTIONS(3041), + [anon_sym_unknown] = ACTIONS(3015), + [anon_sym_never] = ACTIONS(3015), + [anon_sym_LBRACE_PIPE] = ACTIONS(3043), [sym_html_comment] = ACTIONS(5), }, [1093] = { - [sym_import] = STATE(4581), - [sym_nested_identifier] = STATE(5819), - [sym_string] = STATE(3407), - [sym_formal_parameters] = STATE(5869), - [sym_nested_type_identifier] = STATE(3269), - [sym__type_query_member_expression_in_type_annotation] = STATE(3187), - [sym__type_query_call_expression_in_type_annotation] = STATE(3319), - [sym_type] = STATE(3344), - [sym_constructor_type] = STATE(3422), - [sym_primary_type] = STATE(3426), - [sym_template_literal_type] = STATE(3428), - [sym_infer_type] = STATE(3422), - [sym_conditional_type] = STATE(3428), - [sym_generic_type] = STATE(3428), - [sym_type_query] = STATE(3428), - [sym_index_type_query] = STATE(3428), - [sym_lookup_type] = STATE(3428), - [sym_literal_type] = STATE(3428), - [sym__number] = STATE(3432), - [sym_existential_type] = STATE(3428), - [sym_flow_maybe_type] = STATE(3428), - [sym_parenthesized_type] = STATE(3428), - [sym_predefined_type] = STATE(3428), - [sym_object_type] = STATE(3428), - [sym_type_parameters] = STATE(5263), - [sym_array_type] = STATE(3428), - [sym_tuple_type] = STATE(3428), - [sym_readonly_type] = STATE(3422), - [sym_union_type] = STATE(3428), - [sym_intersection_type] = STATE(3428), - [sym_function_type] = STATE(3422), - [sym_identifier] = ACTIONS(3266), - [anon_sym_STAR] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3016), - [anon_sym_typeof] = ACTIONS(3018), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3020), - [anon_sym_LPAREN] = ACTIONS(3022), - [anon_sym_LBRACK] = ACTIONS(3024), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_AMP] = ACTIONS(3028), - [anon_sym_PIPE] = ACTIONS(3030), - [anon_sym_PLUS] = ACTIONS(3032), - [anon_sym_DASH] = ACTIONS(3032), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3034), - [anon_sym_DQUOTE] = ACTIONS(3036), - [anon_sym_SQUOTE] = ACTIONS(3038), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3040), - [sym_number] = ACTIONS(3042), - [sym_this] = ACTIONS(3268), - [sym_true] = ACTIONS(3046), - [sym_false] = ACTIONS(3046), - [sym_null] = ACTIONS(3046), - [sym_undefined] = ACTIONS(3046), - [anon_sym_readonly] = ACTIONS(3048), - [anon_sym_QMARK] = ACTIONS(3050), - [anon_sym_any] = ACTIONS(3034), - [anon_sym_number] = ACTIONS(3034), - [anon_sym_boolean] = ACTIONS(3034), - [anon_sym_string] = ACTIONS(3034), - [anon_sym_symbol] = ACTIONS(3034), - [anon_sym_object] = ACTIONS(3034), - [anon_sym_abstract] = ACTIONS(3052), - [anon_sym_infer] = ACTIONS(3056), - [anon_sym_keyof] = ACTIONS(3058), - [anon_sym_unique] = ACTIONS(3060), - [anon_sym_unknown] = ACTIONS(3034), - [anon_sym_never] = ACTIONS(3034), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), + [sym_import] = STATE(4578), + [sym_nested_identifier] = STATE(5796), + [sym_string] = STATE(3437), + [sym_formal_parameters] = STATE(5519), + [sym_nested_type_identifier] = STATE(3278), + [sym__type_query_member_expression_in_type_annotation] = STATE(3181), + [sym__type_query_call_expression_in_type_annotation] = STATE(3311), + [sym_type] = STATE(3329), + [sym_constructor_type] = STATE(3448), + [sym_primary_type] = STATE(3450), + [sym_template_literal_type] = STATE(3453), + [sym_infer_type] = STATE(3448), + [sym_conditional_type] = STATE(3453), + [sym_generic_type] = STATE(3453), + [sym_type_query] = STATE(3453), + [sym_index_type_query] = STATE(3453), + [sym_lookup_type] = STATE(3453), + [sym_literal_type] = STATE(3453), + [sym__number] = STATE(3454), + [sym_existential_type] = STATE(3453), + [sym_flow_maybe_type] = STATE(3453), + [sym_parenthesized_type] = STATE(3453), + [sym_predefined_type] = STATE(3453), + [sym_object_type] = STATE(3453), + [sym_type_parameters] = STATE(5251), + [sym_array_type] = STATE(3453), + [sym_tuple_type] = STATE(3453), + [sym_readonly_type] = STATE(3448), + [sym_union_type] = STATE(3453), + [sym_intersection_type] = STATE(3453), + [sym_function_type] = STATE(3448), + [sym_identifier] = ACTIONS(3259), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_typeof] = ACTIONS(2999), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3003), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_new] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_PIPE] = ACTIONS(3011), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3015), + [anon_sym_DQUOTE] = ACTIONS(3017), + [anon_sym_SQUOTE] = ACTIONS(3019), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3021), + [sym_number] = ACTIONS(3023), + [sym_this] = ACTIONS(3261), + [sym_true] = ACTIONS(3027), + [sym_false] = ACTIONS(3027), + [sym_null] = ACTIONS(3027), + [sym_undefined] = ACTIONS(3027), + [anon_sym_readonly] = ACTIONS(3029), + [anon_sym_QMARK] = ACTIONS(3031), + [anon_sym_any] = ACTIONS(3015), + [anon_sym_number] = ACTIONS(3015), + [anon_sym_boolean] = ACTIONS(3015), + [anon_sym_string] = ACTIONS(3015), + [anon_sym_symbol] = ACTIONS(3015), + [anon_sym_object] = ACTIONS(3015), + [anon_sym_abstract] = ACTIONS(3033), + [anon_sym_infer] = ACTIONS(3037), + [anon_sym_keyof] = ACTIONS(3039), + [anon_sym_unique] = ACTIONS(3041), + [anon_sym_unknown] = ACTIONS(3015), + [anon_sym_never] = ACTIONS(3015), + [anon_sym_LBRACE_PIPE] = ACTIONS(3043), [sym_html_comment] = ACTIONS(5), }, [1094] = { - [sym_import] = STATE(4581), - [sym_nested_identifier] = STATE(5819), - [sym_string] = STATE(3407), - [sym_formal_parameters] = STATE(5869), - [sym_nested_type_identifier] = STATE(3269), - [sym__type_query_member_expression_in_type_annotation] = STATE(3187), - [sym__type_query_call_expression_in_type_annotation] = STATE(3319), - [sym_type] = STATE(3340), - [sym_constructor_type] = STATE(3422), - [sym_primary_type] = STATE(3426), - [sym_template_literal_type] = STATE(3428), - [sym_infer_type] = STATE(3422), - [sym_conditional_type] = STATE(3428), - [sym_generic_type] = STATE(3428), - [sym_type_query] = STATE(3428), - [sym_index_type_query] = STATE(3428), - [sym_lookup_type] = STATE(3428), - [sym_literal_type] = STATE(3428), - [sym__number] = STATE(3432), - [sym_existential_type] = STATE(3428), - [sym_flow_maybe_type] = STATE(3428), - [sym_parenthesized_type] = STATE(3428), - [sym_predefined_type] = STATE(3428), - [sym_object_type] = STATE(3428), - [sym_type_parameters] = STATE(5263), - [sym_array_type] = STATE(3428), - [sym_tuple_type] = STATE(3428), - [sym_readonly_type] = STATE(3422), - [sym_union_type] = STATE(3428), - [sym_intersection_type] = STATE(3428), - [sym_function_type] = STATE(3422), - [sym_identifier] = ACTIONS(3266), - [anon_sym_STAR] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3016), - [anon_sym_typeof] = ACTIONS(3018), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3020), - [anon_sym_LPAREN] = ACTIONS(3022), - [anon_sym_LBRACK] = ACTIONS(3024), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_AMP] = ACTIONS(3028), - [anon_sym_PIPE] = ACTIONS(3030), - [anon_sym_PLUS] = ACTIONS(3032), - [anon_sym_DASH] = ACTIONS(3032), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3034), - [anon_sym_DQUOTE] = ACTIONS(3036), - [anon_sym_SQUOTE] = ACTIONS(3038), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3040), - [sym_number] = ACTIONS(3042), - [sym_this] = ACTIONS(3268), - [sym_true] = ACTIONS(3046), - [sym_false] = ACTIONS(3046), - [sym_null] = ACTIONS(3046), - [sym_undefined] = ACTIONS(3046), - [anon_sym_readonly] = ACTIONS(3048), - [anon_sym_QMARK] = ACTIONS(3050), - [anon_sym_any] = ACTIONS(3034), - [anon_sym_number] = ACTIONS(3034), - [anon_sym_boolean] = ACTIONS(3034), - [anon_sym_string] = ACTIONS(3034), - [anon_sym_symbol] = ACTIONS(3034), - [anon_sym_object] = ACTIONS(3034), - [anon_sym_abstract] = ACTIONS(3052), - [anon_sym_infer] = ACTIONS(3056), - [anon_sym_keyof] = ACTIONS(3058), - [anon_sym_unique] = ACTIONS(3060), - [anon_sym_unknown] = ACTIONS(3034), - [anon_sym_never] = ACTIONS(3034), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), + [sym_import] = STATE(4578), + [sym_nested_identifier] = STATE(5796), + [sym_string] = STATE(3437), + [sym_formal_parameters] = STATE(5519), + [sym_nested_type_identifier] = STATE(3278), + [sym__type_query_member_expression_in_type_annotation] = STATE(3181), + [sym__type_query_call_expression_in_type_annotation] = STATE(3311), + [sym_type] = STATE(3344), + [sym_constructor_type] = STATE(3448), + [sym_primary_type] = STATE(3450), + [sym_template_literal_type] = STATE(3453), + [sym_infer_type] = STATE(3448), + [sym_conditional_type] = STATE(3453), + [sym_generic_type] = STATE(3453), + [sym_type_query] = STATE(3453), + [sym_index_type_query] = STATE(3453), + [sym_lookup_type] = STATE(3453), + [sym_literal_type] = STATE(3453), + [sym__number] = STATE(3454), + [sym_existential_type] = STATE(3453), + [sym_flow_maybe_type] = STATE(3453), + [sym_parenthesized_type] = STATE(3453), + [sym_predefined_type] = STATE(3453), + [sym_object_type] = STATE(3453), + [sym_type_parameters] = STATE(5251), + [sym_array_type] = STATE(3453), + [sym_tuple_type] = STATE(3453), + [sym_readonly_type] = STATE(3448), + [sym_union_type] = STATE(3453), + [sym_intersection_type] = STATE(3453), + [sym_function_type] = STATE(3448), + [sym_identifier] = ACTIONS(3259), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_typeof] = ACTIONS(2999), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3003), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_new] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_PIPE] = ACTIONS(3011), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3015), + [anon_sym_DQUOTE] = ACTIONS(3017), + [anon_sym_SQUOTE] = ACTIONS(3019), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3021), + [sym_number] = ACTIONS(3023), + [sym_this] = ACTIONS(3261), + [sym_true] = ACTIONS(3027), + [sym_false] = ACTIONS(3027), + [sym_null] = ACTIONS(3027), + [sym_undefined] = ACTIONS(3027), + [anon_sym_readonly] = ACTIONS(3029), + [anon_sym_QMARK] = ACTIONS(3031), + [anon_sym_any] = ACTIONS(3015), + [anon_sym_number] = ACTIONS(3015), + [anon_sym_boolean] = ACTIONS(3015), + [anon_sym_string] = ACTIONS(3015), + [anon_sym_symbol] = ACTIONS(3015), + [anon_sym_object] = ACTIONS(3015), + [anon_sym_abstract] = ACTIONS(3033), + [anon_sym_infer] = ACTIONS(3037), + [anon_sym_keyof] = ACTIONS(3039), + [anon_sym_unique] = ACTIONS(3041), + [anon_sym_unknown] = ACTIONS(3015), + [anon_sym_never] = ACTIONS(3015), + [anon_sym_LBRACE_PIPE] = ACTIONS(3043), [sym_html_comment] = ACTIONS(5), }, [1095] = { - [sym_import] = STATE(4581), - [sym_nested_identifier] = STATE(5819), - [sym_string] = STATE(3407), - [sym_formal_parameters] = STATE(5869), - [sym_nested_type_identifier] = STATE(3269), - [sym__type_query_member_expression_in_type_annotation] = STATE(3187), - [sym__type_query_call_expression_in_type_annotation] = STATE(3319), - [sym_type] = STATE(3341), - [sym_constructor_type] = STATE(3422), - [sym_primary_type] = STATE(3426), - [sym_template_literal_type] = STATE(3428), - [sym_infer_type] = STATE(3422), - [sym_conditional_type] = STATE(3428), - [sym_generic_type] = STATE(3428), - [sym_type_query] = STATE(3428), - [sym_index_type_query] = STATE(3428), - [sym_lookup_type] = STATE(3428), - [sym_literal_type] = STATE(3428), - [sym__number] = STATE(3432), - [sym_existential_type] = STATE(3428), - [sym_flow_maybe_type] = STATE(3428), - [sym_parenthesized_type] = STATE(3428), - [sym_predefined_type] = STATE(3428), - [sym_object_type] = STATE(3428), - [sym_type_parameters] = STATE(5263), - [sym_array_type] = STATE(3428), - [sym_tuple_type] = STATE(3428), - [sym_readonly_type] = STATE(3422), - [sym_union_type] = STATE(3428), - [sym_intersection_type] = STATE(3428), - [sym_function_type] = STATE(3422), - [sym_identifier] = ACTIONS(3266), - [anon_sym_STAR] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3016), - [anon_sym_typeof] = ACTIONS(3018), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3020), - [anon_sym_LPAREN] = ACTIONS(3022), - [anon_sym_LBRACK] = ACTIONS(3024), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_AMP] = ACTIONS(3028), - [anon_sym_PIPE] = ACTIONS(3030), - [anon_sym_PLUS] = ACTIONS(3032), - [anon_sym_DASH] = ACTIONS(3032), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3034), - [anon_sym_DQUOTE] = ACTIONS(3036), - [anon_sym_SQUOTE] = ACTIONS(3038), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3040), - [sym_number] = ACTIONS(3042), - [sym_this] = ACTIONS(3268), - [sym_true] = ACTIONS(3046), - [sym_false] = ACTIONS(3046), - [sym_null] = ACTIONS(3046), - [sym_undefined] = ACTIONS(3046), - [anon_sym_readonly] = ACTIONS(3048), - [anon_sym_QMARK] = ACTIONS(3050), - [anon_sym_any] = ACTIONS(3034), - [anon_sym_number] = ACTIONS(3034), - [anon_sym_boolean] = ACTIONS(3034), - [anon_sym_string] = ACTIONS(3034), - [anon_sym_symbol] = ACTIONS(3034), - [anon_sym_object] = ACTIONS(3034), - [anon_sym_abstract] = ACTIONS(3052), - [anon_sym_infer] = ACTIONS(3056), - [anon_sym_keyof] = ACTIONS(3058), - [anon_sym_unique] = ACTIONS(3060), - [anon_sym_unknown] = ACTIONS(3034), - [anon_sym_never] = ACTIONS(3034), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), + [sym_import] = STATE(4578), + [sym_nested_identifier] = STATE(5796), + [sym_string] = STATE(3437), + [sym_formal_parameters] = STATE(5519), + [sym_nested_type_identifier] = STATE(3278), + [sym__type_query_member_expression_in_type_annotation] = STATE(3181), + [sym__type_query_call_expression_in_type_annotation] = STATE(3311), + [sym_type] = STATE(3345), + [sym_constructor_type] = STATE(3448), + [sym_primary_type] = STATE(3450), + [sym_template_literal_type] = STATE(3453), + [sym_infer_type] = STATE(3448), + [sym_conditional_type] = STATE(3453), + [sym_generic_type] = STATE(3453), + [sym_type_query] = STATE(3453), + [sym_index_type_query] = STATE(3453), + [sym_lookup_type] = STATE(3453), + [sym_literal_type] = STATE(3453), + [sym__number] = STATE(3454), + [sym_existential_type] = STATE(3453), + [sym_flow_maybe_type] = STATE(3453), + [sym_parenthesized_type] = STATE(3453), + [sym_predefined_type] = STATE(3453), + [sym_object_type] = STATE(3453), + [sym_type_parameters] = STATE(5251), + [sym_array_type] = STATE(3453), + [sym_tuple_type] = STATE(3453), + [sym_readonly_type] = STATE(3448), + [sym_union_type] = STATE(3453), + [sym_intersection_type] = STATE(3453), + [sym_function_type] = STATE(3448), + [sym_identifier] = ACTIONS(3259), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_typeof] = ACTIONS(2999), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3003), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_new] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_PIPE] = ACTIONS(3011), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3015), + [anon_sym_DQUOTE] = ACTIONS(3017), + [anon_sym_SQUOTE] = ACTIONS(3019), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3021), + [sym_number] = ACTIONS(3023), + [sym_this] = ACTIONS(3261), + [sym_true] = ACTIONS(3027), + [sym_false] = ACTIONS(3027), + [sym_null] = ACTIONS(3027), + [sym_undefined] = ACTIONS(3027), + [anon_sym_readonly] = ACTIONS(3029), + [anon_sym_QMARK] = ACTIONS(3031), + [anon_sym_any] = ACTIONS(3015), + [anon_sym_number] = ACTIONS(3015), + [anon_sym_boolean] = ACTIONS(3015), + [anon_sym_string] = ACTIONS(3015), + [anon_sym_symbol] = ACTIONS(3015), + [anon_sym_object] = ACTIONS(3015), + [anon_sym_abstract] = ACTIONS(3033), + [anon_sym_infer] = ACTIONS(3037), + [anon_sym_keyof] = ACTIONS(3039), + [anon_sym_unique] = ACTIONS(3041), + [anon_sym_unknown] = ACTIONS(3015), + [anon_sym_never] = ACTIONS(3015), + [anon_sym_LBRACE_PIPE] = ACTIONS(3043), [sym_html_comment] = ACTIONS(5), }, [1096] = { - [sym_import] = STATE(4581), - [sym_nested_identifier] = STATE(5819), - [sym_string] = STATE(3407), - [sym_formal_parameters] = STATE(5869), - [sym_nested_type_identifier] = STATE(3269), - [sym__type_query_member_expression_in_type_annotation] = STATE(3187), - [sym__type_query_call_expression_in_type_annotation] = STATE(3319), - [sym_type] = STATE(3354), - [sym_constructor_type] = STATE(3422), - [sym_primary_type] = STATE(3426), - [sym_template_literal_type] = STATE(3428), - [sym_infer_type] = STATE(3422), - [sym_conditional_type] = STATE(3428), - [sym_generic_type] = STATE(3428), - [sym_type_query] = STATE(3428), - [sym_index_type_query] = STATE(3428), - [sym_lookup_type] = STATE(3428), - [sym_literal_type] = STATE(3428), - [sym__number] = STATE(3432), - [sym_existential_type] = STATE(3428), - [sym_flow_maybe_type] = STATE(3428), - [sym_parenthesized_type] = STATE(3428), - [sym_predefined_type] = STATE(3428), - [sym_object_type] = STATE(3428), - [sym_type_parameters] = STATE(5263), - [sym_array_type] = STATE(3428), - [sym_tuple_type] = STATE(3428), - [sym_readonly_type] = STATE(3422), - [sym_union_type] = STATE(3428), - [sym_intersection_type] = STATE(3428), - [sym_function_type] = STATE(3422), - [sym_identifier] = ACTIONS(3266), - [anon_sym_STAR] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3016), - [anon_sym_typeof] = ACTIONS(3018), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3020), - [anon_sym_LPAREN] = ACTIONS(3022), - [anon_sym_LBRACK] = ACTIONS(3024), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_AMP] = ACTIONS(3028), - [anon_sym_PIPE] = ACTIONS(3030), - [anon_sym_PLUS] = ACTIONS(3032), - [anon_sym_DASH] = ACTIONS(3032), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3034), - [anon_sym_DQUOTE] = ACTIONS(3036), - [anon_sym_SQUOTE] = ACTIONS(3038), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3040), - [sym_number] = ACTIONS(3042), - [sym_this] = ACTIONS(3268), - [sym_true] = ACTIONS(3046), - [sym_false] = ACTIONS(3046), - [sym_null] = ACTIONS(3046), - [sym_undefined] = ACTIONS(3046), - [anon_sym_readonly] = ACTIONS(3048), - [anon_sym_QMARK] = ACTIONS(3050), - [anon_sym_any] = ACTIONS(3034), - [anon_sym_number] = ACTIONS(3034), - [anon_sym_boolean] = ACTIONS(3034), - [anon_sym_string] = ACTIONS(3034), - [anon_sym_symbol] = ACTIONS(3034), - [anon_sym_object] = ACTIONS(3034), - [anon_sym_abstract] = ACTIONS(3052), - [anon_sym_infer] = ACTIONS(3056), - [anon_sym_keyof] = ACTIONS(3058), - [anon_sym_unique] = ACTIONS(3060), - [anon_sym_unknown] = ACTIONS(3034), - [anon_sym_never] = ACTIONS(3034), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(2947), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1097] = { - [sym_import] = STATE(4581), - [sym_nested_identifier] = STATE(5819), - [sym_string] = STATE(3407), - [sym_formal_parameters] = STATE(5869), - [sym_nested_type_identifier] = STATE(3269), - [sym__type_query_member_expression_in_type_annotation] = STATE(3187), - [sym__type_query_call_expression_in_type_annotation] = STATE(3319), - [sym_type] = STATE(3355), - [sym_constructor_type] = STATE(3422), - [sym_primary_type] = STATE(3426), - [sym_template_literal_type] = STATE(3428), - [sym_infer_type] = STATE(3422), - [sym_conditional_type] = STATE(3428), - [sym_generic_type] = STATE(3428), - [sym_type_query] = STATE(3428), - [sym_index_type_query] = STATE(3428), - [sym_lookup_type] = STATE(3428), - [sym_literal_type] = STATE(3428), - [sym__number] = STATE(3432), - [sym_existential_type] = STATE(3428), - [sym_flow_maybe_type] = STATE(3428), - [sym_parenthesized_type] = STATE(3428), - [sym_predefined_type] = STATE(3428), - [sym_object_type] = STATE(3428), - [sym_type_parameters] = STATE(5263), - [sym_array_type] = STATE(3428), - [sym_tuple_type] = STATE(3428), - [sym_readonly_type] = STATE(3422), - [sym_union_type] = STATE(3428), - [sym_intersection_type] = STATE(3428), - [sym_function_type] = STATE(3422), - [sym_identifier] = ACTIONS(3266), - [anon_sym_STAR] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3016), - [anon_sym_typeof] = ACTIONS(3018), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3020), - [anon_sym_LPAREN] = ACTIONS(3022), - [anon_sym_LBRACK] = ACTIONS(3024), - [anon_sym_new] = ACTIONS(3026), - [anon_sym_AMP] = ACTIONS(3028), - [anon_sym_PIPE] = ACTIONS(3030), - [anon_sym_PLUS] = ACTIONS(3032), - [anon_sym_DASH] = ACTIONS(3032), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3034), - [anon_sym_DQUOTE] = ACTIONS(3036), - [anon_sym_SQUOTE] = ACTIONS(3038), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3040), - [sym_number] = ACTIONS(3042), - [sym_this] = ACTIONS(3268), - [sym_true] = ACTIONS(3046), - [sym_false] = ACTIONS(3046), - [sym_null] = ACTIONS(3046), - [sym_undefined] = ACTIONS(3046), - [anon_sym_readonly] = ACTIONS(3048), - [anon_sym_QMARK] = ACTIONS(3050), - [anon_sym_any] = ACTIONS(3034), - [anon_sym_number] = ACTIONS(3034), - [anon_sym_boolean] = ACTIONS(3034), - [anon_sym_string] = ACTIONS(3034), - [anon_sym_symbol] = ACTIONS(3034), - [anon_sym_object] = ACTIONS(3034), - [anon_sym_abstract] = ACTIONS(3052), - [anon_sym_infer] = ACTIONS(3056), - [anon_sym_keyof] = ACTIONS(3058), - [anon_sym_unique] = ACTIONS(3060), - [anon_sym_unknown] = ACTIONS(3034), - [anon_sym_never] = ACTIONS(3034), - [anon_sym_LBRACE_PIPE] = ACTIONS(3062), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3145), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1098] = { - [sym_import] = STATE(4763), - [sym_nested_identifier] = STATE(5701), - [sym_string] = STATE(1961), - [sym_formal_parameters] = STATE(5838), - [sym_nested_type_identifier] = STATE(1823), - [sym__type_query_member_expression_in_type_annotation] = STATE(1867), - [sym__type_query_call_expression_in_type_annotation] = STATE(1905), - [sym_type] = STATE(1912), - [sym_constructor_type] = STATE(1910), - [sym_primary_type] = STATE(1913), - [sym_template_literal_type] = STATE(1916), - [sym_infer_type] = STATE(1910), - [sym_conditional_type] = STATE(1916), - [sym_generic_type] = STATE(1916), - [sym_type_query] = STATE(1916), - [sym_index_type_query] = STATE(1916), - [sym_lookup_type] = STATE(1916), - [sym_literal_type] = STATE(1916), - [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1916), - [sym_flow_maybe_type] = STATE(1916), - [sym_parenthesized_type] = STATE(1916), - [sym_predefined_type] = STATE(1916), - [sym_object_type] = STATE(1916), - [sym_type_parameters] = STATE(5278), - [sym_array_type] = STATE(1916), - [sym_tuple_type] = STATE(1916), - [sym_readonly_type] = STATE(1910), - [sym_union_type] = STATE(1916), - [sym_intersection_type] = STATE(1916), - [sym_function_type] = STATE(1910), - [sym_identifier] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(3100), - [anon_sym_LBRACE] = ACTIONS(3102), - [anon_sym_typeof] = ACTIONS(3104), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3270), - [anon_sym_LPAREN] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(3110), - [anon_sym_new] = ACTIONS(3112), - [anon_sym_AMP] = ACTIONS(3114), - [anon_sym_PIPE] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3122), - [sym_number] = ACTIONS(3124), - [sym_this] = ACTIONS(3264), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [sym_null] = ACTIONS(3128), - [sym_undefined] = ACTIONS(3128), - [anon_sym_readonly] = ACTIONS(3130), - [anon_sym_QMARK] = ACTIONS(3132), - [anon_sym_any] = ACTIONS(3120), - [anon_sym_number] = ACTIONS(3120), - [anon_sym_boolean] = ACTIONS(3120), - [anon_sym_string] = ACTIONS(3120), - [anon_sym_symbol] = ACTIONS(3120), - [anon_sym_object] = ACTIONS(3120), - [anon_sym_abstract] = ACTIONS(3134), - [anon_sym_infer] = ACTIONS(3138), - [anon_sym_keyof] = ACTIONS(3140), - [anon_sym_unique] = ACTIONS(3142), - [anon_sym_unknown] = ACTIONS(3120), - [anon_sym_never] = ACTIONS(3120), - [anon_sym_LBRACE_PIPE] = ACTIONS(3144), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3775), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1099] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3124), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3148), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1100] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3125), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3149), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1101] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5574), - [sym_string] = STATE(3242), - [sym_formal_parameters] = STATE(5809), - [sym_nested_type_identifier] = STATE(3153), - [sym__type_query_member_expression_in_type_annotation] = STATE(3081), - [sym__type_query_call_expression_in_type_annotation] = STATE(3197), - [sym_type] = STATE(3312), - [sym_constructor_type] = STATE(3250), - [sym_primary_type] = STATE(3251), - [sym_template_literal_type] = STATE(3252), - [sym_infer_type] = STATE(3250), - [sym_conditional_type] = STATE(3252), - [sym_generic_type] = STATE(3252), - [sym_type_query] = STATE(3252), - [sym_index_type_query] = STATE(3252), - [sym_lookup_type] = STATE(3252), - [sym_literal_type] = STATE(3252), - [sym__number] = STATE(3253), - [sym_existential_type] = STATE(3252), - [sym_flow_maybe_type] = STATE(3252), - [sym_parenthesized_type] = STATE(3252), - [sym_predefined_type] = STATE(3252), - [sym_object_type] = STATE(3252), - [sym_type_parameters] = STATE(5159), - [sym_array_type] = STATE(3252), - [sym_tuple_type] = STATE(3252), - [sym_readonly_type] = STATE(3250), - [sym_union_type] = STATE(3252), - [sym_intersection_type] = STATE(3252), - [sym_function_type] = STATE(3250), - [sym_identifier] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_new] = ACTIONS(1635), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [anon_sym_DQUOTE] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(1651), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4436), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1102] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(4480), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4441), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1103] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(4486), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4442), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1104] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(4488), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3154), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1105] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3109), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4808), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5569), + [sym_nested_type_identifier] = STATE(3487), + [sym__type_query_member_expression_in_type_annotation] = STATE(3388), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3019), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5361), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3263), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_typeof] = ACTIONS(3101), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_PIPE] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3109), + [anon_sym_SQUOTE] = ACTIONS(3111), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3117), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(3119), + [anon_sym_infer] = ACTIONS(3123), + [anon_sym_keyof] = ACTIONS(3125), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(3127), [sym_html_comment] = ACTIONS(5), }, [1106] = { - [sym_import] = STATE(4801), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5705), - [sym_nested_type_identifier] = STATE(3495), - [sym__type_query_member_expression_in_type_annotation] = STATE(3462), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3037), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5376), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(3272), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_typeof] = ACTIONS(3074), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(3076), - [anon_sym_AMP] = ACTIONS(3078), - [anon_sym_PIPE] = ACTIONS(3080), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(2344), - [anon_sym_SQUOTE] = ACTIONS(2346), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(3084), - [anon_sym_QMARK] = ACTIONS(3086), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(3088), - [anon_sym_infer] = ACTIONS(3092), - [anon_sym_keyof] = ACTIONS(3094), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3096), + [sym_import] = STATE(4808), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5569), + [sym_nested_type_identifier] = STATE(3487), + [sym__type_query_member_expression_in_type_annotation] = STATE(3388), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3767), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5361), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3263), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_typeof] = ACTIONS(3101), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_PIPE] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3109), + [anon_sym_SQUOTE] = ACTIONS(3111), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3117), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(3119), + [anon_sym_infer] = ACTIONS(3123), + [anon_sym_keyof] = ACTIONS(3125), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(3127), [sym_html_comment] = ACTIONS(5), }, [1107] = { - [sym_import] = STATE(4801), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5705), - [sym_nested_type_identifier] = STATE(3495), - [sym__type_query_member_expression_in_type_annotation] = STATE(3462), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3882), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5376), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(3272), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_typeof] = ACTIONS(3074), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(3076), - [anon_sym_AMP] = ACTIONS(3078), - [anon_sym_PIPE] = ACTIONS(3080), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(2344), - [anon_sym_SQUOTE] = ACTIONS(2346), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(3084), - [anon_sym_QMARK] = ACTIONS(3086), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(3088), - [anon_sym_infer] = ACTIONS(3092), - [anon_sym_keyof] = ACTIONS(3094), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3096), + [sym_import] = STATE(4808), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5569), + [sym_nested_type_identifier] = STATE(3487), + [sym__type_query_member_expression_in_type_annotation] = STATE(3388), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3769), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5361), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3263), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_typeof] = ACTIONS(3101), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_PIPE] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3109), + [anon_sym_SQUOTE] = ACTIONS(3111), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3117), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(3119), + [anon_sym_infer] = ACTIONS(3123), + [anon_sym_keyof] = ACTIONS(3125), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(3127), [sym_html_comment] = ACTIONS(5), }, [1108] = { - [sym_import] = STATE(4801), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5705), - [sym_nested_type_identifier] = STATE(3495), - [sym__type_query_member_expression_in_type_annotation] = STATE(3462), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3883), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5376), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(3272), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_typeof] = ACTIONS(3074), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(3076), - [anon_sym_AMP] = ACTIONS(3078), - [anon_sym_PIPE] = ACTIONS(3080), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(2344), - [anon_sym_SQUOTE] = ACTIONS(2346), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(3084), - [anon_sym_QMARK] = ACTIONS(3086), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(3088), - [anon_sym_infer] = ACTIONS(3092), - [anon_sym_keyof] = ACTIONS(3094), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3096), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(3487), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4708), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2949), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3263), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_typeof] = ACTIONS(3101), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_PIPE] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3109), + [anon_sym_SQUOTE] = ACTIONS(3111), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(3117), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(3125), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(3127), [sym_html_comment] = ACTIONS(5), }, [1109] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(3495), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(4703), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2948), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(3272), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_typeof] = ACTIONS(3074), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(3078), - [anon_sym_PIPE] = ACTIONS(3080), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(2344), - [anon_sym_SQUOTE] = ACTIONS(2346), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(3086), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(3094), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3096), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(3487), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4708), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3263), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_typeof] = ACTIONS(3101), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_PIPE] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3109), + [anon_sym_SQUOTE] = ACTIONS(3111), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(3117), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(3125), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(3127), [sym_html_comment] = ACTIONS(5), }, [1110] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(3495), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(4703), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2945), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(3272), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_typeof] = ACTIONS(3074), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(3078), - [anon_sym_PIPE] = ACTIONS(3080), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(2344), - [anon_sym_SQUOTE] = ACTIONS(2346), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(3086), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(3094), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3096), + [sym_import] = STATE(4950), + [sym_nested_identifier] = STATE(5535), + [sym_string] = STATE(3265), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(3076), + [sym__type_query_call_expression_in_type_annotation] = STATE(3200), + [sym_type] = STATE(3302), + [sym_constructor_type] = STATE(3271), + [sym_primary_type] = STATE(3272), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3271), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3273), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5146), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3271), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3271), + [sym_identifier] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_new] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_this] = ACTIONS(1634), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_any] = ACTIONS(1032), + [anon_sym_number] = ACTIONS(1032), + [anon_sym_boolean] = ACTIONS(1032), + [anon_sym_string] = ACTIONS(1032), + [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_object] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_infer] = ACTIONS(1026), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), [sym_html_comment] = ACTIONS(5), }, [1111] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), [sym_type] = STATE(3784), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1112] = { - [sym_import] = STATE(4535), - [sym_nested_identifier] = STATE(5487), - [sym_string] = STATE(1620), - [sym_formal_parameters] = STATE(5661), - [sym_nested_type_identifier] = STATE(1526), - [sym__type_query_member_expression_in_type_annotation] = STATE(1527), - [sym__type_query_call_expression_in_type_annotation] = STATE(1573), - [sym_type] = STATE(1649), - [sym_constructor_type] = STATE(1599), - [sym_primary_type] = STATE(1597), - [sym_template_literal_type] = STATE(1601), - [sym_infer_type] = STATE(1599), - [sym_conditional_type] = STATE(1601), - [sym_generic_type] = STATE(1601), - [sym_type_query] = STATE(1601), - [sym_index_type_query] = STATE(1601), - [sym_lookup_type] = STATE(1601), - [sym_literal_type] = STATE(1601), - [sym__number] = STATE(1628), - [sym_existential_type] = STATE(1601), - [sym_flow_maybe_type] = STATE(1601), - [sym_parenthesized_type] = STATE(1601), - [sym_predefined_type] = STATE(1601), - [sym_object_type] = STATE(1601), - [sym_type_parameters] = STATE(5219), - [sym_array_type] = STATE(1601), - [sym_tuple_type] = STATE(1601), - [sym_readonly_type] = STATE(1599), - [sym_union_type] = STATE(1601), - [sym_intersection_type] = STATE(1601), - [sym_function_type] = STATE(1599), - [sym_identifier] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3150), - [anon_sym_typeof] = ACTIONS(3152), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3274), - [anon_sym_LPAREN] = ACTIONS(3156), - [anon_sym_LBRACK] = ACTIONS(3158), - [anon_sym_new] = ACTIONS(3160), - [anon_sym_AMP] = ACTIONS(3162), - [anon_sym_PIPE] = ACTIONS(3164), - [anon_sym_PLUS] = ACTIONS(3166), - [anon_sym_DASH] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3170), - [sym_number] = ACTIONS(3172), - [sym_this] = ACTIONS(3260), - [sym_true] = ACTIONS(3176), - [sym_false] = ACTIONS(3176), - [sym_null] = ACTIONS(3176), - [sym_undefined] = ACTIONS(3176), - [anon_sym_readonly] = ACTIONS(3178), - [anon_sym_QMARK] = ACTIONS(3180), - [anon_sym_any] = ACTIONS(3168), - [anon_sym_number] = ACTIONS(3168), - [anon_sym_boolean] = ACTIONS(3168), - [anon_sym_string] = ACTIONS(3168), - [anon_sym_symbol] = ACTIONS(3168), - [anon_sym_object] = ACTIONS(3168), - [anon_sym_abstract] = ACTIONS(3182), - [anon_sym_infer] = ACTIONS(3186), - [anon_sym_keyof] = ACTIONS(3188), - [anon_sym_unique] = ACTIONS(3190), - [anon_sym_unknown] = ACTIONS(3168), - [anon_sym_never] = ACTIONS(3168), - [anon_sym_LBRACE_PIPE] = ACTIONS(3192), + [sym_import] = STATE(4531), + [sym_nested_identifier] = STATE(5486), + [sym_string] = STATE(1632), + [sym_formal_parameters] = STATE(5639), + [sym_nested_type_identifier] = STATE(1527), + [sym__type_query_member_expression_in_type_annotation] = STATE(1514), + [sym__type_query_call_expression_in_type_annotation] = STATE(1574), + [sym_type] = STATE(1619), + [sym_constructor_type] = STATE(1544), + [sym_primary_type] = STATE(1554), + [sym_template_literal_type] = STATE(1556), + [sym_infer_type] = STATE(1544), + [sym_conditional_type] = STATE(1556), + [sym_generic_type] = STATE(1556), + [sym_type_query] = STATE(1556), + [sym_index_type_query] = STATE(1556), + [sym_lookup_type] = STATE(1556), + [sym_literal_type] = STATE(1556), + [sym__number] = STATE(1536), + [sym_existential_type] = STATE(1556), + [sym_flow_maybe_type] = STATE(1556), + [sym_parenthesized_type] = STATE(1556), + [sym_predefined_type] = STATE(1556), + [sym_object_type] = STATE(1556), + [sym_type_parameters] = STATE(5205), + [sym_array_type] = STATE(1556), + [sym_tuple_type] = STATE(1556), + [sym_readonly_type] = STATE(1544), + [sym_union_type] = STATE(1556), + [sym_intersection_type] = STATE(1556), + [sym_function_type] = STATE(1544), + [sym_identifier] = ACTIONS(3251), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_typeof] = ACTIONS(3151), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_PIPE] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3169), + [sym_number] = ACTIONS(3171), + [sym_this] = ACTIONS(3253), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [sym_null] = ACTIONS(3175), + [sym_undefined] = ACTIONS(3175), + [anon_sym_readonly] = ACTIONS(3177), + [anon_sym_QMARK] = ACTIONS(3179), + [anon_sym_any] = ACTIONS(3167), + [anon_sym_number] = ACTIONS(3167), + [anon_sym_boolean] = ACTIONS(3167), + [anon_sym_string] = ACTIONS(3167), + [anon_sym_symbol] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3181), + [anon_sym_infer] = ACTIONS(3185), + [anon_sym_keyof] = ACTIONS(3187), + [anon_sym_unique] = ACTIONS(3189), + [anon_sym_unknown] = ACTIONS(3167), + [anon_sym_never] = ACTIONS(3167), + [anon_sym_LBRACE_PIPE] = ACTIONS(3191), [sym_html_comment] = ACTIONS(5), }, [1113] = { - [sym_import] = STATE(4535), - [sym_nested_identifier] = STATE(5487), - [sym_string] = STATE(1620), - [sym_formal_parameters] = STATE(5661), - [sym_nested_type_identifier] = STATE(1526), - [sym__type_query_member_expression_in_type_annotation] = STATE(1527), - [sym__type_query_call_expression_in_type_annotation] = STATE(1573), - [sym_type] = STATE(1546), - [sym_constructor_type] = STATE(1599), - [sym_primary_type] = STATE(1597), - [sym_template_literal_type] = STATE(1601), - [sym_infer_type] = STATE(1599), - [sym_conditional_type] = STATE(1601), - [sym_generic_type] = STATE(1601), - [sym_type_query] = STATE(1601), - [sym_index_type_query] = STATE(1601), - [sym_lookup_type] = STATE(1601), - [sym_literal_type] = STATE(1601), - [sym__number] = STATE(1628), - [sym_existential_type] = STATE(1601), - [sym_flow_maybe_type] = STATE(1601), - [sym_parenthesized_type] = STATE(1601), - [sym_predefined_type] = STATE(1601), - [sym_object_type] = STATE(1601), - [sym_type_parameters] = STATE(5219), - [sym_array_type] = STATE(1601), - [sym_tuple_type] = STATE(1601), - [sym_readonly_type] = STATE(1599), - [sym_union_type] = STATE(1601), - [sym_intersection_type] = STATE(1601), - [sym_function_type] = STATE(1599), - [sym_identifier] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3150), - [anon_sym_typeof] = ACTIONS(3152), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3156), - [anon_sym_LBRACK] = ACTIONS(3158), - [anon_sym_new] = ACTIONS(3160), - [anon_sym_AMP] = ACTIONS(3162), - [anon_sym_PIPE] = ACTIONS(3164), - [anon_sym_PLUS] = ACTIONS(3166), - [anon_sym_DASH] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3170), - [sym_number] = ACTIONS(3172), - [sym_this] = ACTIONS(3260), - [sym_true] = ACTIONS(3176), - [sym_false] = ACTIONS(3176), - [sym_null] = ACTIONS(3176), - [sym_undefined] = ACTIONS(3176), - [anon_sym_readonly] = ACTIONS(3178), - [anon_sym_QMARK] = ACTIONS(3180), - [anon_sym_any] = ACTIONS(3168), - [anon_sym_number] = ACTIONS(3168), - [anon_sym_boolean] = ACTIONS(3168), - [anon_sym_string] = ACTIONS(3168), - [anon_sym_symbol] = ACTIONS(3168), - [anon_sym_object] = ACTIONS(3168), - [anon_sym_abstract] = ACTIONS(3182), - [anon_sym_infer] = ACTIONS(3186), - [anon_sym_keyof] = ACTIONS(3188), - [anon_sym_unique] = ACTIONS(3190), - [anon_sym_unknown] = ACTIONS(3168), - [anon_sym_never] = ACTIONS(3168), - [anon_sym_LBRACE_PIPE] = ACTIONS(3192), - [sym_html_comment] = ACTIONS(5), - }, - [1114] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5574), - [sym_string] = STATE(3242), - [sym_formal_parameters] = STATE(5809), - [sym_nested_type_identifier] = STATE(3153), - [sym__type_query_member_expression_in_type_annotation] = STATE(3081), - [sym__type_query_call_expression_in_type_annotation] = STATE(3197), - [sym_type] = STATE(4197), - [sym_constructor_type] = STATE(3250), - [sym_primary_type] = STATE(3251), - [sym_template_literal_type] = STATE(3252), - [sym_infer_type] = STATE(3250), - [sym_conditional_type] = STATE(3252), - [sym_generic_type] = STATE(3252), - [sym_type_query] = STATE(3252), - [sym_index_type_query] = STATE(3252), - [sym_lookup_type] = STATE(3252), - [sym_literal_type] = STATE(3252), - [sym__number] = STATE(3253), - [sym_existential_type] = STATE(3252), - [sym_flow_maybe_type] = STATE(3252), - [sym_parenthesized_type] = STATE(3252), - [sym_predefined_type] = STATE(3252), - [sym_object_type] = STATE(3252), - [sym_type_parameters] = STATE(5159), - [sym_array_type] = STATE(3252), - [sym_tuple_type] = STATE(3252), - [sym_readonly_type] = STATE(3250), - [sym_union_type] = STATE(3252), - [sym_intersection_type] = STATE(3252), - [sym_function_type] = STATE(3250), - [sym_identifier] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_new] = ACTIONS(1635), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [anon_sym_DQUOTE] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(1651), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), - [sym_html_comment] = ACTIONS(5), - }, - [1115] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3881), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym_html_comment] = ACTIONS(5), - }, - [1116] = { - [sym_import] = STATE(4763), - [sym_nested_identifier] = STATE(5701), - [sym_string] = STATE(1961), - [sym_formal_parameters] = STATE(5838), - [sym_nested_type_identifier] = STATE(1823), - [sym__type_query_member_expression_in_type_annotation] = STATE(1867), - [sym__type_query_call_expression_in_type_annotation] = STATE(1905), - [sym_type] = STATE(1931), - [sym_constructor_type] = STATE(1910), - [sym_primary_type] = STATE(1913), + [sym_import] = STATE(4650), + [sym_nested_identifier] = STATE(5567), + [sym_string] = STATE(1975), + [sym_formal_parameters] = STATE(5527), + [sym_nested_type_identifier] = STATE(1865), + [sym__type_query_member_expression_in_type_annotation] = STATE(1781), + [sym__type_query_call_expression_in_type_annotation] = STATE(1911), + [sym_type] = STATE(1910), + [sym_constructor_type] = STATE(1912), + [sym_primary_type] = STATE(1915), [sym_template_literal_type] = STATE(1916), - [sym_infer_type] = STATE(1910), + [sym_infer_type] = STATE(1912), [sym_conditional_type] = STATE(1916), [sym_generic_type] = STATE(1916), [sym_type_query] = STATE(1916), @@ -134405,1622 +132368,1844 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_type] = STATE(1916), [sym_predefined_type] = STATE(1916), [sym_object_type] = STATE(1916), - [sym_type_parameters] = STATE(5278), + [sym_type_parameters] = STATE(5243), [sym_array_type] = STATE(1916), [sym_tuple_type] = STATE(1916), - [sym_readonly_type] = STATE(1910), + [sym_readonly_type] = STATE(1912), [sym_union_type] = STATE(1916), [sym_intersection_type] = STATE(1916), - [sym_function_type] = STATE(1910), - [sym_identifier] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(3100), - [anon_sym_LBRACE] = ACTIONS(3102), - [anon_sym_typeof] = ACTIONS(3104), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3106), - [anon_sym_LPAREN] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(3110), - [anon_sym_new] = ACTIONS(3112), - [anon_sym_AMP] = ACTIONS(3114), - [anon_sym_PIPE] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3122), - [sym_number] = ACTIONS(3124), - [sym_this] = ACTIONS(3264), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [sym_null] = ACTIONS(3128), - [sym_undefined] = ACTIONS(3128), - [anon_sym_readonly] = ACTIONS(3130), - [anon_sym_QMARK] = ACTIONS(3132), - [anon_sym_any] = ACTIONS(3120), - [anon_sym_number] = ACTIONS(3120), - [anon_sym_boolean] = ACTIONS(3120), - [anon_sym_string] = ACTIONS(3120), - [anon_sym_symbol] = ACTIONS(3120), - [anon_sym_object] = ACTIONS(3120), - [anon_sym_abstract] = ACTIONS(3134), - [anon_sym_infer] = ACTIONS(3138), - [anon_sym_keyof] = ACTIONS(3140), - [anon_sym_unique] = ACTIONS(3142), - [anon_sym_unknown] = ACTIONS(3120), - [anon_sym_never] = ACTIONS(3120), - [anon_sym_LBRACE_PIPE] = ACTIONS(3144), + [sym_function_type] = STATE(1912), + [sym_identifier] = ACTIONS(3255), + [anon_sym_STAR] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3267), + [anon_sym_LPAREN] = ACTIONS(3055), + [anon_sym_LBRACK] = ACTIONS(3057), + [anon_sym_new] = ACTIONS(3059), + [anon_sym_AMP] = ACTIONS(3061), + [anon_sym_PIPE] = ACTIONS(3063), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3067), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3069), + [sym_number] = ACTIONS(3071), + [sym_this] = ACTIONS(3257), + [sym_true] = ACTIONS(3075), + [sym_false] = ACTIONS(3075), + [sym_null] = ACTIONS(3075), + [sym_undefined] = ACTIONS(3075), + [anon_sym_readonly] = ACTIONS(3077), + [anon_sym_QMARK] = ACTIONS(3079), + [anon_sym_any] = ACTIONS(3067), + [anon_sym_number] = ACTIONS(3067), + [anon_sym_boolean] = ACTIONS(3067), + [anon_sym_string] = ACTIONS(3067), + [anon_sym_symbol] = ACTIONS(3067), + [anon_sym_object] = ACTIONS(3067), + [anon_sym_abstract] = ACTIONS(3081), + [anon_sym_infer] = ACTIONS(3085), + [anon_sym_keyof] = ACTIONS(3087), + [anon_sym_unique] = ACTIONS(3089), + [anon_sym_unknown] = ACTIONS(3067), + [anon_sym_never] = ACTIONS(3067), + [anon_sym_LBRACE_PIPE] = ACTIONS(3091), + [sym_html_comment] = ACTIONS(5), + }, + [1114] = { + [sym_import] = STATE(4531), + [sym_nested_identifier] = STATE(5486), + [sym_string] = STATE(1632), + [sym_formal_parameters] = STATE(5639), + [sym_nested_type_identifier] = STATE(1527), + [sym__type_query_member_expression_in_type_annotation] = STATE(1514), + [sym__type_query_call_expression_in_type_annotation] = STATE(1574), + [sym_type] = STATE(1581), + [sym_constructor_type] = STATE(1544), + [sym_primary_type] = STATE(1554), + [sym_template_literal_type] = STATE(1556), + [sym_infer_type] = STATE(1544), + [sym_conditional_type] = STATE(1556), + [sym_generic_type] = STATE(1556), + [sym_type_query] = STATE(1556), + [sym_index_type_query] = STATE(1556), + [sym_lookup_type] = STATE(1556), + [sym_literal_type] = STATE(1556), + [sym__number] = STATE(1536), + [sym_existential_type] = STATE(1556), + [sym_flow_maybe_type] = STATE(1556), + [sym_parenthesized_type] = STATE(1556), + [sym_predefined_type] = STATE(1556), + [sym_object_type] = STATE(1556), + [sym_type_parameters] = STATE(5205), + [sym_array_type] = STATE(1556), + [sym_tuple_type] = STATE(1556), + [sym_readonly_type] = STATE(1544), + [sym_union_type] = STATE(1556), + [sym_intersection_type] = STATE(1556), + [sym_function_type] = STATE(1544), + [sym_identifier] = ACTIONS(3251), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_typeof] = ACTIONS(3151), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_PIPE] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3169), + [sym_number] = ACTIONS(3171), + [sym_this] = ACTIONS(3253), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [sym_null] = ACTIONS(3175), + [sym_undefined] = ACTIONS(3175), + [anon_sym_readonly] = ACTIONS(3177), + [anon_sym_QMARK] = ACTIONS(3179), + [anon_sym_any] = ACTIONS(3167), + [anon_sym_number] = ACTIONS(3167), + [anon_sym_boolean] = ACTIONS(3167), + [anon_sym_string] = ACTIONS(3167), + [anon_sym_symbol] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3181), + [anon_sym_infer] = ACTIONS(3185), + [anon_sym_keyof] = ACTIONS(3187), + [anon_sym_unique] = ACTIONS(3189), + [anon_sym_unknown] = ACTIONS(3167), + [anon_sym_never] = ACTIONS(3167), + [anon_sym_LBRACE_PIPE] = ACTIONS(3191), + [sym_html_comment] = ACTIONS(5), + }, + [1115] = { + [sym_import] = STATE(4950), + [sym_nested_identifier] = STATE(5535), + [sym_string] = STATE(3265), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(3076), + [sym__type_query_call_expression_in_type_annotation] = STATE(3200), + [sym_type] = STATE(4202), + [sym_constructor_type] = STATE(3271), + [sym_primary_type] = STATE(3272), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3271), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3273), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5146), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3271), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3271), + [sym_identifier] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_new] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_this] = ACTIONS(1634), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_any] = ACTIONS(1032), + [anon_sym_number] = ACTIONS(1032), + [anon_sym_boolean] = ACTIONS(1032), + [anon_sym_string] = ACTIONS(1032), + [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_object] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_infer] = ACTIONS(1026), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), + [sym_html_comment] = ACTIONS(5), + }, + [1116] = { + [sym_import] = STATE(4808), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5569), + [sym_nested_type_identifier] = STATE(3487), + [sym__type_query_member_expression_in_type_annotation] = STATE(3388), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3021), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5361), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3263), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_typeof] = ACTIONS(3101), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_PIPE] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3109), + [anon_sym_SQUOTE] = ACTIONS(3111), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3117), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(3119), + [anon_sym_infer] = ACTIONS(3123), + [anon_sym_keyof] = ACTIONS(3125), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(3127), [sym_html_comment] = ACTIONS(5), }, [1117] = { - [sym_import] = STATE(4801), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5705), - [sym_nested_type_identifier] = STATE(3495), - [sym__type_query_member_expression_in_type_annotation] = STATE(3462), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(2955), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5376), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(3272), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_typeof] = ACTIONS(3074), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(3076), - [anon_sym_AMP] = ACTIONS(3078), - [anon_sym_PIPE] = ACTIONS(3080), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(2344), - [anon_sym_SQUOTE] = ACTIONS(2346), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(3084), - [anon_sym_QMARK] = ACTIONS(3086), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(3088), - [anon_sym_infer] = ACTIONS(3092), - [anon_sym_keyof] = ACTIONS(3094), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3096), + [sym_import] = STATE(4808), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5569), + [sym_nested_type_identifier] = STATE(3487), + [sym__type_query_member_expression_in_type_annotation] = STATE(3388), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3850), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5361), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3263), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_typeof] = ACTIONS(3101), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_PIPE] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3109), + [anon_sym_SQUOTE] = ACTIONS(3111), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3117), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(3119), + [anon_sym_infer] = ACTIONS(3123), + [anon_sym_keyof] = ACTIONS(3125), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(3127), [sym_html_comment] = ACTIONS(5), }, [1118] = { - [sym_import] = STATE(4801), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5705), - [sym_nested_type_identifier] = STATE(3495), - [sym__type_query_member_expression_in_type_annotation] = STATE(3462), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3779), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5376), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(3272), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_typeof] = ACTIONS(3074), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(3076), - [anon_sym_AMP] = ACTIONS(3078), - [anon_sym_PIPE] = ACTIONS(3080), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(2344), - [anon_sym_SQUOTE] = ACTIONS(2346), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(3084), - [anon_sym_QMARK] = ACTIONS(3086), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(3088), - [anon_sym_infer] = ACTIONS(3092), - [anon_sym_keyof] = ACTIONS(3094), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3096), + [sym_import] = STATE(4808), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5569), + [sym_nested_type_identifier] = STATE(3487), + [sym__type_query_member_expression_in_type_annotation] = STATE(3388), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(2947), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5361), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3263), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_typeof] = ACTIONS(3101), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_PIPE] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3109), + [anon_sym_SQUOTE] = ACTIONS(3111), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3117), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(3119), + [anon_sym_infer] = ACTIONS(3123), + [anon_sym_keyof] = ACTIONS(3125), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(3127), [sym_html_comment] = ACTIONS(5), }, [1119] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(4449), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4808), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5569), + [sym_nested_type_identifier] = STATE(3487), + [sym__type_query_member_expression_in_type_annotation] = STATE(3388), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3824), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5361), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3263), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_typeof] = ACTIONS(3101), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_PIPE] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3109), + [anon_sym_SQUOTE] = ACTIONS(3111), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3117), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(3119), + [anon_sym_infer] = ACTIONS(3123), + [anon_sym_keyof] = ACTIONS(3125), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(3127), [sym_html_comment] = ACTIONS(5), }, [1120] = { - [sym_import] = STATE(4801), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5705), - [sym_nested_type_identifier] = STATE(3495), - [sym__type_query_member_expression_in_type_annotation] = STATE(3462), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3025), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5376), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(3272), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_typeof] = ACTIONS(3074), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(3076), - [anon_sym_AMP] = ACTIONS(3078), - [anon_sym_PIPE] = ACTIONS(3080), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(2344), - [anon_sym_SQUOTE] = ACTIONS(2346), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(3084), - [anon_sym_QMARK] = ACTIONS(3086), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(3088), - [anon_sym_infer] = ACTIONS(3092), - [anon_sym_keyof] = ACTIONS(3094), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3096), + [sym_import] = STATE(4808), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5569), + [sym_nested_type_identifier] = STATE(3487), + [sym__type_query_member_expression_in_type_annotation] = STATE(3388), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3763), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5361), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3263), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_typeof] = ACTIONS(3101), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_PIPE] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3109), + [anon_sym_SQUOTE] = ACTIONS(3111), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3117), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(3119), + [anon_sym_infer] = ACTIONS(3123), + [anon_sym_keyof] = ACTIONS(3125), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(3127), [sym_html_comment] = ACTIONS(5), }, [1121] = { - [sym_import] = STATE(4801), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5705), - [sym_nested_type_identifier] = STATE(3495), - [sym__type_query_member_expression_in_type_annotation] = STATE(3462), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3809), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5376), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(3272), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_typeof] = ACTIONS(3074), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(3076), - [anon_sym_AMP] = ACTIONS(3078), - [anon_sym_PIPE] = ACTIONS(3080), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(2344), - [anon_sym_SQUOTE] = ACTIONS(2346), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(3084), - [anon_sym_QMARK] = ACTIONS(3086), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(3088), - [anon_sym_infer] = ACTIONS(3092), - [anon_sym_keyof] = ACTIONS(3094), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3096), + [sym_import] = STATE(4808), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5569), + [sym_nested_type_identifier] = STATE(3487), + [sym__type_query_member_expression_in_type_annotation] = STATE(3388), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3766), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5361), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3263), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_typeof] = ACTIONS(3101), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_PIPE] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3109), + [anon_sym_SQUOTE] = ACTIONS(3111), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3117), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(3119), + [anon_sym_infer] = ACTIONS(3123), + [anon_sym_keyof] = ACTIONS(3125), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(3127), [sym_html_comment] = ACTIONS(5), }, [1122] = { - [sym_import] = STATE(4801), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5705), - [sym_nested_type_identifier] = STATE(3495), - [sym__type_query_member_expression_in_type_annotation] = STATE(3462), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(4330), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5376), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(3272), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_typeof] = ACTIONS(3074), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(3076), - [anon_sym_AMP] = ACTIONS(3078), - [anon_sym_PIPE] = ACTIONS(3080), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(2344), - [anon_sym_SQUOTE] = ACTIONS(2346), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(3084), - [anon_sym_QMARK] = ACTIONS(3086), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(3088), - [anon_sym_infer] = ACTIONS(3092), - [anon_sym_keyof] = ACTIONS(3094), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3096), + [sym_import] = STATE(4808), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5569), + [sym_nested_type_identifier] = STATE(3487), + [sym__type_query_member_expression_in_type_annotation] = STATE(3388), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(2955), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5361), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3263), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_typeof] = ACTIONS(3101), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_PIPE] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3109), + [anon_sym_SQUOTE] = ACTIONS(3111), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3117), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(3119), + [anon_sym_infer] = ACTIONS(3123), + [anon_sym_keyof] = ACTIONS(3125), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(3127), [sym_html_comment] = ACTIONS(5), }, [1123] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(4451), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4808), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5569), + [sym_nested_type_identifier] = STATE(3487), + [sym__type_query_member_expression_in_type_annotation] = STATE(3388), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(2972), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5361), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3263), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_typeof] = ACTIONS(3101), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_PIPE] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3109), + [anon_sym_SQUOTE] = ACTIONS(3111), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3117), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(3119), + [anon_sym_infer] = ACTIONS(3123), + [anon_sym_keyof] = ACTIONS(3125), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(3127), [sym_html_comment] = ACTIONS(5), }, [1124] = { - [sym_import] = STATE(4801), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5705), - [sym_nested_type_identifier] = STATE(3495), - [sym__type_query_member_expression_in_type_annotation] = STATE(3462), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3812), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5376), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(3272), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_typeof] = ACTIONS(3074), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(3076), - [anon_sym_AMP] = ACTIONS(3078), - [anon_sym_PIPE] = ACTIONS(3080), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(2344), - [anon_sym_SQUOTE] = ACTIONS(2346), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(3084), - [anon_sym_QMARK] = ACTIONS(3086), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(3088), - [anon_sym_infer] = ACTIONS(3092), - [anon_sym_keyof] = ACTIONS(3094), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3096), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3856), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1125] = { - [sym_import] = STATE(4801), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5705), - [sym_nested_type_identifier] = STATE(3495), - [sym__type_query_member_expression_in_type_annotation] = STATE(3462), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3814), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5376), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(3272), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_typeof] = ACTIONS(3074), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(3076), - [anon_sym_AMP] = ACTIONS(3078), - [anon_sym_PIPE] = ACTIONS(3080), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(2344), - [anon_sym_SQUOTE] = ACTIONS(2346), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(3084), - [anon_sym_QMARK] = ACTIONS(3086), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(3088), - [anon_sym_infer] = ACTIONS(3092), - [anon_sym_keyof] = ACTIONS(3094), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3096), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4422), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1126] = { - [sym_import] = STATE(4801), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5705), - [sym_nested_type_identifier] = STATE(3495), - [sym__type_query_member_expression_in_type_annotation] = STATE(3462), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(2946), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5376), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(3272), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_typeof] = ACTIONS(3074), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(3076), - [anon_sym_AMP] = ACTIONS(3078), - [anon_sym_PIPE] = ACTIONS(3080), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(2344), - [anon_sym_SQUOTE] = ACTIONS(2346), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(3084), - [anon_sym_QMARK] = ACTIONS(3086), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(3088), - [anon_sym_infer] = ACTIONS(3092), - [anon_sym_keyof] = ACTIONS(3094), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3096), + [sym_import] = STATE(4808), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5569), + [sym_nested_type_identifier] = STATE(3487), + [sym__type_query_member_expression_in_type_annotation] = STATE(3388), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4306), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5361), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3263), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_typeof] = ACTIONS(3101), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_PIPE] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3109), + [anon_sym_SQUOTE] = ACTIONS(3111), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3117), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(3119), + [anon_sym_infer] = ACTIONS(3123), + [anon_sym_keyof] = ACTIONS(3125), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(3127), [sym_html_comment] = ACTIONS(5), }, [1127] = { - [sym_import] = STATE(4801), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5705), - [sym_nested_type_identifier] = STATE(3495), - [sym__type_query_member_expression_in_type_annotation] = STATE(3462), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(2947), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5376), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(3272), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_typeof] = ACTIONS(3074), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(3076), - [anon_sym_AMP] = ACTIONS(3078), - [anon_sym_PIPE] = ACTIONS(3080), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(2344), - [anon_sym_SQUOTE] = ACTIONS(2346), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(3084), - [anon_sym_QMARK] = ACTIONS(3086), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(3088), - [anon_sym_infer] = ACTIONS(3092), - [anon_sym_keyof] = ACTIONS(3094), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3096), + [sym_import] = STATE(4808), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5569), + [sym_nested_type_identifier] = STATE(3487), + [sym__type_query_member_expression_in_type_annotation] = STATE(3388), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(2962), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5361), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3263), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_typeof] = ACTIONS(3101), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_PIPE] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3109), + [anon_sym_SQUOTE] = ACTIONS(3111), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3117), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(3119), + [anon_sym_infer] = ACTIONS(3123), + [anon_sym_keyof] = ACTIONS(3125), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(3127), [sym_html_comment] = ACTIONS(5), }, [1128] = { - [sym_import] = STATE(4801), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5705), - [sym_nested_type_identifier] = STATE(3495), - [sym__type_query_member_expression_in_type_annotation] = STATE(3462), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3045), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5376), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(3272), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_typeof] = ACTIONS(3074), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(3076), - [anon_sym_AMP] = ACTIONS(3078), - [anon_sym_PIPE] = ACTIONS(3080), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(2344), - [anon_sym_SQUOTE] = ACTIONS(2346), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(3084), - [anon_sym_QMARK] = ACTIONS(3086), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(3088), - [anon_sym_infer] = ACTIONS(3092), - [anon_sym_keyof] = ACTIONS(3094), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3096), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4424), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1129] = { - [sym_import] = STATE(4801), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5705), - [sym_nested_type_identifier] = STATE(3495), - [sym__type_query_member_expression_in_type_annotation] = STATE(3462), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3840), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5376), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(3272), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_typeof] = ACTIONS(3074), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(3076), - [anon_sym_AMP] = ACTIONS(3078), - [anon_sym_PIPE] = ACTIONS(3080), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(2344), - [anon_sym_SQUOTE] = ACTIONS(2346), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(3084), - [anon_sym_QMARK] = ACTIONS(3086), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(3088), - [anon_sym_infer] = ACTIONS(3092), - [anon_sym_keyof] = ACTIONS(3094), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3096), + [sym_import] = STATE(4808), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5569), + [sym_nested_type_identifier] = STATE(3487), + [sym__type_query_member_expression_in_type_annotation] = STATE(3388), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3838), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5361), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3263), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_typeof] = ACTIONS(3101), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_PIPE] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3109), + [anon_sym_SQUOTE] = ACTIONS(3111), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(3115), + [anon_sym_QMARK] = ACTIONS(3117), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(3119), + [anon_sym_infer] = ACTIONS(3123), + [anon_sym_keyof] = ACTIONS(3125), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(3127), [sym_html_comment] = ACTIONS(5), }, [1130] = { - [sym_import] = STATE(4676), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(3304), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3037), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5461), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3019), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1131] = { - [sym_import] = STATE(4676), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(3304), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3728), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5461), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3660), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1132] = { - [sym_import] = STATE(4676), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(3304), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3729), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5461), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(3661), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1133] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(5019), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2948), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(5022), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2949), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1134] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(5019), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2945), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(5022), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1135] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(4395), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4391), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1136] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5574), - [sym_string] = STATE(3242), - [sym_formal_parameters] = STATE(5809), - [sym_nested_type_identifier] = STATE(3153), - [sym__type_query_member_expression_in_type_annotation] = STATE(3081), - [sym__type_query_call_expression_in_type_annotation] = STATE(3197), - [sym_type] = STATE(3226), - [sym_constructor_type] = STATE(3250), - [sym_primary_type] = STATE(3251), - [sym_template_literal_type] = STATE(3252), - [sym_infer_type] = STATE(3250), - [sym_conditional_type] = STATE(3252), - [sym_generic_type] = STATE(3252), - [sym_type_query] = STATE(3252), - [sym_index_type_query] = STATE(3252), - [sym_lookup_type] = STATE(3252), - [sym_literal_type] = STATE(3252), - [sym__number] = STATE(3253), - [sym_existential_type] = STATE(3252), - [sym_flow_maybe_type] = STATE(3252), - [sym_parenthesized_type] = STATE(3252), - [sym_predefined_type] = STATE(3252), - [sym_object_type] = STATE(3252), - [sym_type_parameters] = STATE(5159), - [sym_array_type] = STATE(3252), - [sym_tuple_type] = STATE(3252), - [sym_readonly_type] = STATE(3250), - [sym_union_type] = STATE(3252), - [sym_intersection_type] = STATE(3252), - [sym_function_type] = STATE(3250), - [sym_identifier] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_new] = ACTIONS(1635), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [anon_sym_DQUOTE] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(1651), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_import] = STATE(4950), + [sym_nested_identifier] = STATE(5535), + [sym_string] = STATE(3265), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(3076), + [sym__type_query_call_expression_in_type_annotation] = STATE(3200), + [sym_type] = STATE(3276), + [sym_constructor_type] = STATE(3271), + [sym_primary_type] = STATE(3272), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3271), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3273), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5146), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3271), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3271), + [sym_identifier] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_new] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_this] = ACTIONS(1634), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_any] = ACTIONS(1032), + [anon_sym_number] = ACTIONS(1032), + [anon_sym_boolean] = ACTIONS(1032), + [anon_sym_string] = ACTIONS(1032), + [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_object] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_infer] = ACTIONS(1026), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), [sym_html_comment] = ACTIONS(5), }, [1137] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5574), - [sym_string] = STATE(3242), - [sym_formal_parameters] = STATE(5809), - [sym_nested_type_identifier] = STATE(3153), - [sym__type_query_member_expression_in_type_annotation] = STATE(3081), - [sym__type_query_call_expression_in_type_annotation] = STATE(3197), - [sym_type] = STATE(3260), - [sym_constructor_type] = STATE(3250), - [sym_primary_type] = STATE(3251), - [sym_template_literal_type] = STATE(3252), - [sym_infer_type] = STATE(3250), - [sym_conditional_type] = STATE(3252), - [sym_generic_type] = STATE(3252), - [sym_type_query] = STATE(3252), - [sym_index_type_query] = STATE(3252), - [sym_lookup_type] = STATE(3252), - [sym_literal_type] = STATE(3252), - [sym__number] = STATE(3253), - [sym_existential_type] = STATE(3252), - [sym_flow_maybe_type] = STATE(3252), - [sym_parenthesized_type] = STATE(3252), - [sym_predefined_type] = STATE(3252), - [sym_object_type] = STATE(3252), - [sym_type_parameters] = STATE(5159), - [sym_array_type] = STATE(3252), - [sym_tuple_type] = STATE(3252), - [sym_readonly_type] = STATE(3250), - [sym_union_type] = STATE(3252), - [sym_intersection_type] = STATE(3252), - [sym_function_type] = STATE(3250), - [sym_identifier] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_new] = ACTIONS(1635), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [anon_sym_DQUOTE] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(1651), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_import] = STATE(4950), + [sym_nested_identifier] = STATE(5535), + [sym_string] = STATE(3265), + [sym_formal_parameters] = STATE(5840), + [sym_nested_type_identifier] = STATE(3151), + [sym__type_query_member_expression_in_type_annotation] = STATE(3076), + [sym__type_query_call_expression_in_type_annotation] = STATE(3200), + [sym_type] = STATE(3251), + [sym_constructor_type] = STATE(3271), + [sym_primary_type] = STATE(3272), + [sym_template_literal_type] = STATE(3273), + [sym_infer_type] = STATE(3271), + [sym_conditional_type] = STATE(3273), + [sym_generic_type] = STATE(3273), + [sym_type_query] = STATE(3273), + [sym_index_type_query] = STATE(3273), + [sym_lookup_type] = STATE(3273), + [sym_literal_type] = STATE(3273), + [sym__number] = STATE(3274), + [sym_existential_type] = STATE(3273), + [sym_flow_maybe_type] = STATE(3273), + [sym_parenthesized_type] = STATE(3273), + [sym_predefined_type] = STATE(3273), + [sym_object_type] = STATE(3273), + [sym_type_parameters] = STATE(5146), + [sym_array_type] = STATE(3273), + [sym_tuple_type] = STATE(3273), + [sym_readonly_type] = STATE(3271), + [sym_union_type] = STATE(3273), + [sym_intersection_type] = STATE(3273), + [sym_function_type] = STATE(3271), + [sym_identifier] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_new] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_this] = ACTIONS(1634), + [sym_true] = ACTIONS(1636), + [sym_false] = ACTIONS(1636), + [sym_null] = ACTIONS(1636), + [sym_undefined] = ACTIONS(1636), + [anon_sym_readonly] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_any] = ACTIONS(1032), + [anon_sym_number] = ACTIONS(1032), + [anon_sym_boolean] = ACTIONS(1032), + [anon_sym_string] = ACTIONS(1032), + [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_object] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_infer] = ACTIONS(1026), + [anon_sym_keyof] = ACTIONS(1028), + [anon_sym_unique] = ACTIONS(1030), + [anon_sym_unknown] = ACTIONS(1032), + [anon_sym_never] = ACTIONS(1032), + [anon_sym_LBRACE_PIPE] = ACTIONS(1034), [sym_html_comment] = ACTIONS(5), }, [1138] = { - [sym_import] = STATE(4763), - [sym_nested_identifier] = STATE(5701), - [sym_string] = STATE(1961), - [sym_formal_parameters] = STATE(5838), - [sym_nested_type_identifier] = STATE(1823), - [sym__type_query_member_expression_in_type_annotation] = STATE(1867), - [sym__type_query_call_expression_in_type_annotation] = STATE(1905), - [sym_type] = STATE(2006), - [sym_constructor_type] = STATE(1910), - [sym_primary_type] = STATE(1913), + [sym_import] = STATE(4650), + [sym_nested_identifier] = STATE(5567), + [sym_string] = STATE(1975), + [sym_formal_parameters] = STATE(5527), + [sym_nested_type_identifier] = STATE(1865), + [sym__type_query_member_expression_in_type_annotation] = STATE(1781), + [sym__type_query_call_expression_in_type_annotation] = STATE(1911), + [sym_type] = STATE(1925), + [sym_constructor_type] = STATE(1912), + [sym_primary_type] = STATE(1915), [sym_template_literal_type] = STATE(1916), - [sym_infer_type] = STATE(1910), + [sym_infer_type] = STATE(1912), [sym_conditional_type] = STATE(1916), [sym_generic_type] = STATE(1916), [sym_type_query] = STATE(1916), @@ -136033,68 +134218,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_type] = STATE(1916), [sym_predefined_type] = STATE(1916), [sym_object_type] = STATE(1916), - [sym_type_parameters] = STATE(5278), + [sym_type_parameters] = STATE(5243), [sym_array_type] = STATE(1916), [sym_tuple_type] = STATE(1916), - [sym_readonly_type] = STATE(1910), + [sym_readonly_type] = STATE(1912), [sym_union_type] = STATE(1916), [sym_intersection_type] = STATE(1916), - [sym_function_type] = STATE(1910), - [sym_identifier] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(3100), - [anon_sym_LBRACE] = ACTIONS(3102), - [anon_sym_typeof] = ACTIONS(3104), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3106), - [anon_sym_LPAREN] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(3110), - [anon_sym_new] = ACTIONS(3112), - [anon_sym_AMP] = ACTIONS(3114), - [anon_sym_PIPE] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3122), - [sym_number] = ACTIONS(3124), - [sym_this] = ACTIONS(3264), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [sym_null] = ACTIONS(3128), - [sym_undefined] = ACTIONS(3128), - [anon_sym_readonly] = ACTIONS(3130), - [anon_sym_QMARK] = ACTIONS(3132), - [anon_sym_any] = ACTIONS(3120), - [anon_sym_number] = ACTIONS(3120), - [anon_sym_boolean] = ACTIONS(3120), - [anon_sym_string] = ACTIONS(3120), - [anon_sym_symbol] = ACTIONS(3120), - [anon_sym_object] = ACTIONS(3120), - [anon_sym_abstract] = ACTIONS(3134), - [anon_sym_infer] = ACTIONS(3138), - [anon_sym_keyof] = ACTIONS(3140), - [anon_sym_unique] = ACTIONS(3142), - [anon_sym_unknown] = ACTIONS(3120), - [anon_sym_never] = ACTIONS(3120), - [anon_sym_LBRACE_PIPE] = ACTIONS(3144), + [sym_function_type] = STATE(1912), + [sym_identifier] = ACTIONS(3255), + [anon_sym_STAR] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3053), + [anon_sym_LPAREN] = ACTIONS(3055), + [anon_sym_LBRACK] = ACTIONS(3057), + [anon_sym_new] = ACTIONS(3059), + [anon_sym_AMP] = ACTIONS(3061), + [anon_sym_PIPE] = ACTIONS(3063), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3067), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3069), + [sym_number] = ACTIONS(3071), + [sym_this] = ACTIONS(3257), + [sym_true] = ACTIONS(3075), + [sym_false] = ACTIONS(3075), + [sym_null] = ACTIONS(3075), + [sym_undefined] = ACTIONS(3075), + [anon_sym_readonly] = ACTIONS(3077), + [anon_sym_QMARK] = ACTIONS(3079), + [anon_sym_any] = ACTIONS(3067), + [anon_sym_number] = ACTIONS(3067), + [anon_sym_boolean] = ACTIONS(3067), + [anon_sym_string] = ACTIONS(3067), + [anon_sym_symbol] = ACTIONS(3067), + [anon_sym_object] = ACTIONS(3067), + [anon_sym_abstract] = ACTIONS(3081), + [anon_sym_infer] = ACTIONS(3085), + [anon_sym_keyof] = ACTIONS(3087), + [anon_sym_unique] = ACTIONS(3089), + [anon_sym_unknown] = ACTIONS(3067), + [anon_sym_never] = ACTIONS(3067), + [anon_sym_LBRACE_PIPE] = ACTIONS(3091), [sym_html_comment] = ACTIONS(5), }, [1139] = { - [sym_import] = STATE(4763), - [sym_nested_identifier] = STATE(5701), - [sym_string] = STATE(1961), - [sym_formal_parameters] = STATE(5838), - [sym_nested_type_identifier] = STATE(1823), - [sym__type_query_member_expression_in_type_annotation] = STATE(1867), - [sym__type_query_call_expression_in_type_annotation] = STATE(1905), - [sym_type] = STATE(2112), - [sym_constructor_type] = STATE(1910), - [sym_primary_type] = STATE(1913), + [sym_import] = STATE(4650), + [sym_nested_identifier] = STATE(5567), + [sym_string] = STATE(1975), + [sym_formal_parameters] = STATE(5527), + [sym_nested_type_identifier] = STATE(1865), + [sym__type_query_member_expression_in_type_annotation] = STATE(1781), + [sym__type_query_call_expression_in_type_annotation] = STATE(1911), + [sym_type] = STATE(2110), + [sym_constructor_type] = STATE(1912), + [sym_primary_type] = STATE(1915), [sym_template_literal_type] = STATE(1916), - [sym_infer_type] = STATE(1910), + [sym_infer_type] = STATE(1912), [sym_conditional_type] = STATE(1916), [sym_generic_type] = STATE(1916), [sym_type_query] = STATE(1916), @@ -136107,68 +134292,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_type] = STATE(1916), [sym_predefined_type] = STATE(1916), [sym_object_type] = STATE(1916), - [sym_type_parameters] = STATE(5278), + [sym_type_parameters] = STATE(5243), [sym_array_type] = STATE(1916), [sym_tuple_type] = STATE(1916), - [sym_readonly_type] = STATE(1910), + [sym_readonly_type] = STATE(1912), [sym_union_type] = STATE(1916), [sym_intersection_type] = STATE(1916), - [sym_function_type] = STATE(1910), - [sym_identifier] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(3100), - [anon_sym_LBRACE] = ACTIONS(3102), - [anon_sym_typeof] = ACTIONS(3104), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3106), - [anon_sym_LPAREN] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(3110), - [anon_sym_new] = ACTIONS(3112), - [anon_sym_AMP] = ACTIONS(3114), - [anon_sym_PIPE] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3122), - [sym_number] = ACTIONS(3124), - [sym_this] = ACTIONS(3264), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [sym_null] = ACTIONS(3128), - [sym_undefined] = ACTIONS(3128), - [anon_sym_readonly] = ACTIONS(3130), - [anon_sym_QMARK] = ACTIONS(3132), - [anon_sym_any] = ACTIONS(3120), - [anon_sym_number] = ACTIONS(3120), - [anon_sym_boolean] = ACTIONS(3120), - [anon_sym_string] = ACTIONS(3120), - [anon_sym_symbol] = ACTIONS(3120), - [anon_sym_object] = ACTIONS(3120), - [anon_sym_abstract] = ACTIONS(3134), - [anon_sym_infer] = ACTIONS(3138), - [anon_sym_keyof] = ACTIONS(3140), - [anon_sym_unique] = ACTIONS(3142), - [anon_sym_unknown] = ACTIONS(3120), - [anon_sym_never] = ACTIONS(3120), - [anon_sym_LBRACE_PIPE] = ACTIONS(3144), + [sym_function_type] = STATE(1912), + [sym_identifier] = ACTIONS(3255), + [anon_sym_STAR] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3053), + [anon_sym_LPAREN] = ACTIONS(3055), + [anon_sym_LBRACK] = ACTIONS(3057), + [anon_sym_new] = ACTIONS(3059), + [anon_sym_AMP] = ACTIONS(3061), + [anon_sym_PIPE] = ACTIONS(3063), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3067), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3069), + [sym_number] = ACTIONS(3071), + [sym_this] = ACTIONS(3257), + [sym_true] = ACTIONS(3075), + [sym_false] = ACTIONS(3075), + [sym_null] = ACTIONS(3075), + [sym_undefined] = ACTIONS(3075), + [anon_sym_readonly] = ACTIONS(3077), + [anon_sym_QMARK] = ACTIONS(3079), + [anon_sym_any] = ACTIONS(3067), + [anon_sym_number] = ACTIONS(3067), + [anon_sym_boolean] = ACTIONS(3067), + [anon_sym_string] = ACTIONS(3067), + [anon_sym_symbol] = ACTIONS(3067), + [anon_sym_object] = ACTIONS(3067), + [anon_sym_abstract] = ACTIONS(3081), + [anon_sym_infer] = ACTIONS(3085), + [anon_sym_keyof] = ACTIONS(3087), + [anon_sym_unique] = ACTIONS(3089), + [anon_sym_unknown] = ACTIONS(3067), + [anon_sym_never] = ACTIONS(3067), + [anon_sym_LBRACE_PIPE] = ACTIONS(3091), [sym_html_comment] = ACTIONS(5), }, [1140] = { - [sym_import] = STATE(4763), - [sym_nested_identifier] = STATE(5701), - [sym_string] = STATE(1961), - [sym_formal_parameters] = STATE(5838), - [sym_nested_type_identifier] = STATE(1823), - [sym__type_query_member_expression_in_type_annotation] = STATE(1867), - [sym__type_query_call_expression_in_type_annotation] = STATE(1905), - [sym_type] = STATE(2041), - [sym_constructor_type] = STATE(1910), - [sym_primary_type] = STATE(1913), + [sym_import] = STATE(4650), + [sym_nested_identifier] = STATE(5567), + [sym_string] = STATE(1975), + [sym_formal_parameters] = STATE(5527), + [sym_nested_type_identifier] = STATE(1865), + [sym__type_query_member_expression_in_type_annotation] = STATE(1781), + [sym__type_query_call_expression_in_type_annotation] = STATE(1911), + [sym_type] = STATE(2006), + [sym_constructor_type] = STATE(1912), + [sym_primary_type] = STATE(1915), [sym_template_literal_type] = STATE(1916), - [sym_infer_type] = STATE(1910), + [sym_infer_type] = STATE(1912), [sym_conditional_type] = STATE(1916), [sym_generic_type] = STATE(1916), [sym_type_query] = STATE(1916), @@ -136181,68 +134366,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_type] = STATE(1916), [sym_predefined_type] = STATE(1916), [sym_object_type] = STATE(1916), - [sym_type_parameters] = STATE(5278), + [sym_type_parameters] = STATE(5243), [sym_array_type] = STATE(1916), [sym_tuple_type] = STATE(1916), - [sym_readonly_type] = STATE(1910), + [sym_readonly_type] = STATE(1912), [sym_union_type] = STATE(1916), [sym_intersection_type] = STATE(1916), - [sym_function_type] = STATE(1910), - [sym_identifier] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(3100), - [anon_sym_LBRACE] = ACTIONS(3102), - [anon_sym_typeof] = ACTIONS(3104), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3106), - [anon_sym_LPAREN] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(3110), - [anon_sym_new] = ACTIONS(3112), - [anon_sym_AMP] = ACTIONS(3114), - [anon_sym_PIPE] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3122), - [sym_number] = ACTIONS(3124), - [sym_this] = ACTIONS(3264), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [sym_null] = ACTIONS(3128), - [sym_undefined] = ACTIONS(3128), - [anon_sym_readonly] = ACTIONS(3130), - [anon_sym_QMARK] = ACTIONS(3132), - [anon_sym_any] = ACTIONS(3120), - [anon_sym_number] = ACTIONS(3120), - [anon_sym_boolean] = ACTIONS(3120), - [anon_sym_string] = ACTIONS(3120), - [anon_sym_symbol] = ACTIONS(3120), - [anon_sym_object] = ACTIONS(3120), - [anon_sym_abstract] = ACTIONS(3134), - [anon_sym_infer] = ACTIONS(3138), - [anon_sym_keyof] = ACTIONS(3140), - [anon_sym_unique] = ACTIONS(3142), - [anon_sym_unknown] = ACTIONS(3120), - [anon_sym_never] = ACTIONS(3120), - [anon_sym_LBRACE_PIPE] = ACTIONS(3144), + [sym_function_type] = STATE(1912), + [sym_identifier] = ACTIONS(3255), + [anon_sym_STAR] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3053), + [anon_sym_LPAREN] = ACTIONS(3055), + [anon_sym_LBRACK] = ACTIONS(3057), + [anon_sym_new] = ACTIONS(3059), + [anon_sym_AMP] = ACTIONS(3061), + [anon_sym_PIPE] = ACTIONS(3063), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3067), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3069), + [sym_number] = ACTIONS(3071), + [sym_this] = ACTIONS(3257), + [sym_true] = ACTIONS(3075), + [sym_false] = ACTIONS(3075), + [sym_null] = ACTIONS(3075), + [sym_undefined] = ACTIONS(3075), + [anon_sym_readonly] = ACTIONS(3077), + [anon_sym_QMARK] = ACTIONS(3079), + [anon_sym_any] = ACTIONS(3067), + [anon_sym_number] = ACTIONS(3067), + [anon_sym_boolean] = ACTIONS(3067), + [anon_sym_string] = ACTIONS(3067), + [anon_sym_symbol] = ACTIONS(3067), + [anon_sym_object] = ACTIONS(3067), + [anon_sym_abstract] = ACTIONS(3081), + [anon_sym_infer] = ACTIONS(3085), + [anon_sym_keyof] = ACTIONS(3087), + [anon_sym_unique] = ACTIONS(3089), + [anon_sym_unknown] = ACTIONS(3067), + [anon_sym_never] = ACTIONS(3067), + [anon_sym_LBRACE_PIPE] = ACTIONS(3091), [sym_html_comment] = ACTIONS(5), }, [1141] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5701), - [sym_string] = STATE(1961), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(1823), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(4530), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2042), + [sym_import] = STATE(4650), + [sym_nested_identifier] = STATE(5567), + [sym_string] = STATE(1975), + [sym_formal_parameters] = STATE(5527), + [sym_nested_type_identifier] = STATE(1865), + [sym__type_query_member_expression_in_type_annotation] = STATE(1781), + [sym__type_query_call_expression_in_type_annotation] = STATE(1911), + [sym_type] = STATE(2042), + [sym_constructor_type] = STATE(1912), + [sym_primary_type] = STATE(1915), [sym_template_literal_type] = STATE(1916), - [sym_infer_type] = STATE(2961), + [sym_infer_type] = STATE(1912), [sym_conditional_type] = STATE(1916), [sym_generic_type] = STATE(1916), [sym_type_query] = STATE(1916), @@ -136255,68 +134440,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_type] = STATE(1916), [sym_predefined_type] = STATE(1916), [sym_object_type] = STATE(1916), - [sym_type_parameters] = STATE(5289), + [sym_type_parameters] = STATE(5243), [sym_array_type] = STATE(1916), [sym_tuple_type] = STATE(1916), - [sym_readonly_type] = STATE(2961), + [sym_readonly_type] = STATE(1912), [sym_union_type] = STATE(1916), [sym_intersection_type] = STATE(1916), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(3100), - [anon_sym_LBRACE] = ACTIONS(3102), - [anon_sym_typeof] = ACTIONS(3104), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3106), - [anon_sym_LPAREN] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(3110), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(3114), - [anon_sym_PIPE] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3122), - [sym_number] = ACTIONS(3124), - [sym_this] = ACTIONS(3264), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [sym_null] = ACTIONS(3128), - [sym_undefined] = ACTIONS(3128), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(3132), - [anon_sym_any] = ACTIONS(3120), - [anon_sym_number] = ACTIONS(3120), - [anon_sym_boolean] = ACTIONS(3120), - [anon_sym_string] = ACTIONS(3120), - [anon_sym_symbol] = ACTIONS(3120), - [anon_sym_object] = ACTIONS(3120), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(3140), - [anon_sym_unique] = ACTIONS(3142), - [anon_sym_unknown] = ACTIONS(3120), - [anon_sym_never] = ACTIONS(3120), - [anon_sym_LBRACE_PIPE] = ACTIONS(3144), + [sym_function_type] = STATE(1912), + [sym_identifier] = ACTIONS(3255), + [anon_sym_STAR] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3053), + [anon_sym_LPAREN] = ACTIONS(3055), + [anon_sym_LBRACK] = ACTIONS(3057), + [anon_sym_new] = ACTIONS(3059), + [anon_sym_AMP] = ACTIONS(3061), + [anon_sym_PIPE] = ACTIONS(3063), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3067), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3069), + [sym_number] = ACTIONS(3071), + [sym_this] = ACTIONS(3257), + [sym_true] = ACTIONS(3075), + [sym_false] = ACTIONS(3075), + [sym_null] = ACTIONS(3075), + [sym_undefined] = ACTIONS(3075), + [anon_sym_readonly] = ACTIONS(3077), + [anon_sym_QMARK] = ACTIONS(3079), + [anon_sym_any] = ACTIONS(3067), + [anon_sym_number] = ACTIONS(3067), + [anon_sym_boolean] = ACTIONS(3067), + [anon_sym_string] = ACTIONS(3067), + [anon_sym_symbol] = ACTIONS(3067), + [anon_sym_object] = ACTIONS(3067), + [anon_sym_abstract] = ACTIONS(3081), + [anon_sym_infer] = ACTIONS(3085), + [anon_sym_keyof] = ACTIONS(3087), + [anon_sym_unique] = ACTIONS(3089), + [anon_sym_unknown] = ACTIONS(3067), + [anon_sym_never] = ACTIONS(3067), + [anon_sym_LBRACE_PIPE] = ACTIONS(3091), [sym_html_comment] = ACTIONS(5), }, [1142] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5701), - [sym_string] = STATE(1961), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(1823), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(4530), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2044), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5567), + [sym_string] = STATE(1975), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(1865), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4981), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2043), [sym_template_literal_type] = STATE(1916), - [sym_infer_type] = STATE(2961), + [sym_infer_type] = STATE(3007), [sym_conditional_type] = STATE(1916), [sym_generic_type] = STATE(1916), [sym_type_query] = STATE(1916), @@ -136329,3610 +134514,3688 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_type] = STATE(1916), [sym_predefined_type] = STATE(1916), [sym_object_type] = STATE(1916), - [sym_type_parameters] = STATE(5289), + [sym_type_parameters] = STATE(5248), [sym_array_type] = STATE(1916), [sym_tuple_type] = STATE(1916), - [sym_readonly_type] = STATE(2961), + [sym_readonly_type] = STATE(3007), [sym_union_type] = STATE(1916), [sym_intersection_type] = STATE(1916), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(3100), - [anon_sym_LBRACE] = ACTIONS(3102), - [anon_sym_typeof] = ACTIONS(3104), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3106), - [anon_sym_LPAREN] = ACTIONS(3108), - [anon_sym_LBRACK] = ACTIONS(3110), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(3114), - [anon_sym_PIPE] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3122), - [sym_number] = ACTIONS(3124), - [sym_this] = ACTIONS(3264), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [sym_null] = ACTIONS(3128), - [sym_undefined] = ACTIONS(3128), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(3132), - [anon_sym_any] = ACTIONS(3120), - [anon_sym_number] = ACTIONS(3120), - [anon_sym_boolean] = ACTIONS(3120), - [anon_sym_string] = ACTIONS(3120), - [anon_sym_symbol] = ACTIONS(3120), - [anon_sym_object] = ACTIONS(3120), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(3140), - [anon_sym_unique] = ACTIONS(3142), - [anon_sym_unknown] = ACTIONS(3120), - [anon_sym_never] = ACTIONS(3120), - [anon_sym_LBRACE_PIPE] = ACTIONS(3144), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3255), + [anon_sym_STAR] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3053), + [anon_sym_LPAREN] = ACTIONS(3055), + [anon_sym_LBRACK] = ACTIONS(3057), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(3061), + [anon_sym_PIPE] = ACTIONS(3063), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3067), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3069), + [sym_number] = ACTIONS(3071), + [sym_this] = ACTIONS(3257), + [sym_true] = ACTIONS(3075), + [sym_false] = ACTIONS(3075), + [sym_null] = ACTIONS(3075), + [sym_undefined] = ACTIONS(3075), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(3079), + [anon_sym_any] = ACTIONS(3067), + [anon_sym_number] = ACTIONS(3067), + [anon_sym_boolean] = ACTIONS(3067), + [anon_sym_string] = ACTIONS(3067), + [anon_sym_symbol] = ACTIONS(3067), + [anon_sym_object] = ACTIONS(3067), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(3087), + [anon_sym_unique] = ACTIONS(3089), + [anon_sym_unknown] = ACTIONS(3067), + [anon_sym_never] = ACTIONS(3067), + [anon_sym_LBRACE_PIPE] = ACTIONS(3091), [sym_html_comment] = ACTIONS(5), }, [1143] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(3037), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4448), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1144] = { - [sym_import] = STATE(4676), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(3304), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(4470), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5461), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4454), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(774), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(212), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1145] = { - [sym_import] = STATE(4727), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5736), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(2938), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(4474), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5289), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5567), + [sym_string] = STATE(1975), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(1865), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4981), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2045), + [sym_template_literal_type] = STATE(1916), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(1916), + [sym_generic_type] = STATE(1916), + [sym_type_query] = STATE(1916), + [sym_index_type_query] = STATE(1916), + [sym_lookup_type] = STATE(1916), + [sym_literal_type] = STATE(1916), + [sym__number] = STATE(1918), + [sym_existential_type] = STATE(1916), + [sym_flow_maybe_type] = STATE(1916), + [sym_parenthesized_type] = STATE(1916), + [sym_predefined_type] = STATE(1916), + [sym_object_type] = STATE(1916), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(1916), + [sym_tuple_type] = STATE(1916), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(1916), + [sym_intersection_type] = STATE(1916), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3255), + [anon_sym_STAR] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3053), + [anon_sym_LPAREN] = ACTIONS(3055), + [anon_sym_LBRACK] = ACTIONS(3057), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(3061), + [anon_sym_PIPE] = ACTIONS(3063), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3067), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3069), + [sym_number] = ACTIONS(3071), + [sym_this] = ACTIONS(3257), + [sym_true] = ACTIONS(3075), + [sym_false] = ACTIONS(3075), + [sym_null] = ACTIONS(3075), + [sym_undefined] = ACTIONS(3075), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(3079), + [anon_sym_any] = ACTIONS(3067), + [anon_sym_number] = ACTIONS(3067), + [anon_sym_boolean] = ACTIONS(3067), + [anon_sym_string] = ACTIONS(3067), + [anon_sym_symbol] = ACTIONS(3067), + [anon_sym_object] = ACTIONS(3067), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(3087), + [anon_sym_unique] = ACTIONS(3089), + [anon_sym_unknown] = ACTIONS(3067), + [anon_sym_never] = ACTIONS(3067), + [anon_sym_LBRACE_PIPE] = ACTIONS(3091), [sym_html_comment] = ACTIONS(5), }, [1146] = { - [sym_import] = STATE(4676), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(3304), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(4500), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5461), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4489), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1147] = { - [sym_import] = STATE(4676), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(3304), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(4503), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5461), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4492), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1148] = { - [sym_import] = STATE(4676), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(3304), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(4506), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5461), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4497), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1149] = { - [sym_import] = STATE(4676), - [sym_nested_identifier] = STATE(5679), - [sym_string] = STATE(2949), - [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2944), - [sym__type_query_member_expression_in_type_annotation] = STATE(3304), - [sym__type_query_call_expression_in_type_annotation] = STATE(2939), - [sym_type] = STATE(4518), - [sym_constructor_type] = STATE(2961), - [sym_primary_type] = STATE(2971), - [sym_template_literal_type] = STATE(2987), - [sym_infer_type] = STATE(2961), - [sym_conditional_type] = STATE(2987), - [sym_generic_type] = STATE(2987), - [sym_type_query] = STATE(2987), - [sym_index_type_query] = STATE(2987), - [sym_lookup_type] = STATE(2987), - [sym_literal_type] = STATE(2987), - [sym__number] = STATE(2998), - [sym_existential_type] = STATE(2987), - [sym_flow_maybe_type] = STATE(2987), - [sym_parenthesized_type] = STATE(2987), - [sym_predefined_type] = STATE(2987), - [sym_object_type] = STATE(2987), - [sym_type_parameters] = STATE(5461), - [sym_array_type] = STATE(2987), - [sym_tuple_type] = STATE(2987), - [sym_readonly_type] = STATE(2961), - [sym_union_type] = STATE(2987), - [sym_intersection_type] = STATE(2987), - [sym_function_type] = STATE(2961), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_import] = STATE(4681), + [sym_nested_identifier] = STATE(5474), + [sym_string] = STATE(2994), + [sym_formal_parameters] = STATE(5619), + [sym_nested_type_identifier] = STATE(2939), + [sym__type_query_member_expression_in_type_annotation] = STATE(3303), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4510), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(2981), + [sym_template_literal_type] = STATE(3039), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3039), + [sym_generic_type] = STATE(3039), + [sym_type_query] = STATE(3039), + [sym_index_type_query] = STATE(3039), + [sym_lookup_type] = STATE(3039), + [sym_literal_type] = STATE(3039), + [sym__number] = STATE(3041), + [sym_existential_type] = STATE(3039), + [sym_flow_maybe_type] = STATE(3039), + [sym_parenthesized_type] = STATE(3039), + [sym_predefined_type] = STATE(3039), + [sym_object_type] = STATE(3039), + [sym_type_parameters] = STATE(5454), + [sym_array_type] = STATE(3039), + [sym_tuple_type] = STATE(3039), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3039), + [sym_intersection_type] = STATE(3039), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_typeof] = ACTIONS(1536), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1554), + [sym_number] = ACTIONS(1556), + [sym_this] = ACTIONS(1558), + [sym_true] = ACTIONS(1560), + [sym_false] = ACTIONS(1560), + [sym_null] = ACTIONS(1560), + [sym_undefined] = ACTIONS(1560), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(593), + [anon_sym_any] = ACTIONS(216), + [anon_sym_number] = ACTIONS(216), + [anon_sym_boolean] = ACTIONS(216), + [anon_sym_string] = ACTIONS(216), + [anon_sym_symbol] = ACTIONS(216), + [anon_sym_object] = ACTIONS(216), + [anon_sym_abstract] = ACTIONS(597), + [anon_sym_infer] = ACTIONS(599), + [anon_sym_keyof] = ACTIONS(601), + [anon_sym_unique] = ACTIONS(214), + [anon_sym_unknown] = ACTIONS(216), + [anon_sym_never] = ACTIONS(216), + [anon_sym_LBRACE_PIPE] = ACTIONS(218), [sym_html_comment] = ACTIONS(5), }, [1150] = { - [sym_import] = STATE(4535), - [sym_nested_identifier] = STATE(5487), - [sym_string] = STATE(1620), - [sym_formal_parameters] = STATE(5661), - [sym_nested_type_identifier] = STATE(1526), - [sym__type_query_member_expression_in_type_annotation] = STATE(1527), - [sym__type_query_call_expression_in_type_annotation] = STATE(1573), - [sym_type] = STATE(1596), - [sym_constructor_type] = STATE(1599), - [sym_primary_type] = STATE(1597), - [sym_template_literal_type] = STATE(1601), - [sym_infer_type] = STATE(1599), - [sym_conditional_type] = STATE(1601), - [sym_generic_type] = STATE(1601), - [sym_type_query] = STATE(1601), - [sym_index_type_query] = STATE(1601), - [sym_lookup_type] = STATE(1601), - [sym_literal_type] = STATE(1601), - [sym__number] = STATE(1628), - [sym_existential_type] = STATE(1601), - [sym_flow_maybe_type] = STATE(1601), - [sym_parenthesized_type] = STATE(1601), - [sym_predefined_type] = STATE(1601), - [sym_object_type] = STATE(1601), - [sym_type_parameters] = STATE(5219), - [sym_array_type] = STATE(1601), - [sym_tuple_type] = STATE(1601), - [sym_readonly_type] = STATE(1599), - [sym_union_type] = STATE(1601), - [sym_intersection_type] = STATE(1601), - [sym_function_type] = STATE(1599), - [sym_identifier] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3150), - [anon_sym_typeof] = ACTIONS(3152), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3156), - [anon_sym_LBRACK] = ACTIONS(3158), - [anon_sym_new] = ACTIONS(3160), - [anon_sym_AMP] = ACTIONS(3162), - [anon_sym_PIPE] = ACTIONS(3164), - [anon_sym_PLUS] = ACTIONS(3166), - [anon_sym_DASH] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3170), - [sym_number] = ACTIONS(3172), - [sym_this] = ACTIONS(3260), - [sym_true] = ACTIONS(3176), - [sym_false] = ACTIONS(3176), - [sym_null] = ACTIONS(3176), - [sym_undefined] = ACTIONS(3176), - [anon_sym_readonly] = ACTIONS(3178), - [anon_sym_QMARK] = ACTIONS(3180), - [anon_sym_any] = ACTIONS(3168), - [anon_sym_number] = ACTIONS(3168), - [anon_sym_boolean] = ACTIONS(3168), - [anon_sym_string] = ACTIONS(3168), - [anon_sym_symbol] = ACTIONS(3168), - [anon_sym_object] = ACTIONS(3168), - [anon_sym_abstract] = ACTIONS(3182), - [anon_sym_infer] = ACTIONS(3186), - [anon_sym_keyof] = ACTIONS(3188), - [anon_sym_unique] = ACTIONS(3190), - [anon_sym_unknown] = ACTIONS(3168), - [anon_sym_never] = ACTIONS(3168), - [anon_sym_LBRACE_PIPE] = ACTIONS(3192), + [sym_import] = STATE(4878), + [sym_nested_identifier] = STATE(5796), + [sym_string] = STATE(3437), + [sym_formal_parameters] = STATE(5475), + [sym_nested_type_identifier] = STATE(3278), + [sym__type_query_member_expression_in_type_annotation] = STATE(2937), + [sym__type_query_call_expression_in_type_annotation] = STATE(2938), + [sym_type] = STATE(4587), + [sym_constructor_type] = STATE(3007), + [sym_primary_type] = STATE(3347), + [sym_template_literal_type] = STATE(3453), + [sym_infer_type] = STATE(3007), + [sym_conditional_type] = STATE(3453), + [sym_generic_type] = STATE(3453), + [sym_type_query] = STATE(3453), + [sym_index_type_query] = STATE(3453), + [sym_lookup_type] = STATE(3453), + [sym_literal_type] = STATE(3453), + [sym__number] = STATE(3454), + [sym_existential_type] = STATE(3453), + [sym_flow_maybe_type] = STATE(3453), + [sym_parenthesized_type] = STATE(3453), + [sym_predefined_type] = STATE(3453), + [sym_object_type] = STATE(3453), + [sym_type_parameters] = STATE(5248), + [sym_array_type] = STATE(3453), + [sym_tuple_type] = STATE(3453), + [sym_readonly_type] = STATE(3007), + [sym_union_type] = STATE(3453), + [sym_intersection_type] = STATE(3453), + [sym_function_type] = STATE(3007), + [sym_identifier] = ACTIONS(3259), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_typeof] = ACTIONS(2999), + [anon_sym_import] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3003), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_PIPE] = ACTIONS(3011), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_void] = ACTIONS(3015), + [anon_sym_DQUOTE] = ACTIONS(3017), + [anon_sym_SQUOTE] = ACTIONS(3019), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3021), + [sym_number] = ACTIONS(3023), + [sym_this] = ACTIONS(3261), + [sym_true] = ACTIONS(3027), + [sym_false] = ACTIONS(3027), + [sym_null] = ACTIONS(3027), + [sym_undefined] = ACTIONS(3027), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(3031), + [anon_sym_any] = ACTIONS(3015), + [anon_sym_number] = ACTIONS(3015), + [anon_sym_boolean] = ACTIONS(3015), + [anon_sym_string] = ACTIONS(3015), + [anon_sym_symbol] = ACTIONS(3015), + [anon_sym_object] = ACTIONS(3015), + [anon_sym_abstract] = ACTIONS(208), + [anon_sym_infer] = ACTIONS(210), + [anon_sym_keyof] = ACTIONS(3039), + [anon_sym_unique] = ACTIONS(3041), + [anon_sym_unknown] = ACTIONS(3015), + [anon_sym_never] = ACTIONS(3015), + [anon_sym_LBRACE_PIPE] = ACTIONS(3043), [sym_html_comment] = ACTIONS(5), }, [1151] = { - [sym_export_statement] = STATE(3796), - [sym_object_pattern] = STATE(5589), - [sym_object_assignment_pattern] = STATE(4562), - [sym_array_pattern] = STATE(5589), - [sym__call_signature] = STATE(4078), - [sym__destructuring_pattern] = STATE(5589), - [sym_spread_element] = STATE(5127), - [sym_string] = STATE(3142), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3317), - [sym_rest_pattern] = STATE(4562), - [sym_method_definition] = STATE(5127), - [sym_pair] = STATE(5127), - [sym_pair_pattern] = STATE(4562), - [sym__property_name] = STATE(3142), - [sym_computed_property_name] = STATE(3142), - [sym_method_signature] = STATE(3796), - [sym_accessibility_modifier] = STATE(2776), - [sym_override_modifier] = STATE(2799), - [sym_call_signature] = STATE(3796), - [sym_property_signature] = STATE(3796), - [sym_type_parameters] = STATE(5224), - [sym_construct_signature] = STATE(3796), - [sym_index_signature] = STATE(3796), - [aux_sym_export_statement_repeat1] = STATE(4391), - [aux_sym_object_repeat1] = STATE(4524), - [aux_sym_object_pattern_repeat1] = STATE(4884), - [sym_identifier] = ACTIONS(3276), - [anon_sym_export] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_type] = ACTIONS(3276), - [anon_sym_namespace] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3282), - [anon_sym_COMMA] = ACTIONS(3284), - [anon_sym_RBRACE] = ACTIONS(3286), - [anon_sym_let] = ACTIONS(3276), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3290), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_async] = ACTIONS(3294), - [anon_sym_new] = ACTIONS(3296), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(3298), - [anon_sym_DASH] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_DQUOTE] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3300), - [sym_private_property_identifier] = ACTIONS(3300), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3302), - [anon_sym_readonly] = ACTIONS(3304), - [anon_sym_get] = ACTIONS(3306), - [anon_sym_set] = ACTIONS(3306), - [anon_sym_declare] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3308), - [anon_sym_private] = ACTIONS(3308), - [anon_sym_protected] = ACTIONS(3308), - [anon_sym_override] = ACTIONS(3310), - [anon_sym_module] = ACTIONS(3276), - [anon_sym_any] = ACTIONS(3276), - [anon_sym_number] = ACTIONS(3276), - [anon_sym_boolean] = ACTIONS(3276), - [anon_sym_string] = ACTIONS(3276), - [anon_sym_symbol] = ACTIONS(3276), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3312), - [anon_sym_PIPE_RBRACE] = ACTIONS(3314), + [sym_export_statement] = STATE(3815), + [sym_object_pattern] = STATE(5536), + [sym_object_assignment_pattern] = STATE(4555), + [sym_array_pattern] = STATE(5536), + [sym__call_signature] = STATE(3910), + [sym__destructuring_pattern] = STATE(5536), + [sym_spread_element] = STATE(4721), + [sym_string] = STATE(3085), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3315), + [sym_rest_pattern] = STATE(4555), + [sym_method_definition] = STATE(4721), + [sym_pair] = STATE(4721), + [sym_pair_pattern] = STATE(4555), + [sym__property_name] = STATE(3085), + [sym_computed_property_name] = STATE(3085), + [sym_method_signature] = STATE(3815), + [sym_accessibility_modifier] = STATE(2771), + [sym_override_modifier] = STATE(2792), + [sym_call_signature] = STATE(3815), + [sym_property_signature] = STATE(3815), + [sym_type_parameters] = STATE(5233), + [sym_construct_signature] = STATE(3815), + [sym_index_signature] = STATE(3815), + [aux_sym_export_statement_repeat1] = STATE(4481), + [aux_sym_object_repeat1] = STATE(4734), + [aux_sym_object_pattern_repeat1] = STATE(4745), + [sym_identifier] = ACTIONS(3269), + [anon_sym_export] = ACTIONS(3271), + [anon_sym_STAR] = ACTIONS(3273), + [anon_sym_type] = ACTIONS(3269), + [anon_sym_namespace] = ACTIONS(3269), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_COMMA] = ACTIONS(3277), + [anon_sym_RBRACE] = ACTIONS(3279), + [anon_sym_let] = ACTIONS(3269), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_async] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3289), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3291), + [anon_sym_DASH] = ACTIONS(3291), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3293), + [sym_private_property_identifier] = ACTIONS(3293), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3295), + [anon_sym_readonly] = ACTIONS(3297), + [anon_sym_get] = ACTIONS(3299), + [anon_sym_set] = ACTIONS(3299), + [anon_sym_declare] = ACTIONS(3269), + [anon_sym_public] = ACTIONS(3301), + [anon_sym_private] = ACTIONS(3301), + [anon_sym_protected] = ACTIONS(3301), + [anon_sym_override] = ACTIONS(3303), + [anon_sym_module] = ACTIONS(3269), + [anon_sym_any] = ACTIONS(3269), + [anon_sym_number] = ACTIONS(3269), + [anon_sym_boolean] = ACTIONS(3269), + [anon_sym_string] = ACTIONS(3269), + [anon_sym_symbol] = ACTIONS(3269), + [anon_sym_object] = ACTIONS(3269), + [anon_sym_abstract] = ACTIONS(3305), + [anon_sym_PIPE_RBRACE] = ACTIONS(3307), [sym_html_comment] = ACTIONS(5), }, [1152] = { - [sym_export_statement] = STATE(3796), - [sym_object_pattern] = STATE(5589), - [sym_object_assignment_pattern] = STATE(4562), - [sym_array_pattern] = STATE(5589), - [sym__call_signature] = STATE(4078), - [sym__destructuring_pattern] = STATE(5589), - [sym_spread_element] = STATE(5127), - [sym_string] = STATE(3142), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3317), - [sym_rest_pattern] = STATE(4562), - [sym_method_definition] = STATE(5127), - [sym_pair] = STATE(5127), - [sym_pair_pattern] = STATE(4562), - [sym__property_name] = STATE(3142), - [sym_computed_property_name] = STATE(3142), - [sym_method_signature] = STATE(3796), - [sym_accessibility_modifier] = STATE(2776), - [sym_override_modifier] = STATE(2799), - [sym_call_signature] = STATE(3796), - [sym_property_signature] = STATE(3796), - [sym_type_parameters] = STATE(5224), - [sym_construct_signature] = STATE(3796), - [sym_index_signature] = STATE(3796), - [aux_sym_export_statement_repeat1] = STATE(4391), - [aux_sym_object_repeat1] = STATE(4524), - [aux_sym_object_pattern_repeat1] = STATE(4884), - [sym_identifier] = ACTIONS(3316), - [anon_sym_export] = ACTIONS(3318), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_type] = ACTIONS(3316), - [anon_sym_namespace] = ACTIONS(3316), - [anon_sym_LBRACE] = ACTIONS(3282), - [anon_sym_COMMA] = ACTIONS(3284), - [anon_sym_RBRACE] = ACTIONS(3320), - [anon_sym_let] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3290), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_async] = ACTIONS(3322), - [anon_sym_new] = ACTIONS(3324), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(3298), - [anon_sym_DASH] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_DQUOTE] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3300), - [sym_private_property_identifier] = ACTIONS(3300), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3326), - [anon_sym_readonly] = ACTIONS(3328), - [anon_sym_get] = ACTIONS(3330), - [anon_sym_set] = ACTIONS(3330), - [anon_sym_declare] = ACTIONS(3316), - [anon_sym_public] = ACTIONS(3332), - [anon_sym_private] = ACTIONS(3332), - [anon_sym_protected] = ACTIONS(3332), - [anon_sym_override] = ACTIONS(3334), - [anon_sym_module] = ACTIONS(3316), - [anon_sym_any] = ACTIONS(3316), - [anon_sym_number] = ACTIONS(3316), - [anon_sym_boolean] = ACTIONS(3316), - [anon_sym_string] = ACTIONS(3316), - [anon_sym_symbol] = ACTIONS(3316), - [anon_sym_object] = ACTIONS(3316), - [anon_sym_abstract] = ACTIONS(3312), - [anon_sym_PIPE_RBRACE] = ACTIONS(3314), + [sym_export_statement] = STATE(3815), + [sym_object_pattern] = STATE(5536), + [sym_object_assignment_pattern] = STATE(4555), + [sym_array_pattern] = STATE(5536), + [sym__call_signature] = STATE(3910), + [sym__destructuring_pattern] = STATE(5536), + [sym_spread_element] = STATE(4721), + [sym_string] = STATE(3085), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3315), + [sym_rest_pattern] = STATE(4555), + [sym_method_definition] = STATE(4721), + [sym_pair] = STATE(4721), + [sym_pair_pattern] = STATE(4555), + [sym__property_name] = STATE(3085), + [sym_computed_property_name] = STATE(3085), + [sym_method_signature] = STATE(3815), + [sym_accessibility_modifier] = STATE(2771), + [sym_override_modifier] = STATE(2792), + [sym_call_signature] = STATE(3815), + [sym_property_signature] = STATE(3815), + [sym_type_parameters] = STATE(5233), + [sym_construct_signature] = STATE(3815), + [sym_index_signature] = STATE(3815), + [aux_sym_export_statement_repeat1] = STATE(4481), + [aux_sym_object_repeat1] = STATE(4734), + [aux_sym_object_pattern_repeat1] = STATE(4745), + [sym_identifier] = ACTIONS(3269), + [anon_sym_export] = ACTIONS(3271), + [anon_sym_STAR] = ACTIONS(3273), + [anon_sym_type] = ACTIONS(3269), + [anon_sym_namespace] = ACTIONS(3269), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_COMMA] = ACTIONS(3277), + [anon_sym_RBRACE] = ACTIONS(3309), + [anon_sym_let] = ACTIONS(3269), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_async] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3289), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3291), + [anon_sym_DASH] = ACTIONS(3291), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3293), + [sym_private_property_identifier] = ACTIONS(3293), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3295), + [anon_sym_readonly] = ACTIONS(3297), + [anon_sym_get] = ACTIONS(3299), + [anon_sym_set] = ACTIONS(3299), + [anon_sym_declare] = ACTIONS(3269), + [anon_sym_public] = ACTIONS(3301), + [anon_sym_private] = ACTIONS(3301), + [anon_sym_protected] = ACTIONS(3301), + [anon_sym_override] = ACTIONS(3303), + [anon_sym_module] = ACTIONS(3269), + [anon_sym_any] = ACTIONS(3269), + [anon_sym_number] = ACTIONS(3269), + [anon_sym_boolean] = ACTIONS(3269), + [anon_sym_string] = ACTIONS(3269), + [anon_sym_symbol] = ACTIONS(3269), + [anon_sym_object] = ACTIONS(3269), + [anon_sym_abstract] = ACTIONS(3305), + [anon_sym_PIPE_RBRACE] = ACTIONS(3307), [sym_html_comment] = ACTIONS(5), }, [1153] = { - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_EQ] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3338), - [anon_sym_COMMA] = ACTIONS(3338), - [anon_sym_RBRACE] = ACTIONS(3338), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3338), - [anon_sym_LPAREN] = ACTIONS(3338), - [anon_sym_RPAREN] = ACTIONS(3338), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_COLON] = ACTIONS(3338), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3338), - [anon_sym_RBRACK] = ACTIONS(3338), - [sym_glimmer_opening_tag] = ACTIONS(3338), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_EQ_GT] = ACTIONS(3338), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_AMP] = ACTIONS(3338), - [anon_sym_PIPE] = ACTIONS(3338), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_GT] = ACTIONS(3338), - [anon_sym_TILDE] = ACTIONS(3338), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3338), - [anon_sym_DASH_DASH] = ACTIONS(3338), - [anon_sym_DQUOTE] = ACTIONS(3338), - [anon_sym_SQUOTE] = ACTIONS(3338), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3338), - [sym_number] = ACTIONS(3338), - [sym_private_property_identifier] = ACTIONS(3338), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3338), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_QMARK] = ACTIONS(3338), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_extends] = ACTIONS(3336), + [sym_export_statement] = STATE(3815), + [sym_object_pattern] = STATE(5536), + [sym_object_assignment_pattern] = STATE(4555), + [sym_array_pattern] = STATE(5536), + [sym__call_signature] = STATE(3910), + [sym__destructuring_pattern] = STATE(5536), + [sym_spread_element] = STATE(4721), + [sym_string] = STATE(3085), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3315), + [sym_rest_pattern] = STATE(4555), + [sym_method_definition] = STATE(4721), + [sym_pair] = STATE(4721), + [sym_pair_pattern] = STATE(4555), + [sym__property_name] = STATE(3085), + [sym_computed_property_name] = STATE(3085), + [sym_method_signature] = STATE(3815), + [sym_accessibility_modifier] = STATE(2771), + [sym_override_modifier] = STATE(2792), + [sym_call_signature] = STATE(3815), + [sym_property_signature] = STATE(3815), + [sym_type_parameters] = STATE(5233), + [sym_construct_signature] = STATE(3815), + [sym_index_signature] = STATE(3815), + [aux_sym_export_statement_repeat1] = STATE(4481), + [aux_sym_object_repeat1] = STATE(4734), + [aux_sym_object_pattern_repeat1] = STATE(4745), + [sym_identifier] = ACTIONS(3269), + [anon_sym_export] = ACTIONS(3271), + [anon_sym_STAR] = ACTIONS(3273), + [anon_sym_type] = ACTIONS(3269), + [anon_sym_namespace] = ACTIONS(3269), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_COMMA] = ACTIONS(3277), + [anon_sym_RBRACE] = ACTIONS(3311), + [anon_sym_let] = ACTIONS(3269), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_async] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3289), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3291), + [anon_sym_DASH] = ACTIONS(3291), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3293), + [sym_private_property_identifier] = ACTIONS(3293), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3295), + [anon_sym_readonly] = ACTIONS(3297), + [anon_sym_get] = ACTIONS(3299), + [anon_sym_set] = ACTIONS(3299), + [anon_sym_declare] = ACTIONS(3269), + [anon_sym_public] = ACTIONS(3301), + [anon_sym_private] = ACTIONS(3301), + [anon_sym_protected] = ACTIONS(3301), + [anon_sym_override] = ACTIONS(3303), + [anon_sym_module] = ACTIONS(3269), + [anon_sym_any] = ACTIONS(3269), + [anon_sym_number] = ACTIONS(3269), + [anon_sym_boolean] = ACTIONS(3269), + [anon_sym_string] = ACTIONS(3269), + [anon_sym_symbol] = ACTIONS(3269), + [anon_sym_object] = ACTIONS(3269), + [anon_sym_abstract] = ACTIONS(3305), + [anon_sym_PIPE_RBRACE] = ACTIONS(3307), [sym_html_comment] = ACTIONS(5), }, [1154] = { - [sym_export_statement] = STATE(3899), - [sym_object_pattern] = STATE(5589), - [sym_object_assignment_pattern] = STATE(4562), - [sym_array_pattern] = STATE(5589), - [sym__call_signature] = STATE(4078), - [sym__destructuring_pattern] = STATE(5589), - [sym_spread_element] = STATE(5127), - [sym_string] = STATE(3142), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3317), - [sym_rest_pattern] = STATE(4562), - [sym_method_definition] = STATE(5127), - [sym_pair] = STATE(5127), - [sym_pair_pattern] = STATE(4562), - [sym__property_name] = STATE(3142), - [sym_computed_property_name] = STATE(3142), - [sym_method_signature] = STATE(3899), - [sym_accessibility_modifier] = STATE(2776), - [sym_override_modifier] = STATE(2799), - [sym_call_signature] = STATE(3899), - [sym_property_signature] = STATE(3899), - [sym_type_parameters] = STATE(5224), - [sym_construct_signature] = STATE(3899), - [sym_index_signature] = STATE(3899), - [aux_sym_export_statement_repeat1] = STATE(4391), - [aux_sym_object_repeat1] = STATE(4524), - [aux_sym_object_pattern_repeat1] = STATE(4884), - [sym_identifier] = ACTIONS(3276), - [anon_sym_export] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_type] = ACTIONS(3276), - [anon_sym_namespace] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3282), - [anon_sym_COMMA] = ACTIONS(3340), - [anon_sym_RBRACE] = ACTIONS(3342), - [anon_sym_let] = ACTIONS(3276), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3344), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_async] = ACTIONS(3294), - [anon_sym_new] = ACTIONS(3296), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(3298), - [anon_sym_DASH] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_DQUOTE] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3300), - [sym_private_property_identifier] = ACTIONS(3300), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3302), - [anon_sym_readonly] = ACTIONS(3304), - [anon_sym_get] = ACTIONS(3306), - [anon_sym_set] = ACTIONS(3306), - [anon_sym_declare] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3308), - [anon_sym_private] = ACTIONS(3308), - [anon_sym_protected] = ACTIONS(3308), - [anon_sym_override] = ACTIONS(3310), - [anon_sym_module] = ACTIONS(3276), - [anon_sym_any] = ACTIONS(3276), - [anon_sym_number] = ACTIONS(3276), - [anon_sym_boolean] = ACTIONS(3276), - [anon_sym_string] = ACTIONS(3276), - [anon_sym_symbol] = ACTIONS(3276), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3312), - [anon_sym_PIPE_RBRACE] = ACTIONS(3346), + [sym_export_statement] = STATE(3815), + [sym_object_pattern] = STATE(5536), + [sym_object_assignment_pattern] = STATE(4555), + [sym_array_pattern] = STATE(5536), + [sym__call_signature] = STATE(3910), + [sym__destructuring_pattern] = STATE(5536), + [sym_spread_element] = STATE(4721), + [sym_string] = STATE(3085), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3315), + [sym_rest_pattern] = STATE(4555), + [sym_method_definition] = STATE(4721), + [sym_pair] = STATE(4721), + [sym_pair_pattern] = STATE(4555), + [sym__property_name] = STATE(3085), + [sym_computed_property_name] = STATE(3085), + [sym_method_signature] = STATE(3815), + [sym_accessibility_modifier] = STATE(2771), + [sym_override_modifier] = STATE(2792), + [sym_call_signature] = STATE(3815), + [sym_property_signature] = STATE(3815), + [sym_type_parameters] = STATE(5233), + [sym_construct_signature] = STATE(3815), + [sym_index_signature] = STATE(3815), + [aux_sym_export_statement_repeat1] = STATE(4481), + [aux_sym_object_repeat1] = STATE(4734), + [aux_sym_object_pattern_repeat1] = STATE(4745), + [sym_identifier] = ACTIONS(3313), + [anon_sym_export] = ACTIONS(3315), + [anon_sym_STAR] = ACTIONS(3273), + [anon_sym_type] = ACTIONS(3313), + [anon_sym_namespace] = ACTIONS(3313), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_COMMA] = ACTIONS(3277), + [anon_sym_RBRACE] = ACTIONS(3317), + [anon_sym_let] = ACTIONS(3313), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_async] = ACTIONS(3319), + [anon_sym_new] = ACTIONS(3321), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3291), + [anon_sym_DASH] = ACTIONS(3291), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3293), + [sym_private_property_identifier] = ACTIONS(3293), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3323), + [anon_sym_readonly] = ACTIONS(3325), + [anon_sym_get] = ACTIONS(3327), + [anon_sym_set] = ACTIONS(3327), + [anon_sym_declare] = ACTIONS(3313), + [anon_sym_public] = ACTIONS(3329), + [anon_sym_private] = ACTIONS(3329), + [anon_sym_protected] = ACTIONS(3329), + [anon_sym_override] = ACTIONS(3331), + [anon_sym_module] = ACTIONS(3313), + [anon_sym_any] = ACTIONS(3313), + [anon_sym_number] = ACTIONS(3313), + [anon_sym_boolean] = ACTIONS(3313), + [anon_sym_string] = ACTIONS(3313), + [anon_sym_symbol] = ACTIONS(3313), + [anon_sym_object] = ACTIONS(3313), + [anon_sym_abstract] = ACTIONS(3305), + [anon_sym_PIPE_RBRACE] = ACTIONS(3307), [sym_html_comment] = ACTIONS(5), }, [1155] = { - [sym_export_statement] = STATE(3796), - [sym_object_pattern] = STATE(5589), - [sym_object_assignment_pattern] = STATE(4562), - [sym_array_pattern] = STATE(5589), - [sym__call_signature] = STATE(4078), - [sym__destructuring_pattern] = STATE(5589), - [sym_spread_element] = STATE(4699), - [sym_string] = STATE(3142), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3317), - [sym_rest_pattern] = STATE(4562), - [sym_method_definition] = STATE(4699), - [sym_pair] = STATE(4699), - [sym_pair_pattern] = STATE(4562), - [sym__property_name] = STATE(3142), - [sym_computed_property_name] = STATE(3142), - [sym_method_signature] = STATE(3796), - [sym_accessibility_modifier] = STATE(2776), - [sym_override_modifier] = STATE(2799), - [sym_call_signature] = STATE(3796), - [sym_property_signature] = STATE(3796), - [sym_type_parameters] = STATE(5224), - [sym_construct_signature] = STATE(3796), - [sym_index_signature] = STATE(3796), - [aux_sym_export_statement_repeat1] = STATE(4391), - [aux_sym_object_repeat1] = STATE(4653), - [aux_sym_object_pattern_repeat1] = STATE(4884), - [sym_identifier] = ACTIONS(3348), - [anon_sym_export] = ACTIONS(3350), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_type] = ACTIONS(3348), - [anon_sym_namespace] = ACTIONS(3348), - [anon_sym_LBRACE] = ACTIONS(3282), - [anon_sym_COMMA] = ACTIONS(3284), - [anon_sym_RBRACE] = ACTIONS(3352), - [anon_sym_let] = ACTIONS(3348), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3290), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_async] = ACTIONS(3354), - [anon_sym_new] = ACTIONS(3356), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(3298), - [anon_sym_DASH] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_DQUOTE] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3300), - [sym_private_property_identifier] = ACTIONS(3300), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3358), - [anon_sym_readonly] = ACTIONS(3360), - [anon_sym_get] = ACTIONS(3362), - [anon_sym_set] = ACTIONS(3362), - [anon_sym_declare] = ACTIONS(3348), - [anon_sym_public] = ACTIONS(3364), - [anon_sym_private] = ACTIONS(3364), - [anon_sym_protected] = ACTIONS(3364), - [anon_sym_override] = ACTIONS(3366), - [anon_sym_module] = ACTIONS(3348), - [anon_sym_any] = ACTIONS(3348), - [anon_sym_number] = ACTIONS(3348), - [anon_sym_boolean] = ACTIONS(3348), - [anon_sym_string] = ACTIONS(3348), - [anon_sym_symbol] = ACTIONS(3348), - [anon_sym_object] = ACTIONS(3348), - [anon_sym_abstract] = ACTIONS(3312), - [anon_sym_PIPE_RBRACE] = ACTIONS(3314), + [sym_export_statement] = STATE(3815), + [sym_object_pattern] = STATE(5536), + [sym_object_assignment_pattern] = STATE(4555), + [sym_array_pattern] = STATE(5536), + [sym__call_signature] = STATE(3910), + [sym__destructuring_pattern] = STATE(5536), + [sym_spread_element] = STATE(4576), + [sym_string] = STATE(3085), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3315), + [sym_rest_pattern] = STATE(4555), + [sym_method_definition] = STATE(4576), + [sym_pair] = STATE(4576), + [sym_pair_pattern] = STATE(4555), + [sym__property_name] = STATE(3085), + [sym_computed_property_name] = STATE(3085), + [sym_method_signature] = STATE(3815), + [sym_accessibility_modifier] = STATE(2771), + [sym_override_modifier] = STATE(2792), + [sym_call_signature] = STATE(3815), + [sym_property_signature] = STATE(3815), + [sym_type_parameters] = STATE(5233), + [sym_construct_signature] = STATE(3815), + [sym_index_signature] = STATE(3815), + [aux_sym_export_statement_repeat1] = STATE(4481), + [aux_sym_object_repeat1] = STATE(4744), + [aux_sym_object_pattern_repeat1] = STATE(4745), + [sym_identifier] = ACTIONS(3333), + [anon_sym_export] = ACTIONS(3335), + [anon_sym_STAR] = ACTIONS(3273), + [anon_sym_type] = ACTIONS(3333), + [anon_sym_namespace] = ACTIONS(3333), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_COMMA] = ACTIONS(3277), + [anon_sym_RBRACE] = ACTIONS(3337), + [anon_sym_let] = ACTIONS(3333), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_async] = ACTIONS(3339), + [anon_sym_new] = ACTIONS(3341), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3291), + [anon_sym_DASH] = ACTIONS(3291), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3293), + [sym_private_property_identifier] = ACTIONS(3293), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3343), + [anon_sym_readonly] = ACTIONS(3345), + [anon_sym_get] = ACTIONS(3347), + [anon_sym_set] = ACTIONS(3347), + [anon_sym_declare] = ACTIONS(3333), + [anon_sym_public] = ACTIONS(3349), + [anon_sym_private] = ACTIONS(3349), + [anon_sym_protected] = ACTIONS(3349), + [anon_sym_override] = ACTIONS(3351), + [anon_sym_module] = ACTIONS(3333), + [anon_sym_any] = ACTIONS(3333), + [anon_sym_number] = ACTIONS(3333), + [anon_sym_boolean] = ACTIONS(3333), + [anon_sym_string] = ACTIONS(3333), + [anon_sym_symbol] = ACTIONS(3333), + [anon_sym_object] = ACTIONS(3333), + [anon_sym_abstract] = ACTIONS(3305), + [anon_sym_PIPE_RBRACE] = ACTIONS(3307), [sym_html_comment] = ACTIONS(5), }, [1156] = { - [sym_identifier] = ACTIONS(3368), - [anon_sym_export] = ACTIONS(3368), - [anon_sym_type] = ACTIONS(3368), - [anon_sym_EQ] = ACTIONS(3368), - [anon_sym_namespace] = ACTIONS(3368), - [anon_sym_LBRACE] = ACTIONS(3370), - [anon_sym_COMMA] = ACTIONS(3370), - [anon_sym_RBRACE] = ACTIONS(3370), - [anon_sym_typeof] = ACTIONS(3368), - [anon_sym_import] = ACTIONS(3368), - [anon_sym_let] = ACTIONS(3368), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_LPAREN] = ACTIONS(3370), - [anon_sym_RPAREN] = ACTIONS(3370), - [anon_sym_await] = ACTIONS(3368), - [anon_sym_COLON] = ACTIONS(3370), - [anon_sym_yield] = ACTIONS(3368), - [anon_sym_LBRACK] = ACTIONS(3370), - [anon_sym_RBRACK] = ACTIONS(3370), - [sym_glimmer_opening_tag] = ACTIONS(3370), - [anon_sym_class] = ACTIONS(3368), - [anon_sym_async] = ACTIONS(3368), - [anon_sym_function] = ACTIONS(3368), - [anon_sym_EQ_GT] = ACTIONS(3370), - [anon_sym_new] = ACTIONS(3368), - [anon_sym_using] = ACTIONS(3368), - [anon_sym_AMP] = ACTIONS(3370), - [anon_sym_PIPE] = ACTIONS(3370), - [anon_sym_PLUS] = ACTIONS(3368), - [anon_sym_DASH] = ACTIONS(3368), - [anon_sym_SLASH] = ACTIONS(3368), - [anon_sym_LT] = ACTIONS(3368), - [anon_sym_GT] = ACTIONS(3370), - [anon_sym_TILDE] = ACTIONS(3370), - [anon_sym_void] = ACTIONS(3368), - [anon_sym_delete] = ACTIONS(3368), - [anon_sym_PLUS_PLUS] = ACTIONS(3370), - [anon_sym_DASH_DASH] = ACTIONS(3370), - [anon_sym_DQUOTE] = ACTIONS(3370), - [anon_sym_SQUOTE] = ACTIONS(3370), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3370), - [sym_number] = ACTIONS(3370), - [sym_private_property_identifier] = ACTIONS(3370), - [sym_this] = ACTIONS(3368), - [sym_super] = ACTIONS(3368), - [sym_true] = ACTIONS(3368), - [sym_false] = ACTIONS(3368), - [sym_null] = ACTIONS(3368), - [sym_undefined] = ACTIONS(3368), - [anon_sym_AT] = ACTIONS(3370), - [anon_sym_static] = ACTIONS(3368), - [anon_sym_readonly] = ACTIONS(3368), - [anon_sym_get] = ACTIONS(3368), - [anon_sym_set] = ACTIONS(3368), - [anon_sym_QMARK] = ACTIONS(3370), - [anon_sym_declare] = ACTIONS(3368), - [anon_sym_public] = ACTIONS(3368), - [anon_sym_private] = ACTIONS(3368), - [anon_sym_protected] = ACTIONS(3368), - [anon_sym_override] = ACTIONS(3368), - [anon_sym_module] = ACTIONS(3368), - [anon_sym_any] = ACTIONS(3368), - [anon_sym_number] = ACTIONS(3368), - [anon_sym_boolean] = ACTIONS(3368), - [anon_sym_string] = ACTIONS(3368), - [anon_sym_symbol] = ACTIONS(3368), - [anon_sym_object] = ACTIONS(3368), - [anon_sym_extends] = ACTIONS(3368), + [sym_export_statement] = STATE(3815), + [sym_object_pattern] = STATE(5536), + [sym_object_assignment_pattern] = STATE(4555), + [sym_array_pattern] = STATE(5536), + [sym__call_signature] = STATE(3910), + [sym__destructuring_pattern] = STATE(5536), + [sym_spread_element] = STATE(4721), + [sym_string] = STATE(3085), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3315), + [sym_rest_pattern] = STATE(4555), + [sym_method_definition] = STATE(4721), + [sym_pair] = STATE(4721), + [sym_pair_pattern] = STATE(4555), + [sym__property_name] = STATE(3085), + [sym_computed_property_name] = STATE(3085), + [sym_method_signature] = STATE(3815), + [sym_accessibility_modifier] = STATE(2771), + [sym_override_modifier] = STATE(2792), + [sym_call_signature] = STATE(3815), + [sym_property_signature] = STATE(3815), + [sym_type_parameters] = STATE(5233), + [sym_construct_signature] = STATE(3815), + [sym_index_signature] = STATE(3815), + [aux_sym_export_statement_repeat1] = STATE(4481), + [aux_sym_object_repeat1] = STATE(4734), + [aux_sym_object_pattern_repeat1] = STATE(4745), + [sym_identifier] = ACTIONS(3353), + [anon_sym_export] = ACTIONS(3355), + [anon_sym_STAR] = ACTIONS(3273), + [anon_sym_type] = ACTIONS(3353), + [anon_sym_namespace] = ACTIONS(3353), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_COMMA] = ACTIONS(3277), + [anon_sym_RBRACE] = ACTIONS(3309), + [anon_sym_let] = ACTIONS(3353), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_async] = ACTIONS(3357), + [anon_sym_new] = ACTIONS(3359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3291), + [anon_sym_DASH] = ACTIONS(3291), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3293), + [sym_private_property_identifier] = ACTIONS(3293), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3361), + [anon_sym_readonly] = ACTIONS(3363), + [anon_sym_get] = ACTIONS(3365), + [anon_sym_set] = ACTIONS(3365), + [anon_sym_declare] = ACTIONS(3353), + [anon_sym_public] = ACTIONS(3367), + [anon_sym_private] = ACTIONS(3367), + [anon_sym_protected] = ACTIONS(3367), + [anon_sym_override] = ACTIONS(3369), + [anon_sym_module] = ACTIONS(3353), + [anon_sym_any] = ACTIONS(3353), + [anon_sym_number] = ACTIONS(3353), + [anon_sym_boolean] = ACTIONS(3353), + [anon_sym_string] = ACTIONS(3353), + [anon_sym_symbol] = ACTIONS(3353), + [anon_sym_object] = ACTIONS(3353), + [anon_sym_abstract] = ACTIONS(3305), + [anon_sym_PIPE_RBRACE] = ACTIONS(3307), [sym_html_comment] = ACTIONS(5), }, [1157] = { - [sym_export_statement] = STATE(3796), - [sym_object_pattern] = STATE(5589), - [sym_object_assignment_pattern] = STATE(4562), - [sym_array_pattern] = STATE(5589), - [sym__call_signature] = STATE(4078), - [sym__destructuring_pattern] = STATE(5589), - [sym_spread_element] = STATE(5127), - [sym_string] = STATE(3142), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3317), - [sym_rest_pattern] = STATE(4562), - [sym_method_definition] = STATE(5127), - [sym_pair] = STATE(5127), - [sym_pair_pattern] = STATE(4562), - [sym__property_name] = STATE(3142), - [sym_computed_property_name] = STATE(3142), - [sym_method_signature] = STATE(3796), - [sym_accessibility_modifier] = STATE(2776), - [sym_override_modifier] = STATE(2799), - [sym_call_signature] = STATE(3796), - [sym_property_signature] = STATE(3796), - [sym_type_parameters] = STATE(5224), - [sym_construct_signature] = STATE(3796), - [sym_index_signature] = STATE(3796), - [aux_sym_export_statement_repeat1] = STATE(4391), - [aux_sym_object_repeat1] = STATE(4524), - [aux_sym_object_pattern_repeat1] = STATE(4884), - [sym_identifier] = ACTIONS(3372), - [anon_sym_export] = ACTIONS(3374), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_type] = ACTIONS(3372), - [anon_sym_namespace] = ACTIONS(3372), - [anon_sym_LBRACE] = ACTIONS(3282), - [anon_sym_COMMA] = ACTIONS(3284), - [anon_sym_RBRACE] = ACTIONS(3376), - [anon_sym_let] = ACTIONS(3372), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3290), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_async] = ACTIONS(3378), - [anon_sym_new] = ACTIONS(3380), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(3298), - [anon_sym_DASH] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_DQUOTE] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3300), - [sym_private_property_identifier] = ACTIONS(3300), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3382), - [anon_sym_readonly] = ACTIONS(3384), - [anon_sym_get] = ACTIONS(3386), - [anon_sym_set] = ACTIONS(3386), - [anon_sym_declare] = ACTIONS(3372), - [anon_sym_public] = ACTIONS(3388), - [anon_sym_private] = ACTIONS(3388), - [anon_sym_protected] = ACTIONS(3388), - [anon_sym_override] = ACTIONS(3390), - [anon_sym_module] = ACTIONS(3372), - [anon_sym_any] = ACTIONS(3372), - [anon_sym_number] = ACTIONS(3372), - [anon_sym_boolean] = ACTIONS(3372), - [anon_sym_string] = ACTIONS(3372), - [anon_sym_symbol] = ACTIONS(3372), - [anon_sym_object] = ACTIONS(3372), - [anon_sym_abstract] = ACTIONS(3312), - [anon_sym_PIPE_RBRACE] = ACTIONS(3314), + [sym_export_statement] = STATE(3815), + [sym_object_pattern] = STATE(5536), + [sym_object_assignment_pattern] = STATE(4555), + [sym_array_pattern] = STATE(5536), + [sym__call_signature] = STATE(3910), + [sym__destructuring_pattern] = STATE(5536), + [sym_spread_element] = STATE(4721), + [sym_string] = STATE(3085), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3315), + [sym_rest_pattern] = STATE(4555), + [sym_method_definition] = STATE(4721), + [sym_pair] = STATE(4721), + [sym_pair_pattern] = STATE(4555), + [sym__property_name] = STATE(3085), + [sym_computed_property_name] = STATE(3085), + [sym_method_signature] = STATE(3815), + [sym_accessibility_modifier] = STATE(2771), + [sym_override_modifier] = STATE(2792), + [sym_call_signature] = STATE(3815), + [sym_property_signature] = STATE(3815), + [sym_type_parameters] = STATE(5233), + [sym_construct_signature] = STATE(3815), + [sym_index_signature] = STATE(3815), + [aux_sym_export_statement_repeat1] = STATE(4481), + [aux_sym_object_repeat1] = STATE(4734), + [aux_sym_object_pattern_repeat1] = STATE(4745), + [sym_identifier] = ACTIONS(3313), + [anon_sym_export] = ACTIONS(3315), + [anon_sym_STAR] = ACTIONS(3273), + [anon_sym_type] = ACTIONS(3313), + [anon_sym_namespace] = ACTIONS(3313), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_COMMA] = ACTIONS(3277), + [anon_sym_RBRACE] = ACTIONS(3371), + [anon_sym_let] = ACTIONS(3313), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_async] = ACTIONS(3319), + [anon_sym_new] = ACTIONS(3321), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3291), + [anon_sym_DASH] = ACTIONS(3291), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3293), + [sym_private_property_identifier] = ACTIONS(3293), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3323), + [anon_sym_readonly] = ACTIONS(3325), + [anon_sym_get] = ACTIONS(3327), + [anon_sym_set] = ACTIONS(3327), + [anon_sym_declare] = ACTIONS(3313), + [anon_sym_public] = ACTIONS(3329), + [anon_sym_private] = ACTIONS(3329), + [anon_sym_protected] = ACTIONS(3329), + [anon_sym_override] = ACTIONS(3331), + [anon_sym_module] = ACTIONS(3313), + [anon_sym_any] = ACTIONS(3313), + [anon_sym_number] = ACTIONS(3313), + [anon_sym_boolean] = ACTIONS(3313), + [anon_sym_string] = ACTIONS(3313), + [anon_sym_symbol] = ACTIONS(3313), + [anon_sym_object] = ACTIONS(3313), + [anon_sym_abstract] = ACTIONS(3305), + [anon_sym_PIPE_RBRACE] = ACTIONS(3307), [sym_html_comment] = ACTIONS(5), }, [1158] = { - [sym_export_statement] = STATE(3796), - [sym_object_pattern] = STATE(5589), - [sym_object_assignment_pattern] = STATE(4562), - [sym_array_pattern] = STATE(5589), - [sym__call_signature] = STATE(4078), - [sym__destructuring_pattern] = STATE(5589), - [sym_spread_element] = STATE(5127), - [sym_string] = STATE(3142), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3317), - [sym_rest_pattern] = STATE(4562), - [sym_method_definition] = STATE(5127), - [sym_pair] = STATE(5127), - [sym_pair_pattern] = STATE(4562), - [sym__property_name] = STATE(3142), - [sym_computed_property_name] = STATE(3142), - [sym_method_signature] = STATE(3796), - [sym_accessibility_modifier] = STATE(2776), - [sym_override_modifier] = STATE(2799), - [sym_call_signature] = STATE(3796), - [sym_property_signature] = STATE(3796), - [sym_type_parameters] = STATE(5224), - [sym_construct_signature] = STATE(3796), - [sym_index_signature] = STATE(3796), - [aux_sym_export_statement_repeat1] = STATE(4391), - [aux_sym_object_repeat1] = STATE(4524), - [aux_sym_object_pattern_repeat1] = STATE(4884), - [sym_identifier] = ACTIONS(3276), - [anon_sym_export] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_type] = ACTIONS(3276), - [anon_sym_namespace] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3282), - [anon_sym_COMMA] = ACTIONS(3284), - [anon_sym_RBRACE] = ACTIONS(3392), - [anon_sym_let] = ACTIONS(3276), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3290), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_async] = ACTIONS(3294), - [anon_sym_new] = ACTIONS(3296), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(3298), - [anon_sym_DASH] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_DQUOTE] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3300), - [sym_private_property_identifier] = ACTIONS(3300), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3302), - [anon_sym_readonly] = ACTIONS(3304), - [anon_sym_get] = ACTIONS(3306), - [anon_sym_set] = ACTIONS(3306), - [anon_sym_declare] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3308), - [anon_sym_private] = ACTIONS(3308), - [anon_sym_protected] = ACTIONS(3308), - [anon_sym_override] = ACTIONS(3310), - [anon_sym_module] = ACTIONS(3276), - [anon_sym_any] = ACTIONS(3276), - [anon_sym_number] = ACTIONS(3276), - [anon_sym_boolean] = ACTIONS(3276), - [anon_sym_string] = ACTIONS(3276), - [anon_sym_symbol] = ACTIONS(3276), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3312), - [anon_sym_PIPE_RBRACE] = ACTIONS(3314), + [sym_export_statement] = STATE(3815), + [sym_object_pattern] = STATE(5536), + [sym_object_assignment_pattern] = STATE(4555), + [sym_array_pattern] = STATE(5536), + [sym__call_signature] = STATE(3910), + [sym__destructuring_pattern] = STATE(5536), + [sym_spread_element] = STATE(4721), + [sym_string] = STATE(3085), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3315), + [sym_rest_pattern] = STATE(4555), + [sym_method_definition] = STATE(4721), + [sym_pair] = STATE(4721), + [sym_pair_pattern] = STATE(4555), + [sym__property_name] = STATE(3085), + [sym_computed_property_name] = STATE(3085), + [sym_method_signature] = STATE(3815), + [sym_accessibility_modifier] = STATE(2771), + [sym_override_modifier] = STATE(2792), + [sym_call_signature] = STATE(3815), + [sym_property_signature] = STATE(3815), + [sym_type_parameters] = STATE(5233), + [sym_construct_signature] = STATE(3815), + [sym_index_signature] = STATE(3815), + [aux_sym_export_statement_repeat1] = STATE(4481), + [aux_sym_object_repeat1] = STATE(4734), + [aux_sym_object_pattern_repeat1] = STATE(4745), + [sym_identifier] = ACTIONS(3373), + [anon_sym_export] = ACTIONS(3375), + [anon_sym_STAR] = ACTIONS(3273), + [anon_sym_type] = ACTIONS(3373), + [anon_sym_namespace] = ACTIONS(3373), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_COMMA] = ACTIONS(3277), + [anon_sym_RBRACE] = ACTIONS(3377), + [anon_sym_let] = ACTIONS(3373), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_async] = ACTIONS(3379), + [anon_sym_new] = ACTIONS(3381), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3291), + [anon_sym_DASH] = ACTIONS(3291), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3293), + [sym_private_property_identifier] = ACTIONS(3293), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3383), + [anon_sym_readonly] = ACTIONS(3385), + [anon_sym_get] = ACTIONS(3387), + [anon_sym_set] = ACTIONS(3387), + [anon_sym_declare] = ACTIONS(3373), + [anon_sym_public] = ACTIONS(3389), + [anon_sym_private] = ACTIONS(3389), + [anon_sym_protected] = ACTIONS(3389), + [anon_sym_override] = ACTIONS(3391), + [anon_sym_module] = ACTIONS(3373), + [anon_sym_any] = ACTIONS(3373), + [anon_sym_number] = ACTIONS(3373), + [anon_sym_boolean] = ACTIONS(3373), + [anon_sym_string] = ACTIONS(3373), + [anon_sym_symbol] = ACTIONS(3373), + [anon_sym_object] = ACTIONS(3373), + [anon_sym_abstract] = ACTIONS(3305), + [anon_sym_PIPE_RBRACE] = ACTIONS(3307), [sym_html_comment] = ACTIONS(5), }, [1159] = { - [sym_export_statement] = STATE(3796), - [sym_object_pattern] = STATE(5589), - [sym_object_assignment_pattern] = STATE(4562), - [sym_array_pattern] = STATE(5589), - [sym__call_signature] = STATE(4078), - [sym__destructuring_pattern] = STATE(5589), - [sym_spread_element] = STATE(5127), - [sym_string] = STATE(3142), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3317), - [sym_rest_pattern] = STATE(4562), - [sym_method_definition] = STATE(5127), - [sym_pair] = STATE(5127), - [sym_pair_pattern] = STATE(4562), - [sym__property_name] = STATE(3142), - [sym_computed_property_name] = STATE(3142), - [sym_method_signature] = STATE(3796), - [sym_accessibility_modifier] = STATE(2776), - [sym_override_modifier] = STATE(2799), - [sym_call_signature] = STATE(3796), - [sym_property_signature] = STATE(3796), - [sym_type_parameters] = STATE(5224), - [sym_construct_signature] = STATE(3796), - [sym_index_signature] = STATE(3796), - [aux_sym_export_statement_repeat1] = STATE(4391), - [aux_sym_object_repeat1] = STATE(4524), - [aux_sym_object_pattern_repeat1] = STATE(4884), - [sym_identifier] = ACTIONS(3276), - [anon_sym_export] = ACTIONS(3278), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_type] = ACTIONS(3276), - [anon_sym_namespace] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3282), - [anon_sym_COMMA] = ACTIONS(3284), - [anon_sym_RBRACE] = ACTIONS(3394), - [anon_sym_let] = ACTIONS(3276), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3290), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_async] = ACTIONS(3294), - [anon_sym_new] = ACTIONS(3296), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(3298), - [anon_sym_DASH] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_DQUOTE] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3300), - [sym_private_property_identifier] = ACTIONS(3300), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3302), - [anon_sym_readonly] = ACTIONS(3304), - [anon_sym_get] = ACTIONS(3306), - [anon_sym_set] = ACTIONS(3306), - [anon_sym_declare] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3308), - [anon_sym_private] = ACTIONS(3308), - [anon_sym_protected] = ACTIONS(3308), - [anon_sym_override] = ACTIONS(3310), - [anon_sym_module] = ACTIONS(3276), - [anon_sym_any] = ACTIONS(3276), - [anon_sym_number] = ACTIONS(3276), - [anon_sym_boolean] = ACTIONS(3276), - [anon_sym_string] = ACTIONS(3276), - [anon_sym_symbol] = ACTIONS(3276), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3312), - [anon_sym_PIPE_RBRACE] = ACTIONS(3314), + [sym_export_statement] = STATE(3815), + [sym_object_pattern] = STATE(5536), + [sym_object_assignment_pattern] = STATE(4555), + [sym_array_pattern] = STATE(5536), + [sym__call_signature] = STATE(3910), + [sym__destructuring_pattern] = STATE(5536), + [sym_spread_element] = STATE(4721), + [sym_string] = STATE(3085), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3315), + [sym_rest_pattern] = STATE(4555), + [sym_method_definition] = STATE(4721), + [sym_pair] = STATE(4721), + [sym_pair_pattern] = STATE(4555), + [sym__property_name] = STATE(3085), + [sym_computed_property_name] = STATE(3085), + [sym_method_signature] = STATE(3815), + [sym_accessibility_modifier] = STATE(2771), + [sym_override_modifier] = STATE(2792), + [sym_call_signature] = STATE(3815), + [sym_property_signature] = STATE(3815), + [sym_type_parameters] = STATE(5233), + [sym_construct_signature] = STATE(3815), + [sym_index_signature] = STATE(3815), + [aux_sym_export_statement_repeat1] = STATE(4481), + [aux_sym_object_repeat1] = STATE(4734), + [aux_sym_object_pattern_repeat1] = STATE(4745), + [sym_identifier] = ACTIONS(3373), + [anon_sym_export] = ACTIONS(3375), + [anon_sym_STAR] = ACTIONS(3273), + [anon_sym_type] = ACTIONS(3373), + [anon_sym_namespace] = ACTIONS(3373), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_COMMA] = ACTIONS(3277), + [anon_sym_RBRACE] = ACTIONS(3311), + [anon_sym_let] = ACTIONS(3373), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_async] = ACTIONS(3379), + [anon_sym_new] = ACTIONS(3381), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3291), + [anon_sym_DASH] = ACTIONS(3291), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3293), + [sym_private_property_identifier] = ACTIONS(3293), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3383), + [anon_sym_readonly] = ACTIONS(3385), + [anon_sym_get] = ACTIONS(3387), + [anon_sym_set] = ACTIONS(3387), + [anon_sym_declare] = ACTIONS(3373), + [anon_sym_public] = ACTIONS(3389), + [anon_sym_private] = ACTIONS(3389), + [anon_sym_protected] = ACTIONS(3389), + [anon_sym_override] = ACTIONS(3391), + [anon_sym_module] = ACTIONS(3373), + [anon_sym_any] = ACTIONS(3373), + [anon_sym_number] = ACTIONS(3373), + [anon_sym_boolean] = ACTIONS(3373), + [anon_sym_string] = ACTIONS(3373), + [anon_sym_symbol] = ACTIONS(3373), + [anon_sym_object] = ACTIONS(3373), + [anon_sym_abstract] = ACTIONS(3305), + [anon_sym_PIPE_RBRACE] = ACTIONS(3307), [sym_html_comment] = ACTIONS(5), }, [1160] = { - [sym_export_statement] = STATE(3796), - [sym_object_pattern] = STATE(5589), - [sym_object_assignment_pattern] = STATE(4562), - [sym_array_pattern] = STATE(5589), - [sym__call_signature] = STATE(4078), - [sym__destructuring_pattern] = STATE(5589), - [sym_spread_element] = STATE(5127), - [sym_string] = STATE(3142), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3317), - [sym_rest_pattern] = STATE(4562), - [sym_method_definition] = STATE(5127), - [sym_pair] = STATE(5127), - [sym_pair_pattern] = STATE(4562), - [sym__property_name] = STATE(3142), - [sym_computed_property_name] = STATE(3142), - [sym_method_signature] = STATE(3796), - [sym_accessibility_modifier] = STATE(2776), - [sym_override_modifier] = STATE(2799), - [sym_call_signature] = STATE(3796), - [sym_property_signature] = STATE(3796), - [sym_type_parameters] = STATE(5224), - [sym_construct_signature] = STATE(3796), - [sym_index_signature] = STATE(3796), - [aux_sym_export_statement_repeat1] = STATE(4391), - [aux_sym_object_repeat1] = STATE(4524), - [aux_sym_object_pattern_repeat1] = STATE(4884), - [sym_identifier] = ACTIONS(3316), - [anon_sym_export] = ACTIONS(3318), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_type] = ACTIONS(3316), - [anon_sym_namespace] = ACTIONS(3316), - [anon_sym_LBRACE] = ACTIONS(3282), - [anon_sym_COMMA] = ACTIONS(3284), - [anon_sym_RBRACE] = ACTIONS(3396), - [anon_sym_let] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3290), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_async] = ACTIONS(3322), - [anon_sym_new] = ACTIONS(3324), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(3298), - [anon_sym_DASH] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_DQUOTE] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3300), - [sym_private_property_identifier] = ACTIONS(3300), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3326), - [anon_sym_readonly] = ACTIONS(3328), - [anon_sym_get] = ACTIONS(3330), - [anon_sym_set] = ACTIONS(3330), - [anon_sym_declare] = ACTIONS(3316), - [anon_sym_public] = ACTIONS(3332), - [anon_sym_private] = ACTIONS(3332), - [anon_sym_protected] = ACTIONS(3332), - [anon_sym_override] = ACTIONS(3334), - [anon_sym_module] = ACTIONS(3316), - [anon_sym_any] = ACTIONS(3316), - [anon_sym_number] = ACTIONS(3316), - [anon_sym_boolean] = ACTIONS(3316), - [anon_sym_string] = ACTIONS(3316), - [anon_sym_symbol] = ACTIONS(3316), - [anon_sym_object] = ACTIONS(3316), - [anon_sym_abstract] = ACTIONS(3312), - [anon_sym_PIPE_RBRACE] = ACTIONS(3314), + [sym_export_statement] = STATE(3815), + [sym_object_pattern] = STATE(5536), + [sym_object_assignment_pattern] = STATE(4555), + [sym_array_pattern] = STATE(5536), + [sym__call_signature] = STATE(3910), + [sym__destructuring_pattern] = STATE(5536), + [sym_spread_element] = STATE(4721), + [sym_string] = STATE(3085), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3315), + [sym_rest_pattern] = STATE(4555), + [sym_method_definition] = STATE(4721), + [sym_pair] = STATE(4721), + [sym_pair_pattern] = STATE(4555), + [sym__property_name] = STATE(3085), + [sym_computed_property_name] = STATE(3085), + [sym_method_signature] = STATE(3815), + [sym_accessibility_modifier] = STATE(2771), + [sym_override_modifier] = STATE(2792), + [sym_call_signature] = STATE(3815), + [sym_property_signature] = STATE(3815), + [sym_type_parameters] = STATE(5233), + [sym_construct_signature] = STATE(3815), + [sym_index_signature] = STATE(3815), + [aux_sym_export_statement_repeat1] = STATE(4481), + [aux_sym_object_repeat1] = STATE(4734), + [aux_sym_object_pattern_repeat1] = STATE(4745), + [sym_identifier] = ACTIONS(3373), + [anon_sym_export] = ACTIONS(3375), + [anon_sym_STAR] = ACTIONS(3273), + [anon_sym_type] = ACTIONS(3373), + [anon_sym_namespace] = ACTIONS(3373), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_COMMA] = ACTIONS(3277), + [anon_sym_RBRACE] = ACTIONS(3393), + [anon_sym_let] = ACTIONS(3373), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_async] = ACTIONS(3379), + [anon_sym_new] = ACTIONS(3381), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3291), + [anon_sym_DASH] = ACTIONS(3291), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3293), + [sym_private_property_identifier] = ACTIONS(3293), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3383), + [anon_sym_readonly] = ACTIONS(3385), + [anon_sym_get] = ACTIONS(3387), + [anon_sym_set] = ACTIONS(3387), + [anon_sym_declare] = ACTIONS(3373), + [anon_sym_public] = ACTIONS(3389), + [anon_sym_private] = ACTIONS(3389), + [anon_sym_protected] = ACTIONS(3389), + [anon_sym_override] = ACTIONS(3391), + [anon_sym_module] = ACTIONS(3373), + [anon_sym_any] = ACTIONS(3373), + [anon_sym_number] = ACTIONS(3373), + [anon_sym_boolean] = ACTIONS(3373), + [anon_sym_string] = ACTIONS(3373), + [anon_sym_symbol] = ACTIONS(3373), + [anon_sym_object] = ACTIONS(3373), + [anon_sym_abstract] = ACTIONS(3305), + [anon_sym_PIPE_RBRACE] = ACTIONS(3307), [sym_html_comment] = ACTIONS(5), }, [1161] = { - [sym_export_statement] = STATE(3796), - [sym_object_pattern] = STATE(5589), - [sym_object_assignment_pattern] = STATE(4562), - [sym_array_pattern] = STATE(5589), - [sym__call_signature] = STATE(4078), - [sym__destructuring_pattern] = STATE(5589), - [sym_spread_element] = STATE(4699), - [sym_string] = STATE(3142), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3317), - [sym_rest_pattern] = STATE(4562), - [sym_method_definition] = STATE(4699), - [sym_pair] = STATE(4699), - [sym_pair_pattern] = STATE(4562), - [sym__property_name] = STATE(3142), - [sym_computed_property_name] = STATE(3142), - [sym_method_signature] = STATE(3796), - [sym_accessibility_modifier] = STATE(2776), - [sym_override_modifier] = STATE(2799), - [sym_call_signature] = STATE(3796), - [sym_property_signature] = STATE(3796), - [sym_type_parameters] = STATE(5224), - [sym_construct_signature] = STATE(3796), - [sym_index_signature] = STATE(3796), - [aux_sym_export_statement_repeat1] = STATE(4391), - [aux_sym_object_repeat1] = STATE(4653), - [aux_sym_object_pattern_repeat1] = STATE(4884), - [sym_identifier] = ACTIONS(3348), - [anon_sym_export] = ACTIONS(3350), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_type] = ACTIONS(3348), - [anon_sym_namespace] = ACTIONS(3348), - [anon_sym_LBRACE] = ACTIONS(3282), - [anon_sym_COMMA] = ACTIONS(3284), - [anon_sym_RBRACE] = ACTIONS(3398), - [anon_sym_let] = ACTIONS(3348), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3290), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_async] = ACTIONS(3354), - [anon_sym_new] = ACTIONS(3356), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(3298), - [anon_sym_DASH] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_DQUOTE] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3300), - [sym_private_property_identifier] = ACTIONS(3300), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3358), - [anon_sym_readonly] = ACTIONS(3360), - [anon_sym_get] = ACTIONS(3362), - [anon_sym_set] = ACTIONS(3362), - [anon_sym_declare] = ACTIONS(3348), - [anon_sym_public] = ACTIONS(3364), - [anon_sym_private] = ACTIONS(3364), - [anon_sym_protected] = ACTIONS(3364), - [anon_sym_override] = ACTIONS(3366), - [anon_sym_module] = ACTIONS(3348), - [anon_sym_any] = ACTIONS(3348), - [anon_sym_number] = ACTIONS(3348), - [anon_sym_boolean] = ACTIONS(3348), - [anon_sym_string] = ACTIONS(3348), - [anon_sym_symbol] = ACTIONS(3348), - [anon_sym_object] = ACTIONS(3348), - [anon_sym_abstract] = ACTIONS(3312), - [anon_sym_PIPE_RBRACE] = ACTIONS(3314), + [sym_export_statement] = STATE(3844), + [sym_object_pattern] = STATE(5536), + [sym_object_assignment_pattern] = STATE(4555), + [sym_array_pattern] = STATE(5536), + [sym__call_signature] = STATE(3910), + [sym__destructuring_pattern] = STATE(5536), + [sym_spread_element] = STATE(4721), + [sym_string] = STATE(3085), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3315), + [sym_rest_pattern] = STATE(4555), + [sym_method_definition] = STATE(4721), + [sym_pair] = STATE(4721), + [sym_pair_pattern] = STATE(4555), + [sym__property_name] = STATE(3085), + [sym_computed_property_name] = STATE(3085), + [sym_method_signature] = STATE(3844), + [sym_accessibility_modifier] = STATE(2771), + [sym_override_modifier] = STATE(2792), + [sym_call_signature] = STATE(3844), + [sym_property_signature] = STATE(3844), + [sym_type_parameters] = STATE(5233), + [sym_construct_signature] = STATE(3844), + [sym_index_signature] = STATE(3844), + [aux_sym_export_statement_repeat1] = STATE(4481), + [aux_sym_object_repeat1] = STATE(4734), + [aux_sym_object_pattern_repeat1] = STATE(4745), + [sym_identifier] = ACTIONS(3269), + [anon_sym_export] = ACTIONS(3271), + [anon_sym_STAR] = ACTIONS(3273), + [anon_sym_type] = ACTIONS(3269), + [anon_sym_namespace] = ACTIONS(3269), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_COMMA] = ACTIONS(3395), + [anon_sym_RBRACE] = ACTIONS(3397), + [anon_sym_let] = ACTIONS(3269), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3399), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_async] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3289), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3291), + [anon_sym_DASH] = ACTIONS(3291), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3293), + [sym_private_property_identifier] = ACTIONS(3293), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3295), + [anon_sym_readonly] = ACTIONS(3297), + [anon_sym_get] = ACTIONS(3299), + [anon_sym_set] = ACTIONS(3299), + [anon_sym_declare] = ACTIONS(3269), + [anon_sym_public] = ACTIONS(3301), + [anon_sym_private] = ACTIONS(3301), + [anon_sym_protected] = ACTIONS(3301), + [anon_sym_override] = ACTIONS(3303), + [anon_sym_module] = ACTIONS(3269), + [anon_sym_any] = ACTIONS(3269), + [anon_sym_number] = ACTIONS(3269), + [anon_sym_boolean] = ACTIONS(3269), + [anon_sym_string] = ACTIONS(3269), + [anon_sym_symbol] = ACTIONS(3269), + [anon_sym_object] = ACTIONS(3269), + [anon_sym_abstract] = ACTIONS(3305), + [anon_sym_PIPE_RBRACE] = ACTIONS(3401), [sym_html_comment] = ACTIONS(5), }, [1162] = { - [sym_identifier] = ACTIONS(3400), - [anon_sym_export] = ACTIONS(3400), - [anon_sym_type] = ACTIONS(3400), - [anon_sym_EQ] = ACTIONS(3400), - [anon_sym_namespace] = ACTIONS(3400), - [anon_sym_LBRACE] = ACTIONS(3402), - [anon_sym_COMMA] = ACTIONS(3402), - [anon_sym_RBRACE] = ACTIONS(3402), - [anon_sym_typeof] = ACTIONS(3400), - [anon_sym_import] = ACTIONS(3400), - [anon_sym_let] = ACTIONS(3400), - [anon_sym_BANG] = ACTIONS(3402), - [anon_sym_LPAREN] = ACTIONS(3402), - [anon_sym_RPAREN] = ACTIONS(3402), - [anon_sym_await] = ACTIONS(3400), - [anon_sym_COLON] = ACTIONS(3402), - [anon_sym_yield] = ACTIONS(3400), - [anon_sym_LBRACK] = ACTIONS(3402), - [anon_sym_RBRACK] = ACTIONS(3402), - [sym_glimmer_opening_tag] = ACTIONS(3402), - [anon_sym_class] = ACTIONS(3400), - [anon_sym_async] = ACTIONS(3400), - [anon_sym_function] = ACTIONS(3400), - [anon_sym_EQ_GT] = ACTIONS(3402), - [anon_sym_new] = ACTIONS(3400), - [anon_sym_using] = ACTIONS(3400), - [anon_sym_AMP] = ACTIONS(3402), - [anon_sym_PIPE] = ACTIONS(3402), - [anon_sym_PLUS] = ACTIONS(3400), - [anon_sym_DASH] = ACTIONS(3400), - [anon_sym_SLASH] = ACTIONS(3400), - [anon_sym_LT] = ACTIONS(3400), - [anon_sym_GT] = ACTIONS(3402), - [anon_sym_TILDE] = ACTIONS(3402), - [anon_sym_void] = ACTIONS(3400), - [anon_sym_delete] = ACTIONS(3400), - [anon_sym_PLUS_PLUS] = ACTIONS(3402), - [anon_sym_DASH_DASH] = ACTIONS(3402), - [anon_sym_DQUOTE] = ACTIONS(3402), - [anon_sym_SQUOTE] = ACTIONS(3402), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3402), - [sym_number] = ACTIONS(3402), - [sym_private_property_identifier] = ACTIONS(3402), - [sym_this] = ACTIONS(3400), - [sym_super] = ACTIONS(3400), - [sym_true] = ACTIONS(3400), - [sym_false] = ACTIONS(3400), - [sym_null] = ACTIONS(3400), - [sym_undefined] = ACTIONS(3400), - [anon_sym_AT] = ACTIONS(3402), - [anon_sym_static] = ACTIONS(3400), - [anon_sym_readonly] = ACTIONS(3400), - [anon_sym_get] = ACTIONS(3400), - [anon_sym_set] = ACTIONS(3400), - [anon_sym_QMARK] = ACTIONS(3402), - [anon_sym_declare] = ACTIONS(3400), - [anon_sym_public] = ACTIONS(3400), - [anon_sym_private] = ACTIONS(3400), - [anon_sym_protected] = ACTIONS(3400), - [anon_sym_override] = ACTIONS(3400), - [anon_sym_module] = ACTIONS(3400), - [anon_sym_any] = ACTIONS(3400), - [anon_sym_number] = ACTIONS(3400), - [anon_sym_boolean] = ACTIONS(3400), - [anon_sym_string] = ACTIONS(3400), - [anon_sym_symbol] = ACTIONS(3400), - [anon_sym_object] = ACTIONS(3400), - [anon_sym_extends] = ACTIONS(3400), + [sym_export_statement] = STATE(3815), + [sym_object_pattern] = STATE(5536), + [sym_object_assignment_pattern] = STATE(4555), + [sym_array_pattern] = STATE(5536), + [sym__call_signature] = STATE(3910), + [sym__destructuring_pattern] = STATE(5536), + [sym_spread_element] = STATE(4576), + [sym_string] = STATE(3085), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3315), + [sym_rest_pattern] = STATE(4555), + [sym_method_definition] = STATE(4576), + [sym_pair] = STATE(4576), + [sym_pair_pattern] = STATE(4555), + [sym__property_name] = STATE(3085), + [sym_computed_property_name] = STATE(3085), + [sym_method_signature] = STATE(3815), + [sym_accessibility_modifier] = STATE(2771), + [sym_override_modifier] = STATE(2792), + [sym_call_signature] = STATE(3815), + [sym_property_signature] = STATE(3815), + [sym_type_parameters] = STATE(5233), + [sym_construct_signature] = STATE(3815), + [sym_index_signature] = STATE(3815), + [aux_sym_export_statement_repeat1] = STATE(4481), + [aux_sym_object_repeat1] = STATE(4744), + [aux_sym_object_pattern_repeat1] = STATE(4745), + [sym_identifier] = ACTIONS(3333), + [anon_sym_export] = ACTIONS(3335), + [anon_sym_STAR] = ACTIONS(3273), + [anon_sym_type] = ACTIONS(3333), + [anon_sym_namespace] = ACTIONS(3333), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_COMMA] = ACTIONS(3277), + [anon_sym_RBRACE] = ACTIONS(3403), + [anon_sym_let] = ACTIONS(3333), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_async] = ACTIONS(3339), + [anon_sym_new] = ACTIONS(3341), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3291), + [anon_sym_DASH] = ACTIONS(3291), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3293), + [sym_private_property_identifier] = ACTIONS(3293), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3343), + [anon_sym_readonly] = ACTIONS(3345), + [anon_sym_get] = ACTIONS(3347), + [anon_sym_set] = ACTIONS(3347), + [anon_sym_declare] = ACTIONS(3333), + [anon_sym_public] = ACTIONS(3349), + [anon_sym_private] = ACTIONS(3349), + [anon_sym_protected] = ACTIONS(3349), + [anon_sym_override] = ACTIONS(3351), + [anon_sym_module] = ACTIONS(3333), + [anon_sym_any] = ACTIONS(3333), + [anon_sym_number] = ACTIONS(3333), + [anon_sym_boolean] = ACTIONS(3333), + [anon_sym_string] = ACTIONS(3333), + [anon_sym_symbol] = ACTIONS(3333), + [anon_sym_object] = ACTIONS(3333), + [anon_sym_abstract] = ACTIONS(3305), + [anon_sym_PIPE_RBRACE] = ACTIONS(3307), [sym_html_comment] = ACTIONS(5), }, [1163] = { - [sym_export_statement] = STATE(3796), - [sym_object_pattern] = STATE(5589), - [sym_object_assignment_pattern] = STATE(4562), - [sym_array_pattern] = STATE(5589), - [sym__call_signature] = STATE(4078), - [sym__destructuring_pattern] = STATE(5589), - [sym_spread_element] = STATE(5127), - [sym_string] = STATE(3142), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3317), - [sym_rest_pattern] = STATE(4562), - [sym_method_definition] = STATE(5127), - [sym_pair] = STATE(5127), - [sym_pair_pattern] = STATE(4562), - [sym__property_name] = STATE(3142), - [sym_computed_property_name] = STATE(3142), - [sym_method_signature] = STATE(3796), - [sym_accessibility_modifier] = STATE(2776), - [sym_override_modifier] = STATE(2799), - [sym_call_signature] = STATE(3796), - [sym_property_signature] = STATE(3796), - [sym_type_parameters] = STATE(5224), - [sym_construct_signature] = STATE(3796), - [sym_index_signature] = STATE(3796), - [aux_sym_export_statement_repeat1] = STATE(4391), - [aux_sym_object_repeat1] = STATE(4524), - [aux_sym_object_pattern_repeat1] = STATE(4884), - [sym_identifier] = ACTIONS(3404), - [anon_sym_export] = ACTIONS(3406), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_type] = ACTIONS(3404), - [anon_sym_namespace] = ACTIONS(3404), - [anon_sym_LBRACE] = ACTIONS(3282), - [anon_sym_COMMA] = ACTIONS(3284), - [anon_sym_RBRACE] = ACTIONS(3394), - [anon_sym_let] = ACTIONS(3404), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3290), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_async] = ACTIONS(3408), - [anon_sym_new] = ACTIONS(3410), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(3298), - [anon_sym_DASH] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_DQUOTE] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3300), - [sym_private_property_identifier] = ACTIONS(3300), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3412), - [anon_sym_readonly] = ACTIONS(3414), - [anon_sym_get] = ACTIONS(3416), - [anon_sym_set] = ACTIONS(3416), - [anon_sym_declare] = ACTIONS(3404), - [anon_sym_public] = ACTIONS(3418), - [anon_sym_private] = ACTIONS(3418), - [anon_sym_protected] = ACTIONS(3418), - [anon_sym_override] = ACTIONS(3420), - [anon_sym_module] = ACTIONS(3404), - [anon_sym_any] = ACTIONS(3404), - [anon_sym_number] = ACTIONS(3404), - [anon_sym_boolean] = ACTIONS(3404), - [anon_sym_string] = ACTIONS(3404), - [anon_sym_symbol] = ACTIONS(3404), - [anon_sym_object] = ACTIONS(3404), - [anon_sym_abstract] = ACTIONS(3312), - [anon_sym_PIPE_RBRACE] = ACTIONS(3314), + [sym_variable_declarator] = STATE(4416), + [sym_object_pattern] = STATE(3718), + [sym_array_pattern] = STATE(3718), + [sym__destructuring_pattern] = STATE(3718), + [aux_sym_object_repeat1] = STATE(4810), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(3405), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(3407), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(692), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(3409), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [1164] = { - [sym_export_statement] = STATE(3796), - [sym_object_pattern] = STATE(5589), - [sym_object_assignment_pattern] = STATE(4562), - [sym_array_pattern] = STATE(5589), - [sym__call_signature] = STATE(4078), - [sym__destructuring_pattern] = STATE(5589), - [sym_spread_element] = STATE(5127), - [sym_string] = STATE(3142), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3317), - [sym_rest_pattern] = STATE(4562), - [sym_method_definition] = STATE(5127), - [sym_pair] = STATE(5127), - [sym_pair_pattern] = STATE(4562), - [sym__property_name] = STATE(3142), - [sym_computed_property_name] = STATE(3142), - [sym_method_signature] = STATE(3796), - [sym_accessibility_modifier] = STATE(2776), - [sym_override_modifier] = STATE(2799), - [sym_call_signature] = STATE(3796), - [sym_property_signature] = STATE(3796), - [sym_type_parameters] = STATE(5224), - [sym_construct_signature] = STATE(3796), - [sym_index_signature] = STATE(3796), - [aux_sym_export_statement_repeat1] = STATE(4391), - [aux_sym_object_repeat1] = STATE(4524), - [aux_sym_object_pattern_repeat1] = STATE(4884), - [sym_identifier] = ACTIONS(3372), - [anon_sym_export] = ACTIONS(3374), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_type] = ACTIONS(3372), - [anon_sym_namespace] = ACTIONS(3372), - [anon_sym_LBRACE] = ACTIONS(3282), - [anon_sym_COMMA] = ACTIONS(3284), - [anon_sym_RBRACE] = ACTIONS(3422), - [anon_sym_let] = ACTIONS(3372), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3290), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_async] = ACTIONS(3378), - [anon_sym_new] = ACTIONS(3380), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(3298), - [anon_sym_DASH] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_DQUOTE] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3300), - [sym_private_property_identifier] = ACTIONS(3300), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3382), - [anon_sym_readonly] = ACTIONS(3384), - [anon_sym_get] = ACTIONS(3386), - [anon_sym_set] = ACTIONS(3386), - [anon_sym_declare] = ACTIONS(3372), - [anon_sym_public] = ACTIONS(3388), - [anon_sym_private] = ACTIONS(3388), - [anon_sym_protected] = ACTIONS(3388), - [anon_sym_override] = ACTIONS(3390), - [anon_sym_module] = ACTIONS(3372), - [anon_sym_any] = ACTIONS(3372), - [anon_sym_number] = ACTIONS(3372), - [anon_sym_boolean] = ACTIONS(3372), - [anon_sym_string] = ACTIONS(3372), - [anon_sym_symbol] = ACTIONS(3372), - [anon_sym_object] = ACTIONS(3372), - [anon_sym_abstract] = ACTIONS(3312), - [anon_sym_PIPE_RBRACE] = ACTIONS(3314), + [sym_nested_identifier] = STATE(201), + [sym_string] = STATE(203), + [sym__module] = STATE(231), + [aux_sym_object_repeat1] = STATE(4792), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(3411), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(3413), + [anon_sym_SQUOTE] = ACTIONS(3415), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [1165] = { - [sym_export_statement] = STATE(3796), - [sym_object_pattern] = STATE(5589), - [sym_object_assignment_pattern] = STATE(4562), - [sym_array_pattern] = STATE(5589), - [sym__call_signature] = STATE(4078), - [sym__destructuring_pattern] = STATE(5589), - [sym_spread_element] = STATE(5127), - [sym_string] = STATE(3142), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3317), - [sym_rest_pattern] = STATE(4562), - [sym_method_definition] = STATE(5127), - [sym_pair] = STATE(5127), - [sym_pair_pattern] = STATE(4562), - [sym__property_name] = STATE(3142), - [sym_computed_property_name] = STATE(3142), - [sym_method_signature] = STATE(3796), - [sym_accessibility_modifier] = STATE(2776), - [sym_override_modifier] = STATE(2799), - [sym_call_signature] = STATE(3796), - [sym_property_signature] = STATE(3796), - [sym_type_parameters] = STATE(5224), - [sym_construct_signature] = STATE(3796), - [sym_index_signature] = STATE(3796), - [aux_sym_export_statement_repeat1] = STATE(4391), - [aux_sym_object_repeat1] = STATE(4524), - [aux_sym_object_pattern_repeat1] = STATE(4884), - [sym_identifier] = ACTIONS(3372), - [anon_sym_export] = ACTIONS(3374), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_type] = ACTIONS(3372), - [anon_sym_namespace] = ACTIONS(3372), - [anon_sym_LBRACE] = ACTIONS(3282), - [anon_sym_COMMA] = ACTIONS(3284), - [anon_sym_RBRACE] = ACTIONS(3392), - [anon_sym_let] = ACTIONS(3372), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3290), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_async] = ACTIONS(3378), - [anon_sym_new] = ACTIONS(3380), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(3298), - [anon_sym_DASH] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_DQUOTE] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3300), - [sym_private_property_identifier] = ACTIONS(3300), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3382), - [anon_sym_readonly] = ACTIONS(3384), - [anon_sym_get] = ACTIONS(3386), - [anon_sym_set] = ACTIONS(3386), - [anon_sym_declare] = ACTIONS(3372), - [anon_sym_public] = ACTIONS(3388), - [anon_sym_private] = ACTIONS(3388), - [anon_sym_protected] = ACTIONS(3388), - [anon_sym_override] = ACTIONS(3390), - [anon_sym_module] = ACTIONS(3372), - [anon_sym_any] = ACTIONS(3372), - [anon_sym_number] = ACTIONS(3372), - [anon_sym_boolean] = ACTIONS(3372), - [anon_sym_string] = ACTIONS(3372), - [anon_sym_symbol] = ACTIONS(3372), - [anon_sym_object] = ACTIONS(3372), - [anon_sym_abstract] = ACTIONS(3312), - [anon_sym_PIPE_RBRACE] = ACTIONS(3314), + [sym_variable_declarator] = STATE(4416), + [sym_object_pattern] = STATE(3718), + [sym_array_pattern] = STATE(3718), + [sym__destructuring_pattern] = STATE(3718), + [aux_sym_object_repeat1] = STATE(4792), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(3405), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(3407), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(3409), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [1166] = { - [sym_variable_declarator] = STATE(4461), - [sym_object_pattern] = STATE(3675), - [sym_array_pattern] = STATE(3675), - [sym__destructuring_pattern] = STATE(3675), - [aux_sym_object_repeat1] = STATE(4823), - [aux_sym_object_pattern_repeat1] = STATE(4834), - [sym_identifier] = ACTIONS(3424), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(3426), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_RBRACE] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(3428), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [sym_identifier] = ACTIONS(3417), + [anon_sym_export] = ACTIONS(3417), + [anon_sym_type] = ACTIONS(3417), + [anon_sym_EQ] = ACTIONS(3417), + [anon_sym_namespace] = ACTIONS(3417), + [anon_sym_LBRACE] = ACTIONS(3419), + [anon_sym_COMMA] = ACTIONS(3419), + [anon_sym_RBRACE] = ACTIONS(3419), + [anon_sym_typeof] = ACTIONS(3417), + [anon_sym_import] = ACTIONS(3417), + [anon_sym_let] = ACTIONS(3417), + [anon_sym_BANG] = ACTIONS(3419), + [anon_sym_LPAREN] = ACTIONS(3419), + [anon_sym_RPAREN] = ACTIONS(3419), + [anon_sym_await] = ACTIONS(3417), + [anon_sym_COLON] = ACTIONS(3419), + [anon_sym_yield] = ACTIONS(3417), + [anon_sym_LBRACK] = ACTIONS(3419), + [anon_sym_RBRACK] = ACTIONS(3419), + [anon_sym_class] = ACTIONS(3417), + [anon_sym_async] = ACTIONS(3417), + [anon_sym_function] = ACTIONS(3417), + [anon_sym_EQ_GT] = ACTIONS(3419), + [anon_sym_new] = ACTIONS(3417), + [anon_sym_using] = ACTIONS(3417), + [anon_sym_AMP] = ACTIONS(3419), + [anon_sym_PIPE] = ACTIONS(3419), + [anon_sym_PLUS] = ACTIONS(3417), + [anon_sym_DASH] = ACTIONS(3417), + [anon_sym_SLASH] = ACTIONS(3417), + [anon_sym_LT] = ACTIONS(3419), + [anon_sym_GT] = ACTIONS(3419), + [anon_sym_TILDE] = ACTIONS(3419), + [anon_sym_void] = ACTIONS(3417), + [anon_sym_delete] = ACTIONS(3417), + [anon_sym_PLUS_PLUS] = ACTIONS(3419), + [anon_sym_DASH_DASH] = ACTIONS(3419), + [anon_sym_DQUOTE] = ACTIONS(3419), + [anon_sym_SQUOTE] = ACTIONS(3419), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3419), + [sym_number] = ACTIONS(3419), + [sym_private_property_identifier] = ACTIONS(3419), + [sym_this] = ACTIONS(3417), + [sym_super] = ACTIONS(3417), + [sym_true] = ACTIONS(3417), + [sym_false] = ACTIONS(3417), + [sym_null] = ACTIONS(3417), + [sym_undefined] = ACTIONS(3417), + [anon_sym_AT] = ACTIONS(3419), + [anon_sym_static] = ACTIONS(3417), + [anon_sym_readonly] = ACTIONS(3417), + [anon_sym_get] = ACTIONS(3417), + [anon_sym_set] = ACTIONS(3417), + [anon_sym_QMARK] = ACTIONS(3419), + [anon_sym_declare] = ACTIONS(3417), + [anon_sym_public] = ACTIONS(3417), + [anon_sym_private] = ACTIONS(3417), + [anon_sym_protected] = ACTIONS(3417), + [anon_sym_override] = ACTIONS(3417), + [anon_sym_module] = ACTIONS(3417), + [anon_sym_any] = ACTIONS(3417), + [anon_sym_number] = ACTIONS(3417), + [anon_sym_boolean] = ACTIONS(3417), + [anon_sym_string] = ACTIONS(3417), + [anon_sym_symbol] = ACTIONS(3417), + [anon_sym_object] = ACTIONS(3417), + [anon_sym_extends] = ACTIONS(3417), [sym_html_comment] = ACTIONS(5), }, [1167] = { - [sym_nested_identifier] = STATE(762), - [sym_string] = STATE(800), - [sym__module] = STATE(882), - [aux_sym_object_repeat1] = STATE(4823), - [aux_sym_object_pattern_repeat1] = STATE(4834), - [sym_identifier] = ACTIONS(3430), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_RBRACE] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [sym_nested_identifier] = STATE(783), + [sym_string] = STATE(798), + [sym__module] = STATE(878), + [aux_sym_object_repeat1] = STATE(4792), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(3421), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [1168] = { - [sym_nested_identifier] = STATE(213), - [sym_string] = STATE(209), - [sym__module] = STATE(220), - [aux_sym_object_repeat1] = STATE(4902), - [aux_sym_object_pattern_repeat1] = STATE(4834), - [sym_identifier] = ACTIONS(3432), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(3434), - [anon_sym_SQUOTE] = ACTIONS(3436), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [sym_nested_identifier] = STATE(201), + [sym_string] = STATE(203), + [sym__module] = STATE(231), + [aux_sym_object_repeat1] = STATE(4792), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(3411), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(3413), + [anon_sym_SQUOTE] = ACTIONS(3415), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [1169] = { - [sym_nested_identifier] = STATE(213), - [sym_string] = STATE(209), - [sym__module] = STATE(220), - [aux_sym_object_repeat1] = STATE(4902), - [aux_sym_object_pattern_repeat1] = STATE(4834), - [sym_identifier] = ACTIONS(3432), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_RBRACE] = ACTIONS(699), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(3434), - [anon_sym_SQUOTE] = ACTIONS(3436), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [sym_variable_declarator] = STATE(4416), + [sym_object_pattern] = STATE(3718), + [sym_array_pattern] = STATE(3718), + [sym__destructuring_pattern] = STATE(3718), + [aux_sym_object_repeat1] = STATE(4792), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(3405), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(3407), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(3409), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [1170] = { - [sym_variable_declarator] = STATE(4461), - [sym_object_pattern] = STATE(3675), - [sym_array_pattern] = STATE(3675), - [sym__destructuring_pattern] = STATE(3675), - [aux_sym_object_repeat1] = STATE(4902), - [aux_sym_object_pattern_repeat1] = STATE(4834), - [sym_identifier] = ACTIONS(3424), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(3426), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_RBRACE] = ACTIONS(699), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(3428), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [sym_identifier] = ACTIONS(3423), + [anon_sym_export] = ACTIONS(3423), + [anon_sym_type] = ACTIONS(3423), + [anon_sym_EQ] = ACTIONS(3423), + [anon_sym_namespace] = ACTIONS(3423), + [anon_sym_LBRACE] = ACTIONS(3425), + [anon_sym_COMMA] = ACTIONS(3425), + [anon_sym_RBRACE] = ACTIONS(3425), + [anon_sym_typeof] = ACTIONS(3423), + [anon_sym_import] = ACTIONS(3423), + [anon_sym_let] = ACTIONS(3423), + [anon_sym_BANG] = ACTIONS(3425), + [anon_sym_LPAREN] = ACTIONS(3425), + [anon_sym_RPAREN] = ACTIONS(3425), + [anon_sym_await] = ACTIONS(3423), + [anon_sym_COLON] = ACTIONS(3425), + [anon_sym_yield] = ACTIONS(3423), + [anon_sym_LBRACK] = ACTIONS(3425), + [anon_sym_RBRACK] = ACTIONS(3425), + [anon_sym_class] = ACTIONS(3423), + [anon_sym_async] = ACTIONS(3423), + [anon_sym_function] = ACTIONS(3423), + [anon_sym_EQ_GT] = ACTIONS(3425), + [anon_sym_new] = ACTIONS(3423), + [anon_sym_using] = ACTIONS(3423), + [anon_sym_AMP] = ACTIONS(3425), + [anon_sym_PIPE] = ACTIONS(3425), + [anon_sym_PLUS] = ACTIONS(3423), + [anon_sym_DASH] = ACTIONS(3423), + [anon_sym_SLASH] = ACTIONS(3423), + [anon_sym_LT] = ACTIONS(3425), + [anon_sym_GT] = ACTIONS(3425), + [anon_sym_TILDE] = ACTIONS(3425), + [anon_sym_void] = ACTIONS(3423), + [anon_sym_delete] = ACTIONS(3423), + [anon_sym_PLUS_PLUS] = ACTIONS(3425), + [anon_sym_DASH_DASH] = ACTIONS(3425), + [anon_sym_DQUOTE] = ACTIONS(3425), + [anon_sym_SQUOTE] = ACTIONS(3425), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3425), + [sym_number] = ACTIONS(3425), + [sym_private_property_identifier] = ACTIONS(3425), + [sym_this] = ACTIONS(3423), + [sym_super] = ACTIONS(3423), + [sym_true] = ACTIONS(3423), + [sym_false] = ACTIONS(3423), + [sym_null] = ACTIONS(3423), + [sym_undefined] = ACTIONS(3423), + [anon_sym_AT] = ACTIONS(3425), + [anon_sym_static] = ACTIONS(3423), + [anon_sym_readonly] = ACTIONS(3423), + [anon_sym_get] = ACTIONS(3423), + [anon_sym_set] = ACTIONS(3423), + [anon_sym_QMARK] = ACTIONS(3425), + [anon_sym_declare] = ACTIONS(3423), + [anon_sym_public] = ACTIONS(3423), + [anon_sym_private] = ACTIONS(3423), + [anon_sym_protected] = ACTIONS(3423), + [anon_sym_override] = ACTIONS(3423), + [anon_sym_module] = ACTIONS(3423), + [anon_sym_any] = ACTIONS(3423), + [anon_sym_number] = ACTIONS(3423), + [anon_sym_boolean] = ACTIONS(3423), + [anon_sym_string] = ACTIONS(3423), + [anon_sym_symbol] = ACTIONS(3423), + [anon_sym_object] = ACTIONS(3423), + [anon_sym_extends] = ACTIONS(3423), [sym_html_comment] = ACTIONS(5), }, [1171] = { - [sym_variable_declarator] = STATE(4461), - [sym_object_pattern] = STATE(3675), - [sym_array_pattern] = STATE(3675), - [sym__destructuring_pattern] = STATE(3675), - [aux_sym_object_repeat1] = STATE(4902), - [aux_sym_object_pattern_repeat1] = STATE(4834), - [sym_identifier] = ACTIONS(3424), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(3426), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(3428), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [sym_identifier] = ACTIONS(3427), + [anon_sym_export] = ACTIONS(3427), + [anon_sym_type] = ACTIONS(3427), + [anon_sym_EQ] = ACTIONS(3427), + [anon_sym_namespace] = ACTIONS(3427), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_COMMA] = ACTIONS(3429), + [anon_sym_RBRACE] = ACTIONS(3429), + [anon_sym_typeof] = ACTIONS(3427), + [anon_sym_import] = ACTIONS(3427), + [anon_sym_let] = ACTIONS(3427), + [anon_sym_BANG] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_RPAREN] = ACTIONS(3429), + [anon_sym_await] = ACTIONS(3427), + [anon_sym_COLON] = ACTIONS(3429), + [anon_sym_yield] = ACTIONS(3427), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_RBRACK] = ACTIONS(3429), + [anon_sym_class] = ACTIONS(3427), + [anon_sym_async] = ACTIONS(3427), + [anon_sym_function] = ACTIONS(3427), + [anon_sym_EQ_GT] = ACTIONS(3429), + [anon_sym_new] = ACTIONS(3427), + [anon_sym_using] = ACTIONS(3427), + [anon_sym_AMP] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3427), + [anon_sym_DASH] = ACTIONS(3427), + [anon_sym_SLASH] = ACTIONS(3427), + [anon_sym_LT] = ACTIONS(3429), + [anon_sym_GT] = ACTIONS(3429), + [anon_sym_TILDE] = ACTIONS(3429), + [anon_sym_void] = ACTIONS(3427), + [anon_sym_delete] = ACTIONS(3427), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(3429), + [anon_sym_SQUOTE] = ACTIONS(3429), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3429), + [sym_number] = ACTIONS(3429), + [sym_private_property_identifier] = ACTIONS(3429), + [sym_this] = ACTIONS(3427), + [sym_super] = ACTIONS(3427), + [sym_true] = ACTIONS(3427), + [sym_false] = ACTIONS(3427), + [sym_null] = ACTIONS(3427), + [sym_undefined] = ACTIONS(3427), + [anon_sym_AT] = ACTIONS(3429), + [anon_sym_static] = ACTIONS(3427), + [anon_sym_readonly] = ACTIONS(3427), + [anon_sym_get] = ACTIONS(3427), + [anon_sym_set] = ACTIONS(3427), + [anon_sym_QMARK] = ACTIONS(3429), + [anon_sym_declare] = ACTIONS(3427), + [anon_sym_public] = ACTIONS(3427), + [anon_sym_private] = ACTIONS(3427), + [anon_sym_protected] = ACTIONS(3427), + [anon_sym_override] = ACTIONS(3427), + [anon_sym_module] = ACTIONS(3427), + [anon_sym_any] = ACTIONS(3427), + [anon_sym_number] = ACTIONS(3427), + [anon_sym_boolean] = ACTIONS(3427), + [anon_sym_string] = ACTIONS(3427), + [anon_sym_symbol] = ACTIONS(3427), + [anon_sym_object] = ACTIONS(3427), + [anon_sym_extends] = ACTIONS(3427), [sym_html_comment] = ACTIONS(5), }, [1172] = { - [sym_nested_identifier] = STATE(213), - [sym_string] = STATE(209), - [sym__module] = STATE(220), - [aux_sym_object_repeat1] = STATE(4823), - [aux_sym_object_pattern_repeat1] = STATE(4834), - [sym_identifier] = ACTIONS(3432), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_RBRACE] = ACTIONS(672), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(3434), - [anon_sym_SQUOTE] = ACTIONS(3436), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [sym_nested_identifier] = STATE(783), + [sym_string] = STATE(798), + [sym__module] = STATE(878), + [aux_sym_object_repeat1] = STATE(4792), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(3421), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [1173] = { - [sym_nested_identifier] = STATE(762), - [sym_string] = STATE(800), - [sym__module] = STATE(882), - [aux_sym_object_repeat1] = STATE(4902), - [aux_sym_object_pattern_repeat1] = STATE(4834), - [sym_identifier] = ACTIONS(3430), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [sym_nested_identifier] = STATE(783), + [sym_string] = STATE(798), + [sym__module] = STATE(878), + [aux_sym_object_repeat1] = STATE(4810), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(3421), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(692), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [1174] = { - [sym_nested_identifier] = STATE(762), - [sym_string] = STATE(800), - [sym__module] = STATE(882), - [aux_sym_object_repeat1] = STATE(4902), - [aux_sym_object_pattern_repeat1] = STATE(4834), - [sym_identifier] = ACTIONS(3430), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_RBRACE] = ACTIONS(699), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [sym_nested_identifier] = STATE(201), + [sym_string] = STATE(203), + [sym__module] = STATE(231), + [aux_sym_object_repeat1] = STATE(4810), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(3411), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(692), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2158), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(3413), + [anon_sym_SQUOTE] = ACTIONS(3415), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [1175] = { - [sym_nested_identifier] = STATE(1610), - [sym_string] = STATE(1612), - [sym__module] = STATE(1713), - [sym_identifier] = ACTIONS(3438), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(833), - [anon_sym_RBRACE] = ACTIONS(833), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(833), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(833), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_RBRACK] = ACTIONS(833), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(155), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_QMARK] = ACTIONS(835), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_nested_identifier] = STATE(1616), + [sym_string] = STATE(1617), + [sym__module] = STATE(1711), + [sym_identifier] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(826), + [anon_sym_RBRACE] = ACTIONS(826), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(154), + [anon_sym_RPAREN] = ACTIONS(826), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_RBRACK] = ACTIONS(826), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_QMARK] = ACTIONS(828), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [1176] = { - [sym_nested_identifier] = STATE(1610), - [sym_string] = STATE(1612), - [sym__module] = STATE(1713), - [sym_identifier] = ACTIONS(3438), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(119), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_RBRACE] = ACTIONS(128), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_RBRACK] = ACTIONS(128), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(155), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_nested_identifier] = STATE(1616), + [sym_string] = STATE(1617), + [sym__module] = STATE(1711), + [sym_identifier] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(220), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_RBRACE] = ACTIONS(223), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(154), + [anon_sym_RPAREN] = ACTIONS(223), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(223), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_RBRACK] = ACTIONS(223), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [1177] = { - [sym_export_statement] = STATE(3768), - [sym_object_pattern] = STATE(5589), - [sym_object_assignment_pattern] = STATE(5249), - [sym_array_pattern] = STATE(5589), - [sym__call_signature] = STATE(4078), - [sym__destructuring_pattern] = STATE(5589), - [sym_spread_element] = STATE(5253), - [sym_string] = STATE(3142), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3317), - [sym_rest_pattern] = STATE(5249), - [sym_method_definition] = STATE(5253), - [sym_pair] = STATE(5253), - [sym_pair_pattern] = STATE(5249), - [sym__property_name] = STATE(3142), - [sym_computed_property_name] = STATE(3142), - [sym_method_signature] = STATE(3768), - [sym_accessibility_modifier] = STATE(2776), - [sym_override_modifier] = STATE(2799), - [sym_call_signature] = STATE(3768), - [sym_property_signature] = STATE(3768), - [sym_type_parameters] = STATE(5224), - [sym_construct_signature] = STATE(3768), - [sym_index_signature] = STATE(3768), - [aux_sym_export_statement_repeat1] = STATE(4391), - [sym_identifier] = ACTIONS(3440), - [anon_sym_export] = ACTIONS(3442), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_type] = ACTIONS(3440), - [anon_sym_namespace] = ACTIONS(3440), - [anon_sym_LBRACE] = ACTIONS(3282), - [anon_sym_COMMA] = ACTIONS(3444), - [anon_sym_RBRACE] = ACTIONS(3444), - [anon_sym_let] = ACTIONS(3440), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_async] = ACTIONS(3447), - [anon_sym_new] = ACTIONS(3449), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(3298), - [anon_sym_DASH] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_DQUOTE] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3300), - [sym_private_property_identifier] = ACTIONS(3300), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3451), - [anon_sym_readonly] = ACTIONS(3453), - [anon_sym_get] = ACTIONS(3455), - [anon_sym_set] = ACTIONS(3455), - [anon_sym_declare] = ACTIONS(3440), - [anon_sym_public] = ACTIONS(3457), - [anon_sym_private] = ACTIONS(3457), - [anon_sym_protected] = ACTIONS(3457), - [anon_sym_override] = ACTIONS(3459), - [anon_sym_module] = ACTIONS(3440), - [anon_sym_any] = ACTIONS(3440), - [anon_sym_number] = ACTIONS(3440), - [anon_sym_boolean] = ACTIONS(3440), - [anon_sym_string] = ACTIONS(3440), - [anon_sym_symbol] = ACTIONS(3440), - [anon_sym_object] = ACTIONS(3440), - [anon_sym_abstract] = ACTIONS(3312), + [sym_nested_identifier] = STATE(1616), + [sym_string] = STATE(1617), + [sym__module] = STATE(1711), + [sym_identifier] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(834), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(154), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(154), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_RBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(844), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [1178] = { - [sym_nested_identifier] = STATE(1610), - [sym_string] = STATE(1612), - [sym__module] = STATE(1713), - [sym_identifier] = ACTIONS(3438), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(841), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_RBRACE] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_RBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_nested_identifier] = STATE(1616), + [sym_string] = STATE(1617), + [sym__module] = STATE(1711), + [sym_identifier] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(154), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(154), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_RBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(844), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [1179] = { - [sym_export_statement] = STATE(3757), - [sym_object_pattern] = STATE(5589), - [sym_object_assignment_pattern] = STATE(5249), - [sym_array_pattern] = STATE(5589), - [sym__call_signature] = STATE(4078), - [sym__destructuring_pattern] = STATE(5589), - [sym_spread_element] = STATE(5253), - [sym_string] = STATE(3142), - [sym_decorator] = STATE(1285), - [sym_formal_parameters] = STATE(3317), - [sym_rest_pattern] = STATE(5249), - [sym_method_definition] = STATE(5253), - [sym_pair] = STATE(5253), - [sym_pair_pattern] = STATE(5249), - [sym__property_name] = STATE(3142), - [sym_computed_property_name] = STATE(3142), - [sym_method_signature] = STATE(3757), - [sym_accessibility_modifier] = STATE(2776), - [sym_override_modifier] = STATE(2799), - [sym_call_signature] = STATE(3757), - [sym_property_signature] = STATE(3757), - [sym_type_parameters] = STATE(5224), - [sym_construct_signature] = STATE(3757), - [sym_index_signature] = STATE(3757), - [aux_sym_export_statement_repeat1] = STATE(4391), - [sym_identifier] = ACTIONS(3440), - [anon_sym_export] = ACTIONS(3442), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_type] = ACTIONS(3440), - [anon_sym_namespace] = ACTIONS(3440), - [anon_sym_LBRACE] = ACTIONS(3282), - [anon_sym_COMMA] = ACTIONS(3444), - [anon_sym_RBRACE] = ACTIONS(3444), - [anon_sym_let] = ACTIONS(3440), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_async] = ACTIONS(3447), - [anon_sym_new] = ACTIONS(3449), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(3298), - [anon_sym_DASH] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_DQUOTE] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3300), - [sym_private_property_identifier] = ACTIONS(3300), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3451), - [anon_sym_readonly] = ACTIONS(3453), - [anon_sym_get] = ACTIONS(3455), - [anon_sym_set] = ACTIONS(3455), - [anon_sym_declare] = ACTIONS(3440), - [anon_sym_public] = ACTIONS(3457), - [anon_sym_private] = ACTIONS(3457), - [anon_sym_protected] = ACTIONS(3457), - [anon_sym_override] = ACTIONS(3459), - [anon_sym_module] = ACTIONS(3440), - [anon_sym_any] = ACTIONS(3440), - [anon_sym_number] = ACTIONS(3440), - [anon_sym_boolean] = ACTIONS(3440), - [anon_sym_string] = ACTIONS(3440), - [anon_sym_symbol] = ACTIONS(3440), - [anon_sym_object] = ACTIONS(3440), - [anon_sym_abstract] = ACTIONS(3312), + [sym_export_statement] = STATE(3814), + [sym_object_pattern] = STATE(5536), + [sym_object_assignment_pattern] = STATE(5225), + [sym_array_pattern] = STATE(5536), + [sym__call_signature] = STATE(3910), + [sym__destructuring_pattern] = STATE(5536), + [sym_spread_element] = STATE(5230), + [sym_string] = STATE(3085), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3315), + [sym_rest_pattern] = STATE(5225), + [sym_method_definition] = STATE(5230), + [sym_pair] = STATE(5230), + [sym_pair_pattern] = STATE(5225), + [sym__property_name] = STATE(3085), + [sym_computed_property_name] = STATE(3085), + [sym_method_signature] = STATE(3814), + [sym_accessibility_modifier] = STATE(2771), + [sym_override_modifier] = STATE(2792), + [sym_call_signature] = STATE(3814), + [sym_property_signature] = STATE(3814), + [sym_type_parameters] = STATE(5233), + [sym_construct_signature] = STATE(3814), + [sym_index_signature] = STATE(3814), + [aux_sym_export_statement_repeat1] = STATE(4481), + [sym_identifier] = ACTIONS(3433), + [anon_sym_export] = ACTIONS(3435), + [anon_sym_STAR] = ACTIONS(3273), + [anon_sym_type] = ACTIONS(3433), + [anon_sym_namespace] = ACTIONS(3433), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_COMMA] = ACTIONS(3437), + [anon_sym_RBRACE] = ACTIONS(3437), + [anon_sym_let] = ACTIONS(3433), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_async] = ACTIONS(3440), + [anon_sym_new] = ACTIONS(3442), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3291), + [anon_sym_DASH] = ACTIONS(3291), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3293), + [sym_private_property_identifier] = ACTIONS(3293), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3444), + [anon_sym_readonly] = ACTIONS(3446), + [anon_sym_get] = ACTIONS(3448), + [anon_sym_set] = ACTIONS(3448), + [anon_sym_declare] = ACTIONS(3433), + [anon_sym_public] = ACTIONS(3450), + [anon_sym_private] = ACTIONS(3450), + [anon_sym_protected] = ACTIONS(3450), + [anon_sym_override] = ACTIONS(3452), + [anon_sym_module] = ACTIONS(3433), + [anon_sym_any] = ACTIONS(3433), + [anon_sym_number] = ACTIONS(3433), + [anon_sym_boolean] = ACTIONS(3433), + [anon_sym_string] = ACTIONS(3433), + [anon_sym_symbol] = ACTIONS(3433), + [anon_sym_object] = ACTIONS(3433), + [anon_sym_abstract] = ACTIONS(3305), [sym_html_comment] = ACTIONS(5), }, [1180] = { - [sym_nested_identifier] = STATE(1610), - [sym_string] = STATE(1612), - [sym__module] = STATE(1713), - [sym_identifier] = ACTIONS(3438), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_RBRACE] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_RBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_export_statement] = STATE(3790), + [sym_object_pattern] = STATE(5536), + [sym_object_assignment_pattern] = STATE(5225), + [sym_array_pattern] = STATE(5536), + [sym__call_signature] = STATE(3910), + [sym__destructuring_pattern] = STATE(5536), + [sym_spread_element] = STATE(5230), + [sym_string] = STATE(3085), + [sym_decorator] = STATE(1344), + [sym_formal_parameters] = STATE(3315), + [sym_rest_pattern] = STATE(5225), + [sym_method_definition] = STATE(5230), + [sym_pair] = STATE(5230), + [sym_pair_pattern] = STATE(5225), + [sym__property_name] = STATE(3085), + [sym_computed_property_name] = STATE(3085), + [sym_method_signature] = STATE(3790), + [sym_accessibility_modifier] = STATE(2771), + [sym_override_modifier] = STATE(2792), + [sym_call_signature] = STATE(3790), + [sym_property_signature] = STATE(3790), + [sym_type_parameters] = STATE(5233), + [sym_construct_signature] = STATE(3790), + [sym_index_signature] = STATE(3790), + [aux_sym_export_statement_repeat1] = STATE(4481), + [sym_identifier] = ACTIONS(3433), + [anon_sym_export] = ACTIONS(3435), + [anon_sym_STAR] = ACTIONS(3273), + [anon_sym_type] = ACTIONS(3433), + [anon_sym_namespace] = ACTIONS(3433), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_COMMA] = ACTIONS(3437), + [anon_sym_RBRACE] = ACTIONS(3437), + [anon_sym_let] = ACTIONS(3433), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_async] = ACTIONS(3440), + [anon_sym_new] = ACTIONS(3442), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3291), + [anon_sym_DASH] = ACTIONS(3291), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3293), + [sym_private_property_identifier] = ACTIONS(3293), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3444), + [anon_sym_readonly] = ACTIONS(3446), + [anon_sym_get] = ACTIONS(3448), + [anon_sym_set] = ACTIONS(3448), + [anon_sym_declare] = ACTIONS(3433), + [anon_sym_public] = ACTIONS(3450), + [anon_sym_private] = ACTIONS(3450), + [anon_sym_protected] = ACTIONS(3450), + [anon_sym_override] = ACTIONS(3452), + [anon_sym_module] = ACTIONS(3433), + [anon_sym_any] = ACTIONS(3433), + [anon_sym_number] = ACTIONS(3433), + [anon_sym_boolean] = ACTIONS(3433), + [anon_sym_string] = ACTIONS(3433), + [anon_sym_symbol] = ACTIONS(3433), + [anon_sym_object] = ACTIONS(3433), + [anon_sym_abstract] = ACTIONS(3305), [sym_html_comment] = ACTIONS(5), }, [1181] = { - [sym_nested_identifier] = STATE(1610), - [sym_string] = STATE(1612), - [sym__module] = STATE(1713), - [sym_identifier] = ACTIONS(3438), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(881), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [sym_nested_identifier] = STATE(1616), + [sym_string] = STATE(1617), + [sym__module] = STATE(1711), + [sym_identifier] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(154), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [1182] = { - [sym_nested_identifier] = STATE(1610), - [sym_string] = STATE(1612), - [sym__module] = STATE(1713), - [sym_identifier] = ACTIONS(3438), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(841), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(892), - [anon_sym_RBRACE] = ACTIONS(892), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(833), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_RBRACK] = ACTIONS(892), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym_variable_declarator] = STATE(4416), + [sym_object_pattern] = STATE(3718), + [sym_array_pattern] = STATE(3718), + [sym__destructuring_pattern] = STATE(3718), + [sym_identifier] = ACTIONS(3405), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(858), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(3407), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(3409), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [1183] = { - [sym_nested_identifier] = STATE(1609), - [sym_string] = STATE(1617), - [sym__module] = STATE(1770), - [sym_identifier] = ACTIONS(3461), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(855), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(857), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [sym_nested_identifier] = STATE(783), + [sym_string] = STATE(798), + [sym__module] = STATE(878), + [sym_identifier] = ACTIONS(3421), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(858), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [1184] = { - [sym_nested_identifier] = STATE(213), - [sym_string] = STATE(209), - [sym__module] = STATE(220), - [sym_identifier] = ACTIONS(3432), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(855), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(869), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(3434), - [anon_sym_SQUOTE] = ACTIONS(3436), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [sym_nested_identifier] = STATE(1608), + [sym_string] = STATE(1612), + [sym__module] = STATE(1771), + [sym_identifier] = ACTIONS(3454), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(858), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [1185] = { - [sym_nested_identifier] = STATE(762), - [sym_string] = STATE(800), - [sym__module] = STATE(882), - [sym_identifier] = ACTIONS(3430), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(855), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(869), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [sym_nested_identifier] = STATE(1616), + [sym_string] = STATE(1617), + [sym__module] = STATE(1711), + [sym_identifier] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(834), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(899), + [anon_sym_RBRACE] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_RBRACK] = ACTIONS(899), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(844), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [1186] = { - [sym_variable_declarator] = STATE(4461), - [sym_object_pattern] = STATE(3675), - [sym_array_pattern] = STATE(3675), - [sym__destructuring_pattern] = STATE(3675), - [sym_identifier] = ACTIONS(3424), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(855), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(3426), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(869), - [anon_sym_LBRACK] = ACTIONS(3428), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [sym_nested_identifier] = STATE(1616), + [sym_string] = STATE(1617), + [sym__module] = STATE(1711), + [sym_identifier] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(154), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(152), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [1187] = { - [sym_variable_declarator] = STATE(4461), - [sym_object_pattern] = STATE(3675), - [sym_array_pattern] = STATE(3675), - [sym__destructuring_pattern] = STATE(3675), - [sym_identifier] = ACTIONS(3424), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(855), - [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(3426), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(857), - [anon_sym_LBRACK] = ACTIONS(3428), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [sym_nested_identifier] = STATE(1608), + [sym_string] = STATE(1612), + [sym__module] = STATE(1771), + [sym_identifier] = ACTIONS(3454), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(872), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [1188] = { - [sym_nested_identifier] = STATE(1609), + [sym_nested_identifier] = STATE(1616), [sym_string] = STATE(1617), - [sym__module] = STATE(1770), - [sym_identifier] = ACTIONS(3461), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(855), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_RBRACE] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [sym__module] = STATE(1711), + [sym_identifier] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(824), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(872), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(186), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [1189] = { - [sym_nested_identifier] = STATE(1610), + [sym_nested_identifier] = STATE(1608), [sym_string] = STATE(1612), - [sym__module] = STATE(1713), - [sym_identifier] = ACTIONS(3438), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(221), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(224), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(224), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(224), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(227), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(157), + [sym__module] = STATE(1771), + [sym_identifier] = ACTIONS(3454), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(858), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_RBRACE] = ACTIONS(154), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(83), + [anon_sym_SQUOTE] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [1190] = { - [sym_nested_identifier] = STATE(762), - [sym_string] = STATE(800), - [sym__module] = STATE(882), - [sym_identifier] = ACTIONS(3430), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(855), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(857), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [sym_nested_identifier] = STATE(201), + [sym_string] = STATE(203), + [sym__module] = STATE(231), + [sym_identifier] = ACTIONS(3411), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(858), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(860), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(3413), + [anon_sym_SQUOTE] = ACTIONS(3415), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [1191] = { - [sym_nested_identifier] = STATE(1610), - [sym_string] = STATE(1612), - [sym__module] = STATE(1713), - [sym_identifier] = ACTIONS(3438), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_RBRACE] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(185), - [anon_sym_SQUOTE] = ACTIONS(187), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [sym_nested_identifier] = STATE(783), + [sym_string] = STATE(798), + [sym__module] = STATE(878), + [sym_identifier] = ACTIONS(3421), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(858), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(860), + [anon_sym_LBRACK] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, [1192] = { - [sym_nested_identifier] = STATE(1609), - [sym_string] = STATE(1617), - [sym__module] = STATE(1770), - [sym_identifier] = ACTIONS(3461), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(875), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(881), - [anon_sym_QMARK_DOT] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(163), - [anon_sym_DASH_EQ] = ACTIONS(163), - [anon_sym_STAR_EQ] = ACTIONS(163), - [anon_sym_SLASH_EQ] = ACTIONS(163), - [anon_sym_PERCENT_EQ] = ACTIONS(163), - [anon_sym_CARET_EQ] = ACTIONS(163), - [anon_sym_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_EQ] = ACTIONS(163), - [anon_sym_GT_GT_EQ] = ACTIONS(163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), - [anon_sym_LT_LT_EQ] = ACTIONS(163), - [anon_sym_STAR_STAR_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP_EQ] = ACTIONS(163), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(157), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(157), - [anon_sym_DASH_DASH] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(85), - [anon_sym_SQUOTE] = ACTIONS(87), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(157), - [sym__ternary_qmark] = ACTIONS(157), + [sym_variable_declarator] = STATE(4416), + [sym_object_pattern] = STATE(3718), + [sym_array_pattern] = STATE(3718), + [sym__destructuring_pattern] = STATE(3718), + [sym_identifier] = ACTIONS(3405), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(858), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(3407), + [anon_sym_COMMA] = ACTIONS(154), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(860), + [anon_sym_LBRACK] = ACTIONS(3409), + [anon_sym_DOT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(682), + [anon_sym_QMARK_DOT] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(154), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(154), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(154), + [anon_sym_GT_EQ] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(154), + [anon_sym_DASH_DASH] = ACTIONS(154), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(154), + [sym__ternary_qmark] = ACTIONS(154), [sym_html_comment] = ACTIONS(5), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 13, - ACTIONS(185), 1, - anon_sym_DQUOTE, - ACTIONS(187), 1, - anon_sym_SQUOTE, - ACTIONS(851), 1, - anon_sym_EQ_GT, - ACTIONS(887), 1, + [0] = 14, + ACTIONS(661), 1, anon_sym_EQ, - ACTIONS(3438), 1, + ACTIONS(671), 1, + anon_sym_COLON, + ACTIONS(682), 1, + anon_sym_EQ_GT, + ACTIONS(690), 1, + anon_sym_QMARK, + ACTIONS(694), 1, + anon_sym_RBRACE, + ACTIONS(2149), 1, + anon_sym_LPAREN, + ACTIONS(2158), 1, + anon_sym_LT, + ACTIONS(3456), 1, sym_identifier, - STATE(1610), 1, - sym_nested_identifier, - STATE(1612), 1, - sym_string, - STATE(1713), 1, - sym__module, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(224), 3, + ACTIONS(154), 14, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(160), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(120), 23, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [93] = 14, + ACTIONS(661), 1, + anon_sym_EQ, + ACTIONS(667), 1, anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(157), 12, - sym__ternary_qmark, + ACTIONS(671), 1, + anon_sym_COLON, + ACTIONS(682), 1, + anon_sym_EQ_GT, + ACTIONS(690), 1, + anon_sym_QMARK, + ACTIONS(2149), 1, anon_sym_LPAREN, + ACTIONS(2158), 1, + anon_sym_LT, + ACTIONS(3456), 1, + sym_identifier, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(154), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -139943,7 +138206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(163), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139959,7 +138222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(120), 23, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -139977,42 +138240,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [91] = 14, - ACTIONS(185), 1, + [186] = 15, + ACTIONS(126), 1, + anon_sym_RBRACK, + ACTIONS(184), 1, anon_sym_DQUOTE, - ACTIONS(187), 1, + ACTIONS(186), 1, anon_sym_SQUOTE, - ACTIONS(841), 1, + ACTIONS(223), 1, + anon_sym_COMMA, + ACTIONS(886), 1, anon_sym_EQ, - ACTIONS(851), 1, - anon_sym_EQ_GT, + ACTIONS(891), 1, + anon_sym_COLON, ACTIONS(895), 1, - anon_sym_in, - ACTIONS(898), 1, - anon_sym_of, - ACTIONS(3438), 1, + anon_sym_EQ_GT, + ACTIONS(3431), 1, sym_identifier, - STATE(1610), 1, + STATE(1616), 1, sym_nested_identifier, - STATE(1612), 1, + STATE(1617), 1, sym_string, - STATE(1713), 1, + STATE(1711), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(157), 14, + ACTIONS(154), 12, sym__ternary_qmark, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -140023,7 +138285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(163), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140039,10 +138301,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 23, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, + anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -140063,35 +138326,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [184] = 13, - ACTIONS(841), 1, + [281] = 14, + ACTIONS(661), 1, anon_sym_EQ, - ACTIONS(851), 1, + ACTIONS(671), 1, + anon_sym_COLON, + ACTIONS(682), 1, anon_sym_EQ_GT, - ACTIONS(895), 1, - anon_sym_in, - ACTIONS(898), 1, - anon_sym_of, - ACTIONS(3426), 1, - anon_sym_LBRACE, - ACTIONS(3428), 1, - anon_sym_LBRACK, - ACTIONS(3463), 1, + ACTIONS(690), 1, + anon_sym_QMARK, + ACTIONS(692), 1, + anon_sym_RBRACE, + ACTIONS(2149), 1, + anon_sym_LPAREN, + ACTIONS(2158), 1, + anon_sym_LT, + ACTIONS(3456), 1, sym_identifier, - STATE(4461), 1, - sym_variable_declarator, + STATE(4810), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3443), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(157), 13, + ACTIONS(154), 14, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -140101,7 +138365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(163), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140117,10 +138381,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 23, + ACTIONS(120), 23, anon_sym_STAR, anon_sym_as, anon_sym_BANG, + anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -140134,18 +138399,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [275] = 3, + [374] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3465), 23, + ACTIONS(3458), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -140169,7 +138433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3467), 39, + ACTIONS(3460), 39, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -140209,11 +138473,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [346] = 3, + [445] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3469), 23, + ACTIONS(3462), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -140237,7 +138501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3471), 39, + ACTIONS(3464), 39, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -140277,42 +138541,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [417] = 12, - ACTIONS(185), 1, - anon_sym_DQUOTE, - ACTIONS(187), 1, - anon_sym_SQUOTE, - ACTIONS(939), 1, - anon_sym_EQ, - ACTIONS(945), 1, - anon_sym_EQ_GT, - ACTIONS(3438), 1, - sym_identifier, - STATE(1610), 1, - sym_nested_identifier, - STATE(1612), 1, - sym_string, - STATE(1713), 1, - sym__module, + [516] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(157), 14, + ACTIONS(3466), 23, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + ACTIONS(3468), 39, sym__ternary_qmark, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140328,9 +138599,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 25, + 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_satisfies, + anon_sym_implements, + [587] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3470), 23, anon_sym_STAR, - anon_sym_as, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -140351,37 +138636,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, + anon_sym_QMARK, + ACTIONS(3472), 39, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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_satisfies, anon_sym_implements, - [506] = 15, - ACTIONS(128), 1, - anon_sym_COMMA, - ACTIONS(185), 1, + [658] = 12, + ACTIONS(184), 1, anon_sym_DQUOTE, - ACTIONS(187), 1, + ACTIONS(186), 1, anon_sym_SQUOTE, - ACTIONS(224), 1, - anon_sym_RBRACK, - ACTIONS(904), 1, + ACTIONS(932), 1, anon_sym_EQ, - ACTIONS(909), 1, - anon_sym_COLON, - ACTIONS(913), 1, + ACTIONS(938), 1, anon_sym_EQ_GT, - ACTIONS(3438), 1, + ACTIONS(3431), 1, sym_identifier, - STATE(1610), 1, + STATE(1616), 1, sym_nested_identifier, - STATE(1612), 1, + STATE(1617), 1, sym_string, - STATE(1713), 1, + STATE(1711), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(157), 12, + ACTIONS(154), 14, sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -140393,7 +138712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(163), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140409,7 +138728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(120), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -140434,11 +138753,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [601] = 3, + anon_sym_implements, + [747] = 4, + ACTIONS(3474), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3473), 23, + ACTIONS(3458), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -140462,7 +138784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3475), 39, + ACTIONS(3460), 38, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -140471,7 +138793,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -140502,31 +138823,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [672] = 12, - ACTIONS(185), 1, + [820] = 14, + ACTIONS(184), 1, anon_sym_DQUOTE, - ACTIONS(187), 1, + ACTIONS(186), 1, anon_sym_SQUOTE, - ACTIONS(831), 1, + ACTIONS(834), 1, anon_sym_EQ, - ACTIONS(945), 1, + ACTIONS(844), 1, anon_sym_EQ_GT, - ACTIONS(3438), 1, + ACTIONS(902), 1, + anon_sym_in, + ACTIONS(905), 1, + anon_sym_of, + ACTIONS(3431), 1, sym_identifier, - STATE(1610), 1, + STATE(1616), 1, sym_nested_identifier, - STATE(1612), 1, + STATE(1617), 1, sym_string, - STATE(1713), 1, + STATE(1711), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(157), 14, + ACTIONS(154), 14, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -140537,7 +138862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(163), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140553,11 +138878,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 25, + ACTIONS(120), 23, anon_sym_STAR, anon_sym_as, anon_sym_BANG, - anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -140578,37 +138902,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - anon_sym_implements, - [761] = 14, - ACTIONS(666), 1, + [913] = 13, + ACTIONS(834), 1, anon_sym_EQ, - ACTIONS(676), 1, - anon_sym_COLON, - ACTIONS(687), 1, + ACTIONS(844), 1, anon_sym_EQ_GT, - ACTIONS(695), 1, - anon_sym_QMARK, - ACTIONS(697), 1, - anon_sym_RBRACE, - ACTIONS(2302), 1, - anon_sym_LPAREN, - ACTIONS(2311), 1, - anon_sym_LT, - ACTIONS(3477), 1, + ACTIONS(902), 1, + anon_sym_in, + ACTIONS(905), 1, + anon_sym_of, + ACTIONS(3407), 1, + anon_sym_LBRACE, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(3476), 1, sym_identifier, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, - aux_sym_object_repeat1, + STATE(4416), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(157), 14, - sym__automatic_semicolon, + STATE(3387), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(154), 13, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -140618,7 +138940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(163), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140634,11 +138956,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 23, + ACTIONS(120), 23, anon_sym_STAR, anon_sym_as, anon_sym_BANG, - anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -140652,17 +138973,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [854] = 3, + [1004] = 4, + ACTIONS(3478), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3479), 23, + ACTIONS(3462), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -140686,7 +139010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3481), 39, + ACTIONS(3464), 38, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -140695,7 +139019,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -140726,11 +139049,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [925] = 3, + [1077] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3483), 23, + ACTIONS(3480), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -140754,7 +139077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3485), 39, + ACTIONS(3482), 39, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -140794,11 +139117,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [996] = 3, + [1148] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3487), 23, + ACTIONS(3484), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -140822,7 +139145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3489), 39, + ACTIONS(3486), 39, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -140862,27 +139185,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [1067] = 12, - ACTIONS(185), 1, + [1219] = 12, + ACTIONS(152), 1, + anon_sym_EQ_GT, + ACTIONS(184), 1, anon_sym_DQUOTE, - ACTIONS(187), 1, + ACTIONS(186), 1, anon_sym_SQUOTE, - ACTIONS(227), 1, - anon_sym_EQ_GT, - ACTIONS(890), 1, + ACTIONS(880), 1, anon_sym_EQ, - ACTIONS(3438), 1, + ACTIONS(3431), 1, sym_identifier, - STATE(1610), 1, + STATE(1616), 1, sym_nested_identifier, - STATE(1612), 1, + STATE(1617), 1, sym_string, - STATE(1713), 1, + STATE(1711), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(157), 15, + ACTIONS(154), 15, sym__ternary_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -140898,7 +139221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(163), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140914,7 +139237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -140939,114 +139262,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [1156] = 14, - ACTIONS(666), 1, + [1308] = 12, + ACTIONS(184), 1, + anon_sym_DQUOTE, + ACTIONS(186), 1, + anon_sym_SQUOTE, + ACTIONS(824), 1, anon_sym_EQ, - ACTIONS(672), 1, - anon_sym_RBRACE, - ACTIONS(676), 1, - anon_sym_COLON, - ACTIONS(687), 1, + ACTIONS(938), 1, anon_sym_EQ_GT, - ACTIONS(695), 1, - anon_sym_QMARK, - ACTIONS(2302), 1, - anon_sym_LPAREN, - ACTIONS(2311), 1, - anon_sym_LT, - ACTIONS(3477), 1, + ACTIONS(3431), 1, sym_identifier, - STATE(4823), 1, - aux_sym_object_repeat1, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, + STATE(1616), 1, + sym_nested_identifier, + STATE(1617), 1, + sym_string, + STATE(1711), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(157), 14, - sym__automatic_semicolon, + ACTIONS(154), 14, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(163), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(122), 23, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [1249] = 14, - ACTIONS(666), 1, - anon_sym_EQ, - ACTIONS(676), 1, - anon_sym_COLON, - ACTIONS(687), 1, - anon_sym_EQ_GT, - ACTIONS(695), 1, - anon_sym_QMARK, - ACTIONS(699), 1, - anon_sym_RBRACE, - ACTIONS(2302), 1, anon_sym_LPAREN, - ACTIONS(2311), 1, - anon_sym_LT, - ACTIONS(3477), 1, - sym_identifier, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(157), 14, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -141057,7 +139297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(163), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141073,7 +139313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 23, + ACTIONS(120), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -141091,21 +139331,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [1342] = 4, - ACTIONS(3491), 1, - anon_sym_extends, + anon_sym_implements, + [1397] = 13, + ACTIONS(184), 1, + anon_sym_DQUOTE, + ACTIONS(186), 1, + anon_sym_SQUOTE, + ACTIONS(844), 1, + anon_sym_EQ_GT, + ACTIONS(907), 1, + anon_sym_EQ, + ACTIONS(3431), 1, + sym_identifier, + STATE(1616), 1, + sym_nested_identifier, + STATE(1617), 1, + sym_string, + STATE(1711), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3473), 23, + ACTIONS(126), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(154), 12, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(160), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(120), 24, anon_sym_STAR, - anon_sym_EQ, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -141126,21 +139415,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - anon_sym_QMARK, - ACTIONS(3475), 38, + anon_sym_instanceof, + anon_sym_satisfies, + [1488] = 12, + ACTIONS(152), 1, + anon_sym_EQ_GT, + ACTIONS(184), 1, + anon_sym_DQUOTE, + ACTIONS(186), 1, + anon_sym_SQUOTE, + ACTIONS(824), 1, + anon_sym_EQ, + ACTIONS(3431), 1, + sym_identifier, + STATE(1616), 1, + sym_nested_identifier, + STATE(1617), 1, + sym_string, + STATE(1711), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(154), 15, sym__ternary_qmark, - 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_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(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141156,23 +139469,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(120), 24, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [1415] = 4, - ACTIONS(3493), 1, - anon_sym_extends, + [1577] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3469), 23, + ACTIONS(3488), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -141196,7 +139522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3471), 38, + ACTIONS(3490), 39, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -141205,6 +139531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -141235,13 +139562,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [1488] = 3, + [1648] = 5, + ACTIONS(3494), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3495), 23, + ACTIONS(3498), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(3492), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -141262,8 +139606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - anon_sym_QMARK, - ACTIONS(3497), 39, + ACTIONS(3496), 24, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -141278,21 +139621,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -141303,33 +139631,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [1559] = 12, - ACTIONS(185), 1, + [1722] = 13, + ACTIONS(184), 1, anon_sym_DQUOTE, - ACTIONS(187), 1, + ACTIONS(186), 1, anon_sym_SQUOTE, - ACTIONS(227), 1, + ACTIONS(891), 1, + anon_sym_COLON, + ACTIONS(895), 1, anon_sym_EQ_GT, - ACTIONS(831), 1, + ACTIONS(910), 1, anon_sym_EQ, - ACTIONS(3438), 1, + ACTIONS(3431), 1, sym_identifier, - STATE(1610), 1, + STATE(1616), 1, sym_nested_identifier, - STATE(1612), 1, + STATE(1617), 1, sym_string, - STATE(1713), 1, + STATE(1711), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(157), 15, + ACTIONS(154), 13, sym__ternary_qmark, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -141339,7 +139667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(163), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141355,7 +139683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -141380,29 +139708,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [1648] = 13, - ACTIONS(676), 1, + [1812] = 13, + ACTIONS(661), 1, + anon_sym_EQ, + ACTIONS(671), 1, anon_sym_COLON, - ACTIONS(695), 1, + ACTIONS(682), 1, + anon_sym_EQ_GT, + ACTIONS(690), 1, anon_sym_QMARK, - ACTIONS(699), 1, + ACTIONS(694), 1, anon_sym_RBRACE, - ACTIONS(3501), 1, - anon_sym_EQ, - ACTIONS(3505), 1, + ACTIONS(2149), 1, anon_sym_LPAREN, - ACTIONS(3508), 1, - anon_sym_EQ_GT, - ACTIONS(3512), 1, + ACTIONS(2158), 1, anon_sym_LT, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, + STATE(4792), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3510), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141418,7 +139746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 17, + ACTIONS(154), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -141436,7 +139764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 20, + ACTIONS(120), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141457,50 +139785,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [1738] = 14, - ACTIONS(3515), 1, + [1902] = 13, + ACTIONS(671), 1, + anon_sym_COLON, + ACTIONS(690), 1, + anon_sym_QMARK, + ACTIONS(692), 1, + anon_sym_RBRACE, + ACTIONS(3500), 1, anon_sym_EQ, - ACTIONS(3519), 1, + ACTIONS(3502), 1, anon_sym_LPAREN, - ACTIONS(3521), 1, - anon_sym_DOT, - ACTIONS(3523), 1, + ACTIONS(3505), 1, anon_sym_EQ_GT, - ACTIONS(3525), 1, - anon_sym_QMARK_DOT, - ACTIONS(3529), 1, + ACTIONS(3507), 1, anon_sym_LT, - STATE(3146), 1, - sym_arguments, - STATE(3270), 1, - sym_type_arguments, + STATE(4810), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3527), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3517), 7, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3503), 11, - sym__ternary_qmark, - anon_sym_as, - 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_satisfies, - ACTIONS(3510), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141516,8 +139823,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 18, + ACTIONS(3496), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3492), 20, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + [1992] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2509), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -141525,37 +139876,80 @@ static const 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_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [1830] = 12, - ACTIONS(185), 1, + ACTIONS(2507), 39, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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_satisfies, + anon_sym_implements, + [2062] = 12, + ACTIONS(184), 1, anon_sym_DQUOTE, - ACTIONS(187), 1, + ACTIONS(186), 1, anon_sym_SQUOTE, - ACTIONS(831), 1, + ACTIONS(824), 1, anon_sym_EQ, - ACTIONS(931), 1, + ACTIONS(924), 1, anon_sym_EQ_GT, - ACTIONS(3438), 1, + ACTIONS(3431), 1, sym_identifier, - STATE(1610), 1, + STATE(1616), 1, sym_nested_identifier, - STATE(1612), 1, + STATE(1617), 1, sym_string, - STATE(1713), 1, + STATE(1711), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(157), 14, + ACTIONS(154), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_LPAREN, @@ -141570,7 +139964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(163), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141586,7 +139980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -141611,29 +140005,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [1918] = 13, - ACTIONS(666), 1, - anon_sym_EQ, - ACTIONS(676), 1, - anon_sym_COLON, - ACTIONS(687), 1, - anon_sym_EQ_GT, - ACTIONS(695), 1, - anon_sym_QMARK, - ACTIONS(697), 1, - anon_sym_RBRACE, - ACTIONS(2302), 1, - anon_sym_LPAREN, - ACTIONS(2311), 1, - anon_sym_LT, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, - aux_sym_object_repeat1, + [2150] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(163), 15, + ACTIONS(2531), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + ACTIONS(2529), 39, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141649,15 +140062,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(157), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -141667,48 +140071,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 20, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_QMARK_QMARK, - [2008] = 12, - ACTIONS(925), 1, + anon_sym_implements, + [2220] = 12, + ACTIONS(83), 1, + anon_sym_DQUOTE, + ACTIONS(85), 1, + anon_sym_SQUOTE, + ACTIONS(918), 1, anon_sym_EQ, - ACTIONS(931), 1, + ACTIONS(924), 1, anon_sym_EQ_GT, - ACTIONS(3432), 1, + ACTIONS(3454), 1, sym_identifier, - ACTIONS(3434), 1, - anon_sym_DQUOTE, - ACTIONS(3436), 1, - anon_sym_SQUOTE, - STATE(209), 1, - sym_string, - STATE(213), 1, + STATE(1608), 1, sym_nested_identifier, - STATE(220), 1, + STATE(1612), 1, + sym_string, + STATE(1771), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(157), 14, + ACTIONS(154), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_LPAREN, @@ -141723,7 +140107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(163), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141739,7 +140123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -141764,33 +140148,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [2096] = 13, - ACTIONS(185), 1, - anon_sym_DQUOTE, - ACTIONS(187), 1, - anon_sym_SQUOTE, - ACTIONS(913), 1, - anon_sym_EQ_GT, - ACTIONS(917), 1, + [2308] = 11, + ACTIONS(918), 1, anon_sym_EQ, - ACTIONS(919), 1, - anon_sym_COLON, - ACTIONS(3438), 1, + ACTIONS(924), 1, + anon_sym_EQ_GT, + ACTIONS(3405), 1, sym_identifier, - STATE(1610), 1, - sym_nested_identifier, - STATE(1612), 1, - sym_string, - STATE(1713), 1, - sym__module, + ACTIONS(3407), 1, + anon_sym_LBRACE, + ACTIONS(3409), 1, + anon_sym_LBRACK, + STATE(4416), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(157), 13, + STATE(3718), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(154), 13, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -141800,7 +140182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(163), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141816,7 +140198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -141841,34 +140223,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [2186] = 14, - ACTIONS(128), 1, - anon_sym_COMMA, - ACTIONS(185), 1, - anon_sym_DQUOTE, - ACTIONS(187), 1, - anon_sym_SQUOTE, - ACTIONS(224), 1, - anon_sym_RBRACK, - ACTIONS(904), 1, + [2394] = 11, + ACTIONS(918), 1, anon_sym_EQ, - ACTIONS(913), 1, + ACTIONS(924), 1, anon_sym_EQ_GT, - ACTIONS(3438), 1, + ACTIONS(3405), 1, sym_identifier, - STATE(1610), 1, - sym_nested_identifier, - STATE(1612), 1, - sym_string, - STATE(1713), 1, - sym__module, + ACTIONS(3407), 1, + anon_sym_LBRACE, + ACTIONS(3409), 1, + anon_sym_LBRACK, + STATE(4451), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(157), 12, + STATE(3718), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(154), 13, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -141878,7 +140257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(163), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141894,7 +140273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -141919,42 +140298,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [2278] = 12, - ACTIONS(85), 1, - anon_sym_DQUOTE, - ACTIONS(87), 1, - anon_sym_SQUOTE, - ACTIONS(925), 1, + [2480] = 14, + ACTIONS(3510), 1, anon_sym_EQ, - ACTIONS(931), 1, + ACTIONS(3514), 1, + anon_sym_LPAREN, + ACTIONS(3516), 1, + anon_sym_DOT, + ACTIONS(3518), 1, anon_sym_EQ_GT, - ACTIONS(3461), 1, - sym_identifier, - STATE(1609), 1, - sym_nested_identifier, - STATE(1617), 1, - sym_string, - STATE(1770), 1, - sym__module, + ACTIONS(3520), 1, + anon_sym_QMARK_DOT, + ACTIONS(3524), 1, + anon_sym_LT, + STATE(2917), 1, + sym_arguments, + STATE(3015), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(157), 14, - sym__automatic_semicolon, + ACTIONS(3512), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3522), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3496), 15, sym__ternary_qmark, - anon_sym_LPAREN, + anon_sym_as, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + 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(163), 15, + anon_sym_satisfies, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141970,9 +140358,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(3492), 17, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -141980,44 +140367,51 @@ static const 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_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [2366] = 13, - ACTIONS(666), 1, + [2572] = 12, + ACTIONS(918), 1, anon_sym_EQ, - ACTIONS(672), 1, - anon_sym_RBRACE, - ACTIONS(676), 1, - anon_sym_COLON, - ACTIONS(687), 1, + ACTIONS(924), 1, anon_sym_EQ_GT, - ACTIONS(695), 1, - anon_sym_QMARK, - ACTIONS(2302), 1, - anon_sym_LPAREN, - ACTIONS(2311), 1, - anon_sym_LT, - STATE(4823), 1, - aux_sym_object_repeat1, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(3526), 1, + sym_identifier, + STATE(3500), 1, + sym_nested_identifier, + STATE(3698), 1, + sym_string, + STATE(4311), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(163), 15, + ACTIONS(154), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142033,26 +140427,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(157), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(122), 20, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -142068,35 +140445,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [2456] = 11, - ACTIONS(925), 1, - anon_sym_EQ, - ACTIONS(931), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [2660] = 13, + ACTIONS(184), 1, + anon_sym_DQUOTE, + ACTIONS(186), 1, + anon_sym_SQUOTE, + ACTIONS(895), 1, anon_sym_EQ_GT, - ACTIONS(3424), 1, + ACTIONS(910), 1, + anon_sym_EQ, + ACTIONS(912), 1, + anon_sym_COLON, + ACTIONS(3431), 1, sym_identifier, - ACTIONS(3426), 1, - anon_sym_LBRACE, - ACTIONS(3428), 1, - anon_sym_LBRACK, - STATE(4461), 1, - sym_variable_declarator, + STATE(1616), 1, + sym_nested_identifier, + STATE(1617), 1, + sym_string, + STATE(1711), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3675), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(157), 13, - sym__automatic_semicolon, + ACTIONS(154), 13, sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -142106,7 +140488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(163), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142122,7 +140504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -142147,48 +140529,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [2542] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2522), 22, - anon_sym_STAR, + [2750] = 12, + ACTIONS(918), 1, anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_QMARK_QMARK, - ACTIONS(2520), 39, + ACTIONS(924), 1, + anon_sym_EQ_GT, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(3421), 1, + sym_identifier, + STATE(783), 1, + sym_nested_identifier, + STATE(798), 1, + sym_string, + STATE(878), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(154), 14, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142204,39 +140580,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(120), 24, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [2612] = 13, - ACTIONS(672), 1, - anon_sym_RBRACE, - ACTIONS(676), 1, + [2838] = 13, + ACTIONS(671), 1, anon_sym_COLON, - ACTIONS(695), 1, + ACTIONS(690), 1, anon_sym_QMARK, - ACTIONS(3501), 1, + ACTIONS(694), 1, + anon_sym_RBRACE, + ACTIONS(3500), 1, anon_sym_EQ, - ACTIONS(3505), 1, + ACTIONS(3502), 1, anon_sym_LPAREN, - ACTIONS(3508), 1, + ACTIONS(3505), 1, anon_sym_EQ_GT, - ACTIONS(3512), 1, + ACTIONS(3507), 1, anon_sym_LT, - STATE(4823), 1, + STATE(4792), 1, aux_sym_object_repeat1, - STATE(4834), 1, + STATE(4815), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3510), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142252,7 +140643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 17, + ACTIONS(3496), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -142270,7 +140661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 20, + ACTIONS(3492), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142291,42 +140682,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [2702] = 12, - ACTIONS(925), 1, + [2928] = 13, + ACTIONS(667), 1, + anon_sym_RBRACE, + ACTIONS(671), 1, + anon_sym_COLON, + ACTIONS(690), 1, + anon_sym_QMARK, + ACTIONS(3500), 1, anon_sym_EQ, - ACTIONS(931), 1, + ACTIONS(3502), 1, + anon_sym_LPAREN, + ACTIONS(3505), 1, anon_sym_EQ_GT, - ACTIONS(1557), 1, - anon_sym_DQUOTE, - ACTIONS(1559), 1, - anon_sym_SQUOTE, - ACTIONS(3430), 1, - sym_identifier, - STATE(762), 1, - sym_nested_identifier, - STATE(800), 1, - sym_string, - STATE(882), 1, - sym__module, + ACTIONS(3507), 1, + anon_sym_LT, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(157), 14, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(163), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142342,9 +140720,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, - anon_sym_STAR, + ACTIONS(3496), 17, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3492), 20, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -142360,38 +140755,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [2790] = 11, - ACTIONS(925), 1, + [3018] = 14, + ACTIONS(126), 1, + anon_sym_RBRACK, + ACTIONS(184), 1, + anon_sym_DQUOTE, + ACTIONS(186), 1, + anon_sym_SQUOTE, + ACTIONS(223), 1, + anon_sym_COMMA, + ACTIONS(886), 1, anon_sym_EQ, - ACTIONS(931), 1, + ACTIONS(895), 1, anon_sym_EQ_GT, - ACTIONS(3424), 1, + ACTIONS(3431), 1, sym_identifier, - ACTIONS(3426), 1, - anon_sym_LBRACE, - ACTIONS(3428), 1, - anon_sym_LBRACK, - STATE(4501), 1, - sym_variable_declarator, + STATE(1616), 1, + sym_nested_identifier, + STATE(1617), 1, + sym_string, + STATE(1711), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3675), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(157), 13, - sym__automatic_semicolon, + ACTIONS(154), 12, sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -142401,7 +140796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(163), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142417,7 +140812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -142442,27 +140837,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [2876] = 12, - ACTIONS(925), 1, + [3110] = 12, + ACTIONS(918), 1, anon_sym_EQ, - ACTIONS(931), 1, + ACTIONS(924), 1, anon_sym_EQ_GT, - ACTIONS(1643), 1, + ACTIONS(3411), 1, + sym_identifier, + ACTIONS(3413), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(3415), 1, anon_sym_SQUOTE, - ACTIONS(3531), 1, - sym_identifier, - STATE(3472), 1, + STATE(201), 1, sym_nested_identifier, - STATE(3530), 1, + STATE(203), 1, sym_string, - STATE(3949), 1, + STATE(231), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(157), 14, + ACTIONS(154), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_LPAREN, @@ -142477,54 +140872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(163), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(122), 24, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [2964] = 5, - ACTIONS(3533), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3510), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142540,60 +140888,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 21, + ACTIONS(120), 24, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_QMARK_QMARK, - ACTIONS(3503), 24, - sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - 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_satisfies, - anon_sym_implements, - [3038] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2502), 22, - anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -142614,81 +140911,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(2500), 39, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - 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_satisfies, - anon_sym_implements, - [3108] = 14, - ACTIONS(3515), 1, + [3198] = 14, + ACTIONS(3510), 1, anon_sym_EQ, - ACTIONS(3523), 1, + ACTIONS(3518), 1, anon_sym_EQ_GT, - ACTIONS(3535), 1, + ACTIONS(3528), 1, anon_sym_LPAREN, - ACTIONS(3537), 1, + ACTIONS(3530), 1, anon_sym_DOT, - ACTIONS(3539), 1, + ACTIONS(3532), 1, anon_sym_QMARK_DOT, - ACTIONS(3541), 1, + ACTIONS(3534), 1, anon_sym_LT, - STATE(2936), 1, + STATE(3086), 1, sym_arguments, - STATE(3032), 1, + STATE(3215), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3517), 3, + ACTIONS(3522), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3512), 7, + sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3527), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3503), 15, + anon_sym_PIPE_RBRACE, + ACTIONS(3496), 11, sym__ternary_qmark, anon_sym_as, - 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, @@ -142698,7 +140956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3510), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142714,7 +140972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 17, + ACTIONS(3492), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142731,30 +140989,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [3200] = 13, - ACTIONS(666), 1, + [3290] = 13, + ACTIONS(661), 1, anon_sym_EQ, - ACTIONS(676), 1, + ACTIONS(671), 1, anon_sym_COLON, - ACTIONS(687), 1, + ACTIONS(682), 1, anon_sym_EQ_GT, - ACTIONS(695), 1, + ACTIONS(690), 1, anon_sym_QMARK, - ACTIONS(699), 1, + ACTIONS(692), 1, anon_sym_RBRACE, - ACTIONS(2302), 1, + ACTIONS(2149), 1, anon_sym_LPAREN, - ACTIONS(2311), 1, + ACTIONS(2158), 1, anon_sym_LT, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, + STATE(4810), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(163), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142770,7 +141029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(157), 17, + ACTIONS(154), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -142788,7 +141047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 20, + ACTIONS(120), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142809,29 +141068,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [3290] = 13, - ACTIONS(676), 1, + [3380] = 13, + ACTIONS(661), 1, + anon_sym_EQ, + ACTIONS(667), 1, + anon_sym_RBRACE, + ACTIONS(671), 1, anon_sym_COLON, - ACTIONS(695), 1, + ACTIONS(682), 1, + anon_sym_EQ_GT, + ACTIONS(690), 1, anon_sym_QMARK, - ACTIONS(697), 1, - anon_sym_RBRACE, - ACTIONS(3501), 1, - anon_sym_EQ, - ACTIONS(3505), 1, + ACTIONS(2149), 1, anon_sym_LPAREN, - ACTIONS(3508), 1, - anon_sym_EQ_GT, - ACTIONS(3512), 1, + ACTIONS(2158), 1, anon_sym_LT, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, + STATE(4792), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3510), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142847,7 +141106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 17, + ACTIONS(154), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -142865,7 +141124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 20, + ACTIONS(120), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142886,29 +141145,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [3380] = 13, - ACTIONS(185), 1, + [3470] = 12, + ACTIONS(184), 1, anon_sym_DQUOTE, - ACTIONS(187), 1, + ACTIONS(186), 1, anon_sym_SQUOTE, - ACTIONS(909), 1, - anon_sym_COLON, - ACTIONS(913), 1, + ACTIONS(895), 1, anon_sym_EQ_GT, - ACTIONS(917), 1, + ACTIONS(910), 1, anon_sym_EQ, - ACTIONS(3438), 1, + ACTIONS(3431), 1, sym_identifier, - STATE(1610), 1, + STATE(1616), 1, sym_nested_identifier, - STATE(1612), 1, + STATE(1617), 1, sym_string, - STATE(1713), 1, + STATE(1711), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(157), 13, + ACTIONS(154), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -142922,7 +141179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(163), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142938,7 +141195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -142963,31 +141220,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [3470] = 12, - ACTIONS(185), 1, + [3557] = 12, + ACTIONS(184), 1, anon_sym_DQUOTE, - ACTIONS(187), 1, + ACTIONS(186), 1, anon_sym_SQUOTE, - ACTIONS(831), 1, + ACTIONS(964), 1, anon_sym_EQ, - ACTIONS(913), 1, + ACTIONS(970), 1, anon_sym_EQ_GT, - ACTIONS(3438), 1, + ACTIONS(3431), 1, sym_identifier, - STATE(1610), 1, + STATE(1616), 1, sym_nested_identifier, - STATE(1612), 1, + STATE(1617), 1, sym_string, - STATE(1713), 1, + STATE(1711), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(157), 13, + ACTIONS(154), 13, sym__ternary_qmark, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -142997,7 +141254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(163), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143013,7 +141270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -143038,51 +141295,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [3557] = 16, - ACTIONS(3523), 1, - anon_sym_EQ_GT, - ACTIONS(3543), 1, + [3644] = 12, + ACTIONS(184), 1, + anon_sym_DQUOTE, + ACTIONS(186), 1, + anon_sym_SQUOTE, + ACTIONS(824), 1, anon_sym_EQ, - ACTIONS(3550), 1, - anon_sym_COLON, - ACTIONS(3552), 1, - anon_sym_LBRACK, - ACTIONS(3555), 1, - anon_sym_DOT, - ACTIONS(3561), 1, - anon_sym_LT, - ACTIONS(3564), 1, - anon_sym_QMARK, - ACTIONS(3567), 1, - anon_sym_extends, - STATE(3035), 1, - sym_type_arguments, - STATE(5200), 1, - sym_type_annotation, + ACTIONS(970), 1, + anon_sym_EQ_GT, + ACTIONS(3431), 1, + sym_identifier, + STATE(1616), 1, + sym_nested_identifier, + STATE(1617), 1, + sym_string, + STATE(1711), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3546), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3558), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3503), 13, + ACTIONS(154), 13, sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3510), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143098,8 +141345,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 18, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -143107,40 +141355,46 @@ static const 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_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [3652] = 12, - ACTIONS(185), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [3731] = 12, + ACTIONS(184), 1, anon_sym_DQUOTE, - ACTIONS(187), 1, + ACTIONS(186), 1, anon_sym_SQUOTE, - ACTIONS(969), 1, + ACTIONS(824), 1, anon_sym_EQ, - ACTIONS(975), 1, + ACTIONS(895), 1, anon_sym_EQ_GT, - ACTIONS(3438), 1, + ACTIONS(3431), 1, sym_identifier, - STATE(1610), 1, + STATE(1616), 1, sym_nested_identifier, - STATE(1612), 1, + STATE(1617), 1, sym_string, - STATE(1713), 1, + STATE(1711), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(157), 12, + ACTIONS(154), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -143150,7 +141404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(163), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143166,12 +141420,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 25, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -143192,30 +141445,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [3739] = 12, - ACTIONS(3515), 1, + [3818] = 12, + ACTIONS(3510), 1, anon_sym_EQ, - ACTIONS(3523), 1, + ACTIONS(3518), 1, anon_sym_EQ_GT, - ACTIONS(3555), 1, + ACTIONS(3539), 1, anon_sym_DOT, - ACTIONS(3561), 1, + ACTIONS(3545), 1, anon_sym_LT, - ACTIONS(3567), 1, + ACTIONS(3548), 1, anon_sym_extends, - STATE(3035), 1, + STATE(2964), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3552), 2, + ACTIONS(3536), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3558), 3, + ACTIONS(3542), 3, anon_sym_AMP, anon_sym_PIPE, anon_sym_GT, - ACTIONS(3510), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143231,7 +141484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 17, + ACTIONS(3492), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143249,7 +141502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3503), 17, + ACTIONS(3496), 17, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -143267,27 +141520,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [3826] = 12, - ACTIONS(185), 1, + [3905] = 12, + ACTIONS(184), 1, anon_sym_DQUOTE, - ACTIONS(187), 1, + ACTIONS(186), 1, anon_sym_SQUOTE, - ACTIONS(831), 1, + ACTIONS(948), 1, anon_sym_EQ, - ACTIONS(975), 1, + ACTIONS(954), 1, anon_sym_EQ_GT, - ACTIONS(3438), 1, + ACTIONS(3431), 1, sym_identifier, - STATE(1610), 1, + STATE(1616), 1, sym_nested_identifier, - STATE(1612), 1, + STATE(1617), 1, sym_string, - STATE(1713), 1, + STATE(1711), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(157), 12, + ACTIONS(154), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -143300,7 +141553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(163), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143316,7 +141569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 25, + ACTIONS(120), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -143342,50 +141595,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [3913] = 14, - ACTIONS(3535), 1, - anon_sym_LPAREN, - ACTIONS(3537), 1, - anon_sym_DOT, - ACTIONS(3539), 1, - anon_sym_QMARK_DOT, - ACTIONS(3541), 1, - anon_sym_LT, - ACTIONS(3569), 1, + [3992] = 12, + ACTIONS(184), 1, + anon_sym_DQUOTE, + ACTIONS(186), 1, + anon_sym_SQUOTE, + ACTIONS(824), 1, anon_sym_EQ, - ACTIONS(3571), 1, + ACTIONS(954), 1, anon_sym_EQ_GT, - STATE(2936), 1, - sym_arguments, - STATE(3032), 1, - sym_type_arguments, + ACTIONS(3431), 1, + sym_identifier, + STATE(1616), 1, + sym_nested_identifier, + STATE(1617), 1, + sym_string, + STATE(1711), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3517), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3527), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3503), 14, - sym__automatic_semicolon, + ACTIONS(154), 12, sym__ternary_qmark, - anon_sym_as, - anon_sym_SEMI, - anon_sym_of, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3510), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143401,58 +141644,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 17, + ACTIONS(120), 25, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [4004] = 14, - ACTIONS(3508), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [4079] = 16, + ACTIONS(3518), 1, anon_sym_EQ_GT, - ACTIONS(3535), 1, - anon_sym_LPAREN, - ACTIONS(3537), 1, - anon_sym_DOT, + ACTIONS(3536), 1, + anon_sym_LBRACK, ACTIONS(3539), 1, - anon_sym_QMARK_DOT, - ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3545), 1, anon_sym_LT, - ACTIONS(3573), 1, + ACTIONS(3548), 1, + anon_sym_extends, + ACTIONS(3550), 1, anon_sym_EQ, - STATE(2936), 1, - sym_arguments, - STATE(3032), 1, + ACTIONS(3557), 1, + anon_sym_COLON, + ACTIONS(3559), 1, + anon_sym_QMARK, + STATE(2964), 1, sym_type_arguments, + STATE(5159), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3517), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3527), 3, + ACTIONS(3542), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3503), 14, - sym__automatic_semicolon, + ACTIONS(3553), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3496), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -143462,7 +141714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3510), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143478,7 +141730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 17, + ACTIONS(3492), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143495,32 +141747,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [4095] = 12, - ACTIONS(185), 1, + [4174] = 13, + ACTIONS(184), 1, anon_sym_DQUOTE, - ACTIONS(187), 1, + ACTIONS(186), 1, anon_sym_SQUOTE, - ACTIONS(913), 1, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(917), 1, + ACTIONS(824), 1, anon_sym_EQ, - ACTIONS(3438), 1, + ACTIONS(826), 1, + anon_sym_COLON, + ACTIONS(3431), 1, sym_identifier, - STATE(1610), 1, + STATE(1616), 1, sym_nested_identifier, - STATE(1612), 1, + STATE(1617), 1, sym_string, - STATE(1713), 1, + STATE(1711), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(157), 13, + ACTIONS(154), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -143530,7 +141784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(163), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143546,7 +141800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -143571,29 +141825,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [4182] = 13, - ACTIONS(155), 1, - anon_sym_EQ_GT, - ACTIONS(185), 1, + [4263] = 14, + ACTIONS(184), 1, anon_sym_DQUOTE, - ACTIONS(187), 1, + ACTIONS(186), 1, anon_sym_SQUOTE, - ACTIONS(831), 1, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(824), 1, anon_sym_EQ, - ACTIONS(833), 1, - anon_sym_COLON, - ACTIONS(3438), 1, + ACTIONS(902), 1, + anon_sym_in, + ACTIONS(905), 1, + anon_sym_of, + ACTIONS(3431), 1, sym_identifier, - STATE(1610), 1, + STATE(1616), 1, sym_nested_identifier, - STATE(1612), 1, + STATE(1617), 1, sym_string, - STATE(1713), 1, + STATE(1711), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(157), 12, + ACTIONS(154), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -143606,7 +141862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(163), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143622,11 +141878,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(120), 23, anon_sym_STAR, anon_sym_as, anon_sym_BANG, - anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -143647,25 +141902,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [4271] = 8, - ACTIONS(3535), 1, + [4354] = 14, + ACTIONS(3505), 1, + anon_sym_EQ_GT, + ACTIONS(3514), 1, anon_sym_LPAREN, - ACTIONS(3541), 1, + ACTIONS(3516), 1, + anon_sym_DOT, + ACTIONS(3520), 1, + anon_sym_QMARK_DOT, + ACTIONS(3524), 1, anon_sym_LT, - ACTIONS(3579), 1, + ACTIONS(3562), 1, + anon_sym_EQ, + STATE(2917), 1, + sym_arguments, + STATE(3015), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3512), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3522), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3496), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + 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, + anon_sym_satisfies, + ACTIONS(3498), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(3492), 17, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + 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_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [4445] = 13, + ACTIONS(3518), 1, + anon_sym_EQ_GT, + ACTIONS(3536), 1, + anon_sym_LBRACK, + ACTIONS(3550), 1, + anon_sym_EQ, + ACTIONS(3564), 1, anon_sym_DOT, - STATE(1256), 1, + ACTIONS(3567), 1, + anon_sym_LT, + STATE(3250), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3542), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3553), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3548), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3496), 13, + sym__ternary_qmark, + 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, + anon_sym_satisfies, + ACTIONS(3498), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(3492), 18, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + 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_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + [4534] = 8, + ACTIONS(3514), 1, + anon_sym_LPAREN, + ACTIONS(3574), 1, + anon_sym_DOT, + ACTIONS(3576), 1, + anon_sym_LT, + STATE(1288), 1, sym_arguments, - STATE(5449), 1, + STATE(5440), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3577), 14, + ACTIONS(3572), 13, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LBRACK, - sym_glimmer_opening_tag, anon_sym_DOT_DOT_DOT, anon_sym_TILDE, anon_sym_PLUS_PLUS, @@ -143676,7 +142083,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3575), 41, + ACTIONS(3570), 42, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -143718,38 +142125,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [4350] = 13, - ACTIONS(3523), 1, - anon_sym_EQ_GT, - ACTIONS(3543), 1, - anon_sym_EQ, - ACTIONS(3552), 1, - anon_sym_LBRACK, - ACTIONS(3581), 1, + anon_sym_abstract, + [4613] = 14, + ACTIONS(3514), 1, + anon_sym_LPAREN, + ACTIONS(3516), 1, anon_sym_DOT, - ACTIONS(3584), 1, + ACTIONS(3520), 1, + anon_sym_QMARK_DOT, + ACTIONS(3524), 1, anon_sym_LT, - STATE(3225), 1, + ACTIONS(3578), 1, + anon_sym_EQ, + ACTIONS(3580), 1, + anon_sym_EQ_GT, + STATE(2917), 1, + sym_arguments, + STATE(3015), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3546), 2, + ACTIONS(3512), 3, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3558), 2, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3522), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3567), 4, + anon_sym_GT, + ACTIONS(3496), 14, sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3503), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, + anon_sym_SEMI, + anon_sym_of, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -143759,7 +142169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3510), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143775,7 +142185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 18, + ACTIONS(3492), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143792,32 +142202,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, anon_sym_QMARK_QMARK, - [4439] = 12, - ACTIONS(185), 1, + [4704] = 12, + ACTIONS(184), 1, anon_sym_DQUOTE, - ACTIONS(187), 1, + ACTIONS(186), 1, anon_sym_SQUOTE, - ACTIONS(955), 1, - anon_sym_EQ, - ACTIONS(961), 1, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(3438), 1, + ACTIONS(1040), 1, + anon_sym_EQ, + ACTIONS(3431), 1, sym_identifier, - STATE(1610), 1, + STATE(1616), 1, sym_nested_identifier, - STATE(1612), 1, + STATE(1617), 1, sym_string, - STATE(1713), 1, + STATE(1711), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(157), 13, + ACTIONS(154), 12, sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -143828,7 +142236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(163), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143844,7 +142252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -143869,44 +142277,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [4526] = 14, - ACTIONS(155), 1, - anon_sym_EQ_GT, - ACTIONS(185), 1, - anon_sym_DQUOTE, - ACTIONS(187), 1, - anon_sym_SQUOTE, - ACTIONS(831), 1, + [4790] = 14, + ACTIONS(3514), 1, + anon_sym_LPAREN, + ACTIONS(3516), 1, + anon_sym_DOT, + ACTIONS(3520), 1, + anon_sym_QMARK_DOT, + ACTIONS(3524), 1, + anon_sym_LT, + ACTIONS(3582), 1, anon_sym_EQ, - ACTIONS(895), 1, - anon_sym_in, - ACTIONS(898), 1, - anon_sym_of, - ACTIONS(3438), 1, - sym_identifier, - STATE(1610), 1, - sym_nested_identifier, - STATE(1612), 1, - sym_string, - STATE(1713), 1, - sym__module, + ACTIONS(3584), 1, + anon_sym_EQ_GT, + STATE(2917), 1, + sym_arguments, + STATE(3015), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(157), 12, - sym__ternary_qmark, - anon_sym_LPAREN, + ACTIONS(3512), 3, + anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_extends, + ACTIONS(3522), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3496), 13, + sym__automatic_semicolon, + sym__ternary_qmark, + 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(163), 15, + anon_sym_satisfies, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143922,54 +142335,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 23, + ACTIONS(3492), 17, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, + anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [4617] = 12, - ACTIONS(185), 1, + [4880] = 12, + ACTIONS(184), 1, anon_sym_DQUOTE, - ACTIONS(187), 1, + ACTIONS(186), 1, anon_sym_SQUOTE, - ACTIONS(831), 1, - anon_sym_EQ, - ACTIONS(961), 1, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(3438), 1, + ACTIONS(978), 1, + anon_sym_EQ, + ACTIONS(3431), 1, sym_identifier, - STATE(1610), 1, + STATE(1616), 1, sym_nested_identifier, - STATE(1612), 1, + STATE(1617), 1, sym_string, - STATE(1713), 1, + STATE(1711), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(157), 13, + ACTIONS(154), 12, sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -143980,7 +142386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(163), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143996,7 +142402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -144021,24 +142427,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [4704] = 9, - ACTIONS(841), 1, - anon_sym_EQ, - ACTIONS(851), 1, + [4966] = 12, + ACTIONS(184), 1, + anon_sym_DQUOTE, + ACTIONS(186), 1, + anon_sym_SQUOTE, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(1765), 1, - anon_sym_extends, + ACTIONS(982), 1, + anon_sym_EQ, + ACTIONS(3431), 1, + sym_identifier, + STATE(1616), 1, + sym_nested_identifier, + STATE(1617), 1, + sym_string, + STATE(1711), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3587), 2, - anon_sym_COMMA, + ACTIONS(154), 12, + sym__ternary_qmark, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3590), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(163), 15, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144054,8 +142476,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 18, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -144063,7 +142486,9 @@ static const 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_SLASH, @@ -144072,15 +142497,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(157), 18, - sym__ternary_qmark, - anon_sym_as, + anon_sym_instanceof, + anon_sym_satisfies, + [5052] = 8, + ACTIONS(3494), 1, + anon_sym_EQ, + ACTIONS(3588), 1, + anon_sym_EQ_GT, + ACTIONS(3590), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3586), 5, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, + ACTIONS(3496), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -144092,32 +142533,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [4784] = 9, - ACTIONS(851), 1, + ACTIONS(3498), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(3492), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + [5130] = 12, + ACTIONS(184), 1, + anon_sym_DQUOTE, + ACTIONS(186), 1, + anon_sym_SQUOTE, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(887), 1, + ACTIONS(1044), 1, anon_sym_EQ, - ACTIONS(3587), 1, - anon_sym_LBRACK, + ACTIONS(3431), 1, + sym_identifier, + STATE(1616), 1, + sym_nested_identifier, + STATE(1617), 1, + sym_string, + STATE(1711), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3590), 2, + ACTIONS(154), 12, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(160), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(120), 24, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(1765), 6, - sym__automatic_semicolon, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [5216] = 14, + ACTIONS(3514), 1, + anon_sym_LPAREN, + ACTIONS(3516), 1, + anon_sym_DOT, + ACTIONS(3520), 1, + anon_sym_QMARK_DOT, + ACTIONS(3524), 1, + anon_sym_LT, + ACTIONS(3592), 1, + anon_sym_EQ, + ACTIONS(3594), 1, + anon_sym_EQ_GT, + STATE(2917), 1, + sym_arguments, + STATE(3015), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3512), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(157), 14, + ACTIONS(3522), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3496), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_LBRACE, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -144127,7 +142686,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(163), 15, + anon_sym_implements, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144143,7 +142703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 19, + ACTIONS(3492), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144158,35 +142718,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, anon_sym_QMARK_QMARK, - [4864] = 12, - ACTIONS(155), 1, + [5306] = 12, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(185), 1, - anon_sym_DQUOTE, - ACTIONS(187), 1, - anon_sym_SQUOTE, - ACTIONS(981), 1, + ACTIONS(824), 1, anon_sym_EQ, - ACTIONS(3438), 1, + ACTIONS(902), 1, + anon_sym_in, + ACTIONS(905), 1, + anon_sym_of, + ACTIONS(3407), 1, + anon_sym_LBRACE, + ACTIONS(3596), 1, sym_identifier, - STATE(1610), 1, - sym_nested_identifier, - STATE(1612), 1, - sym_string, - STATE(1713), 1, - sym__module, + ACTIONS(3598), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(157), 12, + STATE(4813), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(154), 11, sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -144196,7 +142755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(163), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144212,11 +142771,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(120), 23, anon_sym_STAR, anon_sym_as, anon_sym_BANG, - anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -144237,30 +142795,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [4950] = 12, - ACTIONS(3555), 1, + [5392] = 12, + ACTIONS(3505), 1, + anon_sym_EQ_GT, + ACTIONS(3539), 1, anon_sym_DOT, - ACTIONS(3561), 1, + ACTIONS(3545), 1, anon_sym_LT, - ACTIONS(3567), 1, + ACTIONS(3548), 1, anon_sym_extends, - ACTIONS(3569), 1, + ACTIONS(3562), 1, anon_sym_EQ, - ACTIONS(3571), 1, - anon_sym_EQ_GT, - STATE(3035), 1, + STATE(2964), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3552), 2, + ACTIONS(3536), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3558), 3, + ACTIONS(3542), 3, anon_sym_AMP, anon_sym_PIPE, anon_sym_GT, - ACTIONS(3510), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144276,13 +142834,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 16, + ACTIONS(3496), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -144293,7 +142851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 17, + ACTIONS(3492), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144311,25 +142869,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5036] = 8, - ACTIONS(155), 1, + [5478] = 12, + ACTIONS(184), 1, + anon_sym_DQUOTE, + ACTIONS(186), 1, + anon_sym_SQUOTE, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(831), 1, + ACTIONS(1038), 1, anon_sym_EQ, - ACTIONS(835), 1, - anon_sym_QMARK, + ACTIONS(3431), 1, + sym_identifier, + STATE(1616), 1, + sym_nested_identifier, + STATE(1617), 1, + sym_string, + STATE(1711), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(833), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(157), 15, + ACTIONS(154), 12, sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -144338,12 +142899,10 @@ static const 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, - anon_sym_satisfies, - ACTIONS(163), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144359,8 +142918,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -144381,35 +142941,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [5114] = 14, - ACTIONS(3535), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [5564] = 14, + ACTIONS(3514), 1, anon_sym_LPAREN, - ACTIONS(3537), 1, + ACTIONS(3516), 1, anon_sym_DOT, - ACTIONS(3539), 1, + ACTIONS(3520), 1, anon_sym_QMARK_DOT, - ACTIONS(3541), 1, + ACTIONS(3524), 1, anon_sym_LT, - ACTIONS(3593), 1, + ACTIONS(3601), 1, anon_sym_EQ, - ACTIONS(3595), 1, + ACTIONS(3603), 1, anon_sym_EQ_GT, - STATE(2936), 1, + STATE(2917), 1, sym_arguments, - STATE(3032), 1, + STATE(3015), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3517), 3, + ACTIONS(3512), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3527), 3, + ACTIONS(3522), 3, anon_sym_AMP, anon_sym_PIPE, anon_sym_GT, - ACTIONS(3503), 13, + ACTIONS(3496), 13, sym__ternary_qmark, anon_sym_as, anon_sym_RPAREN, @@ -144423,7 +142985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3510), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144439,7 +143001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 17, + ACTIONS(3492), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144457,49 +143019,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5204] = 15, - ACTIONS(3546), 1, - anon_sym_RPAREN, - ACTIONS(3552), 1, - anon_sym_LBRACK, - ACTIONS(3555), 1, - anon_sym_DOT, - ACTIONS(3561), 1, - anon_sym_LT, - ACTIONS(3567), 1, - anon_sym_extends, - ACTIONS(3595), 1, + [5654] = 12, + ACTIONS(184), 1, + anon_sym_DQUOTE, + ACTIONS(186), 1, + anon_sym_SQUOTE, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(3597), 1, + ACTIONS(974), 1, anon_sym_EQ, - ACTIONS(3603), 1, - anon_sym_QMARK, - STATE(3035), 1, - sym_type_arguments, + ACTIONS(3431), 1, + sym_identifier, + STATE(1616), 1, + sym_nested_identifier, + STATE(1617), 1, + sym_string, + STATE(1711), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3558), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3600), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3503), 13, + ACTIONS(154), 12, sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3510), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144515,8 +143068,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 18, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -144524,51 +143078,54 @@ static const 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_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [5296] = 12, - ACTIONS(155), 1, - anon_sym_EQ_GT, - ACTIONS(831), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [5740] = 8, + ACTIONS(220), 1, anon_sym_EQ, - ACTIONS(895), 1, - anon_sym_in, - ACTIONS(898), 1, - anon_sym_of, - ACTIONS(3426), 1, - anon_sym_LBRACE, - ACTIONS(3605), 1, - sym_identifier, - ACTIONS(3607), 1, - anon_sym_LBRACK, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(720), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4804), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(157), 11, + ACTIONS(223), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(154), 15, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(163), 15, + anon_sym_satisfies, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144584,10 +143141,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 23, + ACTIONS(120), 21, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, + anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -144606,105 +143163,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [5382] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3612), 16, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3610), 43, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_await, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - [5450] = 14, - ACTIONS(3515), 1, - anon_sym_EQ, - ACTIONS(3523), 1, - anon_sym_EQ_GT, - ACTIONS(3535), 1, + [5818] = 14, + ACTIONS(3514), 1, anon_sym_LPAREN, - ACTIONS(3537), 1, + ACTIONS(3516), 1, anon_sym_DOT, - ACTIONS(3539), 1, + ACTIONS(3520), 1, anon_sym_QMARK_DOT, - ACTIONS(3541), 1, + ACTIONS(3524), 1, anon_sym_LT, - STATE(2936), 1, + ACTIONS(3601), 1, + anon_sym_EQ, + ACTIONS(3603), 1, + anon_sym_EQ_GT, + STATE(2917), 1, sym_arguments, - STATE(3032), 1, + STATE(3015), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3527), 3, + ACTIONS(3522), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(3517), 4, - anon_sym_COMMA, + ACTIONS(3512), 3, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_extends, - ACTIONS(3503), 11, + ACTIONS(3496), 13, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -144714,7 +143204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3510), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144730,7 +143220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 18, + ACTIONS(3492), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144749,27 +143239,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [5540] = 8, - ACTIONS(3533), 1, - anon_sym_EQ, - ACTIONS(3616), 1, + [5908] = 9, + ACTIONS(844), 1, anon_sym_EQ_GT, - ACTIONS(3618), 1, - anon_sym_QMARK, + ACTIONS(907), 1, + anon_sym_EQ, + ACTIONS(3605), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3614), 5, + ACTIONS(3608), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1898), 6, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3503), 15, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(154), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -144781,7 +143274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3510), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144797,7 +143290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 21, + ACTIONS(120), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144806,9 +143299,7 @@ static const 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_SLASH, @@ -144819,30 +143310,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [5618] = 12, - ACTIONS(3508), 1, - anon_sym_EQ_GT, - ACTIONS(3555), 1, + [5988] = 14, + ACTIONS(3510), 1, + anon_sym_EQ, + ACTIONS(3514), 1, + anon_sym_LPAREN, + ACTIONS(3516), 1, anon_sym_DOT, - ACTIONS(3561), 1, + ACTIONS(3518), 1, + anon_sym_EQ_GT, + ACTIONS(3520), 1, + anon_sym_QMARK_DOT, + ACTIONS(3524), 1, anon_sym_LT, - ACTIONS(3567), 1, - anon_sym_extends, - ACTIONS(3573), 1, - anon_sym_EQ, - STATE(3035), 1, + STATE(2917), 1, + sym_arguments, + STATE(3015), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3552), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3558), 3, + ACTIONS(3522), 3, anon_sym_AMP, anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3510), 15, + anon_sym_QMARK, + ACTIONS(3512), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3496), 11, + sym__ternary_qmark, + anon_sym_as, + 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_satisfies, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144858,24 +143367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 16, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - 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_satisfies, - ACTIONS(3499), 17, + ACTIONS(3492), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144892,108 +143384,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [5704] = 7, - ACTIONS(3624), 1, - anon_sym_class, - ACTIONS(3627), 1, - anon_sym_AT, - STATE(1275), 1, - aux_sym_export_statement_repeat1, - STATE(1285), 1, - sym_decorator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3622), 14, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LPAREN, + [6078] = 15, + ACTIONS(3536), 1, anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3620), 41, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_await, - anon_sym_yield, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [5780] = 14, - ACTIONS(3535), 1, - anon_sym_LPAREN, - ACTIONS(3537), 1, - anon_sym_DOT, ACTIONS(3539), 1, - anon_sym_QMARK_DOT, - ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3545), 1, anon_sym_LT, - ACTIONS(3630), 1, - anon_sym_EQ, - ACTIONS(3632), 1, + ACTIONS(3548), 1, + anon_sym_extends, + ACTIONS(3553), 1, + anon_sym_RPAREN, + ACTIONS(3603), 1, anon_sym_EQ_GT, - STATE(2936), 1, - sym_arguments, - STATE(3032), 1, + ACTIONS(3611), 1, + anon_sym_EQ, + ACTIONS(3617), 1, + anon_sym_QMARK, + STATE(2964), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3517), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3527), 3, + ACTIONS(3542), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3503), 13, + ACTIONS(3614), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3496), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -145003,8 +143428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(3510), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145020,7 +143444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 17, + ACTIONS(3492), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145037,29 +143461,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [5870] = 12, - ACTIONS(155), 1, + [6170] = 8, + ACTIONS(3588), 1, anon_sym_EQ_GT, - ACTIONS(185), 1, - anon_sym_DQUOTE, - ACTIONS(187), 1, - anon_sym_SQUOTE, - ACTIONS(1049), 1, + ACTIONS(3617), 1, + anon_sym_QMARK, + ACTIONS(3619), 1, anon_sym_EQ, - ACTIONS(3438), 1, - sym_identifier, - STATE(1610), 1, - sym_nested_identifier, - STATE(1612), 1, - sym_string, - STATE(1713), 1, - sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(157), 12, + ACTIONS(3622), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3496), 15, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -145068,10 +143490,12 @@ static const 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, - ACTIONS(163), 15, + anon_sym_satisfies, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145087,9 +143511,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(3492), 21, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -145110,29 +143533,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [5956] = 12, - ACTIONS(155), 1, - anon_sym_EQ_GT, - ACTIONS(185), 1, + [6248] = 12, + ACTIONS(184), 1, anon_sym_DQUOTE, - ACTIONS(187), 1, + ACTIONS(186), 1, anon_sym_SQUOTE, - ACTIONS(993), 1, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(1042), 1, anon_sym_EQ, - ACTIONS(3438), 1, + ACTIONS(3431), 1, sym_identifier, - STATE(1610), 1, + STATE(1616), 1, sym_nested_identifier, - STATE(1612), 1, + STATE(1617), 1, sym_string, - STATE(1713), 1, + STATE(1711), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(157), 12, + ACTIONS(154), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -145145,7 +143566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(163), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145161,7 +143582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -145186,97 +143607,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [6042] = 8, - ACTIONS(119), 1, - anon_sym_EQ, - ACTIONS(155), 1, - anon_sym_EQ_GT, - ACTIONS(725), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(128), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(157), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(163), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(122), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_QMARK_QMARK, - [6120] = 12, - ACTIONS(155), 1, - anon_sym_EQ_GT, - ACTIONS(185), 1, + [6334] = 12, + ACTIONS(184), 1, anon_sym_DQUOTE, - ACTIONS(187), 1, + ACTIONS(186), 1, anon_sym_SQUOTE, - ACTIONS(987), 1, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(824), 1, anon_sym_EQ, - ACTIONS(3438), 1, + ACTIONS(3431), 1, sym_identifier, - STATE(1610), 1, + STATE(1616), 1, sym_nested_identifier, - STATE(1612), 1, + STATE(1617), 1, sym_string, - STATE(1713), 1, + STATE(1711), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(157), 12, + ACTIONS(154), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -145289,7 +143640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(163), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145305,7 +143656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -145330,27 +143681,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [6206] = 12, - ACTIONS(155), 1, - anon_sym_EQ_GT, - ACTIONS(185), 1, + [6420] = 12, + ACTIONS(184), 1, anon_sym_DQUOTE, - ACTIONS(187), 1, + ACTIONS(186), 1, anon_sym_SQUOTE, - ACTIONS(831), 1, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(976), 1, anon_sym_EQ, - ACTIONS(3438), 1, + ACTIONS(3431), 1, sym_identifier, - STATE(1610), 1, + STATE(1616), 1, sym_nested_identifier, - STATE(1612), 1, + STATE(1617), 1, sym_string, - STATE(1713), 1, + STATE(1711), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(157), 12, + ACTIONS(154), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -145363,7 +143714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(163), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145379,7 +143730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -145404,118 +143755,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [6292] = 8, - ACTIONS(3603), 1, - anon_sym_QMARK, - ACTIONS(3616), 1, - anon_sym_EQ_GT, - ACTIONS(3634), 1, - anon_sym_EQ, + [6506] = 6, + ACTIONS(3628), 1, + anon_sym_AT, + STATE(1269), 1, + aux_sym_export_statement_repeat1, + STATE(1344), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3637), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3503), 15, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(3626), 14, + anon_sym_LBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, + anon_sym_DOT_DOT_DOT, + anon_sym_LT, + anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3510), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(3499), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + sym_number, + sym_private_property_identifier, + ACTIONS(3624), 42, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_QMARK_QMARK, - [6370] = 14, - ACTIONS(3535), 1, - anon_sym_LPAREN, - ACTIONS(3537), 1, - anon_sym_DOT, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + [6580] = 12, ACTIONS(3539), 1, - anon_sym_QMARK_DOT, - ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3545), 1, anon_sym_LT, - ACTIONS(3593), 1, + ACTIONS(3548), 1, + anon_sym_extends, + ACTIONS(3578), 1, anon_sym_EQ, - ACTIONS(3595), 1, + ACTIONS(3580), 1, anon_sym_EQ_GT, - STATE(2936), 1, - sym_arguments, - STATE(3032), 1, + STATE(2964), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3527), 2, + ACTIONS(3536), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3542), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3517), 3, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3503), 13, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - 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, - anon_sym_satisfies, - ACTIONS(3510), 15, + anon_sym_GT, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145531,77 +143862,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 18, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - 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_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_QMARK_QMARK, - [6460] = 12, - ACTIONS(155), 1, - anon_sym_EQ_GT, - ACTIONS(185), 1, - anon_sym_DQUOTE, - ACTIONS(187), 1, - anon_sym_SQUOTE, - ACTIONS(989), 1, - anon_sym_EQ, - ACTIONS(3438), 1, - sym_identifier, - STATE(1610), 1, - sym_nested_identifier, - STATE(1612), 1, - sym_string, - STATE(1713), 1, - sym__module, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(157), 12, + ACTIONS(3496), 16, + sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, + anon_sym_SEMI, + anon_sym_of, 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(163), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(122), 24, + anon_sym_satisfies, + ACTIONS(3492), 17, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -145609,42 +143888,36 @@ static const 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_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [6546] = 12, - ACTIONS(155), 1, - anon_sym_EQ_GT, - ACTIONS(185), 1, + [6666] = 12, + ACTIONS(184), 1, anon_sym_DQUOTE, - ACTIONS(187), 1, + ACTIONS(186), 1, anon_sym_SQUOTE, - ACTIONS(995), 1, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(1036), 1, anon_sym_EQ, - ACTIONS(3438), 1, + ACTIONS(3431), 1, sym_identifier, - STATE(1610), 1, + STATE(1616), 1, sym_nested_identifier, - STATE(1612), 1, + STATE(1617), 1, sym_string, - STATE(1713), 1, + STATE(1711), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(157), 12, + ACTIONS(154), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -145657,7 +143930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(163), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145673,7 +143946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -145698,18 +143971,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [6632] = 3, + [6752] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3641), 16, + ACTIONS(3633), 16, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, - sym_glimmer_opening_tag, anon_sym_DOT_DOT_DOT, + anon_sym_LT, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -145719,7 +143992,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3639), 43, + ACTIONS(3631), 43, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -145728,6 +144001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_await, anon_sym_yield, + anon_sym_DOT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -145736,7 +144010,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_void, anon_sym_delete, sym_identifier, @@ -145763,28 +144036,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [6700] = 12, - ACTIONS(155), 1, + [6820] = 8, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(185), 1, - anon_sym_DQUOTE, - ACTIONS(187), 1, - anon_sym_SQUOTE, - ACTIONS(983), 1, + ACTIONS(824), 1, anon_sym_EQ, - ACTIONS(3438), 1, - sym_identifier, - STATE(1610), 1, - sym_nested_identifier, - STATE(1612), 1, - sym_string, - STATE(1713), 1, - sym__module, + ACTIONS(828), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(157), 12, + ACTIONS(826), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(154), 15, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -145793,10 +144063,12 @@ static const 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, - ACTIONS(163), 15, + anon_sym_satisfies, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145812,9 +144084,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(120), 21, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -145835,51 +144106,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [6786] = 14, - ACTIONS(3535), 1, - anon_sym_LPAREN, - ACTIONS(3537), 1, - anon_sym_DOT, - ACTIONS(3539), 1, - anon_sym_QMARK_DOT, - ACTIONS(3541), 1, - anon_sym_LT, - ACTIONS(3643), 1, - anon_sym_EQ, - ACTIONS(3645), 1, + [6898] = 12, + ACTIONS(184), 1, + anon_sym_DQUOTE, + ACTIONS(186), 1, + anon_sym_SQUOTE, + ACTIONS(225), 1, anon_sym_EQ_GT, - STATE(2936), 1, - sym_arguments, - STATE(3032), 1, - sym_type_arguments, + ACTIONS(980), 1, + anon_sym_EQ, + ACTIONS(3431), 1, + sym_identifier, + STATE(1616), 1, + sym_nested_identifier, + STATE(1617), 1, + sym_string, + STATE(1711), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3517), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3527), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3503), 13, - sym__automatic_semicolon, + ACTIONS(154), 12, sym__ternary_qmark, - anon_sym_as, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3510), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145895,8 +144155,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 17, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -145904,44 +144165,50 @@ static const 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_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [6876] = 15, - ACTIONS(3552), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [6984] = 15, + ACTIONS(3536), 1, anon_sym_LBRACK, - ACTIONS(3555), 1, + ACTIONS(3539), 1, anon_sym_DOT, - ACTIONS(3561), 1, + ACTIONS(3545), 1, anon_sym_LT, - ACTIONS(3567), 1, + ACTIONS(3548), 1, anon_sym_extends, - ACTIONS(3603), 1, - anon_sym_QMARK, - ACTIONS(3616), 1, + ACTIONS(3588), 1, anon_sym_EQ_GT, - ACTIONS(3634), 1, + ACTIONS(3617), 1, + anon_sym_QMARK, + ACTIONS(3619), 1, anon_sym_EQ, - ACTIONS(3647), 1, + ACTIONS(3635), 1, anon_sym_RPAREN, - STATE(3035), 1, + STATE(2964), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3558), 2, + ACTIONS(3542), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3637), 2, + ACTIONS(3622), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(3503), 13, + ACTIONS(3496), 13, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -145955,7 +144222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3510), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145971,7 +144238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 18, + ACTIONS(3492), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145990,108 +144257,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [6968] = 6, - ACTIONS(3627), 1, - anon_sym_AT, - STATE(1275), 1, - aux_sym_export_statement_repeat1, - STATE(1285), 1, - sym_decorator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3622), 14, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3620), 42, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_await, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [7042] = 12, - ACTIONS(155), 1, - anon_sym_EQ_GT, - ACTIONS(185), 1, - anon_sym_DQUOTE, - ACTIONS(187), 1, - anon_sym_SQUOTE, - ACTIONS(991), 1, + [7076] = 9, + ACTIONS(834), 1, anon_sym_EQ, - ACTIONS(3438), 1, - sym_identifier, - STATE(1610), 1, - sym_nested_identifier, - STATE(1612), 1, - sym_string, - STATE(1713), 1, - sym__module, + ACTIONS(844), 1, + anon_sym_EQ_GT, + ACTIONS(1898), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(157), 12, - sym__ternary_qmark, - anon_sym_LPAREN, + ACTIONS(3605), 2, + anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(163), 15, + ACTIONS(3608), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146107,9 +144290,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(120), 18, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -146117,9 +144299,7 @@ static const 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_SLASH, @@ -146128,44 +144308,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [7128] = 12, - ACTIONS(155), 1, - anon_sym_EQ_GT, - ACTIONS(185), 1, - anon_sym_DQUOTE, - ACTIONS(187), 1, - anon_sym_SQUOTE, - ACTIONS(985), 1, - anon_sym_EQ, - ACTIONS(3438), 1, - sym_identifier, - STATE(1610), 1, - sym_nested_identifier, - STATE(1612), 1, - sym_string, - STATE(1713), 1, - sym__module, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(157), 12, + ACTIONS(154), 18, sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_COLON, + 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(163), 15, + anon_sym_satisfies, + [7156] = 6, + ACTIONS(3510), 1, + anon_sym_EQ, + ACTIONS(3518), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146181,9 +144352,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, - anon_sym_STAR, + ACTIONS(3496), 20, + sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + 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, + anon_sym_satisfies, + ACTIONS(3492), 21, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -146204,30 +144395,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [7214] = 12, - ACTIONS(155), 1, - anon_sym_EQ_GT, - ACTIONS(185), 1, - anon_sym_DQUOTE, - ACTIONS(187), 1, - anon_sym_SQUOTE, - ACTIONS(1051), 1, + [7229] = 7, + ACTIONS(3494), 1, anon_sym_EQ, - ACTIONS(3438), 1, - sym_identifier, - STATE(1610), 1, - sym_nested_identifier, - STATE(1612), 1, - sym_string, - STATE(1713), 1, - sym__module, + ACTIONS(3590), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(157), 12, + ACTIONS(3586), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3496), 15, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -146236,10 +144420,12 @@ static const 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, - ACTIONS(163), 15, + anon_sym_satisfies, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146255,9 +144441,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(3492), 21, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -146278,107 +144463,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [7300] = 6, - ACTIONS(3523), 1, - anon_sym_EQ_GT, - ACTIONS(3533), 1, + [7304] = 14, + ACTIONS(3510), 1, anon_sym_EQ, + ACTIONS(3518), 1, + anon_sym_EQ_GT, + ACTIONS(3536), 1, + anon_sym_LBRACK, + ACTIONS(3539), 1, + anon_sym_DOT, + ACTIONS(3545), 1, + anon_sym_LT, + ACTIONS(3548), 1, + anon_sym_extends, + ACTIONS(3586), 1, + anon_sym_COLON, + STATE(2964), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3510), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(3503), 20, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - 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, - anon_sym_satisfies, - ACTIONS(3499), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3542), 2, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_QMARK_QMARK, - [7373] = 14, - ACTIONS(3535), 1, - anon_sym_LPAREN, - ACTIONS(3537), 1, - anon_sym_DOT, - ACTIONS(3539), 1, - anon_sym_QMARK_DOT, - ACTIONS(3541), 1, - anon_sym_LT, - ACTIONS(3650), 1, - anon_sym_EQ, - ACTIONS(3652), 1, - anon_sym_EQ_GT, - STATE(2936), 1, - sym_arguments, - STATE(3032), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3517), 3, + ACTIONS(3638), 2, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3527), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3503), 12, + anon_sym_RBRACK, + ACTIONS(3496), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -146388,7 +144503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3510), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146404,7 +144519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 17, + ACTIONS(3492), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146421,102 +144536,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [7462] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3656), 15, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3654), 43, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_await, - anon_sym_yield, - anon_sym_DOT, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [7529] = 14, - ACTIONS(3533), 1, + [7393] = 13, + ACTIONS(3494), 1, anon_sym_EQ, - ACTIONS(3535), 1, - anon_sym_LPAREN, - ACTIONS(3537), 1, - anon_sym_DOT, + ACTIONS(3536), 1, + anon_sym_LBRACK, ACTIONS(3539), 1, - anon_sym_QMARK_DOT, - ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3545), 1, anon_sym_LT, - ACTIONS(3616), 1, + ACTIONS(3586), 1, + anon_sym_COLON, + ACTIONS(3588), 1, anon_sym_EQ_GT, - STATE(2936), 1, - sym_arguments, - STATE(3032), 1, + STATE(2964), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3527), 2, + ACTIONS(3542), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3517), 4, + ACTIONS(3548), 3, anon_sym_COMMA, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_extends, - ACTIONS(3503), 11, + ACTIONS(3496), 13, sym__ternary_qmark, anon_sym_as, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -146526,7 +144577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3510), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146542,7 +144593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 18, + ACTIONS(3492), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146561,91 +144612,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [7618] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3660), 15, - anon_sym_LBRACE, - anon_sym_BANG, + [7480] = 14, + ACTIONS(3514), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3658), 43, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_await, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(3516), 1, + anon_sym_DOT, + ACTIONS(3520), 1, + anon_sym_QMARK_DOT, + ACTIONS(3524), 1, anon_sym_LT, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - [7685] = 7, - ACTIONS(3603), 1, - anon_sym_QMARK, - ACTIONS(3634), 1, + ACTIONS(3642), 1, anon_sym_EQ, + ACTIONS(3644), 1, + anon_sym_EQ_GT, + STATE(2917), 1, + sym_arguments, + STATE(3015), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3637), 5, + ACTIONS(3512), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3503), 15, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3522), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3496), 12, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -146655,7 +144653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3510), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146671,7 +144669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 21, + ACTIONS(3492), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146680,131 +144678,27 @@ static const 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_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, anon_sym_QMARK_QMARK, - [7760] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3664), 15, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3662), 43, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_await, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - [7827] = 7, - ACTIONS(3533), 1, - anon_sym_EQ, - ACTIONS(3618), 1, - anon_sym_QMARK, + [7569] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3614), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3503), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3510), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(3499), 21, + ACTIONS(3474), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3458), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -146825,35 +144719,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [7902] = 8, - ACTIONS(687), 1, - anon_sym_EQ_GT, - ACTIONS(855), 1, - anon_sym_EQ, - ACTIONS(857), 1, - anon_sym_COLON, - ACTIONS(3477), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(157), 15, - sym__automatic_semicolon, + ACTIONS(3460), 32, sym__ternary_qmark, + 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_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(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146869,61 +144743,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_QMARK_QMARK, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [7979] = 12, - ACTIONS(3552), 1, - anon_sym_LBRACK, - ACTIONS(3555), 1, + [7638] = 14, + ACTIONS(3514), 1, + anon_sym_LPAREN, + ACTIONS(3516), 1, anon_sym_DOT, - ACTIONS(3561), 1, + ACTIONS(3520), 1, + anon_sym_QMARK_DOT, + ACTIONS(3524), 1, anon_sym_LT, - ACTIONS(3643), 1, + ACTIONS(3646), 1, anon_sym_EQ, - ACTIONS(3645), 1, + ACTIONS(3648), 1, anon_sym_EQ_GT, - STATE(3035), 1, + STATE(2917), 1, + sym_arguments, + STATE(3015), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3567), 2, + ACTIONS(3512), 3, anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3558), 3, + ACTIONS(3522), 3, anon_sym_AMP, anon_sym_PIPE, anon_sym_GT, - ACTIONS(3503), 15, - sym__automatic_semicolon, + ACTIONS(3496), 12, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_QMARK_DOT, + anon_sym_of, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -146933,7 +144793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3510), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146949,7 +144809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 17, + ACTIONS(3492), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146967,16 +144827,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8064] = 4, + [7727] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3493), 4, + ACTIONS(3478), 4, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(3469), 22, + ACTIONS(3462), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -146999,7 +144859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(3471), 32, + ACTIONS(3464), 32, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -147032,43 +144892,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [8133] = 11, - ACTIONS(221), 1, - anon_sym_EQ, - ACTIONS(227), 1, + [7796] = 8, + ACTIONS(682), 1, anon_sym_EQ_GT, - ACTIONS(725), 1, - anon_sym_QMARK, - ACTIONS(3587), 1, - anon_sym_LBRACK, + ACTIONS(858), 1, + anon_sym_EQ, + ACTIONS(860), 1, + anon_sym_COLON, + ACTIONS(3456), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(224), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1765), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(3590), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(157), 14, + ACTIONS(154), 15, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(163), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147084,8 +144936,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 19, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -147093,7 +144946,9 @@ static const 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_SLASH, @@ -147104,38 +144959,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [8216] = 14, - ACTIONS(3535), 1, - anon_sym_LPAREN, - ACTIONS(3537), 1, - anon_sym_DOT, - ACTIONS(3539), 1, - anon_sym_QMARK_DOT, - ACTIONS(3541), 1, - anon_sym_LT, - ACTIONS(3666), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [7873] = 11, + ACTIONS(220), 1, anon_sym_EQ, - ACTIONS(3668), 1, + ACTIONS(225), 1, anon_sym_EQ_GT, - STATE(2936), 1, - sym_arguments, - STATE(3032), 1, - sym_type_arguments, + ACTIONS(720), 1, + anon_sym_QMARK, + ACTIONS(3605), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3517), 3, + ACTIONS(223), 2, anon_sym_COMMA, - anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(1898), 2, + anon_sym_RPAREN, anon_sym_extends, - ACTIONS(3527), 3, + ACTIONS(3608), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3503), 12, + ACTIONS(154), 14, sym__ternary_qmark, anon_sym_as, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -147145,7 +144997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3510), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147161,7 +145013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 17, + ACTIONS(120), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147176,113 +145028,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [8305] = 12, - ACTIONS(3555), 1, - anon_sym_DOT, - ACTIONS(3561), 1, - anon_sym_LT, - ACTIONS(3567), 1, - anon_sym_extends, - ACTIONS(3593), 1, - anon_sym_EQ, - ACTIONS(3595), 1, - anon_sym_EQ_GT, - STATE(3035), 1, - sym_type_arguments, + [7956] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3552), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3558), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3503), 15, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(3652), 16, + anon_sym_LBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, - 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_LBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_LT, + anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3510), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(3499), 17, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3650), 42, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [8390] = 14, - ACTIONS(3515), 1, - anon_sym_EQ, - ACTIONS(3523), 1, - anon_sym_EQ_GT, - ACTIONS(3535), 1, - anon_sym_LPAREN, - ACTIONS(3537), 1, - anon_sym_DOT, - ACTIONS(3539), 1, - anon_sym_QMARK_DOT, - ACTIONS(3541), 1, - anon_sym_LT, - STATE(2936), 1, - sym_arguments, - STATE(3032), 1, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + [8023] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3656), 16, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3654), 42, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + [8090] = 12, + ACTIONS(3539), 1, + anon_sym_DOT, + ACTIONS(3545), 1, + anon_sym_LT, + ACTIONS(3548), 1, + anon_sym_extends, + ACTIONS(3601), 1, + anon_sym_EQ, + ACTIONS(3603), 1, + anon_sym_EQ_GT, + STATE(2964), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3527), 2, + ACTIONS(3536), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3542), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3517), 3, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3503), 12, + anon_sym_GT, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -147292,7 +145200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3510), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147308,7 +145216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 18, + ACTIONS(3492), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147325,49 +145233,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, anon_sym_QMARK_QMARK, - [8479] = 14, - ACTIONS(3515), 1, - anon_sym_EQ, - ACTIONS(3523), 1, - anon_sym_EQ_GT, - ACTIONS(3552), 1, - anon_sym_LBRACK, - ACTIONS(3555), 1, - anon_sym_DOT, - ACTIONS(3561), 1, - anon_sym_LT, - ACTIONS(3567), 1, + [8175] = 4, + ACTIONS(3474), 1, anon_sym_extends, - ACTIONS(3614), 1, - anon_sym_COLON, - STATE(3035), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3558), 2, + ACTIONS(3458), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(3670), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3503), 13, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + ACTIONS(3460), 35, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147383,8 +145290,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 18, + 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_satisfies, + [8244] = 4, + ACTIONS(3478), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3462), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -147392,58 +145315,84 @@ static const 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_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [8568] = 14, - ACTIONS(3535), 1, + ACTIONS(3464), 35, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3537), 1, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(3539), 1, anon_sym_QMARK_DOT, - ACTIONS(3541), 1, - anon_sym_LT, - ACTIONS(3674), 1, - anon_sym_EQ, - ACTIONS(3676), 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, + anon_sym_satisfies, + [8313] = 8, + ACTIONS(682), 1, anon_sym_EQ_GT, - STATE(2936), 1, - sym_arguments, - STATE(3032), 1, - sym_type_arguments, + ACTIONS(858), 1, + anon_sym_EQ, + ACTIONS(878), 1, + anon_sym_COLON, + ACTIONS(3456), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3517), 3, + ACTIONS(154), 15, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3527), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3503), 12, - sym__ternary_qmark, - anon_sym_as, - 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, - anon_sym_satisfies, - ACTIONS(3510), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147459,8 +145408,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 17, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -147468,24 +145418,62 @@ static const 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_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [8657] = 6, - ACTIONS(3515), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [8390] = 14, + ACTIONS(3494), 1, anon_sym_EQ, - ACTIONS(3523), 1, + ACTIONS(3514), 1, + anon_sym_LPAREN, + ACTIONS(3516), 1, + anon_sym_DOT, + ACTIONS(3520), 1, + anon_sym_QMARK_DOT, + ACTIONS(3524), 1, + anon_sym_LT, + ACTIONS(3588), 1, anon_sym_EQ_GT, + STATE(2917), 1, + sym_arguments, + STATE(3015), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3510), 15, + ACTIONS(3522), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3512), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3496), 11, + sym__ternary_qmark, + anon_sym_as, + 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_satisfies, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147501,28 +145489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 20, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - 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, - anon_sym_satisfies, - ACTIONS(3499), 21, + ACTIONS(3492), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147531,28 +145498,56 @@ static const 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_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [8730] = 6, - ACTIONS(841), 1, + [8479] = 12, + ACTIONS(3536), 1, + anon_sym_LBRACK, + ACTIONS(3539), 1, + anon_sym_DOT, + ACTIONS(3545), 1, + anon_sym_LT, + ACTIONS(3582), 1, anon_sym_EQ, - ACTIONS(851), 1, + ACTIONS(3584), 1, anon_sym_EQ_GT, + STATE(2964), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(163), 15, + ACTIONS(3548), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3542), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3496), 15, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + 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_satisfies, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147568,28 +145563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(157), 20, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - 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, - anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3492), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147598,60 +145572,46 @@ static const 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_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, anon_sym_QMARK_QMARK, - [8803] = 4, - ACTIONS(3491), 1, - anon_sym_extends, + [8564] = 7, + ACTIONS(3617), 1, + anon_sym_QMARK, + ACTIONS(3619), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3473), 22, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_QMARK_QMARK, - ACTIONS(3475), 35, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(3622), 5, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3496), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147667,27 +145627,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [8872] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3491), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3473), 22, + ACTIONS(3492), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -147708,68 +145649,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(3475), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + [8639] = 14, + ACTIONS(3514), 1, anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3516), 1, anon_sym_DOT, + ACTIONS(3520), 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_satisfies, - [8941] = 8, - ACTIONS(687), 1, - anon_sym_EQ_GT, - ACTIONS(855), 1, + ACTIONS(3524), 1, + anon_sym_LT, + ACTIONS(3658), 1, anon_sym_EQ, - ACTIONS(869), 1, - anon_sym_COLON, - ACTIONS(3477), 1, - sym_identifier, + ACTIONS(3660), 1, + anon_sym_EQ_GT, + STATE(2917), 1, + sym_arguments, + STATE(3015), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(157), 15, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(3512), 3, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_extends, + ACTIONS(3522), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3496), 12, + sym__ternary_qmark, + anon_sym_as, + 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(163), 15, + anon_sym_satisfies, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147785,9 +145706,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(3492), 17, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -147795,32 +145715,34 @@ static const 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_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [9018] = 3, + [8728] = 7, + ACTIONS(3628), 1, + anon_sym_AT, + ACTIONS(3662), 1, + anon_sym_class, + STATE(1269), 1, + aux_sym_export_statement_repeat1, + STATE(1344), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3577), 15, + ACTIONS(3626), 14, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACK, - sym_glimmer_opening_tag, anon_sym_DOT_DOT_DOT, + anon_sym_LT, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -147829,8 +145751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3575), 43, + ACTIONS(3624), 40, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -147839,7 +145760,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_await, anon_sym_yield, - anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, @@ -147847,7 +145767,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_void, anon_sym_delete, sym_identifier, @@ -147873,16 +145792,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [9085] = 6, - ACTIONS(831), 1, + [8803] = 14, + ACTIONS(3510), 1, anon_sym_EQ, - ACTIONS(851), 1, + ACTIONS(3514), 1, + anon_sym_LPAREN, + ACTIONS(3516), 1, + anon_sym_DOT, + ACTIONS(3518), 1, anon_sym_EQ_GT, + ACTIONS(3520), 1, + anon_sym_QMARK_DOT, + ACTIONS(3524), 1, + anon_sym_LT, + STATE(2917), 1, + sym_arguments, + STATE(3015), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(163), 15, + ACTIONS(3522), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3512), 3, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3496), 12, + sym__ternary_qmark, + 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_satisfies, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147898,28 +145848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(157), 20, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - 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, - anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3492), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147928,37 +145857,25 @@ static const 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_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [9158] = 9, - ACTIONS(875), 1, + [8892] = 6, + ACTIONS(824), 1, anon_sym_EQ, - ACTIONS(881), 1, + ACTIONS(844), 1, anon_sym_EQ_GT, - ACTIONS(1765), 1, - anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3587), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3590), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(163), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147974,13 +145891,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(157), 17, - sym__automatic_semicolon, + ACTIONS(154), 20, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -147992,7 +145912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 18, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148001,7 +145921,9 @@ static const 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_SLASH, @@ -148010,25 +145932,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [9237] = 9, - ACTIONS(687), 1, - anon_sym_EQ_GT, - ACTIONS(855), 1, + [8965] = 9, + ACTIONS(866), 1, anon_sym_EQ, - ACTIONS(1765), 1, + ACTIONS(872), 1, + anon_sym_EQ_GT, + ACTIONS(1898), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3587), 2, + ACTIONS(3605), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3590), 3, + ACTIONS(3608), 3, anon_sym_AMP, anon_sym_PIPE, anon_sym_GT, - ACTIONS(163), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148044,13 +145967,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(157), 17, + ACTIONS(154), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -148062,7 +145985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 18, + ACTIONS(120), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148081,46 +146004,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9316] = 12, - ACTIONS(3555), 1, - anon_sym_DOT, - ACTIONS(3561), 1, - anon_sym_LT, - ACTIONS(3567), 1, - anon_sym_extends, - ACTIONS(3630), 1, + [9044] = 6, + ACTIONS(3494), 1, anon_sym_EQ, - ACTIONS(3632), 1, + ACTIONS(3518), 1, anon_sym_EQ_GT, - STATE(3035), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3552), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3558), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3503), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - 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, - anon_sym_satisfies, - anon_sym_implements, - ACTIONS(3510), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148136,7 +146028,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 17, + ACTIONS(3496), 20, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + 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, + anon_sym_satisfies, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148145,43 +146058,46 @@ static const 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_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [9401] = 13, - ACTIONS(3533), 1, - anon_sym_EQ, - ACTIONS(3552), 1, - anon_sym_LBRACK, - ACTIONS(3555), 1, + [9117] = 12, + ACTIONS(3539), 1, anon_sym_DOT, - ACTIONS(3561), 1, + ACTIONS(3545), 1, anon_sym_LT, - ACTIONS(3614), 1, - anon_sym_COLON, - ACTIONS(3616), 1, + ACTIONS(3548), 1, + anon_sym_extends, + ACTIONS(3592), 1, + anon_sym_EQ, + ACTIONS(3594), 1, anon_sym_EQ_GT, - STATE(3035), 1, + STATE(2964), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3558), 2, + ACTIONS(3536), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3542), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3567), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3503), 13, + anon_sym_GT, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -148193,7 +146109,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3510), 15, + anon_sym_implements, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148209,7 +146126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 18, + ACTIONS(3492), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148226,45 +146143,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, anon_sym_QMARK_QMARK, - [9488] = 11, - ACTIONS(119), 1, - anon_sym_EQ, - ACTIONS(155), 1, + [9202] = 9, + ACTIONS(682), 1, anon_sym_EQ_GT, - ACTIONS(725), 1, - anon_sym_QMARK, - ACTIONS(3587), 1, - anon_sym_LBRACK, + ACTIONS(858), 1, + anon_sym_EQ, + ACTIONS(1898), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(128), 2, + ACTIONS(3605), 2, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1765), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(3590), 2, + anon_sym_LBRACK, + ACTIONS(3608), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(157), 14, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - 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, - anon_sym_satisfies, - ACTIONS(163), 15, + anon_sym_GT, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148280,7 +146177,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 19, + ACTIONS(154), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + 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, + anon_sym_satisfies, + ACTIONS(120), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148298,49 +146213,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, anon_sym_QMARK_QMARK, - [9571] = 4, - ACTIONS(3493), 1, - anon_sym_extends, + [9281] = 6, + ACTIONS(834), 1, + anon_sym_EQ, + ACTIONS(844), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3469), 22, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_QMARK_QMARK, - ACTIONS(3471), 35, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148356,6 +146238,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(154), 20, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + 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, @@ -148365,34 +146259,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [9640] = 12, - ACTIONS(3552), 1, - anon_sym_LBRACK, - ACTIONS(3555), 1, - anon_sym_DOT, - ACTIONS(3561), 1, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, - ACTIONS(3650), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + [9354] = 11, + ACTIONS(117), 1, anon_sym_EQ, - ACTIONS(3652), 1, + ACTIONS(152), 1, anon_sym_EQ_GT, - STATE(3035), 1, - sym_type_arguments, + ACTIONS(720), 1, + anon_sym_QMARK, + ACTIONS(3605), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3567), 2, + ACTIONS(126), 2, anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1898), 2, + anon_sym_RPAREN, anon_sym_extends, - ACTIONS(3558), 3, + ACTIONS(3608), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3503), 14, + ACTIONS(154), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -148403,7 +146317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3510), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148419,7 +146333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 17, + ACTIONS(120), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148434,18 +146348,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [9724] = 6, - ACTIONS(687), 1, + [9437] = 9, + ACTIONS(152), 1, anon_sym_EQ_GT, - ACTIONS(855), 1, + ACTIONS(880), 1, anon_sym_EQ, + ACTIONS(1898), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(163), 15, + ACTIONS(3605), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3608), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148461,15 +146386,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(157), 19, - sym__automatic_semicolon, + ACTIONS(154), 16, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -148481,7 +146403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(120), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148490,9 +146412,7 @@ static const 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_SLASH, @@ -148501,49 +146421,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, anon_sym_QMARK_QMARK, - [9796] = 14, - ACTIONS(3533), 1, - anon_sym_EQ, - ACTIONS(3535), 1, - anon_sym_LPAREN, - ACTIONS(3537), 1, - anon_sym_DOT, - ACTIONS(3539), 1, - anon_sym_QMARK_DOT, - ACTIONS(3541), 1, - anon_sym_LT, - ACTIONS(3616), 1, + [9515] = 6, + ACTIONS(682), 1, anon_sym_EQ_GT, - STATE(2936), 1, - sym_arguments, - STATE(3032), 1, - sym_type_arguments, + ACTIONS(858), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3517), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3527), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3503), 11, - sym__ternary_qmark, - anon_sym_as, - 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_satisfies, - ACTIONS(3510), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148559,7 +146446,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 17, + ACTIONS(154), 19, + sym__automatic_semicolon, + sym__ternary_qmark, + 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_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_satisfies, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148568,26 +146475,28 @@ static const 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_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [9884] = 7, - ACTIONS(857), 1, - anon_sym_COLON, - ACTIONS(3508), 1, + [9587] = 6, + ACTIONS(682), 1, anon_sym_EQ_GT, - ACTIONS(3573), 1, + ACTIONS(824), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3510), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148603,11 +146512,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 18, + ACTIONS(154), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -148622,7 +146532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148644,17 +146554,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [9958] = 7, - ACTIONS(687), 1, - anon_sym_EQ_GT, - ACTIONS(855), 1, + [9659] = 12, + ACTIONS(3510), 1, anon_sym_EQ, - ACTIONS(857), 1, - anon_sym_COLON, + ACTIONS(3518), 1, + anon_sym_EQ_GT, + ACTIONS(3539), 1, + anon_sym_DOT, + ACTIONS(3545), 1, + anon_sym_LT, + ACTIONS(3548), 1, + anon_sym_extends, + STATE(2964), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(163), 15, + ACTIONS(3536), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(3542), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3496), 14, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + 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, + anon_sym_satisfies, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148670,26 +146607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(157), 18, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3492), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148698,30 +146616,55 @@ static const 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_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [10032] = 7, - ACTIONS(687), 1, - anon_sym_EQ_GT, - ACTIONS(855), 1, - anon_sym_EQ, - ACTIONS(869), 1, - anon_sym_COLON, + [9743] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(163), 15, + ACTIONS(3480), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + ACTIONS(3482), 35, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148737,16 +146680,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(157), 18, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -148756,8 +146689,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + [9809] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3484), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -148778,41 +146716,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [10106] = 10, - ACTIONS(155), 1, - anon_sym_EQ_GT, - ACTIONS(831), 1, - anon_sym_EQ, - ACTIONS(833), 1, - anon_sym_COLON, - ACTIONS(3587), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3590), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1765), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(157), 14, + ACTIONS(3486), 35, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148828,35 +146743,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 19, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - 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_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_QMARK_QMARK, - [10186] = 6, - ACTIONS(3533), 1, + 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_satisfies, + [9875] = 6, + ACTIONS(866), 1, anon_sym_EQ, - ACTIONS(3571), 1, + ACTIONS(872), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3510), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148872,7 +146776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 19, + ACTIONS(154), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -148892,7 +146796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148914,15 +146818,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [10258] = 6, - ACTIONS(3508), 1, - anon_sym_EQ_GT, - ACTIONS(3533), 1, + [9947] = 6, + ACTIONS(3494), 1, anon_sym_EQ, + ACTIONS(3580), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3510), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148938,14 +146842,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 19, + ACTIONS(3496), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -148958,7 +146862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148980,45 +146884,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [10330] = 3, + [10019] = 8, + ACTIONS(3603), 1, + anon_sym_EQ_GT, + ACTIONS(3611), 1, + anon_sym_EQ, + ACTIONS(3617), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3465), 22, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_QMARK_QMARK, - ACTIONS(3467), 35, - sym__automatic_semicolon, + ACTIONS(3614), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149034,24 +146930,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [10396] = 6, - ACTIONS(3508), 1, + ACTIONS(3492), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + [10095] = 7, + ACTIONS(878), 1, + anon_sym_COLON, + ACTIONS(3505), 1, anon_sym_EQ_GT, - ACTIONS(3573), 1, + ACTIONS(3562), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3510), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149067,12 +146978,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 19, + ACTIONS(3496), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -149087,7 +146997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149109,15 +147019,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [10468] = 6, - ACTIONS(687), 1, + [10169] = 7, + ACTIONS(682), 1, anon_sym_EQ_GT, - ACTIONS(831), 1, + ACTIONS(858), 1, anon_sym_EQ, + ACTIONS(878), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(163), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149133,12 +147045,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(157), 19, + ACTIONS(154), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -149153,7 +147064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149175,89 +147086,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [10540] = 4, + [10243] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3493), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3469), 22, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(3572), 15, + anon_sym_LBRACE, anon_sym_BANG, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_QMARK_QMARK, - ACTIONS(3471), 32, - sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, 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_DOT_DOT_DOT, + anon_sym_LT, + anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_satisfies, - [10608] = 8, - ACTIONS(833), 1, - anon_sym_COLON, - ACTIONS(841), 1, - anon_sym_EQ, - ACTIONS(851), 1, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3570), 42, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + [10309] = 10, + ACTIONS(225), 1, anon_sym_EQ_GT, + ACTIONS(824), 1, + anon_sym_EQ, + ACTIONS(826), 1, + anon_sym_COLON, + ACTIONS(3605), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(892), 3, + ACTIONS(3608), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1898), 3, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_RBRACK, - ACTIONS(157), 15, + anon_sym_extends, + ACTIONS(154), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -149269,7 +147183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(163), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149285,39 +147199,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_QMARK_QMARK, - [10684] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3491), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3473), 22, + ACTIONS(120), 19, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -149325,9 +147208,7 @@ static const 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_SLASH, @@ -149338,63 +147219,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(3475), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, - 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_satisfies, - [10752] = 11, - ACTIONS(833), 1, - anon_sym_COLON, - ACTIONS(841), 1, + [10389] = 8, + ACTIONS(117), 1, anon_sym_EQ, - ACTIONS(851), 1, + ACTIONS(152), 1, anon_sym_EQ_GT, - ACTIONS(1765), 1, - anon_sym_extends, - ACTIONS(3587), 1, - anon_sym_LBRACK, + ACTIONS(720), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3590), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3678), 2, + ACTIONS(126), 3, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(157), 14, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(154), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -149406,7 +147249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(163), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149422,7 +147265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 19, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149431,7 +147274,9 @@ static const 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_SLASH, @@ -149442,46 +147287,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [10834] = 14, - ACTIONS(3533), 1, + [10465] = 6, + ACTIONS(3494), 1, anon_sym_EQ, - ACTIONS(3535), 1, - anon_sym_LPAREN, - ACTIONS(3537), 1, - anon_sym_DOT, - ACTIONS(3539), 1, - anon_sym_QMARK_DOT, - ACTIONS(3541), 1, - anon_sym_LT, - ACTIONS(3616), 1, + ACTIONS(3505), 1, anon_sym_EQ_GT, - STATE(2936), 1, - sym_arguments, - STATE(3032), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3527), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3517), 3, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3503), 11, - sym__ternary_qmark, - anon_sym_as, - 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_satisfies, - ACTIONS(3510), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149497,7 +147311,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 18, + ACTIONS(3496), 19, + sym__automatic_semicolon, + sym__ternary_qmark, + 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_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_satisfies, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149506,21 +147340,24 @@ static const 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_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [10922] = 3, + [10537] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2502), 22, + ACTIONS(3458), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -149543,7 +147380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(2500), 35, + ACTIONS(3460), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -149579,24 +147416,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [10988] = 9, - ACTIONS(227), 1, - anon_sym_EQ_GT, - ACTIONS(890), 1, + [10603] = 5, + ACTIONS(3510), 1, anon_sym_EQ, - ACTIONS(1765), 1, - anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3587), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3590), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(163), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149612,12 +147438,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(157), 16, + ACTIONS(3496), 20, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -149629,7 +147459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 18, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149638,7 +147468,9 @@ static const 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_SLASH, @@ -149647,14 +147479,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [11066] = 5, - ACTIONS(3515), 1, + [10673] = 12, + ACTIONS(3536), 1, + anon_sym_LBRACK, + ACTIONS(3539), 1, + anon_sym_DOT, + ACTIONS(3545), 1, + anon_sym_LT, + ACTIONS(3642), 1, anon_sym_EQ, + ACTIONS(3644), 1, + anon_sym_EQ_GT, + STATE(2964), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3510), 15, + ACTIONS(3548), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3542), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3496), 14, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_COLON, + 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_satisfies, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149670,16 +147535,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 20, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3492), 17, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + 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_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [10757] = 6, + ACTIONS(3505), 1, + anon_sym_EQ_GT, + ACTIONS(3562), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3498), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(3496), 19, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -149691,7 +147597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149713,35 +147619,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [11136] = 12, - ACTIONS(3552), 1, - anon_sym_LBRACK, - ACTIONS(3555), 1, - anon_sym_DOT, - ACTIONS(3561), 1, - anon_sym_LT, - ACTIONS(3666), 1, - anon_sym_EQ, - ACTIONS(3668), 1, - anon_sym_EQ_GT, - STATE(3035), 1, - sym_type_arguments, + [10829] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3567), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3558), 3, + ACTIONS(3462), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, + anon_sym_CARET, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3503), 14, + anon_sym_QMARK_QMARK, + ACTIONS(3464), 35, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_SEMI, + anon_sym_of, + 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, @@ -149751,7 +147682,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3510), 15, + [10895] = 7, + ACTIONS(682), 1, + anon_sym_EQ_GT, + ACTIONS(858), 1, + anon_sym_EQ, + ACTIONS(860), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149767,7 +147708,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 17, + ACTIONS(154), 18, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149776,36 +147736,49 @@ static const 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_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [11220] = 8, - ACTIONS(3595), 1, - anon_sym_EQ_GT, - ACTIONS(3597), 1, + [10969] = 14, + ACTIONS(3494), 1, anon_sym_EQ, - ACTIONS(3603), 1, - anon_sym_QMARK, + ACTIONS(3514), 1, + anon_sym_LPAREN, + ACTIONS(3516), 1, + anon_sym_DOT, + ACTIONS(3520), 1, + anon_sym_QMARK_DOT, + ACTIONS(3524), 1, + anon_sym_LT, + ACTIONS(3588), 1, + anon_sym_EQ_GT, + STATE(2917), 1, + sym_arguments, + STATE(3015), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3600), 3, - anon_sym_COMMA, + ACTIONS(3522), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3512), 3, anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3503), 15, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3496), 11, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -149815,7 +147788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3510), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149831,7 +147804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 21, + ACTIONS(3492), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149840,37 +147813,34 @@ static const 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_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [11296] = 9, - ACTIONS(939), 1, + [11057] = 9, + ACTIONS(918), 1, anon_sym_EQ, - ACTIONS(945), 1, + ACTIONS(924), 1, anon_sym_EQ_GT, - ACTIONS(1765), 1, - anon_sym_extends, + ACTIONS(3605), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3587), 2, + ACTIONS(1898), 2, anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3590), 3, + anon_sym_extends, + ACTIONS(3608), 3, anon_sym_AMP, anon_sym_PIPE, anon_sym_GT, - ACTIONS(163), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149886,11 +147856,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(157), 16, + ACTIONS(154), 16, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -149902,8 +147873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(122), 18, + ACTIONS(120), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149922,15 +147892,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11374] = 6, - ACTIONS(3569), 1, + [11135] = 6, + ACTIONS(3578), 1, anon_sym_EQ, - ACTIONS(3571), 1, + ACTIONS(3580), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3510), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149946,7 +147916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 19, + ACTIONS(3496), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -149966,7 +147936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149988,11 +147958,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [11446] = 3, + [11207] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3469), 22, + ACTIONS(3470), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -150015,7 +147985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(3471), 35, + ACTIONS(3472), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -150051,11 +148021,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [11512] = 3, + [11273] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3473), 22, + ACTIONS(2509), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -150078,7 +148048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(3475), 35, + ACTIONS(2507), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -150114,13 +148084,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [11578] = 5, - ACTIONS(3533), 1, + [11339] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3667), 15, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3665), 42, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + [11405] = 11, + ACTIONS(826), 1, + anon_sym_COLON, + ACTIONS(834), 1, + anon_sym_EQ, + ACTIONS(844), 1, + anon_sym_EQ_GT, + ACTIONS(1898), 1, + anon_sym_extends, + ACTIONS(3605), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3608), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3669), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(154), 14, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + 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, + anon_sym_satisfies, + ACTIONS(160), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(120), 19, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + 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_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + [11487] = 5, + ACTIONS(3494), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3510), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150136,7 +148240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 20, + ACTIONS(3496), 20, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -150157,7 +148261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150179,11 +148283,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [11648] = 3, + [11557] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3487), 22, + ACTIONS(2531), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -150206,7 +148310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(3489), 35, + ACTIONS(2529), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -150242,30 +148346,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [11714] = 12, - ACTIONS(3552), 1, + [11623] = 12, + ACTIONS(3536), 1, anon_sym_LBRACK, - ACTIONS(3555), 1, + ACTIONS(3539), 1, anon_sym_DOT, - ACTIONS(3561), 1, + ACTIONS(3545), 1, anon_sym_LT, - ACTIONS(3674), 1, + ACTIONS(3658), 1, anon_sym_EQ, - ACTIONS(3676), 1, + ACTIONS(3660), 1, anon_sym_EQ_GT, - STATE(3035), 1, + STATE(2964), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3567), 2, + ACTIONS(3548), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(3558), 3, + ACTIONS(3542), 3, anon_sym_AMP, anon_sym_PIPE, anon_sym_GT, - ACTIONS(3503), 14, + ACTIONS(3496), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -150280,7 +148384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3510), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150296,7 +148400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 17, + ACTIONS(3492), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150314,13 +148418,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11798] = 3, + [11707] = 6, + ACTIONS(824), 1, + anon_sym_EQ, + ACTIONS(872), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2522), 22, + ACTIONS(160), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(154), 19, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(120), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -150341,18 +148484,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(2520), 35, - sym__automatic_semicolon, + [11779] = 10, + ACTIONS(844), 1, + anon_sym_EQ_GT, + ACTIONS(907), 1, + anon_sym_EQ, + ACTIONS(1900), 1, + anon_sym_QMARK, + ACTIONS(3605), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3608), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1898), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(154), 14, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150368,20 +148534,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [11864] = 3, + ACTIONS(120), 19, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + 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_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + [11859] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3495), 22, + ACTIONS(3474), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3458), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -150404,15 +148585,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(3497), 35, - sym__automatic_semicolon, + ACTIONS(3460), 32, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -150440,26 +148618,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [11930] = 8, - ACTIONS(221), 1, + [11927] = 12, + ACTIONS(3536), 1, + anon_sym_LBRACK, + ACTIONS(3539), 1, + anon_sym_DOT, + ACTIONS(3545), 1, + anon_sym_LT, + ACTIONS(3646), 1, anon_sym_EQ, - ACTIONS(227), 1, + ACTIONS(3648), 1, anon_sym_EQ_GT, - ACTIONS(725), 1, - anon_sym_QMARK, + STATE(2964), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(224), 3, + ACTIONS(3548), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(157), 15, + anon_sym_extends, + ACTIONS(3542), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3496), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, + anon_sym_of, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -150470,7 +148656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(163), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150486,7 +148672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, + ACTIONS(3492), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150495,46 +148681,35 @@ static const 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_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, anon_sym_QMARK_QMARK, - [12006] = 12, - ACTIONS(3515), 1, + [12011] = 8, + ACTIONS(826), 1, + anon_sym_COLON, + ACTIONS(834), 1, anon_sym_EQ, - ACTIONS(3523), 1, + ACTIONS(844), 1, anon_sym_EQ_GT, - ACTIONS(3555), 1, - anon_sym_DOT, - ACTIONS(3561), 1, - anon_sym_LT, - ACTIONS(3567), 1, - anon_sym_extends, - STATE(3035), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3552), 2, + ACTIONS(899), 3, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(3558), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3503), 14, + anon_sym_RBRACK, + ACTIONS(154), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -150545,7 +148720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3510), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150561,32 +148736,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 18, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - 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_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_QMARK_QMARK, - [12090] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3483), 22, + ACTIONS(120), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -150607,51 +148758,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(3485), 35, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - 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_satisfies, - [12156] = 6, - ACTIONS(831), 1, - anon_sym_EQ, - ACTIONS(881), 1, + [12087] = 7, + ACTIONS(860), 1, + anon_sym_COLON, + ACTIONS(3505), 1, anon_sym_EQ_GT, + ACTIONS(3562), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(163), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150667,14 +148784,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(157), 19, + ACTIONS(3496), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -150687,7 +148803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150709,15 +148825,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [12228] = 6, - ACTIONS(875), 1, + [12161] = 9, + ACTIONS(932), 1, anon_sym_EQ, - ACTIONS(881), 1, + ACTIONS(938), 1, anon_sym_EQ_GT, + ACTIONS(1898), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(163), 15, + ACTIONS(3605), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3608), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150733,15 +148858,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(157), 19, - sym__automatic_semicolon, + ACTIONS(154), 16, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -150753,7 +148874,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + anon_sym_implements, + ACTIONS(120), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150762,9 +148884,7 @@ static const 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_SLASH, @@ -150773,26 +148893,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, anon_sym_QMARK_QMARK, - [12300] = 9, - ACTIONS(925), 1, - anon_sym_EQ, - ACTIONS(931), 1, - anon_sym_EQ_GT, - ACTIONS(3587), 1, + [12239] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3675), 15, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3673), 42, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + [12305] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1765), 2, + ACTIONS(3478), 3, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_extends, - ACTIONS(3590), 3, + ACTIONS(3462), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, + anon_sym_CARET, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(163), 15, + anon_sym_QMARK_QMARK, + ACTIONS(3464), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150808,14 +149012,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(157), 16, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -150825,50 +149021,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 18, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - 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_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + [12373] = 14, + ACTIONS(3494), 1, + anon_sym_EQ, + ACTIONS(3514), 1, + anon_sym_LPAREN, + ACTIONS(3516), 1, + anon_sym_DOT, + ACTIONS(3520), 1, + anon_sym_QMARK_DOT, + ACTIONS(3524), 1, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [12378] = 10, - ACTIONS(851), 1, + ACTIONS(3588), 1, anon_sym_EQ_GT, - ACTIONS(887), 1, - anon_sym_EQ, - ACTIONS(1767), 1, - anon_sym_QMARK, - ACTIONS(3587), 1, - anon_sym_LBRACK, + STATE(2917), 1, + sym_arguments, + STATE(3015), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3590), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1765), 3, + ACTIONS(3512), 3, anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_extends, - ACTIONS(157), 14, + ACTIONS(3522), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3496), 11, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -150878,7 +149061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(163), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150894,7 +149077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 19, + ACTIONS(3492), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150909,16 +149092,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, anon_sym_QMARK_QMARK, - [12458] = 3, + [12461] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3479), 22, + ACTIONS(3488), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -150941,7 +149122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(3481), 35, + ACTIONS(3490), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -150977,53 +149158,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [12524] = 7, - ACTIONS(869), 1, - anon_sym_COLON, - ACTIONS(3508), 1, - anon_sym_EQ_GT, - ACTIONS(3573), 1, - anon_sym_EQ, + [12527] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3510), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(3503), 18, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3499), 21, + ACTIONS(3466), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -151044,39 +149185,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [12598] = 9, - ACTIONS(841), 1, - anon_sym_EQ, - ACTIONS(851), 1, - anon_sym_EQ_GT, - ACTIONS(1765), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3587), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(3590), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(157), 15, + ACTIONS(3468), 35, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151092,35 +149212,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 19, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - 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_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_QMARK_QMARK, - [12675] = 6, - ACTIONS(3593), 1, + 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_satisfies, + [12593] = 6, + ACTIONS(3601), 1, anon_sym_EQ, - ACTIONS(3595), 1, + ACTIONS(3603), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3510), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151136,7 +149245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 18, + ACTIONS(3496), 18, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -151155,7 +149264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151177,39 +149286,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [12746] = 10, - ACTIONS(3600), 1, - anon_sym_RBRACK, - ACTIONS(3637), 1, - anon_sym_COMMA, - ACTIONS(3676), 1, - anon_sym_EQ_GT, - ACTIONS(3682), 1, - anon_sym_EQ, - ACTIONS(3685), 1, - anon_sym_in, - ACTIONS(3687), 1, - anon_sym_COLON, + [12664] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3503), 15, + ACTIONS(3474), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3458), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + ACTIONS(3460), 32, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151225,38 +149340,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 20, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_QMARK_QMARK, - [12825] = 7, - ACTIONS(925), 1, + 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_satisfies, + [12731] = 7, + ACTIONS(918), 1, anon_sym_EQ, - ACTIONS(931), 1, + ACTIONS(924), 1, anon_sym_EQ_GT, - ACTIONS(3689), 1, + ACTIONS(3677), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(157), 14, + ACTIONS(154), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_LPAREN, @@ -151271,7 +149374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(163), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151287,7 +149390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -151312,17 +149415,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [12898] = 5, - ACTIONS(3491), 1, - anon_sym_extends, - ACTIONS(3691), 1, + [12804] = 7, + ACTIONS(3611), 1, + anon_sym_EQ, + ACTIONS(3617), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3473), 22, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(3614), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3496), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3498), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(3492), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + [12877] = 6, + ACTIONS(824), 1, + anon_sym_EQ, + ACTIONS(938), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(160), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(154), 18, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + [12948] = 5, + ACTIONS(3478), 1, + anon_sym_extends, + ACTIONS(3679), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3462), 22, + anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -151343,7 +149577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(3475), 32, + ACTIONS(3464), 32, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -151376,21 +149610,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [12967] = 7, - ACTIONS(3515), 1, + [13017] = 6, + ACTIONS(932), 1, anon_sym_EQ, - ACTIONS(3614), 1, - anon_sym_COLON, + ACTIONS(938), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3693), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(3503), 15, + ACTIONS(160), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(154), 18, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -151404,7 +149652,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3510), 15, + anon_sym_implements, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + [13088] = 8, + ACTIONS(3510), 1, + anon_sym_EQ, + ACTIONS(3518), 1, + anon_sym_EQ_GT, + ACTIONS(3681), 1, + anon_sym_in, + ACTIONS(3684), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151420,10 +149703,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 21, + ACTIONS(3496), 17, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3492), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -151442,32 +149742,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [13040] = 7, - ACTIONS(925), 1, + [13163] = 12, + ACTIONS(3494), 1, anon_sym_EQ, - ACTIONS(931), 1, + ACTIONS(3536), 1, + anon_sym_LBRACK, + ACTIONS(3539), 1, + anon_sym_DOT, + ACTIONS(3545), 1, + anon_sym_LT, + ACTIONS(3588), 1, anon_sym_EQ_GT, - ACTIONS(3477), 1, - sym_identifier, + STATE(2964), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(157), 14, - sym__automatic_semicolon, + ACTIONS(3548), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3542), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3496), 13, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(163), 15, + anon_sym_satisfies, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151483,9 +149795,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(3492), 17, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -151493,34 +149804,28 @@ static const 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_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [13113] = 7, - ACTIONS(3515), 1, + [13246] = 7, + ACTIONS(3510), 1, anon_sym_EQ, - ACTIONS(3523), 1, + ACTIONS(3518), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3693), 3, + ACTIONS(3686), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RBRACK, - ACTIONS(3503), 15, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -151536,7 +149841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3510), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151552,7 +149857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151574,22 +149879,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [13186] = 7, - ACTIONS(3597), 1, + [13319] = 7, + ACTIONS(918), 1, anon_sym_EQ, - ACTIONS(3603), 1, - anon_sym_QMARK, + ACTIONS(924), 1, + anon_sym_EQ_GT, + ACTIONS(3456), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3600), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3503), 15, + ACTIONS(154), 14, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -151597,12 +149901,10 @@ static const 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, - anon_sym_satisfies, - ACTIONS(3510), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151618,8 +149920,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 21, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -151640,15 +149943,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [13259] = 6, - ACTIONS(3533), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [13392] = 6, + ACTIONS(3494), 1, anon_sym_EQ, - ACTIONS(3595), 1, + ACTIONS(3603), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3510), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151664,7 +149969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 18, + ACTIONS(3496), 18, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -151683,7 +149988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151705,24 +150010,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [13330] = 9, - ACTIONS(955), 1, + [13463] = 9, + ACTIONS(964), 1, anon_sym_EQ, - ACTIONS(961), 1, + ACTIONS(970), 1, anon_sym_EQ_GT, - ACTIONS(3587), 1, + ACTIONS(3605), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1765), 2, + ACTIONS(1898), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(3590), 3, + ACTIONS(3608), 3, anon_sym_AMP, anon_sym_PIPE, anon_sym_GT, - ACTIONS(157), 15, + ACTIONS(154), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -151738,7 +150043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(163), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151754,7 +150059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 18, + ACTIONS(120), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151773,19 +150078,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13407] = 8, - ACTIONS(3515), 1, + [13540] = 5, + ACTIONS(3562), 1, anon_sym_EQ, - ACTIONS(3523), 1, - anon_sym_EQ_GT, - ACTIONS(3696), 1, - anon_sym_in, - ACTIONS(3699), 1, - anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3510), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151801,10 +150100,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 17, + ACTIONS(3496), 19, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -151819,9 +150120,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 20, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -151840,33 +150142,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [13482] = 12, - ACTIONS(3533), 1, + [13609] = 7, + ACTIONS(3510), 1, anon_sym_EQ, - ACTIONS(3552), 1, - anon_sym_LBRACK, - ACTIONS(3555), 1, - anon_sym_DOT, - ACTIONS(3561), 1, - anon_sym_LT, - ACTIONS(3616), 1, - anon_sym_EQ_GT, - STATE(3035), 1, - sym_type_arguments, + ACTIONS(3586), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3567), 2, + ACTIONS(3686), 3, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3558), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3503), 13, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -151877,7 +150170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3510), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151893,7 +150186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 17, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151902,24 +150195,26 @@ static const 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_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [13565] = 6, - ACTIONS(227), 1, - anon_sym_EQ_GT, - ACTIONS(890), 1, + [13682] = 5, + ACTIONS(3578), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(163), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151935,13 +150230,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(157), 18, + ACTIONS(3496), 19, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -151954,7 +150250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151976,76 +150272,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [13636] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3491), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3473), 22, - anon_sym_STAR, + [13751] = 8, + ACTIONS(834), 1, anon_sym_EQ, - anon_sym_BANG, + ACTIONS(844), 1, + anon_sym_EQ_GT, + ACTIONS(902), 1, anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_QMARK_QMARK, - ACTIONS(3475), 32, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - 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, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [13703] = 5, - ACTIONS(3569), 1, - anon_sym_EQ, + ACTIONS(3689), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3510), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152061,14 +150300,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 19, - sym__automatic_semicolon, + ACTIONS(154), 17, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -152081,10 +150318,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 21, + ACTIONS(120), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -152103,37 +150339,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [13772] = 9, - ACTIONS(128), 1, - anon_sym_COMMA, - ACTIONS(224), 1, - anon_sym_RBRACK, - ACTIONS(904), 1, - anon_sym_EQ, - ACTIONS(909), 1, - anon_sym_COLON, - ACTIONS(913), 1, + [13826] = 6, + ACTIONS(152), 1, anon_sym_EQ_GT, + ACTIONS(824), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(157), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(163), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152149,7 +150363,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, + ACTIONS(154), 18, + sym__ternary_qmark, + 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_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_satisfies, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152171,14 +150404,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [13849] = 4, + [13897] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3493), 2, + ACTIONS(3478), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(3469), 22, + ACTIONS(3462), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -152201,7 +150434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(3471), 32, + ACTIONS(3464), 32, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -152234,19 +150467,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [13916] = 8, - ACTIONS(841), 1, - anon_sym_EQ, - ACTIONS(851), 1, + [13964] = 6, + ACTIONS(152), 1, anon_sym_EQ_GT, - ACTIONS(895), 1, - anon_sym_in, - ACTIONS(3701), 1, - anon_sym_of, + ACTIONS(880), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(163), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152262,12 +150491,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(157), 17, + ACTIONS(154), 18, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -152280,9 +150510,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 20, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -152301,51 +150532,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [13991] = 6, - ACTIONS(831), 1, - anon_sym_EQ, - ACTIONS(945), 1, - anon_sym_EQ_GT, + [14035] = 5, + ACTIONS(3474), 1, + anon_sym_extends, + ACTIONS(3691), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(163), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(157), 18, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - ACTIONS(122), 21, + ACTIONS(3458), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -152366,15 +150563,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [14062] = 6, - ACTIONS(227), 1, - anon_sym_EQ_GT, - ACTIONS(831), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(163), 15, + ACTIONS(3460), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + 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, @@ -152390,14 +150587,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(157), 18, + 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_satisfies, + [14104] = 9, + ACTIONS(895), 1, + anon_sym_EQ_GT, + ACTIONS(910), 1, + anon_sym_EQ, + ACTIONS(3605), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1898), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3608), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(154), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -152409,35 +150629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_QMARK_QMARK, - [14133] = 5, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3510), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152453,27 +150645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 19, - sym__automatic_semicolon, - sym__ternary_qmark, - 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_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_satisfies, - ACTIONS(3499), 21, + ACTIONS(120), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152482,9 +150654,7 @@ static const 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_SLASH, @@ -152493,30 +150663,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, anon_sym_QMARK_QMARK, - [14202] = 9, - ACTIONS(913), 1, + [14181] = 7, + ACTIONS(844), 1, anon_sym_EQ_GT, - ACTIONS(917), 1, + ACTIONS(907), 1, anon_sym_EQ, - ACTIONS(3587), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1765), 2, + ACTIONS(126), 3, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3590), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(157), 15, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(154), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -152528,7 +150692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(163), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152544,7 +150708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 18, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152553,7 +150717,9 @@ static const 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_SLASH, @@ -152562,20 +150728,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [14279] = 7, - ACTIONS(851), 1, + [14254] = 10, + ACTIONS(3614), 1, + anon_sym_RBRACK, + ACTIONS(3622), 1, + anon_sym_COMMA, + ACTIONS(3660), 1, anon_sym_EQ_GT, - ACTIONS(887), 1, + ACTIONS(3693), 1, anon_sym_EQ, + ACTIONS(3696), 1, + anon_sym_in, + ACTIONS(3698), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(224), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(157), 15, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -152591,7 +150762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(163), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152607,10 +150778,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, + ACTIONS(3492), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -152629,24 +150799,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [14352] = 9, - ACTIONS(969), 1, + [14333] = 9, + ACTIONS(948), 1, anon_sym_EQ, - ACTIONS(975), 1, + ACTIONS(954), 1, anon_sym_EQ_GT, - ACTIONS(3587), 1, + ACTIONS(3605), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1765), 2, + ACTIONS(1898), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(3590), 3, + ACTIONS(3608), 3, anon_sym_AMP, anon_sym_PIPE, anon_sym_GT, - ACTIONS(157), 15, + ACTIONS(154), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -152662,7 +150832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(163), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152678,7 +150848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 18, + ACTIONS(120), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152697,79 +150867,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14429] = 5, - ACTIONS(3493), 1, - anon_sym_extends, - ACTIONS(3703), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3469), 22, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_QMARK_QMARK, - ACTIONS(3471), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - 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, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [14498] = 6, - ACTIONS(3630), 1, + [14410] = 6, + ACTIONS(3592), 1, anon_sym_EQ, - ACTIONS(3632), 1, + ACTIONS(3594), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3510), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152785,7 +150891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 18, + ACTIONS(3496), 18, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -152804,7 +150910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - ACTIONS(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152826,15 +150932,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [14569] = 6, - ACTIONS(3533), 1, + [14481] = 6, + ACTIONS(3494), 1, anon_sym_EQ, - ACTIONS(3632), 1, + ACTIONS(3594), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3510), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152850,7 +150956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 18, + ACTIONS(3496), 18, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -152869,7 +150975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - ACTIONS(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152891,19 +150997,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [14640] = 7, - ACTIONS(3523), 1, + [14552] = 7, + ACTIONS(3518), 1, anon_sym_EQ_GT, - ACTIONS(3543), 1, + ACTIONS(3550), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3600), 3, + ACTIONS(3614), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RBRACK, - ACTIONS(3503), 15, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -152919,7 +151025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3510), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152935,7 +151041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152957,35 +151063,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [14713] = 6, - ACTIONS(939), 1, + [14625] = 9, + ACTIONS(126), 1, + anon_sym_RBRACK, + ACTIONS(223), 1, + anon_sym_COMMA, + ACTIONS(886), 1, anon_sym_EQ, - ACTIONS(945), 1, + ACTIONS(891), 1, + anon_sym_COLON, + ACTIONS(895), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(163), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(157), 18, + ACTIONS(154), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -152999,8 +151093,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(122), 21, + ACTIONS(160), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153022,21 +151131,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [14784] = 6, - ACTIONS(3543), 1, + [14702] = 9, + ACTIONS(834), 1, anon_sym_EQ, + ACTIONS(844), 1, + anon_sym_EQ_GT, + ACTIONS(1898), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3600), 3, - anon_sym_COMMA, + ACTIONS(3605), 2, anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(3503), 15, + anon_sym_LBRACK, + ACTIONS(3608), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(154), 15, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -153048,7 +151163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3510), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153064,7 +151179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 21, + ACTIONS(120), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153073,9 +151188,7 @@ static const 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_SLASH, @@ -153086,35 +151199,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [14854] = 8, - ACTIONS(3600), 1, - anon_sym_RBRACK, - ACTIONS(3637), 1, - anon_sym_COMMA, - ACTIONS(3676), 1, + [14779] = 7, + ACTIONS(895), 1, anon_sym_EQ_GT, - ACTIONS(3682), 1, + ACTIONS(910), 1, anon_sym_EQ, + ACTIONS(912), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3503), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3510), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153130,7 +151225,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 21, + ACTIONS(154), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + 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, + anon_sym_satisfies, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153152,83 +151264,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [14928] = 31, - ACTIONS(99), 1, + [14851] = 31, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1643), 1, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(2570), 1, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(3312), 1, + ACTIONS(3305), 1, anon_sym_abstract, - ACTIONS(3707), 1, + ACTIONS(3702), 1, anon_sym_export, - ACTIONS(3709), 1, + ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3717), 1, + ACTIONS(3708), 1, anon_sym_async, - ACTIONS(3719), 1, + ACTIONS(3710), 1, anon_sym_new, - ACTIONS(3723), 1, + ACTIONS(3714), 1, anon_sym_static, - ACTIONS(3725), 1, + ACTIONS(3716), 1, anon_sym_readonly, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - STATE(1285), 1, + STATE(1344), 1, sym_decorator, - STATE(2786), 1, + STATE(2773), 1, sym_accessibility_modifier, - STATE(2806), 1, + STATE(2800), 1, sym_override_modifier, - STATE(3317), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4078), 1, + STATE(3910), 1, sym__call_signature, - STATE(4391), 1, + STATE(4481), 1, aux_sym_export_statement_repeat1, - STATE(5224), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3711), 2, + ACTIONS(3283), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(3713), 2, + ACTIONS(3291), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3307), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3721), 2, + ACTIONS(3712), 2, sym_number, sym_private_property_identifier, - ACTIONS(3727), 2, + ACTIONS(3718), 2, anon_sym_get, anon_sym_set, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3118), 3, + STATE(3111), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3782), 6, + STATE(3815), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3705), 12, + ACTIONS(3700), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -153241,17 +151353,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [15048] = 7, - ACTIONS(3515), 1, + [14971] = 7, + ACTIONS(3510), 1, anon_sym_EQ, - ACTIONS(3696), 1, + ACTIONS(3681), 1, anon_sym_in, - ACTIONS(3699), 1, + ACTIONS(3684), 1, anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3510), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153267,7 +151379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 17, + ACTIONS(3496), 17, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -153285,7 +151397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 20, + ACTIONS(3492), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_AMP_AMP, @@ -153306,83 +151418,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [15120] = 31, - ACTIONS(99), 1, + [15043] = 31, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1643), 1, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(2570), 1, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(3312), 1, + ACTIONS(3305), 1, anon_sym_abstract, - ACTIONS(3707), 1, + ACTIONS(3702), 1, anon_sym_export, - ACTIONS(3709), 1, + ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3717), 1, + ACTIONS(3708), 1, anon_sym_async, - ACTIONS(3719), 1, + ACTIONS(3710), 1, anon_sym_new, - ACTIONS(3723), 1, + ACTIONS(3714), 1, anon_sym_static, - ACTIONS(3725), 1, + ACTIONS(3716), 1, anon_sym_readonly, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - STATE(1285), 1, + STATE(1344), 1, sym_decorator, - STATE(2786), 1, + STATE(2773), 1, sym_accessibility_modifier, - STATE(2806), 1, + STATE(2800), 1, sym_override_modifier, - STATE(3317), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4078), 1, + STATE(3910), 1, sym__call_signature, - STATE(4391), 1, + STATE(4481), 1, aux_sym_export_statement_repeat1, - STATE(5224), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3344), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3346), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3721), 2, + ACTIONS(3712), 2, sym_number, sym_private_property_identifier, - ACTIONS(3727), 2, + ACTIONS(3718), 2, anon_sym_get, anon_sym_set, - ACTIONS(3729), 3, + ACTIONS(3724), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3726), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3118), 3, + STATE(3111), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3899), 6, + STATE(3810), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3705), 12, + ACTIONS(3700), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -153395,15 +151507,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [15240] = 6, - ACTIONS(925), 1, + [15163] = 6, + ACTIONS(824), 1, anon_sym_EQ, - ACTIONS(931), 1, + ACTIONS(924), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(163), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153419,7 +151531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(157), 17, + ACTIONS(154), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -153437,73 +151549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_QMARK_QMARK, - [15310] = 8, - ACTIONS(128), 1, - anon_sym_COMMA, - ACTIONS(224), 1, - anon_sym_RBRACK, - ACTIONS(904), 1, - anon_sym_EQ, - ACTIONS(913), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(157), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(163), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(122), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153525,82 +151571,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [15384] = 9, - ACTIONS(155), 1, - anon_sym_EQ_GT, - ACTIONS(831), 1, - anon_sym_EQ, - ACTIONS(3587), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1765), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3590), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(157), 14, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - 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, - anon_sym_satisfies, - ACTIONS(163), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(122), 18, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - 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_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [15460] = 6, - ACTIONS(3643), 1, + [15233] = 6, + ACTIONS(3582), 1, anon_sym_EQ, - ACTIONS(3645), 1, + ACTIONS(3584), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3510), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153616,7 +151595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 17, + ACTIONS(3496), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -153634,7 +151613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153656,17 +151635,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [15530] = 7, - ACTIONS(909), 1, - anon_sym_COLON, - ACTIONS(913), 1, - anon_sym_EQ_GT, - ACTIONS(917), 1, + [15303] = 6, + ACTIONS(918), 1, anon_sym_EQ, + ACTIONS(924), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(163), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153682,12 +151659,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(157), 16, + ACTIONS(154), 17, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -153699,7 +151677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153721,13 +151699,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [15602] = 5, - ACTIONS(3630), 1, + [15373] = 31, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + ACTIONS(3305), 1, + anon_sym_abstract, + ACTIONS(3702), 1, + anon_sym_export, + ACTIONS(3704), 1, + anon_sym_STAR, + ACTIONS(3706), 1, + anon_sym_LBRACK, + ACTIONS(3708), 1, + anon_sym_async, + ACTIONS(3710), 1, + anon_sym_new, + ACTIONS(3714), 1, + anon_sym_static, + ACTIONS(3716), 1, + anon_sym_readonly, + ACTIONS(3722), 1, + anon_sym_override, + STATE(1344), 1, + sym_decorator, + STATE(2773), 1, + sym_accessibility_modifier, + STATE(2800), 1, + sym_override_modifier, + STATE(3315), 1, + sym_formal_parameters, + STATE(3910), 1, + sym__call_signature, + STATE(4481), 1, + aux_sym_export_statement_repeat1, + STATE(5233), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3291), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3712), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3718), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3728), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3730), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3720), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3111), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3887), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3700), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [15493] = 5, + ACTIONS(3592), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3510), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153743,7 +151810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 18, + ACTIONS(3496), 18, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -153762,7 +151829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - ACTIONS(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153784,19 +151851,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [15670] = 8, - ACTIONS(3674), 1, + [15561] = 8, + ACTIONS(3658), 1, anon_sym_EQ, - ACTIONS(3676), 1, + ACTIONS(3660), 1, anon_sym_EQ_GT, - ACTIONS(3685), 1, + ACTIONS(3696), 1, anon_sym_in, - ACTIONS(3687), 1, + ACTIONS(3698), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3510), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153812,7 +151879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 16, + ACTIONS(3496), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -153829,7 +151896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 20, + ACTIONS(3492), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_AMP_AMP, @@ -153850,83 +151917,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [15744] = 31, - ACTIONS(99), 1, + [15635] = 31, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1643), 1, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(2570), 1, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(3312), 1, + ACTIONS(3305), 1, anon_sym_abstract, - ACTIONS(3707), 1, + ACTIONS(3702), 1, anon_sym_export, - ACTIONS(3709), 1, + ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3717), 1, + ACTIONS(3708), 1, anon_sym_async, - ACTIONS(3719), 1, + ACTIONS(3710), 1, anon_sym_new, - ACTIONS(3723), 1, + ACTIONS(3714), 1, anon_sym_static, - ACTIONS(3725), 1, + ACTIONS(3716), 1, anon_sym_readonly, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - STATE(1285), 1, + STATE(1344), 1, sym_decorator, - STATE(2786), 1, + STATE(2773), 1, sym_accessibility_modifier, - STATE(2806), 1, + STATE(2800), 1, sym_override_modifier, - STATE(3317), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4078), 1, + STATE(3910), 1, sym__call_signature, - STATE(4391), 1, + STATE(4481), 1, aux_sym_export_statement_repeat1, - STATE(5224), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3290), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3314), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3721), 2, + ACTIONS(3712), 2, sym_number, sym_private_property_identifier, - ACTIONS(3727), 2, + ACTIONS(3718), 2, anon_sym_get, anon_sym_set, - ACTIONS(3729), 3, + ACTIONS(3732), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3734), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3118), 3, + STATE(3111), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3796), 6, + STATE(3777), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3705), 12, + ACTIONS(3700), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -153939,40 +152006,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [15864] = 8, - ACTIONS(3674), 1, + [15755] = 8, + ACTIONS(126), 1, + anon_sym_RBRACK, + ACTIONS(223), 1, + anon_sym_COMMA, + ACTIONS(886), 1, anon_sym_EQ, - ACTIONS(3676), 1, + ACTIONS(895), 1, anon_sym_EQ_GT, - ACTIONS(3685), 1, - anon_sym_in, - ACTIONS(3733), 1, - anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3510), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(3503), 16, + ACTIONS(154), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -153984,9 +152034,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 20, + ACTIONS(160), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(120), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -154005,148 +152072,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [15938] = 31, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1643), 1, - anon_sym_DQUOTE, - ACTIONS(1645), 1, - anon_sym_SQUOTE, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(3312), 1, - anon_sym_abstract, - ACTIONS(3707), 1, - anon_sym_export, - ACTIONS(3709), 1, - anon_sym_STAR, - ACTIONS(3715), 1, - anon_sym_LBRACK, - ACTIONS(3717), 1, - anon_sym_async, - ACTIONS(3719), 1, - anon_sym_new, - ACTIONS(3723), 1, - anon_sym_static, - ACTIONS(3725), 1, - anon_sym_readonly, - ACTIONS(3731), 1, - anon_sym_override, - STATE(1285), 1, - sym_decorator, - STATE(2786), 1, - sym_accessibility_modifier, - STATE(2806), 1, - sym_override_modifier, - STATE(3317), 1, - sym_formal_parameters, - STATE(4078), 1, - sym__call_signature, - STATE(4391), 1, - aux_sym_export_statement_repeat1, - STATE(5224), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3298), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3721), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3727), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3735), 2, + [15829] = 8, + ACTIONS(3614), 1, + anon_sym_RBRACK, + ACTIONS(3622), 1, anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3737), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3729), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3118), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3850), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3705), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [16058] = 4, + ACTIONS(3660), 1, + anon_sym_EQ_GT, + ACTIONS(3693), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3491), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3473), 22, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_QMARK_QMARK, - ACTIONS(3475), 31, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, 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, @@ -154156,15 +152100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [16124] = 6, - ACTIONS(3533), 1, - anon_sym_EQ, - ACTIONS(3645), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3510), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154180,25 +152116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154220,15 +152138,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [16194] = 6, - ACTIONS(831), 1, + [15903] = 8, + ACTIONS(3658), 1, anon_sym_EQ, - ACTIONS(931), 1, + ACTIONS(3660), 1, anon_sym_EQ_GT, + ACTIONS(3696), 1, + anon_sym_in, + ACTIONS(3736), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(163), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154244,13 +152166,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(157), 17, - sym__automatic_semicolon, + ACTIONS(3496), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -154262,10 +152183,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3492), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -154284,38 +152204,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [16264] = 7, - ACTIONS(913), 1, + [15977] = 9, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(917), 1, + ACTIONS(824), 1, anon_sym_EQ, - ACTIONS(919), 1, - anon_sym_COLON, + ACTIONS(3605), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(163), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(157), 16, + ACTIONS(1898), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3608), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(154), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -154327,35 +152236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_QMARK_QMARK, - [16336] = 5, - ACTIONS(3593), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3510), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154371,26 +152252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 18, - sym__ternary_qmark, - 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_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_satisfies, - ACTIONS(3499), 21, + ACTIONS(120), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154399,9 +152261,7 @@ static const 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_SLASH, @@ -154410,85 +152270,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, anon_sym_QMARK_QMARK, - [16404] = 31, - ACTIONS(99), 1, + [16053] = 31, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1643), 1, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(2570), 1, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(3312), 1, + ACTIONS(3305), 1, anon_sym_abstract, - ACTIONS(3707), 1, + ACTIONS(3702), 1, anon_sym_export, - ACTIONS(3709), 1, + ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3717), 1, + ACTIONS(3708), 1, anon_sym_async, - ACTIONS(3719), 1, + ACTIONS(3710), 1, anon_sym_new, - ACTIONS(3723), 1, + ACTIONS(3714), 1, anon_sym_static, - ACTIONS(3725), 1, + ACTIONS(3716), 1, anon_sym_readonly, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - STATE(1285), 1, + STATE(1344), 1, sym_decorator, - STATE(2786), 1, + STATE(2773), 1, sym_accessibility_modifier, - STATE(2806), 1, + STATE(2800), 1, sym_override_modifier, - STATE(3317), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4078), 1, + STATE(3910), 1, sym__call_signature, - STATE(4391), 1, + STATE(4481), 1, aux_sym_export_statement_repeat1, - STATE(5224), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3721), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3727), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3739), 2, + ACTIONS(3399), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(3741), 2, + ACTIONS(3401), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3729), 3, + ACTIONS(3712), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3718), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3118), 3, + STATE(3111), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3831), 6, + STATE(3844), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3705), 12, + ACTIONS(3700), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -154501,145 +152360,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [16524] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3493), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3469), 22, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_QMARK_QMARK, - ACTIONS(3471), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - 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, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [16590] = 31, - ACTIONS(99), 1, + [16173] = 31, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1643), 1, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(2570), 1, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(3312), 1, + ACTIONS(3305), 1, anon_sym_abstract, - ACTIONS(3707), 1, + ACTIONS(3702), 1, anon_sym_export, - ACTIONS(3709), 1, + ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3717), 1, + ACTIONS(3708), 1, anon_sym_async, - ACTIONS(3719), 1, + ACTIONS(3710), 1, anon_sym_new, - ACTIONS(3723), 1, + ACTIONS(3714), 1, anon_sym_static, - ACTIONS(3725), 1, + ACTIONS(3716), 1, anon_sym_readonly, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - STATE(1285), 1, + STATE(1344), 1, sym_decorator, - STATE(2786), 1, + STATE(2773), 1, sym_accessibility_modifier, - STATE(2806), 1, + STATE(2800), 1, sym_override_modifier, - STATE(3317), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4078), 1, + STATE(3910), 1, sym__call_signature, - STATE(4391), 1, + STATE(4481), 1, aux_sym_export_statement_repeat1, - STATE(5224), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3721), 2, + ACTIONS(3712), 2, sym_number, sym_private_property_identifier, - ACTIONS(3727), 2, + ACTIONS(3718), 2, anon_sym_get, anon_sym_set, - ACTIONS(3743), 2, + ACTIONS(3738), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(3745), 2, + ACTIONS(3740), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3118), 3, + STATE(3111), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3810), 6, + STATE(3809), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3705), 12, + ACTIONS(3700), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -154652,17 +152449,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [16710] = 7, - ACTIONS(3600), 1, - anon_sym_RBRACK, - ACTIONS(3637), 1, - anon_sym_COMMA, - ACTIONS(3682), 1, + [16293] = 6, + ACTIONS(3550), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3503), 15, + ACTIONS(3614), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -154678,7 +152475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3510), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154694,7 +152491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154716,49 +152513,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [16781] = 6, - ACTIONS(3666), 1, - anon_sym_EQ, - ACTIONS(3668), 1, - anon_sym_EQ_GT, + [16363] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3510), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(3503), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3499), 21, + ACTIONS(3474), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3458), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -154779,15 +152543,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [16850] = 6, - ACTIONS(3674), 1, - anon_sym_EQ, - ACTIONS(3676), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3510), 15, + ACTIONS(3460), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + 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, @@ -154803,14 +152566,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - 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, @@ -154820,37 +152575,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_QMARK_QMARK, - [16919] = 6, - ACTIONS(831), 1, + [16429] = 5, + ACTIONS(3601), 1, anon_sym_EQ, - ACTIONS(961), 1, - anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(163), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154866,10 +152597,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(157), 16, + ACTIONS(3496), 18, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, @@ -154883,7 +152616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154905,15 +152638,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [16988] = 6, - ACTIONS(3533), 1, - anon_sym_EQ, - ACTIONS(3668), 1, + [16497] = 7, + ACTIONS(891), 1, + anon_sym_COLON, + ACTIONS(895), 1, anon_sym_EQ_GT, + ACTIONS(910), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3510), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154929,12 +152664,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 16, + ACTIONS(154), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -154946,7 +152681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154968,15 +152703,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [17057] = 6, - ACTIONS(3533), 1, + [16569] = 6, + ACTIONS(3494), 1, anon_sym_EQ, - ACTIONS(3676), 1, + ACTIONS(3584), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3510), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154992,12 +152727,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 16, + ACTIONS(3496), 17, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -155009,7 +152745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155031,49 +152767,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [17126] = 6, - ACTIONS(3650), 1, - anon_sym_EQ, - ACTIONS(3652), 1, - anon_sym_EQ_GT, + [16639] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3510), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(3503), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3499), 21, + ACTIONS(3478), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3462), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -155094,15 +152797,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [17195] = 6, - ACTIONS(3533), 1, - anon_sym_EQ, - ACTIONS(3652), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3510), 15, + ACTIONS(3464), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + 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, @@ -155118,14 +152820,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -155135,57 +152829,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_QMARK_QMARK, - [17264] = 8, - ACTIONS(3533), 1, + [16705] = 6, + ACTIONS(3642), 1, anon_sym_EQ, - ACTIONS(3616), 1, + ACTIONS(3644), 1, anon_sym_EQ_GT, - ACTIONS(3696), 1, - anon_sym_in, - ACTIONS(3699), 1, - anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3503), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3510), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155201,9 +152853,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 20, + ACTIONS(3496), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -155222,15 +152892,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [17337] = 6, - ACTIONS(969), 1, + [16774] = 6, + ACTIONS(3658), 1, anon_sym_EQ, - ACTIONS(975), 1, + ACTIONS(3660), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(163), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155246,12 +152916,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(157), 16, + ACTIONS(3496), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -155263,7 +152933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155285,15 +152955,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [17406] = 6, - ACTIONS(831), 1, + [16843] = 6, + ACTIONS(948), 1, anon_sym_EQ, - ACTIONS(975), 1, + ACTIONS(954), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(163), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155309,7 +152979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(157), 16, + ACTIONS(154), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155326,7 +152996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155348,15 +153018,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [17475] = 6, - ACTIONS(913), 1, - anon_sym_EQ_GT, - ACTIONS(917), 1, + [16912] = 6, + ACTIONS(3494), 1, anon_sym_EQ, + ACTIONS(3644), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(163), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155372,12 +153042,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(157), 16, + ACTIONS(3496), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -155389,7 +153059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155411,15 +153081,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [17544] = 6, - ACTIONS(955), 1, + [16981] = 6, + ACTIONS(3494), 1, anon_sym_EQ, - ACTIONS(961), 1, + ACTIONS(3660), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(163), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155435,12 +153105,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(157), 16, + ACTIONS(3496), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -155452,7 +153122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155474,33 +153144,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [17613] = 7, - ACTIONS(155), 1, - anon_sym_EQ_GT, - ACTIONS(831), 1, + [17050] = 6, + ACTIONS(3646), 1, anon_sym_EQ, - ACTIONS(833), 1, - anon_sym_COLON, + ACTIONS(3648), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(157), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(163), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155516,7 +153168,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, + ACTIONS(3496), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155538,13 +153207,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [17684] = 5, - ACTIONS(3643), 1, + [17119] = 6, + ACTIONS(3494), 1, anon_sym_EQ, + ACTIONS(3648), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3510), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155560,12 +153231,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 17, - sym__automatic_semicolon, + ACTIONS(3496), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -155578,7 +153248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155600,19 +153270,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [17751] = 8, - ACTIONS(155), 1, + [17188] = 7, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(831), 1, + ACTIONS(824), 1, anon_sym_EQ, - ACTIONS(895), 1, - anon_sym_in, - ACTIONS(3701), 1, - anon_sym_of, + ACTIONS(826), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(157), 15, + ACTIONS(154), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155628,7 +153296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(163), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155644,9 +153312,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 20, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -155665,15 +153334,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [17824] = 6, - ACTIONS(831), 1, + [17259] = 5, + ACTIONS(3582), 1, anon_sym_EQ, - ACTIONS(913), 1, - anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(163), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155689,12 +153356,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(157), 16, + ACTIONS(3496), 17, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -155706,7 +153374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155728,163 +153396,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [17893] = 30, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1643), 1, - anon_sym_DQUOTE, - ACTIONS(1645), 1, - anon_sym_SQUOTE, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(3312), 1, - anon_sym_abstract, - ACTIONS(3707), 1, - anon_sym_export, - ACTIONS(3709), 1, - anon_sym_STAR, - ACTIONS(3715), 1, - anon_sym_LBRACK, - ACTIONS(3717), 1, - anon_sym_async, - ACTIONS(3719), 1, - anon_sym_new, - ACTIONS(3723), 1, - anon_sym_static, - ACTIONS(3725), 1, - anon_sym_readonly, - ACTIONS(3731), 1, - anon_sym_override, - STATE(1285), 1, - sym_decorator, - STATE(2786), 1, - sym_accessibility_modifier, - STATE(2806), 1, - sym_override_modifier, - STATE(3317), 1, - sym_formal_parameters, - STATE(4078), 1, - sym__call_signature, - STATE(4391), 1, - aux_sym_export_statement_repeat1, - STATE(5224), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3298), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3721), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3727), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3747), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3729), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3118), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4281), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3705), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [18009] = 6, - ACTIONS(3616), 1, - anon_sym_EQ_GT, - ACTIONS(3749), 1, + [17326] = 8, + ACTIONS(3494), 1, anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3503), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3510), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(3499), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_QMARK_QMARK, - [18077] = 6, - ACTIONS(155), 1, + ACTIONS(3588), 1, anon_sym_EQ_GT, - ACTIONS(1051), 1, - anon_sym_EQ, + ACTIONS(3681), 1, + anon_sym_in, + ACTIONS(3684), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(157), 15, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155900,7 +153424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(163), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155916,10 +153440,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, + ACTIONS(3492), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -155938,31 +153461,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [18145] = 6, - ACTIONS(3616), 1, - anon_sym_EQ_GT, - ACTIONS(3751), 1, + [17399] = 6, + ACTIONS(824), 1, anon_sym_EQ, + ACTIONS(970), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3503), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3510), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155978,7 +153485,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 21, + ACTIONS(154), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156000,101 +153524,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [18213] = 30, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1643), 1, - anon_sym_DQUOTE, - ACTIONS(1645), 1, - anon_sym_SQUOTE, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(3312), 1, - anon_sym_abstract, - ACTIONS(3707), 1, - anon_sym_export, - ACTIONS(3709), 1, - anon_sym_STAR, - ACTIONS(3715), 1, - anon_sym_LBRACK, - ACTIONS(3717), 1, - anon_sym_async, - ACTIONS(3719), 1, - anon_sym_new, - ACTIONS(3723), 1, - anon_sym_static, - ACTIONS(3725), 1, - anon_sym_readonly, - ACTIONS(3731), 1, - anon_sym_override, - STATE(1285), 1, - sym_decorator, - STATE(2786), 1, - sym_accessibility_modifier, - STATE(2806), 1, - sym_override_modifier, - STATE(3317), 1, - sym_formal_parameters, - STATE(4078), 1, - sym__call_signature, - STATE(4391), 1, - aux_sym_export_statement_repeat1, - STATE(5224), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3298), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3721), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3727), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3753), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3729), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3118), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4281), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3705), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [18329] = 6, - ACTIONS(155), 1, + [17468] = 8, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(831), 1, + ACTIONS(824), 1, anon_sym_EQ, + ACTIONS(902), 1, + anon_sym_in, + ACTIONS(3689), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(157), 15, + ACTIONS(154), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -156110,7 +153552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(163), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156126,10 +153568,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, + ACTIONS(120), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -156148,15 +153589,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [18397] = 6, - ACTIONS(155), 1, - anon_sym_EQ_GT, - ACTIONS(987), 1, + [17541] = 7, + ACTIONS(3614), 1, + anon_sym_RBRACK, + ACTIONS(3622), 1, + anon_sym_COMMA, + ACTIONS(3693), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(157), 15, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -156172,7 +153615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(163), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156188,7 +153631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156210,31 +153653,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [18465] = 6, - ACTIONS(155), 1, - anon_sym_EQ_GT, - ACTIONS(995), 1, + [17612] = 6, + ACTIONS(824), 1, anon_sym_EQ, + ACTIONS(895), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(157), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(163), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156250,7 +153677,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, + ACTIONS(154), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + 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, + anon_sym_satisfies, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156272,31 +153716,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [18533] = 6, - ACTIONS(3616), 1, + [17681] = 6, + ACTIONS(895), 1, anon_sym_EQ_GT, - ACTIONS(3755), 1, + ACTIONS(910), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3503), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3510), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156312,7 +153740,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 21, + ACTIONS(154), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + 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, + anon_sym_satisfies, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156334,18 +153779,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [18601] = 6, - ACTIONS(3616), 1, - anon_sym_EQ_GT, - ACTIONS(3757), 1, + [17750] = 6, + ACTIONS(964), 1, anon_sym_EQ, + ACTIONS(970), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3503), 15, + ACTIONS(160), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(154), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -156358,7 +153820,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3510), 15, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + [17819] = 6, + ACTIONS(824), 1, + anon_sym_EQ, + ACTIONS(954), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156374,7 +153866,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 21, + ACTIONS(154), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156396,80 +153905,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [18669] = 30, - ACTIONS(99), 1, + [17888] = 30, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1643), 1, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(2570), 1, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(3312), 1, + ACTIONS(3305), 1, anon_sym_abstract, - ACTIONS(3707), 1, + ACTIONS(3702), 1, anon_sym_export, - ACTIONS(3709), 1, + ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3717), 1, + ACTIONS(3708), 1, anon_sym_async, - ACTIONS(3719), 1, + ACTIONS(3710), 1, anon_sym_new, - ACTIONS(3723), 1, + ACTIONS(3714), 1, anon_sym_static, - ACTIONS(3725), 1, + ACTIONS(3716), 1, anon_sym_readonly, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - STATE(1285), 1, + STATE(1344), 1, sym_decorator, - STATE(2786), 1, + STATE(2773), 1, sym_accessibility_modifier, - STATE(2806), 1, + STATE(2800), 1, sym_override_modifier, - STATE(3317), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4078), 1, + STATE(3910), 1, sym__call_signature, - STATE(4391), 1, + STATE(4481), 1, aux_sym_export_statement_repeat1, - STATE(5224), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3721), 2, + ACTIONS(3712), 2, sym_number, sym_private_property_identifier, - ACTIONS(3727), 2, + ACTIONS(3718), 2, anon_sym_get, anon_sym_set, - ACTIONS(3759), 2, + ACTIONS(3742), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3118), 3, + STATE(3111), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4281), 6, + STATE(4265), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3705), 12, + ACTIONS(3700), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -156482,166 +153991,266 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [18785] = 30, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1643), 1, - anon_sym_DQUOTE, - ACTIONS(1645), 1, - anon_sym_SQUOTE, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, + [18004] = 6, + ACTIONS(3588), 1, + anon_sym_EQ_GT, + ACTIONS(3744), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3496), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3312), 1, - anon_sym_abstract, - ACTIONS(3707), 1, - anon_sym_export, - ACTIONS(3709), 1, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3498), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(3492), 21, anon_sym_STAR, - ACTIONS(3715), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + [18072] = 6, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(1036), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(154), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3717), 1, - anon_sym_async, - ACTIONS(3719), 1, - anon_sym_new, - ACTIONS(3723), 1, - anon_sym_static, - ACTIONS(3725), 1, - anon_sym_readonly, - ACTIONS(3731), 1, - anon_sym_override, - STATE(1285), 1, - sym_decorator, - STATE(2786), 1, - sym_accessibility_modifier, - STATE(2806), 1, - sym_override_modifier, - STATE(3317), 1, - sym_formal_parameters, - STATE(4078), 1, - sym__call_signature, - STATE(4391), 1, - aux_sym_export_statement_repeat1, - STATE(5224), 1, - sym_type_parameters, + 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, + anon_sym_satisfies, + ACTIONS(160), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + [18140] = 6, + ACTIONS(3588), 1, + anon_sym_EQ_GT, + ACTIONS(3746), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3496), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3498), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(3492), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3721), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3727), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3761), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3729), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3118), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4281), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3705), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [18901] = 30, - ACTIONS(99), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + [18208] = 30, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1643), 1, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(2570), 1, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(3312), 1, + ACTIONS(3305), 1, anon_sym_abstract, - ACTIONS(3707), 1, + ACTIONS(3702), 1, anon_sym_export, - ACTIONS(3709), 1, + ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3717), 1, + ACTIONS(3708), 1, anon_sym_async, - ACTIONS(3719), 1, + ACTIONS(3710), 1, anon_sym_new, - ACTIONS(3723), 1, + ACTIONS(3714), 1, anon_sym_static, - ACTIONS(3725), 1, + ACTIONS(3716), 1, anon_sym_readonly, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - STATE(1285), 1, + STATE(1344), 1, sym_decorator, - STATE(2786), 1, + STATE(2773), 1, sym_accessibility_modifier, - STATE(2806), 1, + STATE(2800), 1, sym_override_modifier, - STATE(3317), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4078), 1, + STATE(3910), 1, sym__call_signature, - STATE(4391), 1, + STATE(4481), 1, aux_sym_export_statement_repeat1, - STATE(5224), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3721), 2, + ACTIONS(3712), 2, sym_number, sym_private_property_identifier, - ACTIONS(3727), 2, + ACTIONS(3718), 2, anon_sym_get, anon_sym_set, - ACTIONS(3763), 2, + ACTIONS(3748), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3118), 3, + STATE(3111), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4281), 6, + STATE(4265), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3705), 12, + ACTIONS(3700), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -156654,80 +154263,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [19017] = 30, - ACTIONS(99), 1, + [18324] = 30, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1643), 1, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(2570), 1, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(3312), 1, + ACTIONS(3305), 1, anon_sym_abstract, - ACTIONS(3707), 1, + ACTIONS(3702), 1, anon_sym_export, - ACTIONS(3709), 1, + ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3717), 1, + ACTIONS(3708), 1, anon_sym_async, - ACTIONS(3719), 1, + ACTIONS(3710), 1, anon_sym_new, - ACTIONS(3723), 1, + ACTIONS(3714), 1, anon_sym_static, - ACTIONS(3725), 1, + ACTIONS(3716), 1, anon_sym_readonly, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - STATE(1285), 1, + STATE(1344), 1, sym_decorator, - STATE(2786), 1, + STATE(2773), 1, sym_accessibility_modifier, - STATE(2806), 1, + STATE(2800), 1, sym_override_modifier, - STATE(3317), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4078), 1, + STATE(3910), 1, sym__call_signature, - STATE(4391), 1, + STATE(4481), 1, aux_sym_export_statement_repeat1, - STATE(5224), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3721), 2, + ACTIONS(3712), 2, sym_number, sym_private_property_identifier, - ACTIONS(3727), 2, + ACTIONS(3718), 2, anon_sym_get, anon_sym_set, - ACTIONS(3765), 2, + ACTIONS(3750), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3118), 3, + STATE(3111), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4281), 6, + STATE(4265), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3705), 12, + ACTIONS(3700), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -156740,15 +154349,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [19133] = 6, - ACTIONS(155), 1, + [18440] = 6, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(991), 1, + ACTIONS(1040), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(157), 15, + ACTIONS(154), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -156764,7 +154373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(163), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156780,7 +154389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156802,80 +154411,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [19201] = 30, - ACTIONS(99), 1, + [18508] = 30, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1643), 1, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(2570), 1, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(3312), 1, + ACTIONS(3305), 1, anon_sym_abstract, - ACTIONS(3707), 1, + ACTIONS(3702), 1, anon_sym_export, - ACTIONS(3709), 1, + ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3717), 1, + ACTIONS(3708), 1, anon_sym_async, - ACTIONS(3719), 1, + ACTIONS(3710), 1, anon_sym_new, - ACTIONS(3723), 1, + ACTIONS(3714), 1, anon_sym_static, - ACTIONS(3725), 1, + ACTIONS(3716), 1, anon_sym_readonly, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - STATE(1285), 1, + STATE(1344), 1, sym_decorator, - STATE(2786), 1, + STATE(2773), 1, sym_accessibility_modifier, - STATE(2806), 1, + STATE(2800), 1, sym_override_modifier, - STATE(3317), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4078), 1, + STATE(3910), 1, sym__call_signature, - STATE(4391), 1, + STATE(4481), 1, aux_sym_export_statement_repeat1, - STATE(5224), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3721), 2, + ACTIONS(3712), 2, sym_number, sym_private_property_identifier, - ACTIONS(3727), 2, + ACTIONS(3718), 2, anon_sym_get, anon_sym_set, - ACTIONS(3767), 2, + ACTIONS(3752), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3118), 3, + STATE(3111), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4281), 6, + STATE(4265), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3705), 12, + ACTIONS(3700), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -156888,15 +154497,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [19317] = 6, - ACTIONS(155), 1, + [18624] = 6, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(981), 1, + ACTIONS(824), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(157), 15, + ACTIONS(154), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -156912,7 +154521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(163), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156928,7 +154537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156950,15 +154559,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [19385] = 6, - ACTIONS(3616), 1, + [18692] = 6, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(3769), 1, + ACTIONS(980), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3503), 15, + ACTIONS(154), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -156974,7 +154583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3510), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156990,7 +154599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157012,187 +154621,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [19453] = 30, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1643), 1, - anon_sym_DQUOTE, - ACTIONS(1645), 1, - anon_sym_SQUOTE, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(3312), 1, - anon_sym_abstract, - ACTIONS(3707), 1, - anon_sym_export, - ACTIONS(3709), 1, - anon_sym_STAR, - ACTIONS(3715), 1, - anon_sym_LBRACK, - ACTIONS(3717), 1, - anon_sym_async, - ACTIONS(3719), 1, - anon_sym_new, - ACTIONS(3723), 1, - anon_sym_static, - ACTIONS(3725), 1, - anon_sym_readonly, - ACTIONS(3731), 1, - anon_sym_override, - STATE(1285), 1, - sym_decorator, - STATE(2786), 1, - sym_accessibility_modifier, - STATE(2806), 1, - sym_override_modifier, - STATE(3317), 1, - sym_formal_parameters, - STATE(4078), 1, - sym__call_signature, - STATE(4391), 1, - aux_sym_export_statement_repeat1, - STATE(5224), 1, - sym_type_parameters, + [18760] = 6, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(1038), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3721), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3727), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3771), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3729), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3118), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4281), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3705), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [19569] = 30, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1643), 1, - anon_sym_DQUOTE, - ACTIONS(1645), 1, - anon_sym_SQUOTE, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(154), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3312), 1, - anon_sym_abstract, - ACTIONS(3707), 1, - anon_sym_export, - ACTIONS(3709), 1, - anon_sym_STAR, - ACTIONS(3715), 1, anon_sym_LBRACK, - ACTIONS(3717), 1, - anon_sym_async, - ACTIONS(3719), 1, - anon_sym_new, - ACTIONS(3723), 1, - anon_sym_static, - ACTIONS(3725), 1, - anon_sym_readonly, - ACTIONS(3731), 1, - anon_sym_override, - STATE(1285), 1, - sym_decorator, - STATE(2786), 1, - sym_accessibility_modifier, - STATE(2806), 1, - sym_override_modifier, - STATE(3317), 1, - sym_formal_parameters, - STATE(4078), 1, - sym__call_signature, - STATE(4391), 1, - aux_sym_export_statement_repeat1, - STATE(5224), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3298), 2, + 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, + anon_sym_satisfies, + ACTIONS(160), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3721), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3727), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3773), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3729), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3118), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4281), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3705), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [19685] = 6, - ACTIONS(155), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + [18828] = 6, + ACTIONS(3588), 1, anon_sym_EQ_GT, - ACTIONS(985), 1, + ACTIONS(3754), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(157), 15, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -157208,7 +154707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(163), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157224,7 +154723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157246,15 +154745,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [19753] = 6, - ACTIONS(155), 1, + [18896] = 6, + ACTIONS(3588), 1, anon_sym_EQ_GT, - ACTIONS(989), 1, + ACTIONS(3756), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(157), 15, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -157270,7 +154769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(163), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157286,7 +154785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157308,80 +154807,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [19821] = 30, - ACTIONS(99), 1, + [18964] = 30, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1643), 1, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(2570), 1, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(3312), 1, + ACTIONS(3305), 1, anon_sym_abstract, - ACTIONS(3707), 1, + ACTIONS(3702), 1, anon_sym_export, - ACTIONS(3709), 1, + ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3717), 1, + ACTIONS(3708), 1, anon_sym_async, - ACTIONS(3719), 1, + ACTIONS(3710), 1, anon_sym_new, - ACTIONS(3723), 1, + ACTIONS(3714), 1, anon_sym_static, - ACTIONS(3725), 1, + ACTIONS(3716), 1, anon_sym_readonly, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - STATE(1285), 1, + STATE(1344), 1, sym_decorator, - STATE(2786), 1, + STATE(2773), 1, sym_accessibility_modifier, - STATE(2806), 1, + STATE(2800), 1, sym_override_modifier, - STATE(3317), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4078), 1, + STATE(3910), 1, sym__call_signature, - STATE(4391), 1, + STATE(4481), 1, aux_sym_export_statement_repeat1, - STATE(5224), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3721), 2, + ACTIONS(3712), 2, sym_number, sym_private_property_identifier, - ACTIONS(3727), 2, + ACTIONS(3718), 2, anon_sym_get, anon_sym_set, - ACTIONS(3775), 2, + ACTIONS(3758), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3118), 3, + STATE(3111), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4281), 6, + STATE(4265), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3705), 12, + ACTIONS(3700), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -157394,142 +154893,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [19937] = 6, - ACTIONS(3616), 1, - anon_sym_EQ_GT, - ACTIONS(3777), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3503), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3510), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(3499), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_QMARK_QMARK, - [20005] = 30, - ACTIONS(99), 1, + [19080] = 30, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1643), 1, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(2570), 1, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(3312), 1, + ACTIONS(3305), 1, anon_sym_abstract, - ACTIONS(3707), 1, + ACTIONS(3702), 1, anon_sym_export, - ACTIONS(3709), 1, + ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3717), 1, + ACTIONS(3708), 1, anon_sym_async, - ACTIONS(3719), 1, + ACTIONS(3710), 1, anon_sym_new, - ACTIONS(3723), 1, + ACTIONS(3714), 1, anon_sym_static, - ACTIONS(3725), 1, + ACTIONS(3716), 1, anon_sym_readonly, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - STATE(1285), 1, + STATE(1344), 1, sym_decorator, - STATE(2786), 1, + STATE(2773), 1, sym_accessibility_modifier, - STATE(2806), 1, + STATE(2800), 1, sym_override_modifier, - STATE(3317), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4078), 1, + STATE(3910), 1, sym__call_signature, - STATE(4391), 1, + STATE(4481), 1, aux_sym_export_statement_repeat1, - STATE(5224), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3721), 2, + ACTIONS(3712), 2, sym_number, sym_private_property_identifier, - ACTIONS(3727), 2, + ACTIONS(3718), 2, anon_sym_get, anon_sym_set, - ACTIONS(3779), 2, + ACTIONS(3760), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3118), 3, + STATE(3111), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4281), 6, + STATE(4265), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3705), 12, + ACTIONS(3700), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -157542,15 +154979,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [20121] = 6, - ACTIONS(155), 1, + [19196] = 6, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(1049), 1, + ACTIONS(974), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(157), 15, + ACTIONS(154), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -157566,7 +155003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(163), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157582,7 +155019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157604,15 +155041,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [20189] = 6, - ACTIONS(3616), 1, + [19264] = 6, + ACTIONS(3588), 1, anon_sym_EQ_GT, - ACTIONS(3781), 1, + ACTIONS(3762), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3503), 15, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -157628,7 +155065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3510), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157644,7 +155081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157666,15 +155103,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [20257] = 6, - ACTIONS(3533), 1, + [19332] = 30, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + ACTIONS(3305), 1, + anon_sym_abstract, + ACTIONS(3702), 1, + anon_sym_export, + ACTIONS(3704), 1, + anon_sym_STAR, + ACTIONS(3706), 1, + anon_sym_LBRACK, + ACTIONS(3708), 1, + anon_sym_async, + ACTIONS(3710), 1, + anon_sym_new, + ACTIONS(3714), 1, + anon_sym_static, + ACTIONS(3716), 1, + anon_sym_readonly, + ACTIONS(3722), 1, + anon_sym_override, + STATE(1344), 1, + sym_decorator, + STATE(2773), 1, + sym_accessibility_modifier, + STATE(2800), 1, + sym_override_modifier, + STATE(3315), 1, + sym_formal_parameters, + STATE(3910), 1, + sym__call_signature, + STATE(4481), 1, + aux_sym_export_statement_repeat1, + STATE(5233), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3291), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3712), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3718), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3764), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3720), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3111), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4265), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3700), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [19448] = 30, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + ACTIONS(3305), 1, + anon_sym_abstract, + ACTIONS(3702), 1, + anon_sym_export, + ACTIONS(3704), 1, + anon_sym_STAR, + ACTIONS(3706), 1, + anon_sym_LBRACK, + ACTIONS(3708), 1, + anon_sym_async, + ACTIONS(3710), 1, + anon_sym_new, + ACTIONS(3714), 1, + anon_sym_static, + ACTIONS(3716), 1, + anon_sym_readonly, + ACTIONS(3722), 1, + anon_sym_override, + STATE(1344), 1, + sym_decorator, + STATE(2773), 1, + sym_accessibility_modifier, + STATE(2800), 1, + sym_override_modifier, + STATE(3315), 1, + sym_formal_parameters, + STATE(3910), 1, + sym__call_signature, + STATE(4481), 1, + aux_sym_export_statement_repeat1, + STATE(5233), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3291), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3712), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3718), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3766), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3720), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3111), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4265), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3700), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [19564] = 6, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(978), 1, anon_sym_EQ, - ACTIONS(3614), 1, - anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3503), 15, + ACTIONS(154), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -157690,7 +155299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3510), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157706,7 +155315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157728,80 +155337,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [20325] = 30, - ACTIONS(99), 1, + [19632] = 30, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1643), 1, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(2570), 1, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(3312), 1, + ACTIONS(3305), 1, anon_sym_abstract, - ACTIONS(3707), 1, + ACTIONS(3702), 1, anon_sym_export, - ACTIONS(3709), 1, + ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3717), 1, + ACTIONS(3708), 1, anon_sym_async, - ACTIONS(3719), 1, + ACTIONS(3710), 1, anon_sym_new, - ACTIONS(3723), 1, + ACTIONS(3714), 1, anon_sym_static, - ACTIONS(3725), 1, + ACTIONS(3716), 1, anon_sym_readonly, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - STATE(1285), 1, + STATE(1344), 1, sym_decorator, - STATE(2786), 1, + STATE(2773), 1, sym_accessibility_modifier, - STATE(2806), 1, + STATE(2800), 1, sym_override_modifier, - STATE(3317), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4078), 1, + STATE(3910), 1, sym__call_signature, - STATE(4391), 1, + STATE(4481), 1, aux_sym_export_statement_repeat1, - STATE(5224), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3721), 2, + ACTIONS(3712), 2, sym_number, sym_private_property_identifier, - ACTIONS(3727), 2, + ACTIONS(3718), 2, anon_sym_get, anon_sym_set, - ACTIONS(3783), 2, + ACTIONS(3768), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3118), 3, + STATE(3111), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4281), 6, + STATE(4265), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3705), 12, + ACTIONS(3700), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -157814,15 +155423,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [20441] = 6, - ACTIONS(3616), 1, + [19748] = 6, + ACTIONS(3588), 1, anon_sym_EQ_GT, - ACTIONS(3785), 1, + ACTIONS(3770), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3503), 15, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -157838,7 +155447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3510), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157854,7 +155463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157876,17 +155485,273 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [20509] = 7, - ACTIONS(3533), 1, + [19816] = 30, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + ACTIONS(3305), 1, + anon_sym_abstract, + ACTIONS(3702), 1, + anon_sym_export, + ACTIONS(3704), 1, + anon_sym_STAR, + ACTIONS(3706), 1, + anon_sym_LBRACK, + ACTIONS(3708), 1, + anon_sym_async, + ACTIONS(3710), 1, + anon_sym_new, + ACTIONS(3714), 1, + anon_sym_static, + ACTIONS(3716), 1, + anon_sym_readonly, + ACTIONS(3722), 1, + anon_sym_override, + STATE(1344), 1, + sym_decorator, + STATE(2773), 1, + sym_accessibility_modifier, + STATE(2800), 1, + sym_override_modifier, + STATE(3315), 1, + sym_formal_parameters, + STATE(3910), 1, + sym__call_signature, + STATE(4481), 1, + aux_sym_export_statement_repeat1, + STATE(5233), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3291), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3712), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3718), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3772), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3720), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3111), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4265), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3700), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [19932] = 30, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + ACTIONS(3305), 1, + anon_sym_abstract, + ACTIONS(3702), 1, + anon_sym_export, + ACTIONS(3704), 1, + anon_sym_STAR, + ACTIONS(3706), 1, + anon_sym_LBRACK, + ACTIONS(3708), 1, + anon_sym_async, + ACTIONS(3710), 1, + anon_sym_new, + ACTIONS(3714), 1, + anon_sym_static, + ACTIONS(3716), 1, + anon_sym_readonly, + ACTIONS(3722), 1, + anon_sym_override, + STATE(1344), 1, + sym_decorator, + STATE(2773), 1, + sym_accessibility_modifier, + STATE(2800), 1, + sym_override_modifier, + STATE(3315), 1, + sym_formal_parameters, + STATE(3910), 1, + sym__call_signature, + STATE(4481), 1, + aux_sym_export_statement_repeat1, + STATE(5233), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3291), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3712), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3718), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3774), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3720), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3111), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4265), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3700), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [20048] = 30, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + ACTIONS(3305), 1, + anon_sym_abstract, + ACTIONS(3702), 1, + anon_sym_export, + ACTIONS(3704), 1, + anon_sym_STAR, + ACTIONS(3706), 1, + anon_sym_LBRACK, + ACTIONS(3708), 1, + anon_sym_async, + ACTIONS(3710), 1, + anon_sym_new, + ACTIONS(3714), 1, + anon_sym_static, + ACTIONS(3716), 1, + anon_sym_readonly, + ACTIONS(3722), 1, + anon_sym_override, + STATE(1344), 1, + sym_decorator, + STATE(2773), 1, + sym_accessibility_modifier, + STATE(2800), 1, + sym_override_modifier, + STATE(3315), 1, + sym_formal_parameters, + STATE(3910), 1, + sym__call_signature, + STATE(4481), 1, + aux_sym_export_statement_repeat1, + STATE(5233), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3291), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3712), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3718), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3776), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3720), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3111), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4265), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3700), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [20164] = 6, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(1044), 1, anon_sym_EQ, - ACTIONS(3696), 1, - anon_sym_in, - ACTIONS(3699), 1, - anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3503), 15, + ACTIONS(154), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -157902,7 +155767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3510), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157918,9 +155783,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 20, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -157939,15 +155805,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [20579] = 6, - ACTIONS(155), 1, + [20232] = 6, + ACTIONS(3588), 1, anon_sym_EQ_GT, - ACTIONS(993), 1, + ACTIONS(3778), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(157), 15, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -157963,7 +155829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(163), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157979,7 +155845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158001,101 +155867,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [20647] = 30, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1643), 1, - anon_sym_DQUOTE, - ACTIONS(1645), 1, - anon_sym_SQUOTE, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(3312), 1, - anon_sym_abstract, - ACTIONS(3707), 1, - anon_sym_export, - ACTIONS(3709), 1, - anon_sym_STAR, - ACTIONS(3715), 1, - anon_sym_LBRACK, - ACTIONS(3717), 1, - anon_sym_async, - ACTIONS(3719), 1, - anon_sym_new, - ACTIONS(3723), 1, - anon_sym_static, - ACTIONS(3725), 1, - anon_sym_readonly, - ACTIONS(3731), 1, - anon_sym_override, - STATE(1285), 1, - sym_decorator, - STATE(2786), 1, - sym_accessibility_modifier, - STATE(2806), 1, - sym_override_modifier, - STATE(3317), 1, - sym_formal_parameters, - STATE(4078), 1, - sym__call_signature, - STATE(4391), 1, - aux_sym_export_statement_repeat1, - STATE(5224), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3298), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3721), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3727), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3787), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3729), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3118), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4281), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3705), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [20763] = 6, - ACTIONS(3616), 1, - anon_sym_EQ_GT, - ACTIONS(3789), 1, + [20300] = 6, + ACTIONS(3494), 1, anon_sym_EQ, + ACTIONS(3586), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3503), 15, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -158111,7 +155891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3510), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158127,7 +155907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158149,15 +155929,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [20831] = 6, - ACTIONS(155), 1, - anon_sym_EQ_GT, - ACTIONS(983), 1, + [20368] = 7, + ACTIONS(3494), 1, anon_sym_EQ, + ACTIONS(3681), 1, + anon_sym_in, + ACTIONS(3684), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(157), 15, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -158173,7 +155955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(163), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158189,10 +155971,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, + ACTIONS(3492), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -158211,15 +155992,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [20899] = 6, - ACTIONS(3616), 1, + [20438] = 6, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(3791), 1, + ACTIONS(1042), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3503), 15, + ACTIONS(154), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -158235,7 +156016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3510), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158251,7 +156032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158273,33 +156054,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [20967] = 5, - ACTIONS(3666), 1, + [20506] = 6, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(982), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3510), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(3503), 16, + ACTIONS(154), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -158312,7 +156078,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 21, + ACTIONS(160), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158334,34 +156116,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [21033] = 5, - ACTIONS(3674), 1, + [20574] = 30, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + ACTIONS(3305), 1, + anon_sym_abstract, + ACTIONS(3702), 1, + anon_sym_export, + ACTIONS(3704), 1, + anon_sym_STAR, + ACTIONS(3706), 1, + anon_sym_LBRACK, + ACTIONS(3708), 1, + anon_sym_async, + ACTIONS(3710), 1, + anon_sym_new, + ACTIONS(3714), 1, + anon_sym_static, + ACTIONS(3716), 1, + anon_sym_readonly, + ACTIONS(3722), 1, + anon_sym_override, + STATE(1344), 1, + sym_decorator, + STATE(2773), 1, + sym_accessibility_modifier, + STATE(2800), 1, + sym_override_modifier, + STATE(3315), 1, + sym_formal_parameters, + STATE(3910), 1, + sym__call_signature, + STATE(4481), 1, + aux_sym_export_statement_repeat1, + STATE(5233), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3291), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3712), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3718), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3780), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3720), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3111), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4265), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3700), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [20690] = 6, + ACTIONS(3588), 1, + anon_sym_EQ_GT, + ACTIONS(3782), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3510), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(3503), 16, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -158373,7 +156226,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 21, + ACTIONS(3498), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158395,15 +156264,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [21099] = 6, - ACTIONS(3533), 1, - anon_sym_EQ, - ACTIONS(3616), 1, + [20758] = 6, + ACTIONS(225), 1, anon_sym_EQ_GT, + ACTIONS(976), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3503), 15, + ACTIONS(154), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -158419,7 +156288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3510), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158435,7 +156304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158457,33 +156326,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [21167] = 5, - ACTIONS(3650), 1, + [20826] = 6, + ACTIONS(3588), 1, + anon_sym_EQ_GT, + ACTIONS(3784), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3510), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(3503), 16, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -158496,7 +156350,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 21, + ACTIONS(3498), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158518,80 +156388,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [21233] = 30, - ACTIONS(99), 1, + [20894] = 30, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1643), 1, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(2570), 1, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(3312), 1, + ACTIONS(3305), 1, anon_sym_abstract, - ACTIONS(3707), 1, + ACTIONS(3702), 1, anon_sym_export, - ACTIONS(3709), 1, + ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3717), 1, + ACTIONS(3708), 1, anon_sym_async, - ACTIONS(3719), 1, + ACTIONS(3710), 1, anon_sym_new, - ACTIONS(3723), 1, + ACTIONS(3714), 1, anon_sym_static, - ACTIONS(3725), 1, + ACTIONS(3716), 1, anon_sym_readonly, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - STATE(1285), 1, + STATE(1344), 1, sym_decorator, - STATE(2786), 1, + STATE(2773), 1, sym_accessibility_modifier, - STATE(2806), 1, + STATE(2800), 1, sym_override_modifier, - STATE(3317), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4078), 1, + STATE(3910), 1, sym__call_signature, - STATE(4391), 1, + STATE(4481), 1, aux_sym_export_statement_repeat1, - STATE(5224), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3721), 2, + ACTIONS(3712), 2, sym_number, sym_private_property_identifier, - ACTIONS(3727), 2, + ACTIONS(3718), 2, anon_sym_get, anon_sym_set, - ACTIONS(3793), 2, + ACTIONS(3786), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3118), 3, + STATE(3111), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4281), 6, + STATE(4265), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3705), 12, + ACTIONS(3700), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -158604,80 +156474,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21349] = 30, - ACTIONS(99), 1, + [21010] = 30, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1643), 1, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(2570), 1, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(3312), 1, + ACTIONS(3305), 1, anon_sym_abstract, - ACTIONS(3707), 1, + ACTIONS(3702), 1, anon_sym_export, - ACTIONS(3709), 1, + ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3717), 1, + ACTIONS(3708), 1, anon_sym_async, - ACTIONS(3719), 1, + ACTIONS(3710), 1, anon_sym_new, - ACTIONS(3723), 1, + ACTIONS(3714), 1, anon_sym_static, - ACTIONS(3725), 1, + ACTIONS(3716), 1, anon_sym_readonly, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - STATE(1285), 1, + STATE(1344), 1, sym_decorator, - STATE(2786), 1, + STATE(2773), 1, sym_accessibility_modifier, - STATE(2806), 1, + STATE(2800), 1, sym_override_modifier, - STATE(3317), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4078), 1, + STATE(3910), 1, sym__call_signature, - STATE(4391), 1, + STATE(4481), 1, aux_sym_export_statement_repeat1, - STATE(5224), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3721), 2, + ACTIONS(3712), 2, sym_number, sym_private_property_identifier, - ACTIONS(3727), 2, + ACTIONS(3718), 2, anon_sym_get, anon_sym_set, - ACTIONS(3795), 2, + ACTIONS(3788), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3118), 3, + STATE(3111), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4281), 6, + STATE(4265), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3705), 12, + ACTIONS(3700), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -158690,166 +156560,473 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21465] = 30, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1643), 1, - anon_sym_DQUOTE, - ACTIONS(1645), 1, - anon_sym_SQUOTE, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(3312), 1, - anon_sym_abstract, - ACTIONS(3707), 1, - anon_sym_export, - ACTIONS(3709), 1, - anon_sym_STAR, - ACTIONS(3715), 1, - anon_sym_LBRACK, - ACTIONS(3717), 1, - anon_sym_async, - ACTIONS(3719), 1, - anon_sym_new, - ACTIONS(3723), 1, - anon_sym_static, - ACTIONS(3725), 1, - anon_sym_readonly, - ACTIONS(3731), 1, - anon_sym_override, - STATE(1285), 1, - sym_decorator, - STATE(2786), 1, - sym_accessibility_modifier, - STATE(2806), 1, - sym_override_modifier, - STATE(3317), 1, - sym_formal_parameters, - STATE(4078), 1, - sym__call_signature, - STATE(4391), 1, - aux_sym_export_statement_repeat1, - STATE(5224), 1, - sym_type_parameters, + [21126] = 5, + ACTIONS(3642), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3721), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3727), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3797), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3729), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3118), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4281), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3705), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [21581] = 30, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1643), 1, - anon_sym_DQUOTE, - ACTIONS(1645), 1, - anon_sym_SQUOTE, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3498), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(3496), 16, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3312), 1, - anon_sym_abstract, - ACTIONS(3707), 1, - anon_sym_export, - ACTIONS(3709), 1, - anon_sym_STAR, - ACTIONS(3715), 1, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3717), 1, - anon_sym_async, - ACTIONS(3719), 1, - anon_sym_new, - ACTIONS(3723), 1, - anon_sym_static, - ACTIONS(3725), 1, - anon_sym_readonly, - ACTIONS(3731), 1, - anon_sym_override, - STATE(1285), 1, - sym_decorator, - STATE(2786), 1, - sym_accessibility_modifier, - STATE(2806), 1, + 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, + anon_sym_satisfies, + ACTIONS(3492), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + [21192] = 5, + ACTIONS(3658), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3498), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(3496), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + 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, + anon_sym_satisfies, + ACTIONS(3492), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + [21258] = 6, + ACTIONS(3494), 1, + anon_sym_EQ, + ACTIONS(3588), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3496), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3498), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(3492), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + [21326] = 5, + ACTIONS(3646), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3498), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(3496), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3492), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + [21392] = 30, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + ACTIONS(3305), 1, + anon_sym_abstract, + ACTIONS(3702), 1, + anon_sym_export, + ACTIONS(3704), 1, + anon_sym_STAR, + ACTIONS(3706), 1, + anon_sym_LBRACK, + ACTIONS(3708), 1, + anon_sym_async, + ACTIONS(3710), 1, + anon_sym_new, + ACTIONS(3714), 1, + anon_sym_static, + ACTIONS(3716), 1, + anon_sym_readonly, + ACTIONS(3722), 1, + anon_sym_override, + STATE(1344), 1, + sym_decorator, + STATE(2773), 1, + sym_accessibility_modifier, + STATE(2800), 1, sym_override_modifier, - STATE(3317), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4078), 1, + STATE(3910), 1, sym__call_signature, - STATE(4391), 1, + STATE(4481), 1, aux_sym_export_statement_repeat1, - STATE(5224), 1, + STATE(5233), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3291), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3712), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3718), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3790), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3720), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3111), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4265), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3700), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [21508] = 6, + ACTIONS(3588), 1, + anon_sym_EQ_GT, + ACTIONS(3792), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3496), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3498), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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(3492), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + [21576] = 30, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + ACTIONS(3305), 1, + anon_sym_abstract, + ACTIONS(3702), 1, + anon_sym_export, + ACTIONS(3704), 1, + anon_sym_STAR, + ACTIONS(3706), 1, + anon_sym_LBRACK, + ACTIONS(3708), 1, + anon_sym_async, + ACTIONS(3710), 1, + anon_sym_new, + ACTIONS(3714), 1, + anon_sym_static, + ACTIONS(3716), 1, + anon_sym_readonly, + ACTIONS(3722), 1, + anon_sym_override, + STATE(1344), 1, + sym_decorator, + STATE(2773), 1, + sym_accessibility_modifier, + STATE(2800), 1, + sym_override_modifier, + STATE(3315), 1, + sym_formal_parameters, + STATE(3910), 1, + sym__call_signature, + STATE(4481), 1, + aux_sym_export_statement_repeat1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3721), 2, + ACTIONS(3712), 2, sym_number, sym_private_property_identifier, - ACTIONS(3727), 2, + ACTIONS(3718), 2, anon_sym_get, anon_sym_set, - ACTIONS(3799), 2, + ACTIONS(3794), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3118), 3, + STATE(3111), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4281), 6, + STATE(4265), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3705), 12, + ACTIONS(3700), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -158862,80 +157039,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21697] = 30, - ACTIONS(99), 1, + [21692] = 30, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1643), 1, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(2570), 1, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(3312), 1, + ACTIONS(3305), 1, anon_sym_abstract, - ACTIONS(3707), 1, + ACTIONS(3702), 1, anon_sym_export, - ACTIONS(3709), 1, + ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3717), 1, + ACTIONS(3708), 1, anon_sym_async, - ACTIONS(3719), 1, + ACTIONS(3710), 1, anon_sym_new, - ACTIONS(3723), 1, + ACTIONS(3714), 1, anon_sym_static, - ACTIONS(3725), 1, + ACTIONS(3716), 1, anon_sym_readonly, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - STATE(1285), 1, + STATE(1344), 1, sym_decorator, - STATE(2786), 1, + STATE(2773), 1, sym_accessibility_modifier, - STATE(2806), 1, + STATE(2800), 1, sym_override_modifier, - STATE(3317), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4078), 1, + STATE(3910), 1, sym__call_signature, - STATE(4391), 1, + STATE(4481), 1, aux_sym_export_statement_repeat1, - STATE(5224), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3721), 2, + ACTIONS(3712), 2, sym_number, sym_private_property_identifier, - ACTIONS(3727), 2, + ACTIONS(3718), 2, anon_sym_get, anon_sym_set, - ACTIONS(3801), 2, + ACTIONS(3796), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3118), 3, + STATE(3111), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4281), 6, + STATE(4265), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3705), 12, + ACTIONS(3700), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -158948,13 +157125,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21813] = 5, - ACTIONS(3757), 1, + [21808] = 5, + ACTIONS(3782), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3503), 15, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -158970,7 +157147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3510), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158986,7 +157163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159008,13 +157185,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [21878] = 5, - ACTIONS(3777), 1, + [21873] = 5, + ACTIONS(3770), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3503), 15, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -159030,7 +157207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3510), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159046,7 +157223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159068,13 +157245,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [21943] = 5, - ACTIONS(3749), 1, + [21938] = 5, + ACTIONS(3744), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3503), 15, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -159090,7 +157267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3510), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159106,7 +157283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159128,13 +157305,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [22008] = 5, - ACTIONS(3789), 1, + [22003] = 5, + ACTIONS(3778), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3503), 15, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -159150,7 +157327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3510), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159166,7 +157343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159188,13 +157365,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [22073] = 5, - ACTIONS(3791), 1, + [22068] = 5, + ACTIONS(3792), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3503), 15, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -159210,7 +157387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3510), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159226,7 +157403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159248,13 +157425,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [22138] = 5, - ACTIONS(3781), 1, + [22133] = 5, + ACTIONS(3746), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3503), 15, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -159270,7 +157447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3510), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159286,7 +157463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159308,13 +157485,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [22203] = 5, - ACTIONS(3769), 1, + [22198] = 5, + ACTIONS(3756), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3503), 15, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -159330,7 +157507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3510), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159346,7 +157523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159368,13 +157545,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [22268] = 5, - ACTIONS(3755), 1, + [22263] = 5, + ACTIONS(3754), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3503), 15, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -159390,7 +157567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3510), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159406,7 +157583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159428,13 +157605,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [22333] = 5, - ACTIONS(3751), 1, + [22328] = 5, + ACTIONS(3784), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3503), 15, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -159450,7 +157627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3510), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159466,7 +157643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159488,13 +157665,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [22398] = 5, - ACTIONS(3785), 1, + [22393] = 5, + ACTIONS(3762), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3503), 15, + ACTIONS(3496), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -159510,7 +157687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3510), 15, + ACTIONS(3498), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159526,7 +157703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 21, + ACTIONS(3492), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159548,77 +157725,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK_QMARK, - [22463] = 29, - ACTIONS(99), 1, + [22458] = 29, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1643), 1, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(2570), 1, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(3312), 1, + ACTIONS(3305), 1, anon_sym_abstract, - ACTIONS(3707), 1, + ACTIONS(3702), 1, anon_sym_export, - ACTIONS(3709), 1, + ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3717), 1, + ACTIONS(3708), 1, anon_sym_async, - ACTIONS(3719), 1, + ACTIONS(3710), 1, anon_sym_new, - ACTIONS(3723), 1, + ACTIONS(3714), 1, anon_sym_static, - ACTIONS(3725), 1, + ACTIONS(3716), 1, anon_sym_readonly, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - STATE(1285), 1, + STATE(1344), 1, sym_decorator, - STATE(2786), 1, + STATE(2773), 1, sym_accessibility_modifier, - STATE(2806), 1, + STATE(2800), 1, sym_override_modifier, - STATE(3317), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4078), 1, + STATE(3910), 1, sym__call_signature, - STATE(4391), 1, + STATE(4481), 1, aux_sym_export_statement_repeat1, - STATE(5224), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3721), 2, + ACTIONS(3712), 2, sym_number, sym_private_property_identifier, - ACTIONS(3727), 2, + ACTIONS(3718), 2, anon_sym_get, anon_sym_set, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3118), 3, + STATE(3111), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3785), 6, + STATE(3790), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3705), 12, + ACTIONS(3700), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -159631,77 +157808,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22575] = 29, - ACTIONS(99), 1, + [22570] = 29, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1643), 1, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(2570), 1, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(3312), 1, + ACTIONS(3305), 1, anon_sym_abstract, - ACTIONS(3707), 1, + ACTIONS(3702), 1, anon_sym_export, - ACTIONS(3709), 1, + ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3717), 1, + ACTIONS(3708), 1, anon_sym_async, - ACTIONS(3719), 1, + ACTIONS(3710), 1, anon_sym_new, - ACTIONS(3723), 1, + ACTIONS(3714), 1, anon_sym_static, - ACTIONS(3725), 1, + ACTIONS(3716), 1, anon_sym_readonly, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - STATE(1285), 1, + STATE(1344), 1, sym_decorator, - STATE(2786), 1, + STATE(2773), 1, sym_accessibility_modifier, - STATE(2806), 1, + STATE(2800), 1, sym_override_modifier, - STATE(3317), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4078), 1, + STATE(3910), 1, sym__call_signature, - STATE(4391), 1, + STATE(4481), 1, aux_sym_export_statement_repeat1, - STATE(5224), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3721), 2, + ACTIONS(3712), 2, sym_number, sym_private_property_identifier, - ACTIONS(3727), 2, + ACTIONS(3718), 2, anon_sym_get, anon_sym_set, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3118), 3, + STATE(3111), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3768), 6, + STATE(3786), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3705), 12, + ACTIONS(3700), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -159714,77 +157891,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22687] = 29, - ACTIONS(99), 1, + [22682] = 29, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1643), 1, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(2570), 1, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(3312), 1, + ACTIONS(3305), 1, anon_sym_abstract, - ACTIONS(3707), 1, + ACTIONS(3702), 1, anon_sym_export, - ACTIONS(3709), 1, + ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3717), 1, + ACTIONS(3708), 1, anon_sym_async, - ACTIONS(3719), 1, + ACTIONS(3710), 1, anon_sym_new, - ACTIONS(3723), 1, + ACTIONS(3714), 1, anon_sym_static, - ACTIONS(3725), 1, + ACTIONS(3716), 1, anon_sym_readonly, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - STATE(1285), 1, + STATE(1344), 1, sym_decorator, - STATE(2786), 1, + STATE(2773), 1, sym_accessibility_modifier, - STATE(2806), 1, + STATE(2800), 1, sym_override_modifier, - STATE(3317), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4078), 1, + STATE(3910), 1, sym__call_signature, - STATE(4391), 1, + STATE(4481), 1, aux_sym_export_statement_repeat1, - STATE(5224), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3721), 2, + ACTIONS(3712), 2, sym_number, sym_private_property_identifier, - ACTIONS(3727), 2, + ACTIONS(3718), 2, anon_sym_get, anon_sym_set, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3118), 3, + STATE(3111), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3813), 6, + STATE(3875), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3705), 12, + ACTIONS(3700), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -159797,77 +157974,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22799] = 29, - ACTIONS(99), 1, + [22794] = 29, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1643), 1, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(2570), 1, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(3312), 1, + ACTIONS(3305), 1, anon_sym_abstract, - ACTIONS(3707), 1, + ACTIONS(3702), 1, anon_sym_export, - ACTIONS(3709), 1, + ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3717), 1, + ACTIONS(3708), 1, anon_sym_async, - ACTIONS(3719), 1, + ACTIONS(3710), 1, anon_sym_new, - ACTIONS(3723), 1, + ACTIONS(3714), 1, anon_sym_static, - ACTIONS(3725), 1, + ACTIONS(3716), 1, anon_sym_readonly, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - STATE(1285), 1, + STATE(1344), 1, sym_decorator, - STATE(2786), 1, + STATE(2773), 1, sym_accessibility_modifier, - STATE(2806), 1, + STATE(2800), 1, sym_override_modifier, - STATE(3317), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4078), 1, + STATE(3910), 1, sym__call_signature, - STATE(4391), 1, + STATE(4481), 1, aux_sym_export_statement_repeat1, - STATE(5224), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3721), 2, + ACTIONS(3712), 2, sym_number, sym_private_property_identifier, - ACTIONS(3727), 2, + ACTIONS(3718), 2, anon_sym_get, anon_sym_set, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3118), 3, + STATE(3111), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3757), 6, + STATE(4265), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3705), 12, + ACTIONS(3700), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -159880,77 +158057,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22911] = 29, - ACTIONS(99), 1, + [22906] = 29, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1643), 1, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(2570), 1, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(3312), 1, + ACTIONS(3305), 1, anon_sym_abstract, - ACTIONS(3707), 1, + ACTIONS(3702), 1, anon_sym_export, - ACTIONS(3709), 1, + ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3717), 1, + ACTIONS(3708), 1, anon_sym_async, - ACTIONS(3719), 1, + ACTIONS(3710), 1, anon_sym_new, - ACTIONS(3723), 1, + ACTIONS(3714), 1, anon_sym_static, - ACTIONS(3725), 1, + ACTIONS(3716), 1, anon_sym_readonly, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - STATE(1285), 1, + STATE(1344), 1, sym_decorator, - STATE(2786), 1, + STATE(2773), 1, sym_accessibility_modifier, - STATE(2806), 1, + STATE(2800), 1, sym_override_modifier, - STATE(3317), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4078), 1, + STATE(3910), 1, sym__call_signature, - STATE(4391), 1, + STATE(4481), 1, aux_sym_export_statement_repeat1, - STATE(5224), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3721), 2, + ACTIONS(3712), 2, sym_number, sym_private_property_identifier, - ACTIONS(3727), 2, + ACTIONS(3718), 2, anon_sym_get, anon_sym_set, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3118), 3, + STATE(3111), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3835), 6, + STATE(3793), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3705), 12, + ACTIONS(3700), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -159963,77 +158140,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23023] = 29, - ACTIONS(99), 1, + [23018] = 29, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1643), 1, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(2570), 1, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(3312), 1, + ACTIONS(3305), 1, anon_sym_abstract, - ACTIONS(3707), 1, + ACTIONS(3702), 1, anon_sym_export, - ACTIONS(3709), 1, + ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3717), 1, + ACTIONS(3708), 1, anon_sym_async, - ACTIONS(3719), 1, + ACTIONS(3710), 1, anon_sym_new, - ACTIONS(3723), 1, + ACTIONS(3714), 1, anon_sym_static, - ACTIONS(3725), 1, + ACTIONS(3716), 1, anon_sym_readonly, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - STATE(1285), 1, + STATE(1344), 1, sym_decorator, - STATE(2786), 1, + STATE(2773), 1, sym_accessibility_modifier, - STATE(2806), 1, + STATE(2800), 1, sym_override_modifier, - STATE(3317), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4078), 1, + STATE(3910), 1, sym__call_signature, - STATE(4391), 1, + STATE(4481), 1, aux_sym_export_statement_repeat1, - STATE(5224), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3721), 2, + ACTIONS(3712), 2, sym_number, sym_private_property_identifier, - ACTIONS(3727), 2, + ACTIONS(3718), 2, anon_sym_get, anon_sym_set, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3118), 3, + STATE(3111), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3906), 6, + STATE(3814), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3705), 12, + ACTIONS(3700), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -160046,77 +158223,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23135] = 29, - ACTIONS(99), 1, + [23130] = 29, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1643), 1, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(2570), 1, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(3312), 1, + ACTIONS(3305), 1, anon_sym_abstract, - ACTIONS(3707), 1, + ACTIONS(3702), 1, anon_sym_export, - ACTIONS(3709), 1, + ACTIONS(3704), 1, anon_sym_STAR, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3717), 1, + ACTIONS(3708), 1, anon_sym_async, - ACTIONS(3719), 1, + ACTIONS(3710), 1, anon_sym_new, - ACTIONS(3723), 1, + ACTIONS(3714), 1, anon_sym_static, - ACTIONS(3725), 1, + ACTIONS(3716), 1, anon_sym_readonly, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - STATE(1285), 1, + STATE(1344), 1, sym_decorator, - STATE(2786), 1, + STATE(2773), 1, sym_accessibility_modifier, - STATE(2806), 1, + STATE(2800), 1, sym_override_modifier, - STATE(3317), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4078), 1, + STATE(3910), 1, sym__call_signature, - STATE(4391), 1, + STATE(4481), 1, aux_sym_export_statement_repeat1, - STATE(5224), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3721), 2, + ACTIONS(3712), 2, sym_number, sym_private_property_identifier, - ACTIONS(3727), 2, + ACTIONS(3718), 2, anon_sym_get, anon_sym_set, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3118), 3, + STATE(3111), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4281), 6, + STATE(3884), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3705), 12, + ACTIONS(3700), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -160129,71 +158306,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23247] = 33, - ACTIONS(99), 1, + [23242] = 33, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(2292), 1, + ACTIONS(2139), 1, anon_sym_LBRACE, - ACTIONS(2394), 1, + ACTIONS(2383), 1, anon_sym_namespace, - ACTIONS(2396), 1, + ACTIONS(2385), 1, anon_sym_import, - ACTIONS(2398), 1, + ACTIONS(2387), 1, anon_sym_var, - ACTIONS(2400), 1, + ACTIONS(2389), 1, anon_sym_let, - ACTIONS(2402), 1, + ACTIONS(2391), 1, anon_sym_const, - ACTIONS(2404), 1, + ACTIONS(2393), 1, anon_sym_class, - ACTIONS(2406), 1, + ACTIONS(2395), 1, anon_sym_async, - ACTIONS(2408), 1, + ACTIONS(2397), 1, anon_sym_function, - ACTIONS(2410), 1, + ACTIONS(2399), 1, anon_sym_declare, - ACTIONS(2414), 1, + ACTIONS(2403), 1, anon_sym_abstract, - ACTIONS(2418), 1, + ACTIONS(2407), 1, anon_sym_interface, - ACTIONS(2420), 1, + ACTIONS(2409), 1, anon_sym_enum, - ACTIONS(3803), 1, + ACTIONS(3798), 1, anon_sym_STAR, - ACTIONS(3805), 1, + ACTIONS(3800), 1, anon_sym_default, - ACTIONS(3807), 1, + ACTIONS(3802), 1, anon_sym_type, - ACTIONS(3809), 1, + ACTIONS(3804), 1, anon_sym_EQ, - ACTIONS(3811), 1, + ACTIONS(3806), 1, anon_sym_as, - ACTIONS(3813), 1, + ACTIONS(3808), 1, anon_sym_COMMA, - ACTIONS(3816), 1, + ACTIONS(3811), 1, anon_sym_RBRACE, - ACTIONS(3821), 1, + ACTIONS(3816), 1, anon_sym_module, - STATE(1285), 1, + STATE(1344), 1, sym_decorator, - STATE(3915), 1, + STATE(4286), 1, sym_declaration, - STATE(3916), 1, + STATE(4287), 1, sym_internal_module, - STATE(4323), 1, + STATE(4304), 1, aux_sym_export_statement_repeat1, - STATE(4452), 1, + STATE(4460), 1, sym_export_clause, - STATE(4823), 1, + STATE(4792), 1, aux_sym_object_repeat1, - STATE(4834), 1, + STATE(4815), 1, aux_sym_object_pattern_repeat1, - STATE(5246), 1, + STATE(5202), 1, sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3819), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -160201,7 +158378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(3912), 13, + STATE(4275), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -160215,75 +158392,75 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [23366] = 29, - ACTIONS(1643), 1, + [23361] = 29, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - ACTIONS(3823), 1, + ACTIONS(3818), 1, anon_sym_STAR, - ACTIONS(3825), 1, + ACTIONS(3820), 1, anon_sym_RBRACE, - ACTIONS(3827), 1, + ACTIONS(3822), 1, anon_sym_SEMI, - ACTIONS(3829), 1, + ACTIONS(3824), 1, anon_sym_async, - ACTIONS(3833), 1, + ACTIONS(3828), 1, anon_sym_AT, - ACTIONS(3835), 1, + ACTIONS(3830), 1, anon_sym_static, - ACTIONS(3837), 1, + ACTIONS(3832), 1, anon_sym_readonly, - ACTIONS(3841), 1, + ACTIONS(3836), 1, anon_sym_declare, - ACTIONS(3843), 1, + ACTIONS(3838), 1, anon_sym_abstract, - ACTIONS(3845), 1, + ACTIONS(3840), 1, anon_sym_accessor, - STATE(2424), 1, + STATE(2478), 1, aux_sym_export_statement_repeat1, - STATE(2674), 1, + STATE(2700), 1, sym_method_definition, - STATE(2733), 1, + STATE(2736), 1, sym_accessibility_modifier, - STATE(2815), 1, - sym_decorator, - STATE(2817), 1, + STATE(2795), 1, sym_override_modifier, - STATE(4444), 1, + STATE(2802), 1, + sym_decorator, + STATE(4440), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3831), 2, + ACTIONS(3826), 2, sym_number, sym_private_property_identifier, - ACTIONS(3839), 2, + ACTIONS(3834), 2, anon_sym_get, anon_sym_set, - STATE(1489), 2, + STATE(1490), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3060), 3, + STATE(3062), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4675), 3, + STATE(5021), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3705), 13, + ACTIONS(3700), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -160297,161 +158474,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23477] = 33, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(2292), 1, - anon_sym_LBRACE, - ACTIONS(2394), 1, - anon_sym_namespace, - ACTIONS(2396), 1, - anon_sym_import, - ACTIONS(2398), 1, - anon_sym_var, - ACTIONS(2400), 1, - anon_sym_let, - ACTIONS(2402), 1, - anon_sym_const, - ACTIONS(2404), 1, - anon_sym_class, - ACTIONS(2406), 1, - anon_sym_async, - ACTIONS(2408), 1, - anon_sym_function, - ACTIONS(2410), 1, - anon_sym_declare, - ACTIONS(2414), 1, - anon_sym_abstract, - ACTIONS(2418), 1, - anon_sym_interface, - ACTIONS(2420), 1, - anon_sym_enum, - ACTIONS(3803), 1, - anon_sym_STAR, - ACTIONS(3805), 1, - anon_sym_default, - ACTIONS(3807), 1, - anon_sym_type, - ACTIONS(3809), 1, - anon_sym_EQ, - ACTIONS(3811), 1, - anon_sym_as, - ACTIONS(3813), 1, - anon_sym_COMMA, - ACTIONS(3821), 1, - anon_sym_module, - ACTIONS(3847), 1, - anon_sym_RBRACE, - STATE(1285), 1, - sym_decorator, - STATE(3915), 1, - sym_declaration, - STATE(3916), 1, - sym_internal_module, - STATE(4323), 1, - aux_sym_export_statement_repeat1, - STATE(4452), 1, - sym_export_clause, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, - aux_sym_object_repeat1, - STATE(5246), 1, - sym_namespace_export, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3819), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(3912), 13, - 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_import_alias, - sym_interface_declaration, - sym_enum_declaration, - sym_type_alias_declaration, - [23596] = 29, - ACTIONS(1643), 1, + [23472] = 29, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - ACTIONS(3823), 1, + ACTIONS(3818), 1, anon_sym_STAR, - ACTIONS(3829), 1, + ACTIONS(3824), 1, anon_sym_async, - ACTIONS(3833), 1, + ACTIONS(3828), 1, anon_sym_AT, - ACTIONS(3835), 1, + ACTIONS(3830), 1, anon_sym_static, - ACTIONS(3837), 1, + ACTIONS(3832), 1, anon_sym_readonly, - ACTIONS(3841), 1, + ACTIONS(3836), 1, anon_sym_declare, - ACTIONS(3843), 1, + ACTIONS(3838), 1, anon_sym_abstract, - ACTIONS(3845), 1, + ACTIONS(3840), 1, anon_sym_accessor, - ACTIONS(3850), 1, + ACTIONS(3842), 1, anon_sym_RBRACE, - ACTIONS(3852), 1, + ACTIONS(3844), 1, anon_sym_SEMI, - STATE(2424), 1, + STATE(2478), 1, aux_sym_export_statement_repeat1, - STATE(2674), 1, + STATE(2700), 1, sym_method_definition, - STATE(2733), 1, + STATE(2736), 1, sym_accessibility_modifier, - STATE(2815), 1, - sym_decorator, - STATE(2817), 1, + STATE(2795), 1, sym_override_modifier, - STATE(4444), 1, + STATE(2802), 1, + sym_decorator, + STATE(4440), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3831), 2, + ACTIONS(3826), 2, sym_number, sym_private_property_identifier, - ACTIONS(3839), 2, + ACTIONS(3834), 2, anon_sym_get, anon_sym_set, - STATE(1496), 2, + STATE(1485), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3060), 3, + STATE(3062), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4675), 3, + STATE(5021), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3705), 13, + ACTIONS(3700), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -160465,75 +158556,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23707] = 29, - ACTIONS(1643), 1, + [23583] = 29, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - ACTIONS(3823), 1, + ACTIONS(3818), 1, anon_sym_STAR, - ACTIONS(3829), 1, + ACTIONS(3824), 1, anon_sym_async, - ACTIONS(3833), 1, + ACTIONS(3828), 1, anon_sym_AT, - ACTIONS(3835), 1, + ACTIONS(3830), 1, anon_sym_static, - ACTIONS(3837), 1, + ACTIONS(3832), 1, anon_sym_readonly, - ACTIONS(3841), 1, + ACTIONS(3836), 1, anon_sym_declare, - ACTIONS(3843), 1, + ACTIONS(3838), 1, anon_sym_abstract, - ACTIONS(3845), 1, + ACTIONS(3840), 1, anon_sym_accessor, - ACTIONS(3854), 1, + ACTIONS(3846), 1, anon_sym_RBRACE, - ACTIONS(3856), 1, + ACTIONS(3848), 1, anon_sym_SEMI, - STATE(2424), 1, + STATE(2478), 1, aux_sym_export_statement_repeat1, - STATE(2674), 1, + STATE(2700), 1, sym_method_definition, - STATE(2733), 1, + STATE(2736), 1, sym_accessibility_modifier, - STATE(2815), 1, - sym_decorator, - STATE(2817), 1, + STATE(2795), 1, sym_override_modifier, - STATE(4444), 1, + STATE(2802), 1, + sym_decorator, + STATE(4440), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3831), 2, + ACTIONS(3826), 2, sym_number, sym_private_property_identifier, - ACTIONS(3839), 2, + ACTIONS(3834), 2, anon_sym_get, anon_sym_set, - STATE(1491), 2, + STATE(1492), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3060), 3, + STATE(3062), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4675), 3, + STATE(5021), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3705), 13, + ACTIONS(3700), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -160547,75 +158638,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23818] = 29, - ACTIONS(1643), 1, - anon_sym_DQUOTE, - ACTIONS(1645), 1, - anon_sym_SQUOTE, - ACTIONS(3715), 1, - anon_sym_LBRACK, - ACTIONS(3731), 1, - anon_sym_override, - ACTIONS(3823), 1, + [23694] = 29, + ACTIONS(3853), 1, anon_sym_STAR, - ACTIONS(3829), 1, + ACTIONS(3856), 1, + anon_sym_RBRACE, + ACTIONS(3858), 1, + anon_sym_SEMI, + ACTIONS(3861), 1, + anon_sym_LBRACK, + ACTIONS(3864), 1, anon_sym_async, - ACTIONS(3833), 1, + ACTIONS(3870), 1, + anon_sym_DQUOTE, + ACTIONS(3873), 1, + anon_sym_SQUOTE, + ACTIONS(3879), 1, anon_sym_AT, - ACTIONS(3835), 1, + ACTIONS(3882), 1, anon_sym_static, - ACTIONS(3837), 1, + ACTIONS(3885), 1, anon_sym_readonly, - ACTIONS(3841), 1, + ACTIONS(3891), 1, anon_sym_declare, - ACTIONS(3843), 1, + ACTIONS(3897), 1, + anon_sym_override, + ACTIONS(3900), 1, anon_sym_abstract, - ACTIONS(3845), 1, + ACTIONS(3903), 1, anon_sym_accessor, - ACTIONS(3858), 1, - anon_sym_RBRACE, - ACTIONS(3860), 1, - anon_sym_SEMI, - STATE(2424), 1, + STATE(2478), 1, aux_sym_export_statement_repeat1, - STATE(2674), 1, + STATE(2700), 1, sym_method_definition, - STATE(2733), 1, + STATE(2736), 1, sym_accessibility_modifier, - STATE(2815), 1, - sym_decorator, - STATE(2817), 1, + STATE(2795), 1, sym_override_modifier, - STATE(4444), 1, + STATE(2802), 1, + sym_decorator, + STATE(4440), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3867), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3831), 2, + ACTIONS(3876), 2, sym_number, sym_private_property_identifier, - ACTIONS(3839), 2, + ACTIONS(3888), 2, anon_sym_get, anon_sym_set, - STATE(1492), 2, + STATE(1485), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3729), 3, + ACTIONS(3894), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3060), 3, + STATE(3062), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4675), 3, + STATE(5021), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3705), 13, + ACTIONS(3850), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -160629,71 +158720,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23929] = 33, - ACTIONS(99), 1, + [23805] = 33, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(2292), 1, + ACTIONS(2139), 1, anon_sym_LBRACE, - ACTIONS(2394), 1, + ACTIONS(2383), 1, anon_sym_namespace, - ACTIONS(2396), 1, + ACTIONS(2385), 1, anon_sym_import, - ACTIONS(2398), 1, + ACTIONS(2387), 1, anon_sym_var, - ACTIONS(2400), 1, + ACTIONS(2389), 1, anon_sym_let, - ACTIONS(2402), 1, + ACTIONS(2391), 1, anon_sym_const, - ACTIONS(2404), 1, + ACTIONS(2393), 1, anon_sym_class, - ACTIONS(2406), 1, + ACTIONS(2395), 1, anon_sym_async, - ACTIONS(2408), 1, + ACTIONS(2397), 1, anon_sym_function, - ACTIONS(2410), 1, + ACTIONS(2399), 1, anon_sym_declare, - ACTIONS(2414), 1, + ACTIONS(2403), 1, anon_sym_abstract, - ACTIONS(2418), 1, + ACTIONS(2407), 1, anon_sym_interface, - ACTIONS(2420), 1, + ACTIONS(2409), 1, anon_sym_enum, - ACTIONS(3803), 1, + ACTIONS(3798), 1, anon_sym_STAR, - ACTIONS(3805), 1, + ACTIONS(3800), 1, anon_sym_default, - ACTIONS(3807), 1, + ACTIONS(3802), 1, anon_sym_type, - ACTIONS(3809), 1, + ACTIONS(3804), 1, anon_sym_EQ, - ACTIONS(3811), 1, + ACTIONS(3806), 1, anon_sym_as, - ACTIONS(3813), 1, + ACTIONS(3808), 1, anon_sym_COMMA, - ACTIONS(3821), 1, + ACTIONS(3816), 1, anon_sym_module, - ACTIONS(3862), 1, + ACTIONS(3906), 1, anon_sym_RBRACE, - STATE(1285), 1, + STATE(1344), 1, sym_decorator, - STATE(3915), 1, + STATE(4286), 1, sym_declaration, - STATE(3916), 1, + STATE(4287), 1, sym_internal_module, - STATE(4323), 1, + STATE(4304), 1, aux_sym_export_statement_repeat1, - STATE(4452), 1, + STATE(4460), 1, sym_export_clause, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, + STATE(4810), 1, aux_sym_object_repeat1, - STATE(5246), 1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, + STATE(5202), 1, sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3819), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -160701,7 +158792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(3912), 13, + STATE(4275), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -160715,71 +158806,157 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [24048] = 33, - ACTIONS(99), 1, + [23924] = 33, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(2292), 1, + ACTIONS(2139), 1, anon_sym_LBRACE, - ACTIONS(2394), 1, + ACTIONS(2383), 1, anon_sym_namespace, - ACTIONS(2396), 1, + ACTIONS(2385), 1, anon_sym_import, - ACTIONS(2398), 1, + ACTIONS(2387), 1, anon_sym_var, - ACTIONS(2400), 1, + ACTIONS(2389), 1, anon_sym_let, - ACTIONS(2402), 1, + ACTIONS(2391), 1, anon_sym_const, - ACTIONS(2404), 1, + ACTIONS(2393), 1, anon_sym_class, - ACTIONS(2406), 1, + ACTIONS(2395), 1, anon_sym_async, - ACTIONS(2408), 1, + ACTIONS(2397), 1, anon_sym_function, - ACTIONS(2410), 1, + ACTIONS(2399), 1, anon_sym_declare, - ACTIONS(2414), 1, + ACTIONS(2403), 1, anon_sym_abstract, - ACTIONS(2418), 1, + ACTIONS(2407), 1, anon_sym_interface, - ACTIONS(2420), 1, + ACTIONS(2409), 1, anon_sym_enum, - ACTIONS(3803), 1, + ACTIONS(3798), 1, anon_sym_STAR, - ACTIONS(3805), 1, + ACTIONS(3800), 1, anon_sym_default, - ACTIONS(3807), 1, + ACTIONS(3802), 1, anon_sym_type, - ACTIONS(3809), 1, + ACTIONS(3804), 1, anon_sym_EQ, - ACTIONS(3811), 1, + ACTIONS(3806), 1, anon_sym_as, - ACTIONS(3813), 1, + ACTIONS(3808), 1, anon_sym_COMMA, - ACTIONS(3821), 1, + ACTIONS(3816), 1, anon_sym_module, - ACTIONS(3865), 1, + ACTIONS(3909), 1, anon_sym_RBRACE, - STATE(1285), 1, + STATE(1344), 1, sym_decorator, - STATE(3915), 1, + STATE(4286), 1, sym_declaration, - STATE(3916), 1, + STATE(4287), 1, sym_internal_module, - STATE(4323), 1, + STATE(4304), 1, aux_sym_export_statement_repeat1, - STATE(4452), 1, + STATE(4460), 1, sym_export_clause, - STATE(4834), 1, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, aux_sym_object_pattern_repeat1, - STATE(4902), 1, + STATE(5202), 1, + sym_namespace_export, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3814), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(4275), 13, + 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_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [24043] = 33, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(2139), 1, + anon_sym_LBRACE, + ACTIONS(2383), 1, + anon_sym_namespace, + ACTIONS(2385), 1, + anon_sym_import, + ACTIONS(2387), 1, + anon_sym_var, + ACTIONS(2389), 1, + anon_sym_let, + ACTIONS(2391), 1, + anon_sym_const, + ACTIONS(2393), 1, + anon_sym_class, + ACTIONS(2395), 1, + anon_sym_async, + ACTIONS(2397), 1, + anon_sym_function, + ACTIONS(2399), 1, + anon_sym_declare, + ACTIONS(2403), 1, + anon_sym_abstract, + ACTIONS(2407), 1, + anon_sym_interface, + ACTIONS(2409), 1, + anon_sym_enum, + ACTIONS(3798), 1, + anon_sym_STAR, + ACTIONS(3800), 1, + anon_sym_default, + ACTIONS(3802), 1, + anon_sym_type, + ACTIONS(3804), 1, + anon_sym_EQ, + ACTIONS(3806), 1, + anon_sym_as, + ACTIONS(3808), 1, + anon_sym_COMMA, + ACTIONS(3816), 1, + anon_sym_module, + ACTIONS(3912), 1, + anon_sym_RBRACE, + STATE(1344), 1, + sym_decorator, + STATE(4286), 1, + sym_declaration, + STATE(4287), 1, + sym_internal_module, + STATE(4304), 1, + aux_sym_export_statement_repeat1, + STATE(4460), 1, + sym_export_clause, + STATE(4792), 1, aux_sym_object_repeat1, - STATE(5246), 1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, + STATE(5202), 1, sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3819), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -160787,7 +158964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(3912), 13, + STATE(4275), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -160801,75 +158978,75 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [24167] = 29, - ACTIONS(1643), 1, + [24162] = 29, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - ACTIONS(3823), 1, + ACTIONS(3818), 1, anon_sym_STAR, - ACTIONS(3829), 1, + ACTIONS(3824), 1, anon_sym_async, - ACTIONS(3833), 1, + ACTIONS(3828), 1, anon_sym_AT, - ACTIONS(3835), 1, + ACTIONS(3830), 1, anon_sym_static, - ACTIONS(3837), 1, + ACTIONS(3832), 1, anon_sym_readonly, - ACTIONS(3841), 1, + ACTIONS(3836), 1, anon_sym_declare, - ACTIONS(3843), 1, + ACTIONS(3838), 1, anon_sym_abstract, - ACTIONS(3845), 1, + ACTIONS(3840), 1, anon_sym_accessor, - ACTIONS(3856), 1, + ACTIONS(3844), 1, anon_sym_SEMI, - ACTIONS(3868), 1, + ACTIONS(3915), 1, anon_sym_RBRACE, - STATE(2424), 1, + STATE(2478), 1, aux_sym_export_statement_repeat1, - STATE(2674), 1, + STATE(2700), 1, sym_method_definition, - STATE(2733), 1, + STATE(2736), 1, sym_accessibility_modifier, - STATE(2815), 1, - sym_decorator, - STATE(2817), 1, + STATE(2795), 1, sym_override_modifier, - STATE(4444), 1, + STATE(2802), 1, + sym_decorator, + STATE(4440), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3831), 2, + ACTIONS(3826), 2, sym_number, sym_private_property_identifier, - ACTIONS(3839), 2, + ACTIONS(3834), 2, anon_sym_get, anon_sym_set, - STATE(1491), 2, + STATE(1485), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3060), 3, + STATE(3062), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4675), 3, + STATE(5021), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3705), 13, + ACTIONS(3700), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -160883,75 +159060,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24278] = 29, - ACTIONS(1643), 1, + [24273] = 29, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - ACTIONS(3823), 1, + ACTIONS(3818), 1, anon_sym_STAR, - ACTIONS(3829), 1, + ACTIONS(3824), 1, anon_sym_async, - ACTIONS(3833), 1, + ACTIONS(3828), 1, anon_sym_AT, - ACTIONS(3835), 1, + ACTIONS(3830), 1, anon_sym_static, - ACTIONS(3837), 1, + ACTIONS(3832), 1, anon_sym_readonly, - ACTIONS(3841), 1, + ACTIONS(3836), 1, anon_sym_declare, - ACTIONS(3843), 1, + ACTIONS(3838), 1, anon_sym_abstract, - ACTIONS(3845), 1, + ACTIONS(3840), 1, anon_sym_accessor, - ACTIONS(3870), 1, - anon_sym_RBRACE, - ACTIONS(3872), 1, + ACTIONS(3844), 1, anon_sym_SEMI, - STATE(2424), 1, + ACTIONS(3917), 1, + anon_sym_RBRACE, + STATE(2478), 1, aux_sym_export_statement_repeat1, - STATE(2674), 1, + STATE(2700), 1, sym_method_definition, - STATE(2733), 1, + STATE(2736), 1, sym_accessibility_modifier, - STATE(2815), 1, - sym_decorator, - STATE(2817), 1, + STATE(2795), 1, sym_override_modifier, - STATE(4444), 1, + STATE(2802), 1, + sym_decorator, + STATE(4440), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3831), 2, + ACTIONS(3826), 2, sym_number, sym_private_property_identifier, - ACTIONS(3839), 2, + ACTIONS(3834), 2, anon_sym_get, anon_sym_set, STATE(1485), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3060), 3, + STATE(3062), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4675), 3, + STATE(5021), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3705), 13, + ACTIONS(3700), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -160965,75 +159142,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24389] = 29, - ACTIONS(3877), 1, - anon_sym_STAR, - ACTIONS(3880), 1, - anon_sym_RBRACE, - ACTIONS(3882), 1, - anon_sym_SEMI, - ACTIONS(3885), 1, - anon_sym_LBRACK, - ACTIONS(3888), 1, - anon_sym_async, - ACTIONS(3894), 1, + [24384] = 29, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(3897), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3903), 1, + ACTIONS(3706), 1, + anon_sym_LBRACK, + ACTIONS(3722), 1, + anon_sym_override, + ACTIONS(3818), 1, + anon_sym_STAR, + ACTIONS(3824), 1, + anon_sym_async, + ACTIONS(3828), 1, anon_sym_AT, - ACTIONS(3906), 1, + ACTIONS(3830), 1, anon_sym_static, - ACTIONS(3909), 1, + ACTIONS(3832), 1, anon_sym_readonly, - ACTIONS(3915), 1, + ACTIONS(3836), 1, anon_sym_declare, - ACTIONS(3921), 1, - anon_sym_override, - ACTIONS(3924), 1, + ACTIONS(3838), 1, anon_sym_abstract, - ACTIONS(3927), 1, + ACTIONS(3840), 1, anon_sym_accessor, - STATE(2424), 1, + ACTIONS(3919), 1, + anon_sym_RBRACE, + ACTIONS(3921), 1, + anon_sym_SEMI, + STATE(2478), 1, aux_sym_export_statement_repeat1, - STATE(2674), 1, + STATE(2700), 1, sym_method_definition, - STATE(2733), 1, + STATE(2736), 1, sym_accessibility_modifier, - STATE(2815), 1, - sym_decorator, - STATE(2817), 1, + STATE(2795), 1, sym_override_modifier, - STATE(4444), 1, + STATE(2802), 1, + sym_decorator, + STATE(4440), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3891), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3900), 2, + ACTIONS(3826), 2, sym_number, sym_private_property_identifier, - ACTIONS(3912), 2, + ACTIONS(3834), 2, anon_sym_get, anon_sym_set, - STATE(1491), 2, + STATE(1494), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3918), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3060), 3, + STATE(3062), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4675), 3, + STATE(5021), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3874), 13, + ACTIONS(3700), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -161047,75 +159224,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24500] = 29, - ACTIONS(1643), 1, + [24495] = 29, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - ACTIONS(3823), 1, + ACTIONS(3818), 1, anon_sym_STAR, - ACTIONS(3829), 1, + ACTIONS(3824), 1, anon_sym_async, - ACTIONS(3833), 1, + ACTIONS(3828), 1, anon_sym_AT, - ACTIONS(3835), 1, + ACTIONS(3830), 1, anon_sym_static, - ACTIONS(3837), 1, + ACTIONS(3832), 1, anon_sym_readonly, - ACTIONS(3841), 1, + ACTIONS(3836), 1, anon_sym_declare, - ACTIONS(3843), 1, + ACTIONS(3838), 1, anon_sym_abstract, - ACTIONS(3845), 1, + ACTIONS(3840), 1, anon_sym_accessor, - ACTIONS(3856), 1, + ACTIONS(3844), 1, anon_sym_SEMI, - ACTIONS(3930), 1, + ACTIONS(3923), 1, anon_sym_RBRACE, - STATE(2424), 1, + STATE(2478), 1, aux_sym_export_statement_repeat1, - STATE(2674), 1, + STATE(2700), 1, sym_method_definition, - STATE(2733), 1, + STATE(2736), 1, sym_accessibility_modifier, - STATE(2815), 1, - sym_decorator, - STATE(2817), 1, + STATE(2795), 1, sym_override_modifier, - STATE(4444), 1, + STATE(2802), 1, + sym_decorator, + STATE(4440), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3831), 2, + ACTIONS(3826), 2, sym_number, sym_private_property_identifier, - ACTIONS(3839), 2, + ACTIONS(3834), 2, anon_sym_get, anon_sym_set, - STATE(1491), 2, + STATE(1485), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3060), 3, + STATE(3062), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4675), 3, + STATE(5021), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3705), 13, + ACTIONS(3700), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -161129,75 +159306,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24611] = 29, - ACTIONS(1643), 1, + [24606] = 33, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(2139), 1, + anon_sym_LBRACE, + ACTIONS(2383), 1, + anon_sym_namespace, + ACTIONS(2385), 1, + anon_sym_import, + ACTIONS(2387), 1, + anon_sym_var, + ACTIONS(2389), 1, + anon_sym_let, + ACTIONS(2391), 1, + anon_sym_const, + ACTIONS(2393), 1, + anon_sym_class, + ACTIONS(2395), 1, + anon_sym_async, + ACTIONS(2397), 1, + anon_sym_function, + ACTIONS(2399), 1, + anon_sym_declare, + ACTIONS(2403), 1, + anon_sym_abstract, + ACTIONS(2407), 1, + anon_sym_interface, + ACTIONS(2409), 1, + anon_sym_enum, + ACTIONS(3798), 1, + anon_sym_STAR, + ACTIONS(3800), 1, + anon_sym_default, + ACTIONS(3802), 1, + anon_sym_type, + ACTIONS(3804), 1, + anon_sym_EQ, + ACTIONS(3806), 1, + anon_sym_as, + ACTIONS(3808), 1, + anon_sym_COMMA, + ACTIONS(3816), 1, + anon_sym_module, + ACTIONS(3925), 1, + anon_sym_RBRACE, + STATE(1344), 1, + sym_decorator, + STATE(4286), 1, + sym_declaration, + STATE(4287), 1, + sym_internal_module, + STATE(4304), 1, + aux_sym_export_statement_repeat1, + STATE(4460), 1, + sym_export_clause, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, + STATE(5202), 1, + sym_namespace_export, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3814), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(4275), 13, + 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_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [24725] = 29, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - ACTIONS(3823), 1, + ACTIONS(3818), 1, anon_sym_STAR, - ACTIONS(3829), 1, + ACTIONS(3824), 1, anon_sym_async, - ACTIONS(3833), 1, + ACTIONS(3828), 1, anon_sym_AT, - ACTIONS(3835), 1, + ACTIONS(3830), 1, anon_sym_static, - ACTIONS(3837), 1, + ACTIONS(3832), 1, anon_sym_readonly, - ACTIONS(3841), 1, + ACTIONS(3836), 1, anon_sym_declare, - ACTIONS(3843), 1, + ACTIONS(3838), 1, anon_sym_abstract, - ACTIONS(3845), 1, + ACTIONS(3840), 1, anon_sym_accessor, - ACTIONS(3932), 1, - anon_sym_RBRACE, - ACTIONS(3934), 1, + ACTIONS(3844), 1, anon_sym_SEMI, - STATE(2424), 1, + ACTIONS(3928), 1, + anon_sym_RBRACE, + STATE(2478), 1, aux_sym_export_statement_repeat1, - STATE(2674), 1, + STATE(2700), 1, sym_method_definition, - STATE(2733), 1, + STATE(2736), 1, sym_accessibility_modifier, - STATE(2815), 1, - sym_decorator, - STATE(2817), 1, + STATE(2795), 1, sym_override_modifier, - STATE(4444), 1, + STATE(2802), 1, + sym_decorator, + STATE(4440), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3831), 2, + ACTIONS(3826), 2, sym_number, sym_private_property_identifier, - ACTIONS(3839), 2, + ACTIONS(3834), 2, anon_sym_get, anon_sym_set, - STATE(1494), 2, + STATE(1485), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3060), 3, + STATE(3062), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4675), 3, + STATE(5021), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3705), 13, + ACTIONS(3700), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -161211,75 +159474,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24722] = 29, - ACTIONS(1643), 1, + [24836] = 29, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - ACTIONS(3823), 1, + ACTIONS(3818), 1, anon_sym_STAR, - ACTIONS(3829), 1, + ACTIONS(3824), 1, anon_sym_async, - ACTIONS(3833), 1, + ACTIONS(3828), 1, anon_sym_AT, - ACTIONS(3835), 1, + ACTIONS(3830), 1, anon_sym_static, - ACTIONS(3837), 1, + ACTIONS(3832), 1, anon_sym_readonly, - ACTIONS(3841), 1, + ACTIONS(3836), 1, anon_sym_declare, - ACTIONS(3843), 1, + ACTIONS(3838), 1, anon_sym_abstract, - ACTIONS(3845), 1, + ACTIONS(3840), 1, anon_sym_accessor, - ACTIONS(3856), 1, - anon_sym_SEMI, - ACTIONS(3936), 1, + ACTIONS(3930), 1, anon_sym_RBRACE, - STATE(2424), 1, + ACTIONS(3932), 1, + anon_sym_SEMI, + STATE(2478), 1, aux_sym_export_statement_repeat1, - STATE(2674), 1, + STATE(2700), 1, sym_method_definition, - STATE(2733), 1, + STATE(2736), 1, sym_accessibility_modifier, - STATE(2815), 1, - sym_decorator, - STATE(2817), 1, + STATE(2795), 1, sym_override_modifier, - STATE(4444), 1, + STATE(2802), 1, + sym_decorator, + STATE(4440), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3831), 2, + ACTIONS(3826), 2, sym_number, sym_private_property_identifier, - ACTIONS(3839), 2, + ACTIONS(3834), 2, anon_sym_get, anon_sym_set, - STATE(1491), 2, + STATE(1483), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3060), 3, + STATE(3062), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4675), 3, + STATE(5021), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3705), 13, + ACTIONS(3700), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -161293,161 +159556,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24833] = 33, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(2292), 1, - anon_sym_LBRACE, - ACTIONS(2394), 1, - anon_sym_namespace, - ACTIONS(2396), 1, - anon_sym_import, - ACTIONS(2398), 1, - anon_sym_var, - ACTIONS(2400), 1, - anon_sym_let, - ACTIONS(2402), 1, - anon_sym_const, - ACTIONS(2404), 1, - anon_sym_class, - ACTIONS(2406), 1, - anon_sym_async, - ACTIONS(2408), 1, - anon_sym_function, - ACTIONS(2410), 1, - anon_sym_declare, - ACTIONS(2414), 1, - anon_sym_abstract, - ACTIONS(2418), 1, - anon_sym_interface, - ACTIONS(2420), 1, - anon_sym_enum, - ACTIONS(3803), 1, - anon_sym_STAR, - ACTIONS(3805), 1, - anon_sym_default, - ACTIONS(3807), 1, - anon_sym_type, - ACTIONS(3809), 1, - anon_sym_EQ, - ACTIONS(3811), 1, - anon_sym_as, - ACTIONS(3813), 1, - anon_sym_COMMA, - ACTIONS(3821), 1, - anon_sym_module, - ACTIONS(3938), 1, - anon_sym_RBRACE, - STATE(1285), 1, - sym_decorator, - STATE(3915), 1, - sym_declaration, - STATE(3916), 1, - sym_internal_module, - STATE(4323), 1, - aux_sym_export_statement_repeat1, - STATE(4452), 1, - sym_export_clause, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, - aux_sym_object_repeat1, - STATE(5246), 1, - sym_namespace_export, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3819), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(3912), 13, - 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_import_alias, - sym_interface_declaration, - sym_enum_declaration, - sym_type_alias_declaration, - [24952] = 29, - ACTIONS(1643), 1, + [24947] = 29, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3715), 1, + ACTIONS(3706), 1, anon_sym_LBRACK, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - ACTIONS(3823), 1, + ACTIONS(3818), 1, anon_sym_STAR, - ACTIONS(3829), 1, + ACTIONS(3824), 1, anon_sym_async, - ACTIONS(3833), 1, + ACTIONS(3828), 1, anon_sym_AT, - ACTIONS(3835), 1, + ACTIONS(3830), 1, anon_sym_static, - ACTIONS(3837), 1, + ACTIONS(3832), 1, anon_sym_readonly, - ACTIONS(3841), 1, + ACTIONS(3836), 1, anon_sym_declare, - ACTIONS(3843), 1, + ACTIONS(3838), 1, anon_sym_abstract, - ACTIONS(3845), 1, + ACTIONS(3840), 1, anon_sym_accessor, - ACTIONS(3856), 1, - anon_sym_SEMI, - ACTIONS(3941), 1, + ACTIONS(3934), 1, anon_sym_RBRACE, - STATE(2424), 1, + ACTIONS(3936), 1, + anon_sym_SEMI, + STATE(2478), 1, aux_sym_export_statement_repeat1, - STATE(2674), 1, + STATE(2700), 1, sym_method_definition, - STATE(2733), 1, + STATE(2736), 1, sym_accessibility_modifier, - STATE(2815), 1, - sym_decorator, - STATE(2817), 1, + STATE(2795), 1, sym_override_modifier, - STATE(4444), 1, + STATE(2802), 1, + sym_decorator, + STATE(4440), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3831), 2, + ACTIONS(3826), 2, sym_number, sym_private_property_identifier, - ACTIONS(3839), 2, + ACTIONS(3834), 2, anon_sym_get, anon_sym_set, - STATE(1491), 2, + STATE(1489), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3729), 3, + ACTIONS(3720), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3060), 3, + STATE(3062), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4675), 3, + STATE(5021), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3705), 13, + ACTIONS(3700), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -161461,69 +159638,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25063] = 25, - ACTIONS(233), 1, + [25058] = 25, + ACTIONS(231), 1, anon_sym_STAR, - ACTIONS(239), 1, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(251), 1, + ACTIONS(249), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2344), 1, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(3282), 1, + ACTIONS(3275), 1, anon_sym_LBRACE, - ACTIONS(3945), 1, + ACTIONS(3940), 1, anon_sym_RBRACE, - ACTIONS(3947), 1, + ACTIONS(3942), 1, anon_sym_LBRACK, - ACTIONS(3949), 1, + ACTIONS(3944), 1, anon_sym_async, - ACTIONS(3953), 1, + ACTIONS(3948), 1, anon_sym_static, - ACTIONS(3955), 1, + ACTIONS(3950), 1, anon_sym_readonly, - ACTIONS(3961), 1, + ACTIONS(3956), 1, anon_sym_override, - STATE(2785), 1, + STATE(2786), 1, sym_accessibility_modifier, - STATE(2801), 1, + STATE(2808), 1, sym_override_modifier, - STATE(4524), 1, + STATE(4744), 1, aux_sym_object_repeat1, - STATE(4884), 1, + STATE(4745), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3951), 2, + ACTIONS(3946), 2, sym_number, sym_private_property_identifier, - ACTIONS(3957), 2, + ACTIONS(3952), 2, anon_sym_get, anon_sym_set, - ACTIONS(3959), 3, + ACTIONS(3954), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3552), 3, + STATE(3648), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4562), 3, + STATE(4555), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5127), 3, + STATE(4576), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5589), 3, + STATE(5536), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(3943), 14, + ACTIONS(3938), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -161538,134 +159715,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25165] = 13, - ACTIONS(827), 1, - anon_sym_BQUOTE, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, - anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(3973), 1, - anon_sym_QMARK_DOT, - ACTIONS(3975), 1, - anon_sym_LT, - STATE(1638), 1, - sym_type_arguments, - STATE(1658), 1, - sym_template_string, - STATE(1668), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3963), 12, + [25160] = 25, + ACTIONS(231), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(3965), 27, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(237), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_satisfies, - anon_sym_implements, - [25243] = 25, - ACTIONS(233), 1, - anon_sym_STAR, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(251), 1, + ACTIONS(249), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2344), 1, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(3282), 1, + ACTIONS(3275), 1, anon_sym_LBRACE, - ACTIONS(3947), 1, + ACTIONS(3942), 1, anon_sym_LBRACK, - ACTIONS(3979), 1, + ACTIONS(3960), 1, anon_sym_RBRACE, - ACTIONS(3981), 1, + ACTIONS(3962), 1, anon_sym_async, - ACTIONS(3983), 1, + ACTIONS(3964), 1, anon_sym_static, - ACTIONS(3985), 1, + ACTIONS(3966), 1, anon_sym_readonly, - ACTIONS(3991), 1, + ACTIONS(3972), 1, anon_sym_override, - STATE(2785), 1, + STATE(2786), 1, sym_accessibility_modifier, - STATE(2801), 1, + STATE(2808), 1, sym_override_modifier, - STATE(4524), 1, + STATE(4734), 1, aux_sym_object_repeat1, - STATE(4884), 1, + STATE(4745), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3951), 2, + ACTIONS(3946), 2, sym_number, sym_private_property_identifier, - ACTIONS(3987), 2, + ACTIONS(3968), 2, anon_sym_get, anon_sym_set, - ACTIONS(3989), 3, + ACTIONS(3970), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3552), 3, + STATE(3648), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4562), 3, + STATE(4555), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5127), 3, + STATE(4721), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5589), 3, + STATE(5536), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(3977), 14, + ACTIONS(3958), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -161680,69 +159792,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25345] = 25, - ACTIONS(233), 1, + [25262] = 25, + ACTIONS(231), 1, anon_sym_STAR, - ACTIONS(239), 1, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(251), 1, + ACTIONS(249), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2344), 1, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(3282), 1, + ACTIONS(3275), 1, anon_sym_LBRACE, - ACTIONS(3947), 1, + ACTIONS(3942), 1, anon_sym_LBRACK, - ACTIONS(3995), 1, + ACTIONS(3976), 1, anon_sym_RBRACE, - ACTIONS(3997), 1, + ACTIONS(3978), 1, anon_sym_async, - ACTIONS(3999), 1, + ACTIONS(3980), 1, anon_sym_static, - ACTIONS(4001), 1, + ACTIONS(3982), 1, anon_sym_readonly, - ACTIONS(4007), 1, + ACTIONS(3988), 1, anon_sym_override, - STATE(2785), 1, + STATE(2786), 1, sym_accessibility_modifier, - STATE(2801), 1, + STATE(2808), 1, sym_override_modifier, - STATE(4524), 1, + STATE(4734), 1, aux_sym_object_repeat1, - STATE(4884), 1, + STATE(4745), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3951), 2, + ACTIONS(3946), 2, sym_number, sym_private_property_identifier, - ACTIONS(4003), 2, + ACTIONS(3984), 2, anon_sym_get, anon_sym_set, - ACTIONS(4005), 3, + ACTIONS(3986), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3552), 3, + STATE(3648), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4562), 3, + STATE(4555), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5127), 3, + STATE(4721), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5589), 3, + STATE(5536), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(3993), 14, + ACTIONS(3974), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -161757,69 +159869,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25447] = 25, - ACTIONS(233), 1, + [25364] = 25, + ACTIONS(231), 1, anon_sym_STAR, - ACTIONS(239), 1, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(251), 1, + ACTIONS(249), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2344), 1, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(3282), 1, + ACTIONS(3275), 1, anon_sym_LBRACE, - ACTIONS(3947), 1, + ACTIONS(3942), 1, anon_sym_LBRACK, - ACTIONS(4011), 1, + ACTIONS(3992), 1, anon_sym_RBRACE, - ACTIONS(4013), 1, + ACTIONS(3994), 1, anon_sym_async, - ACTIONS(4015), 1, + ACTIONS(3996), 1, anon_sym_static, - ACTIONS(4017), 1, + ACTIONS(3998), 1, anon_sym_readonly, - ACTIONS(4023), 1, + ACTIONS(4004), 1, anon_sym_override, - STATE(2785), 1, + STATE(2786), 1, sym_accessibility_modifier, - STATE(2801), 1, + STATE(2808), 1, sym_override_modifier, - STATE(4524), 1, + STATE(4734), 1, aux_sym_object_repeat1, - STATE(4884), 1, + STATE(4745), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3951), 2, + ACTIONS(3946), 2, sym_number, sym_private_property_identifier, - ACTIONS(4019), 2, + ACTIONS(4000), 2, anon_sym_get, anon_sym_set, - ACTIONS(4021), 3, + ACTIONS(4002), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3552), 3, + STATE(3648), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4562), 3, + STATE(4555), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5127), 3, + STATE(4721), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5589), 3, + STATE(5536), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(4009), 14, + ACTIONS(3990), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -161834,69 +159946,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25549] = 25, - ACTIONS(233), 1, + [25466] = 13, + ACTIONS(820), 1, + anon_sym_BQUOTE, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4016), 1, + anon_sym_QMARK_DOT, + ACTIONS(4018), 1, + anon_sym_LT, + STATE(1627), 1, + sym_type_arguments, + STATE(1657), 1, + sym_template_string, + STATE(1666), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4006), 12, anon_sym_STAR, - ACTIONS(239), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(4008), 27, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + anon_sym_implements, + [25544] = 25, + ACTIONS(231), 1, + anon_sym_STAR, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(251), 1, + ACTIONS(249), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2344), 1, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(3282), 1, + ACTIONS(3275), 1, anon_sym_LBRACE, - ACTIONS(3947), 1, + ACTIONS(3942), 1, anon_sym_LBRACK, - ACTIONS(4027), 1, + ACTIONS(4022), 1, anon_sym_RBRACE, - ACTIONS(4029), 1, + ACTIONS(4024), 1, anon_sym_async, - ACTIONS(4031), 1, + ACTIONS(4026), 1, anon_sym_static, - ACTIONS(4033), 1, + ACTIONS(4028), 1, anon_sym_readonly, - ACTIONS(4039), 1, + ACTIONS(4034), 1, anon_sym_override, - STATE(2785), 1, + STATE(2786), 1, sym_accessibility_modifier, - STATE(2801), 1, + STATE(2808), 1, sym_override_modifier, - STATE(4524), 1, + STATE(4734), 1, aux_sym_object_repeat1, - STATE(4884), 1, + STATE(4745), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3951), 2, + ACTIONS(3946), 2, sym_number, sym_private_property_identifier, - ACTIONS(4035), 2, + ACTIONS(4030), 2, anon_sym_get, anon_sym_set, - ACTIONS(4037), 3, + ACTIONS(4032), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3552), 3, + STATE(3648), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4562), 3, + STATE(4555), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5127), 3, + STATE(4721), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5589), 3, + STATE(5536), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(4025), 14, + ACTIONS(4020), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -161911,69 +160088,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25651] = 25, - ACTIONS(233), 1, + [25646] = 25, + ACTIONS(231), 1, anon_sym_STAR, - ACTIONS(239), 1, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(251), 1, + ACTIONS(249), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2344), 1, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(3282), 1, + ACTIONS(3275), 1, anon_sym_LBRACE, - ACTIONS(3947), 1, + ACTIONS(3942), 1, anon_sym_LBRACK, - ACTIONS(4043), 1, + ACTIONS(4038), 1, anon_sym_RBRACE, - ACTIONS(4045), 1, + ACTIONS(4040), 1, anon_sym_async, - ACTIONS(4047), 1, + ACTIONS(4042), 1, anon_sym_static, - ACTIONS(4049), 1, + ACTIONS(4044), 1, anon_sym_readonly, - ACTIONS(4055), 1, + ACTIONS(4050), 1, anon_sym_override, - STATE(2785), 1, + STATE(2786), 1, sym_accessibility_modifier, - STATE(2801), 1, + STATE(2808), 1, sym_override_modifier, - STATE(4653), 1, + STATE(4734), 1, aux_sym_object_repeat1, - STATE(4884), 1, + STATE(4745), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3951), 2, + ACTIONS(3946), 2, sym_number, sym_private_property_identifier, - ACTIONS(4051), 2, + ACTIONS(4046), 2, anon_sym_get, anon_sym_set, - ACTIONS(4053), 3, + ACTIONS(4048), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3552), 3, + STATE(3648), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4562), 3, + STATE(4555), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(4699), 3, + STATE(4721), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5589), 3, + STATE(5536), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(4041), 14, + ACTIONS(4036), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -161988,21 +160165,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25753] = 8, - ACTIONS(3967), 1, + [25748] = 8, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3975), 1, + ACTIONS(4018), 1, anon_sym_LT, - ACTIONS(4061), 1, + ACTIONS(4052), 1, anon_sym_DOT, - STATE(1552), 1, - sym_type_arguments, - STATE(1592), 1, + STATE(1602), 1, sym_arguments, + STATE(1603), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4057), 12, + ACTIONS(3522), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162015,7 +160192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4059), 31, + ACTIONS(3512), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162047,21 +160224,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25820] = 8, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3975), 1, + [25815] = 7, + ACTIONS(4018), 1, anon_sym_LT, - ACTIONS(4063), 1, + ACTIONS(4056), 1, anon_sym_DOT, - STATE(1643), 1, - sym_arguments, - STATE(1648), 1, + ACTIONS(4058), 1, + anon_sym_is, + STATE(1626), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3527), 12, + ACTIONS(4054), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162074,12 +160249,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3517), 31, + ACTIONS(3548), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, @@ -162106,144 +160282,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25887] = 30, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(2292), 1, - anon_sym_LBRACE, - ACTIONS(2394), 1, - anon_sym_namespace, - ACTIONS(2396), 1, - anon_sym_import, - ACTIONS(2398), 1, - anon_sym_var, - ACTIONS(2400), 1, - anon_sym_let, - ACTIONS(2402), 1, - anon_sym_const, - ACTIONS(2404), 1, - anon_sym_class, - ACTIONS(2406), 1, - anon_sym_async, - ACTIONS(2408), 1, - anon_sym_function, - ACTIONS(2410), 1, - anon_sym_declare, - ACTIONS(2414), 1, - anon_sym_abstract, - ACTIONS(2418), 1, - anon_sym_interface, - ACTIONS(2420), 1, - anon_sym_enum, - ACTIONS(3803), 1, - anon_sym_STAR, - ACTIONS(3805), 1, - anon_sym_default, - ACTIONS(3807), 1, - anon_sym_type, - ACTIONS(3809), 1, - anon_sym_EQ, - ACTIONS(3811), 1, - anon_sym_as, - ACTIONS(3821), 1, - anon_sym_module, - STATE(1285), 1, - sym_decorator, - STATE(3915), 1, - sym_declaration, - STATE(3916), 1, - sym_internal_module, - STATE(4323), 1, - aux_sym_export_statement_repeat1, - STATE(4452), 1, - sym_export_clause, - STATE(5246), 1, - sym_namespace_export, + [25880] = 8, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4018), 1, + anon_sym_LT, + ACTIONS(4064), 1, + anon_sym_DOT, + STATE(1610), 1, + sym_arguments, + STATE(1611), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4065), 2, + ACTIONS(4060), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(4062), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3819), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(3912), 13, - 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_import_alias, - sym_interface_declaration, - sym_enum_declaration, - sym_type_alias_declaration, - [25998] = 29, - ACTIONS(99), 1, + 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, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_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_satisfies, + anon_sym_extends, + anon_sym_implements, + [25947] = 29, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(2292), 1, + ACTIONS(2139), 1, anon_sym_LBRACE, - ACTIONS(2394), 1, + ACTIONS(2383), 1, anon_sym_namespace, - ACTIONS(2396), 1, + ACTIONS(2385), 1, anon_sym_import, - ACTIONS(2398), 1, + ACTIONS(2387), 1, anon_sym_var, - ACTIONS(2400), 1, + ACTIONS(2389), 1, anon_sym_let, - ACTIONS(2402), 1, + ACTIONS(2391), 1, anon_sym_const, - ACTIONS(2404), 1, + ACTIONS(2393), 1, anon_sym_class, - ACTIONS(2406), 1, + ACTIONS(2395), 1, anon_sym_async, - ACTIONS(2408), 1, + ACTIONS(2397), 1, anon_sym_function, - ACTIONS(2410), 1, + ACTIONS(2399), 1, anon_sym_declare, - ACTIONS(2414), 1, + ACTIONS(2403), 1, anon_sym_abstract, - ACTIONS(2418), 1, + ACTIONS(2407), 1, anon_sym_interface, - ACTIONS(2420), 1, + ACTIONS(2409), 1, anon_sym_enum, - ACTIONS(3803), 1, + ACTIONS(3798), 1, anon_sym_STAR, - ACTIONS(3805), 1, + ACTIONS(3800), 1, anon_sym_default, - ACTIONS(3807), 1, + ACTIONS(3802), 1, anon_sym_type, - ACTIONS(3811), 1, + ACTIONS(3806), 1, anon_sym_as, - ACTIONS(3821), 1, + ACTIONS(3816), 1, anon_sym_module, - ACTIONS(4069), 1, + ACTIONS(4066), 1, anon_sym_EQ, - STATE(1285), 1, + STATE(1344), 1, sym_decorator, - STATE(3915), 1, + STATE(4286), 1, sym_declaration, - STATE(3916), 1, + STATE(4287), 1, sym_internal_module, - STATE(4323), 1, + STATE(4304), 1, aux_sym_export_statement_repeat1, - STATE(4452), 1, + STATE(4460), 1, sym_export_clause, - STATE(5246), 1, + STATE(5202), 1, sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3819), 9, + ACTIONS(3814), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -162253,7 +160407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(3912), 13, + STATE(4275), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -162267,21 +160421,11 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [26107] = 8, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3975), 1, - anon_sym_LT, - ACTIONS(4075), 1, - anon_sym_DOT, - STATE(1562), 1, - sym_arguments, - STATE(1594), 1, - sym_type_arguments, + [26056] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4071), 12, + ACTIONS(1756), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162291,21 +160435,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4073), 31, + anon_sym_QMARK, + ACTIONS(1754), 34, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_of, + anon_sym_while, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -162325,12 +160474,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - anon_sym_implements, - [26174] = 3, + anon_sym_PIPE_RBRACE, + [26113] = 8, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4018), 1, + anon_sym_LT, + ACTIONS(4072), 1, + anon_sym_DOT, + STATE(1604), 1, + sym_arguments, + STATE(1609), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1749), 14, + ACTIONS(4068), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162340,26 +160499,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - anon_sym_QMARK, - ACTIONS(1747), 34, - sym__automatic_semicolon, + ACTIONS(4070), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, + anon_sym_RBRACK, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -162379,12 +160533,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, + anon_sym_implements, + [26180] = 30, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(2139), 1, + anon_sym_LBRACE, + ACTIONS(2383), 1, + anon_sym_namespace, + ACTIONS(2385), 1, + anon_sym_import, + ACTIONS(2387), 1, + anon_sym_var, + ACTIONS(2389), 1, + anon_sym_let, + ACTIONS(2391), 1, + anon_sym_const, + ACTIONS(2393), 1, + anon_sym_class, + ACTIONS(2395), 1, + anon_sym_async, + ACTIONS(2397), 1, + anon_sym_function, + ACTIONS(2399), 1, + anon_sym_declare, + ACTIONS(2403), 1, + anon_sym_abstract, + ACTIONS(2407), 1, + anon_sym_interface, + ACTIONS(2409), 1, + anon_sym_enum, + ACTIONS(3798), 1, + anon_sym_STAR, + ACTIONS(3800), 1, + anon_sym_default, + ACTIONS(3802), 1, + anon_sym_type, + ACTIONS(3804), 1, + anon_sym_EQ, + ACTIONS(3806), 1, + anon_sym_as, + ACTIONS(3816), 1, + anon_sym_module, + STATE(1344), 1, + sym_decorator, + STATE(4286), 1, + sym_declaration, + STATE(4287), 1, + sym_internal_module, + STATE(4304), 1, + aux_sym_export_statement_repeat1, + STATE(4460), 1, + sym_export_clause, + STATE(5202), 1, + sym_namespace_export, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4074), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3814), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [26231] = 3, + STATE(4275), 13, + 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_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [26291] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1745), 14, + ACTIONS(1728), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162399,7 +160634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK, - ACTIONS(1743), 34, + ACTIONS(1726), 34, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -162434,19 +160669,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_PIPE_RBRACE, - [26288] = 7, - ACTIONS(3975), 1, + [26348] = 6, + ACTIONS(4018), 1, anon_sym_LT, - ACTIONS(4079), 1, + ACTIONS(4056), 1, anon_sym_DOT, - ACTIONS(4081), 1, - anon_sym_is, - STATE(1542), 1, + STATE(1626), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4077), 12, + ACTIONS(4054), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162459,7 +160692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3567), 32, + ACTIONS(3548), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162492,70 +160725,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26353] = 9, - ACTIONS(827), 1, - anon_sym_BQUOTE, - ACTIONS(3969), 1, - anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(3973), 1, - anon_sym_QMARK_DOT, - STATE(1658), 1, - sym_template_string, - STATE(4828), 1, - sym_optional_chain, + [26410] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1883), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(1885), 28, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_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_satisfies, - anon_sym_implements, - [26421] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1749), 14, + ACTIONS(3225), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162570,7 +160744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK, - ACTIONS(1747), 33, + ACTIONS(3227), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162604,11 +160778,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26477] = 3, + [26466] = 6, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4082), 1, + anon_sym_DOT, + STATE(1548), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3212), 14, + ACTIONS(4078), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162622,21 +160802,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - anon_sym_QMARK, - ACTIONS(3214), 33, + ACTIONS(4080), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -162657,66 +160834,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26533] = 5, - ACTIONS(1709), 1, - anon_sym_EQ, - ACTIONS(4083), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1705), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(1703), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + [26528] = 9, + ACTIONS(820), 1, + anon_sym_BQUOTE, + ACTIONS(4012), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4014), 1, anon_sym_DOT, + ACTIONS(4016), 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_satisfies, - anon_sym_implements, - [26593] = 3, + STATE(1657), 1, + sym_template_string, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3208), 14, + ACTIONS(1734), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162730,8 +160864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - anon_sym_QMARK, - ACTIONS(3210), 33, + ACTIONS(1736), 28, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162742,10 +160875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -162761,17 +160891,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [26649] = 4, - ACTIONS(4089), 1, - anon_sym_is, + [26596] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4085), 13, + ACTIONS(4084), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162785,7 +160911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4087), 33, + ACTIONS(4086), 34, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162819,13 +160945,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26707] = 4, - ACTIONS(4081), 1, anon_sym_is, + [26652] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 13, + ACTIONS(1728), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162839,7 +160964,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4093), 33, + anon_sym_QMARK, + ACTIONS(1726), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162873,11 +160999,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26765] = 3, + [26708] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1745), 14, + ACTIONS(3237), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162892,7 +161018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK, - ACTIONS(1743), 33, + ACTIONS(3239), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162926,67 +161052,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26821] = 6, - ACTIONS(3975), 1, - anon_sym_LT, - ACTIONS(4079), 1, - anon_sym_DOT, - STATE(1542), 1, - sym_type_arguments, + [26764] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4077), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(3567), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_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_satisfies, - anon_sym_extends, - anon_sym_implements, - [26883] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3216), 14, + ACTIONS(1756), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163001,7 +161071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT, anon_sym_QMARK, - ACTIONS(3218), 33, + ACTIONS(1754), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163035,64 +161105,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26939] = 22, - ACTIONS(233), 1, + [26820] = 22, + ACTIONS(231), 1, anon_sym_STAR, - ACTIONS(251), 1, + ACTIONS(249), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2344), 1, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(3282), 1, + ACTIONS(3275), 1, anon_sym_LBRACE, - ACTIONS(3947), 1, + ACTIONS(3942), 1, anon_sym_LBRACK, - ACTIONS(4097), 1, + ACTIONS(4090), 1, anon_sym_async, - ACTIONS(4099), 1, + ACTIONS(4092), 1, anon_sym_static, - ACTIONS(4101), 1, + ACTIONS(4094), 1, anon_sym_readonly, - ACTIONS(4107), 1, + ACTIONS(4100), 1, anon_sym_override, - STATE(2785), 1, + STATE(2786), 1, sym_accessibility_modifier, - STATE(2801), 1, + STATE(2808), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3444), 2, + ACTIONS(3437), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3951), 2, + ACTIONS(3946), 2, sym_number, sym_private_property_identifier, - ACTIONS(4103), 2, + ACTIONS(4096), 2, anon_sym_get, anon_sym_set, - ACTIONS(4105), 3, + ACTIONS(4098), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3552), 3, + STATE(3648), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5249), 3, + STATE(5225), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5253), 3, + STATE(5230), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5589), 3, + STATE(5536), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(4095), 14, + ACTIONS(4088), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -163107,13 +161177,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [27033] = 4, - ACTIONS(4081), 1, - anon_sym_is, + [26914] = 5, + ACTIONS(1696), 1, + anon_sym_EQ, + ACTIONS(4102), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4109), 13, + ACTIONS(1692), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163127,7 +161199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4111), 33, + ACTIONS(1690), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163159,13 +161231,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [27091] = 3, + [26974] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1767), 13, + ACTIONS(1900), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163179,7 +161250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1765), 34, + ACTIONS(1898), 34, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163214,11 +161285,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, anon_sym_implements, anon_sym_is, - [27147] = 3, + [27030] = 4, + ACTIONS(4058), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4113), 13, + ACTIONS(4104), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163232,7 +161305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4115), 34, + ACTIONS(4106), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163266,16 +161339,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, + [27088] = 4, + ACTIONS(4112), 1, anon_sym_is, - [27203] = 5, - ACTIONS(3975), 1, - anon_sym_LT, - STATE(1576), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4085), 12, + ACTIONS(4108), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163285,10 +161355,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4087), 33, + ACTIONS(4110), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163322,17 +161393,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27263] = 6, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(4121), 1, - anon_sym_DOT, - STATE(1577), 1, - sym_arguments, + [27146] = 4, + ACTIONS(4058), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4117), 13, + ACTIONS(4114), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163346,18 +161413,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4119), 31, + ACTIONS(4116), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -163378,11 +161447,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27325] = 3, + [27204] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 13, + ACTIONS(3233), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163396,7 +161465,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4125), 33, + anon_sym_QMARK, + ACTIONS(3235), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163430,16 +161500,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27380] = 5, - ACTIONS(4133), 1, - anon_sym_QMARK, + [27260] = 5, + ACTIONS(4018), 1, + anon_sym_LT, + STATE(1545), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4131), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4127), 13, + ACTIONS(4108), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163449,11 +161518,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4129), 30, + ACTIONS(4110), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163461,6 +161529,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -163483,12 +161553,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [27439] = 3, + [27320] = 4, + ACTIONS(3494), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4135), 13, + ACTIONS(3492), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163502,7 +161575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4137), 33, + ACTIONS(3496), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163534,13 +161607,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [27494] = 3, + [27377] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4139), 13, + ACTIONS(4118), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163554,7 +161626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4141), 33, + ACTIONS(4120), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163588,39 +161660,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27549] = 5, + [27432] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4143), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4145), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3499), 10, + ACTIONS(4122), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 30, + anon_sym_GT, + ACTIONS(4124), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -163641,37 +161710,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [27608] = 3, + [27487] = 7, + ACTIONS(1696), 1, + anon_sym_EQ, + ACTIONS(2373), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4147), 13, + ACTIONS(4126), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4129), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(1694), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4149), 33, + ACTIONS(1698), 29, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -163692,13 +161767,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [27663] = 3, + [27550] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4135), 13, + ACTIONS(4132), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163712,7 +161786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4137), 33, + ACTIONS(4134), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163746,11 +161820,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27718] = 3, + [27605] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4151), 13, + ACTIONS(4136), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163764,7 +161838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4153), 33, + ACTIONS(4138), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163798,11 +161872,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27773] = 3, + [27660] = 4, + ACTIONS(4102), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4155), 13, + ACTIONS(1692), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163816,7 +161892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4157), 33, + ACTIONS(1690), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163848,42 +161924,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [27828] = 4, - ACTIONS(4163), 1, - anon_sym_AMP, + [27717] = 7, + ACTIONS(3516), 1, + anon_sym_DOT, + ACTIONS(3520), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4159), 12, + ACTIONS(3512), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3522), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3492), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4161), 33, + ACTIONS(3496), 28, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -163901,13 +161980,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [27885] = 3, + [27780] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4145), 13, + ACTIONS(4140), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163921,7 +161999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4143), 33, + ACTIONS(4142), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163955,11 +162033,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27940] = 3, + [27835] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4165), 13, + ACTIONS(4132), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163973,7 +162051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4167), 33, + ACTIONS(4134), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164007,11 +162085,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27995] = 3, + [27890] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4169), 13, + ACTIONS(4136), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164025,7 +162103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4171), 33, + ACTIONS(4138), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164059,36 +162137,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28050] = 3, + [27945] = 7, + ACTIONS(4146), 1, + anon_sym_EQ, + ACTIONS(4156), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4151), 13, + ACTIONS(4150), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4153), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(4144), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4153), 33, + ACTIONS(4148), 29, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -164109,13 +162192,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [28105] = 3, + [28008] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4173), 13, + ACTIONS(4158), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164129,7 +162211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4175), 33, + ACTIONS(4160), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164163,21 +162245,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28160] = 6, - ACTIONS(4163), 1, - anon_sym_AMP, - ACTIONS(4181), 1, - anon_sym_PIPE, - ACTIONS(4183), 1, - anon_sym_extends, + [28063] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4177), 11, + ACTIONS(2375), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -164185,7 +162263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4179), 32, + ACTIONS(2373), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164217,12 +162295,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [28221] = 3, + [28118] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4169), 13, + ACTIONS(4162), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164236,7 +162315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4171), 33, + ACTIONS(4164), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164270,11 +162349,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28276] = 3, + [28173] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3400), 13, + ACTIONS(4166), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164288,7 +162367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3402), 33, + ACTIONS(4168), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164322,21 +162401,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28331] = 6, - ACTIONS(4163), 1, - anon_sym_AMP, - ACTIONS(4181), 1, - anon_sym_PIPE, - ACTIONS(4183), 1, - anon_sym_extends, + [28228] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4185), 11, + ACTIONS(4170), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -164344,7 +162419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4187), 32, + ACTIONS(4172), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164376,12 +162451,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [28392] = 3, + [28283] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4189), 13, + ACTIONS(4174), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164395,7 +162471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4191), 33, + ACTIONS(4176), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164429,66 +162505,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28447] = 6, - ACTIONS(4197), 1, - anon_sym_LBRACK, - ACTIONS(4201), 1, - anon_sym_extends, + [28338] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4199), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4193), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4195), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_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_satisfies, - anon_sym_implements, - [28508] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4203), 13, + ACTIONS(4162), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164502,7 +162523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4205), 33, + ACTIONS(4164), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164536,13 +162557,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28563] = 4, - ACTIONS(4211), 1, - anon_sym_extends, + [28393] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4207), 13, + ACTIONS(4166), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164556,7 +162575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4209), 32, + ACTIONS(4168), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164588,66 +162607,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [28620] = 5, - ACTIONS(4215), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4213), 2, - anon_sym_RPAREN, anon_sym_extends, - ACTIONS(4127), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4129), 30, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - 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_satisfies, anon_sym_implements, - [28679] = 3, + [28448] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4217), 13, + ACTIONS(4178), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164661,7 +162627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4219), 33, + ACTIONS(4180), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164695,69 +162661,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28734] = 3, + [28503] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3703), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(3493), 33, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(4182), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - 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_satisfies, anon_sym_extends, - anon_sym_implements, - [28789] = 6, - ACTIONS(4163), 1, + ACTIONS(4184), 3, anon_sym_AMP, - ACTIONS(4181), 1, anon_sym_PIPE, - ACTIONS(4183), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4221), 11, + anon_sym_GT, + ACTIONS(3492), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164768,19 +162684,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4223), 32, + ACTIONS(3496), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -164802,11 +162715,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [28850] = 3, + [28562] = 4, + ACTIONS(4052), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4225), 13, + ACTIONS(3522), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164820,7 +162735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4227), 33, + ACTIONS(3512), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164833,7 +162748,6 @@ static const 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, @@ -164854,11 +162768,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28905] = 3, + [28619] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4229), 13, + ACTIONS(4186), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -164872,7 +162786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4231), 33, + ACTIONS(4188), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164906,119 +162820,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28960] = 6, - ACTIONS(4163), 1, - anon_sym_AMP, - ACTIONS(4181), 1, - anon_sym_PIPE, - ACTIONS(4183), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4229), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4231), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - 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_satisfies, - anon_sym_implements, - [29021] = 4, - ACTIONS(4197), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4233), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4235), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_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_satisfies, + [28674] = 4, + ACTIONS(4194), 1, anon_sym_extends, - anon_sym_implements, - [29078] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2386), 13, + ACTIONS(4190), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165032,7 +162840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(2384), 33, + ACTIONS(4192), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165064,13 +162872,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [29133] = 3, + [28731] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4237), 13, + ACTIONS(4196), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165084,7 +162891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4239), 33, + ACTIONS(4198), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165118,11 +162925,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29188] = 3, + [28786] = 4, + ACTIONS(4200), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4241), 13, + ACTIONS(4170), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165136,7 +162945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4243), 33, + ACTIONS(4172), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165147,7 +162956,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -165170,11 +162978,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29243] = 3, + [28843] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4245), 13, + ACTIONS(3417), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165188,7 +162996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4247), 33, + ACTIONS(3419), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165222,11 +163030,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29298] = 3, + [28898] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4215), 13, + ACTIONS(4108), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165240,7 +163048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4213), 33, + ACTIONS(4110), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165274,17 +163082,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29353] = 3, + [28953] = 6, + ACTIONS(4206), 1, + anon_sym_AMP, + ACTIONS(4208), 1, + anon_sym_PIPE, + ACTIONS(4210), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4241), 13, + ACTIONS(4202), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -165292,7 +163104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4243), 33, + ACTIONS(4204), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165324,13 +163136,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [29408] = 3, + [29014] = 4, + ACTIONS(4200), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4241), 13, + ACTIONS(4212), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165344,7 +163157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4243), 33, + ACTIONS(4214), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165355,7 +163168,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -165378,11 +163190,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29463] = 3, + [29071] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4249), 13, + ACTIONS(4216), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165396,7 +163208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4251), 33, + ACTIONS(4218), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165430,11 +163242,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29518] = 3, + [29126] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4249), 13, + ACTIONS(4220), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165448,7 +163260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4251), 33, + ACTIONS(4222), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165482,17 +163294,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29573] = 3, + [29181] = 6, + ACTIONS(4206), 1, + anon_sym_AMP, + ACTIONS(4208), 1, + anon_sym_PIPE, + ACTIONS(4210), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4249), 13, + ACTIONS(4220), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -165500,7 +163316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4251), 33, + ACTIONS(4222), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165532,13 +163348,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [29628] = 3, + [29242] = 4, + ACTIONS(4228), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4253), 13, + ACTIONS(4224), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165552,7 +163369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4255), 33, + ACTIONS(4226), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165565,7 +163382,6 @@ static const 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, @@ -165586,11 +163402,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29683] = 3, + [29299] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4253), 13, + ACTIONS(4230), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165604,7 +163420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4255), 33, + ACTIONS(4232), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165638,11 +163454,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29738] = 3, + [29354] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4253), 13, + ACTIONS(2371), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165656,7 +163472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4255), 33, + ACTIONS(2369), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165690,11 +163506,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29793] = 3, + [29409] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4257), 13, + ACTIONS(4234), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165708,7 +163524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4259), 33, + ACTIONS(4236), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165742,13 +163558,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29848] = 4, - ACTIONS(4265), 1, - anon_sym_DOT, + [29464] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4261), 13, + ACTIONS(4238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165762,7 +163576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4263), 32, + ACTIONS(4240), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165775,6 +163589,7 @@ static const 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, @@ -165795,11 +163610,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29905] = 3, + [29519] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3691), 13, + ACTIONS(4238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165813,7 +163628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3491), 33, + ACTIONS(4240), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165847,11 +163662,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29960] = 3, + [29574] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4267), 13, + ACTIONS(4238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165865,7 +163680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4269), 33, + ACTIONS(4240), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165899,11 +163714,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30015] = 3, + [29629] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4271), 13, + ACTIONS(4242), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165917,7 +163732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4273), 33, + ACTIONS(4244), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165951,11 +163766,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30070] = 3, + [29684] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4275), 13, + ACTIONS(4242), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -165969,7 +163784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4277), 33, + ACTIONS(4244), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166003,11 +163818,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30125] = 3, + [29739] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2382), 13, + ACTIONS(4242), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166021,7 +163836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(2380), 33, + ACTIONS(4244), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166055,13 +163870,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30180] = 4, - ACTIONS(4279), 1, - sym__automatic_semicolon, + [29794] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1791), 13, + ACTIONS(4246), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166075,7 +163888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1789), 32, + ACTIONS(4248), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166107,16 +163920,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [30237] = 5, - ACTIONS(3967), 1, - anon_sym_LPAREN, - STATE(1671), 1, - sym_arguments, + [29849] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4281), 13, + ACTIONS(4246), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166130,12 +163940,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4283), 31, + ACTIONS(4248), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, @@ -166161,14 +163972,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [30296] = 4, - ACTIONS(4289), 1, + [29904] = 4, + ACTIONS(4254), 1, anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4285), 13, + ACTIONS(4250), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166182,7 +163994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4287), 32, + ACTIONS(4252), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166215,11 +164027,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30353] = 3, + [29961] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4292), 13, + ACTIONS(4246), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166233,7 +164045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4294), 33, + ACTIONS(4248), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166267,11 +164079,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30408] = 3, + [30016] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4296), 13, + ACTIONS(4256), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166285,7 +164097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4298), 33, + ACTIONS(4258), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166319,11 +164131,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30463] = 3, + [30071] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4296), 13, + ACTIONS(4260), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166337,7 +164149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4298), 33, + ACTIONS(4262), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166371,11 +164183,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30518] = 3, + [30126] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4296), 13, + ACTIONS(4264), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166389,7 +164201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4298), 33, + ACTIONS(4266), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166423,11 +164235,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30573] = 3, + [30181] = 4, + ACTIONS(4268), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4300), 13, + ACTIONS(1880), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166441,7 +164255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4302), 33, + ACTIONS(1878), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166473,13 +164287,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [30628] = 3, + [30238] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4300), 13, + ACTIONS(4270), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166493,7 +164306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4302), 33, + ACTIONS(4156), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166527,19 +164340,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30683] = 4, - ACTIONS(3533), 1, - anon_sym_EQ, + [30293] = 6, + ACTIONS(4206), 1, + anon_sym_AMP, + ACTIONS(4208), 1, + anon_sym_PIPE, + ACTIONS(4210), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3499), 13, + ACTIONS(4272), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -166547,7 +164362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3503), 32, + ACTIONS(4274), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166580,11 +164395,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [30740] = 3, + [30354] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4300), 13, + ACTIONS(2363), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166598,7 +164413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4302), 33, + ACTIONS(2361), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166632,11 +164447,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30795] = 3, + [30409] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4304), 13, + ACTIONS(4276), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166650,7 +164465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4306), 33, + ACTIONS(4278), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166684,11 +164499,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30850] = 3, + [30464] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4308), 13, + ACTIONS(4280), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166702,7 +164517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4310), 33, + ACTIONS(4282), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166736,11 +164551,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30905] = 3, + [30519] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4312), 13, + ACTIONS(4280), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166754,7 +164569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4314), 33, + ACTIONS(4282), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166788,21 +164603,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30960] = 6, - ACTIONS(4163), 1, - anon_sym_AMP, - ACTIONS(4181), 1, - anon_sym_PIPE, - ACTIONS(4183), 1, - anon_sym_extends, + [30574] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4304), 11, + ACTIONS(4280), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -166810,7 +164621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4306), 32, + ACTIONS(4282), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166842,12 +164653,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [31021] = 3, + [30629] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4316), 13, + ACTIONS(4284), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166861,7 +164673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4318), 33, + ACTIONS(4286), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166895,11 +164707,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31076] = 3, + [30684] = 5, + ACTIONS(4118), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4308), 13, + ACTIONS(4120), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4288), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166913,7 +164730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4310), 33, + ACTIONS(4290), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166921,8 +164738,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -166945,13 +164760,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [31131] = 3, + [30743] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4320), 13, + ACTIONS(4284), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -166965,7 +164779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4322), 33, + ACTIONS(4286), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166999,13 +164813,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31186] = 4, - ACTIONS(4197), 1, - anon_sym_LBRACK, + [30798] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4199), 13, + ACTIONS(3423), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167019,7 +164831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4201), 32, + ACTIONS(3425), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167030,6 +164842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -167052,11 +164865,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31243] = 3, + [30853] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3368), 13, + ACTIONS(4284), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167070,7 +164883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3370), 33, + ACTIONS(4286), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167104,17 +164917,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31298] = 3, + [30908] = 6, + ACTIONS(4206), 1, + anon_sym_AMP, + ACTIONS(4208), 1, + anon_sym_PIPE, + ACTIONS(4210), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4199), 13, + ACTIONS(4292), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -167122,7 +164939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4201), 33, + ACTIONS(4294), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167154,23 +164971,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [31353] = 6, - ACTIONS(4163), 1, - anon_sym_AMP, - ACTIONS(4181), 1, - anon_sym_PIPE, - ACTIONS(4183), 1, + [30969] = 4, + ACTIONS(4110), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4324), 11, + ACTIONS(4296), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -167178,7 +164992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4326), 32, + ACTIONS(4298), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167211,11 +165025,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [31414] = 3, + [31026] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4085), 13, + ACTIONS(4300), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167229,7 +165043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4087), 33, + ACTIONS(4302), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167263,16 +165077,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31469] = 3, + [31081] = 4, + ACTIONS(4206), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4328), 13, + ACTIONS(4304), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -167281,7 +165096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4330), 33, + ACTIONS(4306), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167315,11 +165130,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31524] = 3, + [31138] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4332), 13, + ACTIONS(4308), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167333,7 +165148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4334), 33, + ACTIONS(4310), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167367,11 +165182,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31579] = 3, + [31193] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4336), 13, + ACTIONS(4308), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167385,7 +165200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4338), 33, + ACTIONS(4310), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167419,11 +165234,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31634] = 3, + [31248] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4340), 13, + ACTIONS(4184), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167437,7 +165252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4342), 33, + ACTIONS(4182), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167471,11 +165286,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31689] = 3, + [31303] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4344), 13, + ACTIONS(4312), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167489,7 +165304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4346), 33, + ACTIONS(4314), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167523,17 +165338,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31744] = 6, - ACTIONS(4348), 1, - anon_sym_LBRACE, - ACTIONS(4350), 1, - anon_sym_DOT, - STATE(1714), 1, - sym_statement_block, + [31358] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1719), 13, + ACTIONS(4316), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167547,9 +165356,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1717), 30, + ACTIONS(4318), 33, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -167559,6 +165369,7 @@ static const 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, @@ -167577,18 +165388,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [31805] = 6, - ACTIONS(4352), 1, - anon_sym_LBRACE, - ACTIONS(4354), 1, - anon_sym_DOT, - STATE(1776), 1, - sym_statement_block, + [31413] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1719), 13, + ACTIONS(2379), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167602,18 +165408,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1717), 30, - sym__automatic_semicolon, + ACTIONS(2377), 33, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -167632,18 +165440,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [31866] = 6, - ACTIONS(4352), 1, - anon_sym_LBRACE, - ACTIONS(4356), 1, - anon_sym_DOT, - STATE(1776), 1, - sym_statement_block, + anon_sym_extends, + anon_sym_implements, + [31468] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1719), 13, + ACTIONS(4320), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167657,18 +165460,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1717), 30, - sym__automatic_semicolon, + ACTIONS(4322), 33, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -167687,18 +165492,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [31927] = 6, - ACTIONS(4348), 1, - anon_sym_LBRACE, - ACTIONS(4358), 1, - anon_sym_DOT, - STATE(1714), 1, - sym_statement_block, + anon_sym_extends, + anon_sym_implements, + [31523] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1719), 13, + ACTIONS(4324), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167712,9 +165512,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1717), 30, + ACTIONS(4326), 33, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -167724,6 +165525,7 @@ static const 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, @@ -167742,14 +165544,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [31988] = 4, - ACTIONS(4083), 1, - sym__automatic_semicolon, + [31578] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1705), 13, + ACTIONS(4328), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167763,7 +165564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1703), 32, + ACTIONS(4330), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167795,22 +165596,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [32045] = 5, - ACTIONS(4348), 1, - anon_sym_LBRACE, - STATE(1714), 1, - sym_statement_block, + [31633] = 6, + ACTIONS(4206), 1, + anon_sym_AMP, + ACTIONS(4208), 1, + anon_sym_PIPE, + ACTIONS(4210), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1719), 13, + ACTIONS(4332), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -167818,9 +165620,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1717), 31, + ACTIONS(4334), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -167850,17 +165653,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [32104] = 4, - ACTIONS(4163), 1, - anon_sym_AMP, + [31694] = 6, + ACTIONS(4336), 1, + anon_sym_LBRACE, + ACTIONS(4338), 1, + anon_sym_DOT, + STATE(1750), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4360), 12, + ACTIONS(1676), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -167869,20 +165677,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4362), 33, + ACTIONS(1674), 30, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -167901,15 +165707,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [32161] = 4, - ACTIONS(4063), 1, - anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [31755] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3527), 13, + ACTIONS(3427), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167923,7 +165726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3517), 32, + ACTIONS(3429), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167936,6 +165739,7 @@ static const 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, @@ -167956,11 +165760,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32218] = 3, + [31810] = 6, + ACTIONS(4336), 1, + anon_sym_LBRACE, + ACTIONS(4340), 1, + anon_sym_DOT, + STATE(1750), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4364), 13, + ACTIONS(1676), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -167974,20 +165784,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4366), 33, + ACTIONS(1674), 30, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -168006,13 +165814,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [32273] = 3, + anon_sym_PIPE_RBRACE, + [31871] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4368), 13, + ACTIONS(4342), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168026,7 +165833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4370), 33, + ACTIONS(4344), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168060,15 +165867,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32328] = 5, - ACTIONS(4352), 1, - anon_sym_LBRACE, - STATE(1776), 1, - sym_statement_block, + [31926] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1719), 13, + ACTIONS(4346), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168082,18 +165885,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1717), 31, - sym__automatic_semicolon, + ACTIONS(4348), 33, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -168113,12 +165917,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [32387] = 3, + anon_sym_extends, + anon_sym_implements, + [31981] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4372), 13, + ACTIONS(4350), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168132,7 +165937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4374), 33, + ACTIONS(4352), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168166,15 +165971,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32442] = 5, - ACTIONS(827), 1, - anon_sym_BQUOTE, - STATE(1658), 1, - sym_template_string, + [32036] = 5, + ACTIONS(4336), 1, + anon_sym_LBRACE, + STATE(1750), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1883), 13, + ACTIONS(1676), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168188,19 +165993,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1885), 31, + ACTIONS(1674), 31, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -168218,13 +166022,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [32501] = 3, + anon_sym_PIPE_RBRACE, + [32095] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4376), 13, + ACTIONS(4354), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168238,7 +166043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4378), 33, + ACTIONS(4356), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168272,11 +166077,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32556] = 3, + [32150] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4380), 13, + ACTIONS(4358), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168290,7 +166095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4382), 33, + ACTIONS(4360), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168324,13 +166129,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32611] = 4, - ACTIONS(4388), 1, + [32205] = 6, + ACTIONS(4362), 1, + anon_sym_LBRACE, + ACTIONS(4364), 1, anon_sym_DOT, + STATE(1712), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4384), 13, + ACTIONS(1676), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168344,10 +166153,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4386), 32, + ACTIONS(1674), 30, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -168375,13 +166183,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [32668] = 3, + [32266] = 6, + ACTIONS(4362), 1, + anon_sym_LBRACE, + ACTIONS(4366), 1, + anon_sym_DOT, + STATE(1712), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2390), 13, + ACTIONS(1676), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168395,10 +166208,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(2388), 33, + ACTIONS(1674), 30, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -168408,7 +166220,6 @@ static const 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, @@ -168427,43 +166238,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [32723] = 7, - ACTIONS(1709), 1, - anon_sym_EQ, - ACTIONS(2376), 1, - anon_sym_extends, + [32327] = 5, + ACTIONS(4362), 1, + anon_sym_LBRACE, + STATE(1712), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4390), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4393), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(1707), 10, + ACTIONS(1676), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1711), 29, + anon_sym_GT, + ACTIONS(1674), 31, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -168485,11 +166293,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [32786] = 3, + [32386] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 13, + ACTIONS(2367), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168503,7 +166311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4093), 33, + ACTIONS(2365), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168537,17 +166345,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32841] = 3, + [32441] = 6, + ACTIONS(4206), 1, + anon_sym_AMP, + ACTIONS(4208), 1, + anon_sym_PIPE, + ACTIONS(4210), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4396), 13, + ACTIONS(4296), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -168555,7 +166367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4398), 33, + ACTIONS(4298), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168587,13 +166399,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [32896] = 3, + [32502] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4400), 13, + ACTIONS(4368), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168607,7 +166418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4402), 33, + ACTIONS(4370), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168641,11 +166452,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32951] = 3, + [32557] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4404), 13, + ACTIONS(4372), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168659,7 +166470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4406), 33, + ACTIONS(4374), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168693,11 +166504,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33006] = 3, + [32612] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3336), 13, + ACTIONS(4376), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168711,7 +166522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3338), 33, + ACTIONS(4378), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168745,11 +166556,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33061] = 3, + [32667] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4408), 13, + ACTIONS(4380), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168763,7 +166574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4410), 33, + ACTIONS(4382), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168797,11 +166608,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33116] = 3, + [32722] = 4, + ACTIONS(4388), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4412), 13, + ACTIONS(4384), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168815,7 +166628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4414), 33, + ACTIONS(4386), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168828,7 +166641,6 @@ static const 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, @@ -168849,11 +166661,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33171] = 3, + [32779] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4416), 13, + ACTIONS(4122), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168867,7 +166679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4418), 33, + ACTIONS(4124), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168901,11 +166713,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33226] = 3, + [32834] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4420), 13, + ACTIONS(4391), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168919,7 +166731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4422), 33, + ACTIONS(4393), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168953,11 +166765,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33281] = 3, + [32889] = 5, + ACTIONS(4010), 1, + anon_sym_LPAREN, + STATE(1685), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4416), 13, + ACTIONS(4395), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168971,13 +166787,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4418), 33, + ACTIONS(4397), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, @@ -169003,13 +166818,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [33336] = 3, + [32948] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4109), 13, + ACTIONS(3691), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169023,7 +166837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4111), 33, + ACTIONS(3474), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169057,11 +166871,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33391] = 3, + [33003] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2378), 13, + ACTIONS(3679), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169075,7 +166889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(2376), 33, + ACTIONS(3478), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169109,11 +166923,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33446] = 3, + [33058] = 4, + ACTIONS(4399), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2374), 13, + ACTIONS(4384), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169127,7 +166943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(2372), 33, + ACTIONS(4386), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169140,7 +166956,6 @@ static const 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, @@ -169161,15 +166976,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33501] = 5, - ACTIONS(3967), 1, - anon_sym_LPAREN, - STATE(1687), 1, - sym_arguments, + [33115] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4424), 13, + ACTIONS(4402), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169183,12 +166994,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4426), 31, + ACTIONS(4404), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, @@ -169214,14 +167026,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [33560] = 4, - ACTIONS(4087), 1, anon_sym_extends, + anon_sym_implements, + [33170] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4428), 13, + ACTIONS(4406), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169235,7 +167046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4430), 32, + ACTIONS(4408), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169267,14 +167078,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [33617] = 4, - ACTIONS(4432), 1, - anon_sym_DOT, + [33225] = 5, + ACTIONS(4010), 1, + anon_sym_LPAREN, + STATE(1669), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4285), 13, + ACTIONS(4410), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169288,19 +167102,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4287), 32, + ACTIONS(4412), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -169319,19 +167133,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [33674] = 6, - ACTIONS(4163), 1, + [33284] = 6, + ACTIONS(4206), 1, anon_sym_AMP, - ACTIONS(4181), 1, + ACTIONS(4208), 1, anon_sym_PIPE, - ACTIONS(4183), 1, + ACTIONS(4210), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4435), 11, + ACTIONS(4402), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169343,7 +167156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4437), 32, + ACTIONS(4404), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169376,21 +167189,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [33735] = 6, - ACTIONS(4163), 1, - anon_sym_AMP, - ACTIONS(4181), 1, - anon_sym_PIPE, - ACTIONS(4183), 1, - anon_sym_extends, + [33345] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4439), 11, + ACTIONS(4104), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -169398,7 +167207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4441), 32, + ACTIONS(4106), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169430,12 +167239,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [33796] = 3, + [33400] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4133), 13, + ACTIONS(4380), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169449,7 +167259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4131), 33, + ACTIONS(4382), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169483,11 +167293,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33851] = 3, + [33455] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4420), 13, + ACTIONS(4114), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169501,7 +167311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4422), 33, + ACTIONS(4116), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169535,97 +167345,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33906] = 7, - ACTIONS(3537), 1, - anon_sym_DOT, - ACTIONS(3539), 1, - anon_sym_QMARK_DOT, + [33510] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3517), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3527), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3499), 10, + ACTIONS(4414), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3503), 28, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [33969] = 7, - ACTIONS(4149), 1, - anon_sym_extends, - ACTIONS(4445), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4449), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4452), 3, anon_sym_AMP, anon_sym_PIPE, - anon_sym_GT, - ACTIONS(4443), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4447), 29, + anon_sym_GT, + ACTIONS(4416), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -169646,12 +167395,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [34032] = 3, + [33565] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4139), 13, + ACTIONS(4418), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169665,7 +167415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4141), 33, + ACTIONS(4420), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169699,11 +167449,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [34087] = 3, + [33620] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4455), 13, + ACTIONS(4422), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169717,7 +167467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4457), 33, + ACTIONS(4424), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169751,21 +167501,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [34142] = 6, - ACTIONS(4163), 1, - anon_sym_AMP, - ACTIONS(4181), 1, - anon_sym_PIPE, - ACTIONS(4183), 1, - anon_sym_extends, + [33675] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4428), 11, + ACTIONS(4426), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -169773,7 +167519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4430), 32, + ACTIONS(4428), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169805,12 +167551,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [34203] = 3, + [33730] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4308), 13, + ACTIONS(4430), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169824,7 +167571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4310), 33, + ACTIONS(4432), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169858,20 +167605,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [34258] = 6, - ACTIONS(4167), 1, + [33785] = 6, + ACTIONS(4206), 1, + anon_sym_AMP, + ACTIONS(4208), 1, + anon_sym_PIPE, + ACTIONS(4210), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4463), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4466), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(4459), 10, + ACTIONS(4434), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169882,15 +167626,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4461), 29, + anon_sym_GT, + ACTIONS(4436), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -169912,16 +167660,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34318] = 3, + [33846] = 4, + ACTIONS(4206), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1883), 13, + ACTIONS(4438), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -169930,7 +167679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1885), 32, + ACTIONS(4440), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169962,18 +167711,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [34372] = 3, + [33903] = 6, + ACTIONS(4206), 1, + anon_sym_AMP, + ACTIONS(4208), 1, + anon_sym_PIPE, + ACTIONS(4210), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4469), 13, + ACTIONS(4442), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -169981,7 +167735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4471), 32, + ACTIONS(4444), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170014,11 +167768,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34426] = 3, + [33964] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4473), 13, + ACTIONS(4446), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170032,7 +167786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4475), 32, + ACTIONS(4448), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170064,12 +167818,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [34480] = 3, + [34019] = 5, + ACTIONS(4320), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4459), 13, + ACTIONS(4322), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4288), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170083,7 +167843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4461), 32, + ACTIONS(4290), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170091,8 +167851,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -170116,11 +167874,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34534] = 3, + [34078] = 5, + ACTIONS(820), 1, + anon_sym_BQUOTE, + STATE(1657), 1, + sym_template_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4127), 13, + ACTIONS(1734), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170134,7 +167896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4129), 32, + ACTIONS(1736), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170164,20 +167926,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34588] = 3, + [34137] = 6, + ACTIONS(4172), 1, + anon_sym_extends, + ACTIONS(4200), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4477), 13, + ACTIONS(4170), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4450), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -170185,7 +167951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4479), 32, + ACTIONS(4452), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170196,7 +167962,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -170218,11 +167983,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34642] = 3, + [34198] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4127), 13, + ACTIONS(4308), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170236,7 +168001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4129), 32, + ACTIONS(4310), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170268,12 +168033,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [34696] = 3, + [34253] = 4, + ACTIONS(1696), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4481), 13, + ACTIONS(1694), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170287,7 +168055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4483), 32, + ACTIONS(1698), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170296,7 +168064,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -170320,11 +168087,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34750] = 3, + [34309] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4485), 13, + ACTIONS(1734), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170338,7 +168105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4487), 32, + ACTIONS(1736), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170371,11 +168138,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34804] = 3, + [34363] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4489), 13, + ACTIONS(4454), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170389,7 +168156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4491), 32, + ACTIONS(4456), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170422,11 +168189,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34858] = 3, + [34417] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4493), 13, + ACTIONS(4458), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170440,7 +168207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4495), 32, + ACTIONS(4460), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170473,11 +168240,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34912] = 3, + [34471] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4497), 13, + ACTIONS(4288), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170491,7 +168258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4499), 32, + ACTIONS(4290), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170524,11 +168291,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34966] = 3, + [34525] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1797), 13, + ACTIONS(4462), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170542,7 +168309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1795), 32, + ACTIONS(4464), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170575,11 +168342,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35020] = 3, + [34579] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4501), 13, + ACTIONS(4288), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170593,7 +168360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4503), 32, + ACTIONS(4290), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170626,11 +168393,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35074] = 3, + [34633] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4505), 13, + ACTIONS(4466), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170644,7 +168411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4507), 32, + ACTIONS(4468), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170677,11 +168444,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35128] = 3, + [34687] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4509), 13, + ACTIONS(4470), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170695,7 +168462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4511), 32, + ACTIONS(4472), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170728,11 +168495,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35182] = 3, + [34741] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4513), 13, + ACTIONS(4474), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170746,7 +168513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4515), 32, + ACTIONS(4476), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170779,11 +168546,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35236] = 3, + [34795] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4517), 13, + ACTIONS(4478), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170797,7 +168564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4519), 32, + ACTIONS(4480), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170830,11 +168597,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35290] = 3, + [34849] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4521), 13, + ACTIONS(1886), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170848,7 +168615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4523), 32, + ACTIONS(1884), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170881,11 +168648,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35344] = 3, + [34903] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4525), 13, + ACTIONS(4482), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -170899,7 +168666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4527), 32, + ACTIONS(4484), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170932,39 +168699,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35398] = 6, - ACTIONS(4093), 1, - anon_sym_extends, + [34957] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4529), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4532), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3499), 10, + ACTIONS(4486), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 29, + anon_sym_GT, + ACTIONS(4488), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -170986,11 +168750,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35458] = 3, + [35011] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4535), 13, + ACTIONS(4490), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171004,7 +168768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4537), 32, + ACTIONS(4492), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171037,11 +168801,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35512] = 3, + [35065] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4539), 13, + ACTIONS(4494), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171055,7 +168819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4541), 32, + ACTIONS(4496), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171088,11 +168852,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35566] = 3, + [35119] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4543), 13, + ACTIONS(4498), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171106,7 +168870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4545), 32, + ACTIONS(4500), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171139,11 +168903,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35620] = 3, + [35173] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4547), 13, + ACTIONS(4502), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171157,7 +168921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4549), 32, + ACTIONS(4504), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171190,11 +168954,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35674] = 3, + [35227] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4551), 13, + ACTIONS(4506), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171208,7 +168972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4553), 32, + ACTIONS(4508), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171241,36 +169005,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35728] = 3, + [35281] = 6, + ACTIONS(4106), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1803), 13, + ACTIONS(4510), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4513), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3492), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(1805), 32, + ACTIONS(3496), 29, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -171292,11 +169059,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35782] = 3, + [35341] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4555), 13, + ACTIONS(4516), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171310,7 +169077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4557), 32, + ACTIONS(4518), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171343,11 +169110,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35836] = 3, + [35395] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1837), 13, + ACTIONS(4520), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171361,7 +169128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1835), 32, + ACTIONS(4522), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171394,11 +169161,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35890] = 3, + [35449] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4559), 13, + ACTIONS(4524), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171412,7 +169179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4561), 32, + ACTIONS(4526), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171445,11 +169212,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35944] = 3, + [35503] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4563), 13, + ACTIONS(4528), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171463,7 +169230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4565), 32, + ACTIONS(4530), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171496,11 +169263,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35998] = 3, + [35557] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4567), 13, + ACTIONS(4532), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171514,7 +169281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4569), 32, + ACTIONS(4534), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171547,11 +169314,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36052] = 3, + [35611] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4571), 13, + ACTIONS(1846), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171565,7 +169332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4573), 32, + ACTIONS(1848), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171598,11 +169365,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36106] = 3, + [35665] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4575), 13, + ACTIONS(4536), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171616,7 +169383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4577), 32, + ACTIONS(4538), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171649,11 +169416,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36160] = 3, + [35719] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4579), 13, + ACTIONS(1722), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171667,7 +169434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4581), 32, + ACTIONS(1720), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171700,11 +169467,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36214] = 3, + [35773] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4583), 13, + ACTIONS(4540), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171718,7 +169485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4585), 32, + ACTIONS(4542), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171751,11 +169518,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36268] = 3, + [35827] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4587), 13, + ACTIONS(4544), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171769,7 +169536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4589), 32, + ACTIONS(4546), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171802,78 +169569,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36322] = 19, - ACTIONS(1643), 1, - anon_sym_DQUOTE, - ACTIONS(1645), 1, - anon_sym_SQUOTE, - ACTIONS(3731), 1, - anon_sym_override, - ACTIONS(3813), 1, - anon_sym_COMMA, - ACTIONS(3816), 1, - anon_sym_RBRACE, - ACTIONS(4591), 1, - anon_sym_STAR, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(4597), 1, - anon_sym_async, - ACTIONS(4601), 1, - anon_sym_readonly, - STATE(2812), 1, - sym_override_modifier, - STATE(4823), 1, - aux_sym_object_repeat1, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4599), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4603), 2, - anon_sym_get, - anon_sym_set, - STATE(3114), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3705), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - 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, - anon_sym_object, - [36408] = 3, + [35881] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4605), 13, + ACTIONS(4548), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171887,7 +169587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4607), 32, + ACTIONS(4550), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171920,11 +169620,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36462] = 3, + [35935] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3499), 13, + ACTIONS(4552), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171938,7 +169638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3503), 32, + ACTIONS(4554), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171971,11 +169671,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36516] = 3, + [35989] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4609), 13, + ACTIONS(4556), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -171989,7 +169689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4611), 32, + ACTIONS(4558), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172022,11 +169722,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36570] = 3, + [36043] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1863), 13, + ACTIONS(4560), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172040,7 +169740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1865), 32, + ACTIONS(4562), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172073,11 +169773,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36624] = 3, + [36097] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1815), 13, + ACTIONS(4564), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172091,7 +169791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1817), 32, + ACTIONS(4566), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172124,11 +169824,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36678] = 3, + [36151] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1873), 13, + ACTIONS(4568), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172142,7 +169842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1875), 32, + ACTIONS(4570), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172175,11 +169875,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36732] = 3, + [36205] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1919), 13, + ACTIONS(3492), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172193,7 +169893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1921), 32, + ACTIONS(3496), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172226,11 +169926,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36786] = 3, + [36259] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4613), 13, + ACTIONS(4572), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172244,7 +169944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4615), 32, + ACTIONS(4574), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172277,11 +169977,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36840] = 3, + [36313] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4617), 13, + ACTIONS(4576), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172295,7 +169995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4619), 32, + ACTIONS(4578), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172328,11 +170028,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36894] = 3, + [36367] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1759), 13, + ACTIONS(4580), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172346,7 +170046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1761), 32, + ACTIONS(4582), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172379,11 +170079,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36948] = 3, + [36421] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1773), 13, + ACTIONS(1794), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172397,7 +170097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1775), 32, + ACTIONS(1796), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172430,11 +170130,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37002] = 3, + [36475] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1783), 13, + ACTIONS(1804), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172448,7 +170148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1785), 32, + ACTIONS(1806), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172481,11 +170181,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37056] = 3, + [36529] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1737), 13, + ACTIONS(1814), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172499,7 +170199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1739), 32, + ACTIONS(1816), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172532,11 +170232,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37110] = 3, + [36583] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1825), 13, + ACTIONS(1710), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172550,7 +170250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1827), 32, + ACTIONS(1712), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172583,11 +170283,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37164] = 3, + [36637] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1843), 13, + ACTIONS(4584), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172601,7 +170301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1845), 32, + ACTIONS(4586), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172634,11 +170334,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37218] = 3, + [36691] = 13, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, + anon_sym_LBRACK, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4594), 1, + anon_sym_QMARK_DOT, + ACTIONS(4596), 1, + anon_sym_LT, + STATE(2001), 1, + sym_type_arguments, + STATE(2228), 1, + sym_template_string, + STATE(2333), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1853), 13, + ACTIONS(4006), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172648,25 +170368,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1855), 32, + ACTIONS(4008), 23, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -172682,16 +170394,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [37272] = 4, - ACTIONS(4445), 1, - anon_sym_EQ, + [36765] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4443), 13, + ACTIONS(4598), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172705,7 +170413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4447), 31, + ACTIONS(4600), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172714,6 +170422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -172737,13 +170446,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37328] = 4, - ACTIONS(4623), 1, - anon_sym_EQ, + [36819] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4621), 13, + ACTIONS(1762), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172757,7 +170464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4625), 31, + ACTIONS(1764), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172766,6 +170473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -172789,13 +170497,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37384] = 4, - ACTIONS(1709), 1, - anon_sym_EQ, + [36873] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1707), 13, + ACTIONS(1774), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172809,7 +170515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1711), 31, + ACTIONS(1776), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172818,6 +170524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -172841,31 +170548,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37440] = 13, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4627), 1, + [36927] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1784), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(1786), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4629), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4631), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4633), 1, anon_sym_QMARK_DOT, - ACTIONS(4635), 1, - anon_sym_LT, - STATE(1893), 1, - sym_type_arguments, - STATE(2153), 1, - sym_arguments, - STATE(2255), 1, - sym_template_string, - STATE(4602), 1, - sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [36981] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3963), 12, + ACTIONS(1824), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172875,17 +170613,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3965), 23, - sym__automatic_semicolon, + ACTIONS(1826), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -172901,40 +170647,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [37514] = 6, - ACTIONS(4378), 1, - anon_sym_extends, + anon_sym_implements, + [37035] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4637), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4640), 3, + ACTIONS(1834), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3499), 10, + ACTIONS(1836), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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_satisfies, + anon_sym_implements, + [37089] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1860), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 29, + anon_sym_GT, + ACTIONS(1862), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -172956,11 +170752,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37574] = 3, + [37143] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1889), 13, + ACTIONS(1870), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172974,19 +170770,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1887), 32, - sym__automatic_semicolon, + ACTIONS(1872), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -173006,12 +170802,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [37628] = 3, + anon_sym_implements, + [37197] = 4, + ACTIONS(4146), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1893), 13, + ACTIONS(4144), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -173025,19 +170823,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1891), 32, - sym__automatic_semicolon, + ACTIONS(4148), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - anon_sym_while, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -173057,12 +170854,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [37682] = 3, + anon_sym_implements, + [37253] = 4, + ACTIONS(4604), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1753), 13, + ACTIONS(4602), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -173076,7 +170875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1751), 32, + ACTIONS(4606), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -173085,7 +170884,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -173109,11 +170907,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37736] = 3, + [37309] = 6, + ACTIONS(4408), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1927), 13, + ACTIONS(4608), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4611), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3492), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3496), 29, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + 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, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_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_satisfies, + anon_sym_implements, + [37369] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1890), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -173127,18 +170979,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1925), 32, + ACTIONS(1888), 32, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, 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_satisfies, + anon_sym_PIPE_RBRACE, + [37423] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1894), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(1892), 32, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_while, + anon_sym_LBRACK, + anon_sym_DOT, + 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_satisfies, + anon_sym_PIPE_RBRACE, + [37477] = 6, + ACTIONS(4378), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4614), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4617), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(4458), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4460), 29, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -173160,11 +171117,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37790] = 3, + [37537] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1791), 13, + ACTIONS(1854), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -173178,7 +171135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1789), 32, + ACTIONS(1852), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -173211,11 +171168,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37844] = 3, + [37591] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1889), 13, + ACTIONS(1752), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -173229,7 +171186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1887), 32, + ACTIONS(1750), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -173262,11 +171219,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37898] = 3, + [37645] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1893), 13, + ACTIONS(1880), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -173280,7 +171237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1891), 32, + ACTIONS(1878), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -173313,11 +171270,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37952] = 3, + [37699] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1833), 13, + ACTIONS(1890), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -173331,7 +171288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1831), 32, + ACTIONS(1888), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -173364,47 +171321,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38006] = 19, - ACTIONS(1643), 1, + [37753] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1894), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(1892), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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_satisfies, + anon_sym_implements, + [37807] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1718), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(1716), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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_satisfies, + anon_sym_implements, + [37861] = 19, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - ACTIONS(3813), 1, + ACTIONS(3808), 1, anon_sym_COMMA, - ACTIONS(3862), 1, + ACTIONS(3912), 1, anon_sym_RBRACE, - ACTIONS(4591), 1, + ACTIONS(4620), 1, anon_sym_STAR, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(4597), 1, + ACTIONS(4626), 1, anon_sym_async, - ACTIONS(4601), 1, + ACTIONS(4630), 1, anon_sym_readonly, - STATE(2812), 1, + STATE(2805), 1, sym_override_modifier, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, + STATE(4792), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4599), 2, + ACTIONS(4628), 2, sym_number, sym_private_property_identifier, - ACTIONS(4603), 2, + ACTIONS(4632), 2, anon_sym_get, anon_sym_set, - STATE(3114), 3, + STATE(3144), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -173412,7 +171471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3705), 18, + ACTIONS(3700), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -173431,47 +171490,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [38092] = 19, - ACTIONS(1643), 1, + [37947] = 19, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - ACTIONS(3813), 1, + ACTIONS(3808), 1, anon_sym_COMMA, - ACTIONS(3938), 1, + ACTIONS(3925), 1, anon_sym_RBRACE, - ACTIONS(4591), 1, + ACTIONS(4620), 1, anon_sym_STAR, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(4597), 1, + ACTIONS(4626), 1, anon_sym_async, - ACTIONS(4601), 1, + ACTIONS(4630), 1, anon_sym_readonly, - STATE(2812), 1, + STATE(2805), 1, sym_override_modifier, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, + STATE(4792), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4599), 2, + ACTIONS(4628), 2, sym_number, sym_private_property_identifier, - ACTIONS(4603), 2, + ACTIONS(4632), 2, anon_sym_get, anon_sym_set, - STATE(3114), 3, + STATE(3144), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -173479,7 +171538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3705), 18, + ACTIONS(3700), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -173498,47 +171557,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [38178] = 19, - ACTIONS(1643), 1, + [38033] = 19, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - ACTIONS(3813), 1, + ACTIONS(3808), 1, anon_sym_COMMA, - ACTIONS(3847), 1, + ACTIONS(3811), 1, anon_sym_RBRACE, - ACTIONS(4591), 1, + ACTIONS(4620), 1, anon_sym_STAR, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(4597), 1, + ACTIONS(4626), 1, anon_sym_async, - ACTIONS(4601), 1, + ACTIONS(4630), 1, anon_sym_readonly, - STATE(2812), 1, + STATE(2805), 1, sym_override_modifier, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, + STATE(4792), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4599), 2, + ACTIONS(4628), 2, sym_number, sym_private_property_identifier, - ACTIONS(4603), 2, + ACTIONS(4632), 2, anon_sym_get, anon_sym_set, - STATE(3114), 3, + STATE(3144), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -173546,7 +171605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3705), 18, + ACTIONS(3700), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -173565,47 +171624,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [38264] = 19, - ACTIONS(1643), 1, + [38119] = 19, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - ACTIONS(3813), 1, + ACTIONS(3808), 1, anon_sym_COMMA, - ACTIONS(3865), 1, + ACTIONS(3909), 1, anon_sym_RBRACE, - ACTIONS(4591), 1, + ACTIONS(4620), 1, anon_sym_STAR, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(4597), 1, + ACTIONS(4626), 1, anon_sym_async, - ACTIONS(4601), 1, + ACTIONS(4630), 1, anon_sym_readonly, - STATE(2812), 1, + STATE(2805), 1, sym_override_modifier, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, + STATE(4792), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4599), 2, + ACTIONS(4628), 2, sym_number, sym_private_property_identifier, - ACTIONS(4603), 2, + ACTIONS(4632), 2, anon_sym_get, anon_sym_set, - STATE(3114), 3, + STATE(3144), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -173613,7 +171672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3705), 18, + ACTIONS(3700), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -173632,92 +171691,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [38350] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4643), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4645), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - 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_satisfies, - anon_sym_implements, - [38404] = 16, - ACTIONS(1643), 1, + [38205] = 19, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3813), 1, + ACTIONS(3722), 1, + anon_sym_override, + ACTIONS(3808), 1, anon_sym_COMMA, - ACTIONS(3938), 1, + ACTIONS(3906), 1, anon_sym_RBRACE, - ACTIONS(4591), 1, + ACTIONS(4620), 1, anon_sym_STAR, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4597), 1, - anon_sym_async, - ACTIONS(4647), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, + ACTIONS(4626), 1, + anon_sym_async, + ACTIONS(4630), 1, + anon_sym_readonly, + STATE(2805), 1, + sym_override_modifier, + STATE(4810), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4599), 2, + ACTIONS(4628), 2, sym_number, sym_private_property_identifier, - ACTIONS(4603), 2, + ACTIONS(4632), 2, anon_sym_get, anon_sym_set, - STATE(3114), 3, + STATE(3144), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -173725,7 +171739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3705), 20, + ACTIONS(3700), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -173733,12 +171747,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -173746,79 +171758,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [38483] = 17, - ACTIONS(1643), 1, - anon_sym_DQUOTE, - ACTIONS(1645), 1, - anon_sym_SQUOTE, - ACTIONS(3731), 1, - anon_sym_override, - ACTIONS(4595), 1, + [38291] = 15, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4649), 1, - anon_sym_STAR, - ACTIONS(4651), 1, - anon_sym_LBRACE, - ACTIONS(4653), 1, - anon_sym_async, - ACTIONS(4657), 1, - anon_sym_readonly, - ACTIONS(4661), 1, - sym__automatic_semicolon, - STATE(2723), 1, - sym_statement_block, - STATE(2803), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4655), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4659), 2, - anon_sym_get, - anon_sym_set, - STATE(3071), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 8, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4644), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3705), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - 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, - anon_sym_object, - [38564] = 4, - ACTIONS(4664), 1, - sym__automatic_semicolon, + ACTIONS(4649), 1, + anon_sym_satisfies, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1705), 13, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4634), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, @@ -173826,23 +171796,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1703), 30, + ACTIONS(4638), 20, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - anon_sym_while, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -173856,25 +171819,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [38619] = 5, + [38368] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4623), 2, + ACTIONS(4146), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4666), 5, + ACTIONS(4651), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(4621), 13, + ACTIONS(4144), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -173888,7 +171847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4625), 24, + ACTIONS(4148), 24, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -173913,11 +171872,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [38676] = 3, + [38425] = 4, + ACTIONS(4654), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1791), 13, + ACTIONS(1692), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -173931,8 +171892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1789), 31, - sym__automatic_semicolon, + ACTIONS(1690), 30, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -173963,43 +171923,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_PIPE_RBRACE, - [38729] = 16, - ACTIONS(1643), 1, + [38480] = 17, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(4671), 1, - anon_sym_static, - ACTIONS(4673), 1, + ACTIONS(4656), 1, + anon_sym_STAR, + ACTIONS(4658), 1, + anon_sym_LBRACE, + ACTIONS(4660), 1, + anon_sym_async, + ACTIONS(4664), 1, anon_sym_readonly, - ACTIONS(4675), 1, - anon_sym_abstract, - ACTIONS(4677), 1, - anon_sym_accessor, - STATE(2746), 1, - sym_accessibility_modifier, - STATE(2846), 1, + ACTIONS(4668), 1, + sym__automatic_semicolon, + STATE(2721), 1, + sym_statement_block, + STATE(2793), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4669), 2, + ACTIONS(4662), 2, sym_number, sym_private_property_identifier, - ACTIONS(3729), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3336), 3, + ACTIONS(4666), 2, + anon_sym_get, + anon_sym_set, + STATE(3082), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 9, - sym__automatic_semicolon, + ACTIONS(3814), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -174008,17 +171968,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3705), 17, + ACTIONS(3700), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_get, - anon_sym_set, + anon_sym_static, anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, anon_sym_module, anon_sym_any, anon_sym_number, @@ -174026,13 +171987,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [38808] = 4, - ACTIONS(4679), 1, - sym__automatic_semicolon, + [38561] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4604), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4671), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4602), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(4606), 24, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + 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_satisfies, + [38618] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1791), 13, + ACTIONS(1880), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -174046,7 +172057,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1789), 30, + ACTIONS(1878), 31, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -174077,20 +172089,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_PIPE_RBRACE, - [38863] = 5, + [38671] = 16, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(3722), 1, + anon_sym_override, + ACTIONS(4624), 1, + anon_sym_LBRACK, + ACTIONS(4676), 1, + anon_sym_static, + ACTIONS(4678), 1, + anon_sym_readonly, + ACTIONS(4680), 1, + anon_sym_abstract, + ACTIONS(4682), 1, + anon_sym_accessor, + STATE(2767), 1, + sym_accessibility_modifier, + STATE(2829), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1709), 2, + ACTIONS(4674), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3720), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3360), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 9, + sym__automatic_semicolon, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4681), 5, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(1707), 13, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3700), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + 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, + anon_sym_object, + [38750] = 4, + ACTIONS(4684), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1880), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -174104,11 +172172,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1711), 24, + ACTIONS(1878), 30, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_of, + anon_sym_while, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -174129,21 +172202,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [38920] = 8, - ACTIONS(4627), 1, + anon_sym_PIPE_RBRACE, + [38805] = 8, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4596), 1, anon_sym_LT, - ACTIONS(4684), 1, + ACTIONS(4686), 1, anon_sym_DOT, - STATE(1966), 1, + STATE(1964), 1, sym_arguments, - STATE(1967), 1, + STATE(1965), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3527), 12, + ACTIONS(3522), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -174156,7 +172230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3517), 27, + ACTIONS(3512), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -174184,39 +172258,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [38983] = 15, - ACTIONS(2344), 1, + [38868] = 15, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(3813), 1, + ACTIONS(3808), 1, anon_sym_COMMA, - ACTIONS(3816), 1, + ACTIONS(3906), 1, anon_sym_RBRACE, - ACTIONS(4591), 1, + ACTIONS(4620), 1, anon_sym_STAR, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - STATE(4823), 1, + STATE(4810), 1, aux_sym_object_repeat1, - STATE(4834), 1, + STATE(4815), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4688), 2, + ACTIONS(4690), 2, sym_number, sym_private_property_identifier, - ACTIONS(4690), 2, + ACTIONS(4692), 2, anon_sym_get, anon_sym_set, - STATE(3904), 3, + STATE(3866), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -174224,7 +172298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2362), 21, + ACTIONS(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -174246,19 +172320,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [39060] = 7, - ACTIONS(4635), 1, + [38945] = 7, + ACTIONS(4596), 1, anon_sym_LT, - ACTIONS(4692), 1, - anon_sym_DOT, ACTIONS(4694), 1, + anon_sym_DOT, + ACTIONS(4696), 1, anon_sym_is, - STATE(2010), 1, + STATE(2031), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4077), 12, + ACTIONS(4054), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -174271,7 +172345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3567), 28, + ACTIONS(3548), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -174300,11 +172374,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [39121] = 3, + [39006] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1833), 13, + ACTIONS(1718), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -174318,7 +172392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1831), 31, + ACTIONS(1716), 31, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -174350,41 +172424,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_PIPE_RBRACE, - [39174] = 16, - ACTIONS(1643), 1, + [39059] = 16, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3813), 1, + ACTIONS(3808), 1, anon_sym_COMMA, - ACTIONS(3816), 1, + ACTIONS(3906), 1, anon_sym_RBRACE, - ACTIONS(4591), 1, + ACTIONS(4620), 1, anon_sym_STAR, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4597), 1, + ACTIONS(4626), 1, anon_sym_async, - ACTIONS(4647), 1, + ACTIONS(4698), 1, anon_sym_LBRACK, - STATE(4823), 1, + STATE(4810), 1, aux_sym_object_repeat1, - STATE(4834), 1, + STATE(4815), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4599), 2, + ACTIONS(4628), 2, sym_number, sym_private_property_identifier, - ACTIONS(4603), 2, + ACTIONS(4632), 2, anon_sym_get, anon_sym_set, - STATE(3114), 3, + STATE(3144), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -174392,7 +172466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3705), 20, + ACTIONS(3700), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -174413,21 +172487,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [39253] = 8, - ACTIONS(4627), 1, + [39138] = 8, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4596), 1, anon_sym_LT, - ACTIONS(4696), 1, + ACTIONS(4700), 1, anon_sym_DOT, - STATE(1968), 1, + STATE(1966), 1, sym_arguments, - STATE(1969), 1, + STATE(1967), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4057), 12, + ACTIONS(4068), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -174440,7 +172514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4059), 27, + ACTIONS(4070), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -174468,39 +172542,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [39316] = 15, - ACTIONS(2344), 1, + [39201] = 15, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(3813), 1, + ACTIONS(3808), 1, anon_sym_COMMA, - ACTIONS(3862), 1, + ACTIONS(3912), 1, anon_sym_RBRACE, - ACTIONS(4591), 1, + ACTIONS(4620), 1, anon_sym_STAR, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, + STATE(4792), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4688), 2, + ACTIONS(4690), 2, sym_number, sym_private_property_identifier, - ACTIONS(4690), 2, + ACTIONS(4692), 2, anon_sym_get, anon_sym_set, - STATE(3904), 3, + STATE(3866), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -174508,7 +172582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2362), 21, + ACTIONS(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -174530,21 +172604,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [39393] = 8, - ACTIONS(4627), 1, + [39278] = 8, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4596), 1, anon_sym_LT, - ACTIONS(4698), 1, + ACTIONS(4702), 1, anon_sym_DOT, - STATE(1972), 1, + STATE(1970), 1, sym_arguments, STATE(1973), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4071), 12, + ACTIONS(4060), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -174557,7 +172631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4073), 27, + ACTIONS(4062), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -174585,41 +172659,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [39456] = 16, - ACTIONS(1643), 1, + [39341] = 16, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3813), 1, + ACTIONS(3808), 1, anon_sym_COMMA, - ACTIONS(3862), 1, + ACTIONS(3912), 1, anon_sym_RBRACE, - ACTIONS(4591), 1, + ACTIONS(4620), 1, anon_sym_STAR, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4597), 1, + ACTIONS(4626), 1, anon_sym_async, - ACTIONS(4647), 1, + ACTIONS(4698), 1, anon_sym_LBRACK, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, + STATE(4792), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4599), 2, + ACTIONS(4628), 2, sym_number, sym_private_property_identifier, - ACTIONS(4603), 2, + ACTIONS(4632), 2, anon_sym_get, anon_sym_set, - STATE(3114), 3, + STATE(3144), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -174627,7 +172701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3705), 20, + ACTIONS(3700), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -174648,21 +172722,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [39535] = 8, - ACTIONS(3967), 1, + [39420] = 8, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4704), 1, + ACTIONS(4708), 1, anon_sym_LT, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4700), 12, + ACTIONS(4704), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -174675,7 +172749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4702), 27, + ACTIONS(4706), 27, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -174703,435 +172777,498 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [39598] = 31, - ACTIONS(3967), 1, + [39483] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4704), 1, - anon_sym_LT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4716), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, anon_sym_AMP_AMP, - ACTIONS(4718), 1, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - ACTIONS(4720), 1, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4724), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(4726), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(4728), 1, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(4732), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4734), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(4742), 1, + ACTIONS(4740), 1, anon_sym_QMARK_QMARK, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(4748), 1, + ACTIONS(4742), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4706), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4722), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4730), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4738), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4740), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4736), 3, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4483), 6, + ACTIONS(4468), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [39707] = 31, - ACTIONS(3967), 1, + [39592] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4704), 1, - anon_sym_LT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4716), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, anon_sym_AMP_AMP, - ACTIONS(4718), 1, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - ACTIONS(4720), 1, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4724), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(4726), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(4728), 1, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(4732), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4734), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(4742), 1, + ACTIONS(4740), 1, anon_sym_QMARK_QMARK, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(4748), 1, + ACTIONS(4742), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4706), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4722), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4730), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4738), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4740), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4736), 3, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4750), 6, + ACTIONS(4744), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [39816] = 31, - ACTIONS(3967), 1, + [39701] = 16, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(3722), 1, + anon_sym_override, + ACTIONS(4624), 1, + anon_sym_LBRACK, + ACTIONS(4748), 1, + anon_sym_static, + ACTIONS(4750), 1, + anon_sym_readonly, + ACTIONS(4752), 1, + anon_sym_abstract, + ACTIONS(4754), 1, + anon_sym_accessor, + STATE(2766), 1, + sym_accessibility_modifier, + STATE(2853), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4746), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3720), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3418), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 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(3700), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + 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, + anon_sym_object, + [39780] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4704), 1, - anon_sym_LT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4716), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, anon_sym_AMP_AMP, - ACTIONS(4718), 1, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - ACTIONS(4720), 1, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4724), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(4726), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(4728), 1, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(4732), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4734), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(4742), 1, + ACTIONS(4740), 1, anon_sym_QMARK_QMARK, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(4748), 1, + ACTIONS(4742), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4706), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4722), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4730), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4738), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4740), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4736), 3, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4752), 6, + ACTIONS(4756), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [39925] = 31, - ACTIONS(3967), 1, + [39889] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4704), 1, - anon_sym_LT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4716), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, anon_sym_AMP_AMP, - ACTIONS(4718), 1, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - ACTIONS(4720), 1, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4724), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(4726), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(4728), 1, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(4732), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4734), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(4742), 1, + ACTIONS(4740), 1, anon_sym_QMARK_QMARK, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(4748), 1, + ACTIONS(4742), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4706), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4722), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4730), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4738), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4740), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4736), 3, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4754), 6, + ACTIONS(4758), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [40034] = 31, - ACTIONS(3967), 1, + [39998] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4704), 1, - anon_sym_LT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4716), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, anon_sym_AMP_AMP, - ACTIONS(4718), 1, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - ACTIONS(4720), 1, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4724), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(4726), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(4728), 1, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(4732), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4734), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(4742), 1, + ACTIONS(4740), 1, anon_sym_QMARK_QMARK, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(4748), 1, + ACTIONS(4742), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4706), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4722), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4730), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4738), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4740), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4736), 3, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4523), 6, + ACTIONS(4504), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [40143] = 18, - ACTIONS(3967), 1, + [40107] = 18, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4704), 1, - anon_sym_LT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4720), 1, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4732), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4734), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4706), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4722), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4730), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4758), 7, + ACTIONS(4762), 7, anon_sym_BANG, anon_sym_in, anon_sym_AMP, @@ -175139,7 +173276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4756), 18, + ACTIONS(4760), 18, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -175158,32 +173295,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [40226] = 13, - ACTIONS(3967), 1, + [40190] = 13, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4734), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(4760), 1, + ACTIONS(4764), 1, anon_sym_LT, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4758), 12, + ACTIONS(4762), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -175196,7 +173333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4756), 21, + ACTIONS(4760), 21, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -175218,66 +173355,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [40299] = 25, - ACTIONS(3967), 1, + [40263] = 25, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4704), 1, - anon_sym_LT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4720), 1, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4724), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(4726), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(4728), 1, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(4732), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4734), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(4758), 1, + ACTIONS(4762), 1, anon_sym_BANG, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4706), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4722), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4730), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4738), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4740), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4736), 3, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4756), 12, + ACTIONS(4760), 12, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -175290,68 +173427,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [40396] = 26, - ACTIONS(3967), 1, + [40360] = 26, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4704), 1, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4708), 1, anon_sym_LT, ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4716), 1, anon_sym_AMP_AMP, - ACTIONS(4720), 1, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4724), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(4726), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(4728), 1, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(4732), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4734), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(4758), 1, + ACTIONS(4762), 1, anon_sym_BANG, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4706), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4722), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4730), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4738), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4740), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4736), 3, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4756), 11, + ACTIONS(4760), 11, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -175363,176 +173500,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [40495] = 16, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, - anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4732), 1, - anon_sym_PERCENT, - ACTIONS(4734), 1, - anon_sym_STAR_STAR, - ACTIONS(4760), 1, - anon_sym_LT, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, + [40459] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4706), 2, + ACTIONS(1752), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4730), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4758), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4756), 20, + ACTIONS(1750), 31, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_of, + anon_sym_while, + 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_satisfies, - [40574] = 3, + anon_sym_PIPE_RBRACE, + [40512] = 22, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4718), 1, + anon_sym_GT_GT, + ACTIONS(4730), 1, + anon_sym_PERCENT, + ACTIONS(4732), 1, + anon_sym_STAR_STAR, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1797), 13, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4712), 2, anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT, + ACTIONS(4720), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(1795), 31, - sym__automatic_semicolon, + ACTIONS(4738), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4734), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4762), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4760), 13, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - anon_sym_while, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + 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_satisfies, - anon_sym_PIPE_RBRACE, - [40627] = 23, - ACTIONS(3967), 1, + [40603] = 23, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4704), 1, - anon_sym_LT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4720), 1, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4724), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(4732), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4734), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4706), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4722), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4730), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4738), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4740), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4758), 2, + ACTIONS(4762), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(4736), 3, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4756), 13, + ACTIONS(4760), 13, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -175546,65 +173689,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [40720] = 24, - ACTIONS(3967), 1, + [40696] = 24, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4704), 1, - anon_sym_LT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4720), 1, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4724), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(4726), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(4732), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4734), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4706), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4722), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4730), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4738), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4740), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4758), 2, + ACTIONS(4762), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(4736), 3, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4756), 12, + ACTIONS(4760), 12, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -175617,37 +173760,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [40815] = 15, - ACTIONS(3967), 1, + [40791] = 15, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4732), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4734), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(4760), 1, + ACTIONS(4764), 1, anon_sym_LT, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4706), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4758), 10, + ACTIONS(4710), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4762), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, @@ -175658,7 +173801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4756), 20, + ACTIONS(4760), 20, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -175679,38 +173822,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [40892] = 16, - ACTIONS(3967), 1, + [40868] = 16, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4734), 1, - anon_sym_STAR_STAR, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4760), 1, + ACTIONS(4732), 1, + anon_sym_STAR_STAR, + ACTIONS(4764), 1, anon_sym_LT, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4758), 11, + ACTIONS(4762), 11, anon_sym_STAR, anon_sym_in, anon_sym_GT_GT, @@ -175722,7 +173865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4756), 19, + ACTIONS(4760), 19, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, @@ -175742,58 +173885,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [40971] = 20, - ACTIONS(3967), 1, + [40947] = 20, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4704), 1, - anon_sym_LT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4720), 1, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4732), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4734), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4706), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4722), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4730), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4736), 3, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4758), 5, + ACTIONS(4762), 5, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4756), 15, + ACTIONS(4760), 15, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -175809,70 +173952,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [41058] = 27, - ACTIONS(3967), 1, + [41034] = 27, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4704), 1, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4708), 1, anon_sym_LT, ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4716), 1, anon_sym_AMP_AMP, - ACTIONS(4718), 1, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - ACTIONS(4720), 1, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4724), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(4726), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(4728), 1, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(4732), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4734), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(4758), 1, + ACTIONS(4762), 1, anon_sym_BANG, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4706), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4722), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4730), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4738), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4740), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4736), 3, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4756), 10, + ACTIONS(4760), 10, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -175883,698 +174026,635 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [41159] = 31, - ACTIONS(3967), 1, + [41135] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4704), 1, - anon_sym_LT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4716), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, anon_sym_AMP_AMP, - ACTIONS(4718), 1, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - ACTIONS(4720), 1, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4724), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(4726), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(4728), 1, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(4732), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4734), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(4742), 1, + ACTIONS(4740), 1, anon_sym_QMARK_QMARK, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(4748), 1, + ACTIONS(4742), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4706), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4722), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4730), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4738), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4740), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4736), 3, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4541), 6, + ACTIONS(4522), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [41268] = 31, - ACTIONS(3967), 1, + [41244] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4704), 1, - anon_sym_LT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4716), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, anon_sym_AMP_AMP, - ACTIONS(4718), 1, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - ACTIONS(4720), 1, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4724), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(4726), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(4728), 1, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(4732), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4734), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(4742), 1, + ACTIONS(4740), 1, anon_sym_QMARK_QMARK, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(4748), 1, + ACTIONS(4742), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4706), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4722), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4730), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4738), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4740), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4736), 3, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4763), 6, + ACTIONS(4767), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [41377] = 31, - ACTIONS(3967), 1, + [41353] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4704), 1, - anon_sym_LT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4716), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, anon_sym_AMP_AMP, - ACTIONS(4718), 1, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - ACTIONS(4720), 1, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4724), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(4726), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(4728), 1, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(4732), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4734), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(4742), 1, + ACTIONS(4740), 1, anon_sym_QMARK_QMARK, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(4748), 1, + ACTIONS(4742), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4706), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4722), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4730), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4738), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4740), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4736), 3, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4565), 6, + ACTIONS(4546), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [41486] = 31, - ACTIONS(3967), 1, + [41462] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4704), 1, - anon_sym_LT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4716), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, anon_sym_AMP_AMP, - ACTIONS(4718), 1, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - ACTIONS(4720), 1, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4724), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(4726), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(4728), 1, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(4732), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4734), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(4742), 1, + ACTIONS(4740), 1, anon_sym_QMARK_QMARK, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(4748), 1, + ACTIONS(4742), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4706), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4722), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4730), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4738), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4740), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4736), 3, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4573), 6, + ACTIONS(4554), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [41595] = 31, - ACTIONS(3967), 1, + [41571] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4704), 1, - anon_sym_LT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4716), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, anon_sym_AMP_AMP, - ACTIONS(4718), 1, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - ACTIONS(4720), 1, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4724), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(4726), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(4728), 1, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(4732), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4734), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(4742), 1, + ACTIONS(4740), 1, anon_sym_QMARK_QMARK, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(4748), 1, + ACTIONS(4742), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4706), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4722), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4730), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4738), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4740), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4736), 3, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4577), 6, + ACTIONS(4558), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [41704] = 31, - ACTIONS(3967), 1, + [41680] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4704), 1, - anon_sym_LT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4716), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, anon_sym_AMP_AMP, - ACTIONS(4718), 1, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - ACTIONS(4720), 1, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4724), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(4726), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(4728), 1, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(4732), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4734), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(4742), 1, + ACTIONS(4740), 1, anon_sym_QMARK_QMARK, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(4748), 1, + ACTIONS(4742), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4706), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4722), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4730), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4738), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4740), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4736), 3, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4765), 6, + ACTIONS(4769), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [41813] = 31, - ACTIONS(3967), 1, + [41789] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4704), 1, - anon_sym_LT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4716), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, anon_sym_AMP_AMP, - ACTIONS(4718), 1, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - ACTIONS(4720), 1, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4724), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(4726), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(4728), 1, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(4732), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4734), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(4742), 1, + ACTIONS(4740), 1, anon_sym_QMARK_QMARK, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(4748), 1, + ACTIONS(4742), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4706), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4722), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4730), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4738), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4740), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4736), 3, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4767), 6, + ACTIONS(4771), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [41922] = 16, - ACTIONS(1643), 1, - anon_sym_DQUOTE, - ACTIONS(1645), 1, - anon_sym_SQUOTE, - ACTIONS(3731), 1, - anon_sym_override, - ACTIONS(4595), 1, + [41898] = 31, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4771), 1, - anon_sym_static, - ACTIONS(4773), 1, - anon_sym_readonly, - ACTIONS(4775), 1, - anon_sym_abstract, - ACTIONS(4777), 1, - anon_sym_accessor, - STATE(2762), 1, - sym_accessibility_modifier, - STATE(2847), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4769), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3729), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3387), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3705), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - 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, - anon_sym_object, - [42001] = 31, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, - anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4704), 1, - anon_sym_LT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4716), 1, anon_sym_AMP_AMP, - ACTIONS(4718), 1, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - ACTIONS(4720), 1, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4724), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(4726), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(4728), 1, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(4732), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4734), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(4742), 1, + ACTIONS(4740), 1, anon_sym_QMARK_QMARK, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(4748), 1, + ACTIONS(4742), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4706), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4722), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4730), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4738), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4740), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4736), 3, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4779), 6, + ACTIONS(4773), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [42110] = 3, + [42007] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1837), 13, + ACTIONS(1722), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -176588,7 +174668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1835), 31, + ACTIONS(1720), 31, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -176620,39 +174700,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_PIPE_RBRACE, - [42163] = 15, - ACTIONS(2344), 1, + [42060] = 15, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(3813), 1, + ACTIONS(3808), 1, anon_sym_COMMA, - ACTIONS(3938), 1, + ACTIONS(3925), 1, anon_sym_RBRACE, - ACTIONS(4591), 1, + ACTIONS(4620), 1, anon_sym_STAR, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, + STATE(4792), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4688), 2, + ACTIONS(4690), 2, sym_number, sym_private_property_identifier, - ACTIONS(4690), 2, + ACTIONS(4692), 2, anon_sym_get, anon_sym_set, - STATE(3904), 3, + STATE(3866), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -176660,7 +174740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2362), 21, + ACTIONS(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -176682,11 +174762,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [42240] = 3, + [42137] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1753), 13, + ACTIONS(1696), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4775), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(1694), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -176700,17 +174789,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1751), 31, - sym__automatic_semicolon, + ACTIONS(1698), 24, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_of, - anon_sym_while, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -176731,98 +174814,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [42293] = 11, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, + [42194] = 16, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(3808), 1, + anon_sym_COMMA, + ACTIONS(3925), 1, + anon_sym_RBRACE, + ACTIONS(4620), 1, + anon_sym_STAR, + ACTIONS(4622), 1, + anon_sym_EQ, + ACTIONS(4626), 1, + anon_sym_async, + ACTIONS(4698), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4785), 1, - anon_sym_LT, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4781), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4783), 24, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4628), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4632), 2, + anon_sym_get, + anon_sym_set, + STATE(3144), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 7, + sym__automatic_semicolon, + 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, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_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_satisfies, - [42362] = 15, - ACTIONS(2344), 1, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3700), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [42273] = 15, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(3813), 1, + ACTIONS(3808), 1, anon_sym_COMMA, - ACTIONS(3847), 1, + ACTIONS(3811), 1, anon_sym_RBRACE, - ACTIONS(4591), 1, + ACTIONS(4620), 1, anon_sym_STAR, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, + STATE(4792), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4688), 2, + ACTIONS(4690), 2, sym_number, sym_private_property_identifier, - ACTIONS(4690), 2, + ACTIONS(4692), 2, anon_sym_get, anon_sym_set, - STATE(3904), 3, + STATE(3866), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -176830,7 +174917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2362), 21, + ACTIONS(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -176852,20 +174939,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [42439] = 5, + [42350] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4445), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4788), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4443), 13, + ACTIONS(1854), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -176879,11 +174957,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4447), 24, + ACTIONS(1852), 31, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_of, + anon_sym_while, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -176904,41 +174988,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [42496] = 16, - ACTIONS(1643), 1, + anon_sym_PIPE_RBRACE, + [42403] = 16, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3813), 1, + ACTIONS(3808), 1, anon_sym_COMMA, - ACTIONS(3847), 1, + ACTIONS(3811), 1, anon_sym_RBRACE, - ACTIONS(4591), 1, + ACTIONS(4620), 1, anon_sym_STAR, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4597), 1, + ACTIONS(4626), 1, anon_sym_async, - ACTIONS(4647), 1, + ACTIONS(4698), 1, anon_sym_LBRACK, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, + STATE(4792), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4599), 2, + ACTIONS(4628), 2, sym_number, sym_private_property_identifier, - ACTIONS(4603), 2, + ACTIONS(4632), 2, anon_sym_get, anon_sym_set, - STATE(3114), 3, + STATE(3144), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -176946,7 +175031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3705), 20, + ACTIONS(3700), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -176967,39 +175052,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [42575] = 15, - ACTIONS(2344), 1, + [42482] = 15, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(3813), 1, + ACTIONS(3808), 1, anon_sym_COMMA, - ACTIONS(3865), 1, + ACTIONS(3909), 1, anon_sym_RBRACE, - ACTIONS(4591), 1, + ACTIONS(4620), 1, anon_sym_STAR, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, + STATE(4792), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4688), 2, + ACTIONS(4690), 2, sym_number, sym_private_property_identifier, - ACTIONS(4690), 2, + ACTIONS(4692), 2, anon_sym_get, anon_sym_set, - STATE(3904), 3, + STATE(3866), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -177007,7 +175092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2362), 21, + ACTIONS(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -177029,11 +175114,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [42652] = 3, + [42559] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1927), 13, + ACTIONS(1886), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -177047,7 +175132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1925), 31, + ACTIONS(1884), 31, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -177079,41 +175164,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_PIPE_RBRACE, - [42705] = 16, - ACTIONS(1643), 1, + [42612] = 16, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3813), 1, + ACTIONS(3808), 1, anon_sym_COMMA, - ACTIONS(3865), 1, + ACTIONS(3909), 1, anon_sym_RBRACE, - ACTIONS(4591), 1, + ACTIONS(4620), 1, anon_sym_STAR, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4597), 1, + ACTIONS(4626), 1, anon_sym_async, - ACTIONS(4647), 1, + ACTIONS(4698), 1, anon_sym_LBRACK, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, + STATE(4792), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4599), 2, + ACTIONS(4628), 2, sym_number, sym_private_property_identifier, - ACTIONS(4603), 2, + ACTIONS(4632), 2, anon_sym_get, anon_sym_set, - STATE(3114), 3, + STATE(3144), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -177121,7 +175206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3705), 20, + ACTIONS(3700), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -177142,30 +175227,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [42784] = 12, - ACTIONS(3967), 1, + [42691] = 12, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4795), 1, + ACTIONS(4782), 1, anon_sym_LT, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4791), 12, + ACTIONS(4778), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -177178,7 +175263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4793), 22, + ACTIONS(4780), 22, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -177201,37 +175286,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [42855] = 15, - ACTIONS(3967), 1, + [42762] = 11, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(4802), 1, + ACTIONS(4789), 1, anon_sym_LT, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4798), 11, + ACTIONS(4785), 12, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, @@ -177242,8 +175319,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4800), 20, + ACTIONS(4787), 24, sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, @@ -177262,397 +175340,358 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [42932] = 31, - ACTIONS(3967), 1, + anon_sym_satisfies, + [42831] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4704), 1, - anon_sym_LT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4716), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, anon_sym_AMP_AMP, - ACTIONS(4718), 1, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - ACTIONS(4720), 1, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4724), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(4726), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(4728), 1, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(4732), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4734), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(4742), 1, + ACTIONS(4740), 1, anon_sym_QMARK_QMARK, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(4748), 1, + ACTIONS(4742), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4706), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4722), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4730), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4738), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4740), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4736), 3, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4805), 6, + ACTIONS(4792), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [43041] = 22, - ACTIONS(3967), 1, + [42940] = 16, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4704), 1, - anon_sym_LT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4720), 1, - anon_sym_GT_GT, - ACTIONS(4732), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4734), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - STATE(1580), 1, + ACTIONS(4764), 1, + anon_sym_LT, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4706), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4712), 2, + ACTIONS(4728), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4762), 8, + anon_sym_BANG, anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4722), 2, + ACTIONS(4760), 20, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4730), 2, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + anon_sym_satisfies, + [43019] = 4, + ACTIONS(4696), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4114), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4738), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4740), 2, + anon_sym_GT, + ACTIONS(4116), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + 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, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4736), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4758), 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [43073] = 6, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4794), 1, + anon_sym_DOT, + STATE(2067), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4078), 13, + anon_sym_STAR, anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4756), 13, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(4080), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_of, + 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_satisfies, - [43132] = 31, - ACTIONS(4627), 1, + anon_sym_extends, + [43131] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4815), 1, + ACTIONS(4804), 1, anon_sym_AMP_AMP, - ACTIONS(4817), 1, + ACTIONS(4806), 1, anon_sym_PIPE_PIPE, - ACTIONS(4819), 1, + ACTIONS(4808), 1, anon_sym_GT_GT, - ACTIONS(4823), 1, + ACTIONS(4812), 1, anon_sym_AMP, - ACTIONS(4825), 1, + ACTIONS(4814), 1, anon_sym_CARET, - ACTIONS(4827), 1, + ACTIONS(4816), 1, anon_sym_PIPE, - ACTIONS(4831), 1, + ACTIONS(4820), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - ACTIONS(4835), 1, + ACTIONS(4824), 1, anon_sym_LT, - ACTIONS(4843), 1, + ACTIONS(4832), 1, anon_sym_QMARK_QMARK, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4849), 1, + ACTIONS(4838), 1, sym__ternary_qmark, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2189), 1, + STATE(2130), 1, sym_arguments, - STATE(4602), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4807), 2, + ACTIONS(4796), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4813), 2, + ACTIONS(4802), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4821), 2, + ACTIONS(4810), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4829), 2, + ACTIONS(4818), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4839), 2, + ACTIONS(4828), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4841), 2, + ACTIONS(4830), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4837), 3, + ACTIONS(4826), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4763), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BQUOTE, - [43240] = 15, - ACTIONS(4627), 1, - anon_sym_LPAREN, - ACTIONS(4629), 1, - anon_sym_LBRACK, - ACTIONS(4631), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4809), 1, - anon_sym_as, - ACTIONS(4811), 1, - anon_sym_BANG, - ACTIONS(4847), 1, - anon_sym_satisfies, - ACTIONS(4851), 1, - anon_sym_LT, - STATE(2027), 1, - sym_type_arguments, - STATE(2189), 1, - sym_arguments, - STATE(4602), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4798), 11, - anon_sym_STAR, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4800), 19, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_BQUOTE, - [43316] = 31, - ACTIONS(4627), 1, - anon_sym_LPAREN, - ACTIONS(4629), 1, - anon_sym_LBRACK, - ACTIONS(4631), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4809), 1, - anon_sym_as, - ACTIONS(4811), 1, - anon_sym_BANG, - ACTIONS(4815), 1, - anon_sym_AMP_AMP, - ACTIONS(4817), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4819), 1, - anon_sym_GT_GT, - ACTIONS(4823), 1, - anon_sym_AMP, - ACTIONS(4825), 1, - anon_sym_CARET, - ACTIONS(4827), 1, - anon_sym_PIPE, - ACTIONS(4831), 1, - anon_sym_PERCENT, - ACTIONS(4833), 1, - anon_sym_STAR_STAR, - ACTIONS(4835), 1, - anon_sym_LT, - ACTIONS(4843), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4847), 1, - anon_sym_satisfies, - ACTIONS(4849), 1, - sym__ternary_qmark, - STATE(2027), 1, - sym_type_arguments, - STATE(2189), 1, - sym_arguments, - STATE(4602), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4807), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4813), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4821), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4829), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4839), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4841), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4837), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4805), 5, + ACTIONS(4756), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_BQUOTE, - [43424] = 13, - ACTIONS(2344), 1, + [43239] = 13, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(3813), 1, + ACTIONS(3808), 1, anon_sym_COMMA, - ACTIONS(3862), 1, + ACTIONS(3912), 1, anon_sym_RBRACE, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, + STATE(4792), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4688), 2, + ACTIONS(4690), 2, sym_number, sym_private_property_identifier, - STATE(3904), 3, + STATE(3866), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -177660,7 +175699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -177684,36 +175723,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [43496] = 14, - ACTIONS(1643), 1, + [43311] = 14, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(4856), 1, + ACTIONS(4842), 1, anon_sym_static, - ACTIONS(4858), 1, + ACTIONS(4844), 1, anon_sym_readonly, - ACTIONS(4860), 1, + ACTIONS(4846), 1, anon_sym_abstract, - ACTIONS(4862), 1, + ACTIONS(4848), 1, anon_sym_accessor, - STATE(2837), 1, + STATE(2814), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4854), 2, + ACTIONS(4840), 2, sym_number, sym_private_property_identifier, - STATE(3360), 3, + STATE(3368), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 9, + ACTIONS(3814), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -177723,7 +175762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3705), 20, + ACTIONS(3700), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -177744,22 +175783,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [43570] = 7, - ACTIONS(1709), 1, + [43385] = 7, + ACTIONS(1696), 1, anon_sym_EQ, - ACTIONS(2376), 1, + ACTIONS(2373), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4390), 2, + ACTIONS(4126), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4393), 3, + ACTIONS(4129), 3, anon_sym_AMP, anon_sym_PIPE, anon_sym_GT, - ACTIONS(1707), 10, + ACTIONS(1694), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -177770,7 +175809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1711), 26, + ACTIONS(1698), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -177797,11 +175836,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [43630] = 3, + [43445] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4113), 13, + ACTIONS(4084), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -177815,7 +175854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4115), 30, + ACTIONS(4086), 30, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -177846,21 +175885,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_is, - [43682] = 6, - ACTIONS(3603), 1, + [43497] = 6, + ACTIONS(3617), 1, anon_sym_QMARK, - ACTIONS(3634), 1, + ACTIONS(3619), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3637), 5, + ACTIONS(3622), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(3499), 13, + ACTIONS(3492), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -177874,7 +175913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3503), 23, + ACTIONS(3496), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -177898,17 +175937,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [43740] = 6, - ACTIONS(4635), 1, + [43555] = 6, + ACTIONS(4596), 1, anon_sym_LT, - ACTIONS(4692), 1, + ACTIONS(4694), 1, anon_sym_DOT, - STATE(2010), 1, + STATE(2031), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4077), 12, + ACTIONS(4054), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -177921,7 +175960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3567), 28, + ACTIONS(3548), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -177950,156 +175989,297 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [43798] = 13, - ACTIONS(2344), 1, - anon_sym_DQUOTE, - ACTIONS(2346), 1, - anon_sym_SQUOTE, - ACTIONS(3813), 1, - anon_sym_COMMA, - ACTIONS(3816), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(4686), 1, + [43613] = 31, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, anon_sym_LBRACK, - STATE(4823), 1, - aux_sym_object_repeat1, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4798), 1, + anon_sym_as, + ACTIONS(4800), 1, + anon_sym_BANG, + ACTIONS(4804), 1, + anon_sym_AMP_AMP, + ACTIONS(4806), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4808), 1, + anon_sym_GT_GT, + ACTIONS(4812), 1, + anon_sym_AMP, + ACTIONS(4814), 1, + anon_sym_CARET, + ACTIONS(4816), 1, + anon_sym_PIPE, + ACTIONS(4820), 1, + anon_sym_PERCENT, + ACTIONS(4822), 1, + anon_sym_STAR_STAR, + ACTIONS(4824), 1, + anon_sym_LT, + ACTIONS(4832), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4836), 1, + anon_sym_satisfies, + ACTIONS(4838), 1, + sym__ternary_qmark, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4688), 2, - sym_number, - sym_private_property_identifier, - STATE(3904), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 7, + ACTIONS(4796), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4802), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4810), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4828), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4830), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4826), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4758), 5, sym__automatic_semicolon, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2362), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [43870] = 31, - ACTIONS(4627), 1, + anon_sym_BQUOTE, + [43721] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4815), 1, + ACTIONS(4804), 1, anon_sym_AMP_AMP, - ACTIONS(4817), 1, + ACTIONS(4806), 1, anon_sym_PIPE_PIPE, - ACTIONS(4819), 1, + ACTIONS(4808), 1, anon_sym_GT_GT, - ACTIONS(4823), 1, + ACTIONS(4812), 1, anon_sym_AMP, - ACTIONS(4825), 1, + ACTIONS(4814), 1, anon_sym_CARET, - ACTIONS(4827), 1, + ACTIONS(4816), 1, anon_sym_PIPE, - ACTIONS(4831), 1, + ACTIONS(4820), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - ACTIONS(4835), 1, + ACTIONS(4824), 1, anon_sym_LT, - ACTIONS(4843), 1, + ACTIONS(4832), 1, anon_sym_QMARK_QMARK, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4849), 1, + ACTIONS(4838), 1, sym__ternary_qmark, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2189), 1, + STATE(2130), 1, sym_arguments, - STATE(4602), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4807), 2, + ACTIONS(4796), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4813), 2, + ACTIONS(4802), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4821), 2, + ACTIONS(4810), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4829), 2, + ACTIONS(4818), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4839), 2, + ACTIONS(4828), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4841), 2, + ACTIONS(4830), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4837), 3, + ACTIONS(4826), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4754), 5, + ACTIONS(4504), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BQUOTE, + [43829] = 18, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, + anon_sym_LBRACK, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4808), 1, + anon_sym_GT_GT, + ACTIONS(4820), 1, + anon_sym_PERCENT, + ACTIONS(4822), 1, + anon_sym_STAR_STAR, + ACTIONS(4824), 1, + anon_sym_LT, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4796), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4810), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4762), 7, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(4760), 17, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, 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, anon_sym_BQUOTE, - [43978] = 5, + anon_sym_satisfies, + [43911] = 13, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(3808), 1, + anon_sym_COMMA, + ACTIONS(3906), 1, + anon_sym_RBRACE, + ACTIONS(4622), 1, + anon_sym_EQ, + ACTIONS(4688), 1, + anon_sym_LBRACK, + STATE(4810), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4690), 2, + sym_number, + sym_private_property_identifier, + STATE(3866), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2351), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [43983] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4445), 2, + ACTIONS(4146), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4864), 5, + ACTIONS(4850), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(4443), 13, + ACTIONS(4144), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -178113,7 +176293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4447), 23, + ACTIONS(4148), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -178137,240 +176317,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [44034] = 31, - ACTIONS(4627), 1, + [44039] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4815), 1, - anon_sym_AMP_AMP, - ACTIONS(4817), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4819), 1, - anon_sym_GT_GT, - ACTIONS(4823), 1, - anon_sym_AMP, - ACTIONS(4825), 1, - anon_sym_CARET, - ACTIONS(4827), 1, - anon_sym_PIPE, - ACTIONS(4831), 1, - anon_sym_PERCENT, - ACTIONS(4833), 1, - anon_sym_STAR_STAR, - ACTIONS(4835), 1, - anon_sym_LT, - ACTIONS(4843), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4847), 1, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4849), 1, - sym__ternary_qmark, - STATE(2027), 1, - sym_type_arguments, - STATE(2189), 1, - sym_arguments, - STATE(4602), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4807), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4813), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4821), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4829), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4839), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4841), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4837), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4523), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BQUOTE, - [44142] = 31, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, - anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4704), 1, - anon_sym_LT, ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, + anon_sym_LT, ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4716), 1, anon_sym_AMP_AMP, - ACTIONS(4718), 1, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - ACTIONS(4720), 1, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4724), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(4726), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(4728), 1, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(4732), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4734), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(4742), 1, + ACTIONS(4740), 1, anon_sym_QMARK_QMARK, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(4748), 1, + ACTIONS(4742), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4706), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4722), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4730), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4738), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4740), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4736), 3, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4866), 5, + ACTIONS(4852), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, anon_sym_RBRACK, - [44250] = 18, - ACTIONS(4627), 1, - anon_sym_LPAREN, - ACTIONS(4629), 1, - anon_sym_LBRACK, - ACTIONS(4631), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4819), 1, - anon_sym_GT_GT, - ACTIONS(4831), 1, - anon_sym_PERCENT, - ACTIONS(4833), 1, - anon_sym_STAR_STAR, - ACTIONS(4835), 1, - anon_sym_LT, - STATE(2027), 1, - sym_type_arguments, - STATE(2189), 1, - sym_arguments, - STATE(4602), 1, - sym_optional_chain, + [44147] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4807), 2, + ACTIONS(3225), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4821), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4829), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4758), 7, anon_sym_BANG, anon_sym_in, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4756), 17, + ACTIONS(3227), 30, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, + 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_satisfies, - [44332] = 7, - ACTIONS(4149), 1, anon_sym_extends, - ACTIONS(4445), 1, + anon_sym_PIPE_RBRACE, + [44199] = 7, + ACTIONS(4146), 1, anon_sym_EQ, + ACTIONS(4156), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4449), 2, + ACTIONS(4150), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4452), 3, + ACTIONS(4153), 3, anon_sym_AMP, anon_sym_PIPE, anon_sym_GT, - ACTIONS(4443), 10, + ACTIONS(4144), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -178381,7 +176469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4447), 26, + ACTIONS(4148), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -178408,20 +176496,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [44392] = 5, + [44259] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4623), 2, + ACTIONS(4604), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4868), 5, + ACTIONS(4854), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(4621), 13, + ACTIONS(4602), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -178435,7 +176523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4625), 23, + ACTIONS(4606), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -178459,23 +176547,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [44448] = 6, - ACTIONS(3533), 1, - anon_sym_EQ, - ACTIONS(3618), 1, - anon_sym_QMARK, + [44315] = 15, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, + anon_sym_LBRACK, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4798), 1, + anon_sym_as, + ACTIONS(4800), 1, + anon_sym_BANG, + ACTIONS(4836), 1, + anon_sym_satisfies, + ACTIONS(4856), 1, + anon_sym_LT, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3614), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3499), 13, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4634), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, @@ -178483,17 +176585,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3503), 23, + ACTIONS(4638), 19, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -178507,24 +176607,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - [44506] = 5, + [44391] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1709), 2, + ACTIONS(1696), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4870), 5, + ACTIONS(4859), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(1707), 13, + ACTIONS(1694), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -178538,7 +176635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1711), 23, + ACTIONS(1698), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -178562,11 +176659,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [44562] = 3, + [44447] = 13, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, + anon_sym_LBRACK, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4822), 1, + anon_sym_STAR_STAR, + ACTIONS(4861), 1, + anon_sym_LT, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3208), 13, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4762), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -178576,60 +176694,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3210), 30, + ACTIONS(4760), 20, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - 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_satisfies, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [44614] = 7, - ACTIONS(3543), 1, + [44519] = 7, + ACTIONS(3550), 1, anon_sym_EQ, - ACTIONS(4637), 1, + ACTIONS(4608), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4640), 2, + ACTIONS(4611), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4378), 6, + ACTIONS(4408), 6, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(3499), 11, + ACTIONS(3492), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -178641,7 +176748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3503), 22, + ACTIONS(3496), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -178664,45 +176771,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [44674] = 13, - ACTIONS(4627), 1, + [44579] = 25, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4833), 1, + ACTIONS(4762), 1, + anon_sym_BANG, + ACTIONS(4808), 1, + anon_sym_GT_GT, + ACTIONS(4812), 1, + anon_sym_AMP, + ACTIONS(4814), 1, + anon_sym_CARET, + ACTIONS(4816), 1, + anon_sym_PIPE, + ACTIONS(4820), 1, + anon_sym_PERCENT, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - ACTIONS(4872), 1, + ACTIONS(4824), 1, anon_sym_LT, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2189), 1, + STATE(2130), 1, sym_arguments, - STATE(4602), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4758), 12, + ACTIONS(4796), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4802), 2, anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT, + ACTIONS(4810), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4818), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4828), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4756), 20, + ACTIONS(4830), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4826), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4760), 11, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -178711,151 +176839,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [44746] = 25, - ACTIONS(4627), 1, + [44675] = 26, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4758), 1, + ACTIONS(4762), 1, anon_sym_BANG, - ACTIONS(4819), 1, - anon_sym_GT_GT, - ACTIONS(4823), 1, - anon_sym_AMP, - ACTIONS(4825), 1, - anon_sym_CARET, - ACTIONS(4827), 1, - anon_sym_PIPE, - ACTIONS(4831), 1, - anon_sym_PERCENT, - ACTIONS(4833), 1, - anon_sym_STAR_STAR, - ACTIONS(4835), 1, - anon_sym_LT, - STATE(2027), 1, - sym_type_arguments, - STATE(2189), 1, - sym_arguments, - STATE(4602), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4807), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4813), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4821), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4829), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4839), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4841), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4837), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4756), 11, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [44842] = 26, - ACTIONS(4627), 1, - anon_sym_LPAREN, - ACTIONS(4629), 1, - anon_sym_LBRACK, - ACTIONS(4631), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4758), 1, - anon_sym_BANG, - ACTIONS(4815), 1, + ACTIONS(4804), 1, anon_sym_AMP_AMP, - ACTIONS(4819), 1, + ACTIONS(4808), 1, anon_sym_GT_GT, - ACTIONS(4823), 1, + ACTIONS(4812), 1, anon_sym_AMP, - ACTIONS(4825), 1, + ACTIONS(4814), 1, anon_sym_CARET, - ACTIONS(4827), 1, + ACTIONS(4816), 1, anon_sym_PIPE, - ACTIONS(4831), 1, + ACTIONS(4820), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - ACTIONS(4835), 1, + ACTIONS(4824), 1, anon_sym_LT, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2189), 1, + STATE(2130), 1, sym_arguments, - STATE(4602), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4807), 2, + ACTIONS(4796), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4813), 2, + ACTIONS(4802), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4821), 2, + ACTIONS(4810), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4829), 2, + ACTIONS(4818), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4839), 2, + ACTIONS(4828), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4841), 2, + ACTIONS(4830), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4837), 3, + ACTIONS(4826), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4756), 10, + ACTIONS(4760), 10, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -178866,40 +176914,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [44940] = 16, - ACTIONS(4627), 1, + [44773] = 16, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4831), 1, + ACTIONS(4820), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - ACTIONS(4872), 1, + ACTIONS(4861), 1, anon_sym_LT, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2189), 1, + STATE(2130), 1, sym_arguments, - STATE(4602), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4807), 2, + ACTIONS(4796), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4829), 2, + ACTIONS(4818), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4758), 8, + ACTIONS(4762), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, @@ -178908,7 +176956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4756), 19, + ACTIONS(4760), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -178928,62 +176976,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [45018] = 22, - ACTIONS(4627), 1, + [44851] = 22, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4819), 1, + ACTIONS(4808), 1, anon_sym_GT_GT, - ACTIONS(4831), 1, + ACTIONS(4820), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - ACTIONS(4835), 1, + ACTIONS(4824), 1, anon_sym_LT, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2189), 1, + STATE(2130), 1, sym_arguments, - STATE(4602), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4807), 2, + ACTIONS(4796), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4813), 2, + ACTIONS(4802), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4821), 2, + ACTIONS(4810), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4829), 2, + ACTIONS(4818), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4839), 2, + ACTIONS(4828), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4841), 2, + ACTIONS(4830), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4758), 3, + ACTIONS(4762), 3, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4837), 3, + ACTIONS(4826), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4756), 12, + ACTIONS(4760), 12, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -178996,63 +177044,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [45108] = 23, - ACTIONS(4627), 1, + [44941] = 23, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4819), 1, + ACTIONS(4808), 1, anon_sym_GT_GT, - ACTIONS(4823), 1, + ACTIONS(4812), 1, anon_sym_AMP, - ACTIONS(4831), 1, + ACTIONS(4820), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - ACTIONS(4835), 1, + ACTIONS(4824), 1, anon_sym_LT, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2189), 1, + STATE(2130), 1, sym_arguments, - STATE(4602), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4758), 2, + ACTIONS(4762), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(4807), 2, + ACTIONS(4796), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4813), 2, + ACTIONS(4802), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4821), 2, + ACTIONS(4810), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4829), 2, + ACTIONS(4818), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4839), 2, + ACTIONS(4828), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4841), 2, + ACTIONS(4830), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4837), 3, + ACTIONS(4826), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4756), 12, + ACTIONS(4760), 12, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -179065,65 +177113,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [45200] = 24, - ACTIONS(4627), 1, + [45033] = 24, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4819), 1, + ACTIONS(4808), 1, anon_sym_GT_GT, - ACTIONS(4823), 1, + ACTIONS(4812), 1, anon_sym_AMP, - ACTIONS(4825), 1, + ACTIONS(4814), 1, anon_sym_CARET, - ACTIONS(4831), 1, + ACTIONS(4820), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - ACTIONS(4835), 1, + ACTIONS(4824), 1, anon_sym_LT, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2189), 1, + STATE(2130), 1, sym_arguments, - STATE(4602), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4758), 2, + ACTIONS(4762), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(4807), 2, + ACTIONS(4796), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4813), 2, + ACTIONS(4802), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4821), 2, + ACTIONS(4810), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4829), 2, + ACTIONS(4818), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4839), 2, + ACTIONS(4828), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4841), 2, + ACTIONS(4830), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4837), 3, + ACTIONS(4826), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4756), 11, + ACTIONS(4760), 11, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -179135,37 +177183,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [45294] = 15, - ACTIONS(4627), 1, + [45127] = 15, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4831), 1, + ACTIONS(4820), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - ACTIONS(4872), 1, + ACTIONS(4861), 1, anon_sym_LT, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2189), 1, + STATE(2130), 1, sym_arguments, - STATE(4602), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4807), 2, + ACTIONS(4796), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4758), 10, + ACTIONS(4762), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, @@ -179176,7 +177224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4756), 19, + ACTIONS(4760), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -179196,38 +177244,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [45370] = 16, - ACTIONS(4627), 1, + [45203] = 16, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4833), 1, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4872), 1, + ACTIONS(4861), 1, anon_sym_LT, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2189), 1, + STATE(2130), 1, sym_arguments, - STATE(4602), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4758), 11, + ACTIONS(4762), 11, anon_sym_STAR, anon_sym_in, anon_sym_GT_GT, @@ -179239,7 +177287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4756), 18, + ACTIONS(4760), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -179258,58 +177306,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [45448] = 20, - ACTIONS(4627), 1, + [45281] = 9, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(4590), 1, + anon_sym_LBRACK, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4594), 1, + anon_sym_QMARK_DOT, + STATE(2228), 1, + sym_template_string, + STATE(4524), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1734), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(1736), 24, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [45345] = 20, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4819), 1, + ACTIONS(4808), 1, anon_sym_GT_GT, - ACTIONS(4831), 1, + ACTIONS(4820), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - ACTIONS(4835), 1, + ACTIONS(4824), 1, anon_sym_LT, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2189), 1, + STATE(2130), 1, sym_arguments, - STATE(4602), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4807), 2, + ACTIONS(4796), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4813), 2, + ACTIONS(4802), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4821), 2, + ACTIONS(4810), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4829), 2, + ACTIONS(4818), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4837), 3, + ACTIONS(4826), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4758), 5, + ACTIONS(4762), 5, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4756), 14, + ACTIONS(4760), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -179324,90 +177427,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [45534] = 31, - ACTIONS(4627), 1, + [45431] = 27, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, - anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4762), 1, anon_sym_BANG, - ACTIONS(4815), 1, + ACTIONS(4804), 1, anon_sym_AMP_AMP, - ACTIONS(4817), 1, + ACTIONS(4806), 1, anon_sym_PIPE_PIPE, - ACTIONS(4819), 1, + ACTIONS(4808), 1, anon_sym_GT_GT, - ACTIONS(4823), 1, + ACTIONS(4812), 1, anon_sym_AMP, - ACTIONS(4825), 1, + ACTIONS(4814), 1, anon_sym_CARET, - ACTIONS(4827), 1, + ACTIONS(4816), 1, anon_sym_PIPE, - ACTIONS(4831), 1, + ACTIONS(4820), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - ACTIONS(4835), 1, + ACTIONS(4824), 1, anon_sym_LT, - ACTIONS(4843), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4847), 1, - anon_sym_satisfies, - ACTIONS(4849), 1, - sym__ternary_qmark, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2189), 1, + STATE(2130), 1, sym_arguments, - STATE(4602), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4807), 2, + ACTIONS(4796), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4813), 2, + ACTIONS(4802), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4821), 2, + ACTIONS(4810), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4829), 2, + ACTIONS(4818), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4839), 2, + ACTIONS(4828), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4841), 2, + ACTIONS(4830), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4837), 3, + ACTIONS(4826), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4752), 5, + ACTIONS(4760), 9, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [45642] = 4, - ACTIONS(4694), 1, - anon_sym_is, + anon_sym_satisfies, + [45531] = 6, + ACTIONS(3494), 1, + anon_sym_EQ, + ACTIONS(3590), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4091), 13, + ACTIONS(3586), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3492), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -179421,15 +177528,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4093), 29, - sym__automatic_semicolon, + ACTIONS(3496), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -179450,14 +177552,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [45696] = 4, - ACTIONS(4875), 1, - anon_sym_is, + [45589] = 12, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, + anon_sym_LBRACK, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4864), 1, + anon_sym_LT, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4085), 13, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4778), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -179467,22 +177585,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4087), 29, + ACTIONS(4780), 21, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -179496,482 +177608,481 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [45750] = 31, - ACTIONS(4627), 1, + [45659] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4815), 1, + ACTIONS(4804), 1, anon_sym_AMP_AMP, - ACTIONS(4817), 1, + ACTIONS(4806), 1, anon_sym_PIPE_PIPE, - ACTIONS(4819), 1, + ACTIONS(4808), 1, anon_sym_GT_GT, - ACTIONS(4823), 1, + ACTIONS(4812), 1, anon_sym_AMP, - ACTIONS(4825), 1, + ACTIONS(4814), 1, anon_sym_CARET, - ACTIONS(4827), 1, + ACTIONS(4816), 1, anon_sym_PIPE, - ACTIONS(4831), 1, + ACTIONS(4820), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - ACTIONS(4835), 1, + ACTIONS(4824), 1, anon_sym_LT, - ACTIONS(4843), 1, + ACTIONS(4832), 1, anon_sym_QMARK_QMARK, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4849), 1, + ACTIONS(4838), 1, sym__ternary_qmark, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2189), 1, + STATE(2130), 1, sym_arguments, - STATE(4602), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4807), 2, + ACTIONS(4796), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4813), 2, + ACTIONS(4802), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4821), 2, + ACTIONS(4810), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4829), 2, + ACTIONS(4818), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4839), 2, + ACTIONS(4828), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4841), 2, + ACTIONS(4830), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4837), 3, + ACTIONS(4826), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4565), 5, + ACTIONS(4546), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_BQUOTE, - [45858] = 35, - ACTIONS(3550), 1, + [45767] = 35, + ACTIONS(3557), 1, anon_sym_COLON, - ACTIONS(3967), 1, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4879), 1, + ACTIONS(4869), 1, anon_sym_COMMA, - ACTIONS(4881), 1, + ACTIONS(4871), 1, anon_sym_RPAREN, - ACTIONS(4885), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(4905), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4650), 1, - aux_sym_sequence_expression_repeat1, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, - STATE(5480), 1, + STATE(5026), 1, + aux_sym_sequence_expression_repeat1, + STATE(5470), 1, sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, + ACTIONS(4889), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(4899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4901), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4897), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [45883] = 31, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, + anon_sym_LBRACK, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4798), 1, + anon_sym_as, + ACTIONS(4800), 1, + anon_sym_BANG, + ACTIONS(4804), 1, + anon_sym_AMP_AMP, + ACTIONS(4806), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4808), 1, + anon_sym_GT_GT, + ACTIONS(4812), 1, + anon_sym_AMP, + ACTIONS(4814), 1, + anon_sym_CARET, + ACTIONS(4816), 1, + anon_sym_PIPE, + ACTIONS(4820), 1, + anon_sym_PERCENT, + ACTIONS(4822), 1, + anon_sym_STAR_STAR, + ACTIONS(4824), 1, + anon_sym_LT, + ACTIONS(4832), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4836), 1, + anon_sym_satisfies, + ACTIONS(4838), 1, + sym__ternary_qmark, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4796), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4802), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4810), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4818), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4828), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4830), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4826), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [45974] = 31, - ACTIONS(4627), 1, + ACTIONS(4554), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BQUOTE, + [45991] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4815), 1, + ACTIONS(4804), 1, anon_sym_AMP_AMP, - ACTIONS(4817), 1, + ACTIONS(4806), 1, anon_sym_PIPE_PIPE, - ACTIONS(4819), 1, + ACTIONS(4808), 1, anon_sym_GT_GT, - ACTIONS(4823), 1, + ACTIONS(4812), 1, anon_sym_AMP, - ACTIONS(4825), 1, + ACTIONS(4814), 1, anon_sym_CARET, - ACTIONS(4827), 1, + ACTIONS(4816), 1, anon_sym_PIPE, - ACTIONS(4831), 1, + ACTIONS(4820), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - ACTIONS(4835), 1, + ACTIONS(4824), 1, anon_sym_LT, - ACTIONS(4843), 1, + ACTIONS(4832), 1, anon_sym_QMARK_QMARK, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4849), 1, + ACTIONS(4838), 1, sym__ternary_qmark, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2189), 1, + STATE(2130), 1, sym_arguments, - STATE(4602), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4807), 2, + ACTIONS(4796), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4813), 2, + ACTIONS(4802), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4821), 2, + ACTIONS(4810), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4829), 2, + ACTIONS(4818), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4839), 2, + ACTIONS(4828), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4841), 2, + ACTIONS(4830), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4837), 3, + ACTIONS(4826), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4573), 5, + ACTIONS(4558), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_BQUOTE, - [46082] = 31, - ACTIONS(4627), 1, + [46099] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4809), 1, - anon_sym_as, - ACTIONS(4811), 1, - anon_sym_BANG, - ACTIONS(4815), 1, - anon_sym_AMP_AMP, - ACTIONS(4817), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4819), 1, - anon_sym_GT_GT, - ACTIONS(4823), 1, - anon_sym_AMP, - ACTIONS(4825), 1, - anon_sym_CARET, - ACTIONS(4827), 1, - anon_sym_PIPE, - ACTIONS(4831), 1, - anon_sym_PERCENT, - ACTIONS(4833), 1, - anon_sym_STAR_STAR, - ACTIONS(4835), 1, - anon_sym_LT, - ACTIONS(4843), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4847), 1, - anon_sym_satisfies, - ACTIONS(4849), 1, - sym__ternary_qmark, - STATE(2027), 1, - sym_type_arguments, - STATE(2189), 1, - sym_arguments, - STATE(4602), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4807), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4813), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4821), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4829), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4839), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4841), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4837), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4577), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BQUOTE, - [46190] = 31, - ACTIONS(4627), 1, - anon_sym_LPAREN, - ACTIONS(4629), 1, - anon_sym_LBRACK, - ACTIONS(4631), 1, - anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4815), 1, + ACTIONS(4804), 1, anon_sym_AMP_AMP, - ACTIONS(4817), 1, + ACTIONS(4806), 1, anon_sym_PIPE_PIPE, - ACTIONS(4819), 1, + ACTIONS(4808), 1, anon_sym_GT_GT, - ACTIONS(4823), 1, + ACTIONS(4812), 1, anon_sym_AMP, - ACTIONS(4825), 1, + ACTIONS(4814), 1, anon_sym_CARET, - ACTIONS(4827), 1, + ACTIONS(4816), 1, anon_sym_PIPE, - ACTIONS(4831), 1, + ACTIONS(4820), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - ACTIONS(4835), 1, + ACTIONS(4824), 1, anon_sym_LT, - ACTIONS(4843), 1, + ACTIONS(4832), 1, anon_sym_QMARK_QMARK, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4849), 1, + ACTIONS(4838), 1, sym__ternary_qmark, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2189), 1, + STATE(2130), 1, sym_arguments, - STATE(4602), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4807), 2, + ACTIONS(4796), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4813), 2, + ACTIONS(4802), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4821), 2, + ACTIONS(4810), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4829), 2, + ACTIONS(4818), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4839), 2, + ACTIONS(4828), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4841), 2, + ACTIONS(4830), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4837), 3, + ACTIONS(4826), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4765), 5, + ACTIONS(4769), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_BQUOTE, - [46298] = 31, - ACTIONS(4627), 1, + [46207] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4815), 1, + ACTIONS(4804), 1, anon_sym_AMP_AMP, - ACTIONS(4817), 1, + ACTIONS(4806), 1, anon_sym_PIPE_PIPE, - ACTIONS(4819), 1, + ACTIONS(4808), 1, anon_sym_GT_GT, - ACTIONS(4823), 1, + ACTIONS(4812), 1, anon_sym_AMP, - ACTIONS(4825), 1, + ACTIONS(4814), 1, anon_sym_CARET, - ACTIONS(4827), 1, + ACTIONS(4816), 1, anon_sym_PIPE, - ACTIONS(4831), 1, + ACTIONS(4820), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - ACTIONS(4835), 1, + ACTIONS(4824), 1, anon_sym_LT, - ACTIONS(4843), 1, + ACTIONS(4832), 1, anon_sym_QMARK_QMARK, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4849), 1, + ACTIONS(4838), 1, sym__ternary_qmark, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2189), 1, + STATE(2130), 1, sym_arguments, - STATE(4602), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4807), 2, + ACTIONS(4796), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4813), 2, + ACTIONS(4802), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4821), 2, + ACTIONS(4810), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4829), 2, + ACTIONS(4818), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4839), 2, + ACTIONS(4828), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4841), 2, + ACTIONS(4830), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4837), 3, + ACTIONS(4826), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4767), 5, + ACTIONS(4771), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_BQUOTE, - [46406] = 3, + [46315] = 4, + ACTIONS(4696), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1767), 13, + ACTIONS(4104), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -179985,7 +178096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1765), 30, + ACTIONS(4106), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -180015,16 +178126,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, + [46369] = 4, + ACTIONS(4907), 1, anon_sym_is, - [46458] = 5, - ACTIONS(4635), 1, - anon_sym_LT, - STATE(2062), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4085), 12, + ACTIONS(4108), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -180034,10 +178142,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4087), 29, + ACTIONS(4110), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -180067,84 +178176,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [46514] = 4, - ACTIONS(4921), 1, - sym_regex_flags, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4917), 16, - anon_sym_STAR, + [46423] = 31, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, + anon_sym_LBRACK, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4798), 1, anon_sym_as, + ACTIONS(4800), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(4804), 1, + anon_sym_AMP_AMP, + ACTIONS(4806), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4808), 1, anon_sym_GT_GT, + ACTIONS(4812), 1, anon_sym_AMP, + ACTIONS(4814), 1, + anon_sym_CARET, + ACTIONS(4816), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4820), 1, + anon_sym_PERCENT, + ACTIONS(4822), 1, + anon_sym_STAR_STAR, + ACTIONS(4824), 1, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_instanceof, + ACTIONS(4832), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4919), 26, + ACTIONS(4838), 1, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4796), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4802), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4810), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4828), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4830), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(4826), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4792), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_BQUOTE, - [46568] = 13, - ACTIONS(2344), 1, + [46531] = 13, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(3813), 1, + ACTIONS(3808), 1, anon_sym_COMMA, - ACTIONS(3938), 1, + ACTIONS(3925), 1, anon_sym_RBRACE, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, + STATE(4792), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4688), 2, + ACTIONS(4690), 2, sym_number, sym_private_property_identifier, - STATE(3904), 3, + STATE(3866), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -180152,7 +178288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -180176,30 +178312,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [46640] = 12, - ACTIONS(4627), 1, + [46603] = 35, + ACTIONS(3557), 1, + anon_sym_COLON, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4923), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4869), 1, + anon_sym_COMMA, + ACTIONS(4875), 1, + anon_sym_AMP_AMP, + ACTIONS(4877), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4879), 1, + anon_sym_GT_GT, + ACTIONS(4883), 1, + anon_sym_AMP, + ACTIONS(4885), 1, + anon_sym_CARET, + ACTIONS(4887), 1, + anon_sym_PIPE, + ACTIONS(4891), 1, + anon_sym_PERCENT, + ACTIONS(4893), 1, + anon_sym_STAR_STAR, + ACTIONS(4895), 1, anon_sym_LT, - STATE(2027), 1, + ACTIONS(4903), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4905), 1, + sym__ternary_qmark, + ACTIONS(4909), 1, + anon_sym_RPAREN, + STATE(1633), 1, sym_type_arguments, - STATE(2189), 1, + STATE(1655), 1, sym_arguments, - STATE(4602), 1, + STATE(4733), 1, sym_optional_chain, + STATE(5026), 1, + aux_sym_sequence_expression_repeat1, + STATE(5741), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4791), 12, + ACTIONS(4867), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4873), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4881), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4889), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4901), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4897), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [46719] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1900), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -180209,16 +178407,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4793), 21, + ACTIONS(1898), 30, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -180232,324 +178436,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [46710] = 35, - ACTIONS(3550), 1, - anon_sym_COLON, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, - anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(4879), 1, - anon_sym_COMMA, - ACTIONS(4885), 1, - anon_sym_AMP_AMP, - ACTIONS(4887), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, - anon_sym_GT_GT, - ACTIONS(4893), 1, - anon_sym_AMP, - ACTIONS(4895), 1, - anon_sym_CARET, - ACTIONS(4897), 1, - anon_sym_PIPE, - ACTIONS(4901), 1, - anon_sym_PERCENT, - ACTIONS(4903), 1, - anon_sym_STAR_STAR, - ACTIONS(4905), 1, - anon_sym_LT, - ACTIONS(4913), 1, - anon_sym_QMARK_QMARK, + anon_sym_extends, + anon_sym_is, + [46771] = 4, ACTIONS(4915), 1, - sym__ternary_qmark, - ACTIONS(4926), 1, - anon_sym_RPAREN, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4650), 1, - aux_sym_sequence_expression_repeat1, - STATE(4828), 1, - sym_optional_chain, - STATE(5862), 1, - sym_type_annotation, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4911), 16, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4883), 2, + anon_sym_as, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4891), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4899), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_GT, anon_sym_instanceof, - [46826] = 27, - ACTIONS(4627), 1, + anon_sym_satisfies, + ACTIONS(4913), 26, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4629), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4631), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4758), 1, - anon_sym_BANG, - ACTIONS(4815), 1, anon_sym_AMP_AMP, - ACTIONS(4817), 1, anon_sym_PIPE_PIPE, - ACTIONS(4819), 1, - anon_sym_GT_GT, - ACTIONS(4823), 1, - anon_sym_AMP, - ACTIONS(4825), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4827), 1, - anon_sym_PIPE, - ACTIONS(4831), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, anon_sym_STAR_STAR, - ACTIONS(4835), 1, - anon_sym_LT, - STATE(2027), 1, - sym_type_arguments, - STATE(2189), 1, - sym_arguments, - STATE(4602), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4807), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4813), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4821), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4829), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4839), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4841), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4837), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4756), 9, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - [46926] = 31, - ACTIONS(4627), 1, + [46825] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4815), 1, + ACTIONS(4804), 1, anon_sym_AMP_AMP, - ACTIONS(4817), 1, + ACTIONS(4806), 1, anon_sym_PIPE_PIPE, - ACTIONS(4819), 1, + ACTIONS(4808), 1, anon_sym_GT_GT, - ACTIONS(4823), 1, + ACTIONS(4812), 1, anon_sym_AMP, - ACTIONS(4825), 1, + ACTIONS(4814), 1, anon_sym_CARET, - ACTIONS(4827), 1, + ACTIONS(4816), 1, anon_sym_PIPE, - ACTIONS(4831), 1, + ACTIONS(4820), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - ACTIONS(4835), 1, + ACTIONS(4824), 1, anon_sym_LT, - ACTIONS(4843), 1, + ACTIONS(4832), 1, anon_sym_QMARK_QMARK, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4849), 1, + ACTIONS(4838), 1, sym__ternary_qmark, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2189), 1, + STATE(2130), 1, sym_arguments, - STATE(4602), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4807), 2, + ACTIONS(4796), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4813), 2, + ACTIONS(4802), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4821), 2, + ACTIONS(4810), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4829), 2, + ACTIONS(4818), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4839), 2, + ACTIONS(4828), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4841), 2, + ACTIONS(4830), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4837), 3, + ACTIONS(4826), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4541), 5, + ACTIONS(4522), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_BQUOTE, - [47034] = 11, - ACTIONS(4627), 1, - anon_sym_LPAREN, - ACTIONS(4629), 1, - anon_sym_LBRACK, - ACTIONS(4631), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4928), 1, - anon_sym_LT, - STATE(2027), 1, - sym_type_arguments, - STATE(2189), 1, - sym_arguments, - STATE(4602), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4781), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4783), 23, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [47102] = 13, - ACTIONS(2344), 1, + [46933] = 13, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(3813), 1, + ACTIONS(3808), 1, anon_sym_COMMA, - ACTIONS(3847), 1, + ACTIONS(3811), 1, anon_sym_RBRACE, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, + STATE(4792), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4688), 2, + ACTIONS(4690), 2, sym_number, sym_private_property_identifier, - STATE(3904), 3, + STATE(3866), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -180557,7 +178604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -180581,73 +178628,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [47174] = 4, - ACTIONS(4694), 1, - anon_sym_is, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4109), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4111), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + [47005] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(4590), 1, anon_sym_LBRACK, + ACTIONS(4592), 1, anon_sym_DOT, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, + ACTIONS(4798), 1, + anon_sym_as, + ACTIONS(4800), 1, + anon_sym_BANG, + ACTIONS(4804), 1, anon_sym_AMP_AMP, + ACTIONS(4806), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4808), 1, + anon_sym_GT_GT, + ACTIONS(4812), 1, + anon_sym_AMP, + ACTIONS(4814), 1, anon_sym_CARET, + ACTIONS(4816), 1, + anon_sym_PIPE, + ACTIONS(4820), 1, anon_sym_PERCENT, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4824), 1, + anon_sym_LT, + ACTIONS(4832), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4836), 1, + anon_sym_satisfies, + ACTIONS(4838), 1, + sym__ternary_qmark, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4796), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4802), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4810), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4828), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4830), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(4826), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4767), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [47228] = 9, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4629), 1, + [47113] = 11, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4633), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - STATE(2255), 1, - sym_template_string, - STATE(4602), 1, + ACTIONS(4917), 1, + anon_sym_LT, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1883), 13, + ACTIONS(4785), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -180657,17 +178735,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1885), 24, + ACTIONS(4787), 23, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, anon_sym_AMP_AMP, @@ -180685,116 +178760,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [47292] = 35, - ACTIONS(3550), 1, + [47181] = 35, + ACTIONS(3557), 1, anon_sym_COLON, - ACTIONS(3967), 1, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4879), 1, + ACTIONS(4869), 1, anon_sym_COMMA, - ACTIONS(4885), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(4905), 1, sym__ternary_qmark, - ACTIONS(4931), 1, + ACTIONS(4920), 1, anon_sym_RPAREN, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4650), 1, - aux_sym_sequence_expression_repeat1, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, - STATE(5680), 1, + STATE(5026), 1, + aux_sym_sequence_expression_repeat1, + STATE(5630), 1, sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [47408] = 13, - ACTIONS(2344), 1, + [47297] = 13, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(3813), 1, + ACTIONS(3808), 1, anon_sym_COMMA, - ACTIONS(3865), 1, + ACTIONS(3909), 1, anon_sym_RBRACE, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, + STATE(4792), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4688), 2, + ACTIONS(4690), 2, sym_number, sym_private_property_identifier, - STATE(3904), 3, + STATE(3866), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -180802,7 +178878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -180826,21 +178902,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [47480] = 8, - ACTIONS(4627), 1, + [47369] = 8, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4835), 1, + ACTIONS(4824), 1, anon_sym_LT, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2189), 1, + STATE(2130), 1, sym_arguments, - STATE(4602), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4700), 12, + ACTIONS(4704), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -180853,7 +178929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4702), 26, + ACTIONS(4706), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -180880,21 +178956,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [47542] = 8, - ACTIONS(4627), 1, + [47431] = 8, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4933), 1, + ACTIONS(4922), 1, anon_sym_LT, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2189), 1, + STATE(2130), 1, sym_arguments, - STATE(4602), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4700), 12, + ACTIONS(4704), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -180907,7 +178983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4702), 26, + ACTIONS(4706), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -180934,242 +179010,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [47604] = 31, - ACTIONS(4627), 1, + [47493] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4933), 1, + ACTIONS(4922), 1, anon_sym_LT, - ACTIONS(4939), 1, + ACTIONS(4928), 1, anon_sym_AMP_AMP, - ACTIONS(4941), 1, + ACTIONS(4930), 1, anon_sym_PIPE_PIPE, - ACTIONS(4943), 1, + ACTIONS(4932), 1, anon_sym_GT_GT, - ACTIONS(4947), 1, + ACTIONS(4936), 1, anon_sym_AMP, - ACTIONS(4949), 1, + ACTIONS(4938), 1, anon_sym_CARET, - ACTIONS(4951), 1, + ACTIONS(4940), 1, anon_sym_PIPE, - ACTIONS(4955), 1, + ACTIONS(4944), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4946), 1, anon_sym_STAR_STAR, - ACTIONS(4965), 1, + ACTIONS(4954), 1, anon_sym_QMARK_QMARK, - ACTIONS(4967), 1, + ACTIONS(4956), 1, sym__ternary_qmark, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2189), 1, + STATE(2130), 1, sym_arguments, - STATE(4602), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4924), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, + ACTIONS(4926), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4934), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4942), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4961), 2, + ACTIONS(4950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4963), 2, + ACTIONS(4952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4959), 3, + ACTIONS(4948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4483), 5, + ACTIONS(4468), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, anon_sym_BQUOTE, - [47712] = 31, - ACTIONS(4627), 1, + [47601] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4933), 1, + ACTIONS(4922), 1, anon_sym_LT, - ACTIONS(4939), 1, + ACTIONS(4928), 1, anon_sym_AMP_AMP, - ACTIONS(4941), 1, + ACTIONS(4930), 1, anon_sym_PIPE_PIPE, - ACTIONS(4943), 1, + ACTIONS(4932), 1, anon_sym_GT_GT, - ACTIONS(4947), 1, + ACTIONS(4936), 1, anon_sym_AMP, - ACTIONS(4949), 1, + ACTIONS(4938), 1, anon_sym_CARET, - ACTIONS(4951), 1, + ACTIONS(4940), 1, anon_sym_PIPE, - ACTIONS(4955), 1, + ACTIONS(4944), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4946), 1, anon_sym_STAR_STAR, - ACTIONS(4965), 1, + ACTIONS(4954), 1, anon_sym_QMARK_QMARK, - ACTIONS(4967), 1, + ACTIONS(4956), 1, sym__ternary_qmark, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2189), 1, + STATE(2130), 1, sym_arguments, - STATE(4602), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4924), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, + ACTIONS(4926), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4934), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4942), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4961), 2, + ACTIONS(4950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4963), 2, + ACTIONS(4952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4959), 3, + ACTIONS(4948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4750), 5, + ACTIONS(4744), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, anon_sym_BQUOTE, - [47820] = 31, - ACTIONS(4627), 1, - anon_sym_LPAREN, - ACTIONS(4629), 1, - anon_sym_LBRACK, - ACTIONS(4631), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4809), 1, - anon_sym_as, - ACTIONS(4811), 1, - anon_sym_BANG, - ACTIONS(4847), 1, - anon_sym_satisfies, - ACTIONS(4933), 1, - anon_sym_LT, - ACTIONS(4939), 1, - anon_sym_AMP_AMP, - ACTIONS(4941), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4943), 1, - anon_sym_GT_GT, - ACTIONS(4947), 1, - anon_sym_AMP, - ACTIONS(4949), 1, - anon_sym_CARET, - ACTIONS(4951), 1, - anon_sym_PIPE, - ACTIONS(4955), 1, - anon_sym_PERCENT, - ACTIONS(4957), 1, - anon_sym_STAR_STAR, - ACTIONS(4965), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4967), 1, - sym__ternary_qmark, - STATE(2027), 1, - sym_type_arguments, - STATE(2189), 1, - sym_arguments, - STATE(4602), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4935), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4937), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4945), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4953), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4961), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4963), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4959), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4752), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - anon_sym_BQUOTE, - [47928] = 3, + [47709] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3216), 13, + ACTIONS(3233), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -181183,7 +179182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3218), 30, + ACTIONS(3235), 30, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -181214,199 +179213,276 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_PIPE_RBRACE, - [47980] = 31, - ACTIONS(4627), 1, + [47761] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4933), 1, + ACTIONS(4922), 1, anon_sym_LT, - ACTIONS(4939), 1, + ACTIONS(4928), 1, anon_sym_AMP_AMP, - ACTIONS(4941), 1, + ACTIONS(4930), 1, anon_sym_PIPE_PIPE, - ACTIONS(4943), 1, + ACTIONS(4932), 1, anon_sym_GT_GT, - ACTIONS(4947), 1, + ACTIONS(4936), 1, anon_sym_AMP, - ACTIONS(4949), 1, + ACTIONS(4938), 1, anon_sym_CARET, - ACTIONS(4951), 1, + ACTIONS(4940), 1, anon_sym_PIPE, - ACTIONS(4955), 1, + ACTIONS(4944), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4946), 1, anon_sym_STAR_STAR, - ACTIONS(4965), 1, + ACTIONS(4954), 1, anon_sym_QMARK_QMARK, - ACTIONS(4967), 1, + ACTIONS(4956), 1, sym__ternary_qmark, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2189), 1, + STATE(2130), 1, sym_arguments, - STATE(4602), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4924), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, + ACTIONS(4926), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4934), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4942), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4961), 2, + ACTIONS(4950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4963), 2, + ACTIONS(4952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4959), 3, + ACTIONS(4948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4754), 5, + ACTIONS(4756), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, anon_sym_BQUOTE, - [48088] = 31, - ACTIONS(4627), 1, + [47869] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4933), 1, + ACTIONS(4922), 1, anon_sym_LT, - ACTIONS(4939), 1, + ACTIONS(4928), 1, anon_sym_AMP_AMP, - ACTIONS(4941), 1, + ACTIONS(4930), 1, anon_sym_PIPE_PIPE, - ACTIONS(4943), 1, + ACTIONS(4932), 1, anon_sym_GT_GT, - ACTIONS(4947), 1, + ACTIONS(4936), 1, anon_sym_AMP, - ACTIONS(4949), 1, + ACTIONS(4938), 1, anon_sym_CARET, - ACTIONS(4951), 1, + ACTIONS(4940), 1, anon_sym_PIPE, - ACTIONS(4955), 1, + ACTIONS(4944), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4946), 1, anon_sym_STAR_STAR, - ACTIONS(4965), 1, + ACTIONS(4954), 1, anon_sym_QMARK_QMARK, - ACTIONS(4967), 1, + ACTIONS(4956), 1, sym__ternary_qmark, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2189), 1, + STATE(2130), 1, sym_arguments, - STATE(4602), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4924), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, + ACTIONS(4926), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4934), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4942), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4961), 2, + ACTIONS(4950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4963), 2, + ACTIONS(4952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4959), 3, + ACTIONS(4948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4523), 5, + ACTIONS(4758), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, anon_sym_BQUOTE, - [48196] = 18, - ACTIONS(4627), 1, + [47977] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, + ACTIONS(4798), 1, + anon_sym_as, + ACTIONS(4800), 1, + anon_sym_BANG, + ACTIONS(4836), 1, + anon_sym_satisfies, + ACTIONS(4922), 1, anon_sym_LT, - ACTIONS(4943), 1, + ACTIONS(4928), 1, + anon_sym_AMP_AMP, + ACTIONS(4930), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4932), 1, anon_sym_GT_GT, - ACTIONS(4955), 1, + ACTIONS(4936), 1, + anon_sym_AMP, + ACTIONS(4938), 1, + anon_sym_CARET, + ACTIONS(4940), 1, + anon_sym_PIPE, + ACTIONS(4944), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4946), 1, anon_sym_STAR_STAR, - STATE(2027), 1, + ACTIONS(4954), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4956), 1, + sym__ternary_qmark, + STATE(2019), 1, sym_type_arguments, - STATE(2189), 1, + STATE(2130), 1, sym_arguments, - STATE(4602), 1, + STATE(4524), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4924), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4926), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4934), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4942), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4950), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4952), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4948), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4504), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_BQUOTE, + [48085] = 18, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, + anon_sym_LBRACK, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4922), 1, + anon_sym_LT, + ACTIONS(4932), 1, + anon_sym_GT_GT, + ACTIONS(4944), 1, + anon_sym_PERCENT, + ACTIONS(4946), 1, + anon_sym_STAR_STAR, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4924), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4945), 2, + ACTIONS(4934), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4942), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4758), 7, + ACTIONS(4762), 7, anon_sym_BANG, anon_sym_in, anon_sym_AMP, @@ -181414,7 +179490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4756), 17, + ACTIONS(4760), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -181432,32 +179508,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [48278] = 13, - ACTIONS(4627), 1, + [48167] = 13, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4957), 1, + ACTIONS(4946), 1, anon_sym_STAR_STAR, - ACTIONS(4969), 1, + ACTIONS(4958), 1, anon_sym_LT, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2189), 1, + STATE(2130), 1, sym_arguments, - STATE(4602), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4758), 12, + ACTIONS(4762), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -181470,7 +179546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4756), 20, + ACTIONS(4760), 20, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -181491,66 +179567,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [48350] = 25, - ACTIONS(4627), 1, + [48239] = 25, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4758), 1, + ACTIONS(4762), 1, anon_sym_BANG, - ACTIONS(4933), 1, + ACTIONS(4922), 1, anon_sym_LT, - ACTIONS(4943), 1, + ACTIONS(4932), 1, anon_sym_GT_GT, - ACTIONS(4947), 1, + ACTIONS(4936), 1, anon_sym_AMP, - ACTIONS(4949), 1, + ACTIONS(4938), 1, anon_sym_CARET, - ACTIONS(4951), 1, + ACTIONS(4940), 1, anon_sym_PIPE, - ACTIONS(4955), 1, + ACTIONS(4944), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4946), 1, anon_sym_STAR_STAR, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2189), 1, + STATE(2130), 1, sym_arguments, - STATE(4602), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4924), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, + ACTIONS(4926), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4934), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4942), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4961), 2, + ACTIONS(4950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4963), 2, + ACTIONS(4952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4959), 3, + ACTIONS(4948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4756), 11, + ACTIONS(4760), 11, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -181562,68 +179638,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [48446] = 26, - ACTIONS(4627), 1, + [48335] = 26, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4758), 1, + ACTIONS(4762), 1, anon_sym_BANG, - ACTIONS(4933), 1, + ACTIONS(4922), 1, anon_sym_LT, - ACTIONS(4939), 1, + ACTIONS(4928), 1, anon_sym_AMP_AMP, - ACTIONS(4943), 1, + ACTIONS(4932), 1, anon_sym_GT_GT, - ACTIONS(4947), 1, + ACTIONS(4936), 1, anon_sym_AMP, - ACTIONS(4949), 1, + ACTIONS(4938), 1, anon_sym_CARET, - ACTIONS(4951), 1, + ACTIONS(4940), 1, anon_sym_PIPE, - ACTIONS(4955), 1, + ACTIONS(4944), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4946), 1, anon_sym_STAR_STAR, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2189), 1, + STATE(2130), 1, sym_arguments, - STATE(4602), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4924), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, + ACTIONS(4926), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4934), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4942), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4961), 2, + ACTIONS(4950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4963), 2, + ACTIONS(4952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4959), 3, + ACTIONS(4948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4756), 10, + ACTIONS(4760), 10, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -181634,40 +179710,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [48544] = 16, - ACTIONS(4627), 1, + [48433] = 16, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4955), 1, + ACTIONS(4944), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4946), 1, anon_sym_STAR_STAR, - ACTIONS(4969), 1, + ACTIONS(4958), 1, anon_sym_LT, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2189), 1, + STATE(2130), 1, sym_arguments, - STATE(4602), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4924), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4953), 2, + ACTIONS(4942), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4758), 8, + ACTIONS(4762), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, @@ -181676,7 +179752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4756), 19, + ACTIONS(4760), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -181696,62 +179772,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [48622] = 22, - ACTIONS(4627), 1, + [48511] = 22, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, + ACTIONS(4922), 1, anon_sym_LT, - ACTIONS(4943), 1, + ACTIONS(4932), 1, anon_sym_GT_GT, - ACTIONS(4955), 1, + ACTIONS(4944), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4946), 1, anon_sym_STAR_STAR, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2189), 1, + STATE(2130), 1, sym_arguments, - STATE(4602), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4924), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, + ACTIONS(4926), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4934), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4942), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4961), 2, + ACTIONS(4950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4963), 2, + ACTIONS(4952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4758), 3, + ACTIONS(4762), 3, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4959), 3, + ACTIONS(4948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4756), 12, + ACTIONS(4760), 12, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -181764,63 +179840,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [48712] = 23, - ACTIONS(4627), 1, + [48601] = 23, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, + ACTIONS(4922), 1, anon_sym_LT, - ACTIONS(4943), 1, + ACTIONS(4932), 1, anon_sym_GT_GT, - ACTIONS(4947), 1, + ACTIONS(4936), 1, anon_sym_AMP, - ACTIONS(4955), 1, + ACTIONS(4944), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4946), 1, anon_sym_STAR_STAR, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2189), 1, + STATE(2130), 1, sym_arguments, - STATE(4602), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4758), 2, + ACTIONS(4762), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4924), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, + ACTIONS(4926), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4934), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4942), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4961), 2, + ACTIONS(4950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4963), 2, + ACTIONS(4952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4959), 3, + ACTIONS(4948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4756), 12, + ACTIONS(4760), 12, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -181833,65 +179909,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [48804] = 24, - ACTIONS(4627), 1, + [48693] = 24, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, + ACTIONS(4922), 1, anon_sym_LT, - ACTIONS(4943), 1, + ACTIONS(4932), 1, anon_sym_GT_GT, - ACTIONS(4947), 1, + ACTIONS(4936), 1, anon_sym_AMP, - ACTIONS(4949), 1, + ACTIONS(4938), 1, anon_sym_CARET, - ACTIONS(4955), 1, + ACTIONS(4944), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4946), 1, anon_sym_STAR_STAR, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2189), 1, + STATE(2130), 1, sym_arguments, - STATE(4602), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4758), 2, + ACTIONS(4762), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4924), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, + ACTIONS(4926), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4934), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4942), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4961), 2, + ACTIONS(4950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4963), 2, + ACTIONS(4952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4959), 3, + ACTIONS(4948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4756), 11, + ACTIONS(4760), 11, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -181903,37 +179979,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [48898] = 15, - ACTIONS(4627), 1, + [48787] = 15, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4955), 1, + ACTIONS(4944), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4946), 1, anon_sym_STAR_STAR, - ACTIONS(4969), 1, + ACTIONS(4958), 1, anon_sym_LT, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2189), 1, + STATE(2130), 1, sym_arguments, - STATE(4602), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4924), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4758), 10, + ACTIONS(4762), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, @@ -181944,7 +180020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4756), 19, + ACTIONS(4760), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -181964,38 +180040,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [48974] = 16, - ACTIONS(4627), 1, + [48863] = 16, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4957), 1, + ACTIONS(4946), 1, anon_sym_STAR_STAR, - ACTIONS(4969), 1, + ACTIONS(4958), 1, anon_sym_LT, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2189), 1, + STATE(2130), 1, sym_arguments, - STATE(4602), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4758), 11, + ACTIONS(4762), 11, anon_sym_STAR, anon_sym_in, anon_sym_GT_GT, @@ -182007,7 +180083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4756), 18, + ACTIONS(4760), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -182026,58 +180102,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [49052] = 20, - ACTIONS(4627), 1, + [48941] = 20, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4933), 1, + ACTIONS(4922), 1, anon_sym_LT, - ACTIONS(4943), 1, + ACTIONS(4932), 1, anon_sym_GT_GT, - ACTIONS(4955), 1, + ACTIONS(4944), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4946), 1, anon_sym_STAR_STAR, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2189), 1, + STATE(2130), 1, sym_arguments, - STATE(4602), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4924), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, + ACTIONS(4926), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4934), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4942), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4959), 3, + ACTIONS(4948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4758), 5, + ACTIONS(4762), 5, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4756), 14, + ACTIONS(4760), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -182092,70 +180168,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [49138] = 27, - ACTIONS(4627), 1, + [49027] = 27, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4758), 1, + ACTIONS(4762), 1, anon_sym_BANG, - ACTIONS(4933), 1, + ACTIONS(4922), 1, anon_sym_LT, - ACTIONS(4939), 1, + ACTIONS(4928), 1, anon_sym_AMP_AMP, - ACTIONS(4941), 1, + ACTIONS(4930), 1, anon_sym_PIPE_PIPE, - ACTIONS(4943), 1, + ACTIONS(4932), 1, anon_sym_GT_GT, - ACTIONS(4947), 1, + ACTIONS(4936), 1, anon_sym_AMP, - ACTIONS(4949), 1, + ACTIONS(4938), 1, anon_sym_CARET, - ACTIONS(4951), 1, + ACTIONS(4940), 1, anon_sym_PIPE, - ACTIONS(4955), 1, + ACTIONS(4944), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4946), 1, anon_sym_STAR_STAR, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2189), 1, + STATE(2130), 1, sym_arguments, - STATE(4602), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4924), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, + ACTIONS(4926), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4934), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4942), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4961), 2, + ACTIONS(4950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4963), 2, + ACTIONS(4952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4959), 3, + ACTIONS(4948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4756), 9, + ACTIONS(4760), 9, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -182165,642 +180241,642 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [49238] = 31, - ACTIONS(4627), 1, + [49127] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4933), 1, + ACTIONS(4922), 1, anon_sym_LT, - ACTIONS(4939), 1, + ACTIONS(4928), 1, anon_sym_AMP_AMP, - ACTIONS(4941), 1, + ACTIONS(4930), 1, anon_sym_PIPE_PIPE, - ACTIONS(4943), 1, + ACTIONS(4932), 1, anon_sym_GT_GT, - ACTIONS(4947), 1, + ACTIONS(4936), 1, anon_sym_AMP, - ACTIONS(4949), 1, + ACTIONS(4938), 1, anon_sym_CARET, - ACTIONS(4951), 1, + ACTIONS(4940), 1, anon_sym_PIPE, - ACTIONS(4955), 1, + ACTIONS(4944), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4946), 1, anon_sym_STAR_STAR, - ACTIONS(4965), 1, + ACTIONS(4954), 1, anon_sym_QMARK_QMARK, - ACTIONS(4967), 1, + ACTIONS(4956), 1, sym__ternary_qmark, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2189), 1, + STATE(2130), 1, sym_arguments, - STATE(4602), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4924), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, + ACTIONS(4926), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4934), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4942), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4961), 2, + ACTIONS(4950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4963), 2, + ACTIONS(4952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4959), 3, + ACTIONS(4948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4541), 5, + ACTIONS(4522), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, anon_sym_BQUOTE, - [49346] = 31, - ACTIONS(4627), 1, + [49235] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4933), 1, + ACTIONS(4922), 1, anon_sym_LT, - ACTIONS(4939), 1, + ACTIONS(4928), 1, anon_sym_AMP_AMP, - ACTIONS(4941), 1, + ACTIONS(4930), 1, anon_sym_PIPE_PIPE, - ACTIONS(4943), 1, + ACTIONS(4932), 1, anon_sym_GT_GT, - ACTIONS(4947), 1, + ACTIONS(4936), 1, anon_sym_AMP, - ACTIONS(4949), 1, + ACTIONS(4938), 1, anon_sym_CARET, - ACTIONS(4951), 1, + ACTIONS(4940), 1, anon_sym_PIPE, - ACTIONS(4955), 1, + ACTIONS(4944), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4946), 1, anon_sym_STAR_STAR, - ACTIONS(4965), 1, + ACTIONS(4954), 1, anon_sym_QMARK_QMARK, - ACTIONS(4967), 1, + ACTIONS(4956), 1, sym__ternary_qmark, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2189), 1, + STATE(2130), 1, sym_arguments, - STATE(4602), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4924), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, + ACTIONS(4926), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4934), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4942), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4961), 2, + ACTIONS(4950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4963), 2, + ACTIONS(4952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4959), 3, + ACTIONS(4948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4763), 5, + ACTIONS(4767), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, anon_sym_BQUOTE, - [49454] = 31, - ACTIONS(4627), 1, + [49343] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4933), 1, + ACTIONS(4922), 1, anon_sym_LT, - ACTIONS(4939), 1, + ACTIONS(4928), 1, anon_sym_AMP_AMP, - ACTIONS(4941), 1, + ACTIONS(4930), 1, anon_sym_PIPE_PIPE, - ACTIONS(4943), 1, + ACTIONS(4932), 1, anon_sym_GT_GT, - ACTIONS(4947), 1, + ACTIONS(4936), 1, anon_sym_AMP, - ACTIONS(4949), 1, + ACTIONS(4938), 1, anon_sym_CARET, - ACTIONS(4951), 1, + ACTIONS(4940), 1, anon_sym_PIPE, - ACTIONS(4955), 1, + ACTIONS(4944), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4946), 1, anon_sym_STAR_STAR, - ACTIONS(4965), 1, + ACTIONS(4954), 1, anon_sym_QMARK_QMARK, - ACTIONS(4967), 1, + ACTIONS(4956), 1, sym__ternary_qmark, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2189), 1, + STATE(2130), 1, sym_arguments, - STATE(4602), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4924), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, + ACTIONS(4926), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4934), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4942), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4961), 2, + ACTIONS(4950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4963), 2, + ACTIONS(4952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4959), 3, + ACTIONS(4948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4565), 5, + ACTIONS(4546), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, anon_sym_BQUOTE, - [49562] = 31, - ACTIONS(4627), 1, + [49451] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4933), 1, + ACTIONS(4922), 1, anon_sym_LT, - ACTIONS(4939), 1, + ACTIONS(4928), 1, anon_sym_AMP_AMP, - ACTIONS(4941), 1, + ACTIONS(4930), 1, anon_sym_PIPE_PIPE, - ACTIONS(4943), 1, + ACTIONS(4932), 1, anon_sym_GT_GT, - ACTIONS(4947), 1, + ACTIONS(4936), 1, anon_sym_AMP, - ACTIONS(4949), 1, + ACTIONS(4938), 1, anon_sym_CARET, - ACTIONS(4951), 1, + ACTIONS(4940), 1, anon_sym_PIPE, - ACTIONS(4955), 1, + ACTIONS(4944), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4946), 1, anon_sym_STAR_STAR, - ACTIONS(4965), 1, + ACTIONS(4954), 1, anon_sym_QMARK_QMARK, - ACTIONS(4967), 1, + ACTIONS(4956), 1, sym__ternary_qmark, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2189), 1, + STATE(2130), 1, sym_arguments, - STATE(4602), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4924), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, + ACTIONS(4926), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4934), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4942), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4961), 2, + ACTIONS(4950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4963), 2, + ACTIONS(4952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4959), 3, + ACTIONS(4948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4573), 5, + ACTIONS(4554), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, anon_sym_BQUOTE, - [49670] = 31, - ACTIONS(4627), 1, + [49559] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4933), 1, + ACTIONS(4922), 1, anon_sym_LT, - ACTIONS(4939), 1, + ACTIONS(4928), 1, anon_sym_AMP_AMP, - ACTIONS(4941), 1, + ACTIONS(4930), 1, anon_sym_PIPE_PIPE, - ACTIONS(4943), 1, + ACTIONS(4932), 1, anon_sym_GT_GT, - ACTIONS(4947), 1, + ACTIONS(4936), 1, anon_sym_AMP, - ACTIONS(4949), 1, + ACTIONS(4938), 1, anon_sym_CARET, - ACTIONS(4951), 1, + ACTIONS(4940), 1, anon_sym_PIPE, - ACTIONS(4955), 1, + ACTIONS(4944), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4946), 1, anon_sym_STAR_STAR, - ACTIONS(4965), 1, + ACTIONS(4954), 1, anon_sym_QMARK_QMARK, - ACTIONS(4967), 1, + ACTIONS(4956), 1, sym__ternary_qmark, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2189), 1, + STATE(2130), 1, sym_arguments, - STATE(4602), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4924), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, + ACTIONS(4926), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4934), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4942), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4961), 2, + ACTIONS(4950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4963), 2, + ACTIONS(4952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4959), 3, + ACTIONS(4948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4577), 5, + ACTIONS(4558), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, anon_sym_BQUOTE, - [49778] = 31, - ACTIONS(4627), 1, + [49667] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4933), 1, + ACTIONS(4922), 1, anon_sym_LT, - ACTIONS(4939), 1, + ACTIONS(4928), 1, anon_sym_AMP_AMP, - ACTIONS(4941), 1, + ACTIONS(4930), 1, anon_sym_PIPE_PIPE, - ACTIONS(4943), 1, + ACTIONS(4932), 1, anon_sym_GT_GT, - ACTIONS(4947), 1, + ACTIONS(4936), 1, anon_sym_AMP, - ACTIONS(4949), 1, + ACTIONS(4938), 1, anon_sym_CARET, - ACTIONS(4951), 1, + ACTIONS(4940), 1, anon_sym_PIPE, - ACTIONS(4955), 1, + ACTIONS(4944), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4946), 1, anon_sym_STAR_STAR, - ACTIONS(4965), 1, + ACTIONS(4954), 1, anon_sym_QMARK_QMARK, - ACTIONS(4967), 1, + ACTIONS(4956), 1, sym__ternary_qmark, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2189), 1, + STATE(2130), 1, sym_arguments, - STATE(4602), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4924), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, + ACTIONS(4926), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4934), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4942), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4961), 2, + ACTIONS(4950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4963), 2, + ACTIONS(4952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4959), 3, + ACTIONS(4948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4765), 5, + ACTIONS(4769), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, anon_sym_BQUOTE, - [49886] = 31, - ACTIONS(4627), 1, + [49775] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4933), 1, + ACTIONS(4922), 1, anon_sym_LT, - ACTIONS(4939), 1, + ACTIONS(4928), 1, anon_sym_AMP_AMP, - ACTIONS(4941), 1, + ACTIONS(4930), 1, anon_sym_PIPE_PIPE, - ACTIONS(4943), 1, + ACTIONS(4932), 1, anon_sym_GT_GT, - ACTIONS(4947), 1, + ACTIONS(4936), 1, anon_sym_AMP, - ACTIONS(4949), 1, + ACTIONS(4938), 1, anon_sym_CARET, - ACTIONS(4951), 1, + ACTIONS(4940), 1, anon_sym_PIPE, - ACTIONS(4955), 1, + ACTIONS(4944), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4946), 1, anon_sym_STAR_STAR, - ACTIONS(4965), 1, + ACTIONS(4954), 1, anon_sym_QMARK_QMARK, - ACTIONS(4967), 1, + ACTIONS(4956), 1, sym__ternary_qmark, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2189), 1, + STATE(2130), 1, sym_arguments, - STATE(4602), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4924), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, + ACTIONS(4926), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4934), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4942), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4961), 2, + ACTIONS(4950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4963), 2, + ACTIONS(4952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4959), 3, + ACTIONS(4948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4767), 5, + ACTIONS(4771), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, anon_sym_BQUOTE, - [49994] = 31, - ACTIONS(4627), 1, + [49883] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4933), 1, + ACTIONS(4922), 1, anon_sym_LT, - ACTIONS(4939), 1, + ACTIONS(4928), 1, anon_sym_AMP_AMP, - ACTIONS(4941), 1, + ACTIONS(4930), 1, anon_sym_PIPE_PIPE, - ACTIONS(4943), 1, + ACTIONS(4932), 1, anon_sym_GT_GT, - ACTIONS(4947), 1, + ACTIONS(4936), 1, anon_sym_AMP, - ACTIONS(4949), 1, + ACTIONS(4938), 1, anon_sym_CARET, - ACTIONS(4951), 1, + ACTIONS(4940), 1, anon_sym_PIPE, - ACTIONS(4955), 1, + ACTIONS(4944), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4946), 1, anon_sym_STAR_STAR, - ACTIONS(4965), 1, + ACTIONS(4954), 1, anon_sym_QMARK_QMARK, - ACTIONS(4967), 1, + ACTIONS(4956), 1, sym__ternary_qmark, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2189), 1, + STATE(2130), 1, sym_arguments, - STATE(4602), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4924), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, + ACTIONS(4926), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4934), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4942), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4961), 2, + ACTIONS(4950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4963), 2, + ACTIONS(4952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4959), 3, + ACTIONS(4948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4779), 5, + ACTIONS(4773), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, anon_sym_BQUOTE, - [50102] = 8, - ACTIONS(1709), 1, + [49991] = 8, + ACTIONS(1696), 1, anon_sym_EQ, - ACTIONS(4390), 1, + ACTIONS(4126), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4393), 2, + ACTIONS(4129), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4972), 2, + ACTIONS(4961), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(2376), 4, + ACTIONS(2373), 4, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(1707), 11, + ACTIONS(1694), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -182812,7 +180888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1711), 22, + ACTIONS(1698), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -182835,26 +180911,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [50164] = 8, - ACTIONS(4445), 1, + [50053] = 8, + ACTIONS(4146), 1, anon_sym_EQ, - ACTIONS(4449), 1, + ACTIONS(4150), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4452), 2, + ACTIONS(4153), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4976), 2, + ACTIONS(4965), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4149), 4, + ACTIONS(4156), 4, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(4443), 11, + ACTIONS(4144), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -182866,7 +180942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4447), 22, + ACTIONS(4148), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -182889,98 +180965,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [50226] = 35, - ACTIONS(3550), 1, + [50115] = 35, + ACTIONS(3557), 1, anon_sym_COLON, - ACTIONS(3967), 1, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4879), 1, + ACTIONS(4869), 1, anon_sym_COMMA, - ACTIONS(4885), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(4905), 1, sym__ternary_qmark, - ACTIONS(4980), 1, + ACTIONS(4969), 1, anon_sym_RPAREN, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4650), 1, - aux_sym_sequence_expression_repeat1, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, - STATE(5534), 1, + STATE(5026), 1, + aux_sym_sequence_expression_repeat1, + STATE(5636), 1, sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [50342] = 6, - ACTIONS(4627), 1, - anon_sym_LPAREN, - ACTIONS(4982), 1, - anon_sym_DOT, + [50231] = 5, + ACTIONS(4596), 1, + anon_sym_LT, STATE(2063), 1, - sym_arguments, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4117), 13, + ACTIONS(4108), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -182990,19 +181064,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4119), 27, + ACTIONS(4110), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -183022,22 +181097,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [50400] = 7, - ACTIONS(3515), 1, + [50287] = 31, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, + anon_sym_LBRACK, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4798), 1, + anon_sym_as, + ACTIONS(4800), 1, + anon_sym_BANG, + ACTIONS(4804), 1, + anon_sym_AMP_AMP, + ACTIONS(4806), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4808), 1, + anon_sym_GT_GT, + ACTIONS(4812), 1, + anon_sym_AMP, + ACTIONS(4814), 1, + anon_sym_CARET, + ACTIONS(4816), 1, + anon_sym_PIPE, + ACTIONS(4820), 1, + anon_sym_PERCENT, + ACTIONS(4822), 1, + anon_sym_STAR_STAR, + ACTIONS(4824), 1, + anon_sym_LT, + ACTIONS(4832), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4836), 1, + anon_sym_satisfies, + ACTIONS(4838), 1, + sym__ternary_qmark, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4796), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4802), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4810), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4828), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4830), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4826), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4468), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BQUOTE, + [50395] = 7, + ACTIONS(3510), 1, anon_sym_EQ, - ACTIONS(4378), 1, + ACTIONS(4408), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4637), 2, + ACTIONS(4608), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4640), 3, + ACTIONS(4611), 3, anon_sym_AMP, anon_sym_PIPE, anon_sym_GT, - ACTIONS(3499), 10, + ACTIONS(3492), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -183048,7 +181200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 26, + ACTIONS(3496), 26, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -183075,190 +181227,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [50460] = 31, - ACTIONS(4627), 1, + [50455] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4815), 1, + ACTIONS(4804), 1, anon_sym_AMP_AMP, - ACTIONS(4817), 1, + ACTIONS(4806), 1, anon_sym_PIPE_PIPE, - ACTIONS(4819), 1, + ACTIONS(4808), 1, anon_sym_GT_GT, - ACTIONS(4823), 1, + ACTIONS(4812), 1, anon_sym_AMP, - ACTIONS(4825), 1, + ACTIONS(4814), 1, anon_sym_CARET, - ACTIONS(4827), 1, + ACTIONS(4816), 1, anon_sym_PIPE, - ACTIONS(4831), 1, + ACTIONS(4820), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - ACTIONS(4835), 1, + ACTIONS(4824), 1, anon_sym_LT, - ACTIONS(4843), 1, + ACTIONS(4832), 1, anon_sym_QMARK_QMARK, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4849), 1, + ACTIONS(4838), 1, sym__ternary_qmark, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2189), 1, - sym_arguments, - STATE(4602), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4807), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4813), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4821), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4829), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4839), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4841), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4837), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4483), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BQUOTE, - [50568] = 31, - ACTIONS(4627), 1, - anon_sym_LPAREN, - ACTIONS(4629), 1, - anon_sym_LBRACK, - ACTIONS(4631), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4809), 1, - anon_sym_as, - ACTIONS(4811), 1, - anon_sym_BANG, - ACTIONS(4815), 1, - anon_sym_AMP_AMP, - ACTIONS(4817), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4819), 1, - anon_sym_GT_GT, - ACTIONS(4823), 1, - anon_sym_AMP, - ACTIONS(4825), 1, - anon_sym_CARET, - ACTIONS(4827), 1, - anon_sym_PIPE, - ACTIONS(4831), 1, - anon_sym_PERCENT, - ACTIONS(4833), 1, - anon_sym_STAR_STAR, - ACTIONS(4835), 1, - anon_sym_LT, - ACTIONS(4843), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4847), 1, - anon_sym_satisfies, - ACTIONS(4849), 1, - sym__ternary_qmark, - STATE(2027), 1, - sym_type_arguments, - STATE(2189), 1, + STATE(2130), 1, sym_arguments, - STATE(4602), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4807), 2, + ACTIONS(4796), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4813), 2, + ACTIONS(4802), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4821), 2, + ACTIONS(4810), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4829), 2, + ACTIONS(4818), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4839), 2, + ACTIONS(4828), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4841), 2, + ACTIONS(4830), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4837), 3, + ACTIONS(4826), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4750), 5, + ACTIONS(4744), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_BQUOTE, - [50676] = 14, - ACTIONS(1643), 1, + [50563] = 14, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(4986), 1, + ACTIONS(4973), 1, anon_sym_static, - ACTIONS(4988), 1, + ACTIONS(4975), 1, anon_sym_readonly, - ACTIONS(4990), 1, + ACTIONS(4977), 1, anon_sym_abstract, - ACTIONS(4992), 1, + ACTIONS(4979), 1, anon_sym_accessor, - STATE(2856), 1, + STATE(2850), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4984), 2, + ACTIONS(4971), 2, sym_number, sym_private_property_identifier, - STATE(3438), 3, + STATE(3342), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 9, + ACTIONS(3814), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -183268,7 +181343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3705), 20, + ACTIONS(3700), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -183289,42 +181364,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [50750] = 16, - ACTIONS(1643), 1, + [50637] = 16, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - ACTIONS(4591), 1, + ACTIONS(4620), 1, anon_sym_STAR, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(4597), 1, + ACTIONS(4626), 1, anon_sym_async, - ACTIONS(4601), 1, + ACTIONS(4630), 1, anon_sym_readonly, - STATE(2812), 1, + STATE(2805), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4065), 2, + ACTIONS(4074), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4599), 2, + ACTIONS(4628), 2, sym_number, sym_private_property_identifier, - ACTIONS(4603), 2, + ACTIONS(4632), 2, anon_sym_get, anon_sym_set, - STATE(3114), 3, + STATE(3144), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -183332,7 +181407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3705), 18, + ACTIONS(3700), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -183351,11 +181426,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [50828] = 3, + [50715] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3212), 13, + ACTIONS(3237), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -183369,7 +181444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3214), 30, + ACTIONS(3239), 30, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183400,107 +181475,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_PIPE_RBRACE, - [50880] = 31, - ACTIONS(4627), 1, + [50767] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4815), 1, + ACTIONS(4804), 1, anon_sym_AMP_AMP, - ACTIONS(4817), 1, + ACTIONS(4806), 1, anon_sym_PIPE_PIPE, - ACTIONS(4819), 1, + ACTIONS(4808), 1, anon_sym_GT_GT, - ACTIONS(4823), 1, + ACTIONS(4812), 1, anon_sym_AMP, - ACTIONS(4825), 1, + ACTIONS(4814), 1, anon_sym_CARET, - ACTIONS(4827), 1, + ACTIONS(4816), 1, anon_sym_PIPE, - ACTIONS(4831), 1, + ACTIONS(4820), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - ACTIONS(4835), 1, + ACTIONS(4824), 1, anon_sym_LT, - ACTIONS(4843), 1, + ACTIONS(4832), 1, anon_sym_QMARK_QMARK, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4849), 1, + ACTIONS(4838), 1, sym__ternary_qmark, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2189), 1, + STATE(2130), 1, sym_arguments, - STATE(4602), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4807), 2, + ACTIONS(4796), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4813), 2, + ACTIONS(4802), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4821), 2, + ACTIONS(4810), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4829), 2, + ACTIONS(4818), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4839), 2, + ACTIONS(4828), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4841), 2, + ACTIONS(4830), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4837), 3, + ACTIONS(4826), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4779), 5, + ACTIONS(4773), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_BQUOTE, - [50988] = 12, - ACTIONS(4627), 1, + [50875] = 12, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4994), 1, + ACTIONS(4981), 1, anon_sym_LT, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2189), 1, + STATE(2130), 1, sym_arguments, - STATE(4602), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4791), 12, + ACTIONS(4778), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -183513,7 +181588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4793), 21, + ACTIONS(4780), 21, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183535,36 +181610,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [51058] = 15, - ACTIONS(4627), 1, + [50945] = 15, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4997), 1, + ACTIONS(4984), 1, anon_sym_LT, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2189), 1, + STATE(2130), 1, sym_arguments, - STATE(4602), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4798), 11, + ACTIONS(4634), 11, anon_sym_STAR, anon_sym_in, anon_sym_GT_GT, @@ -183576,7 +181651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4800), 19, + ACTIONS(4638), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -183596,104 +181671,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [51134] = 31, - ACTIONS(4627), 1, + [51021] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4933), 1, + ACTIONS(4922), 1, anon_sym_LT, - ACTIONS(4939), 1, + ACTIONS(4928), 1, anon_sym_AMP_AMP, - ACTIONS(4941), 1, + ACTIONS(4930), 1, anon_sym_PIPE_PIPE, - ACTIONS(4943), 1, + ACTIONS(4932), 1, anon_sym_GT_GT, - ACTIONS(4947), 1, + ACTIONS(4936), 1, anon_sym_AMP, - ACTIONS(4949), 1, + ACTIONS(4938), 1, anon_sym_CARET, - ACTIONS(4951), 1, + ACTIONS(4940), 1, anon_sym_PIPE, - ACTIONS(4955), 1, + ACTIONS(4944), 1, anon_sym_PERCENT, - ACTIONS(4957), 1, + ACTIONS(4946), 1, anon_sym_STAR_STAR, - ACTIONS(4965), 1, + ACTIONS(4954), 1, anon_sym_QMARK_QMARK, - ACTIONS(4967), 1, + ACTIONS(4956), 1, sym__ternary_qmark, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2189), 1, + STATE(2130), 1, sym_arguments, - STATE(4602), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4935), 2, + ACTIONS(4924), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4937), 2, + ACTIONS(4926), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4945), 2, + ACTIONS(4934), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4953), 2, + ACTIONS(4942), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4961), 2, + ACTIONS(4950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4963), 2, + ACTIONS(4952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4959), 3, + ACTIONS(4948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4805), 5, + ACTIONS(4792), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, anon_sym_BQUOTE, - [51242] = 11, - ACTIONS(4627), 1, + [51129] = 11, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5000), 1, + ACTIONS(4987), 1, anon_sym_LT, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2189), 1, + STATE(2130), 1, sym_arguments, - STATE(4602), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4781), 12, + ACTIONS(4785), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -183706,7 +181781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4783), 23, + ACTIONS(4787), 23, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183730,52 +181805,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [51310] = 19, - ACTIONS(239), 1, + [51197] = 19, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(2344), 1, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(2364), 1, + ACTIONS(2353), 1, anon_sym_async, - ACTIONS(2366), 1, + ACTIONS(2355), 1, anon_sym_readonly, - ACTIONS(2370), 1, + ACTIONS(2359), 1, anon_sym_override, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5003), 1, + ACTIONS(4990), 1, anon_sym_STAR, - ACTIONS(5005), 1, + ACTIONS(4992), 1, anon_sym_RBRACE, - STATE(2814), 1, + STATE(2813), 1, sym_override_modifier, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, + STATE(4792), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - ACTIONS(2368), 2, + ACTIONS(2357), 2, anon_sym_get, anon_sym_set, - STATE(3799), 3, + STATE(3816), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 4, + ACTIONS(3814), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2362), 18, + ACTIONS(2351), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -183794,11 +181869,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [51393] = 3, + [51280] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4308), 13, + ACTIONS(4284), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -183812,7 +181887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4310), 29, + ACTIONS(4286), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183842,11 +181917,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [51444] = 3, + [51331] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4320), 13, + ACTIONS(4308), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -183860,7 +181935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4322), 29, + ACTIONS(4310), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183890,21 +181965,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [51495] = 6, - ACTIONS(5007), 1, - anon_sym_AMP, - ACTIONS(5009), 1, - anon_sym_PIPE, - ACTIONS(5011), 1, - anon_sym_extends, + [51382] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4324), 11, + ACTIONS(4308), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -183912,7 +181983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4326), 28, + ACTIONS(4310), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183941,30 +182012,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [51552] = 9, - ACTIONS(4093), 1, anon_sym_extends, - ACTIONS(4529), 1, - anon_sym_LBRACK, - ACTIONS(5017), 1, - anon_sym_RPAREN, + [51433] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4532), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5013), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5015), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3499), 11, + ACTIONS(4308), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -183972,10 +182031,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3503), 22, + ACTIONS(4310), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -183995,26 +182060,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [51615] = 9, - ACTIONS(3603), 1, - anon_sym_QMARK, - ACTIONS(3634), 1, - anon_sym_EQ, - ACTIONS(4637), 1, - anon_sym_LBRACK, + anon_sym_extends, + [51484] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3637), 2, + ACTIONS(4316), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(4318), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4378), 2, - anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + 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_satisfies, anon_sym_extends, - ACTIONS(4640), 2, + [51535] = 6, + ACTIONS(4994), 1, anon_sym_AMP, + ACTIONS(4996), 1, anon_sym_PIPE, - ACTIONS(3499), 11, + ACTIONS(4998), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4332), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184026,10 +182131,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3503), 22, + ACTIONS(4334), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -184049,11 +182160,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [51678] = 3, + [51592] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3336), 13, + ACTIONS(3423), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184067,7 +182178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3338), 29, + ACTIONS(3425), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184097,15 +182208,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [51729] = 5, - ACTIONS(1709), 1, + [51643] = 5, + ACTIONS(1696), 1, anon_sym_EQ, - ACTIONS(4664), 1, + ACTIONS(4654), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1705), 13, + ACTIONS(1692), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184119,7 +182230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1703), 27, + ACTIONS(1690), 27, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -184147,340 +182258,280 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [51784] = 31, - ACTIONS(3967), 1, + [51698] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4885), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(4905), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4750), 4, + ACTIONS(4468), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_BQUOTE, - [51891] = 31, - ACTIONS(3967), 1, + [51805] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4885), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(4905), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4754), 4, + ACTIONS(4758), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_BQUOTE, - [51998] = 15, - ACTIONS(3967), 1, + [51912] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(5020), 1, - anon_sym_LT, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4798), 11, - anon_sym_STAR, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4800), 18, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_BQUOTE, - [52073] = 31, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, - anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4885), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(4905), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4523), 4, + ACTIONS(4744), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_BQUOTE, - [52180] = 19, - ACTIONS(239), 1, + [52019] = 19, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(697), 1, + ACTIONS(694), 1, anon_sym_RBRACE, - ACTIONS(2344), 1, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(2364), 1, + ACTIONS(2353), 1, anon_sym_async, - ACTIONS(2366), 1, + ACTIONS(2355), 1, anon_sym_readonly, - ACTIONS(2370), 1, + ACTIONS(2359), 1, anon_sym_override, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5003), 1, + ACTIONS(4990), 1, anon_sym_STAR, - STATE(2814), 1, + STATE(2813), 1, sym_override_modifier, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, + STATE(4792), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - ACTIONS(2368), 2, + ACTIONS(2357), 2, anon_sym_get, anon_sym_set, - STATE(3799), 3, + STATE(3816), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 4, + ACTIONS(3814), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2362), 18, + ACTIONS(2351), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -184499,45 +182550,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [52263] = 18, - ACTIONS(3967), 1, + [52102] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4889), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4875), 1, + anon_sym_AMP_AMP, + ACTIONS(4877), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4901), 1, + ACTIONS(4883), 1, + anon_sym_AMP, + ACTIONS(4885), 1, + anon_sym_CARET, + ACTIONS(4887), 1, + anon_sym_PIPE, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_LT, - STATE(1580), 1, + ACTIONS(4903), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4905), 1, + sym__ternary_qmark, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4891), 2, + ACTIONS(4873), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, + ACTIONS(4889), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(4899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4901), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4897), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4504), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_BQUOTE, + [52209] = 18, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4879), 1, + anon_sym_GT_GT, + ACTIONS(4891), 1, + anon_sym_PERCENT, + ACTIONS(4893), 1, + anon_sym_STAR_STAR, + ACTIONS(4895), 1, + anon_sym_LT, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4867), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4881), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4758), 7, + ACTIONS(4762), 7, anon_sym_BANG, anon_sym_in, anon_sym_AMP, @@ -184545,7 +182672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4756), 16, + ACTIONS(4760), 16, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -184562,158 +182689,246 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [52344] = 5, - ACTIONS(4627), 1, - anon_sym_LPAREN, - STATE(2242), 1, - sym_arguments, + [52290] = 14, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(3722), 1, + anon_sym_override, + ACTIONS(4624), 1, + anon_sym_LBRACK, + ACTIONS(5000), 1, + anon_sym_STAR, + ACTIONS(5002), 1, + anon_sym_async, + ACTIONS(5006), 1, + anon_sym_readonly, + STATE(2789), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4424), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4426), 27, + ACTIONS(5004), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5008), 2, + anon_sym_get, + anon_sym_set, + STATE(3147), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 9, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3700), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + 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, + anon_sym_object, + [52363] = 33, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, anon_sym_LBRACK, + ACTIONS(4592), 1, anon_sym_DOT, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, + ACTIONS(4798), 1, + anon_sym_as, + ACTIONS(4800), 1, + anon_sym_BANG, + ACTIONS(4804), 1, anon_sym_AMP_AMP, + ACTIONS(4806), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4808), 1, + anon_sym_GT_GT, + ACTIONS(4812), 1, + anon_sym_AMP, + ACTIONS(4814), 1, anon_sym_CARET, + ACTIONS(4816), 1, + anon_sym_PIPE, + ACTIONS(4820), 1, anon_sym_PERCENT, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4824), 1, + anon_sym_LT, + ACTIONS(4832), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4836), 1, + anon_sym_satisfies, + ACTIONS(4838), 1, + sym__ternary_qmark, + ACTIONS(5010), 1, + anon_sym_COMMA, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4417), 1, + aux_sym_sequence_expression_repeat1, + STATE(4524), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4796), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4802), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4810), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4828), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4830), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [52399] = 31, - ACTIONS(3967), 1, + ACTIONS(5012), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4826), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [52474] = 32, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4885), 1, + ACTIONS(4922), 1, + anon_sym_LT, + ACTIONS(4926), 1, + anon_sym_GT, + ACTIONS(4928), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(4930), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(4932), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(4936), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(4938), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(4940), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(4944), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4946), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, - anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(4954), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(4956), 1, sym__ternary_qmark, - STATE(1580), 1, + ACTIONS(5016), 1, + anon_sym_in, + STATE(2019), 1, sym_type_arguments, - STATE(1656), 1, + STATE(2130), 1, sym_arguments, - STATE(4828), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4924), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4934), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4942), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4805), 4, + ACTIONS(5014), 4, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_BQUOTE, - [52506] = 13, - ACTIONS(3967), 1, + anon_sym_SEMI, + anon_sym_of, + [52583] = 13, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(5023), 1, + ACTIONS(5019), 1, anon_sym_LT, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4758), 12, + ACTIONS(4762), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -184726,7 +182941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4756), 19, + ACTIONS(4760), 19, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -184746,66 +182961,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [52577] = 25, - ACTIONS(3967), 1, + [52654] = 25, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4758), 1, + ACTIONS(4762), 1, anon_sym_BANG, - ACTIONS(4889), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_LT, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4756), 10, + ACTIONS(4760), 10, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -184816,145 +183031,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [52672] = 32, - ACTIONS(4627), 1, + [52749] = 26, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, - anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4762), 1, anon_sym_BANG, - ACTIONS(4847), 1, - anon_sym_satisfies, - ACTIONS(4933), 1, - anon_sym_LT, - ACTIONS(4937), 1, - anon_sym_GT, - ACTIONS(4939), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4941), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4943), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4947), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4949), 1, - anon_sym_CARET, - ACTIONS(4951), 1, - anon_sym_PIPE, - ACTIONS(4955), 1, - anon_sym_PERCENT, - ACTIONS(4957), 1, - anon_sym_STAR_STAR, - ACTIONS(4965), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4967), 1, - sym__ternary_qmark, - ACTIONS(5028), 1, - anon_sym_in, - STATE(2027), 1, - sym_type_arguments, - STATE(2189), 1, - sym_arguments, - STATE(4602), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4935), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4945), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4953), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4961), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4963), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4959), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5026), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - [52781] = 26, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, - anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4758), 1, - anon_sym_BANG, ACTIONS(4885), 1, - anon_sym_AMP_AMP, - ACTIONS(4889), 1, - anon_sym_GT_GT, - ACTIONS(4893), 1, - anon_sym_AMP, - ACTIONS(4895), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_LT, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4756), 9, + ACTIONS(4760), 9, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -184964,40 +183102,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [52878] = 16, - ACTIONS(3967), 1, + [52846] = 16, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(5023), 1, + ACTIONS(5019), 1, anon_sym_LT, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4899), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4758), 8, + ACTIONS(4762), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, @@ -185006,7 +183144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4756), 18, + ACTIONS(4760), 18, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -185025,62 +183163,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [52955] = 22, - ACTIONS(3967), 1, + [52923] = 22, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4889), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_LT, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4758), 3, + ACTIONS(4762), 3, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4907), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4756), 11, + ACTIONS(4760), 11, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -185092,63 +183230,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [53044] = 23, - ACTIONS(3967), 1, + [53012] = 23, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4889), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_LT, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4758), 2, + ACTIONS(4762), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(4877), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4756), 11, + ACTIONS(4760), 11, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -185160,65 +183298,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [53135] = 24, - ACTIONS(3967), 1, + [53103] = 24, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4889), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_LT, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4758), 2, + ACTIONS(4762), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(4877), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4756), 10, + ACTIONS(4760), 10, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -185229,37 +183367,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [53228] = 15, - ACTIONS(3967), 1, + [53196] = 33, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4901), 1, + ACTIONS(4798), 1, + anon_sym_as, + ACTIONS(4800), 1, + anon_sym_BANG, + ACTIONS(4804), 1, + anon_sym_AMP_AMP, + ACTIONS(4806), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4808), 1, + anon_sym_GT_GT, + ACTIONS(4812), 1, + anon_sym_AMP, + ACTIONS(4814), 1, + anon_sym_CARET, + ACTIONS(4816), 1, + anon_sym_PIPE, + ACTIONS(4820), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - ACTIONS(5023), 1, + ACTIONS(4824), 1, anon_sym_LT, - STATE(1580), 1, + ACTIONS(4832), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4836), 1, + anon_sym_satisfies, + ACTIONS(4838), 1, + sym__ternary_qmark, + ACTIONS(5010), 1, + anon_sym_COMMA, + STATE(2019), 1, sym_type_arguments, - STATE(1656), 1, + STATE(2130), 1, sym_arguments, - STATE(4828), 1, + STATE(4417), 1, + aux_sym_sequence_expression_repeat1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4796), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4802), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4810), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4828), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4830), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5022), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4826), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [53307] = 15, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4891), 1, + anon_sym_PERCENT, + ACTIONS(4893), 1, + anon_sym_STAR_STAR, + ACTIONS(5019), 1, + anon_sym_LT, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4758), 10, + ACTIONS(4762), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, @@ -185270,7 +183486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4756), 18, + ACTIONS(4760), 18, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -185289,38 +183505,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [53303] = 16, - ACTIONS(3967), 1, + [53382] = 16, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(5023), 1, + ACTIONS(5019), 1, anon_sym_LT, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4758), 11, + ACTIONS(4762), 11, anon_sym_STAR, anon_sym_in, anon_sym_GT_GT, @@ -185332,7 +183548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4756), 17, + ACTIONS(4760), 17, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RPAREN, @@ -185350,13 +183566,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [53380] = 4, - ACTIONS(5031), 1, + [53459] = 33, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, + anon_sym_LBRACK, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4798), 1, + anon_sym_as, + ACTIONS(4800), 1, + anon_sym_BANG, + ACTIONS(4804), 1, + anon_sym_AMP_AMP, + ACTIONS(4806), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4808), 1, + anon_sym_GT_GT, + ACTIONS(4812), 1, + anon_sym_AMP, + ACTIONS(4814), 1, + anon_sym_CARET, + ACTIONS(4816), 1, + anon_sym_PIPE, + ACTIONS(4820), 1, + anon_sym_PERCENT, + ACTIONS(4822), 1, + anon_sym_STAR_STAR, + ACTIONS(4824), 1, + anon_sym_LT, + ACTIONS(4832), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4836), 1, + anon_sym_satisfies, + ACTIONS(4838), 1, + sym__ternary_qmark, + ACTIONS(5010), 1, + anon_sym_COMMA, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4417), 1, + aux_sym_sequence_expression_repeat1, + STATE(4524), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4796), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4802), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4810), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4828), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4830), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5024), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4826), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [53570] = 20, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4879), 1, + anon_sym_GT_GT, + ACTIONS(4891), 1, + anon_sym_PERCENT, + ACTIONS(4893), 1, + anon_sym_STAR_STAR, + ACTIONS(4895), 1, + anon_sym_LT, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4867), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4873), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4881), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4889), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4897), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4762), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4760), 13, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [53655] = 4, + ACTIONS(3510), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4261), 13, + ACTIONS(3492), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -185370,16 +183729,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4263), 28, - sym__automatic_semicolon, + ACTIONS(3496), 28, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - 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, @@ -185398,244 +183758,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [53433] = 14, - ACTIONS(1643), 1, - anon_sym_DQUOTE, - ACTIONS(1645), 1, - anon_sym_SQUOTE, - ACTIONS(3731), 1, - anon_sym_override, - ACTIONS(4595), 1, + [53708] = 27, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(5033), 1, - anon_sym_STAR, - ACTIONS(5035), 1, - anon_sym_async, - ACTIONS(5039), 1, - anon_sym_readonly, - STATE(2794), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5037), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5041), 2, - anon_sym_get, - anon_sym_set, - STATE(3145), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 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(3705), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - 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, - anon_sym_object, - [53506] = 4, - ACTIONS(3515), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3499), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(3503), 28, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - 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_satisfies, - [53559] = 20, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, - anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4889), 1, - anon_sym_GT_GT, - ACTIONS(4901), 1, - anon_sym_PERCENT, - ACTIONS(4903), 1, - anon_sym_STAR_STAR, - ACTIONS(4905), 1, - anon_sym_LT, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4877), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4883), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4891), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4899), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4907), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4758), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4756), 13, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [53644] = 27, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, - anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4758), 1, + ACTIONS(4762), 1, anon_sym_BANG, - ACTIONS(4885), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_LT, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4756), 8, + ACTIONS(4760), 8, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -185644,11 +183830,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [53743] = 3, + [53807] = 4, + ACTIONS(4110), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4199), 13, + ACTIONS(4296), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -185662,7 +183850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4201), 29, + ACTIONS(4298), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185691,20 +183879,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [53794] = 4, - ACTIONS(4087), 1, + [53860] = 6, + ACTIONS(4994), 1, + anon_sym_AMP, + ACTIONS(4996), 1, + anon_sym_PIPE, + ACTIONS(4998), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4428), 13, + ACTIONS(4296), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -185712,7 +183901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4430), 28, + ACTIONS(4298), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185741,21 +183930,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [53847] = 6, - ACTIONS(5007), 1, - anon_sym_AMP, - ACTIONS(5009), 1, - anon_sym_PIPE, - ACTIONS(5011), 1, - anon_sym_extends, + [53917] = 4, + ACTIONS(5026), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4428), 11, + ACTIONS(4250), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -185763,7 +183950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4430), 28, + ACTIONS(4252), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185773,7 +183960,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -185792,13 +183978,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [53904] = 4, - ACTIONS(5043), 1, - anon_sym_LBRACK, + anon_sym_extends, + [53970] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4199), 13, + ACTIONS(4170), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -185812,7 +183997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4201), 28, + ACTIONS(4172), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185821,6 +184006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -185841,163 +184027,212 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [53957] = 31, - ACTIONS(3967), 1, + [54021] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4885), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(4905), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4541), 4, + ACTIONS(4522), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_BQUOTE, - [54064] = 31, - ACTIONS(3967), 1, + [54128] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4885), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(4905), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4763), 4, + ACTIONS(4767), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_BQUOTE, - [54171] = 3, + [54235] = 4, + ACTIONS(5028), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4170), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(4172), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + 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_satisfies, + anon_sym_extends, + [54288] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4085), 13, + ACTIONS(4108), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186011,7 +184246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4087), 29, + ACTIONS(4110), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186041,52 +184276,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [54222] = 19, - ACTIONS(239), 1, + [54339] = 19, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(699), 1, + ACTIONS(667), 1, anon_sym_RBRACE, - ACTIONS(2344), 1, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(2364), 1, + ACTIONS(2353), 1, anon_sym_async, - ACTIONS(2366), 1, + ACTIONS(2355), 1, anon_sym_readonly, - ACTIONS(2370), 1, + ACTIONS(2359), 1, anon_sym_override, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5003), 1, + ACTIONS(4990), 1, anon_sym_STAR, - STATE(2814), 1, + STATE(2813), 1, sym_override_modifier, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, + STATE(4792), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - ACTIONS(2368), 2, + ACTIONS(2357), 2, anon_sym_get, anon_sym_set, - STATE(3799), 3, + STATE(3816), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 4, + ACTIONS(3814), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2362), 18, + ACTIONS(2351), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -186105,11 +184340,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [54305] = 3, + [54422] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4404), 13, + ACTIONS(4140), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186123,7 +184358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4406), 29, + ACTIONS(4142), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186153,121 +184388,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [54356] = 31, - ACTIONS(3967), 1, + [54473] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4885), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(4905), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4752), 4, + ACTIONS(4756), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_BQUOTE, - [54463] = 11, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, - anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(5045), 1, - anon_sym_LT, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, + [54580] = 6, + ACTIONS(4106), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4781), 12, + ACTIONS(4510), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4513), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3492), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4783), 22, + ACTIONS(3496), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -186285,20 +184515,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [54530] = 6, - ACTIONS(4093), 1, + [54637] = 7, + ACTIONS(3562), 1, + anon_sym_EQ, + ACTIONS(4408), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4529), 2, + ACTIONS(4608), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4532), 3, + ACTIONS(4611), 3, anon_sym_AMP, anon_sym_PIPE, anon_sym_GT, - ACTIONS(3499), 10, + ACTIONS(3492), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186309,14 +184541,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 26, + ACTIONS(3496), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -186336,41 +184567,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [54587] = 7, - ACTIONS(3573), 1, - anon_sym_EQ, - ACTIONS(4378), 1, - anon_sym_extends, + [54696] = 11, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(5030), 1, + anon_sym_LT, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4637), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4640), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3499), 10, + ACTIONS(4785), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 25, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(4787), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -186388,126 +184623,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [54646] = 33, - ACTIONS(4627), 1, + [54763] = 15, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5033), 1, + anon_sym_LT, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4634), 11, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(4638), 18, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [54838] = 31, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4815), 1, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4817), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4819), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4823), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4825), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(4827), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4831), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4835), 1, + ACTIONS(4895), 1, anon_sym_LT, - ACTIONS(4843), 1, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - ACTIONS(4847), 1, - anon_sym_satisfies, - ACTIONS(4849), 1, + ACTIONS(4905), 1, sym__ternary_qmark, - ACTIONS(5048), 1, - anon_sym_COMMA, - STATE(2027), 1, + STATE(1633), 1, sym_type_arguments, - STATE(2189), 1, + STATE(1655), 1, sym_arguments, - STATE(4476), 1, - aux_sym_sequence_expression_repeat1, - STATE(4602), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4807), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4813), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4821), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4829), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4839), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4841), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5050), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4837), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [54757] = 12, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, - anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(5052), 1, - anon_sym_LT, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, + ACTIONS(4792), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_BQUOTE, + [54945] = 6, + ACTIONS(4994), 1, + anon_sym_AMP, + ACTIONS(4996), 1, + anon_sym_PIPE, + ACTIONS(4998), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4791), 12, + ACTIONS(4272), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4793), 20, + ACTIONS(4274), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -186521,20 +184806,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [54826] = 6, - ACTIONS(1709), 1, + [55002] = 6, + ACTIONS(1696), 1, anon_sym_EQ, - ACTIONS(1713), 1, + ACTIONS(1700), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1703), 2, + ACTIONS(1690), 2, anon_sym_else, anon_sym_while, - ACTIONS(1707), 13, + ACTIONS(1694), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -186548,7 +184835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1711), 25, + ACTIONS(1698), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -186574,187 +184861,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [54883] = 33, - ACTIONS(4627), 1, + [55059] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4815), 1, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4817), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4819), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4823), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4825), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(4827), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4831), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4835), 1, + ACTIONS(4895), 1, anon_sym_LT, - ACTIONS(4843), 1, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - ACTIONS(4847), 1, - anon_sym_satisfies, - ACTIONS(4849), 1, + ACTIONS(4905), 1, sym__ternary_qmark, - ACTIONS(5048), 1, - anon_sym_COMMA, - STATE(2027), 1, + STATE(1633), 1, sym_type_arguments, - STATE(2189), 1, + STATE(1655), 1, sym_arguments, - STATE(4476), 1, - aux_sym_sequence_expression_repeat1, - STATE(4602), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4807), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4813), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4821), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4829), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4839), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4841), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5055), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4837), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [54994] = 31, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, - anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(4885), 1, - anon_sym_AMP_AMP, - ACTIONS(4887), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, - anon_sym_GT_GT, - ACTIONS(4893), 1, - anon_sym_AMP, - ACTIONS(4895), 1, - anon_sym_CARET, - ACTIONS(4897), 1, - anon_sym_PIPE, - ACTIONS(4901), 1, - anon_sym_PERCENT, - ACTIONS(4903), 1, - anon_sym_STAR_STAR, - ACTIONS(4905), 1, - anon_sym_LT, - ACTIONS(4913), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, - sym__ternary_qmark, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, + ACTIONS(4546), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_BQUOTE, + [55166] = 4, + ACTIONS(4146), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4144), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4883), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4891), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4899), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + anon_sym_GT, + ACTIONS(4148), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + 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, - ACTIONS(4907), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4565), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [55101] = 12, - ACTIONS(1643), 1, + anon_sym_satisfies, + [55219] = 12, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4647), 1, - anon_sym_LBRACK, - ACTIONS(4649), 1, + ACTIONS(4656), 1, anon_sym_STAR, - ACTIONS(4653), 1, + ACTIONS(4660), 1, anon_sym_async, - ACTIONS(4677), 1, + ACTIONS(4682), 1, anon_sym_abstract, + ACTIONS(4698), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4655), 2, + ACTIONS(4662), 2, sym_number, sym_private_property_identifier, - ACTIONS(4659), 2, + ACTIONS(4666), 2, anon_sym_get, anon_sym_set, - STATE(3071), 3, + STATE(3082), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 9, + ACTIONS(3814), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -186764,7 +185022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3705), 20, + ACTIONS(3700), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -186785,7 +185043,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [55170] = 3, + [55288] = 31, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4875), 1, + anon_sym_AMP_AMP, + ACTIONS(4877), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4879), 1, + anon_sym_GT_GT, + ACTIONS(4883), 1, + anon_sym_AMP, + ACTIONS(4885), 1, + anon_sym_CARET, + ACTIONS(4887), 1, + anon_sym_PIPE, + ACTIONS(4891), 1, + anon_sym_PERCENT, + ACTIONS(4893), 1, + anon_sym_STAR_STAR, + ACTIONS(4895), 1, + anon_sym_LT, + ACTIONS(4903), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4905), 1, + sym__ternary_qmark, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4867), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4873), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4881), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4889), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4901), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4897), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4554), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_BQUOTE, + [55395] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -186833,145 +185167,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55221] = 31, - ACTIONS(3967), 1, + [55446] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4885), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(4905), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4573), 4, + ACTIONS(4558), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_BQUOTE, - [55328] = 6, - ACTIONS(5007), 1, - anon_sym_AMP, - ACTIONS(5009), 1, - anon_sym_PIPE, - ACTIONS(5011), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4185), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4187), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - 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_satisfies, - [55385] = 4, + [55553] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1986), 6, + ACTIONS(1971), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3819), 11, + ACTIONS(3814), 11, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -186983,7 +185266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1984), 25, + ACTIONS(1969), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -187009,98 +185292,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [55438] = 31, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, - anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(4885), 1, - anon_sym_AMP_AMP, - ACTIONS(4887), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, - anon_sym_GT_GT, - ACTIONS(4893), 1, - anon_sym_AMP, - ACTIONS(4895), 1, - anon_sym_CARET, - ACTIONS(4897), 1, - anon_sym_PIPE, - ACTIONS(4901), 1, - anon_sym_PERCENT, - ACTIONS(4903), 1, - anon_sym_STAR_STAR, - ACTIONS(4905), 1, - anon_sym_LT, - ACTIONS(4913), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, - sym__ternary_qmark, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4877), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4883), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4891), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4899), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4909), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4911), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4577), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_BQUOTE, - [55545] = 7, - ACTIONS(1709), 1, + [55606] = 7, + ACTIONS(1696), 1, anon_sym_EQ, - ACTIONS(4390), 1, + ACTIONS(4126), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2376), 2, + ACTIONS(2373), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(4393), 3, + ACTIONS(4129), 3, anon_sym_AMP, anon_sym_PIPE, anon_sym_GT, - ACTIONS(1707), 10, + ACTIONS(1694), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187111,7 +185318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1711), 25, + ACTIONS(1698), 25, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -187137,18 +185344,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [55604] = 7, - ACTIONS(3521), 1, + [55665] = 7, + ACTIONS(3530), 1, anon_sym_DOT, - ACTIONS(3525), 1, + ACTIONS(3532), 1, anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3527), 2, + ACTIONS(3522), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3517), 7, + ACTIONS(3512), 7, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -187156,7 +185363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(3499), 11, + ACTIONS(3492), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187168,7 +185375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3503), 20, + ACTIONS(3496), 20, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -187189,22 +185396,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [55663] = 7, - ACTIONS(4445), 1, + [55724] = 7, + ACTIONS(4146), 1, anon_sym_EQ, - ACTIONS(4449), 1, + ACTIONS(4150), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4149), 2, + ACTIONS(4156), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(4452), 3, + ACTIONS(4153), 3, anon_sym_AMP, anon_sym_PIPE, anon_sym_GT, - ACTIONS(4443), 10, + ACTIONS(4144), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187215,7 +185422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4447), 25, + ACTIONS(4148), 25, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -187241,14 +185448,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [55722] = 5, + [55783] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4145), 2, + ACTIONS(4184), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4143), 7, + ACTIONS(4182), 7, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -187256,7 +185463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(3499), 11, + ACTIONS(3492), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187268,7 +185475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3503), 22, + ACTIONS(3496), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -187291,91 +185498,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [55777] = 33, - ACTIONS(4627), 1, - anon_sym_LPAREN, - ACTIONS(4629), 1, - anon_sym_LBRACK, - ACTIONS(4631), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4809), 1, - anon_sym_as, - ACTIONS(4811), 1, - anon_sym_BANG, - ACTIONS(4815), 1, - anon_sym_AMP_AMP, - ACTIONS(4817), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4819), 1, - anon_sym_GT_GT, - ACTIONS(4823), 1, - anon_sym_AMP, - ACTIONS(4825), 1, - anon_sym_CARET, - ACTIONS(4827), 1, - anon_sym_PIPE, - ACTIONS(4831), 1, - anon_sym_PERCENT, - ACTIONS(4833), 1, - anon_sym_STAR_STAR, - ACTIONS(4835), 1, - anon_sym_LT, - ACTIONS(4843), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4847), 1, - anon_sym_satisfies, - ACTIONS(4849), 1, - sym__ternary_qmark, - ACTIONS(5048), 1, - anon_sym_COMMA, - STATE(2027), 1, - sym_type_arguments, - STATE(2189), 1, - sym_arguments, - STATE(4476), 1, - aux_sym_sequence_expression_repeat1, - STATE(4602), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4807), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4813), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4821), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4829), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4839), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4841), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5057), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4837), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [55888] = 4, - ACTIONS(4445), 1, - anon_sym_EQ, + [55838] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4443), 13, + ACTIONS(2375), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187389,7 +185516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4447), 28, + ACTIONS(2373), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -187418,11 +185545,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [55941] = 3, + anon_sym_extends, + [55889] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4109), 13, + ACTIONS(4114), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187436,7 +185564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4111), 29, + ACTIONS(4116), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -187466,65 +185594,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55992] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2378), 13, - anon_sym_STAR, + [55940] = 33, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, + anon_sym_LBRACK, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4798), 1, + anon_sym_as, + ACTIONS(4800), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(4804), 1, + anon_sym_AMP_AMP, + ACTIONS(4806), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4808), 1, anon_sym_GT_GT, + ACTIONS(4812), 1, anon_sym_AMP, + ACTIONS(4814), 1, + anon_sym_CARET, + ACTIONS(4816), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4820), 1, + anon_sym_PERCENT, + ACTIONS(4822), 1, + anon_sym_STAR_STAR, + ACTIONS(4824), 1, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(2376), 29, - sym__automatic_semicolon, + ACTIONS(4832), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4836), 1, + anon_sym_satisfies, + ACTIONS(4838), 1, sym__ternary_qmark, - anon_sym_as, + ACTIONS(5036), 1, anon_sym_COMMA, + ACTIONS(5039), 1, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4796), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4802), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4810), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4828), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4830), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [56043] = 6, - ACTIONS(5007), 1, + ACTIONS(5041), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4826), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [56051] = 6, + ACTIONS(4994), 1, anon_sym_AMP, - ACTIONS(5009), 1, + ACTIONS(4996), 1, anon_sym_PIPE, - ACTIONS(5011), 1, + ACTIONS(4998), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4435), 11, + ACTIONS(4434), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187536,7 +185694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4437), 28, + ACTIONS(4436), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -187565,17 +185723,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [56100] = 6, - ACTIONS(5007), 1, + [56108] = 6, + ACTIONS(4994), 1, anon_sym_AMP, - ACTIONS(5009), 1, + ACTIONS(4996), 1, anon_sym_PIPE, - ACTIONS(5011), 1, + ACTIONS(4998), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4439), 11, + ACTIONS(4442), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187587,7 +185745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4441), 28, + ACTIONS(4444), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -187616,364 +185774,362 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [56157] = 33, - ACTIONS(4627), 1, + [56165] = 33, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4815), 1, + ACTIONS(4804), 1, anon_sym_AMP_AMP, - ACTIONS(4817), 1, + ACTIONS(4806), 1, anon_sym_PIPE_PIPE, - ACTIONS(4819), 1, + ACTIONS(4808), 1, anon_sym_GT_GT, - ACTIONS(4823), 1, + ACTIONS(4812), 1, anon_sym_AMP, - ACTIONS(4825), 1, + ACTIONS(4814), 1, anon_sym_CARET, - ACTIONS(4827), 1, + ACTIONS(4816), 1, anon_sym_PIPE, - ACTIONS(4831), 1, + ACTIONS(4820), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - ACTIONS(4835), 1, + ACTIONS(4824), 1, anon_sym_LT, - ACTIONS(4843), 1, + ACTIONS(4832), 1, anon_sym_QMARK_QMARK, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4849), 1, + ACTIONS(4838), 1, sym__ternary_qmark, - ACTIONS(5059), 1, + ACTIONS(5036), 1, anon_sym_COMMA, - ACTIONS(5062), 1, + ACTIONS(5039), 1, anon_sym_RBRACE, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2189), 1, + STATE(2130), 1, sym_arguments, - STATE(4602), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4807), 2, + ACTIONS(4744), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4796), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4813), 2, + ACTIONS(4802), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4821), 2, + ACTIONS(4810), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4829), 2, + ACTIONS(4818), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4839), 2, + ACTIONS(4828), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4841), 2, + ACTIONS(4830), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5064), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4837), 3, + ACTIONS(4826), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [56268] = 33, - ACTIONS(4627), 1, + [56276] = 33, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4815), 1, + ACTIONS(4804), 1, anon_sym_AMP_AMP, - ACTIONS(4817), 1, + ACTIONS(4806), 1, anon_sym_PIPE_PIPE, - ACTIONS(4819), 1, + ACTIONS(4808), 1, anon_sym_GT_GT, - ACTIONS(4823), 1, + ACTIONS(4812), 1, anon_sym_AMP, - ACTIONS(4825), 1, + ACTIONS(4814), 1, anon_sym_CARET, - ACTIONS(4827), 1, + ACTIONS(4816), 1, anon_sym_PIPE, - ACTIONS(4831), 1, + ACTIONS(4820), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - ACTIONS(4835), 1, + ACTIONS(4824), 1, anon_sym_LT, - ACTIONS(4843), 1, + ACTIONS(4832), 1, anon_sym_QMARK_QMARK, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4849), 1, + ACTIONS(4838), 1, sym__ternary_qmark, - ACTIONS(5059), 1, - anon_sym_COMMA, - ACTIONS(5062), 1, + ACTIONS(5039), 1, anon_sym_RBRACE, - STATE(2027), 1, + ACTIONS(5043), 1, + anon_sym_COMMA, + STATE(2019), 1, sym_type_arguments, - STATE(2189), 1, + STATE(2130), 1, sym_arguments, - STATE(4602), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4750), 2, + ACTIONS(4758), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(4807), 2, + ACTIONS(4796), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4813), 2, + ACTIONS(4802), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4821), 2, + ACTIONS(4810), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4829), 2, + ACTIONS(4818), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4839), 2, + ACTIONS(4828), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4841), 2, + ACTIONS(4830), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4837), 3, + ACTIONS(4826), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [56379] = 33, - ACTIONS(4627), 1, + [56387] = 33, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4815), 1, + ACTIONS(4804), 1, anon_sym_AMP_AMP, - ACTIONS(4817), 1, + ACTIONS(4806), 1, anon_sym_PIPE_PIPE, - ACTIONS(4819), 1, + ACTIONS(4808), 1, anon_sym_GT_GT, - ACTIONS(4823), 1, + ACTIONS(4812), 1, anon_sym_AMP, - ACTIONS(4825), 1, + ACTIONS(4814), 1, anon_sym_CARET, - ACTIONS(4827), 1, + ACTIONS(4816), 1, anon_sym_PIPE, - ACTIONS(4831), 1, + ACTIONS(4820), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - ACTIONS(4835), 1, + ACTIONS(4824), 1, anon_sym_LT, - ACTIONS(4843), 1, + ACTIONS(4832), 1, anon_sym_QMARK_QMARK, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4849), 1, + ACTIONS(4838), 1, sym__ternary_qmark, - ACTIONS(5062), 1, - anon_sym_RBRACE, - ACTIONS(5066), 1, + ACTIONS(5046), 1, anon_sym_COMMA, - STATE(2027), 1, + ACTIONS(5049), 1, + anon_sym_RBRACE, + STATE(2019), 1, sym_type_arguments, - STATE(2189), 1, + STATE(2130), 1, sym_arguments, - STATE(4602), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4754), 2, + ACTIONS(4758), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(4807), 2, + ACTIONS(4796), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4813), 2, + ACTIONS(4802), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4821), 2, + ACTIONS(4810), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4829), 2, + ACTIONS(4818), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4839), 2, + ACTIONS(4828), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4841), 2, + ACTIONS(4830), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4837), 3, + ACTIONS(4826), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [56490] = 33, - ACTIONS(4627), 1, + [56498] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4815), 1, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4817), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4819), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4823), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4825), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(4827), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4831), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4835), 1, + ACTIONS(4895), 1, anon_sym_LT, - ACTIONS(4843), 1, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - ACTIONS(4847), 1, - anon_sym_satisfies, - ACTIONS(4849), 1, + ACTIONS(4905), 1, sym__ternary_qmark, - ACTIONS(5069), 1, - anon_sym_COMMA, - ACTIONS(5072), 1, - anon_sym_RBRACE, - STATE(2027), 1, + STATE(1633), 1, sym_type_arguments, - STATE(2189), 1, + STATE(1655), 1, sym_arguments, - STATE(4602), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4754), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4807), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4813), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4821), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4829), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4839), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4841), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4837), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [56601] = 19, - ACTIONS(239), 1, + ACTIONS(4769), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_BQUOTE, + [56605] = 19, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(2344), 1, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(2364), 1, + ACTIONS(2353), 1, anon_sym_async, - ACTIONS(2366), 1, + ACTIONS(2355), 1, anon_sym_readonly, - ACTIONS(2370), 1, + ACTIONS(2359), 1, anon_sym_override, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5003), 1, + ACTIONS(4990), 1, anon_sym_STAR, - ACTIONS(5074), 1, + ACTIONS(5051), 1, anon_sym_RBRACE, - STATE(2814), 1, + STATE(2813), 1, sym_override_modifier, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, + STATE(4792), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - ACTIONS(2368), 2, + ACTIONS(2357), 2, anon_sym_get, anon_sym_set, - STATE(3799), 3, + STATE(3816), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 4, + ACTIONS(3814), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2362), 18, + ACTIONS(2351), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -187992,26 +186148,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [56684] = 9, - ACTIONS(2376), 1, + [56688] = 5, + ACTIONS(87), 1, + anon_sym_BQUOTE, + STATE(2228), 1, + sym_template_string, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1734), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(1736), 27, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + 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_satisfies, + [56743] = 9, + ACTIONS(2373), 1, anon_sym_extends, - ACTIONS(4390), 1, + ACTIONS(4126), 1, anon_sym_LBRACK, - ACTIONS(4972), 1, + ACTIONS(4961), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1709), 2, + ACTIONS(1696), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4393), 2, + ACTIONS(4129), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4681), 2, + ACTIONS(4775), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(1707), 11, + ACTIONS(1694), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188023,7 +186229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1711), 22, + ACTIONS(1698), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -188046,26 +186252,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [56747] = 9, - ACTIONS(4149), 1, - anon_sym_extends, - ACTIONS(4449), 1, + [56806] = 9, + ACTIONS(4150), 1, anon_sym_LBRACK, - ACTIONS(4976), 1, + ACTIONS(4156), 1, + anon_sym_extends, + ACTIONS(4965), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4445), 2, + ACTIONS(4146), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4452), 2, + ACTIONS(4153), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4788), 2, + ACTIONS(4651), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(4443), 11, + ACTIONS(4144), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188077,7 +186283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4447), 22, + ACTIONS(4148), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -188100,16 +186306,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [56810] = 4, + [56869] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4213), 4, + ACTIONS(4120), 4, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(4127), 13, + ACTIONS(4288), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188123,7 +186329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4129), 25, + ACTIONS(4290), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -188149,16 +186355,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [56863] = 4, + [56922] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4131), 4, + ACTIONS(4322), 4, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(4127), 13, + ACTIONS(4288), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188172,7 +186378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4129), 25, + ACTIONS(4290), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -188198,52 +186404,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [56916] = 19, - ACTIONS(239), 1, + [56975] = 19, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(2344), 1, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(2364), 1, + ACTIONS(2353), 1, anon_sym_async, - ACTIONS(2366), 1, + ACTIONS(2355), 1, anon_sym_readonly, - ACTIONS(2370), 1, + ACTIONS(2359), 1, anon_sym_override, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5003), 1, + ACTIONS(4990), 1, anon_sym_STAR, - ACTIONS(5076), 1, + ACTIONS(5053), 1, anon_sym_RBRACE, - STATE(2814), 1, + STATE(2813), 1, sym_override_modifier, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, + STATE(4792), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - ACTIONS(2368), 2, + ACTIONS(2357), 2, anon_sym_get, anon_sym_set, - STATE(3799), 3, + STATE(3816), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 4, + ACTIONS(3814), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2362), 18, + ACTIONS(2351), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -188262,27 +186468,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [56999] = 10, - ACTIONS(1709), 1, + [57058] = 10, + ACTIONS(1696), 1, anon_sym_EQ, - ACTIONS(2376), 1, + ACTIONS(2373), 1, anon_sym_extends, - ACTIONS(2378), 1, + ACTIONS(2375), 1, anon_sym_QMARK, - ACTIONS(4390), 1, + ACTIONS(4126), 1, anon_sym_LBRACK, - ACTIONS(4870), 1, + ACTIONS(4859), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4393), 2, + ACTIONS(4129), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4972), 2, + ACTIONS(4961), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1707), 11, + ACTIONS(1694), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188294,7 +186500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1711), 22, + ACTIONS(1698), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -188317,27 +186523,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [57064] = 10, - ACTIONS(4147), 1, - anon_sym_QMARK, - ACTIONS(4149), 1, - anon_sym_extends, - ACTIONS(4445), 1, + [57123] = 10, + ACTIONS(4146), 1, anon_sym_EQ, - ACTIONS(4449), 1, + ACTIONS(4150), 1, anon_sym_LBRACK, - ACTIONS(4864), 1, + ACTIONS(4156), 1, + anon_sym_extends, + ACTIONS(4270), 1, + anon_sym_QMARK, + ACTIONS(4850), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4452), 2, + ACTIONS(4153), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4976), 2, + ACTIONS(4965), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(4443), 11, + ACTIONS(4144), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188349,7 +186555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4447), 22, + ACTIONS(4148), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -188372,23 +186578,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [57129] = 6, + [57188] = 6, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4640), 2, + ACTIONS(4611), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4637), 3, + ACTIONS(4608), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(4378), 4, + ACTIONS(4408), 4, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(3499), 11, + ACTIONS(3492), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188400,7 +186606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3503), 22, + ACTIONS(3496), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -188423,23 +186629,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [57186] = 6, + [57245] = 6, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4466), 2, + ACTIONS(4617), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4463), 3, + ACTIONS(4614), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(4167), 4, + ACTIONS(4378), 4, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(4459), 11, + ACTIONS(4458), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188451,7 +186657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4461), 22, + ACTIONS(4460), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -188474,99 +186680,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [57243] = 31, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, - anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(4885), 1, - anon_sym_AMP_AMP, - ACTIONS(4887), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, - anon_sym_GT_GT, - ACTIONS(4893), 1, - anon_sym_AMP, - ACTIONS(4895), 1, - anon_sym_CARET, - ACTIONS(4897), 1, - anon_sym_PIPE, - ACTIONS(4901), 1, - anon_sym_PERCENT, - ACTIONS(4903), 1, - anon_sym_STAR_STAR, - ACTIONS(4905), 1, - anon_sym_LT, - ACTIONS(4913), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, - sym__ternary_qmark, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, + [57302] = 6, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4877), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4883), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4891), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4899), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4909), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4911), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4765), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_BQUOTE, - [57350] = 6, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4532), 2, + ACTIONS(4513), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4529), 3, + ACTIONS(4510), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(4093), 4, + ACTIONS(4106), 4, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(3499), 11, + ACTIONS(3492), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188578,7 +186708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3503), 22, + ACTIONS(3496), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -188601,137 +186731,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [57407] = 31, - ACTIONS(3967), 1, + [57359] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4885), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(4905), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4767), 4, + ACTIONS(4771), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_BQUOTE, - [57514] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4376), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4378), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + [57466] = 12, + ACTIONS(4010), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(4012), 1, anon_sym_LBRACK, + ACTIONS(4014), 1, anon_sym_DOT, + ACTIONS(4642), 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_satisfies, - anon_sym_extends, - [57565] = 4, - ACTIONS(3533), 1, - anon_sym_EQ, + ACTIONS(5055), 1, + anon_sym_LT, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3499), 13, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4778), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188741,22 +186840,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3503), 28, - sym__automatic_semicolon, + ACTIONS(4780), 20, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -188770,19 +186862,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [57618] = 5, - ACTIONS(89), 1, - anon_sym_BQUOTE, - STATE(2255), 1, - sym_template_string, + [57535] = 4, + ACTIONS(3494), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1883), 13, + ACTIONS(3492), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188796,7 +186884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1885), 27, + ACTIONS(3496), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188823,43 +186911,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [57673] = 14, - ACTIONS(165), 1, + [57588] = 14, + ACTIONS(162), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1557), 1, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1559), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(3282), 1, + ACTIONS(3275), 1, anon_sym_LBRACE, - ACTIONS(3947), 1, + ACTIONS(3942), 1, anon_sym_LBRACK, - ACTIONS(5080), 1, + ACTIONS(5060), 1, anon_sym_COMMA, - ACTIONS(5082), 1, + ACTIONS(5062), 1, anon_sym_RBRACE, - STATE(4884), 1, + STATE(4745), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5084), 2, + ACTIONS(5064), 2, sym_number, sym_private_property_identifier, - STATE(4562), 3, + STATE(4555), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5589), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(5596), 3, + STATE(5509), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(5078), 23, + STATE(5536), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(5058), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -188883,11 +186972,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [57746] = 3, + [57661] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2374), 13, + ACTIONS(2379), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188901,7 +186990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(2372), 29, + ACTIONS(2377), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188931,11 +187020,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [57797] = 3, + [57712] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4133), 13, + ACTIONS(4320), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188949,7 +187038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4131), 29, + ACTIONS(4322), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188979,11 +187068,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [57848] = 3, + [57763] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4455), 13, + ACTIONS(4324), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188997,7 +187086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4457), 29, + ACTIONS(4326), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189027,11 +187116,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [57899] = 3, + [57814] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4312), 13, + ACTIONS(4328), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189045,7 +187134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4314), 29, + ACTIONS(4330), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189075,11 +187164,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [57950] = 3, + [57865] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4217), 13, + ACTIONS(4342), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189093,7 +187182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4219), 29, + ACTIONS(4344), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189123,37 +187212,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [58001] = 14, - ACTIONS(1643), 1, + [57916] = 14, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(5086), 1, + ACTIONS(5066), 1, anon_sym_STAR, - ACTIONS(5088), 1, + ACTIONS(5068), 1, anon_sym_async, - ACTIONS(5092), 1, + ACTIONS(5072), 1, anon_sym_readonly, - STATE(2807), 1, + STATE(2791), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5090), 2, + ACTIONS(5070), 2, sym_number, sym_private_property_identifier, - ACTIONS(5094), 2, + ACTIONS(5074), 2, anon_sym_get, anon_sym_set, - STATE(3049), 3, + STATE(3064), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 9, + ACTIONS(3814), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -189163,7 +187252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3705), 18, + ACTIONS(3700), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -189182,33 +187271,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [58074] = 12, - ACTIONS(1643), 1, + [57989] = 12, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(4862), 1, + ACTIONS(4848), 1, anon_sym_abstract, - ACTIONS(5086), 1, + ACTIONS(5066), 1, anon_sym_STAR, - ACTIONS(5088), 1, + ACTIONS(5068), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5090), 2, + ACTIONS(5070), 2, sym_number, sym_private_property_identifier, - ACTIONS(5094), 2, + ACTIONS(5074), 2, anon_sym_get, anon_sym_set, - STATE(3049), 3, + STATE(3064), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 9, + ACTIONS(3814), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -189218,7 +187307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3705), 20, + ACTIONS(3700), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -189239,11 +187328,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [58143] = 3, + [58058] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4245), 13, + ACTIONS(4346), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189257,7 +187346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4247), 29, + ACTIONS(4348), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189287,235 +187376,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [58194] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4316), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4318), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + [58109] = 14, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(3722), 1, + anon_sym_override, + ACTIONS(4624), 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_satisfies, - anon_sym_extends, - [58245] = 4, - ACTIONS(4684), 1, - anon_sym_DOT, + ACTIONS(5076), 1, + anon_sym_STAR, + ACTIONS(5078), 1, + anon_sym_async, + ACTIONS(5082), 1, + anon_sym_readonly, + STATE(2801), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3527), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(3517), 28, + ACTIONS(5080), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5084), 2, + anon_sym_get, + anon_sym_set, + STATE(3066), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 9, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - 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_satisfies, - anon_sym_extends, - [58298] = 8, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(4905), 1, - anon_sym_LT, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4700), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4702), 25, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - 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, - anon_sym_satisfies, - [58359] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4091), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4093), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - 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_satisfies, - anon_sym_extends, - [58410] = 14, - ACTIONS(1643), 1, + anon_sym_QMARK, + ACTIONS(3700), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + 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, + anon_sym_object, + [58182] = 12, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3731), 1, - anon_sym_override, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(5096), 1, + ACTIONS(5076), 1, anon_sym_STAR, - ACTIONS(5098), 1, + ACTIONS(5078), 1, anon_sym_async, - ACTIONS(5102), 1, - anon_sym_readonly, - STATE(2809), 1, - sym_override_modifier, + ACTIONS(5088), 1, + anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5100), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5104), 2, + ACTIONS(5084), 2, anon_sym_get, anon_sym_set, - STATE(3053), 3, + ACTIONS(5086), 2, + sym_number, + sym_private_property_identifier, + STATE(3067), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 9, + ACTIONS(3814), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -189525,7 +187471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3705), 18, + ACTIONS(3700), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -189533,10 +187479,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -189544,13 +187492,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [58483] = 4, - ACTIONS(5106), 1, - anon_sym_DOT, + [58251] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4384), 13, + ACTIONS(4350), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189564,7 +187510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4386), 28, + ACTIONS(4352), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189574,6 +187520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -189593,11 +187540,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [58536] = 3, + [58302] = 4, + ACTIONS(4686), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4400), 13, + ACTIONS(3522), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189611,7 +187560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4402), 29, + ACTIONS(3512), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189621,7 +187570,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -189641,140 +187589,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [58587] = 7, - ACTIONS(3537), 1, - anon_sym_DOT, - ACTIONS(3539), 1, - anon_sym_QMARK_DOT, + [58355] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3517), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3527), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3499), 10, + ACTIONS(4406), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3503), 24, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [58646] = 6, - ACTIONS(4378), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4637), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4640), 3, anon_sym_AMP, anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3499), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - 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_satisfies, - [58703] = 5, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4143), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4145), 3, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_GT, - ACTIONS(3499), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3503), 26, + ACTIONS(4408), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -189794,38 +187636,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [58758] = 6, - ACTIONS(4167), 1, anon_sym_extends, + [58406] = 8, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4895), 1, + anon_sym_LT, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4463), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4466), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(4459), 10, + ACTIONS(4704), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4461), 26, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(4706), 25, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -189845,13 +187690,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [58815] = 4, - ACTIONS(4213), 1, - anon_sym_extends, + [58467] = 4, + ACTIONS(5090), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4127), 13, + ACTIONS(4224), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189865,7 +187710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4129), 28, + ACTIONS(4226), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189875,7 +187720,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -189894,11 +187738,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [58868] = 3, + anon_sym_extends, + [58520] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4372), 13, + ACTIONS(4230), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189912,7 +187757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4374), 29, + ACTIONS(4232), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189942,36 +187787,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [58919] = 3, + [58571] = 7, + ACTIONS(3516), 1, + anon_sym_DOT, + ACTIONS(3520), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4380), 13, + ACTIONS(3512), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3522), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3492), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4382), 29, + ACTIONS(3496), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -189989,35 +187839,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + [58630] = 6, + ACTIONS(4408), 1, anon_sym_extends, - [58970] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4408), 13, + ACTIONS(4608), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4611), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3492), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4410), 29, + ACTIONS(3496), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -190037,37 +187890,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [59021] = 4, - ACTIONS(4432), 1, - anon_sym_DOT, + [58687] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4285), 13, + ACTIONS(4182), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4184), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3492), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4287), 28, + ACTIONS(3496), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, - anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -190086,35 +187940,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + [58742] = 6, + ACTIONS(4378), 1, anon_sym_extends, - [59074] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3703), 13, + ACTIONS(4614), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4617), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(4458), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(3493), 29, + ACTIONS(4460), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -190134,12 +187991,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + [58799] = 4, + ACTIONS(4120), 1, anon_sym_extends, - [59125] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3691), 13, + ACTIONS(4288), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190153,7 +188011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3491), 29, + ACTIONS(4290), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190182,14 +188040,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [59176] = 4, - ACTIONS(4289), 1, - anon_sym_DOT, + [58852] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4285), 13, + ACTIONS(4354), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190203,7 +188058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4287), 28, + ACTIONS(4356), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190213,6 +188068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -190232,11 +188088,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59229] = 3, + [58903] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4304), 13, + ACTIONS(4358), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190250,7 +188106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4306), 29, + ACTIONS(4360), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190280,21 +188136,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59280] = 6, - ACTIONS(5007), 1, - anon_sym_AMP, - ACTIONS(5009), 1, - anon_sym_PIPE, - ACTIONS(5011), 1, - anon_sym_extends, + [58954] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4304), 11, + ACTIONS(4372), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -190302,7 +188154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4306), 28, + ACTIONS(4374), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190331,11 +188183,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [59337] = 3, + anon_sym_extends, + [59005] = 4, + ACTIONS(4388), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4328), 13, + ACTIONS(4384), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190349,7 +188204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4330), 29, + ACTIONS(4386), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190359,7 +188214,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -190379,68 +188233,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59388] = 12, - ACTIONS(1643), 1, - anon_sym_DQUOTE, - ACTIONS(1645), 1, - anon_sym_SQUOTE, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(5096), 1, - anon_sym_STAR, - ACTIONS(5098), 1, - anon_sym_async, - ACTIONS(5110), 1, - anon_sym_abstract, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5104), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5108), 2, - sym_number, - sym_private_property_identifier, - STATE(3055), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 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(3705), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [59457] = 3, + [59058] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4332), 13, + ACTIONS(3691), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190454,7 +188251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4334), 29, + ACTIONS(3474), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190484,11 +188281,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59508] = 3, + [59109] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4336), 13, + ACTIONS(3679), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190502,7 +188299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4338), 29, + ACTIONS(3478), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190532,11 +188329,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59559] = 3, + [59160] = 4, + ACTIONS(4399), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4340), 13, + ACTIONS(4384), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190550,7 +188349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4342), 29, + ACTIONS(4386), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190560,7 +188359,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -190580,11 +188378,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59610] = 3, + [59213] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3400), 13, + ACTIONS(4402), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190598,7 +188396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3402), 29, + ACTIONS(4404), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190628,17 +188426,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59661] = 3, + [59264] = 6, + ACTIONS(4994), 1, + anon_sym_AMP, + ACTIONS(4996), 1, + anon_sym_PIPE, + ACTIONS(4998), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4344), 13, + ACTIONS(4402), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -190646,7 +188448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4346), 29, + ACTIONS(4404), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190675,18 +188477,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [59712] = 4, - ACTIONS(5007), 1, - anon_sym_AMP, + [59321] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4360), 12, + ACTIONS(4414), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -190695,7 +188495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4362), 29, + ACTIONS(4416), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190725,11 +188525,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59765] = 3, + [59372] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4364), 13, + ACTIONS(4418), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190743,7 +188543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4366), 29, + ACTIONS(4420), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190773,84 +188573,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59816] = 9, - ACTIONS(4093), 1, - anon_sym_extends, - ACTIONS(4529), 1, - anon_sym_LBRACK, - ACTIONS(5115), 1, - anon_sym_RPAREN, + [59423] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4532), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5013), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5112), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3499), 11, + ACTIONS(4422), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(3503), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - 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_satisfies, - [59879] = 9, - ACTIONS(3597), 1, - anon_sym_EQ, - ACTIONS(3603), 1, - anon_sym_QMARK, - ACTIONS(4637), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3600), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4378), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4640), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3499), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -190858,10 +188591,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3503), 22, + ACTIONS(4424), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -190881,11 +188620,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [59942] = 3, + anon_sym_extends, + [59474] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4147), 13, + ACTIONS(4426), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190899,7 +188639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4149), 29, + ACTIONS(4428), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190929,11 +188669,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [59993] = 3, + [59525] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4155), 13, + ACTIONS(3417), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190947,7 +188687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4157), 29, + ACTIONS(3419), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190977,88 +188717,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [60044] = 32, - ACTIONS(4627), 1, - anon_sym_LPAREN, - ACTIONS(4629), 1, - anon_sym_LBRACK, - ACTIONS(4631), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4809), 1, - anon_sym_as, - ACTIONS(4811), 1, - anon_sym_BANG, - ACTIONS(4815), 1, - anon_sym_AMP_AMP, - ACTIONS(4817), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4819), 1, - anon_sym_GT_GT, - ACTIONS(4823), 1, - anon_sym_AMP, - ACTIONS(4825), 1, - anon_sym_CARET, - ACTIONS(4827), 1, - anon_sym_PIPE, - ACTIONS(4831), 1, - anon_sym_PERCENT, - ACTIONS(4833), 1, - anon_sym_STAR_STAR, - ACTIONS(4835), 1, - anon_sym_LT, - ACTIONS(4843), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4847), 1, - anon_sym_satisfies, - ACTIONS(4849), 1, - sym__ternary_qmark, - STATE(2027), 1, - sym_type_arguments, - STATE(2189), 1, - sym_arguments, - STATE(4602), 1, - sym_optional_chain, + [59576] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4807), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4813), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4821), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4829), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4839), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4841), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5062), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(5119), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4837), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [60153] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4145), 13, + ACTIONS(4430), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -191072,7 +188735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4143), 29, + ACTIONS(4432), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191102,16 +188765,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [60204] = 3, + [59627] = 4, + ACTIONS(4994), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4165), 13, + ACTIONS(4438), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -191120,7 +188784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4167), 29, + ACTIONS(4440), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191150,11 +188814,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [60255] = 3, + [59680] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4173), 13, + ACTIONS(4446), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -191168,7 +188832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4175), 29, + ACTIONS(4448), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191198,11 +188862,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [60306] = 3, + [59731] = 5, + ACTIONS(4588), 1, + anon_sym_LPAREN, + STATE(2207), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2390), 13, + ACTIONS(4395), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -191216,13 +188884,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(2388), 29, + ACTIONS(4397), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, @@ -191245,18 +188912,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + [59786] = 9, + ACTIONS(4106), 1, anon_sym_extends, - [60357] = 3, + ACTIONS(4510), 1, + anon_sym_LBRACK, + ACTIONS(5097), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4396), 13, + ACTIONS(4513), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5092), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5094), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3492), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -191264,16 +188943,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4398), 29, - sym__automatic_semicolon, + ACTIONS(3496), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -191293,18 +188966,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [60408] = 3, + [59849] = 9, + ACTIONS(3611), 1, + anon_sym_EQ, + ACTIONS(3617), 1, + anon_sym_QMARK, + ACTIONS(4608), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4412), 13, + ACTIONS(3614), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4408), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4611), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3492), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -191312,16 +188997,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4414), 29, - sym__automatic_semicolon, + ACTIONS(3496), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -191341,12 +189020,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [60459] = 3, + [59912] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4416), 13, + ACTIONS(4270), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -191360,7 +189038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4418), 29, + ACTIONS(4156), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191390,123 +189068,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [60510] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4420), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4422), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + [59963] = 32, + ACTIONS(4588), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(4590), 1, anon_sym_LBRACK, + ACTIONS(4592), 1, anon_sym_DOT, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, + ACTIONS(4798), 1, + anon_sym_as, + ACTIONS(4800), 1, + anon_sym_BANG, + ACTIONS(4804), 1, anon_sym_AMP_AMP, + ACTIONS(4806), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4808), 1, + anon_sym_GT_GT, + ACTIONS(4812), 1, + anon_sym_AMP, + ACTIONS(4814), 1, anon_sym_CARET, + ACTIONS(4816), 1, + anon_sym_PIPE, + ACTIONS(4820), 1, anon_sym_PERCENT, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4824), 1, + anon_sym_LT, + ACTIONS(4832), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4836), 1, anon_sym_satisfies, - anon_sym_extends, - [60561] = 14, - ACTIONS(1643), 1, - anon_sym_DQUOTE, - ACTIONS(1645), 1, - anon_sym_SQUOTE, - ACTIONS(3731), 1, - anon_sym_override, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(5121), 1, - anon_sym_STAR, - ACTIONS(5123), 1, - anon_sym_async, - ACTIONS(5127), 1, - anon_sym_readonly, - STATE(2811), 1, - sym_override_modifier, + ACTIONS(4838), 1, + sym__ternary_qmark, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5125), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5129), 2, - anon_sym_get, - anon_sym_set, - STATE(3097), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 9, - sym__automatic_semicolon, + ACTIONS(4796), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4802), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4810), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4828), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4830), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5039), 2, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(5101), 2, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3705), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - 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, - anon_sym_object, - [60634] = 3, + ACTIONS(4826), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [60072] = 4, + ACTIONS(4994), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4416), 13, + ACTIONS(4304), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -191515,7 +189164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4418), 29, + ACTIONS(4306), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191545,11 +189194,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [60685] = 3, + [60125] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4420), 13, + ACTIONS(4184), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -191563,7 +189212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4422), 29, + ACTIONS(4182), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191593,11 +189242,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [60736] = 3, + [60176] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4139), 13, + ACTIONS(4376), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -191611,7 +189260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4141), 29, + ACTIONS(4378), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191641,11 +189290,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [60787] = 3, + [60227] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4135), 13, + ACTIONS(2367), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -191659,7 +189308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4137), 29, + ACTIONS(2365), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191689,30 +189338,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [60838] = 9, - ACTIONS(2376), 1, - anon_sym_extends, - ACTIONS(4390), 1, - anon_sym_LBRACK, - ACTIONS(5131), 1, - anon_sym_RPAREN, + [60278] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1709), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4393), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4870), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1707), 11, + ACTIONS(4158), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -191720,10 +189356,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1711), 22, + ACTIONS(4160), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -191743,11 +189385,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [60901] = 3, + anon_sym_extends, + [60329] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4139), 13, + ACTIONS(4312), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -191761,7 +189404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4141), 29, + ACTIONS(4314), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191791,11 +189434,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [60952] = 3, + [60380] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4135), 13, + ACTIONS(4380), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -191809,7 +189452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4137), 29, + ACTIONS(4382), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191839,11 +189482,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [61003] = 3, + [60431] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4151), 13, + ACTIONS(4122), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -191857,7 +189500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4153), 29, + ACTIONS(4124), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191887,11 +189530,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [61054] = 3, + [60482] = 14, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(3722), 1, + anon_sym_override, + ACTIONS(4624), 1, + anon_sym_LBRACK, + ACTIONS(5103), 1, + anon_sym_STAR, + ACTIONS(5105), 1, + anon_sym_async, + ACTIONS(5109), 1, + anon_sym_readonly, + STATE(2803), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5107), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5111), 2, + anon_sym_get, + anon_sym_set, + STATE(3135), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 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(3700), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + 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, + anon_sym_object, + [60555] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4169), 13, + ACTIONS(4380), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -191905,7 +189607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4171), 29, + ACTIONS(4382), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191935,30 +189637,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [61105] = 9, - ACTIONS(4149), 1, - anon_sym_extends, - ACTIONS(4449), 1, - anon_sym_LBRACK, - ACTIONS(5134), 1, - anon_sym_RPAREN, + [60606] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4445), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4452), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4864), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4443), 11, + ACTIONS(4122), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -191966,10 +189655,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4447), 22, + ACTIONS(4124), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -191989,15 +189684,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [61168] = 5, - ACTIONS(4627), 1, - anon_sym_LPAREN, - STATE(2351), 1, - sym_arguments, + anon_sym_extends, + [60657] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4281), 13, + ACTIONS(4132), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -192011,12 +189703,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4283), 27, + ACTIONS(4134), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, @@ -192039,30 +189732,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [61223] = 9, - ACTIONS(4093), 1, anon_sym_extends, - ACTIONS(4529), 1, - anon_sym_LBRACK, - ACTIONS(5141), 1, - anon_sym_RPAREN, + [60708] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4532), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5137), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5139), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3499), 11, + ACTIONS(4136), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -192070,10 +189751,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3503), 22, + ACTIONS(4138), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -192093,11 +189780,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [61286] = 3, + anon_sym_extends, + [60759] = 5, + ACTIONS(4588), 1, + anon_sym_LPAREN, + STATE(2220), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4151), 13, + ACTIONS(4410), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -192111,13 +189803,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4153), 29, + ACTIONS(4412), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, @@ -192140,18 +189831,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + [60814] = 9, + ACTIONS(2373), 1, anon_sym_extends, - [61337] = 3, + ACTIONS(4126), 1, + anon_sym_LBRACK, + ACTIONS(5113), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4169), 13, + ACTIONS(1696), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4129), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4859), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1694), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -192159,16 +189862,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4171), 29, - sym__automatic_semicolon, + ACTIONS(1698), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -192188,14 +189885,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [61388] = 4, - ACTIONS(4131), 1, - anon_sym_extends, + [60877] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4127), 13, + ACTIONS(4132), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -192209,7 +189903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4129), 28, + ACTIONS(4134), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -192238,11 +189932,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [61441] = 3, + anon_sym_extends, + [60928] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4189), 13, + ACTIONS(4136), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -192256,7 +189951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4191), 29, + ACTIONS(4138), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -192286,11 +189981,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [61492] = 3, + [60979] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4203), 13, + ACTIONS(4162), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -192304,7 +189999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4205), 29, + ACTIONS(4164), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -192334,21 +190029,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [61543] = 6, - ACTIONS(5007), 1, - anon_sym_AMP, - ACTIONS(5009), 1, - anon_sym_PIPE, - ACTIONS(5011), 1, - anon_sym_extends, + [61030] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4221), 11, + ACTIONS(4166), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -192356,7 +190047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4223), 28, + ACTIONS(4168), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -192385,17 +190076,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [61600] = 3, + anon_sym_extends, + [61081] = 9, + ACTIONS(4150), 1, + anon_sym_LBRACK, + ACTIONS(4156), 1, + anon_sym_extends, + ACTIONS(5116), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3368), 13, + ACTIONS(4146), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4153), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4850), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4144), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -192403,16 +190108,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3370), 29, - sym__automatic_semicolon, + ACTIONS(4148), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -192432,12 +190131,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [61651] = 3, + [61144] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4225), 13, + ACTIONS(4162), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -192451,7 +190149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4227), 29, + ACTIONS(4164), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -192481,17 +190179,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [61702] = 3, + [61195] = 9, + ACTIONS(4106), 1, + anon_sym_extends, + ACTIONS(4510), 1, + anon_sym_LBRACK, + ACTIONS(5123), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4229), 13, + ACTIONS(4513), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5119), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5121), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3492), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -192499,16 +190210,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4231), 29, - sym__automatic_semicolon, + ACTIONS(3496), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -192528,43 +190233,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [61753] = 14, - ACTIONS(165), 1, + [61258] = 14, + ACTIONS(162), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1557), 1, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1559), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(3282), 1, + ACTIONS(3275), 1, anon_sym_LBRACE, - ACTIONS(3947), 1, + ACTIONS(3942), 1, anon_sym_LBRACK, - ACTIONS(5080), 1, + ACTIONS(5060), 1, anon_sym_COMMA, - ACTIONS(5146), 1, + ACTIONS(5128), 1, anon_sym_RBRACE, - STATE(4525), 1, + STATE(4736), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5084), 2, + ACTIONS(5064), 2, sym_number, sym_private_property_identifier, - STATE(5124), 3, + STATE(4714), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5589), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(5596), 3, + STATE(5509), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(5144), 23, + STATE(5536), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(5126), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -192588,21 +190292,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [61826] = 6, - ACTIONS(5007), 1, - anon_sym_AMP, - ACTIONS(5009), 1, - anon_sym_PIPE, - ACTIONS(5011), 1, - anon_sym_extends, + [61331] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4229), 11, + ACTIONS(4166), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -192610,7 +190310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4231), 28, + ACTIONS(4168), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -192639,97 +190339,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [61883] = 31, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, - anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(4885), 1, - anon_sym_AMP_AMP, - ACTIONS(4887), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, - anon_sym_GT_GT, - ACTIONS(4893), 1, - anon_sym_AMP, - ACTIONS(4895), 1, - anon_sym_CARET, - ACTIONS(4897), 1, - anon_sym_PIPE, - ACTIONS(4901), 1, - anon_sym_PERCENT, - ACTIONS(4903), 1, - anon_sym_STAR_STAR, - ACTIONS(4905), 1, - anon_sym_LT, - ACTIONS(4913), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, - sym__ternary_qmark, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4877), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4883), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4891), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4899), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4909), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4911), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4779), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_BQUOTE, - [61990] = 6, - ACTIONS(5007), 1, - anon_sym_AMP, - ACTIONS(5009), 1, - anon_sym_PIPE, - ACTIONS(5011), 1, + anon_sym_extends, + [61382] = 4, + ACTIONS(4322), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4177), 11, + ACTIONS(4288), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -192737,7 +190360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4179), 28, + ACTIONS(4290), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -192766,22 +190389,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [62047] = 6, - ACTIONS(4201), 1, - anon_sym_extends, - ACTIONS(5043), 1, - anon_sym_LBRACK, + [61435] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4199), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4193), 11, + ACTIONS(4391), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -192789,7 +190407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4195), 27, + ACTIONS(4393), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -192798,6 +190416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -192817,13 +190436,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [62104] = 4, - ACTIONS(5148), 1, anon_sym_extends, + [61486] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4207), 13, + ACTIONS(4186), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -192837,7 +190455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4209), 28, + ACTIONS(4188), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -192866,13 +190484,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [62157] = 4, - ACTIONS(5043), 1, - anon_sym_LBRACK, + anon_sym_extends, + [61537] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4233), 13, + ACTIONS(4196), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -192886,7 +190503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4235), 28, + ACTIONS(4198), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -192895,6 +190512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -192915,141 +190533,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [62210] = 31, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, + [61588] = 9, + ACTIONS(4106), 1, + anon_sym_extends, + ACTIONS(4510), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(4885), 1, - anon_sym_AMP_AMP, - ACTIONS(4887), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, - anon_sym_GT_GT, - ACTIONS(4893), 1, - anon_sym_AMP, - ACTIONS(4895), 1, - anon_sym_CARET, - ACTIONS(4897), 1, - anon_sym_PIPE, - ACTIONS(4901), 1, - anon_sym_PERCENT, - ACTIONS(4903), 1, - anon_sym_STAR_STAR, - ACTIONS(4905), 1, - anon_sym_LT, - ACTIONS(4913), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, - sym__ternary_qmark, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4877), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4883), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4891), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4899), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4909), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4911), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4483), 4, - anon_sym_COMMA, + ACTIONS(5132), 1, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_BQUOTE, - [62317] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4215), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, + ACTIONS(4513), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4213), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5092), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5130), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - 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_satisfies, - anon_sym_extends, - [62368] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2386), 13, + anon_sym_COLON, + ACTIONS(3492), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -193057,16 +190564,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(2384), 29, - sym__automatic_semicolon, + ACTIONS(3496), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -193086,23 +190587,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [62419] = 7, - ACTIONS(3569), 1, + [61651] = 9, + ACTIONS(3617), 1, + anon_sym_QMARK, + ACTIONS(3619), 1, anon_sym_EQ, - ACTIONS(4378), 1, - anon_sym_extends, + ACTIONS(4608), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4637), 2, + ACTIONS(3622), 2, anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4640), 3, + anon_sym_COLON, + ACTIONS(4408), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4611), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3499), 10, + ACTIONS(3492), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -193113,13 +190617,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 25, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(3496), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -193139,17 +190641,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [62478] = 3, + [61714] = 6, + ACTIONS(4994), 1, + anon_sym_AMP, + ACTIONS(4996), 1, + anon_sym_PIPE, + ACTIONS(4998), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4237), 13, + ACTIONS(4202), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -193157,7 +190663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4239), 29, + ACTIONS(4204), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193186,12 +190692,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [62529] = 3, + [61771] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4241), 13, + ACTIONS(3427), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -193205,7 +190710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4243), 29, + ACTIONS(3429), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193235,11 +190740,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [62580] = 3, + [61822] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4241), 13, + ACTIONS(4216), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -193253,7 +190758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4243), 29, + ACTIONS(4218), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193283,11 +190788,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [62631] = 3, + [61873] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4241), 13, + ACTIONS(4220), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -193301,7 +190806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4243), 29, + ACTIONS(4222), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193331,17 +190836,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [62682] = 3, + [61924] = 6, + ACTIONS(4994), 1, + anon_sym_AMP, + ACTIONS(4996), 1, + anon_sym_PIPE, + ACTIONS(4998), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4249), 13, + ACTIONS(4220), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -193349,7 +190858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4251), 29, + ACTIONS(4222), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193378,114 +190887,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [62733] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4249), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4251), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + [61981] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(4012), 1, anon_sym_LBRACK, + ACTIONS(4014), 1, anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4875), 1, anon_sym_AMP_AMP, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4879), 1, + anon_sym_GT_GT, + ACTIONS(4883), 1, + anon_sym_AMP, + ACTIONS(4885), 1, anon_sym_CARET, + ACTIONS(4887), 1, + anon_sym_PIPE, + ACTIONS(4891), 1, anon_sym_PERCENT, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4895), 1, + anon_sym_LT, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [62784] = 3, + ACTIONS(4905), 1, + sym__ternary_qmark, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4249), 13, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4867), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4873), 2, anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT, + ACTIONS(4881), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4251), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - 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, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4897), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4773), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_BQUOTE, - anon_sym_satisfies, + [62088] = 6, + ACTIONS(4994), 1, + anon_sym_AMP, + ACTIONS(4996), 1, + anon_sym_PIPE, + ACTIONS(4998), 1, anon_sym_extends, - [62835] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4253), 13, + ACTIONS(4292), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -193493,7 +190985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4255), 29, + ACTIONS(4294), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193522,18 +191014,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + [62145] = 6, + ACTIONS(4172), 1, anon_sym_extends, - [62886] = 3, + ACTIONS(5028), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4253), 13, + ACTIONS(4170), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4450), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -193541,7 +191037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4255), 29, + ACTIONS(4452), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193550,7 +191046,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -193570,12 +191065,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + [62202] = 4, + ACTIONS(5135), 1, anon_sym_extends, - [62937] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4253), 13, + ACTIONS(4190), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -193589,7 +191085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4255), 29, + ACTIONS(4192), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193618,12 +191114,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [62988] = 3, + [62255] = 4, + ACTIONS(5028), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4257), 13, + ACTIONS(4212), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -193637,7 +191134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4259), 29, + ACTIONS(4214), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193646,7 +191143,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -193667,34 +191163,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [63039] = 3, + [62308] = 7, + ACTIONS(3578), 1, + anon_sym_EQ, + ACTIONS(4408), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 13, + ACTIONS(4608), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4611), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3492), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4125), 29, + ACTIONS(3496), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -193714,12 +191215,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [63090] = 3, + [62367] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4267), 13, + ACTIONS(4104), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -193733,7 +191233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4269), 29, + ACTIONS(4106), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193763,11 +191263,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [63141] = 3, + [62418] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4271), 13, + ACTIONS(4118), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -193781,7 +191281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4273), 29, + ACTIONS(4120), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193811,11 +191311,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [63192] = 3, + [62469] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4275), 13, + ACTIONS(2371), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -193829,7 +191329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4277), 29, + ACTIONS(2369), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193859,11 +191359,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [63243] = 3, + [62520] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2382), 13, + ACTIONS(4234), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -193877,7 +191377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(2380), 29, + ACTIONS(4236), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193907,11 +191407,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [63294] = 3, + [62571] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4292), 13, + ACTIONS(4238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -193925,7 +191425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4294), 29, + ACTIONS(4240), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193955,13 +191455,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [63345] = 4, - ACTIONS(4623), 1, - anon_sym_EQ, + [62622] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4621), 13, + ACTIONS(4238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -193975,7 +191473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4625), 28, + ACTIONS(4240), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -194004,127 +191502,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [63398] = 14, - ACTIONS(1643), 1, - anon_sym_DQUOTE, - ACTIONS(1645), 1, - anon_sym_SQUOTE, - ACTIONS(3731), 1, - anon_sym_override, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(5150), 1, - anon_sym_STAR, - ACTIONS(5152), 1, - anon_sym_async, - ACTIONS(5156), 1, - anon_sym_readonly, - STATE(2816), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5154), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5158), 2, - anon_sym_get, - anon_sym_set, - STATE(3050), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 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(3705), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - 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, - anon_sym_object, - [63471] = 12, - ACTIONS(1643), 1, - anon_sym_DQUOTE, - ACTIONS(1645), 1, - anon_sym_SQUOTE, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(5150), 1, - anon_sym_STAR, - ACTIONS(5152), 1, - anon_sym_async, - ACTIONS(5162), 1, - anon_sym_abstract, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5158), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5160), 2, - sym_number, - sym_private_property_identifier, - STATE(3063), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 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(3705), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [63540] = 3, + anon_sym_extends, + [62673] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4296), 13, + ACTIONS(4238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194138,7 +191521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4298), 29, + ACTIONS(4240), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -194168,68 +191551,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [63591] = 12, - ACTIONS(2344), 1, - anon_sym_DQUOTE, - ACTIONS(2346), 1, - anon_sym_SQUOTE, - ACTIONS(4591), 1, - anon_sym_STAR, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(4686), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4065), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4688), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4690), 2, - anon_sym_get, - anon_sym_set, - STATE(3904), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2362), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [63660] = 3, + [62724] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4296), 13, + ACTIONS(4242), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194243,7 +191569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4298), 29, + ACTIONS(4244), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -194273,128 +191599,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [63711] = 13, - ACTIONS(1643), 1, - anon_sym_DQUOTE, - ACTIONS(1645), 1, - anon_sym_SQUOTE, - ACTIONS(4591), 1, - anon_sym_STAR, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(4597), 1, - anon_sym_async, - ACTIONS(4647), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4065), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4599), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4603), 2, - anon_sym_get, - anon_sym_set, - STATE(3114), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3705), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [63782] = 14, - ACTIONS(1643), 1, - anon_sym_DQUOTE, - ACTIONS(1645), 1, - anon_sym_SQUOTE, - ACTIONS(3731), 1, - anon_sym_override, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(5164), 1, - anon_sym_STAR, - ACTIONS(5166), 1, - anon_sym_async, - ACTIONS(5170), 1, - anon_sym_readonly, - STATE(2798), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5168), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5172), 2, - anon_sym_get, - anon_sym_set, - STATE(3158), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 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(3705), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - 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, - anon_sym_object, - [63855] = 3, + [62775] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4296), 13, + ACTIONS(4242), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194408,7 +191617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4298), 29, + ACTIONS(4244), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -194438,11 +191647,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [63906] = 3, + [62826] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4300), 13, + ACTIONS(4242), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194456,7 +191665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4302), 29, + ACTIONS(4244), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -194486,13 +191695,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [63957] = 4, - ACTIONS(1709), 1, - anon_sym_EQ, + [62877] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1707), 13, + ACTIONS(4246), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194506,7 +191713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1711), 28, + ACTIONS(4248), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -194535,75 +191742,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [64010] = 19, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(672), 1, - anon_sym_RBRACE, - ACTIONS(2344), 1, - anon_sym_DQUOTE, - ACTIONS(2346), 1, - anon_sym_SQUOTE, - ACTIONS(2364), 1, - anon_sym_async, - ACTIONS(2366), 1, - anon_sym_readonly, - ACTIONS(2370), 1, - anon_sym_override, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(4686), 1, - anon_sym_LBRACK, - ACTIONS(5003), 1, - anon_sym_STAR, - STATE(2814), 1, - sym_override_modifier, - STATE(4823), 1, - aux_sym_object_repeat1, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2348), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2368), 2, - anon_sym_get, - anon_sym_set, - STATE(3799), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2362), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - 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, - anon_sym_object, - [64093] = 3, + anon_sym_extends, + [62928] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4300), 13, + ACTIONS(4246), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194617,7 +191761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4302), 29, + ACTIONS(4248), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -194647,11 +191791,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [64144] = 3, + [62979] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4300), 13, + ACTIONS(4246), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194665,7 +191809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4302), 29, + ACTIONS(4248), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -194695,11 +191839,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [64195] = 3, + [63030] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4308), 13, + ACTIONS(4256), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194713,7 +191857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4310), 29, + ACTIONS(4258), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -194743,11 +191887,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [64246] = 3, + [63081] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4308), 13, + ACTIONS(4260), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194761,7 +191905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4310), 29, + ACTIONS(4262), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -194791,21 +191935,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [64297] = 8, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(5174), 1, - anon_sym_LT, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, + [63132] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4700), 12, + ACTIONS(4264), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194815,14 +191949,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4702), 25, + ACTIONS(4266), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -194843,476 +191982,330 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [64358] = 31, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, - anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(5174), 1, - anon_sym_LT, - ACTIONS(5180), 1, - anon_sym_AMP_AMP, - ACTIONS(5182), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5184), 1, - anon_sym_GT_GT, - ACTIONS(5188), 1, - anon_sym_AMP, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_PIPE, - ACTIONS(5196), 1, - anon_sym_PERCENT, - ACTIONS(5198), 1, - anon_sym_STAR_STAR, - ACTIONS(5206), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5208), 1, - sym__ternary_qmark, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, + anon_sym_extends, + [63183] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5176), 2, + ACTIONS(4174), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5178), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5186), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5194), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5202), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5204), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5200), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4483), 4, - anon_sym_LBRACE, + anon_sym_GT, + ACTIONS(4176), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_BQUOTE, - anon_sym_implements, - [64465] = 31, - ACTIONS(3967), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3969), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(5174), 1, - anon_sym_LT, - ACTIONS(5180), 1, anon_sym_AMP_AMP, - ACTIONS(5182), 1, anon_sym_PIPE_PIPE, - ACTIONS(5184), 1, - anon_sym_GT_GT, - ACTIONS(5188), 1, - anon_sym_AMP, - ACTIONS(5190), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_PIPE, - ACTIONS(5196), 1, anon_sym_PERCENT, - ACTIONS(5198), 1, anon_sym_STAR_STAR, - ACTIONS(5206), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5208), 1, - sym__ternary_qmark, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5176), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5186), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5194), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5204), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5200), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4750), 4, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [64572] = 31, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, - anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(5174), 1, - anon_sym_LT, - ACTIONS(5180), 1, - anon_sym_AMP_AMP, - ACTIONS(5182), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5184), 1, - anon_sym_GT_GT, - ACTIONS(5188), 1, - anon_sym_AMP, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_PIPE, - ACTIONS(5196), 1, - anon_sym_PERCENT, - ACTIONS(5198), 1, - anon_sym_STAR_STAR, - ACTIONS(5206), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5208), 1, - sym__ternary_qmark, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, + anon_sym_extends, + [63234] = 4, + ACTIONS(4604), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5176), 2, + ACTIONS(4602), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5178), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5186), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5194), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5202), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5204), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5200), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4752), 4, - anon_sym_LBRACE, + anon_sym_GT, + ACTIONS(4606), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_BQUOTE, - anon_sym_implements, - [64679] = 31, - ACTIONS(3967), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3969), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(5174), 1, - anon_sym_LT, - ACTIONS(5180), 1, anon_sym_AMP_AMP, - ACTIONS(5182), 1, anon_sym_PIPE_PIPE, - ACTIONS(5184), 1, - anon_sym_GT_GT, - ACTIONS(5188), 1, - anon_sym_AMP, - ACTIONS(5190), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_PIPE, - ACTIONS(5196), 1, anon_sym_PERCENT, - ACTIONS(5198), 1, anon_sym_STAR_STAR, - ACTIONS(5206), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5208), 1, - sym__ternary_qmark, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5176), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5186), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5194), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5204), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5200), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4754), 4, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [64786] = 31, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, - anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(5174), 1, - anon_sym_LT, - ACTIONS(5180), 1, - anon_sym_AMP_AMP, - ACTIONS(5182), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5184), 1, - anon_sym_GT_GT, - ACTIONS(5188), 1, - anon_sym_AMP, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_PIPE, - ACTIONS(5196), 1, - anon_sym_PERCENT, - ACTIONS(5198), 1, - anon_sym_STAR_STAR, - ACTIONS(5206), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5208), 1, - sym__ternary_qmark, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, + [63287] = 14, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(3722), 1, + anon_sym_override, + ACTIONS(4624), 1, + anon_sym_LBRACK, + ACTIONS(5137), 1, + anon_sym_STAR, + ACTIONS(5139), 1, + anon_sym_async, + ACTIONS(5143), 1, + anon_sym_readonly, + STATE(2797), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5176), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5186), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5194), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5204), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5200), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4523), 4, - anon_sym_LBRACE, + ACTIONS(5141), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5145), 2, + anon_sym_get, + anon_sym_set, + STATE(3071), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 9, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_BQUOTE, - anon_sym_implements, - [64893] = 18, - ACTIONS(3967), 1, + anon_sym_BANG, anon_sym_LPAREN, - ACTIONS(3969), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3700), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + 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, + anon_sym_object, + [63360] = 12, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(5174), 1, + ACTIONS(5137), 1, + anon_sym_STAR, + ACTIONS(5139), 1, + anon_sym_async, + ACTIONS(5149), 1, + anon_sym_abstract, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5145), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5147), 2, + sym_number, + sym_private_property_identifier, + STATE(3083), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 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, - ACTIONS(5184), 1, - anon_sym_GT_GT, - ACTIONS(5196), 1, - anon_sym_PERCENT, - ACTIONS(5198), 1, - anon_sym_STAR_STAR, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(3700), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [63429] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5176), 2, + ACTIONS(4178), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5186), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5194), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4758), 7, anon_sym_BANG, anon_sym_in, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4756), 16, + ACTIONS(4180), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + 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_satisfies, - anon_sym_implements, - [64974] = 13, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, + anon_sym_extends, + [63480] = 12, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4620), 1, + anon_sym_STAR, + ACTIONS(4622), 1, + anon_sym_EQ, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(5198), 1, - anon_sym_STAR_STAR, - ACTIONS(5210), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4074), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4690), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4692), 2, + anon_sym_get, + anon_sym_set, + STATE(3866), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2351), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [63549] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4758), 12, + ACTIONS(2363), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -195322,466 +192315,468 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4756), 19, + ACTIONS(2361), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + 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_satisfies, - anon_sym_implements, - [65045] = 25, - ACTIONS(3967), 1, + anon_sym_extends, + [63600] = 13, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(4620), 1, + anon_sym_STAR, + ACTIONS(4622), 1, + anon_sym_EQ, + ACTIONS(4626), 1, + anon_sym_async, + ACTIONS(4698), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4074), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4628), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4632), 2, + anon_sym_get, + anon_sym_set, + STATE(3144), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 7, + sym__automatic_semicolon, anon_sym_LPAREN, - ACTIONS(3969), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3700), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [63671] = 14, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(3722), 1, + anon_sym_override, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4758), 1, - anon_sym_BANG, - ACTIONS(5174), 1, + ACTIONS(5151), 1, + anon_sym_STAR, + ACTIONS(5153), 1, + anon_sym_async, + ACTIONS(5157), 1, + anon_sym_readonly, + STATE(2809), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5155), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5159), 2, + anon_sym_get, + anon_sym_set, + STATE(3097), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(5184), 1, - anon_sym_GT_GT, - ACTIONS(5188), 1, - anon_sym_AMP, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_PIPE, - ACTIONS(5196), 1, - anon_sym_PERCENT, - ACTIONS(5198), 1, - anon_sym_STAR_STAR, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3700), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + 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, + anon_sym_object, + [63744] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5176), 2, + ACTIONS(4276), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5178), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5186), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5194), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5202), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5204), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5200), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4756), 10, + anon_sym_GT, + ACTIONS(4278), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [65140] = 26, - ACTIONS(3967), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3969), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4758), 1, - anon_sym_BANG, - ACTIONS(5174), 1, - anon_sym_LT, - ACTIONS(5180), 1, anon_sym_AMP_AMP, - ACTIONS(5184), 1, - anon_sym_GT_GT, - ACTIONS(5188), 1, - anon_sym_AMP, - ACTIONS(5190), 1, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_PIPE, - ACTIONS(5196), 1, anon_sym_PERCENT, - ACTIONS(5198), 1, anon_sym_STAR_STAR, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5176), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5186), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5194), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5204), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5200), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4756), 9, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [65237] = 16, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, - anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(5196), 1, - anon_sym_PERCENT, - ACTIONS(5198), 1, - anon_sym_STAR_STAR, - ACTIONS(5210), 1, - anon_sym_LT, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, + anon_sym_extends, + [63795] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5176), 2, + ACTIONS(4280), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5194), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4758), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4756), 18, + ACTIONS(4282), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + 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_satisfies, - anon_sym_implements, - [65314] = 22, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, - anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(5174), 1, - anon_sym_LT, - ACTIONS(5184), 1, - anon_sym_GT_GT, - ACTIONS(5196), 1, - anon_sym_PERCENT, - ACTIONS(5198), 1, - anon_sym_STAR_STAR, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, + anon_sym_extends, + [63846] = 4, + ACTIONS(1696), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5176), 2, + ACTIONS(1694), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5178), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5186), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5194), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5202), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5204), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4758), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5200), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4756), 11, + anon_sym_GT, + ACTIONS(1698), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [65403] = 23, - ACTIONS(3967), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3969), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(5174), 1, - anon_sym_LT, - ACTIONS(5184), 1, - anon_sym_GT_GT, - ACTIONS(5188), 1, - anon_sym_AMP, - ACTIONS(5196), 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(5198), 1, anon_sym_STAR_STAR, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4744), 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, - ACTIONS(4758), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5176), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + [63899] = 19, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(692), 1, + anon_sym_RBRACE, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(2353), 1, + anon_sym_async, + ACTIONS(2355), 1, + anon_sym_readonly, + ACTIONS(2359), 1, + anon_sym_override, + ACTIONS(4622), 1, + anon_sym_EQ, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(4990), 1, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5178), 2, + STATE(2813), 1, + sym_override_modifier, + STATE(4810), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2337), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2357), 2, + anon_sym_get, + anon_sym_set, + STATE(3816), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + 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, + anon_sym_object, + [63982] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4280), 13, + anon_sym_STAR, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5186), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5194), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5202), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5204), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5200), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4756), 11, + anon_sym_GT, + ACTIONS(4282), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [65494] = 24, - ACTIONS(3967), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3969), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(5174), 1, - anon_sym_LT, - ACTIONS(5184), 1, - anon_sym_GT_GT, - ACTIONS(5188), 1, - anon_sym_AMP, - ACTIONS(5190), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5196), 1, anon_sym_PERCENT, - ACTIONS(5198), 1, anon_sym_STAR_STAR, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [64033] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4758), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5176), 2, + ACTIONS(4280), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5178), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5186), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5194), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5202), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5204), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5200), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4756), 10, + anon_sym_GT, + ACTIONS(4282), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [65587] = 15, - ACTIONS(3967), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3969), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(5196), 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(5198), 1, anon_sym_STAR_STAR, - ACTIONS(5210), 1, - anon_sym_LT, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [64084] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5176), 2, + ACTIONS(4284), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4758), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, @@ -195789,61 +192784,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4756), 18, + ACTIONS(4286), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + 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_satisfies, - anon_sym_implements, - [65662] = 16, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, - anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(5198), 1, - anon_sym_STAR_STAR, - ACTIONS(5210), 1, - anon_sym_LT, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, + anon_sym_extends, + [64135] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4758), 11, + ACTIONS(4284), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, @@ -195851,809 +192833,778 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4756), 17, + ACTIONS(4286), 29, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + 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_implements, - [65739] = 20, - ACTIONS(3967), 1, + anon_sym_satisfies, + anon_sym_extends, + [64186] = 8, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, - anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(5174), 1, + ACTIONS(5161), 1, anon_sym_LT, - ACTIONS(5184), 1, - anon_sym_GT_GT, - ACTIONS(5196), 1, - anon_sym_PERCENT, - ACTIONS(5198), 1, - anon_sym_STAR_STAR, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5176), 2, + ACTIONS(4704), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5186), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5194), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5200), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4758), 5, anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4756), 13, + anon_sym_GT, + ACTIONS(4706), 25, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, + 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_satisfies, anon_sym_implements, - [65824] = 27, - ACTIONS(3967), 1, + [64247] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4758), 1, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(5174), 1, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5161), 1, anon_sym_LT, - ACTIONS(5180), 1, + ACTIONS(5167), 1, anon_sym_AMP_AMP, - ACTIONS(5182), 1, + ACTIONS(5169), 1, anon_sym_PIPE_PIPE, - ACTIONS(5184), 1, + ACTIONS(5171), 1, anon_sym_GT_GT, - ACTIONS(5188), 1, + ACTIONS(5175), 1, anon_sym_AMP, - ACTIONS(5190), 1, + ACTIONS(5177), 1, anon_sym_CARET, - ACTIONS(5192), 1, + ACTIONS(5179), 1, anon_sym_PIPE, - ACTIONS(5196), 1, + ACTIONS(5183), 1, anon_sym_PERCENT, - ACTIONS(5198), 1, + ACTIONS(5185), 1, anon_sym_STAR_STAR, - STATE(1580), 1, + ACTIONS(5193), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5195), 1, + sym__ternary_qmark, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5176), 2, + ACTIONS(5163), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5178), 2, + ACTIONS(5165), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5186), 2, + ACTIONS(5173), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5194), 2, + ACTIONS(5181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5202), 2, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5204), 2, + ACTIONS(5191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5200), 3, + ACTIONS(5187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4756), 8, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4468), 4, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - anon_sym_satisfies, anon_sym_implements, - [65923] = 31, - ACTIONS(3967), 1, + [64354] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5174), 1, + ACTIONS(5161), 1, anon_sym_LT, - ACTIONS(5180), 1, + ACTIONS(5167), 1, anon_sym_AMP_AMP, - ACTIONS(5182), 1, + ACTIONS(5169), 1, anon_sym_PIPE_PIPE, - ACTIONS(5184), 1, + ACTIONS(5171), 1, anon_sym_GT_GT, - ACTIONS(5188), 1, + ACTIONS(5175), 1, anon_sym_AMP, - ACTIONS(5190), 1, + ACTIONS(5177), 1, anon_sym_CARET, - ACTIONS(5192), 1, + ACTIONS(5179), 1, anon_sym_PIPE, - ACTIONS(5196), 1, + ACTIONS(5183), 1, anon_sym_PERCENT, - ACTIONS(5198), 1, + ACTIONS(5185), 1, anon_sym_STAR_STAR, - ACTIONS(5206), 1, + ACTIONS(5193), 1, anon_sym_QMARK_QMARK, - ACTIONS(5208), 1, + ACTIONS(5195), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5176), 2, + ACTIONS(5163), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5178), 2, + ACTIONS(5165), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5186), 2, + ACTIONS(5173), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5194), 2, + ACTIONS(5181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5202), 2, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5204), 2, + ACTIONS(5191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5200), 3, + ACTIONS(5187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4541), 4, + ACTIONS(4744), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_BQUOTE, anon_sym_implements, - [66030] = 31, - ACTIONS(3967), 1, + [64461] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5174), 1, + ACTIONS(5161), 1, anon_sym_LT, - ACTIONS(5180), 1, + ACTIONS(5167), 1, anon_sym_AMP_AMP, - ACTIONS(5182), 1, + ACTIONS(5169), 1, anon_sym_PIPE_PIPE, - ACTIONS(5184), 1, + ACTIONS(5171), 1, anon_sym_GT_GT, - ACTIONS(5188), 1, + ACTIONS(5175), 1, anon_sym_AMP, - ACTIONS(5190), 1, + ACTIONS(5177), 1, anon_sym_CARET, - ACTIONS(5192), 1, + ACTIONS(5179), 1, anon_sym_PIPE, - ACTIONS(5196), 1, + ACTIONS(5183), 1, anon_sym_PERCENT, - ACTIONS(5198), 1, + ACTIONS(5185), 1, anon_sym_STAR_STAR, - ACTIONS(5206), 1, + ACTIONS(5193), 1, anon_sym_QMARK_QMARK, - ACTIONS(5208), 1, + ACTIONS(5195), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5176), 2, + ACTIONS(5163), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5178), 2, + ACTIONS(5165), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5186), 2, + ACTIONS(5173), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5194), 2, + ACTIONS(5181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5202), 2, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5204), 2, + ACTIONS(5191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5200), 3, + ACTIONS(5187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4763), 4, + ACTIONS(4756), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_BQUOTE, anon_sym_implements, - [66137] = 31, - ACTIONS(3967), 1, + [64568] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5174), 1, + ACTIONS(5161), 1, anon_sym_LT, - ACTIONS(5180), 1, + ACTIONS(5167), 1, anon_sym_AMP_AMP, - ACTIONS(5182), 1, + ACTIONS(5169), 1, anon_sym_PIPE_PIPE, - ACTIONS(5184), 1, + ACTIONS(5171), 1, anon_sym_GT_GT, - ACTIONS(5188), 1, + ACTIONS(5175), 1, anon_sym_AMP, - ACTIONS(5190), 1, + ACTIONS(5177), 1, anon_sym_CARET, - ACTIONS(5192), 1, + ACTIONS(5179), 1, anon_sym_PIPE, - ACTIONS(5196), 1, + ACTIONS(5183), 1, anon_sym_PERCENT, - ACTIONS(5198), 1, + ACTIONS(5185), 1, anon_sym_STAR_STAR, - ACTIONS(5206), 1, + ACTIONS(5193), 1, anon_sym_QMARK_QMARK, - ACTIONS(5208), 1, + ACTIONS(5195), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5176), 2, + ACTIONS(5163), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5178), 2, + ACTIONS(5165), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5186), 2, + ACTIONS(5173), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5194), 2, + ACTIONS(5181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5202), 2, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5204), 2, + ACTIONS(5191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5200), 3, + ACTIONS(5187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4565), 4, + ACTIONS(4758), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_BQUOTE, anon_sym_implements, - [66244] = 31, - ACTIONS(3967), 1, + [64675] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5174), 1, + ACTIONS(5161), 1, anon_sym_LT, - ACTIONS(5180), 1, + ACTIONS(5167), 1, anon_sym_AMP_AMP, - ACTIONS(5182), 1, + ACTIONS(5169), 1, anon_sym_PIPE_PIPE, - ACTIONS(5184), 1, + ACTIONS(5171), 1, anon_sym_GT_GT, - ACTIONS(5188), 1, + ACTIONS(5175), 1, anon_sym_AMP, - ACTIONS(5190), 1, + ACTIONS(5177), 1, anon_sym_CARET, - ACTIONS(5192), 1, + ACTIONS(5179), 1, anon_sym_PIPE, - ACTIONS(5196), 1, + ACTIONS(5183), 1, anon_sym_PERCENT, - ACTIONS(5198), 1, + ACTIONS(5185), 1, anon_sym_STAR_STAR, - ACTIONS(5206), 1, + ACTIONS(5193), 1, anon_sym_QMARK_QMARK, - ACTIONS(5208), 1, + ACTIONS(5195), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5176), 2, + ACTIONS(5163), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5178), 2, + ACTIONS(5165), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5186), 2, + ACTIONS(5173), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5194), 2, + ACTIONS(5181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5202), 2, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5204), 2, + ACTIONS(5191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5200), 3, + ACTIONS(5187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4573), 4, + ACTIONS(4504), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_BQUOTE, anon_sym_implements, - [66351] = 31, - ACTIONS(3967), 1, + [64782] = 18, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(5174), 1, + ACTIONS(5161), 1, anon_sym_LT, - ACTIONS(5180), 1, - anon_sym_AMP_AMP, - ACTIONS(5182), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5184), 1, + ACTIONS(5171), 1, anon_sym_GT_GT, - ACTIONS(5188), 1, - anon_sym_AMP, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_PIPE, - ACTIONS(5196), 1, + ACTIONS(5183), 1, anon_sym_PERCENT, - ACTIONS(5198), 1, + ACTIONS(5185), 1, anon_sym_STAR_STAR, - ACTIONS(5206), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5208), 1, - sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5176), 2, + ACTIONS(5163), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5186), 2, + ACTIONS(5173), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5194), 2, + ACTIONS(5181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5202), 2, + ACTIONS(4762), 7, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5204), 2, + anon_sym_GT, + ACTIONS(4760), 16, + sym__ternary_qmark, + anon_sym_as, + 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, - ACTIONS(5200), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4577), 4, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_BQUOTE, + anon_sym_satisfies, anon_sym_implements, - [66458] = 31, - ACTIONS(3967), 1, + [64863] = 13, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(5174), 1, - anon_sym_LT, - ACTIONS(5180), 1, - anon_sym_AMP_AMP, - ACTIONS(5182), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5184), 1, - anon_sym_GT_GT, - ACTIONS(5188), 1, - anon_sym_AMP, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_PIPE, - ACTIONS(5196), 1, - anon_sym_PERCENT, - ACTIONS(5198), 1, + ACTIONS(5185), 1, anon_sym_STAR_STAR, - ACTIONS(5206), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5208), 1, - sym__ternary_qmark, - STATE(1580), 1, + ACTIONS(5197), 1, + anon_sym_LT, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5176), 2, + ACTIONS(4762), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5178), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5186), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5194), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5202), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5204), 2, + anon_sym_GT, + ACTIONS(4760), 19, + sym__ternary_qmark, + anon_sym_as, + 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, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5200), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4765), 4, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_BQUOTE, + anon_sym_satisfies, anon_sym_implements, - [66565] = 31, - ACTIONS(3967), 1, + [64934] = 25, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(5174), 1, + ACTIONS(4762), 1, + anon_sym_BANG, + ACTIONS(5161), 1, anon_sym_LT, - ACTIONS(5180), 1, - anon_sym_AMP_AMP, - ACTIONS(5182), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5184), 1, + ACTIONS(5171), 1, anon_sym_GT_GT, - ACTIONS(5188), 1, + ACTIONS(5175), 1, anon_sym_AMP, - ACTIONS(5190), 1, + ACTIONS(5177), 1, anon_sym_CARET, - ACTIONS(5192), 1, + ACTIONS(5179), 1, anon_sym_PIPE, - ACTIONS(5196), 1, + ACTIONS(5183), 1, anon_sym_PERCENT, - ACTIONS(5198), 1, + ACTIONS(5185), 1, anon_sym_STAR_STAR, - ACTIONS(5206), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5208), 1, - sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5176), 2, + ACTIONS(5163), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5178), 2, + ACTIONS(5165), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5186), 2, + ACTIONS(5173), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5194), 2, + ACTIONS(5181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5202), 2, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5204), 2, + ACTIONS(5191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5200), 3, + ACTIONS(5187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4767), 4, + ACTIONS(4760), 10, + sym__ternary_qmark, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, + anon_sym_satisfies, anon_sym_implements, - [66672] = 31, - ACTIONS(3967), 1, + [65029] = 26, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(5174), 1, + ACTIONS(4762), 1, + anon_sym_BANG, + ACTIONS(5161), 1, anon_sym_LT, - ACTIONS(5180), 1, + ACTIONS(5167), 1, anon_sym_AMP_AMP, - ACTIONS(5182), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5184), 1, + ACTIONS(5171), 1, anon_sym_GT_GT, - ACTIONS(5188), 1, + ACTIONS(5175), 1, anon_sym_AMP, - ACTIONS(5190), 1, + ACTIONS(5177), 1, anon_sym_CARET, - ACTIONS(5192), 1, + ACTIONS(5179), 1, anon_sym_PIPE, - ACTIONS(5196), 1, + ACTIONS(5183), 1, anon_sym_PERCENT, - ACTIONS(5198), 1, + ACTIONS(5185), 1, anon_sym_STAR_STAR, - ACTIONS(5206), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5208), 1, - sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5176), 2, + ACTIONS(5163), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5178), 2, + ACTIONS(5165), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5186), 2, + ACTIONS(5173), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5194), 2, + ACTIONS(5181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5202), 2, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5204), 2, + ACTIONS(5191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5200), 3, + ACTIONS(5187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4779), 4, + ACTIONS(4760), 9, + sym__ternary_qmark, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, + anon_sym_satisfies, anon_sym_implements, - [66779] = 12, - ACTIONS(3967), 1, + [65126] = 16, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5213), 1, + ACTIONS(5183), 1, + anon_sym_PERCENT, + ACTIONS(5185), 1, + anon_sym_STAR_STAR, + ACTIONS(5197), 1, anon_sym_LT, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4791), 12, + ACTIONS(5163), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5181), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4762), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4793), 20, + ACTIONS(4760), 18, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -196663,8 +193614,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -196674,164 +193623,241 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [66848] = 15, - ACTIONS(3967), 1, + [65203] = 22, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(5216), 1, + ACTIONS(5161), 1, anon_sym_LT, - STATE(1580), 1, + ACTIONS(5171), 1, + anon_sym_GT_GT, + ACTIONS(5183), 1, + anon_sym_PERCENT, + ACTIONS(5185), 1, + anon_sym_STAR_STAR, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4798), 11, + ACTIONS(5163), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5165), 2, anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT, + ACTIONS(5173), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5181), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4800), 18, + ACTIONS(5191), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4762), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5187), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4760), 11, sym__ternary_qmark, + anon_sym_as, 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, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_BQUOTE, + anon_sym_satisfies, anon_sym_implements, - [66923] = 31, - ACTIONS(3967), 1, + [65292] = 23, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(5174), 1, + ACTIONS(5161), 1, anon_sym_LT, - ACTIONS(5180), 1, - anon_sym_AMP_AMP, - ACTIONS(5182), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5184), 1, + ACTIONS(5171), 1, anon_sym_GT_GT, - ACTIONS(5188), 1, + ACTIONS(5175), 1, anon_sym_AMP, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_PIPE, - ACTIONS(5196), 1, + ACTIONS(5183), 1, anon_sym_PERCENT, - ACTIONS(5198), 1, + ACTIONS(5185), 1, anon_sym_STAR_STAR, - ACTIONS(5206), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5208), 1, - sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5176), 2, + ACTIONS(4762), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5163), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5178), 2, + ACTIONS(5165), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5186), 2, + ACTIONS(5173), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5194), 2, + ACTIONS(5181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5202), 2, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5204), 2, + ACTIONS(5191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5200), 3, + ACTIONS(5187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4805), 4, + ACTIONS(4760), 11, + sym__ternary_qmark, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, + anon_sym_satisfies, anon_sym_implements, - [67030] = 11, - ACTIONS(3967), 1, + [65383] = 24, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5219), 1, + ACTIONS(5161), 1, anon_sym_LT, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, + ACTIONS(5171), 1, + anon_sym_GT_GT, + ACTIONS(5175), 1, + anon_sym_AMP, + ACTIONS(5177), 1, + anon_sym_CARET, + ACTIONS(5183), 1, + anon_sym_PERCENT, + ACTIONS(5185), 1, + anon_sym_STAR_STAR, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4762), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5163), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5165), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5173), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5181), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5189), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5191), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5187), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4760), 10, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [65476] = 15, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(5183), 1, + anon_sym_PERCENT, + ACTIONS(5185), 1, + anon_sym_STAR_STAR, + ACTIONS(5197), 1, + anon_sym_LT, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4781), 12, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5163), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4762), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, @@ -196839,11 +193865,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4783), 22, + ACTIONS(4760), 18, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -196853,539 +193878,845 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_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_satisfies, anon_sym_implements, - [67097] = 4, - ACTIONS(5007), 1, - anon_sym_AMP, + [65551] = 16, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5185), 1, + anon_sym_STAR_STAR, + ACTIONS(5197), 1, + anon_sym_LT, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4159), 12, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4762), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4161), 29, - sym__automatic_semicolon, + ACTIONS(4760), 17, sym__ternary_qmark, - anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - 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_BQUOTE, + anon_sym_implements, + [65628] = 20, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(5161), 1, + anon_sym_LT, + ACTIONS(5171), 1, + anon_sym_GT_GT, + ACTIONS(5183), 1, + anon_sym_PERCENT, + ACTIONS(5185), 1, + anon_sym_STAR_STAR, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(5163), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5165), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5173), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5181), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5187), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4762), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4760), 13, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [67150] = 33, - ACTIONS(3967), 1, + anon_sym_implements, + [65713] = 27, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4704), 1, - anon_sym_LT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4716), 1, + ACTIONS(4762), 1, + anon_sym_BANG, + ACTIONS(5161), 1, + anon_sym_LT, + ACTIONS(5167), 1, anon_sym_AMP_AMP, - ACTIONS(4718), 1, + ACTIONS(5169), 1, anon_sym_PIPE_PIPE, - ACTIONS(4720), 1, + ACTIONS(5171), 1, anon_sym_GT_GT, - ACTIONS(4724), 1, + ACTIONS(5175), 1, anon_sym_AMP, - ACTIONS(4726), 1, + ACTIONS(5177), 1, anon_sym_CARET, - ACTIONS(4728), 1, + ACTIONS(5179), 1, anon_sym_PIPE, - ACTIONS(4732), 1, + ACTIONS(5183), 1, anon_sym_PERCENT, - ACTIONS(4734), 1, + ACTIONS(5185), 1, anon_sym_STAR_STAR, - ACTIONS(4742), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(4748), 1, - sym__ternary_qmark, - ACTIONS(5222), 1, - anon_sym_COMMA, - ACTIONS(5224), 1, - anon_sym_RBRACK, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4579), 1, - aux_sym_array_repeat1, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4706), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5163), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4712), 2, + ACTIONS(5165), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4722), 2, + ACTIONS(5173), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4730), 2, + ACTIONS(5181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4738), 2, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4740), 2, + ACTIONS(5191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4736), 3, + ACTIONS(5187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [67260] = 3, + ACTIONS(4760), 8, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [65812] = 31, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5161), 1, + anon_sym_LT, + ACTIONS(5167), 1, + anon_sym_AMP_AMP, + ACTIONS(5169), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5171), 1, + anon_sym_GT_GT, + ACTIONS(5175), 1, + anon_sym_AMP, + ACTIONS(5177), 1, + anon_sym_CARET, + ACTIONS(5179), 1, + anon_sym_PIPE, + ACTIONS(5183), 1, + anon_sym_PERCENT, + ACTIONS(5185), 1, + anon_sym_STAR_STAR, + ACTIONS(5193), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5195), 1, + sym__ternary_qmark, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4505), 13, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5163), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5165), 2, anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT, + ACTIONS(5173), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5181), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4507), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5191), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5187), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4522), 4, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BQUOTE, + anon_sym_implements, + [65919] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(4012), 1, anon_sym_LBRACK, + ACTIONS(4014), 1, anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5161), 1, + anon_sym_LT, + ACTIONS(5167), 1, anon_sym_AMP_AMP, + ACTIONS(5169), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5171), 1, + anon_sym_GT_GT, + ACTIONS(5175), 1, + anon_sym_AMP, + ACTIONS(5177), 1, anon_sym_CARET, + ACTIONS(5179), 1, + anon_sym_PIPE, + ACTIONS(5183), 1, anon_sym_PERCENT, + ACTIONS(5185), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5193), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [67310] = 4, - ACTIONS(3573), 1, - anon_sym_EQ, + ACTIONS(5195), 1, + sym__ternary_qmark, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3499), 13, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5163), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5165), 2, anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT, + ACTIONS(5173), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5181), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(3503), 27, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5191), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5187), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4767), 4, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BQUOTE, + anon_sym_implements, + [66026] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4012), 1, anon_sym_LBRACK, + ACTIONS(4014), 1, anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5161), 1, + anon_sym_LT, + ACTIONS(5167), 1, anon_sym_AMP_AMP, + ACTIONS(5169), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5171), 1, + anon_sym_GT_GT, + ACTIONS(5175), 1, + anon_sym_AMP, + ACTIONS(5177), 1, anon_sym_CARET, + ACTIONS(5179), 1, + anon_sym_PIPE, + ACTIONS(5183), 1, anon_sym_PERCENT, + ACTIONS(5185), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5193), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [67362] = 3, + ACTIONS(5195), 1, + sym__ternary_qmark, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4489), 13, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5163), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5165), 2, anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT, + ACTIONS(5173), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5181), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4491), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5191), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5187), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4546), 4, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BQUOTE, + anon_sym_implements, + [66133] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(4012), 1, anon_sym_LBRACK, + ACTIONS(4014), 1, anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5161), 1, + anon_sym_LT, + ACTIONS(5167), 1, anon_sym_AMP_AMP, + ACTIONS(5169), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5171), 1, + anon_sym_GT_GT, + ACTIONS(5175), 1, + anon_sym_AMP, + ACTIONS(5177), 1, anon_sym_CARET, + ACTIONS(5179), 1, + anon_sym_PIPE, + ACTIONS(5183), 1, anon_sym_PERCENT, + ACTIONS(5185), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5193), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [67412] = 5, + ACTIONS(5195), 1, + sym__ternary_qmark, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5226), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5228), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3499), 13, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5163), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5165), 2, anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT, + ACTIONS(5173), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5181), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(3503), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5191), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5187), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4554), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_BQUOTE, + anon_sym_implements, + [66240] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, + ACTIONS(4012), 1, anon_sym_LBRACK, + ACTIONS(4014), 1, anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5161), 1, + anon_sym_LT, + ACTIONS(5167), 1, anon_sym_AMP_AMP, + ACTIONS(5169), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5171), 1, + anon_sym_GT_GT, + ACTIONS(5175), 1, + anon_sym_AMP, + ACTIONS(5177), 1, anon_sym_CARET, + ACTIONS(5179), 1, + anon_sym_PIPE, + ACTIONS(5183), 1, anon_sym_PERCENT, + ACTIONS(5185), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5193), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [67466] = 3, + ACTIONS(5195), 1, + sym__ternary_qmark, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3499), 13, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5163), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5165), 2, anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT, + ACTIONS(5173), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5181), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(3503), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5191), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5187), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4558), 4, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BQUOTE, + anon_sym_implements, + [66347] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(4012), 1, anon_sym_LBRACK, + ACTIONS(4014), 1, anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5161), 1, + anon_sym_LT, + ACTIONS(5167), 1, anon_sym_AMP_AMP, + ACTIONS(5169), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5171), 1, + anon_sym_GT_GT, + ACTIONS(5175), 1, + anon_sym_AMP, + ACTIONS(5177), 1, anon_sym_CARET, + ACTIONS(5179), 1, + anon_sym_PIPE, + ACTIONS(5183), 1, anon_sym_PERCENT, + ACTIONS(5185), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5193), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [67516] = 5, - ACTIONS(1923), 1, - sym__automatic_semicolon, + ACTIONS(5195), 1, + sym__ternary_qmark, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1915), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1919), 13, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5163), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5165), 2, anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT, + ACTIONS(5173), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5181), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(1921), 25, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5191), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5187), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4769), 4, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_BQUOTE, + anon_sym_implements, + [66454] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4012), 1, anon_sym_LBRACK, + ACTIONS(4014), 1, anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5161), 1, + anon_sym_LT, + ACTIONS(5167), 1, anon_sym_AMP_AMP, + ACTIONS(5169), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5171), 1, + anon_sym_GT_GT, + ACTIONS(5175), 1, + anon_sym_AMP, + ACTIONS(5177), 1, anon_sym_CARET, + ACTIONS(5179), 1, + anon_sym_PIPE, + ACTIONS(5183), 1, anon_sym_PERCENT, + ACTIONS(5185), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5193), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [67570] = 11, - ACTIONS(1643), 1, - anon_sym_DQUOTE, - ACTIONS(1645), 1, - anon_sym_SQUOTE, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(5230), 1, - anon_sym_STAR, - ACTIONS(5232), 1, - anon_sym_async, + ACTIONS(5195), 1, + sym__ternary_qmark, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5234), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5236), 2, - anon_sym_get, - anon_sym_set, - STATE(3141), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 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(3705), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [67636] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4535), 13, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5163), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5165), 2, anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT, + ACTIONS(5173), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5181), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4537), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5191), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5187), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4771), 4, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BQUOTE, + anon_sym_implements, + [66561] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(4012), 1, anon_sym_LBRACK, + ACTIONS(4014), 1, anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5161), 1, + anon_sym_LT, + ACTIONS(5167), 1, anon_sym_AMP_AMP, + ACTIONS(5169), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5171), 1, + anon_sym_GT_GT, + ACTIONS(5175), 1, + anon_sym_AMP, + ACTIONS(5177), 1, anon_sym_CARET, + ACTIONS(5179), 1, + anon_sym_PIPE, + ACTIONS(5183), 1, anon_sym_PERCENT, + ACTIONS(5185), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5193), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5195), 1, + sym__ternary_qmark, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5163), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5165), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5173), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5181), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5189), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5187), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4773), 4, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_BQUOTE, - anon_sym_satisfies, - [67686] = 3, + anon_sym_implements, + [66668] = 12, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(5200), 1, + anon_sym_LT, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4539), 13, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4778), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197395,22 +194726,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4541), 28, - sym__automatic_semicolon, + ACTIONS(4780), 20, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -197424,134 +194747,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67736] = 10, - ACTIONS(2344), 1, - anon_sym_DQUOTE, - ACTIONS(2346), 1, - anon_sym_SQUOTE, - ACTIONS(4686), 1, - anon_sym_LBRACK, - ACTIONS(5238), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5240), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5242), 2, - anon_sym_get, - anon_sym_set, - STATE(3760), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + anon_sym_implements, + [66737] = 15, + ACTIONS(4010), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2362), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [67800] = 11, - ACTIONS(1643), 1, - anon_sym_DQUOTE, - ACTIONS(1645), 1, - anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(5244), 1, - anon_sym_STAR, - ACTIONS(5246), 1, - anon_sym_async, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5248), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5250), 2, - anon_sym_get, - anon_sym_set, - STATE(3157), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5203), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3705), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [67866] = 6, - ACTIONS(3597), 1, - anon_sym_EQ, - ACTIONS(3603), 1, - anon_sym_QMARK, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3600), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3499), 13, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4634), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, @@ -197559,17 +194788,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3503), 23, + ACTIONS(4638), 18, sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -197583,65 +194808,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - [67922] = 6, - ACTIONS(4463), 1, + anon_sym_implements, + [66812] = 31, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5161), 1, + anon_sym_LT, + ACTIONS(5167), 1, + anon_sym_AMP_AMP, + ACTIONS(5169), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5171), 1, + anon_sym_GT_GT, + ACTIONS(5175), 1, + anon_sym_AMP, + ACTIONS(5177), 1, + anon_sym_CARET, + ACTIONS(5179), 1, + anon_sym_PIPE, + ACTIONS(5183), 1, + anon_sym_PERCENT, + ACTIONS(5185), 1, + anon_sym_STAR_STAR, + ACTIONS(5193), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5195), 1, + sym__ternary_qmark, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4466), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(4459), 10, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5163), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5165), 2, anon_sym_in, - anon_sym_GT_GT, + anon_sym_GT, + ACTIONS(5173), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5181), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4461), 25, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_of, - 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, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5187), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4792), 4, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_BQUOTE, - anon_sym_satisfies, - [67978] = 3, + anon_sym_implements, + [66919] = 11, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(5206), 1, + anon_sym_LT, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4543), 13, + ACTIONS(4785), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197651,22 +194916,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4545), 28, - sym__automatic_semicolon, + ACTIONS(4787), 22, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -197684,11 +194941,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68028] = 3, + anon_sym_implements, + [66986] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1843), 13, + ACTIONS(4300), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197702,7 +194960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1845), 28, + ACTIONS(4302), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -197731,24 +194989,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68078] = 5, + anon_sym_extends, + [67037] = 10, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4622), 1, + anon_sym_EQ, + ACTIONS(4688), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5013), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5015), 3, + ACTIONS(4074), 2, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(4690), 2, + sym_number, + sym_private_property_identifier, + STATE(3866), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2351), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [67101] = 8, + ACTIONS(1696), 1, + anon_sym_EQ, + ACTIONS(4126), 1, + anon_sym_LBRACK, + ACTIONS(4859), 1, anon_sym_COLON, - ACTIONS(3499), 13, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4129), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2373), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(1694), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -197756,11 +195073,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3503), 23, + ACTIONS(1698), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -197780,22 +195096,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68132] = 5, - ACTIONS(1763), 1, - sym__automatic_semicolon, + [67161] = 8, + ACTIONS(4146), 1, + anon_sym_EQ, + ACTIONS(4150), 1, + anon_sym_LBRACK, + ACTIONS(4850), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1755), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1759), 13, + ACTIONS(4153), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4156), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4144), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -197803,13 +195125,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1761), 25, + ACTIONS(4148), 22, sym__ternary_qmark, 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, @@ -197829,83 +195148,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68186] = 3, + [67221] = 10, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(5209), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1853), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(1855), 28, + ACTIONS(5211), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5213), 2, + anon_sym_get, + anon_sym_set, + STATE(3878), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 9, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [67285] = 7, + ACTIONS(1696), 1, + anon_sym_EQ, + ACTIONS(4126), 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_satisfies, - [68236] = 5, - ACTIONS(1777), 1, - sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1769), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1773), 13, + ACTIONS(2373), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4129), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(1694), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(1775), 25, + ACTIONS(1698), 24, + sym__automatic_semicolon, sym__ternary_qmark, 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, @@ -197925,34 +195253,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68290] = 3, + [67343] = 7, + ACTIONS(4146), 1, + anon_sym_EQ, + ACTIONS(4150), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4547), 13, + ACTIONS(4156), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4153), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(4144), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4549), 28, + ACTIONS(4148), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -197972,191 +195304,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68340] = 5, - ACTIONS(1787), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, + [67401] = 9, + ACTIONS(3808), 1, + anon_sym_COMMA, + ACTIONS(3912), 1, + anon_sym_RBRACE, + ACTIONS(4622), 1, + anon_sym_EQ, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1779), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1783), 13, + ACTIONS(1971), 6, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(1785), 25, - sym__ternary_qmark, - 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, - anon_sym_satisfies, - [68394] = 7, - ACTIONS(5252), 1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3814), 7, + sym__automatic_semicolon, anon_sym_LPAREN, - ACTIONS(5255), 1, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(5257), 1, anon_sym_LT, - ACTIONS(5260), 1, anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1969), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [67463] = 9, + ACTIONS(3808), 1, + anon_sym_COMMA, + ACTIONS(3912), 1, + anon_sym_RBRACE, + ACTIONS(4622), 1, + anon_sym_EQ, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4493), 12, + ACTIONS(1975), 6, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4495), 25, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3814), 7, sym__automatic_semicolon, - sym__ternary_qmark, - 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, - anon_sym_satisfies, - [68452] = 3, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1973), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [67525] = 9, + ACTIONS(3808), 1, + anon_sym_COMMA, + ACTIONS(3925), 1, + anon_sym_RBRACE, + ACTIONS(4622), 1, + anon_sym_EQ, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4551), 13, + ACTIONS(1971), 6, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4553), 28, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3814), 7, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - 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_satisfies, - [68502] = 15, - ACTIONS(239), 1, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1969), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [67587] = 9, + ACTIONS(3808), 1, anon_sym_COMMA, - ACTIONS(2344), 1, - anon_sym_DQUOTE, - ACTIONS(2346), 1, - anon_sym_SQUOTE, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(4686), 1, - anon_sym_LBRACK, - ACTIONS(5003), 1, - anon_sym_STAR, - ACTIONS(5074), 1, + ACTIONS(3925), 1, anon_sym_RBRACE, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, + ACTIONS(4622), 1, + anon_sym_EQ, + STATE(4792), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, + ACTIONS(1975), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(2368), 2, - anon_sym_get, - anon_sym_set, - STATE(3799), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 4, + ACTIONS(3814), 7, + sym__automatic_semicolon, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2362), 21, + anon_sym_PIPE_RBRACE, + ACTIONS(1973), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -198166,6 +195502,8 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -198178,131 +195516,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [68576] = 33, - ACTIONS(3967), 1, + [67649] = 33, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4704), 1, - anon_sym_LT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4716), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4869), 1, + anon_sym_COMMA, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4718), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4720), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4724), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4726), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(4728), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4732), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4734), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4742), 1, + ACTIONS(4895), 1, + anon_sym_LT, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(4748), 1, + ACTIONS(4905), 1, sym__ternary_qmark, - ACTIONS(5222), 1, - anon_sym_COMMA, - ACTIONS(5262), 1, - anon_sym_RBRACK, - STATE(1580), 1, + ACTIONS(5215), 1, + anon_sym_RPAREN, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4579), 1, - aux_sym_array_repeat1, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, + STATE(5026), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4706), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4712), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4722), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4730), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4738), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4740), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4736), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [68686] = 16, - ACTIONS(239), 1, + [67759] = 9, + ACTIONS(3808), 1, anon_sym_COMMA, - ACTIONS(2344), 1, - anon_sym_DQUOTE, - ACTIONS(2346), 1, - anon_sym_SQUOTE, - ACTIONS(2364), 1, - anon_sym_async, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(4686), 1, - anon_sym_LBRACK, - ACTIONS(5003), 1, - anon_sym_STAR, - ACTIONS(5074), 1, + ACTIONS(3811), 1, anon_sym_RBRACE, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, + ACTIONS(4622), 1, + anon_sym_EQ, + STATE(4792), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, + ACTIONS(1971), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(2368), 2, - anon_sym_get, - anon_sym_set, - STATE(3799), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 4, + ACTIONS(3814), 7, + sym__automatic_semicolon, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2362), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(1969), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -198315,61 +195646,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [68762] = 6, - ACTIONS(4378), 1, - anon_sym_extends, + [67821] = 9, + ACTIONS(3808), 1, + anon_sym_COMMA, + ACTIONS(3811), 1, + anon_sym_RBRACE, + ACTIONS(4622), 1, + anon_sym_EQ, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4640), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4637), 3, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(3499), 11, + ACTIONS(1975), 6, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(3503), 24, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3814), 7, + sym__automatic_semicolon, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1973), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [67883] = 33, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, anon_sym_AMP_AMP, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4718), 1, + anon_sym_GT_GT, + ACTIONS(4722), 1, + anon_sym_AMP, + ACTIONS(4724), 1, anon_sym_CARET, + ACTIONS(4726), 1, + anon_sym_PIPE, + ACTIONS(4730), 1, anon_sym_PERCENT, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4740), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4742), 1, + sym__ternary_qmark, + ACTIONS(5217), 1, + anon_sym_COMMA, + ACTIONS(5219), 1, + anon_sym_SEMI, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(3792), 1, + aux_sym_sequence_expression_repeat1, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4712), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4720), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4728), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4736), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4734), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [68818] = 3, + [67993] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1803), 13, + ACTIONS(5221), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5223), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3492), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198383,15 +195801,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1805), 28, - sym__automatic_semicolon, + ACTIONS(3496), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -198412,191 +195825,310 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68868] = 33, - ACTIONS(3967), 1, + [68047] = 33, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4879), 1, - anon_sym_COMMA, - ACTIONS(4885), 1, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, - anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(4740), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(4742), 1, sym__ternary_qmark, - ACTIONS(5264), 1, - anon_sym_RPAREN, - STATE(1580), 1, + ACTIONS(5225), 1, + anon_sym_COMMA, + ACTIONS(5227), 1, + anon_sym_RBRACK, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4650), 1, - aux_sym_sequence_expression_repeat1, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, + STATE(4879), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [68978] = 33, - ACTIONS(3967), 1, + [68157] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5229), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5231), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3492), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(3496), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(4879), 1, - anon_sym_COMMA, - ACTIONS(4885), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, - anon_sym_GT_GT, - ACTIONS(4893), 1, - anon_sym_AMP, - ACTIONS(4895), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4897), 1, - anon_sym_PIPE, - ACTIONS(4901), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, - anon_sym_LT, - ACTIONS(4913), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, - sym__ternary_qmark, - ACTIONS(5266), 1, - anon_sym_RPAREN, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4650), 1, - aux_sym_sequence_expression_repeat1, - STATE(4828), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [68211] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(5229), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5231), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3492), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4883), 2, + anon_sym_BANG, anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(3496), 23, + sym__ternary_qmark, + anon_sym_as, + 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, - ACTIONS(4899), 2, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [68265] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5229), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5231), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3492), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + anon_sym_GT, + ACTIONS(3496), 23, + sym__ternary_qmark, + anon_sym_as, + 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, - ACTIONS(4907), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [69088] = 6, - ACTIONS(4167), 1, - anon_sym_extends, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [68319] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4466), 2, + ACTIONS(4288), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4463), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(4290), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(4459), 11, + 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_satisfies, + [68369] = 8, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(5233), 1, + anon_sym_LT, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4704), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4461), 24, + ACTIONS(4706), 24, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -198616,224 +196148,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [69144] = 33, - ACTIONS(3967), 1, + [68429] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4879), 1, - anon_sym_COMMA, - ACTIONS(4885), 1, + ACTIONS(5233), 1, + anon_sym_LT, + ACTIONS(5239), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(5241), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(5243), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(5247), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(5249), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(5251), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(5255), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(5257), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, - anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(5265), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(5267), 1, sym__ternary_qmark, - ACTIONS(5268), 1, - anon_sym_RPAREN, - STATE(1580), 1, + STATE(2019), 1, sym_type_arguments, - STATE(1656), 1, + STATE(2130), 1, sym_arguments, - STATE(4650), 1, - aux_sym_sequence_expression_repeat1, - STATE(4828), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(5235), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(5237), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(5245), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(5253), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(5261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(5263), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4468), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_BQUOTE, + ACTIONS(5259), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69254] = 33, - ACTIONS(3967), 1, + [68535] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4879), 1, - anon_sym_COMMA, - ACTIONS(4885), 1, + ACTIONS(5233), 1, + anon_sym_LT, + ACTIONS(5239), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(5241), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(5243), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(5247), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(5249), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(5251), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(5255), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(5257), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, - anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(5265), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(5267), 1, sym__ternary_qmark, - ACTIONS(5270), 1, - anon_sym_RPAREN, - STATE(1580), 1, + STATE(2019), 1, sym_type_arguments, - STATE(1656), 1, + STATE(2130), 1, sym_arguments, - STATE(4650), 1, - aux_sym_sequence_expression_repeat1, - STATE(4828), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(5235), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(5237), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(5245), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(5253), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(5261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(5263), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4744), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_BQUOTE, + ACTIONS(5259), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69364] = 15, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(2344), 1, - anon_sym_DQUOTE, - ACTIONS(2346), 1, - anon_sym_SQUOTE, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(4686), 1, - anon_sym_LBRACK, - ACTIONS(5003), 1, - anon_sym_STAR, - ACTIONS(5076), 1, - anon_sym_RBRACE, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2348), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2368), 2, - anon_sym_get, - anon_sym_set, - STATE(3799), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2362), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [69438] = 3, + [68641] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4509), 13, + ACTIONS(4536), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198847,7 +196316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4511), 28, + ACTIONS(4538), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -198876,107 +196345,199 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [69488] = 16, - ACTIONS(239), 1, + [68691] = 31, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, + anon_sym_AMP_AMP, + ACTIONS(4716), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4718), 1, + anon_sym_GT_GT, + ACTIONS(4722), 1, + anon_sym_AMP, + ACTIONS(4724), 1, + anon_sym_CARET, + ACTIONS(4726), 1, + anon_sym_PIPE, + ACTIONS(4730), 1, + anon_sym_PERCENT, + ACTIONS(4732), 1, + anon_sym_STAR_STAR, + ACTIONS(4740), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4742), 1, + sym__ternary_qmark, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4712), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4720), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4728), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4736), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4738), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4734), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5269), 3, anon_sym_COMMA, - ACTIONS(2344), 1, + anon_sym_RBRACE, + anon_sym_RBRACK, + [68797] = 31, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, + anon_sym_LBRACK, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4798), 1, + anon_sym_as, + ACTIONS(4800), 1, + anon_sym_BANG, + ACTIONS(4836), 1, + anon_sym_satisfies, + ACTIONS(5233), 1, + anon_sym_LT, + ACTIONS(5239), 1, + anon_sym_AMP_AMP, + ACTIONS(5241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5243), 1, + anon_sym_GT_GT, + ACTIONS(5247), 1, + anon_sym_AMP, + ACTIONS(5249), 1, + anon_sym_CARET, + ACTIONS(5251), 1, + anon_sym_PIPE, + ACTIONS(5255), 1, + anon_sym_PERCENT, + ACTIONS(5257), 1, + anon_sym_STAR_STAR, + ACTIONS(5265), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5267), 1, + sym__ternary_qmark, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5235), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5237), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5245), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5253), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5261), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5263), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4756), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_BQUOTE, + ACTIONS(5259), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [68903] = 11, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(2364), 1, - anon_sym_async, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(4686), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(5003), 1, + ACTIONS(5271), 1, anon_sym_STAR, - ACTIONS(5076), 1, - anon_sym_RBRACE, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, - aux_sym_object_repeat1, + ACTIONS(5273), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, + ACTIONS(5275), 2, sym_number, sym_private_property_identifier, - ACTIONS(2368), 2, + ACTIONS(5277), 2, anon_sym_get, anon_sym_set, - STATE(3799), 3, + STATE(3057), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2362), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [69564] = 9, - ACTIONS(3813), 1, - anon_sym_COMMA, - ACTIONS(3865), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, - anon_sym_EQ, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1986), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3819), 7, + ACTIONS(3814), 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(1984), 23, + ACTIONS(3700), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -198989,36 +196550,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [69626] = 9, - ACTIONS(3813), 1, - anon_sym_COMMA, - ACTIONS(3865), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, - anon_sym_EQ, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, - aux_sym_object_repeat1, + [68969] = 10, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(5066), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1990), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5279), 2, sym_number, sym_private_property_identifier, - ACTIONS(3819), 7, + ACTIONS(5281), 2, + anon_sym_get, + anon_sym_set, + STATE(3863), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 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(1988), 23, + ACTIONS(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -199028,8 +196592,6 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -199042,1174 +196604,860 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [69688] = 33, - ACTIONS(3967), 1, + [69033] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4879), 1, - anon_sym_COMMA, - ACTIONS(4885), 1, + ACTIONS(5233), 1, + anon_sym_LT, + ACTIONS(5239), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(5241), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(5243), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(5247), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(5249), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(5251), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(5255), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(5257), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, - anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(5265), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(5267), 1, sym__ternary_qmark, - ACTIONS(5272), 1, - anon_sym_RPAREN, - STATE(1580), 1, + STATE(2019), 1, sym_type_arguments, - STATE(1656), 1, + STATE(2130), 1, sym_arguments, - STATE(4650), 1, - aux_sym_sequence_expression_repeat1, - STATE(4828), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(5235), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(5237), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(5245), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(5253), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(5261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(5263), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4758), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_BQUOTE, + ACTIONS(5259), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69798] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4513), 13, - anon_sym_STAR, + [69139] = 31, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, + anon_sym_LBRACK, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4798), 1, + anon_sym_as, + ACTIONS(4800), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(4836), 1, + anon_sym_satisfies, + ACTIONS(5233), 1, + anon_sym_LT, + ACTIONS(5239), 1, + anon_sym_AMP_AMP, + ACTIONS(5241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5243), 1, anon_sym_GT_GT, + ACTIONS(5247), 1, anon_sym_AMP, + ACTIONS(5249), 1, + anon_sym_CARET, + ACTIONS(5251), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4515), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - 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, + ACTIONS(5255), 1, anon_sym_PERCENT, + ACTIONS(5257), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5265), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [69848] = 4, + ACTIONS(5267), 1, + sym__ternary_qmark, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4213), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4127), 13, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5235), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5237), 2, anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT, + ACTIONS(5245), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5253), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4129), 25, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5263), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4504), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_BQUOTE, + ACTIONS(5259), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [69245] = 18, + ACTIONS(4588), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(4590), 1, anon_sym_LBRACK, + ACTIONS(4592), 1, anon_sym_DOT, + ACTIONS(4642), 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, + ACTIONS(5233), 1, + anon_sym_LT, + ACTIONS(5243), 1, + anon_sym_GT_GT, + ACTIONS(5255), 1, anon_sym_PERCENT, + ACTIONS(5257), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [69900] = 4, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4131), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4127), 13, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5235), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5245), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5253), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4762), 7, anon_sym_BANG, anon_sym_in, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4129), 25, + ACTIONS(4760), 15, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, - 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, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_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_satisfies, - [69952] = 21, - ACTIONS(233), 1, - anon_sym_STAR, - ACTIONS(2026), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2344), 1, - anon_sym_DQUOTE, - ACTIONS(2346), 1, - anon_sym_SQUOTE, - ACTIONS(4686), 1, - anon_sym_LBRACK, - ACTIONS(5276), 1, - anon_sym_COMMA, - ACTIONS(5278), 1, - anon_sym_RBRACE, - ACTIONS(5280), 1, - anon_sym_async, - ACTIONS(5284), 1, - anon_sym_static, - ACTIONS(5286), 1, - anon_sym_readonly, - ACTIONS(5292), 1, - anon_sym_override, - STATE(2785), 1, - sym_accessibility_modifier, - STATE(2801), 1, - sym_override_modifier, - STATE(4900), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5282), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5288), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5290), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3528), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4899), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(5274), 14, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [70038] = 9, - ACTIONS(3813), 1, - anon_sym_COMMA, - ACTIONS(3816), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, - anon_sym_EQ, - STATE(4823), 1, - aux_sym_object_repeat1, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1986), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3819), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1984), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [70100] = 9, - ACTIONS(3813), 1, + [69325] = 33, + ACTIONS(1977), 1, anon_sym_COMMA, - ACTIONS(3816), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, - anon_sym_EQ, - STATE(4823), 1, - aux_sym_object_repeat1, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1990), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3819), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1988), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [70162] = 33, - ACTIONS(3967), 1, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4879), 1, - anon_sym_COMMA, - ACTIONS(4885), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(4905), 1, sym__ternary_qmark, - ACTIONS(5294), 1, + ACTIONS(5283), 1, anon_sym_RPAREN, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4650), 1, - aux_sym_sequence_expression_repeat1, - STATE(4828), 1, + STATE(4647), 1, + aux_sym_array_repeat1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [70272] = 8, - ACTIONS(1709), 1, - anon_sym_EQ, - ACTIONS(4390), 1, + [69435] = 13, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4870), 1, - anon_sym_COLON, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(5257), 1, + anon_sym_STAR_STAR, + ACTIONS(5285), 1, + anon_sym_LT, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4393), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2376), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(1707), 11, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4762), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1711), 22, + ACTIONS(4760), 18, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - 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_satisfies, - [70332] = 8, - ACTIONS(4445), 1, - anon_sym_EQ, - ACTIONS(4449), 1, + [69505] = 33, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4864), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4452), 2, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, + anon_sym_AMP_AMP, + ACTIONS(4716), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4718), 1, + anon_sym_GT_GT, + ACTIONS(4722), 1, anon_sym_AMP, + ACTIONS(4724), 1, + anon_sym_CARET, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(4149), 3, + ACTIONS(4730), 1, + anon_sym_PERCENT, + ACTIONS(4732), 1, + anon_sym_STAR_STAR, + ACTIONS(4740), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4742), 1, + sym__ternary_qmark, + ACTIONS(5217), 1, anon_sym_COMMA, + ACTIONS(5288), 1, anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4443), 11, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(3792), 1, + aux_sym_sequence_expression_repeat1, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4712), 2, anon_sym_in, - anon_sym_GT_GT, + anon_sym_GT, + ACTIONS(4720), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4447), 22, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4738), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4734), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [69615] = 25, + ACTIONS(4588), 1, anon_sym_LPAREN, + ACTIONS(4590), 1, + anon_sym_LBRACK, + ACTIONS(4592), 1, anon_sym_DOT, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4762), 1, + anon_sym_BANG, + ACTIONS(5233), 1, + anon_sym_LT, + ACTIONS(5243), 1, + anon_sym_GT_GT, + ACTIONS(5247), 1, + anon_sym_AMP, + ACTIONS(5249), 1, anon_sym_CARET, + ACTIONS(5251), 1, + anon_sym_PIPE, + ACTIONS(5255), 1, anon_sym_PERCENT, + ACTIONS(5257), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [70392] = 7, - ACTIONS(1709), 1, - anon_sym_EQ, - ACTIONS(4390), 1, - anon_sym_LBRACK, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2376), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4393), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(1707), 10, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5235), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5237), 2, anon_sym_in, - anon_sym_GT_GT, + anon_sym_GT, + ACTIONS(5245), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5253), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1711), 24, + ACTIONS(5263), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5259), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4760), 9, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [69709] = 26, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, + anon_sym_LBRACK, + ACTIONS(4592), 1, anon_sym_DOT, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, + ACTIONS(4762), 1, + anon_sym_BANG, + ACTIONS(5233), 1, + anon_sym_LT, + ACTIONS(5239), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5243), 1, + anon_sym_GT_GT, + ACTIONS(5247), 1, + anon_sym_AMP, + ACTIONS(5249), 1, anon_sym_CARET, + ACTIONS(5251), 1, + anon_sym_PIPE, + ACTIONS(5255), 1, anon_sym_PERCENT, + ACTIONS(5257), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5235), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5237), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5245), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5253), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5261), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5263), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5259), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4760), 8, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [70450] = 7, - ACTIONS(4445), 1, - anon_sym_EQ, - ACTIONS(4449), 1, + [69805] = 16, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, anon_sym_LBRACK, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(5255), 1, + anon_sym_PERCENT, + ACTIONS(5257), 1, + anon_sym_STAR_STAR, + ACTIONS(5285), 1, + anon_sym_LT, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4149), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4452), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(4443), 10, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5235), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5253), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4762), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4447), 24, + anon_sym_GT, + ACTIONS(4760), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - 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, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_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_satisfies, - [70508] = 9, - ACTIONS(3813), 1, - anon_sym_COMMA, - ACTIONS(3862), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, - anon_sym_EQ, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1986), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3819), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1984), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [70570] = 9, - ACTIONS(3813), 1, - anon_sym_COMMA, - ACTIONS(3862), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, - anon_sym_EQ, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1990), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3819), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1988), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [70632] = 9, - ACTIONS(3813), 1, - anon_sym_COMMA, - ACTIONS(3938), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, - anon_sym_EQ, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1986), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3819), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1984), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [70694] = 9, - ACTIONS(3813), 1, - anon_sym_COMMA, - ACTIONS(3938), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, - anon_sym_EQ, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1990), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3819), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1988), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [70756] = 9, - ACTIONS(3813), 1, - anon_sym_COMMA, - ACTIONS(3847), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, - anon_sym_EQ, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1986), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3819), 7, - sym__automatic_semicolon, + [69881] = 22, + ACTIONS(4588), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1984), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [70818] = 9, - ACTIONS(3813), 1, - anon_sym_COMMA, - ACTIONS(3847), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, - anon_sym_EQ, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1990), 6, - anon_sym_STAR, + ACTIONS(4590), 1, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3819), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(5233), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1988), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [70880] = 3, + ACTIONS(5243), 1, + anon_sym_GT_GT, + ACTIONS(5255), 1, + anon_sym_PERCENT, + ACTIONS(5257), 1, + anon_sym_STAR_STAR, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1883), 13, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5235), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5237), 2, anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT, + ACTIONS(5245), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5253), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(1885), 28, + ACTIONS(5263), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4762), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5259), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4760), 10, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - 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_satisfies, - [70930] = 31, - ACTIONS(4627), 1, + [69969] = 23, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, - anon_sym_as, - ACTIONS(4811), 1, - anon_sym_BANG, - ACTIONS(4815), 1, - anon_sym_AMP_AMP, - ACTIONS(4817), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4819), 1, + ACTIONS(5233), 1, + anon_sym_LT, + ACTIONS(5243), 1, anon_sym_GT_GT, - ACTIONS(4823), 1, + ACTIONS(5247), 1, anon_sym_AMP, - ACTIONS(4825), 1, - anon_sym_CARET, - ACTIONS(4827), 1, - anon_sym_PIPE, - ACTIONS(4831), 1, + ACTIONS(5255), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, + ACTIONS(5257), 1, anon_sym_STAR_STAR, - ACTIONS(4835), 1, - anon_sym_LT, - ACTIONS(4843), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4847), 1, - anon_sym_satisfies, - ACTIONS(4849), 1, - sym__ternary_qmark, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2189), 1, + STATE(2130), 1, sym_arguments, - STATE(4602), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4807), 2, + ACTIONS(4762), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5235), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4813), 2, + ACTIONS(5237), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4821), 2, + ACTIONS(5245), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4829), 2, + ACTIONS(5253), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4839), 2, + ACTIONS(5261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4841), 2, + ACTIONS(5263), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4837), 3, + ACTIONS(5259), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5026), 3, + ACTIONS(4760), 10, sym__automatic_semicolon, - anon_sym_COMMA, + sym__ternary_qmark, + anon_sym_as, anon_sym_SEMI, - [71036] = 4, - ACTIONS(5296), 1, - sym_regex_flags, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [70059] = 24, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, + anon_sym_LBRACK, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(5233), 1, + anon_sym_LT, + ACTIONS(5243), 1, + anon_sym_GT_GT, + ACTIONS(5247), 1, + anon_sym_AMP, + ACTIONS(5249), 1, + anon_sym_CARET, + ACTIONS(5255), 1, + anon_sym_PERCENT, + ACTIONS(5257), 1, + anon_sym_STAR_STAR, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4917), 16, - anon_sym_STAR, - anon_sym_as, + ACTIONS(4762), 2, anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, anon_sym_PIPE, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5235), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5237), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5245), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5253), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, + ACTIONS(5263), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5259), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_instanceof, - anon_sym_satisfies, - ACTIONS(4919), 24, + ACTIONS(4760), 9, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_as, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [70151] = 15, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, anon_sym_LBRACK, + ACTIONS(4592), 1, anon_sym_DOT, + ACTIONS(4642), 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, + ACTIONS(5255), 1, anon_sym_PERCENT, + ACTIONS(5257), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [71088] = 3, + ACTIONS(5285), 1, + anon_sym_LT, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4459), 13, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5235), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4762), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, @@ -200217,47 +197465,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4461), 28, + ACTIONS(4760), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - 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_satisfies, - [71138] = 3, + [70225] = 16, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, + anon_sym_LBRACK, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4798), 1, + anon_sym_as, + ACTIONS(4800), 1, + anon_sym_BANG, + ACTIONS(4836), 1, + anon_sym_satisfies, + ACTIONS(5257), 1, + anon_sym_STAR_STAR, + ACTIONS(5285), 1, + anon_sym_LT, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4493), 13, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4762), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, @@ -200265,139 +197526,336 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4495), 28, + ACTIONS(4760), 16, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - 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_satisfies, - [71188] = 33, - ACTIONS(3967), 1, + [70301] = 20, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4704), 1, - anon_sym_LT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4716), 1, - anon_sym_AMP_AMP, - ACTIONS(4718), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4720), 1, + ACTIONS(5233), 1, + anon_sym_LT, + ACTIONS(5243), 1, anon_sym_GT_GT, - ACTIONS(4724), 1, - anon_sym_AMP, - ACTIONS(4726), 1, - anon_sym_CARET, - ACTIONS(4728), 1, - anon_sym_PIPE, - ACTIONS(4732), 1, + ACTIONS(5255), 1, anon_sym_PERCENT, - ACTIONS(4734), 1, + ACTIONS(5257), 1, anon_sym_STAR_STAR, - ACTIONS(4742), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(4748), 1, - sym__ternary_qmark, - ACTIONS(5298), 1, - anon_sym_COMMA, - ACTIONS(5300), 1, - anon_sym_SEMI, - STATE(1580), 1, + STATE(2019), 1, sym_type_arguments, - STATE(1656), 1, + STATE(2130), 1, sym_arguments, - STATE(3772), 1, - aux_sym_sequence_expression_repeat1, - STATE(4828), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4706), 2, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5235), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4712), 2, + ACTIONS(5237), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4722), 2, + ACTIONS(5245), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4730), 2, + ACTIONS(5253), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4738), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4740), 2, + ACTIONS(5259), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4762), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4760), 12, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4744), 2, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [70385] = 27, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, + anon_sym_LBRACK, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4762), 1, + anon_sym_BANG, + ACTIONS(5233), 1, + anon_sym_LT, + ACTIONS(5239), 1, + anon_sym_AMP_AMP, + ACTIONS(5241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5243), 1, + anon_sym_GT_GT, + ACTIONS(5247), 1, + anon_sym_AMP, + ACTIONS(5249), 1, + anon_sym_CARET, + ACTIONS(5251), 1, + anon_sym_PIPE, + ACTIONS(5255), 1, + anon_sym_PERCENT, + ACTIONS(5257), 1, + anon_sym_STAR_STAR, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5235), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5237), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5245), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5253), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5261), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5263), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5259), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4760), 7, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [70483] = 31, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, + anon_sym_LBRACK, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4798), 1, + anon_sym_as, + ACTIONS(4800), 1, + anon_sym_BANG, + ACTIONS(4836), 1, + anon_sym_satisfies, + ACTIONS(5233), 1, + anon_sym_LT, + ACTIONS(5239), 1, + anon_sym_AMP_AMP, + ACTIONS(5241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5243), 1, + anon_sym_GT_GT, + ACTIONS(5247), 1, + anon_sym_AMP, + ACTIONS(5249), 1, + anon_sym_CARET, + ACTIONS(5251), 1, + anon_sym_PIPE, + ACTIONS(5255), 1, + anon_sym_PERCENT, + ACTIONS(5257), 1, + anon_sym_STAR_STAR, + ACTIONS(5265), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5267), 1, + sym__ternary_qmark, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5235), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5237), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5245), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5253), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5261), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5263), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4522), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_BQUOTE, + ACTIONS(5259), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [70589] = 31, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, + anon_sym_LBRACK, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4798), 1, + anon_sym_as, + ACTIONS(4800), 1, + anon_sym_BANG, + ACTIONS(4836), 1, + anon_sym_satisfies, + ACTIONS(5233), 1, + anon_sym_LT, + ACTIONS(5239), 1, + anon_sym_AMP_AMP, + ACTIONS(5241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5243), 1, + anon_sym_GT_GT, + ACTIONS(5247), 1, + anon_sym_AMP, + ACTIONS(5249), 1, + anon_sym_CARET, + ACTIONS(5251), 1, + anon_sym_PIPE, + ACTIONS(5255), 1, + anon_sym_PERCENT, + ACTIONS(5257), 1, + anon_sym_STAR_STAR, + ACTIONS(5265), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5267), 1, + sym__ternary_qmark, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4736), 3, + ACTIONS(5235), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5237), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5245), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5253), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5261), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5263), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4767), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_BQUOTE, + ACTIONS(5259), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [71298] = 10, - ACTIONS(2344), 1, + [70695] = 11, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(5302), 1, + ACTIONS(5066), 1, anon_sym_STAR, + ACTIONS(5068), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5304), 2, + ACTIONS(5070), 2, sym_number, sym_private_property_identifier, - ACTIONS(5306), 2, + ACTIONS(5074), 2, anon_sym_get, anon_sym_set, - STATE(3821), 3, + STATE(3064), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 9, + ACTIONS(3814), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -200407,12 +197865,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2362), 21, + ACTIONS(3700), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -200429,240 +197886,391 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [71362] = 3, + [70761] = 31, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, + anon_sym_LBRACK, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4798), 1, + anon_sym_as, + ACTIONS(4800), 1, + anon_sym_BANG, + ACTIONS(4836), 1, + anon_sym_satisfies, + ACTIONS(5233), 1, + anon_sym_LT, + ACTIONS(5239), 1, + anon_sym_AMP_AMP, + ACTIONS(5241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5243), 1, + anon_sym_GT_GT, + ACTIONS(5247), 1, + anon_sym_AMP, + ACTIONS(5249), 1, + anon_sym_CARET, + ACTIONS(5251), 1, + anon_sym_PIPE, + ACTIONS(5255), 1, + anon_sym_PERCENT, + ACTIONS(5257), 1, + anon_sym_STAR_STAR, + ACTIONS(5265), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5267), 1, + sym__ternary_qmark, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4473), 13, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5235), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5237), 2, anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT, + ACTIONS(5245), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5253), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4475), 28, + ACTIONS(5263), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4546), 3, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - 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_BQUOTE, + ACTIONS(5259), 3, anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [71412] = 33, - ACTIONS(3967), 1, + [70867] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4704), 1, - anon_sym_LT, - ACTIONS(4708), 1, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4716), 1, + ACTIONS(4836), 1, + anon_sym_satisfies, + ACTIONS(5233), 1, + anon_sym_LT, + ACTIONS(5239), 1, anon_sym_AMP_AMP, - ACTIONS(4718), 1, + ACTIONS(5241), 1, anon_sym_PIPE_PIPE, - ACTIONS(4720), 1, + ACTIONS(5243), 1, anon_sym_GT_GT, - ACTIONS(4724), 1, + ACTIONS(5247), 1, anon_sym_AMP, - ACTIONS(4726), 1, + ACTIONS(5249), 1, anon_sym_CARET, - ACTIONS(4728), 1, + ACTIONS(5251), 1, anon_sym_PIPE, - ACTIONS(4732), 1, + ACTIONS(5255), 1, anon_sym_PERCENT, - ACTIONS(4734), 1, + ACTIONS(5257), 1, anon_sym_STAR_STAR, - ACTIONS(4742), 1, + ACTIONS(5265), 1, anon_sym_QMARK_QMARK, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(4748), 1, + ACTIONS(5267), 1, sym__ternary_qmark, - ACTIONS(5222), 1, - anon_sym_COMMA, - ACTIONS(5308), 1, - anon_sym_RBRACK, - STATE(1580), 1, + STATE(2019), 1, sym_type_arguments, - STATE(1656), 1, + STATE(2130), 1, sym_arguments, - STATE(4828), 1, + STATE(4524), 1, sym_optional_chain, - STATE(5004), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4706), 2, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5235), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4712), 2, + ACTIONS(5237), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4722), 2, + ACTIONS(5245), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4730), 2, + ACTIONS(5253), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4738), 2, + ACTIONS(5261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4740), 2, + ACTIONS(5263), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4736), 3, + ACTIONS(4554), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_BQUOTE, + ACTIONS(5259), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [71522] = 5, + [70973] = 31, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, + anon_sym_LBRACK, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4798), 1, + anon_sym_as, + ACTIONS(4800), 1, + anon_sym_BANG, + ACTIONS(4836), 1, + anon_sym_satisfies, + ACTIONS(5233), 1, + anon_sym_LT, + ACTIONS(5239), 1, + anon_sym_AMP_AMP, + ACTIONS(5241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5243), 1, + anon_sym_GT_GT, + ACTIONS(5247), 1, + anon_sym_AMP, + ACTIONS(5249), 1, + anon_sym_CARET, + ACTIONS(5251), 1, + anon_sym_PIPE, + ACTIONS(5255), 1, + anon_sym_PERCENT, + ACTIONS(5257), 1, + anon_sym_STAR_STAR, + ACTIONS(5265), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5267), 1, + sym__ternary_qmark, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5310), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5312), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3499), 13, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5235), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5237), 2, anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT, + ACTIONS(5245), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5253), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(3503), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5263), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4558), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_BQUOTE, + ACTIONS(5259), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [71079] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, + ACTIONS(4590), 1, anon_sym_LBRACK, + ACTIONS(4592), 1, anon_sym_DOT, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, + ACTIONS(4798), 1, + anon_sym_as, + ACTIONS(4800), 1, + anon_sym_BANG, + ACTIONS(4836), 1, + anon_sym_satisfies, + ACTIONS(5233), 1, + anon_sym_LT, + ACTIONS(5239), 1, anon_sym_AMP_AMP, + ACTIONS(5241), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5243), 1, + anon_sym_GT_GT, + ACTIONS(5247), 1, + anon_sym_AMP, + ACTIONS(5249), 1, anon_sym_CARET, + ACTIONS(5251), 1, + anon_sym_PIPE, + ACTIONS(5255), 1, anon_sym_PERCENT, + ACTIONS(5257), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5265), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [71576] = 5, + ACTIONS(5267), 1, + sym__ternary_qmark, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5314), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5316), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3499), 13, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5235), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5237), 2, anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT, + ACTIONS(5245), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5253), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(3503), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5263), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4769), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_BQUOTE, + ACTIONS(5259), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [71185] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, + ACTIONS(4590), 1, anon_sym_LBRACK, + ACTIONS(4592), 1, anon_sym_DOT, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, + ACTIONS(4798), 1, + anon_sym_as, + ACTIONS(4800), 1, + anon_sym_BANG, + ACTIONS(4836), 1, + anon_sym_satisfies, + ACTIONS(5233), 1, + anon_sym_LT, + ACTIONS(5239), 1, anon_sym_AMP_AMP, + ACTIONS(5241), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5243), 1, + anon_sym_GT_GT, + ACTIONS(5247), 1, + anon_sym_AMP, + ACTIONS(5249), 1, anon_sym_CARET, + ACTIONS(5251), 1, + anon_sym_PIPE, + ACTIONS(5255), 1, anon_sym_PERCENT, + ACTIONS(5257), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5265), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5267), 1, + sym__ternary_qmark, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(5235), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5237), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5245), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5253), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5261), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5263), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4771), 3, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_BQUOTE, - anon_sym_satisfies, - [71630] = 5, + ACTIONS(5259), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [71291] = 5, + ACTIONS(1766), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5314), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5316), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3499), 13, + ACTIONS(1758), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1762), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -200676,10 +198284,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3503), 23, + ACTIONS(1764), 25, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -200700,21 +198310,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [71684] = 8, - ACTIONS(4627), 1, - anon_sym_LPAREN, - ACTIONS(5318), 1, - anon_sym_LT, - STATE(2027), 1, - sym_type_arguments, - STATE(2189), 1, - sym_arguments, - STATE(4602), 1, - sym_optional_chain, + [71345] = 5, + ACTIONS(1798), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4700), 12, + ACTIONS(1790), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1794), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -200724,13 +198329,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4702), 24, - sym__automatic_semicolon, + ACTIONS(1796), 25, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -200752,18 +198359,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [71744] = 5, + [71399] = 5, + ACTIONS(1778), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5314), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5316), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3499), 13, + ACTIONS(1770), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1774), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -200777,10 +198382,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3503), 23, + ACTIONS(1776), 25, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -200801,236 +198408,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [71798] = 31, - ACTIONS(4627), 1, + [71453] = 33, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4847), 1, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5318), 1, + ACTIONS(4708), 1, anon_sym_LT, - ACTIONS(5324), 1, + ACTIONS(4714), 1, anon_sym_AMP_AMP, - ACTIONS(5326), 1, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - ACTIONS(5328), 1, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(5332), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(5334), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(5336), 1, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(5340), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(5342), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(5350), 1, + ACTIONS(4740), 1, anon_sym_QMARK_QMARK, - ACTIONS(5352), 1, + ACTIONS(4742), 1, sym__ternary_qmark, - STATE(2027), 1, + ACTIONS(5217), 1, + anon_sym_COMMA, + ACTIONS(5290), 1, + anon_sym_RBRACK, + STATE(1633), 1, sym_type_arguments, - STATE(2189), 1, + STATE(1655), 1, sym_arguments, - STATE(4602), 1, + STATE(3792), 1, + aux_sym_sequence_expression_repeat1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5320), 2, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5322), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5330), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5338), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5346), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5348), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4483), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5344), 3, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [71904] = 31, - ACTIONS(4627), 1, + [71563] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4847), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(5318), 1, + ACTIONS(5233), 1, anon_sym_LT, - ACTIONS(5324), 1, + ACTIONS(5239), 1, anon_sym_AMP_AMP, - ACTIONS(5326), 1, + ACTIONS(5241), 1, anon_sym_PIPE_PIPE, - ACTIONS(5328), 1, + ACTIONS(5243), 1, anon_sym_GT_GT, - ACTIONS(5332), 1, + ACTIONS(5247), 1, anon_sym_AMP, - ACTIONS(5334), 1, + ACTIONS(5249), 1, anon_sym_CARET, - ACTIONS(5336), 1, + ACTIONS(5251), 1, anon_sym_PIPE, - ACTIONS(5340), 1, + ACTIONS(5255), 1, anon_sym_PERCENT, - ACTIONS(5342), 1, + ACTIONS(5257), 1, anon_sym_STAR_STAR, - ACTIONS(5350), 1, + ACTIONS(5265), 1, anon_sym_QMARK_QMARK, - ACTIONS(5352), 1, + ACTIONS(5267), 1, sym__ternary_qmark, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2189), 1, + STATE(2130), 1, sym_arguments, - STATE(4602), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5320), 2, + ACTIONS(5235), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5322), 2, + ACTIONS(5237), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5330), 2, + ACTIONS(5245), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5338), 2, + ACTIONS(5253), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5346), 2, + ACTIONS(5261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5348), 2, + ACTIONS(5263), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4750), 3, + ACTIONS(4773), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_BQUOTE, - ACTIONS(5344), 3, + ACTIONS(5259), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [72010] = 31, - ACTIONS(4627), 1, - anon_sym_LPAREN, - ACTIONS(4629), 1, - anon_sym_LBRACK, - ACTIONS(4631), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4809), 1, - anon_sym_as, - ACTIONS(4811), 1, - anon_sym_BANG, - ACTIONS(4847), 1, - anon_sym_satisfies, - ACTIONS(5318), 1, - anon_sym_LT, - ACTIONS(5324), 1, - anon_sym_AMP_AMP, - ACTIONS(5326), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5328), 1, - anon_sym_GT_GT, - ACTIONS(5332), 1, - anon_sym_AMP, - ACTIONS(5334), 1, - anon_sym_CARET, - ACTIONS(5336), 1, - anon_sym_PIPE, - ACTIONS(5340), 1, - anon_sym_PERCENT, - ACTIONS(5342), 1, - anon_sym_STAR_STAR, - ACTIONS(5350), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5352), 1, - sym__ternary_qmark, - STATE(2027), 1, - sym_type_arguments, - STATE(2189), 1, - sym_arguments, - STATE(4602), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5320), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5322), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5330), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5338), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5346), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5348), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4752), 3, + [71669] = 5, + ACTIONS(1788), 1, sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5344), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [72116] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4555), 13, + ACTIONS(1780), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1784), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201044,15 +198583,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4557), 28, - sym__automatic_semicolon, + ACTIONS(1786), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -201073,86 +198609,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [72166] = 31, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, + [71723] = 15, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(694), 1, + anon_sym_RBRACE, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4622), 1, + anon_sym_EQ, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4704), 1, - anon_sym_LT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4716), 1, - anon_sym_AMP_AMP, - ACTIONS(4718), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4720), 1, - anon_sym_GT_GT, - ACTIONS(4724), 1, - anon_sym_AMP, - ACTIONS(4726), 1, - anon_sym_CARET, - ACTIONS(4728), 1, - anon_sym_PIPE, - ACTIONS(4732), 1, - anon_sym_PERCENT, - ACTIONS(4734), 1, - anon_sym_STAR_STAR, - ACTIONS(4742), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(4748), 1, - sym__ternary_qmark, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, + ACTIONS(4990), 1, + anon_sym_STAR, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4706), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4712), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4722), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4730), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4738), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4740), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4736), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5354), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - [72272] = 3, + ACTIONS(2337), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2357), 2, + anon_sym_get, + anon_sym_set, + STATE(3816), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [71797] = 5, + ACTIONS(1808), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4127), 13, + ACTIONS(1800), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1804), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201166,15 +198691,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4129), 28, - sym__automatic_semicolon, + ACTIONS(1806), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -201195,860 +198717,791 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [72322] = 31, - ACTIONS(4627), 1, - anon_sym_LPAREN, - ACTIONS(4629), 1, + [71851] = 10, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4809), 1, - anon_sym_as, - ACTIONS(4811), 1, - anon_sym_BANG, - ACTIONS(4847), 1, - anon_sym_satisfies, - ACTIONS(5318), 1, - anon_sym_LT, - ACTIONS(5324), 1, - anon_sym_AMP_AMP, - ACTIONS(5326), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5328), 1, - anon_sym_GT_GT, - ACTIONS(5332), 1, - anon_sym_AMP, - ACTIONS(5334), 1, - anon_sym_CARET, - ACTIONS(5336), 1, - anon_sym_PIPE, - ACTIONS(5340), 1, - anon_sym_PERCENT, - ACTIONS(5342), 1, - anon_sym_STAR_STAR, - ACTIONS(5350), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5352), 1, - sym__ternary_qmark, - STATE(2027), 1, - sym_type_arguments, - STATE(2189), 1, - sym_arguments, - STATE(4602), 1, - sym_optional_chain, + ACTIONS(5076), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5320), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5322), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5330), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5338), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5346), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5348), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4754), 3, + ACTIONS(5292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5294), 2, + anon_sym_get, + anon_sym_set, + STATE(3853), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 9, sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5344), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [72428] = 31, - ACTIONS(4627), 1, - anon_sym_LPAREN, - ACTIONS(4629), 1, - anon_sym_LBRACK, - ACTIONS(4631), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4809), 1, - anon_sym_as, - ACTIONS(4811), 1, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - ACTIONS(4847), 1, - anon_sym_satisfies, - ACTIONS(5318), 1, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(5324), 1, - anon_sym_AMP_AMP, - ACTIONS(5326), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5328), 1, - anon_sym_GT_GT, - ACTIONS(5332), 1, - anon_sym_AMP, - ACTIONS(5334), 1, - anon_sym_CARET, - ACTIONS(5336), 1, - anon_sym_PIPE, - ACTIONS(5340), 1, - anon_sym_PERCENT, - ACTIONS(5342), 1, - anon_sym_STAR_STAR, - ACTIONS(5350), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5352), 1, - sym__ternary_qmark, - STATE(2027), 1, - sym_type_arguments, - STATE(2189), 1, - sym_arguments, - STATE(4602), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(2351), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [71915] = 16, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(694), 1, + anon_sym_RBRACE, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(2353), 1, + anon_sym_async, + ACTIONS(4622), 1, + anon_sym_EQ, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(4990), 1, + anon_sym_STAR, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5320), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5322), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5330), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5338), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5346), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5348), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4523), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5344), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [72534] = 18, - ACTIONS(4627), 1, + ACTIONS(2337), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2357), 2, + anon_sym_get, + anon_sym_set, + STATE(3816), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 4, anon_sym_LPAREN, - ACTIONS(4629), 1, - anon_sym_LBRACK, - ACTIONS(4631), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(5318), 1, + anon_sym_COLON, anon_sym_LT, - ACTIONS(5328), 1, - anon_sym_GT_GT, - ACTIONS(5340), 1, - anon_sym_PERCENT, - ACTIONS(5342), 1, - anon_sym_STAR_STAR, - STATE(2027), 1, - sym_type_arguments, - STATE(2189), 1, - sym_arguments, - STATE(4602), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(2351), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [71991] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5320), 2, + ACTIONS(1842), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1846), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5330), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5338), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4758), 7, anon_sym_BANG, anon_sym_in, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4756), 15, - sym__automatic_semicolon, + ACTIONS(1848), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, + 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_satisfies, - [72614] = 33, - ACTIONS(1976), 1, - anon_sym_COMMA, - ACTIONS(3967), 1, + [72043] = 33, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4885), 1, + ACTIONS(4869), 1, + anon_sym_COMMA, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(4905), 1, sym__ternary_qmark, - ACTIONS(5356), 1, + ACTIONS(5296), 1, anon_sym_RPAREN, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4669), 1, - aux_sym_array_repeat1, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, + STATE(5026), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [72724] = 13, - ACTIONS(4627), 1, - anon_sym_LPAREN, - ACTIONS(4629), 1, + [72153] = 8, + ACTIONS(3550), 1, + anon_sym_EQ, + ACTIONS(4406), 1, + anon_sym_QMARK, + ACTIONS(4608), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(5342), 1, - anon_sym_STAR_STAR, - ACTIONS(5358), 1, - anon_sym_LT, - STATE(2027), 1, - sym_type_arguments, - STATE(2189), 1, - sym_arguments, - STATE(4602), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4758), 12, + ACTIONS(4611), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4408), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3492), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4756), 18, - sym__automatic_semicolon, + ACTIONS(3496), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, + anon_sym_LPAREN, + 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_satisfies, - [72794] = 33, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, + [72213] = 6, + ACTIONS(4510), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4704), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4106), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4513), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3492), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - ACTIONS(4708), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3496), 25, + sym__ternary_qmark, anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4716), 1, anon_sym_AMP_AMP, - ACTIONS(4718), 1, anon_sym_PIPE_PIPE, - ACTIONS(4720), 1, - anon_sym_GT_GT, - ACTIONS(4724), 1, - anon_sym_AMP, - ACTIONS(4726), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4728), 1, - anon_sym_PIPE, - ACTIONS(4732), 1, anon_sym_PERCENT, - ACTIONS(4734), 1, anon_sym_STAR_STAR, - ACTIONS(4742), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4746), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4748), 1, - sym__ternary_qmark, + [72269] = 10, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4688), 1, + anon_sym_LBRACK, ACTIONS(5298), 1, - anon_sym_COMMA, - ACTIONS(5361), 1, - anon_sym_RBRACK, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(3772), 1, - aux_sym_sequence_expression_repeat1, - STATE(4828), 1, - sym_optional_chain, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4706), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4712), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4722), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4730), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4738), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4740), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4736), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [72904] = 25, - ACTIONS(4627), 1, + ACTIONS(5300), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5302), 2, + anon_sym_get, + anon_sym_set, + STATE(3780), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, - ACTIONS(4629), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [72333] = 11, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4758), 1, + ACTIONS(5209), 1, + anon_sym_STAR, + ACTIONS(5304), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5306), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5308), 2, + anon_sym_get, + anon_sym_set, + STATE(3063), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - ACTIONS(5318), 1, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(5328), 1, - anon_sym_GT_GT, - ACTIONS(5332), 1, - anon_sym_AMP, - ACTIONS(5334), 1, - anon_sym_CARET, - ACTIONS(5336), 1, - anon_sym_PIPE, - ACTIONS(5340), 1, - anon_sym_PERCENT, - ACTIONS(5342), 1, - anon_sym_STAR_STAR, - STATE(2027), 1, - sym_type_arguments, - STATE(2189), 1, - sym_arguments, - STATE(4602), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(3700), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [72399] = 11, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(4624), 1, + anon_sym_LBRACK, + ACTIONS(5310), 1, + anon_sym_STAR, + ACTIONS(5312), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5320), 2, + ACTIONS(5314), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5316), 2, + anon_sym_get, + anon_sym_set, + STATE(3105), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 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(3700), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [72465] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1790), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1794), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5322), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5330), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5338), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5346), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5348), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5344), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4756), 9, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(1796), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [72998] = 26, - ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4758), 1, - anon_sym_BANG, - ACTIONS(5318), 1, - anon_sym_LT, - ACTIONS(5324), 1, anon_sym_AMP_AMP, - ACTIONS(5328), 1, - anon_sym_GT_GT, - ACTIONS(5332), 1, - anon_sym_AMP, - ACTIONS(5334), 1, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5336), 1, - anon_sym_PIPE, - ACTIONS(5340), 1, anon_sym_PERCENT, - ACTIONS(5342), 1, anon_sym_STAR_STAR, - STATE(2027), 1, - sym_type_arguments, - STATE(2189), 1, - sym_arguments, - STATE(4602), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5320), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5322), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5330), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5338), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5346), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5348), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5344), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4756), 8, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [73094] = 16, - ACTIONS(4627), 1, - anon_sym_LPAREN, - ACTIONS(4629), 1, - anon_sym_LBRACK, - ACTIONS(4631), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(5340), 1, - anon_sym_PERCENT, - ACTIONS(5342), 1, - anon_sym_STAR_STAR, - ACTIONS(5358), 1, - anon_sym_LT, - STATE(2027), 1, - sym_type_arguments, - STATE(2189), 1, - sym_arguments, - STATE(4602), 1, - sym_optional_chain, + [72517] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5320), 2, + ACTIONS(1800), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1804), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5338), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4758), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4756), 17, - sym__automatic_semicolon, + ACTIONS(1806), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, + 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_satisfies, - [73170] = 22, - ACTIONS(4627), 1, - anon_sym_LPAREN, - ACTIONS(4629), 1, - anon_sym_LBRACK, - ACTIONS(4631), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, + [72569] = 5, ACTIONS(5318), 1, - anon_sym_LT, - ACTIONS(5328), 1, - anon_sym_GT_GT, - ACTIONS(5340), 1, - anon_sym_PERCENT, - ACTIONS(5342), 1, - anon_sym_STAR_STAR, - STATE(2027), 1, - sym_type_arguments, - STATE(2189), 1, - sym_arguments, - STATE(4602), 1, - sym_optional_chain, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5320), 2, + ACTIONS(1810), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1814), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5322), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5330), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5338), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5346), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5348), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4758), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5344), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4756), 10, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(1816), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, + 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_satisfies, - [73258] = 23, - ACTIONS(4627), 1, + [72623] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5318), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5161), 1, anon_sym_LT, - ACTIONS(5328), 1, + ACTIONS(5167), 1, + anon_sym_AMP_AMP, + ACTIONS(5169), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5171), 1, anon_sym_GT_GT, - ACTIONS(5332), 1, + ACTIONS(5175), 1, anon_sym_AMP, - ACTIONS(5340), 1, + ACTIONS(5177), 1, + anon_sym_CARET, + ACTIONS(5179), 1, + anon_sym_PIPE, + ACTIONS(5183), 1, anon_sym_PERCENT, - ACTIONS(5342), 1, + ACTIONS(5185), 1, anon_sym_STAR_STAR, - STATE(2027), 1, - sym_type_arguments, - STATE(2189), 1, + ACTIONS(5193), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5195), 1, + sym__ternary_qmark, + STATE(1655), 1, sym_arguments, - STATE(4602), 1, + STATE(2605), 1, + sym_type_arguments, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4758), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4845), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5320), 2, + ACTIONS(5163), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5322), 2, + ACTIONS(5165), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5330), 2, + ACTIONS(5173), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5338), 2, + ACTIONS(5181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5346), 2, + ACTIONS(5189), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5348), 2, + ACTIONS(5191), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5344), 3, + ACTIONS(5187), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4756), 10, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [73348] = 24, - ACTIONS(4627), 1, - anon_sym_LPAREN, - ACTIONS(4629), 1, - anon_sym_LBRACK, - ACTIONS(4631), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(5318), 1, - anon_sym_LT, - ACTIONS(5328), 1, - anon_sym_GT_GT, - ACTIONS(5332), 1, - anon_sym_AMP, - ACTIONS(5334), 1, - anon_sym_CARET, - ACTIONS(5340), 1, - anon_sym_PERCENT, - ACTIONS(5342), 1, - anon_sym_STAR_STAR, - STATE(2027), 1, - sym_type_arguments, - STATE(2189), 1, - sym_arguments, - STATE(4602), 1, - sym_optional_chain, + ACTIONS(5320), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + [72729] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4758), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5320), 2, + ACTIONS(1706), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1710), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5322), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5330), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5338), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5346), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5348), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5344), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4756), 9, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(1712), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [73440] = 15, - ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(5340), 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(5342), 1, anon_sym_STAR_STAR, - ACTIONS(5358), 1, - anon_sym_LT, - STATE(2027), 1, - sym_type_arguments, - STATE(2189), 1, - sym_arguments, - STATE(4602), 1, - sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [72781] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5320), 2, + ACTIONS(1758), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1762), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4758), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, @@ -202056,60 +199509,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4756), 17, - sym__automatic_semicolon, + ACTIONS(1764), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, + 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_satisfies, - [73514] = 16, - ACTIONS(4627), 1, - anon_sym_LPAREN, - ACTIONS(4629), 1, - anon_sym_LBRACK, - ACTIONS(4631), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4809), 1, - anon_sym_as, - ACTIONS(4811), 1, - anon_sym_BANG, - ACTIONS(4847), 1, - anon_sym_satisfies, - ACTIONS(5342), 1, - anon_sym_STAR_STAR, - ACTIONS(5358), 1, - anon_sym_LT, - STATE(2027), 1, - sym_type_arguments, - STATE(2189), 1, - sym_arguments, - STATE(4602), 1, - sym_optional_chain, + [72833] = 5, + ACTIONS(5322), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4758), 11, + ACTIONS(1770), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1774), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, @@ -202117,709 +199559,517 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4756), 16, - sym__automatic_semicolon, + ACTIONS(1776), 23, sym__ternary_qmark, - anon_sym_SEMI, + anon_sym_as, + 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, - [73590] = 20, - ACTIONS(4627), 1, - anon_sym_LPAREN, - ACTIONS(4629), 1, - anon_sym_LBRACK, - ACTIONS(4631), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(5318), 1, - anon_sym_LT, - ACTIONS(5328), 1, - anon_sym_GT_GT, - ACTIONS(5340), 1, - anon_sym_PERCENT, - ACTIONS(5342), 1, - anon_sym_STAR_STAR, - STATE(2027), 1, - sym_type_arguments, - STATE(2189), 1, - sym_arguments, - STATE(4602), 1, - sym_optional_chain, + anon_sym_satisfies, + [72887] = 5, + ACTIONS(5324), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5320), 2, + ACTIONS(1780), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1784), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5322), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5330), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5338), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5344), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4758), 5, anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4756), 12, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(1786), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, + 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_satisfies, - [73674] = 27, - ACTIONS(4627), 1, + [72941] = 33, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4758), 1, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(5318), 1, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, anon_sym_LT, - ACTIONS(5324), 1, + ACTIONS(4714), 1, anon_sym_AMP_AMP, - ACTIONS(5326), 1, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - ACTIONS(5328), 1, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(5332), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(5334), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(5336), 1, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(5340), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(5342), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - STATE(2027), 1, + ACTIONS(4740), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4742), 1, + sym__ternary_qmark, + ACTIONS(5217), 1, + anon_sym_COMMA, + ACTIONS(5326), 1, + anon_sym_RBRACE, + STATE(1633), 1, sym_type_arguments, - STATE(2189), 1, + STATE(1655), 1, sym_arguments, - STATE(4602), 1, + STATE(3792), 1, + aux_sym_sequence_expression_repeat1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5320), 2, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5322), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5330), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5338), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5346), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5348), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5344), 3, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4756), 7, + [73051] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4498), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(4500), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [73772] = 31, - ACTIONS(4627), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4629), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, - anon_sym_as, - ACTIONS(4811), 1, - anon_sym_BANG, - ACTIONS(4847), 1, - anon_sym_satisfies, - ACTIONS(5318), 1, - anon_sym_LT, - ACTIONS(5324), 1, anon_sym_AMP_AMP, - ACTIONS(5326), 1, anon_sym_PIPE_PIPE, - ACTIONS(5328), 1, - anon_sym_GT_GT, - ACTIONS(5332), 1, - anon_sym_AMP, - ACTIONS(5334), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5336), 1, - anon_sym_PIPE, - ACTIONS(5340), 1, anon_sym_PERCENT, - ACTIONS(5342), 1, anon_sym_STAR_STAR, - ACTIONS(5350), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5352), 1, - sym__ternary_qmark, - STATE(2027), 1, - sym_type_arguments, - STATE(2189), 1, - sym_arguments, - STATE(4602), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [73101] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5320), 2, + ACTIONS(1820), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1824), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5322), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5330), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5338), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5346), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5348), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4541), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5344), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [73878] = 31, - ACTIONS(4627), 1, + anon_sym_GT, + ACTIONS(1826), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, - anon_sym_as, - ACTIONS(4811), 1, - anon_sym_BANG, - ACTIONS(4847), 1, - anon_sym_satisfies, - ACTIONS(5318), 1, - anon_sym_LT, - ACTIONS(5324), 1, anon_sym_AMP_AMP, - ACTIONS(5326), 1, anon_sym_PIPE_PIPE, - ACTIONS(5328), 1, - anon_sym_GT_GT, - ACTIONS(5332), 1, - anon_sym_AMP, - ACTIONS(5334), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5336), 1, - anon_sym_PIPE, - ACTIONS(5340), 1, anon_sym_PERCENT, - ACTIONS(5342), 1, anon_sym_STAR_STAR, - ACTIONS(5350), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5352), 1, - sym__ternary_qmark, - STATE(2027), 1, - sym_type_arguments, - STATE(2189), 1, - sym_arguments, - STATE(4602), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [73153] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5320), 2, + ACTIONS(1830), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1834), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5322), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5330), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5338), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5346), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5348), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4763), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5344), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [73984] = 31, - ACTIONS(4627), 1, + anon_sym_GT, + ACTIONS(1836), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, - anon_sym_as, - ACTIONS(4811), 1, - anon_sym_BANG, - ACTIONS(4847), 1, - anon_sym_satisfies, - ACTIONS(5318), 1, - anon_sym_LT, - ACTIONS(5324), 1, anon_sym_AMP_AMP, - ACTIONS(5326), 1, anon_sym_PIPE_PIPE, - ACTIONS(5328), 1, - anon_sym_GT_GT, - ACTIONS(5332), 1, - anon_sym_AMP, - ACTIONS(5334), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5336), 1, - anon_sym_PIPE, - ACTIONS(5340), 1, anon_sym_PERCENT, - ACTIONS(5342), 1, anon_sym_STAR_STAR, - ACTIONS(5350), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5352), 1, - sym__ternary_qmark, - STATE(2027), 1, - sym_type_arguments, - STATE(2189), 1, - sym_arguments, - STATE(4602), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [73205] = 5, + ACTIONS(5328), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5320), 2, + ACTIONS(1856), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1860), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5322), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5330), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5338), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5346), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5348), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4565), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5344), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [74090] = 31, - ACTIONS(4627), 1, + anon_sym_GT, + ACTIONS(1862), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, - anon_sym_as, - ACTIONS(4811), 1, - anon_sym_BANG, - ACTIONS(4847), 1, - anon_sym_satisfies, - ACTIONS(5318), 1, - anon_sym_LT, - ACTIONS(5324), 1, anon_sym_AMP_AMP, - ACTIONS(5326), 1, anon_sym_PIPE_PIPE, - ACTIONS(5328), 1, - anon_sym_GT_GT, - ACTIONS(5332), 1, - anon_sym_AMP, - ACTIONS(5334), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5336), 1, - anon_sym_PIPE, - ACTIONS(5340), 1, anon_sym_PERCENT, - ACTIONS(5342), 1, anon_sym_STAR_STAR, - ACTIONS(5350), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5352), 1, - sym__ternary_qmark, - STATE(2027), 1, - sym_type_arguments, - STATE(2189), 1, - sym_arguments, - STATE(4602), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [73259] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5320), 2, + ACTIONS(4478), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5322), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5330), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5338), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5346), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5348), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4573), 3, + anon_sym_GT, + ACTIONS(4480), 28, sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5344), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [74196] = 31, - ACTIONS(4627), 1, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4629), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, - anon_sym_as, - ACTIONS(4811), 1, - anon_sym_BANG, - ACTIONS(4847), 1, - anon_sym_satisfies, - ACTIONS(5318), 1, - anon_sym_LT, - ACTIONS(5324), 1, anon_sym_AMP_AMP, - ACTIONS(5326), 1, anon_sym_PIPE_PIPE, - ACTIONS(5328), 1, - anon_sym_GT_GT, - ACTIONS(5332), 1, - anon_sym_AMP, - ACTIONS(5334), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5336), 1, - anon_sym_PIPE, - ACTIONS(5340), 1, anon_sym_PERCENT, - ACTIONS(5342), 1, anon_sym_STAR_STAR, - ACTIONS(5350), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5352), 1, - sym__ternary_qmark, - STATE(2027), 1, - sym_type_arguments, - STATE(2189), 1, - sym_arguments, - STATE(4602), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [73309] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5320), 2, + ACTIONS(1866), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1870), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5322), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5330), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5338), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5346), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5348), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4577), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5344), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [74302] = 31, - ACTIONS(4627), 1, + anon_sym_GT, + ACTIONS(1872), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, - anon_sym_as, - ACTIONS(4811), 1, - anon_sym_BANG, - ACTIONS(4847), 1, - anon_sym_satisfies, - ACTIONS(5318), 1, - anon_sym_LT, - ACTIONS(5324), 1, anon_sym_AMP_AMP, - ACTIONS(5326), 1, anon_sym_PIPE_PIPE, - ACTIONS(5328), 1, - anon_sym_GT_GT, - ACTIONS(5332), 1, - anon_sym_AMP, - ACTIONS(5334), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5336), 1, - anon_sym_PIPE, - ACTIONS(5340), 1, anon_sym_PERCENT, - ACTIONS(5342), 1, anon_sym_STAR_STAR, - ACTIONS(5350), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5352), 1, - sym__ternary_qmark, - STATE(2027), 1, - sym_type_arguments, - STATE(2189), 1, - sym_arguments, - STATE(4602), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [73361] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5320), 2, + ACTIONS(4502), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5322), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5330), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5338), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5346), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5348), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4765), 3, + anon_sym_GT, + ACTIONS(4504), 28, sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5344), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [74408] = 31, - ACTIONS(4627), 1, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4629), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, - anon_sym_as, - ACTIONS(4811), 1, - anon_sym_BANG, - ACTIONS(4847), 1, - anon_sym_satisfies, - ACTIONS(5318), 1, - anon_sym_LT, - ACTIONS(5324), 1, anon_sym_AMP_AMP, - ACTIONS(5326), 1, anon_sym_PIPE_PIPE, - ACTIONS(5328), 1, - anon_sym_GT_GT, - ACTIONS(5332), 1, - anon_sym_AMP, - ACTIONS(5334), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5336), 1, - anon_sym_PIPE, - ACTIONS(5340), 1, anon_sym_PERCENT, - ACTIONS(5342), 1, anon_sym_STAR_STAR, - ACTIONS(5350), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5352), 1, - sym__ternary_qmark, - STATE(2027), 1, - sym_type_arguments, - STATE(2189), 1, - sym_arguments, - STATE(4602), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4845), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5320), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5322), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5330), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5338), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5346), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5348), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4767), 3, - sym__automatic_semicolon, - anon_sym_SEMI, anon_sym_BQUOTE, - ACTIONS(5344), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [74514] = 10, - ACTIONS(2344), 1, + anon_sym_satisfies, + [73411] = 10, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5086), 1, + ACTIONS(5137), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5363), 2, + ACTIONS(5330), 2, sym_number, sym_private_property_identifier, - ACTIONS(5365), 2, + ACTIONS(5332), 2, anon_sym_get, anon_sym_set, - STATE(3794), 3, + STATE(3822), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 9, + ACTIONS(3814), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -202829,7 +200079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2362), 21, + ACTIONS(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -202851,223 +200101,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [74578] = 11, - ACTIONS(1643), 1, - anon_sym_DQUOTE, - ACTIONS(1645), 1, - anon_sym_SQUOTE, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(5086), 1, - anon_sym_STAR, - ACTIONS(5088), 1, - anon_sym_async, + [73475] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5090), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5094), 2, - anon_sym_get, - anon_sym_set, - STATE(3049), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 9, + ACTIONS(4540), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(4542), 28, sym__automatic_semicolon, - anon_sym_EQ, + sym__ternary_qmark, + anon_sym_as, 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(3705), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [74644] = 33, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4704), 1, - anon_sym_LT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4716), 1, anon_sym_AMP_AMP, - ACTIONS(4718), 1, anon_sym_PIPE_PIPE, - ACTIONS(4720), 1, - anon_sym_GT_GT, - ACTIONS(4724), 1, - anon_sym_AMP, - ACTIONS(4726), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4728), 1, - anon_sym_PIPE, - ACTIONS(4732), 1, anon_sym_PERCENT, - ACTIONS(4734), 1, anon_sym_STAR_STAR, - ACTIONS(4742), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4746), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4748), 1, - sym__ternary_qmark, - ACTIONS(5298), 1, - anon_sym_COMMA, - ACTIONS(5367), 1, - anon_sym_RBRACK, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(3772), 1, - aux_sym_sequence_expression_repeat1, - STATE(4828), 1, - sym_optional_chain, + [73525] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4706), 2, + ACTIONS(4544), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4712), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4722), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4730), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4738), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4740), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4736), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [74754] = 31, - ACTIONS(4627), 1, + anon_sym_GT, + ACTIONS(4546), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4629), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, - anon_sym_as, - ACTIONS(4811), 1, - anon_sym_BANG, - ACTIONS(4847), 1, - anon_sym_satisfies, - ACTIONS(5318), 1, - anon_sym_LT, - ACTIONS(5324), 1, anon_sym_AMP_AMP, - ACTIONS(5326), 1, anon_sym_PIPE_PIPE, - ACTIONS(5328), 1, - anon_sym_GT_GT, - ACTIONS(5332), 1, - anon_sym_AMP, - ACTIONS(5334), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5336), 1, - anon_sym_PIPE, - ACTIONS(5340), 1, anon_sym_PERCENT, - ACTIONS(5342), 1, anon_sym_STAR_STAR, - ACTIONS(5350), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5352), 1, - sym__ternary_qmark, - STATE(2027), 1, - sym_type_arguments, - STATE(2189), 1, - sym_arguments, - STATE(4602), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [73575] = 5, + ACTIONS(1818), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5320), 2, + ACTIONS(1810), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1814), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5322), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5330), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5338), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5346), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5348), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4779), 3, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(1816), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5344), 3, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [74860] = 5, - ACTIONS(1741), 1, - sym__automatic_semicolon, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [73629] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1733), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1737), 13, + ACTIONS(4548), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -203081,12 +200262,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1739), 25, + ACTIONS(4550), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -203107,16 +200291,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [74914] = 5, - ACTIONS(1829), 1, - sym__automatic_semicolon, + [73679] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1821), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1825), 13, + ACTIONS(4552), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -203130,12 +200309,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1827), 25, + ACTIONS(4554), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -203156,93 +200338,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [74968] = 10, - ACTIONS(2344), 1, - anon_sym_DQUOTE, - ACTIONS(2346), 1, - anon_sym_SQUOTE, - ACTIONS(4686), 1, - anon_sym_LBRACK, - ACTIONS(5096), 1, - anon_sym_STAR, + [73729] = 7, + ACTIONS(5334), 1, + anon_sym_LPAREN, + ACTIONS(5337), 1, + anon_sym_COLON, + ACTIONS(5339), 1, + anon_sym_LT, + ACTIONS(5342), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5369), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5371), 2, - anon_sym_get, - anon_sym_set, - STATE(3866), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 9, + ACTIONS(3492), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(3496), 25, sym__automatic_semicolon, - anon_sym_EQ, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2362), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [75032] = 10, - ACTIONS(2344), 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_satisfies, + [73787] = 10, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5373), 1, + ACTIONS(5344), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5375), 2, + ACTIONS(5346), 2, sym_number, sym_private_property_identifier, - ACTIONS(5377), 2, + ACTIONS(5348), 2, anon_sym_get, anon_sym_set, - STATE(3761), 3, + STATE(3845), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 9, + ACTIONS(3814), 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(2362), 21, + anon_sym_PIPE_RBRACE, + ACTIONS(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -203264,84 +200443,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [75096] = 11, - ACTIONS(1643), 1, - anon_sym_DQUOTE, - ACTIONS(1645), 1, - anon_sym_SQUOTE, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(5238), 1, - anon_sym_STAR, - ACTIONS(5379), 1, - anon_sym_async, + [73851] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5381), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5383), 2, - anon_sym_get, - anon_sym_set, - STATE(3065), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 9, + ACTIONS(4556), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(4558), 28, sym__automatic_semicolon, - anon_sym_EQ, + sym__ternary_qmark, + anon_sym_as, 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(3705), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [75162] = 10, - ACTIONS(2344), 1, + anon_sym_of, + 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_satisfies, + [73901] = 11, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(5033), 1, + ACTIONS(5350), 1, anon_sym_STAR, + ACTIONS(5352), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5385), 2, + ACTIONS(5354), 2, sym_number, sym_private_property_identifier, - ACTIONS(5387), 2, + ACTIONS(5356), 2, anon_sym_get, anon_sym_set, - STATE(3766), 3, + STATE(3152), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 9, + ACTIONS(3814), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -203351,12 +200524,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2362), 21, + ACTIONS(3700), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -203373,16 +200545,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [75226] = 5, - ACTIONS(1847), 1, - sym__automatic_semicolon, + [73967] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1839), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1843), 13, + ACTIONS(4560), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -203396,12 +200563,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1845), 25, + ACTIONS(4562), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -203422,38 +200592,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75280] = 7, - ACTIONS(3593), 1, - anon_sym_EQ, - ACTIONS(4378), 1, - anon_sym_extends, + [74017] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4637), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4640), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3499), 10, + ACTIONS(4564), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 24, + anon_sym_GT, + ACTIONS(4566), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -203473,12 +200639,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75338] = 3, + [74067] = 33, + ACTIONS(1977), 1, + anon_sym_COMMA, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4875), 1, + anon_sym_AMP_AMP, + ACTIONS(4877), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4879), 1, + anon_sym_GT_GT, + ACTIONS(4883), 1, + anon_sym_AMP, + ACTIONS(4885), 1, + anon_sym_CARET, + ACTIONS(4887), 1, + anon_sym_PIPE, + ACTIONS(4891), 1, + anon_sym_PERCENT, + ACTIONS(4893), 1, + anon_sym_STAR_STAR, + ACTIONS(4895), 1, + anon_sym_LT, + ACTIONS(4903), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4905), 1, + sym__ternary_qmark, + ACTIONS(5358), 1, + anon_sym_RPAREN, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4698), 1, + aux_sym_array_repeat1, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4867), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4873), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4881), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4889), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4901), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4897), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [74177] = 4, + ACTIONS(5360), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4497), 13, + ACTIONS(4911), 16, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, @@ -203491,15 +200737,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4499), 28, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(4913), 24, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -203515,104 +200761,274 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - [75388] = 10, - ACTIONS(2344), 1, - anon_sym_DQUOTE, - ACTIONS(2346), 1, - anon_sym_SQUOTE, - ACTIONS(4649), 1, - anon_sym_STAR, - ACTIONS(4686), 1, - anon_sym_LBRACK, + [74229] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5389), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5391), 2, - anon_sym_get, - anon_sym_set, - STATE(3870), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 9, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4568), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(4570), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + 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_satisfies, + [74279] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4462), 13, + anon_sym_STAR, anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(4464), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, + anon_sym_of, + 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_satisfies, + [74329] = 33, + ACTIONS(1977), 1, + anon_sym_COMMA, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4875), 1, + anon_sym_AMP_AMP, + ACTIONS(4877), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4879), 1, + anon_sym_GT_GT, + ACTIONS(4883), 1, + anon_sym_AMP, + ACTIONS(4885), 1, + anon_sym_CARET, + ACTIONS(4887), 1, + anon_sym_PIPE, + ACTIONS(4891), 1, + anon_sym_PERCENT, + ACTIONS(4893), 1, + anon_sym_STAR_STAR, + ACTIONS(4895), 1, anon_sym_LT, + ACTIONS(4903), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4905), 1, + sym__ternary_qmark, + ACTIONS(5362), 1, + anon_sym_RPAREN, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + STATE(5062), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4867), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4873), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4881), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4889), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4901), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4897), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [74439] = 7, + ACTIONS(4406), 1, anon_sym_QMARK, - ACTIONS(2362), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [75452] = 11, - ACTIONS(1643), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4408), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4611), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4608), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(3492), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(3496), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + 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_satisfies, + [74497] = 15, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4647), 1, + ACTIONS(4622), 1, + anon_sym_EQ, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5033), 1, + ACTIONS(4990), 1, anon_sym_STAR, - ACTIONS(5035), 1, - anon_sym_async, + ACTIONS(4992), 1, + anon_sym_RBRACE, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5037), 2, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - ACTIONS(5041), 2, + ACTIONS(2357), 2, anon_sym_get, anon_sym_set, - STATE(3145), 3, + STATE(3816), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3814), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3705), 20, + ACTIONS(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -203629,29 +201045,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [75518] = 10, - ACTIONS(2344), 1, + [74571] = 10, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5393), 1, + ACTIONS(5103), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5395), 2, + ACTIONS(5364), 2, sym_number, sym_private_property_identifier, - ACTIONS(5397), 2, + ACTIONS(5366), 2, anon_sym_get, anon_sym_set, - STATE(3859), 3, + STATE(3798), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 9, + ACTIONS(3814), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -203661,7 +201077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2362), 21, + ACTIONS(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -203683,31 +201099,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [75582] = 11, - ACTIONS(1643), 1, + [74635] = 11, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(5399), 1, + ACTIONS(5103), 1, anon_sym_STAR, - ACTIONS(5401), 1, + ACTIONS(5105), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5403), 2, + ACTIONS(5107), 2, sym_number, sym_private_property_identifier, - ACTIONS(5405), 2, + ACTIONS(5111), 2, anon_sym_get, anon_sym_set, - STATE(3108), 3, + STATE(3135), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 9, + ACTIONS(3814), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -203717,7 +201133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3705), 20, + ACTIONS(3700), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -203738,45 +201154,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [75648] = 11, - ACTIONS(1643), 1, + [74701] = 15, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(667), 1, + anon_sym_RBRACE, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4622), 1, + anon_sym_EQ, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5407), 1, + ACTIONS(4990), 1, anon_sym_STAR, - ACTIONS(5409), 1, - anon_sym_async, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5411), 2, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - ACTIONS(5413), 2, + ACTIONS(2357), 2, anon_sym_get, anon_sym_set, - STATE(3048), 3, + STATE(3816), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3814), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3705), 20, + ACTIONS(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -203793,44 +201213,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [75714] = 10, - ACTIONS(2344), 1, + [74775] = 16, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(2353), 1, + anon_sym_async, + ACTIONS(4622), 1, + anon_sym_EQ, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5407), 1, + ACTIONS(4990), 1, anon_sym_STAR, + ACTIONS(4992), 1, + anon_sym_RBRACE, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5415), 2, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - ACTIONS(5417), 2, + ACTIONS(2357), 2, anon_sym_get, anon_sym_set, - STATE(3838), 3, + STATE(3816), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3814), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2362), 21, + ACTIONS(2351), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -203847,67 +201273,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [75778] = 7, - ACTIONS(4376), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4378), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4640), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4637), 3, + [74851] = 33, + ACTIONS(1977), 1, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(3499), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(3503), 22, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4010), 1, anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4875), 1, anon_sym_AMP_AMP, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4879), 1, + anon_sym_GT_GT, + ACTIONS(4883), 1, + anon_sym_AMP, + ACTIONS(4885), 1, anon_sym_CARET, + ACTIONS(4887), 1, + anon_sym_PIPE, + ACTIONS(4891), 1, anon_sym_PERCENT, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4895), 1, + anon_sym_LT, + ACTIONS(4903), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4905), 1, + sym__ternary_qmark, + ACTIONS(5368), 1, + anon_sym_RPAREN, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4554), 1, + aux_sym_array_repeat1, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4867), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4873), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4881), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4889), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4897), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [75836] = 5, - ACTIONS(1857), 1, - sym__automatic_semicolon, + [74961] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1849), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1853), 13, + ACTIONS(4506), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -203921,12 +201368,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1855), 25, + ACTIONS(4508), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -203947,14 +201397,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75890] = 3, + [75011] = 4, + ACTIONS(5360), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4559), 13, + ACTIONS(4911), 17, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, + anon_sym_of, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -203965,15 +201419,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4561), 28, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(4913), 23, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -203989,16 +201442,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - [75940] = 3, + [75063] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4563), 13, + ACTIONS(3492), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -204012,7 +201463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4565), 28, + ACTIONS(3496), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -204041,111 +201492,249 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75990] = 33, - ACTIONS(3967), 1, + [75113] = 16, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(667), 1, + anon_sym_RBRACE, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(2353), 1, + anon_sym_async, + ACTIONS(4622), 1, + anon_sym_EQ, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(4990), 1, + anon_sym_STAR, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2337), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2357), 2, + anon_sym_get, + anon_sym_set, + STATE(3816), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [75189] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4704), 1, - anon_sym_LT, - ACTIONS(4708), 1, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4716), 1, + ACTIONS(4804), 1, anon_sym_AMP_AMP, - ACTIONS(4718), 1, + ACTIONS(4806), 1, anon_sym_PIPE_PIPE, - ACTIONS(4720), 1, + ACTIONS(4808), 1, anon_sym_GT_GT, - ACTIONS(4724), 1, + ACTIONS(4812), 1, anon_sym_AMP, - ACTIONS(4726), 1, + ACTIONS(4814), 1, anon_sym_CARET, - ACTIONS(4728), 1, + ACTIONS(4816), 1, anon_sym_PIPE, - ACTIONS(4732), 1, + ACTIONS(4820), 1, anon_sym_PERCENT, - ACTIONS(4734), 1, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - ACTIONS(4742), 1, + ACTIONS(4824), 1, + anon_sym_LT, + ACTIONS(4832), 1, anon_sym_QMARK_QMARK, - ACTIONS(4746), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4748), 1, + ACTIONS(4838), 1, sym__ternary_qmark, - ACTIONS(5298), 1, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4796), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4802), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4810), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4828), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4830), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4826), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4852), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5419), 1, anon_sym_SEMI, - STATE(1580), 1, + [75295] = 33, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, + anon_sym_AMP_AMP, + ACTIONS(4716), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4718), 1, + anon_sym_GT_GT, + ACTIONS(4722), 1, + anon_sym_AMP, + ACTIONS(4724), 1, + anon_sym_CARET, + ACTIONS(4726), 1, + anon_sym_PIPE, + ACTIONS(4730), 1, + anon_sym_PERCENT, + ACTIONS(4732), 1, + anon_sym_STAR_STAR, + ACTIONS(4740), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4742), 1, + sym__ternary_qmark, + ACTIONS(5217), 1, + anon_sym_COMMA, + ACTIONS(5370), 1, + anon_sym_RBRACK, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(3772), 1, + STATE(3792), 1, aux_sym_sequence_expression_repeat1, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4706), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4722), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4730), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4738), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4740), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4736), 3, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [76100] = 3, + [75405] = 6, + ACTIONS(4608), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4567), 13, + ACTIONS(4408), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4611), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3492), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4569), 28, - sym__automatic_semicolon, + ACTIONS(3496), 25, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_of, - anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -204165,25 +201754,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76150] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4571), 13, - anon_sym_STAR, + [75461] = 33, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, + anon_sym_AMP_AMP, + ACTIONS(4716), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4718), 1, + anon_sym_GT_GT, + ACTIONS(4722), 1, + anon_sym_AMP, + ACTIONS(4724), 1, + anon_sym_CARET, + ACTIONS(4726), 1, + anon_sym_PIPE, + ACTIONS(4730), 1, + anon_sym_PERCENT, + ACTIONS(4732), 1, + anon_sym_STAR_STAR, + ACTIONS(4740), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4742), 1, + sym__ternary_qmark, + ACTIONS(5217), 1, + anon_sym_COMMA, + ACTIONS(5372), 1, + anon_sym_SEMI, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(3792), 1, + aux_sym_sequence_expression_repeat1, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4712), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4720), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4728), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4736), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4738), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4734), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [75571] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4288), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4573), 28, + ACTIONS(4290), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -204212,17 +201878,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76200] = 3, + [75621] = 7, + ACTIONS(3516), 1, + anon_sym_DOT, + ACTIONS(3520), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4575), 13, + ACTIONS(3522), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3512), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3492), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -204230,18 +201906,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4577), 28, - sym__automatic_semicolon, + ACTIONS(3496), 22, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - 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, @@ -204259,11 +201929,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76250] = 3, + [75679] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4579), 13, + ACTIONS(4482), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -204277,7 +201947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4581), 28, + ACTIONS(4484), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -204306,94 +201976,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76300] = 33, - ACTIONS(1976), 1, + [75729] = 33, + ACTIONS(1977), 1, anon_sym_COMMA, - ACTIONS(3967), 1, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4885), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(4905), 1, sym__ternary_qmark, - ACTIONS(5421), 1, + ACTIONS(5374), 1, anon_sym_RPAREN, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, - sym_optional_chain, - STATE(5036), 1, + STATE(4602), 1, aux_sym_array_repeat1, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [76410] = 3, + [75839] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4583), 13, + ACTIONS(4184), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4182), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3492), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -204401,16 +202077,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4585), 28, - sym__automatic_semicolon, + ACTIONS(3496), 24, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -204430,66 +202102,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76460] = 5, + [75893] = 7, + ACTIONS(4376), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5137), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5139), 3, - anon_sym_COMMA, + ACTIONS(4378), 2, anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3499), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, + anon_sym_extends, + ACTIONS(4617), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(3503), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, + ACTIONS(4614), 3, + anon_sym_COMMA, 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_satisfies, - [76514] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4587), 13, + anon_sym_RBRACK, + ACTIONS(4458), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -204497,16 +202130,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4589), 28, - sym__automatic_semicolon, + ACTIONS(4460), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -204526,16 +202153,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76564] = 5, - ACTIONS(1867), 1, - sym__automatic_semicolon, + [75951] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1859), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1863), 13, + ACTIONS(4486), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -204549,12 +202171,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1865), 25, + ACTIONS(4488), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -204575,29 +202200,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76618] = 10, - ACTIONS(2344), 1, + [76001] = 10, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5121), 1, + ACTIONS(5000), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5423), 2, + ACTIONS(5376), 2, sym_number, sym_private_property_identifier, - ACTIONS(5425), 2, + ACTIONS(5378), 2, anon_sym_get, anon_sym_set, - STATE(3823), 3, + STATE(3781), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 9, + ACTIONS(3814), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -204607,7 +202232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2362), 21, + ACTIONS(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -204629,77 +202254,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [76682] = 11, - ACTIONS(1643), 1, - anon_sym_DQUOTE, - ACTIONS(1645), 1, - anon_sym_SQUOTE, - ACTIONS(4595), 1, + [76065] = 8, + ACTIONS(3494), 1, + anon_sym_EQ, + ACTIONS(3586), 1, + anon_sym_COLON, + ACTIONS(4608), 1, anon_sym_LBRACK, - ACTIONS(5121), 1, - anon_sym_STAR, - ACTIONS(5123), 1, - anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5125), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5129), 2, - anon_sym_get, - anon_sym_set, - STATE(3097), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 9, - sym__automatic_semicolon, + ACTIONS(4611), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4408), 3, 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(3705), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [76748] = 5, - ACTIONS(1819), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1811), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1815), 13, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3492), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -204707,13 +202283,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1817), 25, + ACTIONS(3496), 22, sym__ternary_qmark, 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, @@ -204733,62 +202306,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76802] = 7, - ACTIONS(3643), 1, - anon_sym_EQ, - ACTIONS(4637), 1, + [76125] = 33, + ACTIONS(1977), 1, + anon_sym_COMMA, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4875), 1, + anon_sym_AMP_AMP, + ACTIONS(4877), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4879), 1, + anon_sym_GT_GT, + ACTIONS(4883), 1, + anon_sym_AMP, + ACTIONS(4885), 1, + anon_sym_CARET, + ACTIONS(4887), 1, + anon_sym_PIPE, + ACTIONS(4891), 1, + anon_sym_PERCENT, + ACTIONS(4893), 1, + anon_sym_STAR_STAR, + ACTIONS(4895), 1, + anon_sym_LT, + ACTIONS(4903), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4905), 1, + sym__ternary_qmark, + ACTIONS(5380), 1, + anon_sym_RPAREN, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4644), 1, + aux_sym_array_repeat1, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4378), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4640), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3499), 10, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4867), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4873), 2, anon_sym_in, - anon_sym_GT_GT, + anon_sym_GT, + ACTIONS(4881), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 24, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4901), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4897), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [76235] = 33, + ACTIONS(1977), 1, + anon_sym_COMMA, + ACTIONS(4010), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4875), 1, anon_sym_AMP_AMP, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4879), 1, + anon_sym_GT_GT, + ACTIONS(4883), 1, + anon_sym_AMP, + ACTIONS(4885), 1, anon_sym_CARET, + ACTIONS(4887), 1, + anon_sym_PIPE, + ACTIONS(4891), 1, anon_sym_PERCENT, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4895), 1, + anon_sym_LT, + ACTIONS(4903), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4905), 1, + sym__ternary_qmark, + ACTIONS(5382), 1, + anon_sym_RPAREN, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4656), 1, + aux_sym_array_repeat1, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4867), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4873), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4881), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4889), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4897), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [76860] = 3, + [76345] = 12, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, + anon_sym_LBRACK, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(5384), 1, + anon_sym_LT, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4477), 13, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4778), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -204798,22 +202493,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4479), 28, + ACTIONS(4780), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -204827,44 +202514,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76910] = 7, - ACTIONS(3537), 1, + [76413] = 15, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, + anon_sym_LBRACK, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(3539), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, + ACTIONS(4798), 1, + anon_sym_as, + ACTIONS(4800), 1, + anon_sym_BANG, + ACTIONS(4836), 1, + anon_sym_satisfies, + ACTIONS(5387), 1, + anon_sym_LT, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3527), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3517), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3499), 11, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4634), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3503), 22, + ACTIONS(4638), 17, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -204878,119 +202574,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - [76968] = 33, - ACTIONS(1976), 1, - anon_sym_COMMA, - ACTIONS(3967), 1, + [76487] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4885), 1, + ACTIONS(5233), 1, + anon_sym_LT, + ACTIONS(5239), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(5241), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(5243), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(5247), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(5249), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(5251), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(5255), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(5257), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, - anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(5265), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(5267), 1, sym__ternary_qmark, - ACTIONS(5427), 1, - anon_sym_RPAREN, - STATE(1580), 1, + STATE(2019), 1, sym_type_arguments, - STATE(1656), 1, + STATE(2130), 1, sym_arguments, - STATE(4605), 1, - aux_sym_array_repeat1, - STATE(4828), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(5235), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(5237), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(5245), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(5253), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(5261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(5263), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4792), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_BQUOTE, + ACTIONS(5259), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [77078] = 5, + [76593] = 11, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, + anon_sym_LBRACK, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(5390), 1, + anon_sym_LT, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4145), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4143), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3499), 11, + ACTIONS(4785), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3503), 24, + ACTIONS(4787), 21, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -205008,27 +202705,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77132] = 7, - ACTIONS(4165), 1, - anon_sym_QMARK, + [76659] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4466), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4463), 3, + ACTIONS(5119), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5121), 3, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(4459), 11, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3492), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -205036,10 +202730,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4461), 22, + ACTIONS(3496), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -205059,152 +202754,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77190] = 3, + [76713] = 11, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(4698), 1, + anon_sym_LBRACK, + ACTIONS(5000), 1, + anon_sym_STAR, + ACTIONS(5002), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4127), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4129), 28, + ACTIONS(5004), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5008), 2, + anon_sym_get, + anon_sym_set, + STATE(3147), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 9, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - 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_satisfies, - [77240] = 33, - ACTIONS(1976), 1, - anon_sym_COMMA, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, - anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(4885), 1, - anon_sym_AMP_AMP, - ACTIONS(4887), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, - anon_sym_GT_GT, - ACTIONS(4893), 1, - anon_sym_AMP, - ACTIONS(4895), 1, - anon_sym_CARET, - ACTIONS(4897), 1, - anon_sym_PIPE, - ACTIONS(4901), 1, - anon_sym_PERCENT, - ACTIONS(4903), 1, - anon_sym_STAR_STAR, - ACTIONS(4905), 1, - anon_sym_LT, - ACTIONS(4913), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, - sym__ternary_qmark, - ACTIONS(5429), 1, - anon_sym_RPAREN, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4638), 1, - aux_sym_array_repeat1, - STATE(4828), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4877), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4883), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4891), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4899), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4909), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4911), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [77350] = 8, - ACTIONS(3533), 1, - anon_sym_EQ, - ACTIONS(3614), 1, anon_sym_COLON, - ACTIONS(4637), 1, - anon_sym_LBRACK, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3700), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [76779] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4640), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4378), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3499), 11, + ACTIONS(4474), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -205212,10 +202827,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3503), 22, + ACTIONS(4476), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -205235,107 +202856,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77410] = 33, - ACTIONS(1976), 1, - anon_sym_COMMA, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, - anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(4885), 1, - anon_sym_AMP_AMP, - ACTIONS(4887), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, - anon_sym_GT_GT, - ACTIONS(4893), 1, - anon_sym_AMP, - ACTIONS(4895), 1, - anon_sym_CARET, - ACTIONS(4897), 1, - anon_sym_PIPE, - ACTIONS(4901), 1, - anon_sym_PERCENT, - ACTIONS(4903), 1, - anon_sym_STAR_STAR, - ACTIONS(4905), 1, - anon_sym_LT, - ACTIONS(4913), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, - sym__ternary_qmark, - ACTIONS(5431), 1, - anon_sym_RPAREN, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4646), 1, - aux_sym_array_repeat1, - STATE(4828), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4877), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4883), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4891), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4899), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4909), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4911), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [77520] = 12, - ACTIONS(4627), 1, - anon_sym_LPAREN, - ACTIONS(4629), 1, - anon_sym_LBRACK, - ACTIONS(4631), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(5433), 1, - anon_sym_LT, - STATE(2027), 1, - sym_type_arguments, - STATE(2189), 1, - sym_arguments, - STATE(4602), 1, - sym_optional_chain, + [76829] = 5, + ACTIONS(1828), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4791), 12, + ACTIONS(1820), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1824), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -205345,14 +202875,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4793), 19, - sym__automatic_semicolon, + ACTIONS(1826), 25, sym__ternary_qmark, 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, @@ -205366,39 +202901,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77588] = 15, - ACTIONS(4627), 1, - anon_sym_LPAREN, - ACTIONS(4629), 1, - anon_sym_LBRACK, - ACTIONS(4631), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4809), 1, - anon_sym_as, - ACTIONS(4811), 1, - anon_sym_BANG, - ACTIONS(4847), 1, - anon_sym_satisfies, - ACTIONS(5436), 1, - anon_sym_LT, - STATE(2027), 1, - sym_type_arguments, - STATE(2189), 1, - sym_arguments, - STATE(4602), 1, - sym_optional_chain, + [76883] = 5, + ACTIONS(1838), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4798), 11, + ACTIONS(1830), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1834), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, @@ -205406,13 +202924,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4800), 17, - sym__automatic_semicolon, + ACTIONS(1836), 25, sym__ternary_qmark, + 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, @@ -205426,315 +202950,223 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [77662] = 31, - ACTIONS(4627), 1, + anon_sym_satisfies, + [76937] = 11, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(4624), 1, + anon_sym_LBRACK, + ACTIONS(5393), 1, + anon_sym_STAR, + ACTIONS(5395), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5397), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5399), 2, + anon_sym_get, + anon_sym_set, + STATE(3143), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 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(3700), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [77003] = 32, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4744), 1, + anon_sym_COMMA, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4847), 1, - anon_sym_satisfies, - ACTIONS(5318), 1, - anon_sym_LT, - ACTIONS(5324), 1, + ACTIONS(4804), 1, anon_sym_AMP_AMP, - ACTIONS(5326), 1, + ACTIONS(4806), 1, anon_sym_PIPE_PIPE, - ACTIONS(5328), 1, + ACTIONS(4808), 1, anon_sym_GT_GT, - ACTIONS(5332), 1, + ACTIONS(4812), 1, anon_sym_AMP, - ACTIONS(5334), 1, + ACTIONS(4814), 1, anon_sym_CARET, - ACTIONS(5336), 1, + ACTIONS(4816), 1, anon_sym_PIPE, - ACTIONS(5340), 1, + ACTIONS(4820), 1, anon_sym_PERCENT, - ACTIONS(5342), 1, + ACTIONS(4822), 1, anon_sym_STAR_STAR, - ACTIONS(5350), 1, + ACTIONS(4824), 1, + anon_sym_LT, + ACTIONS(4832), 1, anon_sym_QMARK_QMARK, - ACTIONS(5352), 1, + ACTIONS(4836), 1, + anon_sym_satisfies, + ACTIONS(4838), 1, sym__ternary_qmark, - STATE(2027), 1, + STATE(2019), 1, sym_type_arguments, - STATE(2189), 1, + STATE(2130), 1, sym_arguments, - STATE(4602), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5320), 2, + ACTIONS(4796), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5322), 2, + ACTIONS(4802), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5330), 2, + ACTIONS(4810), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5338), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5346), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5348), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4805), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5344), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [77768] = 11, - ACTIONS(4627), 1, - anon_sym_LPAREN, - ACTIONS(4629), 1, - anon_sym_LBRACK, - ACTIONS(4631), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(5439), 1, - anon_sym_LT, - STATE(2027), 1, - sym_type_arguments, - STATE(2189), 1, - sym_arguments, - STATE(4602), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4781), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4818), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4828), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4783), 21, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - 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, + ACTIONS(4830), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [77834] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4469), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4471), 28, + ACTIONS(5041), 2, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - 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(4826), 3, anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [77884] = 5, - ACTIONS(1877), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1869), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1873), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(1875), 25, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + [77111] = 33, + ACTIONS(4010), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4012), 1, anon_sym_LBRACK, + ACTIONS(4014), 1, anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 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, + ACTIONS(4649), 1, anon_sym_satisfies, - [77938] = 33, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, - anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4704), 1, - anon_sym_LT, ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, + anon_sym_LT, ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4716), 1, anon_sym_AMP_AMP, - ACTIONS(4718), 1, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - ACTIONS(4720), 1, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4724), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(4726), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(4728), 1, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(4732), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4734), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(4742), 1, + ACTIONS(4740), 1, anon_sym_QMARK_QMARK, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(4748), 1, + ACTIONS(4742), 1, sym__ternary_qmark, - ACTIONS(5298), 1, + ACTIONS(5217), 1, anon_sym_COMMA, - ACTIONS(5442), 1, + ACTIONS(5401), 1, anon_sym_RBRACK, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(3772), 1, + STATE(3792), 1, aux_sym_sequence_expression_repeat1, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4706), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4722), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4730), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4738), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4740), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4736), 3, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [78048] = 3, + [77221] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4605), 13, + ACTIONS(4572), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -205748,7 +203180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4607), 28, + ACTIONS(4574), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -205777,29 +203209,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78098] = 10, - ACTIONS(2344), 1, + [77271] = 10, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5150), 1, + ACTIONS(5403), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5444), 2, + ACTIONS(5405), 2, sym_number, sym_private_property_identifier, - ACTIONS(5446), 2, + ACTIONS(5407), 2, anon_sym_get, anon_sym_set, - STATE(3900), 3, + STATE(3888), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 9, + ACTIONS(3814), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -205809,7 +203241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2362), 21, + ACTIONS(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -205831,49 +203263,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [78162] = 15, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(697), 1, - anon_sym_RBRACE, - ACTIONS(2344), 1, + [77335] = 11, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(4686), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(5003), 1, + ACTIONS(5271), 1, anon_sym_STAR, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, - aux_sym_object_repeat1, + ACTIONS(5273), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2368), 2, + ACTIONS(5277), 2, anon_sym_get, anon_sym_set, - STATE(3799), 3, + ACTIONS(5409), 2, + sym_number, + sym_private_property_identifier, + STATE(3060), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 4, + ACTIONS(3814), 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(2362), 21, + ACTIONS(3700), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -205890,50 +203318,191 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [78236] = 16, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(697), 1, - anon_sym_RBRACE, - ACTIONS(2344), 1, - anon_sym_DQUOTE, - ACTIONS(2346), 1, - anon_sym_SQUOTE, - ACTIONS(2364), 1, - anon_sym_async, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(4686), 1, - anon_sym_LBRACK, - ACTIONS(5003), 1, - anon_sym_STAR, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, - aux_sym_object_repeat1, + [77401] = 5, + ACTIONS(1850), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2368), 2, - anon_sym_get, - anon_sym_set, - STATE(3799), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 4, - anon_sym_LPAREN, + ACTIONS(1842), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1846), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(1848), 25, + sym__ternary_qmark, + 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, + anon_sym_satisfies, + [77455] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4516), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(4518), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + 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_satisfies, + [77505] = 7, + ACTIONS(3582), 1, + anon_sym_EQ, + ACTIONS(4608), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4408), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4611), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3492), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3496), 24, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + 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, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_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_satisfies, + [77563] = 10, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(5310), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5411), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5413), 2, + anon_sym_get, + anon_sym_set, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 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(2362), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -205950,17 +203519,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [78312] = 4, + [77627] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1799), 5, + ACTIONS(4576), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(4578), 28, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1803), 13, + anon_sym_of, + 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_satisfies, + [77677] = 5, + ACTIONS(1864), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1856), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1860), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -205974,10 +203589,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1805), 23, + ACTIONS(1862), 25, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -205998,28 +203615,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78364] = 8, - ACTIONS(3543), 1, - anon_sym_EQ, - ACTIONS(4376), 1, - anon_sym_QMARK, - ACTIONS(4637), 1, - anon_sym_LBRACK, + [77731] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4640), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4378), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3499), 11, + ACTIONS(4580), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -206027,10 +203633,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3503), 22, + ACTIONS(4582), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -206050,37 +203662,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78424] = 6, - ACTIONS(4529), 1, - anon_sym_LBRACK, + [77781] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4093), 2, + ACTIONS(5415), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5417), 3, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4532), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3499), 10, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3492), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 25, + anon_sym_GT, + ACTIONS(3496), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -206100,11 +203711,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78480] = 3, + [77835] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4643), 13, + ACTIONS(4520), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -206118,7 +203729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4645), 28, + ACTIONS(4522), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -206147,29 +203758,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78530] = 10, - ACTIONS(2344), 1, + [77885] = 10, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5164), 1, + ACTIONS(5151), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5448), 2, + ACTIONS(5419), 2, sym_number, sym_private_property_identifier, - ACTIONS(5450), 2, + ACTIONS(5421), 2, anon_sym_get, anon_sym_set, - STATE(3802), 3, + STATE(3882), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 9, + ACTIONS(3814), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -206179,7 +203790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2362), 21, + ACTIONS(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -206201,142 +203812,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [78594] = 15, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(699), 1, - anon_sym_RBRACE, - ACTIONS(2344), 1, - anon_sym_DQUOTE, - ACTIONS(2346), 1, - anon_sym_SQUOTE, - ACTIONS(4593), 1, + [77949] = 9, + ACTIONS(3510), 1, anon_sym_EQ, - ACTIONS(4686), 1, - anon_sym_LBRACK, - ACTIONS(5003), 1, - anon_sym_STAR, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2348), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2368), 2, - anon_sym_get, - anon_sym_set, - STATE(3799), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 4, - anon_sym_LPAREN, + ACTIONS(3586), 1, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2362), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [78668] = 16, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(699), 1, - anon_sym_RBRACE, - ACTIONS(2344), 1, - anon_sym_DQUOTE, - ACTIONS(2346), 1, - anon_sym_SQUOTE, - ACTIONS(2364), 1, - anon_sym_async, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(4686), 1, + ACTIONS(4408), 1, + anon_sym_extends, + ACTIONS(4608), 1, anon_sym_LBRACK, - ACTIONS(5003), 1, - anon_sym_STAR, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2348), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2368), 2, - anon_sym_get, - anon_sym_set, - STATE(3799), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2362), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [78744] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1859), 5, - sym__automatic_semicolon, + ACTIONS(4611), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5423), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1863), 13, + anon_sym_RBRACK, + ACTIONS(3492), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -206344,11 +203842,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1865), 23, + ACTIONS(3496), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -206368,17 +203865,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78796] = 4, + [78011] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1811), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1815), 13, + ACTIONS(1860), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -206392,10 +203883,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1817), 23, + ACTIONS(1862), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -206416,11 +203912,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78848] = 3, + [78061] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4609), 13, + ACTIONS(4454), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -206434,7 +203930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4611), 28, + ACTIONS(4456), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -206463,182 +203959,208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78898] = 32, - ACTIONS(4627), 1, + [78111] = 4, + ACTIONS(3562), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3492), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(3496), 27, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4629), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4750), 1, - anon_sym_COMMA, - ACTIONS(4809), 1, - anon_sym_as, - ACTIONS(4811), 1, - anon_sym_BANG, - ACTIONS(4815), 1, anon_sym_AMP_AMP, - ACTIONS(4817), 1, anon_sym_PIPE_PIPE, - ACTIONS(4819), 1, - anon_sym_GT_GT, - ACTIONS(4823), 1, - anon_sym_AMP, - ACTIONS(4825), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4827), 1, - anon_sym_PIPE, - ACTIONS(4831), 1, anon_sym_PERCENT, - ACTIONS(4833), 1, anon_sym_STAR_STAR, - ACTIONS(4835), 1, - anon_sym_LT, - ACTIONS(4843), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4847), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4849), 1, - sym__ternary_qmark, - STATE(2027), 1, - sym_type_arguments, - STATE(2189), 1, - sym_arguments, - STATE(4602), 1, - sym_optional_chain, + [78163] = 10, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4656), 1, + anon_sym_STAR, + ACTIONS(4688), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4807), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4813), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4821), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4829), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4839), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4841), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5064), 2, + ACTIONS(5427), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5429), 2, + anon_sym_get, + anon_sym_set, + STATE(3804), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 9, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, anon_sym_SEMI, - ACTIONS(4837), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [79006] = 33, - ACTIONS(3967), 1, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [78227] = 33, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4879), 1, + ACTIONS(4869), 1, anon_sym_COMMA, - ACTIONS(4885), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(4905), 1, sym__ternary_qmark, - ACTIONS(5452), 1, + ACTIONS(5431), 1, anon_sym_RPAREN, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4650), 1, - aux_sym_sequence_expression_repeat1, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, + STATE(5026), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [79116] = 10, - ACTIONS(2344), 1, + [78337] = 10, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5244), 1, + ACTIONS(5393), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5454), 2, + ACTIONS(5433), 2, sym_number, sym_private_property_identifier, - ACTIONS(5456), 2, + ACTIONS(5435), 2, anon_sym_get, anon_sym_set, - STATE(3818), 3, + STATE(3836), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 9, + ACTIONS(3814), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -206648,7 +204170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2362), 21, + ACTIONS(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -206670,36 +204192,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [79180] = 5, - ACTIONS(5458), 1, - sym__automatic_semicolon, + [78401] = 6, + ACTIONS(4614), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1869), 4, + ACTIONS(4378), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1873), 13, + anon_sym_extends, + ACTIONS(4617), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(4458), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(1875), 23, + ACTIONS(4460), 25, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -206719,183 +204242,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79234] = 33, - ACTIONS(3967), 1, + [78457] = 33, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4879), 1, + ACTIONS(4869), 1, anon_sym_COMMA, - ACTIONS(4885), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(4905), 1, sym__ternary_qmark, - ACTIONS(5460), 1, + ACTIONS(5437), 1, anon_sym_RPAREN, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4650), 1, - aux_sym_sequence_expression_repeat1, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, + STATE(5026), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [79344] = 33, - ACTIONS(3967), 1, + [78567] = 33, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4879), 1, + ACTIONS(4869), 1, anon_sym_COMMA, - ACTIONS(4885), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(4905), 1, sym__ternary_qmark, - ACTIONS(5462), 1, + ACTIONS(5439), 1, anon_sym_RPAREN, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4650), 1, - aux_sym_sequence_expression_repeat1, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, + STATE(5026), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [79454] = 10, - ACTIONS(2344), 1, + [78677] = 10, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5399), 1, + ACTIONS(5350), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5464), 2, + ACTIONS(5441), 2, sym_number, sym_private_property_identifier, - ACTIONS(5466), 2, + ACTIONS(5443), 2, anon_sym_get, anon_sym_set, - STATE(3833), 3, + STATE(3753), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 9, + ACTIONS(3814), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -206905,7 +204428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2362), 21, + ACTIONS(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -206927,106 +204450,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [79518] = 33, - ACTIONS(3967), 1, + [78741] = 33, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4879), 1, + ACTIONS(4869), 1, anon_sym_COMMA, - ACTIONS(4885), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(4905), 1, sym__ternary_qmark, - ACTIONS(5468), 1, + ACTIONS(5445), 1, anon_sym_RPAREN, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4650), 1, - aux_sym_sequence_expression_repeat1, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, + STATE(5026), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [79628] = 10, - ACTIONS(2344), 1, + [78851] = 10, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5470), 1, + ACTIONS(5447), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5472), 2, + ACTIONS(5449), 2, sym_number, sym_private_property_identifier, - ACTIONS(5474), 2, + ACTIONS(5451), 2, anon_sym_get, anon_sym_set, - STATE(3755), 3, + STATE(3828), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 9, + ACTIONS(3814), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -207036,7 +204559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2362), 21, + ACTIONS(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -207058,17 +204581,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [79692] = 4, + [78915] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1915), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1919), 13, + ACTIONS(4524), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -207082,10 +204599,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1921), 23, + ACTIONS(4526), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -207106,35 +204628,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79744] = 4, + [78965] = 7, + ACTIONS(3601), 1, + anon_sym_EQ, + ACTIONS(4408), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1755), 5, - sym__automatic_semicolon, + ACTIONS(4608), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1759), 13, + anon_sym_LBRACK, + ACTIONS(4611), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3492), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(1761), 23, + ACTIONS(3496), 24, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -207154,11 +204679,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79796] = 3, + [79023] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1863), 13, + ACTIONS(1870), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -207172,7 +204697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1865), 28, + ACTIONS(1872), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -207201,11 +204726,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79846] = 3, + [79073] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1815), 13, + ACTIONS(4466), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -207219,7 +204744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1817), 28, + ACTIONS(4468), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -207248,11 +204773,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79896] = 3, + [79123] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1873), 13, + ACTIONS(1794), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -207266,7 +204791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1875), 28, + ACTIONS(1796), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -207295,11 +204820,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79946] = 3, + [79173] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1919), 13, + ACTIONS(1804), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -207313,7 +204838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1921), 28, + ACTIONS(1806), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -207342,18 +204867,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79996] = 5, - ACTIONS(5476), 1, - sym__automatic_semicolon, + [79223] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1769), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1773), 13, + ACTIONS(1814), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -207367,10 +204885,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1775), 23, + ACTIONS(1816), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -207391,11 +204914,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80050] = 3, + [79273] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4481), 13, + ACTIONS(1710), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -207409,7 +204932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4483), 28, + ACTIONS(1712), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -207438,18 +204961,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80100] = 5, - ACTIONS(5478), 1, - sym__automatic_semicolon, + [79323] = 33, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4869), 1, + anon_sym_COMMA, + ACTIONS(4875), 1, + anon_sym_AMP_AMP, + ACTIONS(4877), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4879), 1, + anon_sym_GT_GT, + ACTIONS(4883), 1, + anon_sym_AMP, + ACTIONS(4885), 1, + anon_sym_CARET, + ACTIONS(4887), 1, + anon_sym_PIPE, + ACTIONS(4891), 1, + anon_sym_PERCENT, + ACTIONS(4893), 1, + anon_sym_STAR_STAR, + ACTIONS(4895), 1, + anon_sym_LT, + ACTIONS(4903), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4905), 1, + sym__ternary_qmark, + ACTIONS(5453), 1, + anon_sym_RPAREN, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + STATE(5026), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1779), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1783), 13, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4867), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4873), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4881), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4889), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4901), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4897), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [79433] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4528), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -207463,10 +205056,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1785), 23, + ACTIONS(4530), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -207487,403 +205085,480 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80154] = 33, - ACTIONS(3967), 1, + [79483] = 33, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4704), 1, - anon_sym_LT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4716), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, anon_sym_AMP_AMP, - ACTIONS(4718), 1, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - ACTIONS(4720), 1, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4724), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(4726), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(4728), 1, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(4732), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4734), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(4742), 1, + ACTIONS(4740), 1, anon_sym_QMARK_QMARK, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(4748), 1, + ACTIONS(4742), 1, sym__ternary_qmark, - ACTIONS(5298), 1, + ACTIONS(5217), 1, anon_sym_COMMA, - ACTIONS(5480), 1, + ACTIONS(5455), 1, anon_sym_COLON, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(3772), 1, + STATE(3792), 1, aux_sym_sequence_expression_repeat1, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4706), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4722), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4730), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4738), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4740), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4744), 2, + ACTIONS(4734), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [79593] = 33, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4869), 1, + anon_sym_COMMA, + ACTIONS(4875), 1, + anon_sym_AMP_AMP, + ACTIONS(4877), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4879), 1, + anon_sym_GT_GT, + ACTIONS(4883), 1, + anon_sym_AMP, + ACTIONS(4885), 1, + anon_sym_CARET, + ACTIONS(4887), 1, + anon_sym_PIPE, + ACTIONS(4891), 1, + anon_sym_PERCENT, + ACTIONS(4893), 1, + anon_sym_STAR_STAR, + ACTIONS(4895), 1, + anon_sym_LT, + ACTIONS(4903), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4905), 1, + sym__ternary_qmark, + ACTIONS(5457), 1, + anon_sym_RPAREN, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + STATE(5026), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4736), 3, + ACTIONS(4867), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4873), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4881), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4889), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4901), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [80264] = 33, - ACTIONS(3967), 1, + [79703] = 33, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4879), 1, + ACTIONS(4869), 1, anon_sym_COMMA, - ACTIONS(4885), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(4905), 1, sym__ternary_qmark, - ACTIONS(5482), 1, + ACTIONS(5459), 1, anon_sym_RPAREN, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4650), 1, - aux_sym_sequence_expression_repeat1, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, + STATE(5026), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [80374] = 33, - ACTIONS(3967), 1, + [79813] = 33, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4879), 1, + ACTIONS(4869), 1, anon_sym_COMMA, - ACTIONS(4885), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(4905), 1, sym__ternary_qmark, - ACTIONS(5484), 1, + ACTIONS(5461), 1, anon_sym_RPAREN, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4650), 1, - aux_sym_sequence_expression_repeat1, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, + STATE(5026), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [80484] = 33, - ACTIONS(3967), 1, + [79923] = 33, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4879), 1, + ACTIONS(4869), 1, anon_sym_COMMA, - ACTIONS(4885), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(4905), 1, sym__ternary_qmark, - ACTIONS(5486), 1, + ACTIONS(5463), 1, anon_sym_RPAREN, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4650), 1, - aux_sym_sequence_expression_repeat1, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, + STATE(5026), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [80594] = 33, - ACTIONS(3967), 1, + [80033] = 33, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4704), 1, - anon_sym_LT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4716), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, anon_sym_AMP_AMP, - ACTIONS(4718), 1, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - ACTIONS(4720), 1, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4724), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(4726), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(4728), 1, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(4732), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4734), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(4742), 1, + ACTIONS(4740), 1, anon_sym_QMARK_QMARK, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(4748), 1, + ACTIONS(4742), 1, sym__ternary_qmark, - ACTIONS(5298), 1, + ACTIONS(5217), 1, anon_sym_COMMA, - ACTIONS(5488), 1, + ACTIONS(5465), 1, anon_sym_SEMI, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(3772), 1, + STATE(3792), 1, aux_sym_sequence_expression_repeat1, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4706), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4722), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4730), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4738), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4740), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4736), 3, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [80704] = 5, + [80143] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5490), 2, + ACTIONS(5467), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5492), 3, + ACTIONS(5469), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(3499), 13, + ACTIONS(3492), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -207897,7 +205572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3503), 23, + ACTIONS(3496), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -207921,18 +205596,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80758] = 5, + [80197] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5494), 2, + ACTIONS(5471), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5496), 3, + ACTIONS(5473), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(3499), 13, + ACTIONS(3492), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -207946,7 +205621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3503), 23, + ACTIONS(3496), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -207970,18 +205645,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80812] = 5, + [80251] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5494), 2, + ACTIONS(5471), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5496), 3, + ACTIONS(5473), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(3499), 13, + ACTIONS(3492), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -207995,7 +205670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3503), 23, + ACTIONS(3496), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -208019,18 +205694,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80866] = 5, + [80305] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5494), 2, + ACTIONS(5471), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5496), 3, + ACTIONS(5473), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(3499), 13, + ACTIONS(3492), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -208044,7 +205719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3503), 23, + ACTIONS(3496), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -208068,77 +205743,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80920] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1733), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1737), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(1739), 23, - sym__ternary_qmark, - anon_sym_as, - 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_satisfies, - [80972] = 10, - ACTIONS(2344), 1, + [80359] = 10, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5498), 1, + ACTIONS(5475), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5500), 2, + ACTIONS(5477), 2, sym_number, sym_private_property_identifier, - ACTIONS(5502), 2, + ACTIONS(5479), 2, anon_sym_get, anon_sym_set, - STATE(3864), 3, + STATE(3898), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 9, + ACTIONS(3814), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -208148,7 +205775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2362), 21, + ACTIONS(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -208170,31 +205797,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [81036] = 11, - ACTIONS(1643), 1, + [80423] = 11, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(5498), 1, + ACTIONS(5475), 1, anon_sym_STAR, - ACTIONS(5504), 1, + ACTIONS(5481), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5506), 2, + ACTIONS(5483), 2, sym_number, sym_private_property_identifier, - ACTIONS(5508), 2, + ACTIONS(5485), 2, anon_sym_get, anon_sym_set, - STATE(3078), 3, + STATE(3074), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 9, + ACTIONS(3814), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -208204,7 +205831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3705), 20, + ACTIONS(3700), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -208225,22 +205852,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [81102] = 7, - ACTIONS(3630), 1, + [80489] = 7, + ACTIONS(3592), 1, anon_sym_EQ, - ACTIONS(4378), 1, + ACTIONS(4408), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4637), 2, + ACTIONS(4608), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4640), 3, + ACTIONS(4611), 3, anon_sym_AMP, anon_sym_PIPE, anon_sym_GT, - ACTIONS(3499), 10, + ACTIONS(3492), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -208251,7 +205878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 24, + ACTIONS(3496), 24, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -208276,31 +205903,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [81160] = 11, - ACTIONS(1643), 1, + [80547] = 11, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(5150), 1, + ACTIONS(5137), 1, anon_sym_STAR, - ACTIONS(5152), 1, + ACTIONS(5139), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5158), 2, + ACTIONS(5145), 2, anon_sym_get, anon_sym_set, - ACTIONS(5510), 2, + ACTIONS(5487), 2, sym_number, sym_private_property_identifier, - STATE(3085), 3, + STATE(3079), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 9, + ACTIONS(3814), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -208310,7 +205937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3705), 20, + ACTIONS(3700), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -208331,114 +205958,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [81226] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1821), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1825), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(1827), 23, - sym__ternary_qmark, - anon_sym_as, + [80613] = 33, + ACTIONS(4010), 1, anon_sym_LPAREN, + ACTIONS(4012), 1, anon_sym_LBRACK, + ACTIONS(4014), 1, anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, anon_sym_AMP_AMP, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4718), 1, + anon_sym_GT_GT, + ACTIONS(4722), 1, + anon_sym_AMP, + ACTIONS(4724), 1, anon_sym_CARET, + ACTIONS(4726), 1, + anon_sym_PIPE, + ACTIONS(4730), 1, anon_sym_PERCENT, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4740), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [81278] = 5, - ACTIONS(5512), 1, - sym__automatic_semicolon, + ACTIONS(4742), 1, + sym__ternary_qmark, + ACTIONS(5225), 1, + anon_sym_COMMA, + ACTIONS(5489), 1, + anon_sym_RBRACK, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + STATE(4987), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1839), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1843), 13, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4712), 2, anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT, + ACTIONS(4720), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(1845), 23, - sym__ternary_qmark, - anon_sym_as, - 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, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4734), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [81332] = 4, + [80723] = 7, + ACTIONS(5491), 1, + anon_sym_LPAREN, + ACTIONS(5494), 1, + anon_sym_COLON, + ACTIONS(5496), 1, + anon_sym_LT, + ACTIONS(5499), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1849), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1853), 13, + ACTIONS(4478), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -208448,14 +206057,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1855), 23, + ACTIONS(4480), 25, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -208476,31 +206086,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81384] = 11, - ACTIONS(1643), 1, + [80781] = 11, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(5150), 1, + ACTIONS(5137), 1, anon_sym_STAR, - ACTIONS(5152), 1, + ACTIONS(5139), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5158), 2, + ACTIONS(5145), 2, anon_sym_get, anon_sym_set, - ACTIONS(5514), 2, + ACTIONS(5501), 2, sym_number, sym_private_property_identifier, - STATE(3075), 3, + STATE(3072), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 9, + ACTIONS(3814), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -208510,7 +206120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3705), 20, + ACTIONS(3700), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -208531,11 +206141,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [81450] = 3, + [80847] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4613), 13, + ACTIONS(4584), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -208549,7 +206159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4615), 28, + ACTIONS(4586), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -208578,325 +206188,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81500] = 10, - ACTIONS(2344), 1, - anon_sym_DQUOTE, - ACTIONS(2346), 1, - anon_sym_SQUOTE, - ACTIONS(4686), 1, - anon_sym_LBRACK, - ACTIONS(5516), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5518), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5520), 2, - anon_sym_get, - anon_sym_set, - STATE(3791), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 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(2362), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [81564] = 11, - ACTIONS(1643), 1, - anon_sym_DQUOTE, - ACTIONS(1645), 1, - anon_sym_SQUOTE, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(5516), 1, - anon_sym_STAR, - ACTIONS(5522), 1, - anon_sym_async, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5524), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5526), 2, - anon_sym_get, - anon_sym_set, - STATE(3144), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 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(3705), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [81630] = 11, - ACTIONS(1643), 1, - anon_sym_DQUOTE, - ACTIONS(1645), 1, - anon_sym_SQUOTE, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(5407), 1, - anon_sym_STAR, - ACTIONS(5409), 1, - anon_sym_async, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5413), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5528), 2, - sym_number, - sym_private_property_identifier, - STATE(3083), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 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(3705), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [81696] = 33, - ACTIONS(3967), 1, + [80897] = 33, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4704), 1, - anon_sym_LT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4716), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, anon_sym_AMP_AMP, - ACTIONS(4718), 1, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - ACTIONS(4720), 1, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4724), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(4726), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(4728), 1, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(4732), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4734), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(4742), 1, + ACTIONS(4740), 1, anon_sym_QMARK_QMARK, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(4748), 1, + ACTIONS(4742), 1, sym__ternary_qmark, - ACTIONS(5298), 1, + ACTIONS(5225), 1, anon_sym_COMMA, - ACTIONS(5530), 1, - anon_sym_RBRACE, - STATE(1580), 1, + ACTIONS(5503), 1, + anon_sym_RBRACK, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(3772), 1, - aux_sym_sequence_expression_repeat1, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, + STATE(4987), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4706), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4722), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4730), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4738), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4740), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4736), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [81806] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4517), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4519), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - 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(4734), 3, anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [81856] = 10, - ACTIONS(2344), 1, + [81007] = 10, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, + ACTIONS(5505), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4065), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4688), 2, + ACTIONS(5507), 2, sym_number, sym_private_property_identifier, - STATE(3904), 3, + ACTIONS(5509), 2, + anon_sym_get, + anon_sym_set, + STATE(3802), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 7, + ACTIONS(3814), 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(2362), 23, + ACTIONS(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -208906,8 +206307,6 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -208920,31 +206319,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [81920] = 11, - ACTIONS(1643), 1, + [81071] = 11, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(5164), 1, + ACTIONS(5505), 1, anon_sym_STAR, - ACTIONS(5166), 1, + ACTIONS(5511), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5168), 2, + ACTIONS(5513), 2, sym_number, sym_private_property_identifier, - ACTIONS(5172), 2, + ACTIONS(5515), 2, anon_sym_get, anon_sym_set, - STATE(3158), 3, + STATE(3098), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 9, + ACTIONS(3814), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -208954,7 +206353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3705), 20, + ACTIONS(3700), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -208975,142 +206374,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [81986] = 31, - ACTIONS(3967), 1, + [81137] = 33, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4704), 1, - anon_sym_LT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4716), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4869), 1, + anon_sym_COMMA, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4718), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4720), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4724), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4726), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(4728), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4732), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4734), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4742), 1, + ACTIONS(4895), 1, + anon_sym_LT, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(4748), 1, + ACTIONS(4905), 1, sym__ternary_qmark, - STATE(1580), 1, + ACTIONS(5517), 1, + anon_sym_RPAREN, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, + STATE(5026), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4706), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4712), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4722), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4730), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4738), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4740), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4736), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5532), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - [82092] = 12, - ACTIONS(165), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1557), 1, - anon_sym_DQUOTE, - ACTIONS(1559), 1, - anon_sym_SQUOTE, - ACTIONS(3282), 1, - anon_sym_LBRACE, - ACTIONS(3947), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5084), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5536), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(5249), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5589), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(5596), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(5534), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [82160] = 3, + [81247] = 5, + ACTIONS(1874), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4521), 13, + ACTIONS(1866), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1870), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -209124,15 +206474,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4523), 28, - sym__automatic_semicolon, + ACTIONS(1872), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -209153,11 +206500,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82210] = 3, + [81301] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4485), 13, + ACTIONS(4532), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -209171,7 +206518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4487), 28, + ACTIONS(4534), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -209200,65 +206547,225 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82260] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4617), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4619), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + [81351] = 33, + ACTIONS(4010), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(4012), 1, anon_sym_LBRACK, + ACTIONS(4014), 1, anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, + anon_sym_AMP_AMP, + ACTIONS(4716), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4718), 1, + anon_sym_GT_GT, + ACTIONS(4722), 1, + anon_sym_AMP, + ACTIONS(4724), 1, anon_sym_CARET, + ACTIONS(4726), 1, + anon_sym_PIPE, + ACTIONS(4730), 1, anon_sym_PERCENT, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4740), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4742), 1, + sym__ternary_qmark, + ACTIONS(5217), 1, + anon_sym_COMMA, + ACTIONS(5519), 1, + anon_sym_SEMI, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(3792), 1, + aux_sym_sequence_expression_repeat1, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4712), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4720), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4728), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4736), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4734), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, + [81461] = 31, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, + anon_sym_AMP_AMP, + ACTIONS(4716), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4718), 1, + anon_sym_GT_GT, + ACTIONS(4722), 1, + anon_sym_AMP, + ACTIONS(4724), 1, + anon_sym_CARET, + ACTIONS(4726), 1, + anon_sym_PIPE, + ACTIONS(4730), 1, + anon_sym_PERCENT, + ACTIONS(4732), 1, + anon_sym_STAR_STAR, + ACTIONS(4740), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4742), 1, + sym__ternary_qmark, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [82310] = 5, + ACTIONS(4710), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4712), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4720), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4728), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4736), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4738), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4734), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5521), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + [81567] = 11, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(4624), 1, + anon_sym_LBRACK, + ACTIONS(5151), 1, + anon_sym_STAR, + ACTIONS(5153), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5155), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5159), 2, + anon_sym_get, + anon_sym_set, + STATE(3097), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 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(3700), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [81633] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5013), 2, + ACTIONS(5092), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5112), 3, + ACTIONS(5094), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(3499), 13, + ACTIONS(3492), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -209272,7 +206779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3503), 23, + ACTIONS(3496), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -209296,11 +206803,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82364] = 3, + [81687] = 12, + ACTIONS(162), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(3275), 1, + anon_sym_LBRACE, + ACTIONS(3942), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5064), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5525), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(5225), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5509), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5536), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(5523), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [81755] = 6, + ACTIONS(3611), 1, + anon_sym_EQ, + ACTIONS(3617), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1759), 13, + ACTIONS(3614), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3492), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -209314,15 +206885,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1761), 28, - sym__automatic_semicolon, + ACTIONS(3496), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -209343,11 +206909,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82414] = 3, + [81811] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1773), 13, + ACTIONS(4470), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -209361,7 +206927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1775), 28, + ACTIONS(4472), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -209390,11 +206956,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82464] = 3, + [81861] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1783), 13, + ACTIONS(4490), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -209408,7 +206974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1785), 28, + ACTIONS(4492), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -209437,11 +207003,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82514] = 3, + [81911] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1737), 13, + ACTIONS(4598), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -209455,7 +207021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1739), 28, + ACTIONS(4600), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -209484,11 +207050,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82564] = 3, + [81961] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1825), 13, + ACTIONS(1846), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -209502,7 +207068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1827), 28, + ACTIONS(1848), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -209531,44 +207097,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82614] = 15, - ACTIONS(239), 1, + [82011] = 15, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(672), 1, + ACTIONS(692), 1, anon_sym_RBRACE, - ACTIONS(2344), 1, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5003), 1, + ACTIONS(4990), 1, anon_sym_STAR, - STATE(4823), 1, + STATE(4810), 1, aux_sym_object_repeat1, - STATE(4834), 1, + STATE(4815), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - ACTIONS(2368), 2, + ACTIONS(2357), 2, anon_sym_get, anon_sym_set, - STATE(3799), 3, + STATE(3816), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 4, + ACTIONS(3814), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2362), 21, + ACTIONS(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -209590,121 +207156,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [82688] = 31, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, - anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(5174), 1, - anon_sym_LT, - ACTIONS(5180), 1, - anon_sym_AMP_AMP, - ACTIONS(5182), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5184), 1, - anon_sym_GT_GT, - ACTIONS(5188), 1, - anon_sym_AMP, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_PIPE, - ACTIONS(5196), 1, - anon_sym_PERCENT, - ACTIONS(5198), 1, - anon_sym_STAR_STAR, - ACTIONS(5206), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5208), 1, - sym__ternary_qmark, - STATE(1656), 1, - sym_arguments, - STATE(2594), 1, - sym_type_arguments, - STATE(4828), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5176), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5186), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5194), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5204), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5200), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5538), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - [82794] = 16, - ACTIONS(239), 1, + [82085] = 16, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(672), 1, + ACTIONS(692), 1, anon_sym_RBRACE, - ACTIONS(2344), 1, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(2364), 1, + ACTIONS(2353), 1, anon_sym_async, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5003), 1, + ACTIONS(4990), 1, anon_sym_STAR, - STATE(4823), 1, + STATE(4810), 1, aux_sym_object_repeat1, - STATE(4834), 1, + STATE(4815), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - ACTIONS(2368), 2, + ACTIONS(2357), 2, anon_sym_get, anon_sym_set, - STATE(3799), 3, + STATE(3816), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 4, + ACTIONS(3814), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2362), 20, + ACTIONS(2351), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -209725,249 +207216,199 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [82870] = 33, - ACTIONS(3967), 1, + [82161] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1762), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(1764), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3969), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(4879), 1, - anon_sym_COMMA, - ACTIONS(4885), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, - anon_sym_GT_GT, - ACTIONS(4893), 1, - anon_sym_AMP, - ACTIONS(4895), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4897), 1, - anon_sym_PIPE, - ACTIONS(4901), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, - anon_sym_LT, - ACTIONS(4913), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, - sym__ternary_qmark, - ACTIONS(5540), 1, - anon_sym_RPAREN, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4650), 1, - aux_sym_sequence_expression_repeat1, - STATE(4828), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [82211] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(1774), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4883), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4891), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4899), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [82980] = 33, - ACTIONS(3967), 1, + anon_sym_GT, + ACTIONS(1776), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3969), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(4879), 1, - anon_sym_COMMA, - ACTIONS(4885), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, - anon_sym_GT_GT, - ACTIONS(4893), 1, - anon_sym_AMP, - ACTIONS(4895), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4897), 1, - anon_sym_PIPE, - ACTIONS(4901), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, - anon_sym_LT, - ACTIONS(4913), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, - sym__ternary_qmark, - ACTIONS(5542), 1, - anon_sym_RPAREN, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4650), 1, - aux_sym_sequence_expression_repeat1, - STATE(4828), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [82261] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(1784), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4883), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4891), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4899), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [83090] = 33, - ACTIONS(3967), 1, + anon_sym_GT, + ACTIONS(1786), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3969), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(4879), 1, - anon_sym_COMMA, - ACTIONS(4885), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, - anon_sym_GT_GT, - ACTIONS(4893), 1, - anon_sym_AMP, - ACTIONS(4895), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4897), 1, - anon_sym_PIPE, - ACTIONS(4901), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, - anon_sym_LT, - ACTIONS(4913), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, - sym__ternary_qmark, - ACTIONS(5544), 1, - anon_sym_RPAREN, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4650), 1, - aux_sym_sequence_expression_repeat1, - STATE(4828), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [82311] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(1824), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4883), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4891), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4899), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + anon_sym_GT, + ACTIONS(1826), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + 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, - ACTIONS(4907), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [83200] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [82361] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5546), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5548), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3499), 13, + ACTIONS(1834), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -209981,10 +207422,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3503), 23, + ACTIONS(1836), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -210005,252 +207451,324 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83254] = 33, - ACTIONS(3967), 1, + [82411] = 33, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4704), 1, - anon_sym_LT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4716), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4869), 1, + anon_sym_COMMA, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4718), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4720), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4724), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4726), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(4728), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4732), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4734), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4742), 1, + ACTIONS(4895), 1, + anon_sym_LT, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(4748), 1, + ACTIONS(4905), 1, sym__ternary_qmark, - ACTIONS(5298), 1, - anon_sym_COMMA, - ACTIONS(5550), 1, - anon_sym_SEMI, - STATE(1580), 1, + ACTIONS(5527), 1, + anon_sym_RPAREN, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(3772), 1, - aux_sym_sequence_expression_repeat1, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, + STATE(5026), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4706), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4712), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4722), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4730), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4738), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4740), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4736), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [83364] = 33, - ACTIONS(3967), 1, + [82521] = 33, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4704), 1, - anon_sym_LT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4716), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4869), 1, + anon_sym_COMMA, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4718), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4720), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4724), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4726), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(4728), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4732), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4734), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4742), 1, + ACTIONS(4895), 1, + anon_sym_LT, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(4748), 1, + ACTIONS(4905), 1, sym__ternary_qmark, - ACTIONS(5298), 1, - anon_sym_COMMA, - ACTIONS(5552), 1, - anon_sym_SEMI, - STATE(1580), 1, + ACTIONS(5529), 1, + anon_sym_RPAREN, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(3772), 1, - aux_sym_sequence_expression_repeat1, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, + STATE(5026), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4706), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4712), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4722), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4730), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4738), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4740), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4736), 3, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [83474] = 10, - ACTIONS(2344), 1, - anon_sym_DQUOTE, - ACTIONS(2346), 1, - anon_sym_SQUOTE, - ACTIONS(4686), 1, + [82631] = 33, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(5554), 1, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4869), 1, + anon_sym_COMMA, + ACTIONS(4875), 1, + anon_sym_AMP_AMP, + ACTIONS(4877), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4879), 1, + anon_sym_GT_GT, + ACTIONS(4883), 1, + anon_sym_AMP, + ACTIONS(4885), 1, + anon_sym_CARET, + ACTIONS(4887), 1, + anon_sym_PIPE, + ACTIONS(4891), 1, + anon_sym_PERCENT, + ACTIONS(4893), 1, + anon_sym_STAR_STAR, + ACTIONS(4895), 1, + anon_sym_LT, + ACTIONS(4903), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4905), 1, + sym__ternary_qmark, + ACTIONS(5531), 1, + anon_sym_RPAREN, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + STATE(5026), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4867), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4873), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4881), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4889), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4901), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4897), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [82741] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5556), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5558), 2, - anon_sym_get, - anon_sym_set, - STATE(3771), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 9, - sym__automatic_semicolon, + ACTIONS(5533), 2, anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5535), 3, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, + ACTIONS(3492), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2362), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [83538] = 15, - ACTIONS(239), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(3496), 23, + sym__ternary_qmark, + anon_sym_as, + 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_satisfies, + [82795] = 15, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(2344), 1, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5003), 1, + ACTIONS(4990), 1, anon_sym_STAR, - ACTIONS(5005), 1, + ACTIONS(5051), 1, anon_sym_RBRACE, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, + STATE(4792), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - ACTIONS(2368), 2, + ACTIONS(2357), 2, anon_sym_get, anon_sym_set, - STATE(3799), 3, + STATE(3816), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 4, + ACTIONS(3814), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2362), 21, + ACTIONS(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -210272,16 +207790,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [83612] = 5, - ACTIONS(1807), 1, - sym__automatic_semicolon, + [82869] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1799), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1803), 13, + ACTIONS(4494), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -210295,12 +207808,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1805), 25, + ACTIONS(4496), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -210321,46 +207837,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83666] = 16, - ACTIONS(239), 1, + [82919] = 16, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(2344), 1, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(2364), 1, + ACTIONS(2353), 1, anon_sym_async, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5003), 1, + ACTIONS(4990), 1, anon_sym_STAR, - ACTIONS(5005), 1, + ACTIONS(5051), 1, anon_sym_RBRACE, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, + STATE(4792), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - ACTIONS(2368), 2, + ACTIONS(2357), 2, anon_sym_get, anon_sym_set, - STATE(3799), 3, + STATE(3816), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 4, + ACTIONS(3814), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2362), 20, + ACTIONS(2351), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -210381,98 +207897,232 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [83742] = 33, - ACTIONS(1976), 1, + [82995] = 10, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(5537), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5539), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5541), 2, + anon_sym_get, + anon_sym_set, + STATE(3890), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 9, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - ACTIONS(3967), 1, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [83059] = 33, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4885), 1, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(4740), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4742), 1, + sym__ternary_qmark, + ACTIONS(5217), 1, + anon_sym_COMMA, + ACTIONS(5543), 1, + anon_sym_SEMI, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(3792), 1, + aux_sym_sequence_expression_repeat1, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4712), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4720), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4728), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4736), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4738), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4734), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [83169] = 33, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(4714), 1, + anon_sym_AMP_AMP, + ACTIONS(4716), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4718), 1, + anon_sym_GT_GT, + ACTIONS(4722), 1, + anon_sym_AMP, + ACTIONS(4724), 1, + anon_sym_CARET, + ACTIONS(4726), 1, + anon_sym_PIPE, + ACTIONS(4730), 1, + anon_sym_PERCENT, + ACTIONS(4732), 1, + anon_sym_STAR_STAR, + ACTIONS(4740), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(4742), 1, sym__ternary_qmark, - ACTIONS(5560), 1, - anon_sym_RPAREN, - STATE(1580), 1, + ACTIONS(5217), 1, + anon_sym_COMMA, + ACTIONS(5545), 1, + anon_sym_SEMI, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4700), 1, - aux_sym_array_repeat1, - STATE(4828), 1, + STATE(3792), 1, + aux_sym_sequence_expression_repeat1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [83852] = 4, - ACTIONS(5296), 1, - sym_regex_flags, + [83279] = 6, + ACTIONS(4408), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4917), 17, + ACTIONS(4611), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4608), 3, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(3492), 11, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_of, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -210480,15 +208130,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - anon_sym_instanceof, - anon_sym_satisfies, - ACTIONS(4919), 23, - sym__automatic_semicolon, + ACTIONS(3496), 24, sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -210503,41 +208150,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [83904] = 7, - ACTIONS(5562), 1, - anon_sym_LPAREN, - ACTIONS(5565), 1, - anon_sym_COLON, - ACTIONS(5567), 1, - anon_sym_LT, - ACTIONS(5570), 1, - anon_sym_QMARK, + anon_sym_satisfies, + [83335] = 6, + ACTIONS(4378), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3499), 12, + ACTIONS(4617), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4614), 3, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(4458), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3503), 25, - sym__automatic_semicolon, + ACTIONS(4460), 24, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -210557,11 +208205,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83962] = 3, + [83391] = 10, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(5271), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5547), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5549), 2, + anon_sym_get, + anon_sym_set, + STATE(3851), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 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(2351), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [83455] = 33, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4869), 1, + anon_sym_COMMA, + ACTIONS(4875), 1, + anon_sym_AMP_AMP, + ACTIONS(4877), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4879), 1, + anon_sym_GT_GT, + ACTIONS(4883), 1, + anon_sym_AMP, + ACTIONS(4885), 1, + anon_sym_CARET, + ACTIONS(4887), 1, + anon_sym_PIPE, + ACTIONS(4891), 1, + anon_sym_PERCENT, + ACTIONS(4893), 1, + anon_sym_STAR_STAR, + ACTIONS(4895), 1, + anon_sym_LT, + ACTIONS(4903), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4905), 1, + sym__ternary_qmark, + ACTIONS(5551), 1, + anon_sym_RPAREN, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + STATE(5026), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4867), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4873), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4881), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4889), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4899), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4901), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4897), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [83565] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4525), 13, + ACTIONS(4458), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -210575,7 +208354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4527), 28, + ACTIONS(4460), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -210604,37 +208383,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [84012] = 6, - ACTIONS(4637), 1, + [83615] = 21, + ACTIONS(231), 1, + anon_sym_STAR, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(2019), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4378), 2, + ACTIONS(5555), 1, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4640), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3499), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(5557), 1, + anon_sym_RBRACE, + ACTIONS(5559), 1, + anon_sym_async, + ACTIONS(5563), 1, + anon_sym_static, + ACTIONS(5565), 1, + anon_sym_readonly, + ACTIONS(5571), 1, + anon_sym_override, + STATE(2786), 1, + sym_accessibility_modifier, + STATE(2808), 1, + sym_override_modifier, + STATE(4925), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5561), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5567), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5569), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3688), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4910), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(5553), 14, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [83701] = 15, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4622), 1, + anon_sym_EQ, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(4990), 1, + anon_sym_STAR, + ACTIONS(5053), 1, + anon_sym_RBRACE, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2337), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2357), 2, + anon_sym_get, + anon_sym_set, + STATE(3816), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [83775] = 5, + ACTIONS(1714), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1706), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1710), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 25, + anon_sym_GT, + ACTIONS(1712), 25, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -210654,29 +208556,190 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [84068] = 9, - ACTIONS(3515), 1, + [83829] = 16, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(2353), 1, + anon_sym_async, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(3614), 1, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(4990), 1, + anon_sym_STAR, + ACTIONS(5053), 1, + anon_sym_RBRACE, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2337), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2357), 2, + anon_sym_get, + anon_sym_set, + STATE(3816), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 4, + anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(4378), 1, - anon_sym_extends, - ACTIONS(4637), 1, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [83905] = 9, + ACTIONS(3808), 1, + anon_sym_COMMA, + ACTIONS(3909), 1, + anon_sym_RBRACE, + ACTIONS(4622), 1, + anon_sym_EQ, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1971), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3814), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1969), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [83967] = 9, + ACTIONS(3808), 1, + anon_sym_COMMA, + ACTIONS(3909), 1, + anon_sym_RBRACE, + ACTIONS(4622), 1, + anon_sym_EQ, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1975), 6, + anon_sym_STAR, anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3814), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1973), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [84029] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4640), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5572), 2, + ACTIONS(5092), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5130), 3, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3499), 11, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3492), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -210684,10 +208747,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3503), 22, + ACTIONS(3496), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -210707,163 +208771,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [84130] = 31, - ACTIONS(4627), 1, - anon_sym_LPAREN, - ACTIONS(4629), 1, - anon_sym_LBRACK, - ACTIONS(4631), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4809), 1, - anon_sym_as, - ACTIONS(4811), 1, - anon_sym_BANG, - ACTIONS(4815), 1, - anon_sym_AMP_AMP, - ACTIONS(4817), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4819), 1, - anon_sym_GT_GT, - ACTIONS(4823), 1, - anon_sym_AMP, - ACTIONS(4825), 1, - anon_sym_CARET, - ACTIONS(4827), 1, - anon_sym_PIPE, - ACTIONS(4831), 1, - anon_sym_PERCENT, - ACTIONS(4833), 1, - anon_sym_STAR_STAR, - ACTIONS(4835), 1, - anon_sym_LT, - ACTIONS(4843), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4847), 1, - anon_sym_satisfies, - ACTIONS(4849), 1, - sym__ternary_qmark, - STATE(2027), 1, - sym_type_arguments, - STATE(2189), 1, - sym_arguments, - STATE(4602), 1, - sym_optional_chain, + [84083] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4807), 2, + ACTIONS(4120), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4288), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4813), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4821), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4829), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4839), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4841), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4837), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4866), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [84236] = 33, - ACTIONS(3967), 1, + anon_sym_GT, + ACTIONS(4290), 25, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3969), 1, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4704), 1, - anon_sym_LT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4716), 1, anon_sym_AMP_AMP, - ACTIONS(4718), 1, anon_sym_PIPE_PIPE, - ACTIONS(4720), 1, - anon_sym_GT_GT, - ACTIONS(4724), 1, - anon_sym_AMP, - ACTIONS(4726), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4728), 1, - anon_sym_PIPE, - ACTIONS(4732), 1, anon_sym_PERCENT, - ACTIONS(4734), 1, anon_sym_STAR_STAR, - ACTIONS(4742), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(4748), 1, - sym__ternary_qmark, - ACTIONS(5298), 1, - anon_sym_COMMA, - ACTIONS(5576), 1, - anon_sym_RBRACK, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(3772), 1, - aux_sym_sequence_expression_repeat1, - STATE(4828), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4706), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4712), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4722), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4730), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4738), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4740), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4736), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [84346] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [84135] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4501), 13, + ACTIONS(4322), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4288), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -210877,15 +208841,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4503), 28, - sym__automatic_semicolon, + ACTIONS(4290), 25, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -210906,44 +208867,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [84396] = 10, - ACTIONS(2344), 1, + [84187] = 11, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(5230), 1, + ACTIONS(5537), 1, anon_sym_STAR, + ACTIONS(5573), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5578), 2, + ACTIONS(5575), 2, sym_number, sym_private_property_identifier, - ACTIONS(5580), 2, + ACTIONS(5577), 2, anon_sym_get, anon_sym_set, - STATE(3773), 3, + STATE(3073), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 9, + ACTIONS(3814), 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(2362), 21, + ACTIONS(3700), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -210960,49 +208922,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [84460] = 11, - ACTIONS(1643), 1, - anon_sym_DQUOTE, - ACTIONS(1645), 1, - anon_sym_SQUOTE, - ACTIONS(4595), 1, + [84253] = 31, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(5554), 1, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4798), 1, + anon_sym_as, + ACTIONS(4800), 1, + anon_sym_BANG, + ACTIONS(4804), 1, + anon_sym_AMP_AMP, + ACTIONS(4806), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4808), 1, + anon_sym_GT_GT, + ACTIONS(4812), 1, + anon_sym_AMP, + ACTIONS(4814), 1, + anon_sym_CARET, + ACTIONS(4816), 1, + anon_sym_PIPE, + ACTIONS(4820), 1, + anon_sym_PERCENT, + ACTIONS(4822), 1, + anon_sym_STAR_STAR, + ACTIONS(4824), 1, + anon_sym_LT, + ACTIONS(4832), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4836), 1, + anon_sym_satisfies, + ACTIONS(4838), 1, + sym__ternary_qmark, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4796), 2, anon_sym_STAR, - ACTIONS(5582), 1, - anon_sym_async, + anon_sym_SLASH, + ACTIONS(4802), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4810), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4828), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4830), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4826), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5014), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [84359] = 9, + ACTIONS(3808), 1, + anon_sym_COMMA, + ACTIONS(3906), 1, + anon_sym_RBRACE, + ACTIONS(4622), 1, + anon_sym_EQ, + STATE(4810), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5584), 2, + ACTIONS(1971), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(5586), 2, + ACTIONS(3814), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1969), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, - STATE(3072), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 9, - sym__automatic_semicolon, - anon_sym_EQ, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [84421] = 9, + ACTIONS(3808), 1, anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3906), 1, + anon_sym_RBRACE, + ACTIONS(4622), 1, + anon_sym_EQ, + STATE(4810), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1975), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3814), 7, + sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3705), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(1973), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -211015,13 +209103,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [84526] = 4, - ACTIONS(3569), 1, + [84483] = 4, + ACTIONS(3578), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3499), 13, + ACTIONS(3492), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -211035,7 +209123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3503), 27, + ACTIONS(3496), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -211063,31 +209151,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [84578] = 11, - ACTIONS(1643), 1, + [84535] = 11, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(5407), 1, + ACTIONS(5271), 1, anon_sym_STAR, - ACTIONS(5409), 1, + ACTIONS(5273), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5413), 2, + ACTIONS(5277), 2, anon_sym_get, anon_sym_set, - ACTIONS(5588), 2, + ACTIONS(5579), 2, sym_number, sym_private_property_identifier, - STATE(3073), 3, + STATE(3081), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 9, + ACTIONS(3814), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -211097,7 +209185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3705), 20, + ACTIONS(3700), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -211118,1380 +209206,1222 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [84644] = 33, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, - anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4704), 1, - anon_sym_LT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, + [84601] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1734), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4716), 1, - anon_sym_AMP_AMP, - ACTIONS(4718), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4720), 1, + anon_sym_in, anon_sym_GT_GT, - ACTIONS(4724), 1, anon_sym_AMP, - ACTIONS(4726), 1, - anon_sym_CARET, - ACTIONS(4728), 1, anon_sym_PIPE, - ACTIONS(4732), 1, - anon_sym_PERCENT, - ACTIONS(4734), 1, - anon_sym_STAR_STAR, - ACTIONS(4742), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(4748), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(1736), 28, + sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(5298), 1, + anon_sym_as, anon_sym_COMMA, - ACTIONS(5590), 1, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(3772), 1, - aux_sym_sequence_expression_repeat1, - STATE(4828), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4706), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4712), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4722), 2, + anon_sym_of, + 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, - ACTIONS(4730), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4738), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4740), 2, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4736), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [84754] = 33, - ACTIONS(1976), 1, - anon_sym_COMMA, - ACTIONS(3967), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [84651] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4885), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(4895), 1, anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(4905), 1, sym__ternary_qmark, - ACTIONS(5592), 1, - anon_sym_RPAREN, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4555), 1, - aux_sym_array_repeat1, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(5521), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [84864] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1990), 6, - anon_sym_STAR, + [84756] = 16, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3819), 11, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5583), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1988), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [84915] = 5, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4145), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(4143), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3499), 11, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4762), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3503), 22, + ACTIONS(4760), 15, sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - [84968] = 8, - ACTIONS(2344), 1, - anon_sym_DQUOTE, - ACTIONS(2346), 1, - anon_sym_SQUOTE, - ACTIONS(4686), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5363), 2, - sym_number, - sym_private_property_identifier, - STATE(3794), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + [84831] = 20, + ACTIONS(4010), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2362), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [85027] = 8, - ACTIONS(2344), 1, - anon_sym_DQUOTE, - ACTIONS(2346), 1, - anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5240), 2, - sym_number, - sym_private_property_identifier, - STATE(3760), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 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(2362), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [85086] = 8, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(5594), 1, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, + anon_sym_GT_GT, + ACTIONS(5596), 1, + anon_sym_PERCENT, + ACTIONS(5598), 1, anon_sym_LT, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4700), 12, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5586), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5588), 2, anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT, + ACTIONS(5592), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5594), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5600), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4762), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4702), 23, + ACTIONS(4760), 11, sym__ternary_qmark, anon_sym_as, 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, anon_sym_satisfies, - [85145] = 31, - ACTIONS(3967), 1, + [84914] = 27, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(5594), 1, + ACTIONS(4762), 1, + anon_sym_BANG, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, + anon_sym_GT_GT, + ACTIONS(5596), 1, + anon_sym_PERCENT, + ACTIONS(5598), 1, anon_sym_LT, - ACTIONS(5600), 1, - anon_sym_AMP_AMP, ACTIONS(5602), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5604), 1, - anon_sym_GT_GT, - ACTIONS(5608), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5606), 1, anon_sym_AMP, - ACTIONS(5610), 1, + ACTIONS(5608), 1, anon_sym_CARET, - ACTIONS(5612), 1, + ACTIONS(5610), 1, anon_sym_PIPE, - ACTIONS(5616), 1, - anon_sym_PERCENT, - ACTIONS(5618), 1, - anon_sym_STAR_STAR, - ACTIONS(5626), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5628), 1, - sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4483), 2, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5596), 2, + ACTIONS(5586), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5598), 2, + ACTIONS(5588), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5606), 2, + ACTIONS(5592), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5614), 2, + ACTIONS(5594), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5622), 2, + ACTIONS(5612), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5624), 2, + ACTIONS(5614), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, + ACTIONS(5600), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [85250] = 31, - ACTIONS(3967), 1, + ACTIONS(4760), 6, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COLON, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [85011] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5594), 1, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, + anon_sym_GT_GT, + ACTIONS(5596), 1, + anon_sym_PERCENT, + ACTIONS(5598), 1, anon_sym_LT, - ACTIONS(5600), 1, - anon_sym_AMP_AMP, ACTIONS(5602), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5604), 1, - anon_sym_GT_GT, - ACTIONS(5608), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5606), 1, anon_sym_AMP, - ACTIONS(5610), 1, + ACTIONS(5608), 1, anon_sym_CARET, - ACTIONS(5612), 1, + ACTIONS(5610), 1, anon_sym_PIPE, ACTIONS(5616), 1, - anon_sym_PERCENT, - ACTIONS(5618), 1, - anon_sym_STAR_STAR, - ACTIONS(5626), 1, anon_sym_QMARK_QMARK, - ACTIONS(5628), 1, + ACTIONS(5618), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4750), 2, + ACTIONS(4522), 2, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(5596), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5586), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5598), 2, + ACTIONS(5588), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5606), 2, + ACTIONS(5592), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5614), 2, + ACTIONS(5594), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5622), 2, + ACTIONS(5612), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5624), 2, + ACTIONS(5614), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, + ACTIONS(5600), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [85355] = 31, - ACTIONS(3967), 1, + [85116] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5594), 1, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, + anon_sym_GT_GT, + ACTIONS(5596), 1, + anon_sym_PERCENT, + ACTIONS(5598), 1, anon_sym_LT, - ACTIONS(5600), 1, - anon_sym_AMP_AMP, ACTIONS(5602), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5604), 1, - anon_sym_GT_GT, - ACTIONS(5608), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5606), 1, anon_sym_AMP, - ACTIONS(5610), 1, + ACTIONS(5608), 1, anon_sym_CARET, - ACTIONS(5612), 1, + ACTIONS(5610), 1, anon_sym_PIPE, ACTIONS(5616), 1, - anon_sym_PERCENT, - ACTIONS(5618), 1, - anon_sym_STAR_STAR, - ACTIONS(5626), 1, anon_sym_QMARK_QMARK, - ACTIONS(5628), 1, + ACTIONS(5618), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4752), 2, + ACTIONS(4767), 2, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(5596), 2, + ACTIONS(5586), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5598), 2, + ACTIONS(5588), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5606), 2, + ACTIONS(5592), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5614), 2, + ACTIONS(5594), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5622), 2, + ACTIONS(5612), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5624), 2, + ACTIONS(5614), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, + ACTIONS(5600), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [85460] = 31, - ACTIONS(3967), 1, + [85221] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5594), 1, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, + anon_sym_GT_GT, + ACTIONS(5596), 1, + anon_sym_PERCENT, + ACTIONS(5598), 1, anon_sym_LT, - ACTIONS(5600), 1, - anon_sym_AMP_AMP, ACTIONS(5602), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5604), 1, - anon_sym_GT_GT, - ACTIONS(5608), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5606), 1, anon_sym_AMP, - ACTIONS(5610), 1, + ACTIONS(5608), 1, anon_sym_CARET, - ACTIONS(5612), 1, + ACTIONS(5610), 1, anon_sym_PIPE, ACTIONS(5616), 1, - anon_sym_PERCENT, - ACTIONS(5618), 1, - anon_sym_STAR_STAR, - ACTIONS(5626), 1, anon_sym_QMARK_QMARK, - ACTIONS(5628), 1, + ACTIONS(5618), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4754), 2, + ACTIONS(4546), 2, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(5596), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5586), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5598), 2, + ACTIONS(5588), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5606), 2, + ACTIONS(5592), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5614), 2, + ACTIONS(5594), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5622), 2, + ACTIONS(5612), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5624), 2, + ACTIONS(5614), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, + ACTIONS(5600), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [85565] = 31, - ACTIONS(3967), 1, + [85326] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5594), 1, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, + anon_sym_GT_GT, + ACTIONS(5596), 1, + anon_sym_PERCENT, + ACTIONS(5598), 1, anon_sym_LT, - ACTIONS(5600), 1, - anon_sym_AMP_AMP, ACTIONS(5602), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5604), 1, - anon_sym_GT_GT, - ACTIONS(5608), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5606), 1, anon_sym_AMP, - ACTIONS(5610), 1, + ACTIONS(5608), 1, anon_sym_CARET, - ACTIONS(5612), 1, + ACTIONS(5610), 1, anon_sym_PIPE, ACTIONS(5616), 1, - anon_sym_PERCENT, - ACTIONS(5618), 1, - anon_sym_STAR_STAR, - ACTIONS(5626), 1, anon_sym_QMARK_QMARK, - ACTIONS(5628), 1, + ACTIONS(5618), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4523), 2, + ACTIONS(4554), 2, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5596), 2, + ACTIONS(5586), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5598), 2, + ACTIONS(5588), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5606), 2, + ACTIONS(5592), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5614), 2, + ACTIONS(5594), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5622), 2, + ACTIONS(5612), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5624), 2, + ACTIONS(5614), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, + ACTIONS(5600), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [85670] = 18, - ACTIONS(3967), 1, + [85431] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5594), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, + anon_sym_GT_GT, + ACTIONS(5596), 1, + anon_sym_PERCENT, + ACTIONS(5598), 1, anon_sym_LT, + ACTIONS(5602), 1, + anon_sym_AMP_AMP, ACTIONS(5604), 1, - anon_sym_GT_GT, + anon_sym_PIPE_PIPE, + ACTIONS(5606), 1, + anon_sym_AMP, + ACTIONS(5608), 1, + anon_sym_CARET, + ACTIONS(5610), 1, + anon_sym_PIPE, ACTIONS(5616), 1, - anon_sym_PERCENT, + anon_sym_QMARK_QMARK, ACTIONS(5618), 1, - anon_sym_STAR_STAR, - STATE(1580), 1, + sym__ternary_qmark, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4558), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5596), 2, + ACTIONS(5586), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5606), 2, + ACTIONS(5588), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5592), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5614), 2, + ACTIONS(5594), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4758), 7, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5612), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4756), 14, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(5614), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5600), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - anon_sym_satisfies, - [85749] = 13, - ACTIONS(3967), 1, + [85536] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5618), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5581), 1, anon_sym_STAR_STAR, - ACTIONS(5630), 1, - anon_sym_LT, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4758), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(5590), 1, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4756), 17, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(5596), 1, anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_BQUOTE, - anon_sym_satisfies, - [85818] = 25, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, - anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4758), 1, - anon_sym_BANG, - ACTIONS(5594), 1, + ACTIONS(5598), 1, anon_sym_LT, + ACTIONS(5602), 1, + anon_sym_AMP_AMP, ACTIONS(5604), 1, - anon_sym_GT_GT, - ACTIONS(5608), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5606), 1, anon_sym_AMP, - ACTIONS(5610), 1, + ACTIONS(5608), 1, anon_sym_CARET, - ACTIONS(5612), 1, + ACTIONS(5610), 1, anon_sym_PIPE, ACTIONS(5616), 1, - anon_sym_PERCENT, + anon_sym_QMARK_QMARK, ACTIONS(5618), 1, - anon_sym_STAR_STAR, - STATE(1580), 1, + sym__ternary_qmark, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5596), 2, + ACTIONS(4769), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(5586), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5598), 2, + ACTIONS(5588), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5606), 2, + ACTIONS(5592), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5614), 2, + ACTIONS(5594), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5622), 2, + ACTIONS(5612), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5624), 2, + ACTIONS(5614), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, + ACTIONS(5600), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4756), 8, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [85911] = 26, - ACTIONS(3967), 1, + [85641] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4758), 1, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(5594), 1, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, + anon_sym_GT_GT, + ACTIONS(5596), 1, + anon_sym_PERCENT, + ACTIONS(5598), 1, anon_sym_LT, - ACTIONS(5600), 1, + ACTIONS(5602), 1, anon_sym_AMP_AMP, ACTIONS(5604), 1, - anon_sym_GT_GT, - ACTIONS(5608), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5606), 1, anon_sym_AMP, - ACTIONS(5610), 1, + ACTIONS(5608), 1, anon_sym_CARET, - ACTIONS(5612), 1, + ACTIONS(5610), 1, anon_sym_PIPE, ACTIONS(5616), 1, - anon_sym_PERCENT, + anon_sym_QMARK_QMARK, ACTIONS(5618), 1, - anon_sym_STAR_STAR, - STATE(1580), 1, + sym__ternary_qmark, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5596), 2, + ACTIONS(4771), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(5586), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5598), 2, + ACTIONS(5588), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5606), 2, + ACTIONS(5592), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5614), 2, + ACTIONS(5594), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5622), 2, + ACTIONS(5612), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5624), 2, + ACTIONS(5614), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, + ACTIONS(5600), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4756), 7, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [86006] = 16, - ACTIONS(3967), 1, + [85746] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5616), 1, - anon_sym_PERCENT, - ACTIONS(5618), 1, - anon_sym_STAR_STAR, - ACTIONS(5630), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, anon_sym_LT, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5596), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5614), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4758), 8, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4756), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COLON, + ACTIONS(4714), 1, anon_sym_AMP_AMP, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_BQUOTE, - anon_sym_satisfies, - [86081] = 22, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, - anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(5594), 1, - anon_sym_LT, - ACTIONS(5604), 1, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(5616), 1, + ACTIONS(4722), 1, + anon_sym_AMP, + ACTIONS(4724), 1, + anon_sym_CARET, + ACTIONS(4726), 1, + anon_sym_PIPE, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(5618), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - STATE(1580), 1, + ACTIONS(4740), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4742), 1, + sym__ternary_qmark, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5596), 2, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5598), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5606), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5614), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5622), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5624), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4758), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5620), 3, + ACTIONS(5039), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4756), 9, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [86168] = 23, - ACTIONS(3967), 1, + [85851] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5594), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, anon_sym_LT, - ACTIONS(5604), 1, + ACTIONS(4714), 1, + anon_sym_AMP_AMP, + ACTIONS(4716), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(5608), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(5616), 1, + ACTIONS(4724), 1, + anon_sym_CARET, + ACTIONS(4726), 1, + anon_sym_PIPE, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(5618), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - STATE(1580), 1, + ACTIONS(4740), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4742), 1, + sym__ternary_qmark, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4758), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5596), 2, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5598), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5606), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5614), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5622), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5624), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, + ACTIONS(5049), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4756), 9, + [85956] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4120), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4288), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(4290), 25, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COLON, + 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, anon_sym_satisfies, - [86257] = 24, - ACTIONS(3967), 1, + [86007] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5594), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, + anon_sym_GT_GT, + ACTIONS(5596), 1, + anon_sym_PERCENT, + ACTIONS(5598), 1, anon_sym_LT, + ACTIONS(5602), 1, + anon_sym_AMP_AMP, ACTIONS(5604), 1, - anon_sym_GT_GT, - ACTIONS(5608), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5606), 1, anon_sym_AMP, - ACTIONS(5610), 1, + ACTIONS(5608), 1, anon_sym_CARET, + ACTIONS(5610), 1, + anon_sym_PIPE, ACTIONS(5616), 1, - anon_sym_PERCENT, + anon_sym_QMARK_QMARK, ACTIONS(5618), 1, - anon_sym_STAR_STAR, - STATE(1580), 1, + sym__ternary_qmark, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4758), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5596), 2, + ACTIONS(4773), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(5586), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5598), 2, + ACTIONS(5588), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5606), 2, + ACTIONS(5592), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5614), 2, + ACTIONS(5594), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5622), 2, + ACTIONS(5612), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5624), 2, + ACTIONS(5614), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, + ACTIONS(5600), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4756), 8, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [86348] = 15, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, + [86112] = 13, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(667), 1, + anon_sym_RBRACE, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4622), 1, + anon_sym_EQ, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(5616), 1, - anon_sym_PERCENT, - ACTIONS(5618), 1, - anon_sym_STAR_STAR, - ACTIONS(5630), 1, - anon_sym_LT, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5596), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4758), 10, - anon_sym_BANG, - anon_sym_in, - 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_GT, - ACTIONS(4756), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_BQUOTE, - anon_sym_satisfies, - [86421] = 16, - ACTIONS(3967), 1, + ACTIONS(2337), 2, + sym_number, + sym_private_property_identifier, + STATE(3816), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 4, anon_sym_LPAREN, - ACTIONS(3969), 1, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [86181] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5620), 2, + sym_number, + sym_private_property_identifier, + STATE(3787), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(5618), 1, - anon_sym_STAR_STAR, - ACTIONS(5630), 1, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(2351), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [86240] = 4, + ACTIONS(4120), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4758), 11, + ACTIONS(4288), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, @@ -212499,839 +210429,610 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4756), 15, + ACTIONS(4290), 26, sym__ternary_qmark, + 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, - [86496] = 20, - ACTIONS(3967), 1, + anon_sym_satisfies, + [86291] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5594), 1, + ACTIONS(4798), 1, + anon_sym_as, + ACTIONS(4800), 1, + anon_sym_BANG, + ACTIONS(4836), 1, + anon_sym_satisfies, + ACTIONS(5233), 1, anon_sym_LT, - ACTIONS(5604), 1, + ACTIONS(5239), 1, + anon_sym_AMP_AMP, + ACTIONS(5241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5243), 1, anon_sym_GT_GT, - ACTIONS(5616), 1, + ACTIONS(5247), 1, + anon_sym_AMP, + ACTIONS(5249), 1, + anon_sym_CARET, + ACTIONS(5251), 1, + anon_sym_PIPE, + ACTIONS(5255), 1, anon_sym_PERCENT, - ACTIONS(5618), 1, + ACTIONS(5257), 1, anon_sym_STAR_STAR, - STATE(1580), 1, + ACTIONS(5265), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5267), 1, + sym__ternary_qmark, + STATE(2019), 1, sym_type_arguments, - STATE(1656), 1, + STATE(2130), 1, sym_arguments, - STATE(4828), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5596), 2, + ACTIONS(5235), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5598), 2, + ACTIONS(5237), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5606), 2, + ACTIONS(5245), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5614), 2, + ACTIONS(5253), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5620), 3, + ACTIONS(5261), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5263), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5622), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5259), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4758), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4756), 11, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [86579] = 27, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, + [86396] = 13, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(694), 1, + anon_sym_RBRACE, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4622), 1, + anon_sym_EQ, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4758), 1, - anon_sym_BANG, - ACTIONS(5594), 1, - anon_sym_LT, - ACTIONS(5600), 1, - anon_sym_AMP_AMP, - ACTIONS(5602), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5604), 1, - anon_sym_GT_GT, - ACTIONS(5608), 1, - anon_sym_AMP, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, - anon_sym_PIPE, - ACTIONS(5616), 1, - anon_sym_PERCENT, - ACTIONS(5618), 1, - anon_sym_STAR_STAR, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5596), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5598), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5606), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5614), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5622), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5624), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4756), 6, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COLON, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [86676] = 31, - ACTIONS(3967), 1, + ACTIONS(2337), 2, + sym_number, + sym_private_property_identifier, + STATE(3816), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 4, anon_sym_LPAREN, - ACTIONS(3969), 1, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [86465] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5292), 2, + sym_number, + sym_private_property_identifier, + STATE(3853), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(5594), 1, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(5600), 1, - anon_sym_AMP_AMP, - ACTIONS(5602), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5604), 1, - anon_sym_GT_GT, - ACTIONS(5608), 1, - anon_sym_AMP, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, - anon_sym_PIPE, - ACTIONS(5616), 1, - anon_sym_PERCENT, - ACTIONS(5618), 1, - anon_sym_STAR_STAR, - ACTIONS(5626), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5628), 1, - sym__ternary_qmark, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(2351), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [86524] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4688), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4541), 2, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5596), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5598), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5606), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5614), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5622), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5624), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [86781] = 31, - ACTIONS(3967), 1, + ACTIONS(5507), 2, + sym_number, + sym_private_property_identifier, + STATE(3802), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3969), 1, - anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(5594), 1, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(5600), 1, - anon_sym_AMP_AMP, - ACTIONS(5602), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5604), 1, - anon_sym_GT_GT, - ACTIONS(5608), 1, - anon_sym_AMP, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, - anon_sym_PIPE, - ACTIONS(5616), 1, - anon_sym_PERCENT, - ACTIONS(5618), 1, - anon_sym_STAR_STAR, - ACTIONS(5626), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5628), 1, - sym__ternary_qmark, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2351), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [86583] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4763), 2, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(5596), 2, + ACTIONS(4322), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4288), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5598), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5606), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5614), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5622), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5624), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [86886] = 31, - ACTIONS(3967), 1, + anon_sym_GT, + ACTIONS(4290), 25, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3969), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(5594), 1, - anon_sym_LT, - ACTIONS(5600), 1, anon_sym_AMP_AMP, - ACTIONS(5602), 1, anon_sym_PIPE_PIPE, - ACTIONS(5604), 1, - anon_sym_GT_GT, - ACTIONS(5608), 1, - anon_sym_AMP, - ACTIONS(5610), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5612), 1, - anon_sym_PIPE, - ACTIONS(5616), 1, anon_sym_PERCENT, - ACTIONS(5618), 1, anon_sym_STAR_STAR, - ACTIONS(5626), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5628), 1, - sym__ternary_qmark, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4565), 2, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5596), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5598), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5606), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5614), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5622), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5624), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [86991] = 31, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, - anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(5594), 1, - anon_sym_LT, - ACTIONS(5600), 1, - anon_sym_AMP_AMP, - ACTIONS(5602), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5604), 1, - anon_sym_GT_GT, - ACTIONS(5608), 1, - anon_sym_AMP, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, - anon_sym_PIPE, - ACTIONS(5616), 1, - anon_sym_PERCENT, - ACTIONS(5618), 1, - anon_sym_STAR_STAR, - ACTIONS(5626), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5628), 1, - sym__ternary_qmark, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, + [86634] = 4, + ACTIONS(4322), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4573), 2, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5596), 2, + ACTIONS(4288), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5598), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5606), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5614), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5622), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5624), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [87096] = 31, - ACTIONS(3967), 1, + anon_sym_GT, + ACTIONS(4290), 26, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3969), 1, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(5594), 1, - anon_sym_LT, - ACTIONS(5600), 1, anon_sym_AMP_AMP, - ACTIONS(5602), 1, anon_sym_PIPE_PIPE, - ACTIONS(5604), 1, - anon_sym_GT_GT, - ACTIONS(5608), 1, - anon_sym_AMP, - ACTIONS(5610), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5612), 1, - anon_sym_PIPE, - ACTIONS(5616), 1, anon_sym_PERCENT, - ACTIONS(5618), 1, anon_sym_STAR_STAR, - ACTIONS(5626), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5628), 1, - sym__ternary_qmark, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4577), 2, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5596), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5598), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5606), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5614), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5622), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5624), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [87201] = 31, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, - anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(5594), 1, - anon_sym_LT, - ACTIONS(5600), 1, - anon_sym_AMP_AMP, - ACTIONS(5602), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5604), 1, - anon_sym_GT_GT, - ACTIONS(5608), 1, - anon_sym_AMP, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, - anon_sym_PIPE, - ACTIONS(5616), 1, - anon_sym_PERCENT, - ACTIONS(5618), 1, - anon_sym_STAR_STAR, - ACTIONS(5626), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5628), 1, - sym__ternary_qmark, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, + [86685] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4688), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4765), 2, + ACTIONS(5279), 2, + sym_number, + sym_private_property_identifier, + STATE(3863), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(5596), 2, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [86744] = 17, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(2353), 1, + anon_sym_async, + ACTIONS(2355), 1, + anon_sym_readonly, + ACTIONS(2359), 1, + anon_sym_override, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(4990), 1, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5598), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5606), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5614), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5622), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5624), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [87306] = 31, - ACTIONS(3967), 1, + ACTIONS(5555), 1, + anon_sym_COMMA, + ACTIONS(5624), 1, + anon_sym_RBRACE, + STATE(2813), 1, + sym_override_modifier, + STATE(4960), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2337), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2357), 2, + anon_sym_get, + anon_sym_set, + STATE(3816), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 4, anon_sym_LPAREN, - ACTIONS(3969), 1, - anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(5594), 1, + anon_sym_COLON, anon_sym_LT, - ACTIONS(5600), 1, - anon_sym_AMP_AMP, - ACTIONS(5602), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5604), 1, - anon_sym_GT_GT, - ACTIONS(5608), 1, - anon_sym_AMP, - ACTIONS(5610), 1, - anon_sym_CARET, - ACTIONS(5612), 1, - anon_sym_PIPE, - ACTIONS(5616), 1, - anon_sym_PERCENT, - ACTIONS(5618), 1, - anon_sym_STAR_STAR, - ACTIONS(5626), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5628), 1, - sym__ternary_qmark, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(2351), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + 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, + anon_sym_object, + [86821] = 4, + ACTIONS(4915), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4767), 2, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(5596), 2, + ACTIONS(4911), 17, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5598), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5606), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5614), 2, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5622), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5624), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_GT, anon_sym_instanceof, - [87411] = 31, - ACTIONS(3967), 1, + anon_sym_satisfies, + anon_sym_implements, + ACTIONS(4913), 22, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(5594), 1, - anon_sym_LT, - ACTIONS(5600), 1, anon_sym_AMP_AMP, - ACTIONS(5602), 1, anon_sym_PIPE_PIPE, - ACTIONS(5604), 1, - anon_sym_GT_GT, - ACTIONS(5608), 1, - anon_sym_AMP, - ACTIONS(5610), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5612), 1, - anon_sym_PIPE, - ACTIONS(5616), 1, anon_sym_PERCENT, - ACTIONS(5618), 1, anon_sym_STAR_STAR, - ACTIONS(5626), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5628), 1, - sym__ternary_qmark, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4779), 2, - anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(5596), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5598), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5606), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5614), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5622), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5624), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [87516] = 31, - ACTIONS(4627), 1, + [86872] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4847), 1, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5318), 1, - anon_sym_LT, - ACTIONS(5324), 1, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(5326), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(5328), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(5332), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(5334), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(5336), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(5340), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(5342), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(5350), 1, + ACTIONS(4895), 1, + anon_sym_LT, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - ACTIONS(5352), 1, + ACTIONS(4905), 1, sym__ternary_qmark, - STATE(2027), 1, + STATE(1633), 1, sym_type_arguments, - STATE(2189), 1, + STATE(1655), 1, sym_arguments, - STATE(4602), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5320), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5322), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5330), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5338), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5346), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5348), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5633), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5344), 3, + ACTIONS(5014), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [87621] = 8, - ACTIONS(3967), 1, + [86977] = 8, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(5635), 1, + ACTIONS(5626), 1, anon_sym_LT, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4700), 12, + ACTIONS(4704), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -213344,7 +211045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4702), 23, + ACTIONS(4706), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACK, @@ -213368,415 +211069,415 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [87680] = 31, - ACTIONS(3967), 1, + [87036] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5635), 1, + ACTIONS(5626), 1, anon_sym_LT, - ACTIONS(5641), 1, + ACTIONS(5632), 1, anon_sym_AMP_AMP, - ACTIONS(5643), 1, + ACTIONS(5634), 1, anon_sym_PIPE_PIPE, - ACTIONS(5645), 1, + ACTIONS(5636), 1, anon_sym_GT_GT, - ACTIONS(5649), 1, + ACTIONS(5640), 1, anon_sym_AMP, - ACTIONS(5651), 1, + ACTIONS(5642), 1, anon_sym_CARET, - ACTIONS(5653), 1, + ACTIONS(5644), 1, anon_sym_PIPE, - ACTIONS(5657), 1, + ACTIONS(5648), 1, anon_sym_PERCENT, - ACTIONS(5659), 1, + ACTIONS(5650), 1, anon_sym_STAR_STAR, - ACTIONS(5667), 1, + ACTIONS(5658), 1, anon_sym_QMARK_QMARK, - ACTIONS(5669), 1, + ACTIONS(5660), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4483), 2, + ACTIONS(4468), 2, anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5637), 2, + ACTIONS(5628), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(5630), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5647), 2, + ACTIONS(5638), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5655), 2, + ACTIONS(5646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5663), 2, + ACTIONS(5654), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5665), 2, + ACTIONS(5656), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5661), 3, + ACTIONS(5652), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [87785] = 31, - ACTIONS(3967), 1, + [87141] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5635), 1, + ACTIONS(5626), 1, anon_sym_LT, - ACTIONS(5641), 1, + ACTIONS(5632), 1, anon_sym_AMP_AMP, - ACTIONS(5643), 1, + ACTIONS(5634), 1, anon_sym_PIPE_PIPE, - ACTIONS(5645), 1, + ACTIONS(5636), 1, anon_sym_GT_GT, - ACTIONS(5649), 1, + ACTIONS(5640), 1, anon_sym_AMP, - ACTIONS(5651), 1, + ACTIONS(5642), 1, anon_sym_CARET, - ACTIONS(5653), 1, + ACTIONS(5644), 1, anon_sym_PIPE, - ACTIONS(5657), 1, + ACTIONS(5648), 1, anon_sym_PERCENT, - ACTIONS(5659), 1, + ACTIONS(5650), 1, anon_sym_STAR_STAR, - ACTIONS(5667), 1, + ACTIONS(5658), 1, anon_sym_QMARK_QMARK, - ACTIONS(5669), 1, + ACTIONS(5660), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4750), 2, + ACTIONS(4744), 2, anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(5637), 2, + ACTIONS(5628), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(5630), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5647), 2, + ACTIONS(5638), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5655), 2, + ACTIONS(5646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5663), 2, + ACTIONS(5654), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5665), 2, + ACTIONS(5656), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5661), 3, + ACTIONS(5652), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [87890] = 31, - ACTIONS(3967), 1, + [87246] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5635), 1, + ACTIONS(5626), 1, anon_sym_LT, - ACTIONS(5641), 1, + ACTIONS(5632), 1, anon_sym_AMP_AMP, - ACTIONS(5643), 1, + ACTIONS(5634), 1, anon_sym_PIPE_PIPE, - ACTIONS(5645), 1, + ACTIONS(5636), 1, anon_sym_GT_GT, - ACTIONS(5649), 1, + ACTIONS(5640), 1, anon_sym_AMP, - ACTIONS(5651), 1, + ACTIONS(5642), 1, anon_sym_CARET, - ACTIONS(5653), 1, + ACTIONS(5644), 1, anon_sym_PIPE, - ACTIONS(5657), 1, + ACTIONS(5648), 1, anon_sym_PERCENT, - ACTIONS(5659), 1, + ACTIONS(5650), 1, anon_sym_STAR_STAR, - ACTIONS(5667), 1, + ACTIONS(5658), 1, anon_sym_QMARK_QMARK, - ACTIONS(5669), 1, + ACTIONS(5660), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4752), 2, + ACTIONS(4756), 2, anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(5637), 2, + ACTIONS(5628), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(5630), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5647), 2, + ACTIONS(5638), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5655), 2, + ACTIONS(5646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5663), 2, + ACTIONS(5654), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5665), 2, + ACTIONS(5656), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5661), 3, + ACTIONS(5652), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [87995] = 31, - ACTIONS(3967), 1, + [87351] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5635), 1, + ACTIONS(5626), 1, anon_sym_LT, - ACTIONS(5641), 1, + ACTIONS(5632), 1, anon_sym_AMP_AMP, - ACTIONS(5643), 1, + ACTIONS(5634), 1, anon_sym_PIPE_PIPE, - ACTIONS(5645), 1, + ACTIONS(5636), 1, anon_sym_GT_GT, - ACTIONS(5649), 1, + ACTIONS(5640), 1, anon_sym_AMP, - ACTIONS(5651), 1, + ACTIONS(5642), 1, anon_sym_CARET, - ACTIONS(5653), 1, + ACTIONS(5644), 1, anon_sym_PIPE, - ACTIONS(5657), 1, + ACTIONS(5648), 1, anon_sym_PERCENT, - ACTIONS(5659), 1, + ACTIONS(5650), 1, anon_sym_STAR_STAR, - ACTIONS(5667), 1, + ACTIONS(5658), 1, anon_sym_QMARK_QMARK, - ACTIONS(5669), 1, + ACTIONS(5660), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4754), 2, + ACTIONS(4758), 2, anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(5637), 2, + ACTIONS(5628), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(5630), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5647), 2, + ACTIONS(5638), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5655), 2, + ACTIONS(5646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5663), 2, + ACTIONS(5654), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5665), 2, + ACTIONS(5656), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5661), 3, + ACTIONS(5652), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [88100] = 31, - ACTIONS(3967), 1, + [87456] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5635), 1, + ACTIONS(5626), 1, anon_sym_LT, - ACTIONS(5641), 1, + ACTIONS(5632), 1, anon_sym_AMP_AMP, - ACTIONS(5643), 1, + ACTIONS(5634), 1, anon_sym_PIPE_PIPE, - ACTIONS(5645), 1, + ACTIONS(5636), 1, anon_sym_GT_GT, - ACTIONS(5649), 1, + ACTIONS(5640), 1, anon_sym_AMP, - ACTIONS(5651), 1, + ACTIONS(5642), 1, anon_sym_CARET, - ACTIONS(5653), 1, + ACTIONS(5644), 1, anon_sym_PIPE, - ACTIONS(5657), 1, + ACTIONS(5648), 1, anon_sym_PERCENT, - ACTIONS(5659), 1, + ACTIONS(5650), 1, anon_sym_STAR_STAR, - ACTIONS(5667), 1, + ACTIONS(5658), 1, anon_sym_QMARK_QMARK, - ACTIONS(5669), 1, + ACTIONS(5660), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4523), 2, + ACTIONS(4504), 2, anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5637), 2, + ACTIONS(5628), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(5630), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5647), 2, + ACTIONS(5638), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5655), 2, + ACTIONS(5646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5663), 2, + ACTIONS(5654), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5665), 2, + ACTIONS(5656), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5661), 3, + ACTIONS(5652), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [88205] = 18, - ACTIONS(3967), 1, + [87561] = 18, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5635), 1, + ACTIONS(5626), 1, anon_sym_LT, - ACTIONS(5645), 1, + ACTIONS(5636), 1, anon_sym_GT_GT, - ACTIONS(5657), 1, + ACTIONS(5648), 1, anon_sym_PERCENT, - ACTIONS(5659), 1, + ACTIONS(5650), 1, anon_sym_STAR_STAR, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5637), 2, + ACTIONS(5628), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5647), 2, + ACTIONS(5638), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5655), 2, + ACTIONS(5646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4758), 7, + ACTIONS(4762), 7, anon_sym_BANG, anon_sym_in, anon_sym_AMP, @@ -213784,7 +211485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4756), 14, + ACTIONS(4760), 14, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, @@ -213799,32 +211500,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [88284] = 13, - ACTIONS(3967), 1, + [87640] = 13, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5659), 1, + ACTIONS(5650), 1, anon_sym_STAR_STAR, - ACTIONS(5671), 1, + ACTIONS(5662), 1, anon_sym_LT, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4758), 12, + ACTIONS(4762), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -213837,7 +211538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4756), 17, + ACTIONS(4760), 17, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, @@ -213855,66 +211556,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [88353] = 25, - ACTIONS(3967), 1, + [87709] = 25, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4758), 1, + ACTIONS(4762), 1, anon_sym_BANG, - ACTIONS(5635), 1, + ACTIONS(5626), 1, anon_sym_LT, - ACTIONS(5645), 1, + ACTIONS(5636), 1, anon_sym_GT_GT, - ACTIONS(5649), 1, + ACTIONS(5640), 1, anon_sym_AMP, - ACTIONS(5651), 1, + ACTIONS(5642), 1, anon_sym_CARET, - ACTIONS(5653), 1, + ACTIONS(5644), 1, anon_sym_PIPE, - ACTIONS(5657), 1, + ACTIONS(5648), 1, anon_sym_PERCENT, - ACTIONS(5659), 1, + ACTIONS(5650), 1, anon_sym_STAR_STAR, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5637), 2, + ACTIONS(5628), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(5630), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5647), 2, + ACTIONS(5638), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5655), 2, + ACTIONS(5646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5663), 2, + ACTIONS(5654), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5665), 2, + ACTIONS(5656), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5661), 3, + ACTIONS(5652), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4756), 8, + ACTIONS(4760), 8, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, @@ -213923,1187 +211624,825 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [88446] = 26, - ACTIONS(3967), 1, + [87802] = 26, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4758), 1, + ACTIONS(4762), 1, anon_sym_BANG, - ACTIONS(5635), 1, + ACTIONS(5626), 1, anon_sym_LT, - ACTIONS(5641), 1, + ACTIONS(5632), 1, anon_sym_AMP_AMP, - ACTIONS(5645), 1, + ACTIONS(5636), 1, anon_sym_GT_GT, - ACTIONS(5649), 1, + ACTIONS(5640), 1, anon_sym_AMP, - ACTIONS(5651), 1, + ACTIONS(5642), 1, anon_sym_CARET, - ACTIONS(5653), 1, + ACTIONS(5644), 1, anon_sym_PIPE, - ACTIONS(5657), 1, + ACTIONS(5648), 1, anon_sym_PERCENT, - ACTIONS(5659), 1, + ACTIONS(5650), 1, anon_sym_STAR_STAR, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5637), 2, + ACTIONS(5628), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(5630), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5647), 2, + ACTIONS(5638), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5655), 2, + ACTIONS(5646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5663), 2, + ACTIONS(5654), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5665), 2, + ACTIONS(5656), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5661), 3, + ACTIONS(5652), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4756), 7, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [88541] = 16, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, - anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(5657), 1, - anon_sym_PERCENT, - ACTIONS(5659), 1, - anon_sym_STAR_STAR, - ACTIONS(5671), 1, - anon_sym_LT, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5637), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5655), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4758), 8, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4756), 16, + ACTIONS(4760), 7, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [88616] = 22, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, + [87897] = 16, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(2353), 1, + anon_sym_async, + ACTIONS(2355), 1, + anon_sym_readonly, + ACTIONS(2359), 1, + anon_sym_override, + ACTIONS(4622), 1, + anon_sym_EQ, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(5635), 1, - anon_sym_LT, - ACTIONS(5645), 1, - anon_sym_GT_GT, - ACTIONS(5657), 1, - anon_sym_PERCENT, - ACTIONS(5659), 1, - anon_sym_STAR_STAR, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5637), 2, + ACTIONS(4990), 1, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5639), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5647), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5655), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5663), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5665), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4758), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5661), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4756), 9, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [88703] = 23, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, - anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(5635), 1, - anon_sym_LT, - ACTIONS(5645), 1, - anon_sym_GT_GT, - ACTIONS(5649), 1, - anon_sym_AMP, - ACTIONS(5657), 1, - anon_sym_PERCENT, - ACTIONS(5659), 1, - anon_sym_STAR_STAR, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, + STATE(2813), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4758), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5637), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5639), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5647), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5655), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5663), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2337), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2357), 2, + anon_sym_get, + anon_sym_set, ACTIONS(5665), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5661), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4756), 9, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [88792] = 24, - ACTIONS(3967), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3816), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 4, anon_sym_LPAREN, - ACTIONS(3969), 1, - anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(5635), 1, + anon_sym_COLON, anon_sym_LT, - ACTIONS(5645), 1, - anon_sym_GT_GT, - ACTIONS(5649), 1, - anon_sym_AMP, - ACTIONS(5651), 1, - anon_sym_CARET, - ACTIONS(5657), 1, - anon_sym_PERCENT, - ACTIONS(5659), 1, - anon_sym_STAR_STAR, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4758), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5637), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5639), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5647), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5655), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5663), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5665), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5661), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4756), 8, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [88883] = 15, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, + anon_sym_QMARK, + ACTIONS(2351), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + 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, + anon_sym_object, + [87972] = 8, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(5657), 1, - anon_sym_PERCENT, - ACTIONS(5659), 1, - anon_sym_STAR_STAR, - ACTIONS(5671), 1, - anon_sym_LT, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5637), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4758), 10, + ACTIONS(5668), 2, + sym_number, + sym_private_property_identifier, + STATE(3399), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - anon_sym_in, - 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_GT, - ACTIONS(4756), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_BQUOTE, - anon_sym_satisfies, - [88956] = 16, - ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, - anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(5659), 1, - anon_sym_STAR_STAR, - ACTIONS(5671), 1, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4758), 11, - anon_sym_STAR, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4756), 15, - sym__ternary_qmark, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_BQUOTE, - [89031] = 20, - ACTIONS(3967), 1, + anon_sym_QMARK, + ACTIONS(3700), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [88031] = 16, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(5635), 1, - anon_sym_LT, - ACTIONS(5645), 1, - anon_sym_GT_GT, - ACTIONS(5657), 1, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(5648), 1, anon_sym_PERCENT, - ACTIONS(5659), 1, + ACTIONS(5650), 1, anon_sym_STAR_STAR, - STATE(1580), 1, + ACTIONS(5662), 1, + anon_sym_LT, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5637), 2, + ACTIONS(5628), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5647), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5655), 2, + ACTIONS(5646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5661), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4758), 5, + ACTIONS(4762), 8, anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4756), 11, + anon_sym_GT, + ACTIONS(4760), 16, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [89114] = 27, - ACTIONS(3967), 1, + [88106] = 22, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4758), 1, - anon_sym_BANG, - ACTIONS(5635), 1, + ACTIONS(5626), 1, anon_sym_LT, - ACTIONS(5641), 1, - anon_sym_AMP_AMP, - ACTIONS(5643), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5645), 1, + ACTIONS(5636), 1, anon_sym_GT_GT, - ACTIONS(5649), 1, - anon_sym_AMP, - ACTIONS(5651), 1, - anon_sym_CARET, - ACTIONS(5653), 1, - anon_sym_PIPE, - ACTIONS(5657), 1, + ACTIONS(5648), 1, anon_sym_PERCENT, - ACTIONS(5659), 1, + ACTIONS(5650), 1, anon_sym_STAR_STAR, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5637), 2, + ACTIONS(5628), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(5630), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5647), 2, + ACTIONS(5638), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5655), 2, + ACTIONS(5646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5663), 2, + ACTIONS(5654), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5665), 2, + ACTIONS(5656), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5661), 3, + ACTIONS(4762), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5652), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4756), 6, + ACTIONS(4760), 9, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [89211] = 31, - ACTIONS(3967), 1, + [88193] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5427), 2, + sym_number, + sym_private_property_identifier, + STATE(3804), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 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(2351), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [88252] = 23, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(5635), 1, + ACTIONS(5626), 1, anon_sym_LT, - ACTIONS(5641), 1, - anon_sym_AMP_AMP, - ACTIONS(5643), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5645), 1, + ACTIONS(5636), 1, anon_sym_GT_GT, - ACTIONS(5649), 1, + ACTIONS(5640), 1, anon_sym_AMP, - ACTIONS(5651), 1, - anon_sym_CARET, - ACTIONS(5653), 1, - anon_sym_PIPE, - ACTIONS(5657), 1, + ACTIONS(5648), 1, anon_sym_PERCENT, - ACTIONS(5659), 1, + ACTIONS(5650), 1, anon_sym_STAR_STAR, - ACTIONS(5667), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5669), 1, - sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4541), 2, - anon_sym_RBRACK, - anon_sym_BQUOTE, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5637), 2, + ACTIONS(4762), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5628), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(5630), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5647), 2, + ACTIONS(5638), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5655), 2, + ACTIONS(5646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5663), 2, + ACTIONS(5654), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5665), 2, + ACTIONS(5656), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5661), 3, + ACTIONS(5652), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [89316] = 31, - ACTIONS(3967), 1, + ACTIONS(4760), 9, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [88341] = 24, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(5635), 1, + ACTIONS(5626), 1, anon_sym_LT, - ACTIONS(5641), 1, - anon_sym_AMP_AMP, - ACTIONS(5643), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5645), 1, + ACTIONS(5636), 1, anon_sym_GT_GT, - ACTIONS(5649), 1, + ACTIONS(5640), 1, anon_sym_AMP, - ACTIONS(5651), 1, + ACTIONS(5642), 1, anon_sym_CARET, - ACTIONS(5653), 1, - anon_sym_PIPE, - ACTIONS(5657), 1, + ACTIONS(5648), 1, anon_sym_PERCENT, - ACTIONS(5659), 1, + ACTIONS(5650), 1, anon_sym_STAR_STAR, - ACTIONS(5667), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5669), 1, - sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4763), 2, - anon_sym_RBRACK, - anon_sym_BQUOTE, - ACTIONS(5637), 2, + ACTIONS(4762), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5628), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(5630), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5647), 2, + ACTIONS(5638), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5655), 2, + ACTIONS(5646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5663), 2, + ACTIONS(5654), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5665), 2, + ACTIONS(5656), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5661), 3, + ACTIONS(5652), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [89421] = 31, - ACTIONS(3967), 1, + ACTIONS(4760), 8, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [88432] = 12, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(5635), 1, + ACTIONS(5670), 1, anon_sym_LT, - ACTIONS(5641), 1, - anon_sym_AMP_AMP, - ACTIONS(5643), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5645), 1, - anon_sym_GT_GT, - ACTIONS(5649), 1, - anon_sym_AMP, - ACTIONS(5651), 1, - anon_sym_CARET, - ACTIONS(5653), 1, - anon_sym_PIPE, - ACTIONS(5657), 1, - anon_sym_PERCENT, - ACTIONS(5659), 1, - anon_sym_STAR_STAR, - ACTIONS(5667), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5669), 1, - sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4565), 2, - anon_sym_RBRACK, - anon_sym_BQUOTE, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5637), 2, + ACTIONS(4778), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5639), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5647), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5655), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5663), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5665), 2, + anon_sym_GT, + ACTIONS(4780), 18, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5661), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [89526] = 31, - ACTIONS(3967), 1, + anon_sym_BQUOTE, + anon_sym_satisfies, + [88499] = 15, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5635), 1, + ACTIONS(5673), 1, anon_sym_LT, - ACTIONS(5641), 1, - anon_sym_AMP_AMP, - ACTIONS(5643), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5645), 1, - anon_sym_GT_GT, - ACTIONS(5649), 1, - anon_sym_AMP, - ACTIONS(5651), 1, - anon_sym_CARET, - ACTIONS(5653), 1, - anon_sym_PIPE, - ACTIONS(5657), 1, - anon_sym_PERCENT, - ACTIONS(5659), 1, - anon_sym_STAR_STAR, - ACTIONS(5667), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5669), 1, - sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4573), 2, - anon_sym_RBRACK, - anon_sym_BQUOTE, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5637), 2, + ACTIONS(4634), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5639), 2, anon_sym_in, - anon_sym_GT, - ACTIONS(5647), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5655), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5663), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5665), 2, + anon_sym_GT, + ACTIONS(4638), 16, + sym__ternary_qmark, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5661), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [89631] = 31, - ACTIONS(3967), 1, + anon_sym_BQUOTE, + [88572] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5635), 1, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, + anon_sym_GT_GT, + ACTIONS(5596), 1, + anon_sym_PERCENT, + ACTIONS(5598), 1, anon_sym_LT, - ACTIONS(5641), 1, + ACTIONS(5602), 1, anon_sym_AMP_AMP, - ACTIONS(5643), 1, + ACTIONS(5604), 1, anon_sym_PIPE_PIPE, - ACTIONS(5645), 1, - anon_sym_GT_GT, - ACTIONS(5649), 1, + ACTIONS(5606), 1, anon_sym_AMP, - ACTIONS(5651), 1, + ACTIONS(5608), 1, anon_sym_CARET, - ACTIONS(5653), 1, + ACTIONS(5610), 1, anon_sym_PIPE, - ACTIONS(5657), 1, - anon_sym_PERCENT, - ACTIONS(5659), 1, - anon_sym_STAR_STAR, - ACTIONS(5667), 1, + ACTIONS(5616), 1, anon_sym_QMARK_QMARK, - ACTIONS(5669), 1, + ACTIONS(5618), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4577), 2, - anon_sym_RBRACK, - anon_sym_BQUOTE, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5637), 2, + ACTIONS(4792), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(5586), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(5588), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5647), 2, + ACTIONS(5592), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5655), 2, + ACTIONS(5594), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5663), 2, + ACTIONS(5612), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5665), 2, + ACTIONS(5614), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5661), 3, + ACTIONS(5600), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [89736] = 31, - ACTIONS(3967), 1, + [88677] = 11, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(5635), 1, + ACTIONS(5676), 1, anon_sym_LT, - ACTIONS(5641), 1, - anon_sym_AMP_AMP, - ACTIONS(5643), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5645), 1, - anon_sym_GT_GT, - ACTIONS(5649), 1, - anon_sym_AMP, - ACTIONS(5651), 1, - anon_sym_CARET, - ACTIONS(5653), 1, - anon_sym_PIPE, - ACTIONS(5657), 1, - anon_sym_PERCENT, - ACTIONS(5659), 1, - anon_sym_STAR_STAR, - ACTIONS(5667), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5669), 1, - sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4765), 2, - anon_sym_RBRACK, - anon_sym_BQUOTE, - ACTIONS(5637), 2, + ACTIONS(4785), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5639), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5647), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5655), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5663), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5665), 2, + anon_sym_GT, + ACTIONS(4787), 20, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5661), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [89841] = 31, - ACTIONS(3967), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [88742] = 15, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(5635), 1, - anon_sym_LT, - ACTIONS(5641), 1, - anon_sym_AMP_AMP, - ACTIONS(5643), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5645), 1, - anon_sym_GT_GT, - ACTIONS(5649), 1, - anon_sym_AMP, - ACTIONS(5651), 1, - anon_sym_CARET, - ACTIONS(5653), 1, - anon_sym_PIPE, - ACTIONS(5657), 1, + ACTIONS(5648), 1, anon_sym_PERCENT, - ACTIONS(5659), 1, + ACTIONS(5650), 1, anon_sym_STAR_STAR, - ACTIONS(5667), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5669), 1, - sym__ternary_qmark, - STATE(1580), 1, + ACTIONS(5662), 1, + anon_sym_LT, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4767), 2, - anon_sym_RBRACK, - anon_sym_BQUOTE, - ACTIONS(5637), 2, + ACTIONS(5628), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(4762), 10, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5647), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5655), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5663), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5665), 2, + anon_sym_GT, + ACTIONS(4760), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5661), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [89946] = 31, - ACTIONS(3967), 1, + anon_sym_BQUOTE, + anon_sym_satisfies, + [88815] = 16, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5635), 1, - anon_sym_LT, - ACTIONS(5641), 1, - anon_sym_AMP_AMP, - ACTIONS(5643), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5645), 1, - anon_sym_GT_GT, - ACTIONS(5649), 1, - anon_sym_AMP, - ACTIONS(5651), 1, - anon_sym_CARET, - ACTIONS(5653), 1, - anon_sym_PIPE, - ACTIONS(5657), 1, - anon_sym_PERCENT, - ACTIONS(5659), 1, + ACTIONS(5650), 1, anon_sym_STAR_STAR, - ACTIONS(5667), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5669), 1, - sym__ternary_qmark, - STATE(1580), 1, + ACTIONS(5662), 1, + anon_sym_LT, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4779), 2, - anon_sym_RBRACK, - anon_sym_BQUOTE, - ACTIONS(5637), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5639), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5647), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5655), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5663), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5665), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5661), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [90051] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1879), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1883), 13, + ACTIONS(4762), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, @@ -215111,435 +212450,346 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1885), 22, + ACTIONS(4760), 15, sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - 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, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_satisfies, - [90102] = 13, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(2344), 1, - anon_sym_DQUOTE, - ACTIONS(2346), 1, - anon_sym_SQUOTE, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(4686), 1, - anon_sym_LBRACK, - ACTIONS(5076), 1, - anon_sym_RBRACE, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2348), 2, - sym_number, - sym_private_property_identifier, - STATE(3799), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 4, + anon_sym_BQUOTE, + [88890] = 20, + ACTIONS(4010), 1, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2362), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [90171] = 8, - ACTIONS(2344), 1, - anon_sym_DQUOTE, - ACTIONS(2346), 1, - anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5518), 2, - sym_number, - sym_private_property_identifier, - STATE(3791), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(5626), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2362), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [90230] = 6, - ACTIONS(4637), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4378), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4640), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3499), 10, + ACTIONS(5636), 1, + anon_sym_GT_GT, + ACTIONS(5648), 1, + anon_sym_PERCENT, + ACTIONS(5650), 1, + anon_sym_STAR_STAR, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5628), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5630), 2, anon_sym_in, - anon_sym_GT_GT, + anon_sym_GT, + ACTIONS(5638), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5646), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5652), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4762), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 24, - sym__automatic_semicolon, + ACTIONS(4760), 11, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, + 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_satisfies, - [90285] = 23, - ACTIONS(1643), 1, - anon_sym_DQUOTE, - ACTIONS(1645), 1, - anon_sym_SQUOTE, - ACTIONS(3731), 1, - anon_sym_override, - ACTIONS(3833), 1, - anon_sym_AT, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(5674), 1, - anon_sym_STAR, - ACTIONS(5676), 1, - anon_sym_async, - ACTIONS(5680), 1, - anon_sym_static, - ACTIONS(5682), 1, - anon_sym_readonly, - ACTIONS(5686), 1, - anon_sym_declare, - ACTIONS(5688), 1, - anon_sym_abstract, - ACTIONS(5690), 1, - anon_sym_accessor, - STATE(2655), 1, - sym_method_definition, - STATE(2732), 1, - sym_accessibility_modifier, - STATE(2748), 1, - aux_sym_export_statement_repeat1, - STATE(2805), 1, - sym_override_modifier, - STATE(2815), 1, - sym_decorator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5678), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5684), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3729), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3082), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3705), 13, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [90374] = 31, - ACTIONS(3967), 1, + [88973] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(4885), 1, + ACTIONS(5233), 1, + anon_sym_LT, + ACTIONS(5239), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(5241), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(5243), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(5247), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(5249), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(5251), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(5255), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(5257), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, - anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(5265), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(5267), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(2019), 1, sym_type_arguments, - STATE(1656), 1, + STATE(2130), 1, sym_arguments, - STATE(4828), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(5101), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5235), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(5237), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(5245), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(5253), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(5261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(5263), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5532), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(4907), 3, + ACTIONS(5259), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [90479] = 31, - ACTIONS(3967), 1, + [89078] = 27, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4762), 1, + anon_sym_BANG, + ACTIONS(5626), 1, + anon_sym_LT, + ACTIONS(5632), 1, + anon_sym_AMP_AMP, + ACTIONS(5634), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5636), 1, + anon_sym_GT_GT, + ACTIONS(5640), 1, + anon_sym_AMP, + ACTIONS(5642), 1, + anon_sym_CARET, + ACTIONS(5644), 1, + anon_sym_PIPE, + ACTIONS(5648), 1, + anon_sym_PERCENT, + ACTIONS(5650), 1, + anon_sym_STAR_STAR, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5628), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5630), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5638), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5646), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5654), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5656), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5652), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4760), 6, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [89175] = 31, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4885), 1, + ACTIONS(5626), 1, + anon_sym_LT, + ACTIONS(5632), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(5634), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(5636), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(5640), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(5642), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(5644), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(5648), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(5650), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, - anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(5658), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(5660), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4522), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(5628), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(5630), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(5638), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(5646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(5654), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(5656), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5692), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(4907), 3, + ACTIONS(5652), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [90584] = 6, - ACTIONS(4529), 1, + [89280] = 12, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(5679), 1, + anon_sym_LT, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4093), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4532), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3499), 10, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4778), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 24, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(4780), 18, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -215553,42 +212803,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [90639] = 6, - ACTIONS(4463), 1, + [89347] = 15, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5682), 1, + anon_sym_LT, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4466), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(4459), 10, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4634), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4461), 24, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(4638), 16, sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -215602,177 +212862,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - [90694] = 8, - ACTIONS(2344), 1, - anon_sym_DQUOTE, - ACTIONS(2346), 1, - anon_sym_SQUOTE, - ACTIONS(4686), 1, + [89420] = 31, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5444), 2, - sym_number, - sym_private_property_identifier, - STATE(3900), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5626), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2362), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [90753] = 13, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(697), 1, - anon_sym_RBRACE, - ACTIONS(2344), 1, - anon_sym_DQUOTE, - ACTIONS(2346), 1, - anon_sym_SQUOTE, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(4686), 1, - anon_sym_LBRACK, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, - aux_sym_object_repeat1, + ACTIONS(5632), 1, + anon_sym_AMP_AMP, + ACTIONS(5634), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5636), 1, + anon_sym_GT_GT, + ACTIONS(5640), 1, + anon_sym_AMP, + ACTIONS(5642), 1, + anon_sym_CARET, + ACTIONS(5644), 1, + anon_sym_PIPE, + ACTIONS(5648), 1, + anon_sym_PERCENT, + ACTIONS(5650), 1, + anon_sym_STAR_STAR, + ACTIONS(5658), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5660), 1, + sym__ternary_qmark, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, - sym_number, - sym_private_property_identifier, - STATE(3799), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 4, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4792), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(5628), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5630), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5638), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5646), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5654), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5656), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5652), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [89525] = 11, + ACTIONS(4010), 1, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2362), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [90822] = 8, - ACTIONS(2344), 1, - anon_sym_DQUOTE, - ACTIONS(2346), 1, - anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5423), 2, - sym_number, - sym_private_property_identifier, - STATE(3823), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(5685), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2362), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [90881] = 4, - ACTIONS(4921), 1, - sym_regex_flags, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4917), 17, + ACTIONS(4785), 12, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, @@ -215781,21 +212967,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - anon_sym_instanceof, - anon_sym_satisfies, - anon_sym_implements, - ACTIONS(4919), 22, + ACTIONS(4787), 20, sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_as, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -215808,343 +212986,321 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [90932] = 31, - ACTIONS(4627), 1, + anon_sym_satisfies, + [89590] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4847), 1, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5318), 1, + ACTIONS(5626), 1, anon_sym_LT, - ACTIONS(5324), 1, + ACTIONS(5632), 1, anon_sym_AMP_AMP, - ACTIONS(5326), 1, + ACTIONS(5634), 1, anon_sym_PIPE_PIPE, - ACTIONS(5328), 1, + ACTIONS(5636), 1, anon_sym_GT_GT, - ACTIONS(5332), 1, + ACTIONS(5640), 1, anon_sym_AMP, - ACTIONS(5334), 1, + ACTIONS(5642), 1, anon_sym_CARET, - ACTIONS(5336), 1, + ACTIONS(5644), 1, anon_sym_PIPE, - ACTIONS(5340), 1, + ACTIONS(5648), 1, anon_sym_PERCENT, - ACTIONS(5342), 1, + ACTIONS(5650), 1, anon_sym_STAR_STAR, - ACTIONS(5350), 1, + ACTIONS(5658), 1, anon_sym_QMARK_QMARK, - ACTIONS(5352), 1, + ACTIONS(5660), 1, sym__ternary_qmark, - STATE(2027), 1, + STATE(1633), 1, sym_type_arguments, - STATE(2189), 1, + STATE(1655), 1, sym_arguments, - STATE(4602), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5320), 2, + ACTIONS(4767), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(5628), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5322), 2, + ACTIONS(5630), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5330), 2, + ACTIONS(5638), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5338), 2, + ACTIONS(5646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5346), 2, + ACTIONS(5654), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5348), 2, + ACTIONS(5656), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5694), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5344), 3, + ACTIONS(5652), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [91037] = 32, - ACTIONS(4627), 1, + [89695] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4847), 1, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5318), 1, + ACTIONS(5626), 1, anon_sym_LT, - ACTIONS(5324), 1, + ACTIONS(5632), 1, anon_sym_AMP_AMP, - ACTIONS(5326), 1, + ACTIONS(5634), 1, anon_sym_PIPE_PIPE, - ACTIONS(5328), 1, + ACTIONS(5636), 1, anon_sym_GT_GT, - ACTIONS(5332), 1, + ACTIONS(5640), 1, anon_sym_AMP, - ACTIONS(5334), 1, + ACTIONS(5642), 1, anon_sym_CARET, - ACTIONS(5336), 1, + ACTIONS(5644), 1, anon_sym_PIPE, - ACTIONS(5340), 1, + ACTIONS(5648), 1, anon_sym_PERCENT, - ACTIONS(5342), 1, + ACTIONS(5650), 1, anon_sym_STAR_STAR, - ACTIONS(5350), 1, + ACTIONS(5658), 1, anon_sym_QMARK_QMARK, - ACTIONS(5352), 1, + ACTIONS(5660), 1, sym__ternary_qmark, - ACTIONS(5696), 1, - anon_sym_SEMI, - ACTIONS(5698), 1, - sym__automatic_semicolon, - STATE(2027), 1, + STATE(1633), 1, sym_type_arguments, - STATE(2189), 1, + STATE(1655), 1, sym_arguments, - STATE(4602), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4546), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5320), 2, + ACTIONS(5628), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5322), 2, + ACTIONS(5630), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5330), 2, + ACTIONS(5638), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5338), 2, + ACTIONS(5646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5346), 2, + ACTIONS(5654), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5348), 2, + ACTIONS(5656), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5344), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [91144] = 6, - ACTIONS(4623), 1, - anon_sym_EQ, - ACTIONS(4868), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4666), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(4621), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4625), 23, - sym__ternary_qmark, - anon_sym_as, - 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, + ACTIONS(5652), 3, anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [91199] = 31, - ACTIONS(3967), 1, + [89800] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4704), 1, - anon_sym_LT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4716), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5626), 1, + anon_sym_LT, + ACTIONS(5632), 1, anon_sym_AMP_AMP, - ACTIONS(4718), 1, + ACTIONS(5634), 1, anon_sym_PIPE_PIPE, - ACTIONS(4720), 1, + ACTIONS(5636), 1, anon_sym_GT_GT, - ACTIONS(4724), 1, + ACTIONS(5640), 1, anon_sym_AMP, - ACTIONS(4726), 1, + ACTIONS(5642), 1, anon_sym_CARET, - ACTIONS(4728), 1, + ACTIONS(5644), 1, anon_sym_PIPE, - ACTIONS(4732), 1, + ACTIONS(5648), 1, anon_sym_PERCENT, - ACTIONS(4734), 1, + ACTIONS(5650), 1, anon_sym_STAR_STAR, - ACTIONS(4742), 1, + ACTIONS(5658), 1, anon_sym_QMARK_QMARK, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(4748), 1, + ACTIONS(5660), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4706), 2, + ACTIONS(4554), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5628), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4712), 2, + ACTIONS(5630), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4722), 2, + ACTIONS(5638), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4730), 2, + ACTIONS(5646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4738), 2, + ACTIONS(5654), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4740), 2, + ACTIONS(5656), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5700), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4736), 3, + ACTIONS(5652), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [91304] = 6, - ACTIONS(4445), 1, - anon_sym_EQ, - ACTIONS(4864), 1, - anon_sym_of, - ACTIONS(5702), 1, - anon_sym_in, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4443), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4447), 25, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + [89905] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4012), 1, anon_sym_LBRACK, + ACTIONS(4014), 1, anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5626), 1, + anon_sym_LT, + ACTIONS(5632), 1, anon_sym_AMP_AMP, + ACTIONS(5634), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5636), 1, + anon_sym_GT_GT, + ACTIONS(5640), 1, + anon_sym_AMP, + ACTIONS(5642), 1, anon_sym_CARET, + ACTIONS(5644), 1, + anon_sym_PIPE, + ACTIONS(5648), 1, anon_sym_PERCENT, + ACTIONS(5650), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5658), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5660), 1, + sym__ternary_qmark, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4558), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5628), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5630), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5638), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5646), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5654), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5656), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5652), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [91359] = 6, - ACTIONS(4623), 1, + [90010] = 5, + ACTIONS(3510), 1, anon_sym_EQ, - ACTIONS(4868), 1, - anon_sym_of, - ACTIONS(5705), 1, - anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4621), 12, + ACTIONS(3686), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(3492), 13, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -216155,12 +213311,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4625), 25, + ACTIONS(3496), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -216181,452 +213335,404 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [91414] = 31, - ACTIONS(3967), 1, + [90063] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4704), 1, - anon_sym_LT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4716), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5626), 1, + anon_sym_LT, + ACTIONS(5632), 1, anon_sym_AMP_AMP, - ACTIONS(4718), 1, + ACTIONS(5634), 1, anon_sym_PIPE_PIPE, - ACTIONS(4720), 1, + ACTIONS(5636), 1, anon_sym_GT_GT, - ACTIONS(4724), 1, + ACTIONS(5640), 1, anon_sym_AMP, - ACTIONS(4726), 1, + ACTIONS(5642), 1, anon_sym_CARET, - ACTIONS(4728), 1, + ACTIONS(5644), 1, anon_sym_PIPE, - ACTIONS(4732), 1, + ACTIONS(5648), 1, anon_sym_PERCENT, - ACTIONS(4734), 1, + ACTIONS(5650), 1, anon_sym_STAR_STAR, - ACTIONS(4742), 1, + ACTIONS(5658), 1, anon_sym_QMARK_QMARK, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(4748), 1, + ACTIONS(5660), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4706), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4769), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(5628), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4712), 2, + ACTIONS(5630), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4722), 2, + ACTIONS(5638), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4730), 2, + ACTIONS(5646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4738), 2, + ACTIONS(5654), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4740), 2, + ACTIONS(5656), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5692), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(4736), 3, + ACTIONS(5652), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [91519] = 31, - ACTIONS(3967), 1, + [90168] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4885), 1, + ACTIONS(5626), 1, + anon_sym_LT, + ACTIONS(5632), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(5634), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(5636), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(5640), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(5642), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(5644), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(5648), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(5650), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, - anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(5658), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(5660), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4866), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(4877), 2, + ACTIONS(4771), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(5628), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(5630), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(5638), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(5646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(5654), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(5656), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(5652), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [91624] = 4, - ACTIONS(4213), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4127), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4129), 26, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + [90273] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(4012), 1, anon_sym_LBRACK, + ACTIONS(4014), 1, anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 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, + ACTIONS(4649), 1, anon_sym_satisfies, - [91675] = 31, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, - anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4704), 1, - anon_sym_LT, ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, + anon_sym_LT, ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4716), 1, anon_sym_AMP_AMP, - ACTIONS(4718), 1, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - ACTIONS(4720), 1, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(4724), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(4726), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(4728), 1, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(4732), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(4734), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(4742), 1, + ACTIONS(4740), 1, anon_sym_QMARK_QMARK, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(4748), 1, + ACTIONS(4742), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4706), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4722), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4730), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4738), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4740), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5062), 2, + ACTIONS(5688), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4736), 3, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [91780] = 31, - ACTIONS(3967), 1, + [90378] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4704), 1, - anon_sym_LT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4716), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5626), 1, + anon_sym_LT, + ACTIONS(5632), 1, anon_sym_AMP_AMP, - ACTIONS(4718), 1, + ACTIONS(5634), 1, anon_sym_PIPE_PIPE, - ACTIONS(4720), 1, + ACTIONS(5636), 1, anon_sym_GT_GT, - ACTIONS(4724), 1, + ACTIONS(5640), 1, anon_sym_AMP, - ACTIONS(4726), 1, + ACTIONS(5642), 1, anon_sym_CARET, - ACTIONS(4728), 1, + ACTIONS(5644), 1, anon_sym_PIPE, - ACTIONS(4732), 1, + ACTIONS(5648), 1, anon_sym_PERCENT, - ACTIONS(4734), 1, + ACTIONS(5650), 1, anon_sym_STAR_STAR, - ACTIONS(4742), 1, + ACTIONS(5658), 1, anon_sym_QMARK_QMARK, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(4748), 1, + ACTIONS(5660), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4706), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4773), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(5628), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4712), 2, + ACTIONS(5630), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4722), 2, + ACTIONS(5638), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4730), 2, + ACTIONS(5646), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4738), 2, + ACTIONS(5654), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4740), 2, + ACTIONS(5656), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5072), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4736), 3, + ACTIONS(5652), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [91885] = 32, - ACTIONS(4627), 1, + [90483] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4811), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4847), 1, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5318), 1, + ACTIONS(4708), 1, anon_sym_LT, - ACTIONS(5324), 1, + ACTIONS(4714), 1, anon_sym_AMP_AMP, - ACTIONS(5326), 1, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - ACTIONS(5328), 1, + ACTIONS(4718), 1, anon_sym_GT_GT, - ACTIONS(5332), 1, + ACTIONS(4722), 1, anon_sym_AMP, - ACTIONS(5334), 1, + ACTIONS(4724), 1, anon_sym_CARET, - ACTIONS(5336), 1, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(5340), 1, + ACTIONS(4730), 1, anon_sym_PERCENT, - ACTIONS(5342), 1, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - ACTIONS(5350), 1, + ACTIONS(4740), 1, anon_sym_QMARK_QMARK, - ACTIONS(5352), 1, + ACTIONS(4742), 1, sym__ternary_qmark, - ACTIONS(5708), 1, - anon_sym_SEMI, - ACTIONS(5710), 1, - sym__automatic_semicolon, - STATE(2027), 1, + STATE(1633), 1, sym_type_arguments, - STATE(2189), 1, + STATE(1655), 1, sym_arguments, - STATE(4602), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5320), 2, + ACTIONS(4710), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5322), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5330), 2, + ACTIONS(4720), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5338), 2, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5346), 2, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5348), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5344), 3, + ACTIONS(5014), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4734), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [91992] = 8, - ACTIONS(1643), 1, + [90588] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4854), 2, + ACTIONS(5419), 2, sym_number, sym_private_property_identifier, - STATE(3360), 3, + STATE(3882), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 9, + ACTIONS(3814), 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(3705), 23, + anon_sym_PIPE_RBRACE, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -216650,24 +213756,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [92051] = 8, - ACTIONS(2344), 1, + [90647] = 19, + ACTIONS(231), 1, + anon_sym_STAR, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(2019), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(5694), 1, + anon_sym_async, + ACTIONS(5696), 1, + anon_sym_static, + ACTIONS(5698), 1, + anon_sym_readonly, + ACTIONS(5704), 1, + anon_sym_override, + STATE(2786), 1, + sym_accessibility_modifier, + STATE(2808), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5561), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5692), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5700), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5702), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3688), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5230), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(5690), 14, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [90728] = 7, + ACTIONS(1696), 1, + anon_sym_EQ, + ACTIONS(2373), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4126), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4129), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1694), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(1698), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + 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_satisfies, + [90785] = 8, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(4624), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5712), 2, + ACTIONS(4840), 2, sym_number, sym_private_property_identifier, - STATE(3800), 3, + STATE(3368), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 9, + ACTIONS(3814), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -216677,7 +213895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2362), 23, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -216701,59 +213919,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [92110] = 17, - ACTIONS(2344), 1, - anon_sym_DQUOTE, - ACTIONS(2346), 1, - anon_sym_SQUOTE, - ACTIONS(2364), 1, - anon_sym_async, - ACTIONS(2366), 1, - anon_sym_readonly, - ACTIONS(2370), 1, - anon_sym_override, - ACTIONS(4686), 1, + [90844] = 6, + ACTIONS(4146), 1, + anon_sym_EQ, + ACTIONS(4850), 1, + anon_sym_of, + ACTIONS(5706), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4144), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(4148), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5003), 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_satisfies, + [90899] = 6, + ACTIONS(3510), 1, + anon_sym_EQ, + ACTIONS(3681), 1, + anon_sym_in, + ACTIONS(3684), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3492), 12, anon_sym_STAR, - ACTIONS(5276), 1, + anon_sym_BANG, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(3496), 25, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - ACTIONS(5714), 1, - anon_sym_RBRACE, - STATE(2814), 1, - sym_override_modifier, - STATE(4943), 1, - aux_sym_object_repeat1, + 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, + anon_sym_satisfies, + [90954] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4688), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, + ACTIONS(5364), 2, sym_number, sym_private_property_identifier, - ACTIONS(2368), 2, - anon_sym_get, - anon_sym_set, - STATE(3799), 3, + STATE(3798), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 4, + ACTIONS(3814), 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(2362), 18, + anon_sym_PIPE_RBRACE, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -216761,16 +214068,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [92187] = 4, - ACTIONS(4131), 1, - anon_sym_extends, + [91013] = 32, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, + anon_sym_LBRACK, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4798), 1, + anon_sym_as, + ACTIONS(4800), 1, + anon_sym_BANG, + ACTIONS(4836), 1, + anon_sym_satisfies, + ACTIONS(5233), 1, + anon_sym_LT, + ACTIONS(5239), 1, + anon_sym_AMP_AMP, + ACTIONS(5241), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5243), 1, + anon_sym_GT_GT, + ACTIONS(5247), 1, + anon_sym_AMP, + ACTIONS(5249), 1, + anon_sym_CARET, + ACTIONS(5251), 1, + anon_sym_PIPE, + ACTIONS(5255), 1, + anon_sym_PERCENT, + ACTIONS(5257), 1, + anon_sym_STAR_STAR, + ACTIONS(5265), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5267), 1, + sym__ternary_qmark, + ACTIONS(5709), 1, + anon_sym_SEMI, + ACTIONS(5711), 1, + sym__automatic_semicolon, + STATE(2019), 1, + sym_type_arguments, + STATE(2130), 1, + sym_arguments, + STATE(4524), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4127), 13, + ACTIONS(4834), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5235), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5237), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5245), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5253), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5261), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5263), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5259), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [91120] = 6, + ACTIONS(4604), 1, + anon_sym_EQ, + ACTIONS(4854), 1, + anon_sym_of, + ACTIONS(5713), 1, anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4602), 12, + anon_sym_STAR, + anon_sym_BANG, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -216781,13 +214166,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4129), 26, + ACTIONS(4606), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -216808,24 +214192,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [92238] = 8, - ACTIONS(2344), 1, + [91175] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5375), 2, + ACTIONS(5716), 2, sym_number, sym_private_property_identifier, - STATE(3761), 3, + STATE(3843), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 9, + ACTIONS(3814), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -216835,7 +214219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -216859,34 +214243,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [92297] = 8, - ACTIONS(1643), 1, + [91234] = 13, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(692), 1, + anon_sym_RBRACE, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4622), 1, + anon_sym_EQ, + ACTIONS(4688), 1, anon_sym_LBRACK, + STATE(4810), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5716), 2, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - STATE(3391), 3, + STATE(3816), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3814), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3705), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -216910,280 +214299,238 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [92356] = 7, - ACTIONS(3650), 1, - anon_sym_EQ, - ACTIONS(4637), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4378), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4640), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3499), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3503), 23, - sym__ternary_qmark, - anon_sym_as, + [91303] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - anon_sym_of, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4708), 1, + anon_sym_LT, + ACTIONS(4714), 1, anon_sym_AMP_AMP, + ACTIONS(4716), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4718), 1, + anon_sym_GT_GT, + ACTIONS(4722), 1, + anon_sym_AMP, + ACTIONS(4724), 1, anon_sym_CARET, + ACTIONS(4726), 1, + anon_sym_PIPE, + ACTIONS(4730), 1, anon_sym_PERCENT, + ACTIONS(4732), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4740), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [92413] = 12, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, - anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(5718), 1, - anon_sym_LT, - STATE(1580), 1, + ACTIONS(4742), 1, + sym__ternary_qmark, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4791), 12, + ACTIONS(4710), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4712), 2, anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT, + ACTIONS(4720), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4728), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4736), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4793), 18, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4738), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5718), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4734), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - anon_sym_satisfies, - [92480] = 15, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, + [91408] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(5721), 1, - anon_sym_LT, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4798), 11, - anon_sym_STAR, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4800), 16, - sym__ternary_qmark, + ACTIONS(5433), 2, + sym_number, + sym_private_property_identifier, + STATE(3836), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_BQUOTE, - [92553] = 31, - ACTIONS(3967), 1, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2351), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [91467] = 31, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(5594), 1, + ACTIONS(5233), 1, anon_sym_LT, - ACTIONS(5600), 1, + ACTIONS(5239), 1, anon_sym_AMP_AMP, - ACTIONS(5602), 1, + ACTIONS(5241), 1, anon_sym_PIPE_PIPE, - ACTIONS(5604), 1, + ACTIONS(5243), 1, anon_sym_GT_GT, - ACTIONS(5608), 1, + ACTIONS(5247), 1, anon_sym_AMP, - ACTIONS(5610), 1, + ACTIONS(5249), 1, anon_sym_CARET, - ACTIONS(5612), 1, + ACTIONS(5251), 1, anon_sym_PIPE, - ACTIONS(5616), 1, + ACTIONS(5255), 1, anon_sym_PERCENT, - ACTIONS(5618), 1, + ACTIONS(5257), 1, anon_sym_STAR_STAR, - ACTIONS(5626), 1, + ACTIONS(5265), 1, anon_sym_QMARK_QMARK, - ACTIONS(5628), 1, + ACTIONS(5267), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(2019), 1, sym_type_arguments, - STATE(1656), 1, + STATE(2130), 1, sym_arguments, - STATE(4828), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4805), 2, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(5596), 2, + ACTIONS(5235), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5598), 2, + ACTIONS(5237), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5606), 2, + ACTIONS(5245), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5614), 2, + ACTIONS(5253), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5622), 2, + ACTIONS(5261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5624), 2, + ACTIONS(5263), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, + ACTIONS(5720), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5259), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [92658] = 11, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, - anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(5724), 1, - anon_sym_LT, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, + [91572] = 7, + ACTIONS(4146), 1, + anon_sym_EQ, + ACTIONS(4156), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4781), 12, + ACTIONS(4150), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4153), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4144), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4783), 20, + ACTIONS(4148), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -217201,34 +214548,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [92723] = 8, - ACTIONS(2344), 1, + [91629] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5500), 2, + ACTIONS(5441), 2, sym_number, sym_private_property_identifier, - STATE(3864), 3, + STATE(3753), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 9, + ACTIONS(3814), 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(2362), 23, + anon_sym_PIPE_RBRACE, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -217252,34 +214599,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [92782] = 8, - ACTIONS(2344), 1, + [91688] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5556), 2, + ACTIONS(5449), 2, sym_number, sym_private_property_identifier, - STATE(3771), 3, + STATE(3828), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 9, + ACTIONS(3814), 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(2362), 23, + anon_sym_PIPE_RBRACE, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -217303,58 +214650,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [92841] = 16, - ACTIONS(2344), 1, + [91747] = 13, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(2364), 1, - anon_sym_async, - ACTIONS(2366), 1, - anon_sym_readonly, - ACTIONS(2370), 1, - anon_sym_override, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5003), 1, - anon_sym_STAR, - STATE(2814), 1, - sym_override_modifier, + ACTIONS(4992), 1, + anon_sym_RBRACE, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - ACTIONS(2368), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5727), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3799), 3, + STATE(3816), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 4, + ACTIONS(3814), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2362), 18, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -217362,108 +214706,326 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [92916] = 31, - ACTIONS(4627), 1, + [91816] = 24, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4629), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, + anon_sym_GT_GT, + ACTIONS(5596), 1, + anon_sym_PERCENT, + ACTIONS(5598), 1, + anon_sym_LT, + ACTIONS(5606), 1, + anon_sym_AMP, + ACTIONS(5608), 1, + anon_sym_CARET, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4762), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5586), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5588), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5592), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5594), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5612), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5614), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5600), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4760), 8, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [91907] = 15, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5583), 1, + anon_sym_LT, + ACTIONS(5596), 1, + anon_sym_PERCENT, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5586), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4762), 10, + anon_sym_BANG, + anon_sym_in, + 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_GT, + ACTIONS(4760), 16, + sym__ternary_qmark, anon_sym_as, - ACTIONS(4811), 1, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + anon_sym_satisfies, + [91980] = 6, + ACTIONS(1696), 1, + anon_sym_EQ, + ACTIONS(4859), 1, + anon_sym_of, + ACTIONS(5722), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1694), 12, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4847), 1, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(1698), 25, + sym__ternary_qmark, + 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, anon_sym_satisfies, - ACTIONS(5318), 1, + [92035] = 5, + ACTIONS(3550), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3614), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(3492), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - ACTIONS(5324), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(3496), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(5326), 1, anon_sym_PIPE_PIPE, - ACTIONS(5328), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [92088] = 31, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4875), 1, + anon_sym_AMP_AMP, + ACTIONS(4877), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(5332), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(5334), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(5336), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(5340), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(5342), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(5350), 1, + ACTIONS(4895), 1, + anon_sym_LT, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - ACTIONS(5352), 1, + ACTIONS(4905), 1, sym__ternary_qmark, - STATE(2027), 1, + STATE(1633), 1, sym_type_arguments, - STATE(2189), 1, + STATE(1655), 1, sym_arguments, - STATE(4602), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5119), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5320), 2, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5322), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5330), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5338), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5346), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5348), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5344), 3, + ACTIONS(5718), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(4897), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [93021] = 8, - ACTIONS(2344), 1, - anon_sym_DQUOTE, - ACTIONS(2346), 1, - anon_sym_SQUOTE, - ACTIONS(4686), 1, - anon_sym_LBRACK, + [92193] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5730), 2, + ACTIONS(1975), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - STATE(3884), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 9, + ACTIONS(3814), 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, - ACTIONS(2362), 23, + anon_sym_PIPE_RBRACE, + ACTIONS(1973), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -217487,34 +215049,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [93080] = 8, - ACTIONS(2344), 1, + [92244] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5578), 2, + ACTIONS(5477), 2, sym_number, sym_private_property_identifier, - STATE(3773), 3, + STATE(3898), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 9, + ACTIONS(3814), 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(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -217538,30 +215100,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [93139] = 12, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, - anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(5732), 1, - anon_sym_LT, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, + [92303] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4791), 12, + ACTIONS(1730), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1734), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -217571,72 +215120,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4793), 18, + ACTIONS(1736), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_BQUOTE, - anon_sym_satisfies, - [93206] = 15, - ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(5735), 1, - anon_sym_LT, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4798), 11, - anon_sym_STAR, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4800), 16, - sym__ternary_qmark, - anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -217650,197 +215144,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - [93279] = 31, - ACTIONS(3967), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [92354] = 32, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4590), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4592), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4798), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4800), 1, anon_sym_BANG, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4836), 1, anon_sym_satisfies, - ACTIONS(5635), 1, + ACTIONS(5233), 1, anon_sym_LT, - ACTIONS(5641), 1, + ACTIONS(5239), 1, anon_sym_AMP_AMP, - ACTIONS(5643), 1, + ACTIONS(5241), 1, anon_sym_PIPE_PIPE, - ACTIONS(5645), 1, + ACTIONS(5243), 1, anon_sym_GT_GT, - ACTIONS(5649), 1, + ACTIONS(5247), 1, anon_sym_AMP, - ACTIONS(5651), 1, + ACTIONS(5249), 1, anon_sym_CARET, - ACTIONS(5653), 1, + ACTIONS(5251), 1, anon_sym_PIPE, - ACTIONS(5657), 1, + ACTIONS(5255), 1, anon_sym_PERCENT, - ACTIONS(5659), 1, + ACTIONS(5257), 1, anon_sym_STAR_STAR, - ACTIONS(5667), 1, + ACTIONS(5265), 1, anon_sym_QMARK_QMARK, - ACTIONS(5669), 1, + ACTIONS(5267), 1, sym__ternary_qmark, - STATE(1580), 1, + ACTIONS(5725), 1, + anon_sym_SEMI, + ACTIONS(5727), 1, + sym__automatic_semicolon, + STATE(2019), 1, sym_type_arguments, - STATE(1656), 1, + STATE(2130), 1, sym_arguments, - STATE(4828), 1, + STATE(4524), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4834), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4805), 2, - anon_sym_RBRACK, - anon_sym_BQUOTE, - ACTIONS(5637), 2, + ACTIONS(5235), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(5237), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5647), 2, + ACTIONS(5245), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5655), 2, + ACTIONS(5253), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5663), 2, + ACTIONS(5261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5665), 2, + ACTIONS(5263), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5661), 3, + ACTIONS(5259), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [93384] = 11, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, + [92461] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(5738), 1, - anon_sym_LT, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4781), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4783), 20, - sym__ternary_qmark, - anon_sym_as, - 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_satisfies, - [93449] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4131), 2, + ACTIONS(5405), 2, + sym_number, + sym_private_property_identifier, + STATE(3888), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 9, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4127), 13, - anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4129), 25, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, 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, - anon_sym_satisfies, - [93500] = 7, - ACTIONS(1709), 1, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [92520] = 7, + ACTIONS(3642), 1, anon_sym_EQ, - ACTIONS(2376), 1, - anon_sym_extends, + ACTIONS(4608), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4390), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4393), 2, + ACTIONS(4408), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4611), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1707), 11, + anon_sym_GT, + ACTIONS(3492), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -217851,12 +215299,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(1711), 23, + ACTIONS(3496), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -217876,39 +215323,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [93557] = 13, - ACTIONS(239), 1, + [92577] = 13, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(699), 1, - anon_sym_RBRACE, - ACTIONS(2344), 1, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, + ACTIONS(5051), 1, + anon_sym_RBRACE, + STATE(4792), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - STATE(3799), 3, + STATE(3816), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 4, + ACTIONS(3814), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -217932,37 +215379,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [93626] = 7, - ACTIONS(4149), 1, - anon_sym_extends, - ACTIONS(4445), 1, - anon_sym_EQ, + [92646] = 8, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(5598), 1, + anon_sym_LT, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4449), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4452), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4443), 11, + ACTIONS(4704), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4447), 23, + ACTIONS(4706), 23, sym__ternary_qmark, 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, @@ -217982,23 +215430,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [93683] = 5, - ACTIONS(3515), 1, - anon_sym_EQ, + [92705] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4688), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3693), 3, + ACTIONS(5300), 2, + sym_number, + sym_private_property_identifier, + STATE(3780), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 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(2351), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [92764] = 7, + ACTIONS(3510), 1, + anon_sym_EQ, + ACTIONS(4408), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4608), 2, anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(3499), 13, + anon_sym_LBRACK, + ACTIONS(4611), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3492), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -218006,11 +215507,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3503), 23, + ACTIONS(3496), 23, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -218030,39 +215531,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [93736] = 13, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(2344), 1, + [92821] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5074), 1, - anon_sym_RBRACE, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, + ACTIONS(5547), 2, sym_number, sym_private_property_identifier, - STATE(3799), 3, + STATE(3851), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 4, + ACTIONS(3814), 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(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -218086,34 +215582,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [93805] = 8, - ACTIONS(2344), 1, + [92880] = 7, + ACTIONS(3516), 1, + anon_sym_DOT, + ACTIONS(3520), 1, + anon_sym_QMARK_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3522), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(3512), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3492), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(3496), 20, + sym__ternary_qmark, + 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_satisfies, + [92937] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5389), 2, + ACTIONS(5346), 2, sym_number, sym_private_property_identifier, - STATE(3870), 3, + STATE(3845), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 9, + ACTIONS(3814), 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(2362), 23, + anon_sym_PIPE_RBRACE, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -218137,86 +215683,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [93864] = 19, - ACTIONS(233), 1, + [92996] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4184), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(4182), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3492), 11, anon_sym_STAR, - ACTIONS(2026), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2344), 1, - anon_sym_DQUOTE, - ACTIONS(2346), 1, - anon_sym_SQUOTE, - ACTIONS(4686), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(3496), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + 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_satisfies, + [93049] = 31, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(5745), 1, - anon_sym_async, - ACTIONS(5747), 1, - anon_sym_static, - ACTIONS(5749), 1, - anon_sym_readonly, - ACTIONS(5755), 1, - anon_sym_override, - STATE(2785), 1, - sym_accessibility_modifier, - STATE(2801), 1, - sym_override_modifier, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, + anon_sym_GT_GT, + ACTIONS(5596), 1, + anon_sym_PERCENT, + ACTIONS(5598), 1, + anon_sym_LT, + ACTIONS(5602), 1, + anon_sym_AMP_AMP, + ACTIONS(5604), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5606), 1, + anon_sym_AMP, + ACTIONS(5608), 1, + anon_sym_CARET, + ACTIONS(5610), 1, + anon_sym_PIPE, + ACTIONS(5616), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5618), 1, + sym__ternary_qmark, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5282), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5743), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(5751), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5753), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3528), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5253), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(5741), 14, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [93945] = 8, - ACTIONS(2344), 1, + ACTIONS(4468), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5586), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5588), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5592), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5594), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5612), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5614), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5600), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [93154] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5385), 2, + ACTIONS(5376), 2, sym_number, sym_private_property_identifier, - STATE(3766), 3, + STATE(3781), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 9, + ACTIONS(3814), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -218226,7 +215832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -218250,147 +215856,248 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [94004] = 31, - ACTIONS(3967), 1, + [93213] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4704), 1, - anon_sym_LT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4716), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4875), 1, anon_sym_AMP_AMP, - ACTIONS(4718), 1, + ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4720), 1, + ACTIONS(4879), 1, anon_sym_GT_GT, - ACTIONS(4724), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4726), 1, + ACTIONS(4885), 1, anon_sym_CARET, - ACTIONS(4728), 1, + ACTIONS(4887), 1, anon_sym_PIPE, - ACTIONS(4732), 1, + ACTIONS(4891), 1, anon_sym_PERCENT, - ACTIONS(4734), 1, + ACTIONS(4893), 1, anon_sym_STAR_STAR, - ACTIONS(4742), 1, + ACTIONS(4895), 1, + anon_sym_LT, + ACTIONS(4903), 1, anon_sym_QMARK_QMARK, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(4748), 1, + ACTIONS(4905), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4706), 2, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4852), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(4867), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4712), 2, + ACTIONS(4873), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4722), 2, + ACTIONS(4881), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4730), 2, + ACTIONS(4889), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4738), 2, + ACTIONS(4899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4740), 2, + ACTIONS(4901), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4744), 2, + ACTIONS(4897), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [93318] = 31, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, + anon_sym_GT_GT, + ACTIONS(5596), 1, + anon_sym_PERCENT, + ACTIONS(5598), 1, + anon_sym_LT, + ACTIONS(5602), 1, + anon_sym_AMP_AMP, + ACTIONS(5604), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5606), 1, + anon_sym_AMP, + ACTIONS(5608), 1, + anon_sym_CARET, + ACTIONS(5610), 1, + anon_sym_PIPE, + ACTIONS(5616), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5618), 1, + sym__ternary_qmark, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5026), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4736), 3, + ACTIONS(4744), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(5586), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5588), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5592), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5594), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5612), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5614), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5600), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [94109] = 8, - ACTIONS(2344), 1, - anon_sym_DQUOTE, - ACTIONS(2346), 1, - anon_sym_SQUOTE, - ACTIONS(4686), 1, + [93423] = 31, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, + anon_sym_GT_GT, + ACTIONS(5596), 1, + anon_sym_PERCENT, + ACTIONS(5598), 1, + anon_sym_LT, + ACTIONS(5602), 1, + anon_sym_AMP_AMP, + ACTIONS(5604), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5606), 1, + anon_sym_AMP, + ACTIONS(5608), 1, + anon_sym_CARET, + ACTIONS(5610), 1, + anon_sym_PIPE, + ACTIONS(5616), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5618), 1, + sym__ternary_qmark, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5448), 2, - sym_number, - sym_private_property_identifier, - STATE(3802), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4756), 2, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2362), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [94168] = 6, - ACTIONS(3515), 1, - anon_sym_EQ, - ACTIONS(3696), 1, + anon_sym_BQUOTE, + ACTIONS(5586), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5588), 2, anon_sym_in, - ACTIONS(3699), 1, - anon_sym_of, + anon_sym_GT, + ACTIONS(5592), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5594), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5612), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5614), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5600), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [93528] = 7, + ACTIONS(4104), 1, + anon_sym_QMARK, + ACTIONS(4106), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3499), 12, + ACTIONS(4513), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4510), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(3492), 11, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -218398,13 +216105,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3503), 25, + ACTIONS(3496), 22, sym__ternary_qmark, 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, @@ -218424,192 +216128,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [94223] = 8, - ACTIONS(2344), 1, - anon_sym_DQUOTE, - ACTIONS(2346), 1, - anon_sym_SQUOTE, - ACTIONS(4686), 1, + [93585] = 31, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5415), 2, - sym_number, - sym_private_property_identifier, - STATE(3838), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, + anon_sym_GT_GT, + ACTIONS(5596), 1, + anon_sym_PERCENT, + ACTIONS(5598), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2362), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [94282] = 8, - ACTIONS(2344), 1, - anon_sym_DQUOTE, - ACTIONS(2346), 1, - anon_sym_SQUOTE, - ACTIONS(4686), 1, - anon_sym_LBRACK, + ACTIONS(5602), 1, + anon_sym_AMP_AMP, + ACTIONS(5604), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5606), 1, + anon_sym_AMP, + ACTIONS(5608), 1, + anon_sym_CARET, + ACTIONS(5610), 1, + anon_sym_PIPE, + ACTIONS(5616), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5618), 1, + sym__ternary_qmark, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5369), 2, - sym_number, - sym_private_property_identifier, - STATE(3866), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4758), 2, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2362), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [94341] = 8, - ACTIONS(2344), 1, - anon_sym_DQUOTE, - ACTIONS(2346), 1, - anon_sym_SQUOTE, - ACTIONS(4686), 1, - anon_sym_LBRACK, + anon_sym_BQUOTE, + ACTIONS(5586), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5588), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5592), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5594), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5612), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5614), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5600), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [93690] = 4, + ACTIONS(3601), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5454), 2, - sym_number, - sym_private_property_identifier, - STATE(3818), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 9, - sym__automatic_semicolon, + ACTIONS(3492), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(3496), 26, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2362), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [94400] = 13, - ACTIONS(239), 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_satisfies, + [93741] = 13, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(672), 1, - anon_sym_RBRACE, - ACTIONS(2344), 1, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - STATE(4823), 1, + ACTIONS(5053), 1, + anon_sym_RBRACE, + STATE(4792), 1, aux_sym_object_repeat1, - STATE(4834), 1, + STATE(4815), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - STATE(3799), 3, + STATE(3816), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 4, + ACTIONS(3814), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -218633,85 +216305,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [94469] = 8, - ACTIONS(2344), 1, - anon_sym_DQUOTE, - ACTIONS(2346), 1, - anon_sym_SQUOTE, - ACTIONS(4686), 1, + [93810] = 31, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, + anon_sym_GT_GT, + ACTIONS(5596), 1, + anon_sym_PERCENT, + ACTIONS(5598), 1, + anon_sym_LT, + ACTIONS(5602), 1, + anon_sym_AMP_AMP, + ACTIONS(5604), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5606), 1, + anon_sym_AMP, + ACTIONS(5608), 1, + anon_sym_CARET, + ACTIONS(5610), 1, + anon_sym_PIPE, + ACTIONS(5616), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5618), 1, + sym__ternary_qmark, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5464), 2, - sym_number, - sym_private_property_identifier, - STATE(3833), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4504), 2, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2362), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [94528] = 8, - ACTIONS(2344), 1, + anon_sym_BQUOTE, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5586), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5588), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5592), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5594), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5612), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5614), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5600), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [93915] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5472), 2, + ACTIONS(5539), 2, sym_number, sym_private_property_identifier, - STATE(3755), 3, + STATE(3890), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 9, + ACTIONS(3814), 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(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -218735,35 +216430,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [94587] = 5, - ACTIONS(3543), 1, - anon_sym_EQ, + [93974] = 6, + ACTIONS(4608), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3600), 3, + ACTIONS(4408), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(3499), 13, + anon_sym_extends, + ACTIONS(4611), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3492), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(3503), 23, + ACTIONS(3496), 24, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -218783,22 +216479,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [94640] = 7, - ACTIONS(3666), 1, - anon_sym_EQ, - ACTIONS(4637), 1, + [94029] = 6, + ACTIONS(4510), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4378), 2, + ACTIONS(4106), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(4640), 3, + ACTIONS(4513), 3, anon_sym_AMP, anon_sym_PIPE, anon_sym_GT, - ACTIONS(3499), 10, + ACTIONS(3492), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -218809,11 +216503,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 23, + ACTIONS(3496), 24, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -218833,55 +216528,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [94697] = 13, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(2344), 1, + [94084] = 23, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(4686), 1, + ACTIONS(3722), 1, + anon_sym_override, + ACTIONS(3828), 1, + anon_sym_AT, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(5005), 1, - anon_sym_RBRACE, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, - aux_sym_object_repeat1, + ACTIONS(5729), 1, + anon_sym_STAR, + ACTIONS(5731), 1, + anon_sym_async, + ACTIONS(5735), 1, + anon_sym_static, + ACTIONS(5737), 1, + anon_sym_readonly, + ACTIONS(5741), 1, + anon_sym_declare, + ACTIONS(5743), 1, + anon_sym_abstract, + ACTIONS(5745), 1, + anon_sym_accessor, + STATE(2699), 1, + sym_method_definition, + STATE(2732), 1, + sym_accessibility_modifier, + STATE(2761), 1, + aux_sym_export_statement_repeat1, + STATE(2802), 1, + sym_decorator, + STATE(2811), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, + ACTIONS(5733), 2, sym_number, sym_private_property_identifier, - STATE(3799), 3, + ACTIONS(5739), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3720), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3045), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2362), 23, + ACTIONS(3700), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -218889,68 +216594,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [94766] = 4, + [94173] = 18, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, + anon_sym_GT_GT, + ACTIONS(5596), 1, + anon_sym_PERCENT, + ACTIONS(5598), 1, + anon_sym_LT, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1879), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1883), 13, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5586), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5592), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5594), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4762), 7, anon_sym_BANG, anon_sym_in, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1885), 25, - sym__automatic_semicolon, + ACTIONS(4760), 14, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - 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, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_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_satisfies, - [94817] = 7, - ACTIONS(3515), 1, - anon_sym_EQ, - ACTIONS(4378), 1, - anon_sym_extends, + [94252] = 6, + ACTIONS(4614), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4637), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4640), 2, + ACTIONS(4378), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4617), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3499), 11, + anon_sym_GT, + ACTIONS(4458), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -218961,12 +216679,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(3503), 23, + ACTIONS(4460), 24, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -218986,122 +216704,214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [94874] = 8, - ACTIONS(2344), 1, - anon_sym_DQUOTE, - ACTIONS(2346), 1, - anon_sym_SQUOTE, - ACTIONS(4686), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5304), 2, - sym_number, - sym_private_property_identifier, - STATE(3821), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + [94307] = 13, + ACTIONS(4010), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2362), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [94933] = 7, - ACTIONS(3537), 1, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(3539), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5583), 1, + anon_sym_LT, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3527), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(3517), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3499), 11, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4762), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3503), 20, + ACTIONS(4760), 17, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_BQUOTE, + anon_sym_satisfies, + [94376] = 25, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4762), 1, + anon_sym_BANG, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, + anon_sym_GT_GT, + ACTIONS(5596), 1, + anon_sym_PERCENT, + ACTIONS(5598), 1, + anon_sym_LT, + ACTIONS(5606), 1, + anon_sym_AMP, + ACTIONS(5608), 1, + anon_sym_CARET, + ACTIONS(5610), 1, + anon_sym_PIPE, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(5586), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5588), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5592), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5594), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5612), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5614), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5600), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4760), 8, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [94990] = 8, - ACTIONS(3967), 1, + [94469] = 26, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(5757), 1, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4762), 1, + anon_sym_BANG, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, + anon_sym_GT_GT, + ACTIONS(5596), 1, + anon_sym_PERCENT, + ACTIONS(5598), 1, + anon_sym_LT, + ACTIONS(5602), 1, + anon_sym_AMP_AMP, + ACTIONS(5606), 1, + anon_sym_AMP, + ACTIONS(5608), 1, + anon_sym_CARET, + ACTIONS(5610), 1, + anon_sym_PIPE, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5586), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5588), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5592), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5594), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5612), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5614), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5600), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4760), 7, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [94564] = 8, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(5747), 1, anon_sym_LT, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4700), 12, + ACTIONS(4704), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -219114,7 +216924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4702), 23, + ACTIONS(4706), 23, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -219138,415 +216948,415 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [95049] = 31, - ACTIONS(3967), 1, + [94623] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5757), 1, + ACTIONS(5747), 1, anon_sym_LT, - ACTIONS(5763), 1, + ACTIONS(5753), 1, anon_sym_AMP_AMP, - ACTIONS(5765), 1, + ACTIONS(5755), 1, anon_sym_PIPE_PIPE, - ACTIONS(5767), 1, + ACTIONS(5757), 1, anon_sym_GT_GT, - ACTIONS(5771), 1, + ACTIONS(5761), 1, anon_sym_AMP, - ACTIONS(5773), 1, + ACTIONS(5763), 1, anon_sym_CARET, - ACTIONS(5775), 1, + ACTIONS(5765), 1, anon_sym_PIPE, - ACTIONS(5779), 1, + ACTIONS(5769), 1, anon_sym_PERCENT, - ACTIONS(5781), 1, + ACTIONS(5771), 1, anon_sym_STAR_STAR, - ACTIONS(5789), 1, + ACTIONS(5779), 1, anon_sym_QMARK_QMARK, - ACTIONS(5791), 1, + ACTIONS(5781), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4483), 2, + ACTIONS(4468), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5759), 2, + ACTIONS(5749), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5761), 2, + ACTIONS(5751), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5769), 2, + ACTIONS(5759), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5777), 2, + ACTIONS(5767), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5785), 2, + ACTIONS(5775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5787), 2, + ACTIONS(5777), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5783), 3, + ACTIONS(5773), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [95154] = 31, - ACTIONS(3967), 1, + [94728] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5757), 1, + ACTIONS(5747), 1, anon_sym_LT, - ACTIONS(5763), 1, + ACTIONS(5753), 1, anon_sym_AMP_AMP, - ACTIONS(5765), 1, + ACTIONS(5755), 1, anon_sym_PIPE_PIPE, - ACTIONS(5767), 1, + ACTIONS(5757), 1, anon_sym_GT_GT, - ACTIONS(5771), 1, + ACTIONS(5761), 1, anon_sym_AMP, - ACTIONS(5773), 1, + ACTIONS(5763), 1, anon_sym_CARET, - ACTIONS(5775), 1, + ACTIONS(5765), 1, anon_sym_PIPE, - ACTIONS(5779), 1, + ACTIONS(5769), 1, anon_sym_PERCENT, - ACTIONS(5781), 1, + ACTIONS(5771), 1, anon_sym_STAR_STAR, - ACTIONS(5789), 1, + ACTIONS(5779), 1, anon_sym_QMARK_QMARK, - ACTIONS(5791), 1, + ACTIONS(5781), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4750), 2, + ACTIONS(4744), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(5759), 2, + ACTIONS(5749), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5761), 2, + ACTIONS(5751), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5769), 2, + ACTIONS(5759), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5777), 2, + ACTIONS(5767), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5785), 2, + ACTIONS(5775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5787), 2, + ACTIONS(5777), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5783), 3, + ACTIONS(5773), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [95259] = 31, - ACTIONS(3967), 1, + [94833] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5757), 1, + ACTIONS(5747), 1, anon_sym_LT, - ACTIONS(5763), 1, + ACTIONS(5753), 1, anon_sym_AMP_AMP, - ACTIONS(5765), 1, + ACTIONS(5755), 1, anon_sym_PIPE_PIPE, - ACTIONS(5767), 1, + ACTIONS(5757), 1, anon_sym_GT_GT, - ACTIONS(5771), 1, + ACTIONS(5761), 1, anon_sym_AMP, - ACTIONS(5773), 1, + ACTIONS(5763), 1, anon_sym_CARET, - ACTIONS(5775), 1, + ACTIONS(5765), 1, anon_sym_PIPE, - ACTIONS(5779), 1, + ACTIONS(5769), 1, anon_sym_PERCENT, - ACTIONS(5781), 1, + ACTIONS(5771), 1, anon_sym_STAR_STAR, - ACTIONS(5789), 1, + ACTIONS(5779), 1, anon_sym_QMARK_QMARK, - ACTIONS(5791), 1, + ACTIONS(5781), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4752), 2, + ACTIONS(4756), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(5759), 2, + ACTIONS(5749), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5761), 2, + ACTIONS(5751), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5769), 2, + ACTIONS(5759), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5777), 2, + ACTIONS(5767), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5785), 2, + ACTIONS(5775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5787), 2, + ACTIONS(5777), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5783), 3, + ACTIONS(5773), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [95364] = 31, - ACTIONS(3967), 1, + [94938] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5757), 1, + ACTIONS(5747), 1, anon_sym_LT, - ACTIONS(5763), 1, + ACTIONS(5753), 1, anon_sym_AMP_AMP, - ACTIONS(5765), 1, + ACTIONS(5755), 1, anon_sym_PIPE_PIPE, - ACTIONS(5767), 1, + ACTIONS(5757), 1, anon_sym_GT_GT, - ACTIONS(5771), 1, + ACTIONS(5761), 1, anon_sym_AMP, - ACTIONS(5773), 1, + ACTIONS(5763), 1, anon_sym_CARET, - ACTIONS(5775), 1, + ACTIONS(5765), 1, anon_sym_PIPE, - ACTIONS(5779), 1, + ACTIONS(5769), 1, anon_sym_PERCENT, - ACTIONS(5781), 1, + ACTIONS(5771), 1, anon_sym_STAR_STAR, - ACTIONS(5789), 1, + ACTIONS(5779), 1, anon_sym_QMARK_QMARK, - ACTIONS(5791), 1, + ACTIONS(5781), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4754), 2, + ACTIONS(4758), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(5759), 2, + ACTIONS(5749), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5761), 2, + ACTIONS(5751), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5769), 2, + ACTIONS(5759), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5777), 2, + ACTIONS(5767), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5785), 2, + ACTIONS(5775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5787), 2, + ACTIONS(5777), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5783), 3, + ACTIONS(5773), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [95469] = 31, - ACTIONS(3967), 1, + [95043] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5757), 1, + ACTIONS(5747), 1, anon_sym_LT, - ACTIONS(5763), 1, + ACTIONS(5753), 1, anon_sym_AMP_AMP, - ACTIONS(5765), 1, + ACTIONS(5755), 1, anon_sym_PIPE_PIPE, - ACTIONS(5767), 1, + ACTIONS(5757), 1, anon_sym_GT_GT, - ACTIONS(5771), 1, + ACTIONS(5761), 1, anon_sym_AMP, - ACTIONS(5773), 1, + ACTIONS(5763), 1, anon_sym_CARET, - ACTIONS(5775), 1, + ACTIONS(5765), 1, anon_sym_PIPE, - ACTIONS(5779), 1, + ACTIONS(5769), 1, anon_sym_PERCENT, - ACTIONS(5781), 1, + ACTIONS(5771), 1, anon_sym_STAR_STAR, - ACTIONS(5789), 1, + ACTIONS(5779), 1, anon_sym_QMARK_QMARK, - ACTIONS(5791), 1, + ACTIONS(5781), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4523), 2, + ACTIONS(4504), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5759), 2, + ACTIONS(5749), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5761), 2, + ACTIONS(5751), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5769), 2, + ACTIONS(5759), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5777), 2, + ACTIONS(5767), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5785), 2, + ACTIONS(5775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5787), 2, + ACTIONS(5777), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5783), 3, + ACTIONS(5773), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [95574] = 18, - ACTIONS(3967), 1, + [95148] = 18, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5757), 1, + ACTIONS(5747), 1, anon_sym_LT, - ACTIONS(5767), 1, + ACTIONS(5757), 1, anon_sym_GT_GT, - ACTIONS(5779), 1, + ACTIONS(5769), 1, anon_sym_PERCENT, - ACTIONS(5781), 1, + ACTIONS(5771), 1, anon_sym_STAR_STAR, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5759), 2, + ACTIONS(5749), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5769), 2, + ACTIONS(5759), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5777), 2, + ACTIONS(5767), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4758), 7, + ACTIONS(4762), 7, anon_sym_BANG, anon_sym_in, anon_sym_AMP, @@ -219554,7 +217364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4756), 14, + ACTIONS(4760), 14, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -219569,32 +217379,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [95653] = 13, - ACTIONS(3967), 1, + [95227] = 13, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5781), 1, + ACTIONS(5771), 1, anon_sym_STAR_STAR, - ACTIONS(5793), 1, + ACTIONS(5783), 1, anon_sym_LT, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4758), 12, + ACTIONS(4762), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -219607,7 +217417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4756), 17, + ACTIONS(4760), 17, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -219625,66 +217435,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [95722] = 25, - ACTIONS(3967), 1, + [95296] = 25, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4758), 1, + ACTIONS(4762), 1, anon_sym_BANG, - ACTIONS(5757), 1, + ACTIONS(5747), 1, anon_sym_LT, - ACTIONS(5767), 1, + ACTIONS(5757), 1, anon_sym_GT_GT, - ACTIONS(5771), 1, + ACTIONS(5761), 1, anon_sym_AMP, - ACTIONS(5773), 1, + ACTIONS(5763), 1, anon_sym_CARET, - ACTIONS(5775), 1, + ACTIONS(5765), 1, anon_sym_PIPE, - ACTIONS(5779), 1, + ACTIONS(5769), 1, anon_sym_PERCENT, - ACTIONS(5781), 1, + ACTIONS(5771), 1, anon_sym_STAR_STAR, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5759), 2, + ACTIONS(5749), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5761), 2, + ACTIONS(5751), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5769), 2, + ACTIONS(5759), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5777), 2, + ACTIONS(5767), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5785), 2, + ACTIONS(5775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5787), 2, + ACTIONS(5777), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5783), 3, + ACTIONS(5773), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4756), 8, + ACTIONS(4760), 8, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -219693,68 +217503,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [95815] = 26, - ACTIONS(3967), 1, + [95389] = 26, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4758), 1, + ACTIONS(4762), 1, anon_sym_BANG, - ACTIONS(5757), 1, + ACTIONS(5747), 1, anon_sym_LT, - ACTIONS(5763), 1, + ACTIONS(5753), 1, anon_sym_AMP_AMP, - ACTIONS(5767), 1, + ACTIONS(5757), 1, anon_sym_GT_GT, - ACTIONS(5771), 1, + ACTIONS(5761), 1, anon_sym_AMP, - ACTIONS(5773), 1, + ACTIONS(5763), 1, anon_sym_CARET, - ACTIONS(5775), 1, + ACTIONS(5765), 1, anon_sym_PIPE, - ACTIONS(5779), 1, + ACTIONS(5769), 1, anon_sym_PERCENT, - ACTIONS(5781), 1, + ACTIONS(5771), 1, anon_sym_STAR_STAR, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5759), 2, + ACTIONS(5749), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5761), 2, + ACTIONS(5751), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5769), 2, + ACTIONS(5759), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5777), 2, + ACTIONS(5767), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5785), 2, + ACTIONS(5775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5787), 2, + ACTIONS(5777), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5783), 3, + ACTIONS(5773), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4756), 7, + ACTIONS(4760), 7, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -219762,40 +217572,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [95910] = 16, - ACTIONS(3967), 1, + [95484] = 16, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5779), 1, + ACTIONS(5769), 1, anon_sym_PERCENT, - ACTIONS(5781), 1, + ACTIONS(5771), 1, anon_sym_STAR_STAR, - ACTIONS(5793), 1, + ACTIONS(5783), 1, anon_sym_LT, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5759), 2, + ACTIONS(5749), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5777), 2, + ACTIONS(5767), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4758), 8, + ACTIONS(4762), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, @@ -219804,7 +217614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4756), 16, + ACTIONS(4760), 16, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -219821,62 +217631,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [95985] = 22, - ACTIONS(3967), 1, + [95559] = 22, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5757), 1, + ACTIONS(5747), 1, anon_sym_LT, - ACTIONS(5767), 1, + ACTIONS(5757), 1, anon_sym_GT_GT, - ACTIONS(5779), 1, + ACTIONS(5769), 1, anon_sym_PERCENT, - ACTIONS(5781), 1, + ACTIONS(5771), 1, anon_sym_STAR_STAR, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5759), 2, + ACTIONS(5749), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5761), 2, + ACTIONS(5751), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5769), 2, + ACTIONS(5759), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5777), 2, + ACTIONS(5767), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5785), 2, + ACTIONS(5775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5787), 2, + ACTIONS(5777), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4758), 3, + ACTIONS(4762), 3, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5783), 3, + ACTIONS(5773), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4756), 9, + ACTIONS(4760), 9, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -219886,63 +217696,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [96072] = 23, - ACTIONS(3967), 1, + [95646] = 23, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5757), 1, + ACTIONS(5747), 1, anon_sym_LT, - ACTIONS(5767), 1, + ACTIONS(5757), 1, anon_sym_GT_GT, - ACTIONS(5771), 1, + ACTIONS(5761), 1, anon_sym_AMP, - ACTIONS(5779), 1, + ACTIONS(5769), 1, anon_sym_PERCENT, - ACTIONS(5781), 1, + ACTIONS(5771), 1, anon_sym_STAR_STAR, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4758), 2, + ACTIONS(4762), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(5759), 2, + ACTIONS(5749), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5761), 2, + ACTIONS(5751), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5769), 2, + ACTIONS(5759), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5777), 2, + ACTIONS(5767), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5785), 2, + ACTIONS(5775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5787), 2, + ACTIONS(5777), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5783), 3, + ACTIONS(5773), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4756), 9, + ACTIONS(4760), 9, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -219952,65 +217762,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [96161] = 24, - ACTIONS(3967), 1, + [95735] = 24, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5757), 1, + ACTIONS(5747), 1, anon_sym_LT, - ACTIONS(5767), 1, + ACTIONS(5757), 1, anon_sym_GT_GT, - ACTIONS(5771), 1, + ACTIONS(5761), 1, anon_sym_AMP, - ACTIONS(5773), 1, + ACTIONS(5763), 1, anon_sym_CARET, - ACTIONS(5779), 1, + ACTIONS(5769), 1, anon_sym_PERCENT, - ACTIONS(5781), 1, + ACTIONS(5771), 1, anon_sym_STAR_STAR, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4758), 2, + ACTIONS(4762), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(5759), 2, + ACTIONS(5749), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5761), 2, + ACTIONS(5751), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5769), 2, + ACTIONS(5759), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5777), 2, + ACTIONS(5767), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5785), 2, + ACTIONS(5775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5787), 2, + ACTIONS(5777), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5783), 3, + ACTIONS(5773), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4756), 8, + ACTIONS(4760), 8, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -220019,37 +217829,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [96252] = 15, - ACTIONS(3967), 1, + [95826] = 15, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5779), 1, + ACTIONS(5769), 1, anon_sym_PERCENT, - ACTIONS(5781), 1, + ACTIONS(5771), 1, anon_sym_STAR_STAR, - ACTIONS(5793), 1, + ACTIONS(5783), 1, anon_sym_LT, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5759), 2, + ACTIONS(5749), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4758), 10, + ACTIONS(4762), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, @@ -220060,7 +217870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4756), 16, + ACTIONS(4760), 16, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -220077,38 +217887,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [96325] = 16, - ACTIONS(3967), 1, + [95899] = 16, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5781), 1, + ACTIONS(5771), 1, anon_sym_STAR_STAR, - ACTIONS(5793), 1, + ACTIONS(5783), 1, anon_sym_LT, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4758), 11, + ACTIONS(4762), 11, anon_sym_STAR, anon_sym_in, anon_sym_GT_GT, @@ -220120,7 +217930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4756), 15, + ACTIONS(4760), 15, sym__ternary_qmark, anon_sym_of, anon_sym_AMP_AMP, @@ -220136,58 +217946,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [96400] = 20, - ACTIONS(3967), 1, + [95974] = 20, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5757), 1, + ACTIONS(5747), 1, anon_sym_LT, - ACTIONS(5767), 1, + ACTIONS(5757), 1, anon_sym_GT_GT, - ACTIONS(5779), 1, + ACTIONS(5769), 1, anon_sym_PERCENT, - ACTIONS(5781), 1, + ACTIONS(5771), 1, anon_sym_STAR_STAR, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5759), 2, + ACTIONS(5749), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5761), 2, + ACTIONS(5751), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5769), 2, + ACTIONS(5759), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5777), 2, + ACTIONS(5767), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5783), 3, + ACTIONS(5773), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4758), 5, + ACTIONS(4762), 5, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4756), 11, + ACTIONS(4760), 11, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -220199,676 +218009,731 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [96483] = 27, - ACTIONS(3967), 1, + [96057] = 27, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4758), 1, + ACTIONS(4762), 1, anon_sym_BANG, - ACTIONS(5757), 1, + ACTIONS(5747), 1, anon_sym_LT, - ACTIONS(5763), 1, + ACTIONS(5753), 1, anon_sym_AMP_AMP, - ACTIONS(5765), 1, + ACTIONS(5755), 1, anon_sym_PIPE_PIPE, - ACTIONS(5767), 1, + ACTIONS(5757), 1, anon_sym_GT_GT, - ACTIONS(5771), 1, + ACTIONS(5761), 1, anon_sym_AMP, - ACTIONS(5773), 1, + ACTIONS(5763), 1, anon_sym_CARET, - ACTIONS(5775), 1, + ACTIONS(5765), 1, anon_sym_PIPE, - ACTIONS(5779), 1, + ACTIONS(5769), 1, anon_sym_PERCENT, - ACTIONS(5781), 1, + ACTIONS(5771), 1, anon_sym_STAR_STAR, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5759), 2, + ACTIONS(5749), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5761), 2, + ACTIONS(5751), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5769), 2, + ACTIONS(5759), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5777), 2, + ACTIONS(5767), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5785), 2, + ACTIONS(5775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5787), 2, + ACTIONS(5777), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5783), 3, + ACTIONS(5773), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4756), 6, + ACTIONS(4760), 6, sym__ternary_qmark, anon_sym_as, anon_sym_of, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [96580] = 31, - ACTIONS(3967), 1, + [96154] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5757), 1, + ACTIONS(5747), 1, anon_sym_LT, - ACTIONS(5763), 1, + ACTIONS(5753), 1, anon_sym_AMP_AMP, - ACTIONS(5765), 1, + ACTIONS(5755), 1, anon_sym_PIPE_PIPE, - ACTIONS(5767), 1, + ACTIONS(5757), 1, anon_sym_GT_GT, - ACTIONS(5771), 1, + ACTIONS(5761), 1, anon_sym_AMP, - ACTIONS(5773), 1, + ACTIONS(5763), 1, anon_sym_CARET, - ACTIONS(5775), 1, + ACTIONS(5765), 1, anon_sym_PIPE, - ACTIONS(5779), 1, + ACTIONS(5769), 1, anon_sym_PERCENT, - ACTIONS(5781), 1, + ACTIONS(5771), 1, anon_sym_STAR_STAR, - ACTIONS(5789), 1, + ACTIONS(5779), 1, anon_sym_QMARK_QMARK, - ACTIONS(5791), 1, + ACTIONS(5781), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4541), 2, + ACTIONS(4522), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5759), 2, + ACTIONS(5749), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5761), 2, + ACTIONS(5751), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5769), 2, + ACTIONS(5759), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5777), 2, + ACTIONS(5767), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5785), 2, + ACTIONS(5775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5787), 2, + ACTIONS(5777), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5783), 3, + ACTIONS(5773), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [96685] = 31, - ACTIONS(3967), 1, + [96259] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5757), 1, + ACTIONS(5747), 1, anon_sym_LT, - ACTIONS(5763), 1, + ACTIONS(5753), 1, anon_sym_AMP_AMP, - ACTIONS(5765), 1, + ACTIONS(5755), 1, anon_sym_PIPE_PIPE, - ACTIONS(5767), 1, + ACTIONS(5757), 1, anon_sym_GT_GT, - ACTIONS(5771), 1, + ACTIONS(5761), 1, anon_sym_AMP, - ACTIONS(5773), 1, + ACTIONS(5763), 1, anon_sym_CARET, - ACTIONS(5775), 1, + ACTIONS(5765), 1, anon_sym_PIPE, - ACTIONS(5779), 1, + ACTIONS(5769), 1, anon_sym_PERCENT, - ACTIONS(5781), 1, + ACTIONS(5771), 1, anon_sym_STAR_STAR, - ACTIONS(5789), 1, + ACTIONS(5779), 1, anon_sym_QMARK_QMARK, - ACTIONS(5791), 1, + ACTIONS(5781), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4763), 2, + ACTIONS(4767), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(5759), 2, + ACTIONS(5749), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5761), 2, + ACTIONS(5751), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5769), 2, + ACTIONS(5759), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5777), 2, + ACTIONS(5767), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5785), 2, + ACTIONS(5775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5787), 2, + ACTIONS(5777), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5783), 3, + ACTIONS(5773), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [96790] = 31, - ACTIONS(3967), 1, + [96364] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5757), 1, + ACTIONS(5747), 1, anon_sym_LT, - ACTIONS(5763), 1, + ACTIONS(5753), 1, anon_sym_AMP_AMP, - ACTIONS(5765), 1, + ACTIONS(5755), 1, anon_sym_PIPE_PIPE, - ACTIONS(5767), 1, + ACTIONS(5757), 1, anon_sym_GT_GT, - ACTIONS(5771), 1, + ACTIONS(5761), 1, anon_sym_AMP, - ACTIONS(5773), 1, + ACTIONS(5763), 1, anon_sym_CARET, - ACTIONS(5775), 1, + ACTIONS(5765), 1, anon_sym_PIPE, - ACTIONS(5779), 1, + ACTIONS(5769), 1, anon_sym_PERCENT, - ACTIONS(5781), 1, + ACTIONS(5771), 1, anon_sym_STAR_STAR, - ACTIONS(5789), 1, + ACTIONS(5779), 1, anon_sym_QMARK_QMARK, - ACTIONS(5791), 1, + ACTIONS(5781), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4565), 2, + ACTIONS(4546), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5759), 2, + ACTIONS(5749), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5761), 2, + ACTIONS(5751), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5769), 2, + ACTIONS(5759), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5777), 2, + ACTIONS(5767), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5785), 2, + ACTIONS(5775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5787), 2, + ACTIONS(5777), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5783), 3, + ACTIONS(5773), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [96895] = 31, - ACTIONS(3967), 1, + [96469] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5757), 1, + ACTIONS(5747), 1, anon_sym_LT, - ACTIONS(5763), 1, + ACTIONS(5753), 1, anon_sym_AMP_AMP, - ACTIONS(5765), 1, + ACTIONS(5755), 1, anon_sym_PIPE_PIPE, - ACTIONS(5767), 1, + ACTIONS(5757), 1, anon_sym_GT_GT, - ACTIONS(5771), 1, + ACTIONS(5761), 1, anon_sym_AMP, - ACTIONS(5773), 1, + ACTIONS(5763), 1, anon_sym_CARET, - ACTIONS(5775), 1, + ACTIONS(5765), 1, anon_sym_PIPE, - ACTIONS(5779), 1, + ACTIONS(5769), 1, anon_sym_PERCENT, - ACTIONS(5781), 1, + ACTIONS(5771), 1, anon_sym_STAR_STAR, - ACTIONS(5789), 1, + ACTIONS(5779), 1, anon_sym_QMARK_QMARK, - ACTIONS(5791), 1, + ACTIONS(5781), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4573), 2, + ACTIONS(4554), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5759), 2, + ACTIONS(5749), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5761), 2, + ACTIONS(5751), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5769), 2, + ACTIONS(5759), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5777), 2, + ACTIONS(5767), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5785), 2, + ACTIONS(5775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5787), 2, + ACTIONS(5777), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5783), 3, + ACTIONS(5773), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [97000] = 31, - ACTIONS(3967), 1, + [96574] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5757), 1, + ACTIONS(5747), 1, anon_sym_LT, - ACTIONS(5763), 1, + ACTIONS(5753), 1, anon_sym_AMP_AMP, - ACTIONS(5765), 1, + ACTIONS(5755), 1, anon_sym_PIPE_PIPE, - ACTIONS(5767), 1, + ACTIONS(5757), 1, anon_sym_GT_GT, - ACTIONS(5771), 1, + ACTIONS(5761), 1, anon_sym_AMP, - ACTIONS(5773), 1, + ACTIONS(5763), 1, anon_sym_CARET, - ACTIONS(5775), 1, + ACTIONS(5765), 1, anon_sym_PIPE, - ACTIONS(5779), 1, + ACTIONS(5769), 1, anon_sym_PERCENT, - ACTIONS(5781), 1, + ACTIONS(5771), 1, anon_sym_STAR_STAR, - ACTIONS(5789), 1, + ACTIONS(5779), 1, anon_sym_QMARK_QMARK, - ACTIONS(5791), 1, + ACTIONS(5781), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4577), 2, + ACTIONS(4558), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5759), 2, + ACTIONS(5749), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5761), 2, + ACTIONS(5751), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5769), 2, + ACTIONS(5759), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5777), 2, + ACTIONS(5767), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5785), 2, + ACTIONS(5775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5787), 2, + ACTIONS(5777), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5783), 3, + ACTIONS(5773), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [97105] = 31, - ACTIONS(3967), 1, + [96679] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5757), 1, + ACTIONS(5747), 1, anon_sym_LT, - ACTIONS(5763), 1, + ACTIONS(5753), 1, anon_sym_AMP_AMP, - ACTIONS(5765), 1, + ACTIONS(5755), 1, anon_sym_PIPE_PIPE, - ACTIONS(5767), 1, + ACTIONS(5757), 1, anon_sym_GT_GT, - ACTIONS(5771), 1, + ACTIONS(5761), 1, anon_sym_AMP, - ACTIONS(5773), 1, + ACTIONS(5763), 1, anon_sym_CARET, - ACTIONS(5775), 1, + ACTIONS(5765), 1, anon_sym_PIPE, - ACTIONS(5779), 1, + ACTIONS(5769), 1, anon_sym_PERCENT, - ACTIONS(5781), 1, + ACTIONS(5771), 1, anon_sym_STAR_STAR, - ACTIONS(5789), 1, + ACTIONS(5779), 1, anon_sym_QMARK_QMARK, - ACTIONS(5791), 1, + ACTIONS(5781), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4765), 2, + ACTIONS(4769), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(5759), 2, + ACTIONS(5749), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5761), 2, + ACTIONS(5751), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5769), 2, + ACTIONS(5759), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5777), 2, + ACTIONS(5767), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5785), 2, + ACTIONS(5775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5787), 2, + ACTIONS(5777), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5783), 3, + ACTIONS(5773), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [97210] = 31, - ACTIONS(3967), 1, + [96784] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5757), 1, + ACTIONS(5747), 1, anon_sym_LT, - ACTIONS(5763), 1, + ACTIONS(5753), 1, anon_sym_AMP_AMP, - ACTIONS(5765), 1, + ACTIONS(5755), 1, anon_sym_PIPE_PIPE, - ACTIONS(5767), 1, + ACTIONS(5757), 1, anon_sym_GT_GT, - ACTIONS(5771), 1, + ACTIONS(5761), 1, anon_sym_AMP, - ACTIONS(5773), 1, + ACTIONS(5763), 1, anon_sym_CARET, - ACTIONS(5775), 1, + ACTIONS(5765), 1, anon_sym_PIPE, - ACTIONS(5779), 1, + ACTIONS(5769), 1, anon_sym_PERCENT, - ACTIONS(5781), 1, + ACTIONS(5771), 1, anon_sym_STAR_STAR, - ACTIONS(5789), 1, + ACTIONS(5779), 1, anon_sym_QMARK_QMARK, - ACTIONS(5791), 1, + ACTIONS(5781), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4767), 2, + ACTIONS(4771), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(5759), 2, + ACTIONS(5749), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5761), 2, + ACTIONS(5751), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5769), 2, + ACTIONS(5759), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5777), 2, + ACTIONS(5767), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5785), 2, + ACTIONS(5775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5787), 2, + ACTIONS(5777), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5783), 3, + ACTIONS(5773), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [97315] = 31, - ACTIONS(3967), 1, + [96889] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5757), 1, + ACTIONS(5747), 1, anon_sym_LT, - ACTIONS(5763), 1, + ACTIONS(5753), 1, anon_sym_AMP_AMP, - ACTIONS(5765), 1, + ACTIONS(5755), 1, anon_sym_PIPE_PIPE, - ACTIONS(5767), 1, + ACTIONS(5757), 1, anon_sym_GT_GT, - ACTIONS(5771), 1, + ACTIONS(5761), 1, anon_sym_AMP, - ACTIONS(5773), 1, + ACTIONS(5763), 1, anon_sym_CARET, - ACTIONS(5775), 1, + ACTIONS(5765), 1, anon_sym_PIPE, - ACTIONS(5779), 1, + ACTIONS(5769), 1, anon_sym_PERCENT, - ACTIONS(5781), 1, + ACTIONS(5771), 1, anon_sym_STAR_STAR, - ACTIONS(5789), 1, + ACTIONS(5779), 1, anon_sym_QMARK_QMARK, - ACTIONS(5791), 1, + ACTIONS(5781), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4779), 2, + ACTIONS(4773), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(5759), 2, + ACTIONS(5749), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5761), 2, + ACTIONS(5751), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5769), 2, + ACTIONS(5759), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5777), 2, + ACTIONS(5767), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5785), 2, + ACTIONS(5775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5787), 2, + ACTIONS(5777), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5783), 3, + ACTIONS(5773), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [97420] = 4, + [96994] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4688), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4213), 2, + ACTIONS(5411), 2, + sym_number, + sym_private_property_identifier, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 9, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4127), 13, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2351), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [97053] = 6, + ACTIONS(4604), 1, + anon_sym_EQ, + ACTIONS(4854), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4671), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4602), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -220882,12 +218747,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4129), 25, - sym__automatic_semicolon, + ACTIONS(4606), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -220908,13 +218771,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [97471] = 4, - ACTIONS(3593), 1, - anon_sym_EQ, + [97108] = 16, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5583), 1, + anon_sym_LT, + ACTIONS(5596), 1, + anon_sym_PERCENT, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5586), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5594), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4762), 8, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(4760), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + anon_sym_satisfies, + [97183] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3499), 13, + ACTIONS(1730), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1734), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -220928,13 +218851,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3503), 26, + ACTIONS(1736), 25, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -220953,32 +218876,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [97522] = 12, - ACTIONS(3967), 1, + [97234] = 12, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5796), 1, + ACTIONS(5786), 1, anon_sym_LT, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4791), 12, + ACTIONS(4778), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -220991,7 +218913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4793), 18, + ACTIONS(4780), 18, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -221010,36 +218932,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [97589] = 15, - ACTIONS(3967), 1, + [97301] = 15, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5799), 1, + ACTIONS(5789), 1, anon_sym_LT, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4798), 11, + ACTIONS(4634), 11, anon_sym_STAR, anon_sym_in, anon_sym_GT_GT, @@ -221051,7 +218973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4800), 16, + ACTIONS(4638), 16, sym__ternary_qmark, anon_sym_of, anon_sym_AMP_AMP, @@ -221068,101 +218990,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [97662] = 31, - ACTIONS(3967), 1, + [97374] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5757), 1, + ACTIONS(5747), 1, anon_sym_LT, - ACTIONS(5763), 1, + ACTIONS(5753), 1, anon_sym_AMP_AMP, - ACTIONS(5765), 1, + ACTIONS(5755), 1, anon_sym_PIPE_PIPE, - ACTIONS(5767), 1, + ACTIONS(5757), 1, anon_sym_GT_GT, - ACTIONS(5771), 1, + ACTIONS(5761), 1, anon_sym_AMP, - ACTIONS(5773), 1, + ACTIONS(5763), 1, anon_sym_CARET, - ACTIONS(5775), 1, + ACTIONS(5765), 1, anon_sym_PIPE, - ACTIONS(5779), 1, + ACTIONS(5769), 1, anon_sym_PERCENT, - ACTIONS(5781), 1, + ACTIONS(5771), 1, anon_sym_STAR_STAR, - ACTIONS(5789), 1, + ACTIONS(5779), 1, anon_sym_QMARK_QMARK, - ACTIONS(5791), 1, + ACTIONS(5781), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4805), 2, + ACTIONS(4792), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(5759), 2, + ACTIONS(5749), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5761), 2, + ACTIONS(5751), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5769), 2, + ACTIONS(5759), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5777), 2, + ACTIONS(5767), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5785), 2, + ACTIONS(5775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5787), 2, + ACTIONS(5777), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5783), 3, + ACTIONS(5773), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [97767] = 11, - ACTIONS(3967), 1, + [97479] = 11, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5802), 1, + ACTIONS(5792), 1, anon_sym_LT, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4781), 12, + ACTIONS(4785), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -221175,7 +219097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4783), 20, + ACTIONS(4787), 20, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -221196,197 +219118,204 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [97832] = 8, - ACTIONS(2344), 1, - anon_sym_DQUOTE, - ACTIONS(2346), 1, - anon_sym_SQUOTE, - ACTIONS(4686), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5395), 2, - sym_number, - sym_private_property_identifier, - STATE(3859), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 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(2362), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [97891] = 31, - ACTIONS(3967), 1, + [97544] = 22, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(4885), 1, - anon_sym_AMP_AMP, - ACTIONS(4887), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, - anon_sym_AMP, - ACTIONS(4895), 1, - anon_sym_CARET, - ACTIONS(4897), 1, - anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(5596), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, - anon_sym_STAR_STAR, - ACTIONS(4905), 1, + ACTIONS(5598), 1, anon_sym_LT, - ACTIONS(4913), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, - sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(5586), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(5588), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(5592), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(5594), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(5612), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(5614), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5026), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(4907), 3, + ACTIONS(4762), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5600), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [97996] = 7, - ACTIONS(4091), 1, - anon_sym_QMARK, - ACTIONS(4093), 1, - anon_sym_extends, + ACTIONS(4760), 9, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [97631] = 23, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, + anon_sym_GT_GT, + ACTIONS(5596), 1, + anon_sym_PERCENT, + ACTIONS(5598), 1, + anon_sym_LT, + ACTIONS(5606), 1, + anon_sym_AMP, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4532), 2, - anon_sym_AMP, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4762), 2, + anon_sym_BANG, anon_sym_PIPE, - ACTIONS(4529), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(3499), 11, + ACTIONS(5586), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5588), 2, anon_sym_in, - anon_sym_GT_GT, + anon_sym_GT, + ACTIONS(5592), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5594), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5612), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(3503), 22, + ACTIONS(5614), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5600), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4760), 9, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [98053] = 7, - ACTIONS(3674), 1, + [97720] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5211), 2, + sym_number, + sym_private_property_identifier, + STATE(3878), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 9, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(4637), 1, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [97779] = 7, + ACTIONS(3658), 1, + anon_sym_EQ, + ACTIONS(4608), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4378), 2, + ACTIONS(4408), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(4640), 3, + ACTIONS(4611), 3, anon_sym_AMP, anon_sym_PIPE, anon_sym_GT, - ACTIONS(3499), 10, + ACTIONS(3492), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -221397,7 +219326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 23, + ACTIONS(3496), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -221421,13 +219350,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [98110] = 4, - ACTIONS(3630), 1, + [97836] = 4, + ACTIONS(3592), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3499), 13, + ACTIONS(3492), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -221441,7 +219370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3503), 26, + ACTIONS(3496), 26, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -221468,36 +219397,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [98161] = 6, - ACTIONS(1709), 1, + [97887] = 7, + ACTIONS(3646), 1, anon_sym_EQ, - ACTIONS(4870), 1, - anon_sym_of, - ACTIONS(5805), 1, - anon_sym_in, + ACTIONS(4608), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1707), 12, + ACTIONS(4408), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4611), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3492), 10, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(1711), 25, + ACTIONS(3496), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_of, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -221517,96 +219447,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [98216] = 20, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, - anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(5812), 1, - anon_sym_GT_GT, - ACTIONS(5818), 1, - anon_sym_PERCENT, - ACTIONS(5820), 1, - anon_sym_STAR_STAR, - ACTIONS(5822), 1, - anon_sym_LT, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5808), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5810), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5814), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5816), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5824), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4758), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4756), 10, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [98298] = 9, - ACTIONS(1643), 1, + [97944] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5828), 1, - anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5826), 2, + ACTIONS(5330), 2, sym_number, sym_private_property_identifier, - STATE(3406), 3, + STATE(3822), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 7, + ACTIONS(3814), 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(3705), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221630,98 +219498,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [98358] = 4, + [98003] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4131), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4127), 13, + ACTIONS(3235), 12, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4129), 24, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, + anon_sym_COMMA, 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_satisfies, - [98408] = 11, - ACTIONS(1643), 1, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_DQUOTE, - ACTIONS(1645), 1, - anon_sym_SQUOTE, - ACTIONS(3731), 1, - anon_sym_override, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(5830), 1, - anon_sym_readonly, - STATE(2837), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4854), 2, - sym_number, - sym_private_property_identifier, - STATE(3360), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, anon_sym_QMARK, - ACTIONS(3705), 21, + ACTIONS(3233), 27, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_DOT, anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -221729,26 +219540,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [98472] = 9, - ACTIONS(1643), 1, + anon_sym_abstract, + anon_sym_accessor, + anon_sym_extends, + [98051] = 9, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(4862), 1, + ACTIONS(5797), 1, anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4854), 2, + ACTIONS(5795), 2, sym_number, sym_private_property_identifier, - STATE(3360), 3, + STATE(3320), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -221756,7 +219570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3705), 23, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221780,610 +219594,434 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [98532] = 31, - ACTIONS(3967), 1, + [98111] = 8, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, - anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4483), 1, - anon_sym_BQUOTE, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(5812), 1, - anon_sym_GT_GT, - ACTIONS(5818), 1, - anon_sym_PERCENT, - ACTIONS(5820), 1, - anon_sym_STAR_STAR, - ACTIONS(5822), 1, + ACTIONS(5799), 1, anon_sym_LT, - ACTIONS(5832), 1, - anon_sym_AMP_AMP, - ACTIONS(5834), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5836), 1, - anon_sym_AMP, - ACTIONS(5838), 1, - anon_sym_CARET, - ACTIONS(5840), 1, - anon_sym_PIPE, - ACTIONS(5846), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5848), 1, - sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5808), 2, + ACTIONS(4704), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5810), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5814), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5816), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5842), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5844), 2, + anon_sym_GT, + ACTIONS(4706), 22, + sym__ternary_qmark, + anon_sym_as, + 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, - ACTIONS(5824), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [98636] = 31, - ACTIONS(3967), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [98169] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4468), 1, + anon_sym_BQUOTE, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4750), 1, - anon_sym_BQUOTE, - ACTIONS(5812), 1, - anon_sym_GT_GT, - ACTIONS(5818), 1, - anon_sym_PERCENT, - ACTIONS(5820), 1, - anon_sym_STAR_STAR, - ACTIONS(5822), 1, + ACTIONS(5799), 1, anon_sym_LT, - ACTIONS(5832), 1, + ACTIONS(5805), 1, anon_sym_AMP_AMP, - ACTIONS(5834), 1, + ACTIONS(5807), 1, anon_sym_PIPE_PIPE, - ACTIONS(5836), 1, + ACTIONS(5809), 1, + anon_sym_GT_GT, + ACTIONS(5813), 1, anon_sym_AMP, - ACTIONS(5838), 1, + ACTIONS(5815), 1, anon_sym_CARET, - ACTIONS(5840), 1, + ACTIONS(5817), 1, anon_sym_PIPE, - ACTIONS(5846), 1, + ACTIONS(5821), 1, + anon_sym_PERCENT, + ACTIONS(5823), 1, + anon_sym_STAR_STAR, + ACTIONS(5831), 1, anon_sym_QMARK_QMARK, - ACTIONS(5848), 1, + ACTIONS(5833), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5808), 2, + ACTIONS(5801), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5810), 2, + ACTIONS(5803), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5814), 2, + ACTIONS(5811), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5816), 2, + ACTIONS(5819), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5842), 2, + ACTIONS(5827), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5844), 2, + ACTIONS(5829), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5824), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [98740] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1855), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5850), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(5853), 23, - sym__ternary_qmark, - anon_sym_as, - 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, + ACTIONS(5825), 3, anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [98790] = 31, - ACTIONS(3967), 1, + [98273] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4752), 1, + ACTIONS(4756), 1, anon_sym_BQUOTE, - ACTIONS(5812), 1, - anon_sym_GT_GT, - ACTIONS(5818), 1, - anon_sym_PERCENT, - ACTIONS(5820), 1, - anon_sym_STAR_STAR, - ACTIONS(5822), 1, + ACTIONS(5799), 1, anon_sym_LT, - ACTIONS(5832), 1, + ACTIONS(5805), 1, anon_sym_AMP_AMP, - ACTIONS(5834), 1, + ACTIONS(5807), 1, anon_sym_PIPE_PIPE, - ACTIONS(5836), 1, + ACTIONS(5809), 1, + anon_sym_GT_GT, + ACTIONS(5813), 1, anon_sym_AMP, - ACTIONS(5838), 1, + ACTIONS(5815), 1, anon_sym_CARET, - ACTIONS(5840), 1, + ACTIONS(5817), 1, anon_sym_PIPE, - ACTIONS(5846), 1, + ACTIONS(5821), 1, + anon_sym_PERCENT, + ACTIONS(5823), 1, + anon_sym_STAR_STAR, + ACTIONS(5831), 1, anon_sym_QMARK_QMARK, - ACTIONS(5848), 1, + ACTIONS(5833), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5808), 2, + ACTIONS(5801), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5810), 2, + ACTIONS(5803), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5814), 2, + ACTIONS(5811), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5816), 2, + ACTIONS(5819), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5842), 2, + ACTIONS(5827), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5844), 2, + ACTIONS(5829), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5824), 3, + ACTIONS(5825), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [98894] = 13, - ACTIONS(2344), 1, - anon_sym_DQUOTE, - ACTIONS(2346), 1, - anon_sym_SQUOTE, - ACTIONS(4686), 1, - anon_sym_LBRACK, - ACTIONS(5003), 1, - anon_sym_STAR, - ACTIONS(5276), 1, - anon_sym_COMMA, - ACTIONS(5714), 1, - anon_sym_RBRACE, - STATE(4943), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2348), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2368), 2, - anon_sym_get, - anon_sym_set, - STATE(3799), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2362), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [98962] = 31, - ACTIONS(3967), 1, + [98377] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4754), 1, + ACTIONS(4758), 1, anon_sym_BQUOTE, - ACTIONS(5812), 1, - anon_sym_GT_GT, - ACTIONS(5818), 1, - anon_sym_PERCENT, - ACTIONS(5820), 1, - anon_sym_STAR_STAR, - ACTIONS(5822), 1, + ACTIONS(5799), 1, anon_sym_LT, - ACTIONS(5832), 1, + ACTIONS(5805), 1, anon_sym_AMP_AMP, - ACTIONS(5834), 1, + ACTIONS(5807), 1, anon_sym_PIPE_PIPE, - ACTIONS(5836), 1, + ACTIONS(5809), 1, + anon_sym_GT_GT, + ACTIONS(5813), 1, anon_sym_AMP, - ACTIONS(5838), 1, + ACTIONS(5815), 1, anon_sym_CARET, - ACTIONS(5840), 1, + ACTIONS(5817), 1, anon_sym_PIPE, - ACTIONS(5846), 1, + ACTIONS(5821), 1, + anon_sym_PERCENT, + ACTIONS(5823), 1, + anon_sym_STAR_STAR, + ACTIONS(5831), 1, anon_sym_QMARK_QMARK, - ACTIONS(5848), 1, + ACTIONS(5833), 1, sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5808), 2, + ACTIONS(5801), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5810), 2, + ACTIONS(5803), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5814), 2, + ACTIONS(5811), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5816), 2, + ACTIONS(5819), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5842), 2, + ACTIONS(5827), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5844), 2, + ACTIONS(5829), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5824), 3, + ACTIONS(5825), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [99066] = 14, - ACTIONS(2344), 1, - anon_sym_DQUOTE, - ACTIONS(2346), 1, - anon_sym_SQUOTE, - ACTIONS(2364), 1, - anon_sym_async, - ACTIONS(4686), 1, - anon_sym_LBRACK, - ACTIONS(5003), 1, - anon_sym_STAR, - ACTIONS(5276), 1, - anon_sym_COMMA, - ACTIONS(5714), 1, - anon_sym_RBRACE, - STATE(4943), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2348), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2368), 2, - anon_sym_get, - anon_sym_set, - STATE(3799), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2362), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [99136] = 31, - ACTIONS(3967), 1, + [98481] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4504), 1, + anon_sym_BQUOTE, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5594), 1, + ACTIONS(5799), 1, anon_sym_LT, - ACTIONS(5600), 1, + ACTIONS(5805), 1, anon_sym_AMP_AMP, - ACTIONS(5602), 1, + ACTIONS(5807), 1, anon_sym_PIPE_PIPE, - ACTIONS(5604), 1, + ACTIONS(5809), 1, anon_sym_GT_GT, - ACTIONS(5608), 1, + ACTIONS(5813), 1, anon_sym_AMP, - ACTIONS(5610), 1, + ACTIONS(5815), 1, anon_sym_CARET, - ACTIONS(5612), 1, + ACTIONS(5817), 1, anon_sym_PIPE, - ACTIONS(5616), 1, + ACTIONS(5821), 1, anon_sym_PERCENT, - ACTIONS(5618), 1, + ACTIONS(5823), 1, anon_sym_STAR_STAR, - ACTIONS(5626), 1, + ACTIONS(5831), 1, anon_sym_QMARK_QMARK, - ACTIONS(5628), 1, + ACTIONS(5833), 1, sym__ternary_qmark, - ACTIONS(5856), 1, - anon_sym_COLON, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5596), 2, + ACTIONS(5801), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5598), 2, + ACTIONS(5803), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5606), 2, + ACTIONS(5811), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5614), 2, + ACTIONS(5819), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5622), 2, + ACTIONS(5827), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5624), 2, + ACTIONS(5829), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, + ACTIONS(5825), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [99240] = 31, - ACTIONS(3967), 1, + [98585] = 18, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4523), 1, - anon_sym_BQUOTE, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(5812), 1, + ACTIONS(5799), 1, + anon_sym_LT, + ACTIONS(5809), 1, anon_sym_GT_GT, - ACTIONS(5818), 1, + ACTIONS(5821), 1, anon_sym_PERCENT, - ACTIONS(5820), 1, + ACTIONS(5823), 1, anon_sym_STAR_STAR, - ACTIONS(5822), 1, - anon_sym_LT, - ACTIONS(5832), 1, - anon_sym_AMP_AMP, - ACTIONS(5834), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5836), 1, - anon_sym_AMP, - ACTIONS(5838), 1, - anon_sym_CARET, - ACTIONS(5840), 1, - anon_sym_PIPE, - ACTIONS(5846), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5848), 1, - sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5808), 2, + ACTIONS(5801), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5810), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5814), 2, + ACTIONS(5811), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5816), 2, + ACTIONS(5819), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5842), 2, + ACTIONS(4762), 7, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5844), 2, + anon_sym_GT, + ACTIONS(4760), 13, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5824), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [99344] = 4, + anon_sym_BQUOTE, + anon_sym_satisfies, + [98663] = 13, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(5823), 1, + anon_sym_STAR_STAR, + ACTIONS(5835), 1, + anon_sym_LT, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1921), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5858), 13, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4762), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -222393,199 +220031,445 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(5861), 23, + ACTIONS(4760), 16, sym__ternary_qmark, anon_sym_as, - 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_satisfies, - [99394] = 4, + [98731] = 25, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4762), 1, + anon_sym_BANG, + ACTIONS(5799), 1, + anon_sym_LT, + ACTIONS(5809), 1, + anon_sym_GT_GT, + ACTIONS(5813), 1, + anon_sym_AMP, + ACTIONS(5815), 1, + anon_sym_CARET, + ACTIONS(5817), 1, + anon_sym_PIPE, + ACTIONS(5821), 1, + anon_sym_PERCENT, + ACTIONS(5823), 1, + anon_sym_STAR_STAR, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4645), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5864), 13, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5801), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5803), 2, anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT, + ACTIONS(5811), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5819), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5827), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(5867), 23, + ACTIONS(5829), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5825), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4760), 7, sym__ternary_qmark, anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [98823] = 26, + ACTIONS(4010), 1, anon_sym_LPAREN, + ACTIONS(4012), 1, anon_sym_LBRACK, + ACTIONS(4014), 1, anon_sym_DOT, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, + ACTIONS(4762), 1, + anon_sym_BANG, + ACTIONS(5799), 1, + anon_sym_LT, + ACTIONS(5805), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5809), 1, + anon_sym_GT_GT, + ACTIONS(5813), 1, + anon_sym_AMP, + ACTIONS(5815), 1, anon_sym_CARET, + ACTIONS(5817), 1, + anon_sym_PIPE, + ACTIONS(5821), 1, anon_sym_PERCENT, + ACTIONS(5823), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5801), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5803), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5811), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5819), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5827), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5829), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5825), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4760), 6, + sym__ternary_qmark, + anon_sym_as, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [99444] = 4, + [98917] = 16, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(5821), 1, + anon_sym_PERCENT, + ACTIONS(5823), 1, + anon_sym_STAR_STAR, + ACTIONS(5835), 1, + anon_sym_LT, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4611), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5870), 13, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5801), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5819), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4762), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(5873), 23, + ACTIONS(4760), 15, sym__ternary_qmark, anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + anon_sym_satisfies, + [98991] = 22, + ACTIONS(4010), 1, anon_sym_LPAREN, + ACTIONS(4012), 1, anon_sym_LBRACK, + ACTIONS(4014), 1, anon_sym_DOT, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5799), 1, + anon_sym_LT, + ACTIONS(5809), 1, + anon_sym_GT_GT, + ACTIONS(5821), 1, + anon_sym_PERCENT, + ACTIONS(5823), 1, + anon_sym_STAR_STAR, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5801), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5803), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5811), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, + ACTIONS(5819), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5827), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5829), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4762), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5825), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4760), 8, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [99077] = 23, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(5799), 1, + anon_sym_LT, + ACTIONS(5809), 1, + anon_sym_GT_GT, + ACTIONS(5813), 1, + anon_sym_AMP, + ACTIONS(5821), 1, anon_sym_PERCENT, + ACTIONS(5823), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4762), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5801), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5803), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5811), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5819), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5827), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5829), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5825), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4760), 8, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [99494] = 6, - ACTIONS(4637), 1, + [99165] = 24, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(5799), 1, + anon_sym_LT, + ACTIONS(5809), 1, + anon_sym_GT_GT, + ACTIONS(5813), 1, + anon_sym_AMP, + ACTIONS(5815), 1, + anon_sym_CARET, + ACTIONS(5821), 1, + anon_sym_PERCENT, + ACTIONS(5823), 1, + anon_sym_STAR_STAR, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4640), 2, - anon_sym_AMP, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4762), 2, + anon_sym_BANG, anon_sym_PIPE, - ACTIONS(4378), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3499), 11, + ACTIONS(5801), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5803), 2, anon_sym_in, - anon_sym_GT_GT, + anon_sym_GT, + ACTIONS(5811), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5819), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5827), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(3503), 22, + ACTIONS(5829), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5825), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4760), 7, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - 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_satisfies, - [99548] = 12, - ACTIONS(3967), 1, + [99255] = 15, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5876), 1, + ACTIONS(5821), 1, + anon_sym_PERCENT, + ACTIONS(5823), 1, + anon_sym_STAR_STAR, + ACTIONS(5835), 1, anon_sym_LT, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4791), 12, + ACTIONS(5801), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4762), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, @@ -222593,11 +220477,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4793), 17, + ACTIONS(4760), 15, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, @@ -222605,8 +220488,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -222615,36 +220496,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [99614] = 15, - ACTIONS(3967), 1, + [99327] = 16, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5879), 1, + ACTIONS(5823), 1, + anon_sym_STAR_STAR, + ACTIONS(5835), 1, anon_sym_LT, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4798), 11, + ACTIONS(4762), 11, anon_sym_STAR, anon_sym_in, anon_sym_GT_GT, @@ -222656,7 +220539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4800), 15, + ACTIONS(4760), 14, sym__ternary_qmark, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -222664,7 +220547,6 @@ static const 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, @@ -222672,1006 +220554,893 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [99686] = 31, - ACTIONS(3967), 1, + [99401] = 20, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(4805), 1, - anon_sym_BQUOTE, - ACTIONS(5812), 1, + ACTIONS(5799), 1, + anon_sym_LT, + ACTIONS(5809), 1, anon_sym_GT_GT, - ACTIONS(5818), 1, + ACTIONS(5821), 1, anon_sym_PERCENT, - ACTIONS(5820), 1, + ACTIONS(5823), 1, anon_sym_STAR_STAR, - ACTIONS(5822), 1, - anon_sym_LT, - ACTIONS(5832), 1, - anon_sym_AMP_AMP, - ACTIONS(5834), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5836), 1, - anon_sym_AMP, - ACTIONS(5838), 1, - anon_sym_CARET, - ACTIONS(5840), 1, - anon_sym_PIPE, - ACTIONS(5846), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5848), 1, - sym__ternary_qmark, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5808), 2, + ACTIONS(5801), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5810), 2, + ACTIONS(5803), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5814), 2, + ACTIONS(5811), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5816), 2, + ACTIONS(5819), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5842), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5844), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5824), 3, + ACTIONS(5825), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [99790] = 11, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, - anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(5882), 1, - anon_sym_LT, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4781), 12, - anon_sym_STAR, + ACTIONS(4762), 5, anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4783), 19, + ACTIONS(4760), 10, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_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_satisfies, - [99854] = 18, - ACTIONS(3967), 1, + [99483] = 27, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5812), 1, + ACTIONS(4762), 1, + anon_sym_BANG, + ACTIONS(5799), 1, + anon_sym_LT, + ACTIONS(5805), 1, + anon_sym_AMP_AMP, + ACTIONS(5807), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5809), 1, anon_sym_GT_GT, - ACTIONS(5818), 1, + ACTIONS(5813), 1, + anon_sym_AMP, + ACTIONS(5815), 1, + anon_sym_CARET, + ACTIONS(5817), 1, + anon_sym_PIPE, + ACTIONS(5821), 1, anon_sym_PERCENT, - ACTIONS(5820), 1, + ACTIONS(5823), 1, anon_sym_STAR_STAR, - ACTIONS(5822), 1, - anon_sym_LT, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5808), 2, + ACTIONS(5801), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5814), 2, + ACTIONS(5803), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5811), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5816), 2, + ACTIONS(5819), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4758), 7, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5827), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4756), 13, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(5829), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5825), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, + ACTIONS(4760), 5, + sym__ternary_qmark, + anon_sym_as, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [99932] = 13, - ACTIONS(3967), 1, + [99579] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4522), 1, + anon_sym_BQUOTE, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5820), 1, - anon_sym_STAR_STAR, - ACTIONS(5885), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5799), 1, anon_sym_LT, - STATE(1580), 1, + ACTIONS(5805), 1, + anon_sym_AMP_AMP, + ACTIONS(5807), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5809), 1, + anon_sym_GT_GT, + ACTIONS(5813), 1, + anon_sym_AMP, + ACTIONS(5815), 1, + anon_sym_CARET, + ACTIONS(5817), 1, + anon_sym_PIPE, + ACTIONS(5821), 1, + anon_sym_PERCENT, + ACTIONS(5823), 1, + anon_sym_STAR_STAR, + ACTIONS(5831), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5833), 1, + sym__ternary_qmark, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4758), 12, + ACTIONS(5801), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5803), 2, anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT, + ACTIONS(5811), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5819), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5827), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4756), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, + ACTIONS(5829), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5825), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - anon_sym_satisfies, - [100000] = 11, - ACTIONS(1643), 1, - anon_sym_DQUOTE, - ACTIONS(1645), 1, - anon_sym_SQUOTE, - ACTIONS(3731), 1, - anon_sym_override, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(5888), 1, - anon_sym_readonly, - STATE(2867), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5716), 2, - sym_number, - sym_private_property_identifier, - STATE(3391), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3705), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - 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, - anon_sym_object, - [100064] = 9, - ACTIONS(1643), 1, - anon_sym_DQUOTE, - ACTIONS(1645), 1, - anon_sym_SQUOTE, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(5890), 1, - anon_sym_abstract, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5716), 2, - sym_number, - sym_private_property_identifier, - STATE(3391), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3705), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [100124] = 25, - ACTIONS(3967), 1, + [99683] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4758), 1, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(5812), 1, - anon_sym_GT_GT, - ACTIONS(5818), 1, - anon_sym_PERCENT, - ACTIONS(5820), 1, - anon_sym_STAR_STAR, - ACTIONS(5822), 1, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4767), 1, + anon_sym_BQUOTE, + ACTIONS(5799), 1, anon_sym_LT, - ACTIONS(5836), 1, + ACTIONS(5805), 1, + anon_sym_AMP_AMP, + ACTIONS(5807), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5809), 1, + anon_sym_GT_GT, + ACTIONS(5813), 1, anon_sym_AMP, - ACTIONS(5838), 1, + ACTIONS(5815), 1, anon_sym_CARET, - ACTIONS(5840), 1, + ACTIONS(5817), 1, anon_sym_PIPE, - STATE(1580), 1, + ACTIONS(5821), 1, + anon_sym_PERCENT, + ACTIONS(5823), 1, + anon_sym_STAR_STAR, + ACTIONS(5831), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5833), 1, + sym__ternary_qmark, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5808), 2, + ACTIONS(5801), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5810), 2, + ACTIONS(5803), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5814), 2, + ACTIONS(5811), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5816), 2, + ACTIONS(5819), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5842), 2, + ACTIONS(5827), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5844), 2, + ACTIONS(5829), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5824), 3, + ACTIONS(5825), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4756), 7, - sym__ternary_qmark, + [99787] = 31, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4546), 1, + anon_sym_BQUOTE, + ACTIONS(4636), 1, anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5799), 1, + anon_sym_LT, + ACTIONS(5805), 1, anon_sym_AMP_AMP, + ACTIONS(5807), 1, anon_sym_PIPE_PIPE, + ACTIONS(5809), 1, + anon_sym_GT_GT, + ACTIONS(5813), 1, + anon_sym_AMP, + ACTIONS(5815), 1, + anon_sym_CARET, + ACTIONS(5817), 1, + anon_sym_PIPE, + ACTIONS(5821), 1, + anon_sym_PERCENT, + ACTIONS(5823), 1, + anon_sym_STAR_STAR, + ACTIONS(5831), 1, anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [100216] = 11, - ACTIONS(1643), 1, - anon_sym_DQUOTE, - ACTIONS(1645), 1, - anon_sym_SQUOTE, - ACTIONS(3731), 1, - anon_sym_override, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(5894), 1, - anon_sym_readonly, - STATE(2873), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5892), 2, - sym_number, - sym_private_property_identifier, - STATE(3458), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3705), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - 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, - anon_sym_object, - [100280] = 9, - ACTIONS(1643), 1, - anon_sym_DQUOTE, - ACTIONS(1645), 1, - anon_sym_SQUOTE, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(5898), 1, - anon_sym_abstract, + ACTIONS(5833), 1, + sym__ternary_qmark, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5896), 2, - sym_number, - sym_private_property_identifier, - STATE(3461), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3705), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [100340] = 31, - ACTIONS(3967), 1, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5801), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5803), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5811), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5819), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5827), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5829), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5825), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [99891] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4554), 1, + anon_sym_BQUOTE, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5594), 1, + ACTIONS(5799), 1, anon_sym_LT, - ACTIONS(5600), 1, + ACTIONS(5805), 1, anon_sym_AMP_AMP, - ACTIONS(5602), 1, + ACTIONS(5807), 1, anon_sym_PIPE_PIPE, - ACTIONS(5604), 1, + ACTIONS(5809), 1, anon_sym_GT_GT, - ACTIONS(5608), 1, + ACTIONS(5813), 1, anon_sym_AMP, - ACTIONS(5610), 1, + ACTIONS(5815), 1, anon_sym_CARET, - ACTIONS(5612), 1, + ACTIONS(5817), 1, anon_sym_PIPE, - ACTIONS(5616), 1, + ACTIONS(5821), 1, anon_sym_PERCENT, - ACTIONS(5618), 1, + ACTIONS(5823), 1, anon_sym_STAR_STAR, - ACTIONS(5626), 1, + ACTIONS(5831), 1, anon_sym_QMARK_QMARK, - ACTIONS(5628), 1, + ACTIONS(5833), 1, sym__ternary_qmark, - ACTIONS(5900), 1, - anon_sym_COLON, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5596), 2, + ACTIONS(5801), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5598), 2, + ACTIONS(5803), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5606), 2, + ACTIONS(5811), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5614), 2, + ACTIONS(5819), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5622), 2, + ACTIONS(5827), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5624), 2, + ACTIONS(5829), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, + ACTIONS(5825), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [100444] = 26, - ACTIONS(3967), 1, + [99995] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4758), 1, + ACTIONS(4558), 1, + anon_sym_BQUOTE, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(5812), 1, - anon_sym_GT_GT, - ACTIONS(5818), 1, - anon_sym_PERCENT, - ACTIONS(5820), 1, - anon_sym_STAR_STAR, - ACTIONS(5822), 1, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5799), 1, anon_sym_LT, - ACTIONS(5832), 1, + ACTIONS(5805), 1, anon_sym_AMP_AMP, - ACTIONS(5836), 1, + ACTIONS(5807), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5809), 1, + anon_sym_GT_GT, + ACTIONS(5813), 1, anon_sym_AMP, - ACTIONS(5838), 1, + ACTIONS(5815), 1, anon_sym_CARET, - ACTIONS(5840), 1, + ACTIONS(5817), 1, anon_sym_PIPE, - STATE(1580), 1, + ACTIONS(5821), 1, + anon_sym_PERCENT, + ACTIONS(5823), 1, + anon_sym_STAR_STAR, + ACTIONS(5831), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5833), 1, + sym__ternary_qmark, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5808), 2, + ACTIONS(5801), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5810), 2, + ACTIONS(5803), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5814), 2, + ACTIONS(5811), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5816), 2, + ACTIONS(5819), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5842), 2, + ACTIONS(5827), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5844), 2, + ACTIONS(5829), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5824), 3, + ACTIONS(5825), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4756), 6, - sym__ternary_qmark, - anon_sym_as, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [100538] = 16, - ACTIONS(3967), 1, + [100099] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5818), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4769), 1, + anon_sym_BQUOTE, + ACTIONS(5799), 1, + anon_sym_LT, + ACTIONS(5805), 1, + anon_sym_AMP_AMP, + ACTIONS(5807), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5809), 1, + anon_sym_GT_GT, + ACTIONS(5813), 1, + anon_sym_AMP, + ACTIONS(5815), 1, + anon_sym_CARET, + ACTIONS(5817), 1, + anon_sym_PIPE, + ACTIONS(5821), 1, anon_sym_PERCENT, - ACTIONS(5820), 1, + ACTIONS(5823), 1, anon_sym_STAR_STAR, - ACTIONS(5885), 1, - anon_sym_LT, - STATE(1580), 1, + ACTIONS(5831), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5833), 1, + sym__ternary_qmark, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5808), 2, + ACTIONS(5801), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5816), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4758), 8, - anon_sym_BANG, + ACTIONS(5803), 2, anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4756), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5811), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(5819), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5827), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5829), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5825), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - anon_sym_satisfies, - [100612] = 22, - ACTIONS(3967), 1, + [100203] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5812), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4771), 1, + anon_sym_BQUOTE, + ACTIONS(5799), 1, + anon_sym_LT, + ACTIONS(5805), 1, + anon_sym_AMP_AMP, + ACTIONS(5807), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5809), 1, anon_sym_GT_GT, - ACTIONS(5818), 1, + ACTIONS(5813), 1, + anon_sym_AMP, + ACTIONS(5815), 1, + anon_sym_CARET, + ACTIONS(5817), 1, + anon_sym_PIPE, + ACTIONS(5821), 1, anon_sym_PERCENT, - ACTIONS(5820), 1, + ACTIONS(5823), 1, anon_sym_STAR_STAR, - ACTIONS(5822), 1, - anon_sym_LT, - STATE(1580), 1, + ACTIONS(5831), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5833), 1, + sym__ternary_qmark, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5808), 2, + ACTIONS(5801), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5810), 2, + ACTIONS(5803), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5814), 2, + ACTIONS(5811), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5816), 2, + ACTIONS(5819), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5842), 2, + ACTIONS(5827), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5844), 2, + ACTIONS(5829), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4758), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5824), 3, + ACTIONS(5825), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4756), 8, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [100698] = 23, - ACTIONS(3967), 1, + [100307] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5812), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4773), 1, + anon_sym_BQUOTE, + ACTIONS(5799), 1, + anon_sym_LT, + ACTIONS(5805), 1, + anon_sym_AMP_AMP, + ACTIONS(5807), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5809), 1, anon_sym_GT_GT, - ACTIONS(5818), 1, + ACTIONS(5813), 1, + anon_sym_AMP, + ACTIONS(5815), 1, + anon_sym_CARET, + ACTIONS(5817), 1, + anon_sym_PIPE, + ACTIONS(5821), 1, anon_sym_PERCENT, - ACTIONS(5820), 1, + ACTIONS(5823), 1, anon_sym_STAR_STAR, - ACTIONS(5822), 1, - anon_sym_LT, - ACTIONS(5836), 1, - anon_sym_AMP, - STATE(1580), 1, + ACTIONS(5831), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5833), 1, + sym__ternary_qmark, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4758), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5808), 2, + ACTIONS(5801), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5810), 2, + ACTIONS(5803), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5814), 2, + ACTIONS(5811), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5816), 2, + ACTIONS(5819), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5842), 2, + ACTIONS(5827), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5844), 2, + ACTIONS(5829), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5824), 3, + ACTIONS(5825), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4756), 8, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [100786] = 24, - ACTIONS(3967), 1, + [100411] = 32, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5812), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5014), 1, + anon_sym_of, + ACTIONS(5747), 1, + anon_sym_LT, + ACTIONS(5751), 1, + anon_sym_GT, + ACTIONS(5753), 1, + anon_sym_AMP_AMP, + ACTIONS(5755), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5757), 1, anon_sym_GT_GT, - ACTIONS(5818), 1, + ACTIONS(5761), 1, + anon_sym_AMP, + ACTIONS(5763), 1, + anon_sym_CARET, + ACTIONS(5765), 1, + anon_sym_PIPE, + ACTIONS(5769), 1, anon_sym_PERCENT, - ACTIONS(5820), 1, + ACTIONS(5771), 1, anon_sym_STAR_STAR, - ACTIONS(5822), 1, - anon_sym_LT, - ACTIONS(5836), 1, - anon_sym_AMP, + ACTIONS(5779), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5781), 1, + sym__ternary_qmark, ACTIONS(5838), 1, - anon_sym_CARET, - STATE(1580), 1, + anon_sym_in, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4758), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5808), 2, + ACTIONS(5749), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5810), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5814), 2, + ACTIONS(5759), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5816), 2, + ACTIONS(5767), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5842), 2, + ACTIONS(5775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5844), 2, + ACTIONS(5777), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5824), 3, + ACTIONS(5773), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4756), 7, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [100876] = 15, - ACTIONS(3967), 1, + [100517] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(5818), 1, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5626), 1, + anon_sym_LT, + ACTIONS(5632), 1, + anon_sym_AMP_AMP, + ACTIONS(5634), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5636), 1, + anon_sym_GT_GT, + ACTIONS(5640), 1, + anon_sym_AMP, + ACTIONS(5642), 1, + anon_sym_CARET, + ACTIONS(5644), 1, + anon_sym_PIPE, + ACTIONS(5648), 1, anon_sym_PERCENT, - ACTIONS(5820), 1, + ACTIONS(5650), 1, anon_sym_STAR_STAR, - ACTIONS(5885), 1, - anon_sym_LT, - STATE(1580), 1, + ACTIONS(5658), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5660), 1, + sym__ternary_qmark, + ACTIONS(5841), 1, + anon_sym_RBRACK, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5808), 2, + ACTIONS(5628), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4758), 10, - anon_sym_BANG, + ACTIONS(5630), 2, anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT, + ACTIONS(5638), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5646), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5654), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4756), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(5656), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5652), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - anon_sym_satisfies, - [100948] = 12, - ACTIONS(2344), 1, - anon_sym_DQUOTE, - ACTIONS(2346), 1, - anon_sym_SQUOTE, - ACTIONS(4593), 1, + [100621] = 6, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4686), 1, - anon_sym_LBRACK, - ACTIONS(5003), 1, - anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2368), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5727), 2, + ACTIONS(4074), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(3799), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 4, + ACTIONS(1971), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3814), 7, + sym__automatic_semicolon, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2362), 21, + anon_sym_PIPE_RBRACE, + ACTIONS(1969), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223681,6 +221450,8 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -223693,147 +221464,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [101014] = 6, - ACTIONS(4463), 1, - anon_sym_LBRACK, + [100675] = 6, + ACTIONS(4622), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4466), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4167), 3, + ACTIONS(4074), 2, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4459), 11, + anon_sym_RBRACE, + ACTIONS(1975), 6, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4461), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - 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_satisfies, - [101068] = 16, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(5820), 1, - anon_sym_STAR_STAR, - ACTIONS(5885), 1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3814), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4758), 11, - anon_sym_STAR, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4756), 14, - sym__ternary_qmark, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_BQUOTE, - [101142] = 13, - ACTIONS(2344), 1, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1973), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [100729] = 15, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(2364), 1, + ACTIONS(2353), 1, anon_sym_async, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(4686), 1, + ACTIONS(2355), 1, + anon_sym_readonly, + ACTIONS(2359), 1, + anon_sym_override, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5003), 1, + ACTIONS(4990), 1, anon_sym_STAR, + STATE(2813), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - ACTIONS(2368), 2, + ACTIONS(2357), 2, anon_sym_get, anon_sym_set, - ACTIONS(5727), 2, + ACTIONS(5843), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(3799), 3, + STATE(3816), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 4, + ACTIONS(3814), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2362), 20, + ACTIONS(2351), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223841,12 +221558,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -223854,305 +221569,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [101210] = 27, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, + [100801] = 6, + ACTIONS(4510), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4758), 1, - anon_sym_BANG, - ACTIONS(5812), 1, - anon_sym_GT_GT, - ACTIONS(5818), 1, - anon_sym_PERCENT, - ACTIONS(5820), 1, - anon_sym_STAR_STAR, - ACTIONS(5822), 1, - anon_sym_LT, - ACTIONS(5832), 1, - anon_sym_AMP_AMP, - ACTIONS(5834), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5836), 1, - anon_sym_AMP, - ACTIONS(5838), 1, - anon_sym_CARET, - ACTIONS(5840), 1, - anon_sym_PIPE, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5808), 2, + ACTIONS(4513), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4106), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3492), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5810), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5814), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5816), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5842), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5844), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5824), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4756), 5, + anon_sym_GT, + ACTIONS(3496), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [101306] = 31, - ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, - anon_sym_LBRACK, - ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(5594), 1, - anon_sym_LT, - ACTIONS(5600), 1, anon_sym_AMP_AMP, - ACTIONS(5602), 1, anon_sym_PIPE_PIPE, - ACTIONS(5604), 1, - anon_sym_GT_GT, - ACTIONS(5608), 1, - anon_sym_AMP, - ACTIONS(5610), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5612), 1, - anon_sym_PIPE, - ACTIONS(5616), 1, anon_sym_PERCENT, - ACTIONS(5618), 1, anon_sym_STAR_STAR, - ACTIONS(5626), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5628), 1, - sym__ternary_qmark, - ACTIONS(5902), 1, - anon_sym_COLON, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5596), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5598), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5606), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5614), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5622), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5624), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [101410] = 31, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, - anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4541), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(5812), 1, - anon_sym_GT_GT, - ACTIONS(5818), 1, - anon_sym_PERCENT, - ACTIONS(5820), 1, - anon_sym_STAR_STAR, - ACTIONS(5822), 1, - anon_sym_LT, - ACTIONS(5832), 1, - anon_sym_AMP_AMP, - ACTIONS(5834), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5836), 1, - anon_sym_AMP, - ACTIONS(5838), 1, - anon_sym_CARET, - ACTIONS(5840), 1, - anon_sym_PIPE, - ACTIONS(5846), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5848), 1, - sym__ternary_qmark, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, + [100855] = 6, + ACTIONS(4146), 1, + anon_sym_EQ, + ACTIONS(4651), 1, + anon_sym_RBRACK, + ACTIONS(4850), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5808), 2, + ACTIONS(4144), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5810), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5814), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5816), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5842), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5844), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5824), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [101514] = 31, - ACTIONS(3967), 1, + anon_sym_GT, + ACTIONS(4148), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(4763), 1, - anon_sym_BQUOTE, - ACTIONS(5812), 1, - anon_sym_GT_GT, - ACTIONS(5818), 1, - anon_sym_PERCENT, - ACTIONS(5820), 1, - anon_sym_STAR_STAR, - ACTIONS(5822), 1, - anon_sym_LT, - ACTIONS(5832), 1, - anon_sym_AMP_AMP, - ACTIONS(5834), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5836), 1, - anon_sym_AMP, - ACTIONS(5838), 1, - anon_sym_CARET, - ACTIONS(5840), 1, - anon_sym_PIPE, - ACTIONS(5846), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5848), 1, - sym__ternary_qmark, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5808), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5810), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5814), 2, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5816), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5842), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5844), 2, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5824), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [101618] = 6, - ACTIONS(4623), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [100909] = 6, + ACTIONS(4604), 1, anon_sym_EQ, - ACTIONS(4666), 1, + ACTIONS(4671), 1, anon_sym_RBRACK, - ACTIONS(4868), 1, + ACTIONS(4854), 1, anon_sym_COMMA, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4621), 13, + ACTIONS(4602), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -224166,7 +221689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4625), 23, + ACTIONS(4606), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -224190,17 +221713,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101672] = 6, - ACTIONS(1709), 1, + [100963] = 6, + ACTIONS(1696), 1, anon_sym_EQ, - ACTIONS(4681), 1, + ACTIONS(4775), 1, anon_sym_RBRACK, - ACTIONS(4870), 1, + ACTIONS(4859), 1, anon_sym_COMMA, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1707), 13, + ACTIONS(1694), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -224214,7 +221737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(1711), 23, + ACTIONS(1698), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -224238,474 +221761,479 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101726] = 31, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, + [101017] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3227), 12, + anon_sym_STAR, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4565), 1, - anon_sym_BQUOTE, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(5812), 1, - anon_sym_GT_GT, - ACTIONS(5818), 1, - anon_sym_PERCENT, - ACTIONS(5820), 1, - anon_sym_STAR_STAR, - ACTIONS(5822), 1, - anon_sym_LT, - ACTIONS(5832), 1, - anon_sym_AMP_AMP, - ACTIONS(5834), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5836), 1, + anon_sym_RBRACK, anon_sym_AMP, - ACTIONS(5838), 1, - anon_sym_CARET, - ACTIONS(5840), 1, anon_sym_PIPE, - ACTIONS(5846), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5848), 1, - sym__ternary_qmark, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_QMARK, + ACTIONS(3225), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_DOT, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + anon_sym_extends, + [101065] = 6, + ACTIONS(3614), 1, + anon_sym_RBRACK, + ACTIONS(3622), 1, + anon_sym_COMMA, + ACTIONS(3693), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5808), 2, + ACTIONS(3492), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5810), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5814), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5816), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5842), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5844), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5824), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [101830] = 31, - ACTIONS(3967), 1, + anon_sym_GT, + ACTIONS(3496), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(5594), 1, - anon_sym_LT, - ACTIONS(5600), 1, anon_sym_AMP_AMP, - ACTIONS(5602), 1, anon_sym_PIPE_PIPE, - ACTIONS(5604), 1, - anon_sym_GT_GT, - ACTIONS(5608), 1, - anon_sym_AMP, - ACTIONS(5610), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5612), 1, - anon_sym_PIPE, - ACTIONS(5616), 1, anon_sym_PERCENT, - ACTIONS(5618), 1, anon_sym_STAR_STAR, - ACTIONS(5626), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5628), 1, - sym__ternary_qmark, - ACTIONS(5904), 1, - anon_sym_COLON, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [101119] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5596), 2, + ACTIONS(3239), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5598), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_QMARK, + ACTIONS(3237), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_DOT, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + anon_sym_extends, + [101167] = 6, + ACTIONS(4106), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4510), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4513), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3492), 11, + anon_sym_STAR, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5606), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5614), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5622), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5624), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [101934] = 31, - ACTIONS(3967), 1, + anon_sym_GT, + ACTIONS(3496), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3969), 1, - anon_sym_LBRACK, - ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4573), 1, - anon_sym_BQUOTE, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(5812), 1, - anon_sym_GT_GT, - ACTIONS(5818), 1, - anon_sym_PERCENT, - ACTIONS(5820), 1, - anon_sym_STAR_STAR, - ACTIONS(5822), 1, - anon_sym_LT, - ACTIONS(5832), 1, anon_sym_AMP_AMP, - ACTIONS(5834), 1, anon_sym_PIPE_PIPE, - ACTIONS(5836), 1, - anon_sym_AMP, - ACTIONS(5838), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5840), 1, - anon_sym_PIPE, - ACTIONS(5846), 1, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5848), 1, - sym__ternary_qmark, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [101221] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5808), 2, + ACTIONS(4120), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4288), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5810), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5814), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5816), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5842), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5844), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5824), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [102038] = 31, - ACTIONS(3967), 1, + anon_sym_GT, + ACTIONS(4290), 24, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4577), 1, - anon_sym_BQUOTE, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(5812), 1, - anon_sym_GT_GT, - ACTIONS(5818), 1, - anon_sym_PERCENT, - ACTIONS(5820), 1, - anon_sym_STAR_STAR, - ACTIONS(5822), 1, - anon_sym_LT, - ACTIONS(5832), 1, anon_sym_AMP_AMP, - ACTIONS(5834), 1, anon_sym_PIPE_PIPE, - ACTIONS(5836), 1, - anon_sym_AMP, - ACTIONS(5838), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5840), 1, - anon_sym_PIPE, - ACTIONS(5846), 1, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5848), 1, - sym__ternary_qmark, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [101271] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5808), 2, + ACTIONS(4322), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4288), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5810), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5814), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5816), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5842), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5844), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5824), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [102142] = 31, - ACTIONS(3967), 1, + anon_sym_GT, + ACTIONS(4290), 24, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(5594), 1, - anon_sym_LT, - ACTIONS(5600), 1, anon_sym_AMP_AMP, - ACTIONS(5602), 1, anon_sym_PIPE_PIPE, - ACTIONS(5604), 1, - anon_sym_GT_GT, - ACTIONS(5608), 1, - anon_sym_AMP, - ACTIONS(5610), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5612), 1, - anon_sym_PIPE, - ACTIONS(5616), 1, anon_sym_PERCENT, - ACTIONS(5618), 1, anon_sym_STAR_STAR, - ACTIONS(5626), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5628), 1, - sym__ternary_qmark, - ACTIONS(5906), 1, - anon_sym_COLON, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [101321] = 6, + ACTIONS(4608), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5596), 2, + ACTIONS(4611), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4408), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3492), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5598), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5606), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5614), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5622), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5624), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [102246] = 31, - ACTIONS(3967), 1, + anon_sym_GT, + ACTIONS(3496), 22, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3969), 1, - anon_sym_LBRACK, - ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(4765), 1, - anon_sym_BQUOTE, - ACTIONS(5812), 1, - anon_sym_GT_GT, - ACTIONS(5818), 1, - anon_sym_PERCENT, - ACTIONS(5820), 1, - anon_sym_STAR_STAR, - ACTIONS(5822), 1, - anon_sym_LT, - ACTIONS(5832), 1, anon_sym_AMP_AMP, - ACTIONS(5834), 1, anon_sym_PIPE_PIPE, - ACTIONS(5836), 1, - anon_sym_AMP, - ACTIONS(5838), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5840), 1, - anon_sym_PIPE, - ACTIONS(5846), 1, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5848), 1, - sym__ternary_qmark, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [101375] = 6, + ACTIONS(4614), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5808), 2, + ACTIONS(4617), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4378), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4458), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5810), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5814), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5816), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5842), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5844), 2, + anon_sym_GT, + ACTIONS(4460), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + 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, - ACTIONS(5824), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [102350] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [101429] = 13, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(4990), 1, + anon_sym_STAR, + ACTIONS(5555), 1, + anon_sym_COMMA, + ACTIONS(5624), 1, + anon_sym_RBRACE, + STATE(4960), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3210), 12, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(2337), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2357), 2, + anon_sym_get, + anon_sym_set, + STATE(3816), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [101497] = 14, + ACTIONS(1550), 1, anon_sym_DQUOTE, + ACTIONS(1552), 1, anon_sym_SQUOTE, + ACTIONS(2353), 1, + anon_sym_async, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(4990), 1, + anon_sym_STAR, + ACTIONS(5555), 1, + anon_sym_COMMA, + ACTIONS(5624), 1, + anon_sym_RBRACE, + STATE(4960), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, + ACTIONS(2357), 2, + anon_sym_get, + anon_sym_set, + STATE(3816), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3208), 27, + ACTIONS(2351), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_DOT, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -224718,239 +222246,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - anon_sym_extends, - [102398] = 31, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, + [101567] = 7, + ACTIONS(3494), 1, + anon_sym_EQ, + ACTIONS(4608), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(4767), 1, - anon_sym_BQUOTE, - ACTIONS(5812), 1, - anon_sym_GT_GT, - ACTIONS(5818), 1, - anon_sym_PERCENT, - ACTIONS(5820), 1, - anon_sym_STAR_STAR, - ACTIONS(5822), 1, - anon_sym_LT, - ACTIONS(5832), 1, - anon_sym_AMP_AMP, - ACTIONS(5834), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5836), 1, - anon_sym_AMP, - ACTIONS(5838), 1, - anon_sym_CARET, - ACTIONS(5840), 1, - anon_sym_PIPE, - ACTIONS(5846), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5848), 1, - sym__ternary_qmark, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5808), 2, + ACTIONS(4408), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4611), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3492), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5810), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5814), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5816), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5842), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5844), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5824), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [102502] = 31, - ACTIONS(3967), 1, + ACTIONS(3496), 22, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3969), 1, - anon_sym_LBRACK, - ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(5594), 1, - anon_sym_LT, - ACTIONS(5600), 1, anon_sym_AMP_AMP, - ACTIONS(5602), 1, anon_sym_PIPE_PIPE, - ACTIONS(5604), 1, - anon_sym_GT_GT, - ACTIONS(5608), 1, - anon_sym_AMP, - ACTIONS(5610), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5612), 1, - anon_sym_PIPE, - ACTIONS(5616), 1, anon_sym_PERCENT, - ACTIONS(5618), 1, anon_sym_STAR_STAR, - ACTIONS(5626), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5628), 1, - sym__ternary_qmark, - ACTIONS(5908), 1, - anon_sym_COLON, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5596), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5598), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5606), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5614), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5622), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5624), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [102606] = 31, - ACTIONS(3967), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [101623] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(4779), 1, - anon_sym_BQUOTE, - ACTIONS(5812), 1, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, anon_sym_GT_GT, - ACTIONS(5818), 1, + ACTIONS(5596), 1, anon_sym_PERCENT, - ACTIONS(5820), 1, - anon_sym_STAR_STAR, - ACTIONS(5822), 1, + ACTIONS(5598), 1, anon_sym_LT, - ACTIONS(5832), 1, + ACTIONS(5602), 1, anon_sym_AMP_AMP, - ACTIONS(5834), 1, + ACTIONS(5604), 1, anon_sym_PIPE_PIPE, - ACTIONS(5836), 1, + ACTIONS(5606), 1, anon_sym_AMP, - ACTIONS(5838), 1, + ACTIONS(5608), 1, anon_sym_CARET, - ACTIONS(5840), 1, + ACTIONS(5610), 1, anon_sym_PIPE, - ACTIONS(5846), 1, + ACTIONS(5616), 1, anon_sym_QMARK_QMARK, - ACTIONS(5848), 1, + ACTIONS(5618), 1, sym__ternary_qmark, - STATE(1580), 1, + ACTIONS(5845), 1, + anon_sym_COLON, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5808), 2, + ACTIONS(5586), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5810), 2, + ACTIONS(5588), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5814), 2, + ACTIONS(5592), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5816), 2, + ACTIONS(5594), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5842), 2, + ACTIONS(5612), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5844), 2, + ACTIONS(5614), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5824), 3, + ACTIONS(5600), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [102710] = 6, - ACTIONS(3600), 1, - anon_sym_RBRACK, - ACTIONS(3637), 1, - anon_sym_COMMA, - ACTIONS(3682), 1, - anon_sym_EQ, + [101727] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3499), 13, + ACTIONS(4526), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(5847), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -224964,7 +222390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3503), 23, + ACTIONS(5850), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -224988,15 +222414,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [102764] = 4, + [101777] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4545), 3, + ACTIONS(1712), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(5910), 13, + ACTIONS(5853), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -225010,7 +222436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(5913), 23, + ACTIONS(5856), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -225034,70 +222460,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [102814] = 15, - ACTIONS(2344), 1, - anon_sym_DQUOTE, - ACTIONS(2346), 1, - anon_sym_SQUOTE, - ACTIONS(2364), 1, - anon_sym_async, - ACTIONS(2366), 1, - anon_sym_readonly, - ACTIONS(2370), 1, - anon_sym_override, - ACTIONS(4686), 1, - anon_sym_LBRACK, - ACTIONS(5003), 1, - anon_sym_STAR, - STATE(2814), 1, - sym_override_modifier, + [101827] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2368), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5916), 2, + ACTIONS(4578), 3, anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3799), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 4, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2362), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - 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, - anon_sym_object, - [102886] = 4, - ACTIONS(3643), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3499), 13, + ACTIONS(5859), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -225111,12 +222482,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3503), 25, - sym__automatic_semicolon, + ACTIONS(5862), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -225137,15 +222506,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [102936] = 4, + [101877] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1739), 3, + ACTIONS(4582), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(5918), 13, + ACTIONS(5865), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -225159,7 +222528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(5921), 23, + ACTIONS(5868), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -225183,15 +222552,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [102986] = 4, + [101927] = 12, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(5871), 1, + anon_sym_LT, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1827), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5924), 13, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4778), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -225201,17 +222585,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(5927), 23, + ACTIONS(4780), 17, sym__ternary_qmark, anon_sym_as, - 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, @@ -225225,21 +222604,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [103036] = 4, + [101993] = 15, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5874), 1, + anon_sym_LT, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4619), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5930), 13, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4634), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, @@ -225247,17 +222644,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(5933), 23, + ACTIONS(4638), 15, sym__ternary_qmark, - anon_sym_as, - 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, @@ -225271,103 +222662,419 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - [103086] = 31, - ACTIONS(3967), 1, + [102065] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5594), 1, + ACTIONS(4792), 1, + anon_sym_BQUOTE, + ACTIONS(5799), 1, anon_sym_LT, - ACTIONS(5600), 1, + ACTIONS(5805), 1, anon_sym_AMP_AMP, - ACTIONS(5602), 1, + ACTIONS(5807), 1, anon_sym_PIPE_PIPE, - ACTIONS(5604), 1, + ACTIONS(5809), 1, anon_sym_GT_GT, - ACTIONS(5608), 1, + ACTIONS(5813), 1, anon_sym_AMP, - ACTIONS(5610), 1, + ACTIONS(5815), 1, anon_sym_CARET, - ACTIONS(5612), 1, + ACTIONS(5817), 1, anon_sym_PIPE, - ACTIONS(5616), 1, + ACTIONS(5821), 1, anon_sym_PERCENT, - ACTIONS(5618), 1, + ACTIONS(5823), 1, anon_sym_STAR_STAR, - ACTIONS(5626), 1, + ACTIONS(5831), 1, anon_sym_QMARK_QMARK, - ACTIONS(5628), 1, + ACTIONS(5833), 1, sym__ternary_qmark, - ACTIONS(5936), 1, - anon_sym_COLON, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5596), 2, + ACTIONS(5801), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5598), 2, + ACTIONS(5803), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5606), 2, + ACTIONS(5811), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5614), 2, + ACTIONS(5819), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5622), 2, + ACTIONS(5827), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5624), 2, + ACTIONS(5829), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, + ACTIONS(5825), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [102169] = 11, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(5877), 1, + anon_sym_LT, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4785), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(4787), 19, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [103190] = 9, - ACTIONS(1643), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [102233] = 12, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4622), 1, + anon_sym_EQ, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(4990), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2337), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2357), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5665), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3816), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [102299] = 13, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(2353), 1, + anon_sym_async, + ACTIONS(4622), 1, + anon_sym_EQ, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(4990), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2337), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2357), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5665), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3816), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [102367] = 11, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(3722), 1, + anon_sym_override, + ACTIONS(4624), 1, + anon_sym_LBRACK, + ACTIONS(5880), 1, + anon_sym_readonly, + STATE(2847), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5668), 2, + sym_number, + sym_private_property_identifier, + STATE(3399), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3700), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + 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, + anon_sym_object, + [102431] = 9, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(4624), 1, + anon_sym_LBRACK, + ACTIONS(5882), 1, + anon_sym_abstract, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5668), 2, + sym_number, + sym_private_property_identifier, + STATE(3399), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3700), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [102491] = 11, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(3722), 1, + anon_sym_override, + ACTIONS(4624), 1, + anon_sym_LBRACK, + ACTIONS(5886), 1, + anon_sym_readonly, + STATE(2865), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5884), 2, + sym_number, + sym_private_property_identifier, + STATE(3446), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3700), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + 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, + anon_sym_object, + [102555] = 9, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(5940), 1, + ACTIONS(5890), 1, anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5938), 2, + ACTIONS(5888), 2, sym_number, sym_private_property_identifier, - STATE(3465), 3, + STATE(3449), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -225375,7 +223082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3705), 23, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225399,652 +223106,636 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103250] = 6, - ACTIONS(3967), 1, + [102615] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - STATE(1671), 1, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, + anon_sym_GT_GT, + ACTIONS(5596), 1, + anon_sym_PERCENT, + ACTIONS(5598), 1, + anon_sym_LT, + ACTIONS(5602), 1, + anon_sym_AMP_AMP, + ACTIONS(5604), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5606), 1, + anon_sym_AMP, + ACTIONS(5608), 1, + anon_sym_CARET, + ACTIONS(5610), 1, + anon_sym_PIPE, + ACTIONS(5616), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5618), 1, + sym__ternary_qmark, + ACTIONS(5892), 1, + anon_sym_COLON, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5942), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4281), 13, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5586), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5588), 2, anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT, + ACTIONS(5592), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5594), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5612), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4283), 21, - sym__ternary_qmark, - anon_sym_as, - 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, + ACTIONS(5614), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5600), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_satisfies, - [103304] = 32, - ACTIONS(3967), 1, + [102719] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5026), 1, - anon_sym_of, - ACTIONS(5757), 1, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, + anon_sym_GT_GT, + ACTIONS(5596), 1, + anon_sym_PERCENT, + ACTIONS(5598), 1, anon_sym_LT, - ACTIONS(5761), 1, - anon_sym_GT, - ACTIONS(5763), 1, + ACTIONS(5602), 1, anon_sym_AMP_AMP, - ACTIONS(5765), 1, + ACTIONS(5604), 1, anon_sym_PIPE_PIPE, - ACTIONS(5767), 1, - anon_sym_GT_GT, - ACTIONS(5771), 1, + ACTIONS(5606), 1, anon_sym_AMP, - ACTIONS(5773), 1, + ACTIONS(5608), 1, anon_sym_CARET, - ACTIONS(5775), 1, + ACTIONS(5610), 1, anon_sym_PIPE, - ACTIONS(5779), 1, - anon_sym_PERCENT, - ACTIONS(5781), 1, - anon_sym_STAR_STAR, - ACTIONS(5789), 1, + ACTIONS(5616), 1, anon_sym_QMARK_QMARK, - ACTIONS(5791), 1, + ACTIONS(5618), 1, sym__ternary_qmark, - ACTIONS(5944), 1, - anon_sym_in, - STATE(1580), 1, + ACTIONS(5894), 1, + anon_sym_COLON, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5759), 2, + ACTIONS(5586), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5769), 2, + ACTIONS(5588), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5592), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5777), 2, + ACTIONS(5594), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5785), 2, + ACTIONS(5612), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5787), 2, + ACTIONS(5614), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5783), 3, + ACTIONS(5600), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [103410] = 11, - ACTIONS(1643), 1, - anon_sym_DQUOTE, - ACTIONS(1645), 1, - anon_sym_SQUOTE, - ACTIONS(3731), 1, - anon_sym_override, - ACTIONS(4595), 1, + [102823] = 31, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(5949), 1, - anon_sym_readonly, - STATE(2872), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5947), 2, - sym_number, - sym_private_property_identifier, - STATE(3454), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, + anon_sym_GT_GT, + ACTIONS(5596), 1, + anon_sym_PERCENT, + ACTIONS(5598), 1, + anon_sym_LT, + ACTIONS(5602), 1, + anon_sym_AMP_AMP, + ACTIONS(5604), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5606), 1, + anon_sym_AMP, + ACTIONS(5608), 1, + anon_sym_CARET, + ACTIONS(5610), 1, + anon_sym_PIPE, + ACTIONS(5616), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5618), 1, + sym__ternary_qmark, + ACTIONS(5896), 1, anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3705), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - 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, - anon_sym_object, - [103474] = 6, - ACTIONS(4529), 1, - anon_sym_LBRACK, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4532), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4093), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3499), 11, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5586), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5588), 2, anon_sym_in, - anon_sym_GT_GT, + anon_sym_GT, + ACTIONS(5592), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5594), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5612), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(3503), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - 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, + ACTIONS(5614), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5600), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [103528] = 31, - ACTIONS(3967), 1, + [102927] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5594), 1, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, + anon_sym_GT_GT, + ACTIONS(5596), 1, + anon_sym_PERCENT, + ACTIONS(5598), 1, anon_sym_LT, - ACTIONS(5600), 1, - anon_sym_AMP_AMP, ACTIONS(5602), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5604), 1, - anon_sym_GT_GT, - ACTIONS(5608), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5606), 1, anon_sym_AMP, - ACTIONS(5610), 1, + ACTIONS(5608), 1, anon_sym_CARET, - ACTIONS(5612), 1, + ACTIONS(5610), 1, anon_sym_PIPE, ACTIONS(5616), 1, - anon_sym_PERCENT, - ACTIONS(5618), 1, - anon_sym_STAR_STAR, - ACTIONS(5626), 1, anon_sym_QMARK_QMARK, - ACTIONS(5628), 1, + ACTIONS(5618), 1, sym__ternary_qmark, - ACTIONS(5951), 1, + ACTIONS(5898), 1, anon_sym_COLON, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5596), 2, + ACTIONS(5586), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5598), 2, + ACTIONS(5588), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5606), 2, + ACTIONS(5592), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5614), 2, + ACTIONS(5594), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5622), 2, + ACTIONS(5612), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5624), 2, + ACTIONS(5614), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, + ACTIONS(5600), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [103632] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3218), 12, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_QMARK, - ACTIONS(3216), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_DOT, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - anon_sym_extends, - [103680] = 6, - ACTIONS(4445), 1, - anon_sym_EQ, - ACTIONS(4788), 1, - anon_sym_RBRACK, - ACTIONS(4864), 1, - anon_sym_COMMA, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4443), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(4447), 23, - sym__ternary_qmark, - anon_sym_as, + [103031] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, + ACTIONS(4012), 1, anon_sym_LBRACK, + ACTIONS(4014), 1, anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5626), 1, + anon_sym_LT, + ACTIONS(5632), 1, anon_sym_AMP_AMP, + ACTIONS(5634), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5636), 1, + anon_sym_GT_GT, + ACTIONS(5640), 1, + anon_sym_AMP, + ACTIONS(5642), 1, anon_sym_CARET, + ACTIONS(5644), 1, + anon_sym_PIPE, + ACTIONS(5648), 1, anon_sym_PERCENT, + ACTIONS(5650), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5658), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [103734] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3214), 12, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_LBRACK, + ACTIONS(5660), 1, + sym__ternary_qmark, + ACTIONS(5900), 1, anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_QMARK, - ACTIONS(3212), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_DOT, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - anon_sym_extends, - [103782] = 7, - ACTIONS(3533), 1, - anon_sym_EQ, - ACTIONS(4637), 1, - anon_sym_LBRACK, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4378), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4640), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - ACTIONS(3499), 10, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5628), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5630), 2, anon_sym_in, - anon_sym_GT_GT, + anon_sym_GT, + ACTIONS(5638), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5646), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5654), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - 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, + ACTIONS(5656), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5652), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [103838] = 31, - ACTIONS(3967), 1, + [103135] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5635), 1, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, + anon_sym_GT_GT, + ACTIONS(5596), 1, + anon_sym_PERCENT, + ACTIONS(5598), 1, anon_sym_LT, - ACTIONS(5641), 1, + ACTIONS(5602), 1, anon_sym_AMP_AMP, - ACTIONS(5643), 1, + ACTIONS(5604), 1, anon_sym_PIPE_PIPE, - ACTIONS(5645), 1, - anon_sym_GT_GT, - ACTIONS(5649), 1, + ACTIONS(5606), 1, anon_sym_AMP, - ACTIONS(5651), 1, + ACTIONS(5608), 1, anon_sym_CARET, - ACTIONS(5653), 1, + ACTIONS(5610), 1, anon_sym_PIPE, - ACTIONS(5657), 1, - anon_sym_PERCENT, - ACTIONS(5659), 1, - anon_sym_STAR_STAR, - ACTIONS(5667), 1, + ACTIONS(5616), 1, anon_sym_QMARK_QMARK, - ACTIONS(5669), 1, + ACTIONS(5618), 1, sym__ternary_qmark, - ACTIONS(5953), 1, - anon_sym_RBRACK, - STATE(1580), 1, + ACTIONS(5902), 1, + anon_sym_COLON, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5637), 2, + ACTIONS(5586), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(5588), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5647), 2, + ACTIONS(5592), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5655), 2, + ACTIONS(5594), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5663), 2, + ACTIONS(5612), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5665), 2, + ACTIONS(5614), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5661), 3, + ACTIONS(5600), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [103942] = 31, - ACTIONS(3967), 1, + [103239] = 11, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(3722), 1, + anon_sym_override, + ACTIONS(4624), 1, + anon_sym_LBRACK, + ACTIONS(5904), 1, + anon_sym_readonly, + STATE(2814), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4840), 2, + sym_number, + sym_private_property_identifier, + STATE(3368), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3700), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + 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, + anon_sym_object, + [103303] = 9, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(4624), 1, + anon_sym_LBRACK, + ACTIONS(4848), 1, + anon_sym_abstract, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4840), 2, + sym_number, + sym_private_property_identifier, + STATE(3368), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3700), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [103363] = 31, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3969), 1, + ACTIONS(4012), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4708), 1, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5635), 1, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, + anon_sym_GT_GT, + ACTIONS(5596), 1, + anon_sym_PERCENT, + ACTIONS(5598), 1, anon_sym_LT, - ACTIONS(5641), 1, + ACTIONS(5602), 1, anon_sym_AMP_AMP, - ACTIONS(5643), 1, + ACTIONS(5604), 1, anon_sym_PIPE_PIPE, - ACTIONS(5645), 1, - anon_sym_GT_GT, - ACTIONS(5649), 1, + ACTIONS(5606), 1, anon_sym_AMP, - ACTIONS(5651), 1, + ACTIONS(5608), 1, anon_sym_CARET, - ACTIONS(5653), 1, + ACTIONS(5610), 1, anon_sym_PIPE, - ACTIONS(5657), 1, - anon_sym_PERCENT, - ACTIONS(5659), 1, - anon_sym_STAR_STAR, - ACTIONS(5667), 1, + ACTIONS(5616), 1, anon_sym_QMARK_QMARK, - ACTIONS(5669), 1, + ACTIONS(5618), 1, sym__ternary_qmark, - ACTIONS(5955), 1, - anon_sym_RBRACK, - STATE(1580), 1, + ACTIONS(5906), 1, + anon_sym_COLON, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5637), 2, + ACTIONS(5586), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(5588), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5647), 2, + ACTIONS(5592), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5655), 2, + ACTIONS(5594), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5663), 2, + ACTIONS(5612), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5665), 2, + ACTIONS(5614), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5661), 3, + ACTIONS(5600), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [104046] = 6, - ACTIONS(4093), 1, - anon_sym_extends, + [103467] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4529), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4532), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3499), 11, + ACTIONS(1826), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(5908), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -226052,11 +223743,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3503), 23, + ACTIONS(5911), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -226076,21 +223767,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [104100] = 8, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(5822), 1, - anon_sym_LT, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, + [103517] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4700), 12, + ACTIONS(1836), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(5914), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -226100,12 +223785,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4702), 22, + ACTIONS(5917), 23, sym__ternary_qmark, anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -226126,135 +223813,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [104158] = 6, - ACTIONS(4593), 1, - anon_sym_EQ, + [103567] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4065), 2, + ACTIONS(4600), 3, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1986), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3819), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, + ACTIONS(5920), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1984), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [104212] = 31, - ACTIONS(3967), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(5923), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(5594), 1, - anon_sym_LT, - ACTIONS(5600), 1, anon_sym_AMP_AMP, - ACTIONS(5602), 1, anon_sym_PIPE_PIPE, - ACTIONS(5604), 1, - anon_sym_GT_GT, - ACTIONS(5608), 1, - anon_sym_AMP, - ACTIONS(5610), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5612), 1, - anon_sym_PIPE, - ACTIONS(5616), 1, anon_sym_PERCENT, - ACTIONS(5618), 1, anon_sym_STAR_STAR, - ACTIONS(5626), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5628), 1, - sym__ternary_qmark, - ACTIONS(5957), 1, - anon_sym_COLON, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5596), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5598), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5606), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5614), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5622), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5624), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [104316] = 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [103617] = 4, + ACTIONS(3582), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4213), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4127), 13, + ACTIONS(3492), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -226268,12 +223879,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4129), 24, + ACTIONS(3496), 25, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -226293,31 +223905,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [104366] = 6, - ACTIONS(4593), 1, - anon_sym_EQ, + [103667] = 11, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(3722), 1, + anon_sym_override, + ACTIONS(4624), 1, + anon_sym_LBRACK, + ACTIONS(5928), 1, + anon_sym_readonly, + STATE(2868), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4065), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1990), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5926), 2, sym_number, sym_private_property_identifier, - ACTIONS(3819), 7, + STATE(3369), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 7, sym__automatic_semicolon, - anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1988), 23, + ACTIONS(3700), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226326,14 +223945,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -226341,30 +223958,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104420] = 11, - ACTIONS(1643), 1, + [103731] = 31, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, + anon_sym_GT_GT, + ACTIONS(5596), 1, + anon_sym_PERCENT, + ACTIONS(5598), 1, + anon_sym_LT, + ACTIONS(5602), 1, + anon_sym_AMP_AMP, + ACTIONS(5604), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5606), 1, + anon_sym_AMP, + ACTIONS(5608), 1, + anon_sym_CARET, + ACTIONS(5610), 1, + anon_sym_PIPE, + ACTIONS(5616), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5618), 1, + sym__ternary_qmark, + ACTIONS(5930), 1, + anon_sym_COLON, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5586), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5588), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5592), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5594), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5612), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5614), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5600), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [103835] = 9, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3731), 1, - anon_sym_override, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(5961), 1, - anon_sym_readonly, - STATE(2869), 1, - sym_override_modifier, + ACTIONS(5934), 1, + anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5959), 2, + ACTIONS(5932), 2, sym_number, sym_private_property_identifier, - STATE(3403), 3, + STATE(3376), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -226372,7 +224058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3705), 21, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226381,12 +224067,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -226394,92 +224082,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104484] = 31, - ACTIONS(3967), 1, + [103895] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1872), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(5936), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(5939), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4708), 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_satisfies, + [103945] = 31, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, anon_sym_as, - ACTIONS(4710), 1, + ACTIONS(4640), 1, anon_sym_BANG, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(4746), 1, + ACTIONS(4649), 1, anon_sym_satisfies, - ACTIONS(5594), 1, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, + anon_sym_GT_GT, + ACTIONS(5596), 1, + anon_sym_PERCENT, + ACTIONS(5598), 1, anon_sym_LT, - ACTIONS(5600), 1, - anon_sym_AMP_AMP, ACTIONS(5602), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5604), 1, - anon_sym_GT_GT, - ACTIONS(5608), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5606), 1, anon_sym_AMP, - ACTIONS(5610), 1, + ACTIONS(5608), 1, anon_sym_CARET, - ACTIONS(5612), 1, + ACTIONS(5610), 1, anon_sym_PIPE, ACTIONS(5616), 1, - anon_sym_PERCENT, - ACTIONS(5618), 1, - anon_sym_STAR_STAR, - ACTIONS(5626), 1, anon_sym_QMARK_QMARK, - ACTIONS(5628), 1, + ACTIONS(5618), 1, sym__ternary_qmark, - ACTIONS(5963), 1, + ACTIONS(5942), 1, anon_sym_COLON, - STATE(1580), 1, + STATE(1633), 1, sym_type_arguments, - STATE(1656), 1, + STATE(1655), 1, sym_arguments, - STATE(4828), 1, + STATE(4733), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(4647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5596), 2, + ACTIONS(5586), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5598), 2, + ACTIONS(5588), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5606), 2, + ACTIONS(5592), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5614), 2, + ACTIONS(5594), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5622), 2, + ACTIONS(5612), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5624), 2, + ACTIONS(5614), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, + ACTIONS(5600), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [104588] = 6, - ACTIONS(3533), 1, - anon_sym_EQ, - ACTIONS(3696), 1, - anon_sym_in, - ACTIONS(3699), 1, - anon_sym_of, + [104049] = 6, + ACTIONS(4010), 1, + anon_sym_LPAREN, + STATE(1669), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3499), 12, + ACTIONS(5944), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4410), 13, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -226490,10 +224227,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3503), 23, + ACTIONS(4412), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -226512,39 +224248,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [104641] = 11, - ACTIONS(2344), 1, + [104103] = 31, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5581), 1, + anon_sym_STAR_STAR, + ACTIONS(5590), 1, + anon_sym_GT_GT, + ACTIONS(5596), 1, + anon_sym_PERCENT, + ACTIONS(5598), 1, + anon_sym_LT, + ACTIONS(5602), 1, + anon_sym_AMP_AMP, + ACTIONS(5604), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5606), 1, + anon_sym_AMP, + ACTIONS(5608), 1, + anon_sym_CARET, + ACTIONS(5610), 1, + anon_sym_PIPE, + ACTIONS(5616), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5618), 1, + sym__ternary_qmark, + ACTIONS(5946), 1, + anon_sym_COLON, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5586), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5588), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5592), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5594), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5612), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5614), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5600), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [104207] = 11, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(3722), 1, + anon_sym_override, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(5003), 1, - anon_sym_STAR, + ACTIONS(5950), 1, + anon_sym_readonly, + STATE(2862), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, + ACTIONS(5948), 2, sym_number, sym_private_property_identifier, - ACTIONS(2368), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5916), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3799), 3, + STATE(3459), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 4, - anon_sym_LPAREN, + ACTIONS(3814), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2362), 21, + ACTIONS(3700), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226553,12 +224362,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -226566,83 +224375,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104704] = 9, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(699), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, - anon_sym_EQ, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, - aux_sym_object_repeat1, + [104271] = 31, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4744), 1, + anon_sym_BQUOTE, + ACTIONS(5799), 1, + anon_sym_LT, + ACTIONS(5805), 1, + anon_sym_AMP_AMP, + ACTIONS(5807), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5809), 1, + anon_sym_GT_GT, + ACTIONS(5813), 1, + anon_sym_AMP, + ACTIONS(5815), 1, + anon_sym_CARET, + ACTIONS(5817), 1, + anon_sym_PIPE, + ACTIONS(5821), 1, + anon_sym_PERCENT, + ACTIONS(5823), 1, + anon_sym_STAR_STAR, + ACTIONS(5831), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5833), 1, + sym__ternary_qmark, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3819), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1990), 6, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5801), 2, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(1988), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [104763] = 9, - ACTIONS(239), 1, + anon_sym_SLASH, + ACTIONS(5803), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5811), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5819), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5827), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5829), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5825), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [104375] = 9, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(5074), 1, + ACTIONS(694), 1, anon_sym_RBRACE, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, + ACTIONS(4622), 1, + anon_sym_EQ, + STATE(4792), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3819), 4, + ACTIONS(3814), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1986), 6, + ACTIONS(1975), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1984), 23, + ACTIONS(1973), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226666,32 +224498,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104822] = 8, - ACTIONS(1643), 1, + [104434] = 11, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, + ACTIONS(4990), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5965), 2, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - STATE(3386), 3, + ACTIONS(2357), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5843), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3816), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3814), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3705), 23, + ACTIONS(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226701,8 +224538,6 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -226715,24 +224550,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104879] = 8, - ACTIONS(1643), 1, + [104497] = 30, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, + anon_sym_LBRACK, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(4800), 1, + anon_sym_BANG, + ACTIONS(5799), 1, + anon_sym_LT, + ACTIONS(5805), 1, + anon_sym_AMP_AMP, + ACTIONS(5807), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5809), 1, + anon_sym_GT_GT, + ACTIONS(5813), 1, + anon_sym_AMP, + ACTIONS(5815), 1, + anon_sym_CARET, + ACTIONS(5817), 1, + anon_sym_PIPE, + ACTIONS(5821), 1, + anon_sym_PERCENT, + ACTIONS(5823), 1, + anon_sym_STAR_STAR, + ACTIONS(5831), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5833), 1, + sym__ternary_qmark, + STATE(2130), 1, + sym_arguments, + STATE(2719), 1, + sym_type_arguments, + STATE(4524), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5801), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5803), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5811), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5819), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5827), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5829), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5825), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [104598] = 8, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5967), 2, + ACTIONS(5952), 2, sym_number, sym_private_property_identifier, - STATE(3353), 3, + STATE(3419), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -226740,7 +224646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3705), 23, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226764,32 +224670,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104936] = 8, - ACTIONS(1643), 1, - anon_sym_DQUOTE, - ACTIONS(1645), 1, - anon_sym_SQUOTE, - ACTIONS(4595), 1, - anon_sym_LBRACK, + [104655] = 9, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(667), 1, + anon_sym_RBRACE, + ACTIONS(4622), 1, + anon_sym_EQ, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5969), 2, - sym_number, - sym_private_property_identifier, - STATE(3335), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3814), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3705), 23, + ACTIONS(1971), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1969), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226813,33 +224720,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104993] = 9, - ACTIONS(239), 1, + [104714] = 9, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(5074), 1, + ACTIONS(667), 1, anon_sym_RBRACE, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, + ACTIONS(4622), 1, + anon_sym_EQ, + STATE(4792), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3819), 4, + ACTIONS(3814), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1990), 6, + ACTIONS(1975), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1988), 23, + ACTIONS(1973), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226863,32 +224770,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105052] = 8, - ACTIONS(1643), 1, - anon_sym_DQUOTE, - ACTIONS(1645), 1, - anon_sym_SQUOTE, - ACTIONS(4595), 1, - anon_sym_LBRACK, + [104773] = 9, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(692), 1, + anon_sym_RBRACE, + ACTIONS(4622), 1, + anon_sym_EQ, + STATE(4810), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5971), 2, - sym_number, - sym_private_property_identifier, - STATE(3361), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3814), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3705), 23, + ACTIONS(1971), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1969), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226912,33 +224820,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105109] = 9, - ACTIONS(239), 1, + [104832] = 9, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(5076), 1, + ACTIONS(692), 1, anon_sym_RBRACE, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, + ACTIONS(4622), 1, + anon_sym_EQ, + STATE(4810), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3819), 4, + ACTIONS(3814), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1986), 6, + ACTIONS(1975), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1984), 23, + ACTIONS(1973), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226962,33 +224870,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105168] = 9, - ACTIONS(239), 1, + [104891] = 9, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(672), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - STATE(4823), 1, + ACTIONS(5053), 1, + anon_sym_RBRACE, + STATE(4792), 1, aux_sym_object_repeat1, - STATE(4834), 1, + STATE(4815), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3819), 4, + ACTIONS(3814), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1986), 6, + ACTIONS(1971), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1984), 23, + ACTIONS(1969), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227012,33 +224920,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105227] = 9, - ACTIONS(239), 1, + [104950] = 9, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(672), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - STATE(4823), 1, + ACTIONS(5053), 1, + anon_sym_RBRACE, + STATE(4792), 1, aux_sym_object_repeat1, - STATE(4834), 1, + STATE(4815), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3819), 4, + ACTIONS(3814), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1990), 6, + ACTIONS(1975), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1988), 23, + ACTIONS(1973), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227062,33 +224970,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105286] = 9, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(5076), 1, - anon_sym_RBRACE, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, - aux_sym_object_repeat1, + [105009] = 8, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(4624), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3819), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1990), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5954), 2, sym_number, sym_private_property_identifier, - ACTIONS(1988), 23, + STATE(3414), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227112,34 +225019,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105345] = 10, - ACTIONS(2344), 1, - anon_sym_DQUOTE, - ACTIONS(2346), 1, - anon_sym_SQUOTE, - ACTIONS(4593), 1, + [105066] = 9, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(694), 1, + anon_sym_RBRACE, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(4686), 1, - anon_sym_LBRACK, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5727), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3799), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 4, + ACTIONS(3814), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2362), 23, + ACTIONS(1971), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1969), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227163,39 +225069,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105406] = 12, - ACTIONS(2344), 1, + [105125] = 12, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(2364), 1, + ACTIONS(2353), 1, anon_sym_async, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5003), 1, + ACTIONS(4990), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - ACTIONS(2368), 2, + ACTIONS(2357), 2, anon_sym_get, anon_sym_set, - ACTIONS(5916), 2, + ACTIONS(5843), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(3799), 3, + STATE(3816), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 4, + ACTIONS(3814), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2362), 20, + ACTIONS(2351), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227216,32 +225122,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105471] = 8, - ACTIONS(1643), 1, + [105190] = 6, + ACTIONS(3494), 1, + anon_sym_EQ, + ACTIONS(3681), 1, + anon_sym_in, + ACTIONS(3684), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3492), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(3496), 23, + sym__ternary_qmark, + anon_sym_as, + 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_satisfies, + [105243] = 10, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4622), 1, + anon_sym_EQ, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5973), 2, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - STATE(3434), 3, + ACTIONS(5665), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3816), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3814), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3705), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227265,35 +225220,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105528] = 11, - ACTIONS(2344), 1, + [105304] = 8, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(5276), 1, - anon_sym_COMMA, - ACTIONS(5714), 1, - anon_sym_RBRACE, - STATE(4943), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, + ACTIONS(5956), 2, sym_number, sym_private_property_identifier, - STATE(3799), 3, + STATE(3326), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 4, - anon_sym_LPAREN, + ACTIONS(3814), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2362), 23, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227317,69 +225269,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105591] = 4, - ACTIONS(4921), 1, - sym_regex_flags, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4917), 17, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_of, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_instanceof, - anon_sym_satisfies, - ACTIONS(4919), 20, - sym__ternary_qmark, - 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_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [105640] = 8, - ACTIONS(1643), 1, + [105361] = 8, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5975), 2, + ACTIONS(5958), 2, sym_number, sym_private_property_identifier, - STATE(3451), 3, + STATE(3403), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -227387,7 +225294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3705), 23, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227411,33 +225318,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105697] = 9, - ACTIONS(239), 1, + [105418] = 9, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(5005), 1, + ACTIONS(5051), 1, anon_sym_RBRACE, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, + STATE(4792), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3819), 4, + ACTIONS(3814), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1986), 6, + ACTIONS(1971), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1984), 23, + ACTIONS(1969), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227461,33 +225368,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105756] = 9, - ACTIONS(239), 1, + [105477] = 9, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(5005), 1, + ACTIONS(4992), 1, anon_sym_RBRACE, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, + STATE(4792), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3819), 4, + ACTIONS(3814), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1990), 6, + ACTIONS(1971), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1988), 23, + ACTIONS(1969), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227511,81 +225418,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105815] = 8, - ACTIONS(1643), 1, - anon_sym_DQUOTE, - ACTIONS(1645), 1, - anon_sym_SQUOTE, - ACTIONS(4595), 1, - anon_sym_LBRACK, + [105536] = 9, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(4622), 1, + anon_sym_EQ, + ACTIONS(4992), 1, + anon_sym_RBRACE, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5977), 2, - sym_number, - sym_private_property_identifier, - STATE(3439), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3814), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3705), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [105872] = 8, - ACTIONS(1643), 1, + ACTIONS(1975), 6, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1645), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5979), 2, sym_number, sym_private_property_identifier, - STATE(3388), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3705), 23, + ACTIONS(1973), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227609,33 +225468,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105929] = 9, - ACTIONS(239), 1, + [105595] = 9, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(697), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, + ACTIONS(5051), 1, + anon_sym_RBRACE, + STATE(4792), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3819), 4, + ACTIONS(3814), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1986), 6, + ACTIONS(1975), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1984), 23, + ACTIONS(1973), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227659,33 +225518,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105988] = 9, - ACTIONS(239), 1, + [105654] = 11, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(5555), 1, anon_sym_COMMA, - ACTIONS(697), 1, + ACTIONS(5624), 1, anon_sym_RBRACE, - ACTIONS(4593), 1, - anon_sym_EQ, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, + STATE(4960), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3819), 4, + ACTIONS(2337), 2, + sym_number, + sym_private_property_identifier, + STATE(3816), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1990), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(1988), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227709,95 +225570,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106047] = 30, - ACTIONS(4627), 1, - anon_sym_LPAREN, - ACTIONS(4629), 1, - anon_sym_LBRACK, - ACTIONS(4631), 1, - anon_sym_DOT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(4811), 1, - anon_sym_BANG, - ACTIONS(5812), 1, - anon_sym_GT_GT, - ACTIONS(5818), 1, - anon_sym_PERCENT, - ACTIONS(5820), 1, - anon_sym_STAR_STAR, - ACTIONS(5822), 1, - anon_sym_LT, - ACTIONS(5832), 1, - anon_sym_AMP_AMP, - ACTIONS(5834), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5836), 1, - anon_sym_AMP, - ACTIONS(5838), 1, - anon_sym_CARET, - ACTIONS(5840), 1, - anon_sym_PIPE, - ACTIONS(5846), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5848), 1, - sym__ternary_qmark, - STATE(2189), 1, - sym_arguments, - STATE(2720), 1, - sym_type_arguments, - STATE(4602), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5808), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5810), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5814), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5816), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5842), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5844), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5824), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [106148] = 8, - ACTIONS(1643), 1, + [105717] = 8, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5981), 2, + ACTIONS(5960), 2, sym_number, sym_private_property_identifier, - STATE(3325), 3, + STATE(3334), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -227805,7 +225595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3705), 23, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227829,24 +225619,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106205] = 8, - ACTIONS(1643), 1, + [105774] = 8, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5983), 2, + ACTIONS(5962), 2, sym_number, sym_private_property_identifier, - STATE(3416), 3, + STATE(3462), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -227854,7 +225644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3705), 23, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227878,24 +225668,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106262] = 8, - ACTIONS(1643), 1, + [105831] = 8, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5985), 2, + ACTIONS(5964), 2, sym_number, sym_private_property_identifier, - STATE(3372), 3, + STATE(3367), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -227903,7 +225693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3705), 23, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227927,24 +225717,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106319] = 8, - ACTIONS(1643), 1, + [105888] = 8, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5987), 2, + ACTIONS(5966), 2, sym_number, sym_private_property_identifier, - STATE(3373), 3, + STATE(3379), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -227952,7 +225742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3705), 23, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227976,95 +225766,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106376] = 30, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3969), 1, - anon_sym_LBRACK, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4708), 1, - anon_sym_as, - ACTIONS(4710), 1, - anon_sym_BANG, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(4746), 1, - anon_sym_satisfies, - ACTIONS(5812), 1, - anon_sym_GT_GT, - ACTIONS(5818), 1, - anon_sym_PERCENT, - ACTIONS(5820), 1, - anon_sym_STAR_STAR, - ACTIONS(5822), 1, - anon_sym_LT, - ACTIONS(5832), 1, - anon_sym_AMP_AMP, - ACTIONS(5834), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5836), 1, - anon_sym_AMP, - ACTIONS(5838), 1, - anon_sym_CARET, - ACTIONS(5840), 1, - anon_sym_PIPE, - ACTIONS(5846), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5848), 1, - sym__ternary_qmark, - STATE(1580), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4828), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4744), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5808), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5810), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5814), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5816), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5842), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5844), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5824), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [106477] = 8, - ACTIONS(1643), 1, + [105945] = 8, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5989), 2, + ACTIONS(5968), 2, sym_number, sym_private_property_identifier, - STATE(3460), 3, + STATE(3397), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -228072,7 +225791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3705), 23, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228096,24 +225815,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106534] = 8, - ACTIONS(1643), 1, + [106002] = 8, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5991), 2, + ACTIONS(5970), 2, sym_number, sym_private_property_identifier, - STATE(3324), 3, + STATE(3428), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -228121,7 +225840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3705), 23, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228145,69 +225864,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106591] = 4, - ACTIONS(3666), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3499), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(3503), 24, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_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_satisfies, - [106640] = 8, - ACTIONS(1643), 1, + [106059] = 8, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5993), 2, + ACTIONS(5972), 2, sym_number, sym_private_property_identifier, - STATE(3401), 3, + STATE(3429), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -228215,7 +225889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3705), 23, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228239,16 +225913,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106697] = 4, - ACTIONS(3674), 1, - anon_sym_EQ, + [106116] = 4, + ACTIONS(4915), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3499), 13, + ACTIONS(4911), 17, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, + anon_sym_of, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -228259,56 +225935,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3503), 24, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - 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_satisfies, - [106746] = 4, - ACTIONS(3650), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3499), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(3503), 24, + ACTIONS(4913), 20, sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -228324,38 +225955,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - [106795] = 9, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(699), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, - anon_sym_EQ, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, - aux_sym_object_repeat1, + [106165] = 8, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(4624), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3819), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1986), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5974), 2, sym_number, sym_private_property_identifier, - ACTIONS(1984), 23, + STATE(3348), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228379,24 +226007,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106854] = 8, - ACTIONS(1643), 1, + [106222] = 8, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5995), 2, + ACTIONS(5976), 2, sym_number, sym_private_property_identifier, - STATE(3358), 3, + STATE(3343), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3819), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -228404,7 +226032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3705), 23, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228428,24 +226056,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106911] = 3, + [106279] = 8, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(4624), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5999), 12, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5978), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5997), 25, + STATE(3415), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228469,15 +226105,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [106957] = 4, - ACTIONS(3781), 1, + [106336] = 4, + ACTIONS(3642), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3499), 13, + ACTIONS(3492), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -228491,10 +226125,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3503), 23, + ACTIONS(3496), 24, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -228515,70 +226150,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [107005] = 4, - ACTIONS(6001), 1, - sym__automatic_semicolon, + [106385] = 4, + ACTIONS(3658), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1789), 11, + ACTIONS(3492), 13, anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1791), 25, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [107053] = 5, - ACTIONS(6007), 1, - anon_sym_SEMI, - ACTIONS(6010), 1, - sym__automatic_semicolon, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(3496), 24, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + 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_satisfies, + [106434] = 30, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4012), 1, + anon_sym_LBRACK, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4636), 1, + anon_sym_as, + ACTIONS(4640), 1, + anon_sym_BANG, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(4649), 1, + anon_sym_satisfies, + ACTIONS(5799), 1, + anon_sym_LT, + ACTIONS(5805), 1, + anon_sym_AMP_AMP, + ACTIONS(5807), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5809), 1, + anon_sym_GT_GT, + ACTIONS(5813), 1, + anon_sym_AMP, + ACTIONS(5815), 1, + anon_sym_CARET, + ACTIONS(5817), 1, + anon_sym_PIPE, + ACTIONS(5821), 1, + anon_sym_PERCENT, + ACTIONS(5823), 1, + anon_sym_STAR_STAR, + ACTIONS(5831), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5833), 1, + sym__ternary_qmark, + STATE(1633), 1, + sym_type_arguments, + STATE(1655), 1, + sym_arguments, + STATE(4733), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6005), 10, + ACTIONS(4647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5801), 2, anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_SLASH, + ACTIONS(5803), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5811), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5819), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5827), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5829), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5825), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [106535] = 8, + ACTIONS(1626), 1, anon_sym_DQUOTE, + ACTIONS(1628), 1, anon_sym_SQUOTE, + ACTIONS(4624), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5980), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(6003), 25, + STATE(3400), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228602,26 +226315,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [107103] = 3, + [106592] = 4, + ACTIONS(3646), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6014), 12, - sym__automatic_semicolon, + ACTIONS(3492), 13, anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(3496), 24, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + 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_satisfies, + [106641] = 8, + ACTIONS(1626), 1, anon_sym_DQUOTE, + ACTIONS(1628), 1, anon_sym_SQUOTE, + ACTIONS(4624), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5982), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(6012), 25, + STATE(3358), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228645,14 +226409,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [107149] = 3, + [106698] = 4, + ACTIONS(5984), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6018), 12, - sym__automatic_semicolon, + ACTIONS(1878), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -228664,7 +226427,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6016), 25, + ACTIONS(1880), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228690,11 +226453,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107195] = 3, + [106746] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6022), 12, + ACTIONS(5988), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -228707,7 +226470,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6020), 25, + ACTIONS(5986), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228733,11 +226496,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107241] = 3, + [106792] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6026), 12, + ACTIONS(5992), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -228750,7 +226513,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6024), 25, + ACTIONS(5990), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228776,143 +226539,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107287] = 4, - ACTIONS(3755), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3499), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(3503), 23, - sym__ternary_qmark, - anon_sym_as, - 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_satisfies, - [107335] = 4, - ACTIONS(3749), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3499), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(3503), 23, - sym__ternary_qmark, - anon_sym_as, - 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_satisfies, - [107383] = 4, - ACTIONS(3769), 1, - anon_sym_EQ, + [106838] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3499), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(3503), 23, - sym__ternary_qmark, - anon_sym_as, - 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_satisfies, - [107431] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6018), 12, + ACTIONS(5996), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -228925,7 +226556,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6016), 25, + ACTIONS(5994), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228951,13 +226582,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107477] = 4, - ACTIONS(3757), 1, + [106884] = 4, + ACTIONS(3754), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3499), 13, + ACTIONS(3492), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -228971,7 +226602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3503), 23, + ACTIONS(3496), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -228995,11 +226626,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [107525] = 3, + [106932] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6018), 12, + ACTIONS(5992), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -229012,7 +226643,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6016), 25, + ACTIONS(5990), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229038,55 +226669,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107571] = 4, - ACTIONS(3789), 1, - anon_sym_EQ, + [106978] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3499), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(3503), 23, - sym__ternary_qmark, - anon_sym_as, - 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_satisfies, - [107619] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6030), 12, + ACTIONS(6000), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -229099,7 +226686,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6028), 25, + ACTIONS(5998), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229125,60 +226712,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107665] = 9, - ACTIONS(2344), 1, - anon_sym_DQUOTE, - ACTIONS(2346), 1, - anon_sym_SQUOTE, - ACTIONS(4686), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2348), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5916), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3799), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3819), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2362), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [107723] = 3, + [107024] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6022), 12, + ACTIONS(6004), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -229191,7 +226729,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6020), 25, + ACTIONS(6002), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229217,11 +226755,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107769] = 3, + [107070] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6022), 12, + ACTIONS(5996), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -229234,7 +226772,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6020), 25, + ACTIONS(5994), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229260,11 +226798,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107815] = 3, + [107116] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6026), 12, + ACTIONS(6008), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -229277,7 +226815,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6024), 25, + ACTIONS(6006), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229303,11 +226841,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107861] = 3, + [107162] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6018), 12, + ACTIONS(6000), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -229320,7 +226858,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6016), 25, + ACTIONS(5998), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229346,11 +226884,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107907] = 3, + [107208] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6026), 12, + ACTIONS(6012), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -229363,7 +226901,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6024), 25, + ACTIONS(6010), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229389,17 +226927,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107953] = 5, - ACTIONS(6036), 1, - anon_sym_SEMI, - ACTIONS(6039), 1, - sym__automatic_semicolon, + [107254] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6034), 10, + ACTIONS(6016), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PLUS, anon_sym_DASH, @@ -229408,7 +226944,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6032), 25, + ACTIONS(6014), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229434,11 +226970,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108003] = 3, + [107300] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6014), 12, + ACTIONS(5996), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -229451,7 +226987,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6012), 25, + ACTIONS(5994), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229477,11 +227013,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108049] = 3, + [107346] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6018), 12, + ACTIONS(6020), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -229494,7 +227030,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6016), 25, + ACTIONS(6018), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229520,11 +227056,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108095] = 3, + [107392] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6026), 12, + ACTIONS(6024), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -229537,7 +227073,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6024), 25, + ACTIONS(6022), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229563,11 +227099,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108141] = 3, + [107438] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6026), 12, + ACTIONS(6000), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -229580,7 +227116,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6024), 25, + ACTIONS(5998), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229606,11 +227142,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108187] = 3, + [107484] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5999), 12, + ACTIONS(6028), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -229623,7 +227159,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5997), 25, + ACTIONS(6026), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229649,11 +227185,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108233] = 3, + [107530] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6043), 12, + ACTIONS(5988), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -229666,7 +227202,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6041), 25, + ACTIONS(5986), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229692,55 +227228,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108279] = 4, - ACTIONS(6045), 1, - sym__automatic_semicolon, + [107576] = 4, + ACTIONS(3770), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1703), 11, + ACTIONS(3492), 13, anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1705), 25, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [108327] = 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(3496), 23, + sym__ternary_qmark, + anon_sym_as, + 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_satisfies, + [107624] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6026), 12, + ACTIONS(6028), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -229753,7 +227289,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6024), 25, + ACTIONS(6026), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229779,11 +227315,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108373] = 3, + [107670] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6049), 12, + ACTIONS(6024), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -229796,7 +227332,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6047), 25, + ACTIONS(6022), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229822,11 +227358,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108419] = 3, + [107716] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6053), 12, + ACTIONS(5996), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -229839,7 +227375,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6051), 25, + ACTIONS(5994), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229865,11 +227401,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108465] = 3, + [107762] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6057), 12, + ACTIONS(5996), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -229882,7 +227418,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6055), 25, + ACTIONS(5994), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229908,29 +227444,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108511] = 8, - ACTIONS(6059), 1, - anon_sym_LPAREN, - ACTIONS(6061), 1, - anon_sym_DOT, - ACTIONS(6063), 1, - anon_sym_LT, - STATE(2804), 1, - sym_arguments, - STATE(5181), 1, - sym_type_arguments, + [107808] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3577), 7, + ACTIONS(6004), 12, + sym__automatic_semicolon, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3575), 25, + ACTIONS(6002), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229956,11 +227487,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108567] = 3, + [107854] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6057), 12, + ACTIONS(6032), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -229973,7 +227504,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6055), 25, + ACTIONS(6030), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229999,11 +227530,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108613] = 3, + [107900] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6067), 12, + ACTIONS(6032), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -230016,7 +227547,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6065), 25, + ACTIONS(6030), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230042,28 +227573,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108659] = 3, + [107946] = 4, + ACTIONS(3782), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3656), 10, + ACTIONS(3492), 13, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(3496), 23, + sym__ternary_qmark, + anon_sym_as, + 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_satisfies, + [107994] = 4, + ACTIONS(3792), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3492), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(3496), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_RPAREN, 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_satisfies, + [108042] = 4, + ACTIONS(3746), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3492), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(3496), 23, + sym__ternary_qmark, + anon_sym_as, + 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_satisfies, + [108090] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1878), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3654), 27, + ACTIONS(1880), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_DOT, - anon_sym_class, anon_sym_async, anon_sym_new, sym_identifier, @@ -230085,11 +227748,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108705] = 3, + [108136] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6071), 12, + ACTIONS(6024), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -230102,7 +227765,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6069), 25, + ACTIONS(6022), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230128,11 +227791,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108751] = 3, + [108182] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1789), 12, + ACTIONS(6032), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -230145,7 +227808,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1791), 25, + ACTIONS(6030), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230171,12 +227834,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108797] = 3, + [108228] = 4, + ACTIONS(6034), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6075), 12, - sym__automatic_semicolon, + ACTIONS(1690), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -230188,7 +227852,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6073), 25, + ACTIONS(1692), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230214,24 +227878,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108843] = 3, + [108276] = 4, + ACTIONS(3756), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6022), 12, - sym__automatic_semicolon, + ACTIONS(3492), 13, anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(3496), 23, + sym__ternary_qmark, + anon_sym_as, + 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_satisfies, + [108324] = 9, + ACTIONS(1550), 1, anon_sym_DQUOTE, + ACTIONS(1552), 1, anon_sym_SQUOTE, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(6020), 25, + ACTIONS(5843), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3816), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3814), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230255,13 +227971,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [108889] = 3, + [108382] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6079), 12, + ACTIONS(1716), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -230274,7 +227988,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6077), 25, + ACTIONS(1718), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230300,13 +228014,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108935] = 4, - ACTIONS(6081), 1, - sym__automatic_semicolon, + [108428] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1703), 11, + ACTIONS(6024), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -230318,7 +228031,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1705), 25, + ACTIONS(6022), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230344,54 +228057,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108983] = 3, + [108474] = 4, + ACTIONS(3762), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6022), 12, - sym__automatic_semicolon, + ACTIONS(3492), 13, anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(6020), 25, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [109029] = 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(3496), 23, + sym__ternary_qmark, + anon_sym_as, + 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_satisfies, + [108522] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6014), 12, + ACTIONS(5996), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -230404,7 +228118,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6012), 25, + ACTIONS(5994), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230430,11 +228144,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109075] = 3, + [108568] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1831), 12, + ACTIONS(6000), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -230447,7 +228161,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1833), 25, + ACTIONS(5998), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230473,11 +228187,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109121] = 3, + [108614] = 4, + ACTIONS(3778), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6022), 12, + ACTIONS(3492), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(3496), 23, + sym__ternary_qmark, + anon_sym_as, + 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_satisfies, + [108662] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5988), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -230490,7 +228248,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6020), 25, + ACTIONS(5986), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230516,11 +228274,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109167] = 3, + [108708] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6043), 12, + ACTIONS(6028), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -230533,7 +228291,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6041), 25, + ACTIONS(6026), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230559,11 +228317,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109213] = 3, + [108754] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6043), 12, + ACTIONS(6024), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -230576,7 +228334,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6041), 25, + ACTIONS(6022), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230602,11 +228360,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109259] = 3, + [108800] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6057), 12, + ACTIONS(6038), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -230619,7 +228377,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6055), 25, + ACTIONS(6036), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230645,11 +228403,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109305] = 3, + [108846] = 5, + ACTIONS(87), 1, + anon_sym_BQUOTE, + STATE(2228), 1, + sym_template_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6014), 12, + ACTIONS(1734), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(1736), 22, + sym__ternary_qmark, + anon_sym_as, + 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_satisfies, + [108896] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5988), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -230662,7 +228465,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6012), 25, + ACTIONS(5986), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230688,11 +228491,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109351] = 3, + [108942] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6067), 12, + ACTIONS(6042), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -230705,7 +228508,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6065), 25, + ACTIONS(6040), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230731,144 +228534,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109397] = 4, - ACTIONS(3785), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3499), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(3503), 23, - sym__ternary_qmark, - anon_sym_as, - 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_satisfies, - [109445] = 4, - ACTIONS(3791), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3499), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(3503), 23, - sym__ternary_qmark, - anon_sym_as, - 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_satisfies, - [109493] = 4, - ACTIONS(3751), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3499), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(3503), 23, - sym__ternary_qmark, - anon_sym_as, - 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_satisfies, - [109541] = 3, + [108988] = 4, + ACTIONS(6044), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6022), 12, - sym__automatic_semicolon, + ACTIONS(1690), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -230880,7 +228552,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6020), 25, + ACTIONS(1692), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230906,12 +228578,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109587] = 3, + [109036] = 4, + ACTIONS(6046), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6043), 12, - sym__automatic_semicolon, + ACTIONS(1878), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -230923,7 +228596,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6041), 25, + ACTIONS(1880), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230949,60 +228622,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109633] = 5, - ACTIONS(89), 1, - anon_sym_BQUOTE, - STATE(2255), 1, - sym_template_string, + [109084] = 5, + ACTIONS(6052), 1, + anon_sym_SEMI, + ACTIONS(6055), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1883), 13, + ACTIONS(6050), 10, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - ACTIONS(1885), 22, - sym__ternary_qmark, - anon_sym_as, - 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_satisfies, - [109683] = 3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6048), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [109134] = 5, + ACTIONS(6061), 1, + anon_sym_SEMI, + ACTIONS(6064), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6057), 12, - sym__automatic_semicolon, + ACTIONS(6059), 10, anon_sym_STAR, anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PLUS, anon_sym_DASH, @@ -231011,7 +228686,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6055), 25, + ACTIONS(6057), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231037,13 +228712,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109729] = 4, - ACTIONS(6083), 1, - sym__automatic_semicolon, + [109184] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1789), 11, + ACTIONS(6024), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -231055,7 +228729,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1791), 25, + ACTIONS(6022), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231081,11 +228755,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109777] = 3, + [109230] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6014), 12, + ACTIONS(6024), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -231098,7 +228772,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6012), 25, + ACTIONS(6022), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231124,11 +228798,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109823] = 3, + [109276] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6057), 12, + ACTIONS(6028), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -231141,7 +228815,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6055), 25, + ACTIONS(6026), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231167,11 +228841,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109869] = 3, + [109322] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6043), 12, + ACTIONS(6028), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -231184,7 +228858,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6041), 25, + ACTIONS(6026), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231210,11 +228884,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109915] = 3, + [109368] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6026), 12, + ACTIONS(5988), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -231227,7 +228901,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6024), 25, + ACTIONS(5986), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231253,13 +228927,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109961] = 4, - ACTIONS(3777), 1, + [109414] = 4, + ACTIONS(3784), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3499), 13, + ACTIONS(3492), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -231273,7 +228947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(3503), 23, + ACTIONS(3496), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -231297,11 +228971,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [110009] = 3, + [109462] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6087), 11, + ACTIONS(6032), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -231313,7 +228988,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6085), 25, + ACTIONS(6030), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231339,52 +229014,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [110054] = 14, - ACTIONS(2344), 1, - anon_sym_DQUOTE, - ACTIONS(2346), 1, - anon_sym_SQUOTE, - ACTIONS(2370), 1, - anon_sym_override, - ACTIONS(4686), 1, - anon_sym_LBRACK, - ACTIONS(6089), 1, - anon_sym_STAR, - ACTIONS(6091), 1, - anon_sym_async, - ACTIONS(6095), 1, - anon_sym_readonly, - STATE(2802), 1, - sym_override_modifier, + [109508] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6093), 2, + ACTIONS(5996), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(6097), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3819), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3888), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2362), 18, + anon_sym_AT, + ACTIONS(5994), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -231392,15 +229055,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110121] = 5, - ACTIONS(4627), 1, - anon_sym_LPAREN, - STATE(2351), 1, - sym_arguments, + anon_sym_abstract, + anon_sym_accessor, + [109554] = 4, + ACTIONS(3744), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4281), 13, + ACTIONS(3492), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -231414,9 +229077,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT, - ACTIONS(4283), 21, + ACTIONS(3496), 23, sym__ternary_qmark, anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -231435,12 +229099,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [110170] = 3, + [109602] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6101), 11, + ACTIONS(6000), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -231452,7 +229118,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6099), 25, + ACTIONS(5998), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231478,29 +229144,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [110215] = 7, - ACTIONS(5276), 1, - anon_sym_COMMA, - ACTIONS(5714), 1, - anon_sym_RBRACE, - STATE(4943), 1, - aux_sym_object_repeat1, + [109648] = 8, + ACTIONS(3576), 1, + anon_sym_LT, + ACTIONS(6066), 1, + anon_sym_LPAREN, + ACTIONS(6068), 1, + anon_sym_DOT, + STATE(2810), 1, + sym_arguments, + STATE(5442), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3819), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1986), 6, + ACTIONS(3572), 7, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1984), 23, + anon_sym_AT, + ACTIONS(3570), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231524,11 +229190,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110268] = 3, + anon_sym_abstract, + anon_sym_accessor, + [109704] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6105), 11, + ACTIONS(6032), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -231540,7 +229209,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6103), 25, + ACTIONS(6030), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231566,23 +229235,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [110313] = 3, + [109750] = 6, + ACTIONS(4622), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6087), 11, - anon_sym_STAR, + ACTIONS(5665), 2, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(3814), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1971), 6, + anon_sym_STAR, anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(6085), 25, + ACTIONS(1969), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231606,30 +229280,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [110358] = 6, - ACTIONS(4593), 1, + [109801] = 6, + ACTIONS(4622), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5727), 2, + ACTIONS(5665), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3819), 4, + ACTIONS(3814), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1990), 6, + ACTIONS(1975), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1988), 23, + ACTIONS(1973), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231653,28 +229325,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110409] = 6, - ACTIONS(4593), 1, - anon_sym_EQ, + [109852] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5727), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3819), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1986), 6, + ACTIONS(1878), 11, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1984), 23, + anon_sym_AT, + ACTIONS(1880), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231698,29 +229365,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110460] = 7, - ACTIONS(5276), 1, - anon_sym_COMMA, - ACTIONS(5714), 1, + anon_sym_abstract, + anon_sym_accessor, + [109897] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6072), 11, + anon_sym_STAR, anon_sym_RBRACE, - STATE(4943), 1, - aux_sym_object_repeat1, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6070), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [109942] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3819), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1990), 6, + ACTIONS(6076), 11, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1988), 23, + anon_sym_AT, + ACTIONS(6074), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231744,11 +229449,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110513] = 3, + anon_sym_abstract, + anon_sym_accessor, + [109987] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6109), 11, + ACTIONS(6080), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -231760,7 +229467,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6107), 25, + ACTIONS(6078), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231786,11 +229493,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [110558] = 3, + [110032] = 5, + ACTIONS(4588), 1, + anon_sym_LPAREN, + STATE(2220), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(4412), 21, + sym__ternary_qmark, + anon_sym_as, + 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_satisfies, + [110081] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1789), 11, + ACTIONS(6080), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -231802,7 +229553,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1791), 25, + ACTIONS(6078), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231828,11 +229579,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [110603] = 3, + [110126] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1831), 11, + ACTIONS(6084), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -231844,7 +229595,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1833), 25, + ACTIONS(6082), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231870,35 +229621,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [110648] = 11, - ACTIONS(2344), 1, + [110171] = 14, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(2359), 1, + anon_sym_override, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(6111), 1, + ACTIONS(6086), 1, anon_sym_STAR, - ACTIONS(6113), 1, + ACTIONS(6088), 1, anon_sym_async, + ACTIONS(6092), 1, + anon_sym_readonly, + STATE(2807), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6115), 2, + ACTIONS(6090), 2, sym_number, sym_private_property_identifier, - ACTIONS(6117), 2, + ACTIONS(6094), 2, anon_sym_get, anon_sym_set, - ACTIONS(3819), 3, + ACTIONS(3814), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3770), 3, + STATE(3752), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 20, + ACTIONS(2351), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231906,12 +229663,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -231919,54 +229674,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110708] = 17, - ACTIONS(1643), 1, - anon_sym_DQUOTE, - ACTIONS(1645), 1, - anon_sym_SQUOTE, - ACTIONS(3731), 1, - anon_sym_override, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(5096), 1, - anon_sym_STAR, - ACTIONS(5098), 1, - anon_sym_async, - ACTIONS(6121), 1, - anon_sym_static, - ACTIONS(6123), 1, - anon_sym_readonly, - ACTIONS(6125), 1, - anon_sym_declare, - ACTIONS(6127), 1, - anon_sym_abstract, - ACTIONS(6129), 1, - anon_sym_accessor, - STATE(2810), 1, - sym_override_modifier, + [110238] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5104), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6119), 2, + ACTIONS(1716), 11, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - STATE(3058), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3705), 16, + anon_sym_AT, + ACTIONS(1718), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -231974,54 +229714,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110780] = 17, - ACTIONS(1643), 1, - anon_sym_DQUOTE, - ACTIONS(1645), 1, - anon_sym_SQUOTE, - ACTIONS(3731), 1, - anon_sym_override, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(4649), 1, - anon_sym_STAR, - ACTIONS(4653), 1, - anon_sym_async, - ACTIONS(4677), 1, - anon_sym_accessor, - ACTIONS(6131), 1, - anon_sym_static, - ACTIONS(6133), 1, - anon_sym_readonly, - ACTIONS(6135), 1, - anon_sym_declare, - ACTIONS(6137), 1, anon_sym_abstract, - STATE(2803), 1, - sym_override_modifier, + anon_sym_accessor, + [110283] = 7, + ACTIONS(5555), 1, + anon_sym_COMMA, + ACTIONS(5624), 1, + anon_sym_RBRACE, + STATE(4960), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4655), 2, + ACTIONS(3814), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1971), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(4659), 2, - anon_sym_get, - anon_sym_set, - STATE(3071), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3705), 16, + ACTIONS(1969), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -232029,33 +229762,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110852] = 10, - ACTIONS(2344), 1, - anon_sym_DQUOTE, - ACTIONS(2346), 1, - anon_sym_SQUOTE, - ACTIONS(4686), 1, - anon_sym_LBRACK, - ACTIONS(6089), 1, - anon_sym_STAR, + [110336] = 7, + ACTIONS(5555), 1, + anon_sym_COMMA, + ACTIONS(5624), 1, + anon_sym_RBRACE, + STATE(4960), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6093), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6097), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3819), 3, + ACTIONS(3814), 4, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - STATE(3888), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2362), 21, + ACTIONS(1975), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1973), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232065,6 +229794,8 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -232077,43 +229808,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110910] = 11, - ACTIONS(2344), 1, - anon_sym_DQUOTE, - ACTIONS(2346), 1, - anon_sym_SQUOTE, - ACTIONS(4686), 1, - anon_sym_LBRACK, - ACTIONS(6139), 1, - anon_sym_STAR, - ACTIONS(6141), 1, - anon_sym_async, + [110389] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6143), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6145), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3819), 3, + ACTIONS(5843), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3814), 4, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - STATE(3851), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2362), 20, + ACTIONS(1971), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1969), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -232126,35 +229851,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110970] = 11, - ACTIONS(2344), 1, + [110437] = 11, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(6089), 1, + ACTIONS(6096), 1, anon_sym_STAR, - ACTIONS(6091), 1, + ACTIONS(6098), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6093), 2, + ACTIONS(6100), 2, sym_number, sym_private_property_identifier, - ACTIONS(6097), 2, + ACTIONS(6102), 2, anon_sym_get, anon_sym_set, - ACTIONS(3819), 3, + ACTIONS(3814), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3888), 3, + STATE(3872), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 20, + ACTIONS(2351), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232175,26 +229900,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111030] = 5, + [110497] = 9, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(6104), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5916), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3819), 4, + ACTIONS(6090), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3814), 3, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1986), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(1984), 23, + STATE(3752), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232218,42 +229947,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111078] = 10, - ACTIONS(2344), 1, - anon_sym_DQUOTE, - ACTIONS(2346), 1, - anon_sym_SQUOTE, - ACTIONS(4686), 1, - anon_sym_LBRACK, - ACTIONS(6139), 1, - anon_sym_STAR, + [110553] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6143), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6145), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3819), 3, + ACTIONS(3633), 9, + anon_sym_STAR, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LT, - anon_sym_QMARK, - STATE(3851), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2362), 21, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3631), 26, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_DOT, anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -232266,33 +229986,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111136] = 10, - ACTIONS(2344), 1, + anon_sym_abstract, + anon_sym_accessor, + [110597] = 10, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(6147), 1, + ACTIONS(6086), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6149), 2, + ACTIONS(6090), 2, sym_number, sym_private_property_identifier, - ACTIONS(6151), 2, + ACTIONS(6094), 2, anon_sym_get, anon_sym_set, - ACTIONS(3819), 3, + ACTIONS(3814), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3756), 3, + STATE(3752), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 21, + ACTIONS(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232314,41 +230036,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111194] = 9, - ACTIONS(2344), 1, + [110655] = 11, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(6153), 1, - anon_sym_EQ_GT, + ACTIONS(6086), 1, + anon_sym_STAR, + ACTIONS(6088), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6093), 2, + ACTIONS(6090), 2, sym_number, sym_private_property_identifier, - ACTIONS(3819), 3, + ACTIONS(6094), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3814), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3888), 3, + STATE(3752), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -232361,90 +230085,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111250] = 10, - ACTIONS(2344), 1, + [110715] = 17, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(3722), 1, + anon_sym_override, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(6111), 1, + ACTIONS(5076), 1, anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6115), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6117), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3819), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3770), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2362), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, + ACTIONS(5078), 1, anon_sym_async, - anon_sym_new, - sym_identifier, + ACTIONS(6108), 1, anon_sym_static, + ACTIONS(6110), 1, anon_sym_readonly, + ACTIONS(6112), 1, anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [111308] = 5, + ACTIONS(6114), 1, + anon_sym_abstract, + ACTIONS(6116), 1, + anon_sym_accessor, + STATE(2798), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5916), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3819), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1990), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5084), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(6106), 2, sym_number, sym_private_property_identifier, - ACTIONS(1988), 23, + STATE(3069), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3700), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -232452,28 +230140,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111356] = 8, - ACTIONS(2344), 1, + [110787] = 10, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, + ACTIONS(6096), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5578), 2, + ACTIONS(6100), 2, sym_number, sym_private_property_identifier, - ACTIONS(3819), 3, + ACTIONS(6102), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3814), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3773), 3, + STATE(3872), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232483,8 +230176,6 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -232497,28 +230188,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111409] = 8, - ACTIONS(2344), 1, + [110845] = 10, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, + ACTIONS(6118), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6155), 2, + ACTIONS(6120), 2, sym_number, sym_private_property_identifier, - ACTIONS(3819), 3, + ACTIONS(6122), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3814), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3875), 3, + STATE(3837), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232528,8 +230224,6 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -232542,39 +230236,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111462] = 8, - ACTIONS(2344), 1, + [110903] = 11, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, + ACTIONS(6118), 1, + anon_sym_STAR, + ACTIONS(6124), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5363), 2, + ACTIONS(6120), 2, sym_number, sym_private_property_identifier, - ACTIONS(3819), 3, + ACTIONS(6122), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3814), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3794), 3, + STATE(3837), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -232587,46 +230285,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111515] = 13, - ACTIONS(1643), 1, + [110963] = 17, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(4856), 1, + ACTIONS(4656), 1, + anon_sym_STAR, + ACTIONS(4660), 1, + anon_sym_async, + ACTIONS(4682), 1, + anon_sym_accessor, + ACTIONS(6126), 1, anon_sym_static, - ACTIONS(4858), 1, + ACTIONS(6128), 1, anon_sym_readonly, - ACTIONS(4860), 1, + ACTIONS(6130), 1, + anon_sym_declare, + ACTIONS(6132), 1, anon_sym_abstract, - ACTIONS(4862), 1, - anon_sym_accessor, - STATE(2837), 1, + STATE(2793), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4854), 2, + ACTIONS(4662), 2, sym_number, sym_private_property_identifier, - STATE(3360), 3, + ACTIONS(4666), 2, + anon_sym_get, + anon_sym_set, + STATE(3082), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 20, + ACTIONS(3700), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_get, - anon_sym_set, - anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, @@ -232637,28 +230340,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111578] = 8, - ACTIONS(2344), 1, + [111035] = 10, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, + ACTIONS(6134), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5423), 2, + ACTIONS(6136), 2, sym_number, sym_private_property_identifier, - ACTIONS(3819), 3, + ACTIONS(6138), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3814), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3823), 3, + STATE(3840), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232668,8 +230376,6 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -232682,24 +230388,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111631] = 6, - ACTIONS(6157), 1, - anon_sym_AT, - STATE(2748), 1, - aux_sym_export_statement_repeat1, - STATE(2815), 1, - sym_decorator, + [111093] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3622), 6, + ACTIONS(5843), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3814), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1975), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3620), 25, + ACTIONS(1973), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232723,30 +230431,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [111680] = 8, - ACTIONS(2344), 1, + [111141] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5395), 2, + ACTIONS(5507), 2, sym_number, sym_private_property_identifier, - ACTIONS(3819), 3, + ACTIONS(3814), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3859), 3, + STATE(3802), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232770,28 +230476,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111733] = 8, - ACTIONS(2344), 1, + [111194] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6160), 2, + ACTIONS(5547), 2, sym_number, sym_private_property_identifier, - ACTIONS(3819), 3, + ACTIONS(3814), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3878), 3, + STATE(3851), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232815,28 +230521,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111786] = 8, - ACTIONS(2344), 1, + [111247] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6162), 2, + ACTIONS(6090), 2, sym_number, sym_private_property_identifier, - ACTIONS(3819), 3, + ACTIONS(3814), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3803), 3, + STATE(3752), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232860,28 +230566,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111839] = 8, - ACTIONS(2344), 1, + [111300] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6115), 2, + ACTIONS(5539), 2, sym_number, sym_private_property_identifier, - ACTIONS(3819), 3, + ACTIONS(3814), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3770), 3, + STATE(3890), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232905,28 +230611,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111892] = 8, - ACTIONS(2344), 1, + [111353] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5448), 2, + ACTIONS(5441), 2, sym_number, sym_private_property_identifier, - ACTIONS(3819), 3, + ACTIONS(3814), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3802), 3, + STATE(3753), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232950,28 +230656,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111945] = 8, - ACTIONS(2344), 1, + [111406] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5454), 2, + ACTIONS(5346), 2, sym_number, sym_private_property_identifier, - ACTIONS(3819), 3, + ACTIONS(3814), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3818), 3, + STATE(3845), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232995,28 +230701,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111998] = 8, - ACTIONS(2344), 1, + [111459] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5464), 2, + ACTIONS(5620), 2, sym_number, sym_private_property_identifier, - ACTIONS(3819), 3, + ACTIONS(3814), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3833), 3, + STATE(3787), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233040,28 +230746,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112051] = 8, - ACTIONS(2344), 1, + [111512] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5472), 2, + ACTIONS(5449), 2, sym_number, sym_private_property_identifier, - ACTIONS(3819), 3, + ACTIONS(3814), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3755), 3, + STATE(3828), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233085,28 +230791,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112104] = 8, - ACTIONS(2344), 1, + [111565] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6164), 2, + ACTIONS(5279), 2, sym_number, sym_private_property_identifier, - ACTIONS(3819), 3, + ACTIONS(3814), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3841), 3, + STATE(3863), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233130,28 +230836,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112157] = 8, - ACTIONS(2344), 1, + [111618] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6143), 2, + ACTIONS(6100), 2, sym_number, sym_private_property_identifier, - ACTIONS(3819), 3, + ACTIONS(3814), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3851), 3, + STATE(3872), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233175,28 +230881,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112210] = 8, - ACTIONS(2344), 1, + [111671] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5500), 2, + ACTIONS(5364), 2, sym_number, sym_private_property_identifier, - ACTIONS(3819), 3, + ACTIONS(3814), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3864), 3, + STATE(3798), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233220,28 +230926,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112263] = 8, - ACTIONS(2344), 1, + [111724] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5730), 2, + ACTIONS(6140), 2, sym_number, sym_private_property_identifier, - ACTIONS(3819), 3, + ACTIONS(3814), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3884), 3, + STATE(3860), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233265,28 +230971,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112316] = 8, - ACTIONS(2344), 1, + [111777] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5304), 2, + ACTIONS(5300), 2, sym_number, sym_private_property_identifier, - ACTIONS(3819), 3, + ACTIONS(3814), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3821), 3, + STATE(3780), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233310,36 +231016,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112369] = 13, - ACTIONS(1643), 1, + [111830] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(3731), 1, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6142), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3814), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3846), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2351), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, anon_sym_override, - ACTIONS(4595), 1, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [111883] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(6168), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5330), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3814), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3822), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2351), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, anon_sym_static, - ACTIONS(6170), 1, anon_sym_readonly, - ACTIONS(6172), 1, - anon_sym_abstract, - ACTIONS(6174), 1, - anon_sym_accessor, - STATE(2851), 1, - sym_override_modifier, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [111936] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4688), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6166), 2, + ACTIONS(6120), 2, sym_number, sym_private_property_identifier, - STATE(3468), 3, + ACTIONS(3814), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3837), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 20, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233347,12 +231135,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -233360,28 +231151,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112432] = 8, - ACTIONS(2344), 1, + [111989] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5518), 2, + ACTIONS(5211), 2, sym_number, sym_private_property_identifier, - ACTIONS(3819), 3, + ACTIONS(3814), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3791), 3, + STATE(3878), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233405,20 +231196,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112485] = 8, - ACTIONS(2344), 1, + [112042] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6093), 2, + ACTIONS(5405), 2, sym_number, sym_private_property_identifier, - ACTIONS(3819), 3, + ACTIONS(3814), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -233426,7 +231217,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233450,28 +231241,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112538] = 8, - ACTIONS(2344), 1, + [112095] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6149), 2, + ACTIONS(6144), 2, sym_number, sym_private_property_identifier, - ACTIONS(3819), 3, + ACTIONS(3814), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3756), 3, + STATE(3880), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233495,28 +231286,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112591] = 8, - ACTIONS(2344), 1, + [112148] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5556), 2, + ACTIONS(6146), 2, sym_number, sym_private_property_identifier, - ACTIONS(3819), 3, + ACTIONS(3814), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3771), 3, + STATE(3841), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233540,28 +231331,206 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112644] = 8, - ACTIONS(2344), 1, + [112201] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5444), 2, + ACTIONS(6136), 2, sym_number, sym_private_property_identifier, - ACTIONS(3819), 3, + ACTIONS(3814), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3900), 3, + STATE(3840), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2351), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [112254] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6148), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3814), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3897), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2351), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [112307] = 6, + ACTIONS(6150), 1, + anon_sym_AT, + STATE(2761), 1, + aux_sym_export_statement_repeat1, + STATE(2802), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3626), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3624), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [112356] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5411), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3814), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2351), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [112409] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6153), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3814), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3833), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233585,28 +231554,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112697] = 8, - ACTIONS(2344), 1, + [112462] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5415), 2, + ACTIONS(5433), 2, sym_number, sym_private_property_identifier, - ACTIONS(3819), 3, + ACTIONS(3814), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3838), 3, + STATE(3836), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233630,28 +231599,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112750] = 8, - ACTIONS(2344), 1, + [112515] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5240), 2, + ACTIONS(5477), 2, sym_number, sym_private_property_identifier, - ACTIONS(3819), 3, + ACTIONS(3814), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3760), 3, + STATE(3898), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233675,28 +231644,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112803] = 8, - ACTIONS(2344), 1, + [112568] = 13, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(3722), 1, + anon_sym_override, + ACTIONS(4624), 1, anon_sym_LBRACK, + ACTIONS(6157), 1, + anon_sym_static, + ACTIONS(6159), 1, + anon_sym_readonly, + ACTIONS(6161), 1, + anon_sym_abstract, + ACTIONS(6163), 1, + anon_sym_accessor, + STATE(2872), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5375), 2, + ACTIONS(6155), 2, sym_number, sym_private_property_identifier, - ACTIONS(3819), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3761), 3, + STATE(3458), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(3700), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233704,15 +231681,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -233720,28 +231694,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112856] = 8, - ACTIONS(2344), 1, + [112631] = 13, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(3722), 1, + anon_sym_override, + ACTIONS(4624), 1, anon_sym_LBRACK, + ACTIONS(4842), 1, + anon_sym_static, + ACTIONS(4844), 1, + anon_sym_readonly, + ACTIONS(4846), 1, + anon_sym_abstract, + ACTIONS(4848), 1, + anon_sym_accessor, + STATE(2814), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6176), 2, + ACTIONS(4840), 2, sym_number, sym_private_property_identifier, - ACTIONS(3819), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3763), 3, + STATE(3368), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(3700), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233749,15 +231731,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -233765,28 +231744,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112909] = 8, - ACTIONS(2344), 1, + [112694] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6178), 2, + ACTIONS(5419), 2, sym_number, sym_private_property_identifier, - ACTIONS(3819), 3, + ACTIONS(3814), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3876), 3, + STATE(3882), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233810,28 +231789,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112962] = 9, - ACTIONS(1557), 1, + [112747] = 9, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1559), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(6180), 1, + ACTIONS(6165), 1, anon_sym_RBRACE, - STATE(4668), 1, + STATE(4692), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6182), 2, + ACTIONS(6167), 2, sym_number, sym_private_property_identifier, - STATE(3957), 3, + STATE(4151), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233855,96 +231834,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113016] = 9, - ACTIONS(1557), 1, - anon_sym_DQUOTE, - ACTIONS(1559), 1, - anon_sym_SQUOTE, - ACTIONS(4686), 1, - anon_sym_LBRACK, - ACTIONS(6184), 1, - anon_sym_RBRACE, - STATE(4697), 1, - sym_enum_assignment, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6186), 2, - sym_number, - sym_private_property_identifier, - STATE(4141), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2362), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [113070] = 22, - ACTIONS(99), 1, + [112801] = 22, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(2290), 1, + ACTIONS(2381), 1, + anon_sym_type, + ACTIONS(2383), 1, anon_sym_namespace, - ACTIONS(2294), 1, + ACTIONS(2385), 1, anon_sym_import, - ACTIONS(2296), 1, + ACTIONS(2387), 1, anon_sym_var, - ACTIONS(2298), 1, + ACTIONS(2389), 1, anon_sym_let, - ACTIONS(2300), 1, + ACTIONS(2391), 1, anon_sym_const, - ACTIONS(2305), 1, + ACTIONS(2393), 1, anon_sym_class, - ACTIONS(2307), 1, + ACTIONS(2395), 1, anon_sym_async, - ACTIONS(2309), 1, + ACTIONS(2397), 1, anon_sym_function, - ACTIONS(2314), 1, + ACTIONS(2399), 1, anon_sym_declare, - ACTIONS(2318), 1, + ACTIONS(2403), 1, anon_sym_abstract, - ACTIONS(2320), 1, + ACTIONS(2407), 1, anon_sym_interface, - ACTIONS(2322), 1, + ACTIONS(2409), 1, anon_sym_enum, - ACTIONS(2352), 1, - anon_sym_type, - ACTIONS(2354), 1, + ACTIONS(3816), 1, anon_sym_module, - ACTIONS(2356), 1, - anon_sym_global, - STATE(825), 1, - sym_internal_module, - STATE(869), 1, - sym_declaration, - STATE(1285), 1, + ACTIONS(6169), 1, + anon_sym_default, + STATE(1344), 1, sym_decorator, - STATE(4085), 1, + STATE(3925), 1, + sym_declaration, + STATE(4287), 1, + sym_internal_module, + STATE(4304), 1, aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(837), 13, + STATE(4275), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -233958,39 +231892,39 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [113150] = 14, - ACTIONS(1643), 1, + [112881] = 14, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - ACTIONS(4591), 1, + ACTIONS(4620), 1, anon_sym_STAR, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(4597), 1, + ACTIONS(4626), 1, anon_sym_async, - ACTIONS(4601), 1, + ACTIONS(4630), 1, anon_sym_readonly, - ACTIONS(6188), 1, + ACTIONS(6171), 1, anon_sym_static, - STATE(2812), 1, + STATE(2805), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4599), 2, + ACTIONS(4628), 2, sym_number, sym_private_property_identifier, - ACTIONS(4603), 2, + ACTIONS(4632), 2, anon_sym_get, anon_sym_set, - STATE(3114), 3, + STATE(3144), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 17, + ACTIONS(3700), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234008,28 +231942,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113214] = 9, - ACTIONS(1557), 1, + [112945] = 9, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1559), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(6190), 1, + ACTIONS(6173), 1, anon_sym_RBRACE, - STATE(5188), 1, + STATE(4646), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6192), 2, + ACTIONS(6175), 2, sym_number, sym_private_property_identifier, - STATE(4463), 3, + STATE(3976), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234053,28 +231987,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113268] = 9, - ACTIONS(1557), 1, + [112999] = 14, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1559), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(3722), 1, + anon_sym_override, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(6194), 1, + ACTIONS(5000), 1, + anon_sym_STAR, + ACTIONS(5002), 1, + anon_sym_async, + ACTIONS(5006), 1, + anon_sym_readonly, + ACTIONS(6177), 1, + anon_sym_static, + STATE(2789), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5004), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5008), 2, + anon_sym_get, + anon_sym_set, + STATE(3147), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3700), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + 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, + anon_sym_object, + [113063] = 12, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(3722), 1, + anon_sym_override, + ACTIONS(4624), 1, + anon_sym_LBRACK, + ACTIONS(6179), 1, + anon_sym_STAR, + ACTIONS(6183), 1, + anon_sym_readonly, + STATE(2796), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6181), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6185), 2, + anon_sym_get, + anon_sym_set, + STATE(3044), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3700), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + 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, + anon_sym_object, + [113123] = 9, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(6187), 1, anon_sym_RBRACE, - STATE(5188), 1, + STATE(5285), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6192), 2, + ACTIONS(6189), 2, sym_number, sym_private_property_identifier, - STATE(4463), 3, + STATE(4446), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234098,28 +232130,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113322] = 9, - ACTIONS(1557), 1, + [113177] = 9, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1559), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(6196), 1, + ACTIONS(6191), 1, anon_sym_RBRACE, - STATE(5188), 1, + STATE(5285), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6192), 2, + ACTIONS(6189), 2, sym_number, sym_private_property_identifier, - STATE(4463), 3, + STATE(4446), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234143,35 +232175,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113376] = 12, - ACTIONS(1643), 1, + [113231] = 9, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(3731), 1, - anon_sym_override, - ACTIONS(4595), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5830), 1, - anon_sym_readonly, - ACTIONS(6198), 1, - anon_sym_STAR, - STATE(2808), 1, - sym_override_modifier, + ACTIONS(6193), 1, + anon_sym_RBRACE, + STATE(5285), 1, + sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6200), 2, + ACTIONS(6189), 2, sym_number, sym_private_property_identifier, - ACTIONS(6202), 2, - anon_sym_get, - anon_sym_set, - STATE(3052), 3, + STATE(4446), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 19, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234180,10 +232205,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -234191,28 +232220,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113436] = 9, - ACTIONS(1557), 1, + [113285] = 9, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1559), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(6204), 1, + ACTIONS(6195), 1, anon_sym_RBRACE, - STATE(5188), 1, + STATE(5285), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6192), 2, + ACTIONS(6189), 2, sym_number, sym_private_property_identifier, - STATE(4463), 3, + STATE(4446), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234236,28 +232265,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113490] = 9, - ACTIONS(1557), 1, + [113339] = 9, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1559), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(6206), 1, + ACTIONS(6197), 1, anon_sym_RBRACE, - STATE(5188), 1, + STATE(5285), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6192), 2, + ACTIONS(6189), 2, sym_number, sym_private_property_identifier, - STATE(4463), 3, + STATE(4446), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234281,93 +232310,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113544] = 22, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(2290), 1, + [113393] = 9, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(6199), 1, + anon_sym_RBRACE, + STATE(5285), 1, + sym_enum_assignment, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6189), 2, + sym_number, + sym_private_property_identifier, + STATE(4446), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2351), 23, + anon_sym_export, + anon_sym_type, anon_sym_namespace, - ACTIONS(2294), 1, - anon_sym_import, - ACTIONS(2296), 1, - anon_sym_var, - ACTIONS(2298), 1, anon_sym_let, - ACTIONS(2300), 1, - anon_sym_const, - ACTIONS(2305), 1, - anon_sym_class, - ACTIONS(2307), 1, anon_sym_async, - ACTIONS(2309), 1, - anon_sym_function, - ACTIONS(2314), 1, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, - ACTIONS(2316), 1, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, anon_sym_module, - ACTIONS(2318), 1, - anon_sym_abstract, - ACTIONS(2320), 1, - anon_sym_interface, - ACTIONS(2322), 1, - anon_sym_enum, - ACTIONS(2352), 1, - anon_sym_type, - ACTIONS(6208), 1, - anon_sym_default, - STATE(825), 1, - sym_internal_module, - STATE(926), 1, - sym_declaration, - STATE(1285), 1, - sym_decorator, - STATE(4085), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(837), 13, - 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_import_alias, - sym_interface_declaration, - sym_enum_declaration, - sym_type_alias_declaration, - [113624] = 12, - ACTIONS(1643), 1, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [113447] = 12, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(3731), 1, + ACTIONS(3722), 1, anon_sym_override, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(6210), 1, - anon_sym_STAR, - ACTIONS(6214), 1, + ACTIONS(5904), 1, anon_sym_readonly, - STATE(2800), 1, + ACTIONS(6201), 1, + anon_sym_STAR, + STATE(2799), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6212), 2, + ACTIONS(6203), 2, sym_number, sym_private_property_identifier, - ACTIONS(6216), 2, + ACTIONS(6205), 2, anon_sym_get, anon_sym_set, - STATE(3079), 3, + STATE(3065), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 19, + ACTIONS(3700), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234387,49 +232403,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113684] = 14, - ACTIONS(2344), 1, + [113507] = 9, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(2364), 1, - anon_sym_async, - ACTIONS(2366), 1, - anon_sym_readonly, - ACTIONS(2370), 1, - anon_sym_override, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5003), 1, - anon_sym_STAR, - ACTIONS(6218), 1, - anon_sym_static, - STATE(2814), 1, - sym_override_modifier, + ACTIONS(6207), 1, + anon_sym_RBRACE, + STATE(5285), 1, + sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, + ACTIONS(6189), 2, sym_number, sym_private_property_identifier, - ACTIONS(2368), 2, - anon_sym_get, - anon_sym_set, - STATE(3799), 3, + STATE(4446), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 17, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -234437,49 +232448,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113748] = 14, - ACTIONS(1643), 1, + [113561] = 9, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(3731), 1, - anon_sym_override, - ACTIONS(4595), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5033), 1, - anon_sym_STAR, - ACTIONS(5035), 1, - anon_sym_async, - ACTIONS(5039), 1, - anon_sym_readonly, - ACTIONS(6220), 1, - anon_sym_static, - STATE(2794), 1, - sym_override_modifier, + ACTIONS(6209), 1, + anon_sym_RBRACE, + STATE(5285), 1, + sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5037), 2, + ACTIONS(6189), 2, sym_number, sym_private_property_identifier, - ACTIONS(5041), 2, - anon_sym_get, - anon_sym_set, - STATE(3145), 3, + STATE(4446), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 17, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -234487,51 +232493,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113812] = 22, - ACTIONS(99), 1, + [113615] = 22, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(2392), 1, - anon_sym_type, - ACTIONS(2394), 1, + ACTIONS(2137), 1, anon_sym_namespace, - ACTIONS(2396), 1, + ACTIONS(2141), 1, anon_sym_import, - ACTIONS(2398), 1, + ACTIONS(2143), 1, anon_sym_var, - ACTIONS(2400), 1, + ACTIONS(2145), 1, anon_sym_let, - ACTIONS(2402), 1, + ACTIONS(2147), 1, anon_sym_const, - ACTIONS(2404), 1, + ACTIONS(2152), 1, anon_sym_class, - ACTIONS(2406), 1, + ACTIONS(2154), 1, anon_sym_async, - ACTIONS(2408), 1, + ACTIONS(2156), 1, anon_sym_function, - ACTIONS(2410), 1, + ACTIONS(2161), 1, anon_sym_declare, - ACTIONS(2414), 1, + ACTIONS(2165), 1, anon_sym_abstract, - ACTIONS(2418), 1, + ACTIONS(2167), 1, anon_sym_interface, - ACTIONS(2420), 1, + ACTIONS(2169), 1, anon_sym_enum, - ACTIONS(3821), 1, + ACTIONS(2341), 1, + anon_sym_type, + ACTIONS(2343), 1, anon_sym_module, - ACTIONS(6222), 1, - anon_sym_default, - STATE(1285), 1, - sym_decorator, - STATE(3916), 1, + ACTIONS(2345), 1, + anon_sym_global, + STATE(824), 1, sym_internal_module, - STATE(4062), 1, + STATE(867), 1, sym_declaration, - STATE(4323), 1, + STATE(1344), 1, + sym_decorator, + STATE(4301), 1, aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3912), 13, + STATE(831), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -234545,89 +232551,107 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [113892] = 9, - ACTIONS(1557), 1, - anon_sym_DQUOTE, - ACTIONS(1559), 1, - anon_sym_SQUOTE, - ACTIONS(4686), 1, - anon_sym_LBRACK, - ACTIONS(6224), 1, - anon_sym_RBRACE, - STATE(5188), 1, - sym_enum_assignment, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6192), 2, - sym_number, - sym_private_property_identifier, - STATE(4463), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2362), 23, - anon_sym_export, + [113695] = 22, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(2381), 1, anon_sym_type, + ACTIONS(2383), 1, anon_sym_namespace, + ACTIONS(2385), 1, + anon_sym_import, + ACTIONS(2387), 1, + anon_sym_var, + ACTIONS(2389), 1, anon_sym_let, + ACTIONS(2391), 1, + anon_sym_const, + ACTIONS(2393), 1, + anon_sym_class, + ACTIONS(2395), 1, anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, + ACTIONS(2397), 1, + anon_sym_function, + ACTIONS(2399), 1, anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, + ACTIONS(2401), 1, anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [113946] = 9, - ACTIONS(1557), 1, + ACTIONS(2403), 1, + anon_sym_abstract, + ACTIONS(2405), 1, + anon_sym_global, + ACTIONS(2407), 1, + anon_sym_interface, + ACTIONS(2409), 1, + anon_sym_enum, + STATE(1344), 1, + sym_decorator, + STATE(4287), 1, + sym_internal_module, + STATE(4304), 1, + aux_sym_export_statement_repeat1, + STATE(4310), 1, + sym_declaration, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4275), 13, + 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_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [113775] = 14, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1559), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(2353), 1, + anon_sym_async, + ACTIONS(2355), 1, + anon_sym_readonly, + ACTIONS(2359), 1, + anon_sym_override, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(6226), 1, - anon_sym_RBRACE, - STATE(5188), 1, - sym_enum_assignment, + ACTIONS(4990), 1, + anon_sym_STAR, + ACTIONS(6211), 1, + anon_sym_static, + STATE(2813), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6192), 2, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - STATE(4463), 3, + ACTIONS(2357), 2, + anon_sym_get, + anon_sym_set, + STATE(3816), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -234635,51 +232659,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114000] = 22, - ACTIONS(99), 1, + [113839] = 22, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(2392), 1, - anon_sym_type, - ACTIONS(2394), 1, + ACTIONS(2137), 1, anon_sym_namespace, - ACTIONS(2396), 1, + ACTIONS(2141), 1, anon_sym_import, - ACTIONS(2398), 1, + ACTIONS(2143), 1, anon_sym_var, - ACTIONS(2400), 1, + ACTIONS(2145), 1, anon_sym_let, - ACTIONS(2402), 1, + ACTIONS(2147), 1, anon_sym_const, - ACTIONS(2404), 1, + ACTIONS(2152), 1, anon_sym_class, - ACTIONS(2406), 1, + ACTIONS(2154), 1, anon_sym_async, - ACTIONS(2408), 1, + ACTIONS(2156), 1, anon_sym_function, - ACTIONS(2410), 1, + ACTIONS(2161), 1, anon_sym_declare, - ACTIONS(2412), 1, + ACTIONS(2163), 1, anon_sym_module, - ACTIONS(2414), 1, + ACTIONS(2165), 1, anon_sym_abstract, - ACTIONS(2416), 1, - anon_sym_global, - ACTIONS(2418), 1, + ACTIONS(2167), 1, anon_sym_interface, - ACTIONS(2420), 1, + ACTIONS(2169), 1, anon_sym_enum, - STATE(1285), 1, - sym_decorator, - STATE(3916), 1, + ACTIONS(2341), 1, + anon_sym_type, + ACTIONS(6213), 1, + anon_sym_default, + STATE(824), 1, sym_internal_module, - STATE(3947), 1, + STATE(921), 1, sym_declaration, - STATE(4323), 1, + STATE(1344), 1, + sym_decorator, + STATE(4301), 1, aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3912), 13, + STATE(831), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -234693,96 +232717,51 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [114080] = 9, - ACTIONS(1557), 1, - anon_sym_DQUOTE, - ACTIONS(1559), 1, - anon_sym_SQUOTE, - ACTIONS(4686), 1, - anon_sym_LBRACK, - ACTIONS(6228), 1, - anon_sym_RBRACE, - STATE(5188), 1, - sym_enum_assignment, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6192), 2, - sym_number, - sym_private_property_identifier, - STATE(4463), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2362), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [114134] = 22, - ACTIONS(99), 1, + [113919] = 22, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(2290), 1, + ACTIONS(2137), 1, anon_sym_namespace, - ACTIONS(2294), 1, + ACTIONS(2141), 1, anon_sym_import, - ACTIONS(2296), 1, + ACTIONS(2143), 1, anon_sym_var, - ACTIONS(2298), 1, + ACTIONS(2145), 1, anon_sym_let, - ACTIONS(2300), 1, + ACTIONS(2147), 1, anon_sym_const, - ACTIONS(2305), 1, + ACTIONS(2152), 1, anon_sym_class, - ACTIONS(2307), 1, + ACTIONS(2154), 1, anon_sym_async, - ACTIONS(2309), 1, + ACTIONS(2156), 1, anon_sym_function, - ACTIONS(2314), 1, + ACTIONS(2161), 1, anon_sym_declare, - ACTIONS(2316), 1, + ACTIONS(2163), 1, anon_sym_module, - ACTIONS(2318), 1, + ACTIONS(2165), 1, anon_sym_abstract, - ACTIONS(2320), 1, + ACTIONS(2167), 1, anon_sym_interface, - ACTIONS(2322), 1, + ACTIONS(2169), 1, anon_sym_enum, - ACTIONS(2352), 1, + ACTIONS(2341), 1, anon_sym_type, - ACTIONS(6230), 1, + ACTIONS(6215), 1, anon_sym_default, - STATE(825), 1, + STATE(824), 1, sym_internal_module, - STATE(926), 1, + STATE(921), 1, sym_declaration, - STATE(1285), 1, + STATE(1344), 1, sym_decorator, - STATE(4085), 1, + STATE(4301), 1, aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(837), 13, + STATE(831), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -234796,11 +232775,57 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [114214] = 3, + [113999] = 11, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(4624), 1, + anon_sym_LBRACK, + ACTIONS(5103), 1, + anon_sym_STAR, + ACTIONS(5105), 1, + anon_sym_async, + ACTIONS(5109), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5107), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5111), 2, + anon_sym_get, + anon_sym_set, + STATE(3135), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3700), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [114056] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3577), 7, + ACTIONS(3652), 7, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, @@ -234808,7 +232833,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3575), 25, + ACTIONS(3650), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234834,33 +232859,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [114255] = 11, - ACTIONS(1643), 1, + [114097] = 11, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(5121), 1, + ACTIONS(5475), 1, anon_sym_STAR, - ACTIONS(5123), 1, + ACTIONS(5481), 1, anon_sym_async, - ACTIONS(5127), 1, + ACTIONS(6217), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5125), 2, + ACTIONS(5483), 2, sym_number, sym_private_property_identifier, - ACTIONS(5129), 2, + ACTIONS(5485), 2, anon_sym_get, anon_sym_set, - STATE(3097), 3, + STATE(3074), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 19, + ACTIONS(3700), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234880,30 +232905,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114312] = 3, + [114154] = 11, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(4620), 1, + anon_sym_STAR, + ACTIONS(4624), 1, + anon_sym_LBRACK, + ACTIONS(4626), 1, + anon_sym_async, + ACTIONS(4630), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3660), 7, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(4628), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3658), 25, + ACTIONS(4632), 2, + anon_sym_get, + anon_sym_set, + STATE(3144), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3700), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -234916,32 +232951,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [114353] = 3, + [114211] = 11, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(4624), 1, + anon_sym_LBRACK, + ACTIONS(5066), 1, + anon_sym_STAR, + ACTIONS(5068), 1, + anon_sym_async, + ACTIONS(5072), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3641), 7, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5070), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3639), 25, + ACTIONS(5074), 2, + anon_sym_get, + anon_sym_set, + STATE(3064), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3700), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -234954,28 +232997,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [114394] = 8, - ACTIONS(1557), 1, + [114268] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1559), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - STATE(5188), 1, + STATE(5285), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6192), 2, + ACTIONS(6189), 2, sym_number, sym_private_property_identifier, - STATE(4463), 3, + STATE(4446), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234999,33 +233040,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114445] = 11, - ACTIONS(1643), 1, + [114319] = 11, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(5244), 1, + ACTIONS(4656), 1, anon_sym_STAR, - ACTIONS(5246), 1, + ACTIONS(4660), 1, anon_sym_async, - ACTIONS(6232), 1, + ACTIONS(4664), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5248), 2, + ACTIONS(4662), 2, sym_number, sym_private_property_identifier, - ACTIONS(5250), 2, + ACTIONS(4666), 2, anon_sym_get, anon_sym_set, - STATE(3157), 3, + STATE(3082), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 19, + ACTIONS(3700), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235045,40 +233086,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114502] = 11, - ACTIONS(1643), 1, + [114376] = 9, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4591), 1, - anon_sym_STAR, - ACTIONS(4595), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(4597), 1, - anon_sym_async, - ACTIONS(4601), 1, - anon_sym_readonly, + ACTIONS(6201), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4599), 2, + ACTIONS(5716), 2, sym_number, sym_private_property_identifier, - ACTIONS(4603), 2, + ACTIONS(6219), 2, anon_sym_get, anon_sym_set, - STATE(3114), 3, + STATE(3843), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 19, + ACTIONS(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -235091,38 +233130,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114559] = 9, - ACTIONS(2344), 1, + [114429] = 11, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(6198), 1, + ACTIONS(5271), 1, anon_sym_STAR, + ACTIONS(5273), 1, + anon_sym_async, + ACTIONS(6223), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5712), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6234), 2, + ACTIONS(5277), 2, anon_sym_get, anon_sym_set, - STATE(3800), 3, + ACTIONS(6221), 2, + sym_number, + sym_private_property_identifier, + STATE(3058), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 21, + ACTIONS(3700), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -235135,33 +233176,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114612] = 11, - ACTIONS(2344), 1, + [114486] = 11, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(2364), 1, - anon_sym_async, - ACTIONS(2366), 1, - anon_sym_readonly, - ACTIONS(4686), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(5003), 1, + ACTIONS(5137), 1, anon_sym_STAR, + ACTIONS(5139), 1, + anon_sym_async, + ACTIONS(6227), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2368), 2, + ACTIONS(5145), 2, anon_sym_get, anon_sym_set, - STATE(3799), 3, + ACTIONS(6225), 2, + sym_number, + sym_private_property_identifier, + STATE(3043), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 19, + ACTIONS(3700), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235181,40 +233222,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114669] = 11, - ACTIONS(2344), 1, + [114543] = 9, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(6111), 1, + ACTIONS(6229), 1, anon_sym_STAR, - ACTIONS(6113), 1, - anon_sym_async, - ACTIONS(6236), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6115), 2, + ACTIONS(5620), 2, sym_number, sym_private_property_identifier, - ACTIONS(6117), 2, + ACTIONS(6231), 2, anon_sym_get, anon_sym_set, - STATE(3770), 3, + STATE(3787), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 19, + ACTIONS(2351), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -235227,33 +233266,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114726] = 11, - ACTIONS(1643), 1, + [114596] = 11, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(5086), 1, + ACTIONS(5000), 1, anon_sym_STAR, - ACTIONS(5088), 1, + ACTIONS(5002), 1, anon_sym_async, - ACTIONS(5092), 1, + ACTIONS(5006), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5090), 2, + ACTIONS(5004), 2, sym_number, sym_private_property_identifier, - ACTIONS(5094), 2, + ACTIONS(5008), 2, anon_sym_get, anon_sym_set, - STATE(3049), 3, + STATE(3147), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 19, + ACTIONS(3700), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235273,30 +233312,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114783] = 3, + [114653] = 11, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(4624), 1, + anon_sym_LBRACK, + ACTIONS(5137), 1, + anon_sym_STAR, + ACTIONS(5139), 1, + anon_sym_async, + ACTIONS(6235), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3612), 7, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5145), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(6233), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3610), 25, + STATE(3080), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3700), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -235309,42 +233358,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [114824] = 11, - ACTIONS(1643), 1, - anon_sym_DQUOTE, - ACTIONS(1645), 1, - anon_sym_SQUOTE, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(5096), 1, - anon_sym_STAR, - ACTIONS(5098), 1, - anon_sym_async, - ACTIONS(6240), 1, - anon_sym_readonly, + [114710] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5104), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6238), 2, + ACTIONS(3675), 7, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - STATE(3059), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3705), 19, + anon_sym_AT, + ACTIONS(3673), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -235357,33 +233394,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114881] = 11, - ACTIONS(1643), 1, + anon_sym_abstract, + anon_sym_accessor, + [114751] = 11, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(5033), 1, + ACTIONS(5505), 1, anon_sym_STAR, - ACTIONS(5035), 1, + ACTIONS(5511), 1, anon_sym_async, - ACTIONS(5039), 1, + ACTIONS(6237), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5037), 2, + ACTIONS(5513), 2, sym_number, sym_private_property_identifier, - ACTIONS(5041), 2, + ACTIONS(5515), 2, anon_sym_get, anon_sym_set, - STATE(3145), 3, + STATE(3098), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 19, + ACTIONS(3700), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235403,40 +233442,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114938] = 11, - ACTIONS(1643), 1, - anon_sym_DQUOTE, - ACTIONS(1645), 1, - anon_sym_SQUOTE, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(5498), 1, - anon_sym_STAR, - ACTIONS(5504), 1, - anon_sym_async, - ACTIONS(6242), 1, - anon_sym_readonly, + [114808] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5506), 2, + ACTIONS(3667), 7, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(5508), 2, - anon_sym_get, - anon_sym_set, - STATE(3078), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3705), 19, + anon_sym_AT, + ACTIONS(3665), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -235449,38 +233478,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114995] = 9, - ACTIONS(2344), 1, + anon_sym_abstract, + anon_sym_accessor, + [114849] = 11, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(6244), 1, + ACTIONS(5151), 1, anon_sym_STAR, + ACTIONS(5153), 1, + anon_sym_async, + ACTIONS(5157), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5730), 2, + ACTIONS(5155), 2, sym_number, sym_private_property_identifier, - ACTIONS(6246), 2, + ACTIONS(5159), 2, anon_sym_get, anon_sym_set, - STATE(3884), 3, + STATE(3097), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 21, + ACTIONS(3700), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -235493,40 +233526,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115048] = 11, - ACTIONS(1643), 1, - anon_sym_DQUOTE, - ACTIONS(1645), 1, - anon_sym_SQUOTE, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(5150), 1, - anon_sym_STAR, - ACTIONS(5152), 1, - anon_sym_async, - ACTIONS(6250), 1, - anon_sym_readonly, + [114906] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5158), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6248), 2, + ACTIONS(3572), 7, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - STATE(3086), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3705), 19, + anon_sym_AT, + ACTIONS(3570), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -235539,33 +233562,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115105] = 11, - ACTIONS(1643), 1, + anon_sym_abstract, + anon_sym_accessor, + [114947] = 11, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5150), 1, + ACTIONS(6096), 1, anon_sym_STAR, - ACTIONS(5152), 1, + ACTIONS(6098), 1, anon_sym_async, - ACTIONS(6254), 1, + ACTIONS(6239), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5158), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6252), 2, + ACTIONS(6100), 2, sym_number, sym_private_property_identifier, - STATE(3070), 3, + ACTIONS(6102), 2, + anon_sym_get, + anon_sym_set, + STATE(3872), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 19, + ACTIONS(2351), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235585,33 +233610,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115162] = 11, - ACTIONS(1643), 1, + [115004] = 11, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(5516), 1, - anon_sym_STAR, - ACTIONS(5522), 1, + ACTIONS(2353), 1, anon_sym_async, - ACTIONS(6256), 1, + ACTIONS(2355), 1, anon_sym_readonly, + ACTIONS(4688), 1, + anon_sym_LBRACK, + ACTIONS(4990), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5524), 2, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - ACTIONS(5526), 2, + ACTIONS(2357), 2, anon_sym_get, anon_sym_set, - STATE(3144), 3, + STATE(3816), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 19, + ACTIONS(2351), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235631,33 +233656,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115219] = 11, - ACTIONS(1643), 1, + [115061] = 11, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(5164), 1, + ACTIONS(5393), 1, anon_sym_STAR, - ACTIONS(5166), 1, + ACTIONS(5395), 1, anon_sym_async, - ACTIONS(5170), 1, + ACTIONS(6241), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5168), 2, + ACTIONS(5397), 2, sym_number, sym_private_property_identifier, - ACTIONS(5172), 2, + ACTIONS(5399), 2, anon_sym_get, anon_sym_set, - STATE(3158), 3, + STATE(3143), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 19, + ACTIONS(3700), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235677,22 +233702,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115276] = 4, + [115118] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3819), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1990), 6, + ACTIONS(3656), 7, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1988), 23, + anon_sym_AT, + ACTIONS(3654), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235716,33 +233738,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115319] = 11, - ACTIONS(2344), 1, + anon_sym_abstract, + anon_sym_accessor, + [115159] = 11, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(6089), 1, + ACTIONS(5076), 1, anon_sym_STAR, - ACTIONS(6091), 1, + ACTIONS(5078), 1, anon_sym_async, - ACTIONS(6095), 1, + ACTIONS(6245), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6093), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6097), 2, + ACTIONS(5084), 2, anon_sym_get, anon_sym_set, - STATE(3888), 3, + ACTIONS(6243), 2, + sym_number, + sym_private_property_identifier, + STATE(3070), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 19, + ACTIONS(3700), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235762,19 +233786,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115376] = 3, + [115216] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3664), 7, + ACTIONS(3814), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1975), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3662), 25, + ACTIONS(1973), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235798,81 +233825,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [115417] = 11, - ACTIONS(1643), 1, - anon_sym_DQUOTE, - ACTIONS(1645), 1, - anon_sym_SQUOTE, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(5407), 1, - anon_sym_STAR, - ACTIONS(5409), 1, - anon_sym_async, - ACTIONS(6260), 1, - anon_sym_readonly, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5413), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6258), 2, - sym_number, - sym_private_property_identifier, - STATE(3084), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3705), 19, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [115474] = 11, - ACTIONS(1643), 1, + [115259] = 11, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(4649), 1, + ACTIONS(6086), 1, anon_sym_STAR, - ACTIONS(4653), 1, + ACTIONS(6088), 1, anon_sym_async, - ACTIONS(4657), 1, + ACTIONS(6092), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4655), 2, + ACTIONS(6090), 2, sym_number, sym_private_property_identifier, - ACTIONS(4659), 2, + ACTIONS(6094), 2, anon_sym_get, anon_sym_set, - STATE(3071), 3, + STATE(3752), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 19, + ACTIONS(2351), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235892,24 +233871,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115531] = 7, - ACTIONS(2344), 1, + [115316] = 8, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, + ACTIONS(5880), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5395), 2, + ACTIONS(5668), 2, sym_number, sym_private_property_identifier, - STATE(3859), 3, + STATE(3399), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(3700), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235918,7 +233899,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -235933,24 +233913,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115579] = 7, - ACTIONS(1643), 1, + [115366] = 8, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, + ACTIONS(6249), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6262), 2, + ACTIONS(6247), 2, sym_number, sym_private_property_identifier, - STATE(3447), 3, + STATE(3460), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 23, + ACTIONS(3700), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235959,7 +233941,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -235974,24 +233955,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115627] = 7, - ACTIONS(2344), 1, + [115416] = 7, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4688), 2, + ACTIONS(6251), 2, sym_number, sym_private_property_identifier, - STATE(3904), 3, + STATE(3321), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236015,24 +233996,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115675] = 7, - ACTIONS(2344), 1, + [115464] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6115), 2, + ACTIONS(6090), 2, sym_number, sym_private_property_identifier, - STATE(3770), 3, + STATE(3752), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236056,24 +234037,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115723] = 7, - ACTIONS(2344), 1, + [115512] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6178), 2, + ACTIONS(5507), 2, sym_number, sym_private_property_identifier, - STATE(3876), 3, + STATE(3802), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236097,24 +234078,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115771] = 7, - ACTIONS(2344), 1, + [115560] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5448), 2, + ACTIONS(5346), 2, sym_number, sym_private_property_identifier, - STATE(3802), 3, + STATE(3845), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236138,24 +234119,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115819] = 7, - ACTIONS(1643), 1, + [115608] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4669), 2, + ACTIONS(5364), 2, sym_number, sym_private_property_identifier, - STATE(3336), 3, + STATE(3798), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236179,24 +234160,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115867] = 7, - ACTIONS(2344), 1, + [115656] = 7, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5454), 2, + ACTIONS(5668), 2, sym_number, sym_private_property_identifier, - STATE(3818), 3, + STATE(3399), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236220,24 +234201,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115915] = 7, - ACTIONS(2344), 1, + [115704] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5464), 2, + ACTIONS(5419), 2, sym_number, sym_private_property_identifier, - STATE(3833), 3, + STATE(3882), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236261,26 +234242,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115963] = 8, - ACTIONS(1643), 1, + [115752] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(6266), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6264), 2, + ACTIONS(5620), 2, sym_number, sym_private_property_identifier, - STATE(3394), 3, + STATE(3787), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 22, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236289,6 +234268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -236303,24 +234283,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116013] = 7, - ACTIONS(2344), 1, + [115800] = 7, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5578), 2, + ACTIONS(4674), 2, sym_number, sym_private_property_identifier, - STATE(3773), 3, + STATE(3360), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236344,24 +234324,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116061] = 7, - ACTIONS(2344), 1, + [115848] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5472), 2, + ACTIONS(5477), 2, sym_number, sym_private_property_identifier, - STATE(3755), 3, + STATE(3898), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236385,24 +234365,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116109] = 7, - ACTIONS(1643), 1, + [115896] = 7, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6268), 2, + ACTIONS(4840), 2, sym_number, sym_private_property_identifier, - STATE(3395), 3, + STATE(3368), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 23, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236426,24 +234406,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116157] = 7, - ACTIONS(2344), 1, + [115944] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6164), 2, + ACTIONS(6136), 2, sym_number, sym_private_property_identifier, - STATE(3841), 3, + STATE(3840), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236467,24 +234447,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116205] = 7, - ACTIONS(2344), 1, + [115992] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, + ACTIONS(5433), 2, sym_number, sym_private_property_identifier, - STATE(3799), 3, + STATE(3836), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236508,24 +234488,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116253] = 7, - ACTIONS(2344), 1, + [116040] = 8, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, + ACTIONS(5904), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6143), 2, + ACTIONS(4840), 2, sym_number, sym_private_property_identifier, - STATE(3851), 3, + STATE(3368), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(3700), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236534,7 +234516,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -236549,24 +234530,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116301] = 7, - ACTIONS(2344), 1, + [116090] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5385), 2, + ACTIONS(5716), 2, sym_number, sym_private_property_identifier, - STATE(3766), 3, + STATE(3843), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236590,24 +234571,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116349] = 7, - ACTIONS(2344), 1, + [116138] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5500), 2, + ACTIONS(5441), 2, sym_number, sym_private_property_identifier, - STATE(3864), 3, + STATE(3753), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236631,24 +234612,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116397] = 7, - ACTIONS(2344), 1, + [116186] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5389), 2, + ACTIONS(5292), 2, sym_number, sym_private_property_identifier, - STATE(3870), 3, + STATE(3853), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236672,26 +234653,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116445] = 8, - ACTIONS(1643), 1, + [116234] = 7, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(5888), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5716), 2, + ACTIONS(6253), 2, sym_number, sym_private_property_identifier, - STATE(3391), 3, + STATE(3442), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 22, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236700,6 +234679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -236714,24 +234694,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116495] = 7, - ACTIONS(1643), 1, + [116282] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5716), 2, + ACTIONS(4690), 2, sym_number, sym_private_property_identifier, - STATE(3391), 3, + STATE(3866), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236755,24 +234735,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116543] = 7, - ACTIONS(2344), 1, + [116330] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5304), 2, + ACTIONS(5449), 2, sym_number, sym_private_property_identifier, - STATE(3821), 3, + STATE(3828), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236796,24 +234776,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116591] = 7, - ACTIONS(2344), 1, + [116378] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5730), 2, + ACTIONS(5539), 2, sym_number, sym_private_property_identifier, - STATE(3884), 3, + STATE(3890), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236837,24 +234817,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116639] = 7, - ACTIONS(1643), 1, + [116426] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4854), 2, + ACTIONS(5330), 2, sym_number, sym_private_property_identifier, - STATE(3360), 3, + STATE(3822), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236878,24 +234858,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116687] = 7, - ACTIONS(2344), 1, + [116474] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5423), 2, + ACTIONS(6140), 2, sym_number, sym_private_property_identifier, - STATE(3823), 3, + STATE(3860), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236919,24 +234899,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116735] = 7, - ACTIONS(1643), 1, + [116522] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6270), 2, + ACTIONS(5547), 2, sym_number, sym_private_property_identifier, - STATE(3455), 3, + STATE(3851), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236960,26 +234940,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116783] = 8, - ACTIONS(1643), 1, + [116570] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(6274), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6272), 2, + ACTIONS(6100), 2, sym_number, sym_private_property_identifier, - STATE(3463), 3, + STATE(3872), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 22, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236988,6 +234966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -237002,24 +234981,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116833] = 7, - ACTIONS(1643), 1, + [116618] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6276), 2, + ACTIONS(5211), 2, sym_number, sym_private_property_identifier, - STATE(3464), 3, + STATE(3878), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237043,26 +235022,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116881] = 8, - ACTIONS(1643), 1, + [116666] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(5830), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4854), 2, + ACTIONS(6153), 2, sym_number, sym_private_property_identifier, - STATE(3360), 3, + STATE(3833), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 22, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237071,6 +235048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -237085,26 +235063,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116931] = 8, - ACTIONS(1643), 1, + [116714] = 8, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(6280), 1, + ACTIONS(6257), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6278), 2, + ACTIONS(6255), 2, sym_number, sym_private_property_identifier, - STATE(3469), 3, + STATE(3451), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 22, + ACTIONS(3700), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237127,24 +235105,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116981] = 7, - ACTIONS(2344), 1, + [116764] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6162), 2, + ACTIONS(5405), 2, sym_number, sym_private_property_identifier, - STATE(3803), 3, + STATE(3888), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237168,24 +235146,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117029] = 7, - ACTIONS(1643), 1, + [116812] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6282), 2, + ACTIONS(6148), 2, sym_number, sym_private_property_identifier, - STATE(3376), 3, + STATE(3897), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237209,24 +235187,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117077] = 7, - ACTIONS(2344), 1, + [116860] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5518), 2, + ACTIONS(6120), 2, sym_number, sym_private_property_identifier, - STATE(3791), 3, + STATE(3837), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237250,26 +235228,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117125] = 8, - ACTIONS(1643), 1, + [116908] = 8, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(6286), 1, + ACTIONS(6259), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6284), 2, + ACTIONS(5982), 2, sym_number, sym_private_property_identifier, - STATE(3431), 3, + STATE(3358), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 22, + ACTIONS(3700), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237292,24 +235270,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117175] = 7, - ACTIONS(2344), 1, + [116958] = 7, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6093), 2, + ACTIONS(5982), 2, sym_number, sym_private_property_identifier, - STATE(3888), 3, + STATE(3358), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237333,24 +235311,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117223] = 7, - ACTIONS(2344), 1, + [117006] = 7, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6160), 2, + ACTIONS(6261), 2, sym_number, sym_private_property_identifier, - STATE(3878), 3, + STATE(3452), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237374,24 +235352,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117271] = 7, - ACTIONS(2344), 1, + [117054] = 8, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, + ACTIONS(6265), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5712), 2, + ACTIONS(6263), 2, sym_number, sym_private_property_identifier, - STATE(3800), 3, + STATE(3402), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(3700), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237400,7 +235380,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -237415,24 +235394,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117319] = 7, - ACTIONS(2344), 1, + [117104] = 8, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, + ACTIONS(6269), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6149), 2, + ACTIONS(6267), 2, sym_number, sym_private_property_identifier, - STATE(3756), 3, + STATE(3422), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(3700), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237441,7 +235422,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -237456,26 +235436,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117367] = 8, - ACTIONS(1643), 1, + [117154] = 7, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(6290), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6288), 2, + ACTIONS(6271), 2, sym_number, sym_private_property_identifier, - STATE(3389), 3, + STATE(3425), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 22, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237484,6 +235462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -237498,24 +235477,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117417] = 7, - ACTIONS(2344), 1, + [117202] = 8, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, + ACTIONS(6275), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5369), 2, + ACTIONS(6273), 2, sym_number, sym_private_property_identifier, - STATE(3866), 3, + STATE(3461), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(3700), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237524,7 +235505,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -237539,24 +235519,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117465] = 7, - ACTIONS(2344), 1, + [117252] = 7, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5363), 2, + ACTIONS(6277), 2, sym_number, sym_private_property_identifier, - STATE(3794), 3, + STATE(3350), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237580,24 +235560,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117513] = 7, - ACTIONS(2344), 1, + [117300] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5444), 2, + ACTIONS(6144), 2, sym_number, sym_private_property_identifier, - STATE(3900), 3, + STATE(3880), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237621,24 +235601,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117561] = 7, - ACTIONS(2344), 1, + [117348] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5556), 2, + ACTIONS(5411), 2, sym_number, sym_private_property_identifier, - STATE(3771), 3, + STATE(3874), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237662,24 +235642,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117609] = 7, - ACTIONS(1643), 1, + [117396] = 8, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, + ACTIONS(6281), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6292), 2, + ACTIONS(6279), 2, sym_number, sym_private_property_identifier, - STATE(3470), 3, + STATE(3392), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 23, + ACTIONS(3700), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237688,7 +235670,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -237703,24 +235684,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117657] = 7, - ACTIONS(2344), 1, + [117446] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5415), 2, + ACTIONS(5376), 2, sym_number, sym_private_property_identifier, - STATE(3838), 3, + STATE(3781), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237744,24 +235725,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117705] = 7, - ACTIONS(2344), 1, + [117494] = 7, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5240), 2, + ACTIONS(6283), 2, sym_number, sym_private_property_identifier, - STATE(3760), 3, + STATE(3394), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237785,24 +235766,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117753] = 7, - ACTIONS(2344), 1, + [117542] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5375), 2, + ACTIONS(5300), 2, sym_number, sym_private_property_identifier, - STATE(3761), 3, + STATE(3780), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237826,24 +235807,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117801] = 7, - ACTIONS(2344), 1, + [117590] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6176), 2, + ACTIONS(2337), 2, sym_number, sym_private_property_identifier, - STATE(3763), 3, + STATE(3816), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237867,26 +235848,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117849] = 8, - ACTIONS(1643), 1, + [117638] = 8, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(6296), 1, + ACTIONS(6287), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6294), 2, + ACTIONS(6285), 2, sym_number, sym_private_property_identifier, - STATE(3466), 3, + STATE(3423), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 22, + ACTIONS(3700), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237909,26 +235890,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117899] = 8, - ACTIONS(1643), 1, + [117688] = 7, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(6298), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5995), 2, + ACTIONS(6289), 2, sym_number, sym_private_property_identifier, - STATE(3358), 3, + STATE(3426), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 22, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237937,6 +235916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -237951,24 +235931,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117949] = 7, - ACTIONS(1643), 1, + [117736] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5995), 2, + ACTIONS(6146), 2, sym_number, sym_private_property_identifier, - STATE(3358), 3, + STATE(3841), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237992,26 +235972,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117997] = 8, - ACTIONS(1643), 1, + [117784] = 8, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(6302), 1, + ACTIONS(6293), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6300), 2, + ACTIONS(6291), 2, sym_number, sym_private_property_identifier, - STATE(3375), 3, + STATE(3391), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 22, + ACTIONS(3700), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -238034,24 +236014,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118047] = 7, - ACTIONS(1643), 1, + [117834] = 7, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6304), 2, + ACTIONS(6295), 2, sym_number, sym_private_property_identifier, - STATE(3378), 3, + STATE(3393), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 23, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -238075,24 +236055,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118095] = 7, - ACTIONS(2344), 1, + [117882] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4686), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6155), 2, + ACTIONS(5427), 2, sym_number, sym_private_property_identifier, - STATE(3875), 3, + STATE(3804), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -238116,26 +236096,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118143] = 8, - ACTIONS(1643), 1, + [117930] = 8, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(6308), 1, + ACTIONS(6299), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6306), 2, + ACTIONS(6297), 2, sym_number, sym_private_property_identifier, - STATE(3350), 3, + STATE(3405), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 22, + ACTIONS(3700), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -238158,26 +236138,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118193] = 8, - ACTIONS(1643), 1, + [117980] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(6312), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6310), 2, + ACTIONS(5279), 2, sym_number, sym_private_property_identifier, - STATE(3398), 3, + STATE(3863), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 22, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -238186,6 +236164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -238200,24 +236179,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118243] = 7, - ACTIONS(1643), 1, + [118028] = 8, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, + ACTIONS(6303), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6314), 2, + ACTIONS(6301), 2, sym_number, sym_private_property_identifier, - STATE(3400), 3, + STATE(3323), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 23, + ACTIONS(3700), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -238226,7 +236207,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -238241,24 +236221,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118291] = 7, - ACTIONS(1643), 1, + [118078] = 7, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6316), 2, + ACTIONS(6305), 2, sym_number, sym_private_property_identifier, - STATE(3351), 3, + STATE(3324), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 23, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -238282,26 +236262,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118339] = 8, - ACTIONS(1643), 1, + [118126] = 8, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, - ACTIONS(6320), 1, + ACTIONS(6309), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6318), 2, + ACTIONS(6307), 2, sym_number, sym_private_property_identifier, - STATE(3410), 3, + STATE(3333), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 22, + ACTIONS(3700), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -238324,24 +236304,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118389] = 7, - ACTIONS(1643), 1, + [118176] = 7, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4624), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6322), 2, + ACTIONS(6311), 2, sym_number, sym_private_property_identifier, - STATE(3411), 3, + STATE(3408), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 23, + ACTIONS(3700), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -238365,26 +236345,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118437] = 8, - ACTIONS(1643), 1, + [118224] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4688), 1, anon_sym_LBRACK, - ACTIONS(6326), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6324), 2, + ACTIONS(6142), 2, sym_number, sym_private_property_identifier, - STATE(3363), 3, + STATE(3846), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 22, + ACTIONS(2351), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -238393,6 +236371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -238407,15 +236386,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118487] = 4, - ACTIONS(6328), 1, + [118272] = 4, + ACTIONS(6313), 1, sym_identifier, - STATE(5637), 1, + STATE(5613), 1, sym_mapped_type_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6330), 22, + ACTIONS(6315), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -238438,58 +236417,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118522] = 9, - ACTIONS(3535), 1, + [118307] = 9, + ACTIONS(3514), 1, anon_sym_LPAREN, - ACTIONS(6063), 1, + ACTIONS(3576), 1, anon_sym_LT, - ACTIONS(6332), 1, - anon_sym_DOT, - ACTIONS(6334), 1, - anon_sym_QMARK_DOT, - STATE(2927), 1, - sym_arguments, - STATE(3033), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4057), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4059), 12, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_extends, - [118563] = 9, - ACTIONS(3535), 1, - anon_sym_LPAREN, - ACTIONS(3537), 1, + ACTIONS(6317), 1, anon_sym_DOT, - ACTIONS(3539), 1, + ACTIONS(6319), 1, anon_sym_QMARK_DOT, - ACTIONS(6063), 1, - anon_sym_LT, - STATE(2936), 1, + STATE(2918), 1, sym_arguments, - STATE(3032), 1, + STATE(2975), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3527), 2, + ACTIONS(4068), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3517), 12, + ACTIONS(4070), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -238502,371 +236449,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT, anon_sym_extends, - [118604] = 9, - ACTIONS(3535), 1, + [118348] = 9, + ACTIONS(3514), 1, anon_sym_LPAREN, - ACTIONS(6063), 1, + ACTIONS(3576), 1, anon_sym_LT, - ACTIONS(6336), 1, + ACTIONS(6321), 1, anon_sym_DOT, - ACTIONS(6338), 1, + ACTIONS(6323), 1, anon_sym_QMARK_DOT, - STATE(2922), 1, + STATE(2920), 1, sym_arguments, - STATE(3034), 1, + STATE(2973), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4071), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4073), 12, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_extends, - [118645] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4416), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4418), 17, - 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_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_extends, - [118673] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4420), 2, + ACTIONS(4060), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4422), 17, - anon_sym_as, + ACTIONS(4062), 12, 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_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, anon_sym_GT, anon_sym_extends, - [118701] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4139), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4141), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [118389] = 9, + ACTIONS(3514), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(3516), 1, anon_sym_DOT, - anon_sym_EQ_GT, + ACTIONS(3520), 1, anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3576), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_extends, - [118729] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4135), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4137), 17, - 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_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_extends, - [118757] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4139), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4141), 17, - 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_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_extends, - [118785] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4135), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4137), 17, - 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_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_extends, - [118813] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4151), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4153), 17, - 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_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_extends, - [118841] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4169), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4171), 17, - 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_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_extends, - [118869] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4151), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4153), 17, - 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_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_extends, - [118897] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4169), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4171), 17, - 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_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_extends, - [118925] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4253), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4255), 17, - 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_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_extends, - [118953] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4308), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4310), 17, - 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_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_extends, - [118981] = 3, + STATE(2917), 1, + sym_arguments, + STATE(3015), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4253), 2, + ACTIONS(3522), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4255), 17, - anon_sym_as, + ACTIONS(3512), 12, 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_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, anon_sym_GT, anon_sym_extends, - [119009] = 3, + [118430] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4253), 2, + ACTIONS(4380), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4255), 17, + ACTIONS(4382), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238884,14 +236538,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_extends, - [119037] = 3, + [118458] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4300), 2, + ACTIONS(4284), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4302), 17, + ACTIONS(4286), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238909,14 +236563,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_extends, - [119065] = 3, + [118486] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4300), 2, + ACTIONS(4284), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4302), 17, + ACTIONS(4286), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238934,7 +236588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_extends, - [119093] = 3, + [118514] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -238959,114 +236613,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_extends, - [119121] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4292), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4294), 17, - 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_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_extends, - [119149] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4296), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4298), 17, - 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_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_extends, - [119177] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4300), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4302), 17, - 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_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_extends, - [119205] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4237), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4239), 17, - 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_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_extends, - [119233] = 3, + [118542] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4241), 2, + ACTIONS(4246), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4243), 17, + ACTIONS(4248), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239084,14 +236638,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_extends, - [119261] = 3, + [118570] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4241), 2, + ACTIONS(4242), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4243), 17, + ACTIONS(4244), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239109,14 +236663,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_extends, - [119289] = 3, + [118598] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4241), 2, + ACTIONS(4246), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4243), 17, + ACTIONS(4248), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239134,14 +236688,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_extends, - [119317] = 3, + [118626] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4249), 2, + ACTIONS(4246), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4251), 17, + ACTIONS(4248), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239159,14 +236713,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_extends, - [119345] = 3, + [118654] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4296), 2, + ACTIONS(4242), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4298), 17, + ACTIONS(4244), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239184,14 +236738,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_extends, - [119373] = 3, + [118682] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4249), 2, + ACTIONS(4276), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4251), 17, + ACTIONS(4278), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239209,14 +236763,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_extends, - [119401] = 3, + [118710] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4308), 2, + ACTIONS(4158), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4310), 17, + ACTIONS(4160), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239234,89 +236788,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_extends, - [119429] = 3, + [118738] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4396), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4398), 17, - 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_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_extends, - [119457] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4296), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4298), 17, - 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_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_extends, - [119485] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4412), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4414), 17, - 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_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_extends, - [119513] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4416), 2, + ACTIONS(4312), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4418), 17, + ACTIONS(4314), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239334,14 +236813,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_extends, - [119541] = 3, + [118766] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4420), 2, + ACTIONS(4280), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4422), 17, + ACTIONS(4282), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239359,14 +236838,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_extends, - [119569] = 3, + [118794] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4249), 2, + ACTIONS(4122), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4251), 17, + ACTIONS(4124), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239384,61 +236863,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_extends, - [119597] = 3, - ACTIONS(1749), 1, - anon_sym_PIPE, + [118822] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1747), 17, - sym__automatic_semicolon, + ACTIONS(4280), 2, anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4282), 17, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_with, - anon_sym_assert, - anon_sym_BANG, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, - anon_sym_QMARK, + anon_sym_GT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119624] = 3, - ACTIONS(1745), 1, - anon_sym_PIPE, + [118850] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1743), 17, - sym__automatic_semicolon, + ACTIONS(4308), 2, anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4310), 17, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_with, - anon_sym_assert, - anon_sym_BANG, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, - anon_sym_QMARK, + anon_sym_GT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119651] = 3, - ACTIONS(4332), 1, - anon_sym_EQ, + [118878] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4334), 16, + ACTIONS(4122), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4124), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239450,42 +236932,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_DOT, anon_sym_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, anon_sym_extends, - [119677] = 4, - ACTIONS(1891), 1, - anon_sym_DOT, - ACTIONS(4285), 1, - anon_sym_EQ, + [118906] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4287), 15, + ACTIONS(4132), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4134), 17, 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_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, anon_sym_extends, - [119705] = 3, - ACTIONS(3691), 1, - anon_sym_EQ, + [118934] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3491), 16, + ACTIONS(4136), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4138), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239497,23 +236982,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_DOT, anon_sym_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, anon_sym_extends, - [119731] = 3, + [118962] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4245), 2, + ACTIONS(4284), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4247), 15, + ACTIONS(4286), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, @@ -239523,15 +237010,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, anon_sym_GT, anon_sym_extends, - [119757] = 3, - ACTIONS(4328), 1, - anon_sym_EQ, + [118990] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4330), 16, + ACTIONS(4132), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4134), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239543,98 +237032,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_DOT, anon_sym_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, anon_sym_extends, - [119783] = 4, - ACTIONS(1887), 1, - anon_sym_DOT, - ACTIONS(4285), 1, - anon_sym_EQ, + [119018] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4287), 15, + ACTIONS(4136), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4138), 17, 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_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, anon_sym_extends, - [119811] = 5, - ACTIONS(6340), 1, - anon_sym_DOT, - ACTIONS(6342), 1, - anon_sym_QMARK_DOT, + [119046] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4384), 2, + ACTIONS(4162), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4386), 13, + ACTIONS(4164), 17, 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_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, anon_sym_GT, anon_sym_extends, - [119841] = 6, - ACTIONS(4077), 1, - anon_sym_EQ, - ACTIONS(6063), 1, - anon_sym_LT, - ACTIONS(6344), 1, - anon_sym_DOT, - STATE(3035), 1, - sym_type_arguments, + [119074] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3567), 13, + ACTIONS(4234), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4236), 17, + 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_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, anon_sym_extends, - [119873] = 3, + [119102] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4312), 2, + ACTIONS(4238), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4314), 15, + ACTIONS(4240), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, @@ -239644,42 +237135,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, anon_sym_GT, anon_sym_extends, - [119899] = 7, - ACTIONS(4077), 1, - anon_sym_EQ, - ACTIONS(6063), 1, - anon_sym_LT, - ACTIONS(6344), 1, - anon_sym_DOT, - ACTIONS(6346), 1, - anon_sym_is, - STATE(3035), 1, - sym_type_arguments, + [119130] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3567), 12, + ACTIONS(4238), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4240), 17, + 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_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, anon_sym_GT, anon_sym_extends, - [119933] = 3, - ACTIONS(3703), 1, - anon_sym_EQ, + [119158] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3493), 16, + ACTIONS(4166), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4168), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239691,18 +237182,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_DOT, anon_sym_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, anon_sym_extends, - [119959] = 3, - ACTIONS(4340), 1, - anon_sym_EQ, + [119186] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4342), 16, + ACTIONS(4238), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4240), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239714,78 +237207,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_DOT, anon_sym_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, anon_sym_extends, - [119985] = 15, - ACTIONS(1643), 1, - anon_sym_DQUOTE, - ACTIONS(1645), 1, - anon_sym_SQUOTE, - ACTIONS(6348), 1, - sym_identifier, - ACTIONS(6350), 1, - anon_sym_STAR, - ACTIONS(6352), 1, - anon_sym_type, - ACTIONS(6354), 1, - anon_sym_LBRACE, - ACTIONS(6356), 1, - anon_sym_typeof, - ACTIONS(6360), 1, - anon_sym_DOT, - STATE(4136), 1, - sym_string, - STATE(4145), 1, - sym_import_require_clause, - STATE(5187), 1, - sym_import_clause, - STATE(5313), 1, - sym__import_identifier, + [119214] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5782), 2, - sym_namespace_import, - sym_named_imports, - ACTIONS(6358), 3, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_LT, - [120035] = 5, - ACTIONS(3537), 1, - anon_sym_DOT, - ACTIONS(3539), 1, - anon_sym_QMARK_DOT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3527), 2, + ACTIONS(4162), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3517), 13, + ACTIONS(4164), 17, 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_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, anon_sym_GT, anon_sym_extends, - [120065] = 3, - ACTIONS(4336), 1, - anon_sym_EQ, + [119242] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4338), 16, + ACTIONS(4166), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4168), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239797,81 +237257,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_DOT, anon_sym_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, anon_sym_extends, - [120091] = 9, - ACTIONS(3519), 1, - anon_sym_LPAREN, - ACTIONS(3521), 1, - anon_sym_DOT, - ACTIONS(3525), 1, - anon_sym_QMARK_DOT, - ACTIONS(3527), 1, - anon_sym_PIPE, - ACTIONS(6362), 1, - anon_sym_LT, - STATE(3146), 1, - sym_arguments, - STATE(3270), 1, - sym_type_arguments, + [119270] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3517), 10, - sym__automatic_semicolon, + ACTIONS(4242), 2, anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4244), 17, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [120129] = 9, - ACTIONS(3519), 1, anon_sym_LPAREN, - ACTIONS(4057), 1, - anon_sym_PIPE, - ACTIONS(6362), 1, - anon_sym_LT, - ACTIONS(6364), 1, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(6366), 1, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, - STATE(3147), 1, - sym_arguments, - STATE(3287), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4059), 10, - 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, + anon_sym_LT, + anon_sym_GT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [120167] = 3, + [119298] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4133), 2, + ACTIONS(4308), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4131), 15, + ACTIONS(4310), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, @@ -239881,140 +237310,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, anon_sym_GT, anon_sym_extends, - [120193] = 9, - ACTIONS(3519), 1, - anon_sym_LPAREN, - ACTIONS(4071), 1, - anon_sym_PIPE, - ACTIONS(6362), 1, - anon_sym_LT, - ACTIONS(6368), 1, - anon_sym_DOT, - ACTIONS(6370), 1, - anon_sym_QMARK_DOT, - STATE(3151), 1, - sym_arguments, - STATE(3232), 1, - sym_type_arguments, + [119326] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4073), 10, - sym__automatic_semicolon, + ACTIONS(4280), 2, anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4282), 17, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [120231] = 6, - ACTIONS(3535), 1, anon_sym_LPAREN, - ACTIONS(4117), 1, - anon_sym_EQ, - ACTIONS(6372), 1, - anon_sym_DOT, - STATE(2942), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4119), 12, - 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_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, anon_sym_GT, anon_sym_extends, - [120262] = 4, - ACTIONS(4261), 1, - anon_sym_EQ, - ACTIONS(6374), 1, - anon_sym_DOT, + [119354] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4263), 14, + ACTIONS(4380), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4382), 17, 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_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, anon_sym_extends, - [120289] = 3, - ACTIONS(4113), 1, - anon_sym_EQ, + [119382] = 3, + ACTIONS(1728), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4115), 15, - anon_sym_as, + ACTIONS(1726), 17, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_with, + anon_sym_assert, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, + anon_sym_LT, anon_sym_QMARK, anon_sym_extends, - anon_sym_is, - [120314] = 3, - ACTIONS(4215), 1, - anon_sym_EQ, + anon_sym_PIPE_RBRACE, + [119409] = 3, + ACTIONS(1756), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4213), 15, - anon_sym_as, + ACTIONS(1754), 17, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_with, + anon_sym_assert, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, + anon_sym_LT, anon_sym_QMARK, anon_sym_extends, - [120339] = 3, - ACTIONS(4275), 1, + anon_sym_PIPE_RBRACE, + [119436] = 3, + ACTIONS(4418), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4277), 15, + ACTIONS(4420), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, @@ -240026,13 +237434,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [120364] = 3, - ACTIONS(1767), 1, - anon_sym_EQ, + [119462] = 5, + ACTIONS(3516), 1, + anon_sym_DOT, + ACTIONS(3520), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1765), 15, + ACTIONS(3522), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(3512), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -240045,20 +237458,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_GT, - anon_sym_QMARK, anon_sym_extends, - anon_sym_is, - [120389] = 5, - ACTIONS(4085), 1, - anon_sym_EQ, - ACTIONS(6063), 1, - anon_sym_LT, - STATE(3038), 1, - sym_type_arguments, + [119492] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4087), 13, + ACTIONS(4320), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4322), 15, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -240066,62 +237475,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_GT, - anon_sym_QMARK, anon_sym_extends, - [120418] = 4, - ACTIONS(4233), 1, - anon_sym_EQ, - ACTIONS(6376), 1, - anon_sym_LBRACK, + [119518] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4235), 13, + ACTIONS(4328), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4330), 15, 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_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_GT, - anon_sym_QMARK, anon_sym_extends, - [120444] = 3, - ACTIONS(4123), 1, + [119544] = 3, + ACTIONS(4426), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4125), 14, + ACTIONS(4428), 16, 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_EQ_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [120468] = 3, - ACTIONS(4267), 1, - anon_sym_EQ, + [119570] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4269), 14, + ACTIONS(4346), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4348), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -240130,43 +237544,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_GT, - anon_sym_QMARK, anon_sym_extends, - [120492] = 5, - ACTIONS(4193), 1, - anon_sym_EQ, - ACTIONS(6376), 1, - anon_sym_LBRACK, + [119596] = 15, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(6325), 1, + sym_identifier, + ACTIONS(6327), 1, + anon_sym_STAR, + ACTIONS(6329), 1, + anon_sym_type, + ACTIONS(6331), 1, + anon_sym_LBRACE, + ACTIONS(6333), 1, + anon_sym_typeof, + ACTIONS(6337), 1, + anon_sym_DOT, + STATE(4113), 1, + sym_string, + STATE(4131), 1, + sym_import_require_clause, + STATE(5136), 1, + sym__import_identifier, + STATE(5258), 1, + sym_import_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4201), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - ACTIONS(4195), 10, + STATE(5844), 2, + sym_namespace_import, + sym_named_imports, + ACTIONS(6335), 3, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_LT, + [119646] = 5, + ACTIONS(6339), 1, + anon_sym_DOT, + ACTIONS(6341), 1, + anon_sym_QMARK_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4224), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4226), 13, 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_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_GT, - anon_sym_QMARK, - [120520] = 3, - ACTIONS(4376), 1, + anon_sym_extends, + [119676] = 6, + ACTIONS(3576), 1, + anon_sym_LT, + ACTIONS(4054), 1, anon_sym_EQ, + ACTIONS(6343), 1, + anon_sym_DOT, + STATE(2964), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4378), 14, - anon_sym_as, + ACTIONS(3548), 13, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -240180,13 +237637,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [120544] = 3, - ACTIONS(4091), 1, + [119708] = 4, + ACTIONS(1888), 1, + anon_sym_DOT, + ACTIONS(4384), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4093), 14, + ACTIONS(4386), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -240198,100 +237657,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [120568] = 3, - ACTIONS(4372), 1, - anon_sym_EQ, + [119736] = 9, + ACTIONS(3522), 1, + anon_sym_PIPE, + ACTIONS(3528), 1, + anon_sym_LPAREN, + ACTIONS(3530), 1, + anon_sym_DOT, + ACTIONS(3532), 1, + anon_sym_QMARK_DOT, + ACTIONS(6345), 1, + anon_sym_LT, + STATE(3086), 1, + sym_arguments, + STATE(3215), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4374), 14, - anon_sym_as, + ACTIONS(3512), 10, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_QMARK, anon_sym_extends, - [120592] = 3, - ACTIONS(4380), 1, + anon_sym_PIPE_RBRACE, + [119774] = 3, + ACTIONS(3691), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4382), 14, + ACTIONS(3474), 16, 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_EQ_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [120616] = 3, - ACTIONS(4408), 1, + [119800] = 3, + ACTIONS(3679), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4410), 14, + ACTIONS(3478), 16, 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_EQ_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [120640] = 3, - ACTIONS(4304), 1, + [119826] = 3, + ACTIONS(4414), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4306), 14, + ACTIONS(4416), 16, 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_EQ_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [120664] = 3, - ACTIONS(4344), 1, + [119852] = 4, + ACTIONS(1892), 1, + anon_sym_DOT, + ACTIONS(4384), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4346), 14, + ACTIONS(4386), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -240303,80 +237779,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [120688] = 3, - ACTIONS(4396), 1, - anon_sym_PIPE, + [119880] = 3, + ACTIONS(4422), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4398), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4424), 16, + 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_EQ_GT, anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [120712] = 3, - ACTIONS(4412), 1, anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4414), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_extends, + [119906] = 9, + ACTIONS(3528), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(4068), 1, + anon_sym_PIPE, + ACTIONS(6345), 1, + anon_sym_LT, + ACTIONS(6347), 1, anon_sym_DOT, + ACTIONS(6349), 1, anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [120736] = 3, - ACTIONS(4416), 1, - anon_sym_PIPE, + STATE(3089), 1, + sym_arguments, + STATE(3255), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4418), 14, + ACTIONS(4070), 10, sym__automatic_semicolon, anon_sym_EQ, 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, - anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [120760] = 3, - ACTIONS(4364), 1, + [119944] = 7, + ACTIONS(3576), 1, + anon_sym_LT, + ACTIONS(4054), 1, anon_sym_EQ, + ACTIONS(6343), 1, + anon_sym_DOT, + ACTIONS(6351), 1, + anon_sym_is, + STATE(2964), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4366), 14, - anon_sym_as, + ACTIONS(3548), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -240388,36 +237861,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_GT, - anon_sym_QMARK, anon_sym_extends, - [120784] = 3, - ACTIONS(4420), 1, + [119978] = 9, + ACTIONS(3528), 1, + anon_sym_LPAREN, + ACTIONS(4060), 1, anon_sym_PIPE, + ACTIONS(6345), 1, + anon_sym_LT, + ACTIONS(6353), 1, + anon_sym_DOT, + ACTIONS(6355), 1, + anon_sym_QMARK_DOT, + STATE(3090), 1, + sym_arguments, + STATE(3257), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4422), 14, + ACTIONS(4062), 10, sym__automatic_semicolon, anon_sym_EQ, 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, - anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [120808] = 3, - ACTIONS(4199), 1, + [120016] = 3, + ACTIONS(4178), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4201), 14, + ACTIONS(4180), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -240426,40 +237906,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [120832] = 3, - ACTIONS(4416), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4418), 14, - sym__automatic_semicolon, - anon_sym_EQ, - 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, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [120856] = 3, - ACTIONS(4109), 1, + [120041] = 3, + ACTIONS(1900), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4111), 14, + ACTIONS(1898), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -240474,168 +237934,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [120880] = 3, - ACTIONS(4420), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4422), 14, - sym__automatic_semicolon, + anon_sym_is, + [120066] = 3, + ACTIONS(4118), 1, anon_sym_EQ, - 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, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [120904] = 3, - ACTIONS(4139), 1, - anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4141), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4120), 15, + 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_EQ_GT, anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [120928] = 3, - ACTIONS(4135), 1, anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4137), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_extends, + [120091] = 6, + ACTIONS(3514), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(4078), 1, + anon_sym_EQ, + ACTIONS(6357), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [120952] = 3, - ACTIONS(4139), 1, - anon_sym_PIPE, + STATE(2934), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4141), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4080), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [120976] = 3, - ACTIONS(4135), 1, anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4137), 14, - sym__automatic_semicolon, + anon_sym_GT, + anon_sym_extends, + [120122] = 4, + ACTIONS(4250), 1, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(6359), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [121000] = 3, - ACTIONS(4151), 1, - anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4153), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4252), 14, + 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_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [121024] = 3, - ACTIONS(4169), 1, anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_extends, + [120149] = 5, + ACTIONS(3576), 1, + anon_sym_LT, + ACTIONS(4108), 1, + anon_sym_EQ, + STATE(3030), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4171), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4110), 13, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [121048] = 4, - ACTIONS(4199), 1, + [120178] = 3, + ACTIONS(4084), 1, anon_sym_EQ, - ACTIONS(6376), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4201), 13, + ACTIONS(4086), 15, 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_EQ_GT, anon_sym_AMP, @@ -240643,13 +238050,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [121074] = 3, - ACTIONS(4151), 1, + anon_sym_is, + [120203] = 3, + ACTIONS(4284), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4153), 14, + ACTIONS(4286), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -240664,13 +238072,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121098] = 3, - ACTIONS(4169), 1, + [120227] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(6363), 1, + sym_number, + ACTIONS(6365), 1, + anon_sym_unique, + STATE(5699), 1, + sym_string, + STATE(5715), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6361), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [120261] = 3, + ACTIONS(4238), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4171), 14, + ACTIONS(4240), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -240685,48 +238119,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121122] = 7, - ACTIONS(1557), 1, - anon_sym_DQUOTE, - ACTIONS(1559), 1, - anon_sym_SQUOTE, - ACTIONS(6380), 1, - sym_number, - ACTIONS(6382), 1, - anon_sym_unique, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5747), 2, - sym_string, - sym_predefined_type, - ACTIONS(6378), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [121154] = 8, - ACTIONS(1557), 1, + [120285] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1559), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(6382), 1, + ACTIONS(6365), 1, anon_sym_unique, - ACTIONS(6384), 1, + ACTIONS(6367), 1, sym_number, - STATE(5752), 1, + STATE(5717), 1, sym_string, - STATE(5757), 1, + STATE(5719), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6378), 9, + ACTIONS(6361), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -240736,23 +238145,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [121188] = 8, - ACTIONS(1557), 1, + [120319] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1559), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(6382), 1, + ACTIONS(6365), 1, anon_sym_unique, - ACTIONS(6386), 1, + ACTIONS(6369), 1, sym_number, - STATE(5772), 1, + STATE(5721), 1, sym_string, - STATE(5773), 1, + STATE(5728), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6378), 9, + ACTIONS(6361), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -240762,23 +238171,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [121222] = 8, - ACTIONS(1557), 1, + [120353] = 3, + ACTIONS(4242), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4244), 14, + sym__automatic_semicolon, + anon_sym_EQ, + 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, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [120377] = 3, + ACTIONS(4196), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4198), 14, + 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_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_extends, + [120401] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1559), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(6382), 1, + ACTIONS(6365), 1, anon_sym_unique, - ACTIONS(6388), 1, + ACTIONS(6371), 1, sym_number, - STATE(5775), 1, - sym_string, - STATE(5786), 1, - sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6378), 9, + STATE(5510), 2, + sym_string, + sym_predefined_type, + ACTIONS(6361), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -240788,48 +238238,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [121256] = 7, - ACTIONS(4077), 1, + [120433] = 5, + ACTIONS(4450), 1, + anon_sym_EQ, + ACTIONS(6373), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4172), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + ACTIONS(4452), 10, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_GT, + anon_sym_QMARK, + [120461] = 3, + ACTIONS(4380), 1, anon_sym_PIPE, - ACTIONS(6362), 1, - anon_sym_LT, - ACTIONS(6390), 1, - anon_sym_DOT, - ACTIONS(6392), 1, - anon_sym_is, - STATE(3225), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3567), 10, + ACTIONS(4382), 14, sym__automatic_semicolon, anon_sym_EQ, 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, + anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121288] = 8, - ACTIONS(6394), 1, + [120485] = 8, + ACTIONS(6375), 1, anon_sym_LPAREN, - ACTIONS(6396), 1, + ACTIONS(6377), 1, anon_sym_DOT, - ACTIONS(6398), 1, + ACTIONS(6379), 1, anon_sym_QMARK_DOT, - ACTIONS(6400), 1, + ACTIONS(6381), 1, anon_sym_LT, - STATE(3249), 1, + STATE(3226), 1, sym_arguments, - STATE(3339), 1, + STATE(3457), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3517), 9, + ACTIONS(4062), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -240839,188 +238308,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [121322] = 8, - ACTIONS(6394), 1, - anon_sym_LPAREN, - ACTIONS(6400), 1, - anon_sym_LT, - ACTIONS(6402), 1, - anon_sym_DOT, - ACTIONS(6404), 1, - anon_sym_QMARK_DOT, - STATE(3292), 1, - sym_arguments, - STATE(3343), 1, - sym_type_arguments, + [120519] = 3, + ACTIONS(4122), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4059), 9, + ACTIONS(4124), 14, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [121356] = 8, - ACTIONS(6394), 1, - anon_sym_LPAREN, - ACTIONS(6400), 1, - anon_sym_LT, - ACTIONS(6406), 1, anon_sym_DOT, - ACTIONS(6408), 1, anon_sym_QMARK_DOT, - STATE(3239), 1, - sym_arguments, - STATE(3347), 1, - sym_type_arguments, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [120543] = 3, + ACTIONS(4132), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4073), 9, + ACTIONS(4134), 14, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [121390] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6410), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [121412] = 7, - ACTIONS(1557), 1, - anon_sym_DQUOTE, - ACTIONS(1559), 1, - anon_sym_SQUOTE, - ACTIONS(6382), 1, - anon_sym_unique, - ACTIONS(6412), 1, - sym_number, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5795), 2, - sym_string, - sym_predefined_type, - ACTIONS(6378), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [121444] = 8, - ACTIONS(1557), 1, - anon_sym_DQUOTE, - ACTIONS(1559), 1, - anon_sym_SQUOTE, - ACTIONS(6382), 1, - anon_sym_unique, - ACTIONS(6414), 1, - sym_number, - STATE(5806), 1, - sym_string, - STATE(5807), 1, - sym_predefined_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6378), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [121478] = 8, - ACTIONS(1557), 1, - anon_sym_DQUOTE, - ACTIONS(1559), 1, - anon_sym_SQUOTE, - ACTIONS(6382), 1, - anon_sym_unique, - ACTIONS(6416), 1, - sym_number, - STATE(5818), 1, - sym_string, - STATE(5822), 1, - sym_predefined_type, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [120567] = 3, + ACTIONS(4136), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6378), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [121512] = 8, - ACTIONS(1557), 1, - anon_sym_DQUOTE, - ACTIONS(1559), 1, - anon_sym_SQUOTE, - ACTIONS(6382), 1, - anon_sym_unique, - ACTIONS(6418), 1, - sym_number, - STATE(5829), 1, - sym_string, - STATE(5831), 1, - sym_predefined_type, + ACTIONS(4138), 14, + sym__automatic_semicolon, + anon_sym_EQ, + 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, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [120591] = 3, + ACTIONS(4260), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6378), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [121546] = 3, - ACTIONS(4085), 1, + ACTIONS(4262), 14, + 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_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_extends, + [120615] = 3, + ACTIONS(4276), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4278), 14, + sym__automatic_semicolon, + anon_sym_EQ, + 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, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [120639] = 3, + ACTIONS(4186), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4087), 14, + ACTIONS(4188), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -241035,13 +238434,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [121570] = 3, - ACTIONS(4237), 1, + [120663] = 3, + ACTIONS(4280), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 14, + ACTIONS(4282), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -241056,13 +238455,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121594] = 3, - ACTIONS(4241), 1, + [120687] = 3, + ACTIONS(4280), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4243), 14, + ACTIONS(4282), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -241077,13 +238476,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121618] = 3, - ACTIONS(4241), 1, + [120711] = 3, + ACTIONS(4312), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4243), 14, + ACTIONS(4314), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -241098,13 +238497,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121642] = 3, - ACTIONS(4241), 1, + [120735] = 3, + ACTIONS(4280), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4243), 14, + ACTIONS(4282), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -241119,13 +238518,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121666] = 3, - ACTIONS(4249), 1, + [120759] = 3, + ACTIONS(4316), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4318), 14, + 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_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_extends, + [120783] = 3, + ACTIONS(4284), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4251), 14, + ACTIONS(4286), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -241140,33 +238560,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121690] = 2, + [120807] = 3, + ACTIONS(4391), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6420), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [121712] = 3, - ACTIONS(4249), 1, + ACTIONS(4393), 14, + 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_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_extends, + [120831] = 3, + ACTIONS(4284), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4251), 14, + ACTIONS(4286), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -241181,13 +238602,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121736] = 3, - ACTIONS(4249), 1, + [120855] = 3, + ACTIONS(4308), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4310), 14, + sym__automatic_semicolon, + anon_sym_EQ, + 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, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [120879] = 3, + ACTIONS(4308), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4251), 14, + ACTIONS(4310), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -241202,13 +238644,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121760] = 3, - ACTIONS(4253), 1, + [120903] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(6365), 1, + anon_sym_unique, + ACTIONS(6383), 1, + sym_number, + STATE(5540), 1, + sym_string, + STATE(5756), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6361), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [120937] = 3, + ACTIONS(4308), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4255), 14, + ACTIONS(4310), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -241223,13 +238691,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121784] = 3, - ACTIONS(4257), 1, + [120961] = 3, + ACTIONS(4368), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4370), 14, + 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_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_extends, + [120985] = 4, + ACTIONS(4212), 1, + anon_sym_EQ, + ACTIONS(6373), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4214), 13, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_extends, + [121011] = 3, + ACTIONS(4264), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4259), 14, + ACTIONS(4266), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -241244,13 +238755,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [121808] = 3, - ACTIONS(4404), 1, + [121035] = 3, + ACTIONS(4350), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4406), 14, + ACTIONS(4352), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -241265,22 +238776,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [121832] = 7, - ACTIONS(1557), 1, + [121059] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1559), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(6382), 1, + ACTIONS(6365), 1, anon_sym_unique, - ACTIONS(6422), 1, + ACTIONS(6385), 1, sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5525), 2, + STATE(5669), 2, sym_string, sym_predefined_type, - ACTIONS(6378), 9, + ACTIONS(6361), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -241290,75 +238801,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [121864] = 8, - ACTIONS(1557), 1, - anon_sym_DQUOTE, - ACTIONS(1559), 1, - anon_sym_SQUOTE, - ACTIONS(6382), 1, - anon_sym_unique, - ACTIONS(6424), 1, - sym_number, - STATE(5533), 1, - sym_string, - STATE(5537), 1, - sym_predefined_type, + [121091] = 3, + ACTIONS(4342), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6378), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [121898] = 8, - ACTIONS(1557), 1, - anon_sym_DQUOTE, - ACTIONS(1559), 1, - anon_sym_SQUOTE, - ACTIONS(6382), 1, - anon_sym_unique, - ACTIONS(6426), 1, - sym_number, - STATE(5555), 1, - sym_string, - STATE(5566), 1, - sym_predefined_type, + ACTIONS(4344), 14, + 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_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_extends, + [121115] = 3, + ACTIONS(4446), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6378), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [121932] = 8, - ACTIONS(1557), 1, + ACTIONS(4448), 14, + 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_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_extends, + [121139] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1559), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(6382), 1, + ACTIONS(6365), 1, anon_sym_unique, - ACTIONS(6428), 1, + ACTIONS(6387), 1, sym_number, - STATE(5626), 1, + STATE(5684), 1, sym_string, - STATE(5646), 1, + STATE(5691), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6378), 9, + ACTIONS(6361), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -241368,32 +238869,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [121966] = 3, - ACTIONS(4253), 1, - anon_sym_PIPE, + [121173] = 3, + ACTIONS(4114), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4255), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4116), 14, + 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_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [121990] = 2, + [121197] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6430), 15, + ACTIONS(6389), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -241409,74 +238910,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [122012] = 7, - ACTIONS(1557), 1, - anon_sym_DQUOTE, - ACTIONS(1559), 1, - anon_sym_SQUOTE, - ACTIONS(6382), 1, - anon_sym_unique, - ACTIONS(6432), 1, - sym_number, + [121219] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5797), 2, - sym_string, - sym_predefined_type, - ACTIONS(6378), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [122044] = 8, - ACTIONS(1557), 1, - anon_sym_DQUOTE, - ACTIONS(1559), 1, - anon_sym_SQUOTE, - ACTIONS(6382), 1, - anon_sym_unique, - ACTIONS(6434), 1, - sym_number, - STATE(5808), 1, - sym_string, - STATE(5811), 1, - sym_predefined_type, + ACTIONS(6391), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [121241] = 4, + ACTIONS(4170), 1, + anon_sym_EQ, + ACTIONS(6373), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6378), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [122078] = 8, - ACTIONS(1557), 1, + ACTIONS(4172), 13, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_extends, + [121267] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1559), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(6382), 1, + ACTIONS(6365), 1, anon_sym_unique, - ACTIONS(6436), 1, + ACTIONS(6393), 1, sym_number, - STATE(5814), 1, + STATE(5583), 1, sym_string, - STATE(5820), 1, + STATE(5624), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6378), 9, + ACTIONS(6361), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -241486,23 +238978,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [122112] = 8, - ACTIONS(1557), 1, + [121301] = 3, + ACTIONS(4242), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4244), 14, + sym__automatic_semicolon, + anon_sym_EQ, + 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, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [121325] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1559), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(6382), 1, + ACTIONS(6365), 1, anon_sym_unique, - ACTIONS(6438), 1, + ACTIONS(6395), 1, sym_number, - STATE(5836), 1, + STATE(5697), 1, sym_string, - STATE(5843), 1, + STATE(5701), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6378), 9, + ACTIONS(6361), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -241512,22 +239025,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [122146] = 7, - ACTIONS(1557), 1, + [121359] = 8, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1559), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(6382), 1, + ACTIONS(6365), 1, anon_sym_unique, - ACTIONS(6440), 1, + ACTIONS(6397), 1, sym_number, + STATE(5703), 1, + sym_string, + STATE(5706), 1, + sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5719), 2, - sym_string, - sym_predefined_type, - ACTIONS(6378), 9, + ACTIONS(6361), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -241537,34 +239051,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [122178] = 3, - ACTIONS(4292), 1, - anon_sym_PIPE, + [121393] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4294), 14, - sym__automatic_semicolon, - anon_sym_EQ, - 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, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122202] = 3, - ACTIONS(4296), 1, + ACTIONS(6399), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [121415] = 3, + ACTIONS(4158), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4298), 14, + ACTIONS(4160), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -241579,60 +239092,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122226] = 8, - ACTIONS(1557), 1, - anon_sym_DQUOTE, - ACTIONS(1559), 1, - anon_sym_SQUOTE, - ACTIONS(6382), 1, - anon_sym_unique, - ACTIONS(6442), 1, - sym_number, - STATE(5664), 1, - sym_string, - STATE(5870), 1, - sym_predefined_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6378), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [122260] = 3, - ACTIONS(4296), 1, - anon_sym_PIPE, + [121439] = 3, + ACTIONS(4184), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4298), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4182), 14, + 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_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122284] = 3, - ACTIONS(4296), 1, + [121463] = 3, + ACTIONS(4242), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4298), 14, + ACTIONS(4244), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -241647,13 +239134,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122308] = 3, - ACTIONS(4300), 1, + [121487] = 3, + ACTIONS(4246), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4302), 14, + ACTIONS(4248), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -241668,81 +239155,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122332] = 3, - ACTIONS(4300), 1, - anon_sym_PIPE, + [121511] = 3, + ACTIONS(4270), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4302), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4156), 14, + 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_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122356] = 8, - ACTIONS(1557), 1, - anon_sym_DQUOTE, - ACTIONS(1559), 1, - anon_sym_SQUOTE, - ACTIONS(6382), 1, - anon_sym_unique, - ACTIONS(6444), 1, - sym_number, - STATE(5563), 1, - sym_string, - STATE(5684), 1, - sym_predefined_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6378), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [122390] = 3, - ACTIONS(4300), 1, anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_extends, + [121535] = 3, + ACTIONS(4256), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4302), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4258), 14, + 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_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122414] = 3, - ACTIONS(4308), 1, + [121559] = 3, + ACTIONS(4238), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4310), 14, + ACTIONS(4240), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -241757,34 +239218,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122438] = 3, - ACTIONS(4308), 1, - anon_sym_PIPE, + [121583] = 3, + ACTIONS(4406), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4310), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4408), 14, + 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_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122462] = 3, - ACTIONS(4308), 1, + [121607] = 3, + ACTIONS(4234), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4310), 14, + ACTIONS(4236), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -241799,23 +239260,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122486] = 8, - ACTIONS(1557), 1, + [121631] = 7, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1559), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(6382), 1, + ACTIONS(6365), 1, anon_sym_unique, - ACTIONS(6446), 1, + ACTIONS(6401), 1, sym_number, - STATE(5647), 1, - sym_string, - STATE(5648), 1, - sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6378), 9, + STATE(5846), 2, + sym_string, + sym_predefined_type, + ACTIONS(6361), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -241825,54 +239285,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [122520] = 2, + [121663] = 3, + ACTIONS(4246), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6448), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [122542] = 3, - ACTIONS(4189), 1, + ACTIONS(4248), 14, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4191), 14, - anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_QMARK, + anon_sym_LT, anon_sym_extends, - [122566] = 3, - ACTIONS(4203), 1, + anon_sym_PIPE_RBRACE, + [121687] = 3, + ACTIONS(4216), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4205), 14, + ACTIONS(4218), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -241887,13 +239327,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [122590] = 3, - ACTIONS(4225), 1, + [121711] = 3, + ACTIONS(4354), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4227), 14, + ACTIONS(4356), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -241908,13 +239348,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [122614] = 3, - ACTIONS(4229), 1, + [121735] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(6365), 1, + anon_sym_unique, + ACTIONS(6403), 1, + sym_number, + STATE(5862), 1, + sym_string, + STATE(5864), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6361), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [121769] = 3, + ACTIONS(4358), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4231), 14, + ACTIONS(4360), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -241929,11 +239395,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [122638] = 2, + [121793] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(6365), 1, + anon_sym_unique, + ACTIONS(6405), 1, + sym_number, + STATE(5497), 1, + sym_predefined_type, + STATE(5718), 1, + sym_string, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6361), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [121827] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6450), 15, + ACTIONS(6407), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -241949,13 +239441,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [122660] = 3, - ACTIONS(4368), 1, + [121849] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6409), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [121871] = 3, + ACTIONS(4380), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4382), 14, + sym__automatic_semicolon, + anon_sym_EQ, + 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, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [121895] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(6365), 1, + anon_sym_unique, + ACTIONS(6411), 1, + sym_number, + STATE(5514), 1, + sym_string, + STATE(5546), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6361), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [121929] = 3, + ACTIONS(4170), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4370), 14, + ACTIONS(4172), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -241970,31 +239529,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [122684] = 2, + [121953] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(6365), 1, + anon_sym_unique, + ACTIONS(6413), 1, + sym_number, + STATE(5512), 1, + sym_string, + STATE(5749), 1, + sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6452), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [122706] = 2, + ACTIONS(6361), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [121987] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6454), 15, + ACTIONS(6415), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -242010,13 +239575,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [122728] = 3, - ACTIONS(4455), 1, + [122009] = 3, + ACTIONS(4230), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 14, + ACTIONS(4232), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -242031,13 +239596,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [122752] = 3, - ACTIONS(4217), 1, + [122033] = 3, + ACTIONS(4372), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4219), 14, + ACTIONS(4374), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -242052,34 +239617,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [122776] = 3, - ACTIONS(4316), 1, - anon_sym_EQ, + [122057] = 3, + ACTIONS(4122), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4318), 14, - anon_sym_as, + ACTIONS(4124), 14, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [122081] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6417), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [122103] = 3, + ACTIONS(4132), 1, anon_sym_PIPE, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4134), 14, + sym__automatic_semicolon, + anon_sym_EQ, + 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, + anon_sym_LT, anon_sym_extends, - [122800] = 3, - ACTIONS(4173), 1, + anon_sym_PIPE_RBRACE, + [122127] = 3, + ACTIONS(4324), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4175), 14, + ACTIONS(4326), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -242094,13 +239700,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [122824] = 3, - ACTIONS(4147), 1, + [122151] = 7, + ACTIONS(4054), 1, + anon_sym_PIPE, + ACTIONS(6345), 1, + anon_sym_LT, + ACTIONS(6419), 1, + anon_sym_DOT, + ACTIONS(6421), 1, + anon_sym_is, + STATE(3250), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3548), 10, + 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_extends, + anon_sym_PIPE_RBRACE, + [122183] = 3, + ACTIONS(4136), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4138), 14, + sym__automatic_semicolon, + anon_sym_EQ, + 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, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [122207] = 3, + ACTIONS(4220), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4149), 14, + ACTIONS(4222), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -242115,13 +239767,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [122848] = 3, - ACTIONS(4155), 1, + [122231] = 3, + ACTIONS(4300), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4157), 14, + ACTIONS(4302), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -242136,13 +239788,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [122872] = 3, - ACTIONS(4271), 1, + [122255] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6423), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [122277] = 3, + ACTIONS(4430), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4273), 14, + ACTIONS(4432), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -242157,13 +239829,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [122896] = 3, - ACTIONS(4145), 1, + [122301] = 3, + ACTIONS(4246), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4248), 14, + sym__automatic_semicolon, + anon_sym_EQ, + 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, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [122325] = 3, + ACTIONS(4402), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4143), 14, + ACTIONS(4404), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -242178,13 +239871,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [122920] = 3, - ACTIONS(4165), 1, + [122349] = 3, + ACTIONS(4104), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 14, + ACTIONS(4106), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -242199,11 +239892,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [122944] = 2, + [122373] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6456), 15, + ACTIONS(6425), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -242219,31 +239912,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [122966] = 2, + [122395] = 8, + ACTIONS(6375), 1, + anon_sym_LPAREN, + ACTIONS(6381), 1, + anon_sym_LT, + ACTIONS(6427), 1, + anon_sym_DOT, + ACTIONS(6429), 1, + anon_sym_QMARK_DOT, + STATE(3224), 1, + sym_arguments, + STATE(3401), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6458), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [122988] = 2, + ACTIONS(3512), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [122429] = 3, + ACTIONS(4162), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4164), 14, + sym__automatic_semicolon, + anon_sym_EQ, + 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, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [122453] = 3, + ACTIONS(4166), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4168), 14, + sym__automatic_semicolon, + anon_sym_EQ, + 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, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [122477] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6460), 15, + ACTIONS(6431), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -242259,13 +240000,225 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [123010] = 3, - ACTIONS(4400), 1, + [122499] = 3, + ACTIONS(4174), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4176), 14, + 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_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_extends, + [122523] = 3, + ACTIONS(4162), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4164), 14, + sym__automatic_semicolon, + anon_sym_EQ, + 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, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [122547] = 7, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(6365), 1, + anon_sym_unique, + ACTIONS(6433), 1, + sym_number, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5694), 2, + sym_string, + sym_predefined_type, + ACTIONS(6361), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [122579] = 3, + ACTIONS(4166), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4168), 14, + sym__automatic_semicolon, + anon_sym_EQ, + 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, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [122603] = 7, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(6365), 1, + anon_sym_unique, + ACTIONS(6435), 1, + sym_number, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5784), 2, + sym_string, + sym_predefined_type, + ACTIONS(6361), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [122635] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(6365), 1, + anon_sym_unique, + ACTIONS(6437), 1, + sym_number, + STATE(5791), 1, + sym_string, + STATE(5794), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6361), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [122669] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(6365), 1, + anon_sym_unique, + ACTIONS(6439), 1, + sym_number, + STATE(5799), 1, + sym_string, + STATE(5806), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6361), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [122703] = 8, + ACTIONS(6375), 1, + anon_sym_LPAREN, + ACTIONS(6381), 1, + anon_sym_LT, + ACTIONS(6441), 1, + anon_sym_DOT, + ACTIONS(6443), 1, + anon_sym_QMARK_DOT, + STATE(3225), 1, + sym_arguments, + STATE(3420), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4070), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [122737] = 3, + ACTIONS(4238), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4240), 14, + sym__automatic_semicolon, + anon_sym_EQ, + 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, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [122761] = 3, + ACTIONS(4108), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4402), 14, + ACTIONS(4110), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -242280,13 +240233,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [123034] = 3, - ACTIONS(4320), 1, + [122785] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(6365), 1, + anon_sym_unique, + ACTIONS(6445), 1, + sym_number, + STATE(5809), 1, + sym_string, + STATE(5811), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6361), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [122819] = 3, + ACTIONS(4140), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4322), 14, + ACTIONS(4142), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -242301,250 +240280,320 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [123058] = 3, - ACTIONS(4253), 1, - anon_sym_PIPE, + [122843] = 3, + ACTIONS(4376), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4255), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4378), 14, + 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_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [123082] = 14, - ACTIONS(1643), 1, - anon_sym_DQUOTE, - ACTIONS(1645), 1, - anon_sym_SQUOTE, - ACTIONS(6350), 1, - anon_sym_STAR, - ACTIONS(6354), 1, - anon_sym_LBRACE, - ACTIONS(6462), 1, - sym_identifier, - ACTIONS(6464), 1, - anon_sym_type, - ACTIONS(6466), 1, - anon_sym_COMMA, - ACTIONS(6468), 1, - anon_sym_from, - STATE(4331), 1, - sym_string, - STATE(4332), 1, - sym_import_require_clause, - STATE(5313), 1, - sym__import_identifier, - STATE(5369), 1, - sym_import_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5782), 2, - sym_namespace_import, - sym_named_imports, - [123127] = 13, - ACTIONS(2570), 1, + [122867] = 13, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6470), 1, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6474), 1, + ACTIONS(6451), 1, anon_sym_BANG, - ACTIONS(6476), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6480), 1, + ACTIONS(6457), 1, anon_sym_QMARK, - STATE(3893), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(4309), 1, + STATE(4162), 1, sym_type_annotation, - STATE(4966), 1, + STATE(4706), 1, sym__initializer, - STATE(5323), 1, + STATE(5256), 1, sym__call_signature, - STATE(5354), 1, + STATE(5328), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(6449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [123170] = 13, - ACTIONS(2570), 1, + [122910] = 13, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6470), 1, + ACTIONS(3281), 1, + anon_sym_LPAREN, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6484), 1, + ACTIONS(6461), 1, anon_sym_BANG, - ACTIONS(6486), 1, - anon_sym_LPAREN, - ACTIONS(6488), 1, + ACTIONS(6463), 1, anon_sym_QMARK, - STATE(3364), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(3867), 1, - sym__call_signature, - STATE(4340), 1, + STATE(4234), 1, sym_type_annotation, - STATE(5012), 1, + STATE(4859), 1, + sym__call_signature, + STATE(4860), 1, sym__initializer, - STATE(5316), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6482), 3, + ACTIONS(6459), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [123213] = 13, - ACTIONS(2570), 1, + [122953] = 13, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6470), 1, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6476), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6492), 1, + ACTIONS(6467), 1, anon_sym_BANG, - ACTIONS(6494), 1, + ACTIONS(6469), 1, anon_sym_QMARK, - STATE(3893), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(3991), 1, + STATE(4246), 1, sym_type_annotation, - STATE(4806), 1, + STATE(4880), 1, sym__initializer, - STATE(5162), 1, + STATE(5155), 1, sym__call_signature, - STATE(5354), 1, + STATE(5328), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6490), 3, + ACTIONS(6465), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [123256] = 11, - ACTIONS(2570), 1, + [122996] = 14, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(6327), 1, + anon_sym_STAR, + ACTIONS(6331), 1, + anon_sym_LBRACE, + ACTIONS(6471), 1, + sym_identifier, + ACTIONS(6473), 1, + anon_sym_type, + ACTIONS(6475), 1, + anon_sym_COMMA, + ACTIONS(6477), 1, + anon_sym_from, + STATE(4299), 1, + sym_string, + STATE(4300), 1, + sym_import_require_clause, + STATE(5136), 1, + sym__import_identifier, + STATE(5337), 1, + sym_import_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5844), 2, + sym_namespace_import, + sym_named_imports, + [123041] = 6, + ACTIONS(214), 1, + anon_sym_unique, + STATE(3286), 1, + sym_type_predicate, + STATE(5724), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6479), 2, + sym_identifier, + sym_this, + ACTIONS(216), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [123070] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(3813), 1, + ACTIONS(3808), 1, anon_sym_COMMA, - ACTIONS(3816), 1, + ACTIONS(3925), 1, anon_sym_RBRACE, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - STATE(3602), 1, + STATE(3615), 1, sym_formal_parameters, - STATE(4823), 1, + STATE(4792), 1, aux_sym_object_repeat1, - STATE(4834), 1, + STATE(4815), 1, aux_sym_object_pattern_repeat1, - STATE(5238), 1, + STATE(5411), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3819), 5, + ACTIONS(3814), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [123295] = 13, - ACTIONS(2570), 1, + [123109] = 6, + ACTIONS(214), 1, + anon_sym_unique, + STATE(1939), 1, + sym_type_predicate, + STATE(5747), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6481), 2, + sym_identifier, + sym_this, + ACTIONS(216), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [123138] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(3808), 1, + anon_sym_COMMA, + ACTIONS(3811), 1, + anon_sym_RBRACE, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(6478), 1, - anon_sym_COLON, - ACTIONS(6484), 1, - anon_sym_BANG, - ACTIONS(6496), 1, - anon_sym_QMARK, - STATE(3317), 1, + STATE(3615), 1, sym_formal_parameters, - STATE(4340), 1, - sym_type_annotation, - STATE(5090), 1, - sym__call_signature, - STATE(5093), 1, - sym__initializer, - STATE(5224), 1, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, + STATE(5411), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6482), 3, + ACTIONS(3814), 5, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [123338] = 13, - ACTIONS(2570), 1, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [123177] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6470), 1, - anon_sym_EQ, - ACTIONS(6476), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(6478), 1, + ACTIONS(3808), 1, + anon_sym_COMMA, + ACTIONS(3906), 1, + anon_sym_RBRACE, + ACTIONS(4622), 1, + anon_sym_EQ, + STATE(3615), 1, + sym_formal_parameters, + STATE(4810), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, + STATE(5411), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3814), 5, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(6500), 1, - anon_sym_BANG, - ACTIONS(6502), 1, anon_sym_QMARK, - STATE(3893), 1, + anon_sym_PIPE_RBRACE, + [123216] = 11, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + ACTIONS(3808), 1, + anon_sym_COMMA, + ACTIONS(3909), 1, + anon_sym_RBRACE, + ACTIONS(4622), 1, + anon_sym_EQ, + STATE(3615), 1, sym_formal_parameters, - STATE(4372), 1, - sym_type_annotation, - STATE(5099), 1, - sym__initializer, - STATE(5354), 1, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, + STATE(5411), 1, sym_type_parameters, - STATE(5442), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6498), 3, + ACTIONS(3814), 5, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [123381] = 6, - ACTIONS(215), 1, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [123255] = 6, + ACTIONS(214), 1, anon_sym_unique, - STATE(3271), 1, + STATE(1637), 1, sym_type_predicate, - STATE(5711), 1, + STATE(5570), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6504), 2, + ACTIONS(6483), 2, sym_identifier, sym_this, - ACTIONS(217), 9, + ACTIONS(216), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -242554,50 +240603,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [123410] = 13, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6470), 1, + [123284] = 4, + ACTIONS(4104), 1, anon_sym_EQ, - ACTIONS(6476), 1, - anon_sym_LPAREN, - ACTIONS(6478), 1, - anon_sym_COLON, - ACTIONS(6506), 1, - anon_sym_BANG, - ACTIONS(6508), 1, - anon_sym_QMARK, - STATE(3893), 1, - sym_formal_parameters, - STATE(4374), 1, - sym_type_annotation, - STATE(5106), 1, - sym__initializer, - STATE(5354), 1, - sym_type_parameters, - STATE(5448), 1, - sym__call_signature, + ACTIONS(6351), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6498), 3, - sym__automatic_semicolon, + ACTIONS(4106), 12, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [123453] = 6, - ACTIONS(215), 1, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_extends, + [123309] = 6, + ACTIONS(214), 1, anon_sym_unique, - STATE(1635), 1, + STATE(2978), 1, sym_type_predicate, - STATE(5739), 1, + STATE(5861), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6510), 2, + ACTIONS(6485), 2, sym_identifier, sym_this, - ACTIONS(217), 9, + ACTIONS(216), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -242607,133 +240647,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [123482] = 11, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(3813), 1, - anon_sym_COMMA, - ACTIONS(3938), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, + [123338] = 4, + ACTIONS(4108), 1, anon_sym_EQ, - STATE(3602), 1, - sym_formal_parameters, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, - aux_sym_object_repeat1, - STATE(5238), 1, - sym_type_parameters, + ACTIONS(6487), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3819), 5, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(4110), 12, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [123521] = 13, - ACTIONS(2570), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_extends, + [123363] = 13, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6470), 1, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6476), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6512), 1, + ACTIONS(6491), 1, anon_sym_BANG, - ACTIONS(6514), 1, + ACTIONS(6493), 1, anon_sym_QMARK, - STATE(3893), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(3937), 1, + STATE(3949), 1, sym_type_annotation, - STATE(5128), 1, + STATE(5042), 1, sym__initializer, - STATE(5354), 1, + STATE(5328), 1, sym_type_parameters, - STATE(5372), 1, + STATE(5373), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6498), 3, + ACTIONS(6489), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [123564] = 13, - ACTIONS(2570), 1, + [123406] = 13, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6470), 1, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6476), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6516), 1, + ACTIONS(6495), 1, anon_sym_BANG, - ACTIONS(6518), 1, + ACTIONS(6497), 1, anon_sym_QMARK, - STATE(3893), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(4083), 1, + STATE(3956), 1, sym_type_annotation, - STATE(4578), 1, + STATE(4528), 1, sym__initializer, - STATE(5251), 1, - sym__call_signature, - STATE(5354), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6498), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [123607] = 13, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6470), 1, - anon_sym_EQ, - ACTIONS(6478), 1, - anon_sym_COLON, - ACTIONS(6486), 1, - anon_sym_LPAREN, - ACTIONS(6522), 1, - anon_sym_BANG, - ACTIONS(6524), 1, - anon_sym_QMARK, - STATE(3364), 1, - sym_formal_parameters, - STATE(3827), 1, + STATE(5257), 1, sym__call_signature, - STATE(3984), 1, - sym_type_annotation, - STATE(4772), 1, - sym__initializer, - STATE(5316), 1, + STATE(5328), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6520), 3, + ACTIONS(6489), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [123650] = 4, - ACTIONS(4109), 1, + [123449] = 4, + ACTIONS(4114), 1, anon_sym_EQ, - ACTIONS(6346), 1, + ACTIONS(6351), 1, anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4111), 12, + ACTIONS(4116), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -242746,78 +240749,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT, anon_sym_extends, - [123675] = 11, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(3813), 1, - anon_sym_COMMA, - ACTIONS(3865), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, - anon_sym_EQ, - STATE(3602), 1, - sym_formal_parameters, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, - aux_sym_object_repeat1, - STATE(5238), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3819), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [123714] = 13, - ACTIONS(2570), 1, + [123474] = 13, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6470), 1, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6476), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6526), 1, + ACTIONS(6499), 1, anon_sym_BANG, - ACTIONS(6528), 1, + ACTIONS(6501), 1, anon_sym_QMARK, - STATE(3893), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(3993), 1, + STATE(4014), 1, sym_type_annotation, - STATE(4814), 1, + STATE(4805), 1, sym__initializer, - STATE(5173), 1, + STATE(5139), 1, sym__call_signature, - STATE(5354), 1, + STATE(5328), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6490), 3, + ACTIONS(6489), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [123757] = 6, - ACTIONS(215), 1, + [123517] = 6, + ACTIONS(214), 1, anon_sym_unique, - STATE(2963), 1, + STATE(2978), 1, sym_type_predicate, - STATE(5716), 1, + STATE(5673), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6530), 2, + ACTIONS(6503), 2, sym_identifier, sym_this, - ACTIONS(217), 9, + ACTIONS(216), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -242827,427 +240802,408 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [123786] = 13, - ACTIONS(2570), 1, + [123546] = 13, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6470), 1, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6476), 1, - anon_sym_LPAREN, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6534), 1, + ACTIONS(6507), 1, anon_sym_BANG, - ACTIONS(6536), 1, + ACTIONS(6509), 1, + anon_sym_LPAREN, + ACTIONS(6511), 1, anon_sym_QMARK, - STATE(3893), 1, + STATE(3330), 1, sym_formal_parameters, - STATE(3922), 1, + STATE(3900), 1, + sym__call_signature, + STATE(4003), 1, sym_type_annotation, - STATE(4652), 1, + STATE(4741), 1, sym__initializer, - STATE(5354), 1, + STATE(5249), 1, sym_type_parameters, - STATE(5360), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6532), 3, + ACTIONS(6505), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [123829] = 4, - ACTIONS(4091), 1, + [123589] = 13, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6346), 1, - anon_sym_is, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4093), 12, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(6453), 1, + anon_sym_LPAREN, + ACTIONS(6455), 1, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_extends, - [123854] = 6, - ACTIONS(4077), 1, - anon_sym_PIPE, - ACTIONS(6362), 1, - anon_sym_LT, - ACTIONS(6390), 1, - anon_sym_DOT, - STATE(3225), 1, - sym_type_arguments, + ACTIONS(6515), 1, + anon_sym_BANG, + ACTIONS(6517), 1, + anon_sym_QMARK, + STATE(3806), 1, + sym_formal_parameters, + STATE(4126), 1, + sym_type_annotation, + STATE(4632), 1, + sym__initializer, + STATE(5131), 1, + sym__call_signature, + STATE(5328), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3567), 10, + ACTIONS(6513), 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_extends, - anon_sym_PIPE_RBRACE, - [123883] = 11, - ACTIONS(2570), 1, + [123632] = 13, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(3813), 1, - anon_sym_COMMA, - ACTIONS(3862), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(3602), 1, + ACTIONS(6455), 1, + anon_sym_COLON, + ACTIONS(6509), 1, + anon_sym_LPAREN, + ACTIONS(6521), 1, + anon_sym_BANG, + ACTIONS(6523), 1, + anon_sym_QMARK, + STATE(3330), 1, sym_formal_parameters, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, - aux_sym_object_repeat1, - STATE(5238), 1, + STATE(3754), 1, + sym__call_signature, + STATE(4313), 1, + sym_type_annotation, + STATE(5010), 1, + sym__initializer, + STATE(5249), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3819), 5, + ACTIONS(6519), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, + [123675] = 13, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, anon_sym_COLON, + ACTIONS(6521), 1, + anon_sym_BANG, + ACTIONS(6525), 1, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [123922] = 4, - ACTIONS(4085), 1, - anon_sym_EQ, - ACTIONS(6538), 1, - anon_sym_is, + STATE(3315), 1, + sym_formal_parameters, + STATE(4313), 1, + sym_type_annotation, + STATE(5077), 1, + sym__call_signature, + STATE(5084), 1, + sym__initializer, + STATE(5233), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4087), 12, - anon_sym_LBRACE, + ACTIONS(6519), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_extends, - [123947] = 13, - ACTIONS(2570), 1, + anon_sym_SEMI, + [123718] = 13, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6470), 1, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6476), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6540), 1, + ACTIONS(6529), 1, anon_sym_BANG, - ACTIONS(6542), 1, + ACTIONS(6531), 1, anon_sym_QMARK, - STATE(3893), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(4023), 1, + STATE(4357), 1, sym_type_annotation, - STATE(5002), 1, + STATE(5089), 1, sym__initializer, - STATE(5354), 1, + STATE(5328), 1, sym_type_parameters, - STATE(5364), 1, + STATE(5431), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6490), 3, + ACTIONS(6527), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [123990] = 13, - ACTIONS(2570), 1, + [123761] = 13, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6470), 1, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, - anon_sym_COLON, - ACTIONS(6486), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(6546), 1, + ACTIONS(6455), 1, + anon_sym_COLON, + ACTIONS(6533), 1, anon_sym_BANG, - ACTIONS(6548), 1, + ACTIONS(6535), 1, anon_sym_QMARK, - STATE(3364), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(3797), 1, - sym__call_signature, - STATE(4247), 1, + STATE(4361), 1, sym_type_annotation, - STATE(4833), 1, + STATE(5093), 1, sym__initializer, - STATE(5316), 1, + STATE(5328), 1, sym_type_parameters, + STATE(5436), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6544), 3, + ACTIONS(6527), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124033] = 13, - ACTIONS(2570), 1, + [123804] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6470), 1, + ACTIONS(3281), 1, + anon_sym_LPAREN, + ACTIONS(3808), 1, + anon_sym_COMMA, + ACTIONS(3912), 1, + anon_sym_RBRACE, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(6478), 1, + STATE(3615), 1, + sym_formal_parameters, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, + STATE(5411), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3814), 5, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(6486), 1, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [123843] = 13, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(6552), 1, + ACTIONS(6455), 1, + anon_sym_COLON, + ACTIONS(6537), 1, anon_sym_BANG, - ACTIONS(6554), 1, + ACTIONS(6539), 1, anon_sym_QMARK, - STATE(3364), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(3832), 1, - sym__call_signature, - STATE(4101), 1, + STATE(4060), 1, sym_type_annotation, - STATE(4630), 1, + STATE(4563), 1, sym__initializer, - STATE(5316), 1, + STATE(5265), 1, + sym__call_signature, + STATE(5328), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6550), 3, + ACTIONS(6527), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124076] = 13, - ACTIONS(2570), 1, + [123886] = 13, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6470), 1, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6476), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6556), 1, + ACTIONS(6541), 1, anon_sym_BANG, - ACTIONS(6558), 1, + ACTIONS(6543), 1, anon_sym_QMARK, - STATE(3893), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(4120), 1, + STATE(4059), 1, sym_type_annotation, - STATE(4660), 1, + STATE(4884), 1, sym__initializer, - STATE(5234), 1, + STATE(5226), 1, sym__call_signature, - STATE(5354), 1, + STATE(5328), 1, sym_type_parameters, ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6472), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [124119] = 6, - ACTIONS(215), 1, - anon_sym_unique, - STATE(2963), 1, - sym_type_predicate, - STATE(5687), 1, - sym_predefined_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6560), 2, - sym_identifier, - sym_this, - ACTIONS(217), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [124148] = 13, - ACTIONS(2570), 1, + sym_html_comment, + sym_comment, + ACTIONS(6527), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [123929] = 13, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6470), 1, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6476), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6562), 1, + ACTIONS(6545), 1, anon_sym_BANG, - ACTIONS(6564), 1, + ACTIONS(6547), 1, anon_sym_QMARK, - STATE(3893), 1, + STATE(3806), 1, sym_formal_parameters, STATE(4028), 1, sym_type_annotation, - STATE(5020), 1, + STATE(4864), 1, sym__initializer, - STATE(5354), 1, - sym_type_parameters, - STATE(5389), 1, + STATE(5185), 1, sym__call_signature, + STATE(5328), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6490), 3, + ACTIONS(6449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124191] = 6, - ACTIONS(215), 1, - anon_sym_unique, - STATE(1940), 1, - sym_type_predicate, - STATE(5709), 1, - sym_predefined_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6566), 2, - sym_identifier, - sym_this, - ACTIONS(217), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [124220] = 11, - ACTIONS(2570), 1, + [123972] = 13, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(3813), 1, - anon_sym_COMMA, - ACTIONS(3847), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(3602), 1, + ACTIONS(6453), 1, + anon_sym_LPAREN, + ACTIONS(6455), 1, + anon_sym_COLON, + ACTIONS(6549), 1, + anon_sym_BANG, + ACTIONS(6551), 1, + anon_sym_QMARK, + STATE(3806), 1, sym_formal_parameters, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, - aux_sym_object_repeat1, - STATE(5238), 1, + STATE(4183), 1, + sym_type_annotation, + STATE(4516), 1, + sym__initializer, + STATE(5328), 1, sym_type_parameters, + STATE(5367), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3819), 5, + ACTIONS(6449), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [124259] = 13, - ACTIONS(2570), 1, + [124015] = 13, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6470), 1, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6486), 1, + ACTIONS(6509), 1, anon_sym_LPAREN, - ACTIONS(6570), 1, + ACTIONS(6555), 1, anon_sym_BANG, - ACTIONS(6572), 1, + ACTIONS(6557), 1, anon_sym_QMARK, - STATE(3364), 1, + STATE(3330), 1, sym_formal_parameters, - STATE(3834), 1, + STATE(3819), 1, sym__call_signature, - STATE(4298), 1, + STATE(4333), 1, sym_type_annotation, - STATE(4920), 1, + STATE(5058), 1, sym__initializer, - STATE(5316), 1, + STATE(5249), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6568), 3, + ACTIONS(6553), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124302] = 13, - ACTIONS(2570), 1, + [124058] = 13, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6546), 1, + ACTIONS(6509), 1, + anon_sym_LPAREN, + ACTIONS(6561), 1, anon_sym_BANG, - ACTIONS(6574), 1, + ACTIONS(6563), 1, anon_sym_QMARK, - STATE(3317), 1, + STATE(3330), 1, sym_formal_parameters, - STATE(4247), 1, - sym_type_annotation, - STATE(4844), 1, + STATE(3751), 1, sym__call_signature, - STATE(4845), 1, + STATE(4235), 1, + sym_type_annotation, + STATE(4848), 1, sym__initializer, - STATE(5224), 1, + STATE(5249), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6544), 3, + ACTIONS(6559), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124345] = 6, - ACTIONS(215), 1, + [124101] = 6, + ACTIONS(214), 1, anon_sym_unique, - STATE(3392), 1, + STATE(2978), 1, sym_type_predicate, - STATE(5672), 1, + STATE(5675), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6576), 2, + ACTIONS(6565), 2, sym_identifier, sym_this, - ACTIONS(217), 9, + ACTIONS(216), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -243257,19 +241213,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [124374] = 6, - ACTIONS(3519), 1, + [124130] = 6, + ACTIONS(3528), 1, anon_sym_LPAREN, - ACTIONS(4117), 1, + ACTIONS(4078), 1, anon_sym_PIPE, - ACTIONS(6578), 1, + ACTIONS(6567), 1, anon_sym_DOT, - STATE(3203), 1, + STATE(3168), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4119), 10, + ACTIONS(4080), 10, + 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_extends, + anon_sym_PIPE_RBRACE, + [124159] = 6, + ACTIONS(4054), 1, + anon_sym_PIPE, + ACTIONS(6345), 1, + anon_sym_LT, + ACTIONS(6419), 1, + anon_sym_DOT, + STATE(3250), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3548), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243280,230 +241259,276 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [124403] = 13, - ACTIONS(2570), 1, + [124188] = 6, + ACTIONS(214), 1, + anon_sym_unique, + STATE(3336), 1, + sym_type_predicate, + STATE(5501), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6569), 2, + sym_identifier, + sym_this, + ACTIONS(216), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [124217] = 13, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6470), 1, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6476), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6582), 1, + ACTIONS(6571), 1, anon_sym_BANG, - ACTIONS(6584), 1, + ACTIONS(6573), 1, anon_sym_QMARK, - STATE(3893), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(4266), 1, + STATE(4295), 1, sym_type_annotation, - STATE(4873), 1, + STATE(4985), 1, sym__initializer, - STATE(5290), 1, + STATE(5322), 1, sym__call_signature, - STATE(5354), 1, + STATE(5328), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6580), 3, + ACTIONS(6449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124446] = 13, - ACTIONS(2570), 1, + [124260] = 13, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6470), 1, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6476), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6586), 1, + ACTIONS(6575), 1, anon_sym_BANG, - ACTIONS(6588), 1, + ACTIONS(6577), 1, anon_sym_QMARK, - STATE(3893), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(4257), 1, + STATE(4325), 1, sym_type_annotation, - STATE(4861), 1, + STATE(5028), 1, sym__initializer, - STATE(5215), 1, - sym__call_signature, - STATE(5354), 1, + STATE(5328), 1, sym_type_parameters, + STATE(5381), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(6449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124489] = 13, - ACTIONS(2570), 1, + [124303] = 13, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6470), 1, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6476), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6590), 1, + ACTIONS(6579), 1, anon_sym_BANG, - ACTIONS(6592), 1, + ACTIONS(6581), 1, anon_sym_QMARK, - STATE(3893), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(4270), 1, + STATE(4344), 1, sym_type_annotation, - STATE(4889), 1, + STATE(5070), 1, sym__initializer, - STATE(5247), 1, - sym__call_signature, - STATE(5354), 1, + STATE(5328), 1, sym_type_parameters, + STATE(5412), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(6489), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124532] = 13, - ACTIONS(2570), 1, + [124346] = 13, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6470), 1, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6476), 1, - anon_sym_LPAREN, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6594), 1, + ACTIONS(6461), 1, anon_sym_BANG, - ACTIONS(6596), 1, + ACTIONS(6509), 1, + anon_sym_LPAREN, + ACTIONS(6583), 1, anon_sym_QMARK, - STATE(3893), 1, + STATE(3330), 1, sym_formal_parameters, - STATE(3911), 1, + STATE(3848), 1, + sym__call_signature, + STATE(4234), 1, sym_type_annotation, - STATE(4614), 1, + STATE(4849), 1, sym__initializer, - STATE(5354), 1, + STATE(5249), 1, sym_type_parameters, - STATE(5445), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6490), 3, + ACTIONS(6459), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124575] = 13, - ACTIONS(2570), 1, + [124389] = 13, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6470), 1, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6476), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6598), 1, + ACTIONS(6585), 1, anon_sym_BANG, - ACTIONS(6600), 1, + ACTIONS(6587), 1, anon_sym_QMARK, - STATE(3893), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(4328), 1, + STATE(4049), 1, sym_type_annotation, - STATE(4847), 1, + STATE(4944), 1, sym__initializer, - STATE(5184), 1, + STATE(5267), 1, sym__call_signature, - STATE(5354), 1, + STATE(5328), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6490), 3, + ACTIONS(6449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124618] = 6, - ACTIONS(215), 1, - anon_sym_unique, - STATE(2963), 1, - sym_type_predicate, - STATE(5565), 1, - sym_predefined_type, + [124432] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6602), 2, - sym_identifier, - sym_this, - ACTIONS(217), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [124647] = 6, - ACTIONS(4229), 1, - anon_sym_EQ, - ACTIONS(6604), 1, + ACTIONS(4138), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - ACTIONS(6606), 1, anon_sym_PIPE, - ACTIONS(6608), 1, + anon_sym_LT, anon_sym_extends, + [124452] = 10, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + ACTIONS(6591), 1, + anon_sym_COLON, + ACTIONS(6593), 1, + anon_sym_QMARK, + STATE(3315), 1, + sym_formal_parameters, + STATE(3714), 1, + sym__call_signature, + STATE(4084), 1, + sym_type_annotation, + STATE(5233), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4231), 9, - anon_sym_LBRACE, + ACTIONS(6589), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_GT, - [124675] = 4, - ACTIONS(4360), 1, - anon_sym_EQ, - ACTIONS(6604), 1, - anon_sym_AMP, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [124488] = 3, + ACTIONS(4320), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4362), 11, + ACTIONS(4322), 12, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, anon_sym_extends, - [124699] = 4, - ACTIONS(1891), 1, + anon_sym_PIPE_RBRACE, + [124510] = 11, + ACTIONS(3576), 1, + anon_sym_LT, + ACTIONS(6343), 1, anon_sym_DOT, - ACTIONS(4285), 1, + ACTIONS(6595), 1, + anon_sym_EQ, + ACTIONS(6600), 1, + anon_sym_COLON, + ACTIONS(6602), 1, + anon_sym_extends, + STATE(2964), 1, + sym_type_arguments, + STATE(4499), 1, + sym_constraint, + STATE(5417), 1, + sym_default_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6597), 2, + anon_sym_COMMA, + anon_sym_GT, + ACTIONS(3548), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + [124548] = 3, + ACTIONS(3225), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4287), 11, + ACTIONS(3227), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243511,17 +241536,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [124723] = 3, - ACTIONS(3212), 1, + [124570] = 3, + ACTIONS(4328), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3214), 12, + ACTIONS(4330), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243534,67 +241560,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [124745] = 2, + [124592] = 3, + ACTIONS(4346), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4398), 13, + ACTIONS(4348), 12, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, anon_sym_extends, - [124765] = 2, + anon_sym_PIPE_RBRACE, + [124614] = 4, + ACTIONS(1888), 1, + anon_sym_DOT, + ACTIONS(4384), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4414), 13, + ACTIONS(4386), 11, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [124785] = 2, + anon_sym_PIPE_RBRACE, + [124638] = 3, + ACTIONS(3691), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4418), 13, + ACTIONS(3474), 12, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, 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, - anon_sym_PIPE, - anon_sym_LT, anon_sym_extends, - [124805] = 3, - ACTIONS(4328), 1, + anon_sym_PIPE_RBRACE, + [124660] = 3, + ACTIONS(3679), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4330), 12, + ACTIONS(3478), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243607,111 +241637,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [124827] = 2, + [124682] = 3, + ACTIONS(3233), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4422), 13, + ACTIONS(3235), 12, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [124704] = 6, + ACTIONS(4402), 1, + anon_sym_EQ, + ACTIONS(6605), 1, + anon_sym_AMP, + ACTIONS(6607), 1, anon_sym_PIPE, - anon_sym_LT, + ACTIONS(6609), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4404), 9, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_GT, + [124732] = 4, + ACTIONS(4438), 1, + anon_sym_EQ, + ACTIONS(6605), 1, + anon_sym_AMP, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4440), 11, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_GT, anon_sym_extends, - [124847] = 10, - ACTIONS(2570), 1, + [124756] = 10, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6612), 1, + ACTIONS(6613), 1, anon_sym_QMARK, - STATE(3317), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(3945), 1, + STATE(3524), 1, sym__call_signature, - STATE(3988), 1, + STATE(4050), 1, sym_type_annotation, - STATE(5224), 1, + STATE(5233), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6611), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [124792] = 10, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + ACTIONS(6455), 1, + anon_sym_COLON, + ACTIONS(6617), 1, + anon_sym_QMARK, + STATE(3315), 1, + sym_formal_parameters, + STATE(4282), 1, + sym__call_signature, + STATE(4283), 1, + sym_type_annotation, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6610), 5, + ACTIONS(6615), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [124883] = 2, + [124828] = 3, + ACTIONS(3237), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4418), 13, + ACTIONS(3239), 12, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, anon_sym_extends, - [124903] = 2, + anon_sym_PIPE_RBRACE, + [124850] = 4, + ACTIONS(1892), 1, + anon_sym_DOT, + ACTIONS(4384), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4422), 13, + ACTIONS(4386), 11, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [124923] = 2, + anon_sym_PIPE_RBRACE, + [124874] = 3, + ACTIONS(4414), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4141), 13, + ACTIONS(4416), 12, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, 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, - anon_sym_PIPE, - anon_sym_LT, anon_sym_extends, - [124943] = 3, - ACTIONS(4332), 1, + anon_sym_PIPE_RBRACE, + [124896] = 3, + ACTIONS(4418), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4334), 12, + ACTIONS(4420), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243724,13 +241827,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [124965] = 3, - ACTIONS(4336), 1, + [124918] = 3, + ACTIONS(4422), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4338), 12, + ACTIONS(4424), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243743,29 +241846,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [124987] = 2, + [124940] = 3, + ACTIONS(4426), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4137), 13, + ACTIONS(4428), 12, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, 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, - anon_sym_PIPE, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [124962] = 10, + ACTIONS(2499), 1, anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + ACTIONS(6455), 1, + anon_sym_COLON, + ACTIONS(6621), 1, + anon_sym_QMARK, + STATE(3315), 1, + sym_formal_parameters, + STATE(4029), 1, + sym__call_signature, + STATE(4030), 1, + sym_type_annotation, + STATE(5233), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6619), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [124998] = 4, + ACTIONS(4190), 1, + anon_sym_EQ, + ACTIONS(6623), 1, anon_sym_extends, - [125007] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4141), 13, + ACTIONS(4192), 11, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + [125022] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4160), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -243779,11 +241929,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125027] = 2, + [125042] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4137), 13, + ACTIONS(4314), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -243797,11 +241947,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125047] = 2, + [125062] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4153), 13, + ACTIONS(4382), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -243815,97 +241965,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125067] = 3, - ACTIONS(4340), 1, - anon_sym_PIPE, + [125082] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4342), 12, + ACTIONS(4124), 13, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, 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, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [125089] = 10, - ACTIONS(2570), 1, + [125102] = 10, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6616), 1, + ACTIONS(6625), 1, anon_sym_QMARK, - STATE(3317), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(3690), 1, + STATE(4083), 1, sym__call_signature, - STATE(4337), 1, + STATE(4084), 1, sym_type_annotation, - STATE(5224), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6614), 5, + ACTIONS(6589), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [125125] = 6, - ACTIONS(4324), 1, - anon_sym_EQ, - ACTIONS(6604), 1, - anon_sym_AMP, - ACTIONS(6606), 1, - anon_sym_PIPE, - ACTIONS(6608), 1, - anon_sym_extends, + [125138] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4326), 9, + ACTIONS(4382), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_GT, - [125153] = 3, - ACTIONS(3703), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [125158] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3493), 12, + ACTIONS(4124), 13, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, 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, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [125175] = 2, + [125178] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4171), 13, + ACTIONS(4134), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -243919,11 +242063,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125195] = 2, + [125198] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4153), 13, + ACTIONS(4138), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -243937,11 +242081,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125215] = 2, + [125218] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4171), 13, + ACTIONS(4134), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -243955,131 +242099,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125235] = 10, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(6478), 1, - anon_sym_COLON, - ACTIONS(6620), 1, - anon_sym_QMARK, - STATE(3317), 1, - sym_formal_parameters, - STATE(3641), 1, - sym__call_signature, - STATE(4279), 1, - sym_type_annotation, - STATE(5224), 1, - sym_type_parameters, + [125238] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6618), 5, + ACTIONS(4164), 13, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [125271] = 11, - ACTIONS(6063), 1, - anon_sym_LT, - ACTIONS(6344), 1, - anon_sym_DOT, - ACTIONS(6622), 1, - anon_sym_EQ, - ACTIONS(6627), 1, - anon_sym_COLON, - ACTIONS(6629), 1, - anon_sym_extends, - STATE(3035), 1, - sym_type_arguments, - STATE(4427), 1, - sym_constraint, - STATE(5330), 1, - sym_default_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6624), 2, - anon_sym_COMMA, - anon_sym_GT, - ACTIONS(3567), 3, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - [125309] = 6, - ACTIONS(4221), 1, - anon_sym_EQ, - ACTIONS(6604), 1, - anon_sym_AMP, - ACTIONS(6606), 1, - anon_sym_PIPE, - ACTIONS(6608), 1, + anon_sym_LT, anon_sym_extends, + [125258] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4223), 9, + ACTIONS(4168), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_GT, - [125337] = 3, - ACTIONS(3208), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [125278] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3210), 12, + ACTIONS(4164), 13, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, 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, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [125359] = 10, - ACTIONS(2570), 1, + anon_sym_PIPE, anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(6478), 1, - anon_sym_COLON, - ACTIONS(6634), 1, - anon_sym_QMARK, - STATE(3317), 1, - sym_formal_parameters, - STATE(4051), 1, - sym__call_signature, - STATE(4052), 1, - sym_type_annotation, - STATE(5224), 1, - sym_type_parameters, + anon_sym_extends, + [125298] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6632), 5, + ACTIONS(4168), 13, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [125395] = 2, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [125318] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4239), 13, + ACTIONS(4236), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244093,11 +242189,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125415] = 2, + [125338] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4243), 13, + ACTIONS(4240), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244111,11 +242207,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125435] = 2, + [125358] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4243), 13, + ACTIONS(4240), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244129,29 +242225,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125455] = 2, + [125378] = 5, + ACTIONS(4224), 1, + anon_sym_PIPE, + ACTIONS(6627), 1, + anon_sym_DOT, + ACTIONS(6629), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4243), 13, + ACTIONS(4226), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, anon_sym_extends, - [125475] = 2, + anon_sym_PIPE_RBRACE, + [125404] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4251), 13, + ACTIONS(4244), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244165,55 +242264,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125495] = 6, - ACTIONS(4435), 1, - anon_sym_EQ, - ACTIONS(6604), 1, - anon_sym_AMP, - ACTIONS(6606), 1, - anon_sym_PIPE, - ACTIONS(6608), 1, - anon_sym_extends, + [125424] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4437), 9, + ACTIONS(4244), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_GT, - [125523] = 6, - ACTIONS(4439), 1, - anon_sym_EQ, - ACTIONS(6604), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - ACTIONS(6606), 1, anon_sym_PIPE, - ACTIONS(6608), 1, + anon_sym_LT, anon_sym_extends, + [125444] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4441), 9, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_GT, - [125551] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4251), 13, + ACTIONS(4244), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244227,11 +242300,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125571] = 2, + [125464] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4251), 13, + ACTIONS(4248), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244245,32 +242318,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125591] = 5, - ACTIONS(4384), 1, - anon_sym_PIPE, - ACTIONS(6636), 1, + [125484] = 6, + ACTIONS(6381), 1, + anon_sym_LT, + ACTIONS(6631), 1, anon_sym_DOT, - ACTIONS(6638), 1, - anon_sym_QMARK_DOT, + ACTIONS(6633), 1, + anon_sym_is, + STATE(3319), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4386), 10, + ACTIONS(3548), 9, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [125617] = 2, + [125512] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4255), 13, + ACTIONS(4248), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244284,11 +242358,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125637] = 2, + [125532] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4255), 13, + ACTIONS(4248), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244302,11 +242376,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125657] = 2, + [125552] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4294), 13, + ACTIONS(4278), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244320,11 +242394,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125677] = 2, + [125572] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4298), 13, + ACTIONS(4282), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244338,11 +242412,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125697] = 2, + [125592] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4298), 13, + ACTIONS(4282), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244356,11 +242430,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125717] = 2, + [125612] = 10, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + ACTIONS(6455), 1, + anon_sym_COLON, + ACTIONS(6635), 1, + anon_sym_QMARK, + STATE(3315), 1, + sym_formal_parameters, + STATE(4037), 1, + sym__call_signature, + STATE(4050), 1, + sym_type_annotation, + STATE(5233), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6611), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [125648] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4298), 13, + ACTIONS(4282), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244374,11 +242474,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125737] = 2, + [125668] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4302), 13, + ACTIONS(4286), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244392,11 +242492,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125757] = 2, + [125688] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4302), 13, + ACTIONS(4286), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244410,11 +242510,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125777] = 2, + [125708] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4302), 13, + ACTIONS(4286), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244428,7 +242528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125797] = 2, + [125728] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -244446,7 +242546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125817] = 2, + [125748] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -244464,7 +242564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125837] = 2, + [125768] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -244482,176 +242582,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125857] = 10, - ACTIONS(2570), 1, + [125788] = 10, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6640), 1, + ACTIONS(6637), 1, anon_sym_QMARK, - STATE(3317), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4335), 1, + STATE(3606), 1, sym__call_signature, - STATE(4337), 1, + STATE(4283), 1, sym_type_annotation, - STATE(5224), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6614), 5, + ACTIONS(6615), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [125893] = 10, - ACTIONS(2570), 1, + [125824] = 10, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(6642), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6644), 1, + ACTIONS(6641), 1, anon_sym_QMARK, - STATE(3317), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(3615), 1, + STATE(3597), 1, sym__call_signature, - STATE(4052), 1, + STATE(4262), 1, sym_type_annotation, - STATE(5224), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6632), 5, + ACTIONS(6639), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [125929] = 3, - ACTIONS(3216), 1, + [125860] = 6, + ACTIONS(4202), 1, + anon_sym_EQ, + ACTIONS(6605), 1, + anon_sym_AMP, + ACTIONS(6607), 1, anon_sym_PIPE, + ACTIONS(6609), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3218), 12, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4204), 9, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_GT, + [125888] = 6, + ACTIONS(4220), 1, + anon_sym_EQ, + ACTIONS(6605), 1, anon_sym_AMP, + ACTIONS(6607), 1, + anon_sym_PIPE, + ACTIONS(6609), 1, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [125951] = 10, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(6478), 1, - anon_sym_COLON, - ACTIONS(6648), 1, - anon_sym_QMARK, - STATE(3317), 1, - sym_formal_parameters, - STATE(4045), 1, - sym__call_signature, - STATE(4046), 1, - sym_type_annotation, - STATE(5224), 1, - sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6646), 5, - sym__automatic_semicolon, + ACTIONS(4222), 9, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [125987] = 10, - ACTIONS(2570), 1, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_GT, + [125916] = 10, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6650), 1, + ACTIONS(6643), 1, anon_sym_QMARK, - STATE(3317), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4278), 1, + STATE(4261), 1, sym__call_signature, - STATE(4279), 1, + STATE(4262), 1, sym_type_annotation, - STATE(5224), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6618), 5, + ACTIONS(6639), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [126023] = 3, - ACTIONS(4133), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4131), 12, - sym__automatic_semicolon, + [125952] = 6, + ACTIONS(4434), 1, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(6605), 1, anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126045] = 3, - ACTIONS(4312), 1, + ACTIONS(6607), 1, anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4314), 12, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126067] = 4, - ACTIONS(4207), 1, - anon_sym_EQ, - ACTIONS(6652), 1, + ACTIONS(6609), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4209), 11, + ACTIONS(4436), 9, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -244660,44 +242725,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_GT, - [126091] = 6, - ACTIONS(6400), 1, - anon_sym_LT, - ACTIONS(6654), 1, - anon_sym_DOT, - ACTIONS(6656), 1, - anon_sym_is, - STATE(3383), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3567), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [126119] = 6, - ACTIONS(4304), 1, + [125980] = 6, + ACTIONS(4442), 1, anon_sym_EQ, - ACTIONS(6604), 1, + ACTIONS(6605), 1, anon_sym_AMP, - ACTIONS(6606), 1, + ACTIONS(6607), 1, anon_sym_PIPE, - ACTIONS(6608), 1, + ACTIONS(6609), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4306), 9, + ACTIONS(4444), 9, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -244707,34 +242748,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_GT, anon_sym_GT, - [126147] = 3, - ACTIONS(4245), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4247), 12, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126169] = 4, - ACTIONS(4159), 1, + [126008] = 4, + ACTIONS(4304), 1, anon_sym_EQ, - ACTIONS(6604), 1, + ACTIONS(6605), 1, anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4161), 11, + ACTIONS(4306), 11, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -244746,17 +242768,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT, anon_sym_extends, - [126193] = 5, - ACTIONS(4085), 1, + [126032] = 5, + ACTIONS(4108), 1, anon_sym_PIPE, - ACTIONS(6362), 1, + ACTIONS(6345), 1, anon_sym_LT, - STATE(3256), 1, + STATE(3217), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4087), 10, + ACTIONS(4110), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244767,19 +242789,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126219] = 6, - ACTIONS(4177), 1, + [126058] = 10, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + ACTIONS(6455), 1, + anon_sym_COLON, + ACTIONS(6645), 1, + anon_sym_QMARK, + STATE(3315), 1, + sym_formal_parameters, + STATE(3627), 1, + sym__call_signature, + STATE(4030), 1, + sym_type_annotation, + STATE(5233), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6619), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [126094] = 6, + ACTIONS(4292), 1, anon_sym_EQ, - ACTIONS(6604), 1, + ACTIONS(6605), 1, anon_sym_AMP, - ACTIONS(6606), 1, + ACTIONS(6607), 1, anon_sym_PIPE, - ACTIONS(6608), 1, + ACTIONS(6609), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4179), 9, + ACTIONS(4294), 9, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -244789,108 +242837,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_GT, anon_sym_GT, - [126247] = 3, - ACTIONS(3691), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3491), 12, - sym__automatic_semicolon, + [126122] = 6, + ACTIONS(4332), 1, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, + ACTIONS(6605), 1, anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126269] = 4, - ACTIONS(1887), 1, - anon_sym_DOT, - ACTIONS(4285), 1, + ACTIONS(6607), 1, anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4287), 11, - 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_LT, + ACTIONS(6609), 1, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126293] = 10, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(6478), 1, - anon_sym_COLON, - ACTIONS(6658), 1, - anon_sym_QMARK, - STATE(3317), 1, - sym_formal_parameters, - STATE(3684), 1, - sym__call_signature, - STATE(4046), 1, - sym_type_annotation, - STATE(5224), 1, - sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6646), 5, - sym__automatic_semicolon, + ACTIONS(4334), 9, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [126329] = 10, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(6478), 1, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(6660), 1, - anon_sym_QMARK, - STATE(3317), 1, - sym_formal_parameters, - STATE(3672), 1, - sym__call_signature, - STATE(3988), 1, - sym_type_annotation, - STATE(5224), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6610), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [126365] = 5, - ACTIONS(3521), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_GT, + [126150] = 5, + ACTIONS(3522), 1, + anon_sym_PIPE, + ACTIONS(3530), 1, anon_sym_DOT, - ACTIONS(3525), 1, + ACTIONS(3532), 1, anon_sym_QMARK_DOT, - ACTIONS(3527), 1, - anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3517), 10, + ACTIONS(3512), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244901,11 +242880,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126391] = 2, + [126176] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4255), 13, + ACTIONS(4240), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244919,975 +242898,870 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [126411] = 7, - ACTIONS(3813), 1, - anon_sym_COMMA, - ACTIONS(3865), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, + [126196] = 11, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, - aux_sym_object_repeat1, + ACTIONS(6455), 1, + anon_sym_COLON, + ACTIONS(6509), 1, + anon_sym_LPAREN, + STATE(3330), 1, + sym_formal_parameters, + STATE(3870), 1, + sym__call_signature, + STATE(4241), 1, + sym_type_annotation, + STATE(4866), 1, + sym__initializer, + STATE(5249), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3819), 7, + ACTIONS(6647), 3, sym__automatic_semicolon, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, + [126233] = 5, + ACTIONS(6381), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [126440] = 4, - ACTIONS(4085), 1, - anon_sym_PIPE, - ACTIONS(6662), 1, - anon_sym_is, + ACTIONS(6631), 1, + anon_sym_DOT, + STATE(3319), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4087), 10, + ACTIONS(3548), 9, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126463] = 11, - ACTIONS(2570), 1, + [126258] = 9, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6470), 1, - anon_sym_EQ, - ACTIONS(6476), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3893), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4043), 1, + STATE(4055), 1, + sym__call_signature, + STATE(4058), 1, sym_type_annotation, - STATE(5118), 1, - sym__initializer, - STATE(5354), 1, + STATE(5233), 1, sym_type_parameters, - STATE(5432), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6664), 3, + ACTIONS(6649), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [126500] = 11, - ACTIONS(2570), 1, + anon_sym_PIPE_RBRACE, + [126291] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6470), 1, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6476), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3893), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(3924), 1, + STATE(3952), 1, sym_type_annotation, - STATE(4799), 1, + STATE(5114), 1, sym__initializer, - STATE(5151), 1, - sym__call_signature, - STATE(5354), 1, + STATE(5328), 1, sym_type_parameters, + STATE(5443), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6666), 3, + ACTIONS(6651), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [126537] = 9, - ACTIONS(2570), 1, + [126328] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(6478), 1, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3317), 1, + ACTIONS(6509), 1, + anon_sym_LPAREN, + STATE(3330), 1, sym_formal_parameters, - STATE(4324), 1, + STATE(3757), 1, sym__call_signature, - STATE(4325), 1, + STATE(4314), 1, sym_type_annotation, - STATE(5224), 1, + STATE(5015), 1, + sym__initializer, + STATE(5249), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6668), 5, + ACTIONS(6653), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [126570] = 9, - ACTIONS(2570), 1, + [126365] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3317), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(4041), 1, - sym__call_signature, - STATE(4042), 1, + STATE(3902), 1, sym_type_annotation, - STATE(5224), 1, + STATE(5124), 1, + sym__initializer, + STATE(5137), 1, + sym__call_signature, + STATE(5328), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6670), 5, + ACTIONS(6655), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [126603] = 9, - ACTIONS(2570), 1, + [126402] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(6478), 1, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3317), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(3992), 1, - sym__call_signature, - STATE(4027), 1, + STATE(4314), 1, sym_type_annotation, - STATE(5224), 1, + STATE(5045), 1, + sym__call_signature, + STATE(5046), 1, + sym__initializer, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6672), 5, + ACTIONS(6653), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [126636] = 8, - ACTIONS(6332), 1, - anon_sym_DOT, - ACTIONS(6334), 1, - anon_sym_QMARK_DOT, - ACTIONS(6674), 1, - anon_sym_LPAREN, - ACTIONS(6676), 1, - anon_sym_LT, - STATE(2927), 1, - sym_arguments, - STATE(3033), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4059), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [126667] = 11, - ACTIONS(2570), 1, + [126439] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6470), 1, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6476), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3893), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(4316), 1, + STATE(3960), 1, sym_type_annotation, - STATE(4983), 1, + STATE(4538), 1, sym__initializer, - STATE(5346), 1, + STATE(5148), 1, sym__call_signature, - STATE(5354), 1, + STATE(5328), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6651), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [126704] = 4, - ACTIONS(4109), 1, + [126476] = 3, + ACTIONS(3423), 1, anon_sym_PIPE, - ACTIONS(6392), 1, - anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4111), 10, + ACTIONS(3425), 11, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126727] = 3, - ACTIONS(3400), 1, + [126497] = 4, + ACTIONS(4114), 1, anon_sym_PIPE, + ACTIONS(6421), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3402), 11, + ACTIONS(4116), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126748] = 11, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6470), 1, - anon_sym_EQ, - ACTIONS(6476), 1, - anon_sym_LPAREN, - ACTIONS(6478), 1, - anon_sym_COLON, - STATE(3893), 1, - sym_formal_parameters, - STATE(4081), 1, - sym_type_annotation, - STATE(4584), 1, - sym__initializer, - STATE(5302), 1, - sym__call_signature, - STATE(5354), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6666), 3, - sym__automatic_semicolon, + [126520] = 7, + ACTIONS(3808), 1, anon_sym_COMMA, - anon_sym_SEMI, - [126785] = 11, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6470), 1, + ACTIONS(3909), 1, + anon_sym_RBRACE, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(6476), 1, - anon_sym_LPAREN, - ACTIONS(6478), 1, - anon_sym_COLON, - STATE(3893), 1, - sym_formal_parameters, - STATE(4014), 1, - sym_type_annotation, - STATE(4932), 1, - sym__initializer, - STATE(5275), 1, - sym__call_signature, - STATE(5354), 1, - sym_type_parameters, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(3814), 7, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [126822] = 11, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6470), 1, - anon_sym_EQ, - ACTIONS(6476), 1, anon_sym_LPAREN, - ACTIONS(6478), 1, - anon_sym_COLON, - STATE(3893), 1, - sym_formal_parameters, - STATE(3910), 1, - sym_type_annotation, - STATE(4534), 1, - sym__initializer, - STATE(5312), 1, - sym__call_signature, - STATE(5354), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6666), 3, - sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [126859] = 9, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(6478), 1, anon_sym_COLON, - STATE(3317), 1, - sym_formal_parameters, - STATE(4103), 1, - sym__call_signature, - STATE(4104), 1, - sym_type_annotation, - STATE(5224), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6682), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [126892] = 9, - ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(6478), 1, - anon_sym_COLON, - STATE(3317), 1, - sym_formal_parameters, - STATE(3689), 1, - sym__call_signature, - STATE(4325), 1, - sym_type_annotation, - STATE(5224), 1, - sym_type_parameters, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [126549] = 3, + ACTIONS(4178), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6668), 5, + ACTIONS(4180), 11, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [126925] = 9, - ACTIONS(2570), 1, + [126570] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3317), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(3693), 1, - sym__call_signature, - STATE(4104), 1, + STATE(4128), 1, sym_type_annotation, - STATE(5224), 1, + STATE(4635), 1, + sym__initializer, + STATE(5141), 1, + sym__call_signature, + STATE(5328), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6682), 5, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [126958] = 11, - ACTIONS(2570), 1, + [126607] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6470), 1, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6486), 1, + ACTIONS(6509), 1, anon_sym_LPAREN, - STATE(3364), 1, + STATE(3330), 1, sym_formal_parameters, - STATE(3879), 1, + STATE(3783), 1, sym__call_signature, - STATE(4352), 1, + STATE(4328), 1, sym_type_annotation, - STATE(5043), 1, + STATE(5047), 1, sym__initializer, - STATE(5316), 1, + STATE(5249), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6684), 3, + ACTIONS(6659), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [126995] = 11, - ACTIONS(2570), 1, + [126644] = 8, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6470), 1, - anon_sym_EQ, - ACTIONS(6478), 1, - anon_sym_COLON, - ACTIONS(6486), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - STATE(3364), 1, + ACTIONS(4622), 1, + anon_sym_EQ, + STATE(3615), 1, sym_formal_parameters, - STATE(3869), 1, - sym__call_signature, - STATE(4341), 1, - sym_type_annotation, - STATE(5023), 1, - sym__initializer, - STATE(5316), 1, + STATE(5411), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6686), 3, - sym__automatic_semicolon, + ACTIONS(4074), 2, anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3814), 5, + sym__automatic_semicolon, anon_sym_SEMI, - [127032] = 11, - ACTIONS(2570), 1, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [126675] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6470), 1, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6476), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3893), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(4114), 1, + STATE(4019), 1, sym_type_annotation, - STATE(4649), 1, + STATE(4816), 1, sym__initializer, - STATE(5205), 1, + STATE(5151), 1, sym__call_signature, - STATE(5354), 1, + STATE(5328), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6651), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [127069] = 11, - ACTIONS(2570), 1, + [126712] = 9, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, - anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3317), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4341), 1, - sym_type_annotation, - STATE(5060), 1, + STATE(3608), 1, sym__call_signature, - STATE(5077), 1, - sym__initializer, - STATE(5224), 1, + STATE(4267), 1, + sym_type_annotation, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6686), 3, + ACTIONS(6661), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [127106] = 9, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, + anon_sym_PIPE_RBRACE, + [126745] = 4, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(6478), 1, - anon_sym_COLON, - STATE(3317), 1, - sym_formal_parameters, - STATE(4283), 1, - sym__call_signature, - STATE(4284), 1, - sym_type_annotation, - STATE(5224), 1, - sym_type_parameters, + STATE(1669), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 5, - sym__automatic_semicolon, + ACTIONS(4326), 10, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [127139] = 11, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6470), 1, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_extends, + [126768] = 7, + ACTIONS(3808), 1, + anon_sym_COMMA, + ACTIONS(3906), 1, + anon_sym_RBRACE, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(6478), 1, - anon_sym_COLON, - ACTIONS(6486), 1, - anon_sym_LPAREN, - STATE(3364), 1, - sym_formal_parameters, - STATE(3778), 1, - sym__call_signature, - STATE(4210), 1, - sym_type_annotation, - STATE(4817), 1, - sym__initializer, - STATE(5316), 1, - sym_type_parameters, + STATE(4810), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6690), 3, + ACTIONS(3814), 7, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, - [127176] = 11, - ACTIONS(2570), 1, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [126797] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6470), 1, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6476), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3893), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(4122), 1, + STATE(4022), 1, sym_type_annotation, - STATE(4667), 1, + STATE(4833), 1, sym__initializer, - STATE(5250), 1, + STATE(5164), 1, sym__call_signature, - STATE(5354), 1, + STATE(5328), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6651), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [127213] = 12, - ACTIONS(1643), 1, + [126834] = 12, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(1645), 1, + ACTIONS(1628), 1, anon_sym_SQUOTE, - ACTIONS(6350), 1, + ACTIONS(6327), 1, anon_sym_STAR, - ACTIONS(6354), 1, + ACTIONS(6331), 1, anon_sym_LBRACE, - ACTIONS(6462), 1, + ACTIONS(6471), 1, sym_identifier, - ACTIONS(6464), 1, + ACTIONS(6473), 1, anon_sym_type, - STATE(4331), 1, + STATE(4299), 1, sym_string, - STATE(4332), 1, + STATE(4300), 1, sym_import_require_clause, - STATE(5313), 1, + STATE(5136), 1, sym__import_identifier, - STATE(5369), 1, + STATE(5337), 1, sym_import_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5782), 2, + STATE(5844), 2, sym_namespace_import, sym_named_imports, - [127252] = 11, - ACTIONS(2570), 1, + [126873] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6470), 1, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6476), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3893), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(4357), 1, + STATE(4204), 1, sym_type_annotation, - STATE(5049), 1, + STATE(4773), 1, sym__initializer, - STATE(5354), 1, + STATE(5328), 1, sym_type_parameters, - STATE(5427), 1, + STATE(5402), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6666), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [127289] = 5, - ACTIONS(6394), 1, - anon_sym_LPAREN, - ACTIONS(6692), 1, - anon_sym_DOT, - STATE(3301), 1, - sym_arguments, + [126910] = 3, + ACTIONS(3417), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4119), 9, + ACTIONS(3419), 11, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [127314] = 11, - ACTIONS(2570), 1, + anon_sym_PIPE_RBRACE, + [126931] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6470), 1, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6476), 1, - anon_sym_LPAREN, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3893), 1, + ACTIONS(6509), 1, + anon_sym_LPAREN, + STATE(3330), 1, sym_formal_parameters, - STATE(4031), 1, + STATE(3855), 1, + sym__call_signature, + STATE(4054), 1, sym_type_annotation, - STATE(5109), 1, + STATE(5007), 1, sym__initializer, - STATE(5354), 1, + STATE(5249), 1, sym_type_parameters, - STATE(5438), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(6665), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [127351] = 3, - ACTIONS(4113), 1, - anon_sym_PIPE, + [126968] = 5, + ACTIONS(6375), 1, + anon_sym_LPAREN, + ACTIONS(6667), 1, + anon_sym_DOT, + STATE(3289), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4115), 11, + ACTIONS(4080), 9, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_is, - anon_sym_PIPE_RBRACE, - [127372] = 2, + [126993] = 11, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6453), 1, + anon_sym_LPAREN, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(3806), 1, + sym_formal_parameters, + STATE(4141), 1, + sym_type_annotation, + STATE(4660), 1, + sym__initializer, + STATE(5177), 1, + sym__call_signature, + STATE(5328), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1743), 12, - anon_sym_as, + ACTIONS(6663), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_SEMI, + [127030] = 11, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6453), 1, anon_sym_LPAREN, + ACTIONS(6455), 1, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_extends, - [127391] = 3, - ACTIONS(4215), 1, - anon_sym_PIPE, + STATE(3806), 1, + sym_formal_parameters, + STATE(4065), 1, + sym_type_annotation, + STATE(5040), 1, + sym__initializer, + STATE(5328), 1, + sym_type_parameters, + STATE(5393), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4213), 11, + ACTIONS(6657), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [127412] = 2, + [127067] = 7, + ACTIONS(3808), 1, + anon_sym_COMMA, + ACTIONS(3912), 1, + anon_sym_RBRACE, + ACTIONS(4622), 1, + anon_sym_EQ, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1747), 12, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3814), 7, + sym__automatic_semicolon, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_LT, anon_sym_QMARK, - anon_sym_extends, - [127431] = 8, - ACTIONS(3550), 1, - anon_sym_COLON, - ACTIONS(6063), 1, + anon_sym_PIPE_RBRACE, + [127096] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6344), 1, - anon_sym_DOT, - ACTIONS(6694), 1, - anon_sym_QMARK, - STATE(3035), 1, - sym_type_arguments, - STATE(5200), 1, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6453), 1, + anon_sym_LPAREN, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(3806), 1, + sym_formal_parameters, + STATE(4346), 1, sym_type_annotation, + STATE(5072), 1, + sym__initializer, + STATE(5328), 1, + sym_type_parameters, + STATE(5415), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3567), 6, + ACTIONS(6651), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [127462] = 3, - ACTIONS(1767), 1, - anon_sym_PIPE, + anon_sym_SEMI, + [127133] = 7, + ACTIONS(3808), 1, + anon_sym_COMMA, + ACTIONS(3811), 1, + anon_sym_RBRACE, + ACTIONS(4622), 1, + anon_sym_EQ, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1765), 11, + ACTIONS(3814), 7, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_is, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [127483] = 11, - ACTIONS(2570), 1, + [127162] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6470), 1, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6476), 1, - anon_sym_LPAREN, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3893), 1, + ACTIONS(6509), 1, + anon_sym_LPAREN, + STATE(3330), 1, sym_formal_parameters, - STATE(4313), 1, + STATE(3847), 1, + sym__call_signature, + STATE(4100), 1, sym_type_annotation, - STATE(4975), 1, + STATE(4574), 1, sym__initializer, - STATE(5337), 1, - sym__call_signature, - STATE(5354), 1, + STATE(5249), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6669), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [127520] = 8, - ACTIONS(2570), 1, + [127199] = 9, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(4593), 1, - anon_sym_EQ, - STATE(3602), 1, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(3315), 1, sym_formal_parameters, - STATE(5238), 1, + STATE(4181), 1, + sym__call_signature, + STATE(4182), 1, + sym_type_annotation, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4065), 2, + ACTIONS(6671), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3819), 5, - sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [127551] = 4, - ACTIONS(4261), 1, - anon_sym_PIPE, - ACTIONS(6697), 1, + [127232] = 8, + ACTIONS(3557), 1, + anon_sym_COLON, + ACTIONS(3576), 1, + anon_sym_LT, + ACTIONS(6343), 1, anon_sym_DOT, + ACTIONS(6673), 1, + anon_sym_QMARK, + STATE(2964), 1, + sym_type_arguments, + STATE(5159), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4263), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, + ACTIONS(3548), 6, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [127574] = 7, - ACTIONS(3813), 1, - anon_sym_COMMA, - ACTIONS(3862), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, - anon_sym_EQ, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3819), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + [127263] = 9, + ACTIONS(2499), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [127603] = 7, - ACTIONS(3813), 1, - anon_sym_COMMA, - ACTIONS(3938), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, - anon_sym_EQ, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3819), 7, - sym__automatic_semicolon, + ACTIONS(3281), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(6455), 1, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [127632] = 4, - ACTIONS(4091), 1, - anon_sym_PIPE, - ACTIONS(6392), 1, - anon_sym_is, + STATE(3315), 1, + sym_formal_parameters, + STATE(3626), 1, + sym__call_signature, + STATE(4027), 1, + sym_type_annotation, + STATE(5233), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4093), 10, + ACTIONS(6676), 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_extends, anon_sym_PIPE_RBRACE, - [127655] = 7, - ACTIONS(3813), 1, - anon_sym_COMMA, - ACTIONS(3847), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, + [127296] = 11, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, - aux_sym_object_repeat1, + ACTIONS(6453), 1, + anon_sym_LPAREN, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(3806), 1, + sym_formal_parameters, + STATE(4170), 1, + sym_type_annotation, + STATE(4729), 1, + sym__initializer, + STATE(5328), 1, + sym_type_parameters, + STATE(5336), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3819), 7, + ACTIONS(6657), 3, sym__automatic_semicolon, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, + [127333] = 11, + ACTIONS(2499), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [127684] = 3, - ACTIONS(3368), 1, - anon_sym_PIPE, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6453), 1, + anon_sym_LPAREN, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(3806), 1, + sym_formal_parameters, + STATE(4337), 1, + sym_type_annotation, + STATE(5063), 1, + sym__initializer, + STATE(5328), 1, + sym_type_parameters, + STATE(5406), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3370), 11, + ACTIONS(6651), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [127705] = 3, - ACTIONS(4275), 1, + [127370] = 3, + ACTIONS(1900), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4277), 11, + ACTIONS(1898), 11, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -245895,408 +243769,479 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_AMP, anon_sym_extends, + anon_sym_is, anon_sym_PIPE_RBRACE, - [127726] = 11, - ACTIONS(2570), 1, + [127391] = 9, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6470), 1, - anon_sym_EQ, - ACTIONS(6476), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3893), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4265), 1, - sym_type_annotation, - STATE(5137), 1, - sym__initializer, - STATE(5225), 1, + STATE(3527), 1, sym__call_signature, - STATE(5354), 1, + STATE(4058), 1, + sym_type_annotation, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6649), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [127763] = 11, - ACTIONS(2570), 1, + anon_sym_PIPE_RBRACE, + [127424] = 9, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6470), 1, - anon_sym_EQ, - ACTIONS(6478), 1, - anon_sym_COLON, - ACTIONS(6486), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - STATE(3364), 1, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(3315), 1, sym_formal_parameters, - STATE(3804), 1, + STATE(3604), 1, sym__call_signature, - STATE(4254), 1, + STATE(4278), 1, sym_type_annotation, - STATE(4851), 1, - sym__initializer, - STATE(5316), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6699), 3, + ACTIONS(6678), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [127800] = 8, - ACTIONS(3537), 1, + anon_sym_PIPE_RBRACE, + [127457] = 8, + ACTIONS(3516), 1, anon_sym_DOT, - ACTIONS(3539), 1, + ACTIONS(3520), 1, anon_sym_QMARK_DOT, - ACTIONS(6674), 1, + ACTIONS(6680), 1, anon_sym_LPAREN, - ACTIONS(6676), 1, + ACTIONS(6682), 1, anon_sym_LT, - STATE(2936), 1, + STATE(2917), 1, + sym_arguments, + STATE(3015), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3512), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [127488] = 8, + ACTIONS(6317), 1, + anon_sym_DOT, + ACTIONS(6319), 1, + anon_sym_QMARK_DOT, + ACTIONS(6680), 1, + anon_sym_LPAREN, + ACTIONS(6682), 1, + anon_sym_LT, + STATE(2918), 1, + sym_arguments, + STATE(2975), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4070), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [127519] = 8, + ACTIONS(6321), 1, + anon_sym_DOT, + ACTIONS(6323), 1, + anon_sym_QMARK_DOT, + ACTIONS(6680), 1, + anon_sym_LPAREN, + ACTIONS(6682), 1, + anon_sym_LT, + STATE(2920), 1, sym_arguments, - STATE(3032), 1, + STATE(2973), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3517), 6, + ACTIONS(4062), 6, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [127831] = 11, - ACTIONS(2570), 1, + [127550] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3317), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4210), 1, + STATE(4100), 1, sym_type_annotation, - STATE(5022), 1, + STATE(4978), 1, sym__call_signature, - STATE(5024), 1, + STATE(4979), 1, sym__initializer, - STATE(5224), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6690), 3, + ACTIONS(6669), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [127868] = 11, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6470), 1, + [127587] = 4, + ACTIONS(4250), 1, + anon_sym_PIPE, + ACTIONS(6684), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4252), 10, + 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_extends, + anon_sym_PIPE_RBRACE, + [127610] = 3, + ACTIONS(3427), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3429), 11, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(6476), 1, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [127631] = 9, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3893), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4249), 1, - sym_type_annotation, - STATE(4835), 1, - sym__initializer, - STATE(5191), 1, + STATE(4026), 1, sym__call_signature, - STATE(5354), 1, + STATE(4027), 1, + sym_type_annotation, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6701), 3, + ACTIONS(6676), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [127905] = 11, - ACTIONS(2570), 1, + anon_sym_PIPE_RBRACE, + [127664] = 9, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6470), 1, - anon_sym_EQ, - ACTIONS(6478), 1, - anon_sym_COLON, - ACTIONS(6486), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - STATE(3364), 1, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(3315), 1, sym_formal_parameters, - STATE(3824), 1, + STATE(4266), 1, sym__call_signature, - STATE(4098), 1, + STATE(4267), 1, sym_type_annotation, - STATE(4620), 1, - sym__initializer, - STATE(5316), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6703), 3, + ACTIONS(6661), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [127942] = 8, - ACTIONS(6336), 1, - anon_sym_DOT, - ACTIONS(6338), 1, - anon_sym_QMARK_DOT, - ACTIONS(6674), 1, - anon_sym_LPAREN, - ACTIONS(6676), 1, - anon_sym_LT, - STATE(2922), 1, - sym_arguments, - STATE(3034), 1, - sym_type_arguments, + anon_sym_PIPE_RBRACE, + [127697] = 3, + ACTIONS(4084), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4073), 6, - anon_sym_as, + ACTIONS(4086), 11, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [127973] = 11, - ACTIONS(2570), 1, + anon_sym_is, + anon_sym_PIPE_RBRACE, + [127718] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6470), 1, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6476), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3893), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(4286), 1, + STATE(4302), 1, sym_type_annotation, - STATE(4906), 1, + STATE(4995), 1, sym__initializer, - STATE(5272), 1, - sym__call_signature, - STATE(5354), 1, + STATE(5328), 1, sym_type_parameters, + STATE(5335), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [128010] = 11, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6470), 1, - anon_sym_EQ, - ACTIONS(6476), 1, - anon_sym_LPAREN, - ACTIONS(6478), 1, - anon_sym_COLON, - STATE(3893), 1, - sym_formal_parameters, - STATE(4082), 1, - sym_type_annotation, - STATE(4776), 1, - sym__initializer, - STATE(5354), 1, - sym_type_parameters, - STATE(5431), 1, - sym__call_signature, + [127755] = 3, + ACTIONS(4118), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(4120), 11, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [128047] = 5, - ACTIONS(6400), 1, - anon_sym_LT, - ACTIONS(6654), 1, + anon_sym_LBRACK, anon_sym_DOT, - STATE(3383), 1, - sym_type_arguments, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [127776] = 4, + ACTIONS(4104), 1, + anon_sym_PIPE, + ACTIONS(6421), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3567), 9, + ACTIONS(4106), 10, sym__automatic_semicolon, - sym__function_signature_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, anon_sym_extends, - [128072] = 9, - ACTIONS(2570), 1, + anon_sym_PIPE_RBRACE, + [127799] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3317), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(3683), 1, - sym__call_signature, - STATE(4042), 1, + STATE(4334), 1, sym_type_annotation, - STATE(5224), 1, + STATE(5055), 1, + sym__initializer, + STATE(5328), 1, sym_type_parameters, + STATE(5401), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6670), 5, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [128105] = 11, - ACTIONS(2570), 1, + [127836] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6470), 1, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6476), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3893), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(3918), 1, + STATE(4123), 1, sym_type_annotation, - STATE(4694), 1, + STATE(4619), 1, sym__initializer, - STATE(5273), 1, - sym__call_signature, - STATE(5354), 1, + STATE(5328), 1, sym_type_parameters, + STATE(5439), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [128142] = 9, - ACTIONS(2570), 1, + [127873] = 9, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3317), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(3643), 1, + STATE(4274), 1, sym__call_signature, - STATE(4284), 1, + STATE(4278), 1, sym_type_annotation, - STATE(5224), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 5, + ACTIONS(6678), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [128175] = 4, - ACTIONS(3967), 1, - anon_sym_LPAREN, - STATE(1671), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4457), 10, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_extends, - [128198] = 9, - ACTIONS(2570), 1, + [127906] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3317), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(3673), 1, - sym__call_signature, - STATE(4027), 1, + STATE(4231), 1, sym_type_annotation, - STATE(5224), 1, + STATE(4834), 1, + sym__initializer, + STATE(5170), 1, + sym__call_signature, + STATE(5328), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6672), 5, + ACTIONS(6686), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [128231] = 3, - ACTIONS(3336), 1, + [127943] = 4, + ACTIONS(4108), 1, anon_sym_PIPE, + ACTIONS(6688), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3338), 11, + ACTIONS(4110), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128252] = 7, - ACTIONS(3813), 1, + [127966] = 9, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(3315), 1, + sym_formal_parameters, + STATE(3633), 1, + sym__call_signature, + STATE(4182), 1, + sym_type_annotation, + STATE(5233), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6671), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [127999] = 7, + ACTIONS(3808), 1, anon_sym_COMMA, - ACTIONS(3816), 1, + ACTIONS(3925), 1, anon_sym_RBRACE, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - STATE(4823), 1, + STATE(4792), 1, aux_sym_object_repeat1, - STATE(4834), 1, + STATE(4815), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3819), 7, + ACTIONS(3814), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -246304,34 +244249,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [128281] = 2, + [128028] = 3, + ACTIONS(4324), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3210), 11, + ACTIONS(4326), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [128299] = 5, - ACTIONS(4199), 1, + anon_sym_PIPE_RBRACE, + [128048] = 5, + ACTIONS(4170), 1, anon_sym_PIPE, - ACTIONS(6705), 1, + ACTIONS(6690), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4201), 2, + ACTIONS(4172), 2, anon_sym_AMP, anon_sym_extends, - ACTIONS(4195), 7, + ACTIONS(4452), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -246339,13 +244285,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [128323] = 3, - ACTIONS(2374), 1, + [128072] = 3, + ACTIONS(4174), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2372), 10, + ACTIONS(4176), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -246356,15 +244302,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128343] = 4, - ACTIONS(4207), 1, + [128092] = 3, + ACTIONS(2371), 1, anon_sym_PIPE, - ACTIONS(6707), 1, - anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4209), 9, + ACTIONS(2369), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -246373,14 +244317,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [128365] = 3, - ACTIONS(4173), 1, + [128112] = 4, + ACTIONS(4190), 1, anon_sym_PIPE, + ACTIONS(6692), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4175), 10, + ACTIONS(4192), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -246389,52 +244336,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [128385] = 5, - ACTIONS(6709), 1, - anon_sym_AMP, - ACTIONS(6711), 1, - anon_sym_PIPE, - ACTIONS(6713), 1, - anon_sym_extends, + [128134] = 4, + ACTIONS(6427), 1, + anon_sym_DOT, + ACTIONS(6429), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4437), 8, + ACTIONS(3512), 9, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_PIPE_RBRACE, - [128409] = 4, - ACTIONS(4233), 1, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(6705), 1, - anon_sym_LBRACK, + anon_sym_extends, + [128156] = 4, + ACTIONS(6694), 1, + anon_sym_DOT, + ACTIONS(6696), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4235), 9, + ACTIONS(4226), 9, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [128431] = 3, - ACTIONS(4344), 1, + [128178] = 5, + ACTIONS(6698), 1, + anon_sym_AMP, + ACTIONS(6700), 1, anon_sym_PIPE, + ACTIONS(6702), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4346), 10, + ACTIONS(4294), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -246442,86 +244391,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [128451] = 3, - ACTIONS(4400), 1, - anon_sym_PIPE, + [128202] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4402), 10, + ACTIONS(3227), 11, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [128471] = 5, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(4455), 1, anon_sym_PIPE, - STATE(1671), 1, - sym_arguments, + anon_sym_extends, + [128220] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 8, + ACTIONS(4322), 11, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [128495] = 3, - ACTIONS(2382), 1, anon_sym_PIPE, + anon_sym_extends, + [128238] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2380), 10, + ACTIONS(4330), 11, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [128515] = 3, - ACTIONS(4316), 1, anon_sym_PIPE, + anon_sym_extends, + [128256] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4318), 10, + ACTIONS(4348), 11, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, + [128274] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3814), 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, - [128535] = 3, - ACTIONS(1887), 1, + [128292] = 3, + ACTIONS(1888), 1, anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4287), 10, + ACTIONS(4386), 10, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -246532,13 +244489,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [128555] = 3, - ACTIONS(2386), 1, + [128312] = 3, + ACTIONS(4402), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2384), 10, + ACTIONS(4404), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -246549,55 +244506,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128575] = 3, - ACTIONS(4147), 1, - anon_sym_PIPE, + [128332] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4149), 10, + ACTIONS(3474), 11, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [128595] = 11, - ACTIONS(2344), 1, - anon_sym_DQUOTE, - ACTIONS(2346), 1, - anon_sym_SQUOTE, - ACTIONS(6715), 1, - sym_identifier, - ACTIONS(6717), 1, - anon_sym_type, - ACTIONS(6719), 1, - anon_sym_COMMA, - ACTIONS(6721), 1, - anon_sym_RBRACE, - ACTIONS(6723), 1, - anon_sym_typeof, - STATE(4990), 1, - sym_import_specifier, - STATE(5429), 1, - sym__import_identifier, + [128350] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5689), 2, - sym__module_export_name, - sym_string, - [128631] = 3, - ACTIONS(4189), 1, + ACTIONS(3478), 11, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [128368] = 3, + ACTIONS(4256), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4191), 10, + ACTIONS(4258), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -246608,61 +244555,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128651] = 3, - ACTIONS(4203), 1, + [128388] = 3, + ACTIONS(1892), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4386), 10, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [128408] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4205), 10, + ACTIONS(4416), 11, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [128671] = 2, + [128426] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4247), 11, + ACTIONS(4420), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [128689] = 3, - ACTIONS(4368), 1, + [128444] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4424), 11, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_extends, + [128462] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4370), 10, + ACTIONS(4428), 11, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [128709] = 2, + [128480] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3214), 11, + ACTIONS(3235), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -246674,13 +244652,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [128727] = 3, - ACTIONS(4376), 1, + [128498] = 3, + ACTIONS(4260), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4378), 10, + ACTIONS(4262), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -246691,13 +244669,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128747] = 3, - ACTIONS(4091), 1, + [128518] = 3, + ACTIONS(4264), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4093), 10, + ACTIONS(4266), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -246708,13 +244686,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128767] = 3, - ACTIONS(4123), 1, + [128538] = 3, + ACTIONS(2363), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4125), 10, + ACTIONS(2361), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -246725,30 +244703,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128787] = 3, - ACTIONS(1891), 1, - anon_sym_DOT, + [128558] = 5, + ACTIONS(6698), 1, + anon_sym_AMP, + ACTIONS(6700), 1, + anon_sym_PIPE, + ACTIONS(6702), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4287), 10, + ACTIONS(4404), 8, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_PIPE_RBRACE, + [128582] = 3, + ACTIONS(4316), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4318), 10, + 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_extends, + anon_sym_PIPE_RBRACE, + [128602] = 5, + ACTIONS(6698), 1, + anon_sym_AMP, + ACTIONS(6700), 1, anon_sym_PIPE, - anon_sym_LT, + ACTIONS(6702), 1, anon_sym_extends, - [128807] = 3, - ACTIONS(4304), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4334), 8, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_PIPE_RBRACE, + [128626] = 3, + ACTIONS(2379), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4306), 10, + ACTIONS(2377), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -246759,13 +244775,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128827] = 3, - ACTIONS(4155), 1, + [128646] = 3, + ACTIONS(4430), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4157), 10, + ACTIONS(4432), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -246776,45 +244792,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128847] = 2, + [128666] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4330), 11, + ACTIONS(3239), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [128865] = 2, + [128684] = 4, + ACTIONS(4438), 1, + anon_sym_PIPE, + ACTIONS(6698), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4131), 11, + ACTIONS(4440), 9, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [128883] = 3, - ACTIONS(4199), 1, + anon_sym_PIPE_RBRACE, + [128706] = 3, + ACTIONS(4446), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4201), 10, + ACTIONS(4448), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -246825,31 +244843,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128903] = 4, - ACTIONS(4199), 1, + [128726] = 3, + ACTIONS(4391), 1, anon_sym_PIPE, - ACTIONS(6705), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4201), 9, + ACTIONS(4393), 10, 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_extends, anon_sym_PIPE_RBRACE, - [128925] = 3, - ACTIONS(4085), 1, + [128746] = 5, + ACTIONS(6698), 1, + anon_sym_AMP, + ACTIONS(6700), 1, anon_sym_PIPE, + ACTIONS(6702), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4087), 10, + ACTIONS(4444), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -246857,16 +244878,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [128945] = 3, - ACTIONS(4404), 1, + [128770] = 3, + ACTIONS(2367), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4406), 10, + ACTIONS(2365), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -246877,47 +244896,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128965] = 2, + [128790] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3218), 11, + ACTIONS(5494), 11, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [128983] = 4, - ACTIONS(4159), 1, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [128808] = 4, + ACTIONS(4212), 1, anon_sym_PIPE, - ACTIONS(6709), 1, - anon_sym_AMP, + ACTIONS(6690), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4161), 9, + ACTIONS(4214), 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_extends, anon_sym_PIPE_RBRACE, - [129005] = 3, - ACTIONS(4271), 1, + [128830] = 3, + ACTIONS(4342), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4273), 10, + ACTIONS(4344), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -246928,17 +244947,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [129025] = 5, - ACTIONS(6709), 1, - anon_sym_AMP, - ACTIONS(6711), 1, + [128850] = 11, + ACTIONS(3109), 1, + anon_sym_DQUOTE, + ACTIONS(3111), 1, + anon_sym_SQUOTE, + ACTIONS(6704), 1, + sym_identifier, + ACTIONS(6706), 1, + anon_sym_type, + ACTIONS(6708), 1, + anon_sym_COMMA, + ACTIONS(6710), 1, + anon_sym_RBRACE, + ACTIONS(6712), 1, + anon_sym_typeof, + STATE(5029), 1, + sym_import_specifier, + STATE(5384), 1, + sym__import_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5604), 2, + sym__module_export_name, + sym_string, + [128886] = 3, + ACTIONS(4350), 1, anon_sym_PIPE, - ACTIONS(6713), 1, - anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4179), 8, + ACTIONS(4352), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -246946,18 +244986,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_PIPE_RBRACE, - [129049] = 5, - ACTIONS(6709), 1, anon_sym_AMP, - ACTIONS(6711), 1, - anon_sym_PIPE, - ACTIONS(6713), 1, anon_sym_extends, + anon_sym_PIPE_RBRACE, + [128906] = 3, + ACTIONS(4354), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4223), 8, + ACTIONS(4356), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -246965,34 +245003,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [129073] = 2, + [128926] = 3, + ACTIONS(4186), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3819), 11, + ACTIONS(4188), 10, 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_PIPE_RBRACE, - [129091] = 5, - ACTIONS(6709), 1, + anon_sym_LBRACK, anon_sym_AMP, - ACTIONS(6711), 1, - anon_sym_PIPE, - ACTIONS(6713), 1, anon_sym_extends, + anon_sym_PIPE_RBRACE, + [128946] = 3, + ACTIONS(4358), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4441), 8, + ACTIONS(4360), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -247000,14 +245037,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [129115] = 3, - ACTIONS(4225), 1, + [128966] = 3, + ACTIONS(4196), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4227), 10, + ACTIONS(4198), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -247018,67 +245057,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [129135] = 6, - ACTIONS(2570), 1, + [128986] = 6, + ACTIONS(3576), 1, anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - STATE(3602), 1, - sym_formal_parameters, - STATE(5238), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3819), 7, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [129161] = 2, + ACTIONS(6343), 1, + anon_sym_DOT, + ACTIONS(6714), 1, + anon_sym_is, + STATE(2964), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3493), 11, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(3548), 7, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, + anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - [129179] = 2, + [129012] = 3, + ACTIONS(4372), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4334), 11, + ACTIONS(4374), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [129197] = 4, - ACTIONS(4360), 1, + anon_sym_PIPE_RBRACE, + [129032] = 3, + ACTIONS(4368), 1, anon_sym_PIPE, - ACTIONS(6709), 1, - anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4362), 9, + ACTIONS(4370), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -247086,15 +245108,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [129219] = 3, - ACTIONS(2390), 1, + [129052] = 3, + ACTIONS(4406), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2388), 10, + ACTIONS(4408), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -247105,29 +245128,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [129239] = 2, + [129072] = 3, + ACTIONS(4104), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4338), 11, + ACTIONS(4106), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [129257] = 3, - ACTIONS(4145), 1, + anon_sym_PIPE_RBRACE, + [129092] = 5, + ACTIONS(6698), 1, + anon_sym_AMP, + ACTIONS(6700), 1, anon_sym_PIPE, + ACTIONS(6702), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4143), 10, + ACTIONS(4204), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -247135,34 +245163,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [129277] = 4, - ACTIONS(6400), 1, - anon_sym_LT, - STATE(3326), 1, - sym_type_arguments, + [129116] = 5, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4324), 1, + anon_sym_PIPE, + STATE(1669), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4087), 9, + ACTIONS(4326), 8, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [129299] = 3, - ACTIONS(4455), 1, + anon_sym_PIPE_RBRACE, + [129140] = 3, + ACTIONS(4216), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 10, + ACTIONS(4218), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -247173,13 +245200,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [129319] = 3, - ACTIONS(4109), 1, + [129160] = 3, + ACTIONS(4220), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4111), 10, + ACTIONS(4222), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -247190,50 +245217,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [129339] = 2, + [129180] = 3, + ACTIONS(4170), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4342), 11, + ACTIONS(4172), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [129357] = 3, - ACTIONS(4320), 1, + anon_sym_PIPE_RBRACE, + [129200] = 4, + ACTIONS(4170), 1, anon_sym_PIPE, + ACTIONS(6690), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4322), 10, + ACTIONS(4172), 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_extends, anon_sym_PIPE_RBRACE, - [129377] = 5, - ACTIONS(6709), 1, - anon_sym_AMP, - ACTIONS(6711), 1, + [129222] = 3, + ACTIONS(4108), 1, anon_sym_PIPE, - ACTIONS(6713), 1, - anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4306), 8, + ACTIONS(4110), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -247241,14 +245266,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [129401] = 3, - ACTIONS(4267), 1, + [129242] = 3, + ACTIONS(4140), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4269), 10, + ACTIONS(4142), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -247259,13 +245286,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [129421] = 3, - ACTIONS(4257), 1, + [129262] = 5, + ACTIONS(6698), 1, + anon_sym_AMP, + ACTIONS(6700), 1, anon_sym_PIPE, + ACTIONS(6702), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4259), 10, + ACTIONS(4222), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -247273,36 +245304,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [129441] = 6, - ACTIONS(6063), 1, - anon_sym_LT, - ACTIONS(6344), 1, - anon_sym_DOT, - ACTIONS(6725), 1, - anon_sym_is, - STATE(3035), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3567), 7, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, + [129286] = 5, + ACTIONS(6698), 1, anon_sym_AMP, + ACTIONS(6700), 1, anon_sym_PIPE, - anon_sym_QMARK, + ACTIONS(6702), 1, anon_sym_extends, - [129467] = 3, - ACTIONS(4364), 1, - anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4366), 10, + ACTIONS(4436), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -247310,16 +245323,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [129487] = 3, - ACTIONS(4165), 1, + [129310] = 3, + ACTIONS(2375), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 10, + ACTIONS(2373), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -247330,15 +245341,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [129507] = 4, - ACTIONS(6727), 1, - anon_sym_DOT, - ACTIONS(6729), 1, - anon_sym_QMARK_DOT, + [129330] = 4, + ACTIONS(6381), 1, + anon_sym_LT, + STATE(3363), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4386), 9, + ACTIONS(4110), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -247348,29 +245359,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [129529] = 2, + [129352] = 6, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + STATE(3615), 1, + sym_formal_parameters, + STATE(5411), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5255), 11, + ACTIONS(3814), 7, 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, - [129547] = 3, - ACTIONS(2378), 1, + [129378] = 3, + ACTIONS(4230), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2376), 10, + ACTIONS(4232), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -247381,13 +245396,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [129567] = 3, - ACTIONS(4229), 1, + [129398] = 3, + ACTIONS(4270), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4231), 10, + ACTIONS(4156), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -247398,32 +245413,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [129587] = 5, - ACTIONS(6709), 1, - anon_sym_AMP, - ACTIONS(6711), 1, - anon_sym_PIPE, - ACTIONS(6713), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4326), 8, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_PIPE_RBRACE, - [129611] = 3, - ACTIONS(4372), 1, + [129418] = 3, + ACTIONS(4300), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4374), 10, + ACTIONS(4302), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -247434,13 +245430,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [129631] = 3, - ACTIONS(4380), 1, + [129438] = 4, + ACTIONS(4304), 1, anon_sym_PIPE, + ACTIONS(6698), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4382), 10, + ACTIONS(4306), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -247448,16 +245446,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [129651] = 3, - ACTIONS(4217), 1, + [129460] = 3, + ACTIONS(4184), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4219), 10, + ACTIONS(4182), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -247468,13 +245465,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [129671] = 3, - ACTIONS(4408), 1, + [129480] = 3, + ACTIONS(4376), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4410), 10, + ACTIONS(4378), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -247485,17 +245482,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [129691] = 5, - ACTIONS(6709), 1, - anon_sym_AMP, - ACTIONS(6711), 1, + [129500] = 3, + ACTIONS(4114), 1, anon_sym_PIPE, - ACTIONS(6713), 1, - anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4231), 8, + ACTIONS(4116), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -247503,16 +245496,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [129715] = 4, - ACTIONS(6396), 1, - anon_sym_DOT, - ACTIONS(6398), 1, - anon_sym_QMARK_DOT, + [129520] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3517), 9, + ACTIONS(1898), 10, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -247522,27 +245513,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [129737] = 2, + anon_sym_is, + [129537] = 3, + ACTIONS(6633), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3491), 11, + ACTIONS(4116), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [129755] = 2, + [129556] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4314), 11, + ACTIONS(4180), 10, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -247550,380 +245542,419 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [129773] = 8, - ACTIONS(6478), 1, - anon_sym_COLON, - ACTIONS(6731), 1, - anon_sym_EQ, - ACTIONS(6735), 1, - anon_sym_BANG, - STATE(4055), 1, - sym_type_annotation, - STATE(4221), 1, - sym__initializer, + [129573] = 11, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6716), 1, + sym_identifier, + ACTIONS(6718), 1, + anon_sym_LBRACE, + ACTIONS(6720), 1, + anon_sym_extends, + ACTIONS(6722), 1, + anon_sym_implements, + STATE(2266), 1, + sym_class_body, + STATE(3685), 1, + sym_type_parameters, + STATE(5080), 1, + sym_extends_clause, + STATE(5418), 1, + sym_class_heritage, + STATE(5792), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6737), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(6733), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [129802] = 11, - ACTIONS(2570), 1, + [129608] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6739), 1, - sym_identifier, - ACTIONS(6741), 1, + ACTIONS(6718), 1, anon_sym_LBRACE, - ACTIONS(6743), 1, + ACTIONS(6720), 1, anon_sym_extends, - ACTIONS(6745), 1, + ACTIONS(6722), 1, anon_sym_implements, - STATE(2177), 1, + ACTIONS(6724), 1, + sym_identifier, + STATE(2277), 1, sym_class_body, - STATE(3634), 1, + STATE(3578), 1, sym_type_parameters, - STATE(4531), 1, + STATE(5080), 1, sym_extends_clause, - STATE(5297), 1, + STATE(5201), 1, sym_class_heritage, - STATE(5879), 1, + STATE(5792), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [129837] = 10, - ACTIONS(2344), 1, + [129643] = 10, + ACTIONS(3109), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(3111), 1, anon_sym_SQUOTE, - ACTIONS(6715), 1, + ACTIONS(6704), 1, sym_identifier, - ACTIONS(6717), 1, + ACTIONS(6706), 1, anon_sym_type, - ACTIONS(6723), 1, + ACTIONS(6712), 1, anon_sym_typeof, - ACTIONS(6747), 1, + ACTIONS(6726), 1, anon_sym_RBRACE, - STATE(5141), 1, + STATE(5314), 1, sym_import_specifier, - STATE(5429), 1, + STATE(5384), 1, sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5689), 2, - sym__module_export_name, - sym_string, - [129870] = 9, - ACTIONS(2344), 1, - anon_sym_DQUOTE, - ACTIONS(2346), 1, - anon_sym_SQUOTE, - ACTIONS(6749), 1, - sym_identifier, - ACTIONS(6753), 1, - anon_sym_COMMA, - ACTIONS(6755), 1, - anon_sym_RBRACE, - STATE(4761), 1, - sym_export_specifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6751), 2, - anon_sym_type, - anon_sym_typeof, - STATE(4762), 2, + STATE(5604), 2, sym__module_export_name, sym_string, - [129901] = 11, - ACTIONS(2570), 1, + [129676] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6741), 1, + ACTIONS(6718), 1, anon_sym_LBRACE, - ACTIONS(6743), 1, + ACTIONS(6720), 1, anon_sym_extends, - ACTIONS(6745), 1, + ACTIONS(6722), 1, anon_sym_implements, - ACTIONS(6757), 1, + ACTIONS(6728), 1, sym_identifier, - STATE(2177), 1, + STATE(2277), 1, sym_class_body, - STATE(3634), 1, + STATE(3578), 1, sym_type_parameters, - STATE(4531), 1, + STATE(5080), 1, sym_extends_clause, - STATE(5297), 1, + STATE(5201), 1, sym_class_heritage, - STATE(5879), 1, + STATE(5792), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [129936] = 2, + [129711] = 11, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6720), 1, + anon_sym_extends, + ACTIONS(6722), 1, + anon_sym_implements, + ACTIONS(6730), 1, + sym_identifier, + ACTIONS(6732), 1, + anon_sym_LBRACE, + STATE(1673), 1, + sym_class_body, + STATE(3716), 1, + sym_type_parameters, + STATE(5080), 1, + sym_extends_clause, + STATE(5149), 1, + sym_class_heritage, + STATE(5792), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4115), 10, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - anon_sym_is, - [129953] = 10, - ACTIONS(2344), 1, + [129746] = 10, + ACTIONS(3109), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(3111), 1, anon_sym_SQUOTE, - ACTIONS(6715), 1, + ACTIONS(6704), 1, sym_identifier, - ACTIONS(6717), 1, + ACTIONS(6706), 1, anon_sym_type, - ACTIONS(6723), 1, + ACTIONS(6712), 1, anon_sym_typeof, - ACTIONS(6759), 1, + ACTIONS(6734), 1, anon_sym_RBRACE, - STATE(5141), 1, + STATE(5314), 1, sym_import_specifier, - STATE(5429), 1, + STATE(5384), 1, sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5689), 2, + STATE(5604), 2, sym__module_export_name, sym_string, - [129986] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4213), 10, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + [129779] = 9, + ACTIONS(3109), 1, + anon_sym_DQUOTE, + ACTIONS(3111), 1, + anon_sym_SQUOTE, + ACTIONS(6736), 1, + sym_identifier, + ACTIONS(6740), 1, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [130003] = 2, + ACTIONS(6742), 1, + anon_sym_RBRACE, + STATE(4730), 1, + sym_export_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4277), 10, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [130020] = 11, - ACTIONS(2570), 1, + ACTIONS(6738), 2, + anon_sym_type, + anon_sym_typeof, + STATE(4735), 2, + sym__module_export_name, + sym_string, + [129810] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6741), 1, + ACTIONS(6718), 1, anon_sym_LBRACE, - ACTIONS(6743), 1, + ACTIONS(6720), 1, anon_sym_extends, - ACTIONS(6745), 1, + ACTIONS(6722), 1, anon_sym_implements, - ACTIONS(6761), 1, + ACTIONS(6744), 1, sym_identifier, - STATE(2127), 1, + STATE(2266), 1, sym_class_body, - STATE(3518), 1, + STATE(3685), 1, sym_type_parameters, - STATE(4531), 1, + STATE(5080), 1, sym_extends_clause, - STATE(5212), 1, + STATE(5418), 1, sym_class_heritage, - STATE(5879), 1, + STATE(5792), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130055] = 11, - ACTIONS(2570), 1, + [129845] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6741), 1, + ACTIONS(6718), 1, anon_sym_LBRACE, - ACTIONS(6743), 1, + ACTIONS(6720), 1, anon_sym_extends, - ACTIONS(6745), 1, + ACTIONS(6722), 1, anon_sym_implements, - ACTIONS(6763), 1, + ACTIONS(6746), 1, sym_identifier, - STATE(2127), 1, + STATE(2266), 1, sym_class_body, - STATE(3518), 1, + STATE(3685), 1, sym_type_parameters, - STATE(4531), 1, + STATE(5080), 1, sym_extends_clause, - STATE(5212), 1, + STATE(5418), 1, sym_class_heritage, - STATE(5879), 1, + STATE(5792), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130090] = 5, - ACTIONS(6059), 1, - anon_sym_LPAREN, - ACTIONS(6372), 1, - anon_sym_DOT, - STATE(2942), 1, - sym_arguments, + [129880] = 4, + ACTIONS(4622), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4119), 7, + ACTIONS(4074), 2, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(3814), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - anon_sym_extends, - [130113] = 11, - ACTIONS(2570), 1, + anon_sym_PIPE_RBRACE, + [129901] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6741), 1, + ACTIONS(6718), 1, anon_sym_LBRACE, - ACTIONS(6743), 1, + ACTIONS(6720), 1, anon_sym_extends, - ACTIONS(6745), 1, + ACTIONS(6722), 1, anon_sym_implements, - ACTIONS(6765), 1, + ACTIONS(6748), 1, sym_identifier, - STATE(2127), 1, + STATE(2266), 1, sym_class_body, - STATE(3518), 1, + STATE(3685), 1, sym_type_parameters, - STATE(4531), 1, + STATE(5080), 1, sym_extends_clause, - STATE(5212), 1, + STATE(5418), 1, sym_class_heritage, - STATE(5879), 1, + STATE(5792), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130148] = 11, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6741), 1, + [129936] = 3, + ACTIONS(6633), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4106), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(6743), 1, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [129955] = 5, + ACTIONS(6698), 1, + anon_sym_AMP, + ACTIONS(6700), 1, + anon_sym_PIPE, + ACTIONS(6702), 1, anon_sym_extends, - ACTIONS(6745), 1, - anon_sym_implements, - ACTIONS(6767), 1, - sym_identifier, - STATE(2127), 1, - sym_class_body, - STATE(3518), 1, - sym_type_parameters, - STATE(4531), 1, - sym_extends_clause, - STATE(5212), 1, - sym_class_heritage, - STATE(5879), 1, - sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130183] = 11, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6743), 1, + ACTIONS(6750), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [129978] = 5, + ACTIONS(6066), 1, + anon_sym_LPAREN, + ACTIONS(6357), 1, + anon_sym_DOT, + STATE(2934), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4080), 7, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - ACTIONS(6745), 1, - anon_sym_implements, - ACTIONS(6769), 1, - sym_identifier, - ACTIONS(6771), 1, + [130001] = 4, + ACTIONS(6754), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3886), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(6752), 6, + sym__automatic_semicolon, anon_sym_LBRACE, - STATE(2586), 1, - sym_class_body, - STATE(3546), 1, - sym_type_parameters, - STATE(4531), 1, - sym_extends_clause, - STATE(5405), 1, - sym_class_heritage, - STATE(5879), 1, - sym_implements_clause, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [130022] = 3, + ACTIONS(6756), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130218] = 6, - ACTIONS(6344), 1, + ACTIONS(4110), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [130041] = 6, + ACTIONS(6343), 1, anon_sym_DOT, - ACTIONS(6676), 1, + ACTIONS(6682), 1, anon_sym_LT, - ACTIONS(6773), 1, + ACTIONS(6758), 1, anon_sym_is, - STATE(3035), 1, + STATE(2964), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3567), 6, + ACTIONS(3548), 6, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [130243] = 11, - ACTIONS(2570), 1, + [130066] = 11, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6720), 1, + anon_sym_extends, + ACTIONS(6722), 1, + anon_sym_implements, + ACTIONS(6732), 1, + anon_sym_LBRACE, + ACTIONS(6760), 1, + sym_identifier, + STATE(2573), 1, + sym_class_body, + STATE(3670), 1, + sym_type_parameters, + STATE(5080), 1, + sym_extends_clause, + STATE(5171), 1, + sym_class_heritage, + STATE(5792), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [130101] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6741), 1, + ACTIONS(6718), 1, anon_sym_LBRACE, - ACTIONS(6743), 1, + ACTIONS(6720), 1, anon_sym_extends, - ACTIONS(6745), 1, + ACTIONS(6722), 1, anon_sym_implements, - ACTIONS(6775), 1, + ACTIONS(6762), 1, sym_identifier, - STATE(2177), 1, + STATE(2277), 1, sym_class_body, - STATE(3634), 1, + STATE(3578), 1, sym_type_parameters, - STATE(4531), 1, + STATE(5080), 1, sym_extends_clause, - STATE(5297), 1, + STATE(5201), 1, sym_class_heritage, - STATE(5879), 1, + STATE(5792), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130278] = 3, - ACTIONS(6656), 1, - anon_sym_is, + [130136] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4093), 9, + ACTIONS(4086), 10, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -247933,71 +245964,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [130297] = 11, - ACTIONS(2570), 1, + anon_sym_is, + [130153] = 11, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6741), 1, + ACTIONS(6718), 1, anon_sym_LBRACE, - ACTIONS(6743), 1, + ACTIONS(6720), 1, anon_sym_extends, - ACTIONS(6745), 1, + ACTIONS(6722), 1, anon_sym_implements, - ACTIONS(6777), 1, + ACTIONS(6764), 1, sym_identifier, - STATE(2177), 1, + STATE(2277), 1, sym_class_body, - STATE(3634), 1, + STATE(3578), 1, sym_type_parameters, - STATE(4531), 1, + STATE(5080), 1, sym_extends_clause, - STATE(5297), 1, + STATE(5201), 1, sym_class_heritage, - STATE(5879), 1, + STATE(5792), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130332] = 5, - ACTIONS(6709), 1, - anon_sym_AMP, - ACTIONS(6711), 1, - anon_sym_PIPE, - ACTIONS(6713), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6779), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [130355] = 3, - ACTIONS(6781), 1, - anon_sym_is, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4087), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [130374] = 3, - ACTIONS(6656), 1, - anon_sym_is, + [130188] = 3, + ACTIONS(6766), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4111), 9, + ACTIONS(4252), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248007,84 +246005,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [130393] = 9, - ACTIONS(2344), 1, + [130207] = 9, + ACTIONS(3109), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(3111), 1, anon_sym_SQUOTE, - ACTIONS(6715), 1, + ACTIONS(6704), 1, sym_identifier, - ACTIONS(6783), 1, + ACTIONS(6768), 1, anon_sym_type, - ACTIONS(6785), 1, + ACTIONS(6770), 1, anon_sym_as, - STATE(5169), 1, + STATE(5355), 1, sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6466), 2, + ACTIONS(6475), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(5600), 2, + STATE(5579), 2, sym__module_export_name, sym_string, - [130424] = 4, - ACTIONS(4593), 1, + [130238] = 8, + ACTIONS(6455), 1, + anon_sym_COLON, + ACTIONS(6772), 1, anon_sym_EQ, + ACTIONS(6776), 1, + anon_sym_BANG, + STATE(4215), 1, + sym__initializer, + STATE(4338), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4065), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3819), 7, + ACTIONS(6778), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(6774), 3, sym__automatic_semicolon, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, + [130267] = 9, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [130445] = 4, - ACTIONS(6789), 1, + ACTIONS(6776), 1, + anon_sym_BANG, + ACTIONS(6780), 1, + sym__automatic_semicolon, + STATE(4338), 1, + sym_type_annotation, + STATE(5056), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6774), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(6778), 2, + anon_sym_in, + anon_sym_of, + [130298] = 4, + ACTIONS(6754), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3837), 3, + STATE(3825), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - ACTIONS(6787), 6, + ACTIONS(6783), 6, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [130466] = 2, + [130319] = 11, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6720), 1, + anon_sym_extends, + ACTIONS(6722), 1, + anon_sym_implements, + ACTIONS(6732), 1, + anon_sym_LBRACE, + ACTIONS(6785), 1, + sym_identifier, + STATE(1653), 1, + sym_class_body, + STATE(3666), 1, + sym_type_parameters, + STATE(5080), 1, + sym_extends_clause, + STATE(5449), 1, + sym_class_heritage, + STATE(5792), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [130354] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1765), 10, + ACTIONS(4120), 10, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - anon_sym_is, - [130483] = 3, - ACTIONS(6791), 1, - anon_sym_DOT, + [130371] = 8, + ACTIONS(3109), 1, + anon_sym_DQUOTE, + ACTIONS(3111), 1, + anon_sym_SQUOTE, + ACTIONS(6736), 1, + sym_identifier, + ACTIONS(6787), 1, + anon_sym_RBRACE, + STATE(5379), 1, + sym_export_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6738), 2, + anon_sym_type, + anon_sym_typeof, + STATE(4735), 2, + sym__module_export_name, + sym_string, + [130399] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4263), 9, + ACTIONS(4393), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248094,138 +246160,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [130502] = 4, - ACTIONS(6789), 1, + [130415] = 8, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, anon_sym_COLON, + ACTIONS(6789), 1, + anon_sym_BANG, + ACTIONS(6791), 1, + anon_sym_QMARK, + STATE(3908), 1, + sym_type_annotation, + STATE(4610), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3854), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(6793), 6, + ACTIONS(6489), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [130523] = 9, - ACTIONS(6470), 1, + [130443] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6735), 1, + ACTIONS(6793), 1, anon_sym_BANG, ACTIONS(6795), 1, - sym__automatic_semicolon, - STATE(4055), 1, + anon_sym_QMARK, + STATE(4124), 1, sym_type_annotation, - STATE(4542), 1, + STATE(4627), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6733), 2, + ACTIONS(6449), 3, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(6737), 2, - anon_sym_in, - anon_sym_of, - [130554] = 11, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6743), 1, - anon_sym_extends, - ACTIONS(6745), 1, - anon_sym_implements, - ACTIONS(6771), 1, - anon_sym_LBRACE, - ACTIONS(6798), 1, - sym_identifier, - STATE(1654), 1, - sym_class_body, - STATE(3545), 1, - sym_type_parameters, - STATE(4531), 1, - sym_extends_clause, - STATE(5197), 1, - sym_class_heritage, - STATE(5879), 1, - sym_implements_clause, + [130471] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130589] = 11, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6743), 1, - anon_sym_extends, - ACTIONS(6745), 1, - anon_sym_implements, - ACTIONS(6771), 1, + ACTIONS(4356), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(6800), 1, - sym_identifier, - STATE(1675), 1, - sym_class_body, - STATE(3561), 1, - sym_type_parameters, - STATE(4531), 1, - sym_extends_clause, - STATE(5315), 1, - sym_class_heritage, - STATE(5879), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [130624] = 8, - ACTIONS(6470), 1, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [130487] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6802), 1, + ACTIONS(6797), 1, anon_sym_BANG, - ACTIONS(6804), 1, + ACTIONS(6799), 1, anon_sym_QMARK, - STATE(4386), 1, + STATE(3911), 1, sym_type_annotation, - STATE(4705), 1, + STATE(4680), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(6489), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130652] = 8, - ACTIONS(6470), 1, + [130515] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6808), 1, + ACTIONS(6801), 1, anon_sym_BANG, - ACTIONS(6810), 1, + ACTIONS(6803), 1, anon_sym_QMARK, - STATE(4268), 1, + STATE(3913), 1, sym_type_annotation, - STATE(4883), 1, + STATE(4825), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6806), 3, + ACTIONS(6489), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130680] = 2, + [130543] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4273), 9, + ACTIONS(4360), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248235,40 +246268,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [130696] = 2, + [130559] = 8, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + ACTIONS(6805), 1, + anon_sym_BANG, + ACTIONS(6807), 1, + anon_sym_QMARK, + STATE(4379), 1, + sym_type_annotation, + STATE(4707), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4191), 9, + ACTIONS(6513), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [130712] = 3, - ACTIONS(3336), 1, - anon_sym_LBRACE, + [130587] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3338), 8, - anon_sym_as, + ACTIONS(4258), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [130730] = 2, + [130603] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4205), 9, + ACTIONS(4262), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248278,11 +246316,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [130746] = 2, + [130619] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4157), 9, + ACTIONS(4266), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248292,47 +246330,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [130762] = 10, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(6812), 1, - anon_sym_extends, - ACTIONS(6814), 1, - anon_sym_implements, - STATE(2294), 1, - sym_class_body, - STATE(3662), 1, - sym_type_parameters, - STATE(4531), 1, - sym_extends_clause, - STATE(5470), 1, - sym_class_heritage, - STATE(5879), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [130794] = 2, + [130635] = 4, + ACTIONS(6809), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6816), 9, - anon_sym_EQ, + STATE(4324), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(6783), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [130810] = 2, + anon_sym_SEMI, + [130655] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2372), 9, + ACTIONS(2361), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248342,107 +246360,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [130826] = 4, - ACTIONS(6818), 1, - anon_sym_COLON, + [130671] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4061), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(6793), 5, + ACTIONS(4374), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [130846] = 7, - ACTIONS(6470), 1, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [130687] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4354), 1, - sym_type_annotation, - STATE(5040), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6822), 2, + ACTIONS(6811), 1, anon_sym_BANG, + ACTIONS(6813), 1, anon_sym_QMARK, - ACTIONS(6820), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [130872] = 7, - ACTIONS(6470), 1, - anon_sym_EQ, - ACTIONS(6478), 1, - anon_sym_COLON, - STATE(4247), 1, + STATE(3936), 1, sym_type_annotation, - STATE(4840), 1, + STATE(4665), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6546), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(6544), 3, + ACTIONS(6489), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130898] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6824), 9, + [130715] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, + ACTIONS(6455), 1, anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(6815), 1, + anon_sym_BANG, + ACTIONS(6817), 1, anon_sym_QMARK, - [130914] = 2, + STATE(3937), 1, + sym_type_annotation, + STATE(4774), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4259), 9, + ACTIONS(6489), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, + [130743] = 5, + ACTIONS(6819), 1, anon_sym_AMP, + ACTIONS(6821), 1, anon_sym_PIPE, + ACTIONS(6823), 1, anon_sym_extends, - [130930] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 9, + ACTIONS(4294), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [130946] = 2, + [130765] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4125), 9, + ACTIONS(4116), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248452,11 +246445,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [130962] = 2, + [130781] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4269), 9, + ACTIONS(2373), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248466,25 +246459,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [130978] = 2, + [130797] = 4, + ACTIONS(6825), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2380), 9, + ACTIONS(4172), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + ACTIONS(4452), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + [130817] = 3, + ACTIONS(6827), 1, anon_sym_extends, - [130994] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4219), 9, + ACTIONS(4192), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248493,66 +246490,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, - anon_sym_extends, - [131010] = 5, - ACTIONS(6826), 1, + [130835] = 6, + ACTIONS(6605), 1, anon_sym_AMP, - ACTIONS(6828), 1, + ACTIONS(6607), 1, anon_sym_PIPE, - ACTIONS(6830), 1, + ACTIONS(6609), 1, anon_sym_extends, + ACTIONS(6829), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4223), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(6750), 5, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - [131032] = 10, - ACTIONS(2570), 1, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + [130859] = 10, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6812), 1, + ACTIONS(6718), 1, + anon_sym_LBRACE, + ACTIONS(6831), 1, anon_sym_extends, - ACTIONS(6814), 1, + ACTIONS(6833), 1, anon_sym_implements, - ACTIONS(6832), 1, - anon_sym_LBRACE, - STATE(3569), 1, - sym_type_parameters, - STATE(4126), 1, + STATE(2173), 1, sym_class_body, - STATE(4531), 1, + STATE(3555), 1, + sym_type_parameters, + STATE(5080), 1, sym_extends_clause, - STATE(5232), 1, + STATE(5300), 1, sym_class_heritage, - STATE(5879), 1, + STATE(5792), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [131064] = 7, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(672), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, + [130891] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4823), 1, - aux_sym_object_repeat1, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(6455), 1, + anon_sym_COLON, + ACTIONS(6835), 1, + anon_sym_BANG, + ACTIONS(6837), 1, + anon_sym_QMARK, + STATE(4098), 1, + sym_type_annotation, + STATE(4560), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3819), 4, - anon_sym_LPAREN, + ACTIONS(6449), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [130919] = 8, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, anon_sym_COLON, - anon_sym_LT, + ACTIONS(6839), 1, + anon_sym_BANG, + ACTIONS(6841), 1, anon_sym_QMARK, - [131090] = 2, + STATE(4138), 1, + sym_type_annotation, + STATE(4662), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6513), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [130947] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -248566,124 +246584,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [131106] = 9, - ACTIONS(2344), 1, - anon_sym_DQUOTE, - ACTIONS(2346), 1, - anon_sym_SQUOTE, - ACTIONS(6715), 1, - sym_identifier, - ACTIONS(6717), 1, - anon_sym_type, - ACTIONS(6723), 1, - anon_sym_typeof, - STATE(5141), 1, - sym_import_specifier, - STATE(5429), 1, - sym__import_identifier, + [130963] = 5, + ACTIONS(6819), 1, + anon_sym_AMP, + ACTIONS(6821), 1, + anon_sym_PIPE, + ACTIONS(6823), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5689), 2, - sym__module_export_name, - sym_string, - [131136] = 5, - ACTIONS(6344), 1, - anon_sym_DOT, - ACTIONS(6676), 1, - anon_sym_LT, - STATE(3035), 1, - sym_type_arguments, + ACTIONS(4334), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + [130985] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3567), 6, - anon_sym_as, + ACTIONS(1726), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [131158] = 8, - ACTIONS(6470), 1, - anon_sym_EQ, - ACTIONS(6478), 1, - anon_sym_COLON, - ACTIONS(6834), 1, - anon_sym_BANG, - ACTIONS(6836), 1, - anon_sym_QMARK, - STATE(3989), 1, - sym_type_annotation, - STATE(4794), 1, - sym__initializer, + [131001] = 3, + ACTIONS(6825), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6532), 3, + ACTIONS(4214), 8, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [131186] = 8, - ACTIONS(6470), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [131019] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6838), 1, + ACTIONS(6843), 1, anon_sym_BANG, - ACTIONS(6840), 1, + ACTIONS(6845), 1, anon_sym_QMARK, - STATE(3998), 1, + STATE(4353), 1, sym_type_annotation, - STATE(4812), 1, + STATE(5085), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6532), 3, + ACTIONS(6489), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131214] = 3, - ACTIONS(3368), 1, + [131047] = 10, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6831), 1, + anon_sym_extends, + ACTIONS(6833), 1, + anon_sym_implements, + ACTIONS(6847), 1, anon_sym_LBRACE, + STATE(209), 1, + sym_class_body, + STATE(3675), 1, + sym_type_parameters, + STATE(5080), 1, + sym_extends_clause, + STATE(5299), 1, + sym_class_heritage, + STATE(5792), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3370), 8, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [131232] = 8, - ACTIONS(6470), 1, + [131079] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6842), 1, + ACTIONS(6849), 1, anon_sym_BANG, - ACTIONS(6844), 1, + ACTIONS(6851), 1, anon_sym_QMARK, - STATE(4009), 1, + STATE(3958), 1, sym_type_annotation, - STATE(4891), 1, + STATE(4534), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6532), 3, + ACTIONS(6489), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131260] = 2, + [131107] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4322), 9, + ACTIONS(3425), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248693,50 +246706,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [131276] = 5, - ACTIONS(6826), 1, - anon_sym_AMP, - ACTIONS(6828), 1, - anon_sym_PIPE, - ACTIONS(6830), 1, - anon_sym_extends, + [131123] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4326), 6, + ACTIONS(1754), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [131298] = 10, - ACTIONS(2570), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [131139] = 7, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(667), 1, + anon_sym_RBRACE, + ACTIONS(4622), 1, + anon_sym_EQ, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3814), 4, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LT, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(6812), 1, + anon_sym_QMARK, + [131165] = 5, + ACTIONS(6819), 1, + anon_sym_AMP, + ACTIONS(6821), 1, + anon_sym_PIPE, + ACTIONS(6823), 1, anon_sym_extends, - ACTIONS(6814), 1, - anon_sym_implements, - STATE(2141), 1, - sym_class_body, - STATE(3533), 1, - sym_type_parameters, - STATE(4531), 1, - sym_extends_clause, - STATE(5386), 1, - sym_class_heritage, - STATE(5879), 1, - sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [131330] = 2, + ACTIONS(4444), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + [131187] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4227), 9, + ACTIONS(4404), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248746,30 +246770,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [131346] = 7, - ACTIONS(6470), 1, - anon_sym_EQ, - ACTIONS(6478), 1, - anon_sym_COLON, - STATE(4101), 1, - sym_type_annotation, - STATE(4624), 1, - sym__initializer, + [131203] = 5, + ACTIONS(6819), 1, + anon_sym_AMP, + ACTIONS(6821), 1, + anon_sym_PIPE, + ACTIONS(6823), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6552), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(6550), 3, + ACTIONS(4404), 6, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [131372] = 2, + anon_sym_LBRACK, + [131225] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1743), 9, + ACTIONS(3419), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248779,253 +246801,276 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [131388] = 7, - ACTIONS(6470), 1, + [131241] = 7, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4340), 1, + STATE(4333), 1, sym_type_annotation, - STATE(5035), 1, + STATE(5053), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6484), 2, + ACTIONS(6555), 2, anon_sym_BANG, anon_sym_QMARK, - ACTIONS(6482), 3, + ACTIONS(6553), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131414] = 8, - ACTIONS(6470), 1, - anon_sym_EQ, - ACTIONS(6478), 1, - anon_sym_COLON, - ACTIONS(6846), 1, - anon_sym_BANG, - ACTIONS(6848), 1, - anon_sym_QMARK, - STATE(4048), 1, - sym_type_annotation, - STATE(4527), 1, - sym__initializer, + [131267] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6532), 3, + ACTIONS(3429), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [131442] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6850), 9, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [131458] = 8, - ACTIONS(6470), 1, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [131283] = 7, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6852), 1, - anon_sym_BANG, - ACTIONS(6854), 1, - anon_sym_QMARK, - STATE(4006), 1, + STATE(4234), 1, sym_type_annotation, - STATE(4874), 1, + STATE(4855), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6490), 3, + ACTIONS(6461), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(6459), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131486] = 4, - ACTIONS(6818), 1, + [131309] = 4, + ACTIONS(6809), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3960), 3, + STATE(3921), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - ACTIONS(6787), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [131506] = 3, - ACTIONS(6826), 1, - anon_sym_AMP, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4161), 8, + ACTIONS(6752), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_extends, - [131524] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4143), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + [131329] = 10, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6718), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6831), 1, anon_sym_extends, - [131540] = 2, + ACTIONS(6833), 1, + anon_sym_implements, + STATE(2284), 1, + sym_class_body, + STATE(3610), 1, + sym_type_parameters, + STATE(5080), 1, + sym_extends_clause, + STATE(5452), 1, + sym_class_heritage, + STATE(5792), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [131556] = 5, - ACTIONS(6826), 1, - anon_sym_AMP, - ACTIONS(6828), 1, - anon_sym_PIPE, - ACTIONS(6830), 1, - anon_sym_extends, + [131361] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4437), 6, + ACTIONS(4176), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [131578] = 5, - ACTIONS(6826), 1, anon_sym_AMP, - ACTIONS(6828), 1, anon_sym_PIPE, - ACTIONS(6830), 1, anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4441), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + [131377] = 7, + ACTIONS(237), 1, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - [131600] = 2, + ACTIONS(4622), 1, + anon_sym_EQ, + ACTIONS(5051), 1, + anon_sym_RBRACE, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3338), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [131616] = 10, - ACTIONS(2570), 1, + ACTIONS(3814), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [131403] = 10, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6812), 1, + ACTIONS(6831), 1, anon_sym_extends, - ACTIONS(6814), 1, + ACTIONS(6833), 1, anon_sym_implements, - ACTIONS(6856), 1, + ACTIONS(6853), 1, anon_sym_LBRACE, - STATE(848), 1, + STATE(788), 1, sym_class_body, - STATE(3630), 1, + STATE(3744), 1, sym_type_parameters, - STATE(4531), 1, + STATE(5080), 1, sym_extends_clause, - STATE(5291), 1, + STATE(5408), 1, sym_class_heritage, - STATE(5879), 1, + STATE(5792), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [131648] = 8, - ACTIONS(6470), 1, + [131435] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6855), 9, anon_sym_EQ, - ACTIONS(6478), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [131451] = 7, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6858), 1, + STATE(4056), 1, + sym_type_annotation, + STATE(4991), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6859), 2, anon_sym_BANG, - ACTIONS(6860), 1, anon_sym_QMARK, - STATE(4362), 1, + ACTIONS(6857), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [131477] = 7, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(4313), 1, sym_type_annotation, - STATE(5067), 1, + STATE(5036), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6532), 3, + ACTIONS(6521), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(6519), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131676] = 8, - ACTIONS(6470), 1, + [131503] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6862), 1, + ACTIONS(6861), 1, anon_sym_BANG, - ACTIONS(6864), 1, + ACTIONS(6863), 1, anon_sym_QMARK, - STATE(4369), 1, + STATE(3963), 1, sym_type_annotation, - STATE(5089), 1, + STATE(4570), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6532), 3, + ACTIONS(6489), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131704] = 2, + [131531] = 7, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(4622), 1, + anon_sym_EQ, + ACTIONS(5053), 1, + anon_sym_RBRACE, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3814), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [131557] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6865), 9, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [131573] = 3, + ACTIONS(3417), 1, + anon_sym_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3419), 8, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [131591] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1747), 9, + ACTIONS(4432), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -249035,51 +247080,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [131720] = 8, - ACTIONS(6470), 1, + [131607] = 7, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(692), 1, + anon_sym_RBRACE, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(6478), 1, + STATE(4810), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3814), 4, + anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(6866), 1, - anon_sym_BANG, - ACTIONS(6868), 1, + anon_sym_LT, anon_sym_QMARK, - STATE(4375), 1, - sym_type_annotation, - STATE(5103), 1, - sym__initializer, + [131633] = 3, + ACTIONS(6819), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6532), 3, + ACTIONS(4440), 8, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [131748] = 8, - ACTIONS(6470), 1, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_extends, + [131651] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6870), 1, + ACTIONS(6867), 1, anon_sym_BANG, - ACTIONS(6872), 1, + ACTIONS(6869), 1, anon_sym_QMARK, - STATE(4007), 1, + STATE(3966), 1, sym_type_annotation, - STATE(4892), 1, + STATE(4581), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6490), 3, + ACTIONS(6489), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131776] = 2, + [131679] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6874), 9, + ACTIONS(6871), 9, anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, @@ -249089,45 +247148,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_QMARK, - [131792] = 8, - ACTIONS(6470), 1, + [131695] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4448), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [131711] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6876), 1, + ACTIONS(6873), 1, anon_sym_BANG, - ACTIONS(6878), 1, + ACTIONS(6875), 1, anon_sym_QMARK, - STATE(4379), 1, + STATE(4077), 1, sym_type_annotation, - STATE(5110), 1, + STATE(5123), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6532), 3, + ACTIONS(6513), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131820] = 2, + [131739] = 9, + ACTIONS(3109), 1, + anon_sym_DQUOTE, + ACTIONS(3111), 1, + anon_sym_SQUOTE, + ACTIONS(6704), 1, + sym_identifier, + ACTIONS(6706), 1, + anon_sym_type, + ACTIONS(6712), 1, + anon_sym_typeof, + STATE(5314), 1, + sym_import_specifier, + STATE(5384), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4374), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + STATE(5604), 2, + sym__module_export_name, + sym_string, + [131769] = 10, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6718), 1, + anon_sym_LBRACE, + ACTIONS(6831), 1, + anon_sym_extends, + ACTIONS(6833), 1, + anon_sym_implements, + STATE(2320), 1, + sym_class_body, + STATE(3709), 1, + sym_type_parameters, + STATE(5080), 1, + sym_extends_clause, + STATE(5268), 1, + sym_class_heritage, + STATE(5792), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [131801] = 3, + ACTIONS(3423), 1, anon_sym_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3425), 8, + anon_sym_as, anon_sym_COMMA, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [131836] = 2, + anon_sym_LBRACE_PIPE, + [131819] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4382), 9, + ACTIONS(4232), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -249137,39 +247254,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [131852] = 2, + [131835] = 5, + ACTIONS(6819), 1, + anon_sym_AMP, + ACTIONS(6821), 1, + anon_sym_PIPE, + ACTIONS(6823), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4231), 9, + ACTIONS(4436), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [131868] = 2, + [131857] = 7, + ACTIONS(6455), 1, + anon_sym_COLON, + ACTIONS(6772), 1, + anon_sym_EQ, + STATE(4216), 1, + sym__initializer, + STATE(4338), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4410), 9, + ACTIONS(6778), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(6774), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [131884] = 2, + [131883] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4175), 9, + ACTIONS(2365), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -249179,174 +247304,228 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [131900] = 5, - ACTIONS(6826), 1, - anon_sym_AMP, - ACTIONS(6828), 1, - anon_sym_PIPE, - ACTIONS(6830), 1, - anon_sym_extends, + [131899] = 8, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + ACTIONS(6780), 1, + sym__automatic_semicolon, + STATE(4338), 1, + sym_type_annotation, + STATE(4561), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4179), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(6774), 2, anon_sym_COMMA, anon_sym_SEMI, + ACTIONS(6778), 2, + anon_sym_in, + anon_sym_of, + [131927] = 5, + ACTIONS(6357), 1, + anon_sym_DOT, + ACTIONS(6680), 1, + anon_sym_LPAREN, + STATE(2934), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4080), 6, + anon_sym_as, anon_sym_LBRACK, - [131922] = 5, - ACTIONS(6826), 1, + anon_sym_RBRACK, anon_sym_AMP, - ACTIONS(6828), 1, anon_sym_PIPE, - ACTIONS(6830), 1, anon_sym_extends, + [131949] = 10, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6718), 1, + anon_sym_LBRACE, + ACTIONS(6831), 1, + anon_sym_extends, + ACTIONS(6833), 1, + anon_sym_implements, + STATE(2184), 1, + sym_class_body, + STATE(3616), 1, + sym_type_parameters, + STATE(5080), 1, + sym_extends_clause, + STATE(5409), 1, + sym_class_heritage, + STATE(5792), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [131981] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4231), 6, + ACTIONS(2377), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [131944] = 8, - ACTIONS(6470), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [131997] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6880), 1, + ACTIONS(6877), 1, anon_sym_BANG, - ACTIONS(6882), 1, + ACTIONS(6879), 1, anon_sym_QMARK, - STATE(4383), 1, + STATE(4360), 1, sym_type_annotation, - STATE(5125), 1, + STATE(5092), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6532), 3, + ACTIONS(6489), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131972] = 8, - ACTIONS(6470), 1, + [132025] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6884), 1, + ACTIONS(6881), 1, anon_sym_BANG, - ACTIONS(6886), 1, + ACTIONS(6883), 1, anon_sym_QMARK, - STATE(4378), 1, + STATE(3969), 1, sym_type_annotation, - STATE(5114), 1, + STATE(4603), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6498), 3, + ACTIONS(6489), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132000] = 8, - ACTIONS(6470), 1, + [132053] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6888), 1, + ACTIONS(6885), 1, anon_sym_BANG, - ACTIONS(6890), 1, + ACTIONS(6887), 1, anon_sym_QMARK, - STATE(4040), 1, + STATE(4362), 1, sym_type_annotation, - STATE(5056), 1, + STATE(5095), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6532), 3, + ACTIONS(6489), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132028] = 8, - ACTIONS(6470), 1, + [132081] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6892), 1, + ACTIONS(6889), 1, anon_sym_BANG, - ACTIONS(6894), 1, + ACTIONS(6891), 1, anon_sym_QMARK, - STATE(4299), 1, + STATE(3973), 1, sym_type_annotation, - STATE(4941), 1, + STATE(4618), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(6489), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132056] = 4, - ACTIONS(6896), 1, - anon_sym_LBRACK, + [132109] = 10, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6718), 1, + anon_sym_LBRACE, + ACTIONS(6831), 1, + anon_sym_extends, + ACTIONS(6833), 1, + anon_sym_implements, + STATE(2254), 1, + sym_class_body, + STATE(3689), 1, + sym_type_parameters, + STATE(5080), 1, + sym_extends_clause, + STATE(5227), 1, + sym_class_heritage, + STATE(5792), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4201), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - ACTIONS(4195), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + [132141] = 10, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6732), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [132076] = 7, - ACTIONS(6470), 1, - anon_sym_EQ, - ACTIONS(6478), 1, - anon_sym_COLON, - STATE(4298), 1, - sym_type_annotation, - STATE(4985), 1, - sym__initializer, + ACTIONS(6831), 1, + anon_sym_extends, + ACTIONS(6833), 1, + anon_sym_implements, + STATE(2574), 1, + sym_class_body, + STATE(3513), 1, + sym_type_parameters, + STATE(5080), 1, + sym_extends_clause, + STATE(5153), 1, + sym_class_heritage, + STATE(5792), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6570), 2, + [132173] = 8, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + ACTIONS(6893), 1, anon_sym_BANG, + ACTIONS(6895), 1, anon_sym_QMARK, - ACTIONS(6568), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [132102] = 2, + STATE(4095), 1, + sym_type_annotation, + STATE(4551), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4111), 9, + ACTIONS(6513), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [132118] = 2, + [132201] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3402), 9, + ACTIONS(4378), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -249356,107 +247535,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132134] = 8, - ACTIONS(6470), 1, + [132217] = 7, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6898), 1, - anon_sym_BANG, - ACTIONS(6900), 1, - anon_sym_QMARK, - STATE(4384), 1, + STATE(4235), 1, sym_type_annotation, - STATE(5131), 1, + STATE(4951), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6498), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [132162] = 8, - ACTIONS(6470), 1, - anon_sym_EQ, - ACTIONS(6478), 1, - anon_sym_COLON, - ACTIONS(6902), 1, + ACTIONS(6561), 2, anon_sym_BANG, - ACTIONS(6904), 1, anon_sym_QMARK, - STATE(4385), 1, - sym_type_annotation, - STATE(5135), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6498), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [132190] = 10, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6812), 1, - anon_sym_extends, - ACTIONS(6814), 1, - anon_sym_implements, - ACTIONS(6832), 1, - anon_sym_LBRACE, - STATE(3576), 1, - sym_type_parameters, - STATE(4212), 1, - sym_class_body, - STATE(4531), 1, - sym_extends_clause, - STATE(5402), 1, - sym_class_heritage, - STATE(5879), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [132222] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4402), 9, + ACTIONS(6559), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [132238] = 8, - ACTIONS(6470), 1, + [132243] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6906), 1, + ACTIONS(6899), 1, anon_sym_BANG, - ACTIONS(6908), 1, + ACTIONS(6901), 1, anon_sym_QMARK, - STATE(4163), 1, + STATE(4205), 1, sym_type_annotation, - STATE(4717), 1, + STATE(4775), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(6897), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132266] = 2, + [132271] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3370), 9, + ACTIONS(4326), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -249466,86 +247588,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132282] = 8, - ACTIONS(6470), 1, + [132287] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6910), 1, + ACTIONS(6903), 1, anon_sym_BANG, - ACTIONS(6912), 1, + ACTIONS(6905), 1, anon_sym_QMARK, - STATE(4174), 1, + STATE(3978), 1, sym_type_annotation, - STATE(4728), 1, + STATE(4657), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(6489), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132310] = 8, - ACTIONS(6470), 1, + [132315] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6914), 1, + ACTIONS(6907), 1, anon_sym_BANG, - ACTIONS(6916), 1, + ACTIONS(6909), 1, anon_sym_QMARK, - STATE(4181), 1, + STATE(3990), 1, sym_type_annotation, - STATE(4738), 1, + STATE(4701), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(6489), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132338] = 3, - ACTIONS(6918), 1, + [132343] = 10, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6831), 1, anon_sym_extends, + ACTIONS(6833), 1, + anon_sym_implements, + ACTIONS(6853), 1, + anon_sym_LBRACE, + STATE(3717), 1, + sym_type_parameters, + STATE(3931), 1, + sym_class_body, + STATE(5080), 1, + sym_extends_clause, + STATE(5231), 1, + sym_class_heritage, + STATE(5792), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4209), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - [132356] = 8, - ACTIONS(6470), 1, + [132375] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6920), 1, + ACTIONS(6911), 1, anon_sym_BANG, - ACTIONS(6922), 1, + ACTIONS(6913), 1, anon_sym_QMARK, - STATE(4204), 1, + STATE(4142), 1, sym_type_annotation, - STATE(4770), 1, + STATE(4673), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(6513), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132384] = 2, + [132403] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4370), 9, + ACTIONS(4302), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -249555,367 +247684,460 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132400] = 3, - ACTIONS(6896), 1, - anon_sym_LBRACK, + [132419] = 10, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6732), 1, + anon_sym_LBRACE, + ACTIONS(6831), 1, + anon_sym_extends, + ACTIONS(6833), 1, + anon_sym_implements, + STATE(1676), 1, + sym_class_body, + STATE(3720), 1, + sym_type_parameters, + STATE(5080), 1, + sym_extends_clause, + STATE(5145), 1, + sym_class_heritage, + STATE(5792), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4235), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [132418] = 8, - ACTIONS(6470), 1, + [132451] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6924), 1, + ACTIONS(6915), 1, anon_sym_BANG, - ACTIONS(6926), 1, + ACTIONS(6917), 1, anon_sym_QMARK, - STATE(4217), 1, + STATE(4144), 1, sym_type_annotation, - STATE(4791), 1, + STATE(4675), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(6513), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132446] = 2, + [132479] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4378), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(6919), 9, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [132462] = 2, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [132495] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4306), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(6921), 9, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [132511] = 10, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6831), 1, + anon_sym_extends, + ACTIONS(6833), 1, + anon_sym_implements, + ACTIONS(6847), 1, + anon_sym_LBRACE, + STATE(230), 1, + sym_class_body, + STATE(3581), 1, + sym_type_parameters, + STATE(5080), 1, + sym_extends_clause, + STATE(5397), 1, + sym_class_heritage, + STATE(5792), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [132543] = 5, + ACTIONS(6343), 1, + anon_sym_DOT, + ACTIONS(6682), 1, + anon_sym_LT, + STATE(2964), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3548), 6, + anon_sym_as, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132478] = 5, - ACTIONS(6826), 1, - anon_sym_AMP, - ACTIONS(6828), 1, - anon_sym_PIPE, - ACTIONS(6830), 1, + [132565] = 10, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6831), 1, anon_sym_extends, + ACTIONS(6833), 1, + anon_sym_implements, + ACTIONS(6923), 1, + anon_sym_LBRACE, + STATE(812), 1, + sym_class_body, + STATE(3619), 1, + sym_type_parameters, + STATE(5080), 1, + sym_extends_clause, + STATE(5255), 1, + sym_class_heritage, + STATE(5792), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4306), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - [132500] = 8, - ACTIONS(6470), 1, + [132597] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6928), 1, + ACTIONS(6925), 1, anon_sym_BANG, - ACTIONS(6930), 1, + ACTIONS(6927), 1, anon_sym_QMARK, - STATE(4219), 1, + STATE(4152), 1, sym_type_annotation, - STATE(4795), 1, + STATE(4689), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(6513), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132528] = 8, - ACTIONS(6470), 1, + [132625] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6932), 1, + ACTIONS(6929), 1, anon_sym_BANG, - ACTIONS(6934), 1, + ACTIONS(6931), 1, anon_sym_QMARK, - STATE(4224), 1, + STATE(4367), 1, sym_type_annotation, - STATE(4802), 1, + STATE(5103), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(6489), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132556] = 7, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(699), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, - anon_sym_EQ, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3819), 4, - anon_sym_LPAREN, - anon_sym_COLON, + [132653] = 10, + ACTIONS(2499), 1, anon_sym_LT, - anon_sym_QMARK, - [132582] = 2, + ACTIONS(6831), 1, + anon_sym_extends, + ACTIONS(6833), 1, + anon_sym_implements, + ACTIONS(6923), 1, + anon_sym_LBRACE, + STATE(912), 1, + sym_class_body, + STATE(3621), 1, + sym_type_parameters, + STATE(5080), 1, + sym_extends_clause, + STATE(5304), 1, + sym_class_heritage, + STATE(5792), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4093), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [132598] = 7, - ACTIONS(239), 1, + [132685] = 7, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(5076), 1, + ACTIONS(4992), 1, anon_sym_RBRACE, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, + STATE(4792), 1, aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3819), 4, + ACTIONS(3814), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - [132624] = 6, - ACTIONS(6604), 1, - anon_sym_AMP, - ACTIONS(6606), 1, - anon_sym_PIPE, - ACTIONS(6608), 1, - anon_sym_extends, - ACTIONS(6936), 1, + [132711] = 8, + ACTIONS(6447), 1, anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + ACTIONS(6933), 1, + anon_sym_BANG, + ACTIONS(6935), 1, + anon_sym_QMARK, + STATE(4366), 1, + sym_type_annotation, + STATE(5104), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6779), 5, - anon_sym_LBRACE, + ACTIONS(6527), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_GT, - [132648] = 8, - ACTIONS(6470), 1, + anon_sym_SEMI, + [132739] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6938), 1, + ACTIONS(6937), 1, anon_sym_BANG, - ACTIONS(6940), 1, + ACTIONS(6939), 1, anon_sym_QMARK, - STATE(4303), 1, + STATE(4236), 1, sym_type_annotation, - STATE(4944), 1, + STATE(4851), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(6897), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132676] = 10, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(6812), 1, - anon_sym_extends, - ACTIONS(6814), 1, - anon_sym_implements, - STATE(2119), 1, - sym_class_body, - STATE(3572), 1, - sym_type_parameters, - STATE(4531), 1, - sym_extends_clause, - STATE(5276), 1, - sym_class_heritage, - STATE(5879), 1, - sym_implements_clause, + [132767] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [132708] = 10, - ACTIONS(2570), 1, + ACTIONS(4344), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [132783] = 10, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6812), 1, + ACTIONS(6831), 1, anon_sym_extends, - ACTIONS(6814), 1, + ACTIONS(6833), 1, anon_sym_implements, - ACTIONS(6832), 1, + ACTIONS(6853), 1, anon_sym_LBRACE, - STATE(3574), 1, + STATE(3594), 1, sym_type_parameters, - STATE(4154), 1, + STATE(4043), 1, sym_class_body, - STATE(4531), 1, + STATE(5080), 1, sym_extends_clause, - STATE(5287), 1, + STATE(5341), 1, sym_class_heritage, - STATE(5879), 1, + STATE(5792), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [132740] = 10, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6812), 1, - anon_sym_extends, - ACTIONS(6814), 1, - anon_sym_implements, - ACTIONS(6942), 1, - anon_sym_LBRACE, - STATE(243), 1, - sym_class_body, - STATE(3642), 1, - sym_type_parameters, - STATE(4531), 1, - sym_extends_clause, - STATE(5363), 1, - sym_class_heritage, - STATE(5879), 1, - sym_implements_clause, + [132815] = 8, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + ACTIONS(6941), 1, + anon_sym_BANG, + ACTIONS(6943), 1, + anon_sym_QMARK, + STATE(4372), 1, + sym_type_annotation, + STATE(5113), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6527), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [132843] = 8, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + ACTIONS(6945), 1, + anon_sym_BANG, + ACTIONS(6947), 1, + anon_sym_QMARK, + STATE(4099), 1, + sym_type_annotation, + STATE(4562), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [132772] = 10, - ACTIONS(2570), 1, + ACTIONS(6513), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [132871] = 10, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6812), 1, + ACTIONS(6831), 1, anon_sym_extends, - ACTIONS(6814), 1, + ACTIONS(6833), 1, anon_sym_implements, - ACTIONS(6832), 1, + ACTIONS(6853), 1, anon_sym_LBRACE, - STATE(773), 1, - sym_class_body, - STATE(3521), 1, + STATE(3645), 1, sym_type_parameters, - STATE(4531), 1, + STATE(3979), 1, + sym_class_body, + STATE(5080), 1, sym_extends_clause, - STATE(5277), 1, + STATE(5144), 1, sym_class_heritage, - STATE(5879), 1, + STATE(5792), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [132804] = 3, - ACTIONS(3400), 1, - anon_sym_LBRACE, + [132903] = 8, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + ACTIONS(6949), 1, + anon_sym_BANG, + ACTIONS(6951), 1, + anon_sym_QMARK, + STATE(4377), 1, + sym_type_annotation, + STATE(5120), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3402), 8, - anon_sym_as, + ACTIONS(6527), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [132822] = 2, + anon_sym_SEMI, + [132931] = 8, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + ACTIONS(6953), 1, + anon_sym_BANG, + ACTIONS(6955), 1, + anon_sym_QMARK, + STATE(4101), 1, + sym_type_annotation, + STATE(4567), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4201), 9, + ACTIONS(6513), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [132838] = 2, + [132959] = 7, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(694), 1, + anon_sym_RBRACE, + ACTIONS(4622), 1, + anon_sym_EQ, + STATE(4792), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3814), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [132985] = 8, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + ACTIONS(6957), 1, + anon_sym_BANG, + ACTIONS(6959), 1, + anon_sym_QMARK, + STATE(4105), 1, + sym_type_annotation, + STATE(4575), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4346), 9, + ACTIONS(6513), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [132854] = 3, - ACTIONS(6826), 1, - anon_sym_AMP, + [133013] = 8, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + ACTIONS(6961), 1, + anon_sym_BANG, + ACTIONS(6963), 1, + anon_sym_QMARK, + STATE(4117), 1, + sym_type_annotation, + STATE(4598), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4362), 8, + ACTIONS(6513), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_extends, - [132872] = 2, + [133041] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4366), 9, + ACTIONS(4188), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -249925,26 +248147,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132888] = 3, - ACTIONS(6896), 1, - anon_sym_LBRACK, + [133057] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4201), 8, + ACTIONS(4370), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132906] = 2, + [133073] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2388), 9, + ACTIONS(4198), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -249954,89 +248175,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132922] = 2, + [133089] = 5, + ACTIONS(6819), 1, + anon_sym_AMP, + ACTIONS(6821), 1, + anon_sym_PIPE, + ACTIONS(6823), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4087), 9, + ACTIONS(4204), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [132938] = 10, - ACTIONS(2570), 1, + [133111] = 10, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6741), 1, + ACTIONS(6718), 1, anon_sym_LBRACE, - ACTIONS(6812), 1, + ACTIONS(6831), 1, anon_sym_extends, - ACTIONS(6814), 1, + ACTIONS(6833), 1, anon_sym_implements, - STATE(2289), 1, + STATE(2345), 1, sym_class_body, - STATE(3600), 1, + STATE(3545), 1, sym_type_parameters, - STATE(4531), 1, + STATE(5080), 1, sym_extends_clause, - STATE(5419), 1, + STATE(5175), 1, sym_class_heritage, - STATE(5879), 1, + STATE(5792), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [132970] = 10, - ACTIONS(2570), 1, + [133143] = 10, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6812), 1, + ACTIONS(6831), 1, anon_sym_extends, - ACTIONS(6814), 1, + ACTIONS(6833), 1, anon_sym_implements, - ACTIONS(6856), 1, + ACTIONS(6853), 1, anon_sym_LBRACE, - STATE(812), 1, - sym_class_body, - STATE(3721), 1, + STATE(3558), 1, sym_type_parameters, - STATE(4531), 1, + STATE(4002), 1, + sym_class_body, + STATE(5080), 1, sym_extends_clause, - STATE(5324), 1, + STATE(5204), 1, sym_class_heritage, - STATE(5879), 1, + STATE(5792), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133002] = 8, - ACTIONS(6470), 1, - anon_sym_EQ, - ACTIONS(6478), 1, - anon_sym_COLON, - ACTIONS(6944), 1, - anon_sym_BANG, - ACTIONS(6946), 1, - anon_sym_QMARK, - STATE(4238), 1, - sym_type_annotation, - STATE(4819), 1, - sym__initializer, + [133175] = 3, + ACTIONS(6819), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(4306), 8, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [133030] = 2, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_extends, + [133193] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4406), 9, + ACTIONS(4408), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -250046,192 +248265,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [133046] = 7, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(697), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, - anon_sym_EQ, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, - aux_sym_object_repeat1, + [133209] = 10, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6732), 1, + anon_sym_LBRACE, + ACTIONS(6831), 1, + anon_sym_extends, + ACTIONS(6833), 1, + anon_sym_implements, + STATE(1694), 1, + sym_class_body, + STATE(3605), 1, + sym_type_parameters, + STATE(5080), 1, + sym_extends_clause, + STATE(5223), 1, + sym_class_heritage, + STATE(5792), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3819), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [133072] = 8, - ACTIONS(6470), 1, - anon_sym_EQ, - ACTIONS(6478), 1, - anon_sym_COLON, - ACTIONS(6948), 1, - anon_sym_BANG, - ACTIONS(6950), 1, - anon_sym_QMARK, - STATE(4239), 1, - sym_type_annotation, - STATE(4826), 1, - sym__initializer, + [133241] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(4106), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [133100] = 8, - ACTIONS(2344), 1, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [133257] = 8, + ACTIONS(3109), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(3111), 1, anon_sym_SQUOTE, - ACTIONS(6749), 1, + ACTIONS(6736), 1, sym_identifier, - ACTIONS(6952), 1, + ACTIONS(6965), 1, anon_sym_RBRACE, - STATE(5428), 1, + STATE(5379), 1, sym_export_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6751), 2, + ACTIONS(6738), 2, anon_sym_type, anon_sym_typeof, - STATE(4762), 2, + STATE(4735), 2, sym__module_export_name, sym_string, - [133128] = 10, - ACTIONS(2570), 1, + [133285] = 10, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(6812), 1, + ACTIONS(6831), 1, anon_sym_extends, - ACTIONS(6814), 1, + ACTIONS(6833), 1, anon_sym_implements, - STATE(2270), 1, + ACTIONS(6853), 1, + anon_sym_LBRACE, + STATE(794), 1, sym_class_body, - STATE(3592), 1, + STATE(3590), 1, sym_type_parameters, - STATE(4531), 1, + STATE(5080), 1, sym_extends_clause, - STATE(5306), 1, + STATE(5219), 1, sym_class_heritage, - STATE(5879), 1, + STATE(5792), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133160] = 7, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(5005), 1, - anon_sym_RBRACE, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3819), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [133186] = 8, - ACTIONS(6470), 1, - anon_sym_EQ, - ACTIONS(6478), 1, - anon_sym_COLON, - ACTIONS(6954), 1, - anon_sym_BANG, - ACTIONS(6956), 1, - anon_sym_QMARK, - STATE(4003), 1, - sym_type_annotation, - STATE(4838), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6490), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [133214] = 8, - ACTIONS(6470), 1, + [133317] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6958), 1, + ACTIONS(6967), 1, anon_sym_BANG, - ACTIONS(6960), 1, + ACTIONS(6969), 1, anon_sym_QMARK, - STATE(3952), 1, + STATE(4331), 1, sym_type_annotation, - STATE(4622), 1, + STATE(5048), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6532), 3, + ACTIONS(6449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133242] = 10, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6812), 1, - anon_sym_extends, - ACTIONS(6814), 1, - anon_sym_implements, - ACTIONS(6832), 1, + [133345] = 3, + ACTIONS(3427), 1, anon_sym_LBRACE, - STATE(3562), 1, - sym_type_parameters, - STATE(4067), 1, - sym_class_body, - STATE(4531), 1, - sym_extends_clause, - STATE(5342), 1, - sym_class_heritage, - STATE(5879), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [133274] = 7, - ACTIONS(6478), 1, - anon_sym_COLON, - ACTIONS(6731), 1, - anon_sym_EQ, - STATE(4055), 1, - sym_type_annotation, - STATE(4222), 1, - sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6737), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(6733), 3, - sym__automatic_semicolon, + ACTIONS(3429), 8, + anon_sym_as, anon_sym_COMMA, - anon_sym_SEMI, - [133300] = 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [133363] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4149), 9, + ACTIONS(4218), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -250241,70 +248392,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [133316] = 8, - ACTIONS(6470), 1, - anon_sym_EQ, - ACTIONS(6478), 1, - anon_sym_COLON, - ACTIONS(6795), 1, - sym__automatic_semicolon, - STATE(4055), 1, - sym_type_annotation, - STATE(4594), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6733), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(6737), 2, - anon_sym_in, - anon_sym_of, - [133344] = 7, - ACTIONS(3535), 1, - anon_sym_LPAREN, - ACTIONS(6063), 1, - anon_sym_LT, - ACTIONS(6962), 1, - anon_sym_DOT, - STATE(1256), 1, - sym_arguments, - STATE(5449), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3577), 4, - anon_sym_export, - anon_sym_class, - anon_sym_AT, - anon_sym_abstract, - [133370] = 8, - ACTIONS(2344), 1, - anon_sym_DQUOTE, - ACTIONS(2346), 1, - anon_sym_SQUOTE, - ACTIONS(6749), 1, - sym_identifier, - ACTIONS(6964), 1, - anon_sym_RBRACE, - STATE(5428), 1, - sym_export_specifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6751), 2, - anon_sym_type, - anon_sym_typeof, - STATE(4762), 2, - sym__module_export_name, - sym_string, - [133398] = 2, + [133379] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2384), 9, + ACTIONS(4222), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -250314,2370 +248406,2331 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [133414] = 8, - ACTIONS(6470), 1, + [133395] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6966), 1, + ACTIONS(6971), 1, anon_sym_BANG, - ACTIONS(6968), 1, + ACTIONS(6973), 1, anon_sym_QMARK, - STATE(4282), 1, + STATE(4352), 1, sym_type_annotation, - STATE(4896), 1, + STATE(5082), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(6449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133442] = 7, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(5074), 1, - anon_sym_RBRACE, - STATE(4834), 1, - aux_sym_object_pattern_repeat1, - STATE(4902), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3819), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [133468] = 10, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6771), 1, - anon_sym_LBRACE, - ACTIONS(6812), 1, + [133423] = 5, + ACTIONS(6819), 1, + anon_sym_AMP, + ACTIONS(6821), 1, + anon_sym_PIPE, + ACTIONS(6823), 1, anon_sym_extends, - ACTIONS(6814), 1, - anon_sym_implements, - STATE(1696), 1, - sym_class_body, - STATE(3575), 1, - sym_type_parameters, - STATE(4531), 1, - sym_extends_clause, - STATE(5309), 1, - sym_class_heritage, - STATE(5879), 1, - sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133500] = 10, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6812), 1, - anon_sym_extends, - ACTIONS(6814), 1, - anon_sym_implements, - ACTIONS(6942), 1, + ACTIONS(4222), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - STATE(228), 1, - sym_class_body, - STATE(3582), 1, - sym_type_parameters, - STATE(4531), 1, - sym_extends_clause, - STATE(5183), 1, - sym_class_heritage, - STATE(5879), 1, - sym_implements_clause, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + [133445] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133532] = 8, - ACTIONS(6470), 1, + ACTIONS(4172), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [133461] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6970), 1, + ACTIONS(6975), 1, anon_sym_BANG, - ACTIONS(6972), 1, + ACTIONS(6977), 1, anon_sym_QMARK, - STATE(4179), 1, + STATE(4365), 1, sym_type_annotation, - STATE(4733), 1, + STATE(5094), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6806), 3, + ACTIONS(6449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133560] = 10, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6812), 1, - anon_sym_extends, - ACTIONS(6814), 1, - anon_sym_implements, - ACTIONS(6832), 1, - anon_sym_LBRACE, - STATE(783), 1, - sym_class_body, - STATE(3659), 1, - sym_type_parameters, - STATE(4531), 1, - sym_extends_clause, - STATE(5444), 1, - sym_class_heritage, - STATE(5879), 1, - sym_implements_clause, + [133489] = 3, + ACTIONS(6825), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133592] = 10, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6741), 1, + ACTIONS(4172), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(6812), 1, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - ACTIONS(6814), 1, - anon_sym_implements, - STATE(2346), 1, - sym_class_body, - STATE(3553), 1, - sym_type_parameters, - STATE(4531), 1, - sym_extends_clause, - STATE(5387), 1, - sym_class_heritage, - STATE(5879), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [133624] = 8, - ACTIONS(6470), 1, + [133507] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6974), 1, + ACTIONS(6979), 1, anon_sym_BANG, - ACTIONS(6976), 1, + ACTIONS(6981), 1, anon_sym_QMARK, - STATE(4287), 1, + STATE(3905), 1, sym_type_annotation, - STATE(4912), 1, + STATE(4674), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(6449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133652] = 8, - ACTIONS(6470), 1, + [133535] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(6978), 1, + ACTIONS(6983), 1, anon_sym_BANG, - ACTIONS(6980), 1, + ACTIONS(6985), 1, anon_sym_QMARK, - STATE(3913), 1, + STATE(3907), 1, sym_type_annotation, - STATE(4948), 1, + STATE(4604), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6490), 3, + ACTIONS(6449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133680] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6982), 9, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [133696] = 10, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6771), 1, - anon_sym_LBRACE, - ACTIONS(6812), 1, - anon_sym_extends, - ACTIONS(6814), 1, - anon_sym_implements, - STATE(1678), 1, - sym_class_body, - STATE(3563), 1, - sym_type_parameters, - STATE(4531), 1, - sym_extends_clause, - STATE(5440), 1, - sym_class_heritage, - STATE(5879), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [133728] = 8, - ACTIONS(6470), 1, - anon_sym_EQ, - ACTIONS(6478), 1, - anon_sym_COLON, - ACTIONS(6984), 1, - anon_sym_BANG, - ACTIONS(6986), 1, - anon_sym_QMARK, - STATE(3930), 1, - sym_type_annotation, - STATE(4936), 1, - sym__initializer, + [133563] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6490), 3, + ACTIONS(4110), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [133756] = 10, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6771), 1, - anon_sym_LBRACE, - ACTIONS(6812), 1, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - ACTIONS(6814), 1, - anon_sym_implements, - STATE(2543), 1, - sym_class_body, - STATE(3674), 1, - sym_type_parameters, - STATE(4531), 1, - sym_extends_clause, - STATE(5138), 1, - sym_class_heritage, - STATE(5879), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [133788] = 8, - ACTIONS(6470), 1, - anon_sym_EQ, - ACTIONS(6478), 1, - anon_sym_COLON, - ACTIONS(6988), 1, - anon_sym_BANG, - ACTIONS(6990), 1, - anon_sym_QMARK, - STATE(3966), 1, - sym_type_annotation, - STATE(4693), 1, - sym__initializer, + [133579] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6490), 3, + ACTIONS(4142), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [133816] = 8, - ACTIONS(6470), 1, - anon_sym_EQ, - ACTIONS(6478), 1, - anon_sym_COLON, - ACTIONS(6992), 1, - anon_sym_BANG, - ACTIONS(6994), 1, - anon_sym_QMARK, - STATE(3934), 1, - sym_type_annotation, - STATE(4808), 1, - sym__initializer, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [133595] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6490), 3, + ACTIONS(4182), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [133844] = 5, - ACTIONS(6372), 1, - anon_sym_DOT, - ACTIONS(6674), 1, - anon_sym_LPAREN, - STATE(2942), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4119), 6, - anon_sym_as, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [133866] = 8, - ACTIONS(6470), 1, - anon_sym_EQ, - ACTIONS(6478), 1, - anon_sym_COLON, - ACTIONS(6996), 1, - anon_sym_BANG, - ACTIONS(6998), 1, - anon_sym_QMARK, - STATE(3939), 1, - sym_type_annotation, - STATE(4558), 1, - sym__initializer, + [133611] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6490), 3, + ACTIONS(2369), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [133894] = 8, - ACTIONS(6470), 1, - anon_sym_EQ, - ACTIONS(6478), 1, - anon_sym_COLON, - ACTIONS(7000), 1, - anon_sym_BANG, - ACTIONS(7002), 1, - anon_sym_QMARK, - STATE(3940), 1, - sym_type_annotation, - STATE(4566), 1, - sym__initializer, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [133627] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6490), 3, + ACTIONS(4352), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [133922] = 8, - ACTIONS(6470), 1, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [133643] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(7004), 1, + ACTIONS(6987), 1, anon_sym_BANG, - ACTIONS(7006), 1, + ACTIONS(6989), 1, anon_sym_QMARK, - STATE(4291), 1, + STATE(3957), 1, sym_type_annotation, - STATE(4918), 1, + STATE(4525), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(6449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133950] = 8, - ACTIONS(6470), 1, + [133671] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(7008), 1, + ACTIONS(6991), 1, anon_sym_BANG, - ACTIONS(7010), 1, + ACTIONS(6993), 1, anon_sym_QMARK, - STATE(4292), 1, + STATE(3904), 1, sym_type_annotation, - STATE(4923), 1, + STATE(4728), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [133978] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2376), 9, + ACTIONS(6489), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [133994] = 8, - ACTIONS(6470), 1, + [133699] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(7012), 1, + ACTIONS(6995), 1, anon_sym_BANG, - ACTIONS(7014), 1, + ACTIONS(6997), 1, anon_sym_QMARK, - STATE(3953), 1, + STATE(4114), 1, sym_type_annotation, - STATE(4628), 1, + STATE(4593), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6490), 3, + ACTIONS(6449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134022] = 8, - ACTIONS(6470), 1, + [133727] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(7016), 1, + ACTIONS(6999), 1, anon_sym_BANG, - ACTIONS(7018), 1, + ACTIONS(7001), 1, anon_sym_QMARK, - STATE(3958), 1, + STATE(3965), 1, sym_type_annotation, - STATE(4654), 1, + STATE(4573), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6490), 3, + ACTIONS(6449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134050] = 8, - ACTIONS(6470), 1, + [133755] = 8, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(7020), 1, + ACTIONS(7003), 1, anon_sym_BANG, - ACTIONS(7022), 1, + ACTIONS(7005), 1, anon_sym_QMARK, - STATE(4293), 1, + STATE(3967), 1, sym_type_annotation, - STATE(4927), 1, + STATE(4579), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(6449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134078] = 9, - ACTIONS(1545), 1, - anon_sym_import, - ACTIONS(7024), 1, - sym_identifier, - ACTIONS(7026), 1, - sym_this, - STATE(1737), 1, - sym__type_query_member_expression, - STATE(1739), 1, - sym__type_query_subscript_expression, - STATE(1978), 1, - sym__type_query_call_expression, - STATE(1979), 1, - sym__type_query_instantiation_expression, - STATE(4447), 1, - sym_import, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [134107] = 5, - ACTIONS(7028), 1, - anon_sym_LBRACE, - ACTIONS(7030), 1, - anon_sym_DOT, - STATE(4072), 1, - sym_statement_block, + [133783] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1717), 5, + ACTIONS(4156), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [134128] = 5, - ACTIONS(6709), 1, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [133799] = 5, + ACTIONS(6698), 1, anon_sym_AMP, - ACTIONS(6711), 1, + ACTIONS(6700), 1, anon_sym_PIPE, - ACTIONS(6713), 1, + ACTIONS(6702), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7032), 5, + ACTIONS(7007), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [134149] = 7, - ACTIONS(7034), 1, - sym_escape_sequence, - ACTIONS(7036), 1, - anon_sym_BQUOTE, - ACTIONS(7038), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7040), 1, - sym__template_chars, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3787), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(4296), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [134174] = 7, - ACTIONS(7034), 1, - sym_escape_sequence, - ACTIONS(7038), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7040), 1, - sym__template_chars, - ACTIONS(7042), 1, - anon_sym_BQUOTE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3787), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(4296), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [134199] = 7, - ACTIONS(7034), 1, - sym_escape_sequence, - ACTIONS(7038), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7040), 1, - sym__template_chars, - ACTIONS(7044), 1, - anon_sym_BQUOTE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3787), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(4296), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [134224] = 6, - ACTIONS(6478), 1, + [133820] = 6, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(7046), 1, + ACTIONS(7009), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7048), 1, + ACTIONS(7011), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7050), 1, + ACTIONS(7013), 1, anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4109), 4, + STATE(4316), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [134247] = 7, - ACTIONS(7034), 1, - sym_escape_sequence, - ACTIONS(7038), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7040), 1, - sym__template_chars, - ACTIONS(7052), 1, - anon_sym_BQUOTE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3787), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(4296), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [134272] = 5, - ACTIONS(6709), 1, + [133843] = 5, + ACTIONS(6698), 1, anon_sym_AMP, - ACTIONS(6711), 1, + ACTIONS(6700), 1, anon_sym_PIPE, - ACTIONS(6713), 1, + ACTIONS(6702), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7054), 5, + ACTIONS(7015), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [134293] = 3, - ACTIONS(6725), 1, - anon_sym_is, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4093), 7, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [134310] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3210), 8, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + [133864] = 5, + ACTIONS(6698), 1, anon_sym_AMP, + ACTIONS(6700), 1, anon_sym_PIPE, + ACTIONS(6702), 1, anon_sym_extends, - [134325] = 7, - ACTIONS(6470), 1, - anon_sym_EQ, - ACTIONS(6478), 1, - anon_sym_COLON, - ACTIONS(6735), 1, - anon_sym_BANG, - STATE(4055), 1, - sym_type_annotation, - STATE(4542), 1, - sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6733), 3, + ACTIONS(7017), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [134350] = 6, - ACTIONS(6478), 1, + anon_sym_PIPE_RBRACE, + [133885] = 6, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(7046), 1, + ACTIONS(7009), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7048), 1, + ACTIONS(7011), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7050), 1, + ACTIONS(7013), 1, anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4314), 4, + STATE(4318), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [134373] = 7, - ACTIONS(3424), 1, + [133908] = 7, + ACTIONS(3405), 1, sym_identifier, - ACTIONS(3426), 1, + ACTIONS(3407), 1, anon_sym_LBRACE, - ACTIONS(3428), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(7056), 1, + ACTIONS(7019), 1, anon_sym_enum, - STATE(4461), 1, + STATE(4416), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3675), 3, + STATE(3718), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [134398] = 7, - ACTIONS(7038), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7040), 1, - sym__template_chars, - ACTIONS(7058), 1, - sym_escape_sequence, - ACTIONS(7060), 1, - anon_sym_BQUOTE, + [133933] = 6, + ACTIONS(6455), 1, + anon_sym_COLON, + ACTIONS(7009), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7011), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7013), 1, + anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3894), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(4296), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [134423] = 3, - ACTIONS(7062), 1, - anon_sym_is, + STATE(4307), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [133956] = 4, + ACTIONS(4588), 1, + anon_sym_LPAREN, + STATE(2220), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4087), 7, + ACTIONS(4326), 6, anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_GT, anon_sym_extends, - [134440] = 7, - ACTIONS(2344), 1, - anon_sym_DQUOTE, - ACTIONS(2346), 1, - anon_sym_SQUOTE, - ACTIONS(6749), 1, + [133975] = 9, + ACTIONS(1538), 1, + anon_sym_import, + ACTIONS(7021), 1, sym_identifier, - STATE(5428), 1, - sym_export_specifier, + ACTIONS(7023), 1, + sym_this, + STATE(2951), 1, + sym__type_query_subscript_expression, + STATE(3037), 1, + sym__type_query_member_expression, + STATE(3221), 1, + sym__type_query_call_expression, + STATE(3383), 1, + sym__type_query_instantiation_expression, + STATE(4468), 1, + sym_import, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6751), 2, - anon_sym_type, - anon_sym_typeof, - STATE(4762), 2, - sym__module_export_name, - sym_string, - [134465] = 7, - ACTIONS(7034), 1, + [134004] = 7, + ACTIONS(7025), 1, sym_escape_sequence, - ACTIONS(7038), 1, + ACTIONS(7027), 1, + anon_sym_BQUOTE, + ACTIONS(7029), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7040), 1, + ACTIONS(7031), 1, sym__template_chars, - ACTIONS(7064), 1, - anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3787), 2, + STATE(3785), 2, sym_template_substitution, aux_sym_template_string_repeat1, - STATE(4021), 2, + STATE(4108), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [134490] = 3, - ACTIONS(6725), 1, - anon_sym_is, + [134029] = 9, + ACTIONS(1538), 1, + anon_sym_import, + ACTIONS(7033), 1, + sym_identifier, + ACTIONS(7035), 1, + sym_this, + STATE(2931), 1, + sym__type_query_member_expression, + STATE(2933), 1, + sym__type_query_subscript_expression, + STATE(3124), 1, + sym__type_query_call_expression, + STATE(3280), 1, + sym__type_query_instantiation_expression, + STATE(4502), 1, + sym_import, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4111), 7, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [134507] = 7, - ACTIONS(7038), 1, + [134058] = 7, + ACTIONS(7025), 1, + sym_escape_sequence, + ACTIONS(7029), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7031), 1, + sym__template_chars, + ACTIONS(7037), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3785), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(4108), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [134083] = 7, + ACTIONS(7025), 1, + sym_escape_sequence, + ACTIONS(7029), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7040), 1, + ACTIONS(7031), 1, sym__template_chars, - ACTIONS(7058), 1, + ACTIONS(7039), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3785), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(4108), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [134108] = 7, + ACTIONS(7025), 1, sym_escape_sequence, - ACTIONS(7066), 1, + ACTIONS(7029), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7031), 1, + sym__template_chars, + ACTIONS(7041), 1, anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3894), 2, + STATE(3785), 2, sym_template_substitution, aux_sym_template_string_repeat1, - STATE(4296), 2, + STATE(4108), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [134532] = 5, - ACTIONS(7028), 1, - anon_sym_LBRACE, - ACTIONS(7068), 1, - anon_sym_DOT, - STATE(4072), 1, - sym_statement_block, + [134133] = 7, + ACTIONS(7029), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7031), 1, + sym__template_chars, + ACTIONS(7043), 1, + sym_escape_sequence, + ACTIONS(7045), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1717), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [134553] = 4, - ACTIONS(4627), 1, - anon_sym_LPAREN, - STATE(2351), 1, - sym_arguments, + STATE(3764), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(4108), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [134158] = 7, + ACTIONS(7025), 1, + sym_escape_sequence, + ACTIONS(7029), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7031), 1, + sym__template_chars, + ACTIONS(7047), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 6, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_extends, - [134572] = 7, - ACTIONS(3424), 1, + STATE(3785), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(4057), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [134183] = 7, + ACTIONS(3405), 1, sym_identifier, - ACTIONS(3426), 1, + ACTIONS(3407), 1, anon_sym_LBRACE, - ACTIONS(3428), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(7070), 1, + ACTIONS(7049), 1, anon_sym_enum, - STATE(4501), 1, + STATE(4451), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3675), 3, + STATE(3718), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [134597] = 2, + [134208] = 9, + ACTIONS(1538), 1, + anon_sym_import, + ACTIONS(7051), 1, + sym_identifier, + ACTIONS(7053), 1, + sym_this, + STATE(2876), 1, + sym__type_query_member_expression, + STATE(2877), 1, + sym__type_query_subscript_expression, + STATE(2922), 1, + sym__type_query_call_expression, + STATE(3010), 1, + sym__type_query_instantiation_expression, + STATE(4382), 1, + sym_import, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [134237] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3218), 8, + ACTIONS(1726), 8, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [134612] = 4, - ACTIONS(6676), 1, - anon_sym_LT, - STATE(3038), 1, - sym_type_arguments, + [134252] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4087), 6, + ACTIONS(1754), 8, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [134631] = 5, - ACTIONS(6826), 1, - anon_sym_AMP, - ACTIONS(6828), 1, - anon_sym_PIPE, - ACTIONS(6830), 1, - anon_sym_extends, + [134267] = 7, + ACTIONS(7025), 1, + sym_escape_sequence, + ACTIONS(7029), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7031), 1, + sym__template_chars, + ACTIONS(7055), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6779), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [134652] = 6, - ACTIONS(6478), 1, + STATE(3785), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(4108), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [134292] = 6, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(7046), 1, + ACTIONS(7009), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7048), 1, + ACTIONS(7011), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7050), 1, + ACTIONS(7013), 1, anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4094), 4, + STATE(4051), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [134675] = 2, + [134315] = 9, + ACTIONS(1538), 1, + anon_sym_import, + ACTIONS(7053), 1, + sym_this, + ACTIONS(7057), 1, + sym_identifier, + STATE(2922), 1, + sym__type_query_call_expression, + STATE(3010), 1, + sym__type_query_instantiation_expression, + STATE(3197), 1, + sym__type_query_member_expression, + STATE(3198), 1, + sym__type_query_subscript_expression, + STATE(4384), 1, + sym_import, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [134344] = 4, + ACTIONS(6682), 1, + anon_sym_LT, + STATE(3030), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3214), 8, + ACTIONS(4110), 6, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [134690] = 6, - ACTIONS(6478), 1, + [134363] = 6, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(7046), 1, + ACTIONS(7009), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7048), 1, + ACTIONS(7011), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7050), 1, + ACTIONS(7013), 1, anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4087), 4, + STATE(4052), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [134713] = 5, - ACTIONS(6709), 1, + [134386] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3235), 8, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [134401] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3239), 8, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - ACTIONS(6711), 1, anon_sym_PIPE, - ACTIONS(6713), 1, anon_sym_extends, + [134416] = 7, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + ACTIONS(6776), 1, + anon_sym_BANG, + STATE(4338), 1, + sym_type_annotation, + STATE(5056), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7072), 5, + ACTIONS(6774), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [134734] = 9, - ACTIONS(1545), 1, - anon_sym_import, - ACTIONS(7074), 1, + [134441] = 7, + ACTIONS(3109), 1, + anon_sym_DQUOTE, + ACTIONS(3111), 1, + anon_sym_SQUOTE, + ACTIONS(6736), 1, sym_identifier, - ACTIONS(7076), 1, - sym_this, - STATE(2980), 1, - sym__type_query_member_expression, - STATE(2981), 1, - sym__type_query_subscript_expression, - STATE(3280), 1, - sym__type_query_call_expression, - STATE(3397), 1, - sym__type_query_instantiation_expression, - STATE(4460), 1, - sym_import, + STATE(5379), 1, + sym_export_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6738), 2, + anon_sym_type, + anon_sym_typeof, + STATE(4735), 2, + sym__module_export_name, + sym_string, + [134466] = 3, + ACTIONS(6714), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4106), 7, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [134483] = 3, + ACTIONS(7059), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134763] = 6, - ACTIONS(6478), 1, + ACTIONS(4110), 7, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [134500] = 6, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(7046), 1, + ACTIONS(7009), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7048), 1, + ACTIONS(7011), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7050), 1, + ACTIONS(7013), 1, anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4090), 4, + STATE(4281), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [134786] = 9, - ACTIONS(1545), 1, + [134523] = 9, + ACTIONS(1538), 1, anon_sym_import, - ACTIONS(7078), 1, + ACTIONS(7061), 1, sym_identifier, - ACTIONS(7080), 1, + ACTIONS(7063), 1, sym_this, - STATE(2935), 1, + STATE(1735), 1, sym__type_query_member_expression, - STATE(2937), 1, + STATE(1737), 1, sym__type_query_subscript_expression, - STATE(3128), 1, + STATE(1977), 1, sym__type_query_call_expression, - STATE(3229), 1, + STATE(1978), 1, sym__type_query_instantiation_expression, - STATE(4398), 1, + STATE(4500), 1, sym_import, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134815] = 9, - ACTIONS(1545), 1, - anon_sym_import, - ACTIONS(7082), 1, - sym_identifier, - ACTIONS(7084), 1, - sym_this, - STATE(2880), 1, - sym__type_query_member_expression, - STATE(2882), 1, - sym__type_query_subscript_expression, - STATE(2925), 1, - sym__type_query_call_expression, - STATE(3044), 1, - sym__type_query_instantiation_expression, - STATE(4409), 1, - sym_import, + [134552] = 6, + ACTIONS(6455), 1, + anon_sym_COLON, + ACTIONS(7009), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7011), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7013), 1, + anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134844] = 6, - ACTIONS(6478), 1, + STATE(4186), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [134575] = 6, + ACTIONS(6455), 1, anon_sym_COLON, - ACTIONS(7046), 1, + ACTIONS(7009), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7048), 1, + ACTIONS(7011), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7050), 1, + ACTIONS(7013), 1, anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4333), 4, + STATE(4187), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [134867] = 9, - ACTIONS(1545), 1, - anon_sym_import, - ACTIONS(7084), 1, - sym_this, - ACTIONS(7086), 1, - sym_identifier, - STATE(2925), 1, - sym__type_query_call_expression, - STATE(3044), 1, - sym__type_query_instantiation_expression, - STATE(3168), 1, - sym__type_query_member_expression, - STATE(3210), 1, - sym__type_query_subscript_expression, - STATE(4519), 1, - sym_import, + [134598] = 5, + ACTIONS(7065), 1, + anon_sym_LBRACE, + ACTIONS(7067), 1, + anon_sym_DOT, + STATE(4280), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134896] = 7, - ACTIONS(7034), 1, - sym_escape_sequence, - ACTIONS(7038), 1, + ACTIONS(1674), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [134619] = 5, + ACTIONS(7065), 1, + anon_sym_LBRACE, + ACTIONS(7069), 1, + anon_sym_DOT, + STATE(4280), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1674), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [134640] = 7, + ACTIONS(7029), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7040), 1, + ACTIONS(7031), 1, sym__template_chars, - ACTIONS(7088), 1, + ACTIONS(7043), 1, + sym_escape_sequence, + ACTIONS(7071), 1, anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3787), 2, + STATE(3764), 2, sym_template_substitution, aux_sym_template_string_repeat1, - STATE(4296), 2, + STATE(4108), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [134921] = 6, - ACTIONS(6478), 1, - anon_sym_COLON, - ACTIONS(7046), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7048), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7050), 1, - anon_sym_QMARK_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4350), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [134944] = 6, - ACTIONS(6478), 1, - anon_sym_COLON, - ACTIONS(7046), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7048), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7050), 1, - anon_sym_QMARK_COLON, + [134665] = 5, + ACTIONS(6819), 1, + anon_sym_AMP, + ACTIONS(6821), 1, + anon_sym_PIPE, + ACTIONS(6823), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4108), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [134967] = 6, - ACTIONS(6478), 1, - anon_sym_COLON, - ACTIONS(7046), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7048), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7050), 1, - anon_sym_QMARK_COLON, + ACTIONS(6750), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [134686] = 3, + ACTIONS(6714), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4351), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [134990] = 9, - ACTIONS(1545), 1, + ACTIONS(4116), 7, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [134703] = 9, + ACTIONS(1538), 1, anon_sym_import, - ACTIONS(7090), 1, + ACTIONS(7073), 1, sym_identifier, - ACTIONS(7092), 1, + ACTIONS(7075), 1, sym_this, - STATE(1504), 1, - sym__type_query_member_expression, - STATE(1508), 1, + STATE(1506), 1, sym__type_query_subscript_expression, - STATE(1622), 1, + STATE(1509), 1, + sym__type_query_member_expression, + STATE(1562), 1, sym__type_query_call_expression, - STATE(1627), 1, + STATE(1563), 1, sym__type_query_instantiation_expression, - STATE(4510), 1, + STATE(4388), 1, sym_import, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135019] = 8, - ACTIONS(219), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1541), 1, - anon_sym_LBRACE, - ACTIONS(7094), 1, - anon_sym_LT, - ACTIONS(7096), 1, - anon_sym_extends, - STATE(904), 1, - sym_object_type, - STATE(4377), 1, - sym_type_parameters, - STATE(5107), 1, - sym_extends_type_clause, + [134732] = 6, + ACTIONS(6455), 1, + anon_sym_COLON, + ACTIONS(7009), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7011), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7013), 1, + anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135045] = 4, - ACTIONS(4085), 1, - anon_sym_extends, - ACTIONS(7098), 1, - sym_identifier, + STATE(4315), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [134755] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4087), 5, - anon_sym_COMMA, + ACTIONS(3227), 8, + anon_sym_as, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_GT, - [135063] = 8, - ACTIONS(4627), 1, + anon_sym_extends, + [134770] = 8, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(4631), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(6063), 1, + ACTIONS(7077), 1, + sym_identifier, + ACTIONS(7079), 1, + anon_sym_STAR, + STATE(3806), 1, + sym_formal_parameters, + STATE(5328), 1, + sym_type_parameters, + STATE(5421), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [134796] = 8, + ACTIONS(3576), 1, anon_sym_LT, - STATE(2189), 1, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(7081), 1, + anon_sym_DOT, + STATE(2350), 1, sym_arguments, - STATE(5207), 1, - sym_type_arguments, - STATE(5243), 1, + STATE(5286), 1, sym_optional_chain, + STATE(5293), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [134822] = 6, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(4140), 1, + sym_type_annotation, + STATE(4666), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135089] = 6, - ACTIONS(6470), 1, + ACTIONS(6657), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [134844] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4218), 1, + STATE(4237), 1, sym_type_annotation, - STATE(4793), 1, + STATE(4852), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6701), 3, + ACTIONS(6686), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135111] = 6, - ACTIONS(6470), 1, + [134866] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4220), 1, + STATE(4238), 1, sym_type_annotation, - STATE(4796), 1, + STATE(4853), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6701), 3, + ACTIONS(6686), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135133] = 6, - ACTIONS(6470), 1, + [134888] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4246), 1, + STATE(4239), 1, sym_type_annotation, - STATE(4825), 1, + STATE(4856), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6701), 3, + ACTIONS(6686), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135155] = 8, - ACTIONS(6741), 1, + [134910] = 8, + ACTIONS(6732), 1, anon_sym_LBRACE, - ACTIONS(6812), 1, + ACTIONS(6831), 1, anon_sym_extends, - ACTIONS(6814), 1, + ACTIONS(6833), 1, anon_sym_implements, - STATE(2279), 1, + STATE(2597), 1, sym_class_body, - STATE(4531), 1, + STATE(5080), 1, sym_extends_clause, - STATE(5393), 1, + STATE(5343), 1, sym_class_heritage, - STATE(5879), 1, + STATE(5792), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135181] = 6, - ACTIONS(6470), 1, + [134936] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4263), 1, + STATE(4166), 1, sym_type_annotation, - STATE(4863), 1, + STATE(4715), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6701), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135203] = 6, - ACTIONS(6470), 1, + [134958] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4264), 1, + STATE(4240), 1, sym_type_annotation, - STATE(4869), 1, + STATE(4857), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6701), 3, + ACTIONS(6686), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135225] = 8, - ACTIONS(6812), 1, - anon_sym_extends, - ACTIONS(6814), 1, - anon_sym_implements, - ACTIONS(6832), 1, - anon_sym_LBRACE, - STATE(779), 1, - sym_class_body, - STATE(4531), 1, - sym_extends_clause, - STATE(5435), 1, - sym_class_heritage, - STATE(5879), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [135251] = 6, - ACTIONS(6470), 1, + [134980] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4269), 1, + STATE(4242), 1, sym_type_annotation, - STATE(4885), 1, + STATE(4868), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6701), 3, + ACTIONS(6686), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135273] = 6, - ACTIONS(6470), 1, + [135002] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4273), 1, + STATE(4243), 1, sym_type_annotation, - STATE(4890), 1, + STATE(4870), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6701), 3, + ACTIONS(6686), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135295] = 6, - ACTIONS(6470), 1, + [135024] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4276), 1, + STATE(4244), 1, sym_type_annotation, - STATE(4894), 1, + STATE(4876), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6701), 3, + ACTIONS(6686), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135317] = 6, - ACTIONS(6470), 1, + [135046] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4280), 1, + STATE(4245), 1, sym_type_annotation, - STATE(4897), 1, + STATE(4883), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6701), 3, + ACTIONS(6686), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135339] = 6, - ACTIONS(6470), 1, + [135068] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4289), 1, + STATE(4209), 1, sym_type_annotation, - STATE(4911), 1, + STATE(4779), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6701), 3, + ACTIONS(6686), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135361] = 6, - ACTIONS(6470), 1, - anon_sym_EQ, - ACTIONS(6478), 1, - anon_sym_COLON, - STATE(4290), 1, - sym_type_annotation, - STATE(4915), 1, - sym__initializer, + [135090] = 4, + ACTIONS(2483), 1, + anon_sym_LBRACE, + STATE(5465), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6701), 3, + ACTIONS(7083), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [135383] = 8, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6476), 1, - anon_sym_LPAREN, - ACTIONS(7100), 1, - anon_sym_COLON, - ACTIONS(7102), 1, - anon_sym_QMARK, - STATE(3893), 1, - sym_formal_parameters, - STATE(5329), 1, - sym__call_signature, - STATE(5354), 1, - sym_type_parameters, + anon_sym_PIPE_RBRACE, + [135108] = 4, + ACTIONS(2483), 1, + anon_sym_LBRACE, + STATE(5316), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135409] = 6, - ACTIONS(6470), 1, + ACTIONS(7085), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [135126] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4301), 1, + STATE(4369), 1, sym_type_annotation, - STATE(4938), 1, + STATE(5107), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6701), 3, + ACTIONS(6651), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135431] = 4, - ACTIONS(7028), 1, + [135148] = 4, + ACTIONS(2483), 1, anon_sym_LBRACE, - STATE(4072), 1, + STATE(5463), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7085), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [135166] = 4, + ACTIONS(4622), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5665), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3814), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [135184] = 6, + ACTIONS(6595), 1, + anon_sym_EQ, + STATE(4499), 1, + sym_constraint, + STATE(5417), 1, + sym_default_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6600), 2, + anon_sym_COLON, + anon_sym_extends, + ACTIONS(7087), 2, + anon_sym_COMMA, + anon_sym_GT, + [135206] = 4, + ACTIONS(2483), 1, + anon_sym_LBRACE, + STATE(5464), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1717), 5, + ACTIONS(7083), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [135449] = 6, - ACTIONS(6470), 1, + [135224] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4308), 1, + STATE(4370), 1, sym_type_annotation, - STATE(4963), 1, + STATE(5110), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6701), 3, + ACTIONS(6651), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135471] = 6, - ACTIONS(6470), 1, + [135246] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4121), 1, + STATE(4376), 1, sym_type_annotation, - STATE(4666), 1, + STATE(5111), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6651), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135493] = 8, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(6812), 1, - anon_sym_extends, - ACTIONS(6814), 1, - anon_sym_implements, - STATE(2292), 1, - sym_class_body, - STATE(4531), 1, - sym_extends_clause, - STATE(5462), 1, - sym_class_heritage, - STATE(5879), 1, - sym_implements_clause, + [135268] = 6, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(4167), 1, + sym_type_annotation, + STATE(4718), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135519] = 2, + ACTIONS(6657), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [135290] = 6, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(4314), 1, + sym_type_annotation, + STATE(5012), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1887), 7, + ACTIONS(6653), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_PIPE_RBRACE, - [135533] = 2, + [135312] = 6, + ACTIONS(3576), 1, + anon_sym_LT, + ACTIONS(4588), 1, + anon_sym_LPAREN, + STATE(2255), 1, + sym_arguments, + STATE(5181), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7089), 3, + anon_sym_LBRACK, + sym_identifier, + sym_private_property_identifier, + [135334] = 6, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(4159), 1, + sym_type_annotation, + STATE(4699), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1891), 7, + ACTIONS(6657), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_PIPE_RBRACE, - [135547] = 6, - ACTIONS(6470), 1, + [135356] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4353), 1, + STATE(4263), 1, sym_type_annotation, - STATE(5039), 1, + STATE(4904), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7104), 3, + ACTIONS(7091), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135569] = 6, - ACTIONS(6470), 1, + [135378] = 6, + ACTIONS(6595), 1, anon_sym_EQ, - ACTIONS(6478), 1, + STATE(4414), 1, + sym_constraint, + STATE(5419), 1, + sym_default_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6600), 2, anon_sym_COLON, - STATE(4355), 1, + anon_sym_extends, + ACTIONS(7093), 2, + anon_sym_COMMA, + anon_sym_GT, + [135400] = 6, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(4168), 1, sym_type_annotation, - STATE(5041), 1, + STATE(4720), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7104), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135591] = 6, - ACTIONS(6470), 1, + [135422] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4373), 1, + STATE(4264), 1, sym_type_annotation, - STATE(5102), 1, + STATE(4906), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7104), 3, + ACTIONS(7091), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135613] = 6, - ACTIONS(6470), 1, + [135444] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4376), 1, + STATE(4347), 1, sym_type_annotation, - STATE(5104), 1, + STATE(5074), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7104), 3, + ACTIONS(6651), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135635] = 2, + [135466] = 6, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(4268), 1, + sym_type_annotation, + STATE(4924), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4868), 7, + ACTIONS(7091), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [135649] = 8, - ACTIONS(3967), 1, + [135488] = 8, + ACTIONS(3576), 1, + anon_sym_LT, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(6063), 1, - anon_sym_LT, - STATE(1656), 1, + STATE(1647), 1, sym_arguments, - STATE(5174), 1, - sym_optional_chain, - STATE(5178), 1, + STATE(3174), 1, sym_type_arguments, + STATE(5286), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135675] = 6, - ACTIONS(6470), 1, + [135514] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4124), 1, + STATE(4269), 1, sym_type_annotation, - STATE(4673), 1, + STATE(4926), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(7091), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135697] = 6, - ACTIONS(6470), 1, + [135536] = 5, + ACTIONS(7095), 1, + anon_sym_AMP, + ACTIONS(7097), 1, + anon_sym_PIPE, + ACTIONS(7099), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4334), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [135556] = 8, + ACTIONS(3576), 1, + anon_sym_LT, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(7101), 1, + anon_sym_DOT, + STATE(2372), 1, + sym_arguments, + STATE(5280), 1, + sym_optional_chain, + STATE(5376), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [135582] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4132), 1, + STATE(4169), 1, sym_type_annotation, - STATE(4678), 1, + STATE(4727), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135719] = 8, - ACTIONS(1557), 1, - anon_sym_DQUOTE, - ACTIONS(1559), 1, - anon_sym_SQUOTE, - ACTIONS(7106), 1, - sym_identifier, - ACTIONS(7108), 1, - anon_sym_DOT, - STATE(762), 1, - sym_nested_identifier, - STATE(800), 1, - sym_string, - STATE(882), 1, - sym__module, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [135745] = 8, - ACTIONS(6771), 1, + [135604] = 8, + ACTIONS(6718), 1, anon_sym_LBRACE, - ACTIONS(6812), 1, + ACTIONS(6831), 1, anon_sym_extends, - ACTIONS(6814), 1, + ACTIONS(6833), 1, anon_sym_implements, - STATE(1666), 1, + STATE(2247), 1, sym_class_body, - STATE(4531), 1, + STATE(5080), 1, sym_extends_clause, - STATE(5413), 1, + STATE(5340), 1, sym_class_heritage, - STATE(5879), 1, + STATE(5792), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135771] = 8, - ACTIONS(6771), 1, - anon_sym_LBRACE, - ACTIONS(6812), 1, - anon_sym_extends, - ACTIONS(6814), 1, - anon_sym_implements, - STATE(2545), 1, - sym_class_body, - STATE(4531), 1, - sym_extends_clause, - STATE(5171), 1, - sym_class_heritage, - STATE(5879), 1, - sym_implements_clause, + [135630] = 8, + ACTIONS(3576), 1, + anon_sym_LT, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + STATE(2381), 1, + sym_arguments, + STATE(3471), 1, + sym_type_arguments, + STATE(5280), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135797] = 8, - ACTIONS(1643), 1, - anon_sym_DQUOTE, - ACTIONS(1645), 1, - anon_sym_SQUOTE, - ACTIONS(7110), 1, - sym_identifier, - ACTIONS(7112), 1, - anon_sym_DOT, - STATE(3472), 1, - sym_nested_identifier, - STATE(3530), 1, - sym_string, - STATE(3949), 1, - sym__module, + [135656] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135823] = 8, - ACTIONS(1047), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1627), 1, + ACTIONS(7103), 7, + sym__automatic_semicolon, anon_sym_LBRACE, - ACTIONS(7094), 1, - anon_sym_LT, - ACTIONS(7096), 1, - anon_sym_extends, - STATE(3938), 1, - sym_type_parameters, - STATE(4036), 1, - sym_object_type, - STATE(4560), 1, - sym_extends_type_clause, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [135670] = 6, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(4349), 1, + sym_type_annotation, + STATE(5078), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135849] = 6, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(6063), 1, - anon_sym_LT, - STATE(1673), 1, - sym_arguments, - STATE(5284), 1, - sym_type_arguments, + ACTIONS(6651), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [135692] = 3, + ACTIONS(6758), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7114), 3, + ACTIONS(4116), 6, + anon_sym_as, anon_sym_LBRACK, - sym_identifier, - sym_private_property_identifier, - [135871] = 6, - ACTIONS(6470), 1, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [135708] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4157), 1, + STATE(4146), 1, sym_type_annotation, - STATE(4707), 1, + STATE(4676), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135893] = 6, - ACTIONS(6470), 1, + [135730] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4158), 1, + STATE(3915), 1, sym_type_annotation, - STATE(4708), 1, + STATE(4907), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6651), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135915] = 8, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6476), 1, - anon_sym_LPAREN, - ACTIONS(7102), 1, - anon_sym_QMARK, - ACTIONS(7116), 1, + [135752] = 6, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3893), 1, - sym_formal_parameters, - STATE(5329), 1, - sym__call_signature, - STATE(5354), 1, - sym_type_parameters, + STATE(4149), 1, + sym_type_annotation, + STATE(4679), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6657), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [135774] = 6, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(4241), 1, + sym_type_annotation, + STATE(4863), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6647), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [135796] = 6, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(3916), 1, + sym_type_annotation, + STATE(5100), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135941] = 8, - ACTIONS(6741), 1, + ACTIONS(6651), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [135818] = 8, + ACTIONS(6718), 1, anon_sym_LBRACE, - ACTIONS(6812), 1, + ACTIONS(6831), 1, anon_sym_extends, - ACTIONS(6814), 1, + ACTIONS(6833), 1, anon_sym_implements, - STATE(2248), 1, + STATE(2181), 1, sym_class_body, - STATE(4531), 1, + STATE(5080), 1, sym_extends_clause, - STATE(5469), 1, + STATE(5374), 1, sym_class_heritage, - STATE(5879), 1, + STATE(5792), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135967] = 6, - ACTIONS(6470), 1, + [135844] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4175), 1, + STATE(3938), 1, sym_type_annotation, - STATE(4729), 1, + STATE(4822), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6651), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135989] = 6, - ACTIONS(6470), 1, + [135866] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4176), 1, + STATE(4378), 1, sym_type_annotation, - STATE(4730), 1, + STATE(5122), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6655), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136011] = 8, - ACTIONS(4627), 1, - anon_sym_LPAREN, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(6063), 1, - anon_sym_LT, - ACTIONS(7118), 1, - anon_sym_DOT, - STATE(1984), 1, - sym_arguments, - STATE(5207), 1, - sym_type_arguments, - STATE(5243), 1, - sym_optional_chain, + [135888] = 8, + ACTIONS(6831), 1, + anon_sym_extends, + ACTIONS(6833), 1, + anon_sym_implements, + ACTIONS(6853), 1, + anon_sym_LBRACE, + STATE(4047), 1, + sym_class_body, + STATE(5080), 1, + sym_extends_clause, + STATE(5362), 1, + sym_class_heritage, + STATE(5792), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [135914] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7105), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [135928] = 6, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(3940), 1, + sym_type_annotation, + STATE(4830), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136037] = 6, - ACTIONS(6470), 1, + ACTIONS(6651), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [135950] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4182), 1, + STATE(3942), 1, sym_type_annotation, - STATE(4740), 1, + STATE(4877), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6651), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136059] = 6, - ACTIONS(6470), 1, + [135972] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4183), 1, + STATE(3947), 1, sym_type_annotation, - STATE(4741), 1, + STATE(4917), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6651), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136081] = 6, - ACTIONS(6470), 1, + [135994] = 8, + ACTIONS(3576), 1, + anon_sym_LT, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(7107), 1, + anon_sym_DOT, + STATE(2376), 1, + sym_arguments, + STATE(5286), 1, + sym_optional_chain, + STATE(5293), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [136020] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4186), 1, + STATE(4130), 1, sym_type_annotation, - STATE(4743), 1, + STATE(4642), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136103] = 6, - ACTIONS(6470), 1, + [136042] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4189), 1, + STATE(4134), 1, sym_type_annotation, - STATE(4749), 1, + STATE(4645), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136125] = 8, - ACTIONS(6771), 1, - anon_sym_LBRACE, - ACTIONS(6812), 1, - anon_sym_extends, - ACTIONS(6814), 1, - anon_sym_implements, - STATE(1692), 1, - sym_class_body, - STATE(4531), 1, - sym_extends_clause, - STATE(5279), 1, - sym_class_heritage, - STATE(5879), 1, - sym_implements_clause, + [136064] = 6, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(3950), 1, + sym_type_annotation, + STATE(5059), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136151] = 8, - ACTIONS(6812), 1, - anon_sym_extends, - ACTIONS(6814), 1, - anon_sym_implements, - ACTIONS(6832), 1, - anon_sym_LBRACE, - STATE(4153), 1, - sym_class_body, - STATE(4531), 1, - sym_extends_clause, - STATE(5281), 1, - sym_class_heritage, - STATE(5879), 1, - sym_implements_clause, + ACTIONS(6651), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136086] = 6, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(4155), 1, + sym_type_annotation, + STATE(4690), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136177] = 8, - ACTIONS(6771), 1, + ACTIONS(6657), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136108] = 6, + ACTIONS(3407), 1, anon_sym_LBRACE, - ACTIONS(6812), 1, - anon_sym_extends, - ACTIONS(6814), 1, - anon_sym_implements, - STATE(1694), 1, - sym_class_body, - STATE(4531), 1, - sym_extends_clause, - STATE(5300), 1, - sym_class_heritage, - STATE(5879), 1, - sym_implements_clause, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(7109), 1, + sym_identifier, + STATE(4601), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136203] = 6, - ACTIONS(6470), 1, + STATE(3718), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [136130] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4231), 1, + STATE(4211), 1, sym_type_annotation, - STATE(4811), 1, + STATE(4788), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6686), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136225] = 6, - ACTIONS(6470), 1, - anon_sym_EQ, - ACTIONS(6478), 1, + [136152] = 8, + ACTIONS(3576), 1, + anon_sym_LT, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(7111), 1, + anon_sym_DOT, + STATE(2565), 1, + sym_arguments, + STATE(5286), 1, + sym_optional_chain, + STATE(5293), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [136178] = 4, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4233), 1, + STATE(3920), 1, sym_type_annotation, - STATE(4813), 1, - sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(7113), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [136247] = 8, - ACTIONS(4627), 1, + anon_sym_PIPE_RBRACE, + [136196] = 8, + ACTIONS(3576), 1, + anon_sym_LT, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4631), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(6063), 1, - anon_sym_LT, - STATE(2031), 1, + STATE(2566), 1, sym_arguments, - STATE(3492), 1, + STATE(3174), 1, sym_type_arguments, - STATE(5243), 1, + STATE(5286), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136273] = 6, - ACTIONS(6470), 1, + [136222] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4240), 1, + STATE(4212), 1, sym_type_annotation, - STATE(4827), 1, + STATE(4791), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6686), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136295] = 6, - ACTIONS(6470), 1, - anon_sym_EQ, - ACTIONS(6478), 1, - anon_sym_COLON, - STATE(4252), 1, - sym_type_annotation, - STATE(4832), 1, - sym__initializer, + [136244] = 8, + ACTIONS(3576), 1, + anon_sym_LT, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(7115), 1, + anon_sym_DOT, + STATE(1951), 1, + sym_arguments, + STATE(5286), 1, + sym_optional_chain, + STATE(5293), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [136317] = 8, - ACTIONS(6812), 1, - anon_sym_extends, - ACTIONS(6814), 1, - anon_sym_implements, - ACTIONS(6832), 1, - anon_sym_LBRACE, - STATE(4199), 1, - sym_class_body, - STATE(4531), 1, - sym_extends_clause, - STATE(5371), 1, - sym_class_heritage, - STATE(5879), 1, - sym_implements_clause, + [136270] = 8, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(6345), 1, + anon_sym_LT, + STATE(1952), 1, + sym_arguments, + STATE(3268), 1, + sym_type_arguments, + STATE(5286), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136343] = 6, - ACTIONS(6470), 1, - anon_sym_EQ, - ACTIONS(6478), 1, + [136296] = 4, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4253), 1, + STATE(4076), 1, sym_type_annotation, - STATE(4841), 1, - sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(7117), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [136365] = 3, - ACTIONS(6773), 1, - anon_sym_is, + anon_sym_PIPE_RBRACE, + [136314] = 8, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + ACTIONS(7119), 1, + sym_identifier, + ACTIONS(7121), 1, + anon_sym_STAR, + STATE(3806), 1, + sym_formal_parameters, + STATE(5247), 1, + sym__call_signature, + STATE(5328), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4111), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [136381] = 8, - ACTIONS(6741), 1, + [136340] = 8, + ACTIONS(6718), 1, anon_sym_LBRACE, - ACTIONS(6812), 1, + ACTIONS(6831), 1, anon_sym_extends, - ACTIONS(6814), 1, + ACTIONS(6833), 1, anon_sym_implements, - STATE(2218), 1, + STATE(2260), 1, sym_class_body, - STATE(4531), 1, + STATE(5080), 1, sym_extends_clause, - STATE(5394), 1, + STATE(5332), 1, sym_class_heritage, - STATE(5879), 1, + STATE(5792), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136407] = 6, - ACTIONS(6470), 1, + [136366] = 6, + ACTIONS(3407), 1, + anon_sym_LBRACE, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(7109), 1, + sym_identifier, + STATE(4385), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3718), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [136388] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4256), 1, + STATE(4213), 1, sym_type_annotation, - STATE(4853), 1, + STATE(4796), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6686), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136429] = 8, - ACTIONS(6812), 1, + [136410] = 8, + ACTIONS(6831), 1, anon_sym_extends, - ACTIONS(6814), 1, + ACTIONS(6833), 1, anon_sym_implements, - ACTIONS(6832), 1, + ACTIONS(6847), 1, anon_sym_LBRACE, - STATE(4215), 1, - sym_class_body, - STATE(4531), 1, - sym_extends_clause, - STATE(5409), 1, - sym_class_heritage, - STATE(5879), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [136455] = 8, - ACTIONS(6771), 1, - anon_sym_LBRACE, - ACTIONS(6812), 1, - anon_sym_extends, - ACTIONS(6814), 1, - anon_sym_implements, - STATE(1703), 1, - sym_class_body, - STATE(4531), 1, - sym_extends_clause, - STATE(5423), 1, - sym_class_heritage, - STATE(5879), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [136481] = 8, - ACTIONS(6812), 1, - anon_sym_extends, - ACTIONS(6814), 1, - anon_sym_implements, - ACTIONS(6832), 1, - anon_sym_LBRACE, - STATE(4250), 1, + STATE(225), 1, sym_class_body, - STATE(4531), 1, + STATE(5080), 1, sym_extends_clause, - STATE(5453), 1, + STATE(5237), 1, sym_class_heritage, - STATE(5879), 1, + STATE(5792), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136507] = 6, - ACTIONS(6470), 1, + [136436] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4254), 1, + STATE(4356), 1, sym_type_annotation, - STATE(4848), 1, + STATE(5087), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6699), 3, + ACTIONS(6651), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136529] = 6, - ACTIONS(6470), 1, + [136458] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4258), 1, + STATE(4156), 1, sym_type_annotation, - STATE(4862), 1, + STATE(4691), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136551] = 6, - ACTIONS(6622), 1, + [136480] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4427), 1, - sym_constraint, - STATE(5330), 1, - sym_default_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6627), 2, + ACTIONS(6455), 1, anon_sym_COLON, - anon_sym_extends, - ACTIONS(7120), 2, - anon_sym_COMMA, - anon_sym_GT, - [136573] = 2, + STATE(4158), 1, + sym_type_annotation, + STATE(4696), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6816), 7, + ACTIONS(6657), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [136587] = 6, - ACTIONS(6470), 1, + [136502] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4285), 1, + STATE(3959), 1, sym_type_annotation, - STATE(4903), 1, + STATE(4536), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6651), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136609] = 8, - ACTIONS(6812), 1, - anon_sym_extends, - ACTIONS(6814), 1, - anon_sym_implements, - ACTIONS(6942), 1, - anon_sym_LBRACE, - STATE(230), 1, - sym_class_body, - STATE(4531), 1, - sym_extends_clause, - STATE(5248), 1, - sym_class_heritage, - STATE(5879), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [136635] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4870), 7, - sym__automatic_semicolon, + [136524] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_in, - anon_sym_of, + ACTIONS(6455), 1, anon_sym_COLON, - [136649] = 2, + STATE(4358), 1, + sym_type_annotation, + STATE(5090), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6982), 7, + ACTIONS(6651), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [136663] = 2, + [136546] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4864), 7, + ACTIONS(6855), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -252685,460 +250738,311 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_of, anon_sym_COLON, - [136677] = 6, - ACTIONS(6470), 1, + [136560] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4294), 1, + STATE(4192), 1, sym_type_annotation, - STATE(4929), 1, + STATE(4747), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136699] = 6, - ACTIONS(6470), 1, - anon_sym_EQ, - ACTIONS(6478), 1, - anon_sym_COLON, - STATE(4295), 1, - sym_type_annotation, - STATE(4931), 1, - sym__initializer, + [136582] = 4, + ACTIONS(2483), 1, + anon_sym_LBRACE, + STATE(5433), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(7123), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [136721] = 6, - ACTIONS(6470), 1, - anon_sym_EQ, - ACTIONS(6478), 1, - anon_sym_COLON, - STATE(4304), 1, - sym_type_annotation, - STATE(4947), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [136600] = 8, + ACTIONS(6831), 1, + anon_sym_extends, + ACTIONS(6833), 1, + anon_sym_implements, + ACTIONS(6853), 1, + anon_sym_LBRACE, + STATE(811), 1, + sym_class_body, + STATE(5080), 1, + sym_extends_clause, + STATE(5394), 1, + sym_class_heritage, + STATE(5792), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [136743] = 6, - ACTIONS(6470), 1, + [136626] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4305), 1, + STATE(4328), 1, sym_type_annotation, - STATE(4951), 1, + STATE(5037), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6659), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136765] = 6, - ACTIONS(6470), 1, - anon_sym_EQ, - ACTIONS(6478), 1, - anon_sym_COLON, - STATE(4306), 1, - sym_type_annotation, - STATE(4955), 1, - sym__initializer, + [136648] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(4854), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, - [136787] = 6, - ACTIONS(6470), 1, - anon_sym_EQ, - ACTIONS(6478), 1, + anon_sym_in, + anon_sym_of, anon_sym_COLON, - STATE(4307), 1, - sym_type_annotation, - STATE(4956), 1, - sym__initializer, + [136662] = 8, + ACTIONS(3576), 1, + anon_sym_LT, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(7107), 1, + anon_sym_DOT, + STATE(1588), 1, + sym_arguments, + STATE(5286), 1, + sym_optional_chain, + STATE(5293), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [136809] = 8, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(6812), 1, + [136688] = 8, + ACTIONS(6831), 1, anon_sym_extends, - ACTIONS(6814), 1, + ACTIONS(6833), 1, anon_sym_implements, - STATE(2278), 1, + ACTIONS(6853), 1, + anon_sym_LBRACE, + STATE(4073), 1, sym_class_body, - STATE(4531), 1, + STATE(5080), 1, sym_extends_clause, - STATE(5366), 1, + STATE(5422), 1, sym_class_heritage, - STATE(5879), 1, + STATE(5792), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136835] = 6, - ACTIONS(3426), 1, + [136714] = 6, + ACTIONS(3407), 1, anon_sym_LBRACE, - ACTIONS(3428), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(7122), 1, + ACTIONS(7109), 1, sym_identifier, - STATE(4440), 1, + STATE(4451), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3675), 3, + STATE(3718), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [136857] = 8, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6476), 1, - anon_sym_LPAREN, - ACTIONS(7124), 1, + [136736] = 6, + ACTIONS(3407), 1, + anon_sym_LBRACE, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(7109), 1, sym_identifier, - ACTIONS(7126), 1, - anon_sym_STAR, - STATE(3893), 1, - sym_formal_parameters, - STATE(5260), 1, - sym__call_signature, - STATE(5354), 1, - sym_type_parameters, + STATE(4416), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136883] = 6, - ACTIONS(6470), 1, - anon_sym_EQ, - ACTIONS(6478), 1, - anon_sym_COLON, - STATE(4312), 1, - sym_type_annotation, - STATE(4973), 1, - sym__initializer, + STATE(3718), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [136758] = 4, + ACTIONS(2483), 1, + anon_sym_LBRACE, + STATE(5368), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(7123), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [136905] = 8, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(6063), 1, - anon_sym_LT, - ACTIONS(7128), 1, - anon_sym_DOT, - STATE(2441), 1, - sym_arguments, - STATE(5174), 1, - sym_optional_chain, - STATE(5178), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [136931] = 8, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6476), 1, - anon_sym_LPAREN, - ACTIONS(7130), 1, - sym_identifier, - ACTIONS(7132), 1, - anon_sym_STAR, - STATE(3893), 1, - sym_formal_parameters, - STATE(5260), 1, - sym__call_signature, - STATE(5354), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [136957] = 6, - ACTIONS(6470), 1, - anon_sym_EQ, - ACTIONS(6478), 1, - anon_sym_COLON, - STATE(4315), 1, - sym_type_annotation, - STATE(4980), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [136776] = 4, + ACTIONS(2483), 1, + anon_sym_LBRACE, + STATE(5416), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(7125), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [136979] = 8, - ACTIONS(3967), 1, + anon_sym_PIPE_RBRACE, + [136794] = 8, + ACTIONS(3576), 1, + anon_sym_LT, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(3971), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(6063), 1, - anon_sym_LT, - STATE(2448), 1, + STATE(2382), 1, sym_arguments, - STATE(3217), 1, + STATE(3174), 1, sym_type_arguments, - STATE(5174), 1, + STATE(5286), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137005] = 8, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(6812), 1, - anon_sym_extends, - ACTIONS(6814), 1, - anon_sym_implements, - STATE(2312), 1, - sym_class_body, - STATE(4531), 1, - sym_extends_clause, - STATE(5437), 1, - sym_class_heritage, - STATE(5879), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [137031] = 4, - ACTIONS(6478), 1, - anon_sym_COLON, - STATE(4047), 1, - sym_type_annotation, + [136820] = 8, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + ACTIONS(7127), 1, + sym_identifier, + ACTIONS(7129), 1, + anon_sym_STAR, + STATE(3806), 1, + sym_formal_parameters, + STATE(5328), 1, + sym_type_parameters, + STATE(5453), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7134), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [137049] = 4, - ACTIONS(6478), 1, - anon_sym_COLON, - STATE(4274), 1, - sym_type_annotation, + [136846] = 4, + ACTIONS(2483), 1, + anon_sym_LBRACE, + STATE(5434), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7136), 5, + ACTIONS(7131), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [137067] = 6, - ACTIONS(6470), 1, + [136864] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4008), 1, + STATE(4135), 1, sym_type_annotation, - STATE(4898), 1, + STATE(4637), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137089] = 6, - ACTIONS(6470), 1, + [136886] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4029), 1, + STATE(4214), 1, sym_type_annotation, - STATE(5025), 1, + STATE(4799), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(6686), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137111] = 8, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(6063), 1, - anon_sym_LT, - ACTIONS(7138), 1, - anon_sym_DOT, - STATE(2154), 1, - sym_arguments, - STATE(5174), 1, - sym_optional_chain, - STATE(5178), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [137137] = 2, + [136908] = 4, + ACTIONS(2483), 1, + anon_sym_LBRACE, + STATE(5259), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3637), 7, - anon_sym_EQ, + ACTIONS(7125), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [137151] = 6, - ACTIONS(3426), 1, - anon_sym_LBRACE, - ACTIONS(3428), 1, - anon_sym_LBRACK, - ACTIONS(7122), 1, - sym_identifier, - STATE(4698), 1, - sym_variable_declarator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3675), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [137173] = 8, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(6063), 1, - anon_sym_LT, - STATE(2155), 1, - sym_arguments, - STATE(3217), 1, - sym_type_arguments, - STATE(5174), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [137199] = 6, - ACTIONS(3426), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [136926] = 8, + ACTIONS(6732), 1, anon_sym_LBRACE, - ACTIONS(3428), 1, - anon_sym_LBRACK, - ACTIONS(7140), 1, - sym_identifier, - STATE(4440), 1, - sym_variable_declarator, + ACTIONS(6831), 1, + anon_sym_extends, + ACTIONS(6833), 1, + anon_sym_implements, + STATE(1702), 1, + sym_class_body, + STATE(5080), 1, + sym_extends_clause, + STATE(5369), 1, + sym_class_heritage, + STATE(5792), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3441), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [137221] = 6, - ACTIONS(3426), 1, + [136952] = 4, + ACTIONS(2483), 1, anon_sym_LBRACE, - ACTIONS(3428), 1, - anon_sym_LBRACK, - ACTIONS(7142), 1, - sym_identifier, - STATE(4461), 1, - sym_variable_declarator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3443), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [137243] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6850), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [137257] = 2, + STATE(5297), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6874), 7, + ACTIONS(7131), 5, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [137271] = 7, - ACTIONS(3550), 1, - anon_sym_COLON, - ACTIONS(7144), 1, - anon_sym_EQ, - ACTIONS(7148), 1, - anon_sym_QMARK, - STATE(4400), 1, - sym_type_annotation, - STATE(5374), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7146), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [137295] = 2, + anon_sym_PIPE_RBRACE, + [136970] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6824), 7, + ACTIONS(4859), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -253146,1560 +251050,1576 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_of, anon_sym_COLON, - [137309] = 4, - ACTIONS(2482), 1, + [136984] = 4, + ACTIONS(2483), 1, anon_sym_LBRACE, - STATE(5257), 1, + STATE(5441), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7150), 5, + ACTIONS(7133), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [137327] = 8, - ACTIONS(4627), 1, - anon_sym_LPAREN, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(6063), 1, + [137002] = 8, + ACTIONS(3576), 1, anon_sym_LT, - ACTIONS(7152), 1, - anon_sym_DOT, - STATE(2517), 1, - sym_arguments, - STATE(5207), 1, - sym_type_arguments, - STATE(5243), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [137353] = 8, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(6063), 1, - anon_sym_LT, - STATE(1529), 1, - sym_arguments, - STATE(3217), 1, - sym_type_arguments, - STATE(5174), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [137379] = 8, - ACTIONS(4627), 1, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(4631), 1, + ACTIONS(4014), 1, anon_sym_DOT, - ACTIONS(4714), 1, + ACTIONS(4642), 1, anon_sym_QMARK_DOT, - ACTIONS(6063), 1, - anon_sym_LT, - STATE(2466), 1, + STATE(2351), 1, sym_arguments, - STATE(3492), 1, + STATE(3174), 1, sym_type_arguments, - STATE(5243), 1, + STATE(5286), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137405] = 6, - ACTIONS(4627), 1, - anon_sym_LPAREN, - ACTIONS(6063), 1, - anon_sym_LT, - STATE(2121), 1, - sym_arguments, - STATE(5282), 1, - sym_type_arguments, + [137028] = 8, + ACTIONS(6718), 1, + anon_sym_LBRACE, + ACTIONS(6831), 1, + anon_sym_extends, + ACTIONS(6833), 1, + anon_sym_implements, + STATE(2327), 1, + sym_class_body, + STATE(5080), 1, + sym_extends_clause, + STATE(5326), 1, + sym_class_heritage, + STATE(5792), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7114), 3, - anon_sym_LBRACK, - sym_identifier, - sym_private_property_identifier, - [137427] = 6, - ACTIONS(6470), 1, + [137054] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4352), 1, + STATE(4219), 1, sym_type_annotation, - STATE(5034), 1, + STATE(4811), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6684), 3, + ACTIONS(6686), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137449] = 7, - ACTIONS(2344), 1, - anon_sym_DQUOTE, - ACTIONS(2346), 1, - anon_sym_SQUOTE, - ACTIONS(6715), 1, - sym_identifier, - ACTIONS(6783), 1, - anon_sym_type, - STATE(5169), 1, - sym__import_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5600), 2, - sym__module_export_name, - sym_string, - [137473] = 8, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(6063), 1, - anon_sym_LT, - ACTIONS(7154), 1, - anon_sym_DOT, - STATE(2609), 1, - sym_arguments, - STATE(5174), 1, - sym_optional_chain, - STATE(5178), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [137499] = 8, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(6063), 1, - anon_sym_LT, - STATE(2531), 1, - sym_arguments, - STATE(3217), 1, - sym_type_arguments, - STATE(5174), 1, - sym_optional_chain, + [137076] = 6, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(4139), 1, + sym_type_annotation, + STATE(4664), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137525] = 8, - ACTIONS(4627), 1, - anon_sym_LPAREN, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(6063), 1, - anon_sym_LT, - ACTIONS(7156), 1, - anon_sym_DOT, - STATE(1951), 1, - sym_arguments, - STATE(5174), 1, - sym_optional_chain, - STATE(5178), 1, - sym_type_arguments, + ACTIONS(6657), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [137098] = 6, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(4054), 1, + sym_type_annotation, + STATE(4983), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137551] = 8, - ACTIONS(3971), 1, - anon_sym_DOT, - ACTIONS(4627), 1, - anon_sym_LPAREN, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(6362), 1, - anon_sym_LT, - STATE(1952), 1, - sym_arguments, - STATE(3230), 1, - sym_type_arguments, - STATE(5174), 1, - sym_optional_chain, + ACTIONS(6665), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [137120] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6865), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [137134] = 4, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(4259), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137577] = 6, - ACTIONS(3426), 1, + ACTIONS(7135), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [137152] = 8, + ACTIONS(6718), 1, anon_sym_LBRACE, - ACTIONS(3428), 1, - anon_sym_LBRACK, - ACTIONS(7122), 1, - sym_identifier, - STATE(4481), 1, - sym_variable_declarator, + ACTIONS(6831), 1, + anon_sym_extends, + ACTIONS(6833), 1, + anon_sym_implements, + STATE(2191), 1, + sym_class_body, + STATE(5080), 1, + sym_extends_clause, + STATE(5430), 1, + sym_class_heritage, + STATE(5792), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3675), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [137599] = 6, - ACTIONS(6470), 1, + [137178] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4356), 1, + STATE(4221), 1, sym_type_annotation, - STATE(5048), 1, + STATE(4817), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6666), 3, + ACTIONS(6686), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137621] = 6, - ACTIONS(3426), 1, - anon_sym_LBRACE, - ACTIONS(3428), 1, - anon_sym_LBRACK, - ACTIONS(7122), 1, - sym_identifier, - STATE(4501), 1, - sym_variable_declarator, + [137200] = 5, + ACTIONS(5555), 1, + anon_sym_COMMA, + ACTIONS(5624), 1, + anon_sym_RBRACE, + STATE(4960), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3675), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [137643] = 8, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6476), 1, + ACTIONS(3814), 4, anon_sym_LPAREN, - ACTIONS(7158), 1, - sym_identifier, - ACTIONS(7160), 1, - anon_sym_STAR, - STATE(3893), 1, - sym_formal_parameters, - STATE(5258), 1, - sym__call_signature, - STATE(5354), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [137669] = 8, - ACTIONS(6812), 1, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [137220] = 8, + ACTIONS(6831), 1, anon_sym_extends, - ACTIONS(6814), 1, + ACTIONS(6833), 1, anon_sym_implements, - ACTIONS(6856), 1, + ACTIONS(6923), 1, anon_sym_LBRACE, - STATE(808), 1, + STATE(936), 1, sym_class_body, - STATE(4531), 1, + STATE(5080), 1, sym_extends_clause, - STATE(5305), 1, + STATE(5287), 1, sym_class_heritage, - STATE(5879), 1, + STATE(5792), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137695] = 8, - ACTIONS(6676), 1, + [137246] = 8, + ACTIONS(6682), 1, anon_sym_LT, - ACTIONS(7162), 1, + ACTIONS(7137), 1, anon_sym_LBRACE, - ACTIONS(7164), 1, + ACTIONS(7139), 1, anon_sym_COMMA, - ACTIONS(7166), 1, + ACTIONS(7141), 1, anon_sym_DOT, - ACTIONS(7168), 1, + ACTIONS(7143), 1, anon_sym_LBRACE_PIPE, - STATE(4416), 1, + STATE(4399), 1, aux_sym_extends_type_clause_repeat1, - STATE(4939), 1, + STATE(5075), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137721] = 6, - ACTIONS(6622), 1, - anon_sym_EQ, - STATE(4443), 1, - sym_constraint, - STATE(5261), 1, - sym_default_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6627), 2, - anon_sym_COLON, - anon_sym_extends, - ACTIONS(7170), 2, - anon_sym_COMMA, - anon_sym_GT, - [137743] = 8, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6476), 1, - anon_sym_LPAREN, - ACTIONS(7172), 1, - sym_identifier, - ACTIONS(7174), 1, - anon_sym_STAR, - STATE(3893), 1, - sym_formal_parameters, - STATE(5354), 1, - sym_type_parameters, - STATE(5414), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [137769] = 8, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(6812), 1, + [137272] = 8, + ACTIONS(6831), 1, anon_sym_extends, - ACTIONS(6814), 1, + ACTIONS(6833), 1, anon_sym_implements, - STATE(2114), 1, + ACTIONS(6923), 1, + anon_sym_LBRACE, + STATE(825), 1, sym_class_body, - STATE(4531), 1, + STATE(5080), 1, sym_extends_clause, - STATE(5220), 1, + STATE(5395), 1, sym_class_heritage, - STATE(5879), 1, + STATE(5792), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137795] = 6, - ACTIONS(6470), 1, + [137298] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4360), 1, + STATE(4363), 1, sym_type_annotation, - STATE(5057), 1, + STATE(5097), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6666), 3, + ACTIONS(6651), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137817] = 6, - ACTIONS(6470), 1, + [137320] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4361), 1, + STATE(4064), 1, sym_type_annotation, - STATE(5061), 1, + STATE(5035), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6666), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137839] = 8, - ACTIONS(3967), 1, - anon_sym_LPAREN, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(6063), 1, - anon_sym_LT, - ACTIONS(7176), 1, - anon_sym_DOT, - STATE(1551), 1, - sym_arguments, - STATE(5174), 1, - sym_optional_chain, - STATE(5178), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [137865] = 6, - ACTIONS(6470), 1, - anon_sym_EQ, - ACTIONS(6478), 1, + [137342] = 7, + ACTIONS(3557), 1, anon_sym_COLON, - STATE(4363), 1, + ACTIONS(7145), 1, + anon_sym_EQ, + ACTIONS(7149), 1, + anon_sym_QMARK, + STATE(4383), 1, sym_type_annotation, - STATE(5068), 1, + STATE(5272), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6666), 3, + ACTIONS(7147), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [137366] = 4, + ACTIONS(2483), 1, + anon_sym_LBRACE, + STATE(5348), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7151), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [137887] = 4, - ACTIONS(2482), 1, + anon_sym_PIPE_RBRACE, + [137384] = 4, + ACTIONS(2483), 1, anon_sym_LBRACE, - STATE(5452), 1, + STATE(5420), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7153), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [137402] = 4, + ACTIONS(2483), 1, + anon_sym_LBRACE, + STATE(5134), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7178), 5, + ACTIONS(7151), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [137905] = 6, - ACTIONS(6470), 1, + [137420] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4364), 1, + STATE(4336), 1, sym_type_annotation, - STATE(5069), 1, + STATE(5061), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6651), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [137442] = 6, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(4345), 1, + sym_type_annotation, + STATE(5071), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6651), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [137464] = 6, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(4066), 1, + sym_type_annotation, + STATE(5088), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6666), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137927] = 4, - ACTIONS(2482), 1, + [137486] = 4, + ACTIONS(2483), 1, anon_sym_LBRACE, - STATE(5161), 1, + STATE(5214), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7178), 5, + ACTIONS(7155), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [137945] = 8, - ACTIONS(6812), 1, - anon_sym_extends, - ACTIONS(6814), 1, - anon_sym_implements, - ACTIONS(6942), 1, + [137504] = 4, + ACTIONS(2483), 1, anon_sym_LBRACE, - STATE(232), 1, - sym_class_body, - STATE(4531), 1, - sym_extends_clause, - STATE(5321), 1, - sym_class_heritage, - STATE(5879), 1, - sym_implements_clause, + STATE(5221), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137971] = 4, - ACTIONS(2482), 1, + ACTIONS(7157), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [137522] = 4, + ACTIONS(2483), 1, anon_sym_LBRACE, - STATE(5458), 1, + STATE(5147), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7180), 5, + ACTIONS(7155), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [137989] = 3, - ACTIONS(6773), 1, - anon_sym_is, + [137540] = 8, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + ACTIONS(7159), 1, + sym_identifier, + ACTIONS(7161), 1, + anon_sym_STAR, + STATE(3806), 1, + sym_formal_parameters, + STATE(5328), 1, + sym_type_parameters, + STATE(5421), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4093), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [138005] = 6, - ACTIONS(6470), 1, + [137566] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4365), 1, + STATE(4075), 1, sym_type_annotation, - STATE(5071), 1, + STATE(5112), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6666), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138027] = 3, - ACTIONS(7182), 1, - anon_sym_is, + [137588] = 8, + ACTIONS(3576), 1, + anon_sym_LT, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + STATE(2130), 1, + sym_arguments, + STATE(5280), 1, + sym_optional_chain, + STATE(5376), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4087), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [138043] = 6, - ACTIONS(6470), 1, - anon_sym_EQ, - ACTIONS(6478), 1, - anon_sym_COLON, - STATE(4366), 1, - sym_type_annotation, - STATE(5072), 1, - sym__initializer, + [137614] = 4, + ACTIONS(2483), 1, + anon_sym_LBRACE, + STATE(5389), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6666), 3, + ACTIONS(7163), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [138065] = 5, - ACTIONS(7184), 1, - anon_sym_AMP, - ACTIONS(7186), 1, - anon_sym_PIPE, - ACTIONS(7188), 1, - anon_sym_extends, + anon_sym_PIPE_RBRACE, + [137632] = 8, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + ACTIONS(7165), 1, + sym_identifier, + ACTIONS(7167), 1, + anon_sym_STAR, + STATE(3806), 1, + sym_formal_parameters, + STATE(5235), 1, + sym__call_signature, + STATE(5328), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4306), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [138085] = 3, - ACTIONS(7184), 1, - anon_sym_AMP, + [137658] = 8, + ACTIONS(3576), 1, + anon_sym_LT, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4014), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + STATE(1655), 1, + sym_arguments, + STATE(5286), 1, + sym_optional_chain, + STATE(5293), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4362), 6, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [138101] = 6, - ACTIONS(6470), 1, - anon_sym_EQ, - ACTIONS(6478), 1, - anon_sym_COLON, - STATE(4367), 1, - sym_type_annotation, - STATE(5076), 1, - sym__initializer, + [137684] = 4, + ACTIONS(2483), 1, + anon_sym_LBRACE, + STATE(5392), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6666), 3, + ACTIONS(7169), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [138123] = 6, - ACTIONS(6470), 1, + anon_sym_PIPE_RBRACE, + [137702] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4368), 1, + STATE(4079), 1, sym_type_annotation, - STATE(5078), 1, + STATE(4518), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6666), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138145] = 5, - ACTIONS(7184), 1, - anon_sym_AMP, - ACTIONS(7186), 1, - anon_sym_PIPE, - ACTIONS(7188), 1, - anon_sym_extends, + [137724] = 8, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + ACTIONS(7171), 1, + sym_identifier, + ACTIONS(7173), 1, + anon_sym_STAR, + STATE(3806), 1, + sym_formal_parameters, + STATE(5247), 1, + sym__call_signature, + STATE(5328), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4223), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [138165] = 5, - ACTIONS(7184), 1, - anon_sym_AMP, - ACTIONS(7186), 1, - anon_sym_PIPE, - ACTIONS(7188), 1, - anon_sym_extends, + [137750] = 8, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(7175), 1, + sym_identifier, + ACTIONS(7177), 1, + anon_sym_DOT, + STATE(783), 1, + sym_nested_identifier, + STATE(798), 1, + sym_string, + STATE(878), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [137776] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4231), 4, + ACTIONS(6871), 7, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [138185] = 5, - ACTIONS(7184), 1, - anon_sym_AMP, - ACTIONS(7186), 1, - anon_sym_PIPE, - ACTIONS(7188), 1, + anon_sym_SEMI, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [137790] = 8, + ACTIONS(6831), 1, anon_sym_extends, + ACTIONS(6833), 1, + anon_sym_implements, + ACTIONS(6853), 1, + anon_sym_LBRACE, + STATE(4033), 1, + sym_class_body, + STATE(5080), 1, + sym_extends_clause, + STATE(5296), 1, + sym_class_heritage, + STATE(5792), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [137816] = 6, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(3974), 1, + sym_type_annotation, + STATE(4628), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4437), 4, + ACTIONS(6651), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_SEMI, + [137838] = 7, + ACTIONS(3109), 1, + anon_sym_DQUOTE, + ACTIONS(3111), 1, + anon_sym_SQUOTE, + ACTIONS(6704), 1, + sym_identifier, + ACTIONS(6768), 1, + anon_sym_type, + STATE(5355), 1, + sym__import_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5579), 2, + sym__module_export_name, + sym_string, + [137862] = 8, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + ACTIONS(7179), 1, + anon_sym_COLON, + ACTIONS(7181), 1, anon_sym_QMARK, - [138205] = 5, - ACTIONS(7184), 1, - anon_sym_AMP, - ACTIONS(7186), 1, - anon_sym_PIPE, - ACTIONS(7188), 1, - anon_sym_extends, + STATE(3806), 1, + sym_formal_parameters, + STATE(5301), 1, + sym__call_signature, + STATE(5328), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [137888] = 4, + ACTIONS(2483), 1, + anon_sym_LBRACE, + STATE(5238), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4441), 4, + ACTIONS(7183), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [138225] = 8, - ACTIONS(2570), 1, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [137906] = 8, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6476), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(7190), 1, + ACTIONS(7185), 1, sym_identifier, - ACTIONS(7192), 1, + ACTIONS(7187), 1, anon_sym_STAR, - STATE(3893), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(5270), 1, - sym__call_signature, - STATE(5354), 1, + STATE(5328), 1, sym_type_parameters, + STATE(5421), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138251] = 6, - ACTIONS(6470), 1, + [137932] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4370), 1, + STATE(3975), 1, sym_type_annotation, - STATE(5094), 1, + STATE(4630), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6666), 3, + ACTIONS(6651), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138273] = 5, - ACTIONS(7184), 1, - anon_sym_AMP, - ACTIONS(7186), 1, - anon_sym_PIPE, - ACTIONS(7188), 1, + [137954] = 8, + ACTIONS(218), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1534), 1, + anon_sym_LBRACE, + ACTIONS(7189), 1, + anon_sym_LT, + ACTIONS(7191), 1, anon_sym_extends, + STATE(897), 1, + sym_object_type, + STATE(4208), 1, + sym_type_parameters, + STATE(4780), 1, + sym_extends_type_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4326), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [138293] = 8, - ACTIONS(6812), 1, - anon_sym_extends, - ACTIONS(6814), 1, - anon_sym_implements, - ACTIONS(6832), 1, - anon_sym_LBRACE, - STATE(788), 1, - sym_class_body, - STATE(4531), 1, - sym_extends_clause, - STATE(5331), 1, - sym_class_heritage, - STATE(5879), 1, - sym_implements_clause, + [137980] = 6, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(4100), 1, + sym_type_annotation, + STATE(4565), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138319] = 2, + ACTIONS(6669), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138002] = 3, + ACTIONS(7193), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5255), 7, - anon_sym_EQ, + ACTIONS(3586), 6, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LT, + anon_sym_RBRACK, anon_sym_QMARK, - [138333] = 6, - ACTIONS(6470), 1, + [138018] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4371), 1, + STATE(4080), 1, sym_type_annotation, - STATE(5096), 1, + STATE(4519), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6666), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138355] = 8, - ACTIONS(6741), 1, - anon_sym_LBRACE, - ACTIONS(6812), 1, - anon_sym_extends, - ACTIONS(6814), 1, - anon_sym_implements, - STATE(2334), 1, - sym_class_body, - STATE(4531), 1, - sym_extends_clause, - STATE(5341), 1, - sym_class_heritage, - STATE(5879), 1, - sym_implements_clause, + [138040] = 6, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(4081), 1, + sym_type_annotation, + STATE(4521), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138381] = 6, - ACTIONS(6470), 1, + ACTIONS(6657), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138062] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4380), 1, + STATE(4082), 1, sym_type_annotation, - STATE(5117), 1, + STATE(4526), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6666), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138403] = 6, - ACTIONS(6470), 1, + [138084] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4381), 1, + STATE(4086), 1, sym_type_annotation, - STATE(5119), 1, + STATE(4532), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6666), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138425] = 5, - ACTIONS(5276), 1, + [138106] = 4, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(4284), 1, + sym_type_annotation, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7195), 5, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5714), 1, anon_sym_RBRACE, - STATE(4943), 1, - aux_sym_object_repeat1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [138124] = 3, + ACTIONS(7095), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3819), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, + ACTIONS(4306), 6, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_QMARK, - [138445] = 6, - ACTIONS(6470), 1, - anon_sym_EQ, - ACTIONS(6478), 1, - anon_sym_COLON, - STATE(4019), 1, - sym_type_annotation, - STATE(4865), 1, - sym__initializer, + anon_sym_extends, + [138140] = 5, + ACTIONS(7095), 1, + anon_sym_AMP, + ACTIONS(7097), 1, + anon_sym_PIPE, + ACTIONS(7099), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6666), 3, - sym__automatic_semicolon, + ACTIONS(4294), 4, anon_sym_COMMA, - anon_sym_SEMI, - [138467] = 6, - ACTIONS(6470), 1, - anon_sym_EQ, - ACTIONS(6478), 1, - anon_sym_COLON, - STATE(4026), 1, - sym_type_annotation, - STATE(4607), 1, - sym__initializer, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [138160] = 3, + ACTIONS(7197), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4192), 6, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + [138176] = 8, + ACTIONS(3576), 1, + anon_sym_LT, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(7199), 1, + anon_sym_DOT, + STATE(1588), 1, + sym_arguments, + STATE(5286), 1, + sym_optional_chain, + STATE(5293), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6666), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [138489] = 6, - ACTIONS(6470), 1, + [138202] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3990), 1, + STATE(4364), 1, sym_type_annotation, - STATE(4682), 1, + STATE(5098), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6666), 3, + ACTIONS(6651), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138511] = 6, - ACTIONS(6470), 1, + [138224] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4002), 1, + STATE(4230), 1, sym_type_annotation, - STATE(4807), 1, + STATE(4832), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6666), 3, + ACTIONS(6686), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138533] = 4, - ACTIONS(2482), 1, + [138246] = 8, + ACTIONS(6732), 1, anon_sym_LBRACE, - STATE(5332), 1, - sym_statement_block, + ACTIONS(6831), 1, + anon_sym_extends, + ACTIONS(6833), 1, + anon_sym_implements, + STATE(1664), 1, + sym_class_body, + STATE(5080), 1, + sym_extends_clause, + STATE(5234), 1, + sym_class_heritage, + STATE(5792), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7194), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [138551] = 4, - ACTIONS(2482), 1, - anon_sym_LBRACE, - STATE(5334), 1, - sym_statement_block, + [138272] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7196), 5, + ACTIONS(6921), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [138569] = 4, - ACTIONS(2482), 1, - anon_sym_LBRACE, - STATE(5208), 1, - sym_statement_block, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [138286] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7196), 5, + ACTIONS(7201), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_COLON, anon_sym_PIPE_RBRACE, - [138587] = 4, - ACTIONS(2482), 1, - anon_sym_LBRACE, - STATE(5211), 1, - sym_statement_block, + [138300] = 6, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(4093), 1, + sym_type_annotation, + STATE(4539), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7194), 5, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [138605] = 8, - ACTIONS(6771), 1, + [138322] = 8, + ACTIONS(6732), 1, anon_sym_LBRACE, - ACTIONS(6812), 1, + ACTIONS(6831), 1, anon_sym_extends, - ACTIONS(6814), 1, + ACTIONS(6833), 1, anon_sym_implements, - STATE(2590), 1, + STATE(2576), 1, sym_class_body, - STATE(4531), 1, + STATE(5080), 1, sym_extends_clause, - STATE(5357), 1, + STATE(5157), 1, sym_class_heritage, - STATE(5879), 1, + STATE(5792), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138631] = 6, - ACTIONS(6470), 1, - anon_sym_EQ, - ACTIONS(6478), 1, - anon_sym_COLON, - STATE(4055), 1, - sym_type_annotation, - STATE(4594), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6733), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [138653] = 6, - ACTIONS(6470), 1, - anon_sym_EQ, - ACTIONS(6478), 1, - anon_sym_COLON, - STATE(4105), 1, - sym_type_annotation, - STATE(4623), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6666), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [138675] = 6, - ACTIONS(6470), 1, + [138348] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4118), 1, + STATE(4165), 1, sym_type_annotation, - STATE(4637), 1, + STATE(4709), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6666), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138697] = 6, - ACTIONS(6470), 1, + [138370] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4139), 1, + STATE(4368), 1, sym_type_annotation, - STATE(4665), 1, + STATE(5105), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6666), 3, + ACTIONS(6651), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138719] = 6, - ACTIONS(6470), 1, + [138392] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4267), 1, + STATE(3991), 1, sym_type_annotation, - STATE(4731), 1, + STATE(4704), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6666), 3, + ACTIONS(6651), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138741] = 6, - ACTIONS(6470), 1, + [138414] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4341), 1, + STATE(3993), 1, sym_type_annotation, - STATE(5014), 1, + STATE(4710), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6686), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [138763] = 4, - ACTIONS(2482), 1, - anon_sym_LBRACE, - STATE(5214), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7198), 5, + ACTIONS(6651), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [138781] = 4, - ACTIONS(2482), 1, + [138436] = 8, + ACTIONS(6831), 1, + anon_sym_extends, + ACTIONS(6833), 1, + anon_sym_implements, + ACTIONS(6847), 1, anon_sym_LBRACE, - STATE(5218), 1, - sym_statement_block, + STATE(228), 1, + sym_class_body, + STATE(5080), 1, + sym_extends_clause, + STATE(5303), 1, + sym_class_heritage, + STATE(5792), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7200), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [138799] = 4, - ACTIONS(2482), 1, - anon_sym_LBRACE, - STATE(5228), 1, - sym_statement_block, + [138462] = 8, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(7203), 1, + sym_identifier, + ACTIONS(7205), 1, + anon_sym_DOT, + STATE(3500), 1, + sym_nested_identifier, + STATE(3698), 1, + sym_string, + STATE(4311), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7198), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [138817] = 4, - ACTIONS(2482), 1, + [138488] = 8, + ACTIONS(1034), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1610), 1, anon_sym_LBRACE, - STATE(5230), 1, - sym_statement_block, + ACTIONS(7189), 1, + anon_sym_LT, + ACTIONS(7191), 1, + anon_sym_extends, + STATE(3951), 1, + sym_type_parameters, + STATE(4374), 1, + sym_object_type, + STATE(5108), 1, + sym_extends_type_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7200), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [138835] = 6, - ACTIONS(6470), 1, + [138514] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3908), 1, + STATE(4096), 1, sym_type_annotation, - STATE(5018), 1, + STATE(4556), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6666), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138857] = 4, - ACTIONS(2482), 1, - anon_sym_LBRACE, - STATE(5210), 1, - sym_statement_block, + [138536] = 6, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(4097), 1, + sym_type_annotation, + STATE(4558), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7202), 5, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [138875] = 4, - ACTIONS(2482), 1, - anon_sym_LBRACE, - STATE(5239), 1, - sym_statement_block, + [138558] = 6, + ACTIONS(3576), 1, + anon_sym_LT, + ACTIONS(4010), 1, + anon_sym_LPAREN, + STATE(1671), 1, + sym_arguments, + STATE(5298), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7204), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [138893] = 6, - ACTIONS(6470), 1, + ACTIONS(7089), 3, + anon_sym_LBRACK, + sym_identifier, + sym_private_property_identifier, + [138580] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4111), 1, + STATE(4232), 1, sym_type_annotation, - STATE(4837), 1, + STATE(4841), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6664), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [138915] = 4, - ACTIONS(2482), 1, - anon_sym_LBRACE, - STATE(5236), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7202), 5, + ACTIONS(6686), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [138933] = 4, - ACTIONS(2482), 1, - anon_sym_LBRACE, - STATE(5237), 1, - sym_statement_block, + [138602] = 6, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(4006), 1, + sym_type_annotation, + STATE(4759), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7204), 5, + ACTIONS(6651), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [138951] = 4, - ACTIONS(2482), 1, - anon_sym_LBRACE, - STATE(5395), 1, - sym_statement_block, + [138624] = 6, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(4008), 1, + sym_type_annotation, + STATE(4768), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7206), 5, + ACTIONS(6651), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [138969] = 4, - ACTIONS(2482), 1, - anon_sym_LBRACE, - STATE(5397), 1, - sym_statement_block, + [138646] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7208), 5, - sym__automatic_semicolon, + ACTIONS(3622), 7, + anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [138987] = 4, - ACTIONS(2482), 1, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [138660] = 8, + ACTIONS(6718), 1, anon_sym_LBRACE, - STATE(5245), 1, - sym_statement_block, + ACTIONS(6831), 1, + anon_sym_extends, + ACTIONS(6833), 1, + anon_sym_implements, + STATE(2234), 1, + sym_class_body, + STATE(5080), 1, + sym_extends_clause, + STATE(5414), 1, + sym_class_heritage, + STATE(5792), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7206), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [139005] = 6, - ACTIONS(6470), 1, + [138686] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3923), 1, + STATE(4015), 1, sym_type_annotation, - STATE(4771), 1, + STATE(4807), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6666), 3, + ACTIONS(6651), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139027] = 4, - ACTIONS(2482), 1, - anon_sym_LBRACE, - STATE(5167), 1, - sym_statement_block, + [138708] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7210), 5, + ACTIONS(4850), 7, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [139045] = 4, - ACTIONS(4593), 1, anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5727), 2, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3819), 4, - anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_in, + anon_sym_of, anon_sym_COLON, + [138722] = 8, + ACTIONS(2499), 1, anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + ACTIONS(7181), 1, anon_sym_QMARK, - [139063] = 4, - ACTIONS(2482), 1, - anon_sym_LBRACE, - STATE(5177), 1, - sym_statement_block, + ACTIONS(7207), 1, + anon_sym_COLON, + STATE(3806), 1, + sym_formal_parameters, + STATE(5301), 1, + sym__call_signature, + STATE(5328), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7212), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [139081] = 4, - ACTIONS(2482), 1, + [138748] = 8, + ACTIONS(6718), 1, anon_sym_LBRACE, - STATE(5388), 1, - sym_statement_block, + ACTIONS(6831), 1, + anon_sym_extends, + ACTIONS(6833), 1, + anon_sym_implements, + STATE(2170), 1, + sym_class_body, + STATE(5080), 1, + sym_extends_clause, + STATE(5183), 1, + sym_class_heritage, + STATE(5792), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7214), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [139099] = 6, - ACTIONS(6470), 1, + [138774] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3929), 1, + STATE(4021), 1, sym_type_annotation, - STATE(4523), 1, + STATE(4828), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6666), 3, + ACTIONS(6651), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139121] = 4, - ACTIONS(6478), 1, + [138796] = 6, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3919), 1, + STATE(4188), 1, sym_type_annotation, + STATE(4749), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7216), 5, + ACTIONS(7209), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [139139] = 6, - ACTIONS(6470), 1, - anon_sym_EQ, - ACTIONS(6478), 1, - anon_sym_COLON, - STATE(3933), 1, - sym_type_annotation, - STATE(4952), 1, - sym__initializer, + [138818] = 6, + ACTIONS(3407), 1, + anon_sym_LBRACE, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(7109), 1, + sym_identifier, + STATE(4450), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6666), 3, - sym__automatic_semicolon, + STATE(3718), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [138840] = 8, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + ACTIONS(7211), 1, + sym_identifier, + ACTIONS(7213), 1, + anon_sym_STAR, + STATE(3806), 1, + sym_formal_parameters, + STATE(5247), 1, + sym__call_signature, + STATE(5328), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [138866] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5494), 7, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [139161] = 8, - ACTIONS(3967), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4714), 1, - anon_sym_QMARK_DOT, - ACTIONS(6063), 1, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [138880] = 8, + ACTIONS(3576), 1, anon_sym_LT, - ACTIONS(7128), 1, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + ACTIONS(7215), 1, anon_sym_DOT, - STATE(1551), 1, + STATE(1983), 1, sym_arguments, - STATE(5174), 1, + STATE(5280), 1, sym_optional_chain, - STATE(5178), 1, + STATE(5376), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139187] = 4, - ACTIONS(6478), 1, - anon_sym_COLON, - STATE(4044), 1, - sym_type_annotation, + [138906] = 3, + ACTIONS(6758), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7218), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [139205] = 2, + ACTIONS(4106), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [138922] = 3, + ACTIONS(7217), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7220), 7, - sym__automatic_semicolon, + ACTIONS(4110), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [138938] = 4, + ACTIONS(7065), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [139219] = 6, - ACTIONS(6470), 1, - anon_sym_EQ, - ACTIONS(6478), 1, - anon_sym_COLON, - STATE(3956), 1, - sym_type_annotation, - STATE(4626), 1, - sym__initializer, + STATE(4280), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6666), 3, + ACTIONS(1674), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [139241] = 6, - ACTIONS(6470), 1, - anon_sym_EQ, - ACTIONS(6478), 1, - anon_sym_COLON, - STATE(3972), 1, - sym_type_annotation, - STATE(4677), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [138956] = 6, + ACTIONS(3407), 1, + anon_sym_LBRACE, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(7219), 1, + sym_identifier, + STATE(4416), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6666), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [139263] = 6, - ACTIONS(6470), 1, + STATE(3387), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [138978] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4098), 1, + STATE(4102), 1, sym_type_annotation, - STATE(4618), 1, + STATE(4569), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6703), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139285] = 6, - ACTIONS(6470), 1, + [139000] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4000), 1, + STATE(4103), 1, sym_type_annotation, - STATE(4829), 1, + STATE(4571), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6666), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139307] = 6, - ACTIONS(6470), 1, - anon_sym_EQ, - ACTIONS(6478), 1, - anon_sym_COLON, - STATE(4004), 1, - sym_type_annotation, - STATE(4836), 1, - sym__initializer, + [139022] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6666), 3, + ACTIONS(6919), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, - [139329] = 6, - ACTIONS(6470), 1, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [139036] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4018), 1, + STATE(4106), 1, sym_type_annotation, - STATE(4928), 1, + STATE(4577), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6666), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139351] = 6, - ACTIONS(6470), 1, + [139058] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4020), 1, + STATE(4109), 1, sym_type_annotation, - STATE(4964), 1, + STATE(4580), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6666), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139373] = 6, - ACTIONS(6470), 1, + [139080] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4022), 1, + STATE(4110), 1, sym_type_annotation, - STATE(4995), 1, + STATE(4583), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6666), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139395] = 6, - ACTIONS(6470), 1, + [139102] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4025), 1, + STATE(4111), 1, sym_type_annotation, - STATE(5005), 1, + STATE(4584), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6666), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139417] = 2, + [139124] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7222), 7, + ACTIONS(7221), 7, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, @@ -254707,3370 +252627,3657 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_PIPE_RBRACE, - [139431] = 6, - ACTIONS(6470), 1, + [139138] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4050), 1, + STATE(4118), 1, sym_type_annotation, - STATE(4533), 1, + STATE(4605), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6666), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139453] = 6, - ACTIONS(6470), 1, + [139160] = 8, + ACTIONS(6718), 1, + anon_sym_LBRACE, + ACTIONS(6831), 1, + anon_sym_extends, + ACTIONS(6833), 1, + anon_sym_implements, + STATE(2282), 1, + sym_class_body, + STATE(5080), 1, + sym_extends_clause, + STATE(5446), 1, + sym_class_heritage, + STATE(5792), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [139186] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4054), 1, + STATE(4119), 1, sym_type_annotation, - STATE(4546), 1, + STATE(4607), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6666), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139475] = 6, - ACTIONS(6470), 1, + [139208] = 5, + ACTIONS(7095), 1, + anon_sym_AMP, + ACTIONS(7097), 1, + anon_sym_PIPE, + ACTIONS(7099), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4404), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [139228] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4057), 1, + STATE(4120), 1, sym_type_annotation, - STATE(4551), 1, + STATE(4609), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6666), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139497] = 6, - ACTIONS(6470), 1, - anon_sym_EQ, - ACTIONS(6478), 1, - anon_sym_COLON, - STATE(4059), 1, - sym_type_annotation, - STATE(4557), 1, - sym__initializer, + [139250] = 3, + ACTIONS(7095), 1, + anon_sym_AMP, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4440), 6, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [139266] = 4, + ACTIONS(2483), 1, + anon_sym_LBRACE, + STATE(5262), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6666), 3, + ACTIONS(7223), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [139519] = 6, - ACTIONS(3426), 1, + anon_sym_PIPE_RBRACE, + [139284] = 6, + ACTIONS(3407), 1, anon_sym_LBRACE, - ACTIONS(3428), 1, + ACTIONS(3409), 1, anon_sym_LBRACK, - ACTIONS(7122), 1, + ACTIONS(7225), 1, sym_identifier, - STATE(4461), 1, + STATE(4450), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3675), 3, + STATE(3385), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [139541] = 6, - ACTIONS(6470), 1, - anon_sym_EQ, - ACTIONS(6478), 1, - anon_sym_COLON, - STATE(4079), 1, - sym_type_annotation, - STATE(4572), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6666), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [139563] = 8, - ACTIONS(6812), 1, + [139306] = 8, + ACTIONS(6732), 1, + anon_sym_LBRACE, + ACTIONS(6831), 1, anon_sym_extends, - ACTIONS(6814), 1, + ACTIONS(6833), 1, anon_sym_implements, - ACTIONS(6856), 1, - anon_sym_LBRACE, - STATE(851), 1, + STATE(1690), 1, sym_class_body, - STATE(4531), 1, + STATE(5080), 1, sym_extends_clause, - STATE(5189), 1, + STATE(5188), 1, sym_class_heritage, - STATE(5879), 1, + STATE(5792), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139589] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7224), 7, - sym__automatic_semicolon, + [139332] = 8, + ACTIONS(6831), 1, + anon_sym_extends, + ACTIONS(6833), 1, + anon_sym_implements, + ACTIONS(6853), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [139603] = 8, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6476), 1, - anon_sym_LPAREN, - ACTIONS(7226), 1, - sym_identifier, - ACTIONS(7228), 1, - anon_sym_STAR, - STATE(3893), 1, - sym_formal_parameters, - STATE(5270), 1, - sym__call_signature, - STATE(5354), 1, - sym_type_parameters, + STATE(4000), 1, + sym_class_body, + STATE(5080), 1, + sym_extends_clause, + STATE(5192), 1, + sym_class_heritage, + STATE(5792), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139629] = 8, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6476), 1, - anon_sym_LPAREN, - ACTIONS(7230), 1, - sym_identifier, - ACTIONS(7232), 1, - anon_sym_STAR, - STATE(3893), 1, - sym_formal_parameters, - STATE(5260), 1, - sym__call_signature, - STATE(5354), 1, - sym_type_parameters, + [139358] = 6, + ACTIONS(6447), 1, + anon_sym_EQ, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(4338), 1, + sym_type_annotation, + STATE(4561), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139655] = 8, - ACTIONS(2570), 1, + ACTIONS(6774), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [139380] = 8, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6476), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(7234), 1, + ACTIONS(7227), 1, sym_identifier, - ACTIONS(7236), 1, + ACTIONS(7229), 1, anon_sym_STAR, - STATE(3893), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(5270), 1, + STATE(5247), 1, sym__call_signature, - STATE(5354), 1, + STATE(5328), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139681] = 6, - ACTIONS(6470), 1, + [139406] = 8, + ACTIONS(6732), 1, + anon_sym_LBRACE, + ACTIONS(6831), 1, + anon_sym_extends, + ACTIONS(6833), 1, + anon_sym_implements, + STATE(1692), 1, + sym_class_body, + STATE(5080), 1, + sym_extends_clause, + STATE(5215), 1, + sym_class_heritage, + STATE(5792), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [139432] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4210), 1, + STATE(4297), 1, sym_type_annotation, - STATE(4773), 1, + STATE(4986), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6690), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139703] = 3, - ACTIONS(7238), 1, + [139454] = 3, + ACTIONS(7231), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3614), 6, + ACTIONS(3622), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, anon_sym_QMARK, - [139719] = 3, - ACTIONS(7184), 1, - anon_sym_AMP, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4161), 6, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [139735] = 5, - ACTIONS(7184), 1, - anon_sym_AMP, - ACTIONS(7186), 1, - anon_sym_PIPE, - ACTIONS(7188), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4179), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [139755] = 3, - ACTIONS(7240), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4209), 6, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - [139771] = 2, + [139470] = 8, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + ACTIONS(7234), 1, + sym_identifier, + ACTIONS(7236), 1, + anon_sym_STAR, + STATE(3806), 1, + sym_formal_parameters, + STATE(5328), 1, + sym_type_parameters, + STATE(5421), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7242), 7, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [139785] = 6, - ACTIONS(6470), 1, + [139496] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4112), 1, + STATE(4121), 1, sym_type_annotation, - STATE(4643), 1, + STATE(4611), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7244), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139807] = 6, - ACTIONS(6470), 1, + [139518] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3907), 1, + STATE(4194), 1, sym_type_annotation, - STATE(4640), 1, + STATE(4756), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6686), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139829] = 6, - ACTIONS(6470), 1, + [139540] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4146), 1, + STATE(4332), 1, sym_type_annotation, - STATE(4690), 1, + STATE(5051), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6701), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139851] = 6, - ACTIONS(6470), 1, + [139562] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4150), 1, + STATE(4122), 1, sym_type_annotation, - STATE(4701), 1, + STATE(4617), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6701), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139873] = 6, - ACTIONS(6470), 1, + [139584] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4162), 1, + STATE(4195), 1, sym_type_annotation, - STATE(4718), 1, + STATE(4757), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6701), 3, + ACTIONS(6686), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139895] = 6, - ACTIONS(6470), 1, + [139606] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4164), 1, + STATE(4198), 1, sym_type_annotation, - STATE(4720), 1, + STATE(4766), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6701), 3, + ACTIONS(6686), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139917] = 8, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6476), 1, - anon_sym_LPAREN, - ACTIONS(7246), 1, - sym_identifier, - ACTIONS(7248), 1, - anon_sym_STAR, - STATE(3893), 1, - sym_formal_parameters, - STATE(5260), 1, - sym__call_signature, - STATE(5354), 1, - sym_type_parameters, + [139628] = 5, + ACTIONS(7095), 1, + anon_sym_AMP, + ACTIONS(7097), 1, + anon_sym_PIPE, + ACTIONS(7099), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139943] = 3, - ACTIONS(7250), 1, - anon_sym_EQ, + ACTIONS(4204), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [139648] = 5, + ACTIONS(7095), 1, + anon_sym_AMP, + ACTIONS(7097), 1, + anon_sym_PIPE, + ACTIONS(7099), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3637), 6, + ACTIONS(4222), 4, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, - [139959] = 8, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6476), 1, - anon_sym_LPAREN, - ACTIONS(7253), 1, - sym_identifier, - ACTIONS(7255), 1, - anon_sym_STAR, - STATE(3893), 1, - sym_formal_parameters, - STATE(5270), 1, - sym__call_signature, - STATE(5354), 1, - sym_type_parameters, + [139668] = 5, + ACTIONS(7095), 1, + anon_sym_AMP, + ACTIONS(7097), 1, + anon_sym_PIPE, + ACTIONS(7099), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139985] = 6, - ACTIONS(6470), 1, - anon_sym_EQ, - ACTIONS(6478), 1, - anon_sym_COLON, - STATE(3927), 1, - sym_type_annotation, - STATE(4567), 1, - sym__initializer, + ACTIONS(4436), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [139688] = 5, + ACTIONS(7095), 1, + anon_sym_AMP, + ACTIONS(7097), 1, + anon_sym_PIPE, + ACTIONS(7099), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, - sym__automatic_semicolon, + ACTIONS(4444), 4, anon_sym_COMMA, - anon_sym_SEMI, - [140007] = 6, - ACTIONS(6470), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [139708] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4184), 1, + STATE(4233), 1, sym_type_annotation, - STATE(4737), 1, + STATE(4843), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6701), 3, + ACTIONS(6686), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140029] = 6, - ACTIONS(6470), 1, + [139730] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4187), 1, + STATE(3909), 1, sym_type_annotation, - STATE(4746), 1, + STATE(4631), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6701), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140051] = 6, - ACTIONS(6470), 1, + [139752] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3914), 1, + STATE(3912), 1, sym_type_annotation, - STATE(4958), 1, + STATE(4677), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140073] = 6, - ACTIONS(6470), 1, + [139774] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4192), 1, + STATE(4127), 1, sym_type_annotation, - STATE(4748), 1, + STATE(4634), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6701), 3, + ACTIONS(6657), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140095] = 6, - ACTIONS(6470), 1, + [139796] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(4195), 1, + STATE(4199), 1, sym_type_annotation, - STATE(4752), 1, + STATE(4767), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6701), 3, + ACTIONS(6686), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140117] = 6, - ACTIONS(6470), 1, - anon_sym_EQ, - ACTIONS(6478), 1, - anon_sym_COLON, - STATE(3941), 1, - sym_type_annotation, - STATE(4569), 1, - sym__initializer, + [139818] = 8, + ACTIONS(3576), 1, + anon_sym_LT, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(4592), 1, + anon_sym_DOT, + ACTIONS(4642), 1, + anon_sym_QMARK_DOT, + STATE(2030), 1, + sym_arguments, + STATE(3471), 1, + sym_type_arguments, + STATE(5280), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + [139844] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1888), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [140139] = 6, - ACTIONS(6470), 1, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [139858] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3942), 1, + STATE(4206), 1, sym_type_annotation, - STATE(4575), 1, + STATE(4777), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(6686), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140161] = 6, - ACTIONS(6470), 1, - anon_sym_EQ, - ACTIONS(6478), 1, - anon_sym_COLON, - STATE(4205), 1, - sym_type_annotation, - STATE(4764), 1, - sym__initializer, + [139880] = 4, + ACTIONS(4108), 1, + anon_sym_extends, + ACTIONS(7238), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6701), 3, - sym__automatic_semicolon, + ACTIONS(4110), 5, anon_sym_COMMA, - anon_sym_SEMI, - [140183] = 6, - ACTIONS(6470), 1, - anon_sym_EQ, - ACTIONS(6478), 1, - anon_sym_COLON, - STATE(4209), 1, - sym_type_annotation, - STATE(4775), 1, - sym__initializer, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + [139898] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6701), 3, + ACTIONS(1892), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [140205] = 6, - ACTIONS(6470), 1, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [139912] = 8, + ACTIONS(6831), 1, + anon_sym_extends, + ACTIONS(6833), 1, + anon_sym_implements, + ACTIONS(6853), 1, + anon_sym_LBRACE, + STATE(791), 1, + sym_class_body, + STATE(5080), 1, + sym_extends_clause, + STATE(5312), 1, + sym_class_heritage, + STATE(5792), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [139938] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3970), 1, + STATE(3968), 1, sym_type_annotation, - STATE(4706), 1, + STATE(4600), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140227] = 6, - ACTIONS(6470), 1, + [139960] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3974), 1, + STATE(3970), 1, sym_type_annotation, - STATE(4719), 1, + STATE(4606), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140249] = 6, - ACTIONS(6470), 1, + [139982] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, STATE(3977), 1, sym_type_annotation, - STATE(4736), 1, + STATE(4648), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140271] = 6, - ACTIONS(6470), 1, + [140004] = 6, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(6478), 1, + ACTIONS(6455), 1, anon_sym_COLON, - STATE(3980), 1, + STATE(3988), 1, sym_type_annotation, - STATE(4745), 1, + STATE(4658), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(6663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140293] = 7, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(7257), 1, - anon_sym_QMARK, - STATE(3317), 1, - sym_formal_parameters, - STATE(3692), 1, - sym__call_signature, - STATE(5224), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [140316] = 7, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6476), 1, - anon_sym_LPAREN, - ACTIONS(7259), 1, - anon_sym_QMARK, - STATE(3893), 1, - sym_formal_parameters, - STATE(5242), 1, - sym__call_signature, - STATE(5354), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [140339] = 4, - STATE(3767), 1, - aux_sym_object_type_repeat1, + [140026] = 4, + ACTIONS(2483), 1, + anon_sym_LBRACE, + STATE(5345), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3787), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7261), 3, + ACTIONS(7153), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [140356] = 4, - STATE(3829), 1, + anon_sym_PIPE_RBRACE, + [140044] = 4, + STATE(3834), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3767), 2, + ACTIONS(3752), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7263), 3, + ACTIONS(7240), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140373] = 4, - STATE(3829), 1, - aux_sym_object_type_repeat1, + [140061] = 4, + ACTIONS(7242), 1, + anon_sym_LBRACE, + STATE(2710), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3787), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7261), 3, + ACTIONS(7131), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140390] = 7, - ACTIONS(2570), 1, + [140078] = 7, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6476), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(7265), 1, + ACTIONS(7244), 1, anon_sym_QMARK, - STATE(3893), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(5354), 1, + STATE(5328), 1, sym_type_parameters, - STATE(5455), 1, + STATE(5438), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140413] = 7, - ACTIONS(2570), 1, + [140101] = 7, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6476), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(7267), 1, + ACTIONS(7246), 1, anon_sym_QMARK, - STATE(3893), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(5354), 1, - sym_type_parameters, - STATE(5473), 1, + STATE(3625), 1, sym__call_signature, + STATE(5233), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140436] = 5, - ACTIONS(3426), 1, + [140124] = 4, + ACTIONS(7242), 1, anon_sym_LBRACE, - ACTIONS(3428), 1, - anon_sym_LBRACK, - ACTIONS(7269), 1, - sym_identifier, + STATE(2702), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4804), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [140455] = 7, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6476), 1, - anon_sym_LPAREN, - ACTIONS(7271), 1, - anon_sym_QMARK, - STATE(3893), 1, - sym_formal_parameters, - STATE(5147), 1, - sym__call_signature, - STATE(5354), 1, - sym_type_parameters, + ACTIONS(7085), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [140141] = 7, + ACTIONS(6605), 1, + anon_sym_AMP, + ACTIONS(6607), 1, + anon_sym_PIPE, + ACTIONS(6609), 1, + anon_sym_extends, + ACTIONS(7248), 1, + anon_sym_COMMA, + ACTIONS(7250), 1, + anon_sym_GT, + STATE(4588), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140478] = 4, - ACTIONS(7273), 1, + [140164] = 4, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2657), 1, + STATE(2712), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7200), 4, + ACTIONS(7153), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140495] = 4, - ACTIONS(7273), 1, + [140181] = 4, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2684), 1, + STATE(2704), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7210), 4, + ACTIONS(7083), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140512] = 7, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(7275), 1, - anon_sym_QMARK, - STATE(3317), 1, - sym_formal_parameters, - STATE(4272), 1, - sym__call_signature, - STATE(5224), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [140535] = 4, - STATE(3829), 1, - aux_sym_object_type_repeat1, + [140198] = 5, + ACTIONS(6605), 1, + anon_sym_AMP, + ACTIONS(6607), 1, + anon_sym_PIPE, + ACTIONS(6609), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3759), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7277), 3, - sym__automatic_semicolon, + ACTIONS(7252), 3, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [140552] = 4, - STATE(3822), 1, - aux_sym_object_type_repeat1, + anon_sym_GT, + [140217] = 4, + ACTIONS(7242), 1, + anon_sym_LBRACE, + STATE(2653), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3763), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7279), 3, + ACTIONS(7151), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140569] = 5, - ACTIONS(7281), 1, - anon_sym_default, - ACTIONS(7283), 1, - anon_sym_RBRACE, - ACTIONS(7285), 1, - anon_sym_case, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3898), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [140588] = 7, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6476), 1, - anon_sym_LPAREN, - ACTIONS(7287), 1, - anon_sym_QMARK, - STATE(3893), 1, - sym_formal_parameters, - STATE(5335), 1, - sym__call_signature, - STATE(5354), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [140611] = 7, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6486), 1, - anon_sym_LPAREN, - ACTIONS(7289), 1, - anon_sym_QMARK, - STATE(3364), 1, - sym_formal_parameters, - STATE(3820), 1, - sym__call_signature, - STATE(5316), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [140634] = 4, - ACTIONS(5298), 1, - anon_sym_COMMA, - STATE(3775), 1, - aux_sym_sequence_expression_repeat1, + [140234] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7291), 4, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(2365), 6, + anon_sym_as, + anon_sym_LBRACK, anon_sym_RBRACK, - [140651] = 7, - ACTIONS(2570), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [140247] = 7, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(7293), 1, - anon_sym_QMARK, - STATE(3317), 1, + ACTIONS(7254), 1, + sym_identifier, + STATE(3806), 1, sym_formal_parameters, - STATE(4322), 1, + STATE(5250), 1, sym__call_signature, - STATE(5224), 1, + STATE(5328), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140674] = 4, - ACTIONS(7273), 1, - anon_sym_LBRACE, - STATE(2690), 1, - sym_statement_block, + [140270] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7212), 4, + ACTIONS(7201), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [140691] = 4, - ACTIONS(7295), 1, - anon_sym_COMMA, - STATE(3775), 1, - aux_sym_sequence_expression_repeat1, + anon_sym_COLON, + [140283] = 5, + ACTIONS(7256), 1, + anon_sym_AMP, + ACTIONS(7258), 1, + anon_sym_PIPE, + ACTIONS(7260), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4866), 4, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4436), 3, + anon_sym_as, + anon_sym_LBRACK, anon_sym_RBRACK, - [140708] = 3, + [140302] = 5, + ACTIONS(7264), 1, + anon_sym_BQUOTE, + ACTIONS(7266), 1, + anon_sym_DOLLAR_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5916), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3819), 4, - anon_sym_LPAREN, + ACTIONS(7262), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3832), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [140321] = 4, + ACTIONS(7268), 1, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [140723] = 5, - ACTIONS(7298), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6752), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(5199), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [140338] = 5, + ACTIONS(7256), 1, anon_sym_AMP, - ACTIONS(7300), 1, + ACTIONS(7258), 1, anon_sym_PIPE, - ACTIONS(7302), 1, + ACTIONS(7260), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4306), 3, + ACTIONS(4444), 3, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, - [140742] = 4, - ACTIONS(7273), 1, - anon_sym_LBRACE, - STATE(2716), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7198), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [140759] = 3, - ACTIONS(7298), 1, + [140357] = 3, + ACTIONS(7256), 1, anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4362), 5, + ACTIONS(4306), 5, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_PIPE, anon_sym_extends, - [140774] = 4, - STATE(3829), 1, - aux_sym_object_type_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3763), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7279), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [140791] = 7, - ACTIONS(6604), 1, + [140372] = 7, + ACTIONS(6605), 1, anon_sym_AMP, - ACTIONS(6606), 1, + ACTIONS(6607), 1, anon_sym_PIPE, - ACTIONS(6608), 1, + ACTIONS(6609), 1, anon_sym_extends, - ACTIONS(7304), 1, + ACTIONS(7270), 1, anon_sym_COMMA, - ACTIONS(7306), 1, + ACTIONS(7272), 1, anon_sym_GT, - STATE(4541), 1, + STATE(4636), 1, aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140814] = 4, - STATE(3786), 1, - aux_sym_object_type_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7310), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7308), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [140831] = 5, - ACTIONS(7312), 1, - anon_sym_default, - ACTIONS(7315), 1, - anon_sym_RBRACE, - ACTIONS(7317), 1, - anon_sym_case, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3783), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [140850] = 7, - ACTIONS(6604), 1, + [140395] = 5, + ACTIONS(7256), 1, anon_sym_AMP, - ACTIONS(6606), 1, + ACTIONS(7258), 1, anon_sym_PIPE, - ACTIONS(6608), 1, + ACTIONS(7260), 1, anon_sym_extends, - ACTIONS(7320), 1, - anon_sym_COMMA, - ACTIONS(7322), 1, - anon_sym_GT, - STATE(4536), 1, - aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140873] = 4, - STATE(3790), 1, - aux_sym_object_type_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3761), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7324), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [140890] = 4, - STATE(3829), 1, - aux_sym_object_type_repeat1, + ACTIONS(4294), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [140414] = 4, + ACTIONS(7242), 1, + anon_sym_LBRACE, + STATE(2662), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3761), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7324), 3, + ACTIONS(7183), 4, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [140907] = 5, - ACTIONS(7328), 1, - anon_sym_BQUOTE, - ACTIONS(7330), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7326), 2, - sym__template_chars, - sym_escape_sequence, - STATE(3892), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [140926] = 2, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [140431] = 3, + ACTIONS(7274), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2376), 6, + ACTIONS(4192), 5, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, - anon_sym_extends, - [140939] = 2, + [140446] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2372), 6, + ACTIONS(2369), 6, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [140952] = 4, - STATE(3829), 1, - aux_sym_object_type_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3747), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7332), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [140969] = 7, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(7334), 1, + [140459] = 6, + ACTIONS(7095), 1, + anon_sym_AMP, + ACTIONS(7097), 1, + anon_sym_PIPE, + ACTIONS(7099), 1, + anon_sym_extends, + ACTIONS(7278), 1, anon_sym_QMARK, - STATE(3317), 1, - sym_formal_parameters, - STATE(4038), 1, - sym__call_signature, - STATE(5224), 1, - sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140992] = 4, - ACTIONS(7273), 1, - anon_sym_LBRACE, - STATE(2675), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7178), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(7276), 2, anon_sym_COMMA, - anon_sym_SEMI, - [141009] = 7, - ACTIONS(1557), 1, - anon_sym_DQUOTE, - ACTIONS(1559), 1, - anon_sym_SQUOTE, - ACTIONS(7106), 1, - sym_identifier, - STATE(762), 1, - sym_nested_identifier, - STATE(800), 1, - sym_string, - STATE(882), 1, - sym__module, + anon_sym_RBRACK, + [140480] = 7, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(7280), 1, + anon_sym_export, + ACTIONS(7282), 1, + anon_sym_class, + ACTIONS(7284), 1, + anon_sym_abstract, + STATE(1269), 1, + aux_sym_export_statement_repeat1, + STATE(1344), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141032] = 7, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6486), 1, - anon_sym_LPAREN, - ACTIONS(7336), 1, - anon_sym_QMARK, - STATE(3364), 1, - sym_formal_parameters, - STATE(3863), 1, - sym__call_signature, - STATE(5316), 1, - sym_type_parameters, + [140503] = 7, + ACTIONS(6605), 1, + anon_sym_AMP, + ACTIONS(6607), 1, + anon_sym_PIPE, + ACTIONS(6609), 1, + anon_sym_extends, + ACTIONS(7286), 1, + anon_sym_COMMA, + ACTIONS(7288), 1, + anon_sym_GT, + STATE(4693), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141055] = 2, + [140526] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2388), 6, + ACTIONS(2361), 6, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [141068] = 4, - STATE(3780), 1, + [140539] = 4, + STATE(3801), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7340), 2, + ACTIONS(7292), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7338), 3, + ACTIONS(7290), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141085] = 4, - ACTIONS(7273), 1, - anon_sym_LBRACE, - STATE(2656), 1, - sym_statement_block, + [140556] = 6, + ACTIONS(3557), 1, + anon_sym_COLON, + ACTIONS(7145), 1, + anon_sym_EQ, + STATE(4491), 1, + sym_type_annotation, + STATE(5132), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7178), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(7294), 2, anon_sym_COMMA, - anon_sym_SEMI, - [141102] = 2, + anon_sym_RPAREN, + [140577] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3819), 6, + ACTIONS(3814), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - [141115] = 7, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6476), 1, - anon_sym_LPAREN, - ACTIONS(7342), 1, - anon_sym_QMARK, - STATE(3893), 1, - sym_formal_parameters, - STATE(5195), 1, - sym__call_signature, - STATE(5354), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [141138] = 7, - ACTIONS(2570), 1, + [140590] = 7, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(6509), 1, anon_sym_LPAREN, - ACTIONS(7344), 1, + ACTIONS(7296), 1, anon_sym_QMARK, - STATE(3317), 1, + STATE(3330), 1, sym_formal_parameters, - STATE(5059), 1, + STATE(3800), 1, sym__call_signature, - STATE(5224), 1, + STATE(5249), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141161] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2384), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [141174] = 7, - ACTIONS(2570), 1, + [140613] = 7, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(7346), 1, + ACTIONS(7298), 1, anon_sym_QMARK, - STATE(3317), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(3671), 1, + STATE(4257), 1, sym__call_signature, - STATE(5224), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141197] = 7, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6476), 1, - anon_sym_LPAREN, - ACTIONS(7348), 1, - anon_sym_QMARK, - STATE(3893), 1, - sym_formal_parameters, - STATE(5354), 1, - sym_type_parameters, - STATE(5400), 1, - sym__call_signature, + [140636] = 7, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(7175), 1, + sym_identifier, + STATE(783), 1, + sym_nested_identifier, + STATE(798), 1, + sym_string, + STATE(887), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141220] = 4, - ACTIONS(7273), 1, + [140659] = 4, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2692), 1, + STATE(2707), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7180), 4, + ACTIONS(7153), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141237] = 4, - STATE(3829), 1, - aux_sym_object_type_repeat1, + [140676] = 7, + ACTIONS(6605), 1, + anon_sym_AMP, + ACTIONS(6607), 1, + anon_sym_PIPE, + ACTIONS(6609), 1, + anon_sym_extends, + ACTIONS(7300), 1, + anon_sym_COMMA, + ACTIONS(7302), 1, + anon_sym_GT, + STATE(5016), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3773), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7350), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [141254] = 2, + [140699] = 5, + ACTIONS(7266), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7304), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7262), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3832), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [140718] = 4, + STATE(3794), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7224), 6, + ACTIONS(3764), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7306), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - [141267] = 7, - ACTIONS(2570), 1, + [140735] = 7, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6476), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(7352), 1, - sym_identifier, - STATE(3893), 1, + ACTIONS(7308), 1, + anon_sym_QMARK, + STATE(3315), 1, sym_formal_parameters, - STATE(5354), 1, - sym_type_parameters, - STATE(5399), 1, + STATE(4968), 1, sym__call_signature, + STATE(5233), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141290] = 7, - ACTIONS(6604), 1, + [140758] = 7, + ACTIONS(6605), 1, anon_sym_AMP, - ACTIONS(6606), 1, + ACTIONS(6607), 1, anon_sym_PIPE, - ACTIONS(6608), 1, + ACTIONS(6609), 1, anon_sym_extends, - ACTIONS(7354), 1, + ACTIONS(7310), 1, anon_sym_COMMA, - ACTIONS(7356), 1, + ACTIONS(7312), 1, anon_sym_GT, - STATE(4591), 1, + STATE(5006), 1, aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141313] = 5, - ACTIONS(7298), 1, - anon_sym_AMP, - ACTIONS(7300), 1, - anon_sym_PIPE, - ACTIONS(7302), 1, - anon_sym_extends, + [140781] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4223), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [141332] = 4, - STATE(3815), 1, + ACTIONS(7221), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + [140794] = 4, + STATE(3808), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7360), 2, + ACTIONS(3752), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7358), 3, + ACTIONS(7240), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141349] = 5, - ACTIONS(7298), 1, - anon_sym_AMP, - ACTIONS(7300), 1, - anon_sym_PIPE, - ACTIONS(7302), 1, - anon_sym_extends, + [140811] = 5, + ACTIONS(3275), 1, + anon_sym_LBRACE, + ACTIONS(7314), 1, + sym_identifier, + ACTIONS(7316), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4231), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [141368] = 5, - ACTIONS(7298), 1, - anon_sym_AMP, - ACTIONS(7300), 1, - anon_sym_PIPE, - ACTIONS(7302), 1, - anon_sym_extends, + STATE(4829), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [140830] = 4, + ACTIONS(5217), 1, + anon_sym_COMMA, + STATE(3807), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4437), 3, - anon_sym_as, - anon_sym_LBRACK, + ACTIONS(7318), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_RBRACK, - [141387] = 4, - STATE(3817), 1, + [140847] = 4, + STATE(3803), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3765), 2, + ACTIONS(3772), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7362), 3, + ACTIONS(7320), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141404] = 5, - ACTIONS(7298), 1, - anon_sym_AMP, - ACTIONS(7300), 1, - anon_sym_PIPE, - ACTIONS(7302), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4441), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [141423] = 4, - STATE(3829), 1, + [140864] = 4, + STATE(3834), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3765), 2, + ACTIONS(3780), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7362), 3, + ACTIONS(7322), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141440] = 2, + [140881] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5843), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3814), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [140896] = 4, + ACTIONS(7242), 1, + anon_sym_LBRACE, + STATE(2655), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7220), 6, + ACTIONS(7155), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - [141453] = 4, - STATE(3829), 1, + [140913] = 4, + STATE(3834), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3771), 2, + ACTIONS(3774), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7364), 3, + ACTIONS(7324), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141470] = 7, - ACTIONS(2570), 1, + [140930] = 7, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(7366), 1, + ACTIONS(7326), 1, anon_sym_QMARK, - STATE(3317), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(3682), 1, + STATE(3917), 1, sym__call_signature, - STATE(5224), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141493] = 4, - ACTIONS(7273), 1, + [140953] = 4, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2709), 1, + STATE(2695), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7202), 4, + ACTIONS(7123), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141510] = 4, - ACTIONS(7273), 1, + [140970] = 4, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2704), 1, + STATE(2657), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7204), 4, + ACTIONS(7157), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141527] = 7, - ACTIONS(2570), 1, + [140987] = 4, + STATE(3834), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3772), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7320), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [141004] = 7, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6486), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(7368), 1, + ACTIONS(7328), 1, anon_sym_QMARK, - STATE(3364), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(3874), 1, + STATE(4272), 1, sym__call_signature, - STATE(5316), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141550] = 4, - STATE(3829), 1, + [141027] = 4, + STATE(3834), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3799), 2, + ACTIONS(3748), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7370), 3, + ACTIONS(7330), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141567] = 7, - ACTIONS(2570), 1, + [141044] = 7, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(6509), 1, anon_sym_LPAREN, - ACTIONS(7372), 1, + ACTIONS(7332), 1, anon_sym_QMARK, - STATE(3317), 1, + STATE(3330), 1, sym_formal_parameters, - STATE(4119), 1, + STATE(3799), 1, sym__call_signature, - STATE(5224), 1, + STATE(5249), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141590] = 4, - ACTIONS(7273), 1, - anon_sym_LBRACE, - STATE(2715), 1, - sym_statement_block, + [141067] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7202), 4, + ACTIONS(7103), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [141607] = 2, + anon_sym_COLON, + [141080] = 4, + ACTIONS(7268), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2380), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [141620] = 7, - ACTIONS(6604), 1, - anon_sym_AMP, - ACTIONS(6606), 1, - anon_sym_PIPE, - ACTIONS(6608), 1, - anon_sym_extends, - ACTIONS(7374), 1, + ACTIONS(6783), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(5306), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [141097] = 4, + ACTIONS(7334), 1, anon_sym_COMMA, - ACTIONS(7376), 1, - anon_sym_GT, - STATE(4631), 1, - aux_sym_implements_clause_repeat1, + STATE(3807), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141643] = 4, - ACTIONS(7273), 1, - anon_sym_LBRACE, - STATE(2667), 1, - sym_statement_block, + ACTIONS(4852), 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACK, + [141114] = 4, + STATE(3834), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7150), 4, + ACTIONS(3790), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7337), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141660] = 4, - ACTIONS(7273), 1, - anon_sym_LBRACE, - STATE(2682), 1, - sym_statement_block, + [141131] = 4, + STATE(3879), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7198), 4, + ACTIONS(7341), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7339), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141677] = 4, - STATE(3829), 1, + [141148] = 4, + STATE(3889), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7381), 2, + ACTIONS(7345), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7378), 3, + ACTIONS(7343), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141694] = 6, - ACTIONS(7184), 1, - anon_sym_AMP, - ACTIONS(7186), 1, - anon_sym_PIPE, - ACTIONS(7188), 1, - anon_sym_extends, - ACTIONS(7385), 1, - anon_sym_QMARK, + [141165] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7383), 2, + ACTIONS(7347), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - [141715] = 4, - STATE(3836), 1, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [141178] = 7, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(7175), 1, + sym_identifier, + STATE(783), 1, + sym_nested_identifier, + STATE(798), 1, + sym_string, + STATE(878), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [141201] = 4, + ACTIONS(7242), 1, + anon_sym_LBRACE, + STATE(2660), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7169), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [141218] = 4, + STATE(3797), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7389), 2, + ACTIONS(3786), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7387), 3, + ACTIONS(7349), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141732] = 4, - ACTIONS(7273), 1, - anon_sym_LBRACE, - STATE(2688), 1, - sym_statement_block, + [141235] = 4, + STATE(3864), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7204), 4, + ACTIONS(7353), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7351), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141749] = 7, - ACTIONS(2570), 1, + [141252] = 7, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(7391), 1, + ACTIONS(7355), 1, anon_sym_QMARK, - STATE(3317), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(3687), 1, + STATE(5242), 1, sym__call_signature, - STATE(5224), 1, + STATE(5328), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141772] = 4, - ACTIONS(7273), 1, + [141275] = 5, + ACTIONS(7357), 1, + anon_sym_default, + ACTIONS(7360), 1, + anon_sym_RBRACE, + ACTIONS(7362), 1, + anon_sym_case, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3817), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [141294] = 7, + ACTIONS(6682), 1, + anon_sym_LT, + ACTIONS(7139), 1, + anon_sym_COMMA, + ACTIONS(7365), 1, anon_sym_LBRACE, - STATE(2663), 1, + ACTIONS(7367), 1, + anon_sym_LBRACE_PIPE, + STATE(4400), 1, + aux_sym_extends_type_clause_repeat1, + STATE(5076), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [141317] = 4, + ACTIONS(7242), 1, + anon_sym_LBRACE, + STATE(2650), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7200), 4, + ACTIONS(7151), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141789] = 4, - STATE(3805), 1, - aux_sym_object_type_repeat1, + [141334] = 4, + ACTIONS(7242), 1, + anon_sym_LBRACE, + STATE(2687), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3767), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7263), 3, + ACTIONS(7125), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141806] = 4, - STATE(3829), 1, - aux_sym_object_type_repeat1, + [141351] = 7, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + ACTIONS(7369), 1, + sym_identifier, + STATE(3806), 1, + sym_formal_parameters, + STATE(5250), 1, + sym__call_signature, + STATE(5328), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3793), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7393), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [141823] = 2, + [141374] = 7, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + ACTIONS(7371), 1, + anon_sym_QMARK, + STATE(3806), 1, + sym_formal_parameters, + STATE(5213), 1, + sym__call_signature, + STATE(5328), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [141397] = 7, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + ACTIONS(7373), 1, + sym_identifier, + STATE(3806), 1, + sym_formal_parameters, + STATE(5187), 1, + sym__call_signature, + STATE(5328), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [141420] = 5, + ACTIONS(7256), 1, + anon_sym_AMP, + ACTIONS(7258), 1, + anon_sym_PIPE, + ACTIONS(7260), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7395), 6, + ACTIONS(4204), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [141439] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7375), 6, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [141836] = 7, - ACTIONS(2570), 1, + [141452] = 7, + ACTIONS(3514), 1, + anon_sym_LPAREN, + ACTIONS(3576), 1, + anon_sym_LT, + ACTIONS(7377), 1, + anon_sym_RPAREN, + ACTIONS(7379), 1, + anon_sym_DOT, + STATE(1288), 1, + sym_arguments, + STATE(5440), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [141475] = 5, + ACTIONS(7381), 1, + anon_sym_default, + ACTIONS(7383), 1, + anon_sym_RBRACE, + ACTIONS(7385), 1, + anon_sym_case, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3877), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [141494] = 7, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6476), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(7397), 1, + ACTIONS(7387), 1, anon_sym_QMARK, - STATE(3893), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(5354), 1, + STATE(3632), 1, + sym__call_signature, + STATE(5233), 1, sym_type_parameters, - STATE(5416), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [141517] = 5, + ACTIONS(3407), 1, + anon_sym_LBRACE, + ACTIONS(3409), 1, + anon_sym_LBRACK, + ACTIONS(7389), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4813), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [141536] = 7, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(7284), 1, + anon_sym_abstract, + ACTIONS(7391), 1, + anon_sym_export, + ACTIONS(7393), 1, + anon_sym_class, + STATE(1269), 1, + aux_sym_export_statement_repeat1, + STATE(1344), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [141559] = 7, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + ACTIONS(7395), 1, + sym_identifier, + STATE(3806), 1, + sym_formal_parameters, + STATE(5328), 1, + sym_type_parameters, + STATE(5429), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [141582] = 5, + ACTIONS(7400), 1, + anon_sym_BQUOTE, + ACTIONS(7402), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7397), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3832), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [141601] = 7, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6509), 1, + anon_sym_LPAREN, + ACTIONS(7405), 1, + anon_sym_QMARK, + STATE(3330), 1, + sym_formal_parameters, + STATE(3813), 1, sym__call_signature, + STATE(5249), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141859] = 4, - STATE(3829), 1, + [141624] = 4, + STATE(3834), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3795), 2, + ACTIONS(7410), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7399), 3, + ACTIONS(7407), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141876] = 5, - ACTIONS(7298), 1, + [141641] = 5, + ACTIONS(6605), 1, anon_sym_AMP, - ACTIONS(7300), 1, + ACTIONS(6607), 1, anon_sym_PIPE, - ACTIONS(7302), 1, + ACTIONS(6609), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4326), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [141895] = 7, - ACTIONS(2570), 1, + ACTIONS(7412), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [141660] = 7, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(7401), 1, + ACTIONS(7414), 1, anon_sym_QMARK, - STATE(3317), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(3697), 1, + STATE(3601), 1, sym__call_signature, - STATE(5224), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141918] = 4, - ACTIONS(7403), 1, - anon_sym_COLON, + [141683] = 7, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + ACTIONS(7416), 1, + anon_sym_QMARK, + STATE(3806), 1, + sym_formal_parameters, + STATE(5328), 1, + sym_type_parameters, + STATE(5435), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, - sym_comment, - ACTIONS(6793), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(5475), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [141935] = 7, - ACTIONS(1557), 1, - anon_sym_DQUOTE, - ACTIONS(1559), 1, - anon_sym_SQUOTE, - ACTIONS(7106), 1, - sym_identifier, - STATE(762), 1, - sym_nested_identifier, - STATE(800), 1, - sym_string, - STATE(886), 1, - sym__module, + sym_comment, + [141706] = 5, + ACTIONS(7256), 1, + anon_sym_AMP, + ACTIONS(7258), 1, + anon_sym_PIPE, + ACTIONS(7260), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141958] = 4, - ACTIONS(7273), 1, + ACTIONS(4334), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [141725] = 4, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2694), 1, + STATE(2688), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7214), 4, + ACTIONS(7131), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141975] = 5, - ACTIONS(6604), 1, - anon_sym_AMP, - ACTIONS(6606), 1, - anon_sym_PIPE, - ACTIONS(6608), 1, - anon_sym_extends, + [141742] = 7, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + ACTIONS(7418), 1, + anon_sym_QMARK, + STATE(3806), 1, + sym_formal_parameters, + STATE(5328), 1, + sym_type_parameters, + STATE(5350), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7405), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [141994] = 5, - ACTIONS(3282), 1, - anon_sym_LBRACE, - ACTIONS(7407), 1, - sym_identifier, - ACTIONS(7409), 1, - anon_sym_LBRACK, + [141765] = 7, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + ACTIONS(7420), 1, + anon_sym_QMARK, + STATE(3315), 1, + sym_formal_parameters, + STATE(5060), 1, + sym__call_signature, + STATE(5233), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4820), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [142013] = 7, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7411), 1, - anon_sym_export, - ACTIONS(7413), 1, - anon_sym_class, - ACTIONS(7415), 1, - anon_sym_abstract, - STATE(1285), 1, - sym_decorator, - STATE(3855), 1, - aux_sym_export_statement_repeat1, + [141788] = 7, + ACTIONS(3514), 1, + anon_sym_LPAREN, + ACTIONS(3576), 1, + anon_sym_LT, + ACTIONS(7379), 1, + anon_sym_DOT, + ACTIONS(7422), 1, + anon_sym_RPAREN, + STATE(1288), 1, + sym_arguments, + STATE(5440), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142036] = 7, - ACTIONS(2570), 1, + [141811] = 7, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6476), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(7417), 1, - sym_identifier, - STATE(3893), 1, + ACTIONS(7424), 1, + anon_sym_QMARK, + STATE(3315), 1, sym_formal_parameters, - STATE(5269), 1, + STATE(5044), 1, sym__call_signature, - STATE(5354), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142059] = 5, - ACTIONS(6604), 1, - anon_sym_AMP, - ACTIONS(6606), 1, - anon_sym_PIPE, - ACTIONS(6608), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7419), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_GT, - [142078] = 4, - STATE(3758), 1, + [141834] = 4, + STATE(3750), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7423), 2, + ACTIONS(7428), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7421), 3, + ACTIONS(7426), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142095] = 7, - ACTIONS(2570), 1, + [141851] = 7, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6476), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(7425), 1, + ACTIONS(7430), 1, anon_sym_QMARK, - STATE(3893), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(5320), 1, + STATE(4179), 1, sym__call_signature, - STATE(5354), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142118] = 2, + [141874] = 7, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + ACTIONS(7432), 1, + anon_sym_QMARK, + STATE(3315), 1, + sym_formal_parameters, + STATE(4255), 1, + sym__call_signature, + STATE(5233), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7427), 6, - sym__automatic_semicolon, + [141897] = 4, + ACTIONS(7242), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [142131] = 2, + STATE(2708), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7429), 6, + ACTIONS(7125), 4, sym__automatic_semicolon, - anon_sym_LBRACE, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [142144] = 2, + [141914] = 4, + ACTIONS(7242), 1, + anon_sym_LBRACE, + STATE(2690), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7431), 6, + ACTIONS(7123), 4, sym__automatic_semicolon, - anon_sym_LBRACE, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [142157] = 5, - ACTIONS(7433), 1, - anon_sym_AT, - STATE(1285), 1, - sym_decorator, - STATE(3855), 1, - aux_sym_export_statement_repeat1, + [141931] = 5, + ACTIONS(7256), 1, + anon_sym_AMP, + ACTIONS(7258), 1, + anon_sym_PIPE, + ACTIONS(7260), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3622), 3, - anon_sym_export, - anon_sym_class, - anon_sym_abstract, - [142176] = 5, - ACTIONS(7330), 1, + ACTIONS(4222), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [141950] = 3, + ACTIONS(7256), 1, + anon_sym_AMP, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4440), 5, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_extends, + [141965] = 7, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + ACTIONS(7434), 1, + anon_sym_QMARK, + STATE(3806), 1, + sym_formal_parameters, + STATE(5328), 1, + sym_type_parameters, + STATE(5365), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [141988] = 5, + ACTIONS(7266), 1, anon_sym_DOLLAR_LBRACE, ACTIONS(7436), 1, anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7034), 2, + ACTIONS(7025), 2, sym__template_chars, sym_escape_sequence, - STATE(3787), 2, + STATE(3785), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [142195] = 7, - ACTIONS(2570), 1, + [142007] = 7, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6476), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, ACTIONS(7438), 1, - sym_identifier, - STATE(3893), 1, + anon_sym_QMARK, + STATE(3806), 1, sym_formal_parameters, - STATE(5354), 1, - sym_type_parameters, - STATE(5399), 1, + STATE(5133), 1, sym__call_signature, + STATE(5328), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142218] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7222), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - [142231] = 7, - ACTIONS(2570), 1, + [142030] = 7, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, ACTIONS(7440), 1, - anon_sym_QMARK, - STATE(3317), 1, + sym_identifier, + STATE(3806), 1, sym_formal_parameters, - STATE(4099), 1, + STATE(5250), 1, sym__call_signature, - STATE(5224), 1, + STATE(5328), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142254] = 7, - ACTIONS(6676), 1, - anon_sym_LT, - ACTIONS(7164), 1, + [142053] = 4, + ACTIONS(7242), 1, + anon_sym_LBRACE, + STATE(2672), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7155), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, + anon_sym_SEMI, + [142070] = 7, + ACTIONS(6605), 1, + anon_sym_AMP, + ACTIONS(6607), 1, + anon_sym_PIPE, + ACTIONS(6609), 1, + anon_sym_extends, ACTIONS(7442), 1, anon_sym_LBRACE, ACTIONS(7444), 1, - anon_sym_LBRACE_PIPE, - STATE(4417), 1, - aux_sym_extends_type_clause_repeat1, - STATE(4942), 1, - sym_type_arguments, + anon_sym_COMMA, + STATE(4905), 1, + aux_sym_implements_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [142093] = 5, + ACTIONS(7256), 1, + anon_sym_AMP, + ACTIONS(7258), 1, + anon_sym_PIPE, + ACTIONS(7260), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142277] = 7, - ACTIONS(2570), 1, + ACTIONS(4404), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [142112] = 7, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6476), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, ACTIONS(7446), 1, sym_identifier, - STATE(3893), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(5354), 1, + STATE(5328), 1, sym_type_parameters, - STATE(5399), 1, + STATE(5429), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142300] = 4, - ACTIONS(7273), 1, - anon_sym_LBRACE, - STATE(2685), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7194), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [142317] = 4, - ACTIONS(7273), 1, - anon_sym_LBRACE, - STATE(2696), 1, - sym_statement_block, + [142135] = 7, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + ACTIONS(7448), 1, + sym_identifier, + STATE(3806), 1, + sym_formal_parameters, + STATE(5328), 1, + sym_type_parameters, + STATE(5429), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7196), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [142334] = 7, - ACTIONS(2570), 1, + [142158] = 7, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6486), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(7448), 1, + ACTIONS(7450), 1, anon_sym_QMARK, - STATE(3364), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(3764), 1, + STATE(3640), 1, sym__call_signature, - STATE(5316), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142357] = 5, - ACTIONS(7330), 1, + [142181] = 5, + ACTIONS(7266), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7450), 1, + ACTIONS(7452), 1, anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7058), 2, + ACTIONS(7043), 2, sym__template_chars, sym_escape_sequence, - STATE(3894), 2, + STATE(3764), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [142376] = 7, - ACTIONS(2570), 1, + [142200] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7454), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [142213] = 7, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6476), 1, + ACTIONS(6509), 1, anon_sym_LPAREN, - ACTIONS(7452), 1, + ACTIONS(7456), 1, anon_sym_QMARK, - STATE(3893), 1, + STATE(3330), 1, sym_formal_parameters, - STATE(5354), 1, - sym_type_parameters, - STATE(5430), 1, + STATE(3895), 1, sym__call_signature, + STATE(5249), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142399] = 4, - ACTIONS(7273), 1, - anon_sym_LBRACE, - STATE(2708), 1, - sym_statement_block, + [142236] = 4, + STATE(3834), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7196), 4, + ACTIONS(3786), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7349), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142416] = 7, - ACTIONS(2570), 1, + [142253] = 7, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6476), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(7454), 1, + ACTIONS(7458), 1, sym_identifier, - STATE(3893), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(5269), 1, + STATE(5250), 1, sym__call_signature, - STATE(5354), 1, + STATE(5328), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142439] = 4, - ACTIONS(7273), 1, - anon_sym_LBRACE, - STATE(2714), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7194), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [142456] = 7, - ACTIONS(2570), 1, + [142276] = 7, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6486), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(7456), 1, + ACTIONS(7460), 1, anon_sym_QMARK, - STATE(3364), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(3792), 1, + STATE(3589), 1, sym__call_signature, - STATE(5316), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142479] = 7, - ACTIONS(2570), 1, + [142299] = 7, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6476), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(7458), 1, + ACTIONS(7462), 1, sym_identifier, - STATE(3893), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(5354), 1, - sym_type_parameters, - STATE(5451), 1, + STATE(5236), 1, sym__call_signature, + STATE(5328), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142502] = 7, - ACTIONS(6604), 1, - anon_sym_AMP, - ACTIONS(6606), 1, - anon_sym_PIPE, - ACTIONS(6608), 1, - anon_sym_extends, - ACTIONS(7460), 1, - anon_sym_COMMA, - ACTIONS(7462), 1, - anon_sym_GT, - STATE(5037), 1, - aux_sym_implements_clause_repeat1, + [142322] = 4, + STATE(3834), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142525] = 4, - ACTIONS(7273), 1, + ACTIONS(3766), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7464), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142339] = 6, + ACTIONS(6682), 1, + anon_sym_LT, + ACTIONS(7141), 1, + anon_sym_DOT, + ACTIONS(7466), 1, anon_sym_LBRACE, - STATE(2652), 1, - sym_statement_block, + STATE(5075), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7206), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(7468), 2, anon_sym_COMMA, - anon_sym_SEMI, - [142542] = 4, - ACTIONS(7273), 1, + anon_sym_LBRACE_PIPE, + [142360] = 4, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2683), 1, + STATE(2696), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7208), 4, + ACTIONS(7133), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142559] = 7, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(7464), 1, - anon_sym_QMARK, - STATE(3317), 1, - sym_formal_parameters, - STATE(4632), 1, - sym__call_signature, - STATE(5224), 1, - sym_type_parameters, + [142377] = 7, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(7203), 1, + sym_identifier, + STATE(3500), 1, + sym_nested_identifier, + STATE(3698), 1, + sym_string, + STATE(4270), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142582] = 7, - ACTIONS(2570), 1, + [142400] = 7, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(7466), 1, + ACTIONS(7470), 1, anon_sym_QMARK, - STATE(3317), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(4339), 1, + STATE(5318), 1, sym__call_signature, - STATE(5224), 1, + STATE(5328), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142605] = 7, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7415), 1, - anon_sym_abstract, - ACTIONS(7468), 1, - anon_sym_export, - ACTIONS(7470), 1, - anon_sym_class, - STATE(1285), 1, - sym_decorator, - STATE(3855), 1, - aux_sym_export_statement_repeat1, + [142423] = 7, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + ACTIONS(7203), 1, + sym_identifier, + STATE(3500), 1, + sym_nested_identifier, + STATE(3698), 1, + sym_string, + STATE(4311), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142628] = 7, - ACTIONS(2570), 1, + [142446] = 7, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6486), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, ACTIONS(7472), 1, anon_sym_QMARK, - STATE(3364), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(3774), 1, + STATE(4025), 1, sym__call_signature, - STATE(5316), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142651] = 4, - ACTIONS(7273), 1, - anon_sym_LBRACE, - STATE(2679), 1, - sym_statement_block, + [142469] = 4, + STATE(3868), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7206), 4, + ACTIONS(3760), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7474), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142668] = 7, - ACTIONS(1643), 1, - anon_sym_DQUOTE, - ACTIONS(1645), 1, - anon_sym_SQUOTE, - ACTIONS(7110), 1, - sym_identifier, - STATE(3472), 1, - sym_nested_identifier, - STATE(3530), 1, - sym_string, - STATE(4032), 1, - sym__module, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [142691] = 7, - ACTIONS(6604), 1, - anon_sym_AMP, - ACTIONS(6606), 1, - anon_sym_PIPE, - ACTIONS(6608), 1, - anon_sym_extends, - ACTIONS(7474), 1, - anon_sym_LBRACE, - ACTIONS(7476), 1, - anon_sym_COMMA, - STATE(4895), 1, - aux_sym_implements_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [142714] = 3, - ACTIONS(7298), 1, - anon_sym_AMP, + [142486] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4161), 5, + ACTIONS(2373), 6, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_extends, - [142729] = 5, - ACTIONS(7298), 1, anon_sym_AMP, - ACTIONS(7300), 1, anon_sym_PIPE, - ACTIONS(7302), 1, anon_sym_extends, + [142499] = 5, + ACTIONS(7381), 1, + anon_sym_default, + ACTIONS(7385), 1, + anon_sym_case, + ACTIONS(7476), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4179), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [142748] = 7, - ACTIONS(2570), 1, + STATE(3817), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [142518] = 7, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, ACTIONS(7478), 1, anon_sym_QMARK, - STATE(3317), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(5009), 1, - sym__call_signature, - STATE(5224), 1, + STATE(5328), 1, sym_type_parameters, + STATE(5426), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142771] = 3, - ACTIONS(7480), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4209), 5, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - [142786] = 7, - ACTIONS(3535), 1, - anon_sym_LPAREN, - ACTIONS(6063), 1, - anon_sym_LT, - ACTIONS(6962), 1, - anon_sym_DOT, - ACTIONS(7482), 1, - anon_sym_RPAREN, - STATE(1256), 1, - sym_arguments, - STATE(5449), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [142809] = 2, + [142541] = 4, + STATE(3834), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7242), 6, + ACTIONS(3760), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7474), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - [142822] = 7, - ACTIONS(2570), 1, + [142558] = 7, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6476), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(7484), 1, + ACTIONS(7480), 1, anon_sym_QMARK, - STATE(3893), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(5354), 1, - sym_type_parameters, - STATE(5456), 1, + STATE(5240), 1, sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [142845] = 7, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6476), 1, - anon_sym_LPAREN, - ACTIONS(7486), 1, - sym_identifier, - STATE(3893), 1, - sym_formal_parameters, - STATE(5354), 1, + STATE(5328), 1, sym_type_parameters, - STATE(5399), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142868] = 7, - ACTIONS(1643), 1, - anon_sym_DQUOTE, - ACTIONS(1645), 1, - anon_sym_SQUOTE, - ACTIONS(7110), 1, - sym_identifier, - STATE(3472), 1, - sym_nested_identifier, - STATE(3530), 1, - sym_string, - STATE(3949), 1, - sym__module, + [142581] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142891] = 7, - ACTIONS(2570), 1, + ACTIONS(7105), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + [142594] = 7, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6476), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - ACTIONS(7488), 1, - sym_identifier, - STATE(3893), 1, + ACTIONS(7482), 1, + anon_sym_QMARK, + STATE(3315), 1, sym_formal_parameters, - STATE(5269), 1, + STATE(3522), 1, sym__call_signature, - STATE(5354), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142914] = 5, - ACTIONS(7493), 1, - anon_sym_BQUOTE, - ACTIONS(7495), 1, - anon_sym_DOLLAR_LBRACE, + [142617] = 7, + ACTIONS(6605), 1, + anon_sym_AMP, + ACTIONS(6607), 1, + anon_sym_PIPE, + ACTIONS(6609), 1, + anon_sym_extends, + ACTIONS(7484), 1, + anon_sym_COMMA, + ACTIONS(7486), 1, + anon_sym_GT, + STATE(4542), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7490), 2, - sym__template_chars, - sym_escape_sequence, - STATE(3892), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [142933] = 4, - ACTIONS(7403), 1, - anon_sym_COLON, + [142640] = 4, + STATE(3896), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6787), 2, + ACTIONS(3768), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7488), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142657] = 4, + ACTIONS(7242), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(5192), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [142950] = 5, - ACTIONS(7330), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7498), 1, - anon_sym_BQUOTE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7326), 2, - sym__template_chars, - sym_escape_sequence, - STATE(3892), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [142969] = 7, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6476), 1, - anon_sym_LPAREN, - ACTIONS(7500), 1, - sym_identifier, - STATE(3893), 1, - sym_formal_parameters, - STATE(5269), 1, - sym__call_signature, - STATE(5354), 1, - sym_type_parameters, + STATE(2668), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142992] = 7, - ACTIONS(3535), 1, - anon_sym_LPAREN, - ACTIONS(6063), 1, - anon_sym_LT, - ACTIONS(6962), 1, - anon_sym_DOT, - ACTIONS(7502), 1, - anon_sym_RPAREN, - STATE(1256), 1, - sym_arguments, - STATE(5449), 1, - sym_type_arguments, + ACTIONS(7083), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142674] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143015] = 7, - ACTIONS(6604), 1, - anon_sym_AMP, - ACTIONS(6606), 1, - anon_sym_PIPE, - ACTIONS(6608), 1, - anon_sym_extends, - ACTIONS(7504), 1, + ACTIONS(7490), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(7506), 1, - anon_sym_GT, - STATE(4994), 1, - aux_sym_implements_clause_repeat1, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [142687] = 4, + STATE(3891), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143038] = 5, - ACTIONS(7281), 1, - anon_sym_default, - ACTIONS(7285), 1, - anon_sym_case, - ACTIONS(7508), 1, + ACTIONS(7494), 2, anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7492), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142704] = 7, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + ACTIONS(7496), 1, + anon_sym_QMARK, + STATE(3806), 1, + sym_formal_parameters, + STATE(5328), 1, + sym_type_parameters, + STATE(5451), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3783), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [143057] = 4, - STATE(3759), 1, + [142727] = 4, + STATE(3834), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7512), 2, + ACTIONS(3768), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7510), 3, + ACTIONS(7488), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143074] = 7, - ACTIONS(2570), 1, + [142744] = 7, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6476), 1, + ACTIONS(6509), 1, anon_sym_LPAREN, - ACTIONS(7514), 1, + ACTIONS(7498), 1, anon_sym_QMARK, - STATE(3893), 1, + STATE(3330), 1, sym_formal_parameters, - STATE(5298), 1, + STATE(3759), 1, sym__call_signature, - STATE(5354), 1, + STATE(5249), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143097] = 7, - ACTIONS(2570), 1, + [142767] = 4, + STATE(3834), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3764), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7306), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142784] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2377), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [142797] = 4, + ACTIONS(7242), 1, + anon_sym_LBRACE, + STATE(2659), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7163), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142814] = 7, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6476), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(7516), 1, + ACTIONS(7500), 1, sym_identifier, - STATE(3893), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(5354), 1, + STATE(5328), 1, sym_type_parameters, - STATE(5472), 1, + STATE(5429), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143120] = 6, - ACTIONS(3550), 1, - anon_sym_COLON, - ACTIONS(7144), 1, - anon_sym_EQ, - STATE(4420), 1, - sym_type_annotation, - STATE(5350), 1, - sym__initializer, + [142837] = 4, + ACTIONS(7242), 1, + anon_sym_LBRACE, + STATE(2669), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7518), 2, + ACTIONS(7085), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - [143141] = 6, - ACTIONS(6676), 1, - anon_sym_LT, - ACTIONS(7166), 1, - anon_sym_DOT, - ACTIONS(7520), 1, - anon_sym_LBRACE, - STATE(4939), 1, - sym_type_arguments, + anon_sym_SEMI, + [142854] = 4, + STATE(3834), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7522), 2, + ACTIONS(3776), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7502), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [143162] = 7, - ACTIONS(2570), 1, + anon_sym_SEMI, + [142871] = 7, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - ACTIONS(7524), 1, + ACTIONS(7504), 1, anon_sym_QMARK, - STATE(3317), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(3639), 1, + STATE(5128), 1, sym__call_signature, - STATE(5224), 1, + STATE(5328), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [142894] = 7, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6509), 1, + anon_sym_LPAREN, + ACTIONS(7506), 1, + anon_sym_QMARK, + STATE(3330), 1, + sym_formal_parameters, + STATE(3839), 1, + sym__call_signature, + STATE(5249), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143185] = 5, - ACTIONS(3282), 1, + [142917] = 5, + ACTIONS(3275), 1, anon_sym_LBRACE, - ACTIONS(7409), 1, + ACTIONS(7316), 1, anon_sym_LBRACK, - ACTIONS(7526), 1, + ACTIONS(7508), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4441), 3, + STATE(4431), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [143204] = 4, - STATE(3839), 1, - aux_sym_object_type_repeat1, + [142936] = 4, + ACTIONS(7242), 1, + anon_sym_LBRACE, + STATE(2693), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3793), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7393), 3, + ACTIONS(7223), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143221] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(5046), 1, - sym__initializer, + [142953] = 5, + ACTIONS(7510), 1, + anon_sym_BQUOTE, + ACTIONS(7512), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7514), 1, + sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [143237] = 4, - ACTIONS(6470), 1, + STATE(4136), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [142971] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4818), 1, + STATE(4798), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7530), 3, + ACTIONS(7516), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143253] = 5, - ACTIONS(7532), 1, + [142987] = 5, + ACTIONS(7518), 1, sym_identifier, - ACTIONS(7534), 1, + ACTIONS(7520), 1, anon_sym_LPAREN, - STATE(1243), 1, + STATE(2711), 1, sym_decorator_member_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1301), 2, + STATE(2806), 2, sym_decorator_call_expression, sym_decorator_parenthesized_expression, - [143271] = 4, - ACTIONS(6470), 1, + [143005] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4824), 1, + STATE(4559), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7530), 3, + ACTIONS(7522), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143287] = 4, - ACTIONS(6470), 1, + [143021] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4656), 1, + STATE(5109), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7536), 3, + ACTIONS(7524), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143303] = 2, + [143037] = 6, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + STATE(3315), 1, + sym_formal_parameters, + STATE(4251), 1, + sym__call_signature, + STATE(5233), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [143057] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4743), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1879), 5, + ACTIONS(7524), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143315] = 4, - ACTIONS(6470), 1, + [143073] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4687), 1, + STATE(4572), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7536), 3, + ACTIONS(7522), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143331] = 4, - ACTIONS(6470), 1, + [143089] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4688), 1, + STATE(4823), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7538), 3, + ACTIONS(7526), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143347] = 2, + [143105] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2928), 5, + ACTIONS(7528), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143359] = 2, + [143117] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4582), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1879), 5, + ACTIONS(7522), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143371] = 2, + [143133] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4954), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7526), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143149] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4585), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7522), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143165] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5312), 5, + ACTIONS(5223), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [143383] = 4, - ACTIONS(6470), 1, + [143177] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4696), 1, + STATE(4589), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7530), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143193] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4592), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7538), 3, + ACTIONS(7530), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143209] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7085), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [143221] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7347), 5, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [143233] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7454), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [143399] = 2, + [143245] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7540), 5, + ACTIONS(7532), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143411] = 2, + [143257] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7490), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [143269] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5228), 5, + ACTIONS(5231), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [143423] = 5, - ACTIONS(7542), 1, - anon_sym_BQUOTE, - ACTIONS(7544), 1, + [143281] = 5, + ACTIONS(7512), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7546), 1, + ACTIONS(7534), 1, + anon_sym_BQUOTE, + ACTIONS(7536), 1, sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3936), 2, + STATE(3901), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [143441] = 4, - ACTIONS(6470), 1, + [143299] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5231), 5, anon_sym_EQ, - STATE(4843), 1, - sym__initializer, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [143311] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7548), 3, + ACTIONS(2901), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [143457] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(4846), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [143323] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7530), 3, + ACTIONS(2561), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [143473] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(4850), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [143335] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7530), 3, + ACTIONS(2561), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [143347] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2969), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [143489] = 2, + anon_sym_PIPE_RBRACE, + [143359] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5316), 5, - anon_sym_EQ, + ACTIONS(2977), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [143501] = 2, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [143371] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5316), 5, + ACTIONS(5231), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [143513] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(4657), 1, - sym__initializer, + [143383] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1842), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [143395] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2561), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [143407] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2561), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [143419] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7538), 3, + ACTIONS(2561), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [143529] = 2, + anon_sym_PIPE_RBRACE, + [143431] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5316), 5, + ACTIONS(2561), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [143443] = 4, + ACTIONS(6447), 1, anon_sym_EQ, + STATE(4608), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7522), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [143541] = 4, - ACTIONS(6470), 1, + anon_sym_SEMI, + [143459] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4854), 1, + STATE(4612), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7530), 3, + ACTIONS(7522), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143557] = 4, - ACTIONS(6470), 1, + [143475] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4710), 1, + STATE(4613), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7536), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143573] = 6, - ACTIONS(3819), 1, + [143491] = 6, + ACTIONS(3814), 1, anon_sym_COLON, - ACTIONS(4593), 1, + ACTIONS(4622), 1, anon_sym_EQ, - ACTIONS(5080), 1, + ACTIONS(5060), 1, anon_sym_COMMA, - ACTIONS(7550), 1, + ACTIONS(7538), 1, anon_sym_RBRACE, - STATE(4834), 1, + STATE(4815), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143593] = 6, - ACTIONS(4352), 1, + [143511] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4614), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7530), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143527] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4854), 5, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [143539] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4615), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7530), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143555] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2629), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [143567] = 6, + ACTIONS(4336), 1, anon_sym_LBRACE, - ACTIONS(7552), 1, + ACTIONS(7540), 1, anon_sym_SEMI, - ACTIONS(7554), 1, + ACTIONS(7542), 1, sym__automatic_semicolon, - ACTIONS(7556), 1, + ACTIONS(7544), 1, sym__function_signature_automatic_semicolon, - STATE(2264), 1, + STATE(2199), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143613] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(4860), 1, - sym__initializer, + [143587] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7530), 3, + ACTIONS(2641), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [143599] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2657), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [143629] = 4, - ACTIONS(6470), 1, + anon_sym_PIPE_RBRACE, + [143611] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4732), 1, + STATE(4616), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7536), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143645] = 4, - ACTIONS(7403), 1, + [143627] = 4, + ACTIONS(7268), 1, anon_sym_COLON, - ACTIONS(7558), 1, + ACTIONS(7546), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5192), 3, + STATE(5306), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [143661] = 5, - ACTIONS(7544), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7561), 1, - anon_sym_BQUOTE, - ACTIONS(7563), 1, - sym__template_chars, + [143643] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4623), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4115), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [143679] = 4, - ACTIONS(6470), 1, + ACTIONS(7522), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143659] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4950), 1, + STATE(4624), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7565), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143695] = 6, - ACTIONS(1047), 1, + [143675] = 6, + ACTIONS(1034), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1627), 1, + ACTIONS(1610), 1, anon_sym_LBRACE, - ACTIONS(7096), 1, + ACTIONS(7191), 1, anon_sym_extends, - STATE(4128), 1, + STATE(3984), 1, sym_object_type, - STATE(4661), 1, + STATE(4643), 1, sym_extends_type_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143715] = 4, - ACTIONS(6470), 1, + [143695] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4742), 1, + STATE(4626), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7536), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143731] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(4751), 1, - sym__initializer, + [143711] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2839), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [143723] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2839), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [143735] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7536), 3, + ACTIONS(2839), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_PIPE_RBRACE, [143747] = 4, - ACTIONS(6470), 1, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4753), 1, + STATE(4640), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7538), 3, + ACTIONS(7522), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, [143763] = 4, - ACTIONS(6470), 1, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4754), 1, + STATE(4535), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7538), 3, + ACTIONS(7524), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143779] = 5, - ACTIONS(7569), 1, - anon_sym_SEMI, - ACTIONS(7571), 1, - sym__automatic_semicolon, - STATE(5375), 1, - sym_import_attribute, + [143779] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4652), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7567), 2, - anon_sym_with, - anon_sym_assert, - [143797] = 5, - ACTIONS(6709), 1, - anon_sym_AMP, - ACTIONS(6713), 1, - anon_sym_extends, - ACTIONS(7575), 1, - anon_sym_PIPE, + ACTIONS(7522), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143795] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4655), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7573), 2, + ACTIONS(7530), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [143815] = 2, + [143811] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4659), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7196), 5, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, [143827] = 6, - ACTIONS(7028), 1, + ACTIONS(7065), 1, anon_sym_LBRACE, - ACTIONS(7577), 1, + ACTIONS(7549), 1, anon_sym_SEMI, - ACTIONS(7579), 1, + ACTIONS(7551), 1, sym__automatic_semicolon, - ACTIONS(7581), 1, + ACTIONS(7553), 1, sym__function_signature_automatic_semicolon, - STATE(3962), 1, + STATE(3981), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143847] = 2, + [143847] = 5, + ACTIONS(6698), 1, + anon_sym_AMP, + ACTIONS(6702), 1, + anon_sym_extends, + ACTIONS(7557), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2756), 5, + ACTIONS(7555), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143859] = 5, - ACTIONS(6709), 1, - anon_sym_AMP, - ACTIONS(6713), 1, - anon_sym_extends, - ACTIONS(7575), 1, - anon_sym_PIPE, + [143865] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4667), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7583), 2, + ACTIONS(7522), 3, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143881] = 6, + ACTIONS(4336), 1, + anon_sym_LBRACE, + ACTIONS(7559), 1, anon_sym_SEMI, - [143877] = 2, + ACTIONS(7561), 1, + sym__automatic_semicolon, + ACTIONS(7563), 1, + sym__function_signature_automatic_semicolon, + STATE(2165), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [143901] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4858), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2796), 5, + ACTIONS(7524), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143889] = 5, - ACTIONS(6676), 1, - anon_sym_LT, - ACTIONS(7585), 1, - anon_sym_LBRACE, - STATE(4942), 1, - sym_type_arguments, + [143917] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4682), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7587), 2, + ACTIONS(7522), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [143907] = 6, - ACTIONS(4352), 1, - anon_sym_LBRACE, - ACTIONS(7589), 1, anon_sym_SEMI, - ACTIONS(7591), 1, + [143933] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4945), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7524), 3, sym__automatic_semicolon, - ACTIONS(7593), 1, - sym__function_signature_automatic_semicolon, - STATE(2132), 1, - sym_statement_block, + anon_sym_COMMA, + anon_sym_SEMI, + [143949] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4947), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143927] = 4, - ACTIONS(6470), 1, + ACTIONS(7526), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143965] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4871), 1, + STATE(4694), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7548), 3, + ACTIONS(7522), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143943] = 4, - ACTIONS(6470), 1, + [143981] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4816), 1, + STATE(4948), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7536), 3, + ACTIONS(7526), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143959] = 4, - ACTIONS(7403), 1, + [143997] = 4, + ACTIONS(7268), 1, anon_sym_COLON, - ACTIONS(7595), 1, + ACTIONS(7565), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5192), 3, + STATE(5306), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [143975] = 4, - ACTIONS(7403), 1, + [144013] = 4, + ACTIONS(7268), 1, anon_sym_COLON, - ACTIONS(7598), 1, + ACTIONS(7568), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5475), 3, + STATE(5199), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [143991] = 4, - ACTIONS(6470), 1, + [144029] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4872), 1, + STATE(4702), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7522), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [144045] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4703), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7530), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [144061] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4705), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, @@ -258079,195 +256286,212 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144007] = 6, - ACTIONS(7601), 1, + [144077] = 6, + ACTIONS(7571), 1, anon_sym_EQ, - ACTIONS(7603), 1, + ACTIONS(7573), 1, anon_sym_COMMA, - ACTIONS(7605), 1, + ACTIONS(7575), 1, anon_sym_RBRACE, - STATE(4721), 1, + STATE(4712), 1, aux_sym_enum_body_repeat1, - STATE(5310), 1, + STATE(5290), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144027] = 4, - ACTIONS(6470), 1, + [144097] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4839), 1, + STATE(4953), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7536), 3, + ACTIONS(7526), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144043] = 5, - ACTIONS(1557), 1, - anon_sym_DQUOTE, - ACTIONS(1559), 1, - anon_sym_SQUOTE, - ACTIONS(7607), 1, - sym_identifier, + [144113] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4717), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5433), 2, - sym__module_export_name, - sym_string, - [144061] = 2, + ACTIONS(7522), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [144129] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7395), 5, + ACTIONS(2553), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [144073] = 6, - ACTIONS(7028), 1, + anon_sym_PIPE_RBRACE, + [144141] = 6, + ACTIONS(7065), 1, anon_sym_LBRACE, - ACTIONS(7609), 1, + ACTIONS(7577), 1, anon_sym_SEMI, - ACTIONS(7611), 1, + ACTIONS(7579), 1, sym__automatic_semicolon, - ACTIONS(7613), 1, + ACTIONS(7581), 1, sym__function_signature_automatic_semicolon, - STATE(3975), 1, + STATE(3997), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144093] = 3, - ACTIONS(5458), 1, + [144161] = 3, + ACTIONS(5318), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1869), 4, + ACTIONS(1810), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [144175] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2675), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144107] = 5, - ACTIONS(6709), 1, + [144187] = 5, + ACTIONS(6698), 1, anon_sym_AMP, - ACTIONS(6713), 1, + ACTIONS(6702), 1, anon_sym_extends, - ACTIONS(7575), 1, + ACTIONS(7557), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7615), 2, + ACTIONS(7583), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [144205] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2737), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [144217] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2741), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [144125] = 6, - ACTIONS(2570), 1, + anon_sym_PIPE_RBRACE, + [144229] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - STATE(3317), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(3670), 1, + STATE(3521), 1, sym__call_signature, - STATE(5224), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144145] = 6, - ACTIONS(2570), 1, + [144249] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6486), 1, + ACTIONS(6509), 1, anon_sym_LPAREN, - STATE(3364), 1, + STATE(3330), 1, sym_formal_parameters, - STATE(4193), 1, + STATE(4355), 1, sym__call_signature, - STATE(5316), 1, + STATE(5249), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144165] = 4, - ACTIONS(6470), 1, + [144269] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4855), 1, + STATE(4970), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7536), 3, + ACTIONS(7526), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144181] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6476), 1, - anon_sym_LPAREN, - STATE(3893), 1, - sym_formal_parameters, - STATE(5354), 1, - sym_type_parameters, - STATE(5443), 1, - sym__call_signature, + [144285] = 4, + ACTIONS(7268), 1, + anon_sym_COLON, + ACTIONS(7585), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144201] = 2, + STATE(5199), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [144301] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4722), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2948), 5, + ACTIONS(7522), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144213] = 4, - ACTIONS(7403), 1, - anon_sym_COLON, - ACTIONS(7617), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5475), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [144229] = 4, - ACTIONS(6470), 1, + [144317] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4856), 1, + STATE(4723), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7538), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144245] = 2, + [144333] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2780), 5, + ACTIONS(2749), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144257] = 4, - ACTIONS(6470), 1, + [144345] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4878), 1, + STATE(4724), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, @@ -258276,223 +256500,254 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144273] = 6, - ACTIONS(7028), 1, - anon_sym_LBRACE, - ACTIONS(7552), 1, - anon_sym_SEMI, - ACTIONS(7554), 1, + [144361] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2809), 5, sym__automatic_semicolon, - ACTIONS(7556), 1, - sym__function_signature_automatic_semicolon, - STATE(781), 1, - sym_statement_block, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [144373] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144293] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(4857), 1, - sym__initializer, + ACTIONS(2809), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [144385] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7538), 3, + ACTIONS(2829), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [144309] = 3, - ACTIONS(5476), 1, + anon_sym_PIPE_RBRACE, + [144397] = 3, + ACTIONS(5322), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1769), 4, + ACTIONS(1770), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144323] = 3, - ACTIONS(5478), 1, + [144411] = 3, + ACTIONS(5324), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1779), 4, + ACTIONS(1780), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144337] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(4858), 1, - sym__initializer, + [144425] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1790), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [144437] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7538), 3, + ACTIONS(1800), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [144353] = 6, - ACTIONS(2570), 1, + anon_sym_PIPE_RBRACE, + [144449] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - STATE(3317), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(3681), 1, + STATE(3598), 1, sym__call_signature, - STATE(5224), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144373] = 5, - ACTIONS(6709), 1, - anon_sym_AMP, - ACTIONS(6713), 1, - anon_sym_extends, - ACTIONS(7575), 1, - anon_sym_PIPE, + [144469] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7620), 2, + ACTIONS(1706), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [144391] = 4, - ACTIONS(6470), 1, + anon_sym_PIPE_RBRACE, + [144481] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4859), 1, + STATE(4867), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7538), 3, + ACTIONS(7588), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144407] = 3, - ACTIONS(5512), 1, - sym__automatic_semicolon, + [144497] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1839), 4, + ACTIONS(2857), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144421] = 5, - ACTIONS(6709), 1, + [144509] = 5, + ACTIONS(6698), 1, anon_sym_AMP, - ACTIONS(6713), 1, + ACTIONS(6702), 1, anon_sym_extends, - ACTIONS(7575), 1, + ACTIONS(7557), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7622), 2, + ACTIONS(7590), 2, sym__automatic_semicolon, anon_sym_SEMI, - [144439] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - STATE(3317), 1, - sym_formal_parameters, - STATE(3686), 1, - sym__call_signature, - STATE(5224), 1, - sym_type_parameters, + [144527] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4725), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7530), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [144543] = 3, + ACTIONS(5328), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144459] = 4, - ACTIONS(6470), 1, + ACTIONS(1856), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [144557] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4852), 1, + STATE(4726), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7624), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144475] = 6, - ACTIONS(2570), 1, + [144573] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - STATE(3317), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(3691), 1, + STATE(3749), 1, sym__call_signature, - STATE(5224), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144495] = 6, - ACTIONS(2570), 1, + [144593] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - STATE(3317), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(3695), 1, + STATE(3631), 1, sym__call_signature, - STATE(5224), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144515] = 6, - ACTIONS(2570), 1, + [144613] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2909), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [144625] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - STATE(3317), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(3698), 1, + STATE(3637), 1, sym__call_signature, - STATE(5224), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144535] = 2, + [144645] = 6, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + STATE(3315), 1, + sym_formal_parameters, + STATE(3649), 1, + sym__call_signature, + STATE(5233), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7626), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144547] = 4, - ACTIONS(6470), 1, + [144665] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4893), 1, + STATE(4731), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7548), 3, + ACTIONS(7522), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144563] = 4, - ACTIONS(6470), 1, + [144681] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4789), 1, + STATE(4732), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, @@ -258501,136 +256756,62 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144579] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(4877), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7536), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [144595] = 2, + [144697] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7194), 5, + ACTIONS(2699), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144607] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(4909), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7536), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [144623] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4870), 5, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [144635] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4864), 5, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [144647] = 2, + [144709] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2724), 5, + ACTIONS(2699), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144659] = 2, + [144721] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2728), 5, + ACTIONS(2699), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144671] = 4, - ACTIONS(6470), 1, + [144733] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4904), 1, + STATE(4737), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7548), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144687] = 6, - ACTIONS(3819), 1, - anon_sym_COLON, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(5080), 1, - anon_sym_COMMA, - ACTIONS(7628), 1, - anon_sym_RBRACE, - STATE(4908), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [144707] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(4905), 1, - sym__initializer, + [144749] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7530), 3, + ACTIONS(2861), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [144723] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6476), 1, - anon_sym_LPAREN, - STATE(3893), 1, - sym_formal_parameters, - STATE(5354), 1, - sym_type_parameters, - STATE(5447), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [144743] = 4, - ACTIONS(6470), 1, + anon_sym_PIPE_RBRACE, + [144761] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4792), 1, + STATE(4738), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, @@ -258639,3056 +256820,2690 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144759] = 4, - ACTIONS(6470), 1, + [144777] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4935), 1, + STATE(4739), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7536), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144775] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(4910), 1, - sym__initializer, + [144793] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7530), 3, + ACTIONS(7153), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [144791] = 5, - ACTIONS(7630), 1, - sym_identifier, - ACTIONS(7632), 1, + anon_sym_PIPE_RBRACE, + [144805] = 6, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(3281), 1, anon_sym_LPAREN, - STATE(2686), 1, - sym_decorator_member_expression, + STATE(3315), 1, + sym_formal_parameters, + STATE(4177), 1, + sym__call_signature, + STATE(5233), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(2793), 2, - sym_decorator_call_expression, - sym_decorator_parenthesized_expression, - [144809] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(4954), 1, - sym__initializer, + [144825] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7536), 3, + ACTIONS(7151), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [144825] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(4959), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [144837] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7536), 3, + ACTIONS(7153), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [144841] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(4960), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [144849] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7538), 3, + ACTIONS(7592), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [144857] = 4, - ACTIONS(6470), 1, + anon_sym_PIPE_RBRACE, + [144861] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4917), 1, + STATE(4522), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7548), 3, + ACTIONS(7524), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144873] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6486), 1, - anon_sym_LPAREN, - STATE(3364), 1, - sym_formal_parameters, - STATE(4012), 1, - sym__call_signature, - STATE(5316), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [144893] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6476), 1, - anon_sym_LPAREN, - STATE(3893), 1, - sym_formal_parameters, - STATE(5244), 1, - sym__call_signature, - STATE(5354), 1, - sym_type_parameters, + [144877] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144913] = 6, - ACTIONS(1721), 1, - anon_sym_LBRACE, - ACTIONS(7589), 1, - anon_sym_SEMI, - ACTIONS(7591), 1, + ACTIONS(7151), 5, sym__automatic_semicolon, - ACTIONS(7593), 1, - sym__function_signature_automatic_semicolon, - STATE(223), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [144933] = 5, - ACTIONS(7544), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7634), 1, - anon_sym_BQUOTE, - ACTIONS(7636), 1, - sym__template_chars, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4021), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [144951] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(4961), 1, - sym__initializer, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [144889] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7538), 3, + ACTIONS(7594), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [144967] = 6, - ACTIONS(2570), 1, + anon_sym_PIPE_RBRACE, + [144901] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6476), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(3893), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(5235), 1, - sym__call_signature, - STATE(5354), 1, + STATE(5328), 1, sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [144987] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6476), 1, - anon_sym_LPAREN, - STATE(3893), 1, - sym_formal_parameters, - STATE(5317), 1, + STATE(5391), 1, sym__call_signature, - STATE(5354), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [145007] = 6, - ACTIONS(4352), 1, - anon_sym_LBRACE, - ACTIONS(7577), 1, - anon_sym_SEMI, - ACTIONS(7579), 1, - sym__automatic_semicolon, - ACTIONS(7581), 1, - sym__function_signature_automatic_semicolon, - STATE(2283), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [145027] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(4921), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7530), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [145043] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(4782), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7530), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [145059] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(4922), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7530), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [145075] = 5, - ACTIONS(7544), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7563), 1, - sym__template_chars, - ACTIONS(7638), 1, - anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4115), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [145093] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(4925), 1, - sym__initializer, + [144921] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7530), 3, + ACTIONS(2943), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145109] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(4978), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [144933] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7536), 3, + ACTIONS(2949), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145125] = 6, - ACTIONS(4352), 1, - anon_sym_LBRACE, - ACTIONS(7609), 1, - anon_sym_SEMI, - ACTIONS(7611), 1, - sym__automatic_semicolon, - ACTIONS(7613), 1, - sym__function_signature_automatic_semicolon, - STATE(2295), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [145145] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(4926), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [144945] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7530), 3, + ACTIONS(2957), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145161] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(4783), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [144957] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7530), 3, + ACTIONS(2965), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145177] = 2, + anon_sym_PIPE_RBRACE, + [144969] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7640), 5, + ACTIONS(2865), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145189] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(4986), 1, - sym__initializer, + [144981] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7536), 3, + ACTIONS(7085), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145205] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(4989), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [144993] = 6, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(3806), 1, + sym_formal_parameters, + STATE(5228), 1, + sym__call_signature, + STATE(5328), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7538), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [145221] = 6, - ACTIONS(1721), 1, + [145013] = 6, + ACTIONS(1678), 1, anon_sym_LBRACE, - ACTIONS(7552), 1, + ACTIONS(7559), 1, anon_sym_SEMI, - ACTIONS(7554), 1, + ACTIONS(7561), 1, sym__automatic_semicolon, - ACTIONS(7556), 1, + ACTIONS(7563), 1, sym__function_signature_automatic_semicolon, - STATE(238), 1, + STATE(222), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145241] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(4992), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7538), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [145257] = 2, + [145033] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1751), 5, + ACTIONS(2719), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145269] = 2, + [145045] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7198), 5, + ACTIONS(2719), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145281] = 6, - ACTIONS(2570), 1, + [145057] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(6509), 1, anon_sym_LPAREN, - STATE(3317), 1, + STATE(3330), 1, sym_formal_parameters, - STATE(4320), 1, + STATE(3893), 1, sym__call_signature, - STATE(5224), 1, + STATE(5249), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145301] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2816), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145313] = 2, + [145077] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2864), 5, + ACTIONS(2869), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145325] = 2, + [145089] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2888), 5, + ACTIONS(1758), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145337] = 2, + [145101] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7200), 5, + ACTIONS(1820), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145349] = 5, - ACTIONS(7534), 1, - anon_sym_LPAREN, - ACTIONS(7642), 1, - sym_identifier, - STATE(3444), 1, - sym_decorator_member_expression, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1301), 2, - sym_decorator_call_expression, - sym_decorator_parenthesized_expression, - [145367] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(4797), 1, - sym__initializer, + [145113] = 5, + ACTIONS(7512), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7596), 1, + anon_sym_BQUOTE, + ACTIONS(7598), 1, + sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7548), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [145383] = 2, + STATE(4057), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [145131] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7198), 5, + ACTIONS(1830), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145395] = 2, + [145143] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7644), 5, + ACTIONS(2917), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145407] = 4, - ACTIONS(6470), 1, + [145155] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4785), 1, + STATE(4557), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7646), 3, + ACTIONS(7524), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145423] = 2, + [145171] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7648), 5, + ACTIONS(7600), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145435] = 2, + [145183] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7200), 5, + ACTIONS(7602), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145447] = 2, + [145195] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7650), 5, + ACTIONS(7604), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145459] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7652), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + [145207] = 6, + ACTIONS(4336), 1, + anon_sym_LBRACE, + ACTIONS(7549), 1, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145471] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(4967), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7548), 3, + ACTIONS(7551), 1, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [145487] = 5, - ACTIONS(7544), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7654), 1, - anon_sym_BQUOTE, - ACTIONS(7656), 1, - sym__template_chars, + ACTIONS(7553), 1, + sym__function_signature_automatic_semicolon, + STATE(2182), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4053), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [145505] = 4, - ACTIONS(6470), 1, + [145227] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4981), 1, + STATE(4748), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7530), 3, + ACTIONS(7606), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145521] = 2, + [145243] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7150), 5, + ACTIONS(7083), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145533] = 2, + [145255] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4750), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7658), 5, + ACTIONS(7608), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145545] = 5, - ACTIONS(7544), 1, + [145271] = 5, + ACTIONS(7512), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7563), 1, + ACTIONS(7514), 1, sym__template_chars, - ACTIONS(7660), 1, + ACTIONS(7610), 1, anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4115), 2, + STATE(4136), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [145563] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(4982), 1, - sym__initializer, + [145289] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7530), 3, + ACTIONS(7612), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145579] = 4, - ACTIONS(6470), 1, + anon_sym_PIPE_RBRACE, + [145301] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4576), 1, + STATE(4837), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7662), 3, + ACTIONS(7614), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145595] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5015), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [145607] = 4, - ACTIONS(6470), 1, + [145317] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4987), 1, + STATE(4670), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7530), 3, + ACTIONS(7614), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145623] = 2, + [145333] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7427), 5, + ACTIONS(2775), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145635] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(4988), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7530), 3, - sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_PIPE_RBRACE, + [145345] = 6, + ACTIONS(4336), 1, + anon_sym_LBRACE, + ACTIONS(7577), 1, anon_sym_SEMI, - [145651] = 2, + ACTIONS(7579), 1, + sym__automatic_semicolon, + ACTIONS(7581), 1, + sym__function_signature_automatic_semicolon, + STATE(2186), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7429), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [145663] = 2, + [145365] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7431), 5, + ACTIONS(2783), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145675] = 2, + anon_sym_PIPE_RBRACE, + [145377] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4751), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2940), 5, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145687] = 2, + [145393] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4752), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2544), 5, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145699] = 2, + [145409] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4753), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2544), 5, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145711] = 2, + [145425] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2548), 5, + ACTIONS(2797), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145723] = 2, + [145437] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2552), 5, + ACTIONS(2801), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145735] = 2, + [145449] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1799), 5, + ACTIONS(2813), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145747] = 2, + [145461] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2544), 5, + ACTIONS(2835), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145759] = 2, + [145473] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2544), 5, + ACTIONS(2921), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145771] = 2, + [145485] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2544), 5, + ACTIONS(2723), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145783] = 2, + [145497] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2544), 5, + ACTIONS(2585), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145795] = 2, + [145509] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1925), 5, + ACTIONS(1866), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145807] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6476), 1, - anon_sym_LPAREN, - STATE(3893), 1, - sym_formal_parameters, - STATE(5354), 1, - sym_type_parameters, - STATE(5396), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [145827] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4868), 5, + [145521] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [145839] = 2, + STATE(4755), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2644), 5, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145851] = 2, + [145537] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2656), 5, + ACTIONS(7618), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145863] = 2, + [145549] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4758), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2668), 5, + ACTIONS(7620), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145875] = 2, + [145565] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7664), 5, + ACTIONS(2707), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145887] = 4, - ACTIONS(6470), 1, + [145577] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4997), 1, + STATE(4760), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7530), 3, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145903] = 5, - ACTIONS(7544), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7666), 1, - anon_sym_BQUOTE, - ACTIONS(7668), 1, - sym__template_chars, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4084), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [145921] = 4, - ACTIONS(6470), 1, + [145593] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5003), 1, + STATE(4761), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7530), 3, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145937] = 4, - ACTIONS(6470), 1, + [145609] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4658), 1, + STATE(4762), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7538), 3, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145953] = 4, - ACTIONS(6470), 1, + [145625] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5120), 1, + STATE(4763), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7565), 3, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145969] = 5, - ACTIONS(7544), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7563), 1, - sym__template_chars, - ACTIONS(7670), 1, - anon_sym_BQUOTE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4115), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [145987] = 6, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7415), 1, - anon_sym_abstract, - ACTIONS(7672), 1, - anon_sym_class, - STATE(1285), 1, - sym_decorator, - STATE(3855), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [146007] = 2, + [145641] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5139), 5, - anon_sym_EQ, + ACTIONS(7223), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [146019] = 2, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [145653] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7674), 5, + ACTIONS(7622), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146031] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - STATE(3317), 1, - sym_formal_parameters, - STATE(4033), 1, - sym__call_signature, - STATE(5224), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [146051] = 4, - ACTIONS(3550), 1, - anon_sym_COLON, - STATE(5200), 1, - sym_type_annotation, + [145665] = 5, + ACTIONS(7512), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7624), 1, + anon_sym_BQUOTE, + ACTIONS(7626), 1, + sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3637), 3, + STATE(4092), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [145683] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACK, - [146067] = 2, + STATE(4764), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7676), 5, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146079] = 2, + [145699] = 4, + ACTIONS(7268), 1, + anon_sym_COLON, + ACTIONS(7628), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5306), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [145715] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2860), 5, + ACTIONS(2771), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146091] = 2, + [145727] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2860), 5, + ACTIONS(2787), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146103] = 2, + [145739] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2860), 5, + ACTIONS(2791), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146115] = 2, + [145751] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7678), 5, + ACTIONS(2825), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146127] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6486), 1, - anon_sym_LPAREN, - STATE(3364), 1, - sym_formal_parameters, - STATE(3873), 1, - sym__call_signature, - STATE(5316), 1, - sym_type_parameters, + [145763] = 5, + ACTIONS(7512), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7514), 1, + sym__template_chars, + ACTIONS(7631), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146147] = 2, + STATE(4136), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [145781] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4765), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7206), 5, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146159] = 6, - ACTIONS(2570), 1, + [145797] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(6509), 1, anon_sym_LPAREN, - STATE(3317), 1, + STATE(3330), 1, sym_formal_parameters, - STATE(4336), 1, + STATE(3756), 1, sym__call_signature, - STATE(5224), 1, + STATE(5249), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146179] = 4, - ACTIONS(6470), 1, + [145817] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5032), 1, + STATE(4769), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7680), 3, + ACTIONS(7620), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146195] = 2, + [145833] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4770), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7208), 5, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146207] = 3, - ACTIONS(7682), 1, + [145849] = 4, + ACTIONS(6447), 1, anon_sym_EQ, + STATE(4771), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3637), 4, + ACTIONS(7616), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [146221] = 4, - ACTIONS(6470), 1, + anon_sym_SEMI, + [145865] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5038), 1, + STATE(4633), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7685), 3, + ACTIONS(7524), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146237] = 4, - ACTIONS(7403), 1, - anon_sym_COLON, - ACTIONS(7687), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5192), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [146253] = 2, + [145881] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4786), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7206), 5, + ACTIONS(7620), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146265] = 2, + [145897] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(5031), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7690), 5, + ACTIONS(7633), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146277] = 4, - ACTIONS(6470), 1, + [145913] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4798), 1, + STATE(4793), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7530), 3, + ACTIONS(7620), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146293] = 4, - ACTIONS(7403), 1, - anon_sym_COLON, - ACTIONS(7692), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5475), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [146309] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - STATE(3317), 1, - sym_formal_parameters, - STATE(5045), 1, - sym__call_signature, - STATE(5224), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [146329] = 2, + [145929] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4794), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7695), 5, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146341] = 2, + [145945] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4795), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7697), 5, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146353] = 5, - ACTIONS(6604), 1, + [145961] = 5, + ACTIONS(6698), 1, anon_sym_AMP, - ACTIONS(6606), 1, - anon_sym_PIPE, - ACTIONS(6608), 1, + ACTIONS(6702), 1, anon_sym_extends, + ACTIONS(7557), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7699), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [146371] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(4769), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7646), 3, + ACTIONS(7635), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [146387] = 4, - ACTIONS(6470), 1, + [145979] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5017), 1, + STATE(4800), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7701), 3, + ACTIONS(7620), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146403] = 4, - ACTIONS(6376), 1, - anon_sym_LBRACK, - ACTIONS(7703), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4201), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [146419] = 4, - ACTIONS(6470), 1, + [145995] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5047), 1, + STATE(4801), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146435] = 5, - ACTIONS(7705), 1, - anon_sym_BQUOTE, - ACTIONS(7707), 1, + [146011] = 5, + ACTIONS(7512), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7710), 1, + ACTIONS(7637), 1, + anon_sym_BQUOTE, + ACTIONS(7639), 1, sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4115), 2, + STATE(4112), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [146453] = 5, - ACTIONS(6604), 1, - anon_sym_AMP, - ACTIONS(6606), 1, - anon_sym_PIPE, - ACTIONS(6608), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7713), 2, - anon_sym_COMMA, - anon_sym_GT, - [146471] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6486), 1, - anon_sym_LPAREN, - STATE(3364), 1, - sym_formal_parameters, - STATE(3844), 1, - sym__call_signature, - STATE(5316), 1, - sym_type_parameters, + [146029] = 5, + ACTIONS(7512), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7514), 1, + sym__template_chars, + ACTIONS(7641), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146491] = 4, - ACTIONS(6470), 1, + STATE(4136), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [146047] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4800), 1, + STATE(4803), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7530), 3, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146507] = 2, + [146063] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4804), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7196), 5, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146519] = 4, - ACTIONS(6470), 1, + [146079] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5051), 1, + STATE(4809), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7715), 3, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146535] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(5052), 1, - sym__initializer, + [146095] = 5, + ACTIONS(7512), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7514), 1, + sym__template_chars, + ACTIONS(7643), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4136), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [146113] = 4, + STATE(5437), 1, + sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7645), 2, + anon_sym_with, + anon_sym_assert, + ACTIONS(7647), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [146551] = 4, - ACTIONS(6470), 1, + [146129] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5053), 1, + STATE(4719), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7524), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146567] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6476), 1, - anon_sym_LPAREN, - STATE(3893), 1, - sym_formal_parameters, - STATE(5354), 1, - sym_type_parameters, - STATE(5465), 1, - sym__call_signature, + [146145] = 4, + ACTIONS(3557), 1, + anon_sym_COLON, + STATE(5159), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146587] = 4, - ACTIONS(6470), 1, + ACTIONS(3622), 3, anon_sym_EQ, - STATE(5054), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7528), 3, - sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_SEMI, - [146603] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6486), 1, - anon_sym_LPAREN, - STATE(3364), 1, - sym_formal_parameters, - STATE(3932), 1, - sym__call_signature, - STATE(5316), 1, - sym_type_parameters, + anon_sym_RBRACK, + [146161] = 4, + ACTIONS(7268), 1, + anon_sym_COLON, + ACTIONS(7649), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146623] = 2, + STATE(5306), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [146177] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4818), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2676), 5, + ACTIONS(7620), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146635] = 2, + [146193] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4819), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2692), 5, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146647] = 2, + [146209] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4820), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2748), 5, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146659] = 2, + [146225] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4821), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2752), 5, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146671] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7717), 5, + [146241] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [146683] = 5, - ACTIONS(1557), 1, - anon_sym_DQUOTE, - ACTIONS(1559), 1, - anon_sym_SQUOTE, - ACTIONS(7719), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5504), 2, - sym__module_export_name, - sym_string, - [146701] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(5055), 1, + STATE(4824), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146717] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6476), 1, - anon_sym_LPAREN, - STATE(3893), 1, - sym_formal_parameters, - STATE(5354), 1, - sym_type_parameters, - STATE(5468), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [146737] = 6, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7413), 1, - anon_sym_class, - ACTIONS(7415), 1, - anon_sym_abstract, - STATE(1285), 1, - sym_decorator, - STATE(3855), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [146757] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6486), 1, - anon_sym_LPAREN, - STATE(3364), 1, - sym_formal_parameters, - STATE(3946), 1, - sym__call_signature, - STATE(5316), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [146777] = 4, - STATE(5160), 1, - sym_import_attribute, + [146257] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4826), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7567), 2, - anon_sym_with, - anon_sym_assert, - ACTIONS(7721), 2, + ACTIONS(7616), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [146793] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6476), 1, - anon_sym_LPAREN, - STATE(3893), 1, - sym_formal_parameters, - STATE(5354), 1, - sym_type_parameters, - STATE(5457), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [146813] = 4, - ACTIONS(6360), 1, - anon_sym_DOT, - ACTIONS(7723), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6358), 3, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_LT, - [146829] = 4, - ACTIONS(6470), 1, + [146273] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4803), 1, + STATE(4831), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7530), 3, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146845] = 2, + [146289] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4772), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2968), 5, + ACTIONS(7524), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146857] = 6, - ACTIONS(7601), 1, - anon_sym_EQ, - ACTIONS(7725), 1, - anon_sym_COMMA, - ACTIONS(7727), 1, - anon_sym_RBRACE, - STATE(4953), 1, - aux_sym_enum_body_repeat1, - STATE(5310), 1, - sym__initializer, + [146305] = 4, + ACTIONS(7268), 1, + anon_sym_COLON, + ACTIONS(7652), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146877] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6486), 1, - anon_sym_LPAREN, - STATE(3364), 1, - sym_formal_parameters, - STATE(3951), 1, - sym__call_signature, - STATE(5316), 1, - sym_type_parameters, + STATE(5199), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [146321] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4835), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146897] = 3, - ACTIONS(4837), 1, - anon_sym_in, + ACTIONS(7620), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146337] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4836), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5565), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [146911] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6476), 1, - anon_sym_LPAREN, - STATE(3893), 1, - sym_formal_parameters, - STATE(5144), 1, - sym__call_signature, - STATE(5354), 1, - sym_type_parameters, + ACTIONS(7616), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146353] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4838), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146931] = 4, - STATE(5176), 1, - sym_import_attribute, + ACTIONS(7616), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146369] = 5, + ACTIONS(6605), 1, + anon_sym_AMP, + ACTIONS(6607), 1, + anon_sym_PIPE, + ACTIONS(6609), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7567), 2, - anon_sym_with, - anon_sym_assert, - ACTIONS(7729), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [146947] = 4, - ACTIONS(6470), 1, + ACTIONS(7655), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [146387] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5021), 1, + STATE(4839), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7731), 3, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146963] = 5, - ACTIONS(7733), 1, - anon_sym_SEMI, - ACTIONS(7735), 1, - sym__automatic_semicolon, - STATE(5474), 1, + [146403] = 4, + STATE(5309), 1, sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7567), 2, + ACTIONS(7645), 2, anon_sym_with, anon_sym_assert, - [146981] = 2, + ACTIONS(7657), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [146419] = 5, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(7659), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2824), 5, - sym__automatic_semicolon, - anon_sym_COMMA, + STATE(5863), 2, + sym__module_export_name, + sym_string, + [146437] = 4, + ACTIONS(6373), 1, + anon_sym_LBRACK, + ACTIONS(7661), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146993] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2824), 5, + ACTIONS(4172), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [146453] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4840), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147005] = 4, - ACTIONS(6470), 1, + [146469] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5029), 1, + STATE(4776), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7731), 3, + ACTIONS(7526), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147021] = 2, + [146485] = 5, + ACTIONS(7663), 1, + anon_sym_BQUOTE, + ACTIONS(7665), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7668), 1, + sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2848), 5, - sym__automatic_semicolon, + STATE(4136), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [146503] = 5, + ACTIONS(6605), 1, + anon_sym_AMP, + ACTIONS(6607), 1, + anon_sym_PIPE, + ACTIONS(6609), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7671), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147033] = 2, + anon_sym_GT, + [146521] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4845), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1859), 5, + ACTIONS(7620), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147045] = 2, + [146537] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4846), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1811), 5, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147057] = 2, + [146553] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4847), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1915), 5, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147069] = 2, + [146569] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4781), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2868), 5, + ACTIONS(7526), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147081] = 2, + [146585] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4854), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7214), 5, + ACTIONS(7620), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147093] = 4, - ACTIONS(6470), 1, + [146601] = 5, + ACTIONS(6682), 1, + anon_sym_LT, + ACTIONS(7673), 1, + anon_sym_LBRACE, + STATE(5076), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7675), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [146619] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5063), 1, + STATE(4861), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7620), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147109] = 4, - ACTIONS(6470), 1, + [146635] = 4, + ACTIONS(6337), 1, + anon_sym_DOT, + ACTIONS(7677), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6335), 3, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_LT, + [146651] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5064), 1, + STATE(4862), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147125] = 6, - ACTIONS(2570), 1, + [146667] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6486), 1, + ACTIONS(6509), 1, anon_sym_LPAREN, - STATE(3364), 1, + STATE(3330), 1, sym_formal_parameters, - STATE(3819), 1, + STATE(3944), 1, sym__call_signature, - STATE(5316), 1, + STATE(5249), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147145] = 2, + [146687] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7679), 5, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_extends, + anon_sym_implements, + [146699] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4865), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2900), 5, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147157] = 6, - ACTIONS(99), 1, + [146715] = 6, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(7415), 1, - anon_sym_abstract, - ACTIONS(7470), 1, + ACTIONS(7282), 1, anon_sym_class, - STATE(1285), 1, - sym_decorator, - STATE(3855), 1, + ACTIONS(7284), 1, + anon_sym_abstract, + STATE(1269), 1, aux_sym_export_statement_repeat1, + STATE(1344), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147177] = 4, - ACTIONS(6470), 1, + [146735] = 6, + ACTIONS(7571), 1, anon_sym_EQ, - STATE(5031), 1, + ACTIONS(7681), 1, + anon_sym_COMMA, + ACTIONS(7683), 1, + anon_sym_RBRACE, + STATE(4962), 1, + aux_sym_enum_body_repeat1, + STATE(5290), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7731), 3, + [146755] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4871), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7620), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147193] = 4, - ACTIONS(6470), 1, + [146771] = 6, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(7284), 1, + anon_sym_abstract, + ACTIONS(7393), 1, + anon_sym_class, + STATE(1269), 1, + aux_sym_export_statement_repeat1, + STATE(1344), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [146791] = 6, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6509), 1, + anon_sym_LPAREN, + STATE(3330), 1, + sym_formal_parameters, + STATE(3961), 1, + sym__call_signature, + STATE(5249), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [146811] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5070), 1, + STATE(4872), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7715), 3, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147209] = 4, - ACTIONS(6470), 1, + [146827] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5033), 1, + STATE(4873), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7731), 3, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147225] = 6, - ACTIONS(2570), 1, + [146843] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6486), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(3364), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(3961), 1, + STATE(5150), 1, sym__call_signature, - STATE(5316), 1, + STATE(5328), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147245] = 2, + [146863] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4874), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2708), 5, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147257] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6476), 1, - anon_sym_LPAREN, - STATE(3893), 1, - sym_formal_parameters, - STATE(5294), 1, - sym__call_signature, - STATE(5354), 1, - sym_type_parameters, + [146879] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4875), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147277] = 6, - ACTIONS(2570), 1, + ACTIONS(7616), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146895] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6476), 1, + ACTIONS(6509), 1, anon_sym_LPAREN, - STATE(3893), 1, + STATE(3330), 1, sym_formal_parameters, - STATE(5301), 1, + STATE(3964), 1, sym__call_signature, - STATE(5354), 1, + STATE(5249), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147297] = 6, - ACTIONS(2570), 1, + [146915] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6476), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(3893), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(5303), 1, + STATE(5224), 1, sym__call_signature, - STATE(5354), 1, + STATE(5328), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147317] = 2, + [146935] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4827), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2708), 5, + ACTIONS(7524), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147329] = 2, + [146951] = 5, + ACTIONS(3109), 1, + anon_sym_DQUOTE, + ACTIONS(3111), 1, + anon_sym_SQUOTE, + ACTIONS(7685), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4881), 2, + sym__module_export_name, + sym_string, + [146969] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7687), 5, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_extends, + anon_sym_implements, + [146981] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4886), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2708), 5, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147341] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6476), 1, - anon_sym_LPAREN, - STATE(3893), 1, - sym_formal_parameters, - STATE(5318), 1, - sym__call_signature, - STATE(5354), 1, - sym_type_parameters, + [146997] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4888), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147361] = 2, + ACTIONS(7616), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147013] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4889), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2952), 5, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147373] = 4, - ACTIONS(6470), 1, + [147029] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5073), 1, + STATE(4892), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7715), 3, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147389] = 4, - ACTIONS(6470), 1, + [147045] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5074), 1, + STATE(4893), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147405] = 4, - ACTIONS(6470), 1, + [147061] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5075), 1, + STATE(4895), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147421] = 5, - ACTIONS(1557), 1, - anon_sym_DQUOTE, - ACTIONS(1559), 1, - anon_sym_SQUOTE, - ACTIONS(7737), 1, - sym_identifier, + [147077] = 6, + ACTIONS(3814), 1, + anon_sym_COLON, + ACTIONS(4622), 1, + anon_sym_EQ, + ACTIONS(5060), 1, + anon_sym_COMMA, + ACTIONS(7689), 1, + anon_sym_RBRACE, + STATE(4802), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5325), 2, - sym__module_export_name, - sym_string, - [147439] = 6, - ACTIONS(2570), 1, + [147097] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6476), 1, + ACTIONS(6509), 1, anon_sym_LPAREN, - STATE(3893), 1, + STATE(3330), 1, sym_formal_parameters, - STATE(5354), 1, - sym_type_parameters, - STATE(5412), 1, + STATE(3980), 1, sym__call_signature, + STATE(5249), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147459] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(5044), 1, - sym__initializer, + [147117] = 6, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(3806), 1, + sym_formal_parameters, + STATE(5212), 1, + sym__call_signature, + STATE(5328), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7739), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [147475] = 6, - ACTIONS(2570), 1, + [147137] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6476), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(3893), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(5354), 1, + STATE(5216), 1, + sym__call_signature, + STATE(5328), 1, sym_type_parameters, - STATE(5420), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [147157] = 6, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(3806), 1, + sym_formal_parameters, + STATE(5220), 1, sym__call_signature, + STATE(5328), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147495] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(5079), 1, - sym__initializer, + [147177] = 6, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(3806), 1, + sym_formal_parameters, + STATE(5241), 1, + sym__call_signature, + STATE(5328), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7715), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [147511] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(5080), 1, - sym__initializer, + [147197] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7155), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [147527] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(5081), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [147209] = 6, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + STATE(3315), 1, + sym_formal_parameters, + STATE(4252), 1, + sym__call_signature, + STATE(5233), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [147543] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(5065), 1, - sym__initializer, + [147229] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7731), 3, + ACTIONS(7157), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [147559] = 5, - ACTIONS(2344), 1, + anon_sym_PIPE_RBRACE, + [147241] = 5, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(2346), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - ACTIONS(7741), 1, + ACTIONS(7691), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4642), 2, + STATE(5307), 2, sym__module_export_name, sym_string, - [147577] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(5082), 1, - sym__initializer, + [147259] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7155), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [147593] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(5066), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [147271] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7731), 3, + ACTIONS(7693), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [147609] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6476), 1, - anon_sym_LPAREN, - STATE(3893), 1, - sym_formal_parameters, - STATE(5354), 1, - sym_type_parameters, - STATE(5454), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [147629] = 4, - ACTIONS(6470), 1, + anon_sym_PIPE_RBRACE, + [147283] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5083), 1, + STATE(4842), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7524), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147645] = 6, - ACTIONS(2570), 1, + [147299] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6476), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(3893), 1, + STATE(3806), 1, sym_formal_parameters, STATE(5328), 1, - sym__call_signature, - STATE(5354), 1, sym_type_parameters, + STATE(5363), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147665] = 6, - ACTIONS(2570), 1, + [147319] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6476), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(3893), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(5354), 1, + STATE(5328), 1, sym_type_parameters, - STATE(5471), 1, + STATE(5366), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147685] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(5084), 1, - sym__initializer, + [147339] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7731), 3, + ACTIONS(7695), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [147701] = 6, - ACTIONS(7028), 1, - anon_sym_LBRACE, - ACTIONS(7589), 1, - anon_sym_SEMI, - ACTIONS(7591), 1, - sym__automatic_semicolon, - ACTIONS(7593), 1, - sym__function_signature_automatic_semicolon, - STATE(776), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [147721] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6476), 1, - anon_sym_LPAREN, - STATE(3893), 1, - sym_formal_parameters, - STATE(5146), 1, - sym__call_signature, - STATE(5354), 1, - sym_type_parameters, + anon_sym_PIPE_RBRACE, + [147351] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147741] = 4, - ACTIONS(6470), 1, + ACTIONS(7697), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [147363] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5085), 1, + STATE(4898), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7731), 3, + ACTIONS(7699), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147757] = 6, - ACTIONS(2570), 1, + [147379] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6476), 1, + ACTIONS(6509), 1, anon_sym_LPAREN, - STATE(3893), 1, + STATE(3330), 1, sym_formal_parameters, - STATE(5150), 1, + STATE(3770), 1, sym__call_signature, - STATE(5354), 1, + STATE(5249), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147777] = 5, - ACTIONS(6709), 1, - anon_sym_AMP, - ACTIONS(6713), 1, - anon_sym_extends, - ACTIONS(7575), 1, - anon_sym_PIPE, + [147399] = 6, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(3806), 1, + sym_formal_parameters, + STATE(5310), 1, + sym__call_signature, + STATE(5328), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7743), 2, - sym__automatic_semicolon, + [147419] = 6, + ACTIONS(7065), 1, + anon_sym_LBRACE, + ACTIONS(7559), 1, anon_sym_SEMI, - [147795] = 2, + ACTIONS(7561), 1, + sym__automatic_semicolon, + ACTIONS(7563), 1, + sym__function_signature_automatic_semicolon, + STATE(799), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2964), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147807] = 2, + [147439] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4844), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2540), 5, + ACTIONS(7526), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147819] = 2, + [147455] = 6, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(3806), 1, + sym_formal_parameters, + STATE(5328), 1, + sym_type_parameters, + STATE(5424), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [147475] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4900), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2772), 5, + ACTIONS(7701), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147831] = 2, + [147491] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4901), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2716), 5, + ACTIONS(7701), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147843] = 6, - ACTIONS(2570), 1, + [147507] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6476), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(3893), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(5333), 1, - sym__call_signature, - STATE(5354), 1, + STATE(5328), 1, sym_type_parameters, + STATE(5447), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147863] = 2, + [147527] = 6, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(3806), 1, + sym_formal_parameters, + STATE(5127), 1, + sym__call_signature, + STATE(5328), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2612), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147875] = 4, - ACTIONS(6470), 1, + [147547] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5100), 1, + STATE(4902), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7715), 3, + ACTIONS(7701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147891] = 4, - ACTIONS(6470), 1, + [147563] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5087), 1, + STATE(4903), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7731), 3, + ACTIONS(7701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147907] = 6, - ACTIONS(2570), 1, + [147579] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6476), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(3893), 1, + STATE(3806), 1, + sym_formal_parameters, + STATE(5135), 1, + sym__call_signature, + STATE(5328), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [147599] = 6, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6509), 1, + anon_sym_LPAREN, + STATE(3330), 1, sym_formal_parameters, - STATE(5339), 1, + STATE(4250), 1, sym__call_signature, - STATE(5354), 1, + STATE(5249), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147927] = 2, + [147619] = 5, + ACTIONS(6698), 1, + anon_sym_AMP, + ACTIONS(6702), 1, + anon_sym_extends, + ACTIONS(7557), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2776), 5, + ACTIONS(7703), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147939] = 2, + [147637] = 6, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(3806), 1, + sym_formal_parameters, + STATE(5315), 1, + sym__call_signature, + STATE(5328), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [147657] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4850), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2776), 5, + ACTIONS(7526), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147951] = 4, - ACTIONS(6470), 1, + [147673] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5088), 1, + STATE(4909), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7731), 3, + ACTIONS(7705), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147967] = 4, - ACTIONS(6470), 1, + [147689] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4616), 1, + STATE(4911), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7745), 3, + ACTIONS(7701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147983] = 6, - ACTIONS(2570), 1, + [147705] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6486), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(3364), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(3973), 1, + STATE(5324), 1, sym__call_signature, - STATE(5316), 1, + STATE(5328), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148003] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2556), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148015] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1755), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148027] = 2, + [147725] = 6, + ACTIONS(218), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1534), 1, + anon_sym_LBRACE, + ACTIONS(7191), 1, + anon_sym_extends, + STATE(869), 1, + sym_object_type, + STATE(4688), 1, + sym_extends_type_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1733), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148039] = 2, + [147745] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4912), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1821), 5, + ACTIONS(7701), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148051] = 2, + [147761] = 3, + ACTIONS(4826), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2944), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148063] = 4, - ACTIONS(6470), 1, + ACTIONS(5337), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [147775] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5121), 1, + STATE(4913), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7715), 3, + ACTIONS(7701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148079] = 4, - ACTIONS(6470), 1, + [147791] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5091), 1, + STATE(4914), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7731), 3, + ACTIONS(7701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148095] = 4, - ACTIONS(6470), 1, + [147807] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4553), 1, + STATE(4915), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7715), 3, + ACTIONS(7701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148111] = 4, - ACTIONS(6470), 1, + [147823] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5092), 1, + STATE(4916), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7731), 3, + ACTIONS(7701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148127] = 4, - ACTIONS(7749), 1, + [147839] = 4, + ACTIONS(7709), 1, anon_sym_in, - ACTIONS(7751), 1, + ACTIONS(7711), 1, anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7747), 3, + ACTIONS(7707), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148143] = 4, - ACTIONS(7753), 1, + [147855] = 4, + ACTIONS(7713), 1, anon_sym_in, - ACTIONS(7755), 1, + ACTIONS(7715), 1, anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7747), 3, + ACTIONS(7707), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148159] = 6, - ACTIONS(2570), 1, + [147871] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6486), 1, + ACTIONS(6509), 1, anon_sym_LPAREN, - STATE(3364), 1, + STATE(3330), 1, sym_formal_parameters, - STATE(4017), 1, + STATE(4053), 1, sym__call_signature, - STATE(5316), 1, + STATE(5249), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148179] = 4, - ACTIONS(6470), 1, + [147891] = 5, + ACTIONS(7512), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7717), 1, + anon_sym_BQUOTE, + ACTIONS(7719), 1, + sym__template_chars, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4108), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [147909] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4870), 1, + STATE(4918), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7715), 3, + ACTIONS(7701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148195] = 2, + [147925] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5492), 5, + ACTIONS(5469), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [148207] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2800), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148219] = 2, + [147937] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4919), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2808), 5, + ACTIONS(7701), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148231] = 6, - ACTIONS(99), 1, + [147953] = 6, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(7757), 1, + ACTIONS(7721), 1, anon_sym_class, - ACTIONS(7759), 1, + ACTIONS(7723), 1, anon_sym_abstract, - STATE(1285), 1, - sym_decorator, - STATE(3855), 1, + STATE(1269), 1, aux_sym_export_statement_repeat1, + STATE(1344), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [147973] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148251] = 6, - ACTIONS(2570), 1, + ACTIONS(5473), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [147985] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6486), 1, + ACTIONS(6509), 1, anon_sym_LPAREN, - STATE(3364), 1, + STATE(3330), 1, sym_formal_parameters, - STATE(4024), 1, + STATE(4062), 1, sym__call_signature, - STATE(5316), 1, + STATE(5249), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148271] = 6, - ACTIONS(2570), 1, + [148005] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6476), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(3893), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(5354), 1, + STATE(5328), 1, sym_type_parameters, - STATE(5368), 1, + STATE(5377), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148291] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(4879), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7528), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [148307] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5496), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [148319] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(4888), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7528), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [148335] = 2, + [148025] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5496), 5, + ACTIONS(5473), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [148347] = 2, + [148037] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5496), 5, + ACTIONS(5473), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [148359] = 6, - ACTIONS(2570), 1, + [148049] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6476), 1, + ACTIONS(6509), 1, anon_sym_LPAREN, - STATE(3893), 1, + STATE(3330), 1, sym_formal_parameters, - STATE(5354), 1, - sym_type_parameters, - STATE(5426), 1, + STATE(3885), 1, sym__call_signature, + STATE(5249), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148379] = 6, - ACTIONS(2570), 1, + [148069] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6486), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(3364), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(3862), 1, - sym__call_signature, - STATE(5316), 1, + STATE(5328), 1, sym_type_parameters, + STATE(5410), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148399] = 4, - ACTIONS(6470), 1, + [148089] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4662), 1, + STATE(4920), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7715), 3, + ACTIONS(7701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148415] = 4, - ACTIONS(6470), 1, + [148105] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4882), 1, + STATE(4921), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7715), 3, + ACTIONS(7701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148431] = 4, - ACTIONS(6470), 1, + [148121] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4933), 1, + STATE(4922), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [148447] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2836), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148459] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2840), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148471] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2852), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148483] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2876), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148495] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2920), 5, + ACTIONS(7701), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148507] = 4, - ACTIONS(6470), 1, + [148137] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5095), 1, + STATE(4923), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7731), 3, + ACTIONS(7701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148523] = 4, - ACTIONS(6470), 1, + [148153] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5027), 1, + STATE(5017), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7761), 3, + ACTIONS(7725), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148539] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2892), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148551] = 4, - ACTIONS(6470), 1, + [148169] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5097), 1, + STATE(5049), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7731), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [148567] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2688), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148579] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1849), 5, + ACTIONS(7727), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148591] = 4, - ACTIONS(6470), 1, + [148185] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4979), 1, + STATE(4928), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7705), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148607] = 4, - ACTIONS(6470), 1, + [148201] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5011), 1, + STATE(4929), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148623] = 4, - ACTIONS(6470), 1, + [148217] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5086), 1, + STATE(4931), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7763), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [148639] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2740), 5, + ACTIONS(7701), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148651] = 4, - ACTIONS(6470), 1, + [148233] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5016), 1, + STATE(4932), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148667] = 4, - ACTIONS(6470), 1, + [148249] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4709), 1, + STATE(4933), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7715), 3, + ACTIONS(7701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148683] = 4, - ACTIONS(6470), 1, + [148265] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4723), 1, + STATE(5065), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [148699] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2812), 5, + ACTIONS(7729), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148711] = 2, + [148281] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4934), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2828), 5, + ACTIONS(7701), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148723] = 2, + [148297] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4936), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2832), 5, + ACTIONS(7701), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148735] = 2, + [148313] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4937), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2856), 5, + ACTIONS(7701), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148747] = 4, - ACTIONS(6470), 1, + [148329] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5098), 1, + STATE(4938), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7731), 3, + ACTIONS(7701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148763] = 4, - ACTIONS(6470), 1, + [148345] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5101), 1, + STATE(4517), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, @@ -261697,1089 +259512,1053 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148779] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(4810), 1, - sym__initializer, + [148361] = 5, + ACTIONS(1550), 1, + anon_sym_DQUOTE, + ACTIONS(1552), 1, + anon_sym_SQUOTE, + ACTIONS(7733), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [148795] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(4532), 1, - sym__initializer, + STATE(5385), 2, + sym__module_export_name, + sym_string, + [148379] = 6, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6509), 1, + anon_sym_LPAREN, + STATE(3330), 1, + sym_formal_parameters, + STATE(4191), 1, + sym__call_signature, + STATE(5249), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7765), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [148811] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(4815), 1, - sym__initializer, + [148399] = 6, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(3806), 1, + sym_formal_parameters, + STATE(5328), 1, + sym_type_parameters, + STATE(5399), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7530), 3, - sym__automatic_semicolon, - anon_sym_COMMA, + [148419] = 6, + ACTIONS(7065), 1, + anon_sym_LBRACE, + ACTIONS(7540), 1, anon_sym_SEMI, - [148827] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(5108), 1, - sym__initializer, + ACTIONS(7542), 1, + sym__automatic_semicolon, + ACTIONS(7544), 1, + sym__function_signature_automatic_semicolon, + STATE(786), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7739), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [148843] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(5111), 1, - sym__initializer, + [148439] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7731), 3, + ACTIONS(7125), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [148859] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(4831), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [148451] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7715), 3, + ACTIONS(7163), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [148875] = 6, - ACTIONS(2570), 1, + anon_sym_PIPE_RBRACE, + [148463] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - STATE(3317), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4288), 1, + STATE(4271), 1, sym__call_signature, - STATE(5224), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148895] = 2, + [148483] = 5, + ACTIONS(6698), 1, + anon_sym_AMP, + ACTIONS(6702), 1, + anon_sym_extends, + ACTIONS(7557), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7178), 5, + ACTIONS(7735), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148907] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(5113), 1, - sym__initializer, + [148501] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7731), 3, + ACTIONS(7169), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [148923] = 2, + anon_sym_PIPE_RBRACE, + [148513] = 6, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + STATE(3315), 1, + sym_formal_parameters, + STATE(4294), 1, + sym__call_signature, + STATE(5233), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [148533] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7767), 5, + ACTIONS(7123), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148935] = 6, - ACTIONS(2570), 1, + [148545] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6486), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - STATE(3364), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(4030), 1, + STATE(4023), 1, sym__call_signature, - STATE(5316), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148955] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(5122), 1, - sym__initializer, + [148565] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7731), 3, + ACTIONS(7737), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [148971] = 4, - ACTIONS(7403), 1, - anon_sym_COLON, - ACTIONS(7769), 1, - anon_sym_EQ_GT, + anon_sym_PIPE_RBRACE, + [148577] = 6, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(3806), 1, + sym_formal_parameters, + STATE(5328), 1, + sym_type_parameters, + STATE(5432), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5192), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [148987] = 2, + [148597] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7178), 5, + ACTIONS(7123), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148999] = 2, + [148609] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7772), 5, + ACTIONS(7739), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149011] = 4, - ACTIONS(6470), 1, + [148621] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5123), 1, + STATE(4940), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7731), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [149027] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7381), 5, + ACTIONS(7741), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149039] = 4, - ACTIONS(6470), 1, + [148637] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5136), 1, + STATE(4941), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7715), 3, + ACTIONS(7741), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149055] = 2, + [148653] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7180), 5, + ACTIONS(7410), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149067] = 2, + [148665] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7774), 5, + ACTIONS(7133), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149079] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(4867), 1, - sym__initializer, + [148677] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7743), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149095] = 4, - ACTIONS(6470), 1, + anon_sym_PIPE_RBRACE, + [148689] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4549), 1, + STATE(4942), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7741), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149111] = 4, - ACTIONS(6470), 1, + [148705] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4755), 1, + STATE(4943), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7715), 3, + ACTIONS(7741), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149127] = 2, + [148721] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7194), 5, + ACTIONS(1852), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149139] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(5129), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7731), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [149155] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(5130), 1, - sym__initializer, + [148733] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7731), 3, + ACTIONS(7183), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149171] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(4868), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [148745] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7715), 3, + ACTIONS(7131), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149187] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(4969), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [148757] = 6, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(3806), 1, + sym_formal_parameters, + STATE(5328), 1, + sym_type_parameters, + STATE(5448), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7715), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [149203] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(5026), 1, - sym__initializer, + [148777] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7715), 3, + ACTIONS(7125), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149219] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(5042), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [148789] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(1730), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149235] = 4, - ACTIONS(6470), 1, + anon_sym_PIPE_RBRACE, + [148801] = 3, + ACTIONS(7745), 1, anon_sym_EQ, - STATE(5050), 1, - sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, - sym__automatic_semicolon, + ACTIONS(3586), 4, anon_sym_COMMA, - anon_sym_SEMI, - [149251] = 5, - ACTIONS(7544), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7563), 1, - sym__template_chars, - ACTIONS(7776), 1, - anon_sym_BQUOTE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4115), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [149269] = 4, - ACTIONS(7403), 1, + anon_sym_RBRACE, anon_sym_COLON, - ACTIONS(7778), 1, + anon_sym_RBRACK, + [148815] = 4, + ACTIONS(7268), 1, + anon_sym_COLON, + ACTIONS(7747), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5475), 3, + STATE(5199), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [149285] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(4621), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7781), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [149301] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(4550), 1, - sym__initializer, + [148831] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7715), 3, + ACTIONS(7750), 5, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [149317] = 3, - ACTIONS(7783), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3614), 4, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [149331] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(5133), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7731), 3, - sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [149347] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7785), 5, - anon_sym_EQ, - anon_sym_LBRACE, + anon_sym_PIPE_RBRACE, + [148843] = 6, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [149359] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(4559), 1, - sym__initializer, + STATE(3806), 1, + sym_formal_parameters, + STATE(5328), 1, + sym_type_parameters, + STATE(5450), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7715), 3, + [148863] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1750), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149375] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(4561), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [148875] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7752), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149391] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(4568), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [148887] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7131), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149407] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(4570), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [148899] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7754), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149423] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(4571), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [148911] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7756), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149439] = 4, - ACTIONS(6470), 1, + anon_sym_PIPE_RBRACE, + [148923] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5417), 5, anon_sym_EQ, - STATE(5134), 1, - sym__initializer, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [148935] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7731), 3, + ACTIONS(2893), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149455] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(4588), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [148947] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7715), 3, + ACTIONS(1730), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [148959] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7758), 5, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_extends, + anon_sym_implements, + [148971] = 5, + ACTIONS(7760), 1, anon_sym_SEMI, - [149471] = 6, - ACTIONS(2570), 1, + ACTIONS(7762), 1, + sym__automatic_semicolon, + STATE(5398), 1, + sym_import_attribute, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7645), 2, + anon_sym_with, + anon_sym_assert, + [148989] = 5, + ACTIONS(7764), 1, + sym_identifier, + ACTIONS(7766), 1, + anon_sym_LPAREN, + STATE(1246), 1, + sym_decorator_member_expression, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1317), 2, + sym_decorator_call_expression, + sym_decorator_parenthesized_expression, + [149007] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6476), 1, + ACTIONS(3281), 1, anon_sym_LPAREN, - STATE(3893), 1, + STATE(3315), 1, sym_formal_parameters, - STATE(5233), 1, + STATE(5054), 1, sym__call_signature, - STATE(5354), 1, + STATE(5233), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149491] = 6, - ACTIONS(2570), 1, + [149027] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6476), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(3893), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(5217), 1, + STATE(5261), 1, sym__call_signature, - STATE(5354), 1, + STATE(5328), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149511] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(4595), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7528), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [149527] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(4601), 1, - sym__initializer, + [149047] = 6, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(3806), 1, + sym_formal_parameters, + STATE(5328), 1, + sym_type_parameters, + STATE(5425), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [149543] = 2, + [149067] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7787), 5, + ACTIONS(7083), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149555] = 4, - ACTIONS(6470), 1, + [149079] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4606), 1, + STATE(5064), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7524), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149571] = 4, - ACTIONS(6470), 1, + [149095] = 5, + ACTIONS(7768), 1, + anon_sym_SEMI, + ACTIONS(7770), 1, + sym__automatic_semicolon, + STATE(5460), 1, + sym_import_attribute, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7645), 2, + anon_sym_with, + anon_sym_assert, + [149113] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4613), 1, + STATE(5066), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7526), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149587] = 4, - ACTIONS(1887), 1, - anon_sym_DOT, - ACTIONS(4285), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4287), 3, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_LBRACE_PIPE, - [149603] = 6, - ACTIONS(2570), 1, + [149129] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6476), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(3893), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(5299), 1, + STATE(5288), 1, sym__call_signature, - STATE(5354), 1, + STATE(5328), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149623] = 4, - ACTIONS(1891), 1, - anon_sym_DOT, - ACTIONS(4285), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4287), 3, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_LBRACE_PIPE, - [149639] = 2, + [149149] = 4, + STATE(5331), 1, + sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7202), 5, + ACTIONS(7645), 2, + anon_sym_with, + anon_sym_assert, + ACTIONS(7772), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149651] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - STATE(3317), 1, - sym_formal_parameters, - STATE(4096), 1, - sym__call_signature, - STATE(5224), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [149671] = 2, + [149165] = 4, + STATE(5334), 1, + sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7204), 5, + ACTIONS(7645), 2, + anon_sym_with, + anon_sym_assert, + ACTIONS(7774), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149683] = 6, - ACTIONS(99), 1, + [149181] = 6, + ACTIONS(97), 1, anon_sym_AT, - ACTIONS(7759), 1, + ACTIONS(7284), 1, anon_sym_abstract, - ACTIONS(7789), 1, + ACTIONS(7776), 1, anon_sym_class, - STATE(1285), 1, - sym_decorator, - STATE(3855), 1, + STATE(1269), 1, aux_sym_export_statement_repeat1, + STATE(1344), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149703] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7202), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149715] = 2, + [149201] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(5067), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7791), 5, + ACTIONS(7526), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149727] = 2, + [149217] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5548), 5, + ACTIONS(5535), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [149739] = 6, - ACTIONS(2570), 1, + [149229] = 6, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(7723), 1, + anon_sym_abstract, + ACTIONS(7778), 1, + anon_sym_class, + STATE(1269), 1, + aux_sym_export_statement_repeat1, + STATE(1344), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [149249] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(3317), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(4627), 1, + STATE(5217), 1, sym__call_signature, - STATE(5224), 1, + STATE(5328), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149759] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(4672), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7536), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [149775] = 5, - ACTIONS(7544), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7793), 1, - anon_sym_BQUOTE, - ACTIONS(7795), 1, - sym__template_chars, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4296), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [149793] = 6, - ACTIONS(7298), 1, + [149269] = 6, + ACTIONS(7256), 1, anon_sym_AMP, - ACTIONS(7300), 1, + ACTIONS(7258), 1, anon_sym_PIPE, - ACTIONS(7302), 1, + ACTIONS(7260), 1, anon_sym_extends, - ACTIONS(7797), 1, + ACTIONS(7780), 1, anon_sym_as, - ACTIONS(7799), 1, + ACTIONS(7782), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149813] = 4, - STATE(5403), 1, - sym_import_attribute, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7567), 2, - anon_sym_with, - anon_sym_assert, - ACTIONS(7801), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [149829] = 4, - STATE(5446), 1, - sym_import_attribute, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7567), 2, - anon_sym_with, - anon_sym_assert, - ACTIONS(7803), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [149845] = 2, + [149289] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7805), 5, + ACTIONS(7784), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149857] = 6, - ACTIONS(2570), 1, + [149301] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6486), 1, + ACTIONS(6509), 1, anon_sym_LPAREN, - STATE(3364), 1, + STATE(3330), 1, sym_formal_parameters, - STATE(3828), 1, + STATE(3820), 1, sym__call_signature, - STATE(5316), 1, + STATE(5249), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149877] = 2, + [149321] = 3, + ACTIONS(7786), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7204), 5, - sym__automatic_semicolon, + ACTIONS(3622), 4, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149889] = 2, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [149335] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7210), 5, + ACTIONS(2731), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149901] = 2, + [149347] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7807), 5, + ACTIONS(2763), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149913] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - STATE(3317), 1, - sym_formal_parameters, - STATE(4156), 1, - sym__call_signature, - STATE(5224), 1, - sym_type_parameters, + [149359] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149933] = 2, + ACTIONS(5121), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [149371] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4625), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7212), 5, + ACTIONS(7789), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149945] = 4, - ACTIONS(6470), 1, + [149387] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4875), 1, + STATE(4669), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7809), 3, + ACTIONS(7791), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149961] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(4881), 1, - sym__initializer, + [149403] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7811), 3, + ACTIONS(7793), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149415] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7795), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149977] = 4, - ACTIONS(7403), 1, + anon_sym_PIPE_RBRACE, + [149427] = 4, + ACTIONS(7268), 1, anon_sym_COLON, - ACTIONS(7813), 1, + ACTIONS(7797), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5192), 3, + STATE(5306), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [149993] = 6, - ACTIONS(2570), 1, + [149443] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7800), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149455] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6476), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(3893), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(5172), 1, - sym__call_signature, - STATE(5354), 1, + STATE(5328), 1, sym_type_parameters, + STATE(5390), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150013] = 6, - ACTIONS(2570), 1, + [149475] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6476), 1, + ACTIONS(6509), 1, anon_sym_LPAREN, - STATE(3893), 1, + STATE(3330), 1, sym_formal_parameters, - STATE(5354), 1, - sym_type_parameters, - STATE(5422), 1, + STATE(3796), 1, sym__call_signature, + STATE(5249), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150033] = 4, - ACTIONS(7403), 1, + [149495] = 4, + ACTIONS(7268), 1, anon_sym_COLON, - ACTIONS(7816), 1, + ACTIONS(7802), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5192), 3, + STATE(5306), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [150049] = 4, - ACTIONS(7403), 1, + [149511] = 4, + ACTIONS(7268), 1, anon_sym_COLON, - ACTIONS(7819), 1, + ACTIONS(7805), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5475), 3, + STATE(5199), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [150065] = 6, - ACTIONS(2570), 1, + [149527] = 6, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6476), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(3893), 1, + STATE(3806), 1, sym_formal_parameters, - STATE(5354), 1, + STATE(5328), 1, sym_type_parameters, - STATE(5436), 1, + STATE(5405), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150085] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6486), 1, - anon_sym_LPAREN, - STATE(3364), 1, - sym_formal_parameters, - STATE(3765), 1, - sym__call_signature, - STATE(5316), 1, - sym_type_parameters, + [149547] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7375), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [149559] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(5073), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150105] = 4, - ACTIONS(7403), 1, + ACTIONS(7524), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149575] = 4, + ACTIONS(7268), 1, anon_sym_COLON, - ACTIONS(7822), 1, + ACTIONS(7808), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5475), 3, + STATE(5199), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [150121] = 2, + [149591] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7825), 5, + ACTIONS(2953), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [150133] = 2, + [149603] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4957), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7811), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149619] = 6, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + STATE(3315), 1, + sym_formal_parameters, + STATE(4963), 1, + sym__call_signature, + STATE(5233), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [149639] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7827), 5, + ACTIONS(2649), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [150145] = 4, - ACTIONS(6470), 1, + [149651] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4639), 1, + STATE(5079), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7829), 3, + ACTIONS(7524), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150161] = 4, - ACTIONS(6470), 1, + [149667] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4573), 1, + STATE(5081), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7831), 3, + ACTIONS(7526), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150177] = 4, - ACTIONS(6470), 1, + [149683] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4647), 1, + STATE(4988), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7833), 3, + ACTIONS(7813), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150193] = 4, - ACTIONS(6470), 1, + [149699] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4787), 1, + STATE(5083), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7831), 3, + ACTIONS(7526), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150209] = 4, - ACTIONS(6470), 1, + [149715] = 6, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + STATE(3315), 1, + sym_formal_parameters, + STATE(5024), 1, + sym__call_signature, + STATE(5233), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [149735] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4670), 1, + STATE(5025), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, @@ -262788,10 +260567,10 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150225] = 4, - ACTIONS(6470), 1, + [149751] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4680), 1, + STATE(5034), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, @@ -262800,70 +260579,96 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150241] = 2, + [149767] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(5102), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7815), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149783] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7835), 5, + ACTIONS(5130), 5, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [150253] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - STATE(3317), 1, - sym_formal_parameters, - STATE(4999), 1, - sym__call_signature, - STATE(5224), 1, - sym_type_parameters, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [149795] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150273] = 4, - ACTIONS(6470), 1, + ACTIONS(4859), 5, anon_sym_EQ, - STATE(4685), 1, - sym__initializer, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [149807] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7530), 3, + ACTIONS(4850), 5, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [149819] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2671), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149831] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2695), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [150289] = 4, - ACTIONS(6470), 1, + anon_sym_PIPE_RBRACE, + [149843] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4686), 1, + STATE(5043), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7530), 3, + ACTIONS(7522), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150305] = 4, - ACTIONS(6470), 1, + [149859] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4702), 1, + STATE(5050), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7548), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150321] = 4, - ACTIONS(6470), 1, + [149875] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4704), 1, + STATE(5068), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, @@ -262872,10 +260677,10 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150337] = 4, - ACTIONS(6470), 1, + [149891] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4711), 1, + STATE(5069), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, @@ -262884,10 +260689,24 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150353] = 4, - ACTIONS(6470), 1, + [149907] = 6, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6509), 1, + anon_sym_LPAREN, + STATE(3330), 1, + sym_formal_parameters, + STATE(4039), 1, + sym__call_signature, + STATE(5249), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [149927] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4713), 1, + STATE(5086), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, @@ -262896,34 +260715,86 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150369] = 4, - ACTIONS(6470), 1, + [149943] = 4, + ACTIONS(1888), 1, + anon_sym_DOT, + ACTIONS(4384), 1, + anon_sym_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4386), 3, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_LBRACE_PIPE, + [149959] = 4, + ACTIONS(1892), 1, + anon_sym_DOT, + ACTIONS(4384), 1, + anon_sym_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4386), 3, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_LBRACE_PIPE, + [149975] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4714), 1, + STATE(5091), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7530), 3, + ACTIONS(7524), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150385] = 4, - ACTIONS(6470), 1, + [149991] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4715), 1, + STATE(5117), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7530), 3, + ACTIONS(7522), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150401] = 4, - ACTIONS(6470), 1, + [150007] = 6, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(3806), 1, + sym_formal_parameters, + STATE(5276), 1, + sym__call_signature, + STATE(5328), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [150027] = 6, + ACTIONS(1678), 1, + anon_sym_LBRACE, + ACTIONS(7540), 1, + anon_sym_SEMI, + ACTIONS(7542), 1, + sym__automatic_semicolon, + ACTIONS(7544), 1, + sym__function_signature_automatic_semicolon, + STATE(226), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [150047] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4716), 1, + STATE(5118), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, @@ -262932,22 +260803,22 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150417] = 4, - ACTIONS(6470), 1, + [150063] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4722), 1, + STATE(5002), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7548), 3, + ACTIONS(7614), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150433] = 4, - ACTIONS(6470), 1, + [150079] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4725), 1, + STATE(5119), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, @@ -262956,120 +260827,144 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150449] = 4, - ACTIONS(6470), 1, + [150095] = 6, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(3806), 1, + sym_formal_parameters, + STATE(5328), 1, + sym_type_parameters, + STATE(5346), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [150115] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4520), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7522), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150131] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4726), 1, + STATE(5057), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7530), 3, + ACTIONS(7614), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150465] = 4, - ACTIONS(6470), 1, + [150147] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4596), 1, + STATE(4527), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7565), 3, + ACTIONS(7522), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150481] = 4, - ACTIONS(6470), 1, + [150163] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4788), 1, + STATE(4529), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7831), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150497] = 4, - ACTIONS(6470), 1, + [150179] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4739), 1, + STATE(4530), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7565), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150513] = 4, - ACTIONS(6470), 1, + [150195] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4747), 1, + STATE(5099), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7548), 3, + ACTIONS(7524), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150529] = 4, - ACTIONS(6470), 1, + [150211] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4712), 1, + STATE(4754), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7831), 3, + ACTIONS(7614), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150545] = 6, - ACTIONS(219), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1541), 1, - anon_sym_LBRACE, - ACTIONS(7096), 1, - anon_sym_extends, - STATE(867), 1, - sym_object_type, - STATE(4689), 1, - sym_extends_type_clause, + [150227] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4546), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150565] = 4, - ACTIONS(6470), 1, + ACTIONS(7522), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150243] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4577), 1, + STATE(4547), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7565), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150581] = 4, - ACTIONS(6470), 1, + [150259] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4757), 1, + STATE(4548), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7548), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150597] = 4, - ACTIONS(6470), 1, + [150275] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4758), 1, + STATE(4549), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, @@ -263078,1751 +260973,1787 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150613] = 4, - ACTIONS(6470), 1, + [150291] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2759), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [150303] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4759), 1, + STATE(4641), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7530), 3, + ACTIONS(7614), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150629] = 4, - ACTIONS(6360), 1, + [150319] = 4, + ACTIONS(6337), 1, anon_sym_DOT, - ACTIONS(7837), 1, + ACTIONS(7817), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6358), 3, + ACTIONS(6335), 3, anon_sym_LPAREN, anon_sym_QMARK_DOT, anon_sym_LT, - [150645] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(4781), 1, - sym__initializer, + [150335] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7548), 3, + ACTIONS(2821), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [150661] = 4, - ACTIONS(6470), 1, - anon_sym_EQ, - STATE(4735), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [150347] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7565), 3, + ACTIONS(2849), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [150677] = 4, - ACTIONS(6470), 1, + anon_sym_PIPE_RBRACE, + [150359] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(4767), 1, + STATE(4550), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7565), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150693] = 4, - ACTIONS(6470), 1, + [150375] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - STATE(5062), 1, + STATE(4778), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7715), 3, + ACTIONS(7614), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150709] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7839), 1, - anon_sym_DQUOTE, - STATE(4493), 1, - aux_sym_string_repeat1, - ACTIONS(7841), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [150726] = 5, - ACTIONS(1903), 1, - anon_sym_COMMA, - ACTIONS(7843), 1, + [150391] = 4, + ACTIONS(6447), 1, anon_sym_EQ, - ACTIONS(7845), 1, - anon_sym_RBRACK, - STATE(4580), 1, - aux_sym_array_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [150743] = 5, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6476), 1, - anon_sym_LPAREN, - STATE(5267), 1, - sym_type_parameters, - STATE(5729), 1, - sym_formal_parameters, + STATE(4782), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150760] = 4, - ACTIONS(7847), 1, + ACTIONS(7516), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(4521), 1, - aux_sym_variable_declaration_repeat1, + anon_sym_SEMI, + [150407] = 4, + ACTIONS(6447), 1, + anon_sym_EQ, + STATE(4885), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7849), 2, + ACTIONS(7620), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [150775] = 5, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7851), 1, - anon_sym_export, - STATE(1285), 1, - sym_decorator, - STATE(3855), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [150792] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7853), 1, - anon_sym_DQUOTE, - STATE(4394), 1, - aux_sym_string_repeat1, - ACTIONS(7855), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [150809] = 5, + [150423] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7853), 1, + ACTIONS(7819), 1, anon_sym_SQUOTE, - STATE(4396), 1, + STATE(4466), 1, aux_sym_string_repeat2, - ACTIONS(7857), 2, + ACTIONS(7821), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [150826] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7859), 1, - anon_sym_DQUOTE, - STATE(4493), 1, - aux_sym_string_repeat1, - ACTIONS(7841), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [150843] = 5, - ACTIONS(6604), 1, - anon_sym_AMP, - ACTIONS(6606), 1, - anon_sym_PIPE, - ACTIONS(6608), 1, - anon_sym_extends, - ACTIONS(7861), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [150860] = 5, + [150440] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7859), 1, + ACTIONS(7823), 1, anon_sym_SQUOTE, - STATE(4497), 1, + STATE(4495), 1, aux_sym_string_repeat2, - ACTIONS(7863), 2, + ACTIONS(7825), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [150877] = 5, - ACTIONS(1903), 1, - anon_sym_COMMA, - ACTIONS(7843), 1, - anon_sym_EQ, - ACTIONS(7865), 1, - anon_sym_RBRACK, - STATE(5006), 1, - aux_sym_array_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [150894] = 5, - ACTIONS(3519), 1, + [150457] = 5, + ACTIONS(3514), 1, anon_sym_LPAREN, - ACTIONS(6362), 1, + ACTIONS(3576), 1, anon_sym_LT, - STATE(3146), 1, + STATE(2917), 1, sym_arguments, - STATE(3270), 1, + STATE(3015), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150911] = 5, - ACTIONS(6604), 1, - anon_sym_AMP, - ACTIONS(6606), 1, - anon_sym_PIPE, - ACTIONS(6608), 1, - anon_sym_extends, - ACTIONS(7867), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [150928] = 4, - ACTIONS(7144), 1, + [150474] = 4, + ACTIONS(7145), 1, anon_sym_EQ, - STATE(5365), 1, + STATE(5319), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7869), 2, + ACTIONS(7827), 2, anon_sym_COMMA, anon_sym_RPAREN, - [150943] = 3, - ACTIONS(6153), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3819), 3, + [150489] = 5, + ACTIONS(6680), 1, anon_sym_LPAREN, + ACTIONS(6682), 1, anon_sym_LT, - anon_sym_QMARK, - [150956] = 3, - ACTIONS(7871), 1, - anon_sym_EQ_GT, + STATE(2917), 1, + sym_arguments, + STATE(3015), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3819), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - [150969] = 3, - ACTIONS(7703), 1, - anon_sym_RBRACE, + [150506] = 4, + ACTIONS(7829), 1, + anon_sym_COMMA, + STATE(4458), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4201), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [150982] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7873), 1, - anon_sym_SQUOTE, - STATE(4497), 1, - aux_sym_string_repeat2, - ACTIONS(7863), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [150999] = 5, - ACTIONS(6604), 1, + ACTIONS(7831), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [150521] = 5, + ACTIONS(6605), 1, anon_sym_AMP, - ACTIONS(6606), 1, + ACTIONS(6607), 1, anon_sym_PIPE, - ACTIONS(6608), 1, + ACTIONS(6609), 1, anon_sym_extends, - ACTIONS(7875), 1, - anon_sym_COLON, + ACTIONS(7833), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151016] = 5, - ACTIONS(6604), 1, + [150538] = 5, + ACTIONS(6605), 1, anon_sym_AMP, - ACTIONS(6606), 1, + ACTIONS(6607), 1, anon_sym_PIPE, - ACTIONS(6608), 1, + ACTIONS(6609), 1, anon_sym_extends, - ACTIONS(7877), 1, + ACTIONS(7835), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151033] = 4, - ACTIONS(7879), 1, - anon_sym_from, - STATE(5319), 1, - sym__from_clause, + [150555] = 5, + ACTIONS(4010), 1, + anon_sym_LPAREN, + ACTIONS(7837), 1, + anon_sym_LT, + STATE(1602), 1, + sym_arguments, + STATE(1603), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5119), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151048] = 4, - ACTIONS(6350), 1, - anon_sym_STAR, - ACTIONS(6354), 1, - anon_sym_LBRACE, + [150572] = 3, + ACTIONS(6337), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5482), 2, - sym_namespace_import, - sym_named_imports, - [151063] = 5, - ACTIONS(3535), 1, + ACTIONS(6335), 3, anon_sym_LPAREN, - ACTIONS(6063), 1, + anon_sym_QMARK_DOT, anon_sym_LT, - STATE(2936), 1, - sym_arguments, - STATE(3032), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, + [150585] = 5, + ACTIONS(3), 1, sym_comment, - [151080] = 5, - ACTIONS(6604), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7839), 1, + anon_sym_DQUOTE, + STATE(4394), 1, + aux_sym_string_repeat1, + ACTIONS(7841), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [150602] = 5, + ACTIONS(6605), 1, anon_sym_AMP, - ACTIONS(6606), 1, + ACTIONS(6607), 1, anon_sym_PIPE, - ACTIONS(6608), 1, + ACTIONS(6609), 1, anon_sym_extends, - ACTIONS(7881), 1, + ACTIONS(7843), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151097] = 4, - ACTIONS(7847), 1, - anon_sym_COMMA, - STATE(4521), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7883), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151112] = 5, + [150619] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7885), 1, + ACTIONS(7839), 1, anon_sym_SQUOTE, - STATE(4479), 1, + STATE(4395), 1, aux_sym_string_repeat2, - ACTIONS(7887), 2, + ACTIONS(7845), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [151129] = 5, + [150636] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7873), 1, + ACTIONS(7847), 1, anon_sym_DQUOTE, - STATE(4493), 1, + STATE(4476), 1, aux_sym_string_repeat1, - ACTIONS(7841), 2, + ACTIONS(7849), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [150653] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7851), 1, + anon_sym_DQUOTE, + STATE(4494), 1, + aux_sym_string_repeat1, + ACTIONS(7853), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [151146] = 2, + [150670] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7851), 1, + anon_sym_SQUOTE, + STATE(4495), 1, + aux_sym_string_repeat2, + ACTIONS(7825), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [150687] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7847), 1, + anon_sym_SQUOTE, + STATE(4478), 1, + aux_sym_string_repeat2, + ACTIONS(7855), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [150704] = 5, + ACTIONS(6605), 1, + anon_sym_AMP, + ACTIONS(6607), 1, + anon_sym_PIPE, + ACTIONS(6609), 1, + anon_sym_extends, + ACTIONS(7857), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7889), 4, - sym__automatic_semicolon, - anon_sym_with, - anon_sym_assert, - anon_sym_SEMI, - [151157] = 5, - ACTIONS(7891), 1, + [150721] = 5, + ACTIONS(7859), 1, sym_identifier, - STATE(3950), 1, + STATE(4143), 1, sym_nested_type_identifier, - STATE(4615), 1, + STATE(4683), 1, sym_generic_type, - STATE(5639), 1, + STATE(5633), 1, sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151174] = 5, - ACTIONS(7164), 1, + [150738] = 5, + ACTIONS(7139), 1, anon_sym_COMMA, - ACTIONS(7893), 1, + ACTIONS(7861), 1, anon_sym_LBRACE, - ACTIONS(7895), 1, + ACTIONS(7863), 1, anon_sym_LBRACE_PIPE, - STATE(4450), 1, + STATE(4485), 1, aux_sym_extends_type_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151191] = 5, - ACTIONS(7164), 1, + [150755] = 5, + ACTIONS(7139), 1, anon_sym_COMMA, - ACTIONS(7897), 1, + ACTIONS(7865), 1, anon_sym_LBRACE, - ACTIONS(7899), 1, + ACTIONS(7867), 1, anon_sym_LBRACE_PIPE, - STATE(4450), 1, + STATE(4485), 1, aux_sym_extends_type_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151208] = 5, - ACTIONS(7164), 1, + [150772] = 5, + ACTIONS(7139), 1, anon_sym_COMMA, - ACTIONS(7897), 1, + ACTIONS(7865), 1, anon_sym_LBRACE, - ACTIONS(7899), 1, + ACTIONS(7867), 1, anon_sym_LBRACE_PIPE, - STATE(4450), 1, + STATE(4485), 1, aux_sym_extends_type_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151225] = 3, - ACTIONS(7901), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_html_comment, + [150789] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(6358), 3, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_LT, - [151238] = 4, - ACTIONS(7144), 1, - anon_sym_EQ, - STATE(5166), 1, - sym__initializer, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, - sym_comment, - ACTIONS(7903), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [151253] = 5, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7905), 1, - anon_sym_class, - STATE(1285), 1, - sym_decorator, - STATE(3855), 1, - aux_sym_export_statement_repeat1, + ACTIONS(7869), 1, + anon_sym_DQUOTE, + STATE(4494), 1, + aux_sym_string_repeat1, + ACTIONS(7853), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [150806] = 3, + ACTIONS(7661), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151270] = 5, - ACTIONS(6604), 1, + ACTIONS(4172), 3, anon_sym_AMP, - ACTIONS(6606), 1, anon_sym_PIPE, - ACTIONS(6608), 1, anon_sym_extends, - ACTIONS(7907), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, + [150819] = 5, + ACTIONS(3), 1, sym_comment, - [151287] = 5, - ACTIONS(7184), 1, - anon_sym_AMP, - ACTIONS(7186), 1, - anon_sym_PIPE, - ACTIONS(7188), 1, - anon_sym_extends, - ACTIONS(7909), 1, - anon_sym_QMARK, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, - sym_comment, - [151304] = 5, - ACTIONS(6604), 1, + ACTIONS(7871), 1, + anon_sym_DQUOTE, + STATE(4412), 1, + aux_sym_string_repeat1, + ACTIONS(7873), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [150836] = 5, + ACTIONS(6605), 1, anon_sym_AMP, - ACTIONS(6606), 1, + ACTIONS(6607), 1, anon_sym_PIPE, - ACTIONS(6608), 1, + ACTIONS(6609), 1, anon_sym_extends, - ACTIONS(7911), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [151321] = 4, - ACTIONS(7847), 1, - anon_sym_COMMA, - STATE(4521), 1, - aux_sym_variable_declaration_repeat1, + ACTIONS(7875), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7913), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151336] = 4, - ACTIONS(7847), 1, + [150853] = 5, + ACTIONS(1910), 1, anon_sym_COMMA, - STATE(4521), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7915), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151351] = 4, - ACTIONS(6622), 1, + ACTIONS(7877), 1, anon_sym_EQ, - STATE(5229), 1, - sym_default_type, + ACTIONS(7879), 1, + anon_sym_RBRACK, + STATE(4990), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7917), 2, - anon_sym_COMMA, - anon_sym_GT, - [151366] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, + [150870] = 5, + ACTIONS(7881), 1, + sym_identifier, + ACTIONS(7883), 1, + anon_sym_const, ACTIONS(7885), 1, - anon_sym_DQUOTE, - STATE(4387), 1, - aux_sym_string_repeat1, - ACTIONS(7919), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [151383] = 5, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6476), 1, - anon_sym_LPAREN, - STATE(5338), 1, - sym_type_parameters, - STATE(5642), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [151400] = 5, - ACTIONS(6604), 1, - anon_sym_AMP, - ACTIONS(6606), 1, - anon_sym_PIPE, - ACTIONS(6608), 1, - anon_sym_extends, - ACTIONS(7921), 1, - anon_sym_RBRACK, + anon_sym_GT, + STATE(5244), 1, + sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151417] = 5, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6476), 1, - anon_sym_LPAREN, - STATE(5231), 1, - sym_type_parameters, - STATE(5515), 1, - sym_formal_parameters, + [150887] = 5, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(7887), 1, + anon_sym_class, + STATE(1269), 1, + aux_sym_export_statement_repeat1, + STATE(1344), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151434] = 5, - ACTIONS(6604), 1, + [150904] = 5, + ACTIONS(6605), 1, anon_sym_AMP, - ACTIONS(6606), 1, + ACTIONS(6607), 1, anon_sym_PIPE, - ACTIONS(6608), 1, + ACTIONS(6609), 1, anon_sym_extends, - ACTIONS(7923), 1, - anon_sym_COLON, + ACTIONS(7889), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151451] = 4, - ACTIONS(7925), 1, - anon_sym_COMMA, - STATE(4433), 1, - aux_sym_sequence_expression_repeat1, + [150921] = 5, + ACTIONS(7891), 1, + sym_identifier, + STATE(3818), 1, + sym_nested_type_identifier, + STATE(4447), 1, + sym_generic_type, + STATE(5633), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4866), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151466] = 4, - ACTIONS(7928), 1, - anon_sym_COMMA, - STATE(4434), 1, - aux_sym_implements_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, + [150938] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(7419), 2, - anon_sym_LBRACE, - anon_sym_GT, - [151481] = 5, - ACTIONS(6604), 1, - anon_sym_AMP, - ACTIONS(6606), 1, - anon_sym_PIPE, - ACTIONS(6608), 1, - anon_sym_extends, - ACTIONS(7931), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, - sym_comment, - [151498] = 5, + ACTIONS(7871), 1, + anon_sym_SQUOTE, + STATE(4456), 1, + aux_sym_string_repeat2, + ACTIONS(7893), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [150955] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7933), 1, + ACTIONS(7895), 1, anon_sym_DQUOTE, - STATE(4455), 1, + STATE(4494), 1, aux_sym_string_repeat1, - ACTIONS(7935), 2, + ACTIONS(7853), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [151515] = 5, - ACTIONS(7937), 1, - sym_identifier, - ACTIONS(7939), 1, - anon_sym_const, - ACTIONS(7941), 1, - anon_sym_GT, - STATE(5286), 1, - sym_type_parameter, + [150972] = 5, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(5174), 1, + sym_type_parameters, + STATE(5518), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151532] = 2, + [150989] = 4, + ACTIONS(6595), 1, + anon_sym_EQ, + STATE(5263), 1, + sym_default_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7943), 4, - sym__template_chars, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [151543] = 5, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6476), 1, - anon_sym_LPAREN, - STATE(5175), 1, - sym_type_parameters, - STATE(5549), 1, - sym_formal_parameters, + ACTIONS(7897), 2, + anon_sym_COMMA, + anon_sym_GT, + [151004] = 5, + ACTIONS(6605), 1, + anon_sym_AMP, + ACTIONS(6607), 1, + anon_sym_PIPE, + ACTIONS(6609), 1, + anon_sym_extends, + ACTIONS(7899), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151560] = 4, - ACTIONS(7847), 1, + [151021] = 4, + ACTIONS(7829), 1, anon_sym_COMMA, - STATE(4390), 1, + STATE(4506), 1, aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7945), 2, + ACTIONS(7901), 2, sym__automatic_semicolon, anon_sym_SEMI, - [151575] = 4, - ACTIONS(7947), 1, - anon_sym_EQ, - STATE(5352), 1, - sym__initializer, + [151036] = 4, + ACTIONS(5010), 1, + anon_sym_COMMA, + STATE(4457), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6737), 2, - anon_sym_in, - anon_sym_of, - [151590] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7933), 1, - anon_sym_SQUOTE, - STATE(4456), 1, - aux_sym_string_repeat2, - ACTIONS(7949), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [151607] = 4, - ACTIONS(6622), 1, - anon_sym_EQ, - STATE(5280), 1, - sym_default_type, + ACTIONS(7318), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [151051] = 4, + ACTIONS(7905), 1, + anon_sym_COMMA, + STATE(4480), 1, + aux_sym_extends_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7951), 2, - anon_sym_COMMA, - anon_sym_GT, - [151622] = 2, + ACTIONS(7903), 2, + anon_sym_LBRACE, + anon_sym_implements, + [151066] = 4, + ACTIONS(6327), 1, + anon_sym_STAR, + ACTIONS(6331), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6039), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [151633] = 3, - ACTIONS(7953), 1, - anon_sym_EQ, + STATE(5748), 2, + sym_namespace_import, + sym_named_imports, + [151081] = 5, + ACTIONS(7095), 1, + anon_sym_AMP, + ACTIONS(7097), 1, + anon_sym_PIPE, + ACTIONS(7099), 1, + anon_sym_extends, + ACTIONS(7907), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3637), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - [151646] = 5, - ACTIONS(7164), 1, - anon_sym_COMMA, - ACTIONS(7442), 1, - anon_sym_LBRACE, - ACTIONS(7444), 1, - anon_sym_LBRACE_PIPE, - STATE(4418), 1, - aux_sym_extends_type_clause_repeat1, + [151098] = 3, + ACTIONS(7909), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151663] = 5, - ACTIONS(4627), 1, + ACTIONS(6335), 3, anon_sym_LPAREN, - ACTIONS(7956), 1, + anon_sym_QMARK_DOT, anon_sym_LT, - STATE(1966), 1, - sym_arguments, - STATE(1967), 1, - sym_type_arguments, + [151111] = 5, + ACTIONS(6605), 1, + anon_sym_AMP, + ACTIONS(6607), 1, + anon_sym_PIPE, + ACTIONS(6609), 1, + anon_sym_extends, + ACTIONS(7911), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151680] = 4, - ACTIONS(7960), 1, + [151128] = 4, + ACTIONS(7913), 1, anon_sym_COMMA, - STATE(4469), 1, - aux_sym_extends_clause_repeat1, + STATE(4423), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7958), 2, + ACTIONS(7252), 2, anon_sym_LBRACE, - anon_sym_implements, - [151695] = 5, - ACTIONS(6604), 1, + anon_sym_GT, + [151143] = 5, + ACTIONS(6605), 1, anon_sym_AMP, - ACTIONS(6606), 1, + ACTIONS(6607), 1, anon_sym_PIPE, - ACTIONS(6608), 1, + ACTIONS(6609), 1, anon_sym_extends, - ACTIONS(7962), 1, + ACTIONS(7916), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151712] = 5, - ACTIONS(7964), 1, - anon_sym_LBRACE, - ACTIONS(7966), 1, - anon_sym_COMMA, - ACTIONS(7969), 1, - anon_sym_LBRACE_PIPE, - STATE(4450), 1, - aux_sym_extends_type_clause_repeat1, + [151160] = 3, + ACTIONS(7918), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151729] = 5, - ACTIONS(6604), 1, - anon_sym_AMP, - ACTIONS(6606), 1, - anon_sym_PIPE, - ACTIONS(6608), 1, - anon_sym_extends, - ACTIONS(7971), 1, + ACTIONS(3622), 3, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_RBRACK, + [151173] = 4, + ACTIONS(7921), 1, + anon_sym_from, + STATE(5161), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151746] = 4, - ACTIONS(7879), 1, + ACTIONS(5101), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [151188] = 4, + ACTIONS(7921), 1, anon_sym_from, - STATE(5256), 1, + STATE(5461), 1, sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7973), 2, + ACTIONS(7923), 2, sym__automatic_semicolon, anon_sym_SEMI, - [151761] = 5, - ACTIONS(2570), 1, + [151203] = 5, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6476), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(5390), 1, + STATE(5375), 1, sym_type_parameters, - STATE(5539), 1, + STATE(5478), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151778] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7975), 1, - anon_sym_DQUOTE, - STATE(4495), 1, - aux_sym_string_repeat1, - ACTIONS(7977), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [151795] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [151220] = 5, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(7925), 1, + anon_sym_class, + STATE(1269), 1, + aux_sym_export_statement_repeat1, + STATE(1344), 1, + sym_decorator, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(7979), 1, - anon_sym_DQUOTE, - STATE(4493), 1, - aux_sym_string_repeat1, - ACTIONS(7841), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [151812] = 5, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7979), 1, - anon_sym_SQUOTE, - STATE(4497), 1, - aux_sym_string_repeat2, - ACTIONS(7863), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [151829] = 5, - ACTIONS(2570), 1, + [151237] = 5, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6476), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(5179), 1, + STATE(5163), 1, sym_type_parameters, - STATE(5698), 1, + STATE(5577), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151846] = 4, - ACTIONS(7879), 1, - anon_sym_from, - STATE(5152), 1, - sym__from_clause, + [151254] = 4, + ACTIONS(7927), 1, + anon_sym_EQ, + STATE(5342), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7981), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151861] = 4, - ACTIONS(3819), 1, - anon_sym_COLON, - ACTIONS(4593), 1, - anon_sym_EQ, + ACTIONS(6778), 2, + anon_sym_in, + anon_sym_of, + [151269] = 5, + ACTIONS(6605), 1, + anon_sym_AMP, + ACTIONS(6607), 1, + anon_sym_PIPE, + ACTIONS(6609), 1, + anon_sym_extends, + ACTIONS(7929), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7983), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [151876] = 5, - ACTIONS(6394), 1, - anon_sym_LPAREN, - ACTIONS(6400), 1, - anon_sym_LT, - STATE(3249), 1, - sym_arguments, - STATE(3339), 1, - sym_type_arguments, + [151286] = 5, + ACTIONS(6605), 1, + anon_sym_AMP, + ACTIONS(6607), 1, + anon_sym_PIPE, + ACTIONS(6609), 1, + anon_sym_extends, + ACTIONS(7931), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151893] = 4, - ACTIONS(7847), 1, - anon_sym_COMMA, - STATE(4411), 1, - aux_sym_variable_declaration_repeat1, + [151303] = 5, + ACTIONS(6605), 1, + anon_sym_AMP, + ACTIONS(6607), 1, + anon_sym_PIPE, + ACTIONS(6609), 1, + anon_sym_extends, + ACTIONS(7933), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7985), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151908] = 5, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6476), 1, - anon_sym_LPAREN, - STATE(5266), 1, - sym_type_parameters, - STATE(5578), 1, - sym_formal_parameters, + [151320] = 5, + ACTIONS(6605), 1, + anon_sym_AMP, + ACTIONS(6607), 1, + anon_sym_PIPE, + ACTIONS(6609), 1, + anon_sym_extends, + ACTIONS(7935), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151925] = 4, - ACTIONS(7601), 1, - anon_sym_EQ, - STATE(5310), 1, - sym__initializer, + [151337] = 5, + ACTIONS(6605), 1, + anon_sym_AMP, + ACTIONS(6607), 1, + anon_sym_PIPE, + ACTIONS(6609), 1, + anon_sym_extends, + ACTIONS(7937), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7987), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [151940] = 5, - ACTIONS(6604), 1, + [151354] = 5, + ACTIONS(6605), 1, anon_sym_AMP, - ACTIONS(6606), 1, + ACTIONS(6607), 1, anon_sym_PIPE, - ACTIONS(6608), 1, + ACTIONS(6609), 1, anon_sym_extends, - ACTIONS(7989), 1, - anon_sym_RPAREN, + ACTIONS(7939), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151957] = 5, - ACTIONS(2570), 1, + [151371] = 5, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6476), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(5406), 1, + STATE(5292), 1, sym_type_parameters, - STATE(5704), 1, + STATE(5472), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151974] = 3, - ACTIONS(6360), 1, - anon_sym_DOT, + [151388] = 5, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(5387), 1, + sym_type_parameters, + STATE(5653), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6358), 3, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_LT, - [151987] = 5, - ACTIONS(3), 1, + [151405] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + ACTIONS(6064), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [151416] = 5, + ACTIONS(6605), 1, + anon_sym_AMP, + ACTIONS(6607), 1, + anon_sym_PIPE, + ACTIONS(6609), 1, + anon_sym_extends, + ACTIONS(7941), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(7991), 1, - anon_sym_DQUOTE, - STATE(4413), 1, - aux_sym_string_repeat1, - ACTIONS(7993), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [152004] = 5, + sym_comment, + [151433] = 5, + ACTIONS(6605), 1, + anon_sym_AMP, + ACTIONS(6607), 1, + anon_sym_PIPE, + ACTIONS(6609), 1, + anon_sym_extends, + ACTIONS(7943), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151450] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7991), 1, + ACTIONS(7869), 1, anon_sym_SQUOTE, - STATE(4404), 1, + STATE(4495), 1, aux_sym_string_repeat2, - ACTIONS(7995), 2, + ACTIONS(7825), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [152021] = 4, - ACTIONS(7960), 1, - anon_sym_COMMA, - STATE(4502), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7997), 2, - anon_sym_LBRACE, - anon_sym_implements, - [152036] = 5, - ACTIONS(7184), 1, - anon_sym_AMP, - ACTIONS(7186), 1, - anon_sym_PIPE, - ACTIONS(7188), 1, - anon_sym_extends, - ACTIONS(7999), 1, - anon_sym_QMARK, + [151467] = 5, + ACTIONS(7881), 1, + sym_identifier, + ACTIONS(7883), 1, + anon_sym_const, + ACTIONS(7945), 1, + anon_sym_GT, + STATE(5244), 1, + sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152053] = 5, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6476), 1, - anon_sym_LPAREN, - STATE(5415), 1, - sym_type_parameters, - STATE(5848), 1, - sym_formal_parameters, + [151484] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152070] = 5, - ACTIONS(6604), 1, - anon_sym_AMP, - ACTIONS(6606), 1, - anon_sym_PIPE, - ACTIONS(6608), 1, - anon_sym_extends, - ACTIONS(8001), 1, - anon_sym_COLON, + ACTIONS(7947), 4, + sym__template_chars, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [151495] = 4, + ACTIONS(7571), 1, + anon_sym_EQ, + STATE(5290), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152087] = 5, - ACTIONS(6604), 1, - anon_sym_AMP, - ACTIONS(6606), 1, - anon_sym_PIPE, - ACTIONS(6608), 1, - anon_sym_extends, - ACTIONS(8003), 1, - anon_sym_RBRACK, + ACTIONS(7949), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [151510] = 5, + ACTIONS(7139), 1, + anon_sym_COMMA, + ACTIONS(7365), 1, + anon_sym_LBRACE, + ACTIONS(7367), 1, + anon_sym_LBRACE_PIPE, + STATE(4401), 1, + aux_sym_extends_type_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152104] = 5, - ACTIONS(6604), 1, + [151527] = 5, + ACTIONS(7095), 1, anon_sym_AMP, - ACTIONS(6606), 1, + ACTIONS(7097), 1, anon_sym_PIPE, - ACTIONS(6608), 1, + ACTIONS(7099), 1, anon_sym_extends, - ACTIONS(8005), 1, - anon_sym_COLON, + ACTIONS(7951), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152121] = 5, - ACTIONS(6604), 1, - anon_sym_AMP, - ACTIONS(6606), 1, - anon_sym_PIPE, - ACTIONS(6608), 1, - anon_sym_extends, - ACTIONS(8007), 1, - anon_sym_RPAREN, + [151544] = 5, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(5167), 1, + sym_type_parameters, + STATE(5711), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152138] = 4, - ACTIONS(5048), 1, + [151561] = 4, + ACTIONS(7829), 1, anon_sym_COMMA, - STATE(4433), 1, - aux_sym_sequence_expression_repeat1, + STATE(4515), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7291), 2, + ACTIONS(7953), 2, sym__automatic_semicolon, anon_sym_SEMI, - [152153] = 2, + [151576] = 4, + ACTIONS(7829), 1, + anon_sym_COMMA, + STATE(4459), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8009), 4, + ACTIONS(7955), 2, sym__automatic_semicolon, - anon_sym_with, - anon_sym_assert, anon_sym_SEMI, - [152164] = 5, - ACTIONS(6604), 1, + [151591] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7957), 1, + anon_sym_SQUOTE, + STATE(4495), 1, + aux_sym_string_repeat2, + ACTIONS(7825), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [151608] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7819), 1, + anon_sym_DQUOTE, + STATE(4465), 1, + aux_sym_string_repeat1, + ACTIONS(7959), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [151625] = 5, + ACTIONS(6605), 1, anon_sym_AMP, - ACTIONS(6606), 1, + ACTIONS(6607), 1, anon_sym_PIPE, - ACTIONS(6608), 1, + ACTIONS(6609), 1, anon_sym_extends, - ACTIONS(8011), 1, + ACTIONS(7961), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152181] = 5, + [151642] = 4, + ACTIONS(7963), 1, + anon_sym_COMMA, + STATE(4455), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7966), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [151657] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7839), 1, + ACTIONS(7895), 1, anon_sym_SQUOTE, - STATE(4497), 1, + STATE(4495), 1, aux_sym_string_repeat2, - ACTIONS(7863), 2, + ACTIONS(7825), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [152198] = 5, - ACTIONS(6604), 1, - anon_sym_AMP, - ACTIONS(6606), 1, - anon_sym_PIPE, - ACTIONS(6608), 1, - anon_sym_extends, - ACTIONS(8013), 1, - anon_sym_RBRACK, + [151674] = 4, + ACTIONS(7968), 1, + anon_sym_COMMA, + STATE(4457), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152215] = 4, - ACTIONS(7847), 1, + ACTIONS(4852), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [151689] = 4, + ACTIONS(7829), 1, + anon_sym_COMMA, + STATE(4455), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7971), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [151704] = 4, + ACTIONS(7829), 1, anon_sym_COMMA, - STATE(4425), 1, + STATE(4455), 1, aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8015), 2, + ACTIONS(7973), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [151719] = 4, + ACTIONS(7921), 1, + anon_sym_from, + STATE(5428), 1, + sym__from_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7975), 2, sym__automatic_semicolon, anon_sym_SEMI, - [152230] = 5, - ACTIONS(6604), 1, + [151734] = 5, + ACTIONS(6605), 1, anon_sym_AMP, - ACTIONS(6606), 1, + ACTIONS(6607), 1, anon_sym_PIPE, - ACTIONS(6608), 1, + ACTIONS(6609), 1, anon_sym_extends, - ACTIONS(8017), 1, + ACTIONS(7977), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152247] = 5, - ACTIONS(7937), 1, - sym_identifier, - ACTIONS(7939), 1, - anon_sym_const, - ACTIONS(8019), 1, - anon_sym_GT, - STATE(5286), 1, - sym_type_parameter, + [151751] = 4, + ACTIONS(7905), 1, + anon_sym_COMMA, + STATE(4418), 1, + aux_sym_extends_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152264] = 5, - ACTIONS(7937), 1, + ACTIONS(7979), 2, + anon_sym_LBRACE, + anon_sym_implements, + [151766] = 5, + ACTIONS(7881), 1, sym_identifier, - ACTIONS(7939), 1, + ACTIONS(7883), 1, anon_sym_const, - ACTIONS(8021), 1, + ACTIONS(7981), 1, anon_sym_GT, - STATE(5286), 1, + STATE(5244), 1, sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152281] = 5, + [151783] = 4, + ACTIONS(7921), 1, + anon_sym_from, + STATE(5203), 1, + sym__from_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5041), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [151798] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8023), 1, + ACTIONS(7983), 1, anon_sym_DQUOTE, - STATE(4496), 1, + STATE(4494), 1, aux_sym_string_repeat1, - ACTIONS(8025), 2, + ACTIONS(7853), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [152298] = 5, - ACTIONS(6604), 1, - anon_sym_AMP, - ACTIONS(6606), 1, - anon_sym_PIPE, - ACTIONS(6608), 1, - anon_sym_extends, - ACTIONS(8027), 1, - anon_sym_RBRACK, + [151815] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7983), 1, + anon_sym_SQUOTE, + STATE(4495), 1, + aux_sym_string_repeat2, + ACTIONS(7825), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [151832] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152315] = 5, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6476), 1, + ACTIONS(7985), 4, + sym__automatic_semicolon, + anon_sym_with, + anon_sym_assert, + anon_sym_SEMI, + [151843] = 5, + ACTIONS(6375), 1, anon_sym_LPAREN, - STATE(5222), 1, - sym_type_parameters, - STATE(5673), 1, - sym_formal_parameters, + ACTIONS(6381), 1, + anon_sym_LT, + STATE(3224), 1, + sym_arguments, + STATE(3401), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152332] = 5, - ACTIONS(6604), 1, - anon_sym_AMP, - ACTIONS(6606), 1, - anon_sym_PIPE, - ACTIONS(6608), 1, - anon_sym_extends, - ACTIONS(8029), 1, - anon_sym_RBRACK, + [151860] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7987), 4, + sym__automatic_semicolon, + anon_sym_with, + anon_sym_assert, + anon_sym_SEMI, + [151871] = 5, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(5208), 1, + sym_type_parameters, + STATE(5491), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152349] = 5, + [151888] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8023), 1, - anon_sym_SQUOTE, - STATE(4498), 1, - aux_sym_string_repeat2, - ACTIONS(8031), 2, - sym_unescaped_single_string_fragment, + ACTIONS(7989), 1, + anon_sym_DQUOTE, + STATE(4402), 1, + aux_sym_string_repeat1, + ACTIONS(7991), 2, + sym_unescaped_double_string_fragment, sym_escape_sequence, - [152366] = 5, - ACTIONS(2570), 1, + [151905] = 5, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(3703), 1, - sym_formal_parameters, - STATE(5264), 1, + STATE(5210), 1, sym_type_parameters, + STATE(5560), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152383] = 5, - ACTIONS(2570), 1, + [151922] = 5, + ACTIONS(7095), 1, + anon_sym_AMP, + ACTIONS(7097), 1, + anon_sym_PIPE, + ACTIONS(7099), 1, + anon_sym_extends, + ACTIONS(7993), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151939] = 5, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6476), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(5223), 1, + STATE(5378), 1, sym_type_parameters, - STATE(5873), 1, + STATE(5632), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152400] = 5, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(8033), 1, - anon_sym_class, - STATE(1285), 1, - sym_decorator, - STATE(3855), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [152417] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8035), 1, - anon_sym_DQUOTE, - STATE(4493), 1, - aux_sym_string_repeat1, - ACTIONS(8037), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [152434] = 5, - ACTIONS(7937), 1, + [151956] = 5, + ACTIONS(7881), 1, sym_identifier, - ACTIONS(7939), 1, + ACTIONS(7883), 1, anon_sym_const, - ACTIONS(8040), 1, + ACTIONS(7995), 1, anon_sym_GT, - STATE(5286), 1, + STATE(5244), 1, sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152451] = 5, + [151973] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8042), 1, + ACTIONS(7997), 1, anon_sym_DQUOTE, - STATE(4493), 1, + STATE(4494), 1, aux_sym_string_repeat1, - ACTIONS(7841), 2, + ACTIONS(7853), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [152468] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [151990] = 5, + ACTIONS(6605), 1, + anon_sym_AMP, + ACTIONS(6607), 1, + anon_sym_PIPE, + ACTIONS(6609), 1, + anon_sym_extends, + ACTIONS(7999), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8044), 1, - anon_sym_DQUOTE, - STATE(4493), 1, - aux_sym_string_repeat1, - ACTIONS(7841), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [152485] = 5, + sym_comment, + [152007] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8046), 1, + ACTIONS(7997), 1, anon_sym_SQUOTE, - STATE(4497), 1, + STATE(4495), 1, aux_sym_string_repeat2, - ACTIONS(8048), 2, + ACTIONS(7825), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [152502] = 5, + [152024] = 5, + ACTIONS(1910), 1, + anon_sym_COMMA, + ACTIONS(7877), 1, + anon_sym_EQ, + ACTIONS(8001), 1, + anon_sym_RBRACK, + STATE(4890), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152041] = 4, + ACTIONS(8005), 1, + anon_sym_COMMA, + STATE(4480), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8003), 2, + anon_sym_LBRACE, + anon_sym_implements, + [152056] = 5, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(8008), 1, + anon_sym_export, + STATE(1269), 1, + aux_sym_export_statement_repeat1, + STATE(1344), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152073] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8044), 1, + ACTIONS(7989), 1, anon_sym_SQUOTE, - STATE(4497), 1, + STATE(4443), 1, aux_sym_string_repeat2, - ACTIONS(7863), 2, + ACTIONS(8010), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [152519] = 5, - ACTIONS(3), 1, + [152090] = 3, + ACTIONS(6104), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + ACTIONS(3814), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [152103] = 5, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(3281), 1, + anon_sym_LPAREN, + STATE(3576), 1, + sym_formal_parameters, + STATE(5246), 1, + sym_type_parameters, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8042), 1, - anon_sym_SQUOTE, - STATE(4497), 1, - aux_sym_string_repeat2, - ACTIONS(7863), 2, - sym_unescaped_single_string_fragment, + sym_comment, + [152120] = 5, + ACTIONS(8012), 1, + anon_sym_LBRACE, + ACTIONS(8014), 1, + anon_sym_COMMA, + ACTIONS(8017), 1, + anon_sym_LBRACE_PIPE, + STATE(4485), 1, + aux_sym_extends_type_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152137] = 5, + ACTIONS(6605), 1, + anon_sym_AMP, + ACTIONS(6607), 1, + anon_sym_PIPE, + ACTIONS(6609), 1, + anon_sym_extends, + ACTIONS(8019), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152154] = 3, + ACTIONS(8021), 1, sym_escape_sequence, - [152536] = 5, - ACTIONS(7184), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8023), 3, + sym__template_chars, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [152167] = 3, + ACTIONS(8026), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3814), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [152180] = 5, + ACTIONS(7095), 1, anon_sym_AMP, - ACTIONS(7186), 1, + ACTIONS(7097), 1, anon_sym_PIPE, - ACTIONS(7188), 1, + ACTIONS(7099), 1, anon_sym_extends, - ACTIONS(8051), 1, + ACTIONS(8028), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152553] = 4, - ACTIONS(7847), 1, - anon_sym_COMMA, - STATE(4426), 1, - aux_sym_variable_declaration_repeat1, + [152197] = 5, + ACTIONS(6605), 1, + anon_sym_AMP, + ACTIONS(6607), 1, + anon_sym_PIPE, + ACTIONS(6609), 1, + anon_sym_extends, + ACTIONS(8030), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8053), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [152568] = 4, - ACTIONS(8057), 1, - anon_sym_COMMA, - STATE(4502), 1, - aux_sym_extends_clause_repeat1, + [152214] = 4, + ACTIONS(7145), 1, + anon_sym_EQ, + STATE(5152), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8055), 2, - anon_sym_LBRACE, - anon_sym_implements, - [152583] = 5, - ACTIONS(7184), 1, + ACTIONS(8032), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [152229] = 5, + ACTIONS(7095), 1, anon_sym_AMP, - ACTIONS(7186), 1, + ACTIONS(7097), 1, anon_sym_PIPE, - ACTIONS(7188), 1, + ACTIONS(7099), 1, anon_sym_extends, - ACTIONS(8060), 1, + ACTIONS(8034), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152600] = 5, + [152246] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8036), 1, + anon_sym_DQUOTE, + STATE(4512), 1, + aux_sym_string_repeat1, + ACTIONS(8038), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [152263] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8062), 1, + ACTIONS(8040), 1, anon_sym_DQUOTE, - STATE(4511), 1, + STATE(4494), 1, aux_sym_string_repeat1, - ACTIONS(8064), 2, + ACTIONS(8042), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [152617] = 5, + [152280] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8062), 1, + ACTIONS(8045), 1, anon_sym_SQUOTE, - STATE(4512), 1, + STATE(4495), 1, aux_sym_string_repeat2, - ACTIONS(8066), 2, + ACTIONS(8047), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [152297] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8036), 1, + anon_sym_SQUOTE, + STATE(4381), 1, + aux_sym_string_repeat2, + ACTIONS(8050), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [152634] = 5, - ACTIONS(7184), 1, + [152314] = 5, + ACTIONS(7095), 1, anon_sym_AMP, - ACTIONS(7186), 1, + ACTIONS(7097), 1, anon_sym_PIPE, - ACTIONS(7188), 1, + ACTIONS(7099), 1, anon_sym_extends, - ACTIONS(8068), 1, + ACTIONS(8052), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152651] = 3, - ACTIONS(8070), 1, - sym_escape_sequence, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8072), 3, - sym__template_chars, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [152664] = 5, - ACTIONS(8075), 1, - sym_identifier, - STATE(3860), 1, - sym_nested_type_identifier, - STATE(4446), 1, - sym_generic_type, - STATE(5639), 1, - sym_nested_identifier, + [152331] = 5, + ACTIONS(6605), 1, + anon_sym_AMP, + ACTIONS(6607), 1, + anon_sym_PIPE, + ACTIONS(6609), 1, + anon_sym_extends, + ACTIONS(8054), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152681] = 4, - ACTIONS(7879), 1, - anon_sym_from, - STATE(5185), 1, - sym__from_clause, + [152348] = 4, + ACTIONS(6595), 1, + anon_sym_EQ, + STATE(5178), 1, + sym_default_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5064), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [152696] = 5, - ACTIONS(3967), 1, + ACTIONS(8056), 2, + anon_sym_COMMA, + anon_sym_GT, + [152363] = 5, + ACTIONS(4588), 1, anon_sym_LPAREN, - ACTIONS(8077), 1, + ACTIONS(8058), 1, anon_sym_LT, - STATE(1643), 1, + STATE(1964), 1, sym_arguments, - STATE(1648), 1, + STATE(1965), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152713] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [152380] = 5, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(5252), 1, + sym_type_parameters, + STATE(5769), 1, + sym_formal_parameters, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8079), 1, - anon_sym_DQUOTE, - STATE(4493), 1, - aux_sym_string_repeat1, - ACTIONS(7841), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [152730] = 5, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8079), 1, - anon_sym_SQUOTE, - STATE(4497), 1, - aux_sym_string_repeat2, - ACTIONS(7863), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [152747] = 5, - ACTIONS(6604), 1, - anon_sym_AMP, - ACTIONS(6606), 1, - anon_sym_PIPE, - ACTIONS(6608), 1, - anon_sym_extends, - ACTIONS(8081), 1, - anon_sym_RPAREN, + [152397] = 5, + ACTIONS(3528), 1, + anon_sym_LPAREN, + ACTIONS(6345), 1, + anon_sym_LT, + STATE(3086), 1, + sym_arguments, + STATE(3215), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152764] = 5, - ACTIONS(2570), 1, + [152414] = 5, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6476), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(5464), 1, + STATE(5253), 1, sym_type_parameters, - STATE(5659), 1, + STATE(5552), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152781] = 5, - ACTIONS(2570), 1, + [152431] = 5, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6476), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(5274), 1, + STATE(5456), 1, sym_type_parameters, - STATE(5674), 1, + STATE(5647), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152798] = 5, - ACTIONS(2570), 1, + [152448] = 4, + ACTIONS(3814), 1, + anon_sym_COLON, + ACTIONS(4622), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8060), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [152463] = 4, + ACTIONS(7829), 1, + anon_sym_COMMA, + STATE(4455), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8062), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [152478] = 5, + ACTIONS(2499), 1, anon_sym_LT, - ACTIONS(6476), 1, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(5467), 1, + STATE(5179), 1, sym_type_parameters, - STATE(5683), 1, + STATE(5547), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152815] = 5, - ACTIONS(6604), 1, - anon_sym_AMP, - ACTIONS(6606), 1, - anon_sym_PIPE, - ACTIONS(6608), 1, - anon_sym_extends, - ACTIONS(8083), 1, - anon_sym_RPAREN, + [152495] = 5, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(5459), 1, + sym_type_parameters, + STATE(5671), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152832] = 5, - ACTIONS(7184), 1, + [152512] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8064), 1, + anon_sym_DQUOTE, + STATE(4513), 1, + aux_sym_string_repeat1, + ACTIONS(8066), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [152529] = 5, + ACTIONS(7095), 1, anon_sym_AMP, - ACTIONS(7186), 1, + ACTIONS(7097), 1, anon_sym_PIPE, - ACTIONS(7188), 1, + ACTIONS(7099), 1, anon_sym_extends, - ACTIONS(8085), 1, + ACTIONS(8068), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152849] = 5, - ACTIONS(6674), 1, - anon_sym_LPAREN, - ACTIONS(6676), 1, - anon_sym_LT, - STATE(2936), 1, - sym_arguments, - STATE(3032), 1, - sym_type_arguments, - ACTIONS(5), 2, + [152546] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8064), 1, + anon_sym_SQUOTE, + STATE(4452), 1, + aux_sym_string_repeat2, + ACTIONS(8070), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [152563] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, sym_html_comment, + ACTIONS(7823), 1, + anon_sym_DQUOTE, + STATE(4494), 1, + aux_sym_string_repeat1, + ACTIONS(7853), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [152580] = 5, + ACTIONS(3), 1, sym_comment, - [152866] = 5, - ACTIONS(7184), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7957), 1, + anon_sym_DQUOTE, + STATE(4494), 1, + aux_sym_string_repeat1, + ACTIONS(7853), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [152597] = 5, + ACTIONS(6605), 1, anon_sym_AMP, - ACTIONS(7186), 1, + ACTIONS(6607), 1, anon_sym_PIPE, - ACTIONS(7188), 1, + ACTIONS(6609), 1, anon_sym_extends, - ACTIONS(8087), 1, - anon_sym_QMARK, + ACTIONS(8072), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152883] = 4, - ACTIONS(8089), 1, + [152614] = 4, + ACTIONS(7829), 1, anon_sym_COMMA, - STATE(4521), 1, + STATE(4455), 1, aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8092), 2, + ACTIONS(8074), 2, sym__automatic_semicolon, anon_sym_SEMI, - [152898] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [152629] = 2, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(7975), 1, - anon_sym_SQUOTE, - STATE(4499), 1, - aux_sym_string_repeat2, - ACTIONS(8094), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [152915] = 2, + sym_comment, + ACTIONS(8076), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [152639] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8096), 3, + ACTIONS(8078), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152925] = 4, - ACTIONS(5276), 1, + [152649] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8080), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8098), 1, - anon_sym_RBRACE, - STATE(4970), 1, - aux_sym_object_repeat1, + anon_sym_SEMI, + [152659] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152939] = 4, - ACTIONS(5080), 1, + ACTIONS(8080), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8100), 1, - anon_sym_RBRACE, - STATE(4971), 1, - aux_sym_object_pattern_repeat1, + anon_sym_SEMI, + [152669] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152953] = 4, - ACTIONS(8102), 1, + ACTIONS(8082), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8104), 1, - anon_sym_RBRACK, - STATE(4641), 1, - aux_sym_tuple_type_repeat1, + anon_sym_SEMI, + [152679] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152967] = 2, + ACTIONS(8080), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [152689] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8106), 3, + ACTIONS(8084), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152977] = 3, - ACTIONS(7843), 1, + [152699] = 3, + ACTIONS(8086), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8108), 2, + ACTIONS(8088), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [152989] = 4, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(8110), 1, - anon_sym_EQ, - STATE(5618), 1, - sym_type_parameters, + anon_sym_from, + [152711] = 4, + ACTIONS(8090), 1, + sym_identifier, + ACTIONS(8092), 1, + anon_sym_LBRACK, + ACTIONS(8094), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153003] = 4, - ACTIONS(5011), 1, - anon_sym_extends, - ACTIONS(8112), 1, - anon_sym_AMP, - ACTIONS(8114), 1, - anon_sym_PIPE, + [152725] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153017] = 4, - ACTIONS(6814), 1, - anon_sym_implements, - ACTIONS(8116), 1, - anon_sym_LBRACE, - STATE(5486), 1, - sym_implements_clause, + ACTIONS(8076), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [152735] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153031] = 2, + ACTIONS(8080), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [152745] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8118), 3, + ACTIONS(8082), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153041] = 2, + [152755] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -264830,350 +262761,365 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153051] = 2, + [152765] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8096), 3, + ACTIONS(8098), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [152775] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8098), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153061] = 4, - ACTIONS(3967), 1, + [152785] = 4, + ACTIONS(4010), 1, anon_sym_LPAREN, - ACTIONS(8120), 1, + ACTIONS(8100), 1, anon_sym_DOT, - STATE(1563), 1, + STATE(1529), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153075] = 4, - ACTIONS(3222), 1, - anon_sym_GT, - ACTIONS(8122), 1, - anon_sym_COMMA, - STATE(4434), 1, - aux_sym_implements_clause_repeat1, + [152799] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153089] = 4, - ACTIONS(8124), 1, + ACTIONS(8080), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [152809] = 4, + ACTIONS(8102), 1, sym_identifier, - ACTIONS(8126), 1, + ACTIONS(8104), 1, anon_sym_LBRACK, - ACTIONS(8128), 1, + ACTIONS(8106), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153103] = 4, - ACTIONS(8130), 1, - anon_sym_COMMA, - ACTIONS(8132), 1, - anon_sym_RBRACK, - STATE(4554), 1, - aux_sym_tuple_type_repeat1, + [152823] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153117] = 4, - ACTIONS(4183), 1, - anon_sym_extends, - ACTIONS(8134), 1, - anon_sym_AMP, - ACTIONS(8136), 1, - anon_sym_PIPE, + ACTIONS(8096), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [152833] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153131] = 4, - ACTIONS(8138), 1, + ACTIONS(8084), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8140), 1, - anon_sym_RPAREN, - STATE(4864), 1, - aux_sym_formal_parameters_repeat1, + anon_sym_SEMI, + [152843] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153145] = 4, - ACTIONS(3254), 1, - anon_sym_GT, - ACTIONS(8142), 1, + ACTIONS(8108), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(4434), 1, - aux_sym_implements_clause_repeat1, + anon_sym_SEMI, + [152853] = 4, + ACTIONS(8110), 1, + sym_identifier, + ACTIONS(8112), 1, + anon_sym_LBRACK, + ACTIONS(8114), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153159] = 2, + [152867] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7747), 3, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153169] = 4, - ACTIONS(1976), 1, - anon_sym_COMMA, - ACTIONS(5592), 1, - anon_sym_RPAREN, - STATE(4555), 1, - aux_sym_array_repeat1, + [152877] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153183] = 4, - ACTIONS(1976), 1, + ACTIONS(8080), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5592), 1, - anon_sym_RPAREN, - STATE(4695), 1, - aux_sym_array_repeat1, + anon_sym_SEMI, + [152887] = 4, + ACTIONS(8116), 1, + anon_sym_COMMA, + ACTIONS(8118), 1, + anon_sym_RBRACK, + STATE(4552), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153197] = 4, - ACTIONS(4866), 1, - anon_sym_RPAREN, - ACTIONS(8144), 1, - anon_sym_COMMA, - STATE(4545), 1, - aux_sym_sequence_expression_repeat1, + [152901] = 4, + ACTIONS(4210), 1, + anon_sym_extends, + ACTIONS(8120), 1, + anon_sym_AMP, + ACTIONS(8122), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153211] = 2, + [152915] = 4, + ACTIONS(3215), 1, + anon_sym_GT, + ACTIONS(8124), 1, + anon_sym_COMMA, + STATE(4423), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8096), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153221] = 4, - ACTIONS(8147), 1, + [152929] = 4, + ACTIONS(8126), 1, sym_identifier, - ACTIONS(8149), 1, + ACTIONS(8128), 1, anon_sym_LBRACK, - ACTIONS(8151), 1, + ACTIONS(8130), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153235] = 4, - ACTIONS(8040), 1, - anon_sym_GT, - ACTIONS(8153), 1, + [152943] = 4, + ACTIONS(1977), 1, anon_sym_COMMA, - STATE(4681), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(5368), 1, + anon_sym_RPAREN, + STATE(4554), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152957] = 4, + ACTIONS(1977), 1, + anon_sym_COMMA, + ACTIONS(5368), 1, + anon_sym_RPAREN, + STATE(4700), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153249] = 2, + [152971] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8155), 3, + ACTIONS(8082), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153259] = 2, + [152981] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8157), 3, + ACTIONS(8098), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153269] = 2, + [152991] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8096), 3, + ACTIONS(8098), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153001] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8098), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153279] = 2, + [153011] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5692), 3, + ACTIONS(8098), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [153289] = 2, + anon_sym_SEMI, + [153021] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8157), 3, + ACTIONS(8132), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153299] = 4, - ACTIONS(2976), 1, + [153031] = 4, + ACTIONS(2941), 1, anon_sym_RBRACK, - ACTIONS(8159), 1, + ACTIONS(8134), 1, anon_sym_COMMA, - STATE(4937), 1, + STATE(4949), 1, aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153313] = 4, - ACTIONS(1976), 1, + [153045] = 4, + ACTIONS(8136), 1, + sym_identifier, + ACTIONS(8138), 1, + anon_sym_LBRACK, + ACTIONS(8140), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153059] = 4, + ACTIONS(1977), 1, anon_sym_COMMA, - ACTIONS(8161), 1, + ACTIONS(8142), 1, anon_sym_RPAREN, - STATE(4695), 1, + STATE(4700), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153327] = 4, - ACTIONS(8163), 1, - sym_identifier, - ACTIONS(8165), 1, - anon_sym_LBRACK, - ACTIONS(8167), 1, - sym_private_property_identifier, + [153073] = 4, + ACTIONS(5060), 1, + anon_sym_COMMA, + ACTIONS(8144), 1, + anon_sym_RBRACE, + STATE(4959), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153341] = 2, + [153087] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8096), 3, + ACTIONS(8080), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153351] = 2, + [153097] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8169), 3, + ACTIONS(8084), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153361] = 2, + [153107] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8157), 3, + ACTIONS(8080), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153371] = 4, - ACTIONS(1047), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1627), 1, - anon_sym_LBRACE, - STATE(4127), 1, - sym_object_type, + [153117] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153385] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8155), 3, + ACTIONS(8082), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153395] = 4, - ACTIONS(5080), 1, - anon_sym_COMMA, - ACTIONS(8171), 1, - anon_sym_RBRACE, - STATE(4962), 1, - aux_sym_object_pattern_repeat1, + [153127] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153409] = 4, - ACTIONS(1976), 1, + ACTIONS(8076), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5356), 1, - anon_sym_RPAREN, - STATE(4669), 1, - aux_sym_array_repeat1, + anon_sym_SEMI, + [153137] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153423] = 4, - ACTIONS(1976), 1, + ACTIONS(7707), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5356), 1, - anon_sym_RPAREN, - STATE(4695), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [153437] = 3, - ACTIONS(7843), 1, - anon_sym_EQ, + anon_sym_SEMI, + [153147] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8173), 2, + ACTIONS(8132), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACK, - [153449] = 2, + anon_sym_SEMI, + [153157] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8169), 3, + ACTIONS(8146), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153459] = 2, + [153167] = 3, + ACTIONS(7067), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8175), 3, + ACTIONS(8148), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [153469] = 2, + [153179] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8155), 3, + ACTIONS(8150), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153479] = 2, + [153189] = 3, + ACTIONS(7069), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8175), 3, + ACTIONS(8148), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [153489] = 2, + [153201] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8155), 3, + ACTIONS(8132), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153499] = 2, + [153211] = 4, + ACTIONS(8152), 1, + anon_sym_COMMA, + ACTIONS(8154), 1, + anon_sym_RBRACK, + STATE(4649), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8155), 3, + [153225] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8080), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153509] = 2, + [153235] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -265181,107 +263127,91 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153519] = 2, + [153245] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8177), 3, + ACTIONS(8080), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153529] = 4, - ACTIONS(8179), 1, - sym_identifier, - ACTIONS(8181), 1, - anon_sym_LBRACK, - ACTIONS(8183), 1, - sym_private_property_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [153543] = 2, + [153255] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8175), 3, + ACTIONS(8082), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153553] = 2, + [153265] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8185), 3, + ACTIONS(8076), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153563] = 2, + [153275] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8187), 3, + ACTIONS(8150), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153573] = 2, + [153285] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8189), 3, + ACTIONS(8132), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153583] = 4, - ACTIONS(5222), 1, + [153295] = 4, + ACTIONS(5555), 1, anon_sym_COMMA, - ACTIONS(8191), 1, - anon_sym_RBRACK, - STATE(4583), 1, - aux_sym_array_repeat1, + ACTIONS(8156), 1, + anon_sym_RBRACE, + STATE(4965), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153597] = 4, - ACTIONS(1903), 1, - anon_sym_COMMA, - ACTIONS(8193), 1, - anon_sym_RBRACK, - STATE(4610), 1, - aux_sym_array_pattern_repeat1, + [153309] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153611] = 4, - ACTIONS(6394), 1, + ACTIONS(8080), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153319] = 4, + ACTIONS(6375), 1, anon_sym_LPAREN, - ACTIONS(8195), 1, + ACTIONS(8158), 1, anon_sym_DOT, - STATE(3300), 1, + STATE(3317), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153625] = 4, - ACTIONS(5222), 1, - anon_sym_COMMA, - ACTIONS(5262), 1, - anon_sym_RBRACK, - STATE(4583), 1, - aux_sym_array_repeat1, + [153333] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153639] = 4, - ACTIONS(5692), 1, - anon_sym_RBRACK, - ACTIONS(8197), 1, + ACTIONS(8076), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(4583), 1, - aux_sym_array_repeat1, + anon_sym_SEMI, + [153343] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153653] = 2, + ACTIONS(8080), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153353] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -265289,214 +263219,253 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153663] = 4, - ACTIONS(8200), 1, - anon_sym_COMMA, - ACTIONS(8202), 1, - anon_sym_RPAREN, - STATE(4998), 1, - aux_sym_formal_parameters_repeat1, + [153363] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153677] = 4, - ACTIONS(1976), 1, + ACTIONS(8082), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5560), 1, - anon_sym_RPAREN, - STATE(4695), 1, - aux_sym_array_repeat1, + anon_sym_SEMI, + [153373] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153691] = 3, - ACTIONS(7783), 1, - anon_sym_EQ, + ACTIONS(8080), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153383] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3699), 2, - anon_sym_in, - anon_sym_of, - [153703] = 2, + ACTIONS(8080), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153393] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8157), 3, + ACTIONS(8082), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153713] = 4, - ACTIONS(8204), 1, + [153403] = 4, + ACTIONS(8160), 1, anon_sym_COMMA, - ACTIONS(8206), 1, + ACTIONS(8162), 1, anon_sym_RBRACK, - STATE(4603), 1, + STATE(4599), 1, aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153727] = 4, - ACTIONS(6826), 1, + [153417] = 4, + ACTIONS(6819), 1, anon_sym_AMP, - ACTIONS(6828), 1, + ACTIONS(6821), 1, anon_sym_PIPE, - ACTIONS(6830), 1, + ACTIONS(6823), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153741] = 4, - ACTIONS(3238), 1, + [153431] = 4, + ACTIONS(3201), 1, anon_sym_GT, - ACTIONS(8208), 1, + ACTIONS(8164), 1, anon_sym_COMMA, - STATE(4434), 1, + STATE(4423), 1, aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153755] = 4, - ACTIONS(1976), 1, - anon_sym_COMMA, - ACTIONS(5427), 1, - anon_sym_RPAREN, - STATE(4605), 1, - aux_sym_array_repeat1, + [153445] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153769] = 4, - ACTIONS(1976), 1, + ACTIONS(8098), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153455] = 4, + ACTIONS(1977), 1, anon_sym_COMMA, - ACTIONS(5427), 1, + ACTIONS(5374), 1, anon_sym_RPAREN, - STATE(4695), 1, + STATE(4602), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153783] = 2, + [153469] = 4, + ACTIONS(1977), 1, + anon_sym_COMMA, + ACTIONS(5374), 1, + anon_sym_RPAREN, + STATE(4700), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7747), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153793] = 2, + [153483] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8155), 3, + ACTIONS(8098), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153803] = 2, + [153493] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8187), 3, + ACTIONS(8076), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153813] = 4, - ACTIONS(8210), 1, + [153503] = 4, + ACTIONS(8166), 1, sym_identifier, - ACTIONS(8212), 1, + ACTIONS(8168), 1, anon_sym_LBRACK, - ACTIONS(8214), 1, + ACTIONS(8170), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153827] = 4, - ACTIONS(8216), 1, + [153517] = 4, + ACTIONS(8172), 1, sym_identifier, - ACTIONS(8218), 1, + ACTIONS(8174), 1, anon_sym_LBRACK, - ACTIONS(8220), 1, + ACTIONS(8176), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153841] = 4, - ACTIONS(8222), 1, + [153531] = 4, + ACTIONS(8178), 1, sym_identifier, - ACTIONS(8224), 1, + ACTIONS(8180), 1, anon_sym_LBRACK, - ACTIONS(8226), 1, + ACTIONS(8182), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153855] = 4, - ACTIONS(8228), 1, + [153545] = 4, + ACTIONS(8184), 1, sym_identifier, - ACTIONS(8230), 1, + ACTIONS(8186), 1, anon_sym_LBRACK, - ACTIONS(8232), 1, + ACTIONS(8188), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153869] = 2, + [153559] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8155), 3, + ACTIONS(8132), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153879] = 4, - ACTIONS(8234), 1, - sym_identifier, - ACTIONS(8236), 1, - anon_sym_LBRACK, - ACTIONS(8238), 1, - sym_private_property_identifier, + [153569] = 4, + ACTIONS(2577), 1, + anon_sym_RBRACK, + ACTIONS(8190), 1, + anon_sym_COMMA, + STATE(4949), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153893] = 4, - ACTIONS(2978), 1, - anon_sym_RBRACK, - ACTIONS(8240), 1, + [153583] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8192), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(4937), 1, - aux_sym_tuple_type_repeat1, + anon_sym_SEMI, + [153593] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153907] = 4, - ACTIONS(1903), 1, + ACTIONS(7966), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(7865), 1, - anon_sym_RBRACK, - STATE(5006), 1, - aux_sym_array_pattern_repeat1, + anon_sym_SEMI, + [153603] = 4, + ACTIONS(1977), 1, + anon_sym_COMMA, + ACTIONS(8194), 1, + anon_sym_RPAREN, + STATE(4700), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153617] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8096), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153627] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8076), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153637] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8080), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153647] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8192), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153657] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153921] = 4, - ACTIONS(1976), 1, + ACTIONS(8080), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8242), 1, - anon_sym_RPAREN, - STATE(4695), 1, - aux_sym_array_repeat1, + anon_sym_SEMI, + [153667] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153935] = 2, + ACTIONS(8082), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153677] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8155), 3, + ACTIONS(8080), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153945] = 2, + [153687] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -265504,621 +263473,602 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153955] = 3, - ACTIONS(7068), 1, - anon_sym_DOT, + [153697] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8244), 2, + ACTIONS(8080), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [153967] = 3, - ACTIONS(7030), 1, - anon_sym_DOT, + [153707] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8244), 2, + ACTIONS(8082), 3, sym__automatic_semicolon, - anon_sym_SEMI, - [153979] = 4, - ACTIONS(8173), 1, - anon_sym_RBRACK, - ACTIONS(8246), 1, anon_sym_COMMA, - STATE(4610), 1, - aux_sym_array_pattern_repeat1, + anon_sym_SEMI, + [153717] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153993] = 4, - ACTIONS(5222), 1, + ACTIONS(8098), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5308), 1, - anon_sym_RBRACK, - STATE(5004), 1, - aux_sym_array_repeat1, + anon_sym_SEMI, + [153727] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154007] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8249), 1, - sym__glimmer_template_content, - ACTIONS(8252), 1, - sym_glimmer_closing_tag, - STATE(4612), 1, - aux_sym_glimmer_template_repeat1, - [154023] = 2, + ACTIONS(8098), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153737] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8155), 3, + ACTIONS(8098), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154033] = 2, + [153747] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8169), 3, + ACTIONS(8098), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154043] = 3, - ACTIONS(7585), 1, - anon_sym_LBRACE, + [153757] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7587), 2, + ACTIONS(8080), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [154055] = 2, + anon_sym_SEMI, + [153767] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8254), 3, + ACTIONS(8096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154065] = 4, - ACTIONS(5222), 1, + [153777] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8080), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5308), 1, + anon_sym_SEMI, + [153787] = 4, + ACTIONS(2735), 1, anon_sym_RBRACK, - STATE(4583), 1, - aux_sym_array_repeat1, + ACTIONS(8196), 1, + anon_sym_COMMA, + STATE(4949), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154079] = 2, + [153801] = 4, + ACTIONS(8198), 1, + anon_sym_COMMA, + ACTIONS(8200), 1, + anon_sym_RPAREN, + STATE(5014), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8256), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154089] = 4, - ACTIONS(1903), 1, - anon_sym_COMMA, - ACTIONS(7845), 1, - anon_sym_RBRACK, - STATE(4610), 1, - aux_sym_array_pattern_repeat1, + [153815] = 4, + ACTIONS(6605), 1, + anon_sym_AMP, + ACTIONS(6607), 1, + anon_sym_PIPE, + ACTIONS(6609), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154103] = 2, + [153829] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8256), 3, + ACTIONS(8082), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154113] = 2, + [153839] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8258), 3, + ACTIONS(8098), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154123] = 2, + [153849] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8106), 3, + ACTIONS(8202), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154133] = 2, + [153859] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8096), 3, + ACTIONS(8098), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154143] = 2, + [153869] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8260), 3, + ACTIONS(8076), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154153] = 4, - ACTIONS(1903), 1, + [153879] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8108), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(7865), 1, - anon_sym_RBRACK, - STATE(4610), 1, - aux_sym_array_pattern_repeat1, + anon_sym_SEMI, + [153889] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154167] = 2, + ACTIONS(7089), 3, + anon_sym_LBRACK, + sym_identifier, + sym_private_property_identifier, + [153899] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8096), 3, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154177] = 2, + [153909] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8262), 3, + ACTIONS(8192), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154187] = 2, + [153919] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8169), 3, + ACTIONS(8132), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154197] = 5, - ACTIONS(3), 1, + [153929] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + ACTIONS(8084), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153939] = 2, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8264), 1, - sym__glimmer_template_content, - ACTIONS(8266), 1, - sym_glimmer_closing_tag, - STATE(4612), 1, - aux_sym_glimmer_template_repeat1, - [154213] = 2, + sym_comment, + ACTIONS(8080), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153949] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8260), 3, + ACTIONS(8080), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154223] = 4, - ACTIONS(3226), 1, + [153959] = 4, + ACTIONS(3231), 1, anon_sym_GT, - ACTIONS(8268), 1, + ACTIONS(8204), 1, anon_sym_COMMA, - STATE(4434), 1, + STATE(4423), 1, aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154237] = 2, + [153973] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8270), 3, + ACTIONS(8192), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154247] = 4, - ACTIONS(1976), 1, + [153983] = 4, + ACTIONS(1977), 1, anon_sym_COMMA, - ACTIONS(5429), 1, + ACTIONS(5380), 1, anon_sym_RPAREN, - STATE(4638), 1, + STATE(4644), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154261] = 4, - ACTIONS(1976), 1, + [153997] = 4, + ACTIONS(1977), 1, anon_sym_COMMA, - ACTIONS(5429), 1, + ACTIONS(5380), 1, anon_sym_RPAREN, - STATE(4695), 1, + STATE(4700), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154275] = 2, + [154011] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7224), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [154285] = 3, - ACTIONS(8272), 1, - anon_sym_EQ, + ACTIONS(8082), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154021] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8274), 2, + ACTIONS(8206), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_from, - [154297] = 2, + anon_sym_SEMI, + [154031] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8096), 3, + ACTIONS(8080), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154307] = 4, - ACTIONS(1976), 1, + [154041] = 4, + ACTIONS(1034), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1610), 1, + anon_sym_LBRACE, + STATE(4034), 1, + sym_object_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154055] = 4, + ACTIONS(1977), 1, anon_sym_COMMA, - ACTIONS(8276), 1, + ACTIONS(8208), 1, anon_sym_RPAREN, - STATE(4695), 1, + STATE(4700), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154321] = 2, + [154069] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8278), 3, + ACTIONS(8080), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154331] = 2, + [154079] = 4, + ACTIONS(8210), 1, + anon_sym_COMMA, + ACTIONS(8212), 1, + anon_sym_RBRACE, + STATE(4716), 1, + aux_sym_enum_body_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154093] = 4, + ACTIONS(1977), 1, + anon_sym_COMMA, + ACTIONS(8214), 1, + anon_sym_RPAREN, + STATE(4700), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154107] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8280), 3, + ACTIONS(8192), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154341] = 4, - ACTIONS(2990), 1, + [154117] = 4, + ACTIONS(2665), 1, anon_sym_RBRACK, - ACTIONS(8282), 1, + ACTIONS(8216), 1, anon_sym_COMMA, - STATE(4937), 1, + STATE(4949), 1, aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154355] = 3, - ACTIONS(8284), 1, - anon_sym_as, + [154131] = 4, + ACTIONS(4588), 1, + anon_sym_LPAREN, + ACTIONS(8218), 1, + anon_sym_DOT, + STATE(2048), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8286), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [154367] = 2, + [154145] = 3, + ACTIONS(8220), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8288), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154377] = 4, - ACTIONS(1976), 1, - anon_sym_COMMA, - ACTIONS(5431), 1, - anon_sym_RPAREN, - STATE(4646), 1, - aux_sym_array_repeat1, + ACTIONS(7679), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [154157] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154391] = 4, - ACTIONS(1976), 1, + ACTIONS(8082), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5431), 1, + anon_sym_SEMI, + [154167] = 4, + ACTIONS(1977), 1, + anon_sym_COMMA, + ACTIONS(5382), 1, anon_sym_RPAREN, - STATE(4695), 1, + STATE(4656), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154405] = 4, - ACTIONS(1976), 1, + [154181] = 4, + ACTIONS(1977), 1, anon_sym_COMMA, - ACTIONS(8290), 1, + ACTIONS(5382), 1, anon_sym_RPAREN, - STATE(4695), 1, + STATE(4700), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154419] = 2, + [154195] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8292), 3, + ACTIONS(8098), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154429] = 4, - ACTIONS(2986), 1, - anon_sym_RBRACK, - ACTIONS(8294), 1, + [154205] = 4, + ACTIONS(1977), 1, anon_sym_COMMA, - STATE(4937), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(8222), 1, + anon_sym_RPAREN, + STATE(4700), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154443] = 2, + [154219] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8280), 3, + ACTIONS(8096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154453] = 4, - ACTIONS(4879), 1, - anon_sym_COMMA, - ACTIONS(7291), 1, - anon_sym_RPAREN, - STATE(4545), 1, - aux_sym_sequence_expression_repeat1, + [154229] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154467] = 2, + ACTIONS(8192), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154239] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8296), 3, + ACTIONS(8098), 3, sym__automatic_semicolon, - anon_sym_from, + anon_sym_COMMA, anon_sym_SEMI, - [154477] = 2, + [154249] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8106), 3, + ACTIONS(8192), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154487] = 4, - ACTIONS(5276), 1, - anon_sym_COMMA, - ACTIONS(8298), 1, - anon_sym_RBRACE, - STATE(4970), 1, - aux_sym_object_repeat1, + [154259] = 4, + ACTIONS(1626), 1, + anon_sym_DQUOTE, + ACTIONS(1628), 1, + anon_sym_SQUOTE, + STATE(4469), 1, + sym_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154501] = 2, + [154273] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8169), 3, + ACTIONS(8132), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154511] = 4, - ACTIONS(8300), 1, + [154283] = 4, + ACTIONS(8224), 1, anon_sym_LPAREN, - ACTIONS(8302), 1, + ACTIONS(8226), 1, anon_sym_await, - STATE(34), 1, + STATE(36), 1, sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154525] = 2, + [154297] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8304), 3, + ACTIONS(8080), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154535] = 2, + [154307] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8306), 3, + ACTIONS(8096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154545] = 2, + [154317] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8306), 3, + ACTIONS(8080), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154555] = 4, - ACTIONS(6964), 1, - anon_sym_RBRACE, - ACTIONS(8308), 1, + [154327] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8082), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(4744), 1, - aux_sym_export_clause_repeat1, + anon_sym_SEMI, + [154337] = 4, + ACTIONS(8228), 1, + anon_sym_COMMA, + ACTIONS(8230), 1, + anon_sym_GT, + STATE(5038), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154569] = 2, + [154351] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8310), 3, + ACTIONS(8232), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154579] = 4, - ACTIONS(1047), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1627), 1, - anon_sym_LBRACE, - STATE(4200), 1, - sym_object_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154593] = 2, + [154361] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8157), 3, + ACTIONS(8206), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154603] = 4, - ACTIONS(7879), 1, + [154371] = 4, + ACTIONS(7921), 1, anon_sym_from, - ACTIONS(8312), 1, + ACTIONS(8234), 1, anon_sym_as, - STATE(5201), 1, + STATE(5371), 1, sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154617] = 4, - ACTIONS(2292), 1, + [154385] = 4, + ACTIONS(2139), 1, anon_sym_LBRACE, - ACTIONS(8314), 1, + ACTIONS(8236), 1, sym_identifier, - STATE(4407), 1, + STATE(4426), 1, sym_export_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154631] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8096), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154641] = 2, + [154399] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8280), 3, + ACTIONS(8132), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154651] = 2, + [154409] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8280), 3, + ACTIONS(8076), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154661] = 4, - ACTIONS(8316), 1, - anon_sym_COMMA, - ACTIONS(8318), 1, - anon_sym_RBRACE, - STATE(4724), 1, - aux_sym_enum_body_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154675] = 4, - ACTIONS(1976), 1, - anon_sym_COMMA, - ACTIONS(8320), 1, - anon_sym_RPAREN, - STATE(4695), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154689] = 2, + [154419] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8322), 3, + ACTIONS(8132), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154699] = 3, - ACTIONS(8324), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7717), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [154711] = 2, + [154429] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8304), 3, + ACTIONS(8080), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154721] = 2, + [154439] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8280), 3, + ACTIONS(8192), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154731] = 4, - ACTIONS(7937), 1, + [154449] = 4, + ACTIONS(7881), 1, sym_identifier, - ACTIONS(7939), 1, + ACTIONS(7883), 1, anon_sym_const, - STATE(4774), 1, + STATE(4668), 1, sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154745] = 2, + [154463] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6039), 3, + ACTIONS(8080), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154755] = 4, - ACTIONS(6059), 1, - anon_sym_LPAREN, - ACTIONS(8326), 1, - anon_sym_DOT, - STATE(2941), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154769] = 2, + [154473] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -266126,1289 +264076,1242 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154779] = 2, + [154483] = 4, + ACTIONS(6066), 1, + anon_sym_LPAREN, + ACTIONS(8238), 1, + anon_sym_DOT, + STATE(2936), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8280), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154789] = 4, - ACTIONS(8328), 1, - sym_identifier, - STATE(3886), 1, - sym_decorator_member_expression, - STATE(5580), 1, - sym_decorator_call_expression, + [154497] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154803] = 2, + ACTIONS(8082), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154507] = 3, + ACTIONS(7673), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8322), 3, - sym__automatic_semicolon, + ACTIONS(7675), 2, anon_sym_COMMA, - anon_sym_SEMI, - [154813] = 4, - ACTIONS(8330), 1, + anon_sym_LBRACE_PIPE, + [154519] = 4, + ACTIONS(8240), 1, anon_sym_COMMA, - ACTIONS(8333), 1, + ACTIONS(8243), 1, anon_sym_GT, - STATE(4681), 1, + STATE(4684), 1, aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154827] = 2, + [154533] = 4, + ACTIONS(8245), 1, + sym_identifier, + STATE(3826), 1, + sym_decorator_member_expression, + STATE(5817), 1, + sym_decorator_call_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8096), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154837] = 4, - ACTIONS(8335), 1, - anon_sym_COMMA, - ACTIONS(8338), 1, - anon_sym_RPAREN, - STATE(4683), 1, - aux_sym_formal_parameters_repeat1, + [154547] = 4, + ACTIONS(7921), 1, + anon_sym_from, + ACTIONS(8234), 1, + anon_sym_as, + STATE(5197), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154851] = 4, - ACTIONS(1643), 1, - anon_sym_DQUOTE, - ACTIONS(1645), 1, - anon_sym_SQUOTE, - STATE(4414), 1, - sym_string, + [154561] = 4, + ACTIONS(8247), 1, + anon_sym_LPAREN, + ACTIONS(8249), 1, + anon_sym_await, + STATE(71), 1, + sym__for_header, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154575] = 4, + ACTIONS(218), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1534), 1, + anon_sym_LBRACE, + STATE(939), 1, + sym_object_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154865] = 2, + [154589] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8322), 3, + ACTIONS(8132), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154875] = 2, + [154599] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8322), 3, + ACTIONS(8080), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154885] = 2, + [154609] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8304), 3, + ACTIONS(8080), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154895] = 2, + [154619] = 4, + ACTIONS(8251), 1, + anon_sym_COMMA, + ACTIONS(8253), 1, + anon_sym_RBRACE, + STATE(4966), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8306), 3, - sym__automatic_semicolon, + [154633] = 4, + ACTIONS(3229), 1, + anon_sym_GT, + ACTIONS(8255), 1, anon_sym_COMMA, - anon_sym_SEMI, - [154905] = 4, - ACTIONS(219), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1541), 1, - anon_sym_LBRACE, - STATE(874), 1, - sym_object_type, + STATE(4423), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154919] = 2, + [154647] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8340), 3, + ACTIONS(8082), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154929] = 3, - ACTIONS(8342), 1, - anon_sym_as, + [154657] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6335), 3, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LT, + [154667] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8274), 2, + ACTIONS(8080), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [154941] = 4, - ACTIONS(2514), 1, + anon_sym_SEMI, + [154677] = 4, + ACTIONS(2511), 1, anon_sym_while, - ACTIONS(8344), 1, + ACTIONS(8257), 1, anon_sym_else, - STATE(857), 1, + STATE(854), 1, sym_else_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154955] = 2, + [154691] = 4, + ACTIONS(1977), 1, + anon_sym_COMMA, + ACTIONS(8259), 1, + anon_sym_RPAREN, + STATE(4700), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8169), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154965] = 2, + [154705] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8175), 3, + ACTIONS(8080), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154975] = 4, - ACTIONS(5692), 1, + [154715] = 4, + ACTIONS(5718), 1, anon_sym_RPAREN, - ACTIONS(8346), 1, + ACTIONS(8261), 1, anon_sym_COMMA, - STATE(4695), 1, + STATE(4700), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154989] = 2, + [154729] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8306), 3, + ACTIONS(8096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154999] = 4, - ACTIONS(8349), 1, - anon_sym_COMMA, - ACTIONS(8351), 1, - anon_sym_RBRACE, - STATE(4957), 1, - aux_sym_enum_body_repeat1, + [154739] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155013] = 2, + ACTIONS(8082), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154749] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8092), 3, + ACTIONS(8098), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155023] = 4, - ACTIONS(5276), 1, - anon_sym_COMMA, - ACTIONS(8298), 1, - anon_sym_RBRACE, - STATE(4965), 1, - aux_sym_object_repeat1, + [154759] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155037] = 4, - ACTIONS(1976), 1, + ACTIONS(8108), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8353), 1, - anon_sym_RPAREN, - STATE(4695), 1, - aux_sym_array_repeat1, + anon_sym_SEMI, + [154769] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155051] = 2, + ACTIONS(8098), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154779] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8340), 3, + ACTIONS(8076), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155061] = 2, + [154789] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8355), 3, + ACTIONS(8132), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155071] = 4, - ACTIONS(7298), 1, + [154799] = 4, + ACTIONS(7256), 1, anon_sym_AMP, - ACTIONS(7300), 1, + ACTIONS(7258), 1, anon_sym_PIPE, - ACTIONS(7302), 1, + ACTIONS(7260), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155085] = 2, + [154813] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8322), 3, + ACTIONS(8080), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155095] = 2, + [154823] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8310), 3, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155105] = 2, + [154833] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8175), 3, + ACTIONS(8264), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_from, anon_sym_SEMI, - [155115] = 2, + [154843] = 4, + ACTIONS(8266), 1, + anon_sym_COMMA, + ACTIONS(8268), 1, + anon_sym_RBRACE, + STATE(4973), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8280), 3, - sym__automatic_semicolon, + [154857] = 4, + ACTIONS(7995), 1, + anon_sym_GT, + ACTIONS(8270), 1, anon_sym_COMMA, - anon_sym_SEMI, - [155125] = 2, + STATE(4684), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8280), 3, - sym__automatic_semicolon, + [154871] = 4, + ACTIONS(5060), 1, anon_sym_COMMA, - anon_sym_SEMI, - [155135] = 2, + ACTIONS(8272), 1, + anon_sym_RBRACE, + STATE(4806), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8157), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155145] = 2, + [154885] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8304), 3, + ACTIONS(8080), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155155] = 2, + [154895] = 4, + ACTIONS(8274), 1, + anon_sym_COMMA, + ACTIONS(8276), 1, + anon_sym_RBRACE, + STATE(4973), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8322), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155165] = 2, + [154909] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8177), 3, + ACTIONS(8082), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155175] = 2, + [154919] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8322), 3, + ACTIONS(8080), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155185] = 2, + [154929] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8322), 3, + ACTIONS(8084), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155195] = 2, + [154939] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8322), 3, + ACTIONS(8080), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155205] = 2, + [154949] = 4, + ACTIONS(5555), 1, + anon_sym_COMMA, + ACTIONS(8278), 1, + anon_sym_RBRACE, + STATE(4812), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154963] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8322), 3, + ACTIONS(8082), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155215] = 2, + [154973] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8310), 3, + ACTIONS(8098), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155225] = 2, + [154983] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8340), 3, + ACTIONS(8098), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155235] = 2, + [154993] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8175), 3, + ACTIONS(8098), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155245] = 2, + [155003] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8340), 3, + ACTIONS(8098), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155255] = 4, - ACTIONS(8357), 1, - anon_sym_COMMA, - ACTIONS(8359), 1, - anon_sym_RBRACE, - STATE(4809), 1, - aux_sym_enum_body_repeat1, + [155013] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155269] = 2, + ACTIONS(8080), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155023] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8355), 3, + ACTIONS(8096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155279] = 2, + [155033] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8155), 3, + ACTIONS(8080), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155289] = 4, - ACTIONS(8361), 1, + [155043] = 4, + ACTIONS(8280), 1, anon_sym_COMMA, - ACTIONS(8363), 1, + ACTIONS(8282), 1, anon_sym_RBRACE, - STATE(4809), 1, - aux_sym_enum_body_repeat1, + STATE(4887), 1, + aux_sym_export_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155303] = 2, + [155057] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8322), 3, + ACTIONS(8082), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155313] = 2, + [155067] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8322), 3, + ACTIONS(8098), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155323] = 4, - ACTIONS(3535), 1, - anon_sym_LPAREN, - ACTIONS(8326), 1, - anon_sym_DOT, - STATE(2941), 1, - sym_arguments, + [155077] = 4, + ACTIONS(8284), 1, + sym_identifier, + ACTIONS(8286), 1, + anon_sym_LBRACK, + ACTIONS(8288), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155337] = 2, + [155091] = 4, + ACTIONS(5555), 1, + anon_sym_COMMA, + ACTIONS(8278), 1, + anon_sym_RBRACE, + STATE(4972), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8310), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155347] = 2, + [155105] = 3, + ACTIONS(8290), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8280), 3, - sym__automatic_semicolon, + ACTIONS(8292), 2, anon_sym_COMMA, - anon_sym_SEMI, - [155357] = 2, + anon_sym_RBRACE, + [155117] = 4, + ACTIONS(5060), 1, + anon_sym_COMMA, + ACTIONS(8272), 1, + anon_sym_RBRACE, + STATE(4974), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8280), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155367] = 2, + [155131] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8096), 3, + ACTIONS(8098), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155377] = 2, + [155141] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8304), 3, + ACTIONS(8098), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155387] = 2, + [155151] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8365), 3, + ACTIONS(8098), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155397] = 2, + [155161] = 4, + ACTIONS(8294), 1, + sym_identifier, + STATE(3842), 1, + sym_decorator_member_expression, + STATE(5812), 1, + sym_decorator_call_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8367), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [155407] = 2, + [155175] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8187), 3, + ACTIONS(8296), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155417] = 2, + [155185] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8175), 3, + ACTIONS(8298), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_from, anon_sym_SEMI, - [155427] = 2, + [155195] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8340), 3, + ACTIONS(8084), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155437] = 2, + [155205] = 4, + ACTIONS(5555), 1, + anon_sym_COMMA, + ACTIONS(8156), 1, + anon_sym_RBRACE, + STATE(4972), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8310), 3, - sym__automatic_semicolon, + [155219] = 4, + ACTIONS(5060), 1, anon_sym_COMMA, - anon_sym_SEMI, - [155447] = 2, + ACTIONS(8144), 1, + anon_sym_RBRACE, + STATE(4974), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8187), 3, - sym__automatic_semicolon, + [155233] = 4, + ACTIONS(8300), 1, anon_sym_COMMA, - anon_sym_SEMI, - [155457] = 2, + ACTIONS(8303), 1, + anon_sym_RBRACE, + STATE(4746), 1, + aux_sym_export_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8280), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155467] = 2, + [155247] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8280), 3, + ACTIONS(8192), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155477] = 2, + [155257] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8304), 3, + ACTIONS(8305), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155487] = 2, + [155267] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8280), 3, + ACTIONS(8307), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155497] = 4, - ACTIONS(8369), 1, - anon_sym_COMMA, - ACTIONS(8372), 1, - anon_sym_RBRACE, - STATE(4744), 1, - aux_sym_export_clause_repeat1, + [155277] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155511] = 2, + ACTIONS(8309), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155287] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8175), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155521] = 2, + [155297] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8340), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155531] = 2, + [155307] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8355), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155541] = 2, + [155317] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8340), 3, + ACTIONS(8206), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155551] = 2, + [155327] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8280), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155561] = 3, - ACTIONS(8374), 1, - sym_identifier, + [155337] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8376), 2, + ACTIONS(8313), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [155573] = 2, + [155347] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8304), 3, + ACTIONS(8313), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155583] = 2, + [155357] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8340), 3, + ACTIONS(8315), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155593] = 2, + [155367] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8306), 3, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155603] = 2, + [155377] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8306), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155613] = 2, + [155387] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8157), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155623] = 2, + [155397] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8378), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155633] = 2, + [155407] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8355), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155643] = 2, + [155417] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8322), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155653] = 2, + [155427] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8322), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155663] = 2, + [155437] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8380), 3, + ACTIONS(8313), 3, sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [155673] = 4, - ACTIONS(8382), 1, anon_sym_COMMA, - ACTIONS(8384), 1, - anon_sym_RBRACE, - STATE(4659), 1, - aux_sym_export_clause_repeat1, + anon_sym_SEMI, + [155447] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155687] = 3, - ACTIONS(8386), 1, - anon_sym_as, + ACTIONS(8313), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155457] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8388), 2, + ACTIONS(8108), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [155699] = 4, - ACTIONS(4627), 1, - anon_sym_LPAREN, - ACTIONS(8390), 1, - anon_sym_DOT, - STATE(2046), 1, - sym_arguments, + anon_sym_SEMI, + [155467] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155713] = 2, + ACTIONS(8315), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155477] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8340), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155723] = 3, - ACTIONS(8392), 1, - anon_sym_as, + [155487] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6466), 2, + ACTIONS(8311), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [155735] = 3, - ACTIONS(8394), 1, - anon_sym_LBRACE, + anon_sym_SEMI, + [155497] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7785), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [155747] = 2, + ACTIONS(8084), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155507] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8187), 3, + ACTIONS(8192), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155757] = 4, - ACTIONS(6464), 1, - anon_sym_type, - ACTIONS(8396), 1, - sym_identifier, - STATE(5139), 1, - sym__import_identifier, + [155517] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155771] = 2, + ACTIONS(8096), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155527] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8398), 3, + ACTIONS(8317), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155781] = 2, + [155537] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8310), 3, + ACTIONS(8319), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155791] = 2, + [155547] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8096), 3, + ACTIONS(8313), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155801] = 2, + [155557] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8400), 3, + ACTIONS(8206), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155811] = 2, + [155567] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8402), 3, + ACTIONS(8313), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155821] = 4, - ACTIONS(8404), 1, - anon_sym_COMMA, - ACTIONS(8406), 1, - anon_sym_GT, - STATE(4548), 1, - aux_sym_type_parameters_repeat1, + [155577] = 4, + ACTIONS(218), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1534), 1, + anon_sym_LBRACE, + STATE(851), 1, + sym_object_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155835] = 2, + [155591] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8340), 3, + ACTIONS(8319), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155845] = 2, + [155601] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8175), 3, + ACTIONS(8321), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155855] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8408), 1, - sym__glimmer_template_content, - ACTIONS(8410), 1, - sym_glimmer_closing_tag, - STATE(4629), 1, - aux_sym_glimmer_template_repeat1, - [155871] = 4, - ACTIONS(7879), 1, - anon_sym_from, - ACTIONS(8312), 1, - anon_sym_as, - STATE(5293), 1, - sym__from_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [155885] = 4, - ACTIONS(6464), 1, + [155611] = 4, + ACTIONS(6473), 1, anon_sym_type, - ACTIONS(8412), 1, + ACTIONS(8323), 1, sym_identifier, - STATE(5343), 1, + STATE(5329), 1, sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155899] = 4, - ACTIONS(6464), 1, + [155625] = 4, + ACTIONS(6473), 1, anon_sym_type, - ACTIONS(8414), 1, + ACTIONS(8325), 1, sym_identifier, - STATE(5344), 1, + STATE(5330), 1, sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155913] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8355), 3, - sym__automatic_semicolon, + [155639] = 4, + ACTIONS(8327), 1, anon_sym_COMMA, - anon_sym_SEMI, - [155923] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8322), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155933] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8322), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155943] = 4, - ACTIONS(8416), 1, - anon_sym_COMMA, - ACTIONS(8419), 1, + ACTIONS(8330), 1, anon_sym_RBRACE, - STATE(4784), 1, + STATE(4785), 1, aux_sym_named_imports_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155957] = 2, + [155653] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8398), 3, + ACTIONS(8315), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155967] = 4, - ACTIONS(1557), 1, + [155663] = 4, + ACTIONS(1550), 1, anon_sym_DQUOTE, - ACTIONS(1559), 1, + ACTIONS(1552), 1, anon_sym_SQUOTE, - STATE(5562), 1, + STATE(5545), 1, sym_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155981] = 2, + [155677] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8177), 3, + ACTIONS(8313), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155991] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8177), 3, - sym__automatic_semicolon, + [155687] = 4, + ACTIONS(1977), 1, anon_sym_COMMA, - anon_sym_SEMI, - [156001] = 2, + ACTIONS(5358), 1, + anon_sym_RPAREN, + STATE(4698), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8322), 3, - sym__automatic_semicolon, + [155701] = 4, + ACTIONS(1977), 1, anon_sym_COMMA, - anon_sym_SEMI, - [156011] = 4, - ACTIONS(8421), 1, - anon_sym_LPAREN, - ACTIONS(8423), 1, - anon_sym_await, - STATE(36), 1, - sym__for_header, + ACTIONS(5358), 1, + anon_sym_RPAREN, + STATE(4700), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156025] = 2, + [155715] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8310), 3, + ACTIONS(8313), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156035] = 2, + [155725] = 4, + ACTIONS(5555), 1, + anon_sym_COMMA, + ACTIONS(8332), 1, + anon_sym_RBRACE, + STATE(4972), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8322), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156045] = 2, + [155739] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8340), 3, + ACTIONS(8315), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156055] = 2, + [155749] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8106), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156065] = 2, + [155759] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8310), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156075] = 2, + [155769] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8340), 3, + ACTIONS(8313), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156085] = 2, + [155779] = 4, + ACTIONS(2139), 1, + anon_sym_LBRACE, + ACTIONS(8334), 1, + sym_identifier, + STATE(4464), 1, + sym_export_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8355), 3, + [155793] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8321), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156095] = 2, + [155803] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8322), 3, + ACTIONS(8313), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156105] = 2, + [155813] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8096), 3, + ACTIONS(8315), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156115] = 2, + [155823] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8322), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156125] = 4, - ACTIONS(6674), 1, - anon_sym_LPAREN, - ACTIONS(8326), 1, - anon_sym_DOT, - STATE(2941), 1, - sym_arguments, + [155833] = 4, + ACTIONS(5060), 1, + anon_sym_COMMA, + ACTIONS(8336), 1, + anon_sym_RBRACE, + STATE(4974), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156139] = 2, + [155847] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8310), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156149] = 2, + [155857] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8322), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156159] = 3, - ACTIONS(8425), 1, - sym__automatic_semicolon, + [155867] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6737), 2, - anon_sym_in, - anon_sym_of, - [156171] = 2, + ACTIONS(8096), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155877] = 4, + ACTIONS(5060), 1, + anon_sym_COMMA, + ACTIONS(8338), 1, + anon_sym_RBRACE, + STATE(4974), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7242), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [156181] = 2, + [155891] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8169), 3, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156191] = 2, + [155901] = 4, + ACTIONS(6680), 1, + anon_sym_LPAREN, + ACTIONS(8238), 1, + anon_sym_DOT, + STATE(2936), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8096), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156201] = 2, + [155915] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8169), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156211] = 4, - ACTIONS(8427), 1, + [155925] = 4, + ACTIONS(5555), 1, anon_sym_COMMA, - ACTIONS(8430), 1, + ACTIONS(8340), 1, anon_sym_RBRACE, - STATE(4809), 1, - aux_sym_enum_body_repeat1, + STATE(4972), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156225] = 2, + [155939] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8155), 3, + ACTIONS(8313), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156235] = 2, + [155949] = 4, + ACTIONS(5555), 1, + anon_sym_COMMA, + ACTIONS(8342), 1, + anon_sym_RBRACE, + STATE(4972), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8280), 3, + [155963] = 3, + ACTIONS(8344), 1, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156245] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8106), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156255] = 2, + ACTIONS(6778), 2, + anon_sym_in, + anon_sym_of, + [155975] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8280), 3, - sym__automatic_semicolon, + ACTIONS(7105), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [155985] = 4, + ACTIONS(5060), 1, anon_sym_COMMA, - anon_sym_SEMI, - [156265] = 2, + ACTIONS(8346), 1, + anon_sym_RBRACE, + STATE(4974), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8169), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156275] = 2, + [155999] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8322), 3, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156285] = 2, + [156009] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8304), 3, + ACTIONS(8313), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156295] = 2, + [156019] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8402), 3, + ACTIONS(8315), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156305] = 2, + [156029] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8322), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156315] = 2, + [156039] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8310), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156325] = 4, - ACTIONS(3550), 1, - anon_sym_COLON, - ACTIONS(8432), 1, - anon_sym_RPAREN, - STATE(5606), 1, - sym_type_annotation, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [156339] = 4, - ACTIONS(6464), 1, - anon_sym_type, - ACTIONS(8434), 1, - sym_identifier, - STATE(5140), 1, - sym__import_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [156353] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8264), 1, - sym__glimmer_template_content, - ACTIONS(8436), 1, - sym_glimmer_closing_tag, - STATE(4612), 1, - aux_sym_glimmer_template_repeat1, - [156369] = 4, - ACTIONS(5276), 1, - anon_sym_COMMA, - ACTIONS(8438), 1, - anon_sym_RBRACE, - STATE(4970), 1, - aux_sym_object_repeat1, + [156049] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156383] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8322), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156393] = 2, + [156059] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8340), 3, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156403] = 2, + [156069] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8310), 3, + ACTIONS(8319), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156413] = 2, + [156079] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8280), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156423] = 4, - ACTIONS(8440), 1, - sym_identifier, - ACTIONS(8442), 1, - anon_sym_LBRACK, - ACTIONS(8444), 1, - sym_private_property_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [156437] = 2, + [156089] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -267416,2231 +265319,2226 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156447] = 2, + [156099] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7222), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [156457] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8157), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156467] = 2, + [156109] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8280), 3, + ACTIONS(8084), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156477] = 2, + [156119] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8446), 3, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156487] = 4, - ACTIONS(5080), 1, - anon_sym_COMMA, - ACTIONS(8448), 1, - anon_sym_RBRACE, - STATE(4971), 1, - aux_sym_object_pattern_repeat1, + [156129] = 4, + ACTIONS(3557), 1, + anon_sym_COLON, + ACTIONS(8348), 1, + anon_sym_RPAREN, + STATE(5588), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156501] = 2, + [156143] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8340), 3, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156511] = 2, + [156153] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8096), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156521] = 2, + [156163] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8450), 3, + ACTIONS(8313), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156531] = 2, + [156173] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8169), 3, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156541] = 2, + [156183] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8304), 3, + ACTIONS(8313), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156551] = 2, + [156193] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8446), 3, + ACTIONS(8315), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156561] = 2, + [156203] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8280), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156571] = 4, - ACTIONS(6759), 1, - anon_sym_RBRACE, - ACTIONS(8452), 1, - anon_sym_COMMA, - STATE(4784), 1, - aux_sym_named_imports_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [156585] = 2, + [156213] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8355), 3, + ACTIONS(8206), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156595] = 2, + [156223] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8454), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156605] = 2, + [156233] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8446), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156615] = 2, + [156243] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8322), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156625] = 2, + [156253] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8169), 3, + ACTIONS(8313), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156635] = 2, + [156263] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8456), 3, + ACTIONS(8084), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156645] = 3, - ACTIONS(8458), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8460), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [156657] = 2, + [156273] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8322), 3, + ACTIONS(8313), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156667] = 2, + [156283] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8456), 3, + ACTIONS(8319), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156677] = 2, + [156293] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8462), 3, + ACTIONS(8315), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156687] = 2, + [156303] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8280), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156697] = 2, + [156313] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8322), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156707] = 2, + [156323] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8304), 3, + ACTIONS(8350), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156717] = 2, + [156333] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8306), 3, + ACTIONS(8352), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156727] = 2, + [156343] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8306), 3, + ACTIONS(8319), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156737] = 2, + [156353] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8306), 3, + ACTIONS(8317), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156747] = 2, + [156363] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8306), 3, + ACTIONS(8313), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156757] = 2, + [156373] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8322), 3, + ACTIONS(8313), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156767] = 2, + [156383] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8310), 3, + ACTIONS(8315), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156777] = 2, + [156393] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8280), 3, + ACTIONS(8352), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156787] = 2, + [156403] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8340), 3, + ACTIONS(8313), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156797] = 4, - ACTIONS(1679), 1, - anon_sym_RPAREN, - ACTIONS(8464), 1, - anon_sym_COMMA, - STATE(4683), 1, - aux_sym_formal_parameters_repeat1, + [156413] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156811] = 2, + ACTIONS(8313), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156423] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8096), 3, + ACTIONS(8084), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156821] = 4, - ACTIONS(1976), 1, - anon_sym_COMMA, - ACTIONS(5560), 1, - anon_sym_RPAREN, - STATE(4700), 1, - aux_sym_array_repeat1, + [156433] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156835] = 2, + ACTIONS(8354), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156443] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8155), 3, + ACTIONS(8352), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156845] = 2, + [156453] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8157), 3, + ACTIONS(8315), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156855] = 2, + [156463] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8340), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156865] = 2, + [156473] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8157), 3, + ACTIONS(8356), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156875] = 2, + [156483] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8355), 3, + ACTIONS(8076), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156885] = 2, + [156493] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8322), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156895] = 2, + [156503] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8466), 3, + ACTIONS(8356), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156905] = 2, + [156513] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8169), 3, + ACTIONS(8358), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156915] = 2, + [156523] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8468), 3, + ACTIONS(8313), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156925] = 4, - ACTIONS(2482), 1, - anon_sym_LBRACE, - ACTIONS(8470), 1, - anon_sym_LPAREN, - STATE(796), 1, - sym_statement_block, + [156533] = 4, + ACTIONS(1688), 1, + anon_sym_RPAREN, + ACTIONS(8360), 1, + anon_sym_COMMA, + STATE(4896), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156939] = 2, + [156547] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8304), 3, + ACTIONS(8313), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156949] = 2, + [156557] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8322), 3, + ACTIONS(8315), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156959] = 2, + [156567] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8155), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156969] = 3, - ACTIONS(7068), 1, - anon_sym_DOT, + [156577] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8472), 2, + ACTIONS(8311), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [156981] = 2, + [156587] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8474), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156991] = 2, + [156597] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8157), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157001] = 2, + [156607] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8365), 3, + ACTIONS(8313), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157011] = 4, - ACTIONS(5080), 1, - anon_sym_COMMA, - ACTIONS(8171), 1, - anon_sym_RBRACE, - STATE(4971), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [157025] = 2, + [156617] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8340), 3, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157035] = 2, + [156627] = 4, + ACTIONS(3514), 1, + anon_sym_LPAREN, + ACTIONS(8238), 1, + anon_sym_DOT, + STATE(2936), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8476), 3, - anon_sym_LBRACE, + [156641] = 4, + ACTIONS(5225), 1, anon_sym_COMMA, - anon_sym_implements, - [157045] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + ACTIONS(8362), 1, + anon_sym_RBRACK, + STATE(4997), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8478), 1, - sym__glimmer_template_content, - ACTIONS(8480), 1, - sym_glimmer_closing_tag, - STATE(4822), 1, - aux_sym_glimmer_template_repeat1, - [157061] = 2, + sym_comment, + [156655] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8155), 3, + ACTIONS(8364), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157071] = 2, + [156665] = 3, + ACTIONS(8366), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8310), 3, - sym__automatic_semicolon, + ACTIONS(8368), 2, anon_sym_COMMA, - anon_sym_SEMI, - [157081] = 2, + anon_sym_RBRACE, + [156677] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8340), 3, + ACTIONS(8370), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_from, anon_sym_SEMI, - [157091] = 2, + [156687] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8106), 3, + ACTIONS(8313), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157101] = 2, + [156697] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8169), 3, + ACTIONS(8146), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157111] = 2, + [156707] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8355), 3, + ACTIONS(8315), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157121] = 2, + [156717] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8340), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157131] = 4, - ACTIONS(7476), 1, + [156727] = 4, + ACTIONS(6787), 1, + anon_sym_RBRACE, + ACTIONS(8372), 1, anon_sym_COMMA, - ACTIONS(8482), 1, - anon_sym_LBRACE, - STATE(4434), 1, - aux_sym_implements_clause_repeat1, + STATE(4746), 1, + aux_sym_export_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157145] = 2, + [156741] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8310), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157155] = 2, + [156751] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8340), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157165] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8175), 3, - sym__automatic_semicolon, + [156761] = 4, + ACTIONS(1910), 1, anon_sym_COMMA, - anon_sym_SEMI, - [157175] = 4, - ACTIONS(5276), 1, - anon_sym_COMMA, - ACTIONS(8484), 1, - anon_sym_RBRACE, - STATE(4945), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [157189] = 4, - ACTIONS(5276), 1, - anon_sym_COMMA, - ACTIONS(8484), 1, - anon_sym_RBRACE, - STATE(4970), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [157203] = 4, - ACTIONS(8486), 1, - anon_sym_COMMA, - ACTIONS(8488), 1, - anon_sym_RPAREN, - STATE(4949), 1, - aux_sym_formal_parameters_repeat1, + ACTIONS(8374), 1, + anon_sym_RBRACK, + STATE(4998), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157217] = 4, - ACTIONS(5276), 1, - anon_sym_COMMA, - ACTIONS(8490), 1, - anon_sym_RBRACE, - STATE(4970), 1, - aux_sym_object_repeat1, + [156775] = 3, + ACTIONS(8376), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157231] = 2, + ACTIONS(7758), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [156787] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8280), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157241] = 2, + [156797] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8355), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157251] = 2, + [156807] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8322), 3, - sym__automatic_semicolon, + ACTIONS(8378), 3, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [157261] = 2, + anon_sym_implements, + [156817] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8280), 3, + ACTIONS(8311), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157271] = 4, - ACTIONS(8492), 1, + [156827] = 4, + ACTIONS(8380), 1, anon_sym_COMMA, - ACTIONS(8494), 1, - anon_sym_RBRACK, - STATE(4648), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(8383), 1, + anon_sym_RPAREN, + STATE(4896), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157285] = 4, - ACTIONS(5080), 1, + [156841] = 4, + ACTIONS(4852), 1, + anon_sym_RPAREN, + ACTIONS(8385), 1, anon_sym_COMMA, - ACTIONS(8496), 1, - anon_sym_RBRACE, - STATE(4971), 1, - aux_sym_object_pattern_repeat1, + STATE(4897), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157299] = 2, + [156855] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8304), 3, + ACTIONS(8388), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157309] = 2, + [156865] = 4, + ACTIONS(8390), 1, + anon_sym_COMMA, + ACTIONS(8392), 1, + anon_sym_RPAREN, + STATE(4869), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8322), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157319] = 2, + [156879] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8340), 3, + ACTIONS(8394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157329] = 2, + [156889] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8310), 3, + ACTIONS(8394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157339] = 3, - ACTIONS(7030), 1, - anon_sym_DOT, + [156899] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8472), 2, + ACTIONS(8394), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [157351] = 4, - ACTIONS(7937), 1, - sym_identifier, - ACTIONS(7939), 1, - anon_sym_const, - STATE(4972), 1, - sym_type_parameter, + [156909] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157365] = 2, + ACTIONS(8394), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156919] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8340), 3, + ACTIONS(8396), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157375] = 4, - ACTIONS(5080), 1, + [156929] = 4, + ACTIONS(7444), 1, anon_sym_COMMA, - ACTIONS(8498), 1, - anon_sym_RBRACE, - STATE(4971), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(8398), 1, + anon_sym_LBRACE, + STATE(4423), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157389] = 2, + [156943] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8355), 3, + ACTIONS(8396), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157399] = 2, + [156953] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8310), 3, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157409] = 4, - ACTIONS(2292), 1, - anon_sym_LBRACE, - ACTIONS(8500), 1, - sym_identifier, - STATE(4509), 1, - sym_export_clause, + [156963] = 4, + ACTIONS(8400), 1, + anon_sym_COMMA, + ACTIONS(8402), 1, + anon_sym_GT, + STATE(4713), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157423] = 2, + [156977] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8502), 3, + ACTIONS(8404), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157433] = 2, + [156987] = 4, + ACTIONS(5555), 1, + anon_sym_COMMA, + ACTIONS(8406), 1, + anon_sym_RBRACE, + STATE(4961), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8322), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157443] = 2, + [157001] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8322), 3, + ACTIONS(8394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157453] = 2, + [157011] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8310), 3, + ACTIONS(8394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157463] = 4, - ACTIONS(3519), 1, - anon_sym_LPAREN, - ACTIONS(8504), 1, - anon_sym_DOT, - STATE(3191), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [157477] = 2, + [157021] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8322), 3, + ACTIONS(8394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157487] = 2, + [157031] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8322), 3, + ACTIONS(8394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157497] = 2, + [157041] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8310), 3, + ACTIONS(8394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157507] = 2, + [157051] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8096), 3, + ACTIONS(8394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157517] = 2, + [157061] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8280), 3, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157527] = 4, - ACTIONS(5276), 1, - anon_sym_COMMA, - ACTIONS(8506), 1, - anon_sym_RBRACE, - STATE(4970), 1, - aux_sym_object_repeat1, + [157071] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157541] = 2, + ACTIONS(8394), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157081] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8280), 3, + ACTIONS(8394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157551] = 2, + [157091] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8175), 3, + ACTIONS(8394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157561] = 2, + [157101] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8155), 3, + ACTIONS(8394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157571] = 2, + [157111] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7220), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [157581] = 2, + ACTIONS(8394), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157121] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8304), 3, + ACTIONS(8394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157591] = 2, + [157131] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8169), 3, + ACTIONS(8396), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157601] = 4, - ACTIONS(8508), 1, + [157141] = 4, + ACTIONS(5555), 1, anon_sym_COMMA, - ACTIONS(8511), 1, - anon_sym_RBRACK, - STATE(4937), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(8406), 1, + anon_sym_RBRACE, + STATE(4972), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157615] = 2, + [157155] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8340), 3, + ACTIONS(8396), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157625] = 3, - ACTIONS(4173), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4175), 2, + [157165] = 4, + ACTIONS(1910), 1, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [157637] = 2, + ACTIONS(8001), 1, + anon_sym_RBRACK, + STATE(4890), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8513), 3, - sym__template_chars, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [157647] = 2, + [157179] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8310), 3, + ACTIONS(8404), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157657] = 3, - ACTIONS(4271), 1, - anon_sym_LBRACE, + [157189] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4273), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [157669] = 4, - ACTIONS(5276), 1, + ACTIONS(8394), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8515), 1, - anon_sym_RBRACE, - STATE(4970), 1, - aux_sym_object_repeat1, + anon_sym_SEMI, + [157199] = 3, + ACTIONS(7877), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157683] = 2, + ACTIONS(8408), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [157211] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8310), 3, + ACTIONS(8394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157693] = 4, - ACTIONS(5276), 1, - anon_sym_COMMA, - ACTIONS(8517), 1, - anon_sym_RBRACE, - STATE(4970), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [157707] = 4, - ACTIONS(7937), 1, - sym_identifier, - ACTIONS(7939), 1, - anon_sym_const, - STATE(5286), 1, - sym_type_parameter, + [157221] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157721] = 2, + ACTIONS(8394), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157231] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8280), 3, + ACTIONS(8394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157731] = 2, + [157241] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8169), 3, + ACTIONS(8394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157741] = 4, - ACTIONS(1687), 1, - anon_sym_RPAREN, - ACTIONS(8519), 1, - anon_sym_COMMA, - STATE(4683), 1, - aux_sym_formal_parameters_repeat1, + [157251] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157755] = 2, + ACTIONS(7201), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [157261] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8187), 3, + ACTIONS(8394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157765] = 2, + [157271] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8280), 3, + ACTIONS(8394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157775] = 2, + [157281] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8096), 3, + ACTIONS(8394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157785] = 4, - ACTIONS(8521), 1, + [157291] = 4, + ACTIONS(8410), 1, anon_sym_COMMA, - ACTIONS(8523), 1, - anon_sym_RBRACE, - STATE(4809), 1, - aux_sym_enum_body_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [157799] = 2, + ACTIONS(8412), 1, + anon_sym_RPAREN, + STATE(4964), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8304), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157809] = 2, + [157305] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8280), 3, + ACTIONS(8414), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157819] = 2, + [157315] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8280), 3, + ACTIONS(8414), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157829] = 4, - ACTIONS(8525), 1, - anon_sym_COMMA, - ACTIONS(8527), 1, - anon_sym_RBRACE, - STATE(4809), 1, - aux_sym_enum_body_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [157843] = 2, + [157325] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8175), 3, + ACTIONS(8414), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157853] = 2, + [157335] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8304), 3, + ACTIONS(8414), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157863] = 2, + [157345] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8306), 3, + ACTIONS(8076), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157873] = 2, + [157355] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8306), 3, + ACTIONS(8084), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157883] = 4, - ACTIONS(5080), 1, + [157365] = 4, + ACTIONS(5225), 1, anon_sym_COMMA, - ACTIONS(8529), 1, - anon_sym_RBRACE, - STATE(4971), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(5227), 1, + anon_sym_RBRACK, + STATE(4879), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157897] = 2, + [157379] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8340), 3, + ACTIONS(8319), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157907] = 2, + [157389] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8096), 3, + ACTIONS(8319), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157917] = 4, - ACTIONS(5276), 1, + [157399] = 4, + ACTIONS(8416), 1, anon_sym_COMMA, - ACTIONS(8531), 1, - anon_sym_RBRACE, - STATE(4970), 1, - aux_sym_object_repeat1, + ACTIONS(8419), 1, + anon_sym_RBRACK, + STATE(4949), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157931] = 2, + [157413] = 4, + ACTIONS(3528), 1, + anon_sym_LPAREN, + ACTIONS(8421), 1, + anon_sym_DOT, + STATE(3206), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8310), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157941] = 2, + [157427] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8355), 3, + ACTIONS(8350), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157951] = 2, + [157437] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8533), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [157961] = 2, + ACTIONS(8423), 3, + sym__template_chars, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [157447] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8157), 3, + ACTIONS(8319), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157971] = 4, - ACTIONS(8535), 1, - anon_sym_COMMA, - ACTIONS(8538), 1, - anon_sym_RBRACE, - STATE(4970), 1, - aux_sym_object_repeat1, + [157457] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157985] = 4, - ACTIONS(8540), 1, + ACTIONS(8319), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8543), 1, - anon_sym_RBRACE, - STATE(4971), 1, - aux_sym_object_pattern_repeat1, + anon_sym_SEMI, + [157467] = 4, + ACTIONS(5225), 1, + anon_sym_COMMA, + ACTIONS(5227), 1, + anon_sym_RBRACK, + STATE(4997), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157999] = 4, - ACTIONS(8545), 1, + [157481] = 4, + ACTIONS(8425), 1, anon_sym_COMMA, - ACTIONS(8547), 1, - anon_sym_GT, - STATE(5058), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(8427), 1, + anon_sym_RBRACK, + STATE(4620), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158013] = 2, + [157495] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8280), 3, + ACTIONS(8429), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158023] = 4, - ACTIONS(6604), 1, - anon_sym_AMP, - ACTIONS(6606), 1, - anon_sym_PIPE, - ACTIONS(6608), 1, - anon_sym_extends, + [157505] = 4, + ACTIONS(7881), 1, + sym_identifier, + ACTIONS(7883), 1, + anon_sym_const, + STATE(5244), 1, + sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158037] = 2, + [157519] = 4, + ACTIONS(5060), 1, + anon_sym_COMMA, + ACTIONS(8431), 1, + anon_sym_RBRACE, + STATE(4974), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8280), 3, - sym__automatic_semicolon, + [157533] = 4, + ACTIONS(5555), 1, anon_sym_COMMA, - anon_sym_SEMI, - [158047] = 4, - ACTIONS(8549), 1, + ACTIONS(8433), 1, + anon_sym_RBRACE, + STATE(4972), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157547] = 4, + ACTIONS(5555), 1, anon_sym_COMMA, - ACTIONS(8551), 1, - anon_sym_RBRACK, - STATE(5030), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(8435), 1, + anon_sym_RBRACE, + STATE(4972), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158061] = 2, + [157561] = 4, + ACTIONS(8437), 1, + anon_sym_COMMA, + ACTIONS(8439), 1, + anon_sym_RBRACE, + STATE(4973), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7114), 3, - anon_sym_LBRACK, - sym_identifier, - sym_private_property_identifier, - [158071] = 2, + [157575] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8304), 3, + ACTIONS(8441), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158081] = 2, + [157585] = 4, + ACTIONS(1702), 1, + anon_sym_RPAREN, + ACTIONS(8443), 1, + anon_sym_COMMA, + STATE(4896), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8155), 3, - sym__automatic_semicolon, + [157599] = 4, + ACTIONS(5555), 1, anon_sym_COMMA, - anon_sym_SEMI, - [158091] = 2, + ACTIONS(8445), 1, + anon_sym_RBRACE, + STATE(4972), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8280), 3, - sym__automatic_semicolon, + [157613] = 4, + ACTIONS(8447), 1, anon_sym_COMMA, - anon_sym_SEMI, - [158101] = 2, + ACTIONS(8449), 1, + anon_sym_RBRACE, + STATE(4973), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8322), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158111] = 2, + [157627] = 4, + ACTIONS(2483), 1, + anon_sym_LBRACE, + ACTIONS(8451), 1, + anon_sym_LPAREN, + STATE(809), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8322), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158121] = 2, + [157641] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8280), 3, + ACTIONS(8453), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158131] = 4, - ACTIONS(6709), 1, - anon_sym_AMP, - ACTIONS(6713), 1, - anon_sym_extends, - ACTIONS(7575), 1, - anon_sym_PIPE, + [157651] = 4, + ACTIONS(1910), 1, + anon_sym_COMMA, + ACTIONS(7879), 1, + anon_sym_RBRACK, + STATE(4990), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158145] = 2, + [157665] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8502), 3, + ACTIONS(8319), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158155] = 2, + [157675] = 4, + ACTIONS(5225), 1, + anon_sym_COMMA, + ACTIONS(5489), 1, + anon_sym_RBRACK, + STATE(4987), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8304), 3, - sym__automatic_semicolon, + [157689] = 4, + ACTIONS(8455), 1, anon_sym_COMMA, - anon_sym_SEMI, - [158165] = 2, + ACTIONS(8458), 1, + anon_sym_RBRACE, + STATE(4972), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8322), 3, - sym__automatic_semicolon, + [157703] = 4, + ACTIONS(8460), 1, anon_sym_COMMA, - anon_sym_SEMI, - [158175] = 2, + ACTIONS(8463), 1, + anon_sym_RBRACE, + STATE(4973), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8322), 3, - sym__automatic_semicolon, + [157717] = 4, + ACTIONS(8465), 1, anon_sym_COMMA, - anon_sym_SEMI, - [158185] = 2, + ACTIONS(8468), 1, + anon_sym_RBRACE, + STATE(4974), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8306), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158195] = 4, - ACTIONS(8553), 1, + [157731] = 4, + ACTIONS(5225), 1, anon_sym_COMMA, - ACTIONS(8555), 1, - anon_sym_RBRACE, - STATE(4842), 1, - aux_sym_named_imports_repeat1, + ACTIONS(5489), 1, + anon_sym_RBRACK, + STATE(4997), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158209] = 2, + [157745] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6466), 3, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(8470), 3, + sym__automatic_semicolon, anon_sym_from, - [158219] = 2, + anon_sym_SEMI, + [157755] = 4, + ACTIONS(1910), 1, + anon_sym_COMMA, + ACTIONS(7879), 1, + anon_sym_RBRACK, + STATE(4998), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8306), 3, + [157769] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8441), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158229] = 3, - ACTIONS(8557), 1, - anon_sym_EQ, + [157779] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8274), 2, - anon_sym_COMMA, - anon_sym_from, - [158241] = 4, - ACTIONS(3236), 1, - anon_sym_GT, - ACTIONS(8559), 1, + ACTIONS(8150), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(4434), 1, - aux_sym_implements_clause_repeat1, + anon_sym_SEMI, + [157789] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158255] = 2, + ACTIONS(5718), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [157799] = 4, + ACTIONS(4998), 1, + anon_sym_extends, + ACTIONS(8472), 1, + anon_sym_AMP, + ACTIONS(8474), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8096), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158265] = 4, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(8561), 1, + [157813] = 3, + ACTIONS(7877), 1, anon_sym_EQ, - STATE(5640), 1, - sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158279] = 2, + ACTIONS(8476), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [157825] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8322), 3, + ACTIONS(8478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158289] = 4, - ACTIONS(1681), 1, - anon_sym_RPAREN, - ACTIONS(8563), 1, - anon_sym_COMMA, - STATE(4683), 1, - aux_sym_formal_parameters_repeat1, + [157835] = 3, + ACTIONS(8480), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158303] = 2, + ACTIONS(8482), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [157847] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8565), 3, + ACTIONS(8076), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158313] = 4, - ACTIONS(1976), 1, - anon_sym_COMMA, - ACTIONS(5421), 1, - anon_sym_RPAREN, - STATE(5036), 1, - aux_sym_array_repeat1, + [157857] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158327] = 4, - ACTIONS(1976), 1, + ACTIONS(8192), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5421), 1, - anon_sym_RPAREN, - STATE(4695), 1, + anon_sym_SEMI, + [157867] = 4, + ACTIONS(5225), 1, + anon_sym_COMMA, + ACTIONS(8484), 1, + anon_sym_RBRACK, + STATE(4997), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158341] = 2, + [157881] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8169), 3, + ACTIONS(8486), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158351] = 2, + [157891] = 3, + ACTIONS(8488), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8322), 3, - sym__automatic_semicolon, + ACTIONS(6475), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158361] = 4, - ACTIONS(5222), 1, + anon_sym_RBRACE, + [157903] = 4, + ACTIONS(1910), 1, anon_sym_COMMA, - ACTIONS(8567), 1, + ACTIONS(8490), 1, anon_sym_RBRACK, - STATE(4583), 1, - aux_sym_array_repeat1, + STATE(4998), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158375] = 2, + [157917] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8096), 3, + ACTIONS(8492), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158385] = 4, - ACTIONS(1903), 1, - anon_sym_COMMA, - ACTIONS(8569), 1, - anon_sym_RBRACK, - STATE(4610), 1, - aux_sym_array_pattern_repeat1, + [157927] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158399] = 4, - ACTIONS(8571), 1, - sym_identifier, - ACTIONS(8573), 1, - anon_sym_LBRACK, - ACTIONS(8575), 1, - sym_private_property_identifier, + ACTIONS(6475), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_from, + [157937] = 3, + ACTIONS(8494), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158413] = 4, - ACTIONS(8577), 1, + ACTIONS(8088), 2, + anon_sym_COMMA, + anon_sym_from, + [157949] = 4, + ACTIONS(6473), 1, + anon_sym_type, + ACTIONS(8496), 1, sym_identifier, - ACTIONS(8579), 1, - anon_sym_LBRACK, - ACTIONS(8581), 1, - sym_private_property_identifier, + STATE(5462), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158427] = 2, + [157963] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8583), 3, + ACTIONS(8192), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158437] = 4, - ACTIONS(8585), 1, + [157973] = 4, + ACTIONS(7881), 1, sym_identifier, - ACTIONS(8587), 1, - anon_sym_LBRACK, - ACTIONS(8589), 1, - sym_private_property_identifier, + ACTIONS(7883), 1, + anon_sym_const, + STATE(4908), 1, + sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158451] = 2, + [157987] = 4, + ACTIONS(5718), 1, + anon_sym_RBRACK, + ACTIONS(8498), 1, + anon_sym_COMMA, + STATE(4997), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8155), 3, - sym__automatic_semicolon, + [158001] = 4, + ACTIONS(8476), 1, + anon_sym_RBRACK, + ACTIONS(8501), 1, anon_sym_COMMA, - anon_sym_SEMI, - [158461] = 2, + STATE(4998), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8591), 3, - sym__automatic_semicolon, + [158015] = 4, + ACTIONS(8504), 1, anon_sym_COMMA, - anon_sym_SEMI, - [158471] = 4, - ACTIONS(8593), 1, - sym_identifier, - ACTIONS(8595), 1, - anon_sym_LBRACK, - ACTIONS(8597), 1, - sym_private_property_identifier, + ACTIONS(8506), 1, + anon_sym_RBRACK, + STATE(5052), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158485] = 2, + [158029] = 4, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(8508), 1, + anon_sym_EQ, + STATE(5628), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8599), 3, + [158043] = 4, + ACTIONS(6698), 1, + anon_sym_AMP, + ACTIONS(6702), 1, + anon_sym_extends, + ACTIONS(7557), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [158057] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8206), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158495] = 3, - ACTIONS(7238), 1, + [158067] = 3, + ACTIONS(7745), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3699), 2, + ACTIONS(3684), 2, anon_sym_in, anon_sym_of, - [158507] = 2, + [158079] = 3, + ACTIONS(8510), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8155), 3, - sym__automatic_semicolon, + ACTIONS(8088), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158517] = 2, + anon_sym_RBRACE, + [158091] = 4, + ACTIONS(2499), 1, + anon_sym_LT, + ACTIONS(8512), 1, + anon_sym_EQ, + STATE(5614), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8601), 3, - sym__automatic_semicolon, + [158105] = 4, + ACTIONS(3241), 1, + anon_sym_GT, + ACTIONS(8514), 1, anon_sym_COMMA, - anon_sym_SEMI, - [158527] = 2, + STATE(4423), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8096), 3, + [158119] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8478), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158537] = 4, - ACTIONS(7184), 1, - anon_sym_AMP, - ACTIONS(7186), 1, - anon_sym_PIPE, - ACTIONS(7188), 1, - anon_sym_extends, + [158129] = 4, + ACTIONS(1977), 1, + anon_sym_COMMA, + ACTIONS(5362), 1, + anon_sym_RPAREN, + STATE(5062), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158551] = 2, + [158143] = 3, + ACTIONS(8516), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8169), 3, + ACTIONS(8518), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [158561] = 2, + [158155] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8603), 3, + ACTIONS(8520), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158571] = 2, + [158165] = 4, + ACTIONS(1977), 1, + anon_sym_COMMA, + ACTIONS(5362), 1, + anon_sym_RPAREN, + STATE(4700), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8565), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158581] = 2, + [158179] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8599), 3, + ACTIONS(8522), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158591] = 2, + [158189] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8402), 3, - sym__automatic_semicolon, + ACTIONS(7221), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [158199] = 4, + ACTIONS(1686), 1, + anon_sym_RPAREN, + ACTIONS(8524), 1, anon_sym_COMMA, - anon_sym_SEMI, - [158601] = 2, + STATE(4896), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8175), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158611] = 2, + [158213] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8157), 3, + ACTIONS(8522), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158621] = 2, + [158223] = 4, + ACTIONS(3247), 1, + anon_sym_GT, + ACTIONS(8526), 1, + anon_sym_COMMA, + STATE(4423), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8605), 3, + [158237] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8528), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158631] = 4, - ACTIONS(8607), 1, + [158247] = 4, + ACTIONS(6473), 1, + anon_sym_type, + ACTIONS(8530), 1, sym_identifier, - ACTIONS(8609), 1, - anon_sym_require, - STATE(4913), 1, - sym_nested_identifier, + STATE(5313), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158645] = 2, + [158261] = 3, + ACTIONS(7193), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8603), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158655] = 4, - ACTIONS(2974), 1, - anon_sym_RBRACK, - ACTIONS(8611), 1, + ACTIONS(3684), 2, + anon_sym_in, + anon_sym_of, + [158273] = 4, + ACTIONS(6726), 1, + anon_sym_RBRACE, + ACTIONS(8532), 1, anon_sym_COMMA, - STATE(4937), 1, - aux_sym_tuple_type_repeat1, + STATE(4785), 1, + aux_sym_named_imports_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158669] = 2, + [158287] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8603), 3, + ACTIONS(6064), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158679] = 2, + [158297] = 4, + ACTIONS(7095), 1, + anon_sym_AMP, + ACTIONS(7097), 1, + anon_sym_PIPE, + ACTIONS(7099), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8613), 3, - sym__automatic_semicolon, + [158311] = 4, + ACTIONS(1910), 1, anon_sym_COMMA, - anon_sym_SEMI, - [158689] = 2, + ACTIONS(8001), 1, + anon_sym_RBRACK, + STATE(4998), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8603), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158699] = 2, + [158325] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8615), 3, + ACTIONS(8534), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158709] = 2, + [158335] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8591), 3, + ACTIONS(8098), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158719] = 4, - ACTIONS(1976), 1, + [158345] = 4, + ACTIONS(4869), 1, anon_sym_COMMA, - ACTIONS(8617), 1, + ACTIONS(7318), 1, anon_sym_RPAREN, - STATE(4695), 1, - aux_sym_array_repeat1, + STATE(4897), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158733] = 4, - ACTIONS(3252), 1, - anon_sym_GT, - ACTIONS(8619), 1, - anon_sym_COMMA, - STATE(4434), 1, - aux_sym_implements_clause_repeat1, + [158359] = 4, + ACTIONS(8536), 1, + sym_identifier, + ACTIONS(8538), 1, + anon_sym_LBRACK, + ACTIONS(8540), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158747] = 2, + [158373] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8621), 3, + ACTIONS(8076), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158757] = 2, + [158383] = 4, + ACTIONS(8542), 1, + anon_sym_COMMA, + ACTIONS(8544), 1, + anon_sym_RBRACE, + STATE(5020), 1, + aux_sym_named_imports_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8623), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158767] = 2, + [158397] = 4, + ACTIONS(8546), 1, + sym_identifier, + ACTIONS(8548), 1, + anon_sym_LBRACK, + ACTIONS(8550), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8625), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158777] = 2, + [158411] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8623), 3, + ACTIONS(8552), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158787] = 2, + [158421] = 4, + ACTIONS(8554), 1, + sym_identifier, + ACTIONS(8556), 1, + anon_sym_LBRACK, + ACTIONS(8558), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8155), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158797] = 2, + [158435] = 4, + ACTIONS(8560), 1, + sym_identifier, + ACTIONS(8562), 1, + anon_sym_LBRACK, + ACTIONS(8564), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8615), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158807] = 2, + [158449] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8627), 3, + ACTIONS(8098), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158817] = 2, + [158459] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8629), 3, + ACTIONS(8080), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158827] = 2, + [158469] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8155), 3, + ACTIONS(8520), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158837] = 2, + [158479] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8155), 3, + ACTIONS(8566), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158847] = 2, + [158489] = 4, + ACTIONS(7885), 1, + anon_sym_GT, + ACTIONS(8568), 1, + anon_sym_COMMA, + STATE(4684), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8096), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158857] = 2, + [158503] = 3, + ACTIONS(7067), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8096), 3, + ACTIONS(8570), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [158867] = 2, + [158515] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8155), 3, + ACTIONS(8080), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158877] = 2, + [158525] = 3, + ACTIONS(7069), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8157), 3, + ACTIONS(8570), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [158887] = 2, + [158537] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8155), 3, + ACTIONS(8096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158897] = 2, + [158547] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8155), 3, + ACTIONS(8082), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158907] = 2, + [158557] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8155), 3, + ACTIONS(8572), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158917] = 2, + [158567] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8155), 3, + ACTIONS(8574), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158927] = 2, + [158577] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8106), 3, + ACTIONS(8522), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158937] = 2, + [158587] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8096), 3, + ACTIONS(8566), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158947] = 4, - ACTIONS(8019), 1, - anon_sym_GT, - ACTIONS(8631), 1, - anon_sym_COMMA, - STATE(4681), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [158961] = 2, + [158597] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8633), 3, + ACTIONS(8076), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158971] = 2, + [158607] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8635), 3, + ACTIONS(8576), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158981] = 2, + [158617] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8096), 3, + ACTIONS(8098), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158991] = 2, + [158627] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8157), 3, + ACTIONS(8192), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159001] = 2, + [158637] = 4, + ACTIONS(2833), 1, + anon_sym_RBRACK, + ACTIONS(8578), 1, + anon_sym_COMMA, + STATE(4949), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8155), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159011] = 2, + [158651] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8155), 3, + ACTIONS(8580), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159021] = 2, + [158661] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8603), 3, + ACTIONS(8582), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159031] = 2, + [158671] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8603), 3, + ACTIONS(8192), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159041] = 2, + [158681] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8106), 3, + ACTIONS(7707), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159051] = 2, + [158691] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8096), 3, + ACTIONS(8206), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159061] = 2, + [158701] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8096), 3, + ACTIONS(8580), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159071] = 2, + [158711] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8157), 3, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159081] = 2, + [158721] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8096), 3, + ACTIONS(8584), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159091] = 2, + [158731] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8096), 3, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159101] = 2, + [158741] = 4, + ACTIONS(1977), 1, + anon_sym_COMMA, + ACTIONS(8586), 1, + anon_sym_RPAREN, + STATE(4700), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [158755] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8157), 3, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159111] = 2, + [158765] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8155), 3, + ACTIONS(8084), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159121] = 2, + [158775] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8155), 3, + ACTIONS(8588), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159131] = 2, + [158785] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8096), 3, + ACTIONS(8319), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159141] = 2, + [158795] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8599), 3, + ACTIONS(8319), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159151] = 2, + [158805] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8096), 3, + ACTIONS(8098), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159161] = 2, + [158815] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8157), 3, + ACTIONS(8098), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159171] = 2, + [158825] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8155), 3, + ACTIONS(8096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159181] = 2, + [158835] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8155), 3, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159191] = 2, + [158845] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8155), 3, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159201] = 2, + [158855] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8155), 3, + ACTIONS(8084), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159211] = 2, + [158865] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8603), 3, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159221] = 2, + [158875] = 3, + ACTIONS(4391), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8603), 3, - sym__automatic_semicolon, + ACTIONS(4393), 2, anon_sym_COMMA, - anon_sym_SEMI, - [159231] = 2, + anon_sym_LBRACE_PIPE, + [158887] = 3, + ACTIONS(4174), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8637), 3, - sym__automatic_semicolon, + ACTIONS(4176), 2, anon_sym_COMMA, - anon_sym_SEMI, - [159241] = 2, + anon_sym_LBRACE_PIPE, + [158899] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8603), 3, + ACTIONS(8572), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159251] = 2, + [158909] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8603), 3, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159261] = 2, + [158919] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8106), 3, + ACTIONS(8084), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159271] = 2, + [158929] = 4, + ACTIONS(6833), 1, + anon_sym_implements, + ACTIONS(8590), 1, + anon_sym_LBRACE, + STATE(5735), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [158943] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8633), 3, + ACTIONS(8319), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159281] = 2, + [158953] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8603), 3, + ACTIONS(8076), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159291] = 2, + [158963] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8603), 3, + ACTIONS(8319), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159301] = 2, + [158973] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8591), 3, + ACTIONS(8520), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159311] = 2, + [158983] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -269648,5440 +267546,5412 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159321] = 2, + [158993] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8603), 3, + ACTIONS(8098), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159331] = 2, + [159003] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8096), 3, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159341] = 2, + [159013] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8603), 3, + ACTIONS(8080), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159351] = 2, + [159023] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8603), 3, + ACTIONS(8146), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159361] = 2, + [159033] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8189), 3, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159371] = 2, + [159043] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8157), 3, + ACTIONS(8084), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159381] = 2, + [159053] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8603), 3, + ACTIONS(8096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159391] = 2, + [159063] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8623), 3, + ACTIONS(8146), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159401] = 2, + [159073] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8106), 3, + ACTIONS(8076), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159411] = 2, + [159083] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8623), 3, + ACTIONS(8096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159421] = 3, - ACTIONS(8639), 1, + [159093] = 3, + ACTIONS(8592), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3637), 2, + ACTIONS(3622), 2, anon_sym_COMMA, anon_sym_RBRACK, - [159433] = 2, + [159105] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8189), 3, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159443] = 4, - ACTIONS(219), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1541), 1, - anon_sym_LBRACE, - STATE(852), 1, - sym_object_type, + [159115] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159457] = 2, + ACTIONS(8108), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159125] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8627), 3, + ACTIONS(8084), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159467] = 2, + [159135] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8175), 3, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159477] = 2, + [159145] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8106), 3, + ACTIONS(8595), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159487] = 2, + [159155] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8603), 3, + ACTIONS(8597), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159497] = 2, + [159165] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6358), 3, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LT, - [159507] = 2, + ACTIONS(8096), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159175] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8603), 3, + ACTIONS(8146), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159517] = 2, + [159185] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8189), 3, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159527] = 3, - ACTIONS(8642), 1, + [159195] = 3, + ACTIONS(8599), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7835), 2, + ACTIONS(7687), 2, anon_sym_extends, anon_sym_LBRACE_PIPE, - [159539] = 4, - ACTIONS(8644), 1, - sym_identifier, - STATE(3896), 1, - sym_decorator_member_expression, - STATE(5821), 1, - sym_decorator_call_expression, + [159207] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159553] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8096), 3, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159563] = 2, + [159217] = 4, + ACTIONS(1034), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1610), 1, + anon_sym_LBRACE, + STATE(3982), 1, + sym_object_type, ACTIONS(5), 2, sym_html_comment, - sym_comment, - ACTIONS(8450), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159573] = 2, + sym_comment, + [159231] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8096), 3, + ACTIONS(8084), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159583] = 2, + [159241] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8187), 3, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159593] = 2, + [159251] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8157), 3, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159603] = 2, + [159261] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8603), 3, + ACTIONS(8080), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159613] = 2, + [159271] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8603), 3, + ACTIONS(8146), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159623] = 4, - ACTIONS(5080), 1, - anon_sym_COMMA, - ACTIONS(8100), 1, - anon_sym_RBRACE, - STATE(4916), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [159637] = 2, + [159281] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8106), 3, + ACTIONS(8108), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159647] = 4, - ACTIONS(1903), 1, + [159291] = 4, + ACTIONS(1977), 1, anon_sym_COMMA, - ACTIONS(7845), 1, - anon_sym_RBRACK, - STATE(4580), 1, - aux_sym_array_pattern_repeat1, + ACTIONS(5283), 1, + anon_sym_RPAREN, + STATE(4647), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159661] = 4, - ACTIONS(5276), 1, + [159305] = 4, + ACTIONS(1977), 1, anon_sym_COMMA, - ACTIONS(8098), 1, - anon_sym_RBRACE, - STATE(4930), 1, - aux_sym_object_repeat1, + ACTIONS(5283), 1, + anon_sym_RPAREN, + STATE(4700), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159675] = 2, + [159319] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8189), 3, + ACTIONS(8082), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159685] = 2, + [159329] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8603), 3, + ACTIONS(8098), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159695] = 2, + [159339] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8603), 3, + ACTIONS(8098), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159705] = 2, + [159349] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8189), 3, + ACTIONS(8146), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159715] = 4, - ACTIONS(5222), 1, - anon_sym_COMMA, - ACTIONS(5262), 1, - anon_sym_RBRACK, - STATE(4579), 1, - aux_sym_array_repeat1, + [159359] = 4, + ACTIONS(8601), 1, + sym_identifier, + ACTIONS(8603), 1, + anon_sym_require, + STATE(5041), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159729] = 2, + [159373] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8603), 3, + ACTIONS(8605), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159739] = 2, + [159383] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8603), 3, + ACTIONS(8132), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159749] = 2, + [159393] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8189), 3, + ACTIONS(8605), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159759] = 2, + [159403] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8157), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159769] = 2, + ACTIONS(7103), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [159413] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8280), 3, - sym__automatic_semicolon, + ACTIONS(8476), 2, anon_sym_COMMA, - anon_sym_SEMI, - [159779] = 3, - ACTIONS(6771), 1, + anon_sym_RBRACK, + [159422] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2589), 1, - sym_class_body, + STATE(2659), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159790] = 2, + [159433] = 3, + ACTIONS(7242), 1, + anon_sym_LBRACE, + STATE(2660), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8646), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [159799] = 2, + [159444] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8648), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [159808] = 2, + ACTIONS(1698), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [159453] = 3, + ACTIONS(8607), 1, + sym_identifier, + ACTIONS(8609), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8419), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [159817] = 3, - ACTIONS(2482), 1, + [159464] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(798), 1, + STATE(2650), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159828] = 2, + [159475] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8108), 2, + ACTIONS(8611), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [159837] = 3, - ACTIONS(4352), 1, + anon_sym_RPAREN, + [159484] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2134), 1, + STATE(2695), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159848] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1711), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [159857] = 3, - ACTIONS(7273), 1, - anon_sym_LBRACE, - STATE(2684), 1, - sym_statement_block, + [159495] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159868] = 3, - ACTIONS(7273), 1, + ACTIONS(5992), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [159504] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2690), 1, + STATE(2662), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159879] = 2, + [159515] = 3, + ACTIONS(8613), 1, + anon_sym_COMMA, + ACTIONS(8615), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5055), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [159888] = 3, - ACTIONS(8650), 1, - anon_sym_SEMI, - ACTIONS(8652), 1, - sym__automatic_semicolon, + [159526] = 3, + ACTIONS(7242), 1, + anon_sym_LBRACE, + STATE(2696), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159899] = 3, - ACTIONS(7273), 1, + [159537] = 3, + ACTIONS(2483), 1, anon_sym_LBRACE, - STATE(2694), 1, + STATE(877), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159910] = 3, - ACTIONS(7273), 1, + [159548] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2700), 1, + STATE(2664), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159921] = 3, - ACTIONS(8654), 1, - anon_sym_SEMI, - ACTIONS(8656), 1, - sym__automatic_semicolon, + [159559] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159932] = 3, - ACTIONS(7028), 1, + ACTIONS(8617), 2, + anon_sym_in, + anon_sym_of, + [159568] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(4035), 1, + STATE(2674), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159943] = 2, + [159579] = 3, + ACTIONS(8619), 1, + anon_sym_LBRACE, + STATE(860), 1, + sym_switch_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8658), 2, - anon_sym_in, - anon_sym_of, - [159952] = 3, - ACTIONS(8660), 1, + [159590] = 3, + ACTIONS(8621), 1, sym_identifier, - ACTIONS(8662), 1, + ACTIONS(8623), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159963] = 3, - ACTIONS(6476), 1, - anon_sym_LPAREN, - STATE(4297), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [159974] = 3, - ACTIONS(8664), 1, + [159601] = 3, + ACTIONS(6853), 1, anon_sym_LBRACE, - STATE(4037), 1, - sym_enum_body, + STATE(4032), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159985] = 3, - ACTIONS(8666), 1, - sym_identifier, - ACTIONS(8668), 1, - sym_private_property_identifier, + [159612] = 3, + ACTIONS(6732), 1, + anon_sym_LBRACE, + STATE(1691), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159996] = 3, - ACTIONS(6476), 1, + [159623] = 3, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(5599), 1, + STATE(5618), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160007] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8670), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [160016] = 2, + [159634] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6014), 2, + ACTIONS(6004), 2, anon_sym_COMMA, anon_sym_RBRACE, - [160025] = 3, - ACTIONS(7273), 1, + [159643] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2658), 1, + STATE(2661), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160036] = 3, - ACTIONS(8672), 1, - sym_identifier, - ACTIONS(8674), 1, - sym_private_property_identifier, + [159654] = 3, + ACTIONS(6732), 1, + anon_sym_LBRACE, + STATE(1689), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160047] = 3, - ACTIONS(8676), 1, - sym_identifier, - ACTIONS(8678), 1, - sym_private_property_identifier, + [159665] = 3, + ACTIONS(4362), 1, + anon_sym_LBRACE, + STATE(1693), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160058] = 3, - ACTIONS(4651), 1, + [159676] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2721), 1, + STATE(2670), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160069] = 2, + [159687] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8680), 2, + ACTIONS(8625), 2, anon_sym_COMMA, anon_sym_RPAREN, - [160078] = 2, + [159696] = 3, + ACTIONS(6732), 1, + anon_sym_LBRACE, + STATE(2596), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6053), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160087] = 3, - ACTIONS(8682), 1, + [159707] = 3, + ACTIONS(8627), 1, sym_identifier, - ACTIONS(8684), 1, + ACTIONS(8629), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160098] = 2, + [159718] = 3, + ACTIONS(7242), 1, + anon_sym_LBRACE, + STATE(2693), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8686), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160107] = 3, - ACTIONS(8688), 1, - sym_identifier, - ACTIONS(8690), 1, - sym_private_property_identifier, + [159729] = 3, + ACTIONS(3557), 1, + anon_sym_COLON, + STATE(5277), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160118] = 3, - ACTIONS(6771), 1, + [159740] = 3, + ACTIONS(6732), 1, anon_sym_LBRACE, - STATE(2591), 1, + STATE(2598), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160129] = 3, - ACTIONS(2482), 1, - anon_sym_LBRACE, - STATE(5388), 1, - sym_statement_block, + [159751] = 3, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(4125), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160140] = 3, - ACTIONS(7273), 1, - anon_sym_LBRACE, - STATE(2670), 1, - sym_statement_block, + [159762] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8631), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [159771] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8633), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [159780] = 3, + ACTIONS(8635), 1, + anon_sym_SEMI, + ACTIONS(8637), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160151] = 3, - ACTIONS(8440), 1, + [159791] = 3, + ACTIONS(8102), 1, sym_identifier, - ACTIONS(8444), 1, + ACTIONS(8106), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160162] = 3, - ACTIONS(6476), 1, + [159802] = 3, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(5693), 1, + STATE(5709), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160173] = 2, + [159813] = 3, + ACTIONS(7242), 1, + anon_sym_LBRACE, + STATE(2671), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7803), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [160182] = 2, + [159824] = 3, + ACTIONS(3557), 1, + anon_sym_COLON, + STATE(5159), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6071), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160191] = 3, - ACTIONS(3967), 1, - anon_sym_LPAREN, - STATE(1671), 1, - sym_arguments, + [159835] = 3, + ACTIONS(8639), 1, + sym_identifier, + ACTIONS(8641), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160202] = 3, - ACTIONS(6476), 1, + [159846] = 3, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(5769), 1, + STATE(5775), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160213] = 3, - ACTIONS(8692), 1, - anon_sym_LBRACE, - STATE(5439), 1, - sym_object, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160224] = 3, - ACTIONS(6059), 1, + [159857] = 3, + ACTIONS(8643), 1, anon_sym_LPAREN, - STATE(2796), 1, - sym_arguments, + STATE(50), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160235] = 2, + [159868] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5050), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [160244] = 3, - ACTIONS(6942), 1, + ACTIONS(8383), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [159877] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(237), 1, - sym_class_body, + STATE(2672), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160255] = 3, - ACTIONS(7273), 1, + [159888] = 3, + ACTIONS(6732), 1, anon_sym_LBRACE, - STATE(2699), 1, - sym_statement_block, + STATE(2575), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160266] = 3, - ACTIONS(8694), 1, - anon_sym_SEMI, - ACTIONS(8696), 1, - sym__automatic_semicolon, + [159899] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160277] = 3, - ACTIONS(8698), 1, + ACTIONS(8645), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [159908] = 3, + ACTIONS(8647), 1, sym_identifier, - ACTIONS(8700), 1, + ACTIONS(8649), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160288] = 3, - ACTIONS(7879), 1, - anon_sym_from, - STATE(3943), 1, - sym__from_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160299] = 2, + [159919] = 3, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(5493), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8702), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160308] = 3, - ACTIONS(6856), 1, + [159930] = 3, + ACTIONS(6718), 1, anon_sym_LBRACE, - STATE(900), 1, + STATE(2246), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160319] = 3, - ACTIONS(8704), 1, - anon_sym_LPAREN, - STATE(787), 1, - sym_parenthesized_expression, + [159941] = 3, + ACTIONS(8651), 1, + sym_identifier, + ACTIONS(8653), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160330] = 3, - ACTIONS(7273), 1, + [159952] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2679), 1, + STATE(2691), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160341] = 2, + [159963] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7395), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [160350] = 3, - ACTIONS(8706), 1, - sym_identifier, - ACTIONS(8708), 1, - anon_sym_STAR, + ACTIONS(8655), 2, + anon_sym_COMMA, + anon_sym_GT, + [159972] = 3, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(5841), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160361] = 3, - ACTIONS(8710), 1, - sym_identifier, - ACTIONS(8712), 1, - sym_private_property_identifier, + [159983] = 3, + ACTIONS(8657), 1, + anon_sym_LPAREN, + STATE(34), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160372] = 3, - ACTIONS(2482), 1, - anon_sym_LBRACE, - STATE(5452), 1, - sym_statement_block, + [159994] = 3, + ACTIONS(4588), 1, + anon_sym_LPAREN, + STATE(2251), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160383] = 3, - ACTIONS(8714), 1, - anon_sym_LPAREN, - STATE(49), 1, - sym_parenthesized_expression, + [160005] = 3, + ACTIONS(8659), 1, + anon_sym_LBRACE, + STATE(3946), 1, + sym_enum_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160394] = 3, - ACTIONS(6771), 1, + [160016] = 3, + ACTIONS(6718), 1, anon_sym_LBRACE, - STATE(1665), 1, + STATE(2163), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160405] = 2, + [160027] = 3, + ACTIONS(8661), 1, + sym_identifier, + ACTIONS(8663), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8716), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [160414] = 3, - ACTIONS(3550), 1, - anon_sym_COLON, - STATE(5295), 1, - sym_type_annotation, + [160038] = 3, + ACTIONS(7242), 1, + anon_sym_LBRACE, + STATE(2679), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160425] = 2, + [160049] = 3, + ACTIONS(8657), 1, + anon_sym_LPAREN, + STATE(35), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8718), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [160434] = 3, - ACTIONS(8720), 1, - anon_sym_SEMI, - ACTIONS(8722), 1, - sym__automatic_semicolon, + [160060] = 3, + ACTIONS(4362), 1, + anon_sym_LBRACE, + STATE(1695), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160445] = 2, + [160071] = 3, + ACTIONS(6732), 1, + anon_sym_LBRACE, + STATE(1697), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8724), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [160454] = 3, - ACTIONS(8726), 1, - sym_identifier, - ACTIONS(8728), 1, - sym_private_property_identifier, + [160082] = 3, + ACTIONS(8657), 1, + anon_sym_LPAREN, + STATE(37), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160465] = 3, - ACTIONS(8730), 1, + [160093] = 3, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8732), 1, + ACTIONS(8667), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160476] = 3, - ACTIONS(7273), 1, - anon_sym_LBRACE, - STATE(2716), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160487] = 3, - ACTIONS(8734), 1, + [160104] = 3, + ACTIONS(8669), 1, sym_identifier, - ACTIONS(8736), 1, + ACTIONS(8671), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160498] = 3, - ACTIONS(4627), 1, - anon_sym_LPAREN, - STATE(2351), 1, - sym_arguments, + [160115] = 3, + ACTIONS(6853), 1, + anon_sym_LBRACE, + STATE(4044), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160509] = 2, + [160126] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6022), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160518] = 3, - ACTIONS(8738), 1, - sym_identifier, - ACTIONS(8740), 1, - sym_private_property_identifier, + ACTIONS(7347), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [160135] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160529] = 2, + ACTIONS(4530), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [160144] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6043), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160538] = 2, + ACTIONS(4534), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [160153] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6057), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160547] = 3, - ACTIONS(6741), 1, + ACTIONS(7454), 2, anon_sym_LBRACE, - STATE(2273), 1, - sym_class_body, + anon_sym_EQ_GT, + [160162] = 3, + ACTIONS(8673), 1, + anon_sym_SEMI, + ACTIONS(8675), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160558] = 3, - ACTIONS(8742), 1, + [160173] = 3, + ACTIONS(8677), 1, anon_sym_LBRACE, - STATE(912), 1, + STATE(846), 1, sym_enum_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160569] = 2, + [160184] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6026), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160578] = 3, - ACTIONS(7273), 1, + ACTIONS(7490), 2, anon_sym_LBRACE, - STATE(2665), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160589] = 3, - ACTIONS(8714), 1, - anon_sym_LPAREN, - STATE(32), 1, - sym_parenthesized_expression, + anon_sym_EQ_GT, + [160193] = 3, + ACTIONS(8679), 1, + sym_identifier, + ACTIONS(8681), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160600] = 3, - ACTIONS(2482), 1, + [160204] = 3, + ACTIONS(6718), 1, anon_sym_LBRACE, - STATE(5210), 1, - sym_statement_block, + STATE(2258), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160611] = 2, + [160215] = 3, + ACTIONS(7921), 1, + anon_sym_from, + STATE(5423), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6018), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160620] = 3, - ACTIONS(6476), 1, - anon_sym_LPAREN, - STATE(5576), 1, - sym_formal_parameters, + [160226] = 3, + ACTIONS(8683), 1, + anon_sym_SEMI, + ACTIONS(8685), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160631] = 3, - ACTIONS(6741), 1, + [160237] = 3, + ACTIONS(6853), 1, anon_sym_LBRACE, - STATE(2234), 1, + STATE(4045), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160642] = 3, - ACTIONS(8714), 1, + [160248] = 3, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(33), 1, - sym_parenthesized_expression, + STATE(5505), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160653] = 3, - ACTIONS(6476), 1, - anon_sym_LPAREN, - STATE(5860), 1, - sym_formal_parameters, + [160259] = 3, + ACTIONS(7921), 1, + anon_sym_from, + STATE(5457), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160664] = 3, - ACTIONS(6476), 1, - anon_sym_LPAREN, - STATE(5490), 1, - sym_formal_parameters, + [160270] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160675] = 3, - ACTIONS(3288), 1, + ACTIONS(8687), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [160279] = 3, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(3320), 1, + STATE(5556), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160686] = 3, - ACTIONS(7273), 1, + [160290] = 3, + ACTIONS(2483), 1, anon_sym_LBRACE, - STATE(2671), 1, + STATE(807), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160697] = 3, - ACTIONS(8714), 1, + [160301] = 3, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(35), 1, - sym_parenthesized_expression, + STATE(5832), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160708] = 2, + [160312] = 3, + ACTIONS(8657), 1, + anon_sym_LPAREN, + STATE(57), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5057), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [160717] = 2, + [160323] = 3, + ACTIONS(7242), 1, + anon_sym_LBRACE, + STATE(2668), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6026), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160726] = 2, + [160334] = 3, + ACTIONS(7242), 1, + anon_sym_LBRACE, + STATE(2669), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8744), 2, - anon_sym_COMMA, - anon_sym_GT, - [160735] = 2, + [160345] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6018), 2, + ACTIONS(6004), 2, anon_sym_COMMA, anon_sym_RBRACE, - [160744] = 3, - ACTIONS(6476), 1, - anon_sym_LPAREN, - STATE(5872), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160755] = 3, - ACTIONS(6832), 1, + [160354] = 3, + ACTIONS(6732), 1, anon_sym_LBRACE, - STATE(4198), 1, + STATE(1698), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160766] = 3, - ACTIONS(2482), 1, - anon_sym_LBRACE, - STATE(5458), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160777] = 3, - ACTIONS(7273), 1, + [160365] = 3, + ACTIONS(4362), 1, anon_sym_LBRACE, - STATE(2663), 1, + STATE(1699), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160788] = 3, - ACTIONS(2482), 1, + [160376] = 3, + ACTIONS(2483), 1, anon_sym_LBRACE, - STATE(5395), 1, + STATE(5389), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160799] = 2, + [160387] = 3, + ACTIONS(8689), 1, + sym_identifier, + STATE(5041), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6043), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160808] = 2, + [160398] = 3, + ACTIONS(6853), 1, + anon_sym_LBRACE, + STATE(804), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6067), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160817] = 3, - ACTIONS(3288), 1, - anon_sym_LPAREN, - STATE(3700), 1, - sym_formal_parameters, + [160409] = 3, + ACTIONS(4362), 1, + anon_sym_LBRACE, + STATE(1700), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160828] = 2, + [160420] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6067), 2, + ACTIONS(6008), 2, anon_sym_COMMA, anon_sym_RBRACE, - [160837] = 3, - ACTIONS(8124), 1, - sym_identifier, - ACTIONS(8128), 1, - sym_private_property_identifier, + [160429] = 3, + ACTIONS(8643), 1, + anon_sym_LPAREN, + STATE(39), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160848] = 3, - ACTIONS(8746), 1, + [160440] = 3, + ACTIONS(6732), 1, anon_sym_LBRACE, - STATE(862), 1, - sym_switch_body, + STATE(1701), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160859] = 3, - ACTIONS(2482), 1, + [160451] = 3, + ACTIONS(4336), 1, anon_sym_LBRACE, - STATE(5397), 1, + STATE(2168), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160870] = 3, - ACTIONS(8234), 1, - sym_identifier, - ACTIONS(8238), 1, - sym_private_property_identifier, + [160462] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160881] = 3, - ACTIONS(1721), 1, + ACTIONS(8468), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [160471] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(235), 1, + STATE(2666), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160892] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5999), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160901] = 3, - ACTIONS(7879), 1, - anon_sym_from, - STATE(5255), 1, - sym__from_clause, + [160482] = 3, + ACTIONS(6718), 1, + anon_sym_LBRACE, + STATE(2164), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160912] = 3, - ACTIONS(7273), 1, + [160493] = 3, + ACTIONS(1678), 1, anon_sym_LBRACE, - STATE(2672), 1, + STATE(232), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160923] = 3, - ACTIONS(6942), 1, + [160504] = 3, + ACTIONS(7065), 1, anon_sym_LBRACE, - STATE(221), 1, - sym_class_body, + STATE(4371), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160934] = 2, + [160515] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8543), 2, + ACTIONS(8458), 2, anon_sym_COMMA, anon_sym_RBRACE, - [160943] = 3, - ACTIONS(7273), 1, + [160524] = 3, + ACTIONS(6853), 1, anon_sym_LBRACE, - STATE(2659), 1, - sym_statement_block, + STATE(3999), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160954] = 3, - ACTIONS(7273), 1, - anon_sym_LBRACE, - STATE(2713), 1, - sym_statement_block, + [160535] = 3, + ACTIONS(8657), 1, + anon_sym_LPAREN, + STATE(5142), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160965] = 3, - ACTIONS(7879), 1, - anon_sym_from, - STATE(5149), 1, - sym__from_clause, + [160546] = 3, + ACTIONS(3281), 1, + anon_sym_LPAREN, + STATE(3304), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160976] = 2, + [160557] = 3, + ACTIONS(6732), 1, + anon_sym_LBRACE, + STATE(1679), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8538), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160985] = 3, - ACTIONS(2482), 1, + [160568] = 3, + ACTIONS(4362), 1, anon_sym_LBRACE, - STATE(821), 1, + STATE(1681), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160996] = 3, - ACTIONS(8748), 1, - anon_sym_SEMI, - ACTIONS(8750), 1, - sym__automatic_semicolon, + [160579] = 3, + ACTIONS(4362), 1, + anon_sym_LBRACE, + STATE(1684), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161007] = 3, - ACTIONS(8752), 1, - anon_sym_SEMI, - ACTIONS(8754), 1, - sym__automatic_semicolon, + [160590] = 3, + ACTIONS(6847), 1, + anon_sym_LBRACE, + STATE(220), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161018] = 2, + [160601] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6030), 2, + ACTIONS(6020), 2, anon_sym_COMMA, anon_sym_RBRACE, - [161027] = 3, - ACTIONS(4348), 1, - anon_sym_LBRACE, - STATE(1667), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [161038] = 3, - ACTIONS(8742), 1, + [160610] = 3, + ACTIONS(8659), 1, anon_sym_LBRACE, - STATE(846), 1, + STATE(4375), 1, sym_enum_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161049] = 3, - ACTIONS(4352), 1, + [160621] = 3, + ACTIONS(2483), 1, anon_sym_LBRACE, - STATE(2148), 1, + STATE(5392), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161060] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8756), 2, - anon_sym_COMMA, - anon_sym_GT, - [161069] = 3, - ACTIONS(6476), 1, - anon_sym_LPAREN, - STATE(4106), 1, - sym_formal_parameters, + [160632] = 3, + ACTIONS(4336), 1, + anon_sym_LBRACE, + STATE(2259), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161080] = 3, - ACTIONS(6476), 1, - anon_sym_LPAREN, - STATE(5621), 1, - sym_formal_parameters, + [160643] = 3, + ACTIONS(2483), 1, + anon_sym_LBRACE, + STATE(5433), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161091] = 3, - ACTIONS(3288), 1, + [160654] = 3, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(3601), 1, + STATE(5646), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161102] = 3, - ACTIONS(8758), 1, - anon_sym_LPAREN, - STATE(37), 1, - sym__for_header, + [160665] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161113] = 3, - ACTIONS(6476), 1, - anon_sym_LPAREN, - STATE(5727), 1, - sym_formal_parameters, + ACTIONS(8243), 2, + anon_sym_COMMA, + anon_sym_GT, + [160674] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161124] = 3, - ACTIONS(6476), 1, + ACTIONS(5024), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [160683] = 3, + ACTIONS(3281), 1, anon_sym_LPAREN, - STATE(5793), 1, + STATE(3659), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161135] = 3, - ACTIONS(8760), 1, - sym_identifier, - STATE(4913), 1, - sym_nested_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [161146] = 3, - ACTIONS(4352), 1, + [160694] = 3, + ACTIONS(4336), 1, anon_sym_LBRACE, - STATE(2316), 1, + STATE(2318), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161157] = 3, - ACTIONS(4352), 1, - anon_sym_LBRACE, - STATE(2237), 1, - sym_statement_block, + [160705] = 3, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(5469), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161168] = 3, - ACTIONS(3550), 1, - anon_sym_COLON, - STATE(5200), 1, - sym_type_annotation, + [160716] = 3, + ACTIONS(6509), 1, + anon_sym_LPAREN, + STATE(3361), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161179] = 3, - ACTIONS(7273), 1, + [160727] = 3, + ACTIONS(4336), 1, anon_sym_LBRACE, - STATE(2673), 1, + STATE(2304), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161190] = 3, - ACTIONS(7273), 1, - anon_sym_LBRACE, - STATE(2702), 1, - sym_statement_block, + [160738] = 3, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(5483), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161201] = 3, - ACTIONS(6476), 1, + [160749] = 3, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(5825), 1, + STATE(5549), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161212] = 3, - ACTIONS(7273), 1, - anon_sym_LBRACE, - STATE(2687), 1, - sym_statement_block, + [160760] = 3, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(5665), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161223] = 3, - ACTIONS(6741), 1, - anon_sym_LBRACE, - STATE(2217), 1, - sym_class_body, + [160771] = 3, + ACTIONS(8691), 1, + sym_identifier, + ACTIONS(8693), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161234] = 3, - ACTIONS(6832), 1, + [160782] = 3, + ACTIONS(6923), 1, anon_sym_LBRACE, - STATE(777), 1, + STATE(934), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161245] = 3, - ACTIONS(6476), 1, - anon_sym_LPAREN, - STATE(5721), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [161256] = 3, - ACTIONS(6771), 1, + [160793] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(1698), 1, - sym_class_body, + STATE(2692), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161267] = 2, + [160804] = 3, + ACTIONS(7242), 1, + anon_sym_LBRACE, + STATE(2658), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8762), 2, - anon_sym_COMMA, - anon_sym_GT, - [161276] = 3, - ACTIONS(6832), 1, - anon_sym_LBRACE, - STATE(4213), 1, - sym_class_body, + [160815] = 3, + ACTIONS(7921), 1, + anon_sym_from, + STATE(4289), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161287] = 3, - ACTIONS(4627), 1, - anon_sym_LPAREN, - STATE(2266), 1, - sym_arguments, + [160826] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161298] = 2, + ACTIONS(5996), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [160835] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4487), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [161307] = 3, - ACTIONS(3967), 1, - anon_sym_LPAREN, - STATE(1690), 1, - sym_arguments, + ACTIONS(8408), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [160844] = 3, + ACTIONS(2483), 1, + anon_sym_LBRACE, + STATE(5441), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161318] = 2, + [160855] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8338), 2, + ACTIONS(6038), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [161327] = 2, + anon_sym_RBRACE, + [160864] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8333), 2, + ACTIONS(8695), 2, anon_sym_COMMA, anon_sym_GT, - [161336] = 3, - ACTIONS(6832), 1, - anon_sym_LBRACE, - STATE(4214), 1, - sym_class_body, + [160873] = 3, + ACTIONS(8697), 1, + sym_identifier, + ACTIONS(8699), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161347] = 3, - ACTIONS(8758), 1, - anon_sym_LPAREN, - STATE(62), 1, - sym__for_header, + [160884] = 3, + ACTIONS(7242), 1, + anon_sym_LBRACE, + STATE(2649), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161358] = 3, - ACTIONS(6476), 1, - anon_sym_LPAREN, - STATE(5731), 1, - sym_formal_parameters, + [160895] = 3, + ACTIONS(8701), 1, + sym_identifier, + ACTIONS(8703), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161369] = 3, - ACTIONS(7273), 1, + [160906] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2667), 1, + STATE(2685), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161380] = 3, - ACTIONS(6856), 1, + [160917] = 3, + ACTIONS(6718), 1, anon_sym_LBRACE, - STATE(933), 1, + STATE(2281), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161391] = 2, + [160928] = 3, + ACTIONS(8705), 1, + sym_identifier, + ACTIONS(8707), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7427), 2, + [160939] = 3, + ACTIONS(2483), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [161400] = 3, - ACTIONS(8764), 1, - anon_sym_SEMI, - ACTIONS(8766), 1, - sym__automatic_semicolon, + STATE(745), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161411] = 3, - ACTIONS(7273), 1, - anon_sym_LBRACE, - STATE(2685), 1, - sym_statement_block, + [160950] = 3, + ACTIONS(8709), 1, + sym_identifier, + ACTIONS(8711), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161422] = 2, + [160961] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8768), 2, + ACTIONS(8713), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [161431] = 2, + anon_sym_RPAREN, + [160970] = 3, + ACTIONS(8715), 1, + sym_identifier, + ACTIONS(8717), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8511), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [161440] = 3, - ACTIONS(6741), 1, - anon_sym_LBRACE, - STATE(2356), 1, - sym_class_body, + [160981] = 3, + ACTIONS(8719), 1, + sym_identifier, + ACTIONS(8721), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161451] = 3, - ACTIONS(7273), 1, - anon_sym_LBRACE, - STATE(2696), 1, - sym_statement_block, + [160992] = 3, + ACTIONS(8723), 1, + sym_identifier, + ACTIONS(8725), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161462] = 3, - ACTIONS(4352), 1, + [161003] = 3, + ACTIONS(1678), 1, anon_sym_LBRACE, - STATE(2293), 1, + STATE(223), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161473] = 3, - ACTIONS(6771), 1, - anon_sym_LBRACE, - STATE(1699), 1, - sym_class_body, + [161014] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161484] = 3, - ACTIONS(4348), 1, - anon_sym_LBRACE, - STATE(1700), 1, - sym_statement_block, + ACTIONS(8727), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [161023] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161495] = 3, - ACTIONS(7273), 1, - anon_sym_LBRACE, - STATE(2701), 1, - sym_statement_block, + ACTIONS(8419), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [161032] = 3, + ACTIONS(8729), 1, + sym_identifier, + ACTIONS(8731), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161506] = 3, - ACTIONS(4348), 1, - anon_sym_LBRACE, - STATE(1701), 1, - sym_statement_block, + [161043] = 3, + ACTIONS(8090), 1, + sym_identifier, + ACTIONS(8094), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161517] = 3, - ACTIONS(8770), 1, + [161054] = 3, + ACTIONS(8733), 1, sym_identifier, - ACTIONS(8772), 1, + ACTIONS(8735), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161528] = 3, - ACTIONS(6856), 1, - anon_sym_LBRACE, - STATE(894), 1, - sym_class_body, + [161065] = 3, + ACTIONS(8737), 1, + sym_identifier, + ACTIONS(8739), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161539] = 3, - ACTIONS(6741), 1, - anon_sym_LBRACE, - STATE(2277), 1, - sym_class_body, + [161076] = 3, + ACTIONS(8741), 1, + sym_identifier, + ACTIONS(8743), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161550] = 2, + [161087] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8774), 2, + ACTIONS(5012), 2, sym__automatic_semicolon, anon_sym_SEMI, - [161559] = 2, + [161096] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8776), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [161568] = 3, - ACTIONS(6771), 1, + ACTIONS(8745), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [161105] = 3, + ACTIONS(8284), 1, + sym_identifier, + ACTIONS(8288), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161116] = 3, + ACTIONS(6923), 1, anon_sym_LBRACE, - STATE(1702), 1, + STATE(890), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161579] = 2, + [161127] = 3, + ACTIONS(4336), 1, + anon_sym_LBRACE, + STATE(2283), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161138] = 3, + ACTIONS(8747), 1, + anon_sym_LPAREN, + STATE(785), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161149] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8778), 2, + ACTIONS(8749), 2, anon_sym_COMMA, anon_sym_RBRACE, - [161588] = 3, - ACTIONS(8780), 1, - sym_identifier, - ACTIONS(8782), 1, - sym_private_property_identifier, + [161158] = 3, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(3972), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161599] = 3, - ACTIONS(7273), 1, - anon_sym_LBRACE, - STATE(2680), 1, - sym_statement_block, + [161169] = 3, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(5503), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161610] = 3, - ACTIONS(8784), 1, - anon_sym_COMMA, - ACTIONS(8786), 1, - anon_sym_from, + [161180] = 3, + ACTIONS(4010), 1, + anon_sym_LPAREN, + STATE(1669), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161621] = 3, - ACTIONS(8788), 1, + [161191] = 3, + ACTIONS(8751), 1, sym_identifier, - ACTIONS(8790), 1, + ACTIONS(8753), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161632] = 3, - ACTIONS(6771), 1, + [161202] = 3, + ACTIONS(2483), 1, + anon_sym_LBRACE, + STATE(915), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161213] = 3, + ACTIONS(6853), 1, anon_sym_LBRACE, - STATE(1723), 1, + STATE(4067), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161643] = 3, - ACTIONS(6486), 1, + [161224] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6000), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [161233] = 3, + ACTIONS(4010), 1, anon_sym_LPAREN, - STATE(3334), 1, - sym_formal_parameters, + STATE(1688), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161654] = 3, - ACTIONS(1721), 1, + [161244] = 3, + ACTIONS(6847), 1, anon_sym_LBRACE, - STATE(224), 1, - sym_statement_block, + STATE(227), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161255] = 3, + ACTIONS(6718), 1, + anon_sym_LBRACE, + STATE(2180), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161665] = 3, - ACTIONS(4352), 1, + [161266] = 3, + ACTIONS(2483), 1, anon_sym_LBRACE, - STATE(2223), 1, + STATE(5262), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161676] = 3, - ACTIONS(8792), 1, - anon_sym_SEMI, - ACTIONS(8794), 1, - sym__automatic_semicolon, + [161277] = 3, + ACTIONS(8755), 1, + sym_identifier, + ACTIONS(8757), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161687] = 3, - ACTIONS(2482), 1, + [161288] = 3, + ACTIONS(6847), 1, anon_sym_LBRACE, - STATE(5239), 1, - sym_statement_block, + STATE(233), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161698] = 3, - ACTIONS(6942), 1, + [161299] = 3, + ACTIONS(6923), 1, anon_sym_LBRACE, - STATE(236), 1, + STATE(863), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161709] = 2, + [161310] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8796), 2, + ACTIONS(5022), 2, sym__automatic_semicolon, anon_sym_SEMI, - [161718] = 3, - ACTIONS(7273), 1, - anon_sym_LBRACE, - STATE(2676), 1, - sym_statement_block, + [161319] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161729] = 3, - ACTIONS(6856), 1, + ACTIONS(7375), 2, anon_sym_LBRACE, - STATE(913), 1, - sym_class_body, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [161740] = 2, + anon_sym_EQ_GT, + [161328] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8798), 2, + ACTIONS(8759), 2, anon_sym_COMMA, anon_sym_RBRACE, - [161749] = 3, - ACTIONS(8800), 1, + [161337] = 3, + ACTIONS(8166), 1, sym_identifier, - ACTIONS(8802), 1, + ACTIONS(8170), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161760] = 3, - ACTIONS(8804), 1, - sym_identifier, - ACTIONS(8806), 1, - sym_private_property_identifier, + [161348] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161771] = 3, - ACTIONS(7028), 1, + ACTIONS(7774), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [161357] = 3, + ACTIONS(7065), 1, anon_sym_LBRACE, - STATE(803), 1, + STATE(801), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161782] = 3, - ACTIONS(2482), 1, - anon_sym_LBRACE, - STATE(5257), 1, - sym_statement_block, + [161368] = 3, + ACTIONS(8761), 1, + sym_identifier, + ACTIONS(8763), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161793] = 2, + [161379] = 3, + ACTIONS(6853), 1, + anon_sym_LBRACE, + STATE(806), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8808), 2, - anon_sym_COMMA, - anon_sym_GT, - [161802] = 3, - ACTIONS(6832), 1, - anon_sym_LBRACE, - STATE(802), 1, - sym_class_body, + [161390] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161813] = 2, + ACTIONS(8765), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [161399] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6057), 2, + ACTIONS(8330), 2, anon_sym_COMMA, anon_sym_RBRACE, - [161822] = 3, - ACTIONS(2482), 1, + [161408] = 3, + ACTIONS(2483), 1, anon_sym_LBRACE, - STATE(5214), 1, + STATE(5416), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161833] = 2, + [161419] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6022), 2, + ACTIONS(6024), 2, anon_sym_COMMA, anon_sym_RBRACE, - [161842] = 3, - ACTIONS(2482), 1, + [161428] = 3, + ACTIONS(8767), 1, + sym_identifier, + ACTIONS(8769), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161439] = 3, + ACTIONS(2483), 1, anon_sym_LBRACE, - STATE(5218), 1, + STATE(5434), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161853] = 3, - ACTIONS(6476), 1, - anon_sym_LPAREN, - STATE(3955), 1, - sym_formal_parameters, + [161450] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8771), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [161459] = 3, + ACTIONS(8773), 1, + sym_identifier, + ACTIONS(8775), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161470] = 3, + ACTIONS(8777), 1, + sym_identifier, + ACTIONS(8779), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161864] = 3, - ACTIONS(7273), 1, + [161481] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2677), 1, + STATE(2702), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161875] = 3, - ACTIONS(6476), 1, - anon_sym_LPAREN, - STATE(5708), 1, - sym_formal_parameters, + [161492] = 3, + ACTIONS(8781), 1, + sym_identifier, + ACTIONS(8783), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161886] = 3, - ACTIONS(4352), 1, + [161503] = 3, + ACTIONS(4336), 1, anon_sym_LBRACE, - STATE(2128), 1, + STATE(2265), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161897] = 3, - ACTIONS(8810), 1, + [161514] = 3, + ACTIONS(8785), 1, sym_identifier, - ACTIONS(8812), 1, + ACTIONS(8787), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161908] = 3, - ACTIONS(6741), 1, + [161525] = 3, + ACTIONS(6718), 1, anon_sym_LBRACE, - STATE(2131), 1, + STATE(2279), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161919] = 3, - ACTIONS(6832), 1, - anon_sym_LBRACE, - STATE(4152), 1, - sym_class_body, + [161536] = 3, + ACTIONS(8789), 1, + sym_identifier, + ACTIONS(8791), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161547] = 3, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(3765), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161930] = 2, + [161558] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8814), 2, + ACTIONS(8793), 2, anon_sym_COMMA, anon_sym_RBRACE, - [161939] = 2, + [161567] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8816), 2, + ACTIONS(8795), 2, anon_sym_COMMA, anon_sym_RBRACE, - [161948] = 2, + [161576] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4625), 2, + ACTIONS(8797), 2, sym__automatic_semicolon, anon_sym_SEMI, - [161957] = 3, - ACTIONS(7273), 1, + [161585] = 3, + ACTIONS(6718), 1, anon_sym_LBRACE, - STATE(2678), 1, - sym_statement_block, + STATE(2319), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161968] = 2, + [161596] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4549), 2, + ACTIONS(4606), 2, sym__automatic_semicolon, anon_sym_SEMI, - [161977] = 2, + [161605] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 2, + ACTIONS(8799), 2, sym__automatic_semicolon, anon_sym_SEMI, - [161986] = 3, - ACTIONS(8818), 1, - sym_identifier, - ACTIONS(8820), 1, - sym_private_property_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [161997] = 2, + [161614] = 3, + ACTIONS(7242), 1, + anon_sym_LBRACE, + STATE(2704), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8822), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [162006] = 3, - ACTIONS(8824), 1, - sym_identifier, - ACTIONS(8826), 1, - sym_private_property_identifier, + [161625] = 3, + ACTIONS(7242), 1, + anon_sym_LBRACE, + STATE(2680), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162017] = 3, - ACTIONS(7749), 1, - anon_sym_in, - ACTIONS(7751), 1, - anon_sym_of, + [161636] = 3, + ACTIONS(7921), 1, + anon_sym_from, + STATE(4296), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162028] = 3, - ACTIONS(8828), 1, + [161647] = 3, + ACTIONS(8801), 1, sym_identifier, - ACTIONS(8830), 1, + ACTIONS(8803), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162039] = 3, - ACTIONS(6476), 1, - anon_sym_LPAREN, - STATE(3842), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [162050] = 3, - ACTIONS(8832), 1, - sym_identifier, - ACTIONS(8834), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [162061] = 3, - ACTIONS(8836), 1, + [161658] = 3, + ACTIONS(8805), 1, sym_identifier, - ACTIONS(8838), 1, + ACTIONS(8807), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162072] = 3, - ACTIONS(6771), 1, + [161669] = 3, + ACTIONS(6718), 1, anon_sym_LBRACE, - STATE(2536), 1, + STATE(2309), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162083] = 3, - ACTIONS(8840), 1, - sym_identifier, - ACTIONS(8842), 1, - sym_private_property_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [162094] = 3, - ACTIONS(8844), 1, - sym_identifier, - ACTIONS(8846), 1, - sym_private_property_identifier, + [161680] = 3, + ACTIONS(6853), 1, + anon_sym_LBRACE, + STATE(4072), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162105] = 3, - ACTIONS(7273), 1, - anon_sym_LBRACE, - STATE(2688), 1, - sym_statement_block, + [161691] = 3, + ACTIONS(7709), 1, + anon_sym_in, + ACTIONS(7711), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162116] = 3, - ACTIONS(2482), 1, + [161702] = 3, + ACTIONS(6732), 1, anon_sym_LBRACE, - STATE(804), 1, - sym_statement_block, + STATE(2603), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162127] = 3, - ACTIONS(8848), 1, - sym_identifier, - ACTIONS(8850), 1, - sym_private_property_identifier, + [161713] = 3, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(4277), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162138] = 3, - ACTIONS(6942), 1, - anon_sym_LBRACE, - STATE(217), 1, - sym_class_body, + [161724] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162149] = 3, - ACTIONS(7273), 1, + ACTIONS(6032), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [161733] = 3, + ACTIONS(2483), 1, anon_sym_LBRACE, - STATE(2693), 1, + STATE(5214), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162160] = 2, + [161744] = 3, + ACTIONS(8809), 1, + sym_identifier, + ACTIONS(8811), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8852), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [162169] = 3, - ACTIONS(6741), 1, - anon_sym_LBRACE, - STATE(2290), 1, - sym_class_body, + [161755] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162180] = 3, - ACTIONS(2482), 1, + ACTIONS(5992), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [161764] = 3, + ACTIONS(2483), 1, anon_sym_LBRACE, - STATE(888), 1, + STATE(808), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162191] = 3, - ACTIONS(4352), 1, + [161775] = 3, + ACTIONS(2483), 1, anon_sym_LBRACE, - STATE(2297), 1, + STATE(5221), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162202] = 3, - ACTIONS(7879), 1, - anon_sym_from, - STATE(4147), 1, - sym__from_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [162213] = 3, - ACTIONS(8714), 1, - anon_sym_LPAREN, - STATE(65), 1, - sym_parenthesized_expression, + [161786] = 3, + ACTIONS(8813), 1, + sym_identifier, + STATE(4566), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162224] = 3, - ACTIONS(6832), 1, - anon_sym_LBRACE, - STATE(4241), 1, - sym_class_body, + [161797] = 3, + ACTIONS(8815), 1, + sym_identifier, + ACTIONS(8817), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162235] = 3, - ACTIONS(7273), 1, + [161808] = 3, + ACTIONS(8819), 1, anon_sym_LBRACE, - STATE(2697), 1, - sym_statement_block, + STATE(5413), 1, + sym_object, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162246] = 3, - ACTIONS(8571), 1, + [161819] = 3, + ACTIONS(8821), 1, sym_identifier, - ACTIONS(8575), 1, + ACTIONS(8823), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162257] = 2, + [161830] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8854), 2, + ACTIONS(8825), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [162266] = 3, - ACTIONS(8856), 1, - anon_sym_SEMI, - ACTIONS(8858), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [162277] = 3, - ACTIONS(6476), 1, - anon_sym_LPAREN, - STATE(5569), 1, - sym_formal_parameters, + anon_sym_RBRACE, + [161839] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162288] = 3, - ACTIONS(8860), 1, + ACTIONS(8827), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [161848] = 3, + ACTIONS(8829), 1, sym_identifier, - ACTIONS(8862), 1, + ACTIONS(8831), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162299] = 3, - ACTIONS(8864), 1, + [161859] = 3, + ACTIONS(8833), 1, anon_sym_in, - ACTIONS(8866), 1, + ACTIONS(8835), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162310] = 3, - ACTIONS(8868), 1, - sym_identifier, - ACTIONS(8870), 1, - anon_sym_STAR, + [161870] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162321] = 3, - ACTIONS(8872), 1, - sym_identifier, - ACTIONS(8874), 1, - sym_private_property_identifier, + ACTIONS(8837), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [161879] = 3, + ACTIONS(4658), 1, + anon_sym_LBRACE, + STATE(2717), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162332] = 3, - ACTIONS(8876), 1, - sym_identifier, - ACTIONS(8878), 1, - sym_private_property_identifier, + [161890] = 3, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(5499), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162343] = 3, - ACTIONS(8880), 1, - sym_identifier, - ACTIONS(8882), 1, - sym_private_property_identifier, + [161901] = 3, + ACTIONS(6853), 1, + anon_sym_LBRACE, + STATE(4074), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162354] = 3, - ACTIONS(8884), 1, - sym_identifier, - ACTIONS(8886), 1, - sym_private_property_identifier, + [161912] = 3, + ACTIONS(7242), 1, + anon_sym_LBRACE, + STATE(2687), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162365] = 3, - ACTIONS(8888), 1, + [161923] = 3, + ACTIONS(8839), 1, sym_identifier, - STATE(4609), 1, - sym_nested_identifier, + ACTIONS(8841), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162376] = 3, - ACTIONS(8890), 1, - sym_identifier, - ACTIONS(8892), 1, - sym_private_property_identifier, + [161934] = 3, + ACTIONS(7242), 1, + anon_sym_LBRACE, + STATE(2688), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162387] = 3, - ACTIONS(6741), 1, + [161945] = 3, + ACTIONS(4362), 1, anon_sym_LBRACE, - STATE(2291), 1, - sym_class_body, + STATE(1703), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162398] = 3, - ACTIONS(6741), 1, + [161956] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2245), 1, - sym_class_body, + STATE(2701), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162409] = 2, + [161967] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6079), 2, + ACTIONS(5988), 2, anon_sym_COMMA, anon_sym_RBRACE, - [162418] = 3, - ACTIONS(7273), 1, + [161976] = 3, + ACTIONS(6732), 1, anon_sym_LBRACE, - STATE(2669), 1, - sym_statement_block, + STATE(1704), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162429] = 3, - ACTIONS(6476), 1, - anon_sym_LPAREN, - STATE(5697), 1, - sym_formal_parameters, + [161987] = 3, + ACTIONS(6455), 1, + anon_sym_COLON, + STATE(5101), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162440] = 3, - ACTIONS(8210), 1, - sym_identifier, - ACTIONS(8214), 1, - sym_private_property_identifier, + [161998] = 3, + ACTIONS(8843), 1, + anon_sym_SEMI, + ACTIONS(8845), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162451] = 3, - ACTIONS(8894), 1, - sym_identifier, - ACTIONS(8896), 1, - sym_private_property_identifier, + [162009] = 3, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(3989), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162462] = 3, - ACTIONS(6741), 1, + [162020] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2328), 1, - sym_class_body, + STATE(2654), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162473] = 3, - ACTIONS(6741), 1, + [162031] = 3, + ACTIONS(6718), 1, anon_sym_LBRACE, - STATE(2233), 1, + STATE(2185), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162484] = 2, + [162042] = 3, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(5651), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5999), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162493] = 3, - ACTIONS(2482), 1, + [162053] = 3, + ACTIONS(4588), 1, + anon_sym_LPAREN, + STATE(2220), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162064] = 3, + ACTIONS(4336), 1, anon_sym_LBRACE, - STATE(5167), 1, + STATE(2187), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162504] = 2, + [162075] = 3, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(5858), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162086] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6049), 2, + ACTIONS(8303), 2, anon_sym_COMMA, anon_sym_RBRACE, - [162513] = 2, + [162095] = 3, + ACTIONS(8536), 1, + sym_identifier, + ACTIONS(8540), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7429), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [162522] = 3, - ACTIONS(4352), 1, + [162106] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2240), 1, + STATE(2663), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162533] = 3, - ACTIONS(2482), 1, - anon_sym_LBRACE, - STATE(5177), 1, - sym_statement_block, + [162117] = 3, + ACTIONS(8847), 1, + sym_identifier, + ACTIONS(8849), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162544] = 2, + [162128] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8898), 2, + ACTIONS(4472), 2, sym__automatic_semicolon, anon_sym_SEMI, - [162553] = 3, - ACTIONS(6832), 1, - anon_sym_LBRACE, - STATE(4248), 1, - sym_class_body, + [162137] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162564] = 2, + ACTIONS(8851), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162146] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8900), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [162573] = 3, - ACTIONS(8902), 1, + ACTIONS(8853), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162155] = 3, + ACTIONS(8855), 1, sym_identifier, - ACTIONS(8904), 1, + ACTIONS(8857), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162584] = 3, - ACTIONS(6771), 1, - anon_sym_LBRACE, - STATE(2544), 1, - sym_class_body, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [162595] = 3, - ACTIONS(6476), 1, + [162166] = 3, + ACTIONS(6453), 1, anon_sym_LPAREN, - STATE(5745), 1, + STATE(5704), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162606] = 3, - ACTIONS(8906), 1, + [162177] = 3, + ACTIONS(8859), 1, sym_identifier, - ACTIONS(8908), 1, + ACTIONS(8861), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162617] = 3, - ACTIONS(8910), 1, - sym_identifier, - ACTIONS(8912), 1, - sym_private_property_identifier, + [162188] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162628] = 3, - ACTIONS(6832), 1, + ACTIONS(6012), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162197] = 3, + ACTIONS(7065), 1, anon_sym_LBRACE, - STATE(4251), 1, - sym_class_body, + STATE(3998), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162639] = 3, - ACTIONS(6476), 1, - anon_sym_LPAREN, - STATE(3969), 1, - sym_formal_parameters, + [162208] = 3, + ACTIONS(2483), 1, + anon_sym_LBRACE, + STATE(5238), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162650] = 3, - ACTIONS(8914), 1, - sym_identifier, - ACTIONS(8916), 1, - sym_private_property_identifier, + [162219] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162661] = 3, - ACTIONS(7273), 1, + ACTIONS(6016), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162228] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2682), 1, + STATE(2707), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162672] = 3, - ACTIONS(6771), 1, + [162239] = 3, + ACTIONS(6853), 1, anon_sym_LBRACE, - STATE(1681), 1, + STATE(792), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162683] = 3, - ACTIONS(4348), 1, + [162250] = 3, + ACTIONS(6923), 1, anon_sym_LBRACE, - STATE(1683), 1, - sym_statement_block, + STATE(898), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162694] = 3, - ACTIONS(6476), 1, - anon_sym_LPAREN, - STATE(5595), 1, - sym_formal_parameters, + [162261] = 3, + ACTIONS(8863), 1, + sym_identifier, + ACTIONS(8865), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162705] = 3, - ACTIONS(7273), 1, + [162272] = 3, + ACTIONS(6847), 1, anon_sym_LBRACE, - STATE(2657), 1, - sym_statement_block, + STATE(224), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162716] = 3, - ACTIONS(8918), 1, - sym_identifier, - ACTIONS(8920), 1, - sym_private_property_identifier, + [162283] = 3, + ACTIONS(8867), 1, + anon_sym_SEMI, + ACTIONS(8869), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162727] = 3, - ACTIONS(8922), 1, - sym_identifier, - ACTIONS(8924), 1, - sym_private_property_identifier, + [162294] = 3, + ACTIONS(7065), 1, + anon_sym_LBRACE, + STATE(796), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162305] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162738] = 3, - ACTIONS(6741), 1, + ACTIONS(8871), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [162314] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2307), 1, - sym_class_body, + STATE(2665), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162749] = 3, - ACTIONS(4348), 1, + [162325] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(1704), 1, + STATE(2703), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162760] = 3, - ACTIONS(8926), 1, + [162336] = 3, + ACTIONS(8873), 1, sym_identifier, - ACTIONS(8928), 1, + ACTIONS(8875), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162347] = 3, + ACTIONS(8877), 1, + sym_identifier, + ACTIONS(8879), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162771] = 3, - ACTIONS(7028), 1, + [162358] = 3, + ACTIONS(7065), 1, anon_sym_LBRACE, - STATE(3976), 1, + STATE(4007), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162782] = 3, - ACTIONS(6771), 1, + [162369] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(1705), 1, - sym_class_body, + STATE(2708), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162793] = 3, - ACTIONS(8930), 1, - sym_identifier, - ACTIONS(8932), 1, - sym_private_property_identifier, + [162380] = 3, + ACTIONS(8677), 1, + anon_sym_LBRACE, + STATE(907), 1, + sym_enum_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162804] = 3, - ACTIONS(2482), 1, + [162391] = 3, + ACTIONS(6853), 1, anon_sym_LBRACE, - STATE(737), 1, - sym_statement_block, + STATE(797), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162815] = 3, - ACTIONS(4352), 1, + [162402] = 3, + ACTIONS(6718), 1, anon_sym_LBRACE, - STATE(2313), 1, - sym_statement_block, + STATE(2190), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162826] = 3, - ACTIONS(7273), 1, + [162413] = 3, + ACTIONS(4336), 1, anon_sym_LBRACE, - STATE(2715), 1, + STATE(2192), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162837] = 2, + [162424] = 3, + ACTIONS(3281), 1, + anon_sym_LPAREN, + STATE(3571), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8372), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162846] = 2, + [162435] = 3, + ACTIONS(7242), 1, + anon_sym_LBRACE, + STATE(2710), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8934), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162855] = 3, - ACTIONS(7273), 1, - anon_sym_LBRACE, - STATE(2675), 1, - sym_statement_block, + [162446] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162866] = 3, - ACTIONS(7273), 1, + ACTIONS(8881), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [162455] = 3, + ACTIONS(6718), 1, anon_sym_LBRACE, - STATE(2714), 1, - sym_statement_block, + STATE(2197), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162877] = 3, - ACTIONS(7273), 1, + [162466] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2692), 1, + STATE(2651), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162888] = 2, + [162477] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8936), 2, + ACTIONS(5996), 2, anon_sym_COMMA, anon_sym_RBRACE, - [162897] = 2, + [162486] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8173), 2, + ACTIONS(8883), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [162906] = 3, - ACTIONS(6832), 1, + anon_sym_GT, + [162495] = 3, + ACTIONS(6718), 1, anon_sym_LBRACE, - STATE(791), 1, + STATE(2230), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162917] = 3, - ACTIONS(7028), 1, - anon_sym_LBRACE, - STATE(3981), 1, - sym_statement_block, + [162506] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162928] = 3, - ACTIONS(6741), 1, - anon_sym_LBRACE, - STATE(2314), 1, - sym_class_body, + ACTIONS(8885), 2, + anon_sym_COMMA, + anon_sym_GT, + [162515] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162939] = 3, - ACTIONS(7273), 1, + ACTIONS(6032), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162524] = 3, + ACTIONS(4336), 1, anon_sym_LBRACE, - STATE(2711), 1, + STATE(2200), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162950] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8938), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [162959] = 3, - ACTIONS(6771), 1, + [162535] = 3, + ACTIONS(6853), 1, anon_sym_LBRACE, - STATE(1693), 1, + STATE(4091), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162970] = 3, - ACTIONS(8714), 1, - anon_sym_LPAREN, - STATE(55), 1, - sym_parenthesized_expression, + [162546] = 3, + ACTIONS(8887), 1, + anon_sym_SEMI, + ACTIONS(8889), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162981] = 3, - ACTIONS(7273), 1, + [162557] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2656), 1, + STATE(2712), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162992] = 3, - ACTIONS(7028), 1, + [162568] = 3, + ACTIONS(2483), 1, anon_sym_LBRACE, - STATE(795), 1, + STATE(5345), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163003] = 3, - ACTIONS(6832), 1, - anon_sym_LBRACE, - STATE(778), 1, - sym_class_body, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [163014] = 3, - ACTIONS(7273), 1, + [162579] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2708), 1, + STATE(2653), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163025] = 2, + [162590] = 3, + ACTIONS(8891), 1, + sym_identifier, + ACTIONS(8893), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8940), 2, - sym__automatic_semicolon, + [162601] = 3, + ACTIONS(8895), 1, anon_sym_SEMI, - [163034] = 3, - ACTIONS(2482), 1, - anon_sym_LBRACE, - STATE(5332), 1, - sym_statement_block, + ACTIONS(8897), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163045] = 3, - ACTIONS(7273), 1, + [162612] = 3, + ACTIONS(4336), 1, anon_sym_LBRACE, - STATE(2703), 1, + STATE(2206), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163056] = 3, - ACTIONS(3535), 1, - anon_sym_LPAREN, - STATE(1271), 1, - sym_arguments, + [162623] = 3, + ACTIONS(6718), 1, + anon_sym_LBRACE, + STATE(2194), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163067] = 3, - ACTIONS(8714), 1, - anon_sym_LPAREN, - STATE(5241), 1, - sym_parenthesized_expression, + [162634] = 3, + ACTIONS(7242), 1, + anon_sym_LBRACE, + STATE(2690), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163078] = 3, - ACTIONS(4348), 1, + [162645] = 3, + ACTIONS(2483), 1, anon_sym_LBRACE, - STATE(1686), 1, + STATE(5465), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163089] = 2, + [162656] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6014), 2, + ACTIONS(5988), 2, anon_sym_COMMA, anon_sym_RBRACE, - [163098] = 3, - ACTIONS(6832), 1, - anon_sym_LBRACE, - STATE(4262), 1, - sym_class_body, + [162665] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163109] = 3, - ACTIONS(7273), 1, + ACTIONS(6000), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162674] = 3, + ACTIONS(2483), 1, anon_sym_LBRACE, - STATE(2709), 1, + STATE(5348), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163120] = 3, - ACTIONS(7273), 1, + [162685] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2704), 1, + STATE(2705), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163131] = 3, - ACTIONS(2482), 1, - anon_sym_LBRACE, - STATE(5334), 1, - sym_statement_block, + [162696] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163142] = 3, - ACTIONS(4348), 1, + ACTIONS(8899), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [162705] = 3, + ACTIONS(2483), 1, anon_sym_LBRACE, - STATE(1695), 1, + STATE(5316), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163153] = 2, + [162716] = 3, + ACTIONS(7242), 1, + anon_sym_LBRACE, + STATE(2673), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6075), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [163162] = 3, - ACTIONS(8942), 1, - sym_identifier, - ACTIONS(8944), 1, - sym_private_property_identifier, + [162727] = 3, + ACTIONS(3514), 1, + anon_sym_LPAREN, + STATE(1287), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163173] = 3, - ACTIONS(6478), 1, - anon_sym_COLON, - STATE(4756), 1, - sym_type_annotation, + [162738] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163184] = 3, - ACTIONS(6476), 1, + ACTIONS(6042), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162747] = 3, + ACTIONS(6066), 1, anon_sym_LPAREN, - STATE(5666), 1, - sym_formal_parameters, + STATE(2790), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163195] = 3, - ACTIONS(6741), 1, + [162758] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2330), 1, - sym_class_body, + STATE(2656), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163206] = 3, - ACTIONS(6476), 1, + [162769] = 3, + ACTIONS(8657), 1, anon_sym_LPAREN, - STATE(4346), 1, - sym_formal_parameters, + STATE(65), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163217] = 3, - ACTIONS(6476), 1, + [162780] = 3, + ACTIONS(8657), 1, anon_sym_LPAREN, - STATE(5682), 1, - sym_formal_parameters, + STATE(70), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162791] = 3, + ACTIONS(6718), 1, + anon_sym_LBRACE, + STATE(2323), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163228] = 3, - ACTIONS(4352), 1, + [162802] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2331), 1, + STATE(2655), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163239] = 3, - ACTIONS(6476), 1, - anon_sym_LPAREN, - STATE(4349), 1, - sym_formal_parameters, + [162813] = 3, + ACTIONS(4336), 1, + anon_sym_LBRACE, + STATE(2324), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163250] = 3, - ACTIONS(6476), 1, - anon_sym_LPAREN, - STATE(5694), 1, - sym_formal_parameters, + [162824] = 3, + ACTIONS(6732), 1, + anon_sym_LBRACE, + STATE(1663), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163261] = 3, - ACTIONS(4352), 1, + [162835] = 3, + ACTIONS(4336), 1, anon_sym_LBRACE, - STATE(2332), 1, + STATE(2325), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163272] = 3, - ACTIONS(6741), 1, + [162846] = 3, + ACTIONS(7242), 1, anon_sym_LBRACE, - STATE(2130), 1, - sym_class_body, + STATE(2657), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163283] = 3, - ACTIONS(6741), 1, + [162857] = 3, + ACTIONS(6718), 1, anon_sym_LBRACE, - STATE(2333), 1, + STATE(2326), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163294] = 3, - ACTIONS(7273), 1, + [162868] = 3, + ACTIONS(4362), 1, anon_sym_LBRACE, - STATE(2652), 1, + STATE(1665), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163305] = 3, - ACTIONS(4348), 1, - anon_sym_LBRACE, - STATE(1697), 1, - sym_statement_block, + [162879] = 3, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(5654), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163316] = 3, - ACTIONS(7273), 1, - anon_sym_LBRACE, - STATE(2683), 1, - sym_statement_block, + [162890] = 3, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(4322), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163327] = 3, - ACTIONS(8946), 1, + [162901] = 3, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(5670), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162912] = 3, + ACTIONS(8901), 1, anon_sym_SEMI, - ACTIONS(8948), 1, + ACTIONS(8903), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163338] = 2, + [162923] = 3, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(4326), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7431), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [163347] = 3, - ACTIONS(8950), 1, - sym_identifier, - ACTIONS(8952), 1, - anon_sym_STAR, + [162934] = 3, + ACTIONS(6453), 1, + anon_sym_LPAREN, + STATE(5682), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163358] = 3, - ACTIONS(8664), 1, - anon_sym_LBRACE, - STATE(4077), 1, - sym_enum_body, + [162945] = 3, + ACTIONS(8905), 1, + anon_sym_SEMI, + ACTIONS(8907), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163369] = 2, - ACTIONS(8954), 1, - anon_sym_RBRACK, + [162956] = 3, + ACTIONS(8909), 1, + anon_sym_SEMI, + ACTIONS(8911), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163377] = 2, - ACTIONS(8956), 1, - sym_identifier, + [162967] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163385] = 2, - ACTIONS(8958), 1, - anon_sym_RPAREN, + ACTIONS(8913), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162976] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163393] = 3, - ACTIONS(3), 1, + ACTIONS(6024), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162985] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + ACTIONS(6028), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162994] = 2, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8960), 1, - sym_regex_pattern, - [163403] = 2, - ACTIONS(8962), 1, - anon_sym_from, + sym_comment, + ACTIONS(6028), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [163003] = 2, + ACTIONS(8915), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163411] = 2, - ACTIONS(8964), 1, + [163011] = 2, + ACTIONS(8917), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163419] = 2, - ACTIONS(5294), 1, - anon_sym_RPAREN, + [163019] = 2, + ACTIONS(8282), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163427] = 2, - ACTIONS(8966), 1, - anon_sym_from, + [163027] = 2, + ACTIONS(8919), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163435] = 2, - ACTIONS(8968), 1, - anon_sym_LBRACE, + [163035] = 2, + ACTIONS(8921), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163443] = 2, - ACTIONS(8970), 1, - anon_sym_DOT, + [163043] = 2, + ACTIONS(8923), 1, + anon_sym_symbol, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163451] = 2, - ACTIONS(5661), 1, - anon_sym_in, + [163051] = 2, + ACTIONS(8925), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163459] = 2, - ACTIONS(8972), 1, - anon_sym_EQ_GT, + [163059] = 2, + ACTIONS(8927), 1, + anon_sym_symbol, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163467] = 2, - ACTIONS(8974), 1, - anon_sym_EQ_GT, + [163067] = 2, + ACTIONS(8929), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163475] = 2, - ACTIONS(8976), 1, + [163075] = 2, + ACTIONS(8931), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163483] = 2, - ACTIONS(8978), 1, - anon_sym_EQ_GT, + [163083] = 2, + ACTIONS(5652), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163491] = 2, - ACTIONS(8980), 1, + [163091] = 2, + ACTIONS(8933), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163499] = 2, - ACTIONS(8982), 1, - anon_sym_require, + [163099] = 2, + ACTIONS(8935), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163507] = 2, - ACTIONS(8984), 1, - sym_identifier, + [163107] = 2, + ACTIONS(8937), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163515] = 2, - ACTIONS(5480), 1, - anon_sym_COLON, + [163115] = 2, + ACTIONS(8939), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163523] = 2, - ACTIONS(8986), 1, + [163123] = 2, + ACTIONS(8941), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163531] = 3, + [163131] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8988), 1, + ACTIONS(8943), 1, sym_regex_pattern, - [163541] = 2, - ACTIONS(8990), 1, - sym_identifier, + [163141] = 2, + ACTIONS(8945), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163549] = 2, - ACTIONS(8992), 1, - sym_identifier, + [163149] = 2, + ACTIONS(8118), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163557] = 2, - ACTIONS(8994), 1, - anon_sym_EQ, + [163157] = 2, + ACTIONS(8947), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163565] = 2, - ACTIONS(8996), 1, - anon_sym_RBRACK, + [163165] = 2, + ACTIONS(8949), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163573] = 2, - ACTIONS(8998), 1, - sym_identifier, + [163173] = 2, + ACTIONS(5290), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163581] = 2, - ACTIONS(9000), 1, - anon_sym_from, + [163181] = 2, + ACTIONS(8951), 1, + anon_sym_function, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163589] = 2, - ACTIONS(9002), 1, - anon_sym_LBRACK, + [163189] = 2, + ACTIONS(8953), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163597] = 2, - ACTIONS(9004), 1, - anon_sym_function, + [163197] = 2, + ACTIONS(8955), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163605] = 2, - ACTIONS(9006), 1, - anon_sym_RBRACK, + [163205] = 2, + ACTIONS(8957), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163613] = 2, - ACTIONS(5361), 1, - anon_sym_RBRACK, + [163213] = 2, + ACTIONS(8959), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163621] = 2, - ACTIONS(5482), 1, - anon_sym_RPAREN, + [163221] = 2, + ACTIONS(8961), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163629] = 2, - ACTIONS(9008), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, + [163229] = 3, + ACTIONS(3), 1, sym_comment, - [163637] = 2, - ACTIONS(9010), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8963), 1, + sym_regex_pattern, + [163239] = 2, + ACTIONS(8965), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163645] = 2, - ACTIONS(9012), 1, - sym_identifier, + [163247] = 2, + ACTIONS(8967), 1, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163653] = 2, - ACTIONS(9014), 1, - anon_sym_while, + [163255] = 2, + ACTIONS(8969), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163661] = 2, - ACTIONS(9016), 1, - sym_identifier, + [163263] = 2, + ACTIONS(5288), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163669] = 2, - ACTIONS(9018), 1, + [163271] = 2, + ACTIONS(8971), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163677] = 2, - ACTIONS(9020), 1, - anon_sym_from, + [163279] = 2, + ACTIONS(5219), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163685] = 2, - ACTIONS(9022), 1, - sym_identifier, + [163287] = 2, + ACTIONS(6756), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163693] = 2, - ACTIONS(9024), 1, + [163295] = 2, + ACTIONS(8973), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163701] = 2, - ACTIONS(9026), 1, - anon_sym_RBRACK, + [163303] = 2, + ACTIONS(8975), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163709] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9028), 1, - sym_regex_pattern, - [163719] = 2, - ACTIONS(9030), 1, - anon_sym_RBRACK, + [163311] = 2, + ACTIONS(8026), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163727] = 2, - ACTIONS(9032), 1, - anon_sym_new, + [163319] = 2, + ACTIONS(8977), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163735] = 2, - ACTIONS(9034), 1, - anon_sym_symbol, + [163327] = 2, + ACTIONS(5459), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163743] = 2, - ACTIONS(9036), 1, - sym_identifier, + [163335] = 2, + ACTIONS(4734), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163751] = 2, - ACTIONS(9038), 1, - anon_sym_RBRACK, + [163343] = 2, + ACTIONS(8979), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163759] = 2, - ACTIONS(4736), 1, - anon_sym_in, + [163351] = 2, + ACTIONS(8981), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163767] = 2, - ACTIONS(5442), 1, + [163359] = 2, + ACTIONS(8983), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163775] = 2, - ACTIONS(9040), 1, - sym_identifier, + [163367] = 2, + ACTIONS(5461), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163783] = 2, - ACTIONS(9042), 1, + [163375] = 2, + ACTIONS(8985), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163791] = 2, - ACTIONS(9044), 1, - anon_sym_RBRACK, + [163383] = 2, + ACTIONS(4909), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163799] = 2, - ACTIONS(9046), 1, + [163391] = 2, + ACTIONS(8987), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163807] = 2, - ACTIONS(9048), 1, + [163399] = 2, + ACTIONS(8989), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163815] = 2, - ACTIONS(9050), 1, - anon_sym_RBRACK, + [163407] = 2, + ACTIONS(8991), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163823] = 2, - ACTIONS(9052), 1, - anon_sym_RPAREN, + [163415] = 2, + ACTIONS(8993), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163831] = 2, - ACTIONS(9054), 1, + [163423] = 2, + ACTIONS(8995), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163839] = 2, - ACTIONS(8104), 1, - anon_sym_RBRACK, + [163431] = 2, + ACTIONS(8997), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163847] = 2, - ACTIONS(9056), 1, - anon_sym_RBRACK, + [163439] = 2, + ACTIONS(8999), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163855] = 2, - ACTIONS(8551), 1, - anon_sym_RBRACK, + [163447] = 2, + ACTIONS(9001), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163863] = 2, - ACTIONS(9058), 1, - anon_sym_EQ_GT, + [163455] = 2, + ACTIONS(7193), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163871] = 2, - ACTIONS(5783), 1, - anon_sym_in, + [163463] = 2, + ACTIONS(9003), 1, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163879] = 2, - ACTIONS(9060), 1, - anon_sym_EQ_GT, + [163471] = 2, + ACTIONS(9005), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163887] = 2, - ACTIONS(9062), 1, - anon_sym_RPAREN, + [163479] = 2, + ACTIONS(9007), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163895] = 2, - ACTIONS(9064), 1, - anon_sym_EQ_GT, + [163487] = 2, + ACTIONS(9009), 1, + anon_sym_require, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163903] = 2, - ACTIONS(9066), 1, + [163495] = 2, + ACTIONS(9011), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163911] = 2, - ACTIONS(9068), 1, - anon_sym_EQ_GT, + [163503] = 2, + ACTIONS(5773), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163919] = 2, - ACTIONS(9070), 1, - anon_sym_RBRACK, + [163511] = 2, + ACTIONS(9013), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163927] = 2, - ACTIONS(9072), 1, - anon_sym_RBRACK, + [163519] = 2, + ACTIONS(9015), 1, + anon_sym_meta, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163935] = 2, - ACTIONS(9074), 1, - anon_sym_RBRACK, + [163527] = 2, + ACTIONS(9017), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163943] = 2, - ACTIONS(9076), 1, + [163535] = 2, + ACTIONS(9019), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163951] = 2, - ACTIONS(5419), 1, - anon_sym_SEMI, + [163543] = 2, + ACTIONS(9021), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163959] = 2, - ACTIONS(9078), 1, - sym_identifier, + [163551] = 2, + ACTIONS(9023), 1, + anon_sym_class, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163967] = 2, - ACTIONS(9080), 1, - sym_identifier, + [163559] = 2, + ACTIONS(9025), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163975] = 2, - ACTIONS(9082), 1, + [163567] = 2, + ACTIONS(9027), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163983] = 2, - ACTIONS(9084), 1, + [163575] = 2, + ACTIONS(9029), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163991] = 2, - ACTIONS(9086), 1, - anon_sym_RBRACK, + [163583] = 2, + ACTIONS(9031), 1, + anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163999] = 2, - ACTIONS(9088), 1, - anon_sym_RBRACK, + [163591] = 2, + ACTIONS(9033), 1, + anon_sym_while, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164007] = 2, - ACTIONS(9090), 1, - sym_identifier, + [163599] = 2, + ACTIONS(9035), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164015] = 2, - ACTIONS(9092), 1, - anon_sym_COLON, + [163607] = 2, + ACTIONS(9037), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164023] = 2, - ACTIONS(9094), 1, - anon_sym_EQ, + [163615] = 2, + ACTIONS(5296), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164031] = 2, - ACTIONS(9096), 1, + [163623] = 2, + ACTIONS(9039), 1, anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164039] = 2, - ACTIONS(9098), 1, - anon_sym_RBRACK, + [163631] = 2, + ACTIONS(9041), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164047] = 2, - ACTIONS(9100), 1, + [163639] = 2, + ACTIONS(9043), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164055] = 2, - ACTIONS(9102), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [164063] = 2, - ACTIONS(9104), 1, + [163647] = 2, + ACTIONS(9045), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164071] = 2, - ACTIONS(6538), 1, - anon_sym_is, + [163655] = 2, + ACTIONS(9047), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164079] = 2, - ACTIONS(9106), 1, - anon_sym_RBRACK, + [163663] = 2, + ACTIONS(9049), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164087] = 2, - ACTIONS(9108), 1, + [163671] = 2, + ACTIONS(9051), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164095] = 2, - ACTIONS(5540), 1, + [163679] = 2, + ACTIONS(9053), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164103] = 2, - ACTIONS(9110), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [164111] = 2, - ACTIONS(9112), 1, - anon_sym_RBRACK, + [163687] = 2, + ACTIONS(5527), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164119] = 2, - ACTIONS(9114), 1, - anon_sym_EQ, + [163695] = 2, + ACTIONS(9055), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164127] = 3, + [163703] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9116), 1, + ACTIONS(9057), 1, anon_sym_SLASH2, - [164137] = 2, - ACTIONS(8206), 1, - anon_sym_RBRACK, + [163713] = 2, + ACTIONS(9059), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164145] = 2, - ACTIONS(9118), 1, - anon_sym_DOT, + [163721] = 2, + ACTIONS(9061), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164153] = 2, - ACTIONS(9120), 1, - sym_identifier, + [163729] = 2, + ACTIONS(9063), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164161] = 2, - ACTIONS(9122), 1, + [163737] = 2, + ACTIONS(9065), 1, + anon_sym_class, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163745] = 2, + ACTIONS(9067), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164169] = 2, - ACTIONS(9124), 1, - sym_identifier, + [163753] = 2, + ACTIONS(9069), 1, + anon_sym_namespace, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164177] = 2, - ACTIONS(9126), 1, + [163761] = 2, + ACTIONS(9071), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164185] = 2, - ACTIONS(5542), 1, - anon_sym_RPAREN, + [163769] = 2, + ACTIONS(5465), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164193] = 2, - ACTIONS(7482), 1, + [163777] = 2, + ACTIONS(5529), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164201] = 2, - ACTIONS(4980), 1, - anon_sym_RPAREN, + [163785] = 2, + ACTIONS(8544), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164209] = 2, - ACTIONS(5544), 1, + [163793] = 2, + ACTIONS(9073), 1, + anon_sym_symbol, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163801] = 2, + ACTIONS(5531), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164217] = 2, - ACTIONS(9128), 1, + [163809] = 2, + ACTIONS(9075), 1, + anon_sym_from, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163817] = 2, + ACTIONS(9077), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163825] = 2, + ACTIONS(9079), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164225] = 2, - ACTIONS(9130), 1, + [163833] = 2, + ACTIONS(9081), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164233] = 2, - ACTIONS(9132), 1, + [163841] = 2, + ACTIONS(4112), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163849] = 2, + ACTIONS(8506), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164241] = 2, - ACTIONS(5344), 1, + [163857] = 2, + ACTIONS(9083), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163865] = 2, + ACTIONS(9085), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163873] = 2, + ACTIONS(5259), 1, anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164249] = 2, - ACTIONS(5484), 1, + [163881] = 2, + ACTIONS(4969), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164257] = 2, - ACTIONS(9134), 1, + [163889] = 2, + ACTIONS(9087), 1, anon_sym_class, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164265] = 2, - ACTIONS(9136), 1, - anon_sym_EQ, + [163897] = 2, + ACTIONS(9089), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164273] = 2, - ACTIONS(9138), 1, + [163905] = 2, + ACTIONS(9091), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164281] = 2, - ACTIONS(9140), 1, - anon_sym_RPAREN, + [163913] = 2, + ACTIONS(9093), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164289] = 2, - ACTIONS(9142), 1, + [163921] = 2, + ACTIONS(9095), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164297] = 2, - ACTIONS(9144), 1, + [163929] = 2, + ACTIONS(9097), 1, anon_sym_namespace, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164305] = 2, - ACTIONS(9146), 1, - anon_sym_from, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [164313] = 2, - ACTIONS(9148), 1, - anon_sym_EQ_GT, + [163937] = 2, + ACTIONS(5187), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164321] = 2, - ACTIONS(9150), 1, - anon_sym_COLON, + [163945] = 2, + ACTIONS(9099), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164329] = 2, - ACTIONS(9152), 1, + [163953] = 2, + ACTIONS(9101), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164337] = 2, - ACTIONS(5272), 1, - anon_sym_RPAREN, + [163961] = 2, + ACTIONS(9103), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164345] = 2, - ACTIONS(9154), 1, + [163969] = 2, + ACTIONS(9105), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164353] = 2, - ACTIONS(9156), 1, - anon_sym_as, + [163977] = 2, + ACTIONS(9107), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164361] = 2, - ACTIONS(9158), 1, - anon_sym_RBRACK, + [163985] = 2, + ACTIONS(9109), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164369] = 2, - ACTIONS(5200), 1, - anon_sym_in, + [163993] = 2, + ACTIONS(9111), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164377] = 2, - ACTIONS(9160), 1, + [164001] = 2, + ACTIONS(9113), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164385] = 2, - ACTIONS(7238), 1, - anon_sym_EQ, + [164009] = 2, + ACTIONS(9115), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164393] = 2, - ACTIONS(9162), 1, - anon_sym_EQ_GT, + [164017] = 2, + ACTIONS(9117), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164401] = 2, - ACTIONS(9164), 1, - anon_sym_RPAREN, + [164025] = 2, + ACTIONS(9119), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164409] = 2, - ACTIONS(9166), 1, + [164033] = 2, + ACTIONS(9121), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164417] = 2, - ACTIONS(9168), 1, - anon_sym_EQ_GT, + [164041] = 2, + ACTIONS(9123), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164425] = 2, - ACTIONS(9170), 1, - sym_identifier, + [164049] = 2, + ACTIONS(9125), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164057] = 2, + ACTIONS(5372), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164433] = 2, - ACTIONS(9172), 1, + [164065] = 2, + ACTIONS(9127), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164441] = 2, - ACTIONS(5486), 1, - anon_sym_RPAREN, + [164073] = 2, + ACTIONS(9129), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164449] = 2, - ACTIONS(9174), 1, + [164081] = 2, + ACTIONS(9131), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164457] = 2, - ACTIONS(9176), 1, + [164089] = 2, + ACTIONS(9133), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164465] = 2, - ACTIONS(4837), 1, - anon_sym_in, + [164097] = 2, + ACTIONS(9135), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164473] = 2, - ACTIONS(4907), 1, - anon_sym_in, + [164105] = 2, + ACTIONS(9137), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164481] = 2, - ACTIONS(9178), 1, - sym_identifier, + [164113] = 2, + ACTIONS(9139), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164489] = 2, - ACTIONS(9180), 1, - anon_sym_EQ_GT, + [164121] = 2, + ACTIONS(9141), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164497] = 2, - ACTIONS(9182), 1, - anon_sym_EQ, + [164129] = 2, + ACTIONS(9143), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164505] = 2, - ACTIONS(9184), 1, + [164137] = 2, + ACTIONS(9145), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164513] = 2, - ACTIONS(5367), 1, - anon_sym_RBRACK, + [164145] = 2, + ACTIONS(9147), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164521] = 2, - ACTIONS(9186), 1, - anon_sym_EQ_GT, + [164153] = 2, + ACTIONS(9149), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164529] = 2, - ACTIONS(9188), 1, + [164161] = 2, + ACTIONS(9151), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164537] = 2, - ACTIONS(9190), 1, + [164169] = 2, + ACTIONS(9153), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164545] = 2, - ACTIONS(9192), 1, - anon_sym_EQ, + [164177] = 2, + ACTIONS(9155), 1, + anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164553] = 2, - ACTIONS(9194), 1, - anon_sym_EQ, + [164185] = 2, + ACTIONS(9157), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164561] = 2, - ACTIONS(9196), 1, - anon_sym_RBRACK, + [164193] = 2, + ACTIONS(9159), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164569] = 2, - ACTIONS(9198), 1, - sym_identifier, + [164201] = 2, + ACTIONS(9161), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164577] = 2, - ACTIONS(9200), 1, + [164209] = 2, + ACTIONS(9163), 1, anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164585] = 2, - ACTIONS(9202), 1, + [164217] = 2, + ACTIONS(9165), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164593] = 2, - ACTIONS(9204), 1, - anon_sym_COLON, + [164225] = 2, + ACTIONS(9167), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164601] = 2, - ACTIONS(9206), 1, + [164233] = 2, + ACTIONS(9169), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164609] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [164241] = 2, + ACTIONS(9171), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(9208), 1, - sym_regex_pattern, - [164619] = 2, - ACTIONS(8494), 1, - anon_sym_RBRACK, + sym_comment, + [164249] = 2, + ACTIONS(9173), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164627] = 2, - ACTIONS(8314), 1, + [164257] = 2, + ACTIONS(8236), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164635] = 2, - ACTIONS(9210), 1, + [164265] = 2, + ACTIONS(9175), 1, anon_sym_class, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164643] = 2, - ACTIONS(9212), 1, - sym_identifier, + [164273] = 2, + ACTIONS(9177), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164651] = 2, - ACTIONS(9214), 1, - anon_sym_RBRACK, + [164281] = 2, + ACTIONS(9179), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164659] = 2, - ACTIONS(9216), 1, + [164289] = 2, + ACTIONS(9181), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164667] = 2, - ACTIONS(9218), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_html_comment, + [164297] = 3, + ACTIONS(3), 1, sym_comment, - [164675] = 2, - ACTIONS(9220), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9183), 1, + sym_regex_pattern, + [164307] = 2, + ACTIONS(9185), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164683] = 2, - ACTIONS(9222), 1, - anon_sym_EQ_GT, + [164315] = 2, + ACTIONS(9187), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164691] = 2, - ACTIONS(9224), 1, - anon_sym_EQ_GT, + [164323] = 2, + ACTIONS(9189), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164699] = 2, - ACTIONS(9226), 1, - sym_identifier, + [164331] = 2, + ACTIONS(9191), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164707] = 2, - ACTIONS(4926), 1, - anon_sym_RPAREN, + [164339] = 2, + ACTIONS(9193), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164715] = 2, - ACTIONS(5488), 1, - anon_sym_SEMI, + [164347] = 2, + ACTIONS(9195), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164723] = 2, - ACTIONS(9228), 1, - anon_sym_RBRACK, + [164355] = 2, + ACTIONS(4826), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164731] = 2, - ACTIONS(9230), 1, + [164363] = 2, + ACTIONS(9197), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164739] = 2, - ACTIONS(9232), 1, - anon_sym_RBRACK, + [164371] = 2, + ACTIONS(9199), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164747] = 2, - ACTIONS(9234), 1, - sym_identifier, + [164379] = 2, + ACTIONS(9201), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164755] = 2, - ACTIONS(9236), 1, - anon_sym_from, + [164387] = 2, + ACTIONS(9203), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164763] = 2, - ACTIONS(9238), 1, - sym_identifier, + [164395] = 2, + ACTIONS(9205), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164771] = 2, - ACTIONS(4881), 1, - anon_sym_RPAREN, + [164403] = 2, + ACTIONS(5326), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164779] = 2, - ACTIONS(9240), 1, + [164411] = 2, + ACTIONS(9207), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164787] = 2, - ACTIONS(9242), 1, - anon_sym_LPAREN, + [164419] = 2, + ACTIONS(9209), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164795] = 2, - ACTIONS(9244), 1, - sym_number, + [164427] = 2, + ACTIONS(5455), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164803] = 2, - ACTIONS(5300), 1, - anon_sym_SEMI, + [164435] = 2, + ACTIONS(9211), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164811] = 2, - ACTIONS(8132), 1, + [164443] = 2, + ACTIONS(9213), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164819] = 2, - ACTIONS(9246), 1, - anon_sym_target, + [164451] = 2, + ACTIONS(9215), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164827] = 2, - ACTIONS(9248), 1, + [164459] = 2, + ACTIONS(9217), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164835] = 2, - ACTIONS(9250), 1, + [164467] = 2, + ACTIONS(9015), 1, anon_sym_target, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164843] = 2, - ACTIONS(9252), 1, - anon_sym_EQ_GT, + [164475] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9219), 1, + anon_sym_SLASH2, + [164485] = 2, + ACTIONS(9221), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164851] = 2, - ACTIONS(9254), 1, - anon_sym_symbol, + [164493] = 2, + ACTIONS(9223), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164859] = 2, - ACTIONS(9256), 1, + [164501] = 2, + ACTIONS(9225), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164867] = 2, - ACTIONS(9258), 1, - anon_sym_RBRACK, + [164509] = 2, + ACTIONS(9227), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164517] = 2, + ACTIONS(9229), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164875] = 3, + [164525] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9260), 1, - anon_sym_SLASH2, - [164885] = 2, - ACTIONS(9262), 1, - anon_sym_EQ_GT, + ACTIONS(9231), 1, + sym_regex_pattern, + [164535] = 2, + ACTIONS(9233), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164893] = 2, - ACTIONS(9264), 1, - anon_sym_readonly, + [164543] = 2, + ACTIONS(9235), 1, + ts_builtin_sym_end, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164901] = 2, - ACTIONS(9266), 1, - anon_sym_RBRACK, + [164551] = 2, + ACTIONS(9237), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164909] = 2, - ACTIONS(9268), 1, - anon_sym_class, + [164559] = 2, + ACTIONS(9239), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164917] = 2, - ACTIONS(9270), 1, + [164567] = 2, + ACTIONS(9241), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164925] = 2, - ACTIONS(9272), 1, - anon_sym_RPAREN, + [164575] = 2, + ACTIONS(9243), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164933] = 2, - ACTIONS(6781), 1, - anon_sym_is, - ACTIONS(5), 2, - sym_html_comment, + [164583] = 3, + ACTIONS(3), 1, sym_comment, - [164941] = 2, - ACTIONS(9274), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, - sym_comment, - [164949] = 2, - ACTIONS(9276), 1, - anon_sym_EQ_GT, + ACTIONS(9245), 1, + anon_sym_SLASH2, + [164593] = 2, + ACTIONS(9247), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164957] = 2, - ACTIONS(9278), 1, - anon_sym_class, + [164601] = 2, + ACTIONS(5543), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164965] = 2, - ACTIONS(5550), 1, - anon_sym_SEMI, + [164609] = 2, + ACTIONS(9249), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164973] = 2, - ACTIONS(9280), 1, - anon_sym_RBRACK, + [164617] = 2, + ACTIONS(9251), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164981] = 2, - ACTIONS(9282), 1, + [164625] = 2, + ACTIONS(9253), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164989] = 2, - ACTIONS(9284), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_html_comment, + [164633] = 3, + ACTIONS(3), 1, sym_comment, - [164997] = 2, - ACTIONS(9286), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, - sym_comment, - [165005] = 2, - ACTIONS(9288), 1, + ACTIONS(9255), 1, + sym_regex_pattern, + [164643] = 2, + ACTIONS(9257), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165013] = 2, - ACTIONS(9290), 1, + [164651] = 2, + ACTIONS(9259), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165021] = 2, - ACTIONS(9292), 1, + [164659] = 2, + ACTIONS(9261), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165029] = 2, - ACTIONS(9294), 1, + [164667] = 2, + ACTIONS(9263), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165037] = 2, - ACTIONS(9296), 1, - sym_identifier, + [164675] = 2, + ACTIONS(7217), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165045] = 2, - ACTIONS(9298), 1, + [164683] = 2, + ACTIONS(9265), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165053] = 2, - ACTIONS(7062), 1, + [164691] = 2, + ACTIONS(7059), 1, anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165061] = 2, - ACTIONS(9300), 1, - anon_sym_EQ_GT, + [164699] = 2, + ACTIONS(9267), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165069] = 2, - ACTIONS(9302), 1, - anon_sym_as, + [164707] = 2, + ACTIONS(9269), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165077] = 2, - ACTIONS(8500), 1, + [164715] = 2, + ACTIONS(8334), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165085] = 2, - ACTIONS(9304), 1, - anon_sym_RBRACK, + [164723] = 2, + ACTIONS(4920), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165093] = 2, - ACTIONS(5552), 1, + [164731] = 2, + ACTIONS(5545), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165101] = 2, - ACTIONS(9306), 1, - anon_sym_EQ_GT, + [164739] = 2, + ACTIONS(9271), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165109] = 2, - ACTIONS(9308), 1, + [164747] = 2, + ACTIONS(9273), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165117] = 2, - ACTIONS(9310), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, + [164755] = 3, + ACTIONS(3), 1, sym_comment, - [165125] = 2, - ACTIONS(9312), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9275), 1, + anon_sym_SLASH2, + [164765] = 2, + ACTIONS(9277), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165133] = 2, - ACTIONS(9314), 1, - anon_sym_EQ_GT, + [164773] = 2, + ACTIONS(9279), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165141] = 2, - ACTIONS(9316), 1, - anon_sym_EQ_GT, + [164781] = 2, + ACTIONS(9281), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165149] = 2, - ACTIONS(9318), 1, - anon_sym_RBRACK, + [164789] = 2, + ACTIONS(5431), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165157] = 2, - ACTIONS(9320), 1, - sym_identifier, + [164797] = 2, + ACTIONS(9283), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165165] = 2, - ACTIONS(9322), 1, - anon_sym_DOT, + [164805] = 2, + ACTIONS(9285), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165173] = 2, - ACTIONS(9324), 1, - anon_sym_EQ_GT, + [164813] = 2, + ACTIONS(9287), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165181] = 2, - ACTIONS(8555), 1, - anon_sym_RBRACE, + [164821] = 2, + ACTIONS(9289), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165189] = 2, - ACTIONS(9326), 1, - anon_sym_EQ_GT, + [164829] = 2, + ACTIONS(9291), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165197] = 2, - ACTIONS(9328), 1, + [164837] = 2, + ACTIONS(9293), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165205] = 2, - ACTIONS(9330), 1, + [164845] = 2, + ACTIONS(9295), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165213] = 2, - ACTIONS(9332), 1, - sym_number, + [164853] = 2, + ACTIONS(9297), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165221] = 2, - ACTIONS(9334), 1, - anon_sym_EQ_GT, + [164861] = 2, + ACTIONS(9299), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165229] = 2, - ACTIONS(4875), 1, - anon_sym_is, + [164869] = 2, + ACTIONS(9301), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165237] = 2, - ACTIONS(7783), 1, + [164877] = 2, + ACTIONS(7745), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165245] = 2, - ACTIONS(6662), 1, - anon_sym_is, + [164885] = 2, + ACTIONS(9303), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165253] = 2, - ACTIONS(9336), 1, - sym_identifier, + [164893] = 2, + ACTIONS(9305), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165261] = 2, - ACTIONS(9338), 1, + [164901] = 2, + ACTIONS(9307), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165269] = 2, - ACTIONS(9340), 1, + [164909] = 2, + ACTIONS(9309), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165277] = 2, - ACTIONS(9342), 1, + [164917] = 2, + ACTIONS(9311), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165285] = 2, - ACTIONS(7182), 1, - anon_sym_is, + [164925] = 2, + ACTIONS(9313), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165293] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9344), 1, - anon_sym_SLASH2, - [165303] = 2, - ACTIONS(9346), 1, - sym_number, + [164933] = 2, + ACTIONS(9315), 1, + anon_sym_target, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165311] = 2, - ACTIONS(9348), 1, + [164941] = 2, + ACTIONS(9317), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165319] = 2, - ACTIONS(9250), 1, - anon_sym_meta, + [164949] = 2, + ACTIONS(9319), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165327] = 2, - ACTIONS(9350), 1, - anon_sym_EQ_GT, + [164957] = 2, + ACTIONS(9321), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165335] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9352), 1, - anon_sym_SLASH2, - [165345] = 2, - ACTIONS(9354), 1, - anon_sym_EQ, + [164965] = 2, + ACTIONS(9323), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165353] = 2, - ACTIONS(9356), 1, - anon_sym_as, + [164973] = 2, + ACTIONS(9325), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165361] = 2, - ACTIONS(5452), 1, - anon_sym_RPAREN, + [164981] = 2, + ACTIONS(9327), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165369] = 2, - ACTIONS(9358), 1, + [164989] = 2, + ACTIONS(9329), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165377] = 2, - ACTIONS(9360), 1, - anon_sym_EQ_GT, + [164997] = 2, + ACTIONS(9331), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165385] = 2, - ACTIONS(9362), 1, - sym_identifier, + [165005] = 2, + ACTIONS(9333), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165393] = 2, - ACTIONS(9364), 1, - anon_sym_EQ_GT, + [165013] = 2, + ACTIONS(9335), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165401] = 2, - ACTIONS(9366), 1, - anon_sym_EQ, + [165021] = 2, + ACTIONS(9337), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165409] = 2, - ACTIONS(9368), 1, - anon_sym_EQ_GT, + [165029] = 2, + ACTIONS(9339), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165417] = 2, - ACTIONS(9370), 1, - anon_sym_RPAREN, + [165037] = 2, + ACTIONS(9341), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165425] = 2, - ACTIONS(9372), 1, - sym_identifier, + [165045] = 2, + ACTIONS(9343), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165433] = 2, - ACTIONS(9374), 1, + [165053] = 2, + ACTIONS(9345), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165441] = 2, - ACTIONS(9376), 1, + [165061] = 2, + ACTIONS(9347), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165449] = 2, - ACTIONS(9378), 1, - anon_sym_EQ_GT, + [165069] = 2, + ACTIONS(5457), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165457] = 2, - ACTIONS(5620), 1, - anon_sym_in, + [165077] = 2, + ACTIONS(5437), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165465] = 2, - ACTIONS(9380), 1, - anon_sym_RBRACK, + [165085] = 2, + ACTIONS(6688), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165473] = 2, - ACTIONS(4089), 1, - anon_sym_is, + [165093] = 2, + ACTIONS(9349), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165481] = 2, - ACTIONS(9382), 1, - anon_sym_EQ_GT, + [165101] = 2, + ACTIONS(5439), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165489] = 2, - ACTIONS(9384), 1, + [165109] = 2, + ACTIONS(9351), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165497] = 2, - ACTIONS(9386), 1, - sym_identifier, + [165117] = 2, + ACTIONS(9353), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165505] = 2, - ACTIONS(9388), 1, - anon_sym_RBRACK, + [165125] = 2, + ACTIONS(9355), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165513] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9390), 1, - anon_sym_SLASH2, - [165523] = 2, - ACTIONS(9392), 1, - anon_sym_EQ_GT, + [165133] = 2, + ACTIONS(9357), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165531] = 2, - ACTIONS(9394), 1, - anon_sym_EQ_GT, + [165141] = 2, + ACTIONS(9359), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165539] = 2, - ACTIONS(9396), 1, + [165149] = 2, + ACTIONS(8154), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165547] = 2, - ACTIONS(9398), 1, - anon_sym_RBRACK, + [165157] = 2, + ACTIONS(9361), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165555] = 2, - ACTIONS(9400), 1, - anon_sym_EQ_GT, + [165165] = 2, + ACTIONS(9363), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165563] = 2, - ACTIONS(9402), 1, - anon_sym_RBRACK, + [165173] = 2, + ACTIONS(9365), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165571] = 2, - ACTIONS(9404), 1, - anon_sym_RBRACK, + [165181] = 2, + ACTIONS(5215), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165579] = 2, - ACTIONS(9406), 1, + [165189] = 2, + ACTIONS(9367), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165587] = 2, - ACTIONS(9408), 1, - anon_sym_RBRACK, + [165197] = 2, + ACTIONS(9315), 1, + anon_sym_meta, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165595] = 2, - ACTIONS(9410), 1, - anon_sym_RBRACK, + [165205] = 2, + ACTIONS(9369), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165603] = 2, - ACTIONS(9412), 1, + [165213] = 2, + ACTIONS(9371), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165611] = 2, - ACTIONS(9414), 1, - anon_sym_EQ_GT, + [165221] = 2, + ACTIONS(9373), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165619] = 2, - ACTIONS(9416), 1, + [165229] = 2, + ACTIONS(9375), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165627] = 2, - ACTIONS(9418), 1, + [165237] = 2, + ACTIONS(9377), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165635] = 2, - ACTIONS(9420), 1, + [165245] = 2, + ACTIONS(9379), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165643] = 2, - ACTIONS(9422), 1, + [165253] = 2, + ACTIONS(9381), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165651] = 2, - ACTIONS(9424), 1, + [165261] = 2, + ACTIONS(8162), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165659] = 2, - ACTIONS(5460), 1, - anon_sym_RPAREN, + [165269] = 2, + ACTIONS(4907), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165667] = 2, - ACTIONS(6153), 1, - anon_sym_EQ_GT, + [165277] = 2, + ACTIONS(9383), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165675] = 2, - ACTIONS(9426), 1, + [165285] = 2, + ACTIONS(9385), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165683] = 2, - ACTIONS(5462), 1, + [165293] = 2, + ACTIONS(7677), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165301] = 2, + ACTIONS(5445), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165691] = 2, - ACTIONS(5576), 1, - anon_sym_RBRACK, + [165309] = 2, + ACTIONS(5600), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165699] = 2, - ACTIONS(8384), 1, - anon_sym_RBRACE, + [165317] = 2, + ACTIONS(9387), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165707] = 2, - ACTIONS(9428), 1, + [165325] = 2, + ACTIONS(9389), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165715] = 2, - ACTIONS(9430), 1, + [165333] = 2, + ACTIONS(9391), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165723] = 2, - ACTIONS(9432), 1, + [165341] = 2, + ACTIONS(9393), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165731] = 2, - ACTIONS(9434), 1, + [165349] = 2, + ACTIONS(9395), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165739] = 2, - ACTIONS(9436), 1, - anon_sym_RBRACK, + [165357] = 2, + ACTIONS(9397), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165747] = 2, - ACTIONS(9438), 1, + [165365] = 2, + ACTIONS(9399), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165755] = 2, - ACTIONS(9440), 1, - anon_sym_RBRACK, + [165373] = 2, + ACTIONS(9401), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165763] = 2, - ACTIONS(9442), 1, + [165381] = 2, + ACTIONS(9403), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165771] = 2, - ACTIONS(9444), 1, - anon_sym_RBRACK, + [165389] = 2, + ACTIONS(9405), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165779] = 2, - ACTIONS(5468), 1, - anon_sym_RPAREN, + [165397] = 2, + ACTIONS(9407), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165787] = 2, - ACTIONS(7871), 1, + [165405] = 2, + ACTIONS(9409), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165795] = 2, - ACTIONS(9446), 1, + [165413] = 2, + ACTIONS(9411), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165803] = 2, - ACTIONS(4959), 1, - anon_sym_in, + [165421] = 2, + ACTIONS(9413), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165811] = 2, - ACTIONS(9448), 1, + [165429] = 2, + ACTIONS(9415), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165819] = 2, - ACTIONS(8786), 1, - anon_sym_from, + [165437] = 2, + ACTIONS(4948), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165827] = 2, - ACTIONS(9450), 1, + [165445] = 2, + ACTIONS(9417), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165835] = 2, - ACTIONS(9452), 1, - anon_sym_RBRACK, + [165453] = 2, + ACTIONS(9419), 1, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165843] = 2, - ACTIONS(9454), 1, - anon_sym_EQ, + [165461] = 2, + ACTIONS(9421), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165851] = 2, - ACTIONS(9456), 1, + [165469] = 2, + ACTIONS(9423), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165859] = 2, - ACTIONS(5824), 1, - anon_sym_in, + [165477] = 2, + ACTIONS(9425), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165867] = 2, - ACTIONS(9458), 1, - anon_sym_EQ_GT, + [165485] = 2, + ACTIONS(4897), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165875] = 2, - ACTIONS(9460), 1, - anon_sym_RBRACK, + [165493] = 2, + ACTIONS(9427), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165883] = 2, - ACTIONS(9462), 1, + [165501] = 2, + ACTIONS(9429), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165891] = 2, - ACTIONS(9464), 1, - anon_sym_EQ_GT, + [165509] = 2, + ACTIONS(9431), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165899] = 2, - ACTIONS(9466), 1, - anon_sym_symbol, + [165517] = 2, + ACTIONS(9433), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165907] = 2, - ACTIONS(9468), 1, + [165525] = 2, + ACTIONS(9435), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165915] = 2, - ACTIONS(9470), 1, - anon_sym_EQ_GT, + [165533] = 2, + ACTIONS(4871), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165923] = 2, - ACTIONS(9472), 1, + [165541] = 2, + ACTIONS(9437), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165931] = 2, - ACTIONS(5530), 1, - anon_sym_RBRACE, + [165549] = 2, + ACTIONS(9439), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165557] = 2, + ACTIONS(9441), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165939] = 2, - ACTIONS(9474), 1, + [165565] = 2, + ACTIONS(9443), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165947] = 2, - ACTIONS(9476), 1, + [165573] = 2, + ACTIONS(9445), 1, anon_sym_symbol, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165955] = 2, - ACTIONS(9478), 1, + [165581] = 2, + ACTIONS(9447), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165963] = 2, - ACTIONS(9480), 1, - anon_sym_EQ, + [165589] = 2, + ACTIONS(9449), 1, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165971] = 2, - ACTIONS(9482), 1, - anon_sym_new, + [165597] = 2, + ACTIONS(9451), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165979] = 2, - ACTIONS(9484), 1, - anon_sym_EQ, + [165605] = 2, + ACTIONS(9453), 1, + anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165987] = 2, - ACTIONS(9486), 1, - anon_sym_EQ_GT, + [165613] = 2, + ACTIONS(5825), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165995] = 2, - ACTIONS(9488), 1, + [165621] = 2, + ACTIONS(9455), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166003] = 2, - ACTIONS(9490), 1, - anon_sym_EQ, + [165629] = 2, + ACTIONS(8590), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166011] = 2, - ACTIONS(9492), 1, - anon_sym_RBRACK, + [165637] = 2, + ACTIONS(9457), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166019] = 2, - ACTIONS(9494), 1, + [165645] = 2, + ACTIONS(9459), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166027] = 2, - ACTIONS(9496), 1, + [165653] = 2, + ACTIONS(9461), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166035] = 2, - ACTIONS(9498), 1, - anon_sym_EQ_GT, + [165661] = 2, + ACTIONS(9463), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166043] = 2, - ACTIONS(9246), 1, - anon_sym_meta, + [165669] = 2, + ACTIONS(9465), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166051] = 2, - ACTIONS(9500), 1, + [165677] = 2, + ACTIONS(9467), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166059] = 2, - ACTIONS(9502), 1, + [165685] = 2, + ACTIONS(9469), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166067] = 2, - ACTIONS(9504), 1, - anon_sym_RBRACK, + [165693] = 2, + ACTIONS(9471), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166075] = 2, - ACTIONS(9506), 1, + [165701] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9473), 1, + anon_sym_SLASH2, + [165711] = 2, + ACTIONS(9475), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166083] = 2, - ACTIONS(9508), 1, + [165719] = 2, + ACTIONS(9477), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166091] = 2, - ACTIONS(9510), 1, - sym_number, + [165727] = 2, + ACTIONS(9479), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166099] = 2, - ACTIONS(9512), 1, + [165735] = 2, + ACTIONS(9481), 1, anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166107] = 2, - ACTIONS(9514), 1, + [165743] = 2, + ACTIONS(9483), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166115] = 2, - ACTIONS(9516), 1, - anon_sym_DOT, + [165751] = 2, + ACTIONS(9485), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166123] = 2, - ACTIONS(9518), 1, + [165759] = 2, + ACTIONS(9487), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166131] = 2, - ACTIONS(7502), 1, - anon_sym_RPAREN, + [165767] = 2, + ACTIONS(9489), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166139] = 2, - ACTIONS(9520), 1, + [165775] = 2, + ACTIONS(9491), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166147] = 2, - ACTIONS(9522), 1, - sym_identifier, + [165783] = 2, + ACTIONS(9493), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166155] = 2, - ACTIONS(9524), 1, - anon_sym_RBRACK, + [165791] = 2, + ACTIONS(7422), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166163] = 2, - ACTIONS(9526), 1, - anon_sym_EQ_GT, + [165799] = 2, + ACTIONS(9495), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166171] = 2, - ACTIONS(9528), 1, - sym_identifier, + [165807] = 2, + ACTIONS(9497), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166179] = 2, - ACTIONS(9530), 1, + [165815] = 2, + ACTIONS(9499), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166187] = 2, - ACTIONS(9532), 1, + [165823] = 2, + ACTIONS(9501), 1, anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166195] = 2, - ACTIONS(9534), 1, - anon_sym_RBRACK, + [165831] = 2, + ACTIONS(7377), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166203] = 2, - ACTIONS(9536), 1, + [165839] = 2, + ACTIONS(9503), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166211] = 2, - ACTIONS(9538), 1, + [165847] = 2, + ACTIONS(9505), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166219] = 2, - ACTIONS(9540), 1, - sym_identifier, + [165855] = 2, + ACTIONS(9507), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166227] = 2, - ACTIONS(9542), 1, - anon_sym_RBRACK, + [165863] = 2, + ACTIONS(9509), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166235] = 2, - ACTIONS(9544), 1, - anon_sym_COLON, + [165871] = 2, + ACTIONS(9511), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166243] = 2, - ACTIONS(9546), 1, + [165879] = 2, + ACTIONS(9513), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166251] = 2, - ACTIONS(9548), 1, - anon_sym_RBRACK, + [165887] = 2, + ACTIONS(9515), 1, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166259] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9550), 1, - sym_regex_pattern, - [166269] = 2, - ACTIONS(9552), 1, + [165895] = 2, + ACTIONS(6104), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166277] = 2, - ACTIONS(9554), 1, - anon_sym_EQ, + [165903] = 2, + ACTIONS(9517), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166285] = 2, - ACTIONS(9556), 1, - anon_sym_EQ_GT, + [165911] = 2, + ACTIONS(9519), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166293] = 2, - ACTIONS(9558), 1, - anon_sym_EQ_GT, + [165919] = 2, + ACTIONS(9521), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166301] = 2, - ACTIONS(9560), 1, - anon_sym_namespace, + [165927] = 2, + ACTIONS(9523), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166309] = 2, - ACTIONS(9562), 1, - anon_sym_RBRACK, + [165935] = 2, + ACTIONS(9525), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166317] = 2, - ACTIONS(9564), 1, + [165943] = 2, + ACTIONS(9527), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166325] = 2, - ACTIONS(9566), 1, + [165951] = 2, + ACTIONS(9529), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166333] = 2, - ACTIONS(9568), 1, - sym_number, + [165959] = 2, + ACTIONS(9531), 1, + anon_sym_symbol, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166341] = 2, - ACTIONS(9570), 1, - anon_sym_EQ, + [165967] = 2, + ACTIONS(9533), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166349] = 2, - ACTIONS(9572), 1, - anon_sym_EQ_GT, + [165975] = 2, + ACTIONS(5370), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166357] = 2, - ACTIONS(9574), 1, + [165983] = 2, + ACTIONS(9535), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166365] = 2, - ACTIONS(7837), 1, + [165991] = 2, + ACTIONS(5401), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165999] = 2, + ACTIONS(7817), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166373] = 2, - ACTIONS(9576), 1, + [166007] = 2, + ACTIONS(9537), 1, anon_sym_function, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166381] = 2, - ACTIONS(9578), 1, - sym_identifier, + [166015] = 2, + ACTIONS(9539), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166389] = 2, - ACTIONS(4931), 1, - anon_sym_RPAREN, + [166023] = 2, + ACTIONS(9541), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166397] = 2, - ACTIONS(9580), 1, + [166031] = 2, + ACTIONS(9543), 1, anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166405] = 2, - ACTIONS(9582), 1, + [166039] = 2, + ACTIONS(9545), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166413] = 2, - ACTIONS(9584), 1, - sym_identifier, + [166047] = 2, + ACTIONS(8615), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166421] = 2, - ACTIONS(9586), 1, - anon_sym_symbol, + [166055] = 2, + ACTIONS(9547), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166429] = 2, - ACTIONS(9588), 1, - sym_identifier, + [166063] = 2, + ACTIONS(9549), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166437] = 2, - ACTIONS(9590), 1, + [166071] = 2, + ACTIONS(9551), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166445] = 2, - ACTIONS(9592), 1, - anon_sym_EQ_GT, + [166079] = 2, + ACTIONS(9553), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166453] = 2, - ACTIONS(5590), 1, + [166087] = 2, + ACTIONS(5519), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166461] = 2, - ACTIONS(9594), 1, - anon_sym_RPAREN, + [166095] = 2, + ACTIONS(9555), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166103] = 2, + ACTIONS(9557), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166469] = 2, - ACTIONS(9596), 1, + [166111] = 2, + ACTIONS(9559), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166477] = 2, - ACTIONS(9598), 1, - anon_sym_new, + [166119] = 2, + ACTIONS(8427), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166485] = 2, - ACTIONS(9600), 1, + [166127] = 2, + ACTIONS(9561), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166493] = 2, - ACTIONS(9602), 1, + [166135] = 2, + ACTIONS(9563), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166501] = 2, - ACTIONS(9604), 1, + [166143] = 2, + ACTIONS(9565), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166509] = 2, - ACTIONS(9606), 1, - anon_sym_EQ, + [166151] = 2, + ACTIONS(9567), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166517] = 2, - ACTIONS(9608), 1, + [166159] = 2, + ACTIONS(9569), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166525] = 2, - ACTIONS(9610), 1, - anon_sym_RBRACK, + [166167] = 2, + ACTIONS(9571), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166533] = 2, - ACTIONS(9612), 1, + [166175] = 2, + ACTIONS(9573), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166541] = 2, - ACTIONS(9614), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [166549] = 2, - ACTIONS(9616), 1, - anon_sym_EQ_GT, + [166183] = 2, + ACTIONS(6487), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166557] = 2, - ACTIONS(9618), 1, - sym_identifier, + [166191] = 2, + ACTIONS(9575), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166565] = 2, - ACTIONS(9620), 1, - sym_identifier, + [166199] = 2, + ACTIONS(9577), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166573] = 2, - ACTIONS(7723), 1, - sym_identifier, + [166207] = 2, + ACTIONS(9579), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166581] = 2, - ACTIONS(9622), 1, + [166215] = 2, + ACTIONS(9581), 1, anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166589] = 2, - ACTIONS(9624), 1, + [166223] = 2, + ACTIONS(9583), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166597] = 2, - ACTIONS(8116), 1, - anon_sym_LBRACE, + [166231] = 2, + ACTIONS(9585), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166605] = 2, - ACTIONS(9626), 1, + [166239] = 2, + ACTIONS(9587), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166613] = 2, - ACTIONS(9628), 1, - ts_builtin_sym_end, + [166247] = 2, + ACTIONS(9589), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -275089,4694 +272959,4682 @@ static const uint16_t ts_small_parse_table[] = { static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1193)] = 0, - [SMALL_STATE(1194)] = 91, - [SMALL_STATE(1195)] = 184, - [SMALL_STATE(1196)] = 275, - [SMALL_STATE(1197)] = 346, - [SMALL_STATE(1198)] = 417, - [SMALL_STATE(1199)] = 506, - [SMALL_STATE(1200)] = 601, - [SMALL_STATE(1201)] = 672, - [SMALL_STATE(1202)] = 761, - [SMALL_STATE(1203)] = 854, - [SMALL_STATE(1204)] = 925, - [SMALL_STATE(1205)] = 996, - [SMALL_STATE(1206)] = 1067, - [SMALL_STATE(1207)] = 1156, - [SMALL_STATE(1208)] = 1249, - [SMALL_STATE(1209)] = 1342, - [SMALL_STATE(1210)] = 1415, + [SMALL_STATE(1194)] = 93, + [SMALL_STATE(1195)] = 186, + [SMALL_STATE(1196)] = 281, + [SMALL_STATE(1197)] = 374, + [SMALL_STATE(1198)] = 445, + [SMALL_STATE(1199)] = 516, + [SMALL_STATE(1200)] = 587, + [SMALL_STATE(1201)] = 658, + [SMALL_STATE(1202)] = 747, + [SMALL_STATE(1203)] = 820, + [SMALL_STATE(1204)] = 913, + [SMALL_STATE(1205)] = 1004, + [SMALL_STATE(1206)] = 1077, + [SMALL_STATE(1207)] = 1148, + [SMALL_STATE(1208)] = 1219, + [SMALL_STATE(1209)] = 1308, + [SMALL_STATE(1210)] = 1397, [SMALL_STATE(1211)] = 1488, - [SMALL_STATE(1212)] = 1559, + [SMALL_STATE(1212)] = 1577, [SMALL_STATE(1213)] = 1648, - [SMALL_STATE(1214)] = 1738, - [SMALL_STATE(1215)] = 1830, - [SMALL_STATE(1216)] = 1918, - [SMALL_STATE(1217)] = 2008, - [SMALL_STATE(1218)] = 2096, - [SMALL_STATE(1219)] = 2186, - [SMALL_STATE(1220)] = 2278, - [SMALL_STATE(1221)] = 2366, - [SMALL_STATE(1222)] = 2456, - [SMALL_STATE(1223)] = 2542, - [SMALL_STATE(1224)] = 2612, - [SMALL_STATE(1225)] = 2702, - [SMALL_STATE(1226)] = 2790, - [SMALL_STATE(1227)] = 2876, - [SMALL_STATE(1228)] = 2964, - [SMALL_STATE(1229)] = 3038, - [SMALL_STATE(1230)] = 3108, - [SMALL_STATE(1231)] = 3200, + [SMALL_STATE(1214)] = 1722, + [SMALL_STATE(1215)] = 1812, + [SMALL_STATE(1216)] = 1902, + [SMALL_STATE(1217)] = 1992, + [SMALL_STATE(1218)] = 2062, + [SMALL_STATE(1219)] = 2150, + [SMALL_STATE(1220)] = 2220, + [SMALL_STATE(1221)] = 2308, + [SMALL_STATE(1222)] = 2394, + [SMALL_STATE(1223)] = 2480, + [SMALL_STATE(1224)] = 2572, + [SMALL_STATE(1225)] = 2660, + [SMALL_STATE(1226)] = 2750, + [SMALL_STATE(1227)] = 2838, + [SMALL_STATE(1228)] = 2928, + [SMALL_STATE(1229)] = 3018, + [SMALL_STATE(1230)] = 3110, + [SMALL_STATE(1231)] = 3198, [SMALL_STATE(1232)] = 3290, [SMALL_STATE(1233)] = 3380, [SMALL_STATE(1234)] = 3470, [SMALL_STATE(1235)] = 3557, - [SMALL_STATE(1236)] = 3652, - [SMALL_STATE(1237)] = 3739, - [SMALL_STATE(1238)] = 3826, - [SMALL_STATE(1239)] = 3913, - [SMALL_STATE(1240)] = 4004, - [SMALL_STATE(1241)] = 4095, - [SMALL_STATE(1242)] = 4182, - [SMALL_STATE(1243)] = 4271, - [SMALL_STATE(1244)] = 4350, - [SMALL_STATE(1245)] = 4439, - [SMALL_STATE(1246)] = 4526, - [SMALL_STATE(1247)] = 4617, + [SMALL_STATE(1236)] = 3644, + [SMALL_STATE(1237)] = 3731, + [SMALL_STATE(1238)] = 3818, + [SMALL_STATE(1239)] = 3905, + [SMALL_STATE(1240)] = 3992, + [SMALL_STATE(1241)] = 4079, + [SMALL_STATE(1242)] = 4174, + [SMALL_STATE(1243)] = 4263, + [SMALL_STATE(1244)] = 4354, + [SMALL_STATE(1245)] = 4445, + [SMALL_STATE(1246)] = 4534, + [SMALL_STATE(1247)] = 4613, [SMALL_STATE(1248)] = 4704, - [SMALL_STATE(1249)] = 4784, - [SMALL_STATE(1250)] = 4864, - [SMALL_STATE(1251)] = 4950, - [SMALL_STATE(1252)] = 5036, - [SMALL_STATE(1253)] = 5114, - [SMALL_STATE(1254)] = 5204, - [SMALL_STATE(1255)] = 5296, - [SMALL_STATE(1256)] = 5382, - [SMALL_STATE(1257)] = 5450, - [SMALL_STATE(1258)] = 5540, - [SMALL_STATE(1259)] = 5618, - [SMALL_STATE(1260)] = 5704, - [SMALL_STATE(1261)] = 5780, - [SMALL_STATE(1262)] = 5870, - [SMALL_STATE(1263)] = 5956, - [SMALL_STATE(1264)] = 6042, - [SMALL_STATE(1265)] = 6120, - [SMALL_STATE(1266)] = 6206, - [SMALL_STATE(1267)] = 6292, - [SMALL_STATE(1268)] = 6370, - [SMALL_STATE(1269)] = 6460, - [SMALL_STATE(1270)] = 6546, - [SMALL_STATE(1271)] = 6632, - [SMALL_STATE(1272)] = 6700, - [SMALL_STATE(1273)] = 6786, - [SMALL_STATE(1274)] = 6876, - [SMALL_STATE(1275)] = 6968, - [SMALL_STATE(1276)] = 7042, - [SMALL_STATE(1277)] = 7128, - [SMALL_STATE(1278)] = 7214, - [SMALL_STATE(1279)] = 7300, - [SMALL_STATE(1280)] = 7373, - [SMALL_STATE(1281)] = 7462, - [SMALL_STATE(1282)] = 7529, - [SMALL_STATE(1283)] = 7618, - [SMALL_STATE(1284)] = 7685, - [SMALL_STATE(1285)] = 7760, - [SMALL_STATE(1286)] = 7827, - [SMALL_STATE(1287)] = 7902, - [SMALL_STATE(1288)] = 7979, - [SMALL_STATE(1289)] = 8064, - [SMALL_STATE(1290)] = 8133, - [SMALL_STATE(1291)] = 8216, - [SMALL_STATE(1292)] = 8305, + [SMALL_STATE(1249)] = 4790, + [SMALL_STATE(1250)] = 4880, + [SMALL_STATE(1251)] = 4966, + [SMALL_STATE(1252)] = 5052, + [SMALL_STATE(1253)] = 5130, + [SMALL_STATE(1254)] = 5216, + [SMALL_STATE(1255)] = 5306, + [SMALL_STATE(1256)] = 5392, + [SMALL_STATE(1257)] = 5478, + [SMALL_STATE(1258)] = 5564, + [SMALL_STATE(1259)] = 5654, + [SMALL_STATE(1260)] = 5740, + [SMALL_STATE(1261)] = 5818, + [SMALL_STATE(1262)] = 5908, + [SMALL_STATE(1263)] = 5988, + [SMALL_STATE(1264)] = 6078, + [SMALL_STATE(1265)] = 6170, + [SMALL_STATE(1266)] = 6248, + [SMALL_STATE(1267)] = 6334, + [SMALL_STATE(1268)] = 6420, + [SMALL_STATE(1269)] = 6506, + [SMALL_STATE(1270)] = 6580, + [SMALL_STATE(1271)] = 6666, + [SMALL_STATE(1272)] = 6752, + [SMALL_STATE(1273)] = 6820, + [SMALL_STATE(1274)] = 6898, + [SMALL_STATE(1275)] = 6984, + [SMALL_STATE(1276)] = 7076, + [SMALL_STATE(1277)] = 7156, + [SMALL_STATE(1278)] = 7229, + [SMALL_STATE(1279)] = 7304, + [SMALL_STATE(1280)] = 7393, + [SMALL_STATE(1281)] = 7480, + [SMALL_STATE(1282)] = 7569, + [SMALL_STATE(1283)] = 7638, + [SMALL_STATE(1284)] = 7727, + [SMALL_STATE(1285)] = 7796, + [SMALL_STATE(1286)] = 7873, + [SMALL_STATE(1287)] = 7956, + [SMALL_STATE(1288)] = 8023, + [SMALL_STATE(1289)] = 8090, + [SMALL_STATE(1290)] = 8175, + [SMALL_STATE(1291)] = 8244, + [SMALL_STATE(1292)] = 8313, [SMALL_STATE(1293)] = 8390, [SMALL_STATE(1294)] = 8479, - [SMALL_STATE(1295)] = 8568, - [SMALL_STATE(1296)] = 8657, - [SMALL_STATE(1297)] = 8730, + [SMALL_STATE(1295)] = 8564, + [SMALL_STATE(1296)] = 8639, + [SMALL_STATE(1297)] = 8728, [SMALL_STATE(1298)] = 8803, - [SMALL_STATE(1299)] = 8872, - [SMALL_STATE(1300)] = 8941, - [SMALL_STATE(1301)] = 9018, - [SMALL_STATE(1302)] = 9085, - [SMALL_STATE(1303)] = 9158, - [SMALL_STATE(1304)] = 9237, - [SMALL_STATE(1305)] = 9316, - [SMALL_STATE(1306)] = 9401, - [SMALL_STATE(1307)] = 9488, - [SMALL_STATE(1308)] = 9571, - [SMALL_STATE(1309)] = 9640, - [SMALL_STATE(1310)] = 9724, - [SMALL_STATE(1311)] = 9796, - [SMALL_STATE(1312)] = 9884, - [SMALL_STATE(1313)] = 9958, - [SMALL_STATE(1314)] = 10032, - [SMALL_STATE(1315)] = 10106, - [SMALL_STATE(1316)] = 10186, - [SMALL_STATE(1317)] = 10258, - [SMALL_STATE(1318)] = 10330, - [SMALL_STATE(1319)] = 10396, - [SMALL_STATE(1320)] = 10468, - [SMALL_STATE(1321)] = 10540, - [SMALL_STATE(1322)] = 10608, - [SMALL_STATE(1323)] = 10684, - [SMALL_STATE(1324)] = 10752, - [SMALL_STATE(1325)] = 10834, - [SMALL_STATE(1326)] = 10922, - [SMALL_STATE(1327)] = 10988, - [SMALL_STATE(1328)] = 11066, - [SMALL_STATE(1329)] = 11136, - [SMALL_STATE(1330)] = 11220, - [SMALL_STATE(1331)] = 11296, - [SMALL_STATE(1332)] = 11374, - [SMALL_STATE(1333)] = 11446, - [SMALL_STATE(1334)] = 11512, - [SMALL_STATE(1335)] = 11578, - [SMALL_STATE(1336)] = 11648, - [SMALL_STATE(1337)] = 11714, - [SMALL_STATE(1338)] = 11798, - [SMALL_STATE(1339)] = 11864, - [SMALL_STATE(1340)] = 11930, - [SMALL_STATE(1341)] = 12006, - [SMALL_STATE(1342)] = 12090, - [SMALL_STATE(1343)] = 12156, - [SMALL_STATE(1344)] = 12228, - [SMALL_STATE(1345)] = 12300, - [SMALL_STATE(1346)] = 12378, - [SMALL_STATE(1347)] = 12458, - [SMALL_STATE(1348)] = 12524, - [SMALL_STATE(1349)] = 12598, - [SMALL_STATE(1350)] = 12675, - [SMALL_STATE(1351)] = 12746, - [SMALL_STATE(1352)] = 12825, - [SMALL_STATE(1353)] = 12898, - [SMALL_STATE(1354)] = 12967, - [SMALL_STATE(1355)] = 13040, - [SMALL_STATE(1356)] = 13113, - [SMALL_STATE(1357)] = 13186, - [SMALL_STATE(1358)] = 13259, - [SMALL_STATE(1359)] = 13330, - [SMALL_STATE(1360)] = 13407, - [SMALL_STATE(1361)] = 13482, - [SMALL_STATE(1362)] = 13565, - [SMALL_STATE(1363)] = 13636, - [SMALL_STATE(1364)] = 13703, - [SMALL_STATE(1365)] = 13772, - [SMALL_STATE(1366)] = 13849, - [SMALL_STATE(1367)] = 13916, - [SMALL_STATE(1368)] = 13991, - [SMALL_STATE(1369)] = 14062, - [SMALL_STATE(1370)] = 14133, - [SMALL_STATE(1371)] = 14202, - [SMALL_STATE(1372)] = 14279, - [SMALL_STATE(1373)] = 14352, - [SMALL_STATE(1374)] = 14429, - [SMALL_STATE(1375)] = 14498, - [SMALL_STATE(1376)] = 14569, - [SMALL_STATE(1377)] = 14640, - [SMALL_STATE(1378)] = 14713, - [SMALL_STATE(1379)] = 14784, - [SMALL_STATE(1380)] = 14854, - [SMALL_STATE(1381)] = 14928, - [SMALL_STATE(1382)] = 15048, - [SMALL_STATE(1383)] = 15120, - [SMALL_STATE(1384)] = 15240, - [SMALL_STATE(1385)] = 15310, - [SMALL_STATE(1386)] = 15384, - [SMALL_STATE(1387)] = 15460, - [SMALL_STATE(1388)] = 15530, - [SMALL_STATE(1389)] = 15602, - [SMALL_STATE(1390)] = 15670, - [SMALL_STATE(1391)] = 15744, - [SMALL_STATE(1392)] = 15864, - [SMALL_STATE(1393)] = 15938, - [SMALL_STATE(1394)] = 16058, - [SMALL_STATE(1395)] = 16124, - [SMALL_STATE(1396)] = 16194, - [SMALL_STATE(1397)] = 16264, - [SMALL_STATE(1398)] = 16336, - [SMALL_STATE(1399)] = 16404, - [SMALL_STATE(1400)] = 16524, - [SMALL_STATE(1401)] = 16590, - [SMALL_STATE(1402)] = 16710, - [SMALL_STATE(1403)] = 16781, - [SMALL_STATE(1404)] = 16850, - [SMALL_STATE(1405)] = 16919, - [SMALL_STATE(1406)] = 16988, - [SMALL_STATE(1407)] = 17057, - [SMALL_STATE(1408)] = 17126, - [SMALL_STATE(1409)] = 17195, - [SMALL_STATE(1410)] = 17264, - [SMALL_STATE(1411)] = 17337, - [SMALL_STATE(1412)] = 17406, - [SMALL_STATE(1413)] = 17475, - [SMALL_STATE(1414)] = 17544, - [SMALL_STATE(1415)] = 17613, - [SMALL_STATE(1416)] = 17684, - [SMALL_STATE(1417)] = 17751, - [SMALL_STATE(1418)] = 17824, - [SMALL_STATE(1419)] = 17893, - [SMALL_STATE(1420)] = 18009, - [SMALL_STATE(1421)] = 18077, - [SMALL_STATE(1422)] = 18145, - [SMALL_STATE(1423)] = 18213, - [SMALL_STATE(1424)] = 18329, - [SMALL_STATE(1425)] = 18397, - [SMALL_STATE(1426)] = 18465, - [SMALL_STATE(1427)] = 18533, - [SMALL_STATE(1428)] = 18601, - [SMALL_STATE(1429)] = 18669, - [SMALL_STATE(1430)] = 18785, - [SMALL_STATE(1431)] = 18901, - [SMALL_STATE(1432)] = 19017, - [SMALL_STATE(1433)] = 19133, - [SMALL_STATE(1434)] = 19201, - [SMALL_STATE(1435)] = 19317, - [SMALL_STATE(1436)] = 19385, - [SMALL_STATE(1437)] = 19453, - [SMALL_STATE(1438)] = 19569, - [SMALL_STATE(1439)] = 19685, - [SMALL_STATE(1440)] = 19753, - [SMALL_STATE(1441)] = 19821, - [SMALL_STATE(1442)] = 19937, - [SMALL_STATE(1443)] = 20005, - [SMALL_STATE(1444)] = 20121, - [SMALL_STATE(1445)] = 20189, - [SMALL_STATE(1446)] = 20257, - [SMALL_STATE(1447)] = 20325, - [SMALL_STATE(1448)] = 20441, - [SMALL_STATE(1449)] = 20509, - [SMALL_STATE(1450)] = 20579, - [SMALL_STATE(1451)] = 20647, - [SMALL_STATE(1452)] = 20763, - [SMALL_STATE(1453)] = 20831, - [SMALL_STATE(1454)] = 20899, - [SMALL_STATE(1455)] = 20967, - [SMALL_STATE(1456)] = 21033, - [SMALL_STATE(1457)] = 21099, - [SMALL_STATE(1458)] = 21167, - [SMALL_STATE(1459)] = 21233, - [SMALL_STATE(1460)] = 21349, - [SMALL_STATE(1461)] = 21465, - [SMALL_STATE(1462)] = 21581, - [SMALL_STATE(1463)] = 21697, - [SMALL_STATE(1464)] = 21813, - [SMALL_STATE(1465)] = 21878, - [SMALL_STATE(1466)] = 21943, - [SMALL_STATE(1467)] = 22008, - [SMALL_STATE(1468)] = 22073, - [SMALL_STATE(1469)] = 22138, - [SMALL_STATE(1470)] = 22203, - [SMALL_STATE(1471)] = 22268, - [SMALL_STATE(1472)] = 22333, - [SMALL_STATE(1473)] = 22398, - [SMALL_STATE(1474)] = 22463, - [SMALL_STATE(1475)] = 22575, - [SMALL_STATE(1476)] = 22687, - [SMALL_STATE(1477)] = 22799, - [SMALL_STATE(1478)] = 22911, - [SMALL_STATE(1479)] = 23023, - [SMALL_STATE(1480)] = 23135, - [SMALL_STATE(1481)] = 23247, - [SMALL_STATE(1482)] = 23366, - [SMALL_STATE(1483)] = 23477, - [SMALL_STATE(1484)] = 23596, - [SMALL_STATE(1485)] = 23707, - [SMALL_STATE(1486)] = 23818, - [SMALL_STATE(1487)] = 23929, - [SMALL_STATE(1488)] = 24048, - [SMALL_STATE(1489)] = 24167, - [SMALL_STATE(1490)] = 24278, - [SMALL_STATE(1491)] = 24389, - [SMALL_STATE(1492)] = 24500, - [SMALL_STATE(1493)] = 24611, - [SMALL_STATE(1494)] = 24722, - [SMALL_STATE(1495)] = 24833, - [SMALL_STATE(1496)] = 24952, - [SMALL_STATE(1497)] = 25063, - [SMALL_STATE(1498)] = 25165, - [SMALL_STATE(1499)] = 25243, - [SMALL_STATE(1500)] = 25345, - [SMALL_STATE(1501)] = 25447, - [SMALL_STATE(1502)] = 25549, - [SMALL_STATE(1503)] = 25651, - [SMALL_STATE(1504)] = 25753, - [SMALL_STATE(1505)] = 25820, - [SMALL_STATE(1506)] = 25887, - [SMALL_STATE(1507)] = 25998, - [SMALL_STATE(1508)] = 26107, - [SMALL_STATE(1509)] = 26174, - [SMALL_STATE(1510)] = 26231, - [SMALL_STATE(1511)] = 26288, - [SMALL_STATE(1512)] = 26353, - [SMALL_STATE(1513)] = 26421, - [SMALL_STATE(1514)] = 26477, - [SMALL_STATE(1515)] = 26533, - [SMALL_STATE(1516)] = 26593, - [SMALL_STATE(1517)] = 26649, - [SMALL_STATE(1518)] = 26707, - [SMALL_STATE(1519)] = 26765, - [SMALL_STATE(1520)] = 26821, - [SMALL_STATE(1521)] = 26883, - [SMALL_STATE(1522)] = 26939, - [SMALL_STATE(1523)] = 27033, - [SMALL_STATE(1524)] = 27091, - [SMALL_STATE(1525)] = 27147, - [SMALL_STATE(1526)] = 27203, - [SMALL_STATE(1527)] = 27263, - [SMALL_STATE(1528)] = 27325, - [SMALL_STATE(1529)] = 27380, - [SMALL_STATE(1530)] = 27439, - [SMALL_STATE(1531)] = 27494, - [SMALL_STATE(1532)] = 27549, - [SMALL_STATE(1533)] = 27608, - [SMALL_STATE(1534)] = 27663, - [SMALL_STATE(1535)] = 27718, - [SMALL_STATE(1536)] = 27773, - [SMALL_STATE(1537)] = 27828, - [SMALL_STATE(1538)] = 27885, - [SMALL_STATE(1539)] = 27940, - [SMALL_STATE(1540)] = 27995, - [SMALL_STATE(1541)] = 28050, - [SMALL_STATE(1542)] = 28105, - [SMALL_STATE(1543)] = 28160, - [SMALL_STATE(1544)] = 28221, - [SMALL_STATE(1545)] = 28276, - [SMALL_STATE(1546)] = 28331, - [SMALL_STATE(1547)] = 28392, - [SMALL_STATE(1548)] = 28447, - [SMALL_STATE(1549)] = 28508, - [SMALL_STATE(1550)] = 28563, - [SMALL_STATE(1551)] = 28620, - [SMALL_STATE(1552)] = 28679, - [SMALL_STATE(1553)] = 28734, - [SMALL_STATE(1554)] = 28789, - [SMALL_STATE(1555)] = 28850, - [SMALL_STATE(1556)] = 28905, - [SMALL_STATE(1557)] = 28960, - [SMALL_STATE(1558)] = 29021, - [SMALL_STATE(1559)] = 29078, - [SMALL_STATE(1560)] = 29133, - [SMALL_STATE(1561)] = 29188, - [SMALL_STATE(1562)] = 29243, - [SMALL_STATE(1563)] = 29298, - [SMALL_STATE(1564)] = 29353, - [SMALL_STATE(1565)] = 29408, - [SMALL_STATE(1566)] = 29463, - [SMALL_STATE(1567)] = 29518, - [SMALL_STATE(1568)] = 29573, - [SMALL_STATE(1569)] = 29628, - [SMALL_STATE(1570)] = 29683, - [SMALL_STATE(1571)] = 29738, - [SMALL_STATE(1572)] = 29793, - [SMALL_STATE(1573)] = 29848, - [SMALL_STATE(1574)] = 29905, - [SMALL_STATE(1575)] = 29960, - [SMALL_STATE(1576)] = 30015, - [SMALL_STATE(1577)] = 30070, - [SMALL_STATE(1578)] = 30125, - [SMALL_STATE(1579)] = 30180, - [SMALL_STATE(1580)] = 30237, - [SMALL_STATE(1581)] = 30296, - [SMALL_STATE(1582)] = 30353, - [SMALL_STATE(1583)] = 30408, - [SMALL_STATE(1584)] = 30463, - [SMALL_STATE(1585)] = 30518, - [SMALL_STATE(1586)] = 30573, - [SMALL_STATE(1587)] = 30628, - [SMALL_STATE(1588)] = 30683, - [SMALL_STATE(1589)] = 30740, - [SMALL_STATE(1590)] = 30795, - [SMALL_STATE(1591)] = 30850, - [SMALL_STATE(1592)] = 30905, - [SMALL_STATE(1593)] = 30960, - [SMALL_STATE(1594)] = 31021, - [SMALL_STATE(1595)] = 31076, - [SMALL_STATE(1596)] = 31131, - [SMALL_STATE(1597)] = 31186, - [SMALL_STATE(1598)] = 31243, - [SMALL_STATE(1599)] = 31298, - [SMALL_STATE(1600)] = 31353, - [SMALL_STATE(1601)] = 31414, - [SMALL_STATE(1602)] = 31469, - [SMALL_STATE(1603)] = 31524, - [SMALL_STATE(1604)] = 31579, - [SMALL_STATE(1605)] = 31634, - [SMALL_STATE(1606)] = 31689, - [SMALL_STATE(1607)] = 31744, - [SMALL_STATE(1608)] = 31805, - [SMALL_STATE(1609)] = 31866, - [SMALL_STATE(1610)] = 31927, - [SMALL_STATE(1611)] = 31988, - [SMALL_STATE(1612)] = 32045, - [SMALL_STATE(1613)] = 32104, - [SMALL_STATE(1614)] = 32161, - [SMALL_STATE(1615)] = 32218, - [SMALL_STATE(1616)] = 32273, - [SMALL_STATE(1617)] = 32328, - [SMALL_STATE(1618)] = 32387, - [SMALL_STATE(1619)] = 32442, - [SMALL_STATE(1620)] = 32501, - [SMALL_STATE(1621)] = 32556, - [SMALL_STATE(1622)] = 32611, - [SMALL_STATE(1623)] = 32668, - [SMALL_STATE(1624)] = 32723, - [SMALL_STATE(1625)] = 32786, - [SMALL_STATE(1626)] = 32841, - [SMALL_STATE(1627)] = 32896, - [SMALL_STATE(1628)] = 32951, - [SMALL_STATE(1629)] = 33006, - [SMALL_STATE(1630)] = 33061, - [SMALL_STATE(1631)] = 33116, - [SMALL_STATE(1632)] = 33171, - [SMALL_STATE(1633)] = 33226, - [SMALL_STATE(1634)] = 33281, - [SMALL_STATE(1635)] = 33336, - [SMALL_STATE(1636)] = 33391, - [SMALL_STATE(1637)] = 33446, - [SMALL_STATE(1638)] = 33501, - [SMALL_STATE(1639)] = 33560, - [SMALL_STATE(1640)] = 33617, - [SMALL_STATE(1641)] = 33674, - [SMALL_STATE(1642)] = 33735, - [SMALL_STATE(1643)] = 33796, - [SMALL_STATE(1644)] = 33851, - [SMALL_STATE(1645)] = 33906, - [SMALL_STATE(1646)] = 33969, - [SMALL_STATE(1647)] = 34032, - [SMALL_STATE(1648)] = 34087, - [SMALL_STATE(1649)] = 34142, - [SMALL_STATE(1650)] = 34203, - [SMALL_STATE(1651)] = 34258, - [SMALL_STATE(1652)] = 34318, - [SMALL_STATE(1653)] = 34372, - [SMALL_STATE(1654)] = 34426, - [SMALL_STATE(1655)] = 34480, - [SMALL_STATE(1656)] = 34534, - [SMALL_STATE(1657)] = 34588, - [SMALL_STATE(1658)] = 34642, - [SMALL_STATE(1659)] = 34696, - [SMALL_STATE(1660)] = 34750, - [SMALL_STATE(1661)] = 34804, - [SMALL_STATE(1662)] = 34858, - [SMALL_STATE(1663)] = 34912, - [SMALL_STATE(1664)] = 34966, - [SMALL_STATE(1665)] = 35020, - [SMALL_STATE(1666)] = 35074, - [SMALL_STATE(1667)] = 35128, - [SMALL_STATE(1668)] = 35182, - [SMALL_STATE(1669)] = 35236, - [SMALL_STATE(1670)] = 35290, - [SMALL_STATE(1671)] = 35344, - [SMALL_STATE(1672)] = 35398, - [SMALL_STATE(1673)] = 35458, - [SMALL_STATE(1674)] = 35512, - [SMALL_STATE(1675)] = 35566, - [SMALL_STATE(1676)] = 35620, - [SMALL_STATE(1677)] = 35674, - [SMALL_STATE(1678)] = 35728, - [SMALL_STATE(1679)] = 35782, - [SMALL_STATE(1680)] = 35836, - [SMALL_STATE(1681)] = 35890, - [SMALL_STATE(1682)] = 35944, - [SMALL_STATE(1683)] = 35998, - [SMALL_STATE(1684)] = 36052, - [SMALL_STATE(1685)] = 36106, - [SMALL_STATE(1686)] = 36160, - [SMALL_STATE(1687)] = 36214, - [SMALL_STATE(1688)] = 36268, - [SMALL_STATE(1689)] = 36322, - [SMALL_STATE(1690)] = 36408, - [SMALL_STATE(1691)] = 36462, - [SMALL_STATE(1692)] = 36516, - [SMALL_STATE(1693)] = 36570, - [SMALL_STATE(1694)] = 36624, - [SMALL_STATE(1695)] = 36678, - [SMALL_STATE(1696)] = 36732, - [SMALL_STATE(1697)] = 36786, - [SMALL_STATE(1698)] = 36840, - [SMALL_STATE(1699)] = 36894, - [SMALL_STATE(1700)] = 36948, - [SMALL_STATE(1701)] = 37002, - [SMALL_STATE(1702)] = 37056, - [SMALL_STATE(1703)] = 37110, - [SMALL_STATE(1704)] = 37164, - [SMALL_STATE(1705)] = 37218, - [SMALL_STATE(1706)] = 37272, - [SMALL_STATE(1707)] = 37328, - [SMALL_STATE(1708)] = 37384, - [SMALL_STATE(1709)] = 37440, - [SMALL_STATE(1710)] = 37514, - [SMALL_STATE(1711)] = 37574, - [SMALL_STATE(1712)] = 37628, - [SMALL_STATE(1713)] = 37682, - [SMALL_STATE(1714)] = 37736, - [SMALL_STATE(1715)] = 37790, - [SMALL_STATE(1716)] = 37844, - [SMALL_STATE(1717)] = 37898, - [SMALL_STATE(1718)] = 37952, - [SMALL_STATE(1719)] = 38006, - [SMALL_STATE(1720)] = 38092, - [SMALL_STATE(1721)] = 38178, - [SMALL_STATE(1722)] = 38264, - [SMALL_STATE(1723)] = 38350, - [SMALL_STATE(1724)] = 38404, - [SMALL_STATE(1725)] = 38483, - [SMALL_STATE(1726)] = 38564, - [SMALL_STATE(1727)] = 38619, - [SMALL_STATE(1728)] = 38676, - [SMALL_STATE(1729)] = 38729, - [SMALL_STATE(1730)] = 38808, - [SMALL_STATE(1731)] = 38863, - [SMALL_STATE(1732)] = 38920, - [SMALL_STATE(1733)] = 38983, - [SMALL_STATE(1734)] = 39060, - [SMALL_STATE(1735)] = 39121, - [SMALL_STATE(1736)] = 39174, - [SMALL_STATE(1737)] = 39253, - [SMALL_STATE(1738)] = 39316, - [SMALL_STATE(1739)] = 39393, - [SMALL_STATE(1740)] = 39456, - [SMALL_STATE(1741)] = 39535, - [SMALL_STATE(1742)] = 39598, - [SMALL_STATE(1743)] = 39707, - [SMALL_STATE(1744)] = 39816, - [SMALL_STATE(1745)] = 39925, - [SMALL_STATE(1746)] = 40034, - [SMALL_STATE(1747)] = 40143, - [SMALL_STATE(1748)] = 40226, - [SMALL_STATE(1749)] = 40299, - [SMALL_STATE(1750)] = 40396, - [SMALL_STATE(1751)] = 40495, - [SMALL_STATE(1752)] = 40574, - [SMALL_STATE(1753)] = 40627, - [SMALL_STATE(1754)] = 40720, - [SMALL_STATE(1755)] = 40815, - [SMALL_STATE(1756)] = 40892, - [SMALL_STATE(1757)] = 40971, - [SMALL_STATE(1758)] = 41058, - [SMALL_STATE(1759)] = 41159, - [SMALL_STATE(1760)] = 41268, - [SMALL_STATE(1761)] = 41377, - [SMALL_STATE(1762)] = 41486, - [SMALL_STATE(1763)] = 41595, - [SMALL_STATE(1764)] = 41704, - [SMALL_STATE(1765)] = 41813, - [SMALL_STATE(1766)] = 41922, - [SMALL_STATE(1767)] = 42001, - [SMALL_STATE(1768)] = 42110, - [SMALL_STATE(1769)] = 42163, - [SMALL_STATE(1770)] = 42240, - [SMALL_STATE(1771)] = 42293, - [SMALL_STATE(1772)] = 42362, - [SMALL_STATE(1773)] = 42439, - [SMALL_STATE(1774)] = 42496, - [SMALL_STATE(1775)] = 42575, - [SMALL_STATE(1776)] = 42652, - [SMALL_STATE(1777)] = 42705, - [SMALL_STATE(1778)] = 42784, - [SMALL_STATE(1779)] = 42855, - [SMALL_STATE(1780)] = 42932, - [SMALL_STATE(1781)] = 43041, - [SMALL_STATE(1782)] = 43132, - [SMALL_STATE(1783)] = 43240, - [SMALL_STATE(1784)] = 43316, - [SMALL_STATE(1785)] = 43424, - [SMALL_STATE(1786)] = 43496, - [SMALL_STATE(1787)] = 43570, - [SMALL_STATE(1788)] = 43630, - [SMALL_STATE(1789)] = 43682, - [SMALL_STATE(1790)] = 43740, - [SMALL_STATE(1791)] = 43798, - [SMALL_STATE(1792)] = 43870, - [SMALL_STATE(1793)] = 43978, - [SMALL_STATE(1794)] = 44034, - [SMALL_STATE(1795)] = 44142, - [SMALL_STATE(1796)] = 44250, - [SMALL_STATE(1797)] = 44332, - [SMALL_STATE(1798)] = 44392, - [SMALL_STATE(1799)] = 44448, - [SMALL_STATE(1800)] = 44506, - [SMALL_STATE(1801)] = 44562, - [SMALL_STATE(1802)] = 44614, - [SMALL_STATE(1803)] = 44674, - [SMALL_STATE(1804)] = 44746, - [SMALL_STATE(1805)] = 44842, - [SMALL_STATE(1806)] = 44940, - [SMALL_STATE(1807)] = 45018, - [SMALL_STATE(1808)] = 45108, - [SMALL_STATE(1809)] = 45200, - [SMALL_STATE(1810)] = 45294, - [SMALL_STATE(1811)] = 45370, - [SMALL_STATE(1812)] = 45448, - [SMALL_STATE(1813)] = 45534, - [SMALL_STATE(1814)] = 45642, - [SMALL_STATE(1815)] = 45696, - [SMALL_STATE(1816)] = 45750, - [SMALL_STATE(1817)] = 45858, - [SMALL_STATE(1818)] = 45974, - [SMALL_STATE(1819)] = 46082, - [SMALL_STATE(1820)] = 46190, - [SMALL_STATE(1821)] = 46298, - [SMALL_STATE(1822)] = 46406, - [SMALL_STATE(1823)] = 46458, - [SMALL_STATE(1824)] = 46514, - [SMALL_STATE(1825)] = 46568, - [SMALL_STATE(1826)] = 46640, - [SMALL_STATE(1827)] = 46710, - [SMALL_STATE(1828)] = 46826, - [SMALL_STATE(1829)] = 46926, - [SMALL_STATE(1830)] = 47034, - [SMALL_STATE(1831)] = 47102, - [SMALL_STATE(1832)] = 47174, - [SMALL_STATE(1833)] = 47228, - [SMALL_STATE(1834)] = 47292, - [SMALL_STATE(1835)] = 47408, - [SMALL_STATE(1836)] = 47480, - [SMALL_STATE(1837)] = 47542, - [SMALL_STATE(1838)] = 47604, - [SMALL_STATE(1839)] = 47712, - [SMALL_STATE(1840)] = 47820, - [SMALL_STATE(1841)] = 47928, - [SMALL_STATE(1842)] = 47980, - [SMALL_STATE(1843)] = 48088, - [SMALL_STATE(1844)] = 48196, - [SMALL_STATE(1845)] = 48278, - [SMALL_STATE(1846)] = 48350, - [SMALL_STATE(1847)] = 48446, - [SMALL_STATE(1848)] = 48544, - [SMALL_STATE(1849)] = 48622, - [SMALL_STATE(1850)] = 48712, - [SMALL_STATE(1851)] = 48804, - [SMALL_STATE(1852)] = 48898, - [SMALL_STATE(1853)] = 48974, - [SMALL_STATE(1854)] = 49052, - [SMALL_STATE(1855)] = 49138, - [SMALL_STATE(1856)] = 49238, - [SMALL_STATE(1857)] = 49346, - [SMALL_STATE(1858)] = 49454, - [SMALL_STATE(1859)] = 49562, - [SMALL_STATE(1860)] = 49670, - [SMALL_STATE(1861)] = 49778, - [SMALL_STATE(1862)] = 49886, - [SMALL_STATE(1863)] = 49994, - [SMALL_STATE(1864)] = 50102, - [SMALL_STATE(1865)] = 50164, - [SMALL_STATE(1866)] = 50226, - [SMALL_STATE(1867)] = 50342, - [SMALL_STATE(1868)] = 50400, - [SMALL_STATE(1869)] = 50460, - [SMALL_STATE(1870)] = 50568, - [SMALL_STATE(1871)] = 50676, - [SMALL_STATE(1872)] = 50750, - [SMALL_STATE(1873)] = 50828, - [SMALL_STATE(1874)] = 50880, - [SMALL_STATE(1875)] = 50988, - [SMALL_STATE(1876)] = 51058, - [SMALL_STATE(1877)] = 51134, - [SMALL_STATE(1878)] = 51242, - [SMALL_STATE(1879)] = 51310, - [SMALL_STATE(1880)] = 51393, - [SMALL_STATE(1881)] = 51444, - [SMALL_STATE(1882)] = 51495, - [SMALL_STATE(1883)] = 51552, - [SMALL_STATE(1884)] = 51615, - [SMALL_STATE(1885)] = 51678, - [SMALL_STATE(1886)] = 51729, - [SMALL_STATE(1887)] = 51784, - [SMALL_STATE(1888)] = 51891, - [SMALL_STATE(1889)] = 51998, - [SMALL_STATE(1890)] = 52073, - [SMALL_STATE(1891)] = 52180, - [SMALL_STATE(1892)] = 52263, - [SMALL_STATE(1893)] = 52344, - [SMALL_STATE(1894)] = 52399, - [SMALL_STATE(1895)] = 52506, - [SMALL_STATE(1896)] = 52577, - [SMALL_STATE(1897)] = 52672, - [SMALL_STATE(1898)] = 52781, - [SMALL_STATE(1899)] = 52878, - [SMALL_STATE(1900)] = 52955, - [SMALL_STATE(1901)] = 53044, - [SMALL_STATE(1902)] = 53135, - [SMALL_STATE(1903)] = 53228, - [SMALL_STATE(1904)] = 53303, - [SMALL_STATE(1905)] = 53380, - [SMALL_STATE(1906)] = 53433, - [SMALL_STATE(1907)] = 53506, - [SMALL_STATE(1908)] = 53559, - [SMALL_STATE(1909)] = 53644, - [SMALL_STATE(1910)] = 53743, - [SMALL_STATE(1911)] = 53794, - [SMALL_STATE(1912)] = 53847, - [SMALL_STATE(1913)] = 53904, - [SMALL_STATE(1914)] = 53957, - [SMALL_STATE(1915)] = 54064, - [SMALL_STATE(1916)] = 54171, - [SMALL_STATE(1917)] = 54222, - [SMALL_STATE(1918)] = 54305, - [SMALL_STATE(1919)] = 54356, - [SMALL_STATE(1920)] = 54463, - [SMALL_STATE(1921)] = 54530, - [SMALL_STATE(1922)] = 54587, - [SMALL_STATE(1923)] = 54646, - [SMALL_STATE(1924)] = 54757, - [SMALL_STATE(1925)] = 54826, - [SMALL_STATE(1926)] = 54883, - [SMALL_STATE(1927)] = 54994, - [SMALL_STATE(1928)] = 55101, - [SMALL_STATE(1929)] = 55170, - [SMALL_STATE(1930)] = 55221, - [SMALL_STATE(1931)] = 55328, - [SMALL_STATE(1932)] = 55385, - [SMALL_STATE(1933)] = 55438, - [SMALL_STATE(1934)] = 55545, - [SMALL_STATE(1935)] = 55604, - [SMALL_STATE(1936)] = 55663, - [SMALL_STATE(1937)] = 55722, - [SMALL_STATE(1938)] = 55777, - [SMALL_STATE(1939)] = 55888, - [SMALL_STATE(1940)] = 55941, - [SMALL_STATE(1941)] = 55992, - [SMALL_STATE(1942)] = 56043, - [SMALL_STATE(1943)] = 56100, - [SMALL_STATE(1944)] = 56157, - [SMALL_STATE(1945)] = 56268, - [SMALL_STATE(1946)] = 56379, - [SMALL_STATE(1947)] = 56490, - [SMALL_STATE(1948)] = 56601, - [SMALL_STATE(1949)] = 56684, - [SMALL_STATE(1950)] = 56747, - [SMALL_STATE(1951)] = 56810, - [SMALL_STATE(1952)] = 56863, - [SMALL_STATE(1953)] = 56916, - [SMALL_STATE(1954)] = 56999, - [SMALL_STATE(1955)] = 57064, - [SMALL_STATE(1956)] = 57129, - [SMALL_STATE(1957)] = 57186, - [SMALL_STATE(1958)] = 57243, - [SMALL_STATE(1959)] = 57350, - [SMALL_STATE(1960)] = 57407, - [SMALL_STATE(1961)] = 57514, - [SMALL_STATE(1962)] = 57565, - [SMALL_STATE(1963)] = 57618, - [SMALL_STATE(1964)] = 57673, - [SMALL_STATE(1965)] = 57746, - [SMALL_STATE(1966)] = 57797, - [SMALL_STATE(1967)] = 57848, - [SMALL_STATE(1968)] = 57899, - [SMALL_STATE(1969)] = 57950, - [SMALL_STATE(1970)] = 58001, - [SMALL_STATE(1971)] = 58074, - [SMALL_STATE(1972)] = 58143, - [SMALL_STATE(1973)] = 58194, - [SMALL_STATE(1974)] = 58245, - [SMALL_STATE(1975)] = 58298, - [SMALL_STATE(1976)] = 58359, - [SMALL_STATE(1977)] = 58410, - [SMALL_STATE(1978)] = 58483, - [SMALL_STATE(1979)] = 58536, - [SMALL_STATE(1980)] = 58587, - [SMALL_STATE(1981)] = 58646, - [SMALL_STATE(1982)] = 58703, - [SMALL_STATE(1983)] = 58758, - [SMALL_STATE(1984)] = 58815, - [SMALL_STATE(1985)] = 58868, - [SMALL_STATE(1986)] = 58919, - [SMALL_STATE(1987)] = 58970, - [SMALL_STATE(1988)] = 59021, - [SMALL_STATE(1989)] = 59074, - [SMALL_STATE(1990)] = 59125, - [SMALL_STATE(1991)] = 59176, - [SMALL_STATE(1992)] = 59229, - [SMALL_STATE(1993)] = 59280, - [SMALL_STATE(1994)] = 59337, - [SMALL_STATE(1995)] = 59388, - [SMALL_STATE(1996)] = 59457, - [SMALL_STATE(1997)] = 59508, - [SMALL_STATE(1998)] = 59559, - [SMALL_STATE(1999)] = 59610, - [SMALL_STATE(2000)] = 59661, - [SMALL_STATE(2001)] = 59712, - [SMALL_STATE(2002)] = 59765, - [SMALL_STATE(2003)] = 59816, - [SMALL_STATE(2004)] = 59879, - [SMALL_STATE(2005)] = 59942, - [SMALL_STATE(2006)] = 59993, - [SMALL_STATE(2007)] = 60044, - [SMALL_STATE(2008)] = 60153, - [SMALL_STATE(2009)] = 60204, - [SMALL_STATE(2010)] = 60255, - [SMALL_STATE(2011)] = 60306, - [SMALL_STATE(2012)] = 60357, - [SMALL_STATE(2013)] = 60408, - [SMALL_STATE(2014)] = 60459, - [SMALL_STATE(2015)] = 60510, - [SMALL_STATE(2016)] = 60561, - [SMALL_STATE(2017)] = 60634, - [SMALL_STATE(2018)] = 60685, - [SMALL_STATE(2019)] = 60736, - [SMALL_STATE(2020)] = 60787, - [SMALL_STATE(2021)] = 60838, - [SMALL_STATE(2022)] = 60901, - [SMALL_STATE(2023)] = 60952, - [SMALL_STATE(2024)] = 61003, - [SMALL_STATE(2025)] = 61054, - [SMALL_STATE(2026)] = 61105, - [SMALL_STATE(2027)] = 61168, - [SMALL_STATE(2028)] = 61223, - [SMALL_STATE(2029)] = 61286, - [SMALL_STATE(2030)] = 61337, - [SMALL_STATE(2031)] = 61388, - [SMALL_STATE(2032)] = 61441, - [SMALL_STATE(2033)] = 61492, - [SMALL_STATE(2034)] = 61543, - [SMALL_STATE(2035)] = 61600, - [SMALL_STATE(2036)] = 61651, - [SMALL_STATE(2037)] = 61702, - [SMALL_STATE(2038)] = 61753, - [SMALL_STATE(2039)] = 61826, - [SMALL_STATE(2040)] = 61883, - [SMALL_STATE(2041)] = 61990, - [SMALL_STATE(2042)] = 62047, - [SMALL_STATE(2043)] = 62104, - [SMALL_STATE(2044)] = 62157, - [SMALL_STATE(2045)] = 62210, - [SMALL_STATE(2046)] = 62317, - [SMALL_STATE(2047)] = 62368, - [SMALL_STATE(2048)] = 62419, - [SMALL_STATE(2049)] = 62478, - [SMALL_STATE(2050)] = 62529, - [SMALL_STATE(2051)] = 62580, - [SMALL_STATE(2052)] = 62631, - [SMALL_STATE(2053)] = 62682, - [SMALL_STATE(2054)] = 62733, - [SMALL_STATE(2055)] = 62784, - [SMALL_STATE(2056)] = 62835, - [SMALL_STATE(2057)] = 62886, - [SMALL_STATE(2058)] = 62937, - [SMALL_STATE(2059)] = 62988, - [SMALL_STATE(2060)] = 63039, - [SMALL_STATE(2061)] = 63090, - [SMALL_STATE(2062)] = 63141, - [SMALL_STATE(2063)] = 63192, - [SMALL_STATE(2064)] = 63243, - [SMALL_STATE(2065)] = 63294, - [SMALL_STATE(2066)] = 63345, - [SMALL_STATE(2067)] = 63398, - [SMALL_STATE(2068)] = 63471, - [SMALL_STATE(2069)] = 63540, - [SMALL_STATE(2070)] = 63591, - [SMALL_STATE(2071)] = 63660, - [SMALL_STATE(2072)] = 63711, - [SMALL_STATE(2073)] = 63782, - [SMALL_STATE(2074)] = 63855, - [SMALL_STATE(2075)] = 63906, - [SMALL_STATE(2076)] = 63957, - [SMALL_STATE(2077)] = 64010, - [SMALL_STATE(2078)] = 64093, - [SMALL_STATE(2079)] = 64144, - [SMALL_STATE(2080)] = 64195, - [SMALL_STATE(2081)] = 64246, - [SMALL_STATE(2082)] = 64297, - [SMALL_STATE(2083)] = 64358, - [SMALL_STATE(2084)] = 64465, - [SMALL_STATE(2085)] = 64572, - [SMALL_STATE(2086)] = 64679, - [SMALL_STATE(2087)] = 64786, - [SMALL_STATE(2088)] = 64893, - [SMALL_STATE(2089)] = 64974, - [SMALL_STATE(2090)] = 65045, - [SMALL_STATE(2091)] = 65140, - [SMALL_STATE(2092)] = 65237, - [SMALL_STATE(2093)] = 65314, - [SMALL_STATE(2094)] = 65403, - [SMALL_STATE(2095)] = 65494, - [SMALL_STATE(2096)] = 65587, - [SMALL_STATE(2097)] = 65662, - [SMALL_STATE(2098)] = 65739, - [SMALL_STATE(2099)] = 65824, - [SMALL_STATE(2100)] = 65923, - [SMALL_STATE(2101)] = 66030, - [SMALL_STATE(2102)] = 66137, - [SMALL_STATE(2103)] = 66244, - [SMALL_STATE(2104)] = 66351, - [SMALL_STATE(2105)] = 66458, - [SMALL_STATE(2106)] = 66565, - [SMALL_STATE(2107)] = 66672, - [SMALL_STATE(2108)] = 66779, - [SMALL_STATE(2109)] = 66848, - [SMALL_STATE(2110)] = 66923, - [SMALL_STATE(2111)] = 67030, - [SMALL_STATE(2112)] = 67097, - [SMALL_STATE(2113)] = 67150, - [SMALL_STATE(2114)] = 67260, - [SMALL_STATE(2115)] = 67310, - [SMALL_STATE(2116)] = 67362, - [SMALL_STATE(2117)] = 67412, - [SMALL_STATE(2118)] = 67466, - [SMALL_STATE(2119)] = 67516, - [SMALL_STATE(2120)] = 67570, - [SMALL_STATE(2121)] = 67636, - [SMALL_STATE(2122)] = 67686, - [SMALL_STATE(2123)] = 67736, - [SMALL_STATE(2124)] = 67800, - [SMALL_STATE(2125)] = 67866, - [SMALL_STATE(2126)] = 67922, - [SMALL_STATE(2127)] = 67978, - [SMALL_STATE(2128)] = 68028, - [SMALL_STATE(2129)] = 68078, - [SMALL_STATE(2130)] = 68132, - [SMALL_STATE(2131)] = 68186, - [SMALL_STATE(2132)] = 68236, - [SMALL_STATE(2133)] = 68290, - [SMALL_STATE(2134)] = 68340, - [SMALL_STATE(2135)] = 68394, - [SMALL_STATE(2136)] = 68452, - [SMALL_STATE(2137)] = 68502, - [SMALL_STATE(2138)] = 68576, - [SMALL_STATE(2139)] = 68686, - [SMALL_STATE(2140)] = 68762, - [SMALL_STATE(2141)] = 68818, - [SMALL_STATE(2142)] = 68868, - [SMALL_STATE(2143)] = 68978, - [SMALL_STATE(2144)] = 69088, - [SMALL_STATE(2145)] = 69144, - [SMALL_STATE(2146)] = 69254, - [SMALL_STATE(2147)] = 69364, - [SMALL_STATE(2148)] = 69438, - [SMALL_STATE(2149)] = 69488, - [SMALL_STATE(2150)] = 69564, - [SMALL_STATE(2151)] = 69626, - [SMALL_STATE(2152)] = 69688, - [SMALL_STATE(2153)] = 69798, - [SMALL_STATE(2154)] = 69848, - [SMALL_STATE(2155)] = 69900, - [SMALL_STATE(2156)] = 69952, - [SMALL_STATE(2157)] = 70038, - [SMALL_STATE(2158)] = 70100, - [SMALL_STATE(2159)] = 70162, - [SMALL_STATE(2160)] = 70272, - [SMALL_STATE(2161)] = 70332, - [SMALL_STATE(2162)] = 70392, - [SMALL_STATE(2163)] = 70450, - [SMALL_STATE(2164)] = 70508, - [SMALL_STATE(2165)] = 70570, - [SMALL_STATE(2166)] = 70632, - [SMALL_STATE(2167)] = 70694, - [SMALL_STATE(2168)] = 70756, - [SMALL_STATE(2169)] = 70818, - [SMALL_STATE(2170)] = 70880, - [SMALL_STATE(2171)] = 70930, - [SMALL_STATE(2172)] = 71036, - [SMALL_STATE(2173)] = 71088, - [SMALL_STATE(2174)] = 71138, - [SMALL_STATE(2175)] = 71188, - [SMALL_STATE(2176)] = 71298, - [SMALL_STATE(2177)] = 71362, - [SMALL_STATE(2178)] = 71412, - [SMALL_STATE(2179)] = 71522, - [SMALL_STATE(2180)] = 71576, - [SMALL_STATE(2181)] = 71630, - [SMALL_STATE(2182)] = 71684, - [SMALL_STATE(2183)] = 71744, - [SMALL_STATE(2184)] = 71798, - [SMALL_STATE(2185)] = 71904, - [SMALL_STATE(2186)] = 72010, - [SMALL_STATE(2187)] = 72116, - [SMALL_STATE(2188)] = 72166, - [SMALL_STATE(2189)] = 72272, - [SMALL_STATE(2190)] = 72322, - [SMALL_STATE(2191)] = 72428, - [SMALL_STATE(2192)] = 72534, - [SMALL_STATE(2193)] = 72614, - [SMALL_STATE(2194)] = 72724, - [SMALL_STATE(2195)] = 72794, - [SMALL_STATE(2196)] = 72904, - [SMALL_STATE(2197)] = 72998, - [SMALL_STATE(2198)] = 73094, - [SMALL_STATE(2199)] = 73170, - [SMALL_STATE(2200)] = 73258, - [SMALL_STATE(2201)] = 73348, - [SMALL_STATE(2202)] = 73440, - [SMALL_STATE(2203)] = 73514, - [SMALL_STATE(2204)] = 73590, - [SMALL_STATE(2205)] = 73674, - [SMALL_STATE(2206)] = 73772, - [SMALL_STATE(2207)] = 73878, - [SMALL_STATE(2208)] = 73984, - [SMALL_STATE(2209)] = 74090, - [SMALL_STATE(2210)] = 74196, - [SMALL_STATE(2211)] = 74302, - [SMALL_STATE(2212)] = 74408, - [SMALL_STATE(2213)] = 74514, - [SMALL_STATE(2214)] = 74578, - [SMALL_STATE(2215)] = 74644, - [SMALL_STATE(2216)] = 74754, - [SMALL_STATE(2217)] = 74860, - [SMALL_STATE(2218)] = 74914, - [SMALL_STATE(2219)] = 74968, - [SMALL_STATE(2220)] = 75032, - [SMALL_STATE(2221)] = 75096, - [SMALL_STATE(2222)] = 75162, - [SMALL_STATE(2223)] = 75226, - [SMALL_STATE(2224)] = 75280, - [SMALL_STATE(2225)] = 75338, - [SMALL_STATE(2226)] = 75388, - [SMALL_STATE(2227)] = 75452, - [SMALL_STATE(2228)] = 75518, - [SMALL_STATE(2229)] = 75582, - [SMALL_STATE(2230)] = 75648, - [SMALL_STATE(2231)] = 75714, - [SMALL_STATE(2232)] = 75778, - [SMALL_STATE(2233)] = 75836, - [SMALL_STATE(2234)] = 75890, - [SMALL_STATE(2235)] = 75940, - [SMALL_STATE(2236)] = 75990, - [SMALL_STATE(2237)] = 76100, - [SMALL_STATE(2238)] = 76150, - [SMALL_STATE(2239)] = 76200, - [SMALL_STATE(2240)] = 76250, - [SMALL_STATE(2241)] = 76300, - [SMALL_STATE(2242)] = 76410, - [SMALL_STATE(2243)] = 76460, - [SMALL_STATE(2244)] = 76514, - [SMALL_STATE(2245)] = 76564, - [SMALL_STATE(2246)] = 76618, - [SMALL_STATE(2247)] = 76682, - [SMALL_STATE(2248)] = 76748, - [SMALL_STATE(2249)] = 76802, - [SMALL_STATE(2250)] = 76860, - [SMALL_STATE(2251)] = 76910, - [SMALL_STATE(2252)] = 76968, - [SMALL_STATE(2253)] = 77078, - [SMALL_STATE(2254)] = 77132, - [SMALL_STATE(2255)] = 77190, - [SMALL_STATE(2256)] = 77240, - [SMALL_STATE(2257)] = 77350, - [SMALL_STATE(2258)] = 77410, - [SMALL_STATE(2259)] = 77520, - [SMALL_STATE(2260)] = 77588, - [SMALL_STATE(2261)] = 77662, - [SMALL_STATE(2262)] = 77768, - [SMALL_STATE(2263)] = 77834, - [SMALL_STATE(2264)] = 77884, - [SMALL_STATE(2265)] = 77938, - [SMALL_STATE(2266)] = 78048, - [SMALL_STATE(2267)] = 78098, - [SMALL_STATE(2268)] = 78162, - [SMALL_STATE(2269)] = 78236, - [SMALL_STATE(2270)] = 78312, - [SMALL_STATE(2271)] = 78364, - [SMALL_STATE(2272)] = 78424, - [SMALL_STATE(2273)] = 78480, - [SMALL_STATE(2274)] = 78530, - [SMALL_STATE(2275)] = 78594, - [SMALL_STATE(2276)] = 78668, - [SMALL_STATE(2277)] = 78744, - [SMALL_STATE(2278)] = 78796, - [SMALL_STATE(2279)] = 78848, - [SMALL_STATE(2280)] = 78898, - [SMALL_STATE(2281)] = 79006, - [SMALL_STATE(2282)] = 79116, - [SMALL_STATE(2283)] = 79180, - [SMALL_STATE(2284)] = 79234, - [SMALL_STATE(2285)] = 79344, - [SMALL_STATE(2286)] = 79454, - [SMALL_STATE(2287)] = 79518, - [SMALL_STATE(2288)] = 79628, - [SMALL_STATE(2289)] = 79692, - [SMALL_STATE(2290)] = 79744, - [SMALL_STATE(2291)] = 79796, - [SMALL_STATE(2292)] = 79846, - [SMALL_STATE(2293)] = 79896, - [SMALL_STATE(2294)] = 79946, - [SMALL_STATE(2295)] = 79996, - [SMALL_STATE(2296)] = 80050, - [SMALL_STATE(2297)] = 80100, - [SMALL_STATE(2298)] = 80154, - [SMALL_STATE(2299)] = 80264, - [SMALL_STATE(2300)] = 80374, - [SMALL_STATE(2301)] = 80484, - [SMALL_STATE(2302)] = 80594, - [SMALL_STATE(2303)] = 80704, - [SMALL_STATE(2304)] = 80758, - [SMALL_STATE(2305)] = 80812, - [SMALL_STATE(2306)] = 80866, - [SMALL_STATE(2307)] = 80920, - [SMALL_STATE(2308)] = 80972, - [SMALL_STATE(2309)] = 81036, - [SMALL_STATE(2310)] = 81102, - [SMALL_STATE(2311)] = 81160, - [SMALL_STATE(2312)] = 81226, - [SMALL_STATE(2313)] = 81278, - [SMALL_STATE(2314)] = 81332, - [SMALL_STATE(2315)] = 81384, - [SMALL_STATE(2316)] = 81450, - [SMALL_STATE(2317)] = 81500, - [SMALL_STATE(2318)] = 81564, - [SMALL_STATE(2319)] = 81630, - [SMALL_STATE(2320)] = 81696, - [SMALL_STATE(2321)] = 81806, - [SMALL_STATE(2322)] = 81856, - [SMALL_STATE(2323)] = 81920, - [SMALL_STATE(2324)] = 81986, - [SMALL_STATE(2325)] = 82092, - [SMALL_STATE(2326)] = 82160, - [SMALL_STATE(2327)] = 82210, - [SMALL_STATE(2328)] = 82260, - [SMALL_STATE(2329)] = 82310, - [SMALL_STATE(2330)] = 82364, - [SMALL_STATE(2331)] = 82414, - [SMALL_STATE(2332)] = 82464, - [SMALL_STATE(2333)] = 82514, - [SMALL_STATE(2334)] = 82564, - [SMALL_STATE(2335)] = 82614, - [SMALL_STATE(2336)] = 82688, - [SMALL_STATE(2337)] = 82794, - [SMALL_STATE(2338)] = 82870, - [SMALL_STATE(2339)] = 82980, - [SMALL_STATE(2340)] = 83090, - [SMALL_STATE(2341)] = 83200, - [SMALL_STATE(2342)] = 83254, - [SMALL_STATE(2343)] = 83364, - [SMALL_STATE(2344)] = 83474, - [SMALL_STATE(2345)] = 83538, - [SMALL_STATE(2346)] = 83612, - [SMALL_STATE(2347)] = 83666, - [SMALL_STATE(2348)] = 83742, - [SMALL_STATE(2349)] = 83852, - [SMALL_STATE(2350)] = 83904, - [SMALL_STATE(2351)] = 83962, - [SMALL_STATE(2352)] = 84012, - [SMALL_STATE(2353)] = 84068, - [SMALL_STATE(2354)] = 84130, - [SMALL_STATE(2355)] = 84236, - [SMALL_STATE(2356)] = 84346, - [SMALL_STATE(2357)] = 84396, - [SMALL_STATE(2358)] = 84460, - [SMALL_STATE(2359)] = 84526, - [SMALL_STATE(2360)] = 84578, - [SMALL_STATE(2361)] = 84644, - [SMALL_STATE(2362)] = 84754, - [SMALL_STATE(2363)] = 84864, - [SMALL_STATE(2364)] = 84915, - [SMALL_STATE(2365)] = 84968, - [SMALL_STATE(2366)] = 85027, - [SMALL_STATE(2367)] = 85086, - [SMALL_STATE(2368)] = 85145, - [SMALL_STATE(2369)] = 85250, - [SMALL_STATE(2370)] = 85355, - [SMALL_STATE(2371)] = 85460, - [SMALL_STATE(2372)] = 85565, - [SMALL_STATE(2373)] = 85670, - [SMALL_STATE(2374)] = 85749, - [SMALL_STATE(2375)] = 85818, - [SMALL_STATE(2376)] = 85911, - [SMALL_STATE(2377)] = 86006, - [SMALL_STATE(2378)] = 86081, - [SMALL_STATE(2379)] = 86168, - [SMALL_STATE(2380)] = 86257, - [SMALL_STATE(2381)] = 86348, - [SMALL_STATE(2382)] = 86421, - [SMALL_STATE(2383)] = 86496, - [SMALL_STATE(2384)] = 86579, - [SMALL_STATE(2385)] = 86676, - [SMALL_STATE(2386)] = 86781, - [SMALL_STATE(2387)] = 86886, - [SMALL_STATE(2388)] = 86991, - [SMALL_STATE(2389)] = 87096, - [SMALL_STATE(2390)] = 87201, - [SMALL_STATE(2391)] = 87306, - [SMALL_STATE(2392)] = 87411, - [SMALL_STATE(2393)] = 87516, - [SMALL_STATE(2394)] = 87621, - [SMALL_STATE(2395)] = 87680, - [SMALL_STATE(2396)] = 87785, - [SMALL_STATE(2397)] = 87890, - [SMALL_STATE(2398)] = 87995, - [SMALL_STATE(2399)] = 88100, - [SMALL_STATE(2400)] = 88205, - [SMALL_STATE(2401)] = 88284, - [SMALL_STATE(2402)] = 88353, - [SMALL_STATE(2403)] = 88446, - [SMALL_STATE(2404)] = 88541, - [SMALL_STATE(2405)] = 88616, - [SMALL_STATE(2406)] = 88703, - [SMALL_STATE(2407)] = 88792, - [SMALL_STATE(2408)] = 88883, - [SMALL_STATE(2409)] = 88956, - [SMALL_STATE(2410)] = 89031, - [SMALL_STATE(2411)] = 89114, - [SMALL_STATE(2412)] = 89211, - [SMALL_STATE(2413)] = 89316, - [SMALL_STATE(2414)] = 89421, - [SMALL_STATE(2415)] = 89526, - [SMALL_STATE(2416)] = 89631, - [SMALL_STATE(2417)] = 89736, - [SMALL_STATE(2418)] = 89841, - [SMALL_STATE(2419)] = 89946, - [SMALL_STATE(2420)] = 90051, - [SMALL_STATE(2421)] = 90102, - [SMALL_STATE(2422)] = 90171, - [SMALL_STATE(2423)] = 90230, - [SMALL_STATE(2424)] = 90285, - [SMALL_STATE(2425)] = 90374, - [SMALL_STATE(2426)] = 90479, - [SMALL_STATE(2427)] = 90584, - [SMALL_STATE(2428)] = 90639, - [SMALL_STATE(2429)] = 90694, - [SMALL_STATE(2430)] = 90753, - [SMALL_STATE(2431)] = 90822, - [SMALL_STATE(2432)] = 90881, - [SMALL_STATE(2433)] = 90932, - [SMALL_STATE(2434)] = 91037, - [SMALL_STATE(2435)] = 91144, - [SMALL_STATE(2436)] = 91199, - [SMALL_STATE(2437)] = 91304, - [SMALL_STATE(2438)] = 91359, - [SMALL_STATE(2439)] = 91414, - [SMALL_STATE(2440)] = 91519, - [SMALL_STATE(2441)] = 91624, - [SMALL_STATE(2442)] = 91675, - [SMALL_STATE(2443)] = 91780, - [SMALL_STATE(2444)] = 91885, - [SMALL_STATE(2445)] = 91992, - [SMALL_STATE(2446)] = 92051, - [SMALL_STATE(2447)] = 92110, - [SMALL_STATE(2448)] = 92187, - [SMALL_STATE(2449)] = 92238, - [SMALL_STATE(2450)] = 92297, - [SMALL_STATE(2451)] = 92356, - [SMALL_STATE(2452)] = 92413, - [SMALL_STATE(2453)] = 92480, - [SMALL_STATE(2454)] = 92553, - [SMALL_STATE(2455)] = 92658, - [SMALL_STATE(2456)] = 92723, - [SMALL_STATE(2457)] = 92782, - [SMALL_STATE(2458)] = 92841, - [SMALL_STATE(2459)] = 92916, - [SMALL_STATE(2460)] = 93021, - [SMALL_STATE(2461)] = 93080, - [SMALL_STATE(2462)] = 93139, - [SMALL_STATE(2463)] = 93206, - [SMALL_STATE(2464)] = 93279, - [SMALL_STATE(2465)] = 93384, - [SMALL_STATE(2466)] = 93449, - [SMALL_STATE(2467)] = 93500, - [SMALL_STATE(2468)] = 93557, - [SMALL_STATE(2469)] = 93626, - [SMALL_STATE(2470)] = 93683, - [SMALL_STATE(2471)] = 93736, - [SMALL_STATE(2472)] = 93805, - [SMALL_STATE(2473)] = 93864, - [SMALL_STATE(2474)] = 93945, - [SMALL_STATE(2475)] = 94004, - [SMALL_STATE(2476)] = 94109, - [SMALL_STATE(2477)] = 94168, - [SMALL_STATE(2478)] = 94223, - [SMALL_STATE(2479)] = 94282, - [SMALL_STATE(2480)] = 94341, - [SMALL_STATE(2481)] = 94400, - [SMALL_STATE(2482)] = 94469, - [SMALL_STATE(2483)] = 94528, - [SMALL_STATE(2484)] = 94587, - [SMALL_STATE(2485)] = 94640, - [SMALL_STATE(2486)] = 94697, - [SMALL_STATE(2487)] = 94766, - [SMALL_STATE(2488)] = 94817, - [SMALL_STATE(2489)] = 94874, - [SMALL_STATE(2490)] = 94933, - [SMALL_STATE(2491)] = 94990, - [SMALL_STATE(2492)] = 95049, - [SMALL_STATE(2493)] = 95154, - [SMALL_STATE(2494)] = 95259, - [SMALL_STATE(2495)] = 95364, - [SMALL_STATE(2496)] = 95469, - [SMALL_STATE(2497)] = 95574, - [SMALL_STATE(2498)] = 95653, - [SMALL_STATE(2499)] = 95722, - [SMALL_STATE(2500)] = 95815, - [SMALL_STATE(2501)] = 95910, - [SMALL_STATE(2502)] = 95985, - [SMALL_STATE(2503)] = 96072, - [SMALL_STATE(2504)] = 96161, - [SMALL_STATE(2505)] = 96252, - [SMALL_STATE(2506)] = 96325, - [SMALL_STATE(2507)] = 96400, - [SMALL_STATE(2508)] = 96483, - [SMALL_STATE(2509)] = 96580, - [SMALL_STATE(2510)] = 96685, - [SMALL_STATE(2511)] = 96790, - [SMALL_STATE(2512)] = 96895, - [SMALL_STATE(2513)] = 97000, - [SMALL_STATE(2514)] = 97105, - [SMALL_STATE(2515)] = 97210, - [SMALL_STATE(2516)] = 97315, - [SMALL_STATE(2517)] = 97420, - [SMALL_STATE(2518)] = 97471, - [SMALL_STATE(2519)] = 97522, - [SMALL_STATE(2520)] = 97589, - [SMALL_STATE(2521)] = 97662, - [SMALL_STATE(2522)] = 97767, - [SMALL_STATE(2523)] = 97832, - [SMALL_STATE(2524)] = 97891, - [SMALL_STATE(2525)] = 97996, - [SMALL_STATE(2526)] = 98053, - [SMALL_STATE(2527)] = 98110, - [SMALL_STATE(2528)] = 98161, - [SMALL_STATE(2529)] = 98216, - [SMALL_STATE(2530)] = 98298, - [SMALL_STATE(2531)] = 98358, - [SMALL_STATE(2532)] = 98408, - [SMALL_STATE(2533)] = 98472, - [SMALL_STATE(2534)] = 98532, - [SMALL_STATE(2535)] = 98636, - [SMALL_STATE(2536)] = 98740, - [SMALL_STATE(2537)] = 98790, - [SMALL_STATE(2538)] = 98894, - [SMALL_STATE(2539)] = 98962, - [SMALL_STATE(2540)] = 99066, - [SMALL_STATE(2541)] = 99136, - [SMALL_STATE(2542)] = 99240, - [SMALL_STATE(2543)] = 99344, - [SMALL_STATE(2544)] = 99394, - [SMALL_STATE(2545)] = 99444, - [SMALL_STATE(2546)] = 99494, - [SMALL_STATE(2547)] = 99548, - [SMALL_STATE(2548)] = 99614, - [SMALL_STATE(2549)] = 99686, - [SMALL_STATE(2550)] = 99790, - [SMALL_STATE(2551)] = 99854, - [SMALL_STATE(2552)] = 99932, - [SMALL_STATE(2553)] = 100000, - [SMALL_STATE(2554)] = 100064, - [SMALL_STATE(2555)] = 100124, - [SMALL_STATE(2556)] = 100216, - [SMALL_STATE(2557)] = 100280, - [SMALL_STATE(2558)] = 100340, - [SMALL_STATE(2559)] = 100444, - [SMALL_STATE(2560)] = 100538, - [SMALL_STATE(2561)] = 100612, - [SMALL_STATE(2562)] = 100698, - [SMALL_STATE(2563)] = 100786, - [SMALL_STATE(2564)] = 100876, - [SMALL_STATE(2565)] = 100948, - [SMALL_STATE(2566)] = 101014, - [SMALL_STATE(2567)] = 101068, - [SMALL_STATE(2568)] = 101142, - [SMALL_STATE(2569)] = 101210, - [SMALL_STATE(2570)] = 101306, - [SMALL_STATE(2571)] = 101410, - [SMALL_STATE(2572)] = 101514, - [SMALL_STATE(2573)] = 101618, - [SMALL_STATE(2574)] = 101672, - [SMALL_STATE(2575)] = 101726, - [SMALL_STATE(2576)] = 101830, - [SMALL_STATE(2577)] = 101934, - [SMALL_STATE(2578)] = 102038, - [SMALL_STATE(2579)] = 102142, - [SMALL_STATE(2580)] = 102246, - [SMALL_STATE(2581)] = 102350, - [SMALL_STATE(2582)] = 102398, - [SMALL_STATE(2583)] = 102502, - [SMALL_STATE(2584)] = 102606, - [SMALL_STATE(2585)] = 102710, - [SMALL_STATE(2586)] = 102764, - [SMALL_STATE(2587)] = 102814, - [SMALL_STATE(2588)] = 102886, - [SMALL_STATE(2589)] = 102936, - [SMALL_STATE(2590)] = 102986, - [SMALL_STATE(2591)] = 103036, - [SMALL_STATE(2592)] = 103086, - [SMALL_STATE(2593)] = 103190, - [SMALL_STATE(2594)] = 103250, - [SMALL_STATE(2595)] = 103304, - [SMALL_STATE(2596)] = 103410, - [SMALL_STATE(2597)] = 103474, - [SMALL_STATE(2598)] = 103528, - [SMALL_STATE(2599)] = 103632, - [SMALL_STATE(2600)] = 103680, - [SMALL_STATE(2601)] = 103734, - [SMALL_STATE(2602)] = 103782, - [SMALL_STATE(2603)] = 103838, - [SMALL_STATE(2604)] = 103942, - [SMALL_STATE(2605)] = 104046, - [SMALL_STATE(2606)] = 104100, - [SMALL_STATE(2607)] = 104158, - [SMALL_STATE(2608)] = 104212, - [SMALL_STATE(2609)] = 104316, - [SMALL_STATE(2610)] = 104366, - [SMALL_STATE(2611)] = 104420, - [SMALL_STATE(2612)] = 104484, - [SMALL_STATE(2613)] = 104588, - [SMALL_STATE(2614)] = 104641, - [SMALL_STATE(2615)] = 104704, - [SMALL_STATE(2616)] = 104763, - [SMALL_STATE(2617)] = 104822, - [SMALL_STATE(2618)] = 104879, - [SMALL_STATE(2619)] = 104936, - [SMALL_STATE(2620)] = 104993, - [SMALL_STATE(2621)] = 105052, - [SMALL_STATE(2622)] = 105109, - [SMALL_STATE(2623)] = 105168, - [SMALL_STATE(2624)] = 105227, - [SMALL_STATE(2625)] = 105286, - [SMALL_STATE(2626)] = 105345, - [SMALL_STATE(2627)] = 105406, - [SMALL_STATE(2628)] = 105471, - [SMALL_STATE(2629)] = 105528, - [SMALL_STATE(2630)] = 105591, - [SMALL_STATE(2631)] = 105640, - [SMALL_STATE(2632)] = 105697, - [SMALL_STATE(2633)] = 105756, - [SMALL_STATE(2634)] = 105815, - [SMALL_STATE(2635)] = 105872, - [SMALL_STATE(2636)] = 105929, - [SMALL_STATE(2637)] = 105988, - [SMALL_STATE(2638)] = 106047, - [SMALL_STATE(2639)] = 106148, - [SMALL_STATE(2640)] = 106205, - [SMALL_STATE(2641)] = 106262, - [SMALL_STATE(2642)] = 106319, - [SMALL_STATE(2643)] = 106376, - [SMALL_STATE(2644)] = 106477, - [SMALL_STATE(2645)] = 106534, - [SMALL_STATE(2646)] = 106591, - [SMALL_STATE(2647)] = 106640, - [SMALL_STATE(2648)] = 106697, + [SMALL_STATE(1299)] = 8892, + [SMALL_STATE(1300)] = 8965, + [SMALL_STATE(1301)] = 9044, + [SMALL_STATE(1302)] = 9117, + [SMALL_STATE(1303)] = 9202, + [SMALL_STATE(1304)] = 9281, + [SMALL_STATE(1305)] = 9354, + [SMALL_STATE(1306)] = 9437, + [SMALL_STATE(1307)] = 9515, + [SMALL_STATE(1308)] = 9587, + [SMALL_STATE(1309)] = 9659, + [SMALL_STATE(1310)] = 9743, + [SMALL_STATE(1311)] = 9809, + [SMALL_STATE(1312)] = 9875, + [SMALL_STATE(1313)] = 9947, + [SMALL_STATE(1314)] = 10019, + [SMALL_STATE(1315)] = 10095, + [SMALL_STATE(1316)] = 10169, + [SMALL_STATE(1317)] = 10243, + [SMALL_STATE(1318)] = 10309, + [SMALL_STATE(1319)] = 10389, + [SMALL_STATE(1320)] = 10465, + [SMALL_STATE(1321)] = 10537, + [SMALL_STATE(1322)] = 10603, + [SMALL_STATE(1323)] = 10673, + [SMALL_STATE(1324)] = 10757, + [SMALL_STATE(1325)] = 10829, + [SMALL_STATE(1326)] = 10895, + [SMALL_STATE(1327)] = 10969, + [SMALL_STATE(1328)] = 11057, + [SMALL_STATE(1329)] = 11135, + [SMALL_STATE(1330)] = 11207, + [SMALL_STATE(1331)] = 11273, + [SMALL_STATE(1332)] = 11339, + [SMALL_STATE(1333)] = 11405, + [SMALL_STATE(1334)] = 11487, + [SMALL_STATE(1335)] = 11557, + [SMALL_STATE(1336)] = 11623, + [SMALL_STATE(1337)] = 11707, + [SMALL_STATE(1338)] = 11779, + [SMALL_STATE(1339)] = 11859, + [SMALL_STATE(1340)] = 11927, + [SMALL_STATE(1341)] = 12011, + [SMALL_STATE(1342)] = 12087, + [SMALL_STATE(1343)] = 12161, + [SMALL_STATE(1344)] = 12239, + [SMALL_STATE(1345)] = 12305, + [SMALL_STATE(1346)] = 12373, + [SMALL_STATE(1347)] = 12461, + [SMALL_STATE(1348)] = 12527, + [SMALL_STATE(1349)] = 12593, + [SMALL_STATE(1350)] = 12664, + [SMALL_STATE(1351)] = 12731, + [SMALL_STATE(1352)] = 12804, + [SMALL_STATE(1353)] = 12877, + [SMALL_STATE(1354)] = 12948, + [SMALL_STATE(1355)] = 13017, + [SMALL_STATE(1356)] = 13088, + [SMALL_STATE(1357)] = 13163, + [SMALL_STATE(1358)] = 13246, + [SMALL_STATE(1359)] = 13319, + [SMALL_STATE(1360)] = 13392, + [SMALL_STATE(1361)] = 13463, + [SMALL_STATE(1362)] = 13540, + [SMALL_STATE(1363)] = 13609, + [SMALL_STATE(1364)] = 13682, + [SMALL_STATE(1365)] = 13751, + [SMALL_STATE(1366)] = 13826, + [SMALL_STATE(1367)] = 13897, + [SMALL_STATE(1368)] = 13964, + [SMALL_STATE(1369)] = 14035, + [SMALL_STATE(1370)] = 14104, + [SMALL_STATE(1371)] = 14181, + [SMALL_STATE(1372)] = 14254, + [SMALL_STATE(1373)] = 14333, + [SMALL_STATE(1374)] = 14410, + [SMALL_STATE(1375)] = 14481, + [SMALL_STATE(1376)] = 14552, + [SMALL_STATE(1377)] = 14625, + [SMALL_STATE(1378)] = 14702, + [SMALL_STATE(1379)] = 14779, + [SMALL_STATE(1380)] = 14851, + [SMALL_STATE(1381)] = 14971, + [SMALL_STATE(1382)] = 15043, + [SMALL_STATE(1383)] = 15163, + [SMALL_STATE(1384)] = 15233, + [SMALL_STATE(1385)] = 15303, + [SMALL_STATE(1386)] = 15373, + [SMALL_STATE(1387)] = 15493, + [SMALL_STATE(1388)] = 15561, + [SMALL_STATE(1389)] = 15635, + [SMALL_STATE(1390)] = 15755, + [SMALL_STATE(1391)] = 15829, + [SMALL_STATE(1392)] = 15903, + [SMALL_STATE(1393)] = 15977, + [SMALL_STATE(1394)] = 16053, + [SMALL_STATE(1395)] = 16173, + [SMALL_STATE(1396)] = 16293, + [SMALL_STATE(1397)] = 16363, + [SMALL_STATE(1398)] = 16429, + [SMALL_STATE(1399)] = 16497, + [SMALL_STATE(1400)] = 16569, + [SMALL_STATE(1401)] = 16639, + [SMALL_STATE(1402)] = 16705, + [SMALL_STATE(1403)] = 16774, + [SMALL_STATE(1404)] = 16843, + [SMALL_STATE(1405)] = 16912, + [SMALL_STATE(1406)] = 16981, + [SMALL_STATE(1407)] = 17050, + [SMALL_STATE(1408)] = 17119, + [SMALL_STATE(1409)] = 17188, + [SMALL_STATE(1410)] = 17259, + [SMALL_STATE(1411)] = 17326, + [SMALL_STATE(1412)] = 17399, + [SMALL_STATE(1413)] = 17468, + [SMALL_STATE(1414)] = 17541, + [SMALL_STATE(1415)] = 17612, + [SMALL_STATE(1416)] = 17681, + [SMALL_STATE(1417)] = 17750, + [SMALL_STATE(1418)] = 17819, + [SMALL_STATE(1419)] = 17888, + [SMALL_STATE(1420)] = 18004, + [SMALL_STATE(1421)] = 18072, + [SMALL_STATE(1422)] = 18140, + [SMALL_STATE(1423)] = 18208, + [SMALL_STATE(1424)] = 18324, + [SMALL_STATE(1425)] = 18440, + [SMALL_STATE(1426)] = 18508, + [SMALL_STATE(1427)] = 18624, + [SMALL_STATE(1428)] = 18692, + [SMALL_STATE(1429)] = 18760, + [SMALL_STATE(1430)] = 18828, + [SMALL_STATE(1431)] = 18896, + [SMALL_STATE(1432)] = 18964, + [SMALL_STATE(1433)] = 19080, + [SMALL_STATE(1434)] = 19196, + [SMALL_STATE(1435)] = 19264, + [SMALL_STATE(1436)] = 19332, + [SMALL_STATE(1437)] = 19448, + [SMALL_STATE(1438)] = 19564, + [SMALL_STATE(1439)] = 19632, + [SMALL_STATE(1440)] = 19748, + [SMALL_STATE(1441)] = 19816, + [SMALL_STATE(1442)] = 19932, + [SMALL_STATE(1443)] = 20048, + [SMALL_STATE(1444)] = 20164, + [SMALL_STATE(1445)] = 20232, + [SMALL_STATE(1446)] = 20300, + [SMALL_STATE(1447)] = 20368, + [SMALL_STATE(1448)] = 20438, + [SMALL_STATE(1449)] = 20506, + [SMALL_STATE(1450)] = 20574, + [SMALL_STATE(1451)] = 20690, + [SMALL_STATE(1452)] = 20758, + [SMALL_STATE(1453)] = 20826, + [SMALL_STATE(1454)] = 20894, + [SMALL_STATE(1455)] = 21010, + [SMALL_STATE(1456)] = 21126, + [SMALL_STATE(1457)] = 21192, + [SMALL_STATE(1458)] = 21258, + [SMALL_STATE(1459)] = 21326, + [SMALL_STATE(1460)] = 21392, + [SMALL_STATE(1461)] = 21508, + [SMALL_STATE(1462)] = 21576, + [SMALL_STATE(1463)] = 21692, + [SMALL_STATE(1464)] = 21808, + [SMALL_STATE(1465)] = 21873, + [SMALL_STATE(1466)] = 21938, + [SMALL_STATE(1467)] = 22003, + [SMALL_STATE(1468)] = 22068, + [SMALL_STATE(1469)] = 22133, + [SMALL_STATE(1470)] = 22198, + [SMALL_STATE(1471)] = 22263, + [SMALL_STATE(1472)] = 22328, + [SMALL_STATE(1473)] = 22393, + [SMALL_STATE(1474)] = 22458, + [SMALL_STATE(1475)] = 22570, + [SMALL_STATE(1476)] = 22682, + [SMALL_STATE(1477)] = 22794, + [SMALL_STATE(1478)] = 22906, + [SMALL_STATE(1479)] = 23018, + [SMALL_STATE(1480)] = 23130, + [SMALL_STATE(1481)] = 23242, + [SMALL_STATE(1482)] = 23361, + [SMALL_STATE(1483)] = 23472, + [SMALL_STATE(1484)] = 23583, + [SMALL_STATE(1485)] = 23694, + [SMALL_STATE(1486)] = 23805, + [SMALL_STATE(1487)] = 23924, + [SMALL_STATE(1488)] = 24043, + [SMALL_STATE(1489)] = 24162, + [SMALL_STATE(1490)] = 24273, + [SMALL_STATE(1491)] = 24384, + [SMALL_STATE(1492)] = 24495, + [SMALL_STATE(1493)] = 24606, + [SMALL_STATE(1494)] = 24725, + [SMALL_STATE(1495)] = 24836, + [SMALL_STATE(1496)] = 24947, + [SMALL_STATE(1497)] = 25058, + [SMALL_STATE(1498)] = 25160, + [SMALL_STATE(1499)] = 25262, + [SMALL_STATE(1500)] = 25364, + [SMALL_STATE(1501)] = 25466, + [SMALL_STATE(1502)] = 25544, + [SMALL_STATE(1503)] = 25646, + [SMALL_STATE(1504)] = 25748, + [SMALL_STATE(1505)] = 25815, + [SMALL_STATE(1506)] = 25880, + [SMALL_STATE(1507)] = 25947, + [SMALL_STATE(1508)] = 26056, + [SMALL_STATE(1509)] = 26113, + [SMALL_STATE(1510)] = 26180, + [SMALL_STATE(1511)] = 26291, + [SMALL_STATE(1512)] = 26348, + [SMALL_STATE(1513)] = 26410, + [SMALL_STATE(1514)] = 26466, + [SMALL_STATE(1515)] = 26528, + [SMALL_STATE(1516)] = 26596, + [SMALL_STATE(1517)] = 26652, + [SMALL_STATE(1518)] = 26708, + [SMALL_STATE(1519)] = 26764, + [SMALL_STATE(1520)] = 26820, + [SMALL_STATE(1521)] = 26914, + [SMALL_STATE(1522)] = 26974, + [SMALL_STATE(1523)] = 27030, + [SMALL_STATE(1524)] = 27088, + [SMALL_STATE(1525)] = 27146, + [SMALL_STATE(1526)] = 27204, + [SMALL_STATE(1527)] = 27260, + [SMALL_STATE(1528)] = 27320, + [SMALL_STATE(1529)] = 27377, + [SMALL_STATE(1530)] = 27432, + [SMALL_STATE(1531)] = 27487, + [SMALL_STATE(1532)] = 27550, + [SMALL_STATE(1533)] = 27605, + [SMALL_STATE(1534)] = 27660, + [SMALL_STATE(1535)] = 27717, + [SMALL_STATE(1536)] = 27780, + [SMALL_STATE(1537)] = 27835, + [SMALL_STATE(1538)] = 27890, + [SMALL_STATE(1539)] = 27945, + [SMALL_STATE(1540)] = 28008, + [SMALL_STATE(1541)] = 28063, + [SMALL_STATE(1542)] = 28118, + [SMALL_STATE(1543)] = 28173, + [SMALL_STATE(1544)] = 28228, + [SMALL_STATE(1545)] = 28283, + [SMALL_STATE(1546)] = 28338, + [SMALL_STATE(1547)] = 28393, + [SMALL_STATE(1548)] = 28448, + [SMALL_STATE(1549)] = 28503, + [SMALL_STATE(1550)] = 28562, + [SMALL_STATE(1551)] = 28619, + [SMALL_STATE(1552)] = 28674, + [SMALL_STATE(1553)] = 28731, + [SMALL_STATE(1554)] = 28786, + [SMALL_STATE(1555)] = 28843, + [SMALL_STATE(1556)] = 28898, + [SMALL_STATE(1557)] = 28953, + [SMALL_STATE(1558)] = 29014, + [SMALL_STATE(1559)] = 29071, + [SMALL_STATE(1560)] = 29126, + [SMALL_STATE(1561)] = 29181, + [SMALL_STATE(1562)] = 29242, + [SMALL_STATE(1563)] = 29299, + [SMALL_STATE(1564)] = 29354, + [SMALL_STATE(1565)] = 29409, + [SMALL_STATE(1566)] = 29464, + [SMALL_STATE(1567)] = 29519, + [SMALL_STATE(1568)] = 29574, + [SMALL_STATE(1569)] = 29629, + [SMALL_STATE(1570)] = 29684, + [SMALL_STATE(1571)] = 29739, + [SMALL_STATE(1572)] = 29794, + [SMALL_STATE(1573)] = 29849, + [SMALL_STATE(1574)] = 29904, + [SMALL_STATE(1575)] = 29961, + [SMALL_STATE(1576)] = 30016, + [SMALL_STATE(1577)] = 30071, + [SMALL_STATE(1578)] = 30126, + [SMALL_STATE(1579)] = 30181, + [SMALL_STATE(1580)] = 30238, + [SMALL_STATE(1581)] = 30293, + [SMALL_STATE(1582)] = 30354, + [SMALL_STATE(1583)] = 30409, + [SMALL_STATE(1584)] = 30464, + [SMALL_STATE(1585)] = 30519, + [SMALL_STATE(1586)] = 30574, + [SMALL_STATE(1587)] = 30629, + [SMALL_STATE(1588)] = 30684, + [SMALL_STATE(1589)] = 30743, + [SMALL_STATE(1590)] = 30798, + [SMALL_STATE(1591)] = 30853, + [SMALL_STATE(1592)] = 30908, + [SMALL_STATE(1593)] = 30969, + [SMALL_STATE(1594)] = 31026, + [SMALL_STATE(1595)] = 31081, + [SMALL_STATE(1596)] = 31138, + [SMALL_STATE(1597)] = 31193, + [SMALL_STATE(1598)] = 31248, + [SMALL_STATE(1599)] = 31303, + [SMALL_STATE(1600)] = 31358, + [SMALL_STATE(1601)] = 31413, + [SMALL_STATE(1602)] = 31468, + [SMALL_STATE(1603)] = 31523, + [SMALL_STATE(1604)] = 31578, + [SMALL_STATE(1605)] = 31633, + [SMALL_STATE(1606)] = 31694, + [SMALL_STATE(1607)] = 31755, + [SMALL_STATE(1608)] = 31810, + [SMALL_STATE(1609)] = 31871, + [SMALL_STATE(1610)] = 31926, + [SMALL_STATE(1611)] = 31981, + [SMALL_STATE(1612)] = 32036, + [SMALL_STATE(1613)] = 32095, + [SMALL_STATE(1614)] = 32150, + [SMALL_STATE(1615)] = 32205, + [SMALL_STATE(1616)] = 32266, + [SMALL_STATE(1617)] = 32327, + [SMALL_STATE(1618)] = 32386, + [SMALL_STATE(1619)] = 32441, + [SMALL_STATE(1620)] = 32502, + [SMALL_STATE(1621)] = 32557, + [SMALL_STATE(1622)] = 32612, + [SMALL_STATE(1623)] = 32667, + [SMALL_STATE(1624)] = 32722, + [SMALL_STATE(1625)] = 32779, + [SMALL_STATE(1626)] = 32834, + [SMALL_STATE(1627)] = 32889, + [SMALL_STATE(1628)] = 32948, + [SMALL_STATE(1629)] = 33003, + [SMALL_STATE(1630)] = 33058, + [SMALL_STATE(1631)] = 33115, + [SMALL_STATE(1632)] = 33170, + [SMALL_STATE(1633)] = 33225, + [SMALL_STATE(1634)] = 33284, + [SMALL_STATE(1635)] = 33345, + [SMALL_STATE(1636)] = 33400, + [SMALL_STATE(1637)] = 33455, + [SMALL_STATE(1638)] = 33510, + [SMALL_STATE(1639)] = 33565, + [SMALL_STATE(1640)] = 33620, + [SMALL_STATE(1641)] = 33675, + [SMALL_STATE(1642)] = 33730, + [SMALL_STATE(1643)] = 33785, + [SMALL_STATE(1644)] = 33846, + [SMALL_STATE(1645)] = 33903, + [SMALL_STATE(1646)] = 33964, + [SMALL_STATE(1647)] = 34019, + [SMALL_STATE(1648)] = 34078, + [SMALL_STATE(1649)] = 34137, + [SMALL_STATE(1650)] = 34198, + [SMALL_STATE(1651)] = 34253, + [SMALL_STATE(1652)] = 34309, + [SMALL_STATE(1653)] = 34363, + [SMALL_STATE(1654)] = 34417, + [SMALL_STATE(1655)] = 34471, + [SMALL_STATE(1656)] = 34525, + [SMALL_STATE(1657)] = 34579, + [SMALL_STATE(1658)] = 34633, + [SMALL_STATE(1659)] = 34687, + [SMALL_STATE(1660)] = 34741, + [SMALL_STATE(1661)] = 34795, + [SMALL_STATE(1662)] = 34849, + [SMALL_STATE(1663)] = 34903, + [SMALL_STATE(1664)] = 34957, + [SMALL_STATE(1665)] = 35011, + [SMALL_STATE(1666)] = 35065, + [SMALL_STATE(1667)] = 35119, + [SMALL_STATE(1668)] = 35173, + [SMALL_STATE(1669)] = 35227, + [SMALL_STATE(1670)] = 35281, + [SMALL_STATE(1671)] = 35341, + [SMALL_STATE(1672)] = 35395, + [SMALL_STATE(1673)] = 35449, + [SMALL_STATE(1674)] = 35503, + [SMALL_STATE(1675)] = 35557, + [SMALL_STATE(1676)] = 35611, + [SMALL_STATE(1677)] = 35665, + [SMALL_STATE(1678)] = 35719, + [SMALL_STATE(1679)] = 35773, + [SMALL_STATE(1680)] = 35827, + [SMALL_STATE(1681)] = 35881, + [SMALL_STATE(1682)] = 35935, + [SMALL_STATE(1683)] = 35989, + [SMALL_STATE(1684)] = 36043, + [SMALL_STATE(1685)] = 36097, + [SMALL_STATE(1686)] = 36151, + [SMALL_STATE(1687)] = 36205, + [SMALL_STATE(1688)] = 36259, + [SMALL_STATE(1689)] = 36313, + [SMALL_STATE(1690)] = 36367, + [SMALL_STATE(1691)] = 36421, + [SMALL_STATE(1692)] = 36475, + [SMALL_STATE(1693)] = 36529, + [SMALL_STATE(1694)] = 36583, + [SMALL_STATE(1695)] = 36637, + [SMALL_STATE(1696)] = 36691, + [SMALL_STATE(1697)] = 36765, + [SMALL_STATE(1698)] = 36819, + [SMALL_STATE(1699)] = 36873, + [SMALL_STATE(1700)] = 36927, + [SMALL_STATE(1701)] = 36981, + [SMALL_STATE(1702)] = 37035, + [SMALL_STATE(1703)] = 37089, + [SMALL_STATE(1704)] = 37143, + [SMALL_STATE(1705)] = 37197, + [SMALL_STATE(1706)] = 37253, + [SMALL_STATE(1707)] = 37309, + [SMALL_STATE(1708)] = 37369, + [SMALL_STATE(1709)] = 37423, + [SMALL_STATE(1710)] = 37477, + [SMALL_STATE(1711)] = 37537, + [SMALL_STATE(1712)] = 37591, + [SMALL_STATE(1713)] = 37645, + [SMALL_STATE(1714)] = 37699, + [SMALL_STATE(1715)] = 37753, + [SMALL_STATE(1716)] = 37807, + [SMALL_STATE(1717)] = 37861, + [SMALL_STATE(1718)] = 37947, + [SMALL_STATE(1719)] = 38033, + [SMALL_STATE(1720)] = 38119, + [SMALL_STATE(1721)] = 38205, + [SMALL_STATE(1722)] = 38291, + [SMALL_STATE(1723)] = 38368, + [SMALL_STATE(1724)] = 38425, + [SMALL_STATE(1725)] = 38480, + [SMALL_STATE(1726)] = 38561, + [SMALL_STATE(1727)] = 38618, + [SMALL_STATE(1728)] = 38671, + [SMALL_STATE(1729)] = 38750, + [SMALL_STATE(1730)] = 38805, + [SMALL_STATE(1731)] = 38868, + [SMALL_STATE(1732)] = 38945, + [SMALL_STATE(1733)] = 39006, + [SMALL_STATE(1734)] = 39059, + [SMALL_STATE(1735)] = 39138, + [SMALL_STATE(1736)] = 39201, + [SMALL_STATE(1737)] = 39278, + [SMALL_STATE(1738)] = 39341, + [SMALL_STATE(1739)] = 39420, + [SMALL_STATE(1740)] = 39483, + [SMALL_STATE(1741)] = 39592, + [SMALL_STATE(1742)] = 39701, + [SMALL_STATE(1743)] = 39780, + [SMALL_STATE(1744)] = 39889, + [SMALL_STATE(1745)] = 39998, + [SMALL_STATE(1746)] = 40107, + [SMALL_STATE(1747)] = 40190, + [SMALL_STATE(1748)] = 40263, + [SMALL_STATE(1749)] = 40360, + [SMALL_STATE(1750)] = 40459, + [SMALL_STATE(1751)] = 40512, + [SMALL_STATE(1752)] = 40603, + [SMALL_STATE(1753)] = 40696, + [SMALL_STATE(1754)] = 40791, + [SMALL_STATE(1755)] = 40868, + [SMALL_STATE(1756)] = 40947, + [SMALL_STATE(1757)] = 41034, + [SMALL_STATE(1758)] = 41135, + [SMALL_STATE(1759)] = 41244, + [SMALL_STATE(1760)] = 41353, + [SMALL_STATE(1761)] = 41462, + [SMALL_STATE(1762)] = 41571, + [SMALL_STATE(1763)] = 41680, + [SMALL_STATE(1764)] = 41789, + [SMALL_STATE(1765)] = 41898, + [SMALL_STATE(1766)] = 42007, + [SMALL_STATE(1767)] = 42060, + [SMALL_STATE(1768)] = 42137, + [SMALL_STATE(1769)] = 42194, + [SMALL_STATE(1770)] = 42273, + [SMALL_STATE(1771)] = 42350, + [SMALL_STATE(1772)] = 42403, + [SMALL_STATE(1773)] = 42482, + [SMALL_STATE(1774)] = 42559, + [SMALL_STATE(1775)] = 42612, + [SMALL_STATE(1776)] = 42691, + [SMALL_STATE(1777)] = 42762, + [SMALL_STATE(1778)] = 42831, + [SMALL_STATE(1779)] = 42940, + [SMALL_STATE(1780)] = 43019, + [SMALL_STATE(1781)] = 43073, + [SMALL_STATE(1782)] = 43131, + [SMALL_STATE(1783)] = 43239, + [SMALL_STATE(1784)] = 43311, + [SMALL_STATE(1785)] = 43385, + [SMALL_STATE(1786)] = 43445, + [SMALL_STATE(1787)] = 43497, + [SMALL_STATE(1788)] = 43555, + [SMALL_STATE(1789)] = 43613, + [SMALL_STATE(1790)] = 43721, + [SMALL_STATE(1791)] = 43829, + [SMALL_STATE(1792)] = 43911, + [SMALL_STATE(1793)] = 43983, + [SMALL_STATE(1794)] = 44039, + [SMALL_STATE(1795)] = 44147, + [SMALL_STATE(1796)] = 44199, + [SMALL_STATE(1797)] = 44259, + [SMALL_STATE(1798)] = 44315, + [SMALL_STATE(1799)] = 44391, + [SMALL_STATE(1800)] = 44447, + [SMALL_STATE(1801)] = 44519, + [SMALL_STATE(1802)] = 44579, + [SMALL_STATE(1803)] = 44675, + [SMALL_STATE(1804)] = 44773, + [SMALL_STATE(1805)] = 44851, + [SMALL_STATE(1806)] = 44941, + [SMALL_STATE(1807)] = 45033, + [SMALL_STATE(1808)] = 45127, + [SMALL_STATE(1809)] = 45203, + [SMALL_STATE(1810)] = 45281, + [SMALL_STATE(1811)] = 45345, + [SMALL_STATE(1812)] = 45431, + [SMALL_STATE(1813)] = 45531, + [SMALL_STATE(1814)] = 45589, + [SMALL_STATE(1815)] = 45659, + [SMALL_STATE(1816)] = 45767, + [SMALL_STATE(1817)] = 45883, + [SMALL_STATE(1818)] = 45991, + [SMALL_STATE(1819)] = 46099, + [SMALL_STATE(1820)] = 46207, + [SMALL_STATE(1821)] = 46315, + [SMALL_STATE(1822)] = 46369, + [SMALL_STATE(1823)] = 46423, + [SMALL_STATE(1824)] = 46531, + [SMALL_STATE(1825)] = 46603, + [SMALL_STATE(1826)] = 46719, + [SMALL_STATE(1827)] = 46771, + [SMALL_STATE(1828)] = 46825, + [SMALL_STATE(1829)] = 46933, + [SMALL_STATE(1830)] = 47005, + [SMALL_STATE(1831)] = 47113, + [SMALL_STATE(1832)] = 47181, + [SMALL_STATE(1833)] = 47297, + [SMALL_STATE(1834)] = 47369, + [SMALL_STATE(1835)] = 47431, + [SMALL_STATE(1836)] = 47493, + [SMALL_STATE(1837)] = 47601, + [SMALL_STATE(1838)] = 47709, + [SMALL_STATE(1839)] = 47761, + [SMALL_STATE(1840)] = 47869, + [SMALL_STATE(1841)] = 47977, + [SMALL_STATE(1842)] = 48085, + [SMALL_STATE(1843)] = 48167, + [SMALL_STATE(1844)] = 48239, + [SMALL_STATE(1845)] = 48335, + [SMALL_STATE(1846)] = 48433, + [SMALL_STATE(1847)] = 48511, + [SMALL_STATE(1848)] = 48601, + [SMALL_STATE(1849)] = 48693, + [SMALL_STATE(1850)] = 48787, + [SMALL_STATE(1851)] = 48863, + [SMALL_STATE(1852)] = 48941, + [SMALL_STATE(1853)] = 49027, + [SMALL_STATE(1854)] = 49127, + [SMALL_STATE(1855)] = 49235, + [SMALL_STATE(1856)] = 49343, + [SMALL_STATE(1857)] = 49451, + [SMALL_STATE(1858)] = 49559, + [SMALL_STATE(1859)] = 49667, + [SMALL_STATE(1860)] = 49775, + [SMALL_STATE(1861)] = 49883, + [SMALL_STATE(1862)] = 49991, + [SMALL_STATE(1863)] = 50053, + [SMALL_STATE(1864)] = 50115, + [SMALL_STATE(1865)] = 50231, + [SMALL_STATE(1866)] = 50287, + [SMALL_STATE(1867)] = 50395, + [SMALL_STATE(1868)] = 50455, + [SMALL_STATE(1869)] = 50563, + [SMALL_STATE(1870)] = 50637, + [SMALL_STATE(1871)] = 50715, + [SMALL_STATE(1872)] = 50767, + [SMALL_STATE(1873)] = 50875, + [SMALL_STATE(1874)] = 50945, + [SMALL_STATE(1875)] = 51021, + [SMALL_STATE(1876)] = 51129, + [SMALL_STATE(1877)] = 51197, + [SMALL_STATE(1878)] = 51280, + [SMALL_STATE(1879)] = 51331, + [SMALL_STATE(1880)] = 51382, + [SMALL_STATE(1881)] = 51433, + [SMALL_STATE(1882)] = 51484, + [SMALL_STATE(1883)] = 51535, + [SMALL_STATE(1884)] = 51592, + [SMALL_STATE(1885)] = 51643, + [SMALL_STATE(1886)] = 51698, + [SMALL_STATE(1887)] = 51805, + [SMALL_STATE(1888)] = 51912, + [SMALL_STATE(1889)] = 52019, + [SMALL_STATE(1890)] = 52102, + [SMALL_STATE(1891)] = 52209, + [SMALL_STATE(1892)] = 52290, + [SMALL_STATE(1893)] = 52363, + [SMALL_STATE(1894)] = 52474, + [SMALL_STATE(1895)] = 52583, + [SMALL_STATE(1896)] = 52654, + [SMALL_STATE(1897)] = 52749, + [SMALL_STATE(1898)] = 52846, + [SMALL_STATE(1899)] = 52923, + [SMALL_STATE(1900)] = 53012, + [SMALL_STATE(1901)] = 53103, + [SMALL_STATE(1902)] = 53196, + [SMALL_STATE(1903)] = 53307, + [SMALL_STATE(1904)] = 53382, + [SMALL_STATE(1905)] = 53459, + [SMALL_STATE(1906)] = 53570, + [SMALL_STATE(1907)] = 53655, + [SMALL_STATE(1908)] = 53708, + [SMALL_STATE(1909)] = 53807, + [SMALL_STATE(1910)] = 53860, + [SMALL_STATE(1911)] = 53917, + [SMALL_STATE(1912)] = 53970, + [SMALL_STATE(1913)] = 54021, + [SMALL_STATE(1914)] = 54128, + [SMALL_STATE(1915)] = 54235, + [SMALL_STATE(1916)] = 54288, + [SMALL_STATE(1917)] = 54339, + [SMALL_STATE(1918)] = 54422, + [SMALL_STATE(1919)] = 54473, + [SMALL_STATE(1920)] = 54580, + [SMALL_STATE(1921)] = 54637, + [SMALL_STATE(1922)] = 54696, + [SMALL_STATE(1923)] = 54763, + [SMALL_STATE(1924)] = 54838, + [SMALL_STATE(1925)] = 54945, + [SMALL_STATE(1926)] = 55002, + [SMALL_STATE(1927)] = 55059, + [SMALL_STATE(1928)] = 55166, + [SMALL_STATE(1929)] = 55219, + [SMALL_STATE(1930)] = 55288, + [SMALL_STATE(1931)] = 55395, + [SMALL_STATE(1932)] = 55446, + [SMALL_STATE(1933)] = 55553, + [SMALL_STATE(1934)] = 55606, + [SMALL_STATE(1935)] = 55665, + [SMALL_STATE(1936)] = 55724, + [SMALL_STATE(1937)] = 55783, + [SMALL_STATE(1938)] = 55838, + [SMALL_STATE(1939)] = 55889, + [SMALL_STATE(1940)] = 55940, + [SMALL_STATE(1941)] = 56051, + [SMALL_STATE(1942)] = 56108, + [SMALL_STATE(1943)] = 56165, + [SMALL_STATE(1944)] = 56276, + [SMALL_STATE(1945)] = 56387, + [SMALL_STATE(1946)] = 56498, + [SMALL_STATE(1947)] = 56605, + [SMALL_STATE(1948)] = 56688, + [SMALL_STATE(1949)] = 56743, + [SMALL_STATE(1950)] = 56806, + [SMALL_STATE(1951)] = 56869, + [SMALL_STATE(1952)] = 56922, + [SMALL_STATE(1953)] = 56975, + [SMALL_STATE(1954)] = 57058, + [SMALL_STATE(1955)] = 57123, + [SMALL_STATE(1956)] = 57188, + [SMALL_STATE(1957)] = 57245, + [SMALL_STATE(1958)] = 57302, + [SMALL_STATE(1959)] = 57359, + [SMALL_STATE(1960)] = 57466, + [SMALL_STATE(1961)] = 57535, + [SMALL_STATE(1962)] = 57588, + [SMALL_STATE(1963)] = 57661, + [SMALL_STATE(1964)] = 57712, + [SMALL_STATE(1965)] = 57763, + [SMALL_STATE(1966)] = 57814, + [SMALL_STATE(1967)] = 57865, + [SMALL_STATE(1968)] = 57916, + [SMALL_STATE(1969)] = 57989, + [SMALL_STATE(1970)] = 58058, + [SMALL_STATE(1971)] = 58109, + [SMALL_STATE(1972)] = 58182, + [SMALL_STATE(1973)] = 58251, + [SMALL_STATE(1974)] = 58302, + [SMALL_STATE(1975)] = 58355, + [SMALL_STATE(1976)] = 58406, + [SMALL_STATE(1977)] = 58467, + [SMALL_STATE(1978)] = 58520, + [SMALL_STATE(1979)] = 58571, + [SMALL_STATE(1980)] = 58630, + [SMALL_STATE(1981)] = 58687, + [SMALL_STATE(1982)] = 58742, + [SMALL_STATE(1983)] = 58799, + [SMALL_STATE(1984)] = 58852, + [SMALL_STATE(1985)] = 58903, + [SMALL_STATE(1986)] = 58954, + [SMALL_STATE(1987)] = 59005, + [SMALL_STATE(1988)] = 59058, + [SMALL_STATE(1989)] = 59109, + [SMALL_STATE(1990)] = 59160, + [SMALL_STATE(1991)] = 59213, + [SMALL_STATE(1992)] = 59264, + [SMALL_STATE(1993)] = 59321, + [SMALL_STATE(1994)] = 59372, + [SMALL_STATE(1995)] = 59423, + [SMALL_STATE(1996)] = 59474, + [SMALL_STATE(1997)] = 59525, + [SMALL_STATE(1998)] = 59576, + [SMALL_STATE(1999)] = 59627, + [SMALL_STATE(2000)] = 59680, + [SMALL_STATE(2001)] = 59731, + [SMALL_STATE(2002)] = 59786, + [SMALL_STATE(2003)] = 59849, + [SMALL_STATE(2004)] = 59912, + [SMALL_STATE(2005)] = 59963, + [SMALL_STATE(2006)] = 60072, + [SMALL_STATE(2007)] = 60125, + [SMALL_STATE(2008)] = 60176, + [SMALL_STATE(2009)] = 60227, + [SMALL_STATE(2010)] = 60278, + [SMALL_STATE(2011)] = 60329, + [SMALL_STATE(2012)] = 60380, + [SMALL_STATE(2013)] = 60431, + [SMALL_STATE(2014)] = 60482, + [SMALL_STATE(2015)] = 60555, + [SMALL_STATE(2016)] = 60606, + [SMALL_STATE(2017)] = 60657, + [SMALL_STATE(2018)] = 60708, + [SMALL_STATE(2019)] = 60759, + [SMALL_STATE(2020)] = 60814, + [SMALL_STATE(2021)] = 60877, + [SMALL_STATE(2022)] = 60928, + [SMALL_STATE(2023)] = 60979, + [SMALL_STATE(2024)] = 61030, + [SMALL_STATE(2025)] = 61081, + [SMALL_STATE(2026)] = 61144, + [SMALL_STATE(2027)] = 61195, + [SMALL_STATE(2028)] = 61258, + [SMALL_STATE(2029)] = 61331, + [SMALL_STATE(2030)] = 61382, + [SMALL_STATE(2031)] = 61435, + [SMALL_STATE(2032)] = 61486, + [SMALL_STATE(2033)] = 61537, + [SMALL_STATE(2034)] = 61588, + [SMALL_STATE(2035)] = 61651, + [SMALL_STATE(2036)] = 61714, + [SMALL_STATE(2037)] = 61771, + [SMALL_STATE(2038)] = 61822, + [SMALL_STATE(2039)] = 61873, + [SMALL_STATE(2040)] = 61924, + [SMALL_STATE(2041)] = 61981, + [SMALL_STATE(2042)] = 62088, + [SMALL_STATE(2043)] = 62145, + [SMALL_STATE(2044)] = 62202, + [SMALL_STATE(2045)] = 62255, + [SMALL_STATE(2046)] = 62308, + [SMALL_STATE(2047)] = 62367, + [SMALL_STATE(2048)] = 62418, + [SMALL_STATE(2049)] = 62469, + [SMALL_STATE(2050)] = 62520, + [SMALL_STATE(2051)] = 62571, + [SMALL_STATE(2052)] = 62622, + [SMALL_STATE(2053)] = 62673, + [SMALL_STATE(2054)] = 62724, + [SMALL_STATE(2055)] = 62775, + [SMALL_STATE(2056)] = 62826, + [SMALL_STATE(2057)] = 62877, + [SMALL_STATE(2058)] = 62928, + [SMALL_STATE(2059)] = 62979, + [SMALL_STATE(2060)] = 63030, + [SMALL_STATE(2061)] = 63081, + [SMALL_STATE(2062)] = 63132, + [SMALL_STATE(2063)] = 63183, + [SMALL_STATE(2064)] = 63234, + [SMALL_STATE(2065)] = 63287, + [SMALL_STATE(2066)] = 63360, + [SMALL_STATE(2067)] = 63429, + [SMALL_STATE(2068)] = 63480, + [SMALL_STATE(2069)] = 63549, + [SMALL_STATE(2070)] = 63600, + [SMALL_STATE(2071)] = 63671, + [SMALL_STATE(2072)] = 63744, + [SMALL_STATE(2073)] = 63795, + [SMALL_STATE(2074)] = 63846, + [SMALL_STATE(2075)] = 63899, + [SMALL_STATE(2076)] = 63982, + [SMALL_STATE(2077)] = 64033, + [SMALL_STATE(2078)] = 64084, + [SMALL_STATE(2079)] = 64135, + [SMALL_STATE(2080)] = 64186, + [SMALL_STATE(2081)] = 64247, + [SMALL_STATE(2082)] = 64354, + [SMALL_STATE(2083)] = 64461, + [SMALL_STATE(2084)] = 64568, + [SMALL_STATE(2085)] = 64675, + [SMALL_STATE(2086)] = 64782, + [SMALL_STATE(2087)] = 64863, + [SMALL_STATE(2088)] = 64934, + [SMALL_STATE(2089)] = 65029, + [SMALL_STATE(2090)] = 65126, + [SMALL_STATE(2091)] = 65203, + [SMALL_STATE(2092)] = 65292, + [SMALL_STATE(2093)] = 65383, + [SMALL_STATE(2094)] = 65476, + [SMALL_STATE(2095)] = 65551, + [SMALL_STATE(2096)] = 65628, + [SMALL_STATE(2097)] = 65713, + [SMALL_STATE(2098)] = 65812, + [SMALL_STATE(2099)] = 65919, + [SMALL_STATE(2100)] = 66026, + [SMALL_STATE(2101)] = 66133, + [SMALL_STATE(2102)] = 66240, + [SMALL_STATE(2103)] = 66347, + [SMALL_STATE(2104)] = 66454, + [SMALL_STATE(2105)] = 66561, + [SMALL_STATE(2106)] = 66668, + [SMALL_STATE(2107)] = 66737, + [SMALL_STATE(2108)] = 66812, + [SMALL_STATE(2109)] = 66919, + [SMALL_STATE(2110)] = 66986, + [SMALL_STATE(2111)] = 67037, + [SMALL_STATE(2112)] = 67101, + [SMALL_STATE(2113)] = 67161, + [SMALL_STATE(2114)] = 67221, + [SMALL_STATE(2115)] = 67285, + [SMALL_STATE(2116)] = 67343, + [SMALL_STATE(2117)] = 67401, + [SMALL_STATE(2118)] = 67463, + [SMALL_STATE(2119)] = 67525, + [SMALL_STATE(2120)] = 67587, + [SMALL_STATE(2121)] = 67649, + [SMALL_STATE(2122)] = 67759, + [SMALL_STATE(2123)] = 67821, + [SMALL_STATE(2124)] = 67883, + [SMALL_STATE(2125)] = 67993, + [SMALL_STATE(2126)] = 68047, + [SMALL_STATE(2127)] = 68157, + [SMALL_STATE(2128)] = 68211, + [SMALL_STATE(2129)] = 68265, + [SMALL_STATE(2130)] = 68319, + [SMALL_STATE(2131)] = 68369, + [SMALL_STATE(2132)] = 68429, + [SMALL_STATE(2133)] = 68535, + [SMALL_STATE(2134)] = 68641, + [SMALL_STATE(2135)] = 68691, + [SMALL_STATE(2136)] = 68797, + [SMALL_STATE(2137)] = 68903, + [SMALL_STATE(2138)] = 68969, + [SMALL_STATE(2139)] = 69033, + [SMALL_STATE(2140)] = 69139, + [SMALL_STATE(2141)] = 69245, + [SMALL_STATE(2142)] = 69325, + [SMALL_STATE(2143)] = 69435, + [SMALL_STATE(2144)] = 69505, + [SMALL_STATE(2145)] = 69615, + [SMALL_STATE(2146)] = 69709, + [SMALL_STATE(2147)] = 69805, + [SMALL_STATE(2148)] = 69881, + [SMALL_STATE(2149)] = 69969, + [SMALL_STATE(2150)] = 70059, + [SMALL_STATE(2151)] = 70151, + [SMALL_STATE(2152)] = 70225, + [SMALL_STATE(2153)] = 70301, + [SMALL_STATE(2154)] = 70385, + [SMALL_STATE(2155)] = 70483, + [SMALL_STATE(2156)] = 70589, + [SMALL_STATE(2157)] = 70695, + [SMALL_STATE(2158)] = 70761, + [SMALL_STATE(2159)] = 70867, + [SMALL_STATE(2160)] = 70973, + [SMALL_STATE(2161)] = 71079, + [SMALL_STATE(2162)] = 71185, + [SMALL_STATE(2163)] = 71291, + [SMALL_STATE(2164)] = 71345, + [SMALL_STATE(2165)] = 71399, + [SMALL_STATE(2166)] = 71453, + [SMALL_STATE(2167)] = 71563, + [SMALL_STATE(2168)] = 71669, + [SMALL_STATE(2169)] = 71723, + [SMALL_STATE(2170)] = 71797, + [SMALL_STATE(2171)] = 71851, + [SMALL_STATE(2172)] = 71915, + [SMALL_STATE(2173)] = 71991, + [SMALL_STATE(2174)] = 72043, + [SMALL_STATE(2175)] = 72153, + [SMALL_STATE(2176)] = 72213, + [SMALL_STATE(2177)] = 72269, + [SMALL_STATE(2178)] = 72333, + [SMALL_STATE(2179)] = 72399, + [SMALL_STATE(2180)] = 72465, + [SMALL_STATE(2181)] = 72517, + [SMALL_STATE(2182)] = 72569, + [SMALL_STATE(2183)] = 72623, + [SMALL_STATE(2184)] = 72729, + [SMALL_STATE(2185)] = 72781, + [SMALL_STATE(2186)] = 72833, + [SMALL_STATE(2187)] = 72887, + [SMALL_STATE(2188)] = 72941, + [SMALL_STATE(2189)] = 73051, + [SMALL_STATE(2190)] = 73101, + [SMALL_STATE(2191)] = 73153, + [SMALL_STATE(2192)] = 73205, + [SMALL_STATE(2193)] = 73259, + [SMALL_STATE(2194)] = 73309, + [SMALL_STATE(2195)] = 73361, + [SMALL_STATE(2196)] = 73411, + [SMALL_STATE(2197)] = 73475, + [SMALL_STATE(2198)] = 73525, + [SMALL_STATE(2199)] = 73575, + [SMALL_STATE(2200)] = 73629, + [SMALL_STATE(2201)] = 73679, + [SMALL_STATE(2202)] = 73729, + [SMALL_STATE(2203)] = 73787, + [SMALL_STATE(2204)] = 73851, + [SMALL_STATE(2205)] = 73901, + [SMALL_STATE(2206)] = 73967, + [SMALL_STATE(2207)] = 74017, + [SMALL_STATE(2208)] = 74067, + [SMALL_STATE(2209)] = 74177, + [SMALL_STATE(2210)] = 74229, + [SMALL_STATE(2211)] = 74279, + [SMALL_STATE(2212)] = 74329, + [SMALL_STATE(2213)] = 74439, + [SMALL_STATE(2214)] = 74497, + [SMALL_STATE(2215)] = 74571, + [SMALL_STATE(2216)] = 74635, + [SMALL_STATE(2217)] = 74701, + [SMALL_STATE(2218)] = 74775, + [SMALL_STATE(2219)] = 74851, + [SMALL_STATE(2220)] = 74961, + [SMALL_STATE(2221)] = 75011, + [SMALL_STATE(2222)] = 75063, + [SMALL_STATE(2223)] = 75113, + [SMALL_STATE(2224)] = 75189, + [SMALL_STATE(2225)] = 75295, + [SMALL_STATE(2226)] = 75405, + [SMALL_STATE(2227)] = 75461, + [SMALL_STATE(2228)] = 75571, + [SMALL_STATE(2229)] = 75621, + [SMALL_STATE(2230)] = 75679, + [SMALL_STATE(2231)] = 75729, + [SMALL_STATE(2232)] = 75839, + [SMALL_STATE(2233)] = 75893, + [SMALL_STATE(2234)] = 75951, + [SMALL_STATE(2235)] = 76001, + [SMALL_STATE(2236)] = 76065, + [SMALL_STATE(2237)] = 76125, + [SMALL_STATE(2238)] = 76235, + [SMALL_STATE(2239)] = 76345, + [SMALL_STATE(2240)] = 76413, + [SMALL_STATE(2241)] = 76487, + [SMALL_STATE(2242)] = 76593, + [SMALL_STATE(2243)] = 76659, + [SMALL_STATE(2244)] = 76713, + [SMALL_STATE(2245)] = 76779, + [SMALL_STATE(2246)] = 76829, + [SMALL_STATE(2247)] = 76883, + [SMALL_STATE(2248)] = 76937, + [SMALL_STATE(2249)] = 77003, + [SMALL_STATE(2250)] = 77111, + [SMALL_STATE(2251)] = 77221, + [SMALL_STATE(2252)] = 77271, + [SMALL_STATE(2253)] = 77335, + [SMALL_STATE(2254)] = 77401, + [SMALL_STATE(2255)] = 77455, + [SMALL_STATE(2256)] = 77505, + [SMALL_STATE(2257)] = 77563, + [SMALL_STATE(2258)] = 77627, + [SMALL_STATE(2259)] = 77677, + [SMALL_STATE(2260)] = 77731, + [SMALL_STATE(2261)] = 77781, + [SMALL_STATE(2262)] = 77835, + [SMALL_STATE(2263)] = 77885, + [SMALL_STATE(2264)] = 77949, + [SMALL_STATE(2265)] = 78011, + [SMALL_STATE(2266)] = 78061, + [SMALL_STATE(2267)] = 78111, + [SMALL_STATE(2268)] = 78163, + [SMALL_STATE(2269)] = 78227, + [SMALL_STATE(2270)] = 78337, + [SMALL_STATE(2271)] = 78401, + [SMALL_STATE(2272)] = 78457, + [SMALL_STATE(2273)] = 78567, + [SMALL_STATE(2274)] = 78677, + [SMALL_STATE(2275)] = 78741, + [SMALL_STATE(2276)] = 78851, + [SMALL_STATE(2277)] = 78915, + [SMALL_STATE(2278)] = 78965, + [SMALL_STATE(2279)] = 79023, + [SMALL_STATE(2280)] = 79073, + [SMALL_STATE(2281)] = 79123, + [SMALL_STATE(2282)] = 79173, + [SMALL_STATE(2283)] = 79223, + [SMALL_STATE(2284)] = 79273, + [SMALL_STATE(2285)] = 79323, + [SMALL_STATE(2286)] = 79433, + [SMALL_STATE(2287)] = 79483, + [SMALL_STATE(2288)] = 79593, + [SMALL_STATE(2289)] = 79703, + [SMALL_STATE(2290)] = 79813, + [SMALL_STATE(2291)] = 79923, + [SMALL_STATE(2292)] = 80033, + [SMALL_STATE(2293)] = 80143, + [SMALL_STATE(2294)] = 80197, + [SMALL_STATE(2295)] = 80251, + [SMALL_STATE(2296)] = 80305, + [SMALL_STATE(2297)] = 80359, + [SMALL_STATE(2298)] = 80423, + [SMALL_STATE(2299)] = 80489, + [SMALL_STATE(2300)] = 80547, + [SMALL_STATE(2301)] = 80613, + [SMALL_STATE(2302)] = 80723, + [SMALL_STATE(2303)] = 80781, + [SMALL_STATE(2304)] = 80847, + [SMALL_STATE(2305)] = 80897, + [SMALL_STATE(2306)] = 81007, + [SMALL_STATE(2307)] = 81071, + [SMALL_STATE(2308)] = 81137, + [SMALL_STATE(2309)] = 81247, + [SMALL_STATE(2310)] = 81301, + [SMALL_STATE(2311)] = 81351, + [SMALL_STATE(2312)] = 81461, + [SMALL_STATE(2313)] = 81567, + [SMALL_STATE(2314)] = 81633, + [SMALL_STATE(2315)] = 81687, + [SMALL_STATE(2316)] = 81755, + [SMALL_STATE(2317)] = 81811, + [SMALL_STATE(2318)] = 81861, + [SMALL_STATE(2319)] = 81911, + [SMALL_STATE(2320)] = 81961, + [SMALL_STATE(2321)] = 82011, + [SMALL_STATE(2322)] = 82085, + [SMALL_STATE(2323)] = 82161, + [SMALL_STATE(2324)] = 82211, + [SMALL_STATE(2325)] = 82261, + [SMALL_STATE(2326)] = 82311, + [SMALL_STATE(2327)] = 82361, + [SMALL_STATE(2328)] = 82411, + [SMALL_STATE(2329)] = 82521, + [SMALL_STATE(2330)] = 82631, + [SMALL_STATE(2331)] = 82741, + [SMALL_STATE(2332)] = 82795, + [SMALL_STATE(2333)] = 82869, + [SMALL_STATE(2334)] = 82919, + [SMALL_STATE(2335)] = 82995, + [SMALL_STATE(2336)] = 83059, + [SMALL_STATE(2337)] = 83169, + [SMALL_STATE(2338)] = 83279, + [SMALL_STATE(2339)] = 83335, + [SMALL_STATE(2340)] = 83391, + [SMALL_STATE(2341)] = 83455, + [SMALL_STATE(2342)] = 83565, + [SMALL_STATE(2343)] = 83615, + [SMALL_STATE(2344)] = 83701, + [SMALL_STATE(2345)] = 83775, + [SMALL_STATE(2346)] = 83829, + [SMALL_STATE(2347)] = 83905, + [SMALL_STATE(2348)] = 83967, + [SMALL_STATE(2349)] = 84029, + [SMALL_STATE(2350)] = 84083, + [SMALL_STATE(2351)] = 84135, + [SMALL_STATE(2352)] = 84187, + [SMALL_STATE(2353)] = 84253, + [SMALL_STATE(2354)] = 84359, + [SMALL_STATE(2355)] = 84421, + [SMALL_STATE(2356)] = 84483, + [SMALL_STATE(2357)] = 84535, + [SMALL_STATE(2358)] = 84601, + [SMALL_STATE(2359)] = 84651, + [SMALL_STATE(2360)] = 84756, + [SMALL_STATE(2361)] = 84831, + [SMALL_STATE(2362)] = 84914, + [SMALL_STATE(2363)] = 85011, + [SMALL_STATE(2364)] = 85116, + [SMALL_STATE(2365)] = 85221, + [SMALL_STATE(2366)] = 85326, + [SMALL_STATE(2367)] = 85431, + [SMALL_STATE(2368)] = 85536, + [SMALL_STATE(2369)] = 85641, + [SMALL_STATE(2370)] = 85746, + [SMALL_STATE(2371)] = 85851, + [SMALL_STATE(2372)] = 85956, + [SMALL_STATE(2373)] = 86007, + [SMALL_STATE(2374)] = 86112, + [SMALL_STATE(2375)] = 86181, + [SMALL_STATE(2376)] = 86240, + [SMALL_STATE(2377)] = 86291, + [SMALL_STATE(2378)] = 86396, + [SMALL_STATE(2379)] = 86465, + [SMALL_STATE(2380)] = 86524, + [SMALL_STATE(2381)] = 86583, + [SMALL_STATE(2382)] = 86634, + [SMALL_STATE(2383)] = 86685, + [SMALL_STATE(2384)] = 86744, + [SMALL_STATE(2385)] = 86821, + [SMALL_STATE(2386)] = 86872, + [SMALL_STATE(2387)] = 86977, + [SMALL_STATE(2388)] = 87036, + [SMALL_STATE(2389)] = 87141, + [SMALL_STATE(2390)] = 87246, + [SMALL_STATE(2391)] = 87351, + [SMALL_STATE(2392)] = 87456, + [SMALL_STATE(2393)] = 87561, + [SMALL_STATE(2394)] = 87640, + [SMALL_STATE(2395)] = 87709, + [SMALL_STATE(2396)] = 87802, + [SMALL_STATE(2397)] = 87897, + [SMALL_STATE(2398)] = 87972, + [SMALL_STATE(2399)] = 88031, + [SMALL_STATE(2400)] = 88106, + [SMALL_STATE(2401)] = 88193, + [SMALL_STATE(2402)] = 88252, + [SMALL_STATE(2403)] = 88341, + [SMALL_STATE(2404)] = 88432, + [SMALL_STATE(2405)] = 88499, + [SMALL_STATE(2406)] = 88572, + [SMALL_STATE(2407)] = 88677, + [SMALL_STATE(2408)] = 88742, + [SMALL_STATE(2409)] = 88815, + [SMALL_STATE(2410)] = 88890, + [SMALL_STATE(2411)] = 88973, + [SMALL_STATE(2412)] = 89078, + [SMALL_STATE(2413)] = 89175, + [SMALL_STATE(2414)] = 89280, + [SMALL_STATE(2415)] = 89347, + [SMALL_STATE(2416)] = 89420, + [SMALL_STATE(2417)] = 89525, + [SMALL_STATE(2418)] = 89590, + [SMALL_STATE(2419)] = 89695, + [SMALL_STATE(2420)] = 89800, + [SMALL_STATE(2421)] = 89905, + [SMALL_STATE(2422)] = 90010, + [SMALL_STATE(2423)] = 90063, + [SMALL_STATE(2424)] = 90168, + [SMALL_STATE(2425)] = 90273, + [SMALL_STATE(2426)] = 90378, + [SMALL_STATE(2427)] = 90483, + [SMALL_STATE(2428)] = 90588, + [SMALL_STATE(2429)] = 90647, + [SMALL_STATE(2430)] = 90728, + [SMALL_STATE(2431)] = 90785, + [SMALL_STATE(2432)] = 90844, + [SMALL_STATE(2433)] = 90899, + [SMALL_STATE(2434)] = 90954, + [SMALL_STATE(2435)] = 91013, + [SMALL_STATE(2436)] = 91120, + [SMALL_STATE(2437)] = 91175, + [SMALL_STATE(2438)] = 91234, + [SMALL_STATE(2439)] = 91303, + [SMALL_STATE(2440)] = 91408, + [SMALL_STATE(2441)] = 91467, + [SMALL_STATE(2442)] = 91572, + [SMALL_STATE(2443)] = 91629, + [SMALL_STATE(2444)] = 91688, + [SMALL_STATE(2445)] = 91747, + [SMALL_STATE(2446)] = 91816, + [SMALL_STATE(2447)] = 91907, + [SMALL_STATE(2448)] = 91980, + [SMALL_STATE(2449)] = 92035, + [SMALL_STATE(2450)] = 92088, + [SMALL_STATE(2451)] = 92193, + [SMALL_STATE(2452)] = 92244, + [SMALL_STATE(2453)] = 92303, + [SMALL_STATE(2454)] = 92354, + [SMALL_STATE(2455)] = 92461, + [SMALL_STATE(2456)] = 92520, + [SMALL_STATE(2457)] = 92577, + [SMALL_STATE(2458)] = 92646, + [SMALL_STATE(2459)] = 92705, + [SMALL_STATE(2460)] = 92764, + [SMALL_STATE(2461)] = 92821, + [SMALL_STATE(2462)] = 92880, + [SMALL_STATE(2463)] = 92937, + [SMALL_STATE(2464)] = 92996, + [SMALL_STATE(2465)] = 93049, + [SMALL_STATE(2466)] = 93154, + [SMALL_STATE(2467)] = 93213, + [SMALL_STATE(2468)] = 93318, + [SMALL_STATE(2469)] = 93423, + [SMALL_STATE(2470)] = 93528, + [SMALL_STATE(2471)] = 93585, + [SMALL_STATE(2472)] = 93690, + [SMALL_STATE(2473)] = 93741, + [SMALL_STATE(2474)] = 93810, + [SMALL_STATE(2475)] = 93915, + [SMALL_STATE(2476)] = 93974, + [SMALL_STATE(2477)] = 94029, + [SMALL_STATE(2478)] = 94084, + [SMALL_STATE(2479)] = 94173, + [SMALL_STATE(2480)] = 94252, + [SMALL_STATE(2481)] = 94307, + [SMALL_STATE(2482)] = 94376, + [SMALL_STATE(2483)] = 94469, + [SMALL_STATE(2484)] = 94564, + [SMALL_STATE(2485)] = 94623, + [SMALL_STATE(2486)] = 94728, + [SMALL_STATE(2487)] = 94833, + [SMALL_STATE(2488)] = 94938, + [SMALL_STATE(2489)] = 95043, + [SMALL_STATE(2490)] = 95148, + [SMALL_STATE(2491)] = 95227, + [SMALL_STATE(2492)] = 95296, + [SMALL_STATE(2493)] = 95389, + [SMALL_STATE(2494)] = 95484, + [SMALL_STATE(2495)] = 95559, + [SMALL_STATE(2496)] = 95646, + [SMALL_STATE(2497)] = 95735, + [SMALL_STATE(2498)] = 95826, + [SMALL_STATE(2499)] = 95899, + [SMALL_STATE(2500)] = 95974, + [SMALL_STATE(2501)] = 96057, + [SMALL_STATE(2502)] = 96154, + [SMALL_STATE(2503)] = 96259, + [SMALL_STATE(2504)] = 96364, + [SMALL_STATE(2505)] = 96469, + [SMALL_STATE(2506)] = 96574, + [SMALL_STATE(2507)] = 96679, + [SMALL_STATE(2508)] = 96784, + [SMALL_STATE(2509)] = 96889, + [SMALL_STATE(2510)] = 96994, + [SMALL_STATE(2511)] = 97053, + [SMALL_STATE(2512)] = 97108, + [SMALL_STATE(2513)] = 97183, + [SMALL_STATE(2514)] = 97234, + [SMALL_STATE(2515)] = 97301, + [SMALL_STATE(2516)] = 97374, + [SMALL_STATE(2517)] = 97479, + [SMALL_STATE(2518)] = 97544, + [SMALL_STATE(2519)] = 97631, + [SMALL_STATE(2520)] = 97720, + [SMALL_STATE(2521)] = 97779, + [SMALL_STATE(2522)] = 97836, + [SMALL_STATE(2523)] = 97887, + [SMALL_STATE(2524)] = 97944, + [SMALL_STATE(2525)] = 98003, + [SMALL_STATE(2526)] = 98051, + [SMALL_STATE(2527)] = 98111, + [SMALL_STATE(2528)] = 98169, + [SMALL_STATE(2529)] = 98273, + [SMALL_STATE(2530)] = 98377, + [SMALL_STATE(2531)] = 98481, + [SMALL_STATE(2532)] = 98585, + [SMALL_STATE(2533)] = 98663, + [SMALL_STATE(2534)] = 98731, + [SMALL_STATE(2535)] = 98823, + [SMALL_STATE(2536)] = 98917, + [SMALL_STATE(2537)] = 98991, + [SMALL_STATE(2538)] = 99077, + [SMALL_STATE(2539)] = 99165, + [SMALL_STATE(2540)] = 99255, + [SMALL_STATE(2541)] = 99327, + [SMALL_STATE(2542)] = 99401, + [SMALL_STATE(2543)] = 99483, + [SMALL_STATE(2544)] = 99579, + [SMALL_STATE(2545)] = 99683, + [SMALL_STATE(2546)] = 99787, + [SMALL_STATE(2547)] = 99891, + [SMALL_STATE(2548)] = 99995, + [SMALL_STATE(2549)] = 100099, + [SMALL_STATE(2550)] = 100203, + [SMALL_STATE(2551)] = 100307, + [SMALL_STATE(2552)] = 100411, + [SMALL_STATE(2553)] = 100517, + [SMALL_STATE(2554)] = 100621, + [SMALL_STATE(2555)] = 100675, + [SMALL_STATE(2556)] = 100729, + [SMALL_STATE(2557)] = 100801, + [SMALL_STATE(2558)] = 100855, + [SMALL_STATE(2559)] = 100909, + [SMALL_STATE(2560)] = 100963, + [SMALL_STATE(2561)] = 101017, + [SMALL_STATE(2562)] = 101065, + [SMALL_STATE(2563)] = 101119, + [SMALL_STATE(2564)] = 101167, + [SMALL_STATE(2565)] = 101221, + [SMALL_STATE(2566)] = 101271, + [SMALL_STATE(2567)] = 101321, + [SMALL_STATE(2568)] = 101375, + [SMALL_STATE(2569)] = 101429, + [SMALL_STATE(2570)] = 101497, + [SMALL_STATE(2571)] = 101567, + [SMALL_STATE(2572)] = 101623, + [SMALL_STATE(2573)] = 101727, + [SMALL_STATE(2574)] = 101777, + [SMALL_STATE(2575)] = 101827, + [SMALL_STATE(2576)] = 101877, + [SMALL_STATE(2577)] = 101927, + [SMALL_STATE(2578)] = 101993, + [SMALL_STATE(2579)] = 102065, + [SMALL_STATE(2580)] = 102169, + [SMALL_STATE(2581)] = 102233, + [SMALL_STATE(2582)] = 102299, + [SMALL_STATE(2583)] = 102367, + [SMALL_STATE(2584)] = 102431, + [SMALL_STATE(2585)] = 102491, + [SMALL_STATE(2586)] = 102555, + [SMALL_STATE(2587)] = 102615, + [SMALL_STATE(2588)] = 102719, + [SMALL_STATE(2589)] = 102823, + [SMALL_STATE(2590)] = 102927, + [SMALL_STATE(2591)] = 103031, + [SMALL_STATE(2592)] = 103135, + [SMALL_STATE(2593)] = 103239, + [SMALL_STATE(2594)] = 103303, + [SMALL_STATE(2595)] = 103363, + [SMALL_STATE(2596)] = 103467, + [SMALL_STATE(2597)] = 103517, + [SMALL_STATE(2598)] = 103567, + [SMALL_STATE(2599)] = 103617, + [SMALL_STATE(2600)] = 103667, + [SMALL_STATE(2601)] = 103731, + [SMALL_STATE(2602)] = 103835, + [SMALL_STATE(2603)] = 103895, + [SMALL_STATE(2604)] = 103945, + [SMALL_STATE(2605)] = 104049, + [SMALL_STATE(2606)] = 104103, + [SMALL_STATE(2607)] = 104207, + [SMALL_STATE(2608)] = 104271, + [SMALL_STATE(2609)] = 104375, + [SMALL_STATE(2610)] = 104434, + [SMALL_STATE(2611)] = 104497, + [SMALL_STATE(2612)] = 104598, + [SMALL_STATE(2613)] = 104655, + [SMALL_STATE(2614)] = 104714, + [SMALL_STATE(2615)] = 104773, + [SMALL_STATE(2616)] = 104832, + [SMALL_STATE(2617)] = 104891, + [SMALL_STATE(2618)] = 104950, + [SMALL_STATE(2619)] = 105009, + [SMALL_STATE(2620)] = 105066, + [SMALL_STATE(2621)] = 105125, + [SMALL_STATE(2622)] = 105190, + [SMALL_STATE(2623)] = 105243, + [SMALL_STATE(2624)] = 105304, + [SMALL_STATE(2625)] = 105361, + [SMALL_STATE(2626)] = 105418, + [SMALL_STATE(2627)] = 105477, + [SMALL_STATE(2628)] = 105536, + [SMALL_STATE(2629)] = 105595, + [SMALL_STATE(2630)] = 105654, + [SMALL_STATE(2631)] = 105717, + [SMALL_STATE(2632)] = 105774, + [SMALL_STATE(2633)] = 105831, + [SMALL_STATE(2634)] = 105888, + [SMALL_STATE(2635)] = 105945, + [SMALL_STATE(2636)] = 106002, + [SMALL_STATE(2637)] = 106059, + [SMALL_STATE(2638)] = 106116, + [SMALL_STATE(2639)] = 106165, + [SMALL_STATE(2640)] = 106222, + [SMALL_STATE(2641)] = 106279, + [SMALL_STATE(2642)] = 106336, + [SMALL_STATE(2643)] = 106385, + [SMALL_STATE(2644)] = 106434, + [SMALL_STATE(2645)] = 106535, + [SMALL_STATE(2646)] = 106592, + [SMALL_STATE(2647)] = 106641, + [SMALL_STATE(2648)] = 106698, [SMALL_STATE(2649)] = 106746, - [SMALL_STATE(2650)] = 106795, - [SMALL_STATE(2651)] = 106854, - [SMALL_STATE(2652)] = 106911, - [SMALL_STATE(2653)] = 106957, - [SMALL_STATE(2654)] = 107005, - [SMALL_STATE(2655)] = 107053, - [SMALL_STATE(2656)] = 107103, - [SMALL_STATE(2657)] = 107149, - [SMALL_STATE(2658)] = 107195, - [SMALL_STATE(2659)] = 107241, - [SMALL_STATE(2660)] = 107287, - [SMALL_STATE(2661)] = 107335, - [SMALL_STATE(2662)] = 107383, - [SMALL_STATE(2663)] = 107431, - [SMALL_STATE(2664)] = 107477, - [SMALL_STATE(2665)] = 107525, - [SMALL_STATE(2666)] = 107571, - [SMALL_STATE(2667)] = 107619, - [SMALL_STATE(2668)] = 107665, - [SMALL_STATE(2669)] = 107723, - [SMALL_STATE(2670)] = 107769, - [SMALL_STATE(2671)] = 107815, - [SMALL_STATE(2672)] = 107861, - [SMALL_STATE(2673)] = 107907, - [SMALL_STATE(2674)] = 107953, - [SMALL_STATE(2675)] = 108003, - [SMALL_STATE(2676)] = 108049, - [SMALL_STATE(2677)] = 108095, - [SMALL_STATE(2678)] = 108141, - [SMALL_STATE(2679)] = 108187, - [SMALL_STATE(2680)] = 108233, - [SMALL_STATE(2681)] = 108279, - [SMALL_STATE(2682)] = 108327, - [SMALL_STATE(2683)] = 108373, - [SMALL_STATE(2684)] = 108419, - [SMALL_STATE(2685)] = 108465, - [SMALL_STATE(2686)] = 108511, - [SMALL_STATE(2687)] = 108567, - [SMALL_STATE(2688)] = 108613, - [SMALL_STATE(2689)] = 108659, - [SMALL_STATE(2690)] = 108705, - [SMALL_STATE(2691)] = 108751, - [SMALL_STATE(2692)] = 108797, - [SMALL_STATE(2693)] = 108843, - [SMALL_STATE(2694)] = 108889, - [SMALL_STATE(2695)] = 108935, - [SMALL_STATE(2696)] = 108983, - [SMALL_STATE(2697)] = 109029, - [SMALL_STATE(2698)] = 109075, - [SMALL_STATE(2699)] = 109121, - [SMALL_STATE(2700)] = 109167, - [SMALL_STATE(2701)] = 109213, - [SMALL_STATE(2702)] = 109259, - [SMALL_STATE(2703)] = 109305, - [SMALL_STATE(2704)] = 109351, - [SMALL_STATE(2705)] = 109397, - [SMALL_STATE(2706)] = 109445, - [SMALL_STATE(2707)] = 109493, - [SMALL_STATE(2708)] = 109541, - [SMALL_STATE(2709)] = 109587, - [SMALL_STATE(2710)] = 109633, - [SMALL_STATE(2711)] = 109683, - [SMALL_STATE(2712)] = 109729, - [SMALL_STATE(2713)] = 109777, - [SMALL_STATE(2714)] = 109823, - [SMALL_STATE(2715)] = 109869, - [SMALL_STATE(2716)] = 109915, - [SMALL_STATE(2717)] = 109961, - [SMALL_STATE(2718)] = 110009, - [SMALL_STATE(2719)] = 110054, - [SMALL_STATE(2720)] = 110121, - [SMALL_STATE(2721)] = 110170, - [SMALL_STATE(2722)] = 110215, - [SMALL_STATE(2723)] = 110268, - [SMALL_STATE(2724)] = 110313, - [SMALL_STATE(2725)] = 110358, - [SMALL_STATE(2726)] = 110409, - [SMALL_STATE(2727)] = 110460, - [SMALL_STATE(2728)] = 110513, - [SMALL_STATE(2729)] = 110558, - [SMALL_STATE(2730)] = 110603, - [SMALL_STATE(2731)] = 110648, - [SMALL_STATE(2732)] = 110708, - [SMALL_STATE(2733)] = 110780, - [SMALL_STATE(2734)] = 110852, - [SMALL_STATE(2735)] = 110910, - [SMALL_STATE(2736)] = 110970, - [SMALL_STATE(2737)] = 111030, - [SMALL_STATE(2738)] = 111078, - [SMALL_STATE(2739)] = 111136, + [SMALL_STATE(2650)] = 106792, + [SMALL_STATE(2651)] = 106838, + [SMALL_STATE(2652)] = 106884, + [SMALL_STATE(2653)] = 106932, + [SMALL_STATE(2654)] = 106978, + [SMALL_STATE(2655)] = 107024, + [SMALL_STATE(2656)] = 107070, + [SMALL_STATE(2657)] = 107116, + [SMALL_STATE(2658)] = 107162, + [SMALL_STATE(2659)] = 107208, + [SMALL_STATE(2660)] = 107254, + [SMALL_STATE(2661)] = 107300, + [SMALL_STATE(2662)] = 107346, + [SMALL_STATE(2663)] = 107392, + [SMALL_STATE(2664)] = 107438, + [SMALL_STATE(2665)] = 107484, + [SMALL_STATE(2666)] = 107530, + [SMALL_STATE(2667)] = 107576, + [SMALL_STATE(2668)] = 107624, + [SMALL_STATE(2669)] = 107670, + [SMALL_STATE(2670)] = 107716, + [SMALL_STATE(2671)] = 107762, + [SMALL_STATE(2672)] = 107808, + [SMALL_STATE(2673)] = 107854, + [SMALL_STATE(2674)] = 107900, + [SMALL_STATE(2675)] = 107946, + [SMALL_STATE(2676)] = 107994, + [SMALL_STATE(2677)] = 108042, + [SMALL_STATE(2678)] = 108090, + [SMALL_STATE(2679)] = 108136, + [SMALL_STATE(2680)] = 108182, + [SMALL_STATE(2681)] = 108228, + [SMALL_STATE(2682)] = 108276, + [SMALL_STATE(2683)] = 108324, + [SMALL_STATE(2684)] = 108382, + [SMALL_STATE(2685)] = 108428, + [SMALL_STATE(2686)] = 108474, + [SMALL_STATE(2687)] = 108522, + [SMALL_STATE(2688)] = 108568, + [SMALL_STATE(2689)] = 108614, + [SMALL_STATE(2690)] = 108662, + [SMALL_STATE(2691)] = 108708, + [SMALL_STATE(2692)] = 108754, + [SMALL_STATE(2693)] = 108800, + [SMALL_STATE(2694)] = 108846, + [SMALL_STATE(2695)] = 108896, + [SMALL_STATE(2696)] = 108942, + [SMALL_STATE(2697)] = 108988, + [SMALL_STATE(2698)] = 109036, + [SMALL_STATE(2699)] = 109084, + [SMALL_STATE(2700)] = 109134, + [SMALL_STATE(2701)] = 109184, + [SMALL_STATE(2702)] = 109230, + [SMALL_STATE(2703)] = 109276, + [SMALL_STATE(2704)] = 109322, + [SMALL_STATE(2705)] = 109368, + [SMALL_STATE(2706)] = 109414, + [SMALL_STATE(2707)] = 109462, + [SMALL_STATE(2708)] = 109508, + [SMALL_STATE(2709)] = 109554, + [SMALL_STATE(2710)] = 109602, + [SMALL_STATE(2711)] = 109648, + [SMALL_STATE(2712)] = 109704, + [SMALL_STATE(2713)] = 109750, + [SMALL_STATE(2714)] = 109801, + [SMALL_STATE(2715)] = 109852, + [SMALL_STATE(2716)] = 109897, + [SMALL_STATE(2717)] = 109942, + [SMALL_STATE(2718)] = 109987, + [SMALL_STATE(2719)] = 110032, + [SMALL_STATE(2720)] = 110081, + [SMALL_STATE(2721)] = 110126, + [SMALL_STATE(2722)] = 110171, + [SMALL_STATE(2723)] = 110238, + [SMALL_STATE(2724)] = 110283, + [SMALL_STATE(2725)] = 110336, + [SMALL_STATE(2726)] = 110389, + [SMALL_STATE(2727)] = 110437, + [SMALL_STATE(2728)] = 110497, + [SMALL_STATE(2729)] = 110553, + [SMALL_STATE(2730)] = 110597, + [SMALL_STATE(2731)] = 110655, + [SMALL_STATE(2732)] = 110715, + [SMALL_STATE(2733)] = 110787, + [SMALL_STATE(2734)] = 110845, + [SMALL_STATE(2735)] = 110903, + [SMALL_STATE(2736)] = 110963, + [SMALL_STATE(2737)] = 111035, + [SMALL_STATE(2738)] = 111093, + [SMALL_STATE(2739)] = 111141, [SMALL_STATE(2740)] = 111194, - [SMALL_STATE(2741)] = 111250, - [SMALL_STATE(2742)] = 111308, - [SMALL_STATE(2743)] = 111356, - [SMALL_STATE(2744)] = 111409, - [SMALL_STATE(2745)] = 111462, - [SMALL_STATE(2746)] = 111515, - [SMALL_STATE(2747)] = 111578, - [SMALL_STATE(2748)] = 111631, - [SMALL_STATE(2749)] = 111680, - [SMALL_STATE(2750)] = 111733, - [SMALL_STATE(2751)] = 111786, - [SMALL_STATE(2752)] = 111839, - [SMALL_STATE(2753)] = 111892, - [SMALL_STATE(2754)] = 111945, - [SMALL_STATE(2755)] = 111998, - [SMALL_STATE(2756)] = 112051, - [SMALL_STATE(2757)] = 112104, - [SMALL_STATE(2758)] = 112157, - [SMALL_STATE(2759)] = 112210, - [SMALL_STATE(2760)] = 112263, - [SMALL_STATE(2761)] = 112316, - [SMALL_STATE(2762)] = 112369, - [SMALL_STATE(2763)] = 112432, - [SMALL_STATE(2764)] = 112485, - [SMALL_STATE(2765)] = 112538, - [SMALL_STATE(2766)] = 112591, - [SMALL_STATE(2767)] = 112644, - [SMALL_STATE(2768)] = 112697, - [SMALL_STATE(2769)] = 112750, - [SMALL_STATE(2770)] = 112803, - [SMALL_STATE(2771)] = 112856, - [SMALL_STATE(2772)] = 112909, - [SMALL_STATE(2773)] = 112962, - [SMALL_STATE(2774)] = 113016, - [SMALL_STATE(2775)] = 113070, - [SMALL_STATE(2776)] = 113150, - [SMALL_STATE(2777)] = 113214, - [SMALL_STATE(2778)] = 113268, - [SMALL_STATE(2779)] = 113322, - [SMALL_STATE(2780)] = 113376, - [SMALL_STATE(2781)] = 113436, - [SMALL_STATE(2782)] = 113490, - [SMALL_STATE(2783)] = 113544, - [SMALL_STATE(2784)] = 113624, - [SMALL_STATE(2785)] = 113684, - [SMALL_STATE(2786)] = 113748, - [SMALL_STATE(2787)] = 113812, - [SMALL_STATE(2788)] = 113892, - [SMALL_STATE(2789)] = 113946, - [SMALL_STATE(2790)] = 114000, - [SMALL_STATE(2791)] = 114080, - [SMALL_STATE(2792)] = 114134, - [SMALL_STATE(2793)] = 114214, - [SMALL_STATE(2794)] = 114255, - [SMALL_STATE(2795)] = 114312, - [SMALL_STATE(2796)] = 114353, - [SMALL_STATE(2797)] = 114394, - [SMALL_STATE(2798)] = 114445, - [SMALL_STATE(2799)] = 114502, - [SMALL_STATE(2800)] = 114559, - [SMALL_STATE(2801)] = 114612, - [SMALL_STATE(2802)] = 114669, - [SMALL_STATE(2803)] = 114726, - [SMALL_STATE(2804)] = 114783, - [SMALL_STATE(2805)] = 114824, - [SMALL_STATE(2806)] = 114881, - [SMALL_STATE(2807)] = 114938, - [SMALL_STATE(2808)] = 114995, - [SMALL_STATE(2809)] = 115048, - [SMALL_STATE(2810)] = 115105, - [SMALL_STATE(2811)] = 115162, - [SMALL_STATE(2812)] = 115219, - [SMALL_STATE(2813)] = 115276, - [SMALL_STATE(2814)] = 115319, - [SMALL_STATE(2815)] = 115376, - [SMALL_STATE(2816)] = 115417, - [SMALL_STATE(2817)] = 115474, - [SMALL_STATE(2818)] = 115531, - [SMALL_STATE(2819)] = 115579, - [SMALL_STATE(2820)] = 115627, - [SMALL_STATE(2821)] = 115675, - [SMALL_STATE(2822)] = 115723, - [SMALL_STATE(2823)] = 115771, - [SMALL_STATE(2824)] = 115819, - [SMALL_STATE(2825)] = 115867, - [SMALL_STATE(2826)] = 115915, - [SMALL_STATE(2827)] = 115963, - [SMALL_STATE(2828)] = 116013, - [SMALL_STATE(2829)] = 116061, - [SMALL_STATE(2830)] = 116109, - [SMALL_STATE(2831)] = 116157, - [SMALL_STATE(2832)] = 116205, - [SMALL_STATE(2833)] = 116253, - [SMALL_STATE(2834)] = 116301, - [SMALL_STATE(2835)] = 116349, - [SMALL_STATE(2836)] = 116397, - [SMALL_STATE(2837)] = 116445, - [SMALL_STATE(2838)] = 116495, - [SMALL_STATE(2839)] = 116543, - [SMALL_STATE(2840)] = 116591, - [SMALL_STATE(2841)] = 116639, - [SMALL_STATE(2842)] = 116687, - [SMALL_STATE(2843)] = 116735, - [SMALL_STATE(2844)] = 116783, - [SMALL_STATE(2845)] = 116833, - [SMALL_STATE(2846)] = 116881, - [SMALL_STATE(2847)] = 116931, - [SMALL_STATE(2848)] = 116981, - [SMALL_STATE(2849)] = 117029, - [SMALL_STATE(2850)] = 117077, - [SMALL_STATE(2851)] = 117125, - [SMALL_STATE(2852)] = 117175, - [SMALL_STATE(2853)] = 117223, - [SMALL_STATE(2854)] = 117271, - [SMALL_STATE(2855)] = 117319, - [SMALL_STATE(2856)] = 117367, - [SMALL_STATE(2857)] = 117417, - [SMALL_STATE(2858)] = 117465, - [SMALL_STATE(2859)] = 117513, - [SMALL_STATE(2860)] = 117561, - [SMALL_STATE(2861)] = 117609, - [SMALL_STATE(2862)] = 117657, - [SMALL_STATE(2863)] = 117705, - [SMALL_STATE(2864)] = 117753, - [SMALL_STATE(2865)] = 117801, - [SMALL_STATE(2866)] = 117849, - [SMALL_STATE(2867)] = 117899, - [SMALL_STATE(2868)] = 117949, - [SMALL_STATE(2869)] = 117997, - [SMALL_STATE(2870)] = 118047, - [SMALL_STATE(2871)] = 118095, - [SMALL_STATE(2872)] = 118143, - [SMALL_STATE(2873)] = 118193, - [SMALL_STATE(2874)] = 118243, - [SMALL_STATE(2875)] = 118291, - [SMALL_STATE(2876)] = 118339, - [SMALL_STATE(2877)] = 118389, - [SMALL_STATE(2878)] = 118437, - [SMALL_STATE(2879)] = 118487, - [SMALL_STATE(2880)] = 118522, - [SMALL_STATE(2881)] = 118563, - [SMALL_STATE(2882)] = 118604, - [SMALL_STATE(2883)] = 118645, - [SMALL_STATE(2884)] = 118673, - [SMALL_STATE(2885)] = 118701, - [SMALL_STATE(2886)] = 118729, - [SMALL_STATE(2887)] = 118757, - [SMALL_STATE(2888)] = 118785, - [SMALL_STATE(2889)] = 118813, - [SMALL_STATE(2890)] = 118841, - [SMALL_STATE(2891)] = 118869, - [SMALL_STATE(2892)] = 118897, - [SMALL_STATE(2893)] = 118925, - [SMALL_STATE(2894)] = 118953, - [SMALL_STATE(2895)] = 118981, - [SMALL_STATE(2896)] = 119009, - [SMALL_STATE(2897)] = 119037, - [SMALL_STATE(2898)] = 119065, - [SMALL_STATE(2899)] = 119093, - [SMALL_STATE(2900)] = 119121, - [SMALL_STATE(2901)] = 119149, - [SMALL_STATE(2902)] = 119177, - [SMALL_STATE(2903)] = 119205, - [SMALL_STATE(2904)] = 119233, - [SMALL_STATE(2905)] = 119261, - [SMALL_STATE(2906)] = 119289, - [SMALL_STATE(2907)] = 119317, - [SMALL_STATE(2908)] = 119345, - [SMALL_STATE(2909)] = 119373, - [SMALL_STATE(2910)] = 119401, - [SMALL_STATE(2911)] = 119429, - [SMALL_STATE(2912)] = 119457, - [SMALL_STATE(2913)] = 119485, - [SMALL_STATE(2914)] = 119513, - [SMALL_STATE(2915)] = 119541, - [SMALL_STATE(2916)] = 119569, - [SMALL_STATE(2917)] = 119597, - [SMALL_STATE(2918)] = 119624, - [SMALL_STATE(2919)] = 119651, - [SMALL_STATE(2920)] = 119677, - [SMALL_STATE(2921)] = 119705, - [SMALL_STATE(2922)] = 119731, - [SMALL_STATE(2923)] = 119757, - [SMALL_STATE(2924)] = 119783, - [SMALL_STATE(2925)] = 119811, - [SMALL_STATE(2926)] = 119841, - [SMALL_STATE(2927)] = 119873, - [SMALL_STATE(2928)] = 119899, - [SMALL_STATE(2929)] = 119933, - [SMALL_STATE(2930)] = 119959, - [SMALL_STATE(2931)] = 119985, - [SMALL_STATE(2932)] = 120035, - [SMALL_STATE(2933)] = 120065, - [SMALL_STATE(2934)] = 120091, - [SMALL_STATE(2935)] = 120129, - [SMALL_STATE(2936)] = 120167, - [SMALL_STATE(2937)] = 120193, - [SMALL_STATE(2938)] = 120231, - [SMALL_STATE(2939)] = 120262, - [SMALL_STATE(2940)] = 120289, - [SMALL_STATE(2941)] = 120314, - [SMALL_STATE(2942)] = 120339, - [SMALL_STATE(2943)] = 120364, - [SMALL_STATE(2944)] = 120389, - [SMALL_STATE(2945)] = 120418, - [SMALL_STATE(2946)] = 120444, - [SMALL_STATE(2947)] = 120468, - [SMALL_STATE(2948)] = 120492, - [SMALL_STATE(2949)] = 120520, - [SMALL_STATE(2950)] = 120544, - [SMALL_STATE(2951)] = 120568, - [SMALL_STATE(2952)] = 120592, - [SMALL_STATE(2953)] = 120616, - [SMALL_STATE(2954)] = 120640, - [SMALL_STATE(2955)] = 120664, - [SMALL_STATE(2956)] = 120688, - [SMALL_STATE(2957)] = 120712, - [SMALL_STATE(2958)] = 120736, - [SMALL_STATE(2959)] = 120760, - [SMALL_STATE(2960)] = 120784, - [SMALL_STATE(2961)] = 120808, - [SMALL_STATE(2962)] = 120832, - [SMALL_STATE(2963)] = 120856, - [SMALL_STATE(2964)] = 120880, - [SMALL_STATE(2965)] = 120904, - [SMALL_STATE(2966)] = 120928, - [SMALL_STATE(2967)] = 120952, - [SMALL_STATE(2968)] = 120976, - [SMALL_STATE(2969)] = 121000, - [SMALL_STATE(2970)] = 121024, - [SMALL_STATE(2971)] = 121048, - [SMALL_STATE(2972)] = 121074, - [SMALL_STATE(2973)] = 121098, - [SMALL_STATE(2974)] = 121122, - [SMALL_STATE(2975)] = 121154, - [SMALL_STATE(2976)] = 121188, - [SMALL_STATE(2977)] = 121222, - [SMALL_STATE(2978)] = 121256, - [SMALL_STATE(2979)] = 121288, - [SMALL_STATE(2980)] = 121322, - [SMALL_STATE(2981)] = 121356, - [SMALL_STATE(2982)] = 121390, - [SMALL_STATE(2983)] = 121412, - [SMALL_STATE(2984)] = 121444, - [SMALL_STATE(2985)] = 121478, - [SMALL_STATE(2986)] = 121512, - [SMALL_STATE(2987)] = 121546, - [SMALL_STATE(2988)] = 121570, - [SMALL_STATE(2989)] = 121594, - [SMALL_STATE(2990)] = 121618, - [SMALL_STATE(2991)] = 121642, - [SMALL_STATE(2992)] = 121666, - [SMALL_STATE(2993)] = 121690, - [SMALL_STATE(2994)] = 121712, - [SMALL_STATE(2995)] = 121736, - [SMALL_STATE(2996)] = 121760, - [SMALL_STATE(2997)] = 121784, - [SMALL_STATE(2998)] = 121808, - [SMALL_STATE(2999)] = 121832, - [SMALL_STATE(3000)] = 121864, - [SMALL_STATE(3001)] = 121898, - [SMALL_STATE(3002)] = 121932, - [SMALL_STATE(3003)] = 121966, - [SMALL_STATE(3004)] = 121990, - [SMALL_STATE(3005)] = 122012, - [SMALL_STATE(3006)] = 122044, - [SMALL_STATE(3007)] = 122078, - [SMALL_STATE(3008)] = 122112, - [SMALL_STATE(3009)] = 122146, - [SMALL_STATE(3010)] = 122178, - [SMALL_STATE(3011)] = 122202, - [SMALL_STATE(3012)] = 122226, - [SMALL_STATE(3013)] = 122260, - [SMALL_STATE(3014)] = 122284, - [SMALL_STATE(3015)] = 122308, - [SMALL_STATE(3016)] = 122332, - [SMALL_STATE(3017)] = 122356, - [SMALL_STATE(3018)] = 122390, - [SMALL_STATE(3019)] = 122414, - [SMALL_STATE(3020)] = 122438, - [SMALL_STATE(3021)] = 122462, - [SMALL_STATE(3022)] = 122486, - [SMALL_STATE(3023)] = 122520, - [SMALL_STATE(3024)] = 122542, - [SMALL_STATE(3025)] = 122566, - [SMALL_STATE(3026)] = 122590, - [SMALL_STATE(3027)] = 122614, - [SMALL_STATE(3028)] = 122638, - [SMALL_STATE(3029)] = 122660, - [SMALL_STATE(3030)] = 122684, - [SMALL_STATE(3031)] = 122706, - [SMALL_STATE(3032)] = 122728, - [SMALL_STATE(3033)] = 122752, - [SMALL_STATE(3034)] = 122776, - [SMALL_STATE(3035)] = 122800, - [SMALL_STATE(3036)] = 122824, - [SMALL_STATE(3037)] = 122848, - [SMALL_STATE(3038)] = 122872, - [SMALL_STATE(3039)] = 122896, - [SMALL_STATE(3040)] = 122920, - [SMALL_STATE(3041)] = 122944, - [SMALL_STATE(3042)] = 122966, - [SMALL_STATE(3043)] = 122988, - [SMALL_STATE(3044)] = 123010, - [SMALL_STATE(3045)] = 123034, - [SMALL_STATE(3046)] = 123058, - [SMALL_STATE(3047)] = 123082, - [SMALL_STATE(3048)] = 123127, - [SMALL_STATE(3049)] = 123170, - [SMALL_STATE(3050)] = 123213, - [SMALL_STATE(3051)] = 123256, - [SMALL_STATE(3052)] = 123295, - [SMALL_STATE(3053)] = 123338, - [SMALL_STATE(3054)] = 123381, - [SMALL_STATE(3055)] = 123410, - [SMALL_STATE(3056)] = 123453, - [SMALL_STATE(3057)] = 123482, - [SMALL_STATE(3058)] = 123521, - [SMALL_STATE(3059)] = 123564, - [SMALL_STATE(3060)] = 123607, - [SMALL_STATE(3061)] = 123650, - [SMALL_STATE(3062)] = 123675, - [SMALL_STATE(3063)] = 123714, - [SMALL_STATE(3064)] = 123757, - [SMALL_STATE(3065)] = 123786, - [SMALL_STATE(3066)] = 123829, - [SMALL_STATE(3067)] = 123854, - [SMALL_STATE(3068)] = 123883, - [SMALL_STATE(3069)] = 123922, - [SMALL_STATE(3070)] = 123947, - [SMALL_STATE(3071)] = 123990, - [SMALL_STATE(3072)] = 124033, - [SMALL_STATE(3073)] = 124076, - [SMALL_STATE(3074)] = 124119, - [SMALL_STATE(3075)] = 124148, - [SMALL_STATE(3076)] = 124191, - [SMALL_STATE(3077)] = 124220, - [SMALL_STATE(3078)] = 124259, - [SMALL_STATE(3079)] = 124302, - [SMALL_STATE(3080)] = 124345, - [SMALL_STATE(3081)] = 124374, - [SMALL_STATE(3082)] = 124403, - [SMALL_STATE(3083)] = 124446, - [SMALL_STATE(3084)] = 124489, - [SMALL_STATE(3085)] = 124532, - [SMALL_STATE(3086)] = 124575, - [SMALL_STATE(3087)] = 124618, - [SMALL_STATE(3088)] = 124647, - [SMALL_STATE(3089)] = 124675, - [SMALL_STATE(3090)] = 124699, - [SMALL_STATE(3091)] = 124723, - [SMALL_STATE(3092)] = 124745, - [SMALL_STATE(3093)] = 124765, - [SMALL_STATE(3094)] = 124785, - [SMALL_STATE(3095)] = 124805, - [SMALL_STATE(3096)] = 124827, - [SMALL_STATE(3097)] = 124847, - [SMALL_STATE(3098)] = 124883, - [SMALL_STATE(3099)] = 124903, - [SMALL_STATE(3100)] = 124923, - [SMALL_STATE(3101)] = 124943, - [SMALL_STATE(3102)] = 124965, - [SMALL_STATE(3103)] = 124987, - [SMALL_STATE(3104)] = 125007, - [SMALL_STATE(3105)] = 125027, - [SMALL_STATE(3106)] = 125047, - [SMALL_STATE(3107)] = 125067, - [SMALL_STATE(3108)] = 125089, - [SMALL_STATE(3109)] = 125125, - [SMALL_STATE(3110)] = 125153, - [SMALL_STATE(3111)] = 125175, - [SMALL_STATE(3112)] = 125195, - [SMALL_STATE(3113)] = 125215, - [SMALL_STATE(3114)] = 125235, - [SMALL_STATE(3115)] = 125271, - [SMALL_STATE(3116)] = 125309, - [SMALL_STATE(3117)] = 125337, - [SMALL_STATE(3118)] = 125359, - [SMALL_STATE(3119)] = 125395, - [SMALL_STATE(3120)] = 125415, - [SMALL_STATE(3121)] = 125435, - [SMALL_STATE(3122)] = 125455, - [SMALL_STATE(3123)] = 125475, - [SMALL_STATE(3124)] = 125495, - [SMALL_STATE(3125)] = 125523, - [SMALL_STATE(3126)] = 125551, - [SMALL_STATE(3127)] = 125571, - [SMALL_STATE(3128)] = 125591, - [SMALL_STATE(3129)] = 125617, - [SMALL_STATE(3130)] = 125637, - [SMALL_STATE(3131)] = 125657, - [SMALL_STATE(3132)] = 125677, - [SMALL_STATE(3133)] = 125697, - [SMALL_STATE(3134)] = 125717, - [SMALL_STATE(3135)] = 125737, - [SMALL_STATE(3136)] = 125757, - [SMALL_STATE(3137)] = 125777, - [SMALL_STATE(3138)] = 125797, - [SMALL_STATE(3139)] = 125817, - [SMALL_STATE(3140)] = 125837, - [SMALL_STATE(3141)] = 125857, - [SMALL_STATE(3142)] = 125893, - [SMALL_STATE(3143)] = 125929, - [SMALL_STATE(3144)] = 125951, - [SMALL_STATE(3145)] = 125987, - [SMALL_STATE(3146)] = 126023, - [SMALL_STATE(3147)] = 126045, - [SMALL_STATE(3148)] = 126067, - [SMALL_STATE(3149)] = 126091, - [SMALL_STATE(3150)] = 126119, - [SMALL_STATE(3151)] = 126147, - [SMALL_STATE(3152)] = 126169, - [SMALL_STATE(3153)] = 126193, - [SMALL_STATE(3154)] = 126219, - [SMALL_STATE(3155)] = 126247, - [SMALL_STATE(3156)] = 126269, - [SMALL_STATE(3157)] = 126293, - [SMALL_STATE(3158)] = 126329, - [SMALL_STATE(3159)] = 126365, - [SMALL_STATE(3160)] = 126391, - [SMALL_STATE(3161)] = 126411, - [SMALL_STATE(3162)] = 126440, - [SMALL_STATE(3163)] = 126463, - [SMALL_STATE(3164)] = 126500, - [SMALL_STATE(3165)] = 126537, - [SMALL_STATE(3166)] = 126570, - [SMALL_STATE(3167)] = 126603, - [SMALL_STATE(3168)] = 126636, - [SMALL_STATE(3169)] = 126667, - [SMALL_STATE(3170)] = 126704, - [SMALL_STATE(3171)] = 126727, - [SMALL_STATE(3172)] = 126748, - [SMALL_STATE(3173)] = 126785, - [SMALL_STATE(3174)] = 126822, - [SMALL_STATE(3175)] = 126859, - [SMALL_STATE(3176)] = 126892, - [SMALL_STATE(3177)] = 126925, - [SMALL_STATE(3178)] = 126958, - [SMALL_STATE(3179)] = 126995, - [SMALL_STATE(3180)] = 127032, - [SMALL_STATE(3181)] = 127069, - [SMALL_STATE(3182)] = 127106, - [SMALL_STATE(3183)] = 127139, - [SMALL_STATE(3184)] = 127176, - [SMALL_STATE(3185)] = 127213, - [SMALL_STATE(3186)] = 127252, - [SMALL_STATE(3187)] = 127289, - [SMALL_STATE(3188)] = 127314, - [SMALL_STATE(3189)] = 127351, - [SMALL_STATE(3190)] = 127372, - [SMALL_STATE(3191)] = 127391, - [SMALL_STATE(3192)] = 127412, - [SMALL_STATE(3193)] = 127431, - [SMALL_STATE(3194)] = 127462, - [SMALL_STATE(3195)] = 127483, - [SMALL_STATE(3196)] = 127520, - [SMALL_STATE(3197)] = 127551, - [SMALL_STATE(3198)] = 127574, - [SMALL_STATE(3199)] = 127603, - [SMALL_STATE(3200)] = 127632, - [SMALL_STATE(3201)] = 127655, - [SMALL_STATE(3202)] = 127684, - [SMALL_STATE(3203)] = 127705, - [SMALL_STATE(3204)] = 127726, - [SMALL_STATE(3205)] = 127763, - [SMALL_STATE(3206)] = 127800, - [SMALL_STATE(3207)] = 127831, - [SMALL_STATE(3208)] = 127868, - [SMALL_STATE(3209)] = 127905, - [SMALL_STATE(3210)] = 127942, - [SMALL_STATE(3211)] = 127973, - [SMALL_STATE(3212)] = 128010, - [SMALL_STATE(3213)] = 128047, - [SMALL_STATE(3214)] = 128072, - [SMALL_STATE(3215)] = 128105, - [SMALL_STATE(3216)] = 128142, - [SMALL_STATE(3217)] = 128175, - [SMALL_STATE(3218)] = 128198, - [SMALL_STATE(3219)] = 128231, - [SMALL_STATE(3220)] = 128252, - [SMALL_STATE(3221)] = 128281, - [SMALL_STATE(3222)] = 128299, - [SMALL_STATE(3223)] = 128323, - [SMALL_STATE(3224)] = 128343, - [SMALL_STATE(3225)] = 128365, - [SMALL_STATE(3226)] = 128385, - [SMALL_STATE(3227)] = 128409, - [SMALL_STATE(3228)] = 128431, - [SMALL_STATE(3229)] = 128451, - [SMALL_STATE(3230)] = 128471, - [SMALL_STATE(3231)] = 128495, - [SMALL_STATE(3232)] = 128515, - [SMALL_STATE(3233)] = 128535, - [SMALL_STATE(3234)] = 128555, - [SMALL_STATE(3235)] = 128575, - [SMALL_STATE(3236)] = 128595, - [SMALL_STATE(3237)] = 128631, - [SMALL_STATE(3238)] = 128651, - [SMALL_STATE(3239)] = 128671, - [SMALL_STATE(3240)] = 128689, - [SMALL_STATE(3241)] = 128709, - [SMALL_STATE(3242)] = 128727, - [SMALL_STATE(3243)] = 128747, - [SMALL_STATE(3244)] = 128767, - [SMALL_STATE(3245)] = 128787, - [SMALL_STATE(3246)] = 128807, - [SMALL_STATE(3247)] = 128827, - [SMALL_STATE(3248)] = 128847, - [SMALL_STATE(3249)] = 128865, - [SMALL_STATE(3250)] = 128883, - [SMALL_STATE(3251)] = 128903, - [SMALL_STATE(3252)] = 128925, - [SMALL_STATE(3253)] = 128945, - [SMALL_STATE(3254)] = 128965, - [SMALL_STATE(3255)] = 128983, - [SMALL_STATE(3256)] = 129005, - [SMALL_STATE(3257)] = 129025, - [SMALL_STATE(3258)] = 129049, - [SMALL_STATE(3259)] = 129073, - [SMALL_STATE(3260)] = 129091, - [SMALL_STATE(3261)] = 129115, - [SMALL_STATE(3262)] = 129135, - [SMALL_STATE(3263)] = 129161, - [SMALL_STATE(3264)] = 129179, - [SMALL_STATE(3265)] = 129197, - [SMALL_STATE(3266)] = 129219, - [SMALL_STATE(3267)] = 129239, - [SMALL_STATE(3268)] = 129257, - [SMALL_STATE(3269)] = 129277, - [SMALL_STATE(3270)] = 129299, - [SMALL_STATE(3271)] = 129319, - [SMALL_STATE(3272)] = 129339, - [SMALL_STATE(3273)] = 129357, - [SMALL_STATE(3274)] = 129377, - [SMALL_STATE(3275)] = 129401, - [SMALL_STATE(3276)] = 129421, - [SMALL_STATE(3277)] = 129441, - [SMALL_STATE(3278)] = 129467, - [SMALL_STATE(3279)] = 129487, - [SMALL_STATE(3280)] = 129507, - [SMALL_STATE(3281)] = 129529, - [SMALL_STATE(3282)] = 129547, - [SMALL_STATE(3283)] = 129567, - [SMALL_STATE(3284)] = 129587, - [SMALL_STATE(3285)] = 129611, - [SMALL_STATE(3286)] = 129631, - [SMALL_STATE(3287)] = 129651, - [SMALL_STATE(3288)] = 129671, - [SMALL_STATE(3289)] = 129691, - [SMALL_STATE(3290)] = 129715, - [SMALL_STATE(3291)] = 129737, - [SMALL_STATE(3292)] = 129755, - [SMALL_STATE(3293)] = 129773, - [SMALL_STATE(3294)] = 129802, - [SMALL_STATE(3295)] = 129837, - [SMALL_STATE(3296)] = 129870, - [SMALL_STATE(3297)] = 129901, - [SMALL_STATE(3298)] = 129936, - [SMALL_STATE(3299)] = 129953, - [SMALL_STATE(3300)] = 129986, - [SMALL_STATE(3301)] = 130003, - [SMALL_STATE(3302)] = 130020, - [SMALL_STATE(3303)] = 130055, - [SMALL_STATE(3304)] = 130090, - [SMALL_STATE(3305)] = 130113, - [SMALL_STATE(3306)] = 130148, - [SMALL_STATE(3307)] = 130183, - [SMALL_STATE(3308)] = 130218, - [SMALL_STATE(3309)] = 130243, - [SMALL_STATE(3310)] = 130278, - [SMALL_STATE(3311)] = 130297, - [SMALL_STATE(3312)] = 130332, - [SMALL_STATE(3313)] = 130355, - [SMALL_STATE(3314)] = 130374, - [SMALL_STATE(3315)] = 130393, - [SMALL_STATE(3316)] = 130424, - [SMALL_STATE(3317)] = 130445, - [SMALL_STATE(3318)] = 130466, - [SMALL_STATE(3319)] = 130483, - [SMALL_STATE(3320)] = 130502, - [SMALL_STATE(3321)] = 130523, - [SMALL_STATE(3322)] = 130554, - [SMALL_STATE(3323)] = 130589, - [SMALL_STATE(3324)] = 130624, - [SMALL_STATE(3325)] = 130652, - [SMALL_STATE(3326)] = 130680, - [SMALL_STATE(3327)] = 130696, - [SMALL_STATE(3328)] = 130712, - [SMALL_STATE(3329)] = 130730, - [SMALL_STATE(3330)] = 130746, - [SMALL_STATE(3331)] = 130762, - [SMALL_STATE(3332)] = 130794, - [SMALL_STATE(3333)] = 130810, - [SMALL_STATE(3334)] = 130826, - [SMALL_STATE(3335)] = 130846, - [SMALL_STATE(3336)] = 130872, - [SMALL_STATE(3337)] = 130898, - [SMALL_STATE(3338)] = 130914, - [SMALL_STATE(3339)] = 130930, - [SMALL_STATE(3340)] = 130946, - [SMALL_STATE(3341)] = 130962, - [SMALL_STATE(3342)] = 130978, - [SMALL_STATE(3343)] = 130994, - [SMALL_STATE(3344)] = 131010, - [SMALL_STATE(3345)] = 131032, - [SMALL_STATE(3346)] = 131064, - [SMALL_STATE(3347)] = 131090, - [SMALL_STATE(3348)] = 131106, - [SMALL_STATE(3349)] = 131136, - [SMALL_STATE(3350)] = 131158, - [SMALL_STATE(3351)] = 131186, - [SMALL_STATE(3352)] = 131214, - [SMALL_STATE(3353)] = 131232, - [SMALL_STATE(3354)] = 131260, - [SMALL_STATE(3355)] = 131276, - [SMALL_STATE(3356)] = 131298, - [SMALL_STATE(3357)] = 131330, - [SMALL_STATE(3358)] = 131346, - [SMALL_STATE(3359)] = 131372, - [SMALL_STATE(3360)] = 131388, - [SMALL_STATE(3361)] = 131414, - [SMALL_STATE(3362)] = 131442, - [SMALL_STATE(3363)] = 131458, - [SMALL_STATE(3364)] = 131486, - [SMALL_STATE(3365)] = 131506, - [SMALL_STATE(3366)] = 131524, - [SMALL_STATE(3367)] = 131540, - [SMALL_STATE(3368)] = 131556, - [SMALL_STATE(3369)] = 131578, - [SMALL_STATE(3370)] = 131600, - [SMALL_STATE(3371)] = 131616, - [SMALL_STATE(3372)] = 131648, - [SMALL_STATE(3373)] = 131676, - [SMALL_STATE(3374)] = 131704, - [SMALL_STATE(3375)] = 131720, - [SMALL_STATE(3376)] = 131748, - [SMALL_STATE(3377)] = 131776, - [SMALL_STATE(3378)] = 131792, - [SMALL_STATE(3379)] = 131820, - [SMALL_STATE(3380)] = 131836, - [SMALL_STATE(3381)] = 131852, - [SMALL_STATE(3382)] = 131868, - [SMALL_STATE(3383)] = 131884, - [SMALL_STATE(3384)] = 131900, - [SMALL_STATE(3385)] = 131922, - [SMALL_STATE(3386)] = 131944, - [SMALL_STATE(3387)] = 131972, - [SMALL_STATE(3388)] = 132000, - [SMALL_STATE(3389)] = 132028, - [SMALL_STATE(3390)] = 132056, - [SMALL_STATE(3391)] = 132076, - [SMALL_STATE(3392)] = 132102, - [SMALL_STATE(3393)] = 132118, - [SMALL_STATE(3394)] = 132134, - [SMALL_STATE(3395)] = 132162, - [SMALL_STATE(3396)] = 132190, - [SMALL_STATE(3397)] = 132222, - [SMALL_STATE(3398)] = 132238, - [SMALL_STATE(3399)] = 132266, - [SMALL_STATE(3400)] = 132282, - [SMALL_STATE(3401)] = 132310, - [SMALL_STATE(3402)] = 132338, - [SMALL_STATE(3403)] = 132356, - [SMALL_STATE(3404)] = 132384, - [SMALL_STATE(3405)] = 132400, - [SMALL_STATE(3406)] = 132418, - [SMALL_STATE(3407)] = 132446, - [SMALL_STATE(3408)] = 132462, - [SMALL_STATE(3409)] = 132478, - [SMALL_STATE(3410)] = 132500, - [SMALL_STATE(3411)] = 132528, - [SMALL_STATE(3412)] = 132556, - [SMALL_STATE(3413)] = 132582, - [SMALL_STATE(3414)] = 132598, - [SMALL_STATE(3415)] = 132624, - [SMALL_STATE(3416)] = 132648, - [SMALL_STATE(3417)] = 132676, - [SMALL_STATE(3418)] = 132708, - [SMALL_STATE(3419)] = 132740, - [SMALL_STATE(3420)] = 132772, - [SMALL_STATE(3421)] = 132804, - [SMALL_STATE(3422)] = 132822, - [SMALL_STATE(3423)] = 132838, - [SMALL_STATE(3424)] = 132854, - [SMALL_STATE(3425)] = 132872, - [SMALL_STATE(3426)] = 132888, - [SMALL_STATE(3427)] = 132906, - [SMALL_STATE(3428)] = 132922, - [SMALL_STATE(3429)] = 132938, - [SMALL_STATE(3430)] = 132970, - [SMALL_STATE(3431)] = 133002, - [SMALL_STATE(3432)] = 133030, - [SMALL_STATE(3433)] = 133046, - [SMALL_STATE(3434)] = 133072, - [SMALL_STATE(3435)] = 133100, - [SMALL_STATE(3436)] = 133128, - [SMALL_STATE(3437)] = 133160, - [SMALL_STATE(3438)] = 133186, - [SMALL_STATE(3439)] = 133214, - [SMALL_STATE(3440)] = 133242, - [SMALL_STATE(3441)] = 133274, - [SMALL_STATE(3442)] = 133300, - [SMALL_STATE(3443)] = 133316, - [SMALL_STATE(3444)] = 133344, - [SMALL_STATE(3445)] = 133370, - [SMALL_STATE(3446)] = 133398, - [SMALL_STATE(3447)] = 133414, - [SMALL_STATE(3448)] = 133442, - [SMALL_STATE(3449)] = 133468, - [SMALL_STATE(3450)] = 133500, - [SMALL_STATE(3451)] = 133532, - [SMALL_STATE(3452)] = 133560, - [SMALL_STATE(3453)] = 133592, - [SMALL_STATE(3454)] = 133624, - [SMALL_STATE(3455)] = 133652, - [SMALL_STATE(3456)] = 133680, - [SMALL_STATE(3457)] = 133696, - [SMALL_STATE(3458)] = 133728, - [SMALL_STATE(3459)] = 133756, - [SMALL_STATE(3460)] = 133788, - [SMALL_STATE(3461)] = 133816, - [SMALL_STATE(3462)] = 133844, - [SMALL_STATE(3463)] = 133866, - [SMALL_STATE(3464)] = 133894, - [SMALL_STATE(3465)] = 133922, - [SMALL_STATE(3466)] = 133950, - [SMALL_STATE(3467)] = 133978, - [SMALL_STATE(3468)] = 133994, - [SMALL_STATE(3469)] = 134022, - [SMALL_STATE(3470)] = 134050, - [SMALL_STATE(3471)] = 134078, - [SMALL_STATE(3472)] = 134107, - [SMALL_STATE(3473)] = 134128, - [SMALL_STATE(3474)] = 134149, - [SMALL_STATE(3475)] = 134174, - [SMALL_STATE(3476)] = 134199, - [SMALL_STATE(3477)] = 134224, - [SMALL_STATE(3478)] = 134247, - [SMALL_STATE(3479)] = 134272, - [SMALL_STATE(3480)] = 134293, - [SMALL_STATE(3481)] = 134310, - [SMALL_STATE(3482)] = 134325, - [SMALL_STATE(3483)] = 134350, - [SMALL_STATE(3484)] = 134373, - [SMALL_STATE(3485)] = 134398, - [SMALL_STATE(3486)] = 134423, - [SMALL_STATE(3487)] = 134440, - [SMALL_STATE(3488)] = 134465, - [SMALL_STATE(3489)] = 134490, - [SMALL_STATE(3490)] = 134507, - [SMALL_STATE(3491)] = 134532, - [SMALL_STATE(3492)] = 134553, - [SMALL_STATE(3493)] = 134572, - [SMALL_STATE(3494)] = 134597, - [SMALL_STATE(3495)] = 134612, - [SMALL_STATE(3496)] = 134631, - [SMALL_STATE(3497)] = 134652, - [SMALL_STATE(3498)] = 134675, - [SMALL_STATE(3499)] = 134690, - [SMALL_STATE(3500)] = 134713, - [SMALL_STATE(3501)] = 134734, - [SMALL_STATE(3502)] = 134763, - [SMALL_STATE(3503)] = 134786, - [SMALL_STATE(3504)] = 134815, - [SMALL_STATE(3505)] = 134844, - [SMALL_STATE(3506)] = 134867, - [SMALL_STATE(3507)] = 134896, - [SMALL_STATE(3508)] = 134921, - [SMALL_STATE(3509)] = 134944, - [SMALL_STATE(3510)] = 134967, - [SMALL_STATE(3511)] = 134990, - [SMALL_STATE(3512)] = 135019, - [SMALL_STATE(3513)] = 135045, - [SMALL_STATE(3514)] = 135063, - [SMALL_STATE(3515)] = 135089, - [SMALL_STATE(3516)] = 135111, - [SMALL_STATE(3517)] = 135133, - [SMALL_STATE(3518)] = 135155, - [SMALL_STATE(3519)] = 135181, - [SMALL_STATE(3520)] = 135203, - [SMALL_STATE(3521)] = 135225, - [SMALL_STATE(3522)] = 135251, - [SMALL_STATE(3523)] = 135273, - [SMALL_STATE(3524)] = 135295, - [SMALL_STATE(3525)] = 135317, - [SMALL_STATE(3526)] = 135339, - [SMALL_STATE(3527)] = 135361, - [SMALL_STATE(3528)] = 135383, - [SMALL_STATE(3529)] = 135409, - [SMALL_STATE(3530)] = 135431, - [SMALL_STATE(3531)] = 135449, - [SMALL_STATE(3532)] = 135471, - [SMALL_STATE(3533)] = 135493, - [SMALL_STATE(3534)] = 135519, - [SMALL_STATE(3535)] = 135533, - [SMALL_STATE(3536)] = 135547, - [SMALL_STATE(3537)] = 135569, - [SMALL_STATE(3538)] = 135591, - [SMALL_STATE(3539)] = 135613, - [SMALL_STATE(3540)] = 135635, - [SMALL_STATE(3541)] = 135649, - [SMALL_STATE(3542)] = 135675, - [SMALL_STATE(3543)] = 135697, - [SMALL_STATE(3544)] = 135719, - [SMALL_STATE(3545)] = 135745, - [SMALL_STATE(3546)] = 135771, - [SMALL_STATE(3547)] = 135797, - [SMALL_STATE(3548)] = 135823, - [SMALL_STATE(3549)] = 135849, - [SMALL_STATE(3550)] = 135871, - [SMALL_STATE(3551)] = 135893, - [SMALL_STATE(3552)] = 135915, - [SMALL_STATE(3553)] = 135941, - [SMALL_STATE(3554)] = 135967, - [SMALL_STATE(3555)] = 135989, - [SMALL_STATE(3556)] = 136011, - [SMALL_STATE(3557)] = 136037, - [SMALL_STATE(3558)] = 136059, - [SMALL_STATE(3559)] = 136081, - [SMALL_STATE(3560)] = 136103, - [SMALL_STATE(3561)] = 136125, - [SMALL_STATE(3562)] = 136151, - [SMALL_STATE(3563)] = 136177, - [SMALL_STATE(3564)] = 136203, - [SMALL_STATE(3565)] = 136225, - [SMALL_STATE(3566)] = 136247, - [SMALL_STATE(3567)] = 136273, - [SMALL_STATE(3568)] = 136295, - [SMALL_STATE(3569)] = 136317, - [SMALL_STATE(3570)] = 136343, - [SMALL_STATE(3571)] = 136365, - [SMALL_STATE(3572)] = 136381, - [SMALL_STATE(3573)] = 136407, - [SMALL_STATE(3574)] = 136429, - [SMALL_STATE(3575)] = 136455, - [SMALL_STATE(3576)] = 136481, - [SMALL_STATE(3577)] = 136507, - [SMALL_STATE(3578)] = 136529, - [SMALL_STATE(3579)] = 136551, - [SMALL_STATE(3580)] = 136573, - [SMALL_STATE(3581)] = 136587, - [SMALL_STATE(3582)] = 136609, - [SMALL_STATE(3583)] = 136635, - [SMALL_STATE(3584)] = 136649, - [SMALL_STATE(3585)] = 136663, - [SMALL_STATE(3586)] = 136677, - [SMALL_STATE(3587)] = 136699, - [SMALL_STATE(3588)] = 136721, - [SMALL_STATE(3589)] = 136743, - [SMALL_STATE(3590)] = 136765, - [SMALL_STATE(3591)] = 136787, - [SMALL_STATE(3592)] = 136809, - [SMALL_STATE(3593)] = 136835, - [SMALL_STATE(3594)] = 136857, - [SMALL_STATE(3595)] = 136883, - [SMALL_STATE(3596)] = 136905, - [SMALL_STATE(3597)] = 136931, - [SMALL_STATE(3598)] = 136957, - [SMALL_STATE(3599)] = 136979, - [SMALL_STATE(3600)] = 137005, - [SMALL_STATE(3601)] = 137031, - [SMALL_STATE(3602)] = 137049, - [SMALL_STATE(3603)] = 137067, - [SMALL_STATE(3604)] = 137089, - [SMALL_STATE(3605)] = 137111, - [SMALL_STATE(3606)] = 137137, - [SMALL_STATE(3607)] = 137151, - [SMALL_STATE(3608)] = 137173, - [SMALL_STATE(3609)] = 137199, - [SMALL_STATE(3610)] = 137221, - [SMALL_STATE(3611)] = 137243, - [SMALL_STATE(3612)] = 137257, - [SMALL_STATE(3613)] = 137271, - [SMALL_STATE(3614)] = 137295, - [SMALL_STATE(3615)] = 137309, - [SMALL_STATE(3616)] = 137327, - [SMALL_STATE(3617)] = 137353, - [SMALL_STATE(3618)] = 137379, - [SMALL_STATE(3619)] = 137405, - [SMALL_STATE(3620)] = 137427, - [SMALL_STATE(3621)] = 137449, - [SMALL_STATE(3622)] = 137473, - [SMALL_STATE(3623)] = 137499, - [SMALL_STATE(3624)] = 137525, - [SMALL_STATE(3625)] = 137551, - [SMALL_STATE(3626)] = 137577, - [SMALL_STATE(3627)] = 137599, - [SMALL_STATE(3628)] = 137621, - [SMALL_STATE(3629)] = 137643, - [SMALL_STATE(3630)] = 137669, - [SMALL_STATE(3631)] = 137695, - [SMALL_STATE(3632)] = 137721, - [SMALL_STATE(3633)] = 137743, - [SMALL_STATE(3634)] = 137769, - [SMALL_STATE(3635)] = 137795, - [SMALL_STATE(3636)] = 137817, - [SMALL_STATE(3637)] = 137839, - [SMALL_STATE(3638)] = 137865, - [SMALL_STATE(3639)] = 137887, - [SMALL_STATE(3640)] = 137905, - [SMALL_STATE(3641)] = 137927, - [SMALL_STATE(3642)] = 137945, - [SMALL_STATE(3643)] = 137971, - [SMALL_STATE(3644)] = 137989, - [SMALL_STATE(3645)] = 138005, - [SMALL_STATE(3646)] = 138027, - [SMALL_STATE(3647)] = 138043, - [SMALL_STATE(3648)] = 138065, - [SMALL_STATE(3649)] = 138085, - [SMALL_STATE(3650)] = 138101, - [SMALL_STATE(3651)] = 138123, - [SMALL_STATE(3652)] = 138145, - [SMALL_STATE(3653)] = 138165, - [SMALL_STATE(3654)] = 138185, - [SMALL_STATE(3655)] = 138205, - [SMALL_STATE(3656)] = 138225, - [SMALL_STATE(3657)] = 138251, - [SMALL_STATE(3658)] = 138273, - [SMALL_STATE(3659)] = 138293, - [SMALL_STATE(3660)] = 138319, - [SMALL_STATE(3661)] = 138333, - [SMALL_STATE(3662)] = 138355, - [SMALL_STATE(3663)] = 138381, - [SMALL_STATE(3664)] = 138403, - [SMALL_STATE(3665)] = 138425, - [SMALL_STATE(3666)] = 138445, - [SMALL_STATE(3667)] = 138467, - [SMALL_STATE(3668)] = 138489, - [SMALL_STATE(3669)] = 138511, - [SMALL_STATE(3670)] = 138533, - [SMALL_STATE(3671)] = 138551, - [SMALL_STATE(3672)] = 138569, - [SMALL_STATE(3673)] = 138587, - [SMALL_STATE(3674)] = 138605, - [SMALL_STATE(3675)] = 138631, - [SMALL_STATE(3676)] = 138653, - [SMALL_STATE(3677)] = 138675, - [SMALL_STATE(3678)] = 138697, - [SMALL_STATE(3679)] = 138719, - [SMALL_STATE(3680)] = 138741, - [SMALL_STATE(3681)] = 138763, - [SMALL_STATE(3682)] = 138781, - [SMALL_STATE(3683)] = 138799, - [SMALL_STATE(3684)] = 138817, - [SMALL_STATE(3685)] = 138835, - [SMALL_STATE(3686)] = 138857, - [SMALL_STATE(3687)] = 138875, - [SMALL_STATE(3688)] = 138893, - [SMALL_STATE(3689)] = 138915, - [SMALL_STATE(3690)] = 138933, - [SMALL_STATE(3691)] = 138951, - [SMALL_STATE(3692)] = 138969, - [SMALL_STATE(3693)] = 138987, - [SMALL_STATE(3694)] = 139005, - [SMALL_STATE(3695)] = 139027, - [SMALL_STATE(3696)] = 139045, - [SMALL_STATE(3697)] = 139063, - [SMALL_STATE(3698)] = 139081, - [SMALL_STATE(3699)] = 139099, - [SMALL_STATE(3700)] = 139121, - [SMALL_STATE(3701)] = 139139, - [SMALL_STATE(3702)] = 139161, - [SMALL_STATE(3703)] = 139187, - [SMALL_STATE(3704)] = 139205, - [SMALL_STATE(3705)] = 139219, - [SMALL_STATE(3706)] = 139241, - [SMALL_STATE(3707)] = 139263, - [SMALL_STATE(3708)] = 139285, - [SMALL_STATE(3709)] = 139307, - [SMALL_STATE(3710)] = 139329, - [SMALL_STATE(3711)] = 139351, - [SMALL_STATE(3712)] = 139373, - [SMALL_STATE(3713)] = 139395, - [SMALL_STATE(3714)] = 139417, - [SMALL_STATE(3715)] = 139431, - [SMALL_STATE(3716)] = 139453, - [SMALL_STATE(3717)] = 139475, - [SMALL_STATE(3718)] = 139497, - [SMALL_STATE(3719)] = 139519, - [SMALL_STATE(3720)] = 139541, - [SMALL_STATE(3721)] = 139563, - [SMALL_STATE(3722)] = 139589, - [SMALL_STATE(3723)] = 139603, - [SMALL_STATE(3724)] = 139629, - [SMALL_STATE(3725)] = 139655, - [SMALL_STATE(3726)] = 139681, - [SMALL_STATE(3727)] = 139703, - [SMALL_STATE(3728)] = 139719, - [SMALL_STATE(3729)] = 139735, - [SMALL_STATE(3730)] = 139755, - [SMALL_STATE(3731)] = 139771, - [SMALL_STATE(3732)] = 139785, - [SMALL_STATE(3733)] = 139807, - [SMALL_STATE(3734)] = 139829, - [SMALL_STATE(3735)] = 139851, - [SMALL_STATE(3736)] = 139873, - [SMALL_STATE(3737)] = 139895, - [SMALL_STATE(3738)] = 139917, - [SMALL_STATE(3739)] = 139943, - [SMALL_STATE(3740)] = 139959, - [SMALL_STATE(3741)] = 139985, - [SMALL_STATE(3742)] = 140007, - [SMALL_STATE(3743)] = 140029, - [SMALL_STATE(3744)] = 140051, - [SMALL_STATE(3745)] = 140073, - [SMALL_STATE(3746)] = 140095, - [SMALL_STATE(3747)] = 140117, - [SMALL_STATE(3748)] = 140139, - [SMALL_STATE(3749)] = 140161, - [SMALL_STATE(3750)] = 140183, - [SMALL_STATE(3751)] = 140205, - [SMALL_STATE(3752)] = 140227, - [SMALL_STATE(3753)] = 140249, - [SMALL_STATE(3754)] = 140271, - [SMALL_STATE(3755)] = 140293, - [SMALL_STATE(3756)] = 140316, - [SMALL_STATE(3757)] = 140339, - [SMALL_STATE(3758)] = 140356, - [SMALL_STATE(3759)] = 140373, - [SMALL_STATE(3760)] = 140390, - [SMALL_STATE(3761)] = 140413, - [SMALL_STATE(3762)] = 140436, - [SMALL_STATE(3763)] = 140455, - [SMALL_STATE(3764)] = 140478, - [SMALL_STATE(3765)] = 140495, - [SMALL_STATE(3766)] = 140512, - [SMALL_STATE(3767)] = 140535, - [SMALL_STATE(3768)] = 140552, - [SMALL_STATE(3769)] = 140569, - [SMALL_STATE(3770)] = 140588, - [SMALL_STATE(3771)] = 140611, - [SMALL_STATE(3772)] = 140634, - [SMALL_STATE(3773)] = 140651, - [SMALL_STATE(3774)] = 140674, - [SMALL_STATE(3775)] = 140691, - [SMALL_STATE(3776)] = 140708, - [SMALL_STATE(3777)] = 140723, - [SMALL_STATE(3778)] = 140742, - [SMALL_STATE(3779)] = 140759, - [SMALL_STATE(3780)] = 140774, - [SMALL_STATE(3781)] = 140791, - [SMALL_STATE(3782)] = 140814, - [SMALL_STATE(3783)] = 140831, - [SMALL_STATE(3784)] = 140850, - [SMALL_STATE(3785)] = 140873, - [SMALL_STATE(3786)] = 140890, - [SMALL_STATE(3787)] = 140907, - [SMALL_STATE(3788)] = 140926, - [SMALL_STATE(3789)] = 140939, - [SMALL_STATE(3790)] = 140952, - [SMALL_STATE(3791)] = 140969, - [SMALL_STATE(3792)] = 140992, - [SMALL_STATE(3793)] = 141009, - [SMALL_STATE(3794)] = 141032, - [SMALL_STATE(3795)] = 141055, - [SMALL_STATE(3796)] = 141068, - [SMALL_STATE(3797)] = 141085, - [SMALL_STATE(3798)] = 141102, - [SMALL_STATE(3799)] = 141115, - [SMALL_STATE(3800)] = 141138, - [SMALL_STATE(3801)] = 141161, - [SMALL_STATE(3802)] = 141174, - [SMALL_STATE(3803)] = 141197, - [SMALL_STATE(3804)] = 141220, - [SMALL_STATE(3805)] = 141237, - [SMALL_STATE(3806)] = 141254, - [SMALL_STATE(3807)] = 141267, - [SMALL_STATE(3808)] = 141290, - [SMALL_STATE(3809)] = 141313, - [SMALL_STATE(3810)] = 141332, - [SMALL_STATE(3811)] = 141349, - [SMALL_STATE(3812)] = 141368, - [SMALL_STATE(3813)] = 141387, - [SMALL_STATE(3814)] = 141404, - [SMALL_STATE(3815)] = 141423, - [SMALL_STATE(3816)] = 141440, - [SMALL_STATE(3817)] = 141453, - [SMALL_STATE(3818)] = 141470, - [SMALL_STATE(3819)] = 141493, - [SMALL_STATE(3820)] = 141510, - [SMALL_STATE(3821)] = 141527, - [SMALL_STATE(3822)] = 141550, - [SMALL_STATE(3823)] = 141567, - [SMALL_STATE(3824)] = 141590, - [SMALL_STATE(3825)] = 141607, - [SMALL_STATE(3826)] = 141620, - [SMALL_STATE(3827)] = 141643, - [SMALL_STATE(3828)] = 141660, - [SMALL_STATE(3829)] = 141677, - [SMALL_STATE(3830)] = 141694, - [SMALL_STATE(3831)] = 141715, - [SMALL_STATE(3832)] = 141732, - [SMALL_STATE(3833)] = 141749, - [SMALL_STATE(3834)] = 141772, - [SMALL_STATE(3835)] = 141789, - [SMALL_STATE(3836)] = 141806, - [SMALL_STATE(3837)] = 141823, - [SMALL_STATE(3838)] = 141836, - [SMALL_STATE(3839)] = 141859, - [SMALL_STATE(3840)] = 141876, - [SMALL_STATE(3841)] = 141895, - [SMALL_STATE(3842)] = 141918, - [SMALL_STATE(3843)] = 141935, - [SMALL_STATE(3844)] = 141958, - [SMALL_STATE(3845)] = 141975, - [SMALL_STATE(3846)] = 141994, - [SMALL_STATE(3847)] = 142013, - [SMALL_STATE(3848)] = 142036, - [SMALL_STATE(3849)] = 142059, - [SMALL_STATE(3850)] = 142078, - [SMALL_STATE(3851)] = 142095, - [SMALL_STATE(3852)] = 142118, - [SMALL_STATE(3853)] = 142131, - [SMALL_STATE(3854)] = 142144, - [SMALL_STATE(3855)] = 142157, - [SMALL_STATE(3856)] = 142176, - [SMALL_STATE(3857)] = 142195, - [SMALL_STATE(3858)] = 142218, - [SMALL_STATE(3859)] = 142231, - [SMALL_STATE(3860)] = 142254, - [SMALL_STATE(3861)] = 142277, - [SMALL_STATE(3862)] = 142300, - [SMALL_STATE(3863)] = 142317, - [SMALL_STATE(3864)] = 142334, - [SMALL_STATE(3865)] = 142357, - [SMALL_STATE(3866)] = 142376, - [SMALL_STATE(3867)] = 142399, - [SMALL_STATE(3868)] = 142416, - [SMALL_STATE(3869)] = 142439, - [SMALL_STATE(3870)] = 142456, - [SMALL_STATE(3871)] = 142479, - [SMALL_STATE(3872)] = 142502, - [SMALL_STATE(3873)] = 142525, - [SMALL_STATE(3874)] = 142542, - [SMALL_STATE(3875)] = 142559, - [SMALL_STATE(3876)] = 142582, - [SMALL_STATE(3877)] = 142605, - [SMALL_STATE(3878)] = 142628, - [SMALL_STATE(3879)] = 142651, - [SMALL_STATE(3880)] = 142668, - [SMALL_STATE(3881)] = 142691, - [SMALL_STATE(3882)] = 142714, - [SMALL_STATE(3883)] = 142729, - [SMALL_STATE(3884)] = 142748, - [SMALL_STATE(3885)] = 142771, - [SMALL_STATE(3886)] = 142786, - [SMALL_STATE(3887)] = 142809, - [SMALL_STATE(3888)] = 142822, - [SMALL_STATE(3889)] = 142845, - [SMALL_STATE(3890)] = 142868, - [SMALL_STATE(3891)] = 142891, - [SMALL_STATE(3892)] = 142914, - [SMALL_STATE(3893)] = 142933, - [SMALL_STATE(3894)] = 142950, - [SMALL_STATE(3895)] = 142969, - [SMALL_STATE(3896)] = 142992, - [SMALL_STATE(3897)] = 143015, - [SMALL_STATE(3898)] = 143038, - [SMALL_STATE(3899)] = 143057, - [SMALL_STATE(3900)] = 143074, - [SMALL_STATE(3901)] = 143097, - [SMALL_STATE(3902)] = 143120, - [SMALL_STATE(3903)] = 143141, - [SMALL_STATE(3904)] = 143162, - [SMALL_STATE(3905)] = 143185, - [SMALL_STATE(3906)] = 143204, - [SMALL_STATE(3907)] = 143221, - [SMALL_STATE(3908)] = 143237, - [SMALL_STATE(3909)] = 143253, - [SMALL_STATE(3910)] = 143271, - [SMALL_STATE(3911)] = 143287, - [SMALL_STATE(3912)] = 143303, - [SMALL_STATE(3913)] = 143315, - [SMALL_STATE(3914)] = 143331, - [SMALL_STATE(3915)] = 143347, - [SMALL_STATE(3916)] = 143359, - [SMALL_STATE(3917)] = 143371, - [SMALL_STATE(3918)] = 143383, - [SMALL_STATE(3919)] = 143399, - [SMALL_STATE(3920)] = 143411, - [SMALL_STATE(3921)] = 143423, - [SMALL_STATE(3922)] = 143441, - [SMALL_STATE(3923)] = 143457, - [SMALL_STATE(3924)] = 143473, - [SMALL_STATE(3925)] = 143489, - [SMALL_STATE(3926)] = 143501, - [SMALL_STATE(3927)] = 143513, - [SMALL_STATE(3928)] = 143529, - [SMALL_STATE(3929)] = 143541, - [SMALL_STATE(3930)] = 143557, - [SMALL_STATE(3931)] = 143573, - [SMALL_STATE(3932)] = 143593, - [SMALL_STATE(3933)] = 143613, - [SMALL_STATE(3934)] = 143629, - [SMALL_STATE(3935)] = 143645, - [SMALL_STATE(3936)] = 143661, - [SMALL_STATE(3937)] = 143679, - [SMALL_STATE(3938)] = 143695, - [SMALL_STATE(3939)] = 143715, - [SMALL_STATE(3940)] = 143731, - [SMALL_STATE(3941)] = 143747, - [SMALL_STATE(3942)] = 143763, - [SMALL_STATE(3943)] = 143779, - [SMALL_STATE(3944)] = 143797, - [SMALL_STATE(3945)] = 143815, - [SMALL_STATE(3946)] = 143827, - [SMALL_STATE(3947)] = 143847, - [SMALL_STATE(3948)] = 143859, - [SMALL_STATE(3949)] = 143877, - [SMALL_STATE(3950)] = 143889, - [SMALL_STATE(3951)] = 143907, - [SMALL_STATE(3952)] = 143927, - [SMALL_STATE(3953)] = 143943, - [SMALL_STATE(3954)] = 143959, - [SMALL_STATE(3955)] = 143975, - [SMALL_STATE(3956)] = 143991, - [SMALL_STATE(3957)] = 144007, - [SMALL_STATE(3958)] = 144027, - [SMALL_STATE(3959)] = 144043, - [SMALL_STATE(3960)] = 144061, - [SMALL_STATE(3961)] = 144073, - [SMALL_STATE(3962)] = 144093, - [SMALL_STATE(3963)] = 144107, - [SMALL_STATE(3964)] = 144125, - [SMALL_STATE(3965)] = 144145, - [SMALL_STATE(3966)] = 144165, - [SMALL_STATE(3967)] = 144181, - [SMALL_STATE(3968)] = 144201, - [SMALL_STATE(3969)] = 144213, - [SMALL_STATE(3970)] = 144229, - [SMALL_STATE(3971)] = 144245, - [SMALL_STATE(3972)] = 144257, - [SMALL_STATE(3973)] = 144273, - [SMALL_STATE(3974)] = 144293, - [SMALL_STATE(3975)] = 144309, - [SMALL_STATE(3976)] = 144323, - [SMALL_STATE(3977)] = 144337, - [SMALL_STATE(3978)] = 144353, - [SMALL_STATE(3979)] = 144373, - [SMALL_STATE(3980)] = 144391, - [SMALL_STATE(3981)] = 144407, - [SMALL_STATE(3982)] = 144421, - [SMALL_STATE(3983)] = 144439, - [SMALL_STATE(3984)] = 144459, - [SMALL_STATE(3985)] = 144475, - [SMALL_STATE(3986)] = 144495, - [SMALL_STATE(3987)] = 144515, - [SMALL_STATE(3988)] = 144535, - [SMALL_STATE(3989)] = 144547, - [SMALL_STATE(3990)] = 144563, - [SMALL_STATE(3991)] = 144579, - [SMALL_STATE(3992)] = 144595, - [SMALL_STATE(3993)] = 144607, - [SMALL_STATE(3994)] = 144623, - [SMALL_STATE(3995)] = 144635, - [SMALL_STATE(3996)] = 144647, - [SMALL_STATE(3997)] = 144659, - [SMALL_STATE(3998)] = 144671, - [SMALL_STATE(3999)] = 144687, - [SMALL_STATE(4000)] = 144707, - [SMALL_STATE(4001)] = 144723, - [SMALL_STATE(4002)] = 144743, - [SMALL_STATE(4003)] = 144759, - [SMALL_STATE(4004)] = 144775, - [SMALL_STATE(4005)] = 144791, - [SMALL_STATE(4006)] = 144809, - [SMALL_STATE(4007)] = 144825, - [SMALL_STATE(4008)] = 144841, - [SMALL_STATE(4009)] = 144857, - [SMALL_STATE(4010)] = 144873, - [SMALL_STATE(4011)] = 144893, - [SMALL_STATE(4012)] = 144913, - [SMALL_STATE(4013)] = 144933, - [SMALL_STATE(4014)] = 144951, - [SMALL_STATE(4015)] = 144967, - [SMALL_STATE(4016)] = 144987, - [SMALL_STATE(4017)] = 145007, - [SMALL_STATE(4018)] = 145027, - [SMALL_STATE(4019)] = 145043, - [SMALL_STATE(4020)] = 145059, - [SMALL_STATE(4021)] = 145075, - [SMALL_STATE(4022)] = 145093, - [SMALL_STATE(4023)] = 145109, - [SMALL_STATE(4024)] = 145125, - [SMALL_STATE(4025)] = 145145, - [SMALL_STATE(4026)] = 145161, - [SMALL_STATE(4027)] = 145177, - [SMALL_STATE(4028)] = 145189, - [SMALL_STATE(4029)] = 145205, - [SMALL_STATE(4030)] = 145221, - [SMALL_STATE(4031)] = 145241, - [SMALL_STATE(4032)] = 145257, - [SMALL_STATE(4033)] = 145269, - [SMALL_STATE(4034)] = 145281, - [SMALL_STATE(4035)] = 145301, - [SMALL_STATE(4036)] = 145313, - [SMALL_STATE(4037)] = 145325, - [SMALL_STATE(4038)] = 145337, - [SMALL_STATE(4039)] = 145349, - [SMALL_STATE(4040)] = 145367, - [SMALL_STATE(4041)] = 145383, - [SMALL_STATE(4042)] = 145395, - [SMALL_STATE(4043)] = 145407, - [SMALL_STATE(4044)] = 145423, - [SMALL_STATE(4045)] = 145435, - [SMALL_STATE(4046)] = 145447, - [SMALL_STATE(4047)] = 145459, - [SMALL_STATE(4048)] = 145471, - [SMALL_STATE(4049)] = 145487, - [SMALL_STATE(4050)] = 145505, - [SMALL_STATE(4051)] = 145521, - [SMALL_STATE(4052)] = 145533, - [SMALL_STATE(4053)] = 145545, - [SMALL_STATE(4054)] = 145563, - [SMALL_STATE(4055)] = 145579, - [SMALL_STATE(4056)] = 145595, - [SMALL_STATE(4057)] = 145607, - [SMALL_STATE(4058)] = 145623, - [SMALL_STATE(4059)] = 145635, - [SMALL_STATE(4060)] = 145651, - [SMALL_STATE(4061)] = 145663, - [SMALL_STATE(4062)] = 145675, - [SMALL_STATE(4063)] = 145687, - [SMALL_STATE(4064)] = 145699, - [SMALL_STATE(4065)] = 145711, - [SMALL_STATE(4066)] = 145723, - [SMALL_STATE(4067)] = 145735, - [SMALL_STATE(4068)] = 145747, - [SMALL_STATE(4069)] = 145759, - [SMALL_STATE(4070)] = 145771, - [SMALL_STATE(4071)] = 145783, - [SMALL_STATE(4072)] = 145795, - [SMALL_STATE(4073)] = 145807, - [SMALL_STATE(4074)] = 145827, - [SMALL_STATE(4075)] = 145839, - [SMALL_STATE(4076)] = 145851, - [SMALL_STATE(4077)] = 145863, - [SMALL_STATE(4078)] = 145875, - [SMALL_STATE(4079)] = 145887, - [SMALL_STATE(4080)] = 145903, - [SMALL_STATE(4081)] = 145921, - [SMALL_STATE(4082)] = 145937, - [SMALL_STATE(4083)] = 145953, - [SMALL_STATE(4084)] = 145969, - [SMALL_STATE(4085)] = 145987, - [SMALL_STATE(4086)] = 146007, - [SMALL_STATE(4087)] = 146019, - [SMALL_STATE(4088)] = 146031, - [SMALL_STATE(4089)] = 146051, - [SMALL_STATE(4090)] = 146067, - [SMALL_STATE(4091)] = 146079, - [SMALL_STATE(4092)] = 146091, - [SMALL_STATE(4093)] = 146103, - [SMALL_STATE(4094)] = 146115, - [SMALL_STATE(4095)] = 146127, - [SMALL_STATE(4096)] = 146147, - [SMALL_STATE(4097)] = 146159, - [SMALL_STATE(4098)] = 146179, - [SMALL_STATE(4099)] = 146195, - [SMALL_STATE(4100)] = 146207, - [SMALL_STATE(4101)] = 146221, - [SMALL_STATE(4102)] = 146237, - [SMALL_STATE(4103)] = 146253, - [SMALL_STATE(4104)] = 146265, - [SMALL_STATE(4105)] = 146277, - [SMALL_STATE(4106)] = 146293, - [SMALL_STATE(4107)] = 146309, - [SMALL_STATE(4108)] = 146329, - [SMALL_STATE(4109)] = 146341, - [SMALL_STATE(4110)] = 146353, - [SMALL_STATE(4111)] = 146371, - [SMALL_STATE(4112)] = 146387, - [SMALL_STATE(4113)] = 146403, - [SMALL_STATE(4114)] = 146419, - [SMALL_STATE(4115)] = 146435, - [SMALL_STATE(4116)] = 146453, - [SMALL_STATE(4117)] = 146471, - [SMALL_STATE(4118)] = 146491, - [SMALL_STATE(4119)] = 146507, - [SMALL_STATE(4120)] = 146519, - [SMALL_STATE(4121)] = 146535, - [SMALL_STATE(4122)] = 146551, - [SMALL_STATE(4123)] = 146567, - [SMALL_STATE(4124)] = 146587, - [SMALL_STATE(4125)] = 146603, - [SMALL_STATE(4126)] = 146623, - [SMALL_STATE(4127)] = 146635, - [SMALL_STATE(4128)] = 146647, - [SMALL_STATE(4129)] = 146659, - [SMALL_STATE(4130)] = 146671, - [SMALL_STATE(4131)] = 146683, - [SMALL_STATE(4132)] = 146701, - [SMALL_STATE(4133)] = 146717, - [SMALL_STATE(4134)] = 146737, - [SMALL_STATE(4135)] = 146757, - [SMALL_STATE(4136)] = 146777, - [SMALL_STATE(4137)] = 146793, - [SMALL_STATE(4138)] = 146813, - [SMALL_STATE(4139)] = 146829, - [SMALL_STATE(4140)] = 146845, - [SMALL_STATE(4141)] = 146857, - [SMALL_STATE(4142)] = 146877, - [SMALL_STATE(4143)] = 146897, - [SMALL_STATE(4144)] = 146911, - [SMALL_STATE(4145)] = 146931, - [SMALL_STATE(4146)] = 146947, - [SMALL_STATE(4147)] = 146963, - [SMALL_STATE(4148)] = 146981, - [SMALL_STATE(4149)] = 146993, - [SMALL_STATE(4150)] = 147005, - [SMALL_STATE(4151)] = 147021, - [SMALL_STATE(4152)] = 147033, - [SMALL_STATE(4153)] = 147045, - [SMALL_STATE(4154)] = 147057, - [SMALL_STATE(4155)] = 147069, - [SMALL_STATE(4156)] = 147081, - [SMALL_STATE(4157)] = 147093, - [SMALL_STATE(4158)] = 147109, - [SMALL_STATE(4159)] = 147125, - [SMALL_STATE(4160)] = 147145, - [SMALL_STATE(4161)] = 147157, - [SMALL_STATE(4162)] = 147177, - [SMALL_STATE(4163)] = 147193, - [SMALL_STATE(4164)] = 147209, - [SMALL_STATE(4165)] = 147225, - [SMALL_STATE(4166)] = 147245, - [SMALL_STATE(4167)] = 147257, - [SMALL_STATE(4168)] = 147277, - [SMALL_STATE(4169)] = 147297, - [SMALL_STATE(4170)] = 147317, - [SMALL_STATE(4171)] = 147329, - [SMALL_STATE(4172)] = 147341, - [SMALL_STATE(4173)] = 147361, - [SMALL_STATE(4174)] = 147373, - [SMALL_STATE(4175)] = 147389, - [SMALL_STATE(4176)] = 147405, - [SMALL_STATE(4177)] = 147421, - [SMALL_STATE(4178)] = 147439, - [SMALL_STATE(4179)] = 147459, - [SMALL_STATE(4180)] = 147475, - [SMALL_STATE(4181)] = 147495, - [SMALL_STATE(4182)] = 147511, - [SMALL_STATE(4183)] = 147527, - [SMALL_STATE(4184)] = 147543, - [SMALL_STATE(4185)] = 147559, - [SMALL_STATE(4186)] = 147577, - [SMALL_STATE(4187)] = 147593, - [SMALL_STATE(4188)] = 147609, - [SMALL_STATE(4189)] = 147629, - [SMALL_STATE(4190)] = 147645, - [SMALL_STATE(4191)] = 147665, - [SMALL_STATE(4192)] = 147685, - [SMALL_STATE(4193)] = 147701, - [SMALL_STATE(4194)] = 147721, - [SMALL_STATE(4195)] = 147741, - [SMALL_STATE(4196)] = 147757, - [SMALL_STATE(4197)] = 147777, - [SMALL_STATE(4198)] = 147795, - [SMALL_STATE(4199)] = 147807, - [SMALL_STATE(4200)] = 147819, - [SMALL_STATE(4201)] = 147831, - [SMALL_STATE(4202)] = 147843, - [SMALL_STATE(4203)] = 147863, - [SMALL_STATE(4204)] = 147875, - [SMALL_STATE(4205)] = 147891, - [SMALL_STATE(4206)] = 147907, - [SMALL_STATE(4207)] = 147927, - [SMALL_STATE(4208)] = 147939, - [SMALL_STATE(4209)] = 147951, - [SMALL_STATE(4210)] = 147967, - [SMALL_STATE(4211)] = 147983, - [SMALL_STATE(4212)] = 148003, - [SMALL_STATE(4213)] = 148015, - [SMALL_STATE(4214)] = 148027, - [SMALL_STATE(4215)] = 148039, - [SMALL_STATE(4216)] = 148051, - [SMALL_STATE(4217)] = 148063, - [SMALL_STATE(4218)] = 148079, - [SMALL_STATE(4219)] = 148095, - [SMALL_STATE(4220)] = 148111, - [SMALL_STATE(4221)] = 148127, - [SMALL_STATE(4222)] = 148143, - [SMALL_STATE(4223)] = 148159, - [SMALL_STATE(4224)] = 148179, - [SMALL_STATE(4225)] = 148195, - [SMALL_STATE(4226)] = 148207, - [SMALL_STATE(4227)] = 148219, - [SMALL_STATE(4228)] = 148231, - [SMALL_STATE(4229)] = 148251, - [SMALL_STATE(4230)] = 148271, - [SMALL_STATE(4231)] = 148291, - [SMALL_STATE(4232)] = 148307, - [SMALL_STATE(4233)] = 148319, - [SMALL_STATE(4234)] = 148335, - [SMALL_STATE(4235)] = 148347, - [SMALL_STATE(4236)] = 148359, - [SMALL_STATE(4237)] = 148379, - [SMALL_STATE(4238)] = 148399, - [SMALL_STATE(4239)] = 148415, - [SMALL_STATE(4240)] = 148431, - [SMALL_STATE(4241)] = 148447, - [SMALL_STATE(4242)] = 148459, - [SMALL_STATE(4243)] = 148471, - [SMALL_STATE(4244)] = 148483, - [SMALL_STATE(4245)] = 148495, - [SMALL_STATE(4246)] = 148507, - [SMALL_STATE(4247)] = 148523, - [SMALL_STATE(4248)] = 148539, - [SMALL_STATE(4249)] = 148551, - [SMALL_STATE(4250)] = 148567, - [SMALL_STATE(4251)] = 148579, - [SMALL_STATE(4252)] = 148591, - [SMALL_STATE(4253)] = 148607, - [SMALL_STATE(4254)] = 148623, - [SMALL_STATE(4255)] = 148639, - [SMALL_STATE(4256)] = 148651, - [SMALL_STATE(4257)] = 148667, - [SMALL_STATE(4258)] = 148683, - [SMALL_STATE(4259)] = 148699, - [SMALL_STATE(4260)] = 148711, - [SMALL_STATE(4261)] = 148723, - [SMALL_STATE(4262)] = 148735, - [SMALL_STATE(4263)] = 148747, - [SMALL_STATE(4264)] = 148763, - [SMALL_STATE(4265)] = 148779, - [SMALL_STATE(4266)] = 148795, - [SMALL_STATE(4267)] = 148811, - [SMALL_STATE(4268)] = 148827, - [SMALL_STATE(4269)] = 148843, - [SMALL_STATE(4270)] = 148859, - [SMALL_STATE(4271)] = 148875, - [SMALL_STATE(4272)] = 148895, - [SMALL_STATE(4273)] = 148907, - [SMALL_STATE(4274)] = 148923, - [SMALL_STATE(4275)] = 148935, - [SMALL_STATE(4276)] = 148955, - [SMALL_STATE(4277)] = 148971, - [SMALL_STATE(4278)] = 148987, - [SMALL_STATE(4279)] = 148999, - [SMALL_STATE(4280)] = 149011, - [SMALL_STATE(4281)] = 149027, - [SMALL_STATE(4282)] = 149039, - [SMALL_STATE(4283)] = 149055, - [SMALL_STATE(4284)] = 149067, - [SMALL_STATE(4285)] = 149079, - [SMALL_STATE(4286)] = 149095, - [SMALL_STATE(4287)] = 149111, - [SMALL_STATE(4288)] = 149127, - [SMALL_STATE(4289)] = 149139, - [SMALL_STATE(4290)] = 149155, - [SMALL_STATE(4291)] = 149171, - [SMALL_STATE(4292)] = 149187, - [SMALL_STATE(4293)] = 149203, - [SMALL_STATE(4294)] = 149219, - [SMALL_STATE(4295)] = 149235, - [SMALL_STATE(4296)] = 149251, - [SMALL_STATE(4297)] = 149269, - [SMALL_STATE(4298)] = 149285, - [SMALL_STATE(4299)] = 149301, - [SMALL_STATE(4300)] = 149317, - [SMALL_STATE(4301)] = 149331, - [SMALL_STATE(4302)] = 149347, - [SMALL_STATE(4303)] = 149359, - [SMALL_STATE(4304)] = 149375, - [SMALL_STATE(4305)] = 149391, - [SMALL_STATE(4306)] = 149407, - [SMALL_STATE(4307)] = 149423, - [SMALL_STATE(4308)] = 149439, - [SMALL_STATE(4309)] = 149455, - [SMALL_STATE(4310)] = 149471, - [SMALL_STATE(4311)] = 149491, - [SMALL_STATE(4312)] = 149511, - [SMALL_STATE(4313)] = 149527, - [SMALL_STATE(4314)] = 149543, - [SMALL_STATE(4315)] = 149555, - [SMALL_STATE(4316)] = 149571, - [SMALL_STATE(4317)] = 149587, - [SMALL_STATE(4318)] = 149603, - [SMALL_STATE(4319)] = 149623, - [SMALL_STATE(4320)] = 149639, - [SMALL_STATE(4321)] = 149651, - [SMALL_STATE(4322)] = 149671, - [SMALL_STATE(4323)] = 149683, - [SMALL_STATE(4324)] = 149703, - [SMALL_STATE(4325)] = 149715, - [SMALL_STATE(4326)] = 149727, - [SMALL_STATE(4327)] = 149739, - [SMALL_STATE(4328)] = 149759, - [SMALL_STATE(4329)] = 149775, - [SMALL_STATE(4330)] = 149793, - [SMALL_STATE(4331)] = 149813, - [SMALL_STATE(4332)] = 149829, - [SMALL_STATE(4333)] = 149845, - [SMALL_STATE(4334)] = 149857, - [SMALL_STATE(4335)] = 149877, - [SMALL_STATE(4336)] = 149889, - [SMALL_STATE(4337)] = 149901, - [SMALL_STATE(4338)] = 149913, - [SMALL_STATE(4339)] = 149933, - [SMALL_STATE(4340)] = 149945, - [SMALL_STATE(4341)] = 149961, - [SMALL_STATE(4342)] = 149977, - [SMALL_STATE(4343)] = 149993, - [SMALL_STATE(4344)] = 150013, - [SMALL_STATE(4345)] = 150033, - [SMALL_STATE(4346)] = 150049, - [SMALL_STATE(4347)] = 150065, - [SMALL_STATE(4348)] = 150085, - [SMALL_STATE(4349)] = 150105, - [SMALL_STATE(4350)] = 150121, - [SMALL_STATE(4351)] = 150133, - [SMALL_STATE(4352)] = 150145, - [SMALL_STATE(4353)] = 150161, - [SMALL_STATE(4354)] = 150177, - [SMALL_STATE(4355)] = 150193, - [SMALL_STATE(4356)] = 150209, - [SMALL_STATE(4357)] = 150225, - [SMALL_STATE(4358)] = 150241, - [SMALL_STATE(4359)] = 150253, - [SMALL_STATE(4360)] = 150273, - [SMALL_STATE(4361)] = 150289, - [SMALL_STATE(4362)] = 150305, - [SMALL_STATE(4363)] = 150321, - [SMALL_STATE(4364)] = 150337, - [SMALL_STATE(4365)] = 150353, - [SMALL_STATE(4366)] = 150369, - [SMALL_STATE(4367)] = 150385, - [SMALL_STATE(4368)] = 150401, - [SMALL_STATE(4369)] = 150417, - [SMALL_STATE(4370)] = 150433, - [SMALL_STATE(4371)] = 150449, - [SMALL_STATE(4372)] = 150465, - [SMALL_STATE(4373)] = 150481, - [SMALL_STATE(4374)] = 150497, - [SMALL_STATE(4375)] = 150513, - [SMALL_STATE(4376)] = 150529, - [SMALL_STATE(4377)] = 150545, - [SMALL_STATE(4378)] = 150565, - [SMALL_STATE(4379)] = 150581, - [SMALL_STATE(4380)] = 150597, - [SMALL_STATE(4381)] = 150613, - [SMALL_STATE(4382)] = 150629, - [SMALL_STATE(4383)] = 150645, - [SMALL_STATE(4384)] = 150661, - [SMALL_STATE(4385)] = 150677, - [SMALL_STATE(4386)] = 150693, - [SMALL_STATE(4387)] = 150709, - [SMALL_STATE(4388)] = 150726, - [SMALL_STATE(4389)] = 150743, - [SMALL_STATE(4390)] = 150760, - [SMALL_STATE(4391)] = 150775, - [SMALL_STATE(4392)] = 150792, - [SMALL_STATE(4393)] = 150809, - [SMALL_STATE(4394)] = 150826, - [SMALL_STATE(4395)] = 150843, - [SMALL_STATE(4396)] = 150860, - [SMALL_STATE(4397)] = 150877, - [SMALL_STATE(4398)] = 150894, - [SMALL_STATE(4399)] = 150911, - [SMALL_STATE(4400)] = 150928, - [SMALL_STATE(4401)] = 150943, - [SMALL_STATE(4402)] = 150956, - [SMALL_STATE(4403)] = 150969, - [SMALL_STATE(4404)] = 150982, - [SMALL_STATE(4405)] = 150999, - [SMALL_STATE(4406)] = 151016, - [SMALL_STATE(4407)] = 151033, - [SMALL_STATE(4408)] = 151048, - [SMALL_STATE(4409)] = 151063, - [SMALL_STATE(4410)] = 151080, - [SMALL_STATE(4411)] = 151097, - [SMALL_STATE(4412)] = 151112, - [SMALL_STATE(4413)] = 151129, - [SMALL_STATE(4414)] = 151146, - [SMALL_STATE(4415)] = 151157, - [SMALL_STATE(4416)] = 151174, - [SMALL_STATE(4417)] = 151191, - [SMALL_STATE(4418)] = 151208, - [SMALL_STATE(4419)] = 151225, - [SMALL_STATE(4420)] = 151238, - [SMALL_STATE(4421)] = 151253, - [SMALL_STATE(4422)] = 151270, - [SMALL_STATE(4423)] = 151287, - [SMALL_STATE(4424)] = 151304, - [SMALL_STATE(4425)] = 151321, - [SMALL_STATE(4426)] = 151336, - [SMALL_STATE(4427)] = 151351, - [SMALL_STATE(4428)] = 151366, - [SMALL_STATE(4429)] = 151383, - [SMALL_STATE(4430)] = 151400, - [SMALL_STATE(4431)] = 151417, - [SMALL_STATE(4432)] = 151434, - [SMALL_STATE(4433)] = 151451, - [SMALL_STATE(4434)] = 151466, - [SMALL_STATE(4435)] = 151481, - [SMALL_STATE(4436)] = 151498, - [SMALL_STATE(4437)] = 151515, - [SMALL_STATE(4438)] = 151532, - [SMALL_STATE(4439)] = 151543, - [SMALL_STATE(4440)] = 151560, - [SMALL_STATE(4441)] = 151575, - [SMALL_STATE(4442)] = 151590, - [SMALL_STATE(4443)] = 151607, - [SMALL_STATE(4444)] = 151622, - [SMALL_STATE(4445)] = 151633, - [SMALL_STATE(4446)] = 151646, - [SMALL_STATE(4447)] = 151663, - [SMALL_STATE(4448)] = 151680, - [SMALL_STATE(4449)] = 151695, - [SMALL_STATE(4450)] = 151712, - [SMALL_STATE(4451)] = 151729, - [SMALL_STATE(4452)] = 151746, - [SMALL_STATE(4453)] = 151761, - [SMALL_STATE(4454)] = 151778, - [SMALL_STATE(4455)] = 151795, - [SMALL_STATE(4456)] = 151812, - [SMALL_STATE(4457)] = 151829, - [SMALL_STATE(4458)] = 151846, - [SMALL_STATE(4459)] = 151861, - [SMALL_STATE(4460)] = 151876, - [SMALL_STATE(4461)] = 151893, - [SMALL_STATE(4462)] = 151908, - [SMALL_STATE(4463)] = 151925, - [SMALL_STATE(4464)] = 151940, - [SMALL_STATE(4465)] = 151957, - [SMALL_STATE(4466)] = 151974, - [SMALL_STATE(4467)] = 151987, - [SMALL_STATE(4468)] = 152004, - [SMALL_STATE(4469)] = 152021, - [SMALL_STATE(4470)] = 152036, - [SMALL_STATE(4471)] = 152053, - [SMALL_STATE(4472)] = 152070, - [SMALL_STATE(4473)] = 152087, - [SMALL_STATE(4474)] = 152104, - [SMALL_STATE(4475)] = 152121, - [SMALL_STATE(4476)] = 152138, - [SMALL_STATE(4477)] = 152153, - [SMALL_STATE(4478)] = 152164, - [SMALL_STATE(4479)] = 152181, - [SMALL_STATE(4480)] = 152198, - [SMALL_STATE(4481)] = 152215, - [SMALL_STATE(4482)] = 152230, - [SMALL_STATE(4483)] = 152247, - [SMALL_STATE(4484)] = 152264, - [SMALL_STATE(4485)] = 152281, - [SMALL_STATE(4486)] = 152298, - [SMALL_STATE(4487)] = 152315, - [SMALL_STATE(4488)] = 152332, - [SMALL_STATE(4489)] = 152349, - [SMALL_STATE(4490)] = 152366, - [SMALL_STATE(4491)] = 152383, - [SMALL_STATE(4492)] = 152400, - [SMALL_STATE(4493)] = 152417, - [SMALL_STATE(4494)] = 152434, - [SMALL_STATE(4495)] = 152451, - [SMALL_STATE(4496)] = 152468, - [SMALL_STATE(4497)] = 152485, - [SMALL_STATE(4498)] = 152502, - [SMALL_STATE(4499)] = 152519, - [SMALL_STATE(4500)] = 152536, - [SMALL_STATE(4501)] = 152553, - [SMALL_STATE(4502)] = 152568, - [SMALL_STATE(4503)] = 152583, - [SMALL_STATE(4504)] = 152600, - [SMALL_STATE(4505)] = 152617, - [SMALL_STATE(4506)] = 152634, - [SMALL_STATE(4507)] = 152651, - [SMALL_STATE(4508)] = 152664, - [SMALL_STATE(4509)] = 152681, - [SMALL_STATE(4510)] = 152696, - [SMALL_STATE(4511)] = 152713, - [SMALL_STATE(4512)] = 152730, - [SMALL_STATE(4513)] = 152747, - [SMALL_STATE(4514)] = 152764, - [SMALL_STATE(4515)] = 152781, - [SMALL_STATE(4516)] = 152798, - [SMALL_STATE(4517)] = 152815, - [SMALL_STATE(4518)] = 152832, - [SMALL_STATE(4519)] = 152849, - [SMALL_STATE(4520)] = 152866, - [SMALL_STATE(4521)] = 152883, - [SMALL_STATE(4522)] = 152898, - [SMALL_STATE(4523)] = 152915, - [SMALL_STATE(4524)] = 152925, - [SMALL_STATE(4525)] = 152939, - [SMALL_STATE(4526)] = 152953, - [SMALL_STATE(4527)] = 152967, - [SMALL_STATE(4528)] = 152977, - [SMALL_STATE(4529)] = 152989, - [SMALL_STATE(4530)] = 153003, - [SMALL_STATE(4531)] = 153017, - [SMALL_STATE(4532)] = 153031, - [SMALL_STATE(4533)] = 153041, - [SMALL_STATE(4534)] = 153051, - [SMALL_STATE(4535)] = 153061, - [SMALL_STATE(4536)] = 153075, - [SMALL_STATE(4537)] = 153089, - [SMALL_STATE(4538)] = 153103, - [SMALL_STATE(4539)] = 153117, - [SMALL_STATE(4540)] = 153131, - [SMALL_STATE(4541)] = 153145, - [SMALL_STATE(4542)] = 153159, - [SMALL_STATE(4543)] = 153169, - [SMALL_STATE(4544)] = 153183, - [SMALL_STATE(4545)] = 153197, - [SMALL_STATE(4546)] = 153211, - [SMALL_STATE(4547)] = 153221, - [SMALL_STATE(4548)] = 153235, - [SMALL_STATE(4549)] = 153249, - [SMALL_STATE(4550)] = 153259, - [SMALL_STATE(4551)] = 153269, - [SMALL_STATE(4552)] = 153279, - [SMALL_STATE(4553)] = 153289, - [SMALL_STATE(4554)] = 153299, - [SMALL_STATE(4555)] = 153313, - [SMALL_STATE(4556)] = 153327, - [SMALL_STATE(4557)] = 153341, - [SMALL_STATE(4558)] = 153351, - [SMALL_STATE(4559)] = 153361, - [SMALL_STATE(4560)] = 153371, - [SMALL_STATE(4561)] = 153385, - [SMALL_STATE(4562)] = 153395, - [SMALL_STATE(4563)] = 153409, - [SMALL_STATE(4564)] = 153423, - [SMALL_STATE(4565)] = 153437, - [SMALL_STATE(4566)] = 153449, - [SMALL_STATE(4567)] = 153459, - [SMALL_STATE(4568)] = 153469, - [SMALL_STATE(4569)] = 153479, - [SMALL_STATE(4570)] = 153489, - [SMALL_STATE(4571)] = 153499, - [SMALL_STATE(4572)] = 153509, - [SMALL_STATE(4573)] = 153519, - [SMALL_STATE(4574)] = 153529, - [SMALL_STATE(4575)] = 153543, - [SMALL_STATE(4576)] = 153553, - [SMALL_STATE(4577)] = 153563, - [SMALL_STATE(4578)] = 153573, - [SMALL_STATE(4579)] = 153583, - [SMALL_STATE(4580)] = 153597, - [SMALL_STATE(4581)] = 153611, - [SMALL_STATE(4582)] = 153625, - [SMALL_STATE(4583)] = 153639, - [SMALL_STATE(4584)] = 153653, - [SMALL_STATE(4585)] = 153663, - [SMALL_STATE(4586)] = 153677, - [SMALL_STATE(4587)] = 153691, - [SMALL_STATE(4588)] = 153703, - [SMALL_STATE(4589)] = 153713, - [SMALL_STATE(4590)] = 153727, - [SMALL_STATE(4591)] = 153741, - [SMALL_STATE(4592)] = 153755, - [SMALL_STATE(4593)] = 153769, - [SMALL_STATE(4594)] = 153783, - [SMALL_STATE(4595)] = 153793, - [SMALL_STATE(4596)] = 153803, - [SMALL_STATE(4597)] = 153813, - [SMALL_STATE(4598)] = 153827, - [SMALL_STATE(4599)] = 153841, - [SMALL_STATE(4600)] = 153855, - [SMALL_STATE(4601)] = 153869, - [SMALL_STATE(4602)] = 153879, - [SMALL_STATE(4603)] = 153893, - [SMALL_STATE(4604)] = 153907, - [SMALL_STATE(4605)] = 153921, - [SMALL_STATE(4606)] = 153935, - [SMALL_STATE(4607)] = 153945, - [SMALL_STATE(4608)] = 153955, - [SMALL_STATE(4609)] = 153967, - [SMALL_STATE(4610)] = 153979, - [SMALL_STATE(4611)] = 153993, - [SMALL_STATE(4612)] = 154007, - [SMALL_STATE(4613)] = 154023, - [SMALL_STATE(4614)] = 154033, - [SMALL_STATE(4615)] = 154043, - [SMALL_STATE(4616)] = 154055, - [SMALL_STATE(4617)] = 154065, - [SMALL_STATE(4618)] = 154079, - [SMALL_STATE(4619)] = 154089, - [SMALL_STATE(4620)] = 154103, - [SMALL_STATE(4621)] = 154113, - [SMALL_STATE(4622)] = 154123, - [SMALL_STATE(4623)] = 154133, - [SMALL_STATE(4624)] = 154143, - [SMALL_STATE(4625)] = 154153, - [SMALL_STATE(4626)] = 154167, - [SMALL_STATE(4627)] = 154177, - [SMALL_STATE(4628)] = 154187, - [SMALL_STATE(4629)] = 154197, - [SMALL_STATE(4630)] = 154213, - [SMALL_STATE(4631)] = 154223, - [SMALL_STATE(4632)] = 154237, - [SMALL_STATE(4633)] = 154247, - [SMALL_STATE(4634)] = 154261, - [SMALL_STATE(4635)] = 154275, - [SMALL_STATE(4636)] = 154285, - [SMALL_STATE(4637)] = 154297, - [SMALL_STATE(4638)] = 154307, - [SMALL_STATE(4639)] = 154321, - [SMALL_STATE(4640)] = 154331, - [SMALL_STATE(4641)] = 154341, - [SMALL_STATE(4642)] = 154355, - [SMALL_STATE(4643)] = 154367, - [SMALL_STATE(4644)] = 154377, - [SMALL_STATE(4645)] = 154391, - [SMALL_STATE(4646)] = 154405, - [SMALL_STATE(4647)] = 154419, - [SMALL_STATE(4648)] = 154429, - [SMALL_STATE(4649)] = 154443, - [SMALL_STATE(4650)] = 154453, - [SMALL_STATE(4651)] = 154467, - [SMALL_STATE(4652)] = 154477, - [SMALL_STATE(4653)] = 154487, - [SMALL_STATE(4654)] = 154501, - [SMALL_STATE(4655)] = 154511, - [SMALL_STATE(4656)] = 154525, - [SMALL_STATE(4657)] = 154535, - [SMALL_STATE(4658)] = 154545, - [SMALL_STATE(4659)] = 154555, - [SMALL_STATE(4660)] = 154569, - [SMALL_STATE(4661)] = 154579, - [SMALL_STATE(4662)] = 154593, - [SMALL_STATE(4663)] = 154603, - [SMALL_STATE(4664)] = 154617, - [SMALL_STATE(4665)] = 154631, - [SMALL_STATE(4666)] = 154641, - [SMALL_STATE(4667)] = 154651, - [SMALL_STATE(4668)] = 154661, - [SMALL_STATE(4669)] = 154675, - [SMALL_STATE(4670)] = 154689, - [SMALL_STATE(4671)] = 154699, - [SMALL_STATE(4672)] = 154711, - [SMALL_STATE(4673)] = 154721, - [SMALL_STATE(4674)] = 154731, - [SMALL_STATE(4675)] = 154745, - [SMALL_STATE(4676)] = 154755, - [SMALL_STATE(4677)] = 154769, - [SMALL_STATE(4678)] = 154779, - [SMALL_STATE(4679)] = 154789, - [SMALL_STATE(4680)] = 154803, - [SMALL_STATE(4681)] = 154813, - [SMALL_STATE(4682)] = 154827, - [SMALL_STATE(4683)] = 154837, - [SMALL_STATE(4684)] = 154851, - [SMALL_STATE(4685)] = 154865, - [SMALL_STATE(4686)] = 154875, - [SMALL_STATE(4687)] = 154885, - [SMALL_STATE(4688)] = 154895, - [SMALL_STATE(4689)] = 154905, - [SMALL_STATE(4690)] = 154919, - [SMALL_STATE(4691)] = 154929, - [SMALL_STATE(4692)] = 154941, - [SMALL_STATE(4693)] = 154955, - [SMALL_STATE(4694)] = 154965, - [SMALL_STATE(4695)] = 154975, - [SMALL_STATE(4696)] = 154989, - [SMALL_STATE(4697)] = 154999, - [SMALL_STATE(4698)] = 155013, - [SMALL_STATE(4699)] = 155023, - [SMALL_STATE(4700)] = 155037, - [SMALL_STATE(4701)] = 155051, - [SMALL_STATE(4702)] = 155061, - [SMALL_STATE(4703)] = 155071, - [SMALL_STATE(4704)] = 155085, - [SMALL_STATE(4705)] = 155095, - [SMALL_STATE(4706)] = 155105, - [SMALL_STATE(4707)] = 155115, - [SMALL_STATE(4708)] = 155125, - [SMALL_STATE(4709)] = 155135, - [SMALL_STATE(4710)] = 155145, - [SMALL_STATE(4711)] = 155155, - [SMALL_STATE(4712)] = 155165, - [SMALL_STATE(4713)] = 155175, - [SMALL_STATE(4714)] = 155185, - [SMALL_STATE(4715)] = 155195, - [SMALL_STATE(4716)] = 155205, - [SMALL_STATE(4717)] = 155215, - [SMALL_STATE(4718)] = 155225, - [SMALL_STATE(4719)] = 155235, - [SMALL_STATE(4720)] = 155245, - [SMALL_STATE(4721)] = 155255, - [SMALL_STATE(4722)] = 155269, - [SMALL_STATE(4723)] = 155279, - [SMALL_STATE(4724)] = 155289, - [SMALL_STATE(4725)] = 155303, - [SMALL_STATE(4726)] = 155313, - [SMALL_STATE(4727)] = 155323, - [SMALL_STATE(4728)] = 155337, - [SMALL_STATE(4729)] = 155347, - [SMALL_STATE(4730)] = 155357, - [SMALL_STATE(4731)] = 155367, - [SMALL_STATE(4732)] = 155377, - [SMALL_STATE(4733)] = 155387, - [SMALL_STATE(4734)] = 155397, - [SMALL_STATE(4735)] = 155407, - [SMALL_STATE(4736)] = 155417, - [SMALL_STATE(4737)] = 155427, - [SMALL_STATE(4738)] = 155437, - [SMALL_STATE(4739)] = 155447, - [SMALL_STATE(4740)] = 155457, - [SMALL_STATE(4741)] = 155467, - [SMALL_STATE(4742)] = 155477, - [SMALL_STATE(4743)] = 155487, - [SMALL_STATE(4744)] = 155497, - [SMALL_STATE(4745)] = 155511, - [SMALL_STATE(4746)] = 155521, - [SMALL_STATE(4747)] = 155531, - [SMALL_STATE(4748)] = 155541, - [SMALL_STATE(4749)] = 155551, - [SMALL_STATE(4750)] = 155561, - [SMALL_STATE(4751)] = 155573, - [SMALL_STATE(4752)] = 155583, - [SMALL_STATE(4753)] = 155593, - [SMALL_STATE(4754)] = 155603, - [SMALL_STATE(4755)] = 155613, - [SMALL_STATE(4756)] = 155623, - [SMALL_STATE(4757)] = 155633, - [SMALL_STATE(4758)] = 155643, - [SMALL_STATE(4759)] = 155653, - [SMALL_STATE(4760)] = 155663, - [SMALL_STATE(4761)] = 155673, - [SMALL_STATE(4762)] = 155687, - [SMALL_STATE(4763)] = 155699, - [SMALL_STATE(4764)] = 155713, - [SMALL_STATE(4765)] = 155723, - [SMALL_STATE(4766)] = 155735, - [SMALL_STATE(4767)] = 155747, - [SMALL_STATE(4768)] = 155757, - [SMALL_STATE(4769)] = 155771, - [SMALL_STATE(4770)] = 155781, - [SMALL_STATE(4771)] = 155791, - [SMALL_STATE(4772)] = 155801, - [SMALL_STATE(4773)] = 155811, - [SMALL_STATE(4774)] = 155821, - [SMALL_STATE(4775)] = 155835, - [SMALL_STATE(4776)] = 155845, - [SMALL_STATE(4777)] = 155855, - [SMALL_STATE(4778)] = 155871, - [SMALL_STATE(4779)] = 155885, - [SMALL_STATE(4780)] = 155899, - [SMALL_STATE(4781)] = 155913, - [SMALL_STATE(4782)] = 155923, - [SMALL_STATE(4783)] = 155933, - [SMALL_STATE(4784)] = 155943, - [SMALL_STATE(4785)] = 155957, - [SMALL_STATE(4786)] = 155967, - [SMALL_STATE(4787)] = 155981, - [SMALL_STATE(4788)] = 155991, - [SMALL_STATE(4789)] = 156001, - [SMALL_STATE(4790)] = 156011, - [SMALL_STATE(4791)] = 156025, - [SMALL_STATE(4792)] = 156035, - [SMALL_STATE(4793)] = 156045, - [SMALL_STATE(4794)] = 156055, - [SMALL_STATE(4795)] = 156065, - [SMALL_STATE(4796)] = 156075, - [SMALL_STATE(4797)] = 156085, - [SMALL_STATE(4798)] = 156095, - [SMALL_STATE(4799)] = 156105, - [SMALL_STATE(4800)] = 156115, - [SMALL_STATE(4801)] = 156125, - [SMALL_STATE(4802)] = 156139, - [SMALL_STATE(4803)] = 156149, - [SMALL_STATE(4804)] = 156159, - [SMALL_STATE(4805)] = 156171, - [SMALL_STATE(4806)] = 156181, - [SMALL_STATE(4807)] = 156191, - [SMALL_STATE(4808)] = 156201, - [SMALL_STATE(4809)] = 156211, - [SMALL_STATE(4810)] = 156225, - [SMALL_STATE(4811)] = 156235, - [SMALL_STATE(4812)] = 156245, - [SMALL_STATE(4813)] = 156255, - [SMALL_STATE(4814)] = 156265, - [SMALL_STATE(4815)] = 156275, - [SMALL_STATE(4816)] = 156285, - [SMALL_STATE(4817)] = 156295, - [SMALL_STATE(4818)] = 156305, - [SMALL_STATE(4819)] = 156315, - [SMALL_STATE(4820)] = 156325, - [SMALL_STATE(4821)] = 156339, - [SMALL_STATE(4822)] = 156353, - [SMALL_STATE(4823)] = 156369, - [SMALL_STATE(4824)] = 156383, - [SMALL_STATE(4825)] = 156393, - [SMALL_STATE(4826)] = 156403, - [SMALL_STATE(4827)] = 156413, - [SMALL_STATE(4828)] = 156423, - [SMALL_STATE(4829)] = 156437, - [SMALL_STATE(4830)] = 156447, - [SMALL_STATE(4831)] = 156457, - [SMALL_STATE(4832)] = 156467, - [SMALL_STATE(4833)] = 156477, - [SMALL_STATE(4834)] = 156487, - [SMALL_STATE(4835)] = 156501, - [SMALL_STATE(4836)] = 156511, - [SMALL_STATE(4837)] = 156521, - [SMALL_STATE(4838)] = 156531, - [SMALL_STATE(4839)] = 156541, - [SMALL_STATE(4840)] = 156551, - [SMALL_STATE(4841)] = 156561, - [SMALL_STATE(4842)] = 156571, - [SMALL_STATE(4843)] = 156585, - [SMALL_STATE(4844)] = 156595, - [SMALL_STATE(4845)] = 156605, - [SMALL_STATE(4846)] = 156615, - [SMALL_STATE(4847)] = 156625, - [SMALL_STATE(4848)] = 156635, - [SMALL_STATE(4849)] = 156645, - [SMALL_STATE(4850)] = 156657, - [SMALL_STATE(4851)] = 156667, - [SMALL_STATE(4852)] = 156677, - [SMALL_STATE(4853)] = 156687, - [SMALL_STATE(4854)] = 156697, - [SMALL_STATE(4855)] = 156707, - [SMALL_STATE(4856)] = 156717, - [SMALL_STATE(4857)] = 156727, - [SMALL_STATE(4858)] = 156737, - [SMALL_STATE(4859)] = 156747, - [SMALL_STATE(4860)] = 156757, - [SMALL_STATE(4861)] = 156767, - [SMALL_STATE(4862)] = 156777, - [SMALL_STATE(4863)] = 156787, - [SMALL_STATE(4864)] = 156797, - [SMALL_STATE(4865)] = 156811, - [SMALL_STATE(4866)] = 156821, - [SMALL_STATE(4867)] = 156835, - [SMALL_STATE(4868)] = 156845, - [SMALL_STATE(4869)] = 156855, - [SMALL_STATE(4870)] = 156865, - [SMALL_STATE(4871)] = 156875, - [SMALL_STATE(4872)] = 156885, - [SMALL_STATE(4873)] = 156895, - [SMALL_STATE(4874)] = 156905, - [SMALL_STATE(4875)] = 156915, - [SMALL_STATE(4876)] = 156925, - [SMALL_STATE(4877)] = 156939, - [SMALL_STATE(4878)] = 156949, - [SMALL_STATE(4879)] = 156959, - [SMALL_STATE(4880)] = 156969, - [SMALL_STATE(4881)] = 156981, - [SMALL_STATE(4882)] = 156991, - [SMALL_STATE(4883)] = 157001, - [SMALL_STATE(4884)] = 157011, - [SMALL_STATE(4885)] = 157025, - [SMALL_STATE(4886)] = 157035, - [SMALL_STATE(4887)] = 157045, - [SMALL_STATE(4888)] = 157061, - [SMALL_STATE(4889)] = 157071, - [SMALL_STATE(4890)] = 157081, - [SMALL_STATE(4891)] = 157091, - [SMALL_STATE(4892)] = 157101, - [SMALL_STATE(4893)] = 157111, - [SMALL_STATE(4894)] = 157121, - [SMALL_STATE(4895)] = 157131, - [SMALL_STATE(4896)] = 157145, - [SMALL_STATE(4897)] = 157155, - [SMALL_STATE(4898)] = 157165, - [SMALL_STATE(4899)] = 157175, - [SMALL_STATE(4900)] = 157189, - [SMALL_STATE(4901)] = 157203, - [SMALL_STATE(4902)] = 157217, - [SMALL_STATE(4903)] = 157231, - [SMALL_STATE(4904)] = 157241, - [SMALL_STATE(4905)] = 157251, - [SMALL_STATE(4906)] = 157261, - [SMALL_STATE(4907)] = 157271, - [SMALL_STATE(4908)] = 157285, - [SMALL_STATE(4909)] = 157299, - [SMALL_STATE(4910)] = 157309, - [SMALL_STATE(4911)] = 157319, - [SMALL_STATE(4912)] = 157329, - [SMALL_STATE(4913)] = 157339, - [SMALL_STATE(4914)] = 157351, - [SMALL_STATE(4915)] = 157365, - [SMALL_STATE(4916)] = 157375, - [SMALL_STATE(4917)] = 157389, - [SMALL_STATE(4918)] = 157399, - [SMALL_STATE(4919)] = 157409, - [SMALL_STATE(4920)] = 157423, - [SMALL_STATE(4921)] = 157433, - [SMALL_STATE(4922)] = 157443, - [SMALL_STATE(4923)] = 157453, - [SMALL_STATE(4924)] = 157463, - [SMALL_STATE(4925)] = 157477, - [SMALL_STATE(4926)] = 157487, - [SMALL_STATE(4927)] = 157497, - [SMALL_STATE(4928)] = 157507, - [SMALL_STATE(4929)] = 157517, - [SMALL_STATE(4930)] = 157527, - [SMALL_STATE(4931)] = 157541, - [SMALL_STATE(4932)] = 157551, - [SMALL_STATE(4933)] = 157561, - [SMALL_STATE(4934)] = 157571, - [SMALL_STATE(4935)] = 157581, - [SMALL_STATE(4936)] = 157591, - [SMALL_STATE(4937)] = 157601, - [SMALL_STATE(4938)] = 157615, - [SMALL_STATE(4939)] = 157625, - [SMALL_STATE(4940)] = 157637, - [SMALL_STATE(4941)] = 157647, - [SMALL_STATE(4942)] = 157657, - [SMALL_STATE(4943)] = 157669, - [SMALL_STATE(4944)] = 157683, - [SMALL_STATE(4945)] = 157693, - [SMALL_STATE(4946)] = 157707, - [SMALL_STATE(4947)] = 157721, - [SMALL_STATE(4948)] = 157731, - [SMALL_STATE(4949)] = 157741, - [SMALL_STATE(4950)] = 157755, - [SMALL_STATE(4951)] = 157765, - [SMALL_STATE(4952)] = 157775, - [SMALL_STATE(4953)] = 157785, - [SMALL_STATE(4954)] = 157799, - [SMALL_STATE(4955)] = 157809, - [SMALL_STATE(4956)] = 157819, - [SMALL_STATE(4957)] = 157829, - [SMALL_STATE(4958)] = 157843, - [SMALL_STATE(4959)] = 157853, - [SMALL_STATE(4960)] = 157863, - [SMALL_STATE(4961)] = 157873, - [SMALL_STATE(4962)] = 157883, - [SMALL_STATE(4963)] = 157897, - [SMALL_STATE(4964)] = 157907, - [SMALL_STATE(4965)] = 157917, - [SMALL_STATE(4966)] = 157931, - [SMALL_STATE(4967)] = 157941, - [SMALL_STATE(4968)] = 157951, - [SMALL_STATE(4969)] = 157961, - [SMALL_STATE(4970)] = 157971, - [SMALL_STATE(4971)] = 157985, - [SMALL_STATE(4972)] = 157999, - [SMALL_STATE(4973)] = 158013, - [SMALL_STATE(4974)] = 158023, - [SMALL_STATE(4975)] = 158037, - [SMALL_STATE(4976)] = 158047, - [SMALL_STATE(4977)] = 158061, - [SMALL_STATE(4978)] = 158071, - [SMALL_STATE(4979)] = 158081, - [SMALL_STATE(4980)] = 158091, - [SMALL_STATE(4981)] = 158101, - [SMALL_STATE(4982)] = 158111, - [SMALL_STATE(4983)] = 158121, - [SMALL_STATE(4984)] = 158131, - [SMALL_STATE(4985)] = 158145, - [SMALL_STATE(4986)] = 158155, - [SMALL_STATE(4987)] = 158165, - [SMALL_STATE(4988)] = 158175, - [SMALL_STATE(4989)] = 158185, - [SMALL_STATE(4990)] = 158195, - [SMALL_STATE(4991)] = 158209, - [SMALL_STATE(4992)] = 158219, - [SMALL_STATE(4993)] = 158229, - [SMALL_STATE(4994)] = 158241, - [SMALL_STATE(4995)] = 158255, - [SMALL_STATE(4996)] = 158265, - [SMALL_STATE(4997)] = 158279, - [SMALL_STATE(4998)] = 158289, - [SMALL_STATE(4999)] = 158303, - [SMALL_STATE(5000)] = 158313, - [SMALL_STATE(5001)] = 158327, - [SMALL_STATE(5002)] = 158341, - [SMALL_STATE(5003)] = 158351, - [SMALL_STATE(5004)] = 158361, - [SMALL_STATE(5005)] = 158375, - [SMALL_STATE(5006)] = 158385, - [SMALL_STATE(5007)] = 158399, - [SMALL_STATE(5008)] = 158413, - [SMALL_STATE(5009)] = 158427, - [SMALL_STATE(5010)] = 158437, - [SMALL_STATE(5011)] = 158451, - [SMALL_STATE(5012)] = 158461, - [SMALL_STATE(5013)] = 158471, - [SMALL_STATE(5014)] = 158485, - [SMALL_STATE(5015)] = 158495, - [SMALL_STATE(5016)] = 158507, - [SMALL_STATE(5017)] = 158517, - [SMALL_STATE(5018)] = 158527, - [SMALL_STATE(5019)] = 158537, - [SMALL_STATE(5020)] = 158551, - [SMALL_STATE(5021)] = 158561, - [SMALL_STATE(5022)] = 158571, - [SMALL_STATE(5023)] = 158581, - [SMALL_STATE(5024)] = 158591, - [SMALL_STATE(5025)] = 158601, - [SMALL_STATE(5026)] = 158611, - [SMALL_STATE(5027)] = 158621, - [SMALL_STATE(5028)] = 158631, - [SMALL_STATE(5029)] = 158645, - [SMALL_STATE(5030)] = 158655, - [SMALL_STATE(5031)] = 158669, - [SMALL_STATE(5032)] = 158679, - [SMALL_STATE(5033)] = 158689, - [SMALL_STATE(5034)] = 158699, - [SMALL_STATE(5035)] = 158709, - [SMALL_STATE(5036)] = 158719, - [SMALL_STATE(5037)] = 158733, - [SMALL_STATE(5038)] = 158747, - [SMALL_STATE(5039)] = 158757, - [SMALL_STATE(5040)] = 158767, - [SMALL_STATE(5041)] = 158777, - [SMALL_STATE(5042)] = 158787, - [SMALL_STATE(5043)] = 158797, - [SMALL_STATE(5044)] = 158807, - [SMALL_STATE(5045)] = 158817, - [SMALL_STATE(5046)] = 158827, - [SMALL_STATE(5047)] = 158837, - [SMALL_STATE(5048)] = 158847, - [SMALL_STATE(5049)] = 158857, - [SMALL_STATE(5050)] = 158867, - [SMALL_STATE(5051)] = 158877, - [SMALL_STATE(5052)] = 158887, - [SMALL_STATE(5053)] = 158897, - [SMALL_STATE(5054)] = 158907, - [SMALL_STATE(5055)] = 158917, - [SMALL_STATE(5056)] = 158927, - [SMALL_STATE(5057)] = 158937, - [SMALL_STATE(5058)] = 158947, - [SMALL_STATE(5059)] = 158961, - [SMALL_STATE(5060)] = 158971, - [SMALL_STATE(5061)] = 158981, - [SMALL_STATE(5062)] = 158991, - [SMALL_STATE(5063)] = 159001, - [SMALL_STATE(5064)] = 159011, - [SMALL_STATE(5065)] = 159021, - [SMALL_STATE(5066)] = 159031, - [SMALL_STATE(5067)] = 159041, - [SMALL_STATE(5068)] = 159051, - [SMALL_STATE(5069)] = 159061, - [SMALL_STATE(5070)] = 159071, - [SMALL_STATE(5071)] = 159081, - [SMALL_STATE(5072)] = 159091, - [SMALL_STATE(5073)] = 159101, - [SMALL_STATE(5074)] = 159111, - [SMALL_STATE(5075)] = 159121, - [SMALL_STATE(5076)] = 159131, - [SMALL_STATE(5077)] = 159141, - [SMALL_STATE(5078)] = 159151, - [SMALL_STATE(5079)] = 159161, - [SMALL_STATE(5080)] = 159171, - [SMALL_STATE(5081)] = 159181, - [SMALL_STATE(5082)] = 159191, - [SMALL_STATE(5083)] = 159201, - [SMALL_STATE(5084)] = 159211, - [SMALL_STATE(5085)] = 159221, - [SMALL_STATE(5086)] = 159231, - [SMALL_STATE(5087)] = 159241, - [SMALL_STATE(5088)] = 159251, - [SMALL_STATE(5089)] = 159261, - [SMALL_STATE(5090)] = 159271, - [SMALL_STATE(5091)] = 159281, - [SMALL_STATE(5092)] = 159291, - [SMALL_STATE(5093)] = 159301, - [SMALL_STATE(5094)] = 159311, - [SMALL_STATE(5095)] = 159321, - [SMALL_STATE(5096)] = 159331, - [SMALL_STATE(5097)] = 159341, - [SMALL_STATE(5098)] = 159351, - [SMALL_STATE(5099)] = 159361, - [SMALL_STATE(5100)] = 159371, - [SMALL_STATE(5101)] = 159381, - [SMALL_STATE(5102)] = 159391, - [SMALL_STATE(5103)] = 159401, - [SMALL_STATE(5104)] = 159411, - [SMALL_STATE(5105)] = 159421, - [SMALL_STATE(5106)] = 159433, - [SMALL_STATE(5107)] = 159443, - [SMALL_STATE(5108)] = 159457, - [SMALL_STATE(5109)] = 159467, - [SMALL_STATE(5110)] = 159477, - [SMALL_STATE(5111)] = 159487, - [SMALL_STATE(5112)] = 159497, - [SMALL_STATE(5113)] = 159507, - [SMALL_STATE(5114)] = 159517, - [SMALL_STATE(5115)] = 159527, - [SMALL_STATE(5116)] = 159539, - [SMALL_STATE(5117)] = 159553, - [SMALL_STATE(5118)] = 159563, - [SMALL_STATE(5119)] = 159573, - [SMALL_STATE(5120)] = 159583, - [SMALL_STATE(5121)] = 159593, - [SMALL_STATE(5122)] = 159603, - [SMALL_STATE(5123)] = 159613, - [SMALL_STATE(5124)] = 159623, - [SMALL_STATE(5125)] = 159637, - [SMALL_STATE(5126)] = 159647, - [SMALL_STATE(5127)] = 159661, - [SMALL_STATE(5128)] = 159675, - [SMALL_STATE(5129)] = 159685, - [SMALL_STATE(5130)] = 159695, - [SMALL_STATE(5131)] = 159705, - [SMALL_STATE(5132)] = 159715, - [SMALL_STATE(5133)] = 159729, - [SMALL_STATE(5134)] = 159739, - [SMALL_STATE(5135)] = 159749, - [SMALL_STATE(5136)] = 159759, - [SMALL_STATE(5137)] = 159769, - [SMALL_STATE(5138)] = 159779, - [SMALL_STATE(5139)] = 159790, - [SMALL_STATE(5140)] = 159799, - [SMALL_STATE(5141)] = 159808, - [SMALL_STATE(5142)] = 159817, - [SMALL_STATE(5143)] = 159828, - [SMALL_STATE(5144)] = 159837, - [SMALL_STATE(5145)] = 159848, - [SMALL_STATE(5146)] = 159857, - [SMALL_STATE(5147)] = 159868, - [SMALL_STATE(5148)] = 159879, - [SMALL_STATE(5149)] = 159888, - [SMALL_STATE(5150)] = 159899, - [SMALL_STATE(5151)] = 159910, - [SMALL_STATE(5152)] = 159921, - [SMALL_STATE(5153)] = 159932, - [SMALL_STATE(5154)] = 159943, - [SMALL_STATE(5155)] = 159952, - [SMALL_STATE(5156)] = 159963, - [SMALL_STATE(5157)] = 159974, - [SMALL_STATE(5158)] = 159985, - [SMALL_STATE(5159)] = 159996, - [SMALL_STATE(5160)] = 160007, - [SMALL_STATE(5161)] = 160016, - [SMALL_STATE(5162)] = 160025, - [SMALL_STATE(5163)] = 160036, - [SMALL_STATE(5164)] = 160047, - [SMALL_STATE(5165)] = 160058, - [SMALL_STATE(5166)] = 160069, - [SMALL_STATE(5167)] = 160078, - [SMALL_STATE(5168)] = 160087, - [SMALL_STATE(5169)] = 160098, - [SMALL_STATE(5170)] = 160107, - [SMALL_STATE(5171)] = 160118, - [SMALL_STATE(5172)] = 160129, - [SMALL_STATE(5173)] = 160140, - [SMALL_STATE(5174)] = 160151, - [SMALL_STATE(5175)] = 160162, - [SMALL_STATE(5176)] = 160173, - [SMALL_STATE(5177)] = 160182, - [SMALL_STATE(5178)] = 160191, - [SMALL_STATE(5179)] = 160202, - [SMALL_STATE(5180)] = 160213, - [SMALL_STATE(5181)] = 160224, - [SMALL_STATE(5182)] = 160235, - [SMALL_STATE(5183)] = 160244, - [SMALL_STATE(5184)] = 160255, - [SMALL_STATE(5185)] = 160266, - [SMALL_STATE(5186)] = 160277, - [SMALL_STATE(5187)] = 160288, - [SMALL_STATE(5188)] = 160299, - [SMALL_STATE(5189)] = 160308, - [SMALL_STATE(5190)] = 160319, - [SMALL_STATE(5191)] = 160330, - [SMALL_STATE(5192)] = 160341, - [SMALL_STATE(5193)] = 160350, - [SMALL_STATE(5194)] = 160361, - [SMALL_STATE(5195)] = 160372, - [SMALL_STATE(5196)] = 160383, - [SMALL_STATE(5197)] = 160394, - [SMALL_STATE(5198)] = 160405, - [SMALL_STATE(5199)] = 160414, - [SMALL_STATE(5200)] = 160425, - [SMALL_STATE(5201)] = 160434, - [SMALL_STATE(5202)] = 160445, - [SMALL_STATE(5203)] = 160454, - [SMALL_STATE(5204)] = 160465, - [SMALL_STATE(5205)] = 160476, - [SMALL_STATE(5206)] = 160487, - [SMALL_STATE(5207)] = 160498, - [SMALL_STATE(5208)] = 160509, - [SMALL_STATE(5209)] = 160518, - [SMALL_STATE(5210)] = 160529, - [SMALL_STATE(5211)] = 160538, - [SMALL_STATE(5212)] = 160547, - [SMALL_STATE(5213)] = 160558, - [SMALL_STATE(5214)] = 160569, - [SMALL_STATE(5215)] = 160578, - [SMALL_STATE(5216)] = 160589, - [SMALL_STATE(5217)] = 160600, - [SMALL_STATE(5218)] = 160611, - [SMALL_STATE(5219)] = 160620, - [SMALL_STATE(5220)] = 160631, - [SMALL_STATE(5221)] = 160642, - [SMALL_STATE(5222)] = 160653, - [SMALL_STATE(5223)] = 160664, - [SMALL_STATE(5224)] = 160675, - [SMALL_STATE(5225)] = 160686, - [SMALL_STATE(5226)] = 160697, - [SMALL_STATE(5227)] = 160708, - [SMALL_STATE(5228)] = 160717, - [SMALL_STATE(5229)] = 160726, - [SMALL_STATE(5230)] = 160735, - [SMALL_STATE(5231)] = 160744, - [SMALL_STATE(5232)] = 160755, - [SMALL_STATE(5233)] = 160766, - [SMALL_STATE(5234)] = 160777, - [SMALL_STATE(5235)] = 160788, - [SMALL_STATE(5236)] = 160799, - [SMALL_STATE(5237)] = 160808, - [SMALL_STATE(5238)] = 160817, - [SMALL_STATE(5239)] = 160828, - [SMALL_STATE(5240)] = 160837, - [SMALL_STATE(5241)] = 160848, - [SMALL_STATE(5242)] = 160859, - [SMALL_STATE(5243)] = 160870, - [SMALL_STATE(5244)] = 160881, - [SMALL_STATE(5245)] = 160892, - [SMALL_STATE(5246)] = 160901, - [SMALL_STATE(5247)] = 160912, - [SMALL_STATE(5248)] = 160923, - [SMALL_STATE(5249)] = 160934, - [SMALL_STATE(5250)] = 160943, - [SMALL_STATE(5251)] = 160954, - [SMALL_STATE(5252)] = 160965, - [SMALL_STATE(5253)] = 160976, - [SMALL_STATE(5254)] = 160985, - [SMALL_STATE(5255)] = 160996, - [SMALL_STATE(5256)] = 161007, - [SMALL_STATE(5257)] = 161018, - [SMALL_STATE(5258)] = 161027, - [SMALL_STATE(5259)] = 161038, - [SMALL_STATE(5260)] = 161049, - [SMALL_STATE(5261)] = 161060, - [SMALL_STATE(5262)] = 161069, - [SMALL_STATE(5263)] = 161080, - [SMALL_STATE(5264)] = 161091, - [SMALL_STATE(5265)] = 161102, - [SMALL_STATE(5266)] = 161113, - [SMALL_STATE(5267)] = 161124, - [SMALL_STATE(5268)] = 161135, - [SMALL_STATE(5269)] = 161146, - [SMALL_STATE(5270)] = 161157, - [SMALL_STATE(5271)] = 161168, - [SMALL_STATE(5272)] = 161179, - [SMALL_STATE(5273)] = 161190, - [SMALL_STATE(5274)] = 161201, - [SMALL_STATE(5275)] = 161212, - [SMALL_STATE(5276)] = 161223, - [SMALL_STATE(5277)] = 161234, - [SMALL_STATE(5278)] = 161245, - [SMALL_STATE(5279)] = 161256, - [SMALL_STATE(5280)] = 161267, - [SMALL_STATE(5281)] = 161276, - [SMALL_STATE(5282)] = 161287, - [SMALL_STATE(5283)] = 161298, - [SMALL_STATE(5284)] = 161307, - [SMALL_STATE(5285)] = 161318, - [SMALL_STATE(5286)] = 161327, - [SMALL_STATE(5287)] = 161336, - [SMALL_STATE(5288)] = 161347, - [SMALL_STATE(5289)] = 161358, - [SMALL_STATE(5290)] = 161369, - [SMALL_STATE(5291)] = 161380, - [SMALL_STATE(5292)] = 161391, - [SMALL_STATE(5293)] = 161400, - [SMALL_STATE(5294)] = 161411, - [SMALL_STATE(5295)] = 161422, - [SMALL_STATE(5296)] = 161431, - [SMALL_STATE(5297)] = 161440, - [SMALL_STATE(5298)] = 161451, - [SMALL_STATE(5299)] = 161462, - [SMALL_STATE(5300)] = 161473, - [SMALL_STATE(5301)] = 161484, - [SMALL_STATE(5302)] = 161495, - [SMALL_STATE(5303)] = 161506, - [SMALL_STATE(5304)] = 161517, - [SMALL_STATE(5305)] = 161528, - [SMALL_STATE(5306)] = 161539, - [SMALL_STATE(5307)] = 161550, - [SMALL_STATE(5308)] = 161559, - [SMALL_STATE(5309)] = 161568, - [SMALL_STATE(5310)] = 161579, - [SMALL_STATE(5311)] = 161588, - [SMALL_STATE(5312)] = 161599, - [SMALL_STATE(5313)] = 161610, - [SMALL_STATE(5314)] = 161621, - [SMALL_STATE(5315)] = 161632, - [SMALL_STATE(5316)] = 161643, - [SMALL_STATE(5317)] = 161654, - [SMALL_STATE(5318)] = 161665, - [SMALL_STATE(5319)] = 161676, - [SMALL_STATE(5320)] = 161687, - [SMALL_STATE(5321)] = 161698, - [SMALL_STATE(5322)] = 161709, - [SMALL_STATE(5323)] = 161718, - [SMALL_STATE(5324)] = 161729, - [SMALL_STATE(5325)] = 161740, - [SMALL_STATE(5326)] = 161749, - [SMALL_STATE(5327)] = 161760, - [SMALL_STATE(5328)] = 161771, - [SMALL_STATE(5329)] = 161782, - [SMALL_STATE(5330)] = 161793, - [SMALL_STATE(5331)] = 161802, - [SMALL_STATE(5332)] = 161813, - [SMALL_STATE(5333)] = 161822, - [SMALL_STATE(5334)] = 161833, - [SMALL_STATE(5335)] = 161842, - [SMALL_STATE(5336)] = 161853, - [SMALL_STATE(5337)] = 161864, - [SMALL_STATE(5338)] = 161875, - [SMALL_STATE(5339)] = 161886, - [SMALL_STATE(5340)] = 161897, - [SMALL_STATE(5341)] = 161908, - [SMALL_STATE(5342)] = 161919, - [SMALL_STATE(5343)] = 161930, - [SMALL_STATE(5344)] = 161939, - [SMALL_STATE(5345)] = 161948, - [SMALL_STATE(5346)] = 161957, - [SMALL_STATE(5347)] = 161968, - [SMALL_STATE(5348)] = 161977, - [SMALL_STATE(5349)] = 161986, - [SMALL_STATE(5350)] = 161997, - [SMALL_STATE(5351)] = 162006, - [SMALL_STATE(5352)] = 162017, - [SMALL_STATE(5353)] = 162028, - [SMALL_STATE(5354)] = 162039, - [SMALL_STATE(5355)] = 162050, - [SMALL_STATE(5356)] = 162061, - [SMALL_STATE(5357)] = 162072, - [SMALL_STATE(5358)] = 162083, - [SMALL_STATE(5359)] = 162094, - [SMALL_STATE(5360)] = 162105, - [SMALL_STATE(5361)] = 162116, - [SMALL_STATE(5362)] = 162127, - [SMALL_STATE(5363)] = 162138, - [SMALL_STATE(5364)] = 162149, - [SMALL_STATE(5365)] = 162160, - [SMALL_STATE(5366)] = 162169, - [SMALL_STATE(5367)] = 162180, - [SMALL_STATE(5368)] = 162191, - [SMALL_STATE(5369)] = 162202, - [SMALL_STATE(5370)] = 162213, - [SMALL_STATE(5371)] = 162224, - [SMALL_STATE(5372)] = 162235, - [SMALL_STATE(5373)] = 162246, - [SMALL_STATE(5374)] = 162257, - [SMALL_STATE(5375)] = 162266, - [SMALL_STATE(5376)] = 162277, - [SMALL_STATE(5377)] = 162288, - [SMALL_STATE(5378)] = 162299, - [SMALL_STATE(5379)] = 162310, - [SMALL_STATE(5380)] = 162321, - [SMALL_STATE(5381)] = 162332, - [SMALL_STATE(5382)] = 162343, - [SMALL_STATE(5383)] = 162354, - [SMALL_STATE(5384)] = 162365, - [SMALL_STATE(5385)] = 162376, - [SMALL_STATE(5386)] = 162387, - [SMALL_STATE(5387)] = 162398, - [SMALL_STATE(5388)] = 162409, - [SMALL_STATE(5389)] = 162418, - [SMALL_STATE(5390)] = 162429, - [SMALL_STATE(5391)] = 162440, - [SMALL_STATE(5392)] = 162451, - [SMALL_STATE(5393)] = 162462, - [SMALL_STATE(5394)] = 162473, - [SMALL_STATE(5395)] = 162484, - [SMALL_STATE(5396)] = 162493, - [SMALL_STATE(5397)] = 162504, - [SMALL_STATE(5398)] = 162513, - [SMALL_STATE(5399)] = 162522, - [SMALL_STATE(5400)] = 162533, - [SMALL_STATE(5401)] = 162544, - [SMALL_STATE(5402)] = 162553, - [SMALL_STATE(5403)] = 162564, - [SMALL_STATE(5404)] = 162573, - [SMALL_STATE(5405)] = 162584, - [SMALL_STATE(5406)] = 162595, - [SMALL_STATE(5407)] = 162606, - [SMALL_STATE(5408)] = 162617, - [SMALL_STATE(5409)] = 162628, - [SMALL_STATE(5410)] = 162639, - [SMALL_STATE(5411)] = 162650, - [SMALL_STATE(5412)] = 162661, - [SMALL_STATE(5413)] = 162672, - [SMALL_STATE(5414)] = 162683, - [SMALL_STATE(5415)] = 162694, - [SMALL_STATE(5416)] = 162705, - [SMALL_STATE(5417)] = 162716, - [SMALL_STATE(5418)] = 162727, - [SMALL_STATE(5419)] = 162738, - [SMALL_STATE(5420)] = 162749, - [SMALL_STATE(5421)] = 162760, - [SMALL_STATE(5422)] = 162771, - [SMALL_STATE(5423)] = 162782, - [SMALL_STATE(5424)] = 162793, - [SMALL_STATE(5425)] = 162804, - [SMALL_STATE(5426)] = 162815, - [SMALL_STATE(5427)] = 162826, - [SMALL_STATE(5428)] = 162837, - [SMALL_STATE(5429)] = 162846, - [SMALL_STATE(5430)] = 162855, - [SMALL_STATE(5431)] = 162866, - [SMALL_STATE(5432)] = 162877, - [SMALL_STATE(5433)] = 162888, - [SMALL_STATE(5434)] = 162897, - [SMALL_STATE(5435)] = 162906, - [SMALL_STATE(5436)] = 162917, - [SMALL_STATE(5437)] = 162928, - [SMALL_STATE(5438)] = 162939, - [SMALL_STATE(5439)] = 162950, - [SMALL_STATE(5440)] = 162959, - [SMALL_STATE(5441)] = 162970, - [SMALL_STATE(5442)] = 162981, - [SMALL_STATE(5443)] = 162992, - [SMALL_STATE(5444)] = 163003, - [SMALL_STATE(5445)] = 163014, - [SMALL_STATE(5446)] = 163025, - [SMALL_STATE(5447)] = 163034, - [SMALL_STATE(5448)] = 163045, - [SMALL_STATE(5449)] = 163056, - [SMALL_STATE(5450)] = 163067, - [SMALL_STATE(5451)] = 163078, - [SMALL_STATE(5452)] = 163089, - [SMALL_STATE(5453)] = 163098, - [SMALL_STATE(5454)] = 163109, - [SMALL_STATE(5455)] = 163120, - [SMALL_STATE(5456)] = 163131, - [SMALL_STATE(5457)] = 163142, - [SMALL_STATE(5458)] = 163153, - [SMALL_STATE(5459)] = 163162, - [SMALL_STATE(5460)] = 163173, - [SMALL_STATE(5461)] = 163184, - [SMALL_STATE(5462)] = 163195, - [SMALL_STATE(5463)] = 163206, - [SMALL_STATE(5464)] = 163217, - [SMALL_STATE(5465)] = 163228, - [SMALL_STATE(5466)] = 163239, - [SMALL_STATE(5467)] = 163250, - [SMALL_STATE(5468)] = 163261, - [SMALL_STATE(5469)] = 163272, - [SMALL_STATE(5470)] = 163283, - [SMALL_STATE(5471)] = 163294, - [SMALL_STATE(5472)] = 163305, - [SMALL_STATE(5473)] = 163316, - [SMALL_STATE(5474)] = 163327, - [SMALL_STATE(5475)] = 163338, - [SMALL_STATE(5476)] = 163347, - [SMALL_STATE(5477)] = 163358, - [SMALL_STATE(5478)] = 163369, - [SMALL_STATE(5479)] = 163377, - [SMALL_STATE(5480)] = 163385, - [SMALL_STATE(5481)] = 163393, - [SMALL_STATE(5482)] = 163403, - [SMALL_STATE(5483)] = 163411, - [SMALL_STATE(5484)] = 163419, - [SMALL_STATE(5485)] = 163427, - [SMALL_STATE(5486)] = 163435, - [SMALL_STATE(5487)] = 163443, - [SMALL_STATE(5488)] = 163451, - [SMALL_STATE(5489)] = 163459, - [SMALL_STATE(5490)] = 163467, - [SMALL_STATE(5491)] = 163475, - [SMALL_STATE(5492)] = 163483, - [SMALL_STATE(5493)] = 163491, - [SMALL_STATE(5494)] = 163499, - [SMALL_STATE(5495)] = 163507, - [SMALL_STATE(5496)] = 163515, - [SMALL_STATE(5497)] = 163523, - [SMALL_STATE(5498)] = 163531, - [SMALL_STATE(5499)] = 163541, - [SMALL_STATE(5500)] = 163549, - [SMALL_STATE(5501)] = 163557, - [SMALL_STATE(5502)] = 163565, - [SMALL_STATE(5503)] = 163573, - [SMALL_STATE(5504)] = 163581, - [SMALL_STATE(5505)] = 163589, - [SMALL_STATE(5506)] = 163597, - [SMALL_STATE(5507)] = 163605, - [SMALL_STATE(5508)] = 163613, - [SMALL_STATE(5509)] = 163621, - [SMALL_STATE(5510)] = 163629, - [SMALL_STATE(5511)] = 163637, - [SMALL_STATE(5512)] = 163645, - [SMALL_STATE(5513)] = 163653, - [SMALL_STATE(5514)] = 163661, - [SMALL_STATE(5515)] = 163669, - [SMALL_STATE(5516)] = 163677, - [SMALL_STATE(5517)] = 163685, - [SMALL_STATE(5518)] = 163693, - [SMALL_STATE(5519)] = 163701, - [SMALL_STATE(5520)] = 163709, - [SMALL_STATE(5521)] = 163719, - [SMALL_STATE(5522)] = 163727, - [SMALL_STATE(5523)] = 163735, - [SMALL_STATE(5524)] = 163743, - [SMALL_STATE(5525)] = 163751, - [SMALL_STATE(5526)] = 163759, - [SMALL_STATE(5527)] = 163767, - [SMALL_STATE(5528)] = 163775, - [SMALL_STATE(5529)] = 163783, - [SMALL_STATE(5530)] = 163791, - [SMALL_STATE(5531)] = 163799, - [SMALL_STATE(5532)] = 163807, - [SMALL_STATE(5533)] = 163815, - [SMALL_STATE(5534)] = 163823, - [SMALL_STATE(5535)] = 163831, - [SMALL_STATE(5536)] = 163839, - [SMALL_STATE(5537)] = 163847, - [SMALL_STATE(5538)] = 163855, - [SMALL_STATE(5539)] = 163863, - [SMALL_STATE(5540)] = 163871, - [SMALL_STATE(5541)] = 163879, - [SMALL_STATE(5542)] = 163887, - [SMALL_STATE(5543)] = 163895, - [SMALL_STATE(5544)] = 163903, - [SMALL_STATE(5545)] = 163911, - [SMALL_STATE(5546)] = 163919, - [SMALL_STATE(5547)] = 163927, - [SMALL_STATE(5548)] = 163935, - [SMALL_STATE(5549)] = 163943, - [SMALL_STATE(5550)] = 163951, - [SMALL_STATE(5551)] = 163959, - [SMALL_STATE(5552)] = 163967, - [SMALL_STATE(5553)] = 163975, - [SMALL_STATE(5554)] = 163983, - [SMALL_STATE(5555)] = 163991, - [SMALL_STATE(5556)] = 163999, - [SMALL_STATE(5557)] = 164007, - [SMALL_STATE(5558)] = 164015, - [SMALL_STATE(5559)] = 164023, - [SMALL_STATE(5560)] = 164031, - [SMALL_STATE(5561)] = 164039, - [SMALL_STATE(5562)] = 164047, - [SMALL_STATE(5563)] = 164055, - [SMALL_STATE(5564)] = 164063, - [SMALL_STATE(5565)] = 164071, - [SMALL_STATE(5566)] = 164079, - [SMALL_STATE(5567)] = 164087, - [SMALL_STATE(5568)] = 164095, - [SMALL_STATE(5569)] = 164103, - [SMALL_STATE(5570)] = 164111, - [SMALL_STATE(5571)] = 164119, - [SMALL_STATE(5572)] = 164127, - [SMALL_STATE(5573)] = 164137, - [SMALL_STATE(5574)] = 164145, - [SMALL_STATE(5575)] = 164153, - [SMALL_STATE(5576)] = 164161, - [SMALL_STATE(5577)] = 164169, - [SMALL_STATE(5578)] = 164177, - [SMALL_STATE(5579)] = 164185, - [SMALL_STATE(5580)] = 164193, - [SMALL_STATE(5581)] = 164201, - [SMALL_STATE(5582)] = 164209, - [SMALL_STATE(5583)] = 164217, - [SMALL_STATE(5584)] = 164225, - [SMALL_STATE(5585)] = 164233, - [SMALL_STATE(5586)] = 164241, - [SMALL_STATE(5587)] = 164249, - [SMALL_STATE(5588)] = 164257, - [SMALL_STATE(5589)] = 164265, - [SMALL_STATE(5590)] = 164273, - [SMALL_STATE(5591)] = 164281, - [SMALL_STATE(5592)] = 164289, - [SMALL_STATE(5593)] = 164297, - [SMALL_STATE(5594)] = 164305, - [SMALL_STATE(5595)] = 164313, - [SMALL_STATE(5596)] = 164321, - [SMALL_STATE(5597)] = 164329, - [SMALL_STATE(5598)] = 164337, - [SMALL_STATE(5599)] = 164345, - [SMALL_STATE(5600)] = 164353, - [SMALL_STATE(5601)] = 164361, - [SMALL_STATE(5602)] = 164369, - [SMALL_STATE(5603)] = 164377, - [SMALL_STATE(5604)] = 164385, - [SMALL_STATE(5605)] = 164393, - [SMALL_STATE(5606)] = 164401, - [SMALL_STATE(5607)] = 164409, - [SMALL_STATE(5608)] = 164417, - [SMALL_STATE(5609)] = 164425, - [SMALL_STATE(5610)] = 164433, - [SMALL_STATE(5611)] = 164441, - [SMALL_STATE(5612)] = 164449, - [SMALL_STATE(5613)] = 164457, - [SMALL_STATE(5614)] = 164465, - [SMALL_STATE(5615)] = 164473, - [SMALL_STATE(5616)] = 164481, - [SMALL_STATE(5617)] = 164489, - [SMALL_STATE(5618)] = 164497, - [SMALL_STATE(5619)] = 164505, - [SMALL_STATE(5620)] = 164513, - [SMALL_STATE(5621)] = 164521, - [SMALL_STATE(5622)] = 164529, - [SMALL_STATE(5623)] = 164537, - [SMALL_STATE(5624)] = 164545, - [SMALL_STATE(5625)] = 164553, - [SMALL_STATE(5626)] = 164561, - [SMALL_STATE(5627)] = 164569, - [SMALL_STATE(5628)] = 164577, - [SMALL_STATE(5629)] = 164585, - [SMALL_STATE(5630)] = 164593, - [SMALL_STATE(5631)] = 164601, - [SMALL_STATE(5632)] = 164609, - [SMALL_STATE(5633)] = 164619, - [SMALL_STATE(5634)] = 164627, - [SMALL_STATE(5635)] = 164635, - [SMALL_STATE(5636)] = 164643, - [SMALL_STATE(5637)] = 164651, - [SMALL_STATE(5638)] = 164659, - [SMALL_STATE(5639)] = 164667, - [SMALL_STATE(5640)] = 164675, - [SMALL_STATE(5641)] = 164683, - [SMALL_STATE(5642)] = 164691, - [SMALL_STATE(5643)] = 164699, - [SMALL_STATE(5644)] = 164707, - [SMALL_STATE(5645)] = 164715, - [SMALL_STATE(5646)] = 164723, - [SMALL_STATE(5647)] = 164731, - [SMALL_STATE(5648)] = 164739, - [SMALL_STATE(5649)] = 164747, - [SMALL_STATE(5650)] = 164755, - [SMALL_STATE(5651)] = 164763, - [SMALL_STATE(5652)] = 164771, - [SMALL_STATE(5653)] = 164779, - [SMALL_STATE(5654)] = 164787, - [SMALL_STATE(5655)] = 164795, - [SMALL_STATE(5656)] = 164803, - [SMALL_STATE(5657)] = 164811, - [SMALL_STATE(5658)] = 164819, - [SMALL_STATE(5659)] = 164827, - [SMALL_STATE(5660)] = 164835, - [SMALL_STATE(5661)] = 164843, - [SMALL_STATE(5662)] = 164851, - [SMALL_STATE(5663)] = 164859, - [SMALL_STATE(5664)] = 164867, - [SMALL_STATE(5665)] = 164875, - [SMALL_STATE(5666)] = 164885, - [SMALL_STATE(5667)] = 164893, - [SMALL_STATE(5668)] = 164901, - [SMALL_STATE(5669)] = 164909, - [SMALL_STATE(5670)] = 164917, - [SMALL_STATE(5671)] = 164925, - [SMALL_STATE(5672)] = 164933, - [SMALL_STATE(5673)] = 164941, - [SMALL_STATE(5674)] = 164949, - [SMALL_STATE(5675)] = 164957, - [SMALL_STATE(5676)] = 164965, - [SMALL_STATE(5677)] = 164973, - [SMALL_STATE(5678)] = 164981, - [SMALL_STATE(5679)] = 164989, - [SMALL_STATE(5680)] = 164997, - [SMALL_STATE(5681)] = 165005, - [SMALL_STATE(5682)] = 165013, - [SMALL_STATE(5683)] = 165021, - [SMALL_STATE(5684)] = 165029, - [SMALL_STATE(5685)] = 165037, - [SMALL_STATE(5686)] = 165045, - [SMALL_STATE(5687)] = 165053, - [SMALL_STATE(5688)] = 165061, - [SMALL_STATE(5689)] = 165069, - [SMALL_STATE(5690)] = 165077, - [SMALL_STATE(5691)] = 165085, - [SMALL_STATE(5692)] = 165093, - [SMALL_STATE(5693)] = 165101, - [SMALL_STATE(5694)] = 165109, - [SMALL_STATE(5695)] = 165117, - [SMALL_STATE(5696)] = 165125, - [SMALL_STATE(5697)] = 165133, - [SMALL_STATE(5698)] = 165141, - [SMALL_STATE(5699)] = 165149, - [SMALL_STATE(5700)] = 165157, - [SMALL_STATE(5701)] = 165165, - [SMALL_STATE(5702)] = 165173, - [SMALL_STATE(5703)] = 165181, - [SMALL_STATE(5704)] = 165189, - [SMALL_STATE(5705)] = 165197, - [SMALL_STATE(5706)] = 165205, - [SMALL_STATE(5707)] = 165213, - [SMALL_STATE(5708)] = 165221, - [SMALL_STATE(5709)] = 165229, - [SMALL_STATE(5710)] = 165237, - [SMALL_STATE(5711)] = 165245, - [SMALL_STATE(5712)] = 165253, - [SMALL_STATE(5713)] = 165261, - [SMALL_STATE(5714)] = 165269, - [SMALL_STATE(5715)] = 165277, - [SMALL_STATE(5716)] = 165285, - [SMALL_STATE(5717)] = 165293, - [SMALL_STATE(5718)] = 165303, - [SMALL_STATE(5719)] = 165311, - [SMALL_STATE(5720)] = 165319, - [SMALL_STATE(5721)] = 165327, - [SMALL_STATE(5722)] = 165335, - [SMALL_STATE(5723)] = 165345, - [SMALL_STATE(5724)] = 165353, - [SMALL_STATE(5725)] = 165361, - [SMALL_STATE(5726)] = 165369, - [SMALL_STATE(5727)] = 165377, - [SMALL_STATE(5728)] = 165385, - [SMALL_STATE(5729)] = 165393, - [SMALL_STATE(5730)] = 165401, - [SMALL_STATE(5731)] = 165409, - [SMALL_STATE(5732)] = 165417, - [SMALL_STATE(5733)] = 165425, - [SMALL_STATE(5734)] = 165433, - [SMALL_STATE(5735)] = 165441, - [SMALL_STATE(5736)] = 165449, - [SMALL_STATE(5737)] = 165457, - [SMALL_STATE(5738)] = 165465, - [SMALL_STATE(5739)] = 165473, - [SMALL_STATE(5740)] = 165481, - [SMALL_STATE(5741)] = 165489, - [SMALL_STATE(5742)] = 165497, - [SMALL_STATE(5743)] = 165505, - [SMALL_STATE(5744)] = 165513, - [SMALL_STATE(5745)] = 165523, - [SMALL_STATE(5746)] = 165531, - [SMALL_STATE(5747)] = 165539, - [SMALL_STATE(5748)] = 165547, - [SMALL_STATE(5749)] = 165555, - [SMALL_STATE(5750)] = 165563, - [SMALL_STATE(5751)] = 165571, - [SMALL_STATE(5752)] = 165579, - [SMALL_STATE(5753)] = 165587, - [SMALL_STATE(5754)] = 165595, - [SMALL_STATE(5755)] = 165603, - [SMALL_STATE(5756)] = 165611, - [SMALL_STATE(5757)] = 165619, - [SMALL_STATE(5758)] = 165627, - [SMALL_STATE(5759)] = 165635, - [SMALL_STATE(5760)] = 165643, - [SMALL_STATE(5761)] = 165651, - [SMALL_STATE(5762)] = 165659, - [SMALL_STATE(5763)] = 165667, - [SMALL_STATE(5764)] = 165675, - [SMALL_STATE(5765)] = 165683, - [SMALL_STATE(5766)] = 165691, - [SMALL_STATE(5767)] = 165699, - [SMALL_STATE(5768)] = 165707, - [SMALL_STATE(5769)] = 165715, - [SMALL_STATE(5770)] = 165723, - [SMALL_STATE(5771)] = 165731, - [SMALL_STATE(5772)] = 165739, - [SMALL_STATE(5773)] = 165747, - [SMALL_STATE(5774)] = 165755, - [SMALL_STATE(5775)] = 165763, - [SMALL_STATE(5776)] = 165771, - [SMALL_STATE(5777)] = 165779, - [SMALL_STATE(5778)] = 165787, - [SMALL_STATE(5779)] = 165795, - [SMALL_STATE(5780)] = 165803, - [SMALL_STATE(5781)] = 165811, - [SMALL_STATE(5782)] = 165819, - [SMALL_STATE(5783)] = 165827, - [SMALL_STATE(5784)] = 165835, - [SMALL_STATE(5785)] = 165843, - [SMALL_STATE(5786)] = 165851, - [SMALL_STATE(5787)] = 165859, - [SMALL_STATE(5788)] = 165867, - [SMALL_STATE(5789)] = 165875, - [SMALL_STATE(5790)] = 165883, - [SMALL_STATE(5791)] = 165891, - [SMALL_STATE(5792)] = 165899, - [SMALL_STATE(5793)] = 165907, - [SMALL_STATE(5794)] = 165915, - [SMALL_STATE(5795)] = 165923, - [SMALL_STATE(5796)] = 165931, - [SMALL_STATE(5797)] = 165939, - [SMALL_STATE(5798)] = 165947, - [SMALL_STATE(5799)] = 165955, - [SMALL_STATE(5800)] = 165963, - [SMALL_STATE(5801)] = 165971, - [SMALL_STATE(5802)] = 165979, - [SMALL_STATE(5803)] = 165987, - [SMALL_STATE(5804)] = 165995, - [SMALL_STATE(5805)] = 166003, - [SMALL_STATE(5806)] = 166011, - [SMALL_STATE(5807)] = 166019, - [SMALL_STATE(5808)] = 166027, - [SMALL_STATE(5809)] = 166035, - [SMALL_STATE(5810)] = 166043, - [SMALL_STATE(5811)] = 166051, - [SMALL_STATE(5812)] = 166059, - [SMALL_STATE(5813)] = 166067, - [SMALL_STATE(5814)] = 166075, - [SMALL_STATE(5815)] = 166083, - [SMALL_STATE(5816)] = 166091, - [SMALL_STATE(5817)] = 166099, - [SMALL_STATE(5818)] = 166107, - [SMALL_STATE(5819)] = 166115, - [SMALL_STATE(5820)] = 166123, - [SMALL_STATE(5821)] = 166131, - [SMALL_STATE(5822)] = 166139, - [SMALL_STATE(5823)] = 166147, - [SMALL_STATE(5824)] = 166155, - [SMALL_STATE(5825)] = 166163, - [SMALL_STATE(5826)] = 166171, - [SMALL_STATE(5827)] = 166179, - [SMALL_STATE(5828)] = 166187, - [SMALL_STATE(5829)] = 166195, - [SMALL_STATE(5830)] = 166203, - [SMALL_STATE(5831)] = 166211, - [SMALL_STATE(5832)] = 166219, - [SMALL_STATE(5833)] = 166227, - [SMALL_STATE(5834)] = 166235, - [SMALL_STATE(5835)] = 166243, - [SMALL_STATE(5836)] = 166251, - [SMALL_STATE(5837)] = 166259, - [SMALL_STATE(5838)] = 166269, - [SMALL_STATE(5839)] = 166277, - [SMALL_STATE(5840)] = 166285, - [SMALL_STATE(5841)] = 166293, - [SMALL_STATE(5842)] = 166301, - [SMALL_STATE(5843)] = 166309, - [SMALL_STATE(5844)] = 166317, - [SMALL_STATE(5845)] = 166325, - [SMALL_STATE(5846)] = 166333, - [SMALL_STATE(5847)] = 166341, - [SMALL_STATE(5848)] = 166349, - [SMALL_STATE(5849)] = 166357, - [SMALL_STATE(5850)] = 166365, - [SMALL_STATE(5851)] = 166373, - [SMALL_STATE(5852)] = 166381, - [SMALL_STATE(5853)] = 166389, - [SMALL_STATE(5854)] = 166397, - [SMALL_STATE(5855)] = 166405, - [SMALL_STATE(5856)] = 166413, - [SMALL_STATE(5857)] = 166421, - [SMALL_STATE(5858)] = 166429, - [SMALL_STATE(5859)] = 166437, - [SMALL_STATE(5860)] = 166445, - [SMALL_STATE(5861)] = 166453, - [SMALL_STATE(5862)] = 166461, - [SMALL_STATE(5863)] = 166469, - [SMALL_STATE(5864)] = 166477, - [SMALL_STATE(5865)] = 166485, - [SMALL_STATE(5866)] = 166493, - [SMALL_STATE(5867)] = 166501, - [SMALL_STATE(5868)] = 166509, - [SMALL_STATE(5869)] = 166517, - [SMALL_STATE(5870)] = 166525, - [SMALL_STATE(5871)] = 166533, - [SMALL_STATE(5872)] = 166541, - [SMALL_STATE(5873)] = 166549, - [SMALL_STATE(5874)] = 166557, - [SMALL_STATE(5875)] = 166565, - [SMALL_STATE(5876)] = 166573, - [SMALL_STATE(5877)] = 166581, - [SMALL_STATE(5878)] = 166589, - [SMALL_STATE(5879)] = 166597, - [SMALL_STATE(5880)] = 166605, - [SMALL_STATE(5881)] = 166613, + [SMALL_STATE(2741)] = 111247, + [SMALL_STATE(2742)] = 111300, + [SMALL_STATE(2743)] = 111353, + [SMALL_STATE(2744)] = 111406, + [SMALL_STATE(2745)] = 111459, + [SMALL_STATE(2746)] = 111512, + [SMALL_STATE(2747)] = 111565, + [SMALL_STATE(2748)] = 111618, + [SMALL_STATE(2749)] = 111671, + [SMALL_STATE(2750)] = 111724, + [SMALL_STATE(2751)] = 111777, + [SMALL_STATE(2752)] = 111830, + [SMALL_STATE(2753)] = 111883, + [SMALL_STATE(2754)] = 111936, + [SMALL_STATE(2755)] = 111989, + [SMALL_STATE(2756)] = 112042, + [SMALL_STATE(2757)] = 112095, + [SMALL_STATE(2758)] = 112148, + [SMALL_STATE(2759)] = 112201, + [SMALL_STATE(2760)] = 112254, + [SMALL_STATE(2761)] = 112307, + [SMALL_STATE(2762)] = 112356, + [SMALL_STATE(2763)] = 112409, + [SMALL_STATE(2764)] = 112462, + [SMALL_STATE(2765)] = 112515, + [SMALL_STATE(2766)] = 112568, + [SMALL_STATE(2767)] = 112631, + [SMALL_STATE(2768)] = 112694, + [SMALL_STATE(2769)] = 112747, + [SMALL_STATE(2770)] = 112801, + [SMALL_STATE(2771)] = 112881, + [SMALL_STATE(2772)] = 112945, + [SMALL_STATE(2773)] = 112999, + [SMALL_STATE(2774)] = 113063, + [SMALL_STATE(2775)] = 113123, + [SMALL_STATE(2776)] = 113177, + [SMALL_STATE(2777)] = 113231, + [SMALL_STATE(2778)] = 113285, + [SMALL_STATE(2779)] = 113339, + [SMALL_STATE(2780)] = 113393, + [SMALL_STATE(2781)] = 113447, + [SMALL_STATE(2782)] = 113507, + [SMALL_STATE(2783)] = 113561, + [SMALL_STATE(2784)] = 113615, + [SMALL_STATE(2785)] = 113695, + [SMALL_STATE(2786)] = 113775, + [SMALL_STATE(2787)] = 113839, + [SMALL_STATE(2788)] = 113919, + [SMALL_STATE(2789)] = 113999, + [SMALL_STATE(2790)] = 114056, + [SMALL_STATE(2791)] = 114097, + [SMALL_STATE(2792)] = 114154, + [SMALL_STATE(2793)] = 114211, + [SMALL_STATE(2794)] = 114268, + [SMALL_STATE(2795)] = 114319, + [SMALL_STATE(2796)] = 114376, + [SMALL_STATE(2797)] = 114429, + [SMALL_STATE(2798)] = 114486, + [SMALL_STATE(2799)] = 114543, + [SMALL_STATE(2800)] = 114596, + [SMALL_STATE(2801)] = 114653, + [SMALL_STATE(2802)] = 114710, + [SMALL_STATE(2803)] = 114751, + [SMALL_STATE(2804)] = 114808, + [SMALL_STATE(2805)] = 114849, + [SMALL_STATE(2806)] = 114906, + [SMALL_STATE(2807)] = 114947, + [SMALL_STATE(2808)] = 115004, + [SMALL_STATE(2809)] = 115061, + [SMALL_STATE(2810)] = 115118, + [SMALL_STATE(2811)] = 115159, + [SMALL_STATE(2812)] = 115216, + [SMALL_STATE(2813)] = 115259, + [SMALL_STATE(2814)] = 115316, + [SMALL_STATE(2815)] = 115366, + [SMALL_STATE(2816)] = 115416, + [SMALL_STATE(2817)] = 115464, + [SMALL_STATE(2818)] = 115512, + [SMALL_STATE(2819)] = 115560, + [SMALL_STATE(2820)] = 115608, + [SMALL_STATE(2821)] = 115656, + [SMALL_STATE(2822)] = 115704, + [SMALL_STATE(2823)] = 115752, + [SMALL_STATE(2824)] = 115800, + [SMALL_STATE(2825)] = 115848, + [SMALL_STATE(2826)] = 115896, + [SMALL_STATE(2827)] = 115944, + [SMALL_STATE(2828)] = 115992, + [SMALL_STATE(2829)] = 116040, + [SMALL_STATE(2830)] = 116090, + [SMALL_STATE(2831)] = 116138, + [SMALL_STATE(2832)] = 116186, + [SMALL_STATE(2833)] = 116234, + [SMALL_STATE(2834)] = 116282, + [SMALL_STATE(2835)] = 116330, + [SMALL_STATE(2836)] = 116378, + [SMALL_STATE(2837)] = 116426, + [SMALL_STATE(2838)] = 116474, + [SMALL_STATE(2839)] = 116522, + [SMALL_STATE(2840)] = 116570, + [SMALL_STATE(2841)] = 116618, + [SMALL_STATE(2842)] = 116666, + [SMALL_STATE(2843)] = 116714, + [SMALL_STATE(2844)] = 116764, + [SMALL_STATE(2845)] = 116812, + [SMALL_STATE(2846)] = 116860, + [SMALL_STATE(2847)] = 116908, + [SMALL_STATE(2848)] = 116958, + [SMALL_STATE(2849)] = 117006, + [SMALL_STATE(2850)] = 117054, + [SMALL_STATE(2851)] = 117104, + [SMALL_STATE(2852)] = 117154, + [SMALL_STATE(2853)] = 117202, + [SMALL_STATE(2854)] = 117252, + [SMALL_STATE(2855)] = 117300, + [SMALL_STATE(2856)] = 117348, + [SMALL_STATE(2857)] = 117396, + [SMALL_STATE(2858)] = 117446, + [SMALL_STATE(2859)] = 117494, + [SMALL_STATE(2860)] = 117542, + [SMALL_STATE(2861)] = 117590, + [SMALL_STATE(2862)] = 117638, + [SMALL_STATE(2863)] = 117688, + [SMALL_STATE(2864)] = 117736, + [SMALL_STATE(2865)] = 117784, + [SMALL_STATE(2866)] = 117834, + [SMALL_STATE(2867)] = 117882, + [SMALL_STATE(2868)] = 117930, + [SMALL_STATE(2869)] = 117980, + [SMALL_STATE(2870)] = 118028, + [SMALL_STATE(2871)] = 118078, + [SMALL_STATE(2872)] = 118126, + [SMALL_STATE(2873)] = 118176, + [SMALL_STATE(2874)] = 118224, + [SMALL_STATE(2875)] = 118272, + [SMALL_STATE(2876)] = 118307, + [SMALL_STATE(2877)] = 118348, + [SMALL_STATE(2878)] = 118389, + [SMALL_STATE(2879)] = 118430, + [SMALL_STATE(2880)] = 118458, + [SMALL_STATE(2881)] = 118486, + [SMALL_STATE(2882)] = 118514, + [SMALL_STATE(2883)] = 118542, + [SMALL_STATE(2884)] = 118570, + [SMALL_STATE(2885)] = 118598, + [SMALL_STATE(2886)] = 118626, + [SMALL_STATE(2887)] = 118654, + [SMALL_STATE(2888)] = 118682, + [SMALL_STATE(2889)] = 118710, + [SMALL_STATE(2890)] = 118738, + [SMALL_STATE(2891)] = 118766, + [SMALL_STATE(2892)] = 118794, + [SMALL_STATE(2893)] = 118822, + [SMALL_STATE(2894)] = 118850, + [SMALL_STATE(2895)] = 118878, + [SMALL_STATE(2896)] = 118906, + [SMALL_STATE(2897)] = 118934, + [SMALL_STATE(2898)] = 118962, + [SMALL_STATE(2899)] = 118990, + [SMALL_STATE(2900)] = 119018, + [SMALL_STATE(2901)] = 119046, + [SMALL_STATE(2902)] = 119074, + [SMALL_STATE(2903)] = 119102, + [SMALL_STATE(2904)] = 119130, + [SMALL_STATE(2905)] = 119158, + [SMALL_STATE(2906)] = 119186, + [SMALL_STATE(2907)] = 119214, + [SMALL_STATE(2908)] = 119242, + [SMALL_STATE(2909)] = 119270, + [SMALL_STATE(2910)] = 119298, + [SMALL_STATE(2911)] = 119326, + [SMALL_STATE(2912)] = 119354, + [SMALL_STATE(2913)] = 119382, + [SMALL_STATE(2914)] = 119409, + [SMALL_STATE(2915)] = 119436, + [SMALL_STATE(2916)] = 119462, + [SMALL_STATE(2917)] = 119492, + [SMALL_STATE(2918)] = 119518, + [SMALL_STATE(2919)] = 119544, + [SMALL_STATE(2920)] = 119570, + [SMALL_STATE(2921)] = 119596, + [SMALL_STATE(2922)] = 119646, + [SMALL_STATE(2923)] = 119676, + [SMALL_STATE(2924)] = 119708, + [SMALL_STATE(2925)] = 119736, + [SMALL_STATE(2926)] = 119774, + [SMALL_STATE(2927)] = 119800, + [SMALL_STATE(2928)] = 119826, + [SMALL_STATE(2929)] = 119852, + [SMALL_STATE(2930)] = 119880, + [SMALL_STATE(2931)] = 119906, + [SMALL_STATE(2932)] = 119944, + [SMALL_STATE(2933)] = 119978, + [SMALL_STATE(2934)] = 120016, + [SMALL_STATE(2935)] = 120041, + [SMALL_STATE(2936)] = 120066, + [SMALL_STATE(2937)] = 120091, + [SMALL_STATE(2938)] = 120122, + [SMALL_STATE(2939)] = 120149, + [SMALL_STATE(2940)] = 120178, + [SMALL_STATE(2941)] = 120203, + [SMALL_STATE(2942)] = 120227, + [SMALL_STATE(2943)] = 120261, + [SMALL_STATE(2944)] = 120285, + [SMALL_STATE(2945)] = 120319, + [SMALL_STATE(2946)] = 120353, + [SMALL_STATE(2947)] = 120377, + [SMALL_STATE(2948)] = 120401, + [SMALL_STATE(2949)] = 120433, + [SMALL_STATE(2950)] = 120461, + [SMALL_STATE(2951)] = 120485, + [SMALL_STATE(2952)] = 120519, + [SMALL_STATE(2953)] = 120543, + [SMALL_STATE(2954)] = 120567, + [SMALL_STATE(2955)] = 120591, + [SMALL_STATE(2956)] = 120615, + [SMALL_STATE(2957)] = 120639, + [SMALL_STATE(2958)] = 120663, + [SMALL_STATE(2959)] = 120687, + [SMALL_STATE(2960)] = 120711, + [SMALL_STATE(2961)] = 120735, + [SMALL_STATE(2962)] = 120759, + [SMALL_STATE(2963)] = 120783, + [SMALL_STATE(2964)] = 120807, + [SMALL_STATE(2965)] = 120831, + [SMALL_STATE(2966)] = 120855, + [SMALL_STATE(2967)] = 120879, + [SMALL_STATE(2968)] = 120903, + [SMALL_STATE(2969)] = 120937, + [SMALL_STATE(2970)] = 120961, + [SMALL_STATE(2971)] = 120985, + [SMALL_STATE(2972)] = 121011, + [SMALL_STATE(2973)] = 121035, + [SMALL_STATE(2974)] = 121059, + [SMALL_STATE(2975)] = 121091, + [SMALL_STATE(2976)] = 121115, + [SMALL_STATE(2977)] = 121139, + [SMALL_STATE(2978)] = 121173, + [SMALL_STATE(2979)] = 121197, + [SMALL_STATE(2980)] = 121219, + [SMALL_STATE(2981)] = 121241, + [SMALL_STATE(2982)] = 121267, + [SMALL_STATE(2983)] = 121301, + [SMALL_STATE(2984)] = 121325, + [SMALL_STATE(2985)] = 121359, + [SMALL_STATE(2986)] = 121393, + [SMALL_STATE(2987)] = 121415, + [SMALL_STATE(2988)] = 121439, + [SMALL_STATE(2989)] = 121463, + [SMALL_STATE(2990)] = 121487, + [SMALL_STATE(2991)] = 121511, + [SMALL_STATE(2992)] = 121535, + [SMALL_STATE(2993)] = 121559, + [SMALL_STATE(2994)] = 121583, + [SMALL_STATE(2995)] = 121607, + [SMALL_STATE(2996)] = 121631, + [SMALL_STATE(2997)] = 121663, + [SMALL_STATE(2998)] = 121687, + [SMALL_STATE(2999)] = 121711, + [SMALL_STATE(3000)] = 121735, + [SMALL_STATE(3001)] = 121769, + [SMALL_STATE(3002)] = 121793, + [SMALL_STATE(3003)] = 121827, + [SMALL_STATE(3004)] = 121849, + [SMALL_STATE(3005)] = 121871, + [SMALL_STATE(3006)] = 121895, + [SMALL_STATE(3007)] = 121929, + [SMALL_STATE(3008)] = 121953, + [SMALL_STATE(3009)] = 121987, + [SMALL_STATE(3010)] = 122009, + [SMALL_STATE(3011)] = 122033, + [SMALL_STATE(3012)] = 122057, + [SMALL_STATE(3013)] = 122081, + [SMALL_STATE(3014)] = 122103, + [SMALL_STATE(3015)] = 122127, + [SMALL_STATE(3016)] = 122151, + [SMALL_STATE(3017)] = 122183, + [SMALL_STATE(3018)] = 122207, + [SMALL_STATE(3019)] = 122231, + [SMALL_STATE(3020)] = 122255, + [SMALL_STATE(3021)] = 122277, + [SMALL_STATE(3022)] = 122301, + [SMALL_STATE(3023)] = 122325, + [SMALL_STATE(3024)] = 122349, + [SMALL_STATE(3025)] = 122373, + [SMALL_STATE(3026)] = 122395, + [SMALL_STATE(3027)] = 122429, + [SMALL_STATE(3028)] = 122453, + [SMALL_STATE(3029)] = 122477, + [SMALL_STATE(3030)] = 122499, + [SMALL_STATE(3031)] = 122523, + [SMALL_STATE(3032)] = 122547, + [SMALL_STATE(3033)] = 122579, + [SMALL_STATE(3034)] = 122603, + [SMALL_STATE(3035)] = 122635, + [SMALL_STATE(3036)] = 122669, + [SMALL_STATE(3037)] = 122703, + [SMALL_STATE(3038)] = 122737, + [SMALL_STATE(3039)] = 122761, + [SMALL_STATE(3040)] = 122785, + [SMALL_STATE(3041)] = 122819, + [SMALL_STATE(3042)] = 122843, + [SMALL_STATE(3043)] = 122867, + [SMALL_STATE(3044)] = 122910, + [SMALL_STATE(3045)] = 122953, + [SMALL_STATE(3046)] = 122996, + [SMALL_STATE(3047)] = 123041, + [SMALL_STATE(3048)] = 123070, + [SMALL_STATE(3049)] = 123109, + [SMALL_STATE(3050)] = 123138, + [SMALL_STATE(3051)] = 123177, + [SMALL_STATE(3052)] = 123216, + [SMALL_STATE(3053)] = 123255, + [SMALL_STATE(3054)] = 123284, + [SMALL_STATE(3055)] = 123309, + [SMALL_STATE(3056)] = 123338, + [SMALL_STATE(3057)] = 123363, + [SMALL_STATE(3058)] = 123406, + [SMALL_STATE(3059)] = 123449, + [SMALL_STATE(3060)] = 123474, + [SMALL_STATE(3061)] = 123517, + [SMALL_STATE(3062)] = 123546, + [SMALL_STATE(3063)] = 123589, + [SMALL_STATE(3064)] = 123632, + [SMALL_STATE(3065)] = 123675, + [SMALL_STATE(3066)] = 123718, + [SMALL_STATE(3067)] = 123761, + [SMALL_STATE(3068)] = 123804, + [SMALL_STATE(3069)] = 123843, + [SMALL_STATE(3070)] = 123886, + [SMALL_STATE(3071)] = 123929, + [SMALL_STATE(3072)] = 123972, + [SMALL_STATE(3073)] = 124015, + [SMALL_STATE(3074)] = 124058, + [SMALL_STATE(3075)] = 124101, + [SMALL_STATE(3076)] = 124130, + [SMALL_STATE(3077)] = 124159, + [SMALL_STATE(3078)] = 124188, + [SMALL_STATE(3079)] = 124217, + [SMALL_STATE(3080)] = 124260, + [SMALL_STATE(3081)] = 124303, + [SMALL_STATE(3082)] = 124346, + [SMALL_STATE(3083)] = 124389, + [SMALL_STATE(3084)] = 124432, + [SMALL_STATE(3085)] = 124452, + [SMALL_STATE(3086)] = 124488, + [SMALL_STATE(3087)] = 124510, + [SMALL_STATE(3088)] = 124548, + [SMALL_STATE(3089)] = 124570, + [SMALL_STATE(3090)] = 124592, + [SMALL_STATE(3091)] = 124614, + [SMALL_STATE(3092)] = 124638, + [SMALL_STATE(3093)] = 124660, + [SMALL_STATE(3094)] = 124682, + [SMALL_STATE(3095)] = 124704, + [SMALL_STATE(3096)] = 124732, + [SMALL_STATE(3097)] = 124756, + [SMALL_STATE(3098)] = 124792, + [SMALL_STATE(3099)] = 124828, + [SMALL_STATE(3100)] = 124850, + [SMALL_STATE(3101)] = 124874, + [SMALL_STATE(3102)] = 124896, + [SMALL_STATE(3103)] = 124918, + [SMALL_STATE(3104)] = 124940, + [SMALL_STATE(3105)] = 124962, + [SMALL_STATE(3106)] = 124998, + [SMALL_STATE(3107)] = 125022, + [SMALL_STATE(3108)] = 125042, + [SMALL_STATE(3109)] = 125062, + [SMALL_STATE(3110)] = 125082, + [SMALL_STATE(3111)] = 125102, + [SMALL_STATE(3112)] = 125138, + [SMALL_STATE(3113)] = 125158, + [SMALL_STATE(3114)] = 125178, + [SMALL_STATE(3115)] = 125198, + [SMALL_STATE(3116)] = 125218, + [SMALL_STATE(3117)] = 125238, + [SMALL_STATE(3118)] = 125258, + [SMALL_STATE(3119)] = 125278, + [SMALL_STATE(3120)] = 125298, + [SMALL_STATE(3121)] = 125318, + [SMALL_STATE(3122)] = 125338, + [SMALL_STATE(3123)] = 125358, + [SMALL_STATE(3124)] = 125378, + [SMALL_STATE(3125)] = 125404, + [SMALL_STATE(3126)] = 125424, + [SMALL_STATE(3127)] = 125444, + [SMALL_STATE(3128)] = 125464, + [SMALL_STATE(3129)] = 125484, + [SMALL_STATE(3130)] = 125512, + [SMALL_STATE(3131)] = 125532, + [SMALL_STATE(3132)] = 125552, + [SMALL_STATE(3133)] = 125572, + [SMALL_STATE(3134)] = 125592, + [SMALL_STATE(3135)] = 125612, + [SMALL_STATE(3136)] = 125648, + [SMALL_STATE(3137)] = 125668, + [SMALL_STATE(3138)] = 125688, + [SMALL_STATE(3139)] = 125708, + [SMALL_STATE(3140)] = 125728, + [SMALL_STATE(3141)] = 125748, + [SMALL_STATE(3142)] = 125768, + [SMALL_STATE(3143)] = 125788, + [SMALL_STATE(3144)] = 125824, + [SMALL_STATE(3145)] = 125860, + [SMALL_STATE(3146)] = 125888, + [SMALL_STATE(3147)] = 125916, + [SMALL_STATE(3148)] = 125952, + [SMALL_STATE(3149)] = 125980, + [SMALL_STATE(3150)] = 126008, + [SMALL_STATE(3151)] = 126032, + [SMALL_STATE(3152)] = 126058, + [SMALL_STATE(3153)] = 126094, + [SMALL_STATE(3154)] = 126122, + [SMALL_STATE(3155)] = 126150, + [SMALL_STATE(3156)] = 126176, + [SMALL_STATE(3157)] = 126196, + [SMALL_STATE(3158)] = 126233, + [SMALL_STATE(3159)] = 126258, + [SMALL_STATE(3160)] = 126291, + [SMALL_STATE(3161)] = 126328, + [SMALL_STATE(3162)] = 126365, + [SMALL_STATE(3163)] = 126402, + [SMALL_STATE(3164)] = 126439, + [SMALL_STATE(3165)] = 126476, + [SMALL_STATE(3166)] = 126497, + [SMALL_STATE(3167)] = 126520, + [SMALL_STATE(3168)] = 126549, + [SMALL_STATE(3169)] = 126570, + [SMALL_STATE(3170)] = 126607, + [SMALL_STATE(3171)] = 126644, + [SMALL_STATE(3172)] = 126675, + [SMALL_STATE(3173)] = 126712, + [SMALL_STATE(3174)] = 126745, + [SMALL_STATE(3175)] = 126768, + [SMALL_STATE(3176)] = 126797, + [SMALL_STATE(3177)] = 126834, + [SMALL_STATE(3178)] = 126873, + [SMALL_STATE(3179)] = 126910, + [SMALL_STATE(3180)] = 126931, + [SMALL_STATE(3181)] = 126968, + [SMALL_STATE(3182)] = 126993, + [SMALL_STATE(3183)] = 127030, + [SMALL_STATE(3184)] = 127067, + [SMALL_STATE(3185)] = 127096, + [SMALL_STATE(3186)] = 127133, + [SMALL_STATE(3187)] = 127162, + [SMALL_STATE(3188)] = 127199, + [SMALL_STATE(3189)] = 127232, + [SMALL_STATE(3190)] = 127263, + [SMALL_STATE(3191)] = 127296, + [SMALL_STATE(3192)] = 127333, + [SMALL_STATE(3193)] = 127370, + [SMALL_STATE(3194)] = 127391, + [SMALL_STATE(3195)] = 127424, + [SMALL_STATE(3196)] = 127457, + [SMALL_STATE(3197)] = 127488, + [SMALL_STATE(3198)] = 127519, + [SMALL_STATE(3199)] = 127550, + [SMALL_STATE(3200)] = 127587, + [SMALL_STATE(3201)] = 127610, + [SMALL_STATE(3202)] = 127631, + [SMALL_STATE(3203)] = 127664, + [SMALL_STATE(3204)] = 127697, + [SMALL_STATE(3205)] = 127718, + [SMALL_STATE(3206)] = 127755, + [SMALL_STATE(3207)] = 127776, + [SMALL_STATE(3208)] = 127799, + [SMALL_STATE(3209)] = 127836, + [SMALL_STATE(3210)] = 127873, + [SMALL_STATE(3211)] = 127906, + [SMALL_STATE(3212)] = 127943, + [SMALL_STATE(3213)] = 127966, + [SMALL_STATE(3214)] = 127999, + [SMALL_STATE(3215)] = 128028, + [SMALL_STATE(3216)] = 128048, + [SMALL_STATE(3217)] = 128072, + [SMALL_STATE(3218)] = 128092, + [SMALL_STATE(3219)] = 128112, + [SMALL_STATE(3220)] = 128134, + [SMALL_STATE(3221)] = 128156, + [SMALL_STATE(3222)] = 128178, + [SMALL_STATE(3223)] = 128202, + [SMALL_STATE(3224)] = 128220, + [SMALL_STATE(3225)] = 128238, + [SMALL_STATE(3226)] = 128256, + [SMALL_STATE(3227)] = 128274, + [SMALL_STATE(3228)] = 128292, + [SMALL_STATE(3229)] = 128312, + [SMALL_STATE(3230)] = 128332, + [SMALL_STATE(3231)] = 128350, + [SMALL_STATE(3232)] = 128368, + [SMALL_STATE(3233)] = 128388, + [SMALL_STATE(3234)] = 128408, + [SMALL_STATE(3235)] = 128426, + [SMALL_STATE(3236)] = 128444, + [SMALL_STATE(3237)] = 128462, + [SMALL_STATE(3238)] = 128480, + [SMALL_STATE(3239)] = 128498, + [SMALL_STATE(3240)] = 128518, + [SMALL_STATE(3241)] = 128538, + [SMALL_STATE(3242)] = 128558, + [SMALL_STATE(3243)] = 128582, + [SMALL_STATE(3244)] = 128602, + [SMALL_STATE(3245)] = 128626, + [SMALL_STATE(3246)] = 128646, + [SMALL_STATE(3247)] = 128666, + [SMALL_STATE(3248)] = 128684, + [SMALL_STATE(3249)] = 128706, + [SMALL_STATE(3250)] = 128726, + [SMALL_STATE(3251)] = 128746, + [SMALL_STATE(3252)] = 128770, + [SMALL_STATE(3253)] = 128790, + [SMALL_STATE(3254)] = 128808, + [SMALL_STATE(3255)] = 128830, + [SMALL_STATE(3256)] = 128850, + [SMALL_STATE(3257)] = 128886, + [SMALL_STATE(3258)] = 128906, + [SMALL_STATE(3259)] = 128926, + [SMALL_STATE(3260)] = 128946, + [SMALL_STATE(3261)] = 128966, + [SMALL_STATE(3262)] = 128986, + [SMALL_STATE(3263)] = 129012, + [SMALL_STATE(3264)] = 129032, + [SMALL_STATE(3265)] = 129052, + [SMALL_STATE(3266)] = 129072, + [SMALL_STATE(3267)] = 129092, + [SMALL_STATE(3268)] = 129116, + [SMALL_STATE(3269)] = 129140, + [SMALL_STATE(3270)] = 129160, + [SMALL_STATE(3271)] = 129180, + [SMALL_STATE(3272)] = 129200, + [SMALL_STATE(3273)] = 129222, + [SMALL_STATE(3274)] = 129242, + [SMALL_STATE(3275)] = 129262, + [SMALL_STATE(3276)] = 129286, + [SMALL_STATE(3277)] = 129310, + [SMALL_STATE(3278)] = 129330, + [SMALL_STATE(3279)] = 129352, + [SMALL_STATE(3280)] = 129378, + [SMALL_STATE(3281)] = 129398, + [SMALL_STATE(3282)] = 129418, + [SMALL_STATE(3283)] = 129438, + [SMALL_STATE(3284)] = 129460, + [SMALL_STATE(3285)] = 129480, + [SMALL_STATE(3286)] = 129500, + [SMALL_STATE(3287)] = 129520, + [SMALL_STATE(3288)] = 129537, + [SMALL_STATE(3289)] = 129556, + [SMALL_STATE(3290)] = 129573, + [SMALL_STATE(3291)] = 129608, + [SMALL_STATE(3292)] = 129643, + [SMALL_STATE(3293)] = 129676, + [SMALL_STATE(3294)] = 129711, + [SMALL_STATE(3295)] = 129746, + [SMALL_STATE(3296)] = 129779, + [SMALL_STATE(3297)] = 129810, + [SMALL_STATE(3298)] = 129845, + [SMALL_STATE(3299)] = 129880, + [SMALL_STATE(3300)] = 129901, + [SMALL_STATE(3301)] = 129936, + [SMALL_STATE(3302)] = 129955, + [SMALL_STATE(3303)] = 129978, + [SMALL_STATE(3304)] = 130001, + [SMALL_STATE(3305)] = 130022, + [SMALL_STATE(3306)] = 130041, + [SMALL_STATE(3307)] = 130066, + [SMALL_STATE(3308)] = 130101, + [SMALL_STATE(3309)] = 130136, + [SMALL_STATE(3310)] = 130153, + [SMALL_STATE(3311)] = 130188, + [SMALL_STATE(3312)] = 130207, + [SMALL_STATE(3313)] = 130238, + [SMALL_STATE(3314)] = 130267, + [SMALL_STATE(3315)] = 130298, + [SMALL_STATE(3316)] = 130319, + [SMALL_STATE(3317)] = 130354, + [SMALL_STATE(3318)] = 130371, + [SMALL_STATE(3319)] = 130399, + [SMALL_STATE(3320)] = 130415, + [SMALL_STATE(3321)] = 130443, + [SMALL_STATE(3322)] = 130471, + [SMALL_STATE(3323)] = 130487, + [SMALL_STATE(3324)] = 130515, + [SMALL_STATE(3325)] = 130543, + [SMALL_STATE(3326)] = 130559, + [SMALL_STATE(3327)] = 130587, + [SMALL_STATE(3328)] = 130603, + [SMALL_STATE(3329)] = 130619, + [SMALL_STATE(3330)] = 130635, + [SMALL_STATE(3331)] = 130655, + [SMALL_STATE(3332)] = 130671, + [SMALL_STATE(3333)] = 130687, + [SMALL_STATE(3334)] = 130715, + [SMALL_STATE(3335)] = 130743, + [SMALL_STATE(3336)] = 130765, + [SMALL_STATE(3337)] = 130781, + [SMALL_STATE(3338)] = 130797, + [SMALL_STATE(3339)] = 130817, + [SMALL_STATE(3340)] = 130835, + [SMALL_STATE(3341)] = 130859, + [SMALL_STATE(3342)] = 130891, + [SMALL_STATE(3343)] = 130919, + [SMALL_STATE(3344)] = 130947, + [SMALL_STATE(3345)] = 130963, + [SMALL_STATE(3346)] = 130985, + [SMALL_STATE(3347)] = 131001, + [SMALL_STATE(3348)] = 131019, + [SMALL_STATE(3349)] = 131047, + [SMALL_STATE(3350)] = 131079, + [SMALL_STATE(3351)] = 131107, + [SMALL_STATE(3352)] = 131123, + [SMALL_STATE(3353)] = 131139, + [SMALL_STATE(3354)] = 131165, + [SMALL_STATE(3355)] = 131187, + [SMALL_STATE(3356)] = 131203, + [SMALL_STATE(3357)] = 131225, + [SMALL_STATE(3358)] = 131241, + [SMALL_STATE(3359)] = 131267, + [SMALL_STATE(3360)] = 131283, + [SMALL_STATE(3361)] = 131309, + [SMALL_STATE(3362)] = 131329, + [SMALL_STATE(3363)] = 131361, + [SMALL_STATE(3364)] = 131377, + [SMALL_STATE(3365)] = 131403, + [SMALL_STATE(3366)] = 131435, + [SMALL_STATE(3367)] = 131451, + [SMALL_STATE(3368)] = 131477, + [SMALL_STATE(3369)] = 131503, + [SMALL_STATE(3370)] = 131531, + [SMALL_STATE(3371)] = 131557, + [SMALL_STATE(3372)] = 131573, + [SMALL_STATE(3373)] = 131591, + [SMALL_STATE(3374)] = 131607, + [SMALL_STATE(3375)] = 131633, + [SMALL_STATE(3376)] = 131651, + [SMALL_STATE(3377)] = 131679, + [SMALL_STATE(3378)] = 131695, + [SMALL_STATE(3379)] = 131711, + [SMALL_STATE(3380)] = 131739, + [SMALL_STATE(3381)] = 131769, + [SMALL_STATE(3382)] = 131801, + [SMALL_STATE(3383)] = 131819, + [SMALL_STATE(3384)] = 131835, + [SMALL_STATE(3385)] = 131857, + [SMALL_STATE(3386)] = 131883, + [SMALL_STATE(3387)] = 131899, + [SMALL_STATE(3388)] = 131927, + [SMALL_STATE(3389)] = 131949, + [SMALL_STATE(3390)] = 131981, + [SMALL_STATE(3391)] = 131997, + [SMALL_STATE(3392)] = 132025, + [SMALL_STATE(3393)] = 132053, + [SMALL_STATE(3394)] = 132081, + [SMALL_STATE(3395)] = 132109, + [SMALL_STATE(3396)] = 132141, + [SMALL_STATE(3397)] = 132173, + [SMALL_STATE(3398)] = 132201, + [SMALL_STATE(3399)] = 132217, + [SMALL_STATE(3400)] = 132243, + [SMALL_STATE(3401)] = 132271, + [SMALL_STATE(3402)] = 132287, + [SMALL_STATE(3403)] = 132315, + [SMALL_STATE(3404)] = 132343, + [SMALL_STATE(3405)] = 132375, + [SMALL_STATE(3406)] = 132403, + [SMALL_STATE(3407)] = 132419, + [SMALL_STATE(3408)] = 132451, + [SMALL_STATE(3409)] = 132479, + [SMALL_STATE(3410)] = 132495, + [SMALL_STATE(3411)] = 132511, + [SMALL_STATE(3412)] = 132543, + [SMALL_STATE(3413)] = 132565, + [SMALL_STATE(3414)] = 132597, + [SMALL_STATE(3415)] = 132625, + [SMALL_STATE(3416)] = 132653, + [SMALL_STATE(3417)] = 132685, + [SMALL_STATE(3418)] = 132711, + [SMALL_STATE(3419)] = 132739, + [SMALL_STATE(3420)] = 132767, + [SMALL_STATE(3421)] = 132783, + [SMALL_STATE(3422)] = 132815, + [SMALL_STATE(3423)] = 132843, + [SMALL_STATE(3424)] = 132871, + [SMALL_STATE(3425)] = 132903, + [SMALL_STATE(3426)] = 132931, + [SMALL_STATE(3427)] = 132959, + [SMALL_STATE(3428)] = 132985, + [SMALL_STATE(3429)] = 133013, + [SMALL_STATE(3430)] = 133041, + [SMALL_STATE(3431)] = 133057, + [SMALL_STATE(3432)] = 133073, + [SMALL_STATE(3433)] = 133089, + [SMALL_STATE(3434)] = 133111, + [SMALL_STATE(3435)] = 133143, + [SMALL_STATE(3436)] = 133175, + [SMALL_STATE(3437)] = 133193, + [SMALL_STATE(3438)] = 133209, + [SMALL_STATE(3439)] = 133241, + [SMALL_STATE(3440)] = 133257, + [SMALL_STATE(3441)] = 133285, + [SMALL_STATE(3442)] = 133317, + [SMALL_STATE(3443)] = 133345, + [SMALL_STATE(3444)] = 133363, + [SMALL_STATE(3445)] = 133379, + [SMALL_STATE(3446)] = 133395, + [SMALL_STATE(3447)] = 133423, + [SMALL_STATE(3448)] = 133445, + [SMALL_STATE(3449)] = 133461, + [SMALL_STATE(3450)] = 133489, + [SMALL_STATE(3451)] = 133507, + [SMALL_STATE(3452)] = 133535, + [SMALL_STATE(3453)] = 133563, + [SMALL_STATE(3454)] = 133579, + [SMALL_STATE(3455)] = 133595, + [SMALL_STATE(3456)] = 133611, + [SMALL_STATE(3457)] = 133627, + [SMALL_STATE(3458)] = 133643, + [SMALL_STATE(3459)] = 133671, + [SMALL_STATE(3460)] = 133699, + [SMALL_STATE(3461)] = 133727, + [SMALL_STATE(3462)] = 133755, + [SMALL_STATE(3463)] = 133783, + [SMALL_STATE(3464)] = 133799, + [SMALL_STATE(3465)] = 133820, + [SMALL_STATE(3466)] = 133843, + [SMALL_STATE(3467)] = 133864, + [SMALL_STATE(3468)] = 133885, + [SMALL_STATE(3469)] = 133908, + [SMALL_STATE(3470)] = 133933, + [SMALL_STATE(3471)] = 133956, + [SMALL_STATE(3472)] = 133975, + [SMALL_STATE(3473)] = 134004, + [SMALL_STATE(3474)] = 134029, + [SMALL_STATE(3475)] = 134058, + [SMALL_STATE(3476)] = 134083, + [SMALL_STATE(3477)] = 134108, + [SMALL_STATE(3478)] = 134133, + [SMALL_STATE(3479)] = 134158, + [SMALL_STATE(3480)] = 134183, + [SMALL_STATE(3481)] = 134208, + [SMALL_STATE(3482)] = 134237, + [SMALL_STATE(3483)] = 134252, + [SMALL_STATE(3484)] = 134267, + [SMALL_STATE(3485)] = 134292, + [SMALL_STATE(3486)] = 134315, + [SMALL_STATE(3487)] = 134344, + [SMALL_STATE(3488)] = 134363, + [SMALL_STATE(3489)] = 134386, + [SMALL_STATE(3490)] = 134401, + [SMALL_STATE(3491)] = 134416, + [SMALL_STATE(3492)] = 134441, + [SMALL_STATE(3493)] = 134466, + [SMALL_STATE(3494)] = 134483, + [SMALL_STATE(3495)] = 134500, + [SMALL_STATE(3496)] = 134523, + [SMALL_STATE(3497)] = 134552, + [SMALL_STATE(3498)] = 134575, + [SMALL_STATE(3499)] = 134598, + [SMALL_STATE(3500)] = 134619, + [SMALL_STATE(3501)] = 134640, + [SMALL_STATE(3502)] = 134665, + [SMALL_STATE(3503)] = 134686, + [SMALL_STATE(3504)] = 134703, + [SMALL_STATE(3505)] = 134732, + [SMALL_STATE(3506)] = 134755, + [SMALL_STATE(3507)] = 134770, + [SMALL_STATE(3508)] = 134796, + [SMALL_STATE(3509)] = 134822, + [SMALL_STATE(3510)] = 134844, + [SMALL_STATE(3511)] = 134866, + [SMALL_STATE(3512)] = 134888, + [SMALL_STATE(3513)] = 134910, + [SMALL_STATE(3514)] = 134936, + [SMALL_STATE(3515)] = 134958, + [SMALL_STATE(3516)] = 134980, + [SMALL_STATE(3517)] = 135002, + [SMALL_STATE(3518)] = 135024, + [SMALL_STATE(3519)] = 135046, + [SMALL_STATE(3520)] = 135068, + [SMALL_STATE(3521)] = 135090, + [SMALL_STATE(3522)] = 135108, + [SMALL_STATE(3523)] = 135126, + [SMALL_STATE(3524)] = 135148, + [SMALL_STATE(3525)] = 135166, + [SMALL_STATE(3526)] = 135184, + [SMALL_STATE(3527)] = 135206, + [SMALL_STATE(3528)] = 135224, + [SMALL_STATE(3529)] = 135246, + [SMALL_STATE(3530)] = 135268, + [SMALL_STATE(3531)] = 135290, + [SMALL_STATE(3532)] = 135312, + [SMALL_STATE(3533)] = 135334, + [SMALL_STATE(3534)] = 135356, + [SMALL_STATE(3535)] = 135378, + [SMALL_STATE(3536)] = 135400, + [SMALL_STATE(3537)] = 135422, + [SMALL_STATE(3538)] = 135444, + [SMALL_STATE(3539)] = 135466, + [SMALL_STATE(3540)] = 135488, + [SMALL_STATE(3541)] = 135514, + [SMALL_STATE(3542)] = 135536, + [SMALL_STATE(3543)] = 135556, + [SMALL_STATE(3544)] = 135582, + [SMALL_STATE(3545)] = 135604, + [SMALL_STATE(3546)] = 135630, + [SMALL_STATE(3547)] = 135656, + [SMALL_STATE(3548)] = 135670, + [SMALL_STATE(3549)] = 135692, + [SMALL_STATE(3550)] = 135708, + [SMALL_STATE(3551)] = 135730, + [SMALL_STATE(3552)] = 135752, + [SMALL_STATE(3553)] = 135774, + [SMALL_STATE(3554)] = 135796, + [SMALL_STATE(3555)] = 135818, + [SMALL_STATE(3556)] = 135844, + [SMALL_STATE(3557)] = 135866, + [SMALL_STATE(3558)] = 135888, + [SMALL_STATE(3559)] = 135914, + [SMALL_STATE(3560)] = 135928, + [SMALL_STATE(3561)] = 135950, + [SMALL_STATE(3562)] = 135972, + [SMALL_STATE(3563)] = 135994, + [SMALL_STATE(3564)] = 136020, + [SMALL_STATE(3565)] = 136042, + [SMALL_STATE(3566)] = 136064, + [SMALL_STATE(3567)] = 136086, + [SMALL_STATE(3568)] = 136108, + [SMALL_STATE(3569)] = 136130, + [SMALL_STATE(3570)] = 136152, + [SMALL_STATE(3571)] = 136178, + [SMALL_STATE(3572)] = 136196, + [SMALL_STATE(3573)] = 136222, + [SMALL_STATE(3574)] = 136244, + [SMALL_STATE(3575)] = 136270, + [SMALL_STATE(3576)] = 136296, + [SMALL_STATE(3577)] = 136314, + [SMALL_STATE(3578)] = 136340, + [SMALL_STATE(3579)] = 136366, + [SMALL_STATE(3580)] = 136388, + [SMALL_STATE(3581)] = 136410, + [SMALL_STATE(3582)] = 136436, + [SMALL_STATE(3583)] = 136458, + [SMALL_STATE(3584)] = 136480, + [SMALL_STATE(3585)] = 136502, + [SMALL_STATE(3586)] = 136524, + [SMALL_STATE(3587)] = 136546, + [SMALL_STATE(3588)] = 136560, + [SMALL_STATE(3589)] = 136582, + [SMALL_STATE(3590)] = 136600, + [SMALL_STATE(3591)] = 136626, + [SMALL_STATE(3592)] = 136648, + [SMALL_STATE(3593)] = 136662, + [SMALL_STATE(3594)] = 136688, + [SMALL_STATE(3595)] = 136714, + [SMALL_STATE(3596)] = 136736, + [SMALL_STATE(3597)] = 136758, + [SMALL_STATE(3598)] = 136776, + [SMALL_STATE(3599)] = 136794, + [SMALL_STATE(3600)] = 136820, + [SMALL_STATE(3601)] = 136846, + [SMALL_STATE(3602)] = 136864, + [SMALL_STATE(3603)] = 136886, + [SMALL_STATE(3604)] = 136908, + [SMALL_STATE(3605)] = 136926, + [SMALL_STATE(3606)] = 136952, + [SMALL_STATE(3607)] = 136970, + [SMALL_STATE(3608)] = 136984, + [SMALL_STATE(3609)] = 137002, + [SMALL_STATE(3610)] = 137028, + [SMALL_STATE(3611)] = 137054, + [SMALL_STATE(3612)] = 137076, + [SMALL_STATE(3613)] = 137098, + [SMALL_STATE(3614)] = 137120, + [SMALL_STATE(3615)] = 137134, + [SMALL_STATE(3616)] = 137152, + [SMALL_STATE(3617)] = 137178, + [SMALL_STATE(3618)] = 137200, + [SMALL_STATE(3619)] = 137220, + [SMALL_STATE(3620)] = 137246, + [SMALL_STATE(3621)] = 137272, + [SMALL_STATE(3622)] = 137298, + [SMALL_STATE(3623)] = 137320, + [SMALL_STATE(3624)] = 137342, + [SMALL_STATE(3625)] = 137366, + [SMALL_STATE(3626)] = 137384, + [SMALL_STATE(3627)] = 137402, + [SMALL_STATE(3628)] = 137420, + [SMALL_STATE(3629)] = 137442, + [SMALL_STATE(3630)] = 137464, + [SMALL_STATE(3631)] = 137486, + [SMALL_STATE(3632)] = 137504, + [SMALL_STATE(3633)] = 137522, + [SMALL_STATE(3634)] = 137540, + [SMALL_STATE(3635)] = 137566, + [SMALL_STATE(3636)] = 137588, + [SMALL_STATE(3637)] = 137614, + [SMALL_STATE(3638)] = 137632, + [SMALL_STATE(3639)] = 137658, + [SMALL_STATE(3640)] = 137684, + [SMALL_STATE(3641)] = 137702, + [SMALL_STATE(3642)] = 137724, + [SMALL_STATE(3643)] = 137750, + [SMALL_STATE(3644)] = 137776, + [SMALL_STATE(3645)] = 137790, + [SMALL_STATE(3646)] = 137816, + [SMALL_STATE(3647)] = 137838, + [SMALL_STATE(3648)] = 137862, + [SMALL_STATE(3649)] = 137888, + [SMALL_STATE(3650)] = 137906, + [SMALL_STATE(3651)] = 137932, + [SMALL_STATE(3652)] = 137954, + [SMALL_STATE(3653)] = 137980, + [SMALL_STATE(3654)] = 138002, + [SMALL_STATE(3655)] = 138018, + [SMALL_STATE(3656)] = 138040, + [SMALL_STATE(3657)] = 138062, + [SMALL_STATE(3658)] = 138084, + [SMALL_STATE(3659)] = 138106, + [SMALL_STATE(3660)] = 138124, + [SMALL_STATE(3661)] = 138140, + [SMALL_STATE(3662)] = 138160, + [SMALL_STATE(3663)] = 138176, + [SMALL_STATE(3664)] = 138202, + [SMALL_STATE(3665)] = 138224, + [SMALL_STATE(3666)] = 138246, + [SMALL_STATE(3667)] = 138272, + [SMALL_STATE(3668)] = 138286, + [SMALL_STATE(3669)] = 138300, + [SMALL_STATE(3670)] = 138322, + [SMALL_STATE(3671)] = 138348, + [SMALL_STATE(3672)] = 138370, + [SMALL_STATE(3673)] = 138392, + [SMALL_STATE(3674)] = 138414, + [SMALL_STATE(3675)] = 138436, + [SMALL_STATE(3676)] = 138462, + [SMALL_STATE(3677)] = 138488, + [SMALL_STATE(3678)] = 138514, + [SMALL_STATE(3679)] = 138536, + [SMALL_STATE(3680)] = 138558, + [SMALL_STATE(3681)] = 138580, + [SMALL_STATE(3682)] = 138602, + [SMALL_STATE(3683)] = 138624, + [SMALL_STATE(3684)] = 138646, + [SMALL_STATE(3685)] = 138660, + [SMALL_STATE(3686)] = 138686, + [SMALL_STATE(3687)] = 138708, + [SMALL_STATE(3688)] = 138722, + [SMALL_STATE(3689)] = 138748, + [SMALL_STATE(3690)] = 138774, + [SMALL_STATE(3691)] = 138796, + [SMALL_STATE(3692)] = 138818, + [SMALL_STATE(3693)] = 138840, + [SMALL_STATE(3694)] = 138866, + [SMALL_STATE(3695)] = 138880, + [SMALL_STATE(3696)] = 138906, + [SMALL_STATE(3697)] = 138922, + [SMALL_STATE(3698)] = 138938, + [SMALL_STATE(3699)] = 138956, + [SMALL_STATE(3700)] = 138978, + [SMALL_STATE(3701)] = 139000, + [SMALL_STATE(3702)] = 139022, + [SMALL_STATE(3703)] = 139036, + [SMALL_STATE(3704)] = 139058, + [SMALL_STATE(3705)] = 139080, + [SMALL_STATE(3706)] = 139102, + [SMALL_STATE(3707)] = 139124, + [SMALL_STATE(3708)] = 139138, + [SMALL_STATE(3709)] = 139160, + [SMALL_STATE(3710)] = 139186, + [SMALL_STATE(3711)] = 139208, + [SMALL_STATE(3712)] = 139228, + [SMALL_STATE(3713)] = 139250, + [SMALL_STATE(3714)] = 139266, + [SMALL_STATE(3715)] = 139284, + [SMALL_STATE(3716)] = 139306, + [SMALL_STATE(3717)] = 139332, + [SMALL_STATE(3718)] = 139358, + [SMALL_STATE(3719)] = 139380, + [SMALL_STATE(3720)] = 139406, + [SMALL_STATE(3721)] = 139432, + [SMALL_STATE(3722)] = 139454, + [SMALL_STATE(3723)] = 139470, + [SMALL_STATE(3724)] = 139496, + [SMALL_STATE(3725)] = 139518, + [SMALL_STATE(3726)] = 139540, + [SMALL_STATE(3727)] = 139562, + [SMALL_STATE(3728)] = 139584, + [SMALL_STATE(3729)] = 139606, + [SMALL_STATE(3730)] = 139628, + [SMALL_STATE(3731)] = 139648, + [SMALL_STATE(3732)] = 139668, + [SMALL_STATE(3733)] = 139688, + [SMALL_STATE(3734)] = 139708, + [SMALL_STATE(3735)] = 139730, + [SMALL_STATE(3736)] = 139752, + [SMALL_STATE(3737)] = 139774, + [SMALL_STATE(3738)] = 139796, + [SMALL_STATE(3739)] = 139818, + [SMALL_STATE(3740)] = 139844, + [SMALL_STATE(3741)] = 139858, + [SMALL_STATE(3742)] = 139880, + [SMALL_STATE(3743)] = 139898, + [SMALL_STATE(3744)] = 139912, + [SMALL_STATE(3745)] = 139938, + [SMALL_STATE(3746)] = 139960, + [SMALL_STATE(3747)] = 139982, + [SMALL_STATE(3748)] = 140004, + [SMALL_STATE(3749)] = 140026, + [SMALL_STATE(3750)] = 140044, + [SMALL_STATE(3751)] = 140061, + [SMALL_STATE(3752)] = 140078, + [SMALL_STATE(3753)] = 140101, + [SMALL_STATE(3754)] = 140124, + [SMALL_STATE(3755)] = 140141, + [SMALL_STATE(3756)] = 140164, + [SMALL_STATE(3757)] = 140181, + [SMALL_STATE(3758)] = 140198, + [SMALL_STATE(3759)] = 140217, + [SMALL_STATE(3760)] = 140234, + [SMALL_STATE(3761)] = 140247, + [SMALL_STATE(3762)] = 140270, + [SMALL_STATE(3763)] = 140283, + [SMALL_STATE(3764)] = 140302, + [SMALL_STATE(3765)] = 140321, + [SMALL_STATE(3766)] = 140338, + [SMALL_STATE(3767)] = 140357, + [SMALL_STATE(3768)] = 140372, + [SMALL_STATE(3769)] = 140395, + [SMALL_STATE(3770)] = 140414, + [SMALL_STATE(3771)] = 140431, + [SMALL_STATE(3772)] = 140446, + [SMALL_STATE(3773)] = 140459, + [SMALL_STATE(3774)] = 140480, + [SMALL_STATE(3775)] = 140503, + [SMALL_STATE(3776)] = 140526, + [SMALL_STATE(3777)] = 140539, + [SMALL_STATE(3778)] = 140556, + [SMALL_STATE(3779)] = 140577, + [SMALL_STATE(3780)] = 140590, + [SMALL_STATE(3781)] = 140613, + [SMALL_STATE(3782)] = 140636, + [SMALL_STATE(3783)] = 140659, + [SMALL_STATE(3784)] = 140676, + [SMALL_STATE(3785)] = 140699, + [SMALL_STATE(3786)] = 140718, + [SMALL_STATE(3787)] = 140735, + [SMALL_STATE(3788)] = 140758, + [SMALL_STATE(3789)] = 140781, + [SMALL_STATE(3790)] = 140794, + [SMALL_STATE(3791)] = 140811, + [SMALL_STATE(3792)] = 140830, + [SMALL_STATE(3793)] = 140847, + [SMALL_STATE(3794)] = 140864, + [SMALL_STATE(3795)] = 140881, + [SMALL_STATE(3796)] = 140896, + [SMALL_STATE(3797)] = 140913, + [SMALL_STATE(3798)] = 140930, + [SMALL_STATE(3799)] = 140953, + [SMALL_STATE(3800)] = 140970, + [SMALL_STATE(3801)] = 140987, + [SMALL_STATE(3802)] = 141004, + [SMALL_STATE(3803)] = 141027, + [SMALL_STATE(3804)] = 141044, + [SMALL_STATE(3805)] = 141067, + [SMALL_STATE(3806)] = 141080, + [SMALL_STATE(3807)] = 141097, + [SMALL_STATE(3808)] = 141114, + [SMALL_STATE(3809)] = 141131, + [SMALL_STATE(3810)] = 141148, + [SMALL_STATE(3811)] = 141165, + [SMALL_STATE(3812)] = 141178, + [SMALL_STATE(3813)] = 141201, + [SMALL_STATE(3814)] = 141218, + [SMALL_STATE(3815)] = 141235, + [SMALL_STATE(3816)] = 141252, + [SMALL_STATE(3817)] = 141275, + [SMALL_STATE(3818)] = 141294, + [SMALL_STATE(3819)] = 141317, + [SMALL_STATE(3820)] = 141334, + [SMALL_STATE(3821)] = 141351, + [SMALL_STATE(3822)] = 141374, + [SMALL_STATE(3823)] = 141397, + [SMALL_STATE(3824)] = 141420, + [SMALL_STATE(3825)] = 141439, + [SMALL_STATE(3826)] = 141452, + [SMALL_STATE(3827)] = 141475, + [SMALL_STATE(3828)] = 141494, + [SMALL_STATE(3829)] = 141517, + [SMALL_STATE(3830)] = 141536, + [SMALL_STATE(3831)] = 141559, + [SMALL_STATE(3832)] = 141582, + [SMALL_STATE(3833)] = 141601, + [SMALL_STATE(3834)] = 141624, + [SMALL_STATE(3835)] = 141641, + [SMALL_STATE(3836)] = 141660, + [SMALL_STATE(3837)] = 141683, + [SMALL_STATE(3838)] = 141706, + [SMALL_STATE(3839)] = 141725, + [SMALL_STATE(3840)] = 141742, + [SMALL_STATE(3841)] = 141765, + [SMALL_STATE(3842)] = 141788, + [SMALL_STATE(3843)] = 141811, + [SMALL_STATE(3844)] = 141834, + [SMALL_STATE(3845)] = 141851, + [SMALL_STATE(3846)] = 141874, + [SMALL_STATE(3847)] = 141897, + [SMALL_STATE(3848)] = 141914, + [SMALL_STATE(3849)] = 141931, + [SMALL_STATE(3850)] = 141950, + [SMALL_STATE(3851)] = 141965, + [SMALL_STATE(3852)] = 141988, + [SMALL_STATE(3853)] = 142007, + [SMALL_STATE(3854)] = 142030, + [SMALL_STATE(3855)] = 142053, + [SMALL_STATE(3856)] = 142070, + [SMALL_STATE(3857)] = 142093, + [SMALL_STATE(3858)] = 142112, + [SMALL_STATE(3859)] = 142135, + [SMALL_STATE(3860)] = 142158, + [SMALL_STATE(3861)] = 142181, + [SMALL_STATE(3862)] = 142200, + [SMALL_STATE(3863)] = 142213, + [SMALL_STATE(3864)] = 142236, + [SMALL_STATE(3865)] = 142253, + [SMALL_STATE(3866)] = 142276, + [SMALL_STATE(3867)] = 142299, + [SMALL_STATE(3868)] = 142322, + [SMALL_STATE(3869)] = 142339, + [SMALL_STATE(3870)] = 142360, + [SMALL_STATE(3871)] = 142377, + [SMALL_STATE(3872)] = 142400, + [SMALL_STATE(3873)] = 142423, + [SMALL_STATE(3874)] = 142446, + [SMALL_STATE(3875)] = 142469, + [SMALL_STATE(3876)] = 142486, + [SMALL_STATE(3877)] = 142499, + [SMALL_STATE(3878)] = 142518, + [SMALL_STATE(3879)] = 142541, + [SMALL_STATE(3880)] = 142558, + [SMALL_STATE(3881)] = 142581, + [SMALL_STATE(3882)] = 142594, + [SMALL_STATE(3883)] = 142617, + [SMALL_STATE(3884)] = 142640, + [SMALL_STATE(3885)] = 142657, + [SMALL_STATE(3886)] = 142674, + [SMALL_STATE(3887)] = 142687, + [SMALL_STATE(3888)] = 142704, + [SMALL_STATE(3889)] = 142727, + [SMALL_STATE(3890)] = 142744, + [SMALL_STATE(3891)] = 142767, + [SMALL_STATE(3892)] = 142784, + [SMALL_STATE(3893)] = 142797, + [SMALL_STATE(3894)] = 142814, + [SMALL_STATE(3895)] = 142837, + [SMALL_STATE(3896)] = 142854, + [SMALL_STATE(3897)] = 142871, + [SMALL_STATE(3898)] = 142894, + [SMALL_STATE(3899)] = 142917, + [SMALL_STATE(3900)] = 142936, + [SMALL_STATE(3901)] = 142953, + [SMALL_STATE(3902)] = 142971, + [SMALL_STATE(3903)] = 142987, + [SMALL_STATE(3904)] = 143005, + [SMALL_STATE(3905)] = 143021, + [SMALL_STATE(3906)] = 143037, + [SMALL_STATE(3907)] = 143057, + [SMALL_STATE(3908)] = 143073, + [SMALL_STATE(3909)] = 143089, + [SMALL_STATE(3910)] = 143105, + [SMALL_STATE(3911)] = 143117, + [SMALL_STATE(3912)] = 143133, + [SMALL_STATE(3913)] = 143149, + [SMALL_STATE(3914)] = 143165, + [SMALL_STATE(3915)] = 143177, + [SMALL_STATE(3916)] = 143193, + [SMALL_STATE(3917)] = 143209, + [SMALL_STATE(3918)] = 143221, + [SMALL_STATE(3919)] = 143233, + [SMALL_STATE(3920)] = 143245, + [SMALL_STATE(3921)] = 143257, + [SMALL_STATE(3922)] = 143269, + [SMALL_STATE(3923)] = 143281, + [SMALL_STATE(3924)] = 143299, + [SMALL_STATE(3925)] = 143311, + [SMALL_STATE(3926)] = 143323, + [SMALL_STATE(3927)] = 143335, + [SMALL_STATE(3928)] = 143347, + [SMALL_STATE(3929)] = 143359, + [SMALL_STATE(3930)] = 143371, + [SMALL_STATE(3931)] = 143383, + [SMALL_STATE(3932)] = 143395, + [SMALL_STATE(3933)] = 143407, + [SMALL_STATE(3934)] = 143419, + [SMALL_STATE(3935)] = 143431, + [SMALL_STATE(3936)] = 143443, + [SMALL_STATE(3937)] = 143459, + [SMALL_STATE(3938)] = 143475, + [SMALL_STATE(3939)] = 143491, + [SMALL_STATE(3940)] = 143511, + [SMALL_STATE(3941)] = 143527, + [SMALL_STATE(3942)] = 143539, + [SMALL_STATE(3943)] = 143555, + [SMALL_STATE(3944)] = 143567, + [SMALL_STATE(3945)] = 143587, + [SMALL_STATE(3946)] = 143599, + [SMALL_STATE(3947)] = 143611, + [SMALL_STATE(3948)] = 143627, + [SMALL_STATE(3949)] = 143643, + [SMALL_STATE(3950)] = 143659, + [SMALL_STATE(3951)] = 143675, + [SMALL_STATE(3952)] = 143695, + [SMALL_STATE(3953)] = 143711, + [SMALL_STATE(3954)] = 143723, + [SMALL_STATE(3955)] = 143735, + [SMALL_STATE(3956)] = 143747, + [SMALL_STATE(3957)] = 143763, + [SMALL_STATE(3958)] = 143779, + [SMALL_STATE(3959)] = 143795, + [SMALL_STATE(3960)] = 143811, + [SMALL_STATE(3961)] = 143827, + [SMALL_STATE(3962)] = 143847, + [SMALL_STATE(3963)] = 143865, + [SMALL_STATE(3964)] = 143881, + [SMALL_STATE(3965)] = 143901, + [SMALL_STATE(3966)] = 143917, + [SMALL_STATE(3967)] = 143933, + [SMALL_STATE(3968)] = 143949, + [SMALL_STATE(3969)] = 143965, + [SMALL_STATE(3970)] = 143981, + [SMALL_STATE(3971)] = 143997, + [SMALL_STATE(3972)] = 144013, + [SMALL_STATE(3973)] = 144029, + [SMALL_STATE(3974)] = 144045, + [SMALL_STATE(3975)] = 144061, + [SMALL_STATE(3976)] = 144077, + [SMALL_STATE(3977)] = 144097, + [SMALL_STATE(3978)] = 144113, + [SMALL_STATE(3979)] = 144129, + [SMALL_STATE(3980)] = 144141, + [SMALL_STATE(3981)] = 144161, + [SMALL_STATE(3982)] = 144175, + [SMALL_STATE(3983)] = 144187, + [SMALL_STATE(3984)] = 144205, + [SMALL_STATE(3985)] = 144217, + [SMALL_STATE(3986)] = 144229, + [SMALL_STATE(3987)] = 144249, + [SMALL_STATE(3988)] = 144269, + [SMALL_STATE(3989)] = 144285, + [SMALL_STATE(3990)] = 144301, + [SMALL_STATE(3991)] = 144317, + [SMALL_STATE(3992)] = 144333, + [SMALL_STATE(3993)] = 144345, + [SMALL_STATE(3994)] = 144361, + [SMALL_STATE(3995)] = 144373, + [SMALL_STATE(3996)] = 144385, + [SMALL_STATE(3997)] = 144397, + [SMALL_STATE(3998)] = 144411, + [SMALL_STATE(3999)] = 144425, + [SMALL_STATE(4000)] = 144437, + [SMALL_STATE(4001)] = 144449, + [SMALL_STATE(4002)] = 144469, + [SMALL_STATE(4003)] = 144481, + [SMALL_STATE(4004)] = 144497, + [SMALL_STATE(4005)] = 144509, + [SMALL_STATE(4006)] = 144527, + [SMALL_STATE(4007)] = 144543, + [SMALL_STATE(4008)] = 144557, + [SMALL_STATE(4009)] = 144573, + [SMALL_STATE(4010)] = 144593, + [SMALL_STATE(4011)] = 144613, + [SMALL_STATE(4012)] = 144625, + [SMALL_STATE(4013)] = 144645, + [SMALL_STATE(4014)] = 144665, + [SMALL_STATE(4015)] = 144681, + [SMALL_STATE(4016)] = 144697, + [SMALL_STATE(4017)] = 144709, + [SMALL_STATE(4018)] = 144721, + [SMALL_STATE(4019)] = 144733, + [SMALL_STATE(4020)] = 144749, + [SMALL_STATE(4021)] = 144761, + [SMALL_STATE(4022)] = 144777, + [SMALL_STATE(4023)] = 144793, + [SMALL_STATE(4024)] = 144805, + [SMALL_STATE(4025)] = 144825, + [SMALL_STATE(4026)] = 144837, + [SMALL_STATE(4027)] = 144849, + [SMALL_STATE(4028)] = 144861, + [SMALL_STATE(4029)] = 144877, + [SMALL_STATE(4030)] = 144889, + [SMALL_STATE(4031)] = 144901, + [SMALL_STATE(4032)] = 144921, + [SMALL_STATE(4033)] = 144933, + [SMALL_STATE(4034)] = 144945, + [SMALL_STATE(4035)] = 144957, + [SMALL_STATE(4036)] = 144969, + [SMALL_STATE(4037)] = 144981, + [SMALL_STATE(4038)] = 144993, + [SMALL_STATE(4039)] = 145013, + [SMALL_STATE(4040)] = 145033, + [SMALL_STATE(4041)] = 145045, + [SMALL_STATE(4042)] = 145057, + [SMALL_STATE(4043)] = 145077, + [SMALL_STATE(4044)] = 145089, + [SMALL_STATE(4045)] = 145101, + [SMALL_STATE(4046)] = 145113, + [SMALL_STATE(4047)] = 145131, + [SMALL_STATE(4048)] = 145143, + [SMALL_STATE(4049)] = 145155, + [SMALL_STATE(4050)] = 145171, + [SMALL_STATE(4051)] = 145183, + [SMALL_STATE(4052)] = 145195, + [SMALL_STATE(4053)] = 145207, + [SMALL_STATE(4054)] = 145227, + [SMALL_STATE(4055)] = 145243, + [SMALL_STATE(4056)] = 145255, + [SMALL_STATE(4057)] = 145271, + [SMALL_STATE(4058)] = 145289, + [SMALL_STATE(4059)] = 145301, + [SMALL_STATE(4060)] = 145317, + [SMALL_STATE(4061)] = 145333, + [SMALL_STATE(4062)] = 145345, + [SMALL_STATE(4063)] = 145365, + [SMALL_STATE(4064)] = 145377, + [SMALL_STATE(4065)] = 145393, + [SMALL_STATE(4066)] = 145409, + [SMALL_STATE(4067)] = 145425, + [SMALL_STATE(4068)] = 145437, + [SMALL_STATE(4069)] = 145449, + [SMALL_STATE(4070)] = 145461, + [SMALL_STATE(4071)] = 145473, + [SMALL_STATE(4072)] = 145485, + [SMALL_STATE(4073)] = 145497, + [SMALL_STATE(4074)] = 145509, + [SMALL_STATE(4075)] = 145521, + [SMALL_STATE(4076)] = 145537, + [SMALL_STATE(4077)] = 145549, + [SMALL_STATE(4078)] = 145565, + [SMALL_STATE(4079)] = 145577, + [SMALL_STATE(4080)] = 145593, + [SMALL_STATE(4081)] = 145609, + [SMALL_STATE(4082)] = 145625, + [SMALL_STATE(4083)] = 145641, + [SMALL_STATE(4084)] = 145653, + [SMALL_STATE(4085)] = 145665, + [SMALL_STATE(4086)] = 145683, + [SMALL_STATE(4087)] = 145699, + [SMALL_STATE(4088)] = 145715, + [SMALL_STATE(4089)] = 145727, + [SMALL_STATE(4090)] = 145739, + [SMALL_STATE(4091)] = 145751, + [SMALL_STATE(4092)] = 145763, + [SMALL_STATE(4093)] = 145781, + [SMALL_STATE(4094)] = 145797, + [SMALL_STATE(4095)] = 145817, + [SMALL_STATE(4096)] = 145833, + [SMALL_STATE(4097)] = 145849, + [SMALL_STATE(4098)] = 145865, + [SMALL_STATE(4099)] = 145881, + [SMALL_STATE(4100)] = 145897, + [SMALL_STATE(4101)] = 145913, + [SMALL_STATE(4102)] = 145929, + [SMALL_STATE(4103)] = 145945, + [SMALL_STATE(4104)] = 145961, + [SMALL_STATE(4105)] = 145979, + [SMALL_STATE(4106)] = 145995, + [SMALL_STATE(4107)] = 146011, + [SMALL_STATE(4108)] = 146029, + [SMALL_STATE(4109)] = 146047, + [SMALL_STATE(4110)] = 146063, + [SMALL_STATE(4111)] = 146079, + [SMALL_STATE(4112)] = 146095, + [SMALL_STATE(4113)] = 146113, + [SMALL_STATE(4114)] = 146129, + [SMALL_STATE(4115)] = 146145, + [SMALL_STATE(4116)] = 146161, + [SMALL_STATE(4117)] = 146177, + [SMALL_STATE(4118)] = 146193, + [SMALL_STATE(4119)] = 146209, + [SMALL_STATE(4120)] = 146225, + [SMALL_STATE(4121)] = 146241, + [SMALL_STATE(4122)] = 146257, + [SMALL_STATE(4123)] = 146273, + [SMALL_STATE(4124)] = 146289, + [SMALL_STATE(4125)] = 146305, + [SMALL_STATE(4126)] = 146321, + [SMALL_STATE(4127)] = 146337, + [SMALL_STATE(4128)] = 146353, + [SMALL_STATE(4129)] = 146369, + [SMALL_STATE(4130)] = 146387, + [SMALL_STATE(4131)] = 146403, + [SMALL_STATE(4132)] = 146419, + [SMALL_STATE(4133)] = 146437, + [SMALL_STATE(4134)] = 146453, + [SMALL_STATE(4135)] = 146469, + [SMALL_STATE(4136)] = 146485, + [SMALL_STATE(4137)] = 146503, + [SMALL_STATE(4138)] = 146521, + [SMALL_STATE(4139)] = 146537, + [SMALL_STATE(4140)] = 146553, + [SMALL_STATE(4141)] = 146569, + [SMALL_STATE(4142)] = 146585, + [SMALL_STATE(4143)] = 146601, + [SMALL_STATE(4144)] = 146619, + [SMALL_STATE(4145)] = 146635, + [SMALL_STATE(4146)] = 146651, + [SMALL_STATE(4147)] = 146667, + [SMALL_STATE(4148)] = 146687, + [SMALL_STATE(4149)] = 146699, + [SMALL_STATE(4150)] = 146715, + [SMALL_STATE(4151)] = 146735, + [SMALL_STATE(4152)] = 146755, + [SMALL_STATE(4153)] = 146771, + [SMALL_STATE(4154)] = 146791, + [SMALL_STATE(4155)] = 146811, + [SMALL_STATE(4156)] = 146827, + [SMALL_STATE(4157)] = 146843, + [SMALL_STATE(4158)] = 146863, + [SMALL_STATE(4159)] = 146879, + [SMALL_STATE(4160)] = 146895, + [SMALL_STATE(4161)] = 146915, + [SMALL_STATE(4162)] = 146935, + [SMALL_STATE(4163)] = 146951, + [SMALL_STATE(4164)] = 146969, + [SMALL_STATE(4165)] = 146981, + [SMALL_STATE(4166)] = 146997, + [SMALL_STATE(4167)] = 147013, + [SMALL_STATE(4168)] = 147029, + [SMALL_STATE(4169)] = 147045, + [SMALL_STATE(4170)] = 147061, + [SMALL_STATE(4171)] = 147077, + [SMALL_STATE(4172)] = 147097, + [SMALL_STATE(4173)] = 147117, + [SMALL_STATE(4174)] = 147137, + [SMALL_STATE(4175)] = 147157, + [SMALL_STATE(4176)] = 147177, + [SMALL_STATE(4177)] = 147197, + [SMALL_STATE(4178)] = 147209, + [SMALL_STATE(4179)] = 147229, + [SMALL_STATE(4180)] = 147241, + [SMALL_STATE(4181)] = 147259, + [SMALL_STATE(4182)] = 147271, + [SMALL_STATE(4183)] = 147283, + [SMALL_STATE(4184)] = 147299, + [SMALL_STATE(4185)] = 147319, + [SMALL_STATE(4186)] = 147339, + [SMALL_STATE(4187)] = 147351, + [SMALL_STATE(4188)] = 147363, + [SMALL_STATE(4189)] = 147379, + [SMALL_STATE(4190)] = 147399, + [SMALL_STATE(4191)] = 147419, + [SMALL_STATE(4192)] = 147439, + [SMALL_STATE(4193)] = 147455, + [SMALL_STATE(4194)] = 147475, + [SMALL_STATE(4195)] = 147491, + [SMALL_STATE(4196)] = 147507, + [SMALL_STATE(4197)] = 147527, + [SMALL_STATE(4198)] = 147547, + [SMALL_STATE(4199)] = 147563, + [SMALL_STATE(4200)] = 147579, + [SMALL_STATE(4201)] = 147599, + [SMALL_STATE(4202)] = 147619, + [SMALL_STATE(4203)] = 147637, + [SMALL_STATE(4204)] = 147657, + [SMALL_STATE(4205)] = 147673, + [SMALL_STATE(4206)] = 147689, + [SMALL_STATE(4207)] = 147705, + [SMALL_STATE(4208)] = 147725, + [SMALL_STATE(4209)] = 147745, + [SMALL_STATE(4210)] = 147761, + [SMALL_STATE(4211)] = 147775, + [SMALL_STATE(4212)] = 147791, + [SMALL_STATE(4213)] = 147807, + [SMALL_STATE(4214)] = 147823, + [SMALL_STATE(4215)] = 147839, + [SMALL_STATE(4216)] = 147855, + [SMALL_STATE(4217)] = 147871, + [SMALL_STATE(4218)] = 147891, + [SMALL_STATE(4219)] = 147909, + [SMALL_STATE(4220)] = 147925, + [SMALL_STATE(4221)] = 147937, + [SMALL_STATE(4222)] = 147953, + [SMALL_STATE(4223)] = 147973, + [SMALL_STATE(4224)] = 147985, + [SMALL_STATE(4225)] = 148005, + [SMALL_STATE(4226)] = 148025, + [SMALL_STATE(4227)] = 148037, + [SMALL_STATE(4228)] = 148049, + [SMALL_STATE(4229)] = 148069, + [SMALL_STATE(4230)] = 148089, + [SMALL_STATE(4231)] = 148105, + [SMALL_STATE(4232)] = 148121, + [SMALL_STATE(4233)] = 148137, + [SMALL_STATE(4234)] = 148153, + [SMALL_STATE(4235)] = 148169, + [SMALL_STATE(4236)] = 148185, + [SMALL_STATE(4237)] = 148201, + [SMALL_STATE(4238)] = 148217, + [SMALL_STATE(4239)] = 148233, + [SMALL_STATE(4240)] = 148249, + [SMALL_STATE(4241)] = 148265, + [SMALL_STATE(4242)] = 148281, + [SMALL_STATE(4243)] = 148297, + [SMALL_STATE(4244)] = 148313, + [SMALL_STATE(4245)] = 148329, + [SMALL_STATE(4246)] = 148345, + [SMALL_STATE(4247)] = 148361, + [SMALL_STATE(4248)] = 148379, + [SMALL_STATE(4249)] = 148399, + [SMALL_STATE(4250)] = 148419, + [SMALL_STATE(4251)] = 148439, + [SMALL_STATE(4252)] = 148451, + [SMALL_STATE(4253)] = 148463, + [SMALL_STATE(4254)] = 148483, + [SMALL_STATE(4255)] = 148501, + [SMALL_STATE(4256)] = 148513, + [SMALL_STATE(4257)] = 148533, + [SMALL_STATE(4258)] = 148545, + [SMALL_STATE(4259)] = 148565, + [SMALL_STATE(4260)] = 148577, + [SMALL_STATE(4261)] = 148597, + [SMALL_STATE(4262)] = 148609, + [SMALL_STATE(4263)] = 148621, + [SMALL_STATE(4264)] = 148637, + [SMALL_STATE(4265)] = 148653, + [SMALL_STATE(4266)] = 148665, + [SMALL_STATE(4267)] = 148677, + [SMALL_STATE(4268)] = 148689, + [SMALL_STATE(4269)] = 148705, + [SMALL_STATE(4270)] = 148721, + [SMALL_STATE(4271)] = 148733, + [SMALL_STATE(4272)] = 148745, + [SMALL_STATE(4273)] = 148757, + [SMALL_STATE(4274)] = 148777, + [SMALL_STATE(4275)] = 148789, + [SMALL_STATE(4276)] = 148801, + [SMALL_STATE(4277)] = 148815, + [SMALL_STATE(4278)] = 148831, + [SMALL_STATE(4279)] = 148843, + [SMALL_STATE(4280)] = 148863, + [SMALL_STATE(4281)] = 148875, + [SMALL_STATE(4282)] = 148887, + [SMALL_STATE(4283)] = 148899, + [SMALL_STATE(4284)] = 148911, + [SMALL_STATE(4285)] = 148923, + [SMALL_STATE(4286)] = 148935, + [SMALL_STATE(4287)] = 148947, + [SMALL_STATE(4288)] = 148959, + [SMALL_STATE(4289)] = 148971, + [SMALL_STATE(4290)] = 148989, + [SMALL_STATE(4291)] = 149007, + [SMALL_STATE(4292)] = 149027, + [SMALL_STATE(4293)] = 149047, + [SMALL_STATE(4294)] = 149067, + [SMALL_STATE(4295)] = 149079, + [SMALL_STATE(4296)] = 149095, + [SMALL_STATE(4297)] = 149113, + [SMALL_STATE(4298)] = 149129, + [SMALL_STATE(4299)] = 149149, + [SMALL_STATE(4300)] = 149165, + [SMALL_STATE(4301)] = 149181, + [SMALL_STATE(4302)] = 149201, + [SMALL_STATE(4303)] = 149217, + [SMALL_STATE(4304)] = 149229, + [SMALL_STATE(4305)] = 149249, + [SMALL_STATE(4306)] = 149269, + [SMALL_STATE(4307)] = 149289, + [SMALL_STATE(4308)] = 149301, + [SMALL_STATE(4309)] = 149321, + [SMALL_STATE(4310)] = 149335, + [SMALL_STATE(4311)] = 149347, + [SMALL_STATE(4312)] = 149359, + [SMALL_STATE(4313)] = 149371, + [SMALL_STATE(4314)] = 149387, + [SMALL_STATE(4315)] = 149403, + [SMALL_STATE(4316)] = 149415, + [SMALL_STATE(4317)] = 149427, + [SMALL_STATE(4318)] = 149443, + [SMALL_STATE(4319)] = 149455, + [SMALL_STATE(4320)] = 149475, + [SMALL_STATE(4321)] = 149495, + [SMALL_STATE(4322)] = 149511, + [SMALL_STATE(4323)] = 149527, + [SMALL_STATE(4324)] = 149547, + [SMALL_STATE(4325)] = 149559, + [SMALL_STATE(4326)] = 149575, + [SMALL_STATE(4327)] = 149591, + [SMALL_STATE(4328)] = 149603, + [SMALL_STATE(4329)] = 149619, + [SMALL_STATE(4330)] = 149639, + [SMALL_STATE(4331)] = 149651, + [SMALL_STATE(4332)] = 149667, + [SMALL_STATE(4333)] = 149683, + [SMALL_STATE(4334)] = 149699, + [SMALL_STATE(4335)] = 149715, + [SMALL_STATE(4336)] = 149735, + [SMALL_STATE(4337)] = 149751, + [SMALL_STATE(4338)] = 149767, + [SMALL_STATE(4339)] = 149783, + [SMALL_STATE(4340)] = 149795, + [SMALL_STATE(4341)] = 149807, + [SMALL_STATE(4342)] = 149819, + [SMALL_STATE(4343)] = 149831, + [SMALL_STATE(4344)] = 149843, + [SMALL_STATE(4345)] = 149859, + [SMALL_STATE(4346)] = 149875, + [SMALL_STATE(4347)] = 149891, + [SMALL_STATE(4348)] = 149907, + [SMALL_STATE(4349)] = 149927, + [SMALL_STATE(4350)] = 149943, + [SMALL_STATE(4351)] = 149959, + [SMALL_STATE(4352)] = 149975, + [SMALL_STATE(4353)] = 149991, + [SMALL_STATE(4354)] = 150007, + [SMALL_STATE(4355)] = 150027, + [SMALL_STATE(4356)] = 150047, + [SMALL_STATE(4357)] = 150063, + [SMALL_STATE(4358)] = 150079, + [SMALL_STATE(4359)] = 150095, + [SMALL_STATE(4360)] = 150115, + [SMALL_STATE(4361)] = 150131, + [SMALL_STATE(4362)] = 150147, + [SMALL_STATE(4363)] = 150163, + [SMALL_STATE(4364)] = 150179, + [SMALL_STATE(4365)] = 150195, + [SMALL_STATE(4366)] = 150211, + [SMALL_STATE(4367)] = 150227, + [SMALL_STATE(4368)] = 150243, + [SMALL_STATE(4369)] = 150259, + [SMALL_STATE(4370)] = 150275, + [SMALL_STATE(4371)] = 150291, + [SMALL_STATE(4372)] = 150303, + [SMALL_STATE(4373)] = 150319, + [SMALL_STATE(4374)] = 150335, + [SMALL_STATE(4375)] = 150347, + [SMALL_STATE(4376)] = 150359, + [SMALL_STATE(4377)] = 150375, + [SMALL_STATE(4378)] = 150391, + [SMALL_STATE(4379)] = 150407, + [SMALL_STATE(4380)] = 150423, + [SMALL_STATE(4381)] = 150440, + [SMALL_STATE(4382)] = 150457, + [SMALL_STATE(4383)] = 150474, + [SMALL_STATE(4384)] = 150489, + [SMALL_STATE(4385)] = 150506, + [SMALL_STATE(4386)] = 150521, + [SMALL_STATE(4387)] = 150538, + [SMALL_STATE(4388)] = 150555, + [SMALL_STATE(4389)] = 150572, + [SMALL_STATE(4390)] = 150585, + [SMALL_STATE(4391)] = 150602, + [SMALL_STATE(4392)] = 150619, + [SMALL_STATE(4393)] = 150636, + [SMALL_STATE(4394)] = 150653, + [SMALL_STATE(4395)] = 150670, + [SMALL_STATE(4396)] = 150687, + [SMALL_STATE(4397)] = 150704, + [SMALL_STATE(4398)] = 150721, + [SMALL_STATE(4399)] = 150738, + [SMALL_STATE(4400)] = 150755, + [SMALL_STATE(4401)] = 150772, + [SMALL_STATE(4402)] = 150789, + [SMALL_STATE(4403)] = 150806, + [SMALL_STATE(4404)] = 150819, + [SMALL_STATE(4405)] = 150836, + [SMALL_STATE(4406)] = 150853, + [SMALL_STATE(4407)] = 150870, + [SMALL_STATE(4408)] = 150887, + [SMALL_STATE(4409)] = 150904, + [SMALL_STATE(4410)] = 150921, + [SMALL_STATE(4411)] = 150938, + [SMALL_STATE(4412)] = 150955, + [SMALL_STATE(4413)] = 150972, + [SMALL_STATE(4414)] = 150989, + [SMALL_STATE(4415)] = 151004, + [SMALL_STATE(4416)] = 151021, + [SMALL_STATE(4417)] = 151036, + [SMALL_STATE(4418)] = 151051, + [SMALL_STATE(4419)] = 151066, + [SMALL_STATE(4420)] = 151081, + [SMALL_STATE(4421)] = 151098, + [SMALL_STATE(4422)] = 151111, + [SMALL_STATE(4423)] = 151128, + [SMALL_STATE(4424)] = 151143, + [SMALL_STATE(4425)] = 151160, + [SMALL_STATE(4426)] = 151173, + [SMALL_STATE(4427)] = 151188, + [SMALL_STATE(4428)] = 151203, + [SMALL_STATE(4429)] = 151220, + [SMALL_STATE(4430)] = 151237, + [SMALL_STATE(4431)] = 151254, + [SMALL_STATE(4432)] = 151269, + [SMALL_STATE(4433)] = 151286, + [SMALL_STATE(4434)] = 151303, + [SMALL_STATE(4435)] = 151320, + [SMALL_STATE(4436)] = 151337, + [SMALL_STATE(4437)] = 151354, + [SMALL_STATE(4438)] = 151371, + [SMALL_STATE(4439)] = 151388, + [SMALL_STATE(4440)] = 151405, + [SMALL_STATE(4441)] = 151416, + [SMALL_STATE(4442)] = 151433, + [SMALL_STATE(4443)] = 151450, + [SMALL_STATE(4444)] = 151467, + [SMALL_STATE(4445)] = 151484, + [SMALL_STATE(4446)] = 151495, + [SMALL_STATE(4447)] = 151510, + [SMALL_STATE(4448)] = 151527, + [SMALL_STATE(4449)] = 151544, + [SMALL_STATE(4450)] = 151561, + [SMALL_STATE(4451)] = 151576, + [SMALL_STATE(4452)] = 151591, + [SMALL_STATE(4453)] = 151608, + [SMALL_STATE(4454)] = 151625, + [SMALL_STATE(4455)] = 151642, + [SMALL_STATE(4456)] = 151657, + [SMALL_STATE(4457)] = 151674, + [SMALL_STATE(4458)] = 151689, + [SMALL_STATE(4459)] = 151704, + [SMALL_STATE(4460)] = 151719, + [SMALL_STATE(4461)] = 151734, + [SMALL_STATE(4462)] = 151751, + [SMALL_STATE(4463)] = 151766, + [SMALL_STATE(4464)] = 151783, + [SMALL_STATE(4465)] = 151798, + [SMALL_STATE(4466)] = 151815, + [SMALL_STATE(4467)] = 151832, + [SMALL_STATE(4468)] = 151843, + [SMALL_STATE(4469)] = 151860, + [SMALL_STATE(4470)] = 151871, + [SMALL_STATE(4471)] = 151888, + [SMALL_STATE(4472)] = 151905, + [SMALL_STATE(4473)] = 151922, + [SMALL_STATE(4474)] = 151939, + [SMALL_STATE(4475)] = 151956, + [SMALL_STATE(4476)] = 151973, + [SMALL_STATE(4477)] = 151990, + [SMALL_STATE(4478)] = 152007, + [SMALL_STATE(4479)] = 152024, + [SMALL_STATE(4480)] = 152041, + [SMALL_STATE(4481)] = 152056, + [SMALL_STATE(4482)] = 152073, + [SMALL_STATE(4483)] = 152090, + [SMALL_STATE(4484)] = 152103, + [SMALL_STATE(4485)] = 152120, + [SMALL_STATE(4486)] = 152137, + [SMALL_STATE(4487)] = 152154, + [SMALL_STATE(4488)] = 152167, + [SMALL_STATE(4489)] = 152180, + [SMALL_STATE(4490)] = 152197, + [SMALL_STATE(4491)] = 152214, + [SMALL_STATE(4492)] = 152229, + [SMALL_STATE(4493)] = 152246, + [SMALL_STATE(4494)] = 152263, + [SMALL_STATE(4495)] = 152280, + [SMALL_STATE(4496)] = 152297, + [SMALL_STATE(4497)] = 152314, + [SMALL_STATE(4498)] = 152331, + [SMALL_STATE(4499)] = 152348, + [SMALL_STATE(4500)] = 152363, + [SMALL_STATE(4501)] = 152380, + [SMALL_STATE(4502)] = 152397, + [SMALL_STATE(4503)] = 152414, + [SMALL_STATE(4504)] = 152431, + [SMALL_STATE(4505)] = 152448, + [SMALL_STATE(4506)] = 152463, + [SMALL_STATE(4507)] = 152478, + [SMALL_STATE(4508)] = 152495, + [SMALL_STATE(4509)] = 152512, + [SMALL_STATE(4510)] = 152529, + [SMALL_STATE(4511)] = 152546, + [SMALL_STATE(4512)] = 152563, + [SMALL_STATE(4513)] = 152580, + [SMALL_STATE(4514)] = 152597, + [SMALL_STATE(4515)] = 152614, + [SMALL_STATE(4516)] = 152629, + [SMALL_STATE(4517)] = 152639, + [SMALL_STATE(4518)] = 152649, + [SMALL_STATE(4519)] = 152659, + [SMALL_STATE(4520)] = 152669, + [SMALL_STATE(4521)] = 152679, + [SMALL_STATE(4522)] = 152689, + [SMALL_STATE(4523)] = 152699, + [SMALL_STATE(4524)] = 152711, + [SMALL_STATE(4525)] = 152725, + [SMALL_STATE(4526)] = 152735, + [SMALL_STATE(4527)] = 152745, + [SMALL_STATE(4528)] = 152755, + [SMALL_STATE(4529)] = 152765, + [SMALL_STATE(4530)] = 152775, + [SMALL_STATE(4531)] = 152785, + [SMALL_STATE(4532)] = 152799, + [SMALL_STATE(4533)] = 152809, + [SMALL_STATE(4534)] = 152823, + [SMALL_STATE(4535)] = 152833, + [SMALL_STATE(4536)] = 152843, + [SMALL_STATE(4537)] = 152853, + [SMALL_STATE(4538)] = 152867, + [SMALL_STATE(4539)] = 152877, + [SMALL_STATE(4540)] = 152887, + [SMALL_STATE(4541)] = 152901, + [SMALL_STATE(4542)] = 152915, + [SMALL_STATE(4543)] = 152929, + [SMALL_STATE(4544)] = 152943, + [SMALL_STATE(4545)] = 152957, + [SMALL_STATE(4546)] = 152971, + [SMALL_STATE(4547)] = 152981, + [SMALL_STATE(4548)] = 152991, + [SMALL_STATE(4549)] = 153001, + [SMALL_STATE(4550)] = 153011, + [SMALL_STATE(4551)] = 153021, + [SMALL_STATE(4552)] = 153031, + [SMALL_STATE(4553)] = 153045, + [SMALL_STATE(4554)] = 153059, + [SMALL_STATE(4555)] = 153073, + [SMALL_STATE(4556)] = 153087, + [SMALL_STATE(4557)] = 153097, + [SMALL_STATE(4558)] = 153107, + [SMALL_STATE(4559)] = 153117, + [SMALL_STATE(4560)] = 153127, + [SMALL_STATE(4561)] = 153137, + [SMALL_STATE(4562)] = 153147, + [SMALL_STATE(4563)] = 153157, + [SMALL_STATE(4564)] = 153167, + [SMALL_STATE(4565)] = 153179, + [SMALL_STATE(4566)] = 153189, + [SMALL_STATE(4567)] = 153201, + [SMALL_STATE(4568)] = 153211, + [SMALL_STATE(4569)] = 153225, + [SMALL_STATE(4570)] = 153235, + [SMALL_STATE(4571)] = 153245, + [SMALL_STATE(4572)] = 153255, + [SMALL_STATE(4573)] = 153265, + [SMALL_STATE(4574)] = 153275, + [SMALL_STATE(4575)] = 153285, + [SMALL_STATE(4576)] = 153295, + [SMALL_STATE(4577)] = 153309, + [SMALL_STATE(4578)] = 153319, + [SMALL_STATE(4579)] = 153333, + [SMALL_STATE(4580)] = 153343, + [SMALL_STATE(4581)] = 153353, + [SMALL_STATE(4582)] = 153363, + [SMALL_STATE(4583)] = 153373, + [SMALL_STATE(4584)] = 153383, + [SMALL_STATE(4585)] = 153393, + [SMALL_STATE(4586)] = 153403, + [SMALL_STATE(4587)] = 153417, + [SMALL_STATE(4588)] = 153431, + [SMALL_STATE(4589)] = 153445, + [SMALL_STATE(4590)] = 153455, + [SMALL_STATE(4591)] = 153469, + [SMALL_STATE(4592)] = 153483, + [SMALL_STATE(4593)] = 153493, + [SMALL_STATE(4594)] = 153503, + [SMALL_STATE(4595)] = 153517, + [SMALL_STATE(4596)] = 153531, + [SMALL_STATE(4597)] = 153545, + [SMALL_STATE(4598)] = 153559, + [SMALL_STATE(4599)] = 153569, + [SMALL_STATE(4600)] = 153583, + [SMALL_STATE(4601)] = 153593, + [SMALL_STATE(4602)] = 153603, + [SMALL_STATE(4603)] = 153617, + [SMALL_STATE(4604)] = 153627, + [SMALL_STATE(4605)] = 153637, + [SMALL_STATE(4606)] = 153647, + [SMALL_STATE(4607)] = 153657, + [SMALL_STATE(4608)] = 153667, + [SMALL_STATE(4609)] = 153677, + [SMALL_STATE(4610)] = 153687, + [SMALL_STATE(4611)] = 153697, + [SMALL_STATE(4612)] = 153707, + [SMALL_STATE(4613)] = 153717, + [SMALL_STATE(4614)] = 153727, + [SMALL_STATE(4615)] = 153737, + [SMALL_STATE(4616)] = 153747, + [SMALL_STATE(4617)] = 153757, + [SMALL_STATE(4618)] = 153767, + [SMALL_STATE(4619)] = 153777, + [SMALL_STATE(4620)] = 153787, + [SMALL_STATE(4621)] = 153801, + [SMALL_STATE(4622)] = 153815, + [SMALL_STATE(4623)] = 153829, + [SMALL_STATE(4624)] = 153839, + [SMALL_STATE(4625)] = 153849, + [SMALL_STATE(4626)] = 153859, + [SMALL_STATE(4627)] = 153869, + [SMALL_STATE(4628)] = 153879, + [SMALL_STATE(4629)] = 153889, + [SMALL_STATE(4630)] = 153899, + [SMALL_STATE(4631)] = 153909, + [SMALL_STATE(4632)] = 153919, + [SMALL_STATE(4633)] = 153929, + [SMALL_STATE(4634)] = 153939, + [SMALL_STATE(4635)] = 153949, + [SMALL_STATE(4636)] = 153959, + [SMALL_STATE(4637)] = 153973, + [SMALL_STATE(4638)] = 153983, + [SMALL_STATE(4639)] = 153997, + [SMALL_STATE(4640)] = 154011, + [SMALL_STATE(4641)] = 154021, + [SMALL_STATE(4642)] = 154031, + [SMALL_STATE(4643)] = 154041, + [SMALL_STATE(4644)] = 154055, + [SMALL_STATE(4645)] = 154069, + [SMALL_STATE(4646)] = 154079, + [SMALL_STATE(4647)] = 154093, + [SMALL_STATE(4648)] = 154107, + [SMALL_STATE(4649)] = 154117, + [SMALL_STATE(4650)] = 154131, + [SMALL_STATE(4651)] = 154145, + [SMALL_STATE(4652)] = 154157, + [SMALL_STATE(4653)] = 154167, + [SMALL_STATE(4654)] = 154181, + [SMALL_STATE(4655)] = 154195, + [SMALL_STATE(4656)] = 154205, + [SMALL_STATE(4657)] = 154219, + [SMALL_STATE(4658)] = 154229, + [SMALL_STATE(4659)] = 154239, + [SMALL_STATE(4660)] = 154249, + [SMALL_STATE(4661)] = 154259, + [SMALL_STATE(4662)] = 154273, + [SMALL_STATE(4663)] = 154283, + [SMALL_STATE(4664)] = 154297, + [SMALL_STATE(4665)] = 154307, + [SMALL_STATE(4666)] = 154317, + [SMALL_STATE(4667)] = 154327, + [SMALL_STATE(4668)] = 154337, + [SMALL_STATE(4669)] = 154351, + [SMALL_STATE(4670)] = 154361, + [SMALL_STATE(4671)] = 154371, + [SMALL_STATE(4672)] = 154385, + [SMALL_STATE(4673)] = 154399, + [SMALL_STATE(4674)] = 154409, + [SMALL_STATE(4675)] = 154419, + [SMALL_STATE(4676)] = 154429, + [SMALL_STATE(4677)] = 154439, + [SMALL_STATE(4678)] = 154449, + [SMALL_STATE(4679)] = 154463, + [SMALL_STATE(4680)] = 154473, + [SMALL_STATE(4681)] = 154483, + [SMALL_STATE(4682)] = 154497, + [SMALL_STATE(4683)] = 154507, + [SMALL_STATE(4684)] = 154519, + [SMALL_STATE(4685)] = 154533, + [SMALL_STATE(4686)] = 154547, + [SMALL_STATE(4687)] = 154561, + [SMALL_STATE(4688)] = 154575, + [SMALL_STATE(4689)] = 154589, + [SMALL_STATE(4690)] = 154599, + [SMALL_STATE(4691)] = 154609, + [SMALL_STATE(4692)] = 154619, + [SMALL_STATE(4693)] = 154633, + [SMALL_STATE(4694)] = 154647, + [SMALL_STATE(4695)] = 154657, + [SMALL_STATE(4696)] = 154667, + [SMALL_STATE(4697)] = 154677, + [SMALL_STATE(4698)] = 154691, + [SMALL_STATE(4699)] = 154705, + [SMALL_STATE(4700)] = 154715, + [SMALL_STATE(4701)] = 154729, + [SMALL_STATE(4702)] = 154739, + [SMALL_STATE(4703)] = 154749, + [SMALL_STATE(4704)] = 154759, + [SMALL_STATE(4705)] = 154769, + [SMALL_STATE(4706)] = 154779, + [SMALL_STATE(4707)] = 154789, + [SMALL_STATE(4708)] = 154799, + [SMALL_STATE(4709)] = 154813, + [SMALL_STATE(4710)] = 154823, + [SMALL_STATE(4711)] = 154833, + [SMALL_STATE(4712)] = 154843, + [SMALL_STATE(4713)] = 154857, + [SMALL_STATE(4714)] = 154871, + [SMALL_STATE(4715)] = 154885, + [SMALL_STATE(4716)] = 154895, + [SMALL_STATE(4717)] = 154909, + [SMALL_STATE(4718)] = 154919, + [SMALL_STATE(4719)] = 154929, + [SMALL_STATE(4720)] = 154939, + [SMALL_STATE(4721)] = 154949, + [SMALL_STATE(4722)] = 154963, + [SMALL_STATE(4723)] = 154973, + [SMALL_STATE(4724)] = 154983, + [SMALL_STATE(4725)] = 154993, + [SMALL_STATE(4726)] = 155003, + [SMALL_STATE(4727)] = 155013, + [SMALL_STATE(4728)] = 155023, + [SMALL_STATE(4729)] = 155033, + [SMALL_STATE(4730)] = 155043, + [SMALL_STATE(4731)] = 155057, + [SMALL_STATE(4732)] = 155067, + [SMALL_STATE(4733)] = 155077, + [SMALL_STATE(4734)] = 155091, + [SMALL_STATE(4735)] = 155105, + [SMALL_STATE(4736)] = 155117, + [SMALL_STATE(4737)] = 155131, + [SMALL_STATE(4738)] = 155141, + [SMALL_STATE(4739)] = 155151, + [SMALL_STATE(4740)] = 155161, + [SMALL_STATE(4741)] = 155175, + [SMALL_STATE(4742)] = 155185, + [SMALL_STATE(4743)] = 155195, + [SMALL_STATE(4744)] = 155205, + [SMALL_STATE(4745)] = 155219, + [SMALL_STATE(4746)] = 155233, + [SMALL_STATE(4747)] = 155247, + [SMALL_STATE(4748)] = 155257, + [SMALL_STATE(4749)] = 155267, + [SMALL_STATE(4750)] = 155277, + [SMALL_STATE(4751)] = 155287, + [SMALL_STATE(4752)] = 155297, + [SMALL_STATE(4753)] = 155307, + [SMALL_STATE(4754)] = 155317, + [SMALL_STATE(4755)] = 155327, + [SMALL_STATE(4756)] = 155337, + [SMALL_STATE(4757)] = 155347, + [SMALL_STATE(4758)] = 155357, + [SMALL_STATE(4759)] = 155367, + [SMALL_STATE(4760)] = 155377, + [SMALL_STATE(4761)] = 155387, + [SMALL_STATE(4762)] = 155397, + [SMALL_STATE(4763)] = 155407, + [SMALL_STATE(4764)] = 155417, + [SMALL_STATE(4765)] = 155427, + [SMALL_STATE(4766)] = 155437, + [SMALL_STATE(4767)] = 155447, + [SMALL_STATE(4768)] = 155457, + [SMALL_STATE(4769)] = 155467, + [SMALL_STATE(4770)] = 155477, + [SMALL_STATE(4771)] = 155487, + [SMALL_STATE(4772)] = 155497, + [SMALL_STATE(4773)] = 155507, + [SMALL_STATE(4774)] = 155517, + [SMALL_STATE(4775)] = 155527, + [SMALL_STATE(4776)] = 155537, + [SMALL_STATE(4777)] = 155547, + [SMALL_STATE(4778)] = 155557, + [SMALL_STATE(4779)] = 155567, + [SMALL_STATE(4780)] = 155577, + [SMALL_STATE(4781)] = 155591, + [SMALL_STATE(4782)] = 155601, + [SMALL_STATE(4783)] = 155611, + [SMALL_STATE(4784)] = 155625, + [SMALL_STATE(4785)] = 155639, + [SMALL_STATE(4786)] = 155653, + [SMALL_STATE(4787)] = 155663, + [SMALL_STATE(4788)] = 155677, + [SMALL_STATE(4789)] = 155687, + [SMALL_STATE(4790)] = 155701, + [SMALL_STATE(4791)] = 155715, + [SMALL_STATE(4792)] = 155725, + [SMALL_STATE(4793)] = 155739, + [SMALL_STATE(4794)] = 155749, + [SMALL_STATE(4795)] = 155759, + [SMALL_STATE(4796)] = 155769, + [SMALL_STATE(4797)] = 155779, + [SMALL_STATE(4798)] = 155793, + [SMALL_STATE(4799)] = 155803, + [SMALL_STATE(4800)] = 155813, + [SMALL_STATE(4801)] = 155823, + [SMALL_STATE(4802)] = 155833, + [SMALL_STATE(4803)] = 155847, + [SMALL_STATE(4804)] = 155857, + [SMALL_STATE(4805)] = 155867, + [SMALL_STATE(4806)] = 155877, + [SMALL_STATE(4807)] = 155891, + [SMALL_STATE(4808)] = 155901, + [SMALL_STATE(4809)] = 155915, + [SMALL_STATE(4810)] = 155925, + [SMALL_STATE(4811)] = 155939, + [SMALL_STATE(4812)] = 155949, + [SMALL_STATE(4813)] = 155963, + [SMALL_STATE(4814)] = 155975, + [SMALL_STATE(4815)] = 155985, + [SMALL_STATE(4816)] = 155999, + [SMALL_STATE(4817)] = 156009, + [SMALL_STATE(4818)] = 156019, + [SMALL_STATE(4819)] = 156029, + [SMALL_STATE(4820)] = 156039, + [SMALL_STATE(4821)] = 156049, + [SMALL_STATE(4822)] = 156059, + [SMALL_STATE(4823)] = 156069, + [SMALL_STATE(4824)] = 156079, + [SMALL_STATE(4825)] = 156089, + [SMALL_STATE(4826)] = 156099, + [SMALL_STATE(4827)] = 156109, + [SMALL_STATE(4828)] = 156119, + [SMALL_STATE(4829)] = 156129, + [SMALL_STATE(4830)] = 156143, + [SMALL_STATE(4831)] = 156153, + [SMALL_STATE(4832)] = 156163, + [SMALL_STATE(4833)] = 156173, + [SMALL_STATE(4834)] = 156183, + [SMALL_STATE(4835)] = 156193, + [SMALL_STATE(4836)] = 156203, + [SMALL_STATE(4837)] = 156213, + [SMALL_STATE(4838)] = 156223, + [SMALL_STATE(4839)] = 156233, + [SMALL_STATE(4840)] = 156243, + [SMALL_STATE(4841)] = 156253, + [SMALL_STATE(4842)] = 156263, + [SMALL_STATE(4843)] = 156273, + [SMALL_STATE(4844)] = 156283, + [SMALL_STATE(4845)] = 156293, + [SMALL_STATE(4846)] = 156303, + [SMALL_STATE(4847)] = 156313, + [SMALL_STATE(4848)] = 156323, + [SMALL_STATE(4849)] = 156333, + [SMALL_STATE(4850)] = 156343, + [SMALL_STATE(4851)] = 156353, + [SMALL_STATE(4852)] = 156363, + [SMALL_STATE(4853)] = 156373, + [SMALL_STATE(4854)] = 156383, + [SMALL_STATE(4855)] = 156393, + [SMALL_STATE(4856)] = 156403, + [SMALL_STATE(4857)] = 156413, + [SMALL_STATE(4858)] = 156423, + [SMALL_STATE(4859)] = 156433, + [SMALL_STATE(4860)] = 156443, + [SMALL_STATE(4861)] = 156453, + [SMALL_STATE(4862)] = 156463, + [SMALL_STATE(4863)] = 156473, + [SMALL_STATE(4864)] = 156483, + [SMALL_STATE(4865)] = 156493, + [SMALL_STATE(4866)] = 156503, + [SMALL_STATE(4867)] = 156513, + [SMALL_STATE(4868)] = 156523, + [SMALL_STATE(4869)] = 156533, + [SMALL_STATE(4870)] = 156547, + [SMALL_STATE(4871)] = 156557, + [SMALL_STATE(4872)] = 156567, + [SMALL_STATE(4873)] = 156577, + [SMALL_STATE(4874)] = 156587, + [SMALL_STATE(4875)] = 156597, + [SMALL_STATE(4876)] = 156607, + [SMALL_STATE(4877)] = 156617, + [SMALL_STATE(4878)] = 156627, + [SMALL_STATE(4879)] = 156641, + [SMALL_STATE(4880)] = 156655, + [SMALL_STATE(4881)] = 156665, + [SMALL_STATE(4882)] = 156677, + [SMALL_STATE(4883)] = 156687, + [SMALL_STATE(4884)] = 156697, + [SMALL_STATE(4885)] = 156707, + [SMALL_STATE(4886)] = 156717, + [SMALL_STATE(4887)] = 156727, + [SMALL_STATE(4888)] = 156741, + [SMALL_STATE(4889)] = 156751, + [SMALL_STATE(4890)] = 156761, + [SMALL_STATE(4891)] = 156775, + [SMALL_STATE(4892)] = 156787, + [SMALL_STATE(4893)] = 156797, + [SMALL_STATE(4894)] = 156807, + [SMALL_STATE(4895)] = 156817, + [SMALL_STATE(4896)] = 156827, + [SMALL_STATE(4897)] = 156841, + [SMALL_STATE(4898)] = 156855, + [SMALL_STATE(4899)] = 156865, + [SMALL_STATE(4900)] = 156879, + [SMALL_STATE(4901)] = 156889, + [SMALL_STATE(4902)] = 156899, + [SMALL_STATE(4903)] = 156909, + [SMALL_STATE(4904)] = 156919, + [SMALL_STATE(4905)] = 156929, + [SMALL_STATE(4906)] = 156943, + [SMALL_STATE(4907)] = 156953, + [SMALL_STATE(4908)] = 156963, + [SMALL_STATE(4909)] = 156977, + [SMALL_STATE(4910)] = 156987, + [SMALL_STATE(4911)] = 157001, + [SMALL_STATE(4912)] = 157011, + [SMALL_STATE(4913)] = 157021, + [SMALL_STATE(4914)] = 157031, + [SMALL_STATE(4915)] = 157041, + [SMALL_STATE(4916)] = 157051, + [SMALL_STATE(4917)] = 157061, + [SMALL_STATE(4918)] = 157071, + [SMALL_STATE(4919)] = 157081, + [SMALL_STATE(4920)] = 157091, + [SMALL_STATE(4921)] = 157101, + [SMALL_STATE(4922)] = 157111, + [SMALL_STATE(4923)] = 157121, + [SMALL_STATE(4924)] = 157131, + [SMALL_STATE(4925)] = 157141, + [SMALL_STATE(4926)] = 157155, + [SMALL_STATE(4927)] = 157165, + [SMALL_STATE(4928)] = 157179, + [SMALL_STATE(4929)] = 157189, + [SMALL_STATE(4930)] = 157199, + [SMALL_STATE(4931)] = 157211, + [SMALL_STATE(4932)] = 157221, + [SMALL_STATE(4933)] = 157231, + [SMALL_STATE(4934)] = 157241, + [SMALL_STATE(4935)] = 157251, + [SMALL_STATE(4936)] = 157261, + [SMALL_STATE(4937)] = 157271, + [SMALL_STATE(4938)] = 157281, + [SMALL_STATE(4939)] = 157291, + [SMALL_STATE(4940)] = 157305, + [SMALL_STATE(4941)] = 157315, + [SMALL_STATE(4942)] = 157325, + [SMALL_STATE(4943)] = 157335, + [SMALL_STATE(4944)] = 157345, + [SMALL_STATE(4945)] = 157355, + [SMALL_STATE(4946)] = 157365, + [SMALL_STATE(4947)] = 157379, + [SMALL_STATE(4948)] = 157389, + [SMALL_STATE(4949)] = 157399, + [SMALL_STATE(4950)] = 157413, + [SMALL_STATE(4951)] = 157427, + [SMALL_STATE(4952)] = 157437, + [SMALL_STATE(4953)] = 157447, + [SMALL_STATE(4954)] = 157457, + [SMALL_STATE(4955)] = 157467, + [SMALL_STATE(4956)] = 157481, + [SMALL_STATE(4957)] = 157495, + [SMALL_STATE(4958)] = 157505, + [SMALL_STATE(4959)] = 157519, + [SMALL_STATE(4960)] = 157533, + [SMALL_STATE(4961)] = 157547, + [SMALL_STATE(4962)] = 157561, + [SMALL_STATE(4963)] = 157575, + [SMALL_STATE(4964)] = 157585, + [SMALL_STATE(4965)] = 157599, + [SMALL_STATE(4966)] = 157613, + [SMALL_STATE(4967)] = 157627, + [SMALL_STATE(4968)] = 157641, + [SMALL_STATE(4969)] = 157651, + [SMALL_STATE(4970)] = 157665, + [SMALL_STATE(4971)] = 157675, + [SMALL_STATE(4972)] = 157689, + [SMALL_STATE(4973)] = 157703, + [SMALL_STATE(4974)] = 157717, + [SMALL_STATE(4975)] = 157731, + [SMALL_STATE(4976)] = 157745, + [SMALL_STATE(4977)] = 157755, + [SMALL_STATE(4978)] = 157769, + [SMALL_STATE(4979)] = 157779, + [SMALL_STATE(4980)] = 157789, + [SMALL_STATE(4981)] = 157799, + [SMALL_STATE(4982)] = 157813, + [SMALL_STATE(4983)] = 157825, + [SMALL_STATE(4984)] = 157835, + [SMALL_STATE(4985)] = 157847, + [SMALL_STATE(4986)] = 157857, + [SMALL_STATE(4987)] = 157867, + [SMALL_STATE(4988)] = 157881, + [SMALL_STATE(4989)] = 157891, + [SMALL_STATE(4990)] = 157903, + [SMALL_STATE(4991)] = 157917, + [SMALL_STATE(4992)] = 157927, + [SMALL_STATE(4993)] = 157937, + [SMALL_STATE(4994)] = 157949, + [SMALL_STATE(4995)] = 157963, + [SMALL_STATE(4996)] = 157973, + [SMALL_STATE(4997)] = 157987, + [SMALL_STATE(4998)] = 158001, + [SMALL_STATE(4999)] = 158015, + [SMALL_STATE(5000)] = 158029, + [SMALL_STATE(5001)] = 158043, + [SMALL_STATE(5002)] = 158057, + [SMALL_STATE(5003)] = 158067, + [SMALL_STATE(5004)] = 158079, + [SMALL_STATE(5005)] = 158091, + [SMALL_STATE(5006)] = 158105, + [SMALL_STATE(5007)] = 158119, + [SMALL_STATE(5008)] = 158129, + [SMALL_STATE(5009)] = 158143, + [SMALL_STATE(5010)] = 158155, + [SMALL_STATE(5011)] = 158165, + [SMALL_STATE(5012)] = 158179, + [SMALL_STATE(5013)] = 158189, + [SMALL_STATE(5014)] = 158199, + [SMALL_STATE(5015)] = 158213, + [SMALL_STATE(5016)] = 158223, + [SMALL_STATE(5017)] = 158237, + [SMALL_STATE(5018)] = 158247, + [SMALL_STATE(5019)] = 158261, + [SMALL_STATE(5020)] = 158273, + [SMALL_STATE(5021)] = 158287, + [SMALL_STATE(5022)] = 158297, + [SMALL_STATE(5023)] = 158311, + [SMALL_STATE(5024)] = 158325, + [SMALL_STATE(5025)] = 158335, + [SMALL_STATE(5026)] = 158345, + [SMALL_STATE(5027)] = 158359, + [SMALL_STATE(5028)] = 158373, + [SMALL_STATE(5029)] = 158383, + [SMALL_STATE(5030)] = 158397, + [SMALL_STATE(5031)] = 158411, + [SMALL_STATE(5032)] = 158421, + [SMALL_STATE(5033)] = 158435, + [SMALL_STATE(5034)] = 158449, + [SMALL_STATE(5035)] = 158459, + [SMALL_STATE(5036)] = 158469, + [SMALL_STATE(5037)] = 158479, + [SMALL_STATE(5038)] = 158489, + [SMALL_STATE(5039)] = 158503, + [SMALL_STATE(5040)] = 158515, + [SMALL_STATE(5041)] = 158525, + [SMALL_STATE(5042)] = 158537, + [SMALL_STATE(5043)] = 158547, + [SMALL_STATE(5044)] = 158557, + [SMALL_STATE(5045)] = 158567, + [SMALL_STATE(5046)] = 158577, + [SMALL_STATE(5047)] = 158587, + [SMALL_STATE(5048)] = 158597, + [SMALL_STATE(5049)] = 158607, + [SMALL_STATE(5050)] = 158617, + [SMALL_STATE(5051)] = 158627, + [SMALL_STATE(5052)] = 158637, + [SMALL_STATE(5053)] = 158651, + [SMALL_STATE(5054)] = 158661, + [SMALL_STATE(5055)] = 158671, + [SMALL_STATE(5056)] = 158681, + [SMALL_STATE(5057)] = 158691, + [SMALL_STATE(5058)] = 158701, + [SMALL_STATE(5059)] = 158711, + [SMALL_STATE(5060)] = 158721, + [SMALL_STATE(5061)] = 158731, + [SMALL_STATE(5062)] = 158741, + [SMALL_STATE(5063)] = 158755, + [SMALL_STATE(5064)] = 158765, + [SMALL_STATE(5065)] = 158775, + [SMALL_STATE(5066)] = 158785, + [SMALL_STATE(5067)] = 158795, + [SMALL_STATE(5068)] = 158805, + [SMALL_STATE(5069)] = 158815, + [SMALL_STATE(5070)] = 158825, + [SMALL_STATE(5071)] = 158835, + [SMALL_STATE(5072)] = 158845, + [SMALL_STATE(5073)] = 158855, + [SMALL_STATE(5074)] = 158865, + [SMALL_STATE(5075)] = 158875, + [SMALL_STATE(5076)] = 158887, + [SMALL_STATE(5077)] = 158899, + [SMALL_STATE(5078)] = 158909, + [SMALL_STATE(5079)] = 158919, + [SMALL_STATE(5080)] = 158929, + [SMALL_STATE(5081)] = 158943, + [SMALL_STATE(5082)] = 158953, + [SMALL_STATE(5083)] = 158963, + [SMALL_STATE(5084)] = 158973, + [SMALL_STATE(5085)] = 158983, + [SMALL_STATE(5086)] = 158993, + [SMALL_STATE(5087)] = 159003, + [SMALL_STATE(5088)] = 159013, + [SMALL_STATE(5089)] = 159023, + [SMALL_STATE(5090)] = 159033, + [SMALL_STATE(5091)] = 159043, + [SMALL_STATE(5092)] = 159053, + [SMALL_STATE(5093)] = 159063, + [SMALL_STATE(5094)] = 159073, + [SMALL_STATE(5095)] = 159083, + [SMALL_STATE(5096)] = 159093, + [SMALL_STATE(5097)] = 159105, + [SMALL_STATE(5098)] = 159115, + [SMALL_STATE(5099)] = 159125, + [SMALL_STATE(5100)] = 159135, + [SMALL_STATE(5101)] = 159145, + [SMALL_STATE(5102)] = 159155, + [SMALL_STATE(5103)] = 159165, + [SMALL_STATE(5104)] = 159175, + [SMALL_STATE(5105)] = 159185, + [SMALL_STATE(5106)] = 159195, + [SMALL_STATE(5107)] = 159207, + [SMALL_STATE(5108)] = 159217, + [SMALL_STATE(5109)] = 159231, + [SMALL_STATE(5110)] = 159241, + [SMALL_STATE(5111)] = 159251, + [SMALL_STATE(5112)] = 159261, + [SMALL_STATE(5113)] = 159271, + [SMALL_STATE(5114)] = 159281, + [SMALL_STATE(5115)] = 159291, + [SMALL_STATE(5116)] = 159305, + [SMALL_STATE(5117)] = 159319, + [SMALL_STATE(5118)] = 159329, + [SMALL_STATE(5119)] = 159339, + [SMALL_STATE(5120)] = 159349, + [SMALL_STATE(5121)] = 159359, + [SMALL_STATE(5122)] = 159373, + [SMALL_STATE(5123)] = 159383, + [SMALL_STATE(5124)] = 159393, + [SMALL_STATE(5125)] = 159403, + [SMALL_STATE(5126)] = 159413, + [SMALL_STATE(5127)] = 159422, + [SMALL_STATE(5128)] = 159433, + [SMALL_STATE(5129)] = 159444, + [SMALL_STATE(5130)] = 159453, + [SMALL_STATE(5131)] = 159464, + [SMALL_STATE(5132)] = 159475, + [SMALL_STATE(5133)] = 159484, + [SMALL_STATE(5134)] = 159495, + [SMALL_STATE(5135)] = 159504, + [SMALL_STATE(5136)] = 159515, + [SMALL_STATE(5137)] = 159526, + [SMALL_STATE(5138)] = 159537, + [SMALL_STATE(5139)] = 159548, + [SMALL_STATE(5140)] = 159559, + [SMALL_STATE(5141)] = 159568, + [SMALL_STATE(5142)] = 159579, + [SMALL_STATE(5143)] = 159590, + [SMALL_STATE(5144)] = 159601, + [SMALL_STATE(5145)] = 159612, + [SMALL_STATE(5146)] = 159623, + [SMALL_STATE(5147)] = 159634, + [SMALL_STATE(5148)] = 159643, + [SMALL_STATE(5149)] = 159654, + [SMALL_STATE(5150)] = 159665, + [SMALL_STATE(5151)] = 159676, + [SMALL_STATE(5152)] = 159687, + [SMALL_STATE(5153)] = 159696, + [SMALL_STATE(5154)] = 159707, + [SMALL_STATE(5155)] = 159718, + [SMALL_STATE(5156)] = 159729, + [SMALL_STATE(5157)] = 159740, + [SMALL_STATE(5158)] = 159751, + [SMALL_STATE(5159)] = 159762, + [SMALL_STATE(5160)] = 159771, + [SMALL_STATE(5161)] = 159780, + [SMALL_STATE(5162)] = 159791, + [SMALL_STATE(5163)] = 159802, + [SMALL_STATE(5164)] = 159813, + [SMALL_STATE(5165)] = 159824, + [SMALL_STATE(5166)] = 159835, + [SMALL_STATE(5167)] = 159846, + [SMALL_STATE(5168)] = 159857, + [SMALL_STATE(5169)] = 159868, + [SMALL_STATE(5170)] = 159877, + [SMALL_STATE(5171)] = 159888, + [SMALL_STATE(5172)] = 159899, + [SMALL_STATE(5173)] = 159908, + [SMALL_STATE(5174)] = 159919, + [SMALL_STATE(5175)] = 159930, + [SMALL_STATE(5176)] = 159941, + [SMALL_STATE(5177)] = 159952, + [SMALL_STATE(5178)] = 159963, + [SMALL_STATE(5179)] = 159972, + [SMALL_STATE(5180)] = 159983, + [SMALL_STATE(5181)] = 159994, + [SMALL_STATE(5182)] = 160005, + [SMALL_STATE(5183)] = 160016, + [SMALL_STATE(5184)] = 160027, + [SMALL_STATE(5185)] = 160038, + [SMALL_STATE(5186)] = 160049, + [SMALL_STATE(5187)] = 160060, + [SMALL_STATE(5188)] = 160071, + [SMALL_STATE(5189)] = 160082, + [SMALL_STATE(5190)] = 160093, + [SMALL_STATE(5191)] = 160104, + [SMALL_STATE(5192)] = 160115, + [SMALL_STATE(5193)] = 160126, + [SMALL_STATE(5194)] = 160135, + [SMALL_STATE(5195)] = 160144, + [SMALL_STATE(5196)] = 160153, + [SMALL_STATE(5197)] = 160162, + [SMALL_STATE(5198)] = 160173, + [SMALL_STATE(5199)] = 160184, + [SMALL_STATE(5200)] = 160193, + [SMALL_STATE(5201)] = 160204, + [SMALL_STATE(5202)] = 160215, + [SMALL_STATE(5203)] = 160226, + [SMALL_STATE(5204)] = 160237, + [SMALL_STATE(5205)] = 160248, + [SMALL_STATE(5206)] = 160259, + [SMALL_STATE(5207)] = 160270, + [SMALL_STATE(5208)] = 160279, + [SMALL_STATE(5209)] = 160290, + [SMALL_STATE(5210)] = 160301, + [SMALL_STATE(5211)] = 160312, + [SMALL_STATE(5212)] = 160323, + [SMALL_STATE(5213)] = 160334, + [SMALL_STATE(5214)] = 160345, + [SMALL_STATE(5215)] = 160354, + [SMALL_STATE(5216)] = 160365, + [SMALL_STATE(5217)] = 160376, + [SMALL_STATE(5218)] = 160387, + [SMALL_STATE(5219)] = 160398, + [SMALL_STATE(5220)] = 160409, + [SMALL_STATE(5221)] = 160420, + [SMALL_STATE(5222)] = 160429, + [SMALL_STATE(5223)] = 160440, + [SMALL_STATE(5224)] = 160451, + [SMALL_STATE(5225)] = 160462, + [SMALL_STATE(5226)] = 160471, + [SMALL_STATE(5227)] = 160482, + [SMALL_STATE(5228)] = 160493, + [SMALL_STATE(5229)] = 160504, + [SMALL_STATE(5230)] = 160515, + [SMALL_STATE(5231)] = 160524, + [SMALL_STATE(5232)] = 160535, + [SMALL_STATE(5233)] = 160546, + [SMALL_STATE(5234)] = 160557, + [SMALL_STATE(5235)] = 160568, + [SMALL_STATE(5236)] = 160579, + [SMALL_STATE(5237)] = 160590, + [SMALL_STATE(5238)] = 160601, + [SMALL_STATE(5239)] = 160610, + [SMALL_STATE(5240)] = 160621, + [SMALL_STATE(5241)] = 160632, + [SMALL_STATE(5242)] = 160643, + [SMALL_STATE(5243)] = 160654, + [SMALL_STATE(5244)] = 160665, + [SMALL_STATE(5245)] = 160674, + [SMALL_STATE(5246)] = 160683, + [SMALL_STATE(5247)] = 160694, + [SMALL_STATE(5248)] = 160705, + [SMALL_STATE(5249)] = 160716, + [SMALL_STATE(5250)] = 160727, + [SMALL_STATE(5251)] = 160738, + [SMALL_STATE(5252)] = 160749, + [SMALL_STATE(5253)] = 160760, + [SMALL_STATE(5254)] = 160771, + [SMALL_STATE(5255)] = 160782, + [SMALL_STATE(5256)] = 160793, + [SMALL_STATE(5257)] = 160804, + [SMALL_STATE(5258)] = 160815, + [SMALL_STATE(5259)] = 160826, + [SMALL_STATE(5260)] = 160835, + [SMALL_STATE(5261)] = 160844, + [SMALL_STATE(5262)] = 160855, + [SMALL_STATE(5263)] = 160864, + [SMALL_STATE(5264)] = 160873, + [SMALL_STATE(5265)] = 160884, + [SMALL_STATE(5266)] = 160895, + [SMALL_STATE(5267)] = 160906, + [SMALL_STATE(5268)] = 160917, + [SMALL_STATE(5269)] = 160928, + [SMALL_STATE(5270)] = 160939, + [SMALL_STATE(5271)] = 160950, + [SMALL_STATE(5272)] = 160961, + [SMALL_STATE(5273)] = 160970, + [SMALL_STATE(5274)] = 160981, + [SMALL_STATE(5275)] = 160992, + [SMALL_STATE(5276)] = 161003, + [SMALL_STATE(5277)] = 161014, + [SMALL_STATE(5278)] = 161023, + [SMALL_STATE(5279)] = 161032, + [SMALL_STATE(5280)] = 161043, + [SMALL_STATE(5281)] = 161054, + [SMALL_STATE(5282)] = 161065, + [SMALL_STATE(5283)] = 161076, + [SMALL_STATE(5284)] = 161087, + [SMALL_STATE(5285)] = 161096, + [SMALL_STATE(5286)] = 161105, + [SMALL_STATE(5287)] = 161116, + [SMALL_STATE(5288)] = 161127, + [SMALL_STATE(5289)] = 161138, + [SMALL_STATE(5290)] = 161149, + [SMALL_STATE(5291)] = 161158, + [SMALL_STATE(5292)] = 161169, + [SMALL_STATE(5293)] = 161180, + [SMALL_STATE(5294)] = 161191, + [SMALL_STATE(5295)] = 161202, + [SMALL_STATE(5296)] = 161213, + [SMALL_STATE(5297)] = 161224, + [SMALL_STATE(5298)] = 161233, + [SMALL_STATE(5299)] = 161244, + [SMALL_STATE(5300)] = 161255, + [SMALL_STATE(5301)] = 161266, + [SMALL_STATE(5302)] = 161277, + [SMALL_STATE(5303)] = 161288, + [SMALL_STATE(5304)] = 161299, + [SMALL_STATE(5305)] = 161310, + [SMALL_STATE(5306)] = 161319, + [SMALL_STATE(5307)] = 161328, + [SMALL_STATE(5308)] = 161337, + [SMALL_STATE(5309)] = 161348, + [SMALL_STATE(5310)] = 161357, + [SMALL_STATE(5311)] = 161368, + [SMALL_STATE(5312)] = 161379, + [SMALL_STATE(5313)] = 161390, + [SMALL_STATE(5314)] = 161399, + [SMALL_STATE(5315)] = 161408, + [SMALL_STATE(5316)] = 161419, + [SMALL_STATE(5317)] = 161428, + [SMALL_STATE(5318)] = 161439, + [SMALL_STATE(5319)] = 161450, + [SMALL_STATE(5320)] = 161459, + [SMALL_STATE(5321)] = 161470, + [SMALL_STATE(5322)] = 161481, + [SMALL_STATE(5323)] = 161492, + [SMALL_STATE(5324)] = 161503, + [SMALL_STATE(5325)] = 161514, + [SMALL_STATE(5326)] = 161525, + [SMALL_STATE(5327)] = 161536, + [SMALL_STATE(5328)] = 161547, + [SMALL_STATE(5329)] = 161558, + [SMALL_STATE(5330)] = 161567, + [SMALL_STATE(5331)] = 161576, + [SMALL_STATE(5332)] = 161585, + [SMALL_STATE(5333)] = 161596, + [SMALL_STATE(5334)] = 161605, + [SMALL_STATE(5335)] = 161614, + [SMALL_STATE(5336)] = 161625, + [SMALL_STATE(5337)] = 161636, + [SMALL_STATE(5338)] = 161647, + [SMALL_STATE(5339)] = 161658, + [SMALL_STATE(5340)] = 161669, + [SMALL_STATE(5341)] = 161680, + [SMALL_STATE(5342)] = 161691, + [SMALL_STATE(5343)] = 161702, + [SMALL_STATE(5344)] = 161713, + [SMALL_STATE(5345)] = 161724, + [SMALL_STATE(5346)] = 161733, + [SMALL_STATE(5347)] = 161744, + [SMALL_STATE(5348)] = 161755, + [SMALL_STATE(5349)] = 161764, + [SMALL_STATE(5350)] = 161775, + [SMALL_STATE(5351)] = 161786, + [SMALL_STATE(5352)] = 161797, + [SMALL_STATE(5353)] = 161808, + [SMALL_STATE(5354)] = 161819, + [SMALL_STATE(5355)] = 161830, + [SMALL_STATE(5356)] = 161839, + [SMALL_STATE(5357)] = 161848, + [SMALL_STATE(5358)] = 161859, + [SMALL_STATE(5359)] = 161870, + [SMALL_STATE(5360)] = 161879, + [SMALL_STATE(5361)] = 161890, + [SMALL_STATE(5362)] = 161901, + [SMALL_STATE(5363)] = 161912, + [SMALL_STATE(5364)] = 161923, + [SMALL_STATE(5365)] = 161934, + [SMALL_STATE(5366)] = 161945, + [SMALL_STATE(5367)] = 161956, + [SMALL_STATE(5368)] = 161967, + [SMALL_STATE(5369)] = 161976, + [SMALL_STATE(5370)] = 161987, + [SMALL_STATE(5371)] = 161998, + [SMALL_STATE(5372)] = 162009, + [SMALL_STATE(5373)] = 162020, + [SMALL_STATE(5374)] = 162031, + [SMALL_STATE(5375)] = 162042, + [SMALL_STATE(5376)] = 162053, + [SMALL_STATE(5377)] = 162064, + [SMALL_STATE(5378)] = 162075, + [SMALL_STATE(5379)] = 162086, + [SMALL_STATE(5380)] = 162095, + [SMALL_STATE(5381)] = 162106, + [SMALL_STATE(5382)] = 162117, + [SMALL_STATE(5383)] = 162128, + [SMALL_STATE(5384)] = 162137, + [SMALL_STATE(5385)] = 162146, + [SMALL_STATE(5386)] = 162155, + [SMALL_STATE(5387)] = 162166, + [SMALL_STATE(5388)] = 162177, + [SMALL_STATE(5389)] = 162188, + [SMALL_STATE(5390)] = 162197, + [SMALL_STATE(5391)] = 162208, + [SMALL_STATE(5392)] = 162219, + [SMALL_STATE(5393)] = 162228, + [SMALL_STATE(5394)] = 162239, + [SMALL_STATE(5395)] = 162250, + [SMALL_STATE(5396)] = 162261, + [SMALL_STATE(5397)] = 162272, + [SMALL_STATE(5398)] = 162283, + [SMALL_STATE(5399)] = 162294, + [SMALL_STATE(5400)] = 162305, + [SMALL_STATE(5401)] = 162314, + [SMALL_STATE(5402)] = 162325, + [SMALL_STATE(5403)] = 162336, + [SMALL_STATE(5404)] = 162347, + [SMALL_STATE(5405)] = 162358, + [SMALL_STATE(5406)] = 162369, + [SMALL_STATE(5407)] = 162380, + [SMALL_STATE(5408)] = 162391, + [SMALL_STATE(5409)] = 162402, + [SMALL_STATE(5410)] = 162413, + [SMALL_STATE(5411)] = 162424, + [SMALL_STATE(5412)] = 162435, + [SMALL_STATE(5413)] = 162446, + [SMALL_STATE(5414)] = 162455, + [SMALL_STATE(5415)] = 162466, + [SMALL_STATE(5416)] = 162477, + [SMALL_STATE(5417)] = 162486, + [SMALL_STATE(5418)] = 162495, + [SMALL_STATE(5419)] = 162506, + [SMALL_STATE(5420)] = 162515, + [SMALL_STATE(5421)] = 162524, + [SMALL_STATE(5422)] = 162535, + [SMALL_STATE(5423)] = 162546, + [SMALL_STATE(5424)] = 162557, + [SMALL_STATE(5425)] = 162568, + [SMALL_STATE(5426)] = 162579, + [SMALL_STATE(5427)] = 162590, + [SMALL_STATE(5428)] = 162601, + [SMALL_STATE(5429)] = 162612, + [SMALL_STATE(5430)] = 162623, + [SMALL_STATE(5431)] = 162634, + [SMALL_STATE(5432)] = 162645, + [SMALL_STATE(5433)] = 162656, + [SMALL_STATE(5434)] = 162665, + [SMALL_STATE(5435)] = 162674, + [SMALL_STATE(5436)] = 162685, + [SMALL_STATE(5437)] = 162696, + [SMALL_STATE(5438)] = 162705, + [SMALL_STATE(5439)] = 162716, + [SMALL_STATE(5440)] = 162727, + [SMALL_STATE(5441)] = 162738, + [SMALL_STATE(5442)] = 162747, + [SMALL_STATE(5443)] = 162758, + [SMALL_STATE(5444)] = 162769, + [SMALL_STATE(5445)] = 162780, + [SMALL_STATE(5446)] = 162791, + [SMALL_STATE(5447)] = 162802, + [SMALL_STATE(5448)] = 162813, + [SMALL_STATE(5449)] = 162824, + [SMALL_STATE(5450)] = 162835, + [SMALL_STATE(5451)] = 162846, + [SMALL_STATE(5452)] = 162857, + [SMALL_STATE(5453)] = 162868, + [SMALL_STATE(5454)] = 162879, + [SMALL_STATE(5455)] = 162890, + [SMALL_STATE(5456)] = 162901, + [SMALL_STATE(5457)] = 162912, + [SMALL_STATE(5458)] = 162923, + [SMALL_STATE(5459)] = 162934, + [SMALL_STATE(5460)] = 162945, + [SMALL_STATE(5461)] = 162956, + [SMALL_STATE(5462)] = 162967, + [SMALL_STATE(5463)] = 162976, + [SMALL_STATE(5464)] = 162985, + [SMALL_STATE(5465)] = 162994, + [SMALL_STATE(5466)] = 163003, + [SMALL_STATE(5467)] = 163011, + [SMALL_STATE(5468)] = 163019, + [SMALL_STATE(5469)] = 163027, + [SMALL_STATE(5470)] = 163035, + [SMALL_STATE(5471)] = 163043, + [SMALL_STATE(5472)] = 163051, + [SMALL_STATE(5473)] = 163059, + [SMALL_STATE(5474)] = 163067, + [SMALL_STATE(5475)] = 163075, + [SMALL_STATE(5476)] = 163083, + [SMALL_STATE(5477)] = 163091, + [SMALL_STATE(5478)] = 163099, + [SMALL_STATE(5479)] = 163107, + [SMALL_STATE(5480)] = 163115, + [SMALL_STATE(5481)] = 163123, + [SMALL_STATE(5482)] = 163131, + [SMALL_STATE(5483)] = 163141, + [SMALL_STATE(5484)] = 163149, + [SMALL_STATE(5485)] = 163157, + [SMALL_STATE(5486)] = 163165, + [SMALL_STATE(5487)] = 163173, + [SMALL_STATE(5488)] = 163181, + [SMALL_STATE(5489)] = 163189, + [SMALL_STATE(5490)] = 163197, + [SMALL_STATE(5491)] = 163205, + [SMALL_STATE(5492)] = 163213, + [SMALL_STATE(5493)] = 163221, + [SMALL_STATE(5494)] = 163229, + [SMALL_STATE(5495)] = 163239, + [SMALL_STATE(5496)] = 163247, + [SMALL_STATE(5497)] = 163255, + [SMALL_STATE(5498)] = 163263, + [SMALL_STATE(5499)] = 163271, + [SMALL_STATE(5500)] = 163279, + [SMALL_STATE(5501)] = 163287, + [SMALL_STATE(5502)] = 163295, + [SMALL_STATE(5503)] = 163303, + [SMALL_STATE(5504)] = 163311, + [SMALL_STATE(5505)] = 163319, + [SMALL_STATE(5506)] = 163327, + [SMALL_STATE(5507)] = 163335, + [SMALL_STATE(5508)] = 163343, + [SMALL_STATE(5509)] = 163351, + [SMALL_STATE(5510)] = 163359, + [SMALL_STATE(5511)] = 163367, + [SMALL_STATE(5512)] = 163375, + [SMALL_STATE(5513)] = 163383, + [SMALL_STATE(5514)] = 163391, + [SMALL_STATE(5515)] = 163399, + [SMALL_STATE(5516)] = 163407, + [SMALL_STATE(5517)] = 163415, + [SMALL_STATE(5518)] = 163423, + [SMALL_STATE(5519)] = 163431, + [SMALL_STATE(5520)] = 163439, + [SMALL_STATE(5521)] = 163447, + [SMALL_STATE(5522)] = 163455, + [SMALL_STATE(5523)] = 163463, + [SMALL_STATE(5524)] = 163471, + [SMALL_STATE(5525)] = 163479, + [SMALL_STATE(5526)] = 163487, + [SMALL_STATE(5527)] = 163495, + [SMALL_STATE(5528)] = 163503, + [SMALL_STATE(5529)] = 163511, + [SMALL_STATE(5530)] = 163519, + [SMALL_STATE(5531)] = 163527, + [SMALL_STATE(5532)] = 163535, + [SMALL_STATE(5533)] = 163543, + [SMALL_STATE(5534)] = 163551, + [SMALL_STATE(5535)] = 163559, + [SMALL_STATE(5536)] = 163567, + [SMALL_STATE(5537)] = 163575, + [SMALL_STATE(5538)] = 163583, + [SMALL_STATE(5539)] = 163591, + [SMALL_STATE(5540)] = 163599, + [SMALL_STATE(5541)] = 163607, + [SMALL_STATE(5542)] = 163615, + [SMALL_STATE(5543)] = 163623, + [SMALL_STATE(5544)] = 163631, + [SMALL_STATE(5545)] = 163639, + [SMALL_STATE(5546)] = 163647, + [SMALL_STATE(5547)] = 163655, + [SMALL_STATE(5548)] = 163663, + [SMALL_STATE(5549)] = 163671, + [SMALL_STATE(5550)] = 163679, + [SMALL_STATE(5551)] = 163687, + [SMALL_STATE(5552)] = 163695, + [SMALL_STATE(5553)] = 163703, + [SMALL_STATE(5554)] = 163713, + [SMALL_STATE(5555)] = 163721, + [SMALL_STATE(5556)] = 163729, + [SMALL_STATE(5557)] = 163737, + [SMALL_STATE(5558)] = 163745, + [SMALL_STATE(5559)] = 163753, + [SMALL_STATE(5560)] = 163761, + [SMALL_STATE(5561)] = 163769, + [SMALL_STATE(5562)] = 163777, + [SMALL_STATE(5563)] = 163785, + [SMALL_STATE(5564)] = 163793, + [SMALL_STATE(5565)] = 163801, + [SMALL_STATE(5566)] = 163809, + [SMALL_STATE(5567)] = 163817, + [SMALL_STATE(5568)] = 163825, + [SMALL_STATE(5569)] = 163833, + [SMALL_STATE(5570)] = 163841, + [SMALL_STATE(5571)] = 163849, + [SMALL_STATE(5572)] = 163857, + [SMALL_STATE(5573)] = 163865, + [SMALL_STATE(5574)] = 163873, + [SMALL_STATE(5575)] = 163881, + [SMALL_STATE(5576)] = 163889, + [SMALL_STATE(5577)] = 163897, + [SMALL_STATE(5578)] = 163905, + [SMALL_STATE(5579)] = 163913, + [SMALL_STATE(5580)] = 163921, + [SMALL_STATE(5581)] = 163929, + [SMALL_STATE(5582)] = 163937, + [SMALL_STATE(5583)] = 163945, + [SMALL_STATE(5584)] = 163953, + [SMALL_STATE(5585)] = 163961, + [SMALL_STATE(5586)] = 163969, + [SMALL_STATE(5587)] = 163977, + [SMALL_STATE(5588)] = 163985, + [SMALL_STATE(5589)] = 163993, + [SMALL_STATE(5590)] = 164001, + [SMALL_STATE(5591)] = 164009, + [SMALL_STATE(5592)] = 164017, + [SMALL_STATE(5593)] = 164025, + [SMALL_STATE(5594)] = 164033, + [SMALL_STATE(5595)] = 164041, + [SMALL_STATE(5596)] = 164049, + [SMALL_STATE(5597)] = 164057, + [SMALL_STATE(5598)] = 164065, + [SMALL_STATE(5599)] = 164073, + [SMALL_STATE(5600)] = 164081, + [SMALL_STATE(5601)] = 164089, + [SMALL_STATE(5602)] = 164097, + [SMALL_STATE(5603)] = 164105, + [SMALL_STATE(5604)] = 164113, + [SMALL_STATE(5605)] = 164121, + [SMALL_STATE(5606)] = 164129, + [SMALL_STATE(5607)] = 164137, + [SMALL_STATE(5608)] = 164145, + [SMALL_STATE(5609)] = 164153, + [SMALL_STATE(5610)] = 164161, + [SMALL_STATE(5611)] = 164169, + [SMALL_STATE(5612)] = 164177, + [SMALL_STATE(5613)] = 164185, + [SMALL_STATE(5614)] = 164193, + [SMALL_STATE(5615)] = 164201, + [SMALL_STATE(5616)] = 164209, + [SMALL_STATE(5617)] = 164217, + [SMALL_STATE(5618)] = 164225, + [SMALL_STATE(5619)] = 164233, + [SMALL_STATE(5620)] = 164241, + [SMALL_STATE(5621)] = 164249, + [SMALL_STATE(5622)] = 164257, + [SMALL_STATE(5623)] = 164265, + [SMALL_STATE(5624)] = 164273, + [SMALL_STATE(5625)] = 164281, + [SMALL_STATE(5626)] = 164289, + [SMALL_STATE(5627)] = 164297, + [SMALL_STATE(5628)] = 164307, + [SMALL_STATE(5629)] = 164315, + [SMALL_STATE(5630)] = 164323, + [SMALL_STATE(5631)] = 164331, + [SMALL_STATE(5632)] = 164339, + [SMALL_STATE(5633)] = 164347, + [SMALL_STATE(5634)] = 164355, + [SMALL_STATE(5635)] = 164363, + [SMALL_STATE(5636)] = 164371, + [SMALL_STATE(5637)] = 164379, + [SMALL_STATE(5638)] = 164387, + [SMALL_STATE(5639)] = 164395, + [SMALL_STATE(5640)] = 164403, + [SMALL_STATE(5641)] = 164411, + [SMALL_STATE(5642)] = 164419, + [SMALL_STATE(5643)] = 164427, + [SMALL_STATE(5644)] = 164435, + [SMALL_STATE(5645)] = 164443, + [SMALL_STATE(5646)] = 164451, + [SMALL_STATE(5647)] = 164459, + [SMALL_STATE(5648)] = 164467, + [SMALL_STATE(5649)] = 164475, + [SMALL_STATE(5650)] = 164485, + [SMALL_STATE(5651)] = 164493, + [SMALL_STATE(5652)] = 164501, + [SMALL_STATE(5653)] = 164509, + [SMALL_STATE(5654)] = 164517, + [SMALL_STATE(5655)] = 164525, + [SMALL_STATE(5656)] = 164535, + [SMALL_STATE(5657)] = 164543, + [SMALL_STATE(5658)] = 164551, + [SMALL_STATE(5659)] = 164559, + [SMALL_STATE(5660)] = 164567, + [SMALL_STATE(5661)] = 164575, + [SMALL_STATE(5662)] = 164583, + [SMALL_STATE(5663)] = 164593, + [SMALL_STATE(5664)] = 164601, + [SMALL_STATE(5665)] = 164609, + [SMALL_STATE(5666)] = 164617, + [SMALL_STATE(5667)] = 164625, + [SMALL_STATE(5668)] = 164633, + [SMALL_STATE(5669)] = 164643, + [SMALL_STATE(5670)] = 164651, + [SMALL_STATE(5671)] = 164659, + [SMALL_STATE(5672)] = 164667, + [SMALL_STATE(5673)] = 164675, + [SMALL_STATE(5674)] = 164683, + [SMALL_STATE(5675)] = 164691, + [SMALL_STATE(5676)] = 164699, + [SMALL_STATE(5677)] = 164707, + [SMALL_STATE(5678)] = 164715, + [SMALL_STATE(5679)] = 164723, + [SMALL_STATE(5680)] = 164731, + [SMALL_STATE(5681)] = 164739, + [SMALL_STATE(5682)] = 164747, + [SMALL_STATE(5683)] = 164755, + [SMALL_STATE(5684)] = 164765, + [SMALL_STATE(5685)] = 164773, + [SMALL_STATE(5686)] = 164781, + [SMALL_STATE(5687)] = 164789, + [SMALL_STATE(5688)] = 164797, + [SMALL_STATE(5689)] = 164805, + [SMALL_STATE(5690)] = 164813, + [SMALL_STATE(5691)] = 164821, + [SMALL_STATE(5692)] = 164829, + [SMALL_STATE(5693)] = 164837, + [SMALL_STATE(5694)] = 164845, + [SMALL_STATE(5695)] = 164853, + [SMALL_STATE(5696)] = 164861, + [SMALL_STATE(5697)] = 164869, + [SMALL_STATE(5698)] = 164877, + [SMALL_STATE(5699)] = 164885, + [SMALL_STATE(5700)] = 164893, + [SMALL_STATE(5701)] = 164901, + [SMALL_STATE(5702)] = 164909, + [SMALL_STATE(5703)] = 164917, + [SMALL_STATE(5704)] = 164925, + [SMALL_STATE(5705)] = 164933, + [SMALL_STATE(5706)] = 164941, + [SMALL_STATE(5707)] = 164949, + [SMALL_STATE(5708)] = 164957, + [SMALL_STATE(5709)] = 164965, + [SMALL_STATE(5710)] = 164973, + [SMALL_STATE(5711)] = 164981, + [SMALL_STATE(5712)] = 164989, + [SMALL_STATE(5713)] = 164997, + [SMALL_STATE(5714)] = 165005, + [SMALL_STATE(5715)] = 165013, + [SMALL_STATE(5716)] = 165021, + [SMALL_STATE(5717)] = 165029, + [SMALL_STATE(5718)] = 165037, + [SMALL_STATE(5719)] = 165045, + [SMALL_STATE(5720)] = 165053, + [SMALL_STATE(5721)] = 165061, + [SMALL_STATE(5722)] = 165069, + [SMALL_STATE(5723)] = 165077, + [SMALL_STATE(5724)] = 165085, + [SMALL_STATE(5725)] = 165093, + [SMALL_STATE(5726)] = 165101, + [SMALL_STATE(5727)] = 165109, + [SMALL_STATE(5728)] = 165117, + [SMALL_STATE(5729)] = 165125, + [SMALL_STATE(5730)] = 165133, + [SMALL_STATE(5731)] = 165141, + [SMALL_STATE(5732)] = 165149, + [SMALL_STATE(5733)] = 165157, + [SMALL_STATE(5734)] = 165165, + [SMALL_STATE(5735)] = 165173, + [SMALL_STATE(5736)] = 165181, + [SMALL_STATE(5737)] = 165189, + [SMALL_STATE(5738)] = 165197, + [SMALL_STATE(5739)] = 165205, + [SMALL_STATE(5740)] = 165213, + [SMALL_STATE(5741)] = 165221, + [SMALL_STATE(5742)] = 165229, + [SMALL_STATE(5743)] = 165237, + [SMALL_STATE(5744)] = 165245, + [SMALL_STATE(5745)] = 165253, + [SMALL_STATE(5746)] = 165261, + [SMALL_STATE(5747)] = 165269, + [SMALL_STATE(5748)] = 165277, + [SMALL_STATE(5749)] = 165285, + [SMALL_STATE(5750)] = 165293, + [SMALL_STATE(5751)] = 165301, + [SMALL_STATE(5752)] = 165309, + [SMALL_STATE(5753)] = 165317, + [SMALL_STATE(5754)] = 165325, + [SMALL_STATE(5755)] = 165333, + [SMALL_STATE(5756)] = 165341, + [SMALL_STATE(5757)] = 165349, + [SMALL_STATE(5758)] = 165357, + [SMALL_STATE(5759)] = 165365, + [SMALL_STATE(5760)] = 165373, + [SMALL_STATE(5761)] = 165381, + [SMALL_STATE(5762)] = 165389, + [SMALL_STATE(5763)] = 165397, + [SMALL_STATE(5764)] = 165405, + [SMALL_STATE(5765)] = 165413, + [SMALL_STATE(5766)] = 165421, + [SMALL_STATE(5767)] = 165429, + [SMALL_STATE(5768)] = 165437, + [SMALL_STATE(5769)] = 165445, + [SMALL_STATE(5770)] = 165453, + [SMALL_STATE(5771)] = 165461, + [SMALL_STATE(5772)] = 165469, + [SMALL_STATE(5773)] = 165477, + [SMALL_STATE(5774)] = 165485, + [SMALL_STATE(5775)] = 165493, + [SMALL_STATE(5776)] = 165501, + [SMALL_STATE(5777)] = 165509, + [SMALL_STATE(5778)] = 165517, + [SMALL_STATE(5779)] = 165525, + [SMALL_STATE(5780)] = 165533, + [SMALL_STATE(5781)] = 165541, + [SMALL_STATE(5782)] = 165549, + [SMALL_STATE(5783)] = 165557, + [SMALL_STATE(5784)] = 165565, + [SMALL_STATE(5785)] = 165573, + [SMALL_STATE(5786)] = 165581, + [SMALL_STATE(5787)] = 165589, + [SMALL_STATE(5788)] = 165597, + [SMALL_STATE(5789)] = 165605, + [SMALL_STATE(5790)] = 165613, + [SMALL_STATE(5791)] = 165621, + [SMALL_STATE(5792)] = 165629, + [SMALL_STATE(5793)] = 165637, + [SMALL_STATE(5794)] = 165645, + [SMALL_STATE(5795)] = 165653, + [SMALL_STATE(5796)] = 165661, + [SMALL_STATE(5797)] = 165669, + [SMALL_STATE(5798)] = 165677, + [SMALL_STATE(5799)] = 165685, + [SMALL_STATE(5800)] = 165693, + [SMALL_STATE(5801)] = 165701, + [SMALL_STATE(5802)] = 165711, + [SMALL_STATE(5803)] = 165719, + [SMALL_STATE(5804)] = 165727, + [SMALL_STATE(5805)] = 165735, + [SMALL_STATE(5806)] = 165743, + [SMALL_STATE(5807)] = 165751, + [SMALL_STATE(5808)] = 165759, + [SMALL_STATE(5809)] = 165767, + [SMALL_STATE(5810)] = 165775, + [SMALL_STATE(5811)] = 165783, + [SMALL_STATE(5812)] = 165791, + [SMALL_STATE(5813)] = 165799, + [SMALL_STATE(5814)] = 165807, + [SMALL_STATE(5815)] = 165815, + [SMALL_STATE(5816)] = 165823, + [SMALL_STATE(5817)] = 165831, + [SMALL_STATE(5818)] = 165839, + [SMALL_STATE(5819)] = 165847, + [SMALL_STATE(5820)] = 165855, + [SMALL_STATE(5821)] = 165863, + [SMALL_STATE(5822)] = 165871, + [SMALL_STATE(5823)] = 165879, + [SMALL_STATE(5824)] = 165887, + [SMALL_STATE(5825)] = 165895, + [SMALL_STATE(5826)] = 165903, + [SMALL_STATE(5827)] = 165911, + [SMALL_STATE(5828)] = 165919, + [SMALL_STATE(5829)] = 165927, + [SMALL_STATE(5830)] = 165935, + [SMALL_STATE(5831)] = 165943, + [SMALL_STATE(5832)] = 165951, + [SMALL_STATE(5833)] = 165959, + [SMALL_STATE(5834)] = 165967, + [SMALL_STATE(5835)] = 165975, + [SMALL_STATE(5836)] = 165983, + [SMALL_STATE(5837)] = 165991, + [SMALL_STATE(5838)] = 165999, + [SMALL_STATE(5839)] = 166007, + [SMALL_STATE(5840)] = 166015, + [SMALL_STATE(5841)] = 166023, + [SMALL_STATE(5842)] = 166031, + [SMALL_STATE(5843)] = 166039, + [SMALL_STATE(5844)] = 166047, + [SMALL_STATE(5845)] = 166055, + [SMALL_STATE(5846)] = 166063, + [SMALL_STATE(5847)] = 166071, + [SMALL_STATE(5848)] = 166079, + [SMALL_STATE(5849)] = 166087, + [SMALL_STATE(5850)] = 166095, + [SMALL_STATE(5851)] = 166103, + [SMALL_STATE(5852)] = 166111, + [SMALL_STATE(5853)] = 166119, + [SMALL_STATE(5854)] = 166127, + [SMALL_STATE(5855)] = 166135, + [SMALL_STATE(5856)] = 166143, + [SMALL_STATE(5857)] = 166151, + [SMALL_STATE(5858)] = 166159, + [SMALL_STATE(5859)] = 166167, + [SMALL_STATE(5860)] = 166175, + [SMALL_STATE(5861)] = 166183, + [SMALL_STATE(5862)] = 166191, + [SMALL_STATE(5863)] = 166199, + [SMALL_STATE(5864)] = 166207, + [SMALL_STATE(5865)] = 166215, + [SMALL_STATE(5866)] = 166223, + [SMALL_STATE(5867)] = 166231, + [SMALL_STATE(5868)] = 166239, + [SMALL_STATE(5869)] = 166247, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -279785,4673 +277643,4655 @@ static const TSParseActionEntry ts_parse_actions[] = { [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0, 0, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5441), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5370), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5450), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4790), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5196), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5425), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4849), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4750), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5308), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5444), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5445), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5232), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4687), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5211), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5270), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5009), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4984), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5400), [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5837), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5669), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5695), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5700), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), - [119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(538), - [122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), - [124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), - [128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 1), - [130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4419), - [134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), - [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(558), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 1), - [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5520), - [176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(481), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5864), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5685), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5662), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(636), - [224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5655), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5634), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5557), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5602), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5490), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), + [117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(639), + [120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), + [122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4421), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3039), + [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(560), + [138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), + [148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), + [152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), + [156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 1), + [162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5668), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(483), + [184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), + [186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), + [188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5790), + [194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), + [196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), + [198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), + [200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5538), + [210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5818), + [212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5471), + [216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), + [218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(540), + [223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 1), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), - [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1348), - [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(696), - [347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), - [349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1300), - [352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1184), - [355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4), - [358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(480), - [361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2931), - [364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5441), - [367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3593), - [370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1186), - [373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3484), - [376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(480), - [379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5370), - [382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5450), - [385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4790), - [388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(195), - [391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(782), - [394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(436), - [397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5196), - [400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(39), - [403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5425), - [406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4849), - [409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4750), - [412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5308), - [415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(297), - [418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(345), - [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(164), - [424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(205), - [427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4887), - [430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3309), - [433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(734), - [436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3597), - [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(99), - [442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(484), - [445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5837), - [448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(986), - [451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(584), - [454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4467), - [457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4468), - [460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3865), - [463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2118), - [466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5614), - [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2118), - [472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2115), - [475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4039), - [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1314), - [481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(715), - [484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1185), - [487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5669), - [490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5695), - [493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5700), - [496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2, 0, 0), - [498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2, 0, 0), - [500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, 0, 238), - [502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, 0, 238), - [504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, 0, 95), - [506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, 0, 95), - [508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, 0, 54), - [510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3, 0, 54), - [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0), - [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), - [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), - [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5216), - [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5221), - [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4655), - [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5226), - [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), - [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3724), - [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5520), - [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5526), - [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), - [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), - [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5877), - [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5855), - [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4466), - [676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(50), - [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5658), - [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), - [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), - [695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(194), - [708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(216), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(986), - [716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3856), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), - [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), - [725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), - [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), - [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), - [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), - [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), - [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), - [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), - [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), - [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5660), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), - [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 33), - [835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 33), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), - [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5481), - [887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(483), - [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_rest_pattern, 2, 0, 33), - [895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(322), - [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(618), - [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5498), - [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5632), - [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), - [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), - [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5801), - [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5728), - [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5792), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), - [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), - [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), - [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), - [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5488), - [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), - [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), - [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), - [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5586), - [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), - [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), - [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), - [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), - [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), - [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), - [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5780), - [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), - [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), - [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), - [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), - [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), - [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), - [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5602), - [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), - [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5737), - [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), - [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), - [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), - [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), - [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), - [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), - [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), - [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), - [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), - [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), - [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), - [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), - [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), - [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), - [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), - [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), - [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), - [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5112), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4515), - [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5707), - [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4914), - [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), - [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), - [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), - [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4382), - [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), - [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), - [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), - [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), - [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3738), - [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5588), - [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5528), - [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5532), - [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4514), - [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), - [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), - [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), - [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), - [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4439), - [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), - [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5718), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), - [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), - [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), - [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), - [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), - [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), - [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), - [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), - [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2, 0, 0), - [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2, 0, 0), - [1707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), - [1709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2, 0, 0), - [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), - [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 1, 0, 5), - [1719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 1, 0, 5), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5663), - [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5511), - [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 191), - [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 191), - [1737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 191), - [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 191), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), - [1745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), - [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), - [1749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), - [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, 0, 6), - [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, 0, 6), - [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 169), - [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 169), - [1759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 169), - [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 169), - [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 1, 0, 0), - [1767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1, 0, 0), - [1769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 173), - [1771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 173), - [1773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, 0, 173), - [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, 0, 173), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, 0, 173), - [1781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, 0, 173), - [1783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 173), - [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 173), - [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3, 0, 0), - [1791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3, 0, 0), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), - [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), - [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 51), - [1801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 51), - [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 51), - [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 51), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 114), - [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 114), - [1815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 114), - [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 114), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 192), - [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 192), - [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 192), - [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 192), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4, 0, 0), - [1833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4, 0, 0), - [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 112), - [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 112), - [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 219), - [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 219), - [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, 0, 219), - [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, 0, 219), - [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 233), - [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 233), - [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, 0, 233), - [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, 0, 233), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 113), - [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 113), - [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 113), - [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 113), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 123), - [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 123), - [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 123), - [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 123), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), - [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), - [1883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 77), - [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 77), - [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 90), - [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 90), - [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), - [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), - [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 150), - [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 150), - [1919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 150), - [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 150), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, 0, 30), - [1927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, 0, 30), - [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [1939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), - [1942] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(2952), - [1946] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(3286), - [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), - [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), - [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), - [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), - [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), - [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessibility_modifier, 1, 0, 0), - [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessibility_modifier, 1, 0, 0), - [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_override_modifier, 1, 0, 0), - [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_override_modifier, 1, 0, 0), - [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), - [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), - [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), - [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), - [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [2030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), - [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), - [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), - [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), - [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), - [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), - [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), - [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), - [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), - [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3905), - [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), - [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), - [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), - [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), - [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), - [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), - [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), - [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), - [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), - [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), - [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), - [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), - [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), - [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), - [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), - [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), - [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), - [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), - [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), - [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), - [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), - [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), - [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), - [2280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4778), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), - [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5842), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5876), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), - [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), - [2302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5865), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5506), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), - [2311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), - [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), - [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5669), - [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5695), - [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5700), - [2324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4402), - [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4401), - [2328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2852), - [2331] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(201), - [2335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(417), - [2338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), - [2340] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(4914), - [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), - [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), - [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), - [2350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), - [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5690), - [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5367), - [2358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [2362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3798), - [2364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), - [2366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), - [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), - [2370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2813), - [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3, 0, 0), - [2374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3, 0, 0), - [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2, 0, 0), - [2378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2, 0, 0), - [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6, 0, 0), - [2382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6, 0, 0), - [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5, 0, 0), - [2386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5, 0, 0), - [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4, 0, 0), - [2390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4, 0, 0), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5634), - [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), - [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), - [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5552), - [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5851), - [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), - [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), - [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), - [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5528), - [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), - [2422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5841), - [2424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5840), - [2426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(201), - [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), - [2431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(4914), - [2434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5617), - [2436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5584), - [2438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5497), - [2440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5702), - [2442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5778), - [2444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5763), - [2446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), - [2448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), - [2450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5790), - [2452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5788), - [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 11), - [2456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 11), - [2458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4876), - [2460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5254), - [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [2464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5492), - [2466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5491), - [2468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5607), - [2470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5605), - [2472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5612), - [2474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5610), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [2480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), - [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [2484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5643), - [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5636), - [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5749), - [2490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5746), - [2492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5544), - [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5543), - [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 47), - [2498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 47), - [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, 0, 101), - [2502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, 0, 101), - [2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), - [2506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), - [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 107), - [2510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 107), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 39), - [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 39), - [2518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 11), - [2526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 11), - [2528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, 0, 276), - [2530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, 0, 276), - [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 243), - [2534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 243), - [2536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 274), - [2538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 274), - [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 183), - [2542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 183), - [2544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 87), - [2546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 87), - [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 88), - [2550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 88), - [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 0), - [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 0), - [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 194), - [2558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 194), - [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), - [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5707), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), - [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 6, 0, 153), - [2574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 6, 0, 153), - [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 48), - [2578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 48), - [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 191), - [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 191), - [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 240), - [2586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 240), - [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 11), - [2590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 11), - [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 241), - [2594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 241), - [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 49), - [2598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 49), - [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 273), - [2606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 273), - [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 242), - [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 242), - [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 0), - [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 0), - [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 34), - [2618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 34), - [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 94), - [2622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 94), - [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 0), - [2626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 0), - [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 87), - [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 87), - [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 34), - [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 34), - [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 107), - [2638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 107), - [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 275), - [2642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 275), - [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 0), - [2646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 0), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 108), - [2654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 108), - [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, 0, 38), - [2658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, 0, 38), - [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), - [2662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), - [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 51), - [2666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 51), - [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 98), - [2670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 98), - [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 0), - [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 0), - [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, 0, 142), - [2678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, 0, 142), - [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, 0, 35), - [2682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, 0, 35), - [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), - [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), - [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 235), - [2690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 235), - [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 145), - [2694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 145), - [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 49), - [2698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 49), - [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 300), - [2702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 300), - [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), - [2706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), - [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, 0, 172), - [2710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, 0, 172), - [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 99), - [2714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 99), - [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 89), - [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 89), - [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), - [2722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), - [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 0), - [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 0), - [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, 0, 38), - [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, 0, 38), - [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 40), - [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 40), - [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 113), - [2738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 113), - [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, 0, 219), - [2742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, 0, 219), - [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 46), - [2746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 46), - [2748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 146), - [2750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 146), - [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2, 0, 0), - [2754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2, 0, 0), - [2756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2, 0, 0), - [2758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2, 0, 0), - [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 192), - [2762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 192), - [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 114), - [2766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 114), - [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), - [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), - [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 186), - [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 186), - [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 190), - [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 190), - [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 0), - [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 0), - [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 201), - [2786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 201), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5538), - [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 169), - [2794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 169), - [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, 0, 6), - [2798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, 0, 6), - [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 173), - [2802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 173), - [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, 0, 100), - [2806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, 0, 100), - [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 173), - [2810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 173), - [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 7, 0, 267), - [2814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 7, 0, 267), - [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3, 0, 0), - [2818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3, 0, 0), - [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), - [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), - [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 153), - [2826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 153), - [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 230), - [2830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 230), - [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 232), - [2834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 232), - [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 228), - [2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 228), - [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 89), - [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 89), - [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 233), - [2846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 233), - [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 0), - [2850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 0), - [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 230), - [2854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 230), - [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 7, 0, 268), - [2858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 7, 0, 268), - [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, 0, 122), - [2862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, 0, 122), - [2864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 75), - [2866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 75), - [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, 0, 155), - [2870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, 0, 155), - [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2, 0, 0), - [2874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2, 0, 0), - [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 0), - [2878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 0), - [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 153), - [2882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 153), - [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 94), - [2886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 94), - [2888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 76), - [2890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, 0, 76), - [2892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 234), - [2894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 234), - [2896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 0), - [2898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 0), - [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5, 0, 0), - [2902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5, 0, 0), - [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 87), - [2906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 87), - [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 150), - [2910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 150), - [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [2914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), - [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [2918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [2920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 232), - [2922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 232), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5633), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [2928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, 0, 4), - [2930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, 0, 4), - [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), - [2934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5657), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 85), - [2942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 85), - [2944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 196), - [2946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, 0, 196), - [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 26), - [2950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 26), - [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 123), - [2954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 123), - [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, 0, 41), - [2958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, 0, 41), - [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, -1, 28), - [2962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, -1, 28), - [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 182), - [2966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 182), - [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 149), - [2970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 149), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 271), - [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 271), - [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, 0, 239), - [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, 0, 239), - [3000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 272), - [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 272), - [3004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 199), - [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 199), - [3008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 200), - [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 200), - [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), - [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), - [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4462), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5816), - [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), - [3046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), - [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5828), - [3054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), - [3056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5832), - [3058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5857), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), - [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), - [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), - [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), - [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), - [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4453), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), - [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5854), - [3090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), - [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5629), - [3094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [3098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [3104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), - [3106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [3112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4429), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5655), - [3120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), - [3128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), - [3130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [3134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5628), - [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), - [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5733), - [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5798), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [3146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), - [3154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4487), - [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), - [3168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [3174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [3176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), - [3178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [3182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5817), - [3184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), - [3186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5858), - [3188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5523), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), - [3196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), - [3198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), - [3200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), - [3204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), - [3206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), - [3208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), - [3210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), - [3212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), - [3214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), - [3216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), - [3218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), - [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), - [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), - [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), - [3268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), - [3270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), - [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), - [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), - [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), - [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), - [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5667), - [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), - [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), - [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5522), - [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), - [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), - [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), - [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), - [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), - [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [3336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), - [3338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), - [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), - [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), - [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), - [3368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), - [3370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), - [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), - [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), - [3380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), - [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [3386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), - [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), - [3390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [3400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), - [3402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), - [3404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), - [3406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [3408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [3410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), - [3412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [3414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), - [3416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), - [3418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), - [3420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [3424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), - [3438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), - [3442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [3444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), - [3447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), - [3451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), - [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [3455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), - [3457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), - [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), - [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), - [3465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2, 0, 0), - [3467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2, 0, 0), - [3469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 77), - [3471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 77), - [3473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 78), - [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 78), - [3477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4529), - [3479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 79), - [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 79), - [3483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 80), - [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 80), - [3487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 188), - [3489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 188), - [3491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 78), - [3493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 77), - [3495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 147), - [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 147), - [3499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), - [3501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [3503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), - [3505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 0), - [3512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), - [3515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [3517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 0), - [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), - [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5007), - [3527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 0), - [3529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [3531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), - [3533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), - [3541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [3543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(486), - [3546] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym_primary_type, 1, 0, 14), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [3552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 14), - [3555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(5495), - [3558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 14), - [3561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1073), - [3564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 14), SHIFT(5199), - [3567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 14), - [3569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [3573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [3575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2, 0, 0), - [3577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2, 0, 0), - [3579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5479), - [3581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(5557), - [3584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1006), - [3587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), - [3590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), - [3593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [3597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(397), - [3600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), - [3603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), - [3605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4804), - [3607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(253), - [3610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, 0, 20), - [3612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, 0, 20), - [3614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 0), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [3618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 0), - [3620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 25), - [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 25), - [3624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 25), SHIFT(3323), - [3627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 25), SHIFT_REPEAT(3909), - [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [3634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(540), - [3637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), - [3639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 3, 0, 81), - [3641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 3, 0, 81), - [3643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [3647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym_primary_type, 1, 0, 14), - [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [3654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, 0, 77), - [3656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, 0, 77), - [3658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_parenthesized_expression, 3, 0, 0), - [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_parenthesized_expression, 3, 0, 0), - [3662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), - [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), - [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [3670] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 14), REDUCE(sym_rest_pattern, 2, 0, 0), - [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [3678] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 33), - [3682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(620), - [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [3689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4996), - [3691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 78), - [3693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), - [3696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(328), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [3703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 77), - [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), - [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), - [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [3717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), - [3719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), - [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [3723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), - [3725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), - [3727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), - [3729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), - [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [3751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [3757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [3769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [3777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [3781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [3789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), - [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), - [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), - [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), - [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5593), - [3813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1522), - [3816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2066), - [3819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), - [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [3829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), - [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), - [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [3837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), - [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), - [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), - [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), - [3847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2435), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [3862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1707), - [3865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1798), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [3874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(3259), - [3877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(2836), - [3880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), - [3882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(1491), - [3885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(334), - [3888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(2226), - [3891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(5667), - [3894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(4454), - [3897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(4522), - [3900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(3060), - [3903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(4005), - [3906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(1725), - [3909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(1928), - [3912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(2472), - [3915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(1729), - [3918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(1932), - [3921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(2363), - [3924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(2784), - [3927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(2824), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [3938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1727), - [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), - [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), - [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), - [3959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), - [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), - [3963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 13), - [3965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 13), - [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [3981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), - [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), - [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), - [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), - [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), - [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [4001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), - [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), - [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), - [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), - [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), - [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), - [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), - [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), - [4023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), - [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [4029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), - [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), - [4033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), - [4035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), - [4037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), - [4039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), - [4041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), - [4047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), - [4049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), - [4051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), - [4053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), - [4055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), - [4057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 60), - [4059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 60), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), - [4065] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), REDUCE(aux_sym_object_repeat1, 2, 0, 31), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 32), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [4071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 61), - [4073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 61), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5417), - [4077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 14), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5830), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [4085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 0), - [4087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 0), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [4091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 16), - [4093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 16), - [4095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), - [4097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), - [4099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), - [4101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), - [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), - [4105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), - [4107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), - [4109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asserts, 2, 0, 0), - [4111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 2, 0, 0), - [4113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 2, 0, 69), - [4115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 2, 0, 69), - [4117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 17), - [4119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 17), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5311), - [4123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 226), - [4125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 226), - [4127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 20), - [4129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 20), - [4131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 20), - [4133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 20), - [4135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 178), - [4137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 178), - [4139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 177), - [4141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 177), - [4143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, 0, 8), - [4145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, 0, 8), - [4147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2, 0, 0), - [4149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2, 0, 0), - [4151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 140), - [4153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 140), - [4155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2, 0, 0), - [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2, 0, 0), - [4159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2, 0, 0), - [4161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2, 0, 0), - [4163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [4165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 2, 0, 0), - [4167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 2, 0, 0), - [4169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 141), - [4171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 141), - [4173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 65), - [4175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 65), - [4177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_type, 2, 0, 0), - [4179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_type, 2, 0, 0), - [4181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [4185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_satisfies_expression, 3, 0, 0), - [4187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_satisfies_expression, 3, 0, 0), - [4189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), - [4191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), - [4193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), - [4195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [4199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), - [4201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), - [4203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4, 0, 180), - [4205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4, 0, 180), - [4207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 2, 0, 68), - [4209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 2, 0, 68), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [4213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 20), - [4215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 20), - [4217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 130), - [4219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 130), - [4221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 4, 0, 68), - [4223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 4, 0, 68), - [4225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4, 0, 0), - [4227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4, 0, 0), - [4229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 181), - [4231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 181), - [4233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2, 0, 0), - [4235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2, 0, 0), - [4237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 147), - [4239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 147), - [4241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 223), - [4243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 223), - [4245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 131), - [4247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 131), - [4249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 224), - [4251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 224), - [4253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 225), - [4255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 225), - [4257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), - [4259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), - [4261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 18), - [4263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 18), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5314), - [4267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 227), - [4269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 227), - [4271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 70), - [4273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 70), - [4275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 71), - [4277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 71), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [4281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instantiation_expression, 2, 0, 22), - [4283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiation_expression, 2, 0, 22), - [4285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, 0, 135), - [4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, 0, 135), - [4289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 90), REDUCE(sym_nested_type_identifier, 3, 0, 135), - [4292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 262), - [4294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 262), - [4296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 263), - [4298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 263), - [4300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 264), - [4302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 264), - [4304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 137), - [4306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 137), - [4308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 265), - [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 265), - [4312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 71), - [4314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 71), - [4316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 132), - [4318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 132), - [4320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 6, 0, 266), - [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 6, 0, 266), - [4324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, 0, 297), - [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, 0, 297), - [4328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 138), - [4330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 138), - [4332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 139), - [4334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 139), - [4336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 140), - [4338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 140), - [4340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 141), - [4342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 141), - [4344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3, 0, 0), - [4346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3, 0, 0), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5874), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5875), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5856), - [4360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3, 0, 0), - [4362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), - [4364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 0), - [4366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 0), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), + [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1342), + [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(696), + [345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), + [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1285), + [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1190), + [353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4), + [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(482), + [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2921), + [362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5444), + [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3692), + [368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1192), + [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3469), + [374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(482), + [377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5445), + [380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5232), + [383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4687), + [386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(194), + [389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(810), + [392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(437), + [395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5211), + [398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(54), + [401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5270), + [404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5009), + [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4984), + [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5400), + [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(297), + [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(345), + [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(164), + [422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(229), + [425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3290), + [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(728), + [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3693), + [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(99), + [437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(486), + [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5655), + [443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(981), + [446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(586), + [449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4404), + [452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4411), + [455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3861), + [458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2222), + [461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5634), + [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2222), + [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2267), + [470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4290), + [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1326), + [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(707), + [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1191), + [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5557), + [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5602), + [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5490), + [491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, 0, 236), + [493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, 0, 236), + [495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, 0, 93), + [497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, 0, 93), + [499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2, 0, 0), + [501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2, 0, 0), + [503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, 0, 52), + [505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3, 0, 52), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), + [513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5668), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5507), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5865), + [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5843), + [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5180), + [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), + [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4663), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5189), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4389), + [671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(52), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5648), + [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), + [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(195), + [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(241), + [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(981), + [711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3852), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), + [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), + [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), + [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), + [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), + [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), + [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), + [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), + [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), + [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5705), + [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 32), + [828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 32), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5482), + [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(621), + [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_rest_pattern, 2, 0, 32), + [902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(322), + [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(485), + [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5494), + [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5627), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), + [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), + [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), + [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5789), + [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5830), + [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5833), + [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), + [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), + [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), + [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [1076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5528), + [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), + [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), + [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), + [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [1146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), + [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), + [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5476), + [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), + [1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), + [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5752), + [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), + [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), + [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), + [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), + [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), + [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5768), + [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), + [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5582), + [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), + [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), + [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), + [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), + [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), + [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), + [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), + [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), + [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), + [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), + [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), + [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4695), + [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4413), + [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5496), + [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4996), + [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), + [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), + [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), + [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), + [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), + [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4373), + [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), + [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), + [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), + [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), + [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5576), + [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5733), + [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5734), + [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4145), + [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), + [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), + [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), + [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4430), + [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5824), + [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), + [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), + [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), + [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), + [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4504), + [1644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [1646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [1656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), + [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), + [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), + [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), + [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 1, 0, 5), + [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 1, 0, 5), + [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5621), + [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5485), + [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), + [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2, 0, 0), + [1692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2, 0, 0), + [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), + [1696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2, 0, 0), + [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), + [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 148), + [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 148), + [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 148), + [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 148), + [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4, 0, 0), + [1718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4, 0, 0), + [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 110), + [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 110), + [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), + [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), + [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), + [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, 0, 29), + [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, 0, 29), + [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 167), + [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 167), + [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 167), + [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 167), + [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 171), + [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 171), + [1774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, 0, 171), + [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, 0, 171), + [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, 0, 171), + [1782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, 0, 171), + [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 171), + [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 171), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 111), + [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 111), + [1794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 111), + [1796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 111), + [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [1800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 112), + [1802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 112), + [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 112), + [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 112), + [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 121), + [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 121), + [1814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 121), + [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 121), + [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 189), + [1822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 189), + [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 189), + [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 189), + [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 190), + [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 190), + [1834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 190), + [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 190), + [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 49), + [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 49), + [1846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 49), + [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 49), + [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, 0, 6), + [1854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, 0, 6), + [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 217), + [1858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 217), + [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, 0, 217), + [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, 0, 217), + [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 231), + [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 231), + [1870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, 0, 231), + [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, 0, 231), + [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3, 0, 0), + [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3, 0, 0), + [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), + [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), + [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 75), + [1890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 75), + [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 88), + [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 88), + [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 1, 0, 0), + [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1, 0, 0), + [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), + [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [1918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), + [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), + [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), + [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), + [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [1956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), + [1959] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(3001), + [1963] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(3260), + [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), + [1969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessibility_modifier, 1, 0, 0), + [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessibility_modifier, 1, 0, 0), + [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_override_modifier, 1, 0, 0), + [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_override_modifier, 1, 0, 0), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), + [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), + [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), + [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), + [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3899), + [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3829), + [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4686), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), + [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5559), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5750), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [2149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5793), + [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5488), + [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5302), + [2158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5557), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5602), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5490), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), + [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), + [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), + [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), + [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), + [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), + [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), + [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), + [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), + [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), + [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), + [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4488), + [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4483), + [2321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2817), + [2324] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(199), + [2328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(417), + [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), + [2333] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(4996), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5678), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), + [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), + [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), + [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), + [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), + [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), + [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6, 0, 0), + [2363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6, 0, 0), + [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4, 0, 0), + [2367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4, 0, 0), + [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5, 0, 0), + [2371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5, 0, 0), + [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2, 0, 0), + [2375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2, 0, 0), + [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3, 0, 0), + [2379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3, 0, 0), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5622), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5838), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5839), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5576), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5733), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), + [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5831), + [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5829), + [2415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(199), + [2418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), + [2420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(4996), + [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5586), + [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5555), + [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5504), + [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5825), + [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), + [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), + [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5778), + [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5776), + [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5578), + [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5859), + [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5480), + [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5479), + [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5590), + [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5589), + [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5600), + [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5598), + [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 11), + [2457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 11), + [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4967), + [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5295), + [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5762), + [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5760), + [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5532), + [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5531), + [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 46), + [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 46), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5848), + [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5860), + [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5571), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), + [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 105), + [2503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 105), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, 0, 99), + [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, 0, 99), + [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 38), + [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 38), + [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5484), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5853), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5732), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, 0, 274), + [2539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, 0, 274), + [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 241), + [2543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 241), + [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 11), + [2547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 11), + [2549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [2551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, 0, 140), + [2555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, 0, 140), + [2557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), + [2559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), + [2561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 85), + [2563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 85), + [2565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 238), + [2567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 238), + [2569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 6, 0, 151), + [2571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 6, 0, 151), + [2573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 239), + [2575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 239), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [2581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 240), + [2583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 240), + [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 233), + [2587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 233), + [2589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 106), + [2591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 106), + [2593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 33), + [2595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 33), + [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 0), + [2599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 0), + [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 271), + [2603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 271), + [2605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, 0, 34), + [2607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, 0, 34), + [2609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 92), + [2611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 92), + [2613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 0), + [2615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 0), + [2617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 85), + [2619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 85), + [2621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 33), + [2623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 33), + [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 105), + [2627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 105), + [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 0), + [2631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 0), + [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 190), + [2635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 190), + [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 272), + [2639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 272), + [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, 0, 37), + [2643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, 0, 37), + [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 273), + [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 273), + [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 0), + [2651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 0), + [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), + [2655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), + [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 96), + [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 96), + [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 49), + [2663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 49), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), + [2669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), + [2671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [2673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [2675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 143), + [2677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 143), + [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), + [2681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), + [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 298), + [2685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 298), + [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 97), + [2689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 97), + [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 48), + [2693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 48), + [2695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, 0, 37), + [2697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, 0, 37), + [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, 0, 170), + [2701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, 0, 170), + [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), + [2705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), + [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, 0, 217), + [2709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, 0, 217), + [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 39), + [2713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 39), + [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 111), + [2717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 111), + [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 188), + [2721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 188), + [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 232), + [2725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 232), + [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 189), + [2729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 189), + [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2, 0, 0), + [2733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2, 0, 0), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [2737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 144), + [2739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 144), + [2741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2, 0, 0), + [2743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2, 0, 0), + [2745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 112), + [2747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 112), + [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 147), + [2751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 147), + [2753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 199), + [2755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 199), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [2759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3, 0, 0), + [2761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3, 0, 0), + [2763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, 0, 6), + [2765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, 0, 6), + [2767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 167), + [2769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 167), + [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 7, 0, 265), + [2773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 7, 0, 265), + [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 171), + [2777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 171), + [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, 0, 98), + [2781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, 0, 98), + [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 171), + [2785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 171), + [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 228), + [2789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 228), + [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 230), + [2793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 230), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [2797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 226), + [2799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 226), + [2801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 87), + [2803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 87), + [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [2807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [2809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 151), + [2811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 151), + [2813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 228), + [2815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 228), + [2817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 231), + [2819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 231), + [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 73), + [2823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 73), + [2825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 7, 0, 266), + [2827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 7, 0, 266), + [2829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 0), + [2831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 0), + [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 0), + [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 0), + [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, 0, 120), + [2841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, 0, 120), + [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [2849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 74), + [2851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, 0, 74), + [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 148), + [2855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 148), + [2857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, 0, 153), + [2859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, 0, 153), + [2861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 121), + [2863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 121), + [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 0), + [2867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 0), + [2869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 192), + [2871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 192), + [2873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 151), + [2875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 151), + [2877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 47), + [2879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 47), + [2881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 11), + [2883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 11), + [2885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [2887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), + [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 92), + [2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 92), + [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, 0, 4), + [2895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, 0, 4), + [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 48), + [2899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 48), + [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 83), + [2903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 83), + [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 0), + [2907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 0), + [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5, 0, 0), + [2911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5, 0, 0), + [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 85), + [2915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 85), + [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 194), + [2919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, 0, 194), + [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 230), + [2923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 230), + [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [2927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, 0, 40), + [2935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, 0, 40), + [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), + [2939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 180), + [2945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 180), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 181), + [2951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 181), + [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 25), + [2955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 25), + [2957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 184), + [2959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 184), + [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, -1, 27), + [2963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, -1, 27), + [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 87), + [2967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 87), + [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 86), + [2971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 86), + [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 45), + [2975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 45), + [2977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 0), + [2979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 0), + [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5824), + [2985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), + [2987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), + [2989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 197), + [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 197), + [2993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [2997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [2999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), + [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4501), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5770), + [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), + [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), + [3029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5816), + [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), + [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5856), + [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [3041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5473), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), + [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4438), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787), + [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5616), + [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3049), + [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5652), + [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5785), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [3093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 198), + [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 198), + [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), + [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), + [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4428), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), + [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), + [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5842), + [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), + [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5617), + [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [3129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 269), + [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 269), + [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), + [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), + [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), + [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), + [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), + [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), + [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), + [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4470), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), + [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5805), + [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), + [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5731), + [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5564), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [3193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, 0, 237), + [3195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, 0, 237), + [3197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 270), + [3199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 270), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), + [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), + [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [3225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), + [3227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [3233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [3235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [3237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), + [3239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), + [3257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), + [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), + [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), + [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), + [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [3287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), + [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5612), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), + [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), + [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), + [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), + [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), + [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), + [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), + [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [3349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), + [3351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [3353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), + [3355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [3357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), + [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), + [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), + [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [3373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), + [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [3381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), + [3383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [3387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [3389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), + [3417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), + [3419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), + [3421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [3423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), + [3425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), + [3427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), + [3429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), + [3431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [3433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), + [3435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [3437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), + [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [3442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), + [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), + [3450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), + [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), + [3454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5005), + [3458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 75), + [3460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 75), + [3462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 76), + [3464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 76), + [3466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 77), + [3468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 77), + [3470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 78), + [3472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 78), + [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 75), + [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), + [3478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 76), + [3480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2, 0, 0), + [3482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2, 0, 0), + [3484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 145), + [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 145), + [3488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 186), + [3490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 186), + [3492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), + [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), + [3498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 0), + [3500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [3502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [3507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), + [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [3512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 0), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), + [3522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 0), + [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5027), + [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [3536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 13), + [3539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(5593), + [3542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 13), + [3545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1098), + [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 13), + [3550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(488), + [3553] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym_primary_type, 1, 0, 13), + [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [3559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 13), SHIFT(5156), + [3562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [3564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(5587), + [3567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1001), + [3570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2, 0, 0), + [3572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2, 0, 0), + [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5813), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [3578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 0), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [3590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 0), + [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4813), + [3598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(245), + [3601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [3605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), + [3608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), + [3611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(397), + [3614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), + [3617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), + [3619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(542), + [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), + [3624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 24), + [3626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 24), + [3628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 24), SHIFT_REPEAT(4290), + [3631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, 0, 75), + [3633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, 0, 75), + [3635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym_primary_type, 1, 0, 13), + [3638] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 13), REDUCE(sym_rest_pattern, 2, 0, 0), + [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [3650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 3, 0, 79), + [3652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 3, 0, 79), + [3654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, 0, 19), + [3656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, 0, 19), + [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [3662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 24), SHIFT(3294), + [3665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_parenthesized_expression, 3, 0, 0), + [3667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_parenthesized_expression, 3, 0, 0), + [3669] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 32), + [3673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), + [3675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), + [3677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5000), + [3679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 76), + [3681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(328), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [3686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [3691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 75), + [3693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(623), + [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), + [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), + [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), + [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), + [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [3782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [3806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5581), + [3808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1520), + [3811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2511), + [3814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [3830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [3832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), + [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), + [3836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [3838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), + [3840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [3850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(3227), + [3853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(2867), + [3856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), + [3858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(1485), + [3861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(334), + [3864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(2268), + [3867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(5625), + [3870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(4393), + [3873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(4396), + [3876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(3062), + [3879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(3903), + [3882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(1725), + [3885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(1929), + [3888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(2401), + [3891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(1728), + [3894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(1933), + [3897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(2451), + [3900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(2774), + [3903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 24), SHIFT_REPEAT(2824), + [3906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2064), + [3909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1797), + [3912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1706), + [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [3925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1726), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), + [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), + [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), + [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), + [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), + [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), + [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), + [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), + [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), + [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), + [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), + [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), + [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), + [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), + [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), + [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), + [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), + [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), + [4002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), + [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), + [4006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 12), + [4008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 12), + [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [4018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3364), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), + [4026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [4028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), + [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), + [4032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), + [4034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), + [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [4040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), + [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), + [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), + [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), + [4054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 13), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5517), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [4060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 59), + [4062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 59), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5282), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [4068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 58), + [4070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 58), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), + [4074] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), REDUCE(aux_sym_object_repeat1, 2, 0, 30), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 31), + [4078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 16), + [4080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 16), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), + [4084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 2, 0, 67), + [4086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 2, 0, 67), + [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), + [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), + [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), + [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), + [4096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), + [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), + [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [4104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 15), + [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 15), + [4108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 0), + [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 0), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [4114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asserts, 2, 0, 0), + [4116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 2, 0, 0), + [4118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 19), + [4120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 19), + [4122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 137), + [4124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 137), + [4126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [4129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [4132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 175), + [4134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 175), + [4136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 176), + [4138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 176), + [4140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 18), + [4142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 18), + [4144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), + [4146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0), + [4148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), + [4150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [4153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [4156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2, 0, 0), + [4158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 75), + [4160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 75), + [4162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 138), + [4164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 138), + [4166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 139), + [4168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 139), + [4170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), + [4172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), + [4174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 68), + [4176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 68), + [4178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 69), + [4180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 69), + [4182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, 0, 8), + [4184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, 0, 8), + [4186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), + [4188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), + [4190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 2, 0, 66), + [4192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 2, 0, 66), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [4196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4, 0, 178), + [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4, 0, 178), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [4202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 4, 0, 66), + [4204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 4, 0, 66), + [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [4212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2, 0, 0), + [4214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2, 0, 0), + [4216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4, 0, 0), + [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4, 0, 0), + [4220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 179), + [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 179), + [4224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 60), + [4226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 60), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), + [4230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 61), + [4232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 61), + [4234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 145), + [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 145), + [4238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 221), + [4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 221), + [4242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 222), + [4244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 222), + [4246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 223), + [4248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 223), + [4250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 17), + [4252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 17), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), + [4256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), + [4258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), + [4260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 224), + [4262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 224), + [4264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 225), + [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 225), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [4270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2, 0, 0), + [4272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_satisfies_expression, 3, 0, 0), + [4274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_satisfies_expression, 3, 0, 0), + [4276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 260), + [4278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 260), + [4280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 261), + [4282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 261), + [4284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 262), + [4286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 262), + [4288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 19), + [4290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 19), + [4292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_type, 2, 0, 0), + [4294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_type, 2, 0, 0), + [4296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, 0, 0), + [4298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, 0, 0), + [4300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2, 0, 0), + [4302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2, 0, 0), + [4304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2, 0, 0), + [4306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2, 0, 0), + [4308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 263), + [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 263), + [4312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 76), + [4314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 76), + [4316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 6, 0, 264), + [4318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 6, 0, 264), + [4320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 19), + [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 19), + [4324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 127), + [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 127), + [4328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 69), + [4330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 69), + [4332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, 0, 295), + [4334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, 0, 295), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5868), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), + [4342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 128), + [4344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 128), + [4346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 129), + [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 129), + [4350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 130), + [4352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 130), + [4354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3, 0, 0), + [4356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3, 0, 0), + [4358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), + [4360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5568), [4368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1, 0, 0), [4370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1, 0, 0), - [4372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3, 0, 0), - [4374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3, 0, 0), - [4376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 0), - [4378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 0), - [4380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), - [4382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), - [4384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 62), - [4386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 62), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), - [4390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), - [4393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), - [4396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 77), - [4398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 77), - [4400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 63), - [4402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 63), - [4404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 19), - [4406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 19), - [4408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 3, 0, 0), - [4410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 3, 0, 0), - [4412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 78), - [4414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 78), - [4416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 138), - [4418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 138), - [4420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 139), - [4422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 139), - [4424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 58), - [4426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 58), - [4428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, 0, 0), - [4430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, 0, 0), - [4432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 77), REDUCE(sym_nested_type_identifier, 3, 0, 135), - [4435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 96), - [4437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 96), - [4439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 189), - [4441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 189), - [4443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), - [4445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0), - [4447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), - [4449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), - [4452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), - [4455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 129), - [4457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 129), - [4459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), - [4461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), - [4463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), - [4466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), - [4469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 2, 0, 12), - [4471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 2, 0, 12), - [4473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), - [4475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), - [4477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 21), - [4479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 21), - [4481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 29), - [4483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 29), - [4485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), - [4487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), - [4489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3, 0, 0), - [4491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3, 0, 0), - [4493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), - [4495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), - [4497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 3, 0, 50), - [4499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 3, 0, 50), - [4501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 54), - [4503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 54), - [4505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 55), - [4507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 55), - [4509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, 0, 56), - [4511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, 0, 56), - [4513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 57), - [4515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 57), - [4517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, 0, 0), - [4519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, 0, 0), - [4521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 73), - [4523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 73), - [4525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 81), - [4527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 81), - [4529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 16), - [4532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 16), - [4535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 82), - [4537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 82), - [4539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 83), - [4541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 83), - [4543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 86), - [4545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 86), - [4547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 31), - [4549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 31), - [4551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), - [4553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), - [4555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), - [4557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), - [4559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 117), - [4561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 117), - [4563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 118), - [4565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 118), - [4567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 119), - [4569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 119), - [4571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 120), - [4573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 120), - [4575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 121), - [4577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 121), - [4579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, 0, 119), - [4581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, 0, 119), - [4583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 124), - [4585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 124), - [4587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 127), - [4589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 127), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [4597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [4601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), - [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), - [4605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, 0, 148), - [4607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, 0, 148), - [4609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 152), - [4611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 152), - [4613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 171), - [4615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 171), - [4617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 193), - [4619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 193), - [4621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 31), - [4623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, 0, 32), - [4625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 31), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), - [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [4637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), - [4640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), - [4643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 151), - [4645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 151), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [4653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), - [4659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), - [4661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(5165), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [4666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, 0, 31), REDUCE(sym_object_pattern, 3, 0, 32), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [4671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), - [4673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), - [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), - [4677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [4681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), - [4690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5510), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), - [4700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_assertion, 2, 0, 0), - [4702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_assertion, 2, 0, 0), - [4704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [4706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [4712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4977), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [4720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [4724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [4728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [4730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [4738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [4750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 27), - [4752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3, 0, 0), - [4754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 72), - [4756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 74), - [4758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), - [4760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(160), - [4763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 74), - [4765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 125), - [4767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 126), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [4771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), - [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), - [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), - [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), - [4779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 187), - [4781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), - [4783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 8), - [4785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(160), - [4788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), - [4791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), - [4793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 8), - [4795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(160), - [4798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), - [4800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 0), - [4802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(160), - [4805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), - [4807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [4811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [4819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [4827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [4829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [4835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [4839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [4851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(162), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [4856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), - [4858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), - [4860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), - [4862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), - [4864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), - [4866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), - [4868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 32), - [4870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), - [4872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(162), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [4877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [4883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [4889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [4893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [4897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [4899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [4905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [4909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [4917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 42), - [4919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 42), - [4921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), - [4923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(162), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [4928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(155), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [4933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [4935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [4937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [4943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [4947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [4951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [4953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [4961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [4969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(155), - [4972] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), - [4976] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [4986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), - [4988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), - [4990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), - [4992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2861), - [4994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(155), - [4997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(155), - [5000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(162), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [5007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [5009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [5013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1, 0, 9), - [5015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), - [5017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), REDUCE(sym_primary_type, 1, 0, 16), - [5020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(156), - [5023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(156), - [5026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, 0, 95), - [5028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 95), SHIFT(516), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [5035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [5039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), - [5041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [5045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(156), - [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [5052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(156), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [5059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 91), REDUCE(sym_assignment_expression, 3, 0, 27), - [5062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 91), - [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [5066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 91), REDUCE(sym_assignment_expression, 3, 0, 72), - [5069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 72), REDUCE(sym_assignment_expression, 3, 0, 72), - [5072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 72), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [5078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3931), - [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), - [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [5088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [5092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), - [5094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [5098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [5102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), - [5104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), - [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [5110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), - [5112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__parameter_name, 1, 0, 9), - [5115] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__parameter_name, 1, 0, 9), REDUCE(sym_primary_type, 1, 0, 16), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [5123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [5127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), - [5129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), - [5131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), - [5134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), - [5137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 42), - [5139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 42), - [5141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 16), REDUCE(sym__parameter_name, 2, 0, 42), - [5144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3999), - [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [5152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [5156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), - [5158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [5162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), - [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [5166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [5170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [5172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), - [5174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [5176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [5178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [5184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [5188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [5192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [5194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [5202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [5210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(158), - [5213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(158), - [5216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(158), - [5219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(158), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [5226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 45), - [5228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 45), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [5232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [5236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), - [5242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), - [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [5246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), - [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [5250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), - [5252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), - [5255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3, 0, 0), - [5257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), - [5260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_computed_property_name, 3, 0, 0), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [5274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), - [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), - [5280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [5284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), - [5286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), - [5288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), - [5290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), - [5292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), - [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [5296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), - [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), - [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [5310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 102), - [5312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 102), - [5314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 106), - [5316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 106), - [5318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [5320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [5328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [5332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [5336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [5338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [5346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [5354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, 0, 72), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [5358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(152), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), - [5365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), - [5371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), - [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), - [5377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), - [5379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [5383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), - [5387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), - [5391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), - [5397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [5401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [5405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [5409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [5413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), - [5417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), - [5425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [5433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(152), - [5436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(152), - [5439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(152), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), - [5446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), - [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), - [5450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), - [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), - [5456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), - [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), - [5466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), - [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), - [5474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), - [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), - [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), - [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [5490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 158), - [5492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 158), - [5494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 160), - [5496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 160), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [5502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), - [5504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), - [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), - [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), - [5522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), - [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [5526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), - [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), - [5532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2, 0, 0), - [5534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4459), - [5536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), - [5538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 1, 0, 52), - [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [5546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 5, 0, 202), - [5548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 5, 0, 202), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), - [5558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [5562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), - [5565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 0), - [5567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), - [5570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 0), - [5572] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), - [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), - [5580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), - [5582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), - [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [5586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), - [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [5594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [5596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [5598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [5604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [5608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [5612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [5614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [5622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [5630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(159), - [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), - [5635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [5637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [5639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [5645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [5649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [5653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [5655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [5663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [5671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(151), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [5676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [5680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), - [5682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [5684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), - [5686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), - [5688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), - [5690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), - [5692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [5700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 92), - [5702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), - [5705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, 0, 31), REDUCE(sym_object_pattern, 3, 0, 32), - [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), - [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), - [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), - [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), - [5718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(159), - [5721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(159), - [5724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(159), - [5727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 31), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 32), - [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), - [5732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(151), - [5735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(151), - [5738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(151), - [5741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), - [5743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), - [5745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), - [5747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), - [5749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), - [5751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), - [5753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), - [5755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), - [5757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [5759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [5761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [5767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [4372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 3, 0, 0), + [4374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 3, 0, 0), + [4376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 2, 0, 0), + [4378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 2, 0, 0), + [4380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 136), + [4382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 136), + [4384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, 0, 133), + [4386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, 0, 133), + [4388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 75), REDUCE(sym_nested_type_identifier, 3, 0, 133), + [4391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 63), + [4393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 63), + [4395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 56), + [4397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 56), + [4399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 88), REDUCE(sym_nested_type_identifier, 3, 0, 133), + [4402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 135), + [4404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 135), + [4406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 0), + [4408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 0), + [4410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instantiation_expression, 2, 0, 21), + [4412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiation_expression, 2, 0, 21), + [4414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 136), + [4416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 136), + [4418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 137), + [4420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 137), + [4422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 138), + [4424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 138), + [4426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 139), + [4428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 139), + [4430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3, 0, 0), + [4432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3, 0, 0), + [4434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 94), + [4436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 94), + [4438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3, 0, 0), + [4440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), + [4442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 187), + [4444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 187), + [4446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 0), + [4448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 0), + [4450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), + [4452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), + [4454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), + [4456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), + [4458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), + [4460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), + [4462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 20), + [4464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 20), + [4466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 28), + [4468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 28), + [4470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), + [4472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), + [4474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3, 0, 0), + [4476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3, 0, 0), + [4478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), + [4480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), + [4482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 52), + [4484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 52), + [4486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 53), + [4488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 53), + [4490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, 0, 54), + [4492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, 0, 54), + [4494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 55), + [4496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 55), + [4498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, 0, 0), + [4500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, 0, 0), + [4502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 71), + [4504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 71), + [4506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 79), + [4508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 79), + [4510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 15), + [4513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 15), + [4516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 80), + [4518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 80), + [4520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 81), + [4522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 81), + [4524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 84), + [4526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 84), + [4528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 30), + [4530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 30), + [4532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), + [4534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), + [4536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), + [4538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), + [4540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 115), + [4542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 115), + [4544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 116), + [4546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 116), + [4548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 117), + [4550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 117), + [4552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 118), + [4554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 118), + [4556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 119), + [4558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 119), + [4560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, 0, 117), + [4562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, 0, 117), + [4564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 122), + [4566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 122), + [4568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 125), + [4570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 125), + [4572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, 0, 146), + [4574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, 0, 146), + [4576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 149), + [4578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 149), + [4580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 150), + [4582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 150), + [4584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 169), + [4586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 169), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5404), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [4596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [4598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 191), + [4600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 191), + [4602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 30), + [4604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, 0, 31), + [4606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 30), + [4608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), + [4611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), + [4614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), + [4617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [4626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [4630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), + [4632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), + [4634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [4638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 0), + [4640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), + [4644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(153), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [4651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [4660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [4664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), + [4668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(5360), + [4671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, 0, 30), REDUCE(sym_object_pattern, 3, 0, 31), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), + [4678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), + [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), + [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), + [4692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5495), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), + [4704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_assertion, 2, 0, 0), + [4706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_assertion, 2, 0, 0), + [4708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [4712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [4718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [4722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [4726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [4728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [4736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [4744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 26), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [4748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), + [4750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), + [4752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), + [4754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), + [4756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3, 0, 0), + [4758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 70), + [4760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 72), + [4762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 72), + [4764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 72), SHIFT(153), + [4767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 72), + [4769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 123), + [4771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 124), + [4773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 185), + [4775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), + [4778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), + [4780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 8), + [4782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(153), + [4785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), + [4787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 8), + [4789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(153), + [4792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), + [4796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [4800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [4802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [4808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [4812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [4816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [4818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [4824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [4828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [4842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), + [4844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), + [4846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), + [4848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), + [4850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), + [4852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), + [4854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 31), + [4856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(160), + [4859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), + [4861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 72), SHIFT(160), + [4864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(160), + [4867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [4873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [4879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [4883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [4887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [4889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [4895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [4899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [4911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 41), + [4913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 41), + [4915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [4917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(161), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [4922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [4926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [4932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [4936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [4940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [4942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [4950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [4958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 72), SHIFT(161), + [4961] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [4965] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [4973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), + [4975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), + [4977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), + [4979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), + [4981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(161), + [4984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(161), + [4987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(160), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [4994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [4996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [5002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [5006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [5008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [5014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, 0, 93), + [5016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 93), SHIFT(518), + [5019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 72), SHIFT(154), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [5030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(154), + [5033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(154), + [5036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 89), REDUCE(sym_assignment_expression, 3, 0, 26), + [5039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 89), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [5043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 89), REDUCE(sym_assignment_expression, 3, 0, 70), + [5046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 70), REDUCE(sym_assignment_expression, 3, 0, 70), + [5049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 70), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [5055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(154), + [5058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3939), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5509), + [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [5068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [5072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), + [5074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [5078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [5082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), + [5084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [5088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), + [5092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1, 0, 9), + [5094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__parameter_name, 1, 0, 9), + [5097] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__parameter_name, 1, 0, 9), REDUCE(sym_primary_type, 1, 0, 15), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), + [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [5105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [5109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [5111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), + [5113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [5116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [5119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 41), + [5121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 41), + [5123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 15), REDUCE(sym__parameter_name, 2, 0, 41), + [5126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4171), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [5130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), + [5132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), REDUCE(sym_primary_type, 1, 0, 15), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [5139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [5143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [5145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [5149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), + [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [5153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [5157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [5159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), + [5161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [5163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [5165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [5171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [5175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [5179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [5181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [5189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [5197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 72), SHIFT(162), + [5200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(162), + [5203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(162), + [5206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(162), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [5213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [5221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 100), + [5223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 100), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [5229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 104), + [5231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 104), + [5233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [5235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [5237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [5243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [5247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [5251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [5253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [5261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [5269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, 0, 70), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [5273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [5277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), + [5281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [5285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 72), SHIFT(158), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), + [5294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [5302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), + [5304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [5308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [5312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [5316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), + [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), + [5320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 1, 0, 50), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), + [5332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), + [5334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), + [5337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 0), + [5339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), + [5342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 0), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [5348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [5352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [5356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [5360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), + [5366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [5378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [5384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(158), + [5387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(158), + [5390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(158), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [5395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [5399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), + [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), + [5407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), + [5413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), + [5415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 44), + [5417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 44), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), + [5421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), + [5423] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [5429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), + [5435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [5443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [5451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [5467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 156), + [5469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 156), + [5471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 158), + [5473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 158), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [5479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), + [5481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [5485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [5491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), + [5494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3, 0, 0), + [5496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), + [5499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_computed_property_name, 3, 0, 0), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), + [5509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), + [5511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [5515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [5521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2, 0, 0), + [5523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4505), + [5525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [5533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 5, 0, 200), + [5535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 5, 0, 200), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [5541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), + [5549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [5553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), + [5559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [5563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), + [5565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), + [5567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), + [5569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), + [5571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), + [5573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [5577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [5583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 72), SHIFT(157), + [5586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [5588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [5590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [5594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [5598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [5606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [5610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [5612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), + [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), + [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5333), + [5626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [5628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [5630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [5636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [5640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [5644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [5646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [5654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [5662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 72), SHIFT(155), + [5665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 30), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 31), + [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [5670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(157), + [5673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(157), + [5676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(157), + [5679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(155), + [5682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(155), + [5685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(155), + [5688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 90), + [5690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), + [5692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), + [5694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), + [5696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), + [5698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), + [5700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), + [5702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), + [5704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), + [5706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), + [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), + [5713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, 0, 30), REDUCE(sym_object_pattern, 3, 0, 31), + [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [5718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), + [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [5722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), + [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [5731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [5735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [5737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), + [5739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [5741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [5743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), + [5745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), + [5747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [5749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [5751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [5757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [5761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [5765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [5767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [5771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [5775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [5777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [5785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [5793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(161), - [5796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(161), - [5799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(161), - [5802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(161), - [5805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), - [5808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [5810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [5812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [5816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [5822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [5828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), - [5830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), - [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [5836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [5840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [5842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [5850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 5, 0, 169), REDUCE(sym_class, 6, 0, 233), - [5853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 5, 0, 169), REDUCE(sym_class, 6, 0, 233), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [5858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 51), REDUCE(sym_class, 4, 0, 150), - [5861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 51), REDUCE(sym_class, 4, 0, 150), - [5864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 54), REDUCE(sym_class, 4, 0, 151), - [5867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 54), REDUCE(sym_class, 4, 0, 151), - [5870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 55), REDUCE(sym_class, 4, 0, 152), - [5873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 55), REDUCE(sym_class, 4, 0, 152), - [5876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(153), - [5879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(153), - [5882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(153), - [5885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(153), - [5888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), - [5890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), - [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [5894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), - [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), - [5898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), - [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [5910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 86), - [5913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 86), - [5916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 31), - [5918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 113), REDUCE(sym_class, 5, 0, 191), - [5921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 113), REDUCE(sym_class, 5, 0, 191), - [5924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 114), REDUCE(sym_class, 5, 0, 192), - [5927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 114), REDUCE(sym_class, 5, 0, 192), - [5930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 117), REDUCE(sym_class, 5, 0, 193), - [5933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 117), REDUCE(sym_class, 5, 0, 193), - [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [5940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), - [5942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 2, 0, 115), - [5944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 95), SHIFT(648), - [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), - [5949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), - [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), - [5961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), - [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), - [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), - [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), - [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), - [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), - [5997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 298), - [5999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 298), - [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [6003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 110), - [6005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 110), - [6007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 110), SHIFT_REPEAT(2724), - [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [6012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 123), - [6014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 123), - [6016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 219), - [6018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 219), - [6020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 173), - [6022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 173), - [6024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 236), - [6026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 236), - [6028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, 0, 93), - [6030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, 0, 93), - [6032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), - [6034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), - [6036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), SHIFT_REPEAT(2728), - [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [6041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 269), - [6043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 269), - [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [6047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 299), - [6049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 299), - [6051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 318), - [6053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 318), - [6055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 197), - [6057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 197), - [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [6061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5823), - [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [6065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 270), - [6067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 270), - [6069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 319), - [6071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 319), - [6073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 156), - [6075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 156), - [6077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, 0, 334), - [6079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, 0, 334), - [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [6085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 3, 0, 110), - [6087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 3, 0, 110), - [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [6091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), - [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [6095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), - [6097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), - [6099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 3, 0, 54), - [6101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 3, 0, 54), - [6103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, 0, 11), - [6105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 2, 0, 11), - [6107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), - [6109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), - [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [6113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), - [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), - [6117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), - [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [6121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [6123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [6125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), - [6127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), - [6129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), - [6131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), - [6133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [6135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), - [6137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), - [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [6141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), - [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), - [6145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), - [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), - [6151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), - [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), - [6157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 25), SHIFT_REPEAT(4005), - [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), - [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), - [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), - [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), - [6168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), - [6170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [6172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), - [6174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), - [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), - [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), - [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), - [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), - [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), - [6188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), - [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), - [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [6202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), - [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [6214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), - [6216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), - [6218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), - [6220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), - [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), - [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), - [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [6232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), - [6234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), - [6236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), - [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [6240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), - [6242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), - [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [6246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), - [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [6250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [6254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), - [6256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [6260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), - [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [6266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), - [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), - [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), - [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [6274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), - [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), - [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [6280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), - [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), - [6286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), - [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [6290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), - [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), - [6296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), - [6298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), - [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [6302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), - [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), - [6308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), - [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [6312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), - [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [6320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), - [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), - [6326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), - [6328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5378), - [6330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5630), - [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), - [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), - [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5326), - [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), - [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), - [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5495), - [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [6348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4636), - [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), - [6352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), - [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [6356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), - [6358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1, 0, 0), - [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5810), - [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5377), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5008), - [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5381), - [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5010), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), - [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), - [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5747), - [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5662), - [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5750), - [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5770), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), - [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5557), - [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5391), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), - [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5404), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5795), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5799), - [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5812), - [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5824), - [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), - [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), - [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5546), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5585), - [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797), - [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5804), - [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5813), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5833), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5719), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5863), - [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5601), - [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [6462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4993), - [6464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4991), - [6466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 1), - [6468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__import_identifier, 1, 0, 1), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [6472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 259), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), - [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [6482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 161), - [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [6490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 213), - [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [6498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 166), - [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [6504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), - [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [6510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), - [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [6520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, 0, 5), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [6530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), - [6532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 296), - [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [6544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 89), - [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), - [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [6550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 253), - [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [6560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), - [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [6566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [6568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 211), - [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), - [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [6576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), - [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5351), - [6580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 111), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), - [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [6602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), - [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [6610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 161), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [6614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 253), - [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [6618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 89), - [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [6624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 14), REDUCE(sym_type_parameter, 1, 0, 15), - [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [6629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 14), SHIFT(1027), - [6632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, 0, 5), - [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), - [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5013), - [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [6646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 211), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5512), - [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [6664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 111), - [6666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 259), - [6668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 211), - [6670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 161), - [6672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 89), - [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [6678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 213), - [6680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 166), - [6682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 253), - [6684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 253), - [6686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 89), - [6688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 5), - [6690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 161), - [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), - [6694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 14), SHIFT(5199), - [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), - [6699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 5), - [6701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 296), - [6703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 211), - [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [6711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [6715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4691), - [6717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), - [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5703), - [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5594), - [6723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), - [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5418), - [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), - [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [6733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5460), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [6739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [6743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [6745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), - [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), - [6749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4762), - [6751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4185), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5767), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4760), - [6757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), - [6761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), - [6763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), - [6765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), - [6767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), - [6769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), - [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [6775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), - [6777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), - [6779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 0), - [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [6783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4765), - [6785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4768), - [6787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), - [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), - [6793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 24), - [6795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), SHIFT(5154), - [6798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), - [6800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), - [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [6806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 317), - [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [6816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 0), - [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [6820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 289), - [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), - [6824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0), - [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), - [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [6850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 32), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), - [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), - [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), - [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), - [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), - [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), - [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [6874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 0), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), - [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), - [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), - [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), - [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), - [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), - [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), - [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), - [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), - [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), - [6936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 0), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), - [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), - [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), - [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5823), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), - [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), - [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [6982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), - [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), - [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), - [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), - [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), - [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), - [7024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [7026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5503), - [7032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2, 0, 0), - [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), - [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [7054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2, 0, 0), - [7056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5616), - [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5500), - [7070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5627), - [7072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_adding_type_annotation, 2, 0, 0), - [7074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2979), - [7076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), - [7078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), - [7080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), - [7082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), - [7084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), - [7086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), - [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [7090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), - [7092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), - [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), - [7098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), - [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), - [7104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 317), - [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5826), - [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5866), - [7114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_chain, 1, 0, 0), - [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), - [7120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 15), - [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), - [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), - [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), - [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), - [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), - [7134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 222), - [7136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2, 0, 128), - [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), - [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), - [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [7146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1, 0, 10), - [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), - [7150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, 0, 109), - [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), - [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5186), - [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), - [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), - [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), - [7162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 143), - [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), - [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), - [7168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 143), - [7170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 64), - [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), - [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), - [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5459), - [7178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 122), - [7180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 165), - [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), - [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), - [7194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 203), - [7196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 172), - [7198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 244), - [7200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 245), - [7202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 281), - [7204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 282), - [7206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 301), - [7208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 302), - [7210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 322), - [7212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 327), - [7214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 9, 0, 336), - [7216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 175), - [7218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 176), - [7220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), - [7222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), - [7224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), - [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), - [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), - [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), - [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), - [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [7242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), - [7244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 289), - [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), - [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), - [7250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(540), - [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), - [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), - [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), - [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), - [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), - [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4804), - [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), - [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), - [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5558), - [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), - [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), - [7291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, 0, 0), - [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), - [7295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(489), - [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [7312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5558), - [7315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), - [7317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(320), - [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), - [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), - [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), - [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), - [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), - [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), - [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), - [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), - [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), - [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), - [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), - [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), - [7378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1480), - [7381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), - [7383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1, 0, 0), - [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), - [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), - [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [7395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 23), - [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), - [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [7405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2, 0, 0), - [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), - [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5675), - [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), - [7419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), - [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), - [7427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts_annotation, 2, 0, 0), - [7429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2, 0, 0), - [7431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, 0, 84), - [7433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 25), SHIFT_REPEAT(4039), - [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), - [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), - [7442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 144), - [7444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 144), - [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), - [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), - [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), - [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), - [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), - [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), - [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), - [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), - [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), - [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), - [7474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2, 0, 0), - [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), - [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), - [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), - [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), - [7490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3892), - [7493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), - [7495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(393), - [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), - [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), - [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), - [7518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2, 0, 10), - [7520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 143), - [7522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 143), - [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), - [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), - [7528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 291), - [7530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 313), - [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), - [7536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 255), - [7538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 257), - [7540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 220), - [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), - [7548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 316), - [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), - [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [7558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(976), - [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), - [7565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 215), - [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5180), - [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), - [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), - [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), - [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), - [7585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 144), - [7587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 144), - [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [7595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1056), - [7598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 24), SHIFT(975), - [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), - [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), - [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), - [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), - [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), - [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), - [7617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 24), SHIFT(1060), - [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), - [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [7624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 37), - [7626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 207), - [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), - [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), - [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), - [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), - [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [7640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 209), - [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), - [7644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 247), - [7646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 217), - [7648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 221), - [7650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 251), - [7652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 5, 0, 261), - [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), - [7658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 37), - [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [7662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 37), - [7664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, 0, 59), - [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), - [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), - [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5517), - [7674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 277), - [7676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 279), - [7678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 280), - [7680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 285), - [7682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(397), - [7685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 288), - [7687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1088), - [7690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 7, 0, 307), - [7692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 24), SHIFT(966), - [7695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 320), - [7697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 321), - [7699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_type, 2, 0, 0), - [7701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 325), - [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), - [7705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), - [7707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1019), - [7710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4115), - [7713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2, 0, 0), - [7715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 295), - [7717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), - [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), - [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5847), - [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [7731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 330), - [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), - [7739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 333), - [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), - [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [7745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 247), - [7747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 36), - [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), - [7761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 163), - [7763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 96), - [7765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 168), - [7767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 174), - [7769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(962), - [7772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 163), - [7774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 96), - [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [7778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 24), SHIFT(1003), - [7781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 251), - [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [7785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), - [7787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5, 0, 252), - [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5880), - [7791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 285), - [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), - [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [7799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, 0, 204), - [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [7805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4, 0, 205), - [7807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 288), - [7809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 207), - [7811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 209), - [7813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(969), - [7816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1040), - [7819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 24), SHIFT(970), - [7822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 24), SHIFT(1047), - [7825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 304), - [7827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 305), - [7829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 307), - [7831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 339), - [7833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 310), - [7835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), - [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), - [7839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), - [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), - [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), - [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [7853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3359), - [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), - [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), - [7859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), - [7861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), - [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [7869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 44), - [7871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [7873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), - [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [7885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), - [7889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, 0, 34), - [7891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), - [7893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 184), - [7895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 184), - [7897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 185), - [7899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 185), - [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), - [7903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 104), - [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [7907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [7909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), - [7915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), - [7917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 67), - [7919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), - [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [7925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(432), - [7928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1016), - [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [7933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [7935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), - [7937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), - [7939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5524), - [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), - [7943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0), - [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [7947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), - [7951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 134), - [7953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(486), - [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [7958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, 0, 53), - [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [7964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 229), - [7966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 229), SHIFT_REPEAT(4415), - [7969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 229), - [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), - [7975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), - [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), - [7979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [7983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 32), - [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [7987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 89), - [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [7991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), - [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), - [7997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, 0, 116), - [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [8009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6, 0, 237), - [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [8013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 5, 0, 278), - [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), - [8017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), - [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4766), - [8023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), - [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), - [8031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), - [8033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [8035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [8037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4493), - [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), - [8042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), - [8044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [8046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), - [8048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(4497), - [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), - [8055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 170), - [8057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 170), SHIFT_REPEAT(355), - [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [8062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), - [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), - [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), - [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [8070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), - [8072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), REDUCE(aux_sym_template_literal_type_repeat1, 1, 0, 0), - [8075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [8079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), - [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [8087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [8089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(3607), - [8092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), - [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), - [8096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 312), - [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [8106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 315), - [8108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, 0, 92), - [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [8116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1, 0, 0), - [8118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 218), - [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), - [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), - [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), - [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [8144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(400), - [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), - [8155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 311), - [8157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 314), - [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [8169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 254), - [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), - [8173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), - [8175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 256), - [8177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 10, 0, 341), - [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [8185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 97), - [8187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 258), - [8189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 214), - [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), - [8197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(280), - [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), - [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), - [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), - [8246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(255), - [8249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), SHIFT_REPEAT(4612), - [8252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), - [8254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 283), - [8256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 284), - [8258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 286), - [8260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 287), - [8262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 281), - [8264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4612), - [8266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), - [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [8270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 282), - [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), - [8274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 0), - [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [8278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 323), - [8280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 290), - [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [8284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), - [8286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 2, 0, 89), - [8288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 324), - [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [8292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 326), - [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [8296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, 0, 0), - [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), - [8304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 292), - [8306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 293), - [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), - [8310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 294), - [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), - [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), - [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), - [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [8322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 328), - [8324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), - [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5362), - [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), - [8330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(4946), - [8333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), - [8335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(212), - [8338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), - [8340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 329), - [8342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1, 0, 0), - [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [8346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(289), - [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [8353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [8355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 331), - [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), - [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), - [8365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 332), - [8367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, 0, 0), - [8369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(3487), - [8372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), - [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), - [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [8378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 96), - [8380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2, 0, 0), - [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), - [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), - [8388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, 0, 5), - [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5382), - [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4779), - [8394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), - [8396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5139), - [8398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 260), - [8400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 36), - [8402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 246), - [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), - [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5115), - [8408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4629), - [8410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [8412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5343), - [8414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5344), - [8416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), SHIFT_REPEAT(3348), - [8419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), - [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), - [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), - [8427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 231), SHIFT_REPEAT(2797), - [8430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 231), - [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5361), - [8434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5140), - [8436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), - [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [8446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 162), - [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [8450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 216), - [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [8454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, 0, 122), - [8456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 164), - [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), - [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [8462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 97), - [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [8466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 167), - [8468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 248), - [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), - [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [8474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 249), - [8476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 53), - [8478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4822), - [8480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), - [8482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3, 0, 0), - [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), - [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), - [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), - [8502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 250), - [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), - [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [8508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(945), - [8511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), - [8513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 3, 0, 0), - [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), - [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5348), - [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [8533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, 0, 0), - [8535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(2473), - [8538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), - [8540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2325), - [8543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), - [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), - [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), - [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), - [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5516), - [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), - [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [8565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 244), - [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), - [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [8583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 245), - [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [8591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 206), - [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [8599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 208), - [8601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 335), - [8603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 337), - [8605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 210), - [8607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4880), - [8609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5654), - [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [8613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 303), - [8615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 306), - [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [8621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 308), - [8623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 338), - [8625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 309), - [8627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 340), - [8629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 7, 0, 301), - [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), - [8633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 172), - [8635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 203), - [8637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 212), - [8639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(620), - [8642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), - [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), - [8646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 157), - [8648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 154), - [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [8666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [8668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [8672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [8676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [8680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, 0, 159), - [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [8684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [8686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 2, 0, 89), - [8688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [8702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), - [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), - [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5554), - [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [8714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [8718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_parameter, 2, 0, 37), - [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), - [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), - [8724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2, 0, 0), - [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [8736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [8744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 136), - [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), - [8748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), - [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), - [8752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), - [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), - [8756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 133), - [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), - [8762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 179), - [8764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [8768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_tuple_parameter, 3, 0, 96), - [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [8772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [8776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [8778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, 0, 36), - [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), - [8786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1, 0, 0), - [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), - [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), - [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), - [8798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 4, 0, 195), - [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [8808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 66), - [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [8814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 198), - [8816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 195), - [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [8822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 103), - [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), - [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5859), - [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [8840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [8842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), - [8852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, 0, 105), - [8854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 43), - [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), - [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5867), - [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), - [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), - [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [8918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [8934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, 0, 5), - [8936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, 0, 154), - [8938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2, 0, 0), - [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), - [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5499), - [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [8960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5717), - [8962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3, 0, 0), - [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [8966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3, 0, 0), - [8968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2, 0, 0), - [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), - [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), - [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [8988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5665), - [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), - [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [9000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3, 0, 0), - [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5476), - [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), - [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [9020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, 0, 0), - [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [9028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5572), - [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), - [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), - [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), - [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), - [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [9096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, 0, 0), - [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), - [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5575), - [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), - [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), - [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742), - [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5871), - [9146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2, 0, 0), - [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), - [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), - [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), - [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), - [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), - [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5477), - [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), - [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), - [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [9208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5722), - [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5649), - [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), - [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), - [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5597), - [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [9236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, 0, 0), - [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4786), - [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), - [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5505), - [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5551), - [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5849), - [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), - [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5609), - [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), - [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4821), - [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), - [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), - [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5213), - [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5651), - [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), - [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), - [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5577), - [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), - [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), - [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), - [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), - [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [9524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5834), - [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [9532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), - [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [9550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5744), - [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5712), - [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), - [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [9574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), - [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), - [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), - [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [9588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), - [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), - [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), - [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), - [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), - [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), - [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), - [9628] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [5775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [5783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 72), SHIFT(151), + [5786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(151), + [5789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(151), + [5792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(151), + [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [5797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), + [5799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [5801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [5803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [5809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [5813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [5817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [5819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [5827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [5835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 72), SHIFT(152), + [5838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 93), SHIFT(651), + [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [5843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 30), + [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [5847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 84), + [5850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 84), + [5853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 49), REDUCE(sym_class, 4, 0, 148), + [5856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 49), REDUCE(sym_class, 4, 0, 148), + [5859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 52), REDUCE(sym_class, 4, 0, 149), + [5862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 52), REDUCE(sym_class, 4, 0, 149), + [5865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 53), REDUCE(sym_class, 4, 0, 150), + [5868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 53), REDUCE(sym_class, 4, 0, 150), + [5871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(152), + [5874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(152), + [5877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(152), + [5880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), + [5882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), + [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [5886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), + [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [5890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), + [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [5904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), + [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [5908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 111), REDUCE(sym_class, 5, 0, 189), + [5911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 111), REDUCE(sym_class, 5, 0, 189), + [5914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 112), REDUCE(sym_class, 5, 0, 190), + [5917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 112), REDUCE(sym_class, 5, 0, 190), + [5920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 115), REDUCE(sym_class, 5, 0, 191), + [5923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 115), REDUCE(sym_class, 5, 0, 191), + [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [5928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), + [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [5934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), + [5936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 5, 0, 167), REDUCE(sym_class, 6, 0, 231), + [5939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 5, 0, 167), REDUCE(sym_class, 6, 0, 231), + [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [5944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 2, 0, 113), + [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [5950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [5986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 121), + [5988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 121), + [5990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 268), + [5992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 268), + [5994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 234), + [5996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 234), + [5998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 217), + [6000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 217), + [6002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 296), + [6004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 296), + [6006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 297), + [6008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 297), + [6010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 316), + [6012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 316), + [6014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 317), + [6016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 317), + [6018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, 0, 332), + [6020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, 0, 332), + [6022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 171), + [6024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 171), + [6026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 195), + [6028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 195), + [6030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 267), + [6032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 267), + [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [6036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, 0, 91), + [6038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, 0, 91), + [6040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 154), + [6042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 154), + [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [6048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 108), + [6050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 108), + [6052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 108), SHIFT_REPEAT(2720), + [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [6057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), + [6059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), + [6061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), SHIFT_REPEAT(2716), + [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [6068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5822), + [6070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), + [6072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), + [6074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 3, 0, 52), + [6076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 3, 0, 52), + [6078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 3, 0, 108), + [6080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 3, 0, 108), + [6082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, 0, 11), + [6084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 2, 0, 11), + [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [6088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), + [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [6092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), + [6094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), + [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [6098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), + [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [6102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), + [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [6108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [6110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [6112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [6114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), + [6116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), + [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [6122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), + [6124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), + [6126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [6128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [6130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [6132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), + [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [6138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), + [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), + [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), + [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [6150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 24), SHIFT_REPEAT(3903), + [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), + [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [6157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), + [6159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), + [6161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), + [6163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), + [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), + [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [6171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [6177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [6183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), + [6185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), + [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), + [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), + [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), + [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), + [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), + [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [6205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), + [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [6211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), + [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [6217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [6219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), + [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [6223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [6227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [6231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), + [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [6235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), + [6237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), + [6239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), + [6241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), + [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [6245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), + [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [6249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), + [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [6257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), + [6259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), + [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [6265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), + [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [6269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), + [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [6275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), + [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [6281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), + [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), + [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [6287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), + [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [6293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), + [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), + [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [6299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), + [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [6303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), + [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [6309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), + [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [6313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5358), + [6315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5609), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), + [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), + [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), + [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), + [6325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4523), + [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5595), + [6329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), + [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [6333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), + [6335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1, 0, 0), + [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5530), + [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), + [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), + [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5593), + [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5382), + [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), + [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), + [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), + [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), + [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), + [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5696), + [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), + [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), + [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), + [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5510), + [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), + [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), + [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5819), + [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5669), + [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), + [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5744), + [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), + [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5702), + [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), + [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), + [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5645), + [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), + [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5866), + [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5587), + [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), + [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), + [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5694), + [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5784), + [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5786), + [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797), + [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5311), + [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), + [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5807), + [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [6449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 211), + [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), + [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), + [6459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 87), + [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [6465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 109), + [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [6471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4993), + [6473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4992), + [6475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 1), + [6477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__import_identifier, 1, 0, 1), + [6479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), + [6481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), + [6483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [6485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), + [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [6489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 257), + [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [6503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), + [6505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, 0, 5), + [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [6513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 294), + [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [6519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 159), + [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [6527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 164), + [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), + [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), + [6553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 251), + [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [6559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 209), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [6565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), + [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), + [6569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), + [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [6589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, 0, 5), + [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [6597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 13), REDUCE(sym_type_parameter, 1, 0, 14), + [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [6602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 13), SHIFT(1056), + [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [6611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 159), + [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [6615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 209), + [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [6619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 251), + [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), + [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), + [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), + [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [6639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 87), + [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [6647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 5), + [6649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 87), + [6651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 211), + [6653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 87), + [6655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 109), + [6657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 257), + [6659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 209), + [6661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 5), + [6663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 164), + [6665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 251), + [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), + [6669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 159), + [6671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 251), + [6673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 13), SHIFT(5156), + [6676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 209), + [6678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 159), + [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), + [6686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 294), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), + [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), + [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [6700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [6704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5004), + [6706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), + [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5563), + [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5566), + [6712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), + [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [6716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), + [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [6720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [6722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [6724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), + [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5690), + [6728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), + [6730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), + [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), + [6736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4735), + [6738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4163), + [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5468), + [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), + [6744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), + [6746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), + [6748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), + [6750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 0), + [6752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 23), + [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [6760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), + [6762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), + [6764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), + [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), + [6768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4989), + [6770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4994), + [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [6774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), + [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5370), + [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [6780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), SHIFT(5140), + [6783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), + [6785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), + [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), + [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), + [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [6829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 0), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), + [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), + [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [6855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 0), + [6857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 287), + [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [6865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [6871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 31), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [6897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 315), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [6919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0), + [6921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 0), + [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), + [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), + [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), + [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), + [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), + [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), + [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [7007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_adding_type_annotation, 2, 0, 0), + [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [7015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2, 0, 0), + [7017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2, 0, 0), + [7019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5666), + [7021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), + [7023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), + [7033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), + [7035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), + [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [7049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5515), + [7051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), + [7053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [7057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [7061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [7063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5599), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [7073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), + [7075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), + [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), + [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), + [7083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 201), + [7085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 170), + [7087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 14), + [7089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_chain, 1, 0, 0), + [7091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 315), + [7093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 62), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), + [7103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), + [7105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), + [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), + [7113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 173), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), + [7117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 174), + [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), + [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [7123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 120), + [7125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 242), + [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), + [7131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 243), + [7133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 163), + [7135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2, 0, 126), + [7137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 141), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5777), + [7143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 141), + [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [7147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1, 0, 10), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [7151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 280), + [7153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 279), + [7155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 299), + [7157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 300), + [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), + [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [7163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 320), + [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), + [7169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 325), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), + [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5826), + [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), + [7183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 9, 0, 334), + [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), + [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), + [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), + [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [7195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 220), + [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5321), + [7201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), + [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5854), + [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [7209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 287), + [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), + [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), + [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [7221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), + [7223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, 0, 107), + [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), + [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), + [7231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(542), + [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), + [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), + [7238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), + [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), + [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), + [7252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), + [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), + [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [7276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1, 0, 0), + [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), + [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5534), + [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [7294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2, 0, 10), + [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), + [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), + [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), + [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [7318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, 0, 0), + [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), + [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), + [7334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(491), + [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [7347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts_annotation, 2, 0, 0), + [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), + [7357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5845), + [7360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), + [7362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(320), + [7365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 142), + [7367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 142), + [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), + [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), + [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), + [7375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 22), + [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5813), + [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5845), + [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), + [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), + [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), + [7397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3832), + [7400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), + [7402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(393), + [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), + [7407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1477), + [7410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), + [7412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2, 0, 0), + [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), + [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), + [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), + [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), + [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), + [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), + [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), + [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), + [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), + [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), + [7442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2, 0, 0), + [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), + [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), + [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), + [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [7454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2, 0, 0), + [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), + [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), + [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), + [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), + [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [7466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 141), + [7468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 141), + [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), + [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), + [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [7490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, 0, 82), + [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), + [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), + [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), + [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), + [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), + [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), + [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), + [7516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 215), + [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), + [7522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 293), + [7524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 253), + [7526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 255), + [7528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, 0, 57), + [7530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 289), + [7532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 218), + [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [7546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(946), + [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [7565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1053), + [7568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 23), SHIFT(964), + [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), + [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), + [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), + [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), + [7585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 23), SHIFT(1059), + [7588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 36), + [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [7592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 283), + [7594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 286), + [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), + [7600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 205), + [7602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 302), + [7604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 303), + [7606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 305), + [7608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 308), + [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [7612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 207), + [7614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 213), + [7616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 311), + [7618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 219), + [7620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 314), + [7622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 36), + [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), + [7628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(953), + [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [7633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 245), + [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), + [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), + [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [7649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1096), + [7652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 23), SHIFT(973), + [7655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_type, 2, 0, 0), + [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5863), + [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), + [7663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), + [7665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1034), + [7668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4136), + [7671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2, 0, 0), + [7673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 142), + [7675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 142), + [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), + [7679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), + [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4881), + [7687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), + [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), + [7693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 7, 0, 305), + [7695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 318), + [7697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 319), + [7699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 323), + [7701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 328), + [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [7705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 331), + [7707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 35), + [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), + [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), + [7725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 161), + [7727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 249), + [7729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 94), + [7731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 166), + [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), + [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [7737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 172), + [7739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 161), + [7741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 337), + [7743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 94), + [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [7747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 23), SHIFT(1002), + [7750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 245), + [7752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5, 0, 250), + [7754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 249), + [7756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 5, 0, 259), + [7758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), + [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), + [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5836), + [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5729), + [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [7782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, 0, 202), + [7784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4, 0, 203), + [7786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(397), + [7789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 205), + [7791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 207), + [7793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 275), + [7795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 277), + [7797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(962), + [7800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 278), + [7802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1037), + [7805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 23), SHIFT(967), + [7808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 23), SHIFT(1043), + [7811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 283), + [7813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 286), + [7815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 36), + [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5626), + [7819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), + [7823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), + [7827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 43), + [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), + [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [7839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), + [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), + [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), + [7847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2913), + [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), + [7851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), + [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), + [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), + [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), + [7861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 182), + [7863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 182), + [7865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 183), + [7867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 183), + [7869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [7871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), + [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [7881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), + [7883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5663), + [7885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), + [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [7889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [7891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [7893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), + [7895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [7897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 132), + [7899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [7903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, 0, 114), + [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [7907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [7909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5738), + [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [7913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1019), + [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [7918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(488), + [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), + [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [7927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [7933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [7935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [7937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 5, 0, 276), + [7939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), + [7947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0), + [7949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 87), + [7951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [7953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), + [7957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), + [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), + [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [7963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(3568), + [7966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), + [7968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(433), + [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), + [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), + [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [7979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, 0, 51), + [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), + [7983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [7985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6, 0, 235), + [7987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, 0, 33), + [7989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), + [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), + [7997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), + [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [8003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 168), + [8005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 168), SHIFT_REPEAT(355), + [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), + [8012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 227), + [8014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 227), SHIFT_REPEAT(4398), + [8017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 227), + [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [8021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), + [8023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), REDUCE(aux_sym_template_literal_type_repeat1, 1, 0, 0), + [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [8032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 102), + [8034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [8036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [8038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), + [8040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [8042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4494), + [8045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), + [8047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(4495), + [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), + [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [8056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 65), + [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [8060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 31), + [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [8064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), + [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), + [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), + [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [8076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 252), + [8078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 216), + [8080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 310), + [8082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 312), + [8084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 290), + [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), + [8088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 0), + [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [8096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 292), + [8098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 309), + [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), + [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [8108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 288), + [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [8132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 313), + [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [8146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 212), + [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), + [8150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 244), + [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), + [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), + [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [8164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [8192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 254), + [8194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5013), + [8202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 246), + [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [8206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 256), + [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), + [8220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), + [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), + [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), + [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), + [8232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 247), + [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), + [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), + [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), + [8240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(4958), + [8243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), + [8245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [8247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [8249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), + [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [8253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [8257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [8261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(289), + [8264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2, 0, 0), + [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), + [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), + [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), + [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4882), + [8284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), + [8292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, 0, 5), + [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), + [8296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 35), + [8298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, 0, 0), + [8300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(3492), + [8303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), + [8305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 321), + [8307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 322), + [8309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 324), + [8311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 326), + [8313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 327), + [8315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 329), + [8317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 330), + [8319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 291), + [8321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 258), + [8323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5329), + [8325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5330), + [8327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), SHIFT_REPEAT(3380), + [8330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), + [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5005), + [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5140), + [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), + [8350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 248), + [8352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 160), + [8354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, 0, 120), + [8356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 162), + [8358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 95), + [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [8364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 165), + [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), + [8368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 2, 0, 87), + [8370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, 0, 0), + [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [8376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), + [8378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 51), + [8380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(218), + [8383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), + [8385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(400), + [8388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 333), + [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [8394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 335), + [8396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 336), + [8398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3, 0, 0), + [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), + [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), + [8404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 338), + [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), + [8408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, 0, 90), + [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [8414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 10, 0, 339), + [8416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(945), + [8419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), + [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), + [8423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 3, 0, 0), + [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [8429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 301), + [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), + [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), + [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [8441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 242), + [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [8447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [8453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 243), + [8455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(2429), + [8458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), + [8460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 229), SHIFT_REPEAT(2794), + [8463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 229), + [8465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2315), + [8468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), + [8470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, 0, 0), + [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [8476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), + [8478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 304), + [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), + [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [8486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 306), + [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), + [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [8492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 307), + [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5526), + [8496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5462), + [8498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(280), + [8501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(254), + [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [8510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1, 0, 0), + [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), + [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [8520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 204), + [8522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 206), + [8524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [8528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 208), + [8530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5313), + [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [8534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 7, 0, 299), + [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5608), + [8546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [8552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 281), + [8554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [8556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [8558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [8560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [8562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [8566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 282), + [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), + [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [8572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 170), + [8574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 201), + [8576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 284), + [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [8580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 285), + [8582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 279), + [8584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 280), + [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [8588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 210), + [8590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1, 0, 0), + [8592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(623), + [8595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 94), + [8597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 95), + [8599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), + [8601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5039), + [8603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5688), + [8605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 214), + [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [8611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 101), + [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), + [8615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1, 0, 0), + [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), + [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [8625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, 0, 157), + [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [8631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_parameter, 2, 0, 36), + [8633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2, 0, 0), + [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), + [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), + [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), + [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [8655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 134), + [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), + [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), + [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), + [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [8695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 177), + [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [8713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 42), + [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [8727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_tuple_parameter, 3, 0, 94), + [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [8745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), + [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [8749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, 0, 35), + [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), + [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5739), + [8759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 4, 0, 193), + [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [8765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 152), + [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [8771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, 0, 103), + [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [8793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 196), + [8795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 193), + [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), + [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5847), + [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), + [8815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [8825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 2, 0, 87), + [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), + [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), + [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), + [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), + [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [8851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, 0, 5), + [8853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, 0, 152), + [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), + [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5516), + [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [8881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2, 0, 0), + [8883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 64), + [8885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 131), + [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [8913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 155), + [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), + [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [8943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5553), + [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), + [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5403), + [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), + [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [8963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5801), + [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), + [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), + [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), + [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [9007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3, 0, 0), + [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5688), + [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5857), + [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), + [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), + [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), + [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), + [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [9039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, 0, 0), + [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), + [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), + [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), + [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5851), + [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [9075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2, 0, 0), + [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5537), + [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5644), + [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), + [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5710), + [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), + [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5554), + [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5018), + [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [9147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, 0, 0), + [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), + [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [9159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), + [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), + [9167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), + [9177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5606), + [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5351), + [9183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5683), + [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [9187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), + [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [9193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5828), + [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [9215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [9217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [9219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [9221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [9223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [9227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [9229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [9231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5662), + [9233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [9235] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), + [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [9255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5649), + [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), + [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [9287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, 0, 0), + [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), + [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [9351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [9353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [9355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [9357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [9359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [9361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [9363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), + [9365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2, 0, 0), + [9367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), + [9369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), + [9371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [9373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [9375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [9377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [9379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [9381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [9383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3, 0, 0), + [9385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [9387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [9389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [9391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [9393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [9395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [9397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [9399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [9403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [9405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [9407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [9409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [9411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [9413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [9419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [9421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [9423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [9425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [9427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [9429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [9431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), + [9433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [9435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [9439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [9443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [9447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [9451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), + [9455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [9457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [9459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [9461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [9463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5521), + [9465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [9467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [9471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [9473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [9475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [9477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [9479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [9481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), + [9483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [9485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [9487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [9489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [9491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [9493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [9495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [9497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [9499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [9501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), + [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [9513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [9515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [9517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5656), + [9519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [9521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), + [9523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [9525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [9527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [9529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [9531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [9533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [9535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5364), + [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), + [9553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [9557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), + [9559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5674), + [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), + [9565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [9571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [9573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [9577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3, 0, 0), + [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [9581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), + [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [9585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [9587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), }; enum ts_external_scanner_symbol_identifiers {